smc91x.h 40 KB

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