smc91x.h 36 KB

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