ether3.c 24 KB

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