smc91x.h 32 KB

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