ether3.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:24k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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