smc91x.h 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038
  1. /*------------------------------------------------------------------------
  2. . smc91x.h - macros for SMSC's 91C9x/91C1xx single-chip Ethernet device.
  3. .
  4. . Copyright (C) 1996 by Erik Stahlman
  5. . Copyright (C) 2001 Standard Microsystems Corporation
  6. . Developed by Simple Network Magic Corporation
  7. . Copyright (C) 2003 Monta Vista Software, Inc.
  8. . Unified SMC91x driver by Nicolas Pitre
  9. .
  10. . This program is free software; you can redistribute it and/or modify
  11. . it under the terms of the GNU General Public License as published by
  12. . the Free Software Foundation; either version 2 of the License, or
  13. . (at your option) any later version.
  14. .
  15. . This program is distributed in the hope that it will be useful,
  16. . but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. . MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. . GNU General Public License for more details.
  19. .
  20. . You should have received a copy of the GNU General Public License
  21. . along with this program; if not, write to the Free Software
  22. . Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. .
  24. . Information contained in this file was obtained from the LAN91C111
  25. . manual from SMC. To get a copy, if you really want one, you can find
  26. . information under www.smsc.com.
  27. .
  28. . Authors
  29. . Erik Stahlman <erik@vt.edu>
  30. . Daris A Nevil <dnevil@snmc.com>
  31. . Nicolas Pitre <nico@cam.org>
  32. .
  33. ---------------------------------------------------------------------------*/
  34. #ifndef _SMC91X_H_
  35. #define _SMC91X_H_
  36. /*
  37. * Define your architecture specific bus configuration parameters here.
  38. */
  39. #if defined(CONFIG_ARCH_LUBBOCK)
  40. /* We can only do 16-bit reads and writes in the static memory space. */
  41. #define SMC_CAN_USE_8BIT 0
  42. #define SMC_CAN_USE_16BIT 1
  43. #define SMC_CAN_USE_32BIT 0
  44. #define SMC_NOWAIT 1
  45. /* The first two address lines aren't connected... */
  46. #define SMC_IO_SHIFT 2
  47. #define SMC_inw(a, r) readw((a) + (r))
  48. #define SMC_outw(v, a, r) writew(v, (a) + (r))
  49. #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
  50. #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
  51. #elif defined(CONFIG_REDWOOD_5) || defined(CONFIG_REDWOOD_6)
  52. /* We can only do 16-bit reads and writes in the static memory space. */
  53. #define SMC_CAN_USE_8BIT 0
  54. #define SMC_CAN_USE_16BIT 1
  55. #define SMC_CAN_USE_32BIT 0
  56. #define SMC_NOWAIT 1
  57. #define SMC_IO_SHIFT 0
  58. #define SMC_inw(a, r) in_be16((volatile u16 *)((a) + (r)))
  59. #define SMC_outw(v, a, r) out_be16((volatile u16 *)((a) + (r)), v)
  60. #define SMC_insw(a, r, p, l) \
  61. do { \
  62. unsigned long __port = (a) + (r); \
  63. u16 *__p = (u16 *)(p); \
  64. int __l = (l); \
  65. insw(__port, __p, __l); \
  66. while (__l > 0) { \
  67. *__p = swab16(*__p); \
  68. __p++; \
  69. __l--; \
  70. } \
  71. } while (0)
  72. #define SMC_outsw(a, r, p, l) \
  73. do { \
  74. unsigned long __port = (a) + (r); \
  75. u16 *__p = (u16 *)(p); \
  76. int __l = (l); \
  77. while (__l > 0) { \
  78. /* Believe it or not, the swab isn't needed. */ \
  79. outw( /* swab16 */ (*__p++), __port); \
  80. __l--; \
  81. } \
  82. } while (0)
  83. #define set_irq_type(irq, type)
  84. #elif defined(CONFIG_SA1100_PLEB)
  85. /* We can only do 16-bit reads and writes in the static memory space. */
  86. #define SMC_CAN_USE_8BIT 1
  87. #define SMC_CAN_USE_16BIT 1
  88. #define SMC_CAN_USE_32BIT 0
  89. #define SMC_IO_SHIFT 0
  90. #define SMC_NOWAIT 1
  91. #define SMC_inb(a, r) inb((a) + (r))
  92. #define SMC_insb(a, r, p, l) insb((a) + (r), p, (l))
  93. #define SMC_inw(a, r) inw((a) + (r))
  94. #define SMC_insw(a, r, p, l) insw((a) + (r), p, l)
  95. #define SMC_outb(v, a, r) outb(v, (a) + (r))
  96. #define SMC_outsb(a, r, p, l) outsb((a) + (r), p, (l))
  97. #define SMC_outw(v, a, r) outw(v, (a) + (r))
  98. #define SMC_outsw(a, r, p, l) outsw((a) + (r), p, l)
  99. #define set_irq_type(irq, type) do {} while (0)
  100. #elif defined(CONFIG_SA1100_ASSABET)
  101. #include <asm/arch/neponset.h>
  102. /* We can only do 8-bit reads and writes in the static memory space. */
  103. #define SMC_CAN_USE_8BIT 1
  104. #define SMC_CAN_USE_16BIT 0
  105. #define SMC_CAN_USE_32BIT 0
  106. #define SMC_NOWAIT 1
  107. /* The first two address lines aren't connected... */
  108. #define SMC_IO_SHIFT 2
  109. #define SMC_inb(a, r) readb((a) + (r))
  110. #define SMC_outb(v, a, r) writeb(v, (a) + (r))
  111. #define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
  112. #define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
  113. #elif defined(CONFIG_ARCH_INNOKOM) || \
  114. defined(CONFIG_MACH_MAINSTONE) || \
  115. defined(CONFIG_ARCH_PXA_IDP) || \
  116. defined(CONFIG_ARCH_RAMSES)
  117. #define SMC_CAN_USE_8BIT 1
  118. #define SMC_CAN_USE_16BIT 1
  119. #define SMC_CAN_USE_32BIT 1
  120. #define SMC_IO_SHIFT 0
  121. #define SMC_NOWAIT 1
  122. #define SMC_USE_PXA_DMA 1
  123. #define SMC_inb(a, r) readb((a) + (r))
  124. #define SMC_inw(a, r) readw((a) + (r))
  125. #define SMC_inl(a, r) readl((a) + (r))
  126. #define SMC_outb(v, a, r) writeb(v, (a) + (r))
  127. #define SMC_outl(v, a, r) writel(v, (a) + (r))
  128. #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
  129. #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
  130. /* We actually can't write halfwords properly if not word aligned */
  131. static inline void
  132. SMC_outw(u16 val, void __iomem *ioaddr, int reg)
  133. {
  134. if (reg & 2) {
  135. unsigned int v = val << 16;
  136. v |= readl(ioaddr + (reg & ~2)) & 0xffff;
  137. writel(v, ioaddr + (reg & ~2));
  138. } else {
  139. writew(val, ioaddr + reg);
  140. }
  141. }
  142. #elif defined(CONFIG_ARCH_OMAP)
  143. /* We can only do 16-bit reads and writes in the static memory space. */
  144. #define SMC_CAN_USE_8BIT 0
  145. #define SMC_CAN_USE_16BIT 1
  146. #define SMC_CAN_USE_32BIT 0
  147. #define SMC_IO_SHIFT 0
  148. #define SMC_NOWAIT 1
  149. #define SMC_inb(a, r) readb((a) + (r))
  150. #define SMC_outb(v, a, r) writeb(v, (a) + (r))
  151. #define SMC_inw(a, r) readw((a) + (r))
  152. #define SMC_outw(v, a, r) writew(v, (a) + (r))
  153. #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
  154. #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
  155. #define SMC_inl(a, r) readl((a) + (r))
  156. #define SMC_outl(v, a, r) writel(v, (a) + (r))
  157. #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
  158. #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
  159. #include <asm/mach-types.h>
  160. #include <asm/arch/cpu.h>
  161. #define SMC_IRQ_TRIGGER_TYPE (( \
  162. machine_is_omap_h2() \
  163. || machine_is_omap_h3() \
  164. || (machine_is_omap_innovator() && !cpu_is_omap1510()) \
  165. ) ? IRQT_FALLING : IRQT_RISING)
  166. #elif defined(CONFIG_SH_SH4202_MICRODEV)
  167. #define SMC_CAN_USE_8BIT 0
  168. #define SMC_CAN_USE_16BIT 1
  169. #define SMC_CAN_USE_32BIT 0
  170. #define SMC_inb(a, r) inb((a) + (r) - 0xa0000000)
  171. #define SMC_inw(a, r) inw((a) + (r) - 0xa0000000)
  172. #define SMC_inl(a, r) inl((a) + (r) - 0xa0000000)
  173. #define SMC_outb(v, a, r) outb(v, (a) + (r) - 0xa0000000)
  174. #define SMC_outw(v, a, r) outw(v, (a) + (r) - 0xa0000000)
  175. #define SMC_outl(v, a, r) outl(v, (a) + (r) - 0xa0000000)
  176. #define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l)
  177. #define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l)
  178. #define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l)
  179. #define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l)
  180. #define set_irq_type(irq, type) do {} while(0)
  181. #elif defined(CONFIG_ISA)
  182. #define SMC_CAN_USE_8BIT 1
  183. #define SMC_CAN_USE_16BIT 1
  184. #define SMC_CAN_USE_32BIT 0
  185. #define SMC_inb(a, r) inb((a) + (r))
  186. #define SMC_inw(a, r) inw((a) + (r))
  187. #define SMC_outb(v, a, r) outb(v, (a) + (r))
  188. #define SMC_outw(v, a, r) outw(v, (a) + (r))
  189. #define SMC_insw(a, r, p, l) insw((a) + (r), p, l)
  190. #define SMC_outsw(a, r, p, l) outsw((a) + (r), p, l)
  191. #elif defined(CONFIG_M32R)
  192. #define SMC_CAN_USE_8BIT 0
  193. #define SMC_CAN_USE_16BIT 1
  194. #define SMC_CAN_USE_32BIT 0
  195. #define SMC_inb(a, r) inb((a) + (r) - 0xa0000000)
  196. #define SMC_inw(a, r) inw((a) + (r) - 0xa0000000)
  197. #define SMC_outb(v, a, r) outb(v, (a) + (r) - 0xa0000000)
  198. #define SMC_outw(v, a, r) outw(v, (a) + (r) - 0xa0000000)
  199. #define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l)
  200. #define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l)
  201. #define set_irq_type(irq, type) do {} while(0)
  202. #define RPC_LSA_DEFAULT RPC_LED_TX_RX
  203. #define RPC_LSB_DEFAULT RPC_LED_100_10
  204. #elif defined(CONFIG_MACH_LPD7A400) || defined(CONFIG_MACH_LPD7A404)
  205. /* The LPD7A40X_IOBARRIER is necessary to overcome a mismatch between
  206. * the way that the CPU handles chip selects and the way that the SMC
  207. * chip expects the chip select to operate. Refer to
  208. * Documentation/arm/Sharp-LH/IOBarrier for details. The read from
  209. * IOBARRIER is a byte as a least-common denominator of possible
  210. * regions to use as the barrier. It would be wasteful to read 32
  211. * bits from a byte oriented region.
  212. *
  213. * There is no explicit protection against interrupts intervening
  214. * between the writew and the IOBARRIER. In SMC ISR there is a
  215. * preamble that performs an IOBARRIER in the extremely unlikely event
  216. * that the driver interrupts itself between a writew to the chip an
  217. * the IOBARRIER that follows *and* the cache is large enough that the
  218. * first off-chip access while handing the interrupt is to the SMC
  219. * chip. Other devices in the same address space as the SMC chip must
  220. * be aware of the potential for trouble and perform a similar
  221. * IOBARRIER on entry to their ISR.
  222. */
  223. #include <asm/arch/constants.h> /* IOBARRIER_VIRT */
  224. #define SMC_CAN_USE_8BIT 0
  225. #define SMC_CAN_USE_16BIT 1
  226. #define SMC_CAN_USE_32BIT 0
  227. #define SMC_NOWAIT 0
  228. #define LPD7A40X_IOBARRIER readb (IOBARRIER_VIRT)
  229. #define SMC_inw(a,r) readw ((void*) ((a) + (r)))
  230. #define SMC_insw(a,r,p,l) readsw ((void*) ((a) + (r)), p, l)
  231. #define SMC_outw(v,a,r) ({ writew ((v), (a) + (r)); LPD7A40X_IOBARRIER; })
  232. static inline void SMC_outsw (unsigned long a, int r, unsigned char* p, int l)
  233. {
  234. unsigned short* ps = (unsigned short*) p;
  235. while (l-- > 0) {
  236. writew (*ps++, a + r);
  237. LPD7A40X_IOBARRIER;
  238. }
  239. }
  240. #define SMC_INTERRUPT_PREAMBLE LPD7A40X_IOBARRIER
  241. #define RPC_LSA_DEFAULT RPC_LED_TX_RX
  242. #define RPC_LSB_DEFAULT RPC_LED_100_10
  243. #else
  244. #define SMC_CAN_USE_8BIT 1
  245. #define SMC_CAN_USE_16BIT 1
  246. #define SMC_CAN_USE_32BIT 1
  247. #define SMC_NOWAIT 1
  248. #define SMC_inb(a, r) readb((a) + (r))
  249. #define SMC_inw(a, r) readw((a) + (r))
  250. #define SMC_inl(a, r) readl((a) + (r))
  251. #define SMC_outb(v, a, r) writeb(v, (a) + (r))
  252. #define SMC_outw(v, a, r) writew(v, (a) + (r))
  253. #define SMC_outl(v, a, r) writel(v, (a) + (r))
  254. #define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
  255. #define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
  256. #define RPC_LSA_DEFAULT RPC_LED_100_10
  257. #define RPC_LSB_DEFAULT RPC_LED_TX_RX
  258. #endif
  259. #ifndef SMC_IRQ_TRIGGER_TYPE
  260. #define SMC_IRQ_TRIGGER_TYPE IRQT_RISING
  261. #endif
  262. #ifdef SMC_USE_PXA_DMA
  263. /*
  264. * Let's use the DMA engine on the XScale PXA2xx for RX packets. This is
  265. * always happening in irq context so no need to worry about races. TX is
  266. * different and probably not worth it for that reason, and not as critical
  267. * as RX which can overrun memory and lose packets.
  268. */
  269. #include <linux/dma-mapping.h>
  270. #include <asm/dma.h>
  271. #include <asm/arch/pxa-regs.h>
  272. #ifdef SMC_insl
  273. #undef SMC_insl
  274. #define SMC_insl(a, r, p, l) \
  275. smc_pxa_dma_insl(a, lp->physaddr, r, dev->dma, p, l)
  276. static inline void
  277. smc_pxa_dma_insl(void __iomem *ioaddr, u_long physaddr, int reg, int dma,
  278. u_char *buf, int len)
  279. {
  280. dma_addr_t dmabuf;
  281. /* fallback if no DMA available */
  282. if (dma == (unsigned char)-1) {
  283. readsl(ioaddr + reg, buf, len);
  284. return;
  285. }
  286. /* 64 bit alignment is required for memory to memory DMA */
  287. if ((long)buf & 4) {
  288. *((u32 *)buf) = SMC_inl(ioaddr, reg);
  289. buf += 4;
  290. len--;
  291. }
  292. len *= 4;
  293. dmabuf = dma_map_single(NULL, buf, len, DMA_FROM_DEVICE);
  294. DCSR(dma) = DCSR_NODESC;
  295. DTADR(dma) = dmabuf;
  296. DSADR(dma) = physaddr + reg;
  297. DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
  298. DCMD_WIDTH4 | (DCMD_LENGTH & len));
  299. DCSR(dma) = DCSR_NODESC | DCSR_RUN;
  300. while (!(DCSR(dma) & DCSR_STOPSTATE))
  301. cpu_relax();
  302. DCSR(dma) = 0;
  303. dma_unmap_single(NULL, dmabuf, len, DMA_FROM_DEVICE);
  304. }
  305. #endif
  306. #ifdef SMC_insw
  307. #undef SMC_insw
  308. #define SMC_insw(a, r, p, l) \
  309. smc_pxa_dma_insw(a, lp->physaddr, r, dev->dma, p, l)
  310. static inline void
  311. smc_pxa_dma_insw(void __iomem *ioaddr, u_long physaddr, int reg, int dma,
  312. u_char *buf, int len)
  313. {
  314. dma_addr_t dmabuf;
  315. /* fallback if no DMA available */
  316. if (dma == (unsigned char)-1) {
  317. readsw(ioaddr + reg, buf, len);
  318. return;
  319. }
  320. /* 64 bit alignment is required for memory to memory DMA */
  321. while ((long)buf & 6) {
  322. *((u16 *)buf) = SMC_inw(ioaddr, reg);
  323. buf += 2;
  324. len--;
  325. }
  326. len *= 2;
  327. dmabuf = dma_map_single(NULL, buf, len, DMA_FROM_DEVICE);
  328. DCSR(dma) = DCSR_NODESC;
  329. DTADR(dma) = dmabuf;
  330. DSADR(dma) = physaddr + reg;
  331. DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
  332. DCMD_WIDTH2 | (DCMD_LENGTH & len));
  333. DCSR(dma) = DCSR_NODESC | DCSR_RUN;
  334. while (!(DCSR(dma) & DCSR_STOPSTATE))
  335. cpu_relax();
  336. DCSR(dma) = 0;
  337. dma_unmap_single(NULL, dmabuf, len, DMA_FROM_DEVICE);
  338. }
  339. #endif
  340. static void
  341. smc_pxa_dma_irq(int dma, void *dummy, struct pt_regs *regs)
  342. {
  343. DCSR(dma) = 0;
  344. }
  345. #endif /* SMC_USE_PXA_DMA */
  346. /* Because of bank switching, the LAN91x uses only 16 I/O ports */
  347. #ifndef SMC_IO_SHIFT
  348. #define SMC_IO_SHIFT 0
  349. #endif
  350. #define SMC_IO_EXTENT (16 << SMC_IO_SHIFT)
  351. #define SMC_DATA_EXTENT (4)
  352. /*
  353. . Bank Select Register:
  354. .
  355. . yyyy yyyy 0000 00xx
  356. . xx = bank number
  357. . yyyy yyyy = 0x33, for identification purposes.
  358. */
  359. #define BANK_SELECT (14 << SMC_IO_SHIFT)
  360. // Transmit Control Register
  361. /* BANK 0 */
  362. #define TCR_REG SMC_REG(0x0000, 0)
  363. #define TCR_ENABLE 0x0001 // When 1 we can transmit
  364. #define TCR_LOOP 0x0002 // Controls output pin LBK
  365. #define TCR_FORCOL 0x0004 // When 1 will force a collision
  366. #define TCR_PAD_EN 0x0080 // When 1 will pad tx frames < 64 bytes w/0
  367. #define TCR_NOCRC 0x0100 // When 1 will not append CRC to tx frames
  368. #define TCR_MON_CSN 0x0400 // When 1 tx monitors carrier
  369. #define TCR_FDUPLX 0x0800 // When 1 enables full duplex operation
  370. #define TCR_STP_SQET 0x1000 // When 1 stops tx if Signal Quality Error
  371. #define TCR_EPH_LOOP 0x2000 // When 1 enables EPH block loopback
  372. #define TCR_SWFDUP 0x8000 // When 1 enables Switched Full Duplex mode
  373. #define TCR_CLEAR 0 /* do NOTHING */
  374. /* the default settings for the TCR register : */
  375. #define TCR_DEFAULT (TCR_ENABLE | TCR_PAD_EN)
  376. // EPH Status Register
  377. /* BANK 0 */
  378. #define EPH_STATUS_REG SMC_REG(0x0002, 0)
  379. #define ES_TX_SUC 0x0001 // Last TX was successful
  380. #define ES_SNGL_COL 0x0002 // Single collision detected for last tx
  381. #define ES_MUL_COL 0x0004 // Multiple collisions detected for last tx
  382. #define ES_LTX_MULT 0x0008 // Last tx was a multicast
  383. #define ES_16COL 0x0010 // 16 Collisions Reached
  384. #define ES_SQET 0x0020 // Signal Quality Error Test
  385. #define ES_LTXBRD 0x0040 // Last tx was a broadcast
  386. #define ES_TXDEFR 0x0080 // Transmit Deferred
  387. #define ES_LATCOL 0x0200 // Late collision detected on last tx
  388. #define ES_LOSTCARR 0x0400 // Lost Carrier Sense
  389. #define ES_EXC_DEF 0x0800 // Excessive Deferral
  390. #define ES_CTR_ROL 0x1000 // Counter Roll Over indication
  391. #define ES_LINK_OK 0x4000 // Driven by inverted value of nLNK pin
  392. #define ES_TXUNRN 0x8000 // Tx Underrun
  393. // Receive Control Register
  394. /* BANK 0 */
  395. #define RCR_REG SMC_REG(0x0004, 0)
  396. #define RCR_RX_ABORT 0x0001 // Set if a rx frame was aborted
  397. #define RCR_PRMS 0x0002 // Enable promiscuous mode
  398. #define RCR_ALMUL 0x0004 // When set accepts all multicast frames
  399. #define RCR_RXEN 0x0100 // IFF this is set, we can receive packets
  400. #define RCR_STRIP_CRC 0x0200 // When set strips CRC from rx packets
  401. #define RCR_ABORT_ENB 0x0200 // When set will abort rx on collision
  402. #define RCR_FILT_CAR 0x0400 // When set filters leading 12 bit s of carrier
  403. #define RCR_SOFTRST 0x8000 // resets the chip
  404. /* the normal settings for the RCR register : */
  405. #define RCR_DEFAULT (RCR_STRIP_CRC | RCR_RXEN)
  406. #define RCR_CLEAR 0x0 // set it to a base state
  407. // Counter Register
  408. /* BANK 0 */
  409. #define COUNTER_REG SMC_REG(0x0006, 0)
  410. // Memory Information Register
  411. /* BANK 0 */
  412. #define MIR_REG SMC_REG(0x0008, 0)
  413. // Receive/Phy Control Register
  414. /* BANK 0 */
  415. #define RPC_REG SMC_REG(0x000A, 0)
  416. #define RPC_SPEED 0x2000 // When 1 PHY is in 100Mbps mode.
  417. #define RPC_DPLX 0x1000 // When 1 PHY is in Full-Duplex Mode
  418. #define RPC_ANEG 0x0800 // When 1 PHY is in Auto-Negotiate Mode
  419. #define RPC_LSXA_SHFT 5 // Bits to shift LS2A,LS1A,LS0A to lsb
  420. #define RPC_LSXB_SHFT 2 // Bits to get LS2B,LS1B,LS0B to lsb
  421. #define RPC_LED_100_10 (0x00) // LED = 100Mbps OR's with 10Mbps link detect
  422. #define RPC_LED_RES (0x01) // LED = Reserved
  423. #define RPC_LED_10 (0x02) // LED = 10Mbps link detect
  424. #define RPC_LED_FD (0x03) // LED = Full Duplex Mode
  425. #define RPC_LED_TX_RX (0x04) // LED = TX or RX packet occurred
  426. #define RPC_LED_100 (0x05) // LED = 100Mbps link dectect
  427. #define RPC_LED_TX (0x06) // LED = TX packet occurred
  428. #define RPC_LED_RX (0x07) // LED = RX packet occurred
  429. #ifndef RPC_LSA_DEFAULT
  430. #define RPC_LSA_DEFAULT RPC_LED_100
  431. #endif
  432. #ifndef RPC_LSB_DEFAULT
  433. #define RPC_LSB_DEFAULT RPC_LED_FD
  434. #endif
  435. #define RPC_DEFAULT (RPC_ANEG | (RPC_LSA_DEFAULT << RPC_LSXA_SHFT) | (RPC_LSB_DEFAULT << RPC_LSXB_SHFT) | RPC_SPEED | RPC_DPLX)
  436. /* Bank 0 0x0C is reserved */
  437. // Bank Select Register
  438. /* All Banks */
  439. #define BSR_REG 0x000E
  440. // Configuration Reg
  441. /* BANK 1 */
  442. #define CONFIG_REG SMC_REG(0x0000, 1)
  443. #define CONFIG_EXT_PHY 0x0200 // 1=external MII, 0=internal Phy
  444. #define CONFIG_GPCNTRL 0x0400 // Inverse value drives pin nCNTRL
  445. #define CONFIG_NO_WAIT 0x1000 // When 1 no extra wait states on ISA bus
  446. #define CONFIG_EPH_POWER_EN 0x8000 // When 0 EPH is placed into low power mode.
  447. // Default is powered-up, Internal Phy, Wait States, and pin nCNTRL=low
  448. #define CONFIG_DEFAULT (CONFIG_EPH_POWER_EN)
  449. // Base Address Register
  450. /* BANK 1 */
  451. #define BASE_REG SMC_REG(0x0002, 1)
  452. // Individual Address Registers
  453. /* BANK 1 */
  454. #define ADDR0_REG SMC_REG(0x0004, 1)
  455. #define ADDR1_REG SMC_REG(0x0006, 1)
  456. #define ADDR2_REG SMC_REG(0x0008, 1)
  457. // General Purpose Register
  458. /* BANK 1 */
  459. #define GP_REG SMC_REG(0x000A, 1)
  460. // Control Register
  461. /* BANK 1 */
  462. #define CTL_REG SMC_REG(0x000C, 1)
  463. #define CTL_RCV_BAD 0x4000 // When 1 bad CRC packets are received
  464. #define CTL_AUTO_RELEASE 0x0800 // When 1 tx pages are released automatically
  465. #define CTL_LE_ENABLE 0x0080 // When 1 enables Link Error interrupt
  466. #define CTL_CR_ENABLE 0x0040 // When 1 enables Counter Rollover interrupt
  467. #define CTL_TE_ENABLE 0x0020 // When 1 enables Transmit Error interrupt
  468. #define CTL_EEPROM_SELECT 0x0004 // Controls EEPROM reload & store
  469. #define CTL_RELOAD 0x0002 // When set reads EEPROM into registers
  470. #define CTL_STORE 0x0001 // When set stores registers into EEPROM
  471. // MMU Command Register
  472. /* BANK 2 */
  473. #define MMU_CMD_REG SMC_REG(0x0000, 2)
  474. #define MC_BUSY 1 // When 1 the last release has not completed
  475. #define MC_NOP (0<<5) // No Op
  476. #define MC_ALLOC (1<<5) // OR with number of 256 byte packets
  477. #define MC_RESET (2<<5) // Reset MMU to initial state
  478. #define MC_REMOVE (3<<5) // Remove the current rx packet
  479. #define MC_RELEASE (4<<5) // Remove and release the current rx packet
  480. #define MC_FREEPKT (5<<5) // Release packet in PNR register
  481. #define MC_ENQUEUE (6<<5) // Enqueue the packet for transmit
  482. #define MC_RSTTXFIFO (7<<5) // Reset the TX FIFOs
  483. // Packet Number Register
  484. /* BANK 2 */
  485. #define PN_REG SMC_REG(0x0002, 2)
  486. // Allocation Result Register
  487. /* BANK 2 */
  488. #define AR_REG SMC_REG(0x0003, 2)
  489. #define AR_FAILED 0x80 // Alocation Failed
  490. // TX FIFO Ports Register
  491. /* BANK 2 */
  492. #define TXFIFO_REG SMC_REG(0x0004, 2)
  493. #define TXFIFO_TEMPTY 0x80 // TX FIFO Empty
  494. // RX FIFO Ports Register
  495. /* BANK 2 */
  496. #define RXFIFO_REG SMC_REG(0x0005, 2)
  497. #define RXFIFO_REMPTY 0x80 // RX FIFO Empty
  498. #define FIFO_REG SMC_REG(0x0004, 2)
  499. // Pointer Register
  500. /* BANK 2 */
  501. #define PTR_REG SMC_REG(0x0006, 2)
  502. #define PTR_RCV 0x8000 // 1=Receive area, 0=Transmit area
  503. #define PTR_AUTOINC 0x4000 // Auto increment the pointer on each access
  504. #define PTR_READ 0x2000 // When 1 the operation is a read
  505. // Data Register
  506. /* BANK 2 */
  507. #define DATA_REG SMC_REG(0x0008, 2)
  508. // Interrupt Status/Acknowledge Register
  509. /* BANK 2 */
  510. #define INT_REG SMC_REG(0x000C, 2)
  511. // Interrupt Mask Register
  512. /* BANK 2 */
  513. #define IM_REG SMC_REG(0x000D, 2)
  514. #define IM_MDINT 0x80 // PHY MI Register 18 Interrupt
  515. #define IM_ERCV_INT 0x40 // Early Receive Interrupt
  516. #define IM_EPH_INT 0x20 // Set by Ethernet Protocol Handler section
  517. #define IM_RX_OVRN_INT 0x10 // Set by Receiver Overruns
  518. #define IM_ALLOC_INT 0x08 // Set when allocation request is completed
  519. #define IM_TX_EMPTY_INT 0x04 // Set if the TX FIFO goes empty
  520. #define IM_TX_INT 0x02 // Transmit Interrupt
  521. #define IM_RCV_INT 0x01 // Receive Interrupt
  522. // Multicast Table Registers
  523. /* BANK 3 */
  524. #define MCAST_REG1 SMC_REG(0x0000, 3)
  525. #define MCAST_REG2 SMC_REG(0x0002, 3)
  526. #define MCAST_REG3 SMC_REG(0x0004, 3)
  527. #define MCAST_REG4 SMC_REG(0x0006, 3)
  528. // Management Interface Register (MII)
  529. /* BANK 3 */
  530. #define MII_REG SMC_REG(0x0008, 3)
  531. #define MII_MSK_CRS100 0x4000 // Disables CRS100 detection during tx half dup
  532. #define MII_MDOE 0x0008 // MII Output Enable
  533. #define MII_MCLK 0x0004 // MII Clock, pin MDCLK
  534. #define MII_MDI 0x0002 // MII Input, pin MDI
  535. #define MII_MDO 0x0001 // MII Output, pin MDO
  536. // Revision Register
  537. /* BANK 3 */
  538. /* ( hi: chip id low: rev # ) */
  539. #define REV_REG SMC_REG(0x000A, 3)
  540. // Early RCV Register
  541. /* BANK 3 */
  542. /* this is NOT on SMC9192 */
  543. #define ERCV_REG SMC_REG(0x000C, 3)
  544. #define ERCV_RCV_DISCRD 0x0080 // When 1 discards a packet being received
  545. #define ERCV_THRESHOLD 0x001F // ERCV Threshold Mask
  546. // External Register
  547. /* BANK 7 */
  548. #define EXT_REG SMC_REG(0x0000, 7)
  549. #define CHIP_9192 3
  550. #define CHIP_9194 4
  551. #define CHIP_9195 5
  552. #define CHIP_9196 6
  553. #define CHIP_91100 7
  554. #define CHIP_91100FD 8
  555. #define CHIP_91111FD 9
  556. static const char * chip_ids[ 16 ] = {
  557. NULL, NULL, NULL,
  558. /* 3 */ "SMC91C90/91C92",
  559. /* 4 */ "SMC91C94",
  560. /* 5 */ "SMC91C95",
  561. /* 6 */ "SMC91C96",
  562. /* 7 */ "SMC91C100",
  563. /* 8 */ "SMC91C100FD",
  564. /* 9 */ "SMC91C11xFD",
  565. NULL, NULL, NULL,
  566. NULL, NULL, NULL};
  567. /*
  568. . Receive status bits
  569. */
  570. #define RS_ALGNERR 0x8000
  571. #define RS_BRODCAST 0x4000
  572. #define RS_BADCRC 0x2000
  573. #define RS_ODDFRAME 0x1000
  574. #define RS_TOOLONG 0x0800
  575. #define RS_TOOSHORT 0x0400
  576. #define RS_MULTICAST 0x0001
  577. #define RS_ERRORS (RS_ALGNERR | RS_BADCRC | RS_TOOLONG | RS_TOOSHORT)
  578. /*
  579. * PHY IDs
  580. * LAN83C183 == LAN91C111 Internal PHY
  581. */
  582. #define PHY_LAN83C183 0x0016f840
  583. #define PHY_LAN83C180 0x02821c50
  584. /*
  585. * PHY Register Addresses (LAN91C111 Internal PHY)
  586. *
  587. * Generic PHY registers can be found in <linux/mii.h>
  588. *
  589. * These phy registers are specific to our on-board phy.
  590. */
  591. // PHY Configuration Register 1
  592. #define PHY_CFG1_REG 0x10
  593. #define PHY_CFG1_LNKDIS 0x8000 // 1=Rx Link Detect Function disabled
  594. #define PHY_CFG1_XMTDIS 0x4000 // 1=TP Transmitter Disabled
  595. #define PHY_CFG1_XMTPDN 0x2000 // 1=TP Transmitter Powered Down
  596. #define PHY_CFG1_BYPSCR 0x0400 // 1=Bypass scrambler/descrambler
  597. #define PHY_CFG1_UNSCDS 0x0200 // 1=Unscramble Idle Reception Disable
  598. #define PHY_CFG1_EQLZR 0x0100 // 1=Rx Equalizer Disabled
  599. #define PHY_CFG1_CABLE 0x0080 // 1=STP(150ohm), 0=UTP(100ohm)
  600. #define PHY_CFG1_RLVL0 0x0040 // 1=Rx Squelch level reduced by 4.5db
  601. #define PHY_CFG1_TLVL_SHIFT 2 // Transmit Output Level Adjust
  602. #define PHY_CFG1_TLVL_MASK 0x003C
  603. #define PHY_CFG1_TRF_MASK 0x0003 // Transmitter Rise/Fall time
  604. // PHY Configuration Register 2
  605. #define PHY_CFG2_REG 0x11
  606. #define PHY_CFG2_APOLDIS 0x0020 // 1=Auto Polarity Correction disabled
  607. #define PHY_CFG2_JABDIS 0x0010 // 1=Jabber disabled
  608. #define PHY_CFG2_MREG 0x0008 // 1=Multiple register access (MII mgt)
  609. #define PHY_CFG2_INTMDIO 0x0004 // 1=Interrupt signaled with MDIO pulseo
  610. // PHY Status Output (and Interrupt status) Register
  611. #define PHY_INT_REG 0x12 // Status Output (Interrupt Status)
  612. #define PHY_INT_INT 0x8000 // 1=bits have changed since last read
  613. #define PHY_INT_LNKFAIL 0x4000 // 1=Link Not detected
  614. #define PHY_INT_LOSSSYNC 0x2000 // 1=Descrambler has lost sync
  615. #define PHY_INT_CWRD 0x1000 // 1=Invalid 4B5B code detected on rx
  616. #define PHY_INT_SSD 0x0800 // 1=No Start Of Stream detected on rx
  617. #define PHY_INT_ESD 0x0400 // 1=No End Of Stream detected on rx
  618. #define PHY_INT_RPOL 0x0200 // 1=Reverse Polarity detected
  619. #define PHY_INT_JAB 0x0100 // 1=Jabber detected
  620. #define PHY_INT_SPDDET 0x0080 // 1=100Base-TX mode, 0=10Base-T mode
  621. #define PHY_INT_DPLXDET 0x0040 // 1=Device in Full Duplex
  622. // PHY Interrupt/Status Mask Register
  623. #define PHY_MASK_REG 0x13 // Interrupt Mask
  624. // Uses the same bit definitions as PHY_INT_REG
  625. /*
  626. * SMC91C96 ethernet config and status registers.
  627. * These are in the "attribute" space.
  628. */
  629. #define ECOR 0x8000
  630. #define ECOR_RESET 0x80
  631. #define ECOR_LEVEL_IRQ 0x40
  632. #define ECOR_WR_ATTRIB 0x04
  633. #define ECOR_ENABLE 0x01
  634. #define ECSR 0x8002
  635. #define ECSR_IOIS8 0x20
  636. #define ECSR_PWRDWN 0x04
  637. #define ECSR_INT 0x02
  638. #define ATTRIB_SIZE ((64*1024) << SMC_IO_SHIFT)
  639. /*
  640. * Macros to abstract register access according to the data bus
  641. * capabilities. Please use those and not the in/out primitives.
  642. * Note: the following macros do *not* select the bank -- this must
  643. * be done separately as needed in the main code. The SMC_REG() macro
  644. * only uses the bank argument for debugging purposes (when enabled).
  645. */
  646. #if SMC_DEBUG > 0
  647. #define SMC_REG(reg, bank) \
  648. ({ \
  649. int __b = SMC_CURRENT_BANK(); \
  650. if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \
  651. printk( "%s: bank reg screwed (0x%04x)\n", \
  652. CARDNAME, __b ); \
  653. BUG(); \
  654. } \
  655. reg<<SMC_IO_SHIFT; \
  656. })
  657. #else
  658. #define SMC_REG(reg, bank) (reg<<SMC_IO_SHIFT)
  659. #endif
  660. #if SMC_CAN_USE_8BIT
  661. #define SMC_GET_PN() SMC_inb( ioaddr, PN_REG )
  662. #define SMC_SET_PN(x) SMC_outb( x, ioaddr, PN_REG )
  663. #define SMC_GET_AR() SMC_inb( ioaddr, AR_REG )
  664. #define SMC_GET_TXFIFO() SMC_inb( ioaddr, TXFIFO_REG )
  665. #define SMC_GET_RXFIFO() SMC_inb( ioaddr, RXFIFO_REG )
  666. #define SMC_GET_INT() SMC_inb( ioaddr, INT_REG )
  667. #define SMC_ACK_INT(x) SMC_outb( x, ioaddr, INT_REG )
  668. #define SMC_GET_INT_MASK() SMC_inb( ioaddr, IM_REG )
  669. #define SMC_SET_INT_MASK(x) SMC_outb( x, ioaddr, IM_REG )
  670. #else
  671. #define SMC_GET_PN() (SMC_inw( ioaddr, PN_REG ) & 0xFF)
  672. #define SMC_SET_PN(x) SMC_outw( x, ioaddr, PN_REG )
  673. #define SMC_GET_AR() (SMC_inw( ioaddr, PN_REG ) >> 8)
  674. #define SMC_GET_TXFIFO() (SMC_inw( ioaddr, TXFIFO_REG ) & 0xFF)
  675. #define SMC_GET_RXFIFO() (SMC_inw( ioaddr, TXFIFO_REG ) >> 8)
  676. #define SMC_GET_INT() (SMC_inw( ioaddr, INT_REG ) & 0xFF)
  677. #define SMC_ACK_INT(x) \
  678. do { \
  679. unsigned long __flags; \
  680. int __mask; \
  681. local_irq_save(__flags); \
  682. __mask = SMC_inw( ioaddr, INT_REG ) & ~0xff; \
  683. SMC_outw( __mask | (x), ioaddr, INT_REG ); \
  684. local_irq_restore(__flags); \
  685. } while (0)
  686. #define SMC_GET_INT_MASK() (SMC_inw( ioaddr, INT_REG ) >> 8)
  687. #define SMC_SET_INT_MASK(x) SMC_outw( (x) << 8, ioaddr, INT_REG )
  688. #endif
  689. #define SMC_CURRENT_BANK() SMC_inw( ioaddr, BANK_SELECT )
  690. #define SMC_SELECT_BANK(x) SMC_outw( x, ioaddr, BANK_SELECT )
  691. #define SMC_GET_BASE() SMC_inw( ioaddr, BASE_REG )
  692. #define SMC_SET_BASE(x) SMC_outw( x, ioaddr, BASE_REG )
  693. #define SMC_GET_CONFIG() SMC_inw( ioaddr, CONFIG_REG )
  694. #define SMC_SET_CONFIG(x) SMC_outw( x, ioaddr, CONFIG_REG )
  695. #define SMC_GET_COUNTER() SMC_inw( ioaddr, COUNTER_REG )
  696. #define SMC_GET_CTL() SMC_inw( ioaddr, CTL_REG )
  697. #define SMC_SET_CTL(x) SMC_outw( x, ioaddr, CTL_REG )
  698. #define SMC_GET_MII() SMC_inw( ioaddr, MII_REG )
  699. #define SMC_SET_MII(x) SMC_outw( x, ioaddr, MII_REG )
  700. #define SMC_GET_MIR() SMC_inw( ioaddr, MIR_REG )
  701. #define SMC_SET_MIR(x) SMC_outw( x, ioaddr, MIR_REG )
  702. #define SMC_GET_MMU_CMD() SMC_inw( ioaddr, MMU_CMD_REG )
  703. #define SMC_SET_MMU_CMD(x) SMC_outw( x, ioaddr, MMU_CMD_REG )
  704. #define SMC_GET_FIFO() SMC_inw( ioaddr, FIFO_REG )
  705. #define SMC_GET_PTR() SMC_inw( ioaddr, PTR_REG )
  706. #define SMC_SET_PTR(x) SMC_outw( x, ioaddr, PTR_REG )
  707. #define SMC_GET_EPH_STATUS() SMC_inw( ioaddr, EPH_STATUS_REG )
  708. #define SMC_GET_RCR() SMC_inw( ioaddr, RCR_REG )
  709. #define SMC_SET_RCR(x) SMC_outw( x, ioaddr, RCR_REG )
  710. #define SMC_GET_REV() SMC_inw( ioaddr, REV_REG )
  711. #define SMC_GET_RPC() SMC_inw( ioaddr, RPC_REG )
  712. #define SMC_SET_RPC(x) SMC_outw( x, ioaddr, RPC_REG )
  713. #define SMC_GET_TCR() SMC_inw( ioaddr, TCR_REG )
  714. #define SMC_SET_TCR(x) SMC_outw( x, ioaddr, TCR_REG )
  715. #ifndef SMC_GET_MAC_ADDR
  716. #define SMC_GET_MAC_ADDR(addr) \
  717. do { \
  718. unsigned int __v; \
  719. __v = SMC_inw( ioaddr, ADDR0_REG ); \
  720. addr[0] = __v; addr[1] = __v >> 8; \
  721. __v = SMC_inw( ioaddr, ADDR1_REG ); \
  722. addr[2] = __v; addr[3] = __v >> 8; \
  723. __v = SMC_inw( ioaddr, ADDR2_REG ); \
  724. addr[4] = __v; addr[5] = __v >> 8; \
  725. } while (0)
  726. #endif
  727. #define SMC_SET_MAC_ADDR(addr) \
  728. do { \
  729. SMC_outw( addr[0]|(addr[1] << 8), ioaddr, ADDR0_REG ); \
  730. SMC_outw( addr[2]|(addr[3] << 8), ioaddr, ADDR1_REG ); \
  731. SMC_outw( addr[4]|(addr[5] << 8), ioaddr, ADDR2_REG ); \
  732. } while (0)
  733. #define SMC_SET_MCAST(x) \
  734. do { \
  735. const unsigned char *mt = (x); \
  736. SMC_outw( mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1 ); \
  737. SMC_outw( mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2 ); \
  738. SMC_outw( mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3 ); \
  739. SMC_outw( mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4 ); \
  740. } while (0)
  741. #if SMC_CAN_USE_32BIT
  742. /*
  743. * Some setups just can't write 8 or 16 bits reliably when not aligned
  744. * to a 32 bit boundary. I tell you that exists!
  745. * We re-do the ones here that can be easily worked around if they can have
  746. * their low parts written to 0 without adverse effects.
  747. */
  748. #undef SMC_SELECT_BANK
  749. #define SMC_SELECT_BANK(x) SMC_outl( (x)<<16, ioaddr, 12<<SMC_IO_SHIFT )
  750. #undef SMC_SET_RPC
  751. #define SMC_SET_RPC(x) SMC_outl( (x)<<16, ioaddr, SMC_REG(8, 0) )
  752. #undef SMC_SET_PN
  753. #define SMC_SET_PN(x) SMC_outl( (x)<<16, ioaddr, SMC_REG(0, 2) )
  754. #undef SMC_SET_PTR
  755. #define SMC_SET_PTR(x) SMC_outl( (x)<<16, ioaddr, SMC_REG(4, 2) )
  756. #endif
  757. #if SMC_CAN_USE_32BIT
  758. #define SMC_PUT_PKT_HDR(status, length) \
  759. SMC_outl( (status) | (length) << 16, ioaddr, DATA_REG )
  760. #define SMC_GET_PKT_HDR(status, length) \
  761. do { \
  762. unsigned int __val = SMC_inl( ioaddr, DATA_REG ); \
  763. (status) = __val & 0xffff; \
  764. (length) = __val >> 16; \
  765. } while (0)
  766. #else
  767. #define SMC_PUT_PKT_HDR(status, length) \
  768. do { \
  769. SMC_outw( status, ioaddr, DATA_REG ); \
  770. SMC_outw( length, ioaddr, DATA_REG ); \
  771. } while (0)
  772. #define SMC_GET_PKT_HDR(status, length) \
  773. do { \
  774. (status) = SMC_inw( ioaddr, DATA_REG ); \
  775. (length) = SMC_inw( ioaddr, DATA_REG ); \
  776. } while (0)
  777. #endif
  778. #if SMC_CAN_USE_32BIT
  779. #define _SMC_PUSH_DATA(p, l) \
  780. do { \
  781. char *__ptr = (p); \
  782. int __len = (l); \
  783. if (__len >= 2 && (unsigned long)__ptr & 2) { \
  784. __len -= 2; \
  785. SMC_outw( *(u16 *)__ptr, ioaddr, DATA_REG ); \
  786. __ptr += 2; \
  787. } \
  788. SMC_outsl( ioaddr, DATA_REG, __ptr, __len >> 2); \
  789. if (__len & 2) { \
  790. __ptr += (__len & ~3); \
  791. SMC_outw( *((u16 *)__ptr), ioaddr, DATA_REG ); \
  792. } \
  793. } while (0)
  794. #define _SMC_PULL_DATA(p, l) \
  795. do { \
  796. char *__ptr = (p); \
  797. int __len = (l); \
  798. if ((unsigned long)__ptr & 2) { \
  799. /* \
  800. * We want 32bit alignment here. \
  801. * Since some buses perform a full 32bit \
  802. * fetch even for 16bit data we can't use \
  803. * SMC_inw() here. Back both source (on chip \
  804. * and destination) pointers of 2 bytes. \
  805. */ \
  806. __ptr -= 2; \
  807. __len += 2; \
  808. SMC_SET_PTR( 2|PTR_READ|PTR_RCV|PTR_AUTOINC ); \
  809. } \
  810. __len += 2; \
  811. SMC_insl( ioaddr, DATA_REG, __ptr, __len >> 2); \
  812. } while (0)
  813. #elif SMC_CAN_USE_16BIT
  814. #define _SMC_PUSH_DATA(p, l) SMC_outsw( ioaddr, DATA_REG, p, (l) >> 1 )
  815. #define _SMC_PULL_DATA(p, l) SMC_insw ( ioaddr, DATA_REG, p, (l) >> 1 )
  816. #elif SMC_CAN_USE_8BIT
  817. #define _SMC_PUSH_DATA(p, l) SMC_outsb( ioaddr, DATA_REG, p, l )
  818. #define _SMC_PULL_DATA(p, l) SMC_insb ( ioaddr, DATA_REG, p, l )
  819. #endif
  820. #if ! SMC_CAN_USE_16BIT
  821. #define SMC_outw(x, ioaddr, reg) \
  822. do { \
  823. unsigned int __val16 = (x); \
  824. SMC_outb( __val16, ioaddr, reg ); \
  825. SMC_outb( __val16 >> 8, ioaddr, reg + (1 << SMC_IO_SHIFT));\
  826. } while (0)
  827. #define SMC_inw(ioaddr, reg) \
  828. ({ \
  829. unsigned int __val16; \
  830. __val16 = SMC_inb( ioaddr, reg ); \
  831. __val16 |= SMC_inb( ioaddr, reg + (1 << SMC_IO_SHIFT)) << 8; \
  832. __val16; \
  833. })
  834. #endif
  835. #ifdef SMC_CAN_USE_DATACS
  836. #define SMC_PUSH_DATA(p, l) \
  837. if ( lp->datacs ) { \
  838. unsigned char *__ptr = (p); \
  839. int __len = (l); \
  840. if (__len >= 2 && (unsigned long)__ptr & 2) { \
  841. __len -= 2; \
  842. SMC_outw( *((u16 *)__ptr), ioaddr, DATA_REG ); \
  843. __ptr += 2; \
  844. } \
  845. outsl(lp->datacs, __ptr, __len >> 2); \
  846. if (__len & 2) { \
  847. __ptr += (__len & ~3); \
  848. SMC_outw( *((u16 *)__ptr), ioaddr, DATA_REG ); \
  849. } \
  850. } else { \
  851. _SMC_PUSH_DATA(p, l); \
  852. }
  853. #define SMC_PULL_DATA(p, l) \
  854. if ( lp->datacs ) { \
  855. unsigned char *__ptr = (p); \
  856. int __len = (l); \
  857. if ((unsigned long)__ptr & 2) { \
  858. /* \
  859. * We want 32bit alignment here. \
  860. * Since some buses perform a full 32bit \
  861. * fetch even for 16bit data we can't use \
  862. * SMC_inw() here. Back both source (on chip \
  863. * and destination) pointers of 2 bytes. \
  864. */ \
  865. __ptr -= 2; \
  866. __len += 2; \
  867. SMC_SET_PTR( 2|PTR_READ|PTR_RCV|PTR_AUTOINC ); \
  868. } \
  869. __len += 2; \
  870. insl( lp->datacs, __ptr, __len >> 2); \
  871. } else { \
  872. _SMC_PULL_DATA(p, l); \
  873. }
  874. #else
  875. #define SMC_PUSH_DATA(p, l) _SMC_PUSH_DATA(p, l)
  876. #define SMC_PULL_DATA(p, l) _SMC_PULL_DATA(p, l)
  877. #endif
  878. #if !defined (SMC_INTERRUPT_PREAMBLE)
  879. # define SMC_INTERRUPT_PREAMBLE
  880. #endif
  881. #endif /* _SMC91X_H_ */