smc91x.h 32 KB

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