smc91x.h 40 KB

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