smc91x.h 35 KB

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