ether3.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899
  1. /*
  2. * linux/drivers/acorn/net/ether3.c
  3. *
  4. * Copyright (C) 1995-2000 Russell King
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * SEEQ nq8005 ethernet driver for Acorn/ANT Ether3 card
  11. * for Acorn machines
  12. *
  13. * By Russell King, with some suggestions from borris@ant.co.uk
  14. *
  15. * Changelog:
  16. * 1.04 RMK 29/02/1996 Won't pass packets that are from our ethernet
  17. * address up to the higher levels - they're
  18. * silently ignored. I/F can now be put into
  19. * multicast mode. Receiver routine optimised.
  20. * 1.05 RMK 30/02/1996 Now claims interrupt at open when part of
  21. * the kernel rather than when a module.
  22. * 1.06 RMK 02/03/1996 Various code cleanups
  23. * 1.07 RMK 13/10/1996 Optimised interrupt routine and transmit
  24. * routines.
  25. * 1.08 RMK 14/10/1996 Fixed problem with too many packets,
  26. * prevented the kernel message about dropped
  27. * packets appearing too many times a second.
  28. * Now does not disable all IRQs, only the IRQ
  29. * used by this card.
  30. * 1.09 RMK 10/11/1996 Only enables TX irq when buffer space is low,
  31. * but we still service the TX queue if we get a
  32. * RX interrupt.
  33. * 1.10 RMK 15/07/1997 Fixed autoprobing of NQ8004.
  34. * 1.11 RMK 16/11/1997 Fixed autoprobing of NQ8005A.
  35. * 1.12 RMK 31/12/1997 Removed reference to dev_tint for Linux 2.1.
  36. * RMK 27/06/1998 Changed asm/delay.h to linux/delay.h.
  37. * 1.13 RMK 29/06/1998 Fixed problem with transmission of packets.
  38. * Chip seems to have a bug in, whereby if the
  39. * packet starts two bytes from the end of the
  40. * buffer, it corrupts the receiver chain, and
  41. * never updates the transmit status correctly.
  42. * 1.14 RMK 07/01/1998 Added initial code for ETHERB addressing.
  43. * 1.15 RMK 30/04/1999 More fixes to the transmit routine for buggy
  44. * hardware.
  45. * 1.16 RMK 10/02/2000 Updated for 2.3.43
  46. * 1.17 RMK 13/05/2000 Updated for 2.3.99-pre8
  47. */
  48. #include <linux/module.h>
  49. #include <linux/kernel.h>
  50. #include <linux/types.h>
  51. #include <linux/fcntl.h>
  52. #include <linux/interrupt.h>
  53. #include <linux/ioport.h>
  54. #include <linux/in.h>
  55. #include <linux/slab.h>
  56. #include <linux/string.h>
  57. #include <linux/errno.h>
  58. #include <linux/netdevice.h>
  59. #include <linux/etherdevice.h>
  60. #include <linux/skbuff.h>
  61. #include <linux/device.h>
  62. #include <linux/init.h>
  63. #include <linux/delay.h>
  64. #include <linux/bitops.h>
  65. #include <asm/ecard.h>
  66. #include <asm/io.h>
  67. static char version[] = "ether3 ethernet driver (c) 1995-2000 R.M.King v1.17\n";
  68. #include "ether3.h"
  69. static unsigned int net_debug = NET_DEBUG;
  70. static void ether3_setmulticastlist(struct net_device *dev);
  71. static int ether3_rx(struct net_device *dev, unsigned int maxcnt);
  72. static void ether3_tx(struct net_device *dev);
  73. static int ether3_open (struct net_device *dev);
  74. static int ether3_sendpacket (struct sk_buff *skb, struct net_device *dev);
  75. static irqreturn_t ether3_interrupt (int irq, void *dev_id);
  76. static int ether3_close (struct net_device *dev);
  77. static void ether3_setmulticastlist (struct net_device *dev);
  78. static void ether3_timeout(struct net_device *dev);
  79. #define BUS_16 2
  80. #define BUS_8 1
  81. #define BUS_UNKNOWN 0
  82. /* --------------------------------------------------------------------------- */
  83. typedef enum {
  84. buffer_write,
  85. buffer_read
  86. } buffer_rw_t;
  87. /*
  88. * ether3 read/write. Slow things down a bit...
  89. * The SEEQ8005 doesn't like us writing to its registers
  90. * too quickly.
  91. */
  92. static inline void ether3_outb(int v, void __iomem *r)
  93. {
  94. writeb(v, r);
  95. udelay(1);
  96. }
  97. static inline void ether3_outw(int v, void __iomem *r)
  98. {
  99. writew(v, r);
  100. udelay(1);
  101. }
  102. #define ether3_inb(r) ({ unsigned int __v = readb((r)); udelay(1); __v; })
  103. #define ether3_inw(r) ({ unsigned int __v = readw((r)); udelay(1); __v; })
  104. static int
  105. ether3_setbuffer(struct net_device *dev, buffer_rw_t read, int start)
  106. {
  107. int timeout = 1000;
  108. ether3_outw(priv(dev)->regs.config1 | CFG1_LOCBUFMEM, REG_CONFIG1);
  109. ether3_outw(priv(dev)->regs.command | CMD_FIFOWRITE, REG_COMMAND);
  110. while ((ether3_inw(REG_STATUS) & STAT_FIFOEMPTY) == 0) {
  111. if (!timeout--) {
  112. printk("%s: setbuffer broken\n", dev->name);
  113. priv(dev)->broken = 1;
  114. return 1;
  115. }
  116. udelay(1);
  117. }
  118. if (read == buffer_read) {
  119. ether3_outw(start, REG_DMAADDR);
  120. ether3_outw(priv(dev)->regs.command | CMD_FIFOREAD, REG_COMMAND);
  121. } else {
  122. ether3_outw(priv(dev)->regs.command | CMD_FIFOWRITE, REG_COMMAND);
  123. ether3_outw(start, REG_DMAADDR);
  124. }
  125. return 0;
  126. }
  127. /*
  128. * write data to the buffer memory
  129. */
  130. #define ether3_writebuffer(dev,data,length) \
  131. writesw(REG_BUFWIN, (data), (length) >> 1)
  132. #define ether3_writeword(dev,data) \
  133. writew((data), REG_BUFWIN)
  134. #define ether3_writelong(dev,data) { \
  135. void __iomem *reg_bufwin = REG_BUFWIN; \
  136. writew((data), reg_bufwin); \
  137. writew((data) >> 16, reg_bufwin); \
  138. }
  139. /*
  140. * read data from the buffer memory
  141. */
  142. #define ether3_readbuffer(dev,data,length) \
  143. readsw(REG_BUFWIN, (data), (length) >> 1)
  144. #define ether3_readword(dev) \
  145. readw(REG_BUFWIN)
  146. #define ether3_readlong(dev) \
  147. readw(REG_BUFWIN) | (readw(REG_BUFWIN) << 16)
  148. /*
  149. * Switch LED off...
  150. */
  151. static void ether3_ledoff(unsigned long data)
  152. {
  153. struct net_device *dev = (struct net_device *)data;
  154. ether3_outw(priv(dev)->regs.config2 |= CFG2_CTRLO, REG_CONFIG2);
  155. }
  156. /*
  157. * switch LED on...
  158. */
  159. static inline void ether3_ledon(struct net_device *dev)
  160. {
  161. del_timer(&priv(dev)->timer);
  162. priv(dev)->timer.expires = jiffies + HZ / 50; /* leave on for 1/50th second */
  163. priv(dev)->timer.data = (unsigned long)dev;
  164. priv(dev)->timer.function = ether3_ledoff;
  165. add_timer(&priv(dev)->timer);
  166. if (priv(dev)->regs.config2 & CFG2_CTRLO)
  167. ether3_outw(priv(dev)->regs.config2 &= ~CFG2_CTRLO, REG_CONFIG2);
  168. }
  169. /*
  170. * Read the ethernet address string from the on board rom.
  171. * This is an ascii string!!!
  172. */
  173. static int
  174. ether3_addr(char *addr, struct expansion_card *ec)
  175. {
  176. struct in_chunk_dir cd;
  177. char *s;
  178. if (ecard_readchunk(&cd, ec, 0xf5, 0) && (s = strchr(cd.d.string, '('))) {
  179. int i;
  180. for (i = 0; i<6; i++) {
  181. addr[i] = simple_strtoul(s + 1, &s, 0x10);
  182. if (*s != (i==5?')' : ':' ))
  183. break;
  184. }
  185. if (i == 6)
  186. return 0;
  187. }
  188. /* I wonder if we should even let the user continue in this case
  189. * - no, it would be better to disable the device
  190. */
  191. printk(KERN_ERR "ether3: Couldn't read a valid MAC address from card.\n");
  192. return -ENODEV;
  193. }
  194. /* --------------------------------------------------------------------------- */
  195. static int
  196. ether3_ramtest(struct net_device *dev, unsigned char byte)
  197. {
  198. unsigned char *buffer = kmalloc(RX_END, GFP_KERNEL);
  199. int i,ret = 0;
  200. int max_errors = 4;
  201. int bad = -1;
  202. if (!buffer)
  203. return 1;
  204. memset(buffer, byte, RX_END);
  205. ether3_setbuffer(dev, buffer_write, 0);
  206. ether3_writebuffer(dev, buffer, TX_END);
  207. ether3_setbuffer(dev, buffer_write, RX_START);
  208. ether3_writebuffer(dev, buffer + RX_START, RX_LEN);
  209. memset(buffer, byte ^ 0xff, RX_END);
  210. ether3_setbuffer(dev, buffer_read, 0);
  211. ether3_readbuffer(dev, buffer, TX_END);
  212. ether3_setbuffer(dev, buffer_read, RX_START);
  213. ether3_readbuffer(dev, buffer + RX_START, RX_LEN);
  214. for (i = 0; i < RX_END; i++) {
  215. if (buffer[i] != byte) {
  216. if (max_errors > 0 && bad != buffer[i]) {
  217. printk("%s: RAM failed with (%02X instead of %02X) at 0x%04X",
  218. dev->name, buffer[i], byte, i);
  219. ret = 2;
  220. max_errors--;
  221. bad = i;
  222. }
  223. } else {
  224. if (bad != -1) {
  225. if (bad != i - 1)
  226. printk(" - 0x%04X\n", i - 1);
  227. printk("\n");
  228. bad = -1;
  229. }
  230. }
  231. }
  232. if (bad != -1)
  233. printk(" - 0xffff\n");
  234. kfree(buffer);
  235. return ret;
  236. }
  237. /* ------------------------------------------------------------------------------- */
  238. static int ether3_init_2(struct net_device *dev)
  239. {
  240. int i;
  241. priv(dev)->regs.config1 = CFG1_RECVCOMPSTAT0|CFG1_DMABURST8;
  242. priv(dev)->regs.config2 = CFG2_CTRLO|CFG2_RECVCRC|CFG2_ERRENCRC;
  243. priv(dev)->regs.command = 0;
  244. /*
  245. * Set up our hardware address
  246. */
  247. ether3_outw(priv(dev)->regs.config1 | CFG1_BUFSELSTAT0, REG_CONFIG1);
  248. for (i = 0; i < 6; i++)
  249. ether3_outb(dev->dev_addr[i], REG_BUFWIN);
  250. if (dev->flags & IFF_PROMISC)
  251. priv(dev)->regs.config1 |= CFG1_RECVPROMISC;
  252. else if (dev->flags & IFF_MULTICAST)
  253. priv(dev)->regs.config1 |= CFG1_RECVSPECBRMULTI;
  254. else
  255. priv(dev)->regs.config1 |= CFG1_RECVSPECBROAD;
  256. /*
  257. * There is a problem with the NQ8005 in that it occasionally loses the
  258. * last two bytes. To get round this problem, we receive the CRC as
  259. * well. That way, if we do lose the last two, then it doesn't matter.
  260. */
  261. ether3_outw(priv(dev)->regs.config1 | CFG1_TRANSEND, REG_CONFIG1);
  262. ether3_outw((TX_END>>8) - 1, REG_BUFWIN);
  263. ether3_outw(priv(dev)->rx_head, REG_RECVPTR);
  264. ether3_outw(0, REG_TRANSMITPTR);
  265. ether3_outw(priv(dev)->rx_head >> 8, REG_RECVEND);
  266. ether3_outw(priv(dev)->regs.config2, REG_CONFIG2);
  267. ether3_outw(priv(dev)->regs.config1 | CFG1_LOCBUFMEM, REG_CONFIG1);
  268. ether3_outw(priv(dev)->regs.command, REG_COMMAND);
  269. i = ether3_ramtest(dev, 0x5A);
  270. if(i)
  271. return i;
  272. i = ether3_ramtest(dev, 0x1E);
  273. if(i)
  274. return i;
  275. ether3_setbuffer(dev, buffer_write, 0);
  276. ether3_writelong(dev, 0);
  277. return 0;
  278. }
  279. static void
  280. ether3_init_for_open(struct net_device *dev)
  281. {
  282. int i;
  283. /* Reset the chip */
  284. ether3_outw(CFG2_RESET, REG_CONFIG2);
  285. udelay(4);
  286. priv(dev)->regs.command = 0;
  287. ether3_outw(CMD_RXOFF|CMD_TXOFF, REG_COMMAND);
  288. while (ether3_inw(REG_STATUS) & (STAT_RXON|STAT_TXON))
  289. barrier();
  290. ether3_outw(priv(dev)->regs.config1 | CFG1_BUFSELSTAT0, REG_CONFIG1);
  291. for (i = 0; i < 6; i++)
  292. ether3_outb(dev->dev_addr[i], REG_BUFWIN);
  293. priv(dev)->tx_head = 0;
  294. priv(dev)->tx_tail = 0;
  295. priv(dev)->regs.config2 |= CFG2_CTRLO;
  296. priv(dev)->rx_head = RX_START;
  297. ether3_outw(priv(dev)->regs.config1 | CFG1_TRANSEND, REG_CONFIG1);
  298. ether3_outw((TX_END>>8) - 1, REG_BUFWIN);
  299. ether3_outw(priv(dev)->rx_head, REG_RECVPTR);
  300. ether3_outw(priv(dev)->rx_head >> 8, REG_RECVEND);
  301. ether3_outw(0, REG_TRANSMITPTR);
  302. ether3_outw(priv(dev)->regs.config2, REG_CONFIG2);
  303. ether3_outw(priv(dev)->regs.config1 | CFG1_LOCBUFMEM, REG_CONFIG1);
  304. ether3_setbuffer(dev, buffer_write, 0);
  305. ether3_writelong(dev, 0);
  306. priv(dev)->regs.command = CMD_ENINTRX | CMD_ENINTTX;
  307. ether3_outw(priv(dev)->regs.command | CMD_RXON, REG_COMMAND);
  308. }
  309. static inline int
  310. ether3_probe_bus_8(struct net_device *dev, int val)
  311. {
  312. int write_low, write_high, read_low, read_high;
  313. write_low = val & 255;
  314. write_high = val >> 8;
  315. printk(KERN_DEBUG "ether3_probe: write8 [%02X:%02X]", write_high, write_low);
  316. ether3_outb(write_low, REG_RECVPTR);
  317. ether3_outb(write_high, REG_RECVPTR + 4);
  318. read_low = ether3_inb(REG_RECVPTR);
  319. read_high = ether3_inb(REG_RECVPTR + 4);
  320. printk(", read8 [%02X:%02X]\n", read_high, read_low);
  321. return read_low == write_low && read_high == write_high;
  322. }
  323. static inline int
  324. ether3_probe_bus_16(struct net_device *dev, int val)
  325. {
  326. int read_val;
  327. ether3_outw(val, REG_RECVPTR);
  328. read_val = ether3_inw(REG_RECVPTR);
  329. printk(KERN_DEBUG "ether3_probe: write16 [%04X], read16 [%04X]\n", val, read_val);
  330. return read_val == val;
  331. }
  332. /*
  333. * Open/initialize the board. This is called (in the current kernel)
  334. * sometime after booting when the 'ifconfig' program is run.
  335. *
  336. * This routine should set everything up anew at each open, even
  337. * registers that "should" only need to be set once at boot, so that
  338. * there is non-reboot way to recover if something goes wrong.
  339. */
  340. static int
  341. ether3_open(struct net_device *dev)
  342. {
  343. if (request_irq(dev->irq, ether3_interrupt, 0, "ether3", dev))
  344. return -EAGAIN;
  345. ether3_init_for_open(dev);
  346. netif_start_queue(dev);
  347. return 0;
  348. }
  349. /*
  350. * The inverse routine to ether3_open().
  351. */
  352. static int
  353. ether3_close(struct net_device *dev)
  354. {
  355. netif_stop_queue(dev);
  356. disable_irq(dev->irq);
  357. ether3_outw(CMD_RXOFF|CMD_TXOFF, REG_COMMAND);
  358. priv(dev)->regs.command = 0;
  359. while (ether3_inw(REG_STATUS) & (STAT_RXON|STAT_TXON))
  360. barrier();
  361. ether3_outb(0x80, REG_CONFIG2 + 4);
  362. ether3_outw(0, REG_COMMAND);
  363. free_irq(dev->irq, dev);
  364. return 0;
  365. }
  366. /*
  367. * Set or clear promiscuous/multicast mode filter for this adaptor.
  368. *
  369. * We don't attempt any packet filtering. The card may have a SEEQ 8004
  370. * in which does not have the other ethernet address registers present...
  371. */
  372. static void ether3_setmulticastlist(struct net_device *dev)
  373. {
  374. priv(dev)->regs.config1 &= ~CFG1_RECVPROMISC;
  375. if (dev->flags & IFF_PROMISC) {
  376. /* promiscuous mode */
  377. priv(dev)->regs.config1 |= CFG1_RECVPROMISC;
  378. } else if (dev->flags & IFF_ALLMULTI || !netdev_mc_empty(dev)) {
  379. priv(dev)->regs.config1 |= CFG1_RECVSPECBRMULTI;
  380. } else
  381. priv(dev)->regs.config1 |= CFG1_RECVSPECBROAD;
  382. ether3_outw(priv(dev)->regs.config1 | CFG1_LOCBUFMEM, REG_CONFIG1);
  383. }
  384. static void ether3_timeout(struct net_device *dev)
  385. {
  386. unsigned long flags;
  387. del_timer(&priv(dev)->timer);
  388. local_irq_save(flags);
  389. printk(KERN_ERR "%s: transmit timed out, network cable problem?\n", dev->name);
  390. printk(KERN_ERR "%s: state: { status=%04X cfg1=%04X cfg2=%04X }\n", dev->name,
  391. ether3_inw(REG_STATUS), ether3_inw(REG_CONFIG1), ether3_inw(REG_CONFIG2));
  392. printk(KERN_ERR "%s: { rpr=%04X rea=%04X tpr=%04X }\n", dev->name,
  393. ether3_inw(REG_RECVPTR), ether3_inw(REG_RECVEND), ether3_inw(REG_TRANSMITPTR));
  394. printk(KERN_ERR "%s: tx head=%X tx tail=%X\n", dev->name,
  395. priv(dev)->tx_head, priv(dev)->tx_tail);
  396. ether3_setbuffer(dev, buffer_read, priv(dev)->tx_tail);
  397. printk(KERN_ERR "%s: packet status = %08X\n", dev->name, ether3_readlong(dev));
  398. local_irq_restore(flags);
  399. priv(dev)->regs.config2 |= CFG2_CTRLO;
  400. dev->stats.tx_errors += 1;
  401. ether3_outw(priv(dev)->regs.config2, REG_CONFIG2);
  402. priv(dev)->tx_head = priv(dev)->tx_tail = 0;
  403. netif_wake_queue(dev);
  404. }
  405. /*
  406. * Transmit a packet
  407. */
  408. static int
  409. ether3_sendpacket(struct sk_buff *skb, struct net_device *dev)
  410. {
  411. unsigned long flags;
  412. unsigned int length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  413. unsigned int ptr, next_ptr;
  414. if (priv(dev)->broken) {
  415. dev_kfree_skb(skb);
  416. dev->stats.tx_dropped++;
  417. netif_start_queue(dev);
  418. return NETDEV_TX_OK;
  419. }
  420. length = (length + 1) & ~1;
  421. if (length != skb->len) {
  422. if (skb_padto(skb, length))
  423. goto out;
  424. }
  425. next_ptr = (priv(dev)->tx_head + 1) & 15;
  426. local_irq_save(flags);
  427. if (priv(dev)->tx_tail == next_ptr) {
  428. local_irq_restore(flags);
  429. return NETDEV_TX_BUSY; /* unable to queue */
  430. }
  431. ptr = 0x600 * priv(dev)->tx_head;
  432. priv(dev)->tx_head = next_ptr;
  433. next_ptr *= 0x600;
  434. #define TXHDR_FLAGS (TXHDR_TRANSMIT|TXHDR_CHAINCONTINUE|TXHDR_DATAFOLLOWS|TXHDR_ENSUCCESS)
  435. ether3_setbuffer(dev, buffer_write, next_ptr);
  436. ether3_writelong(dev, 0);
  437. ether3_setbuffer(dev, buffer_write, ptr);
  438. ether3_writelong(dev, 0);
  439. ether3_writebuffer(dev, skb->data, length);
  440. ether3_writeword(dev, htons(next_ptr));
  441. ether3_writeword(dev, TXHDR_CHAINCONTINUE >> 16);
  442. ether3_setbuffer(dev, buffer_write, ptr);
  443. ether3_writeword(dev, htons((ptr + length + 4)));
  444. ether3_writeword(dev, TXHDR_FLAGS >> 16);
  445. ether3_ledon(dev);
  446. if (!(ether3_inw(REG_STATUS) & STAT_TXON)) {
  447. ether3_outw(ptr, REG_TRANSMITPTR);
  448. ether3_outw(priv(dev)->regs.command | CMD_TXON, REG_COMMAND);
  449. }
  450. next_ptr = (priv(dev)->tx_head + 1) & 15;
  451. local_irq_restore(flags);
  452. dev_kfree_skb(skb);
  453. if (priv(dev)->tx_tail == next_ptr)
  454. netif_stop_queue(dev);
  455. out:
  456. return NETDEV_TX_OK;
  457. }
  458. static irqreturn_t
  459. ether3_interrupt(int irq, void *dev_id)
  460. {
  461. struct net_device *dev = (struct net_device *)dev_id;
  462. unsigned int status, handled = IRQ_NONE;
  463. #if NET_DEBUG > 1
  464. if(net_debug & DEBUG_INT)
  465. printk("eth3irq: %d ", irq);
  466. #endif
  467. status = ether3_inw(REG_STATUS);
  468. if (status & STAT_INTRX) {
  469. ether3_outw(CMD_ACKINTRX | priv(dev)->regs.command, REG_COMMAND);
  470. ether3_rx(dev, 12);
  471. handled = IRQ_HANDLED;
  472. }
  473. if (status & STAT_INTTX) {
  474. ether3_outw(CMD_ACKINTTX | priv(dev)->regs.command, REG_COMMAND);
  475. ether3_tx(dev);
  476. handled = IRQ_HANDLED;
  477. }
  478. #if NET_DEBUG > 1
  479. if(net_debug & DEBUG_INT)
  480. printk("done\n");
  481. #endif
  482. return handled;
  483. }
  484. /*
  485. * If we have a good packet(s), get it/them out of the buffers.
  486. */
  487. static int ether3_rx(struct net_device *dev, unsigned int maxcnt)
  488. {
  489. unsigned int next_ptr = priv(dev)->rx_head, received = 0;
  490. ether3_ledon(dev);
  491. do {
  492. unsigned int this_ptr, status;
  493. unsigned char addrs[16];
  494. /*
  495. * read the first 16 bytes from the buffer.
  496. * This contains the status bytes etc and ethernet addresses,
  497. * and we also check the source ethernet address to see if
  498. * it originated from us.
  499. */
  500. {
  501. unsigned int temp_ptr;
  502. ether3_setbuffer(dev, buffer_read, next_ptr);
  503. temp_ptr = ether3_readword(dev);
  504. status = ether3_readword(dev);
  505. if ((status & (RXSTAT_DONE | RXHDR_CHAINCONTINUE | RXHDR_RECEIVE)) !=
  506. (RXSTAT_DONE | RXHDR_CHAINCONTINUE) || !temp_ptr)
  507. break;
  508. this_ptr = next_ptr + 4;
  509. next_ptr = ntohs(temp_ptr);
  510. }
  511. ether3_setbuffer(dev, buffer_read, this_ptr);
  512. ether3_readbuffer(dev, addrs+2, 12);
  513. if (next_ptr < RX_START || next_ptr >= RX_END) {
  514. int i;
  515. printk("%s: bad next pointer @%04X: ", dev->name, priv(dev)->rx_head);
  516. printk("%02X %02X %02X %02X ", next_ptr >> 8, next_ptr & 255, status & 255, status >> 8);
  517. for (i = 2; i < 14; i++)
  518. printk("%02X ", addrs[i]);
  519. printk("\n");
  520. next_ptr = priv(dev)->rx_head;
  521. break;
  522. }
  523. /*
  524. * ignore our own packets...
  525. */
  526. if (!(*(unsigned long *)&dev->dev_addr[0] ^ *(unsigned long *)&addrs[2+6]) &&
  527. !(*(unsigned short *)&dev->dev_addr[4] ^ *(unsigned short *)&addrs[2+10])) {
  528. maxcnt ++; /* compensate for loopedback packet */
  529. ether3_outw(next_ptr >> 8, REG_RECVEND);
  530. } else
  531. if (!(status & (RXSTAT_OVERSIZE|RXSTAT_CRCERROR|RXSTAT_DRIBBLEERROR|RXSTAT_SHORTPACKET))) {
  532. unsigned int length = next_ptr - this_ptr;
  533. struct sk_buff *skb;
  534. if (next_ptr <= this_ptr)
  535. length += RX_END - RX_START;
  536. skb = netdev_alloc_skb(dev, length + 2);
  537. if (skb) {
  538. unsigned char *buf;
  539. skb_reserve(skb, 2);
  540. buf = skb_put(skb, length);
  541. ether3_readbuffer(dev, buf + 12, length - 12);
  542. ether3_outw(next_ptr >> 8, REG_RECVEND);
  543. *(unsigned short *)(buf + 0) = *(unsigned short *)(addrs + 2);
  544. *(unsigned long *)(buf + 2) = *(unsigned long *)(addrs + 4);
  545. *(unsigned long *)(buf + 6) = *(unsigned long *)(addrs + 8);
  546. *(unsigned short *)(buf + 10) = *(unsigned short *)(addrs + 12);
  547. skb->protocol = eth_type_trans(skb, dev);
  548. netif_rx(skb);
  549. received ++;
  550. } else {
  551. ether3_outw(next_ptr >> 8, REG_RECVEND);
  552. dev->stats.rx_dropped++;
  553. goto done;
  554. }
  555. } else {
  556. struct net_device_stats *stats = &dev->stats;
  557. ether3_outw(next_ptr >> 8, REG_RECVEND);
  558. if (status & RXSTAT_OVERSIZE) stats->rx_over_errors ++;
  559. if (status & RXSTAT_CRCERROR) stats->rx_crc_errors ++;
  560. if (status & RXSTAT_DRIBBLEERROR) stats->rx_fifo_errors ++;
  561. if (status & RXSTAT_SHORTPACKET) stats->rx_length_errors ++;
  562. stats->rx_errors++;
  563. }
  564. }
  565. while (-- maxcnt);
  566. done:
  567. dev->stats.rx_packets += received;
  568. priv(dev)->rx_head = next_ptr;
  569. /*
  570. * If rx went off line, then that means that the buffer may be full. We
  571. * have dropped at least one packet.
  572. */
  573. if (!(ether3_inw(REG_STATUS) & STAT_RXON)) {
  574. dev->stats.rx_dropped++;
  575. ether3_outw(next_ptr, REG_RECVPTR);
  576. ether3_outw(priv(dev)->regs.command | CMD_RXON, REG_COMMAND);
  577. }
  578. return maxcnt;
  579. }
  580. /*
  581. * Update stats for the transmitted packet(s)
  582. */
  583. static void ether3_tx(struct net_device *dev)
  584. {
  585. unsigned int tx_tail = priv(dev)->tx_tail;
  586. int max_work = 14;
  587. do {
  588. unsigned long status;
  589. /*
  590. * Read the packet header
  591. */
  592. ether3_setbuffer(dev, buffer_read, tx_tail * 0x600);
  593. status = ether3_readlong(dev);
  594. /*
  595. * Check to see if this packet has been transmitted
  596. */
  597. if ((status & (TXSTAT_DONE | TXHDR_TRANSMIT)) !=
  598. (TXSTAT_DONE | TXHDR_TRANSMIT))
  599. break;
  600. /*
  601. * Update errors
  602. */
  603. if (!(status & (TXSTAT_BABBLED | TXSTAT_16COLLISIONS)))
  604. dev->stats.tx_packets++;
  605. else {
  606. dev->stats.tx_errors++;
  607. if (status & TXSTAT_16COLLISIONS)
  608. dev->stats.collisions += 16;
  609. if (status & TXSTAT_BABBLED)
  610. dev->stats.tx_fifo_errors++;
  611. }
  612. tx_tail = (tx_tail + 1) & 15;
  613. } while (--max_work);
  614. if (priv(dev)->tx_tail != tx_tail) {
  615. priv(dev)->tx_tail = tx_tail;
  616. netif_wake_queue(dev);
  617. }
  618. }
  619. static void ether3_banner(void)
  620. {
  621. static unsigned version_printed = 0;
  622. if (net_debug && version_printed++ == 0)
  623. printk(KERN_INFO "%s", version);
  624. }
  625. static const struct net_device_ops ether3_netdev_ops = {
  626. .ndo_open = ether3_open,
  627. .ndo_stop = ether3_close,
  628. .ndo_start_xmit = ether3_sendpacket,
  629. .ndo_set_rx_mode = ether3_setmulticastlist,
  630. .ndo_tx_timeout = ether3_timeout,
  631. .ndo_validate_addr = eth_validate_addr,
  632. .ndo_change_mtu = eth_change_mtu,
  633. .ndo_set_mac_address = eth_mac_addr,
  634. };
  635. static int
  636. ether3_probe(struct expansion_card *ec, const struct ecard_id *id)
  637. {
  638. const struct ether3_data *data = id->data;
  639. struct net_device *dev;
  640. int bus_type, ret;
  641. ether3_banner();
  642. ret = ecard_request_resources(ec);
  643. if (ret)
  644. goto out;
  645. dev = alloc_etherdev(sizeof(struct dev_priv));
  646. if (!dev) {
  647. ret = -ENOMEM;
  648. goto release;
  649. }
  650. SET_NETDEV_DEV(dev, &ec->dev);
  651. priv(dev)->base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0);
  652. if (!priv(dev)->base) {
  653. ret = -ENOMEM;
  654. goto free;
  655. }
  656. ec->irqaddr = priv(dev)->base + data->base_offset;
  657. ec->irqmask = 0xf0;
  658. priv(dev)->seeq = priv(dev)->base + data->base_offset;
  659. dev->irq = ec->irq;
  660. ether3_addr(dev->dev_addr, ec);
  661. init_timer(&priv(dev)->timer);
  662. /* Reset card...
  663. */
  664. ether3_outb(0x80, REG_CONFIG2 + 4);
  665. bus_type = BUS_UNKNOWN;
  666. udelay(4);
  667. /* Test using Receive Pointer (16-bit register) to find out
  668. * how the ether3 is connected to the bus...
  669. */
  670. if (ether3_probe_bus_8(dev, 0x100) &&
  671. ether3_probe_bus_8(dev, 0x201))
  672. bus_type = BUS_8;
  673. if (bus_type == BUS_UNKNOWN &&
  674. ether3_probe_bus_16(dev, 0x101) &&
  675. ether3_probe_bus_16(dev, 0x201))
  676. bus_type = BUS_16;
  677. switch (bus_type) {
  678. case BUS_UNKNOWN:
  679. printk(KERN_ERR "%s: unable to identify bus width\n", dev->name);
  680. ret = -ENODEV;
  681. goto free;
  682. case BUS_8:
  683. printk(KERN_ERR "%s: %s found, but is an unsupported "
  684. "8-bit card\n", dev->name, data->name);
  685. ret = -ENODEV;
  686. goto free;
  687. default:
  688. break;
  689. }
  690. if (ether3_init_2(dev)) {
  691. ret = -ENODEV;
  692. goto free;
  693. }
  694. dev->netdev_ops = &ether3_netdev_ops;
  695. dev->watchdog_timeo = 5 * HZ / 100;
  696. ret = register_netdev(dev);
  697. if (ret)
  698. goto free;
  699. printk("%s: %s in slot %d, %pM\n",
  700. dev->name, data->name, ec->slot_no, dev->dev_addr);
  701. ecard_set_drvdata(ec, dev);
  702. return 0;
  703. free:
  704. free_netdev(dev);
  705. release:
  706. ecard_release_resources(ec);
  707. out:
  708. return ret;
  709. }
  710. static void ether3_remove(struct expansion_card *ec)
  711. {
  712. struct net_device *dev = ecard_get_drvdata(ec);
  713. ecard_set_drvdata(ec, NULL);
  714. unregister_netdev(dev);
  715. free_netdev(dev);
  716. ecard_release_resources(ec);
  717. }
  718. static struct ether3_data ether3 = {
  719. .name = "ether3",
  720. .base_offset = 0,
  721. };
  722. static struct ether3_data etherb = {
  723. .name = "etherb",
  724. .base_offset = 0x800,
  725. };
  726. static const struct ecard_id ether3_ids[] = {
  727. { MANU_ANT2, PROD_ANT_ETHER3, &ether3 },
  728. { MANU_ANT, PROD_ANT_ETHER3, &ether3 },
  729. { MANU_ANT, PROD_ANT_ETHERB, &etherb },
  730. { 0xffff, 0xffff }
  731. };
  732. static struct ecard_driver ether3_driver = {
  733. .probe = ether3_probe,
  734. .remove = ether3_remove,
  735. .id_table = ether3_ids,
  736. .drv = {
  737. .name = "ether3",
  738. },
  739. };
  740. static int __init ether3_init(void)
  741. {
  742. return ecard_register_driver(&ether3_driver);
  743. }
  744. static void __exit ether3_exit(void)
  745. {
  746. ecard_remove_driver(&ether3_driver);
  747. }
  748. module_init(ether3_init);
  749. module_exit(ether3_exit);
  750. MODULE_LICENSE("GPL");