ether3.c 24 KB

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