ether3.c 24 KB

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