smc91x.h 33 KB

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