smc91x.h 38 KB

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