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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 3c501.c: A 3Com 3c501 Ethernet driver for Linux. */
  2. /*
  3.     Written 1992,1993,1994  Donald Becker
  4.     Copyright 1993 United States Government as represented by the
  5.     Director, National Security Agency.  This software may be used and
  6.     distributed according to the terms of the GNU General Public License,
  7.     incorporated herein by reference.
  8.     This is a device driver for the 3Com Etherlink 3c501.
  9.     Do not purchase this card, even as a joke.  It's performance is horrible,
  10.     and it breaks in many ways.
  11.     The author may be reached as becker@scyld.com, or C/O
  12. Scyld Computing Corporation
  13. 410 Severn Ave., Suite 210
  14. Annapolis MD 21403
  15.     Fixed (again!) the missing interrupt locking on TX/RX shifting.
  16.      Alan Cox <Alan.Cox@linux.org>
  17.     Removed calls to init_etherdev since they are no longer needed, and
  18.     cleaned up modularization just a bit. The driver still allows only
  19.     the default address for cards when loaded as a module, but that's
  20.     really less braindead than anyone using a 3c501 board. :)
  21.     19950208 (invid@msen.com)
  22.     Added traps for interrupts hitting the window as we clear and TX load
  23.     the board. Now getting 150K/second FTP with a 3c501 card. Still playing
  24.     with a TX-TX optimisation to see if we can touch 180-200K/second as seems
  25.     theoretically maximum.
  26.      19950402 Alan Cox <Alan.Cox@linux.org>
  27.     
  28.     Cleaned up for 2.3.x because we broke SMP now. 
  29.      20000208 Alan Cox <alan@redhat.com>
  30.     
  31. */
  32. /**
  33.  * DOC: 3c501 Card Notes
  34.  *
  35.  *  Some notes on this thing if you have to hack it.  [Alan]
  36.  *
  37.  *  Some documentation is available from 3Com. Due to the boards age
  38.  *  standard responses when you ask for this will range from 'be serious'
  39.  *  to 'give it to a museum'. The documentation is incomplete and mostly
  40.  *  of historical interest anyway. 
  41.  *
  42.  *  The basic system is a single buffer which can be used to receive or
  43.  *  transmit a packet. A third command mode exists when you are setting
  44.  *  things up.
  45.  *
  46.  *  If it's transmitting it's not receiving and vice versa. In fact the
  47.  *  time to get the board back into useful state after an operation is
  48.  *  quite large.
  49.  *
  50.  *  The driver works by keeping the board in receive mode waiting for a
  51.  *  packet to arrive. When one arrives it is copied out of the buffer
  52.  *  and delivered to the kernel. The card is reloaded and off we go.
  53.  *
  54.  *  When transmitting lp->txing is set and the card is reset (from
  55.  *  receive mode) [possibly losing a packet just received] to command
  56.  *  mode. A packet is loaded and transmit mode triggered. The interrupt
  57.  *  handler runs different code for transmit interrupts and can handle
  58.  *  returning to receive mode or retransmissions (yes you have to help
  59.  *  out with those too).
  60.  *
  61.  * DOC: Problems
  62.  *  
  63.  *  There are a wide variety of undocumented error returns from the card
  64.  *  and you basically have to kick the board and pray if they turn up. Most
  65.  *  only occur under extreme load or if you do something the board doesn't
  66.  *  like (eg touching a register at the wrong time).
  67.  *
  68.  *  The driver is less efficient than it could be. It switches through
  69.  *  receive mode even if more transmits are queued. If this worries you buy
  70.  *  a real Ethernet card.
  71.  *
  72.  *  The combination of slow receive restart and no real multicast
  73.  *  filter makes the board unusable with a kernel compiled for IP
  74.  *  multicasting in a real multicast environment. That's down to the board,
  75.  *  but even with no multicast programs running a multicast IP kernel is
  76.  *  in group 224.0.0.1 and you will therefore be listening to all multicasts.
  77.  *  One nv conference running over that Ethernet and you can give up.
  78.  *
  79.  */
  80. #define DRV_NAME "3c501"
  81. #define DRV_VERSION "2001/11/17"
  82. static const char version[] =
  83. DRV_NAME ".c: " DRV_VERSION " Alan Cox (alan@redhat.com).n";
  84. /*
  85.  * Braindamage remaining:
  86.  * The 3c501 board.
  87.  */
  88. #include <linux/module.h>
  89. #include <linux/kernel.h>
  90. #include <linux/sched.h>
  91. #include <linux/ptrace.h>
  92. #include <linux/fcntl.h>
  93. #include <linux/ioport.h>
  94. #include <linux/interrupt.h>
  95. #include <linux/slab.h>
  96. #include <linux/string.h>
  97. #include <linux/errno.h>
  98. #include <linux/config.h> /* for CONFIG_IP_MULTICAST */
  99. #include <linux/spinlock.h>
  100. #include <linux/ethtool.h>
  101. #include <asm/uaccess.h>
  102. #include <asm/bitops.h>
  103. #include <asm/io.h>
  104. #include <linux/netdevice.h>
  105. #include <linux/etherdevice.h>
  106. #include <linux/skbuff.h>
  107. #include <linux/init.h>
  108. /* A zero-terminated list of I/O addresses to be probed.
  109.    The 3c501 can be at many locations, but here are the popular ones. */
  110. static unsigned int netcard_portlist[] __initdata = { 
  111. 0x280, 0x300, 0
  112. };
  113. /*
  114.  * Index to functions.
  115.  */
  116. int el1_probe(struct net_device *dev);
  117. static int  el1_probe1(struct net_device *dev, int ioaddr);
  118. static int  el_open(struct net_device *dev);
  119. static void el_timeout(struct net_device *dev);
  120. static int  el_start_xmit(struct sk_buff *skb, struct net_device *dev);
  121. static void el_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  122. static void el_receive(struct net_device *dev);
  123. static void el_reset(struct net_device *dev);
  124. static int  el1_close(struct net_device *dev);
  125. static struct net_device_stats *el1_get_stats(struct net_device *dev);
  126. static void set_multicast_list(struct net_device *dev);
  127. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  128. #define EL1_IO_EXTENT 16
  129. #ifndef EL_DEBUG
  130. #define EL_DEBUG  0 /* use 0 for production, 1 for devel., >2 for debug */
  131. #endif /* Anything above 5 is wordy death! */
  132. #define debug el_debug
  133. static int el_debug = EL_DEBUG;
  134. /*
  135.  * Board-specific info in dev->priv.
  136.  */
  137. struct net_local
  138. {
  139. struct net_device_stats stats;
  140. int tx_pkt_start; /* The length of the current Tx packet. */
  141. int collisions; /* Tx collisions this packet */
  142. int loading; /* Spot buffer load collisions */
  143. int txing; /* True if card is in TX mode */
  144. spinlock_t lock; /* Serializing lock */
  145. };
  146. #define RX_STATUS (ioaddr + 0x06)
  147. #define RX_CMD   RX_STATUS
  148. #define TX_STATUS (ioaddr + 0x07)
  149. #define TX_CMD   TX_STATUS
  150. #define GP_LOW    (ioaddr + 0x08)
  151. #define GP_HIGH   (ioaddr + 0x09)
  152. #define RX_BUF_CLR (ioaddr + 0x0A)
  153. #define RX_LOW   (ioaddr + 0x0A)
  154. #define RX_HIGH   (ioaddr + 0x0B)
  155. #define SAPROM   (ioaddr + 0x0C)
  156. #define AX_STATUS (ioaddr + 0x0E)
  157. #define AX_CMD   AX_STATUS
  158. #define DATAPORT  (ioaddr + 0x0F)
  159. #define TX_RDY 0x08 /* In TX_STATUS */
  160. #define EL1_DATAPTR 0x08
  161. #define EL1_RXPTR 0x0A
  162. #define EL1_SAPROM 0x0C
  163. #define EL1_DATAPORT  0x0f
  164. /*
  165.  * Writes to the ax command register.
  166.  */
  167. #define AX_OFF 0x00 /* Irq off, buffer access on */
  168. #define AX_SYS  0x40 /* Load the buffer */
  169. #define AX_XMIT 0x44 /* Transmit a packet */
  170. #define AX_RX 0x48 /* Receive a packet */
  171. #define AX_LOOP 0x0C /* Loopback mode */
  172. #define AX_RESET 0x80
  173. /*
  174.  * Normal receive mode written to RX_STATUS.  We must intr on short packets
  175.  * to avoid bogus rx lockups.
  176.  */
  177. #define RX_NORM 0xA8 /* 0x68 == all addrs, 0xA8 only to me. */
  178. #define RX_PROM 0x68 /* Senior Prom, uhmm promiscuous mode. */
  179. #define RX_MULT 0xE8 /* Accept multicast packets. */
  180. #define TX_NORM 0x0A /* Interrupt on everything that might hang the chip */
  181. /*
  182.  * TX_STATUS register.
  183.  */
  184. #define TX_COLLISION 0x02
  185. #define TX_16COLLISIONS 0x04
  186. #define TX_READY 0x08
  187. #define RX_RUNT 0x08
  188. #define RX_MISSED 0x01 /* Missed a packet due to 3c501 braindamage. */
  189. #define RX_GOOD 0x30 /* Good packet 0x20, or simple overflow 0x10. */
  190. /*
  191.  * The boilerplate probe code.
  192.  */
  193. /**
  194.  * el1_probe:
  195.  * @dev: The device structure passed in to probe. 
  196.  *
  197.  * This can be called from two places. The network layer will probe using
  198.  * a device structure passed in with the probe information completed. For a
  199.  * modular driver we use #init_module to fill in our own structure and probe
  200.  * for it.
  201.  *
  202.  * Returns 0 on success. ENXIO if asked not to probe and ENODEV if asked to
  203.  * probe and failing to find anything.
  204.  */
  205.  
  206. int __init el1_probe(struct net_device *dev)
  207. {
  208. int i;
  209. int base_addr = dev->base_addr;
  210. SET_MODULE_OWNER(dev);
  211. if (base_addr > 0x1ff) /* Check a single specified location. */
  212. return el1_probe1(dev, base_addr);
  213. else if (base_addr != 0) /* Don't probe at all. */
  214. return -ENXIO;
  215. for (i = 0; netcard_portlist[i]; i++)
  216. if (el1_probe1(dev, netcard_portlist[i]) == 0)
  217. return 0;
  218. return -ENODEV;
  219. }
  220. /**
  221.  * el1_probe1: 
  222.  * @dev: The device structure to use
  223.  * @ioaddr: An I/O address to probe at.
  224.  *
  225.  * The actual probe. This is iterated over by #el1_probe in order to
  226.  * check all the applicable device locations.
  227.  *
  228.  * Returns 0 for a success, in which case the device is activated,
  229.  * EAGAIN if the IRQ is in use by another driver, and ENODEV if the
  230.  * board cannot be found.
  231.  */
  232. static int __init el1_probe1(struct net_device *dev, int ioaddr)
  233. {
  234. struct net_local *lp;
  235. const char *mname; /* Vendor name */
  236. unsigned char station_addr[6];
  237. int autoirq = 0;
  238. int i;
  239. /*
  240.  * Reserve I/O resource for exclusive use by this driver
  241.  */
  242. if (!request_region(ioaddr, EL1_IO_EXTENT, dev->name))
  243. return -ENODEV;
  244. /*
  245.  * Read the station address PROM data from the special port.
  246.  */
  247. for (i = 0; i < 6; i++)
  248. {
  249. outw(i, ioaddr + EL1_DATAPTR);
  250. station_addr[i] = inb(ioaddr + EL1_SAPROM);
  251. }
  252. /*
  253.  * Check the first three octets of the S.A. for 3Com's prefix, or
  254.  * for the Sager NP943 prefix.
  255.  */
  256. if (station_addr[0] == 0x02  &&  station_addr[1] == 0x60
  257. && station_addr[2] == 0x8c)
  258. {
  259. mname = "3c501";
  260. } else if (station_addr[0] == 0x00  &&  station_addr[1] == 0x80
  261. && station_addr[2] == 0xC8)
  262. {
  263. mname = "NP943";
  264.      }
  265.      else {
  266. release_region(ioaddr, EL1_IO_EXTENT);
  267. return -ENODEV;
  268. }
  269. /*
  270.  * We auto-IRQ by shutting off the interrupt line and letting it float
  271.  * high.
  272.  */
  273. if (dev->irq < 2)
  274. {
  275. autoirq_setup(2);
  276. inb(RX_STATUS); /* Clear pending interrupts. */
  277. inb(TX_STATUS);
  278. outb(AX_LOOP + 1, AX_CMD);
  279. outb(0x00, AX_CMD);
  280. autoirq = autoirq_report(1);
  281. if (autoirq == 0)
  282. {
  283. printk(KERN_WARNING "%s probe at %#x failed to detect IRQ line.n",
  284. mname, ioaddr);
  285. release_region(ioaddr, EL1_IO_EXTENT);
  286. return -EAGAIN;
  287. }
  288. }
  289. outb(AX_RESET+AX_LOOP, AX_CMD); /* Loopback mode. */
  290. dev->base_addr = ioaddr;
  291. memcpy(dev->dev_addr, station_addr, ETH_ALEN);
  292. if (dev->mem_start & 0xf)
  293. el_debug = dev->mem_start & 0x7;
  294. if (autoirq)
  295. dev->irq = autoirq;
  296. printk(KERN_INFO "%s: %s EtherLink at %#lx, using %sIRQ %d.n", dev->name, mname, dev->base_addr,
  297. autoirq ? "auto":"assigned ", dev->irq);
  298. #ifdef CONFIG_IP_MULTICAST
  299. printk(KERN_WARNING "WARNING: Use of the 3c501 in a multicast kernel is NOT recommended.n");
  300. #endif
  301. if (el_debug)
  302. printk(KERN_DEBUG "%s", version);
  303. /*
  304.  * Initialize the device structure.
  305.  */
  306. dev->priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  307. if (dev->priv == NULL) {
  308. release_region(ioaddr, EL1_IO_EXTENT);
  309. return -ENOMEM;
  310. }
  311. memset(dev->priv, 0, sizeof(struct net_local));
  312. lp=dev->priv;
  313. spin_lock_init(&lp->lock);
  314. /*
  315.  * The EL1-specific entries in the device structure.
  316.  */
  317. dev->open = &el_open;
  318. dev->hard_start_xmit = &el_start_xmit;
  319. dev->tx_timeout = &el_timeout;
  320. dev->watchdog_timeo = HZ;
  321. dev->stop = &el1_close;
  322. dev->get_stats = &el1_get_stats;
  323. dev->set_multicast_list = &set_multicast_list;
  324. dev->do_ioctl = netdev_ioctl;
  325. /*
  326.  * Setup the generic properties
  327.  */
  328. ether_setup(dev);
  329. return 0;
  330. }
  331. /**
  332.  * el1_open:
  333.  * @dev: device that is being opened
  334.  *
  335.  * When an ifconfig is issued which changes the device flags to include
  336.  * IFF_UP this function is called. It is only called when the change 
  337.  * occurs, not when the interface remains up. #el1_close will be called
  338.  * when it goes down.
  339.  *
  340.  * Returns 0 for a successful open, or -EAGAIN if someone has run off
  341.  * with our interrupt line.
  342.  */
  343. static int el_open(struct net_device *dev)
  344. {
  345. int retval;
  346. int ioaddr = dev->base_addr;
  347. struct net_local *lp = (struct net_local *)dev->priv;
  348. unsigned long flags;
  349. if (el_debug > 2)
  350. printk(KERN_DEBUG "%s: Doing el_open()...", dev->name);
  351. if ((retval = request_irq(dev->irq, &el_interrupt, 0, dev->name, dev)))
  352. return retval;
  353. spin_lock_irqsave(&lp->lock, flags);
  354. el_reset(dev);
  355. spin_unlock_irqrestore(&lp->lock, flags);
  356. lp->txing = 0; /* Board in RX mode */
  357. outb(AX_RX, AX_CMD); /* Aux control, irq and receive enabled */
  358. netif_start_queue(dev);
  359. return 0;
  360. }
  361. /**
  362.  * el_timeout:
  363.  * @dev: The 3c501 card that has timed out
  364.  *
  365.  * Attempt to restart the board. This is basically a mixture of extreme
  366.  * violence and prayer
  367.  *
  368.  */
  369.  
  370. static void el_timeout(struct net_device *dev)
  371. {
  372. struct net_local *lp = (struct net_local *)dev->priv;
  373. int ioaddr = dev->base_addr;
  374.  
  375. if (el_debug)
  376. printk (KERN_DEBUG "%s: transmit timed out, txsr %#2x axsr=%02x rxsr=%02x.n",
  377. dev->name, inb(TX_STATUS), inb(AX_STATUS), inb(RX_STATUS));
  378. lp->stats.tx_errors++;
  379. outb(TX_NORM, TX_CMD);
  380. outb(RX_NORM, RX_CMD);
  381. outb(AX_OFF, AX_CMD); /* Just trigger a false interrupt. */
  382. outb(AX_RX, AX_CMD); /* Aux control, irq and receive enabled */
  383. lp->txing = 0; /* Ripped back in to RX */
  384. netif_wake_queue(dev);
  385. }
  386.  
  387. /**
  388.  * el_start_xmit:
  389.  * @skb: The packet that is queued to be sent
  390.  * @dev: The 3c501 card we want to throw it down
  391.  *
  392.  * Attempt to send a packet to a 3c501 card. There are some interesting
  393.  * catches here because the 3c501 is an extremely old and therefore
  394.  * stupid piece of technology.
  395.  *
  396.  * If we are handling an interrupt on the other CPU we cannot load a packet
  397.  * as we may still be attempting to retrieve the last RX packet buffer.
  398.  *
  399.  * When a transmit times out we dump the card into control mode and just
  400.  * start again. It happens enough that it isnt worth logging.
  401.  *
  402.  * We avoid holding the spin locks when doing the packet load to the board.
  403.  * The device is very slow, and its DMA mode is even slower. If we held the
  404.  * lock while loading 1500 bytes onto the controller we would drop a lot of
  405.  * serial port characters. This requires we do extra locking, but we have
  406.  * no real choice.
  407.  */
  408. static int el_start_xmit(struct sk_buff *skb, struct net_device *dev)
  409. {
  410. struct net_local *lp = (struct net_local *)dev->priv;
  411. int ioaddr = dev->base_addr;
  412. unsigned long flags;
  413. /*
  414.  * Avoid incoming interrupts between us flipping txing and flipping
  415.  * mode as the driver assumes txing is a faithful indicator of card
  416.  * state
  417.  */
  418. spin_lock_irqsave(&lp->lock, flags);
  419. /*
  420.  * Avoid timer-based retransmission conflicts.
  421.  */
  422. netif_stop_queue(dev);
  423. do
  424. {
  425. int gp_start = 0x800 - (ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN);
  426. unsigned char *buf = skb->data;
  427. lp->tx_pkt_start = gp_start;
  428.      lp->collisions = 0;
  429.      lp->stats.tx_bytes += skb->len;
  430. /*
  431.  * Command mode with status cleared should [in theory]
  432.  * mean no more interrupts can be pending on the card.
  433.  */
  434. outb_p(AX_SYS, AX_CMD);
  435. inb_p(RX_STATUS);
  436. inb_p(TX_STATUS);
  437. lp->loading = 1;
  438. lp->txing = 1;
  439. /*
  440.  * Turn interrupts back on while we spend a pleasant afternoon
  441.  * loading bytes into the board
  442.  */
  443. spin_unlock_irqrestore(&lp->lock, flags);
  444. outw(0x00, RX_BUF_CLR); /* Set rx packet area to 0. */
  445. outw(gp_start, GP_LOW); /* aim - packet will be loaded into buffer start */
  446. outsb(DATAPORT,buf,skb->len); /* load buffer (usual thing each byte increments the pointer) */
  447. outw(gp_start, GP_LOW); /* the board reuses the same register */
  448. if(lp->loading != 2)
  449. {
  450. outb(AX_XMIT, AX_CMD); /* fire ... Trigger xmit.  */
  451. lp->loading=0;
  452. dev->trans_start = jiffies;
  453. if (el_debug > 2)
  454. printk(KERN_DEBUG " queued xmit.n");
  455. dev_kfree_skb (skb);
  456. return 0;
  457. }
  458. /* A receive upset our load, despite our best efforts */
  459. if(el_debug>2)
  460. printk(KERN_DEBUG "%s: burped during tx load.n", dev->name);
  461. spin_lock_irqsave(&lp->lock, flags);
  462. }
  463. while(1);
  464. }
  465. /**
  466.  * el_interrupt:
  467.  * @irq: Interrupt number
  468.  * @dev_id: The 3c501 that burped
  469.  * @regs: Register data (surplus to our requirements)
  470.  *
  471.  * Handle the ether interface interrupts. The 3c501 needs a lot more 
  472.  * hand holding than most cards. In paticular we get a transmit interrupt
  473.  * with a collision error because the board firmware isnt capable of rewinding
  474.  * its own transmit buffer pointers. It can however count to 16 for us.
  475.  *
  476.  * On the receive side the card is also very dumb. It has no buffering to
  477.  * speak of. We simply pull the packet out of its PIO buffer (which is slow)
  478.  * and queue it for the kernel. Then we reset the card for the next packet.
  479.  *
  480.  * We sometimes get suprise interrupts late both because the SMP IRQ delivery
  481.  * is message passing and because the card sometimes seems to deliver late. I
  482.  * think if it is part way through a receive and the mode is changed it carries
  483.  * on receiving and sends us an interrupt. We have to band aid all these cases
  484.  * to get a sensible 150kbytes/second performance. Even then you want a small
  485.  * TCP window.
  486.  */
  487. static void el_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  488. {
  489. struct net_device *dev = dev_id;
  490. struct net_local *lp;
  491. int ioaddr;
  492. int axsr; /* Aux. status reg. */
  493. ioaddr = dev->base_addr;
  494. lp = (struct net_local *)dev->priv;
  495. spin_lock(&lp->lock);
  496. /*
  497.  * What happened ?
  498.  */
  499. axsr = inb(AX_STATUS);
  500. /*
  501.  * Log it
  502.  */
  503. if (el_debug > 3)
  504. printk(KERN_DEBUG "%s: el_interrupt() aux=%#02x", dev->name, axsr);
  505.         if(lp->loading==1 && !lp->txing)
  506.          printk(KERN_WARNING "%s: Inconsistent state loading while not in txn",
  507.          dev->name);
  508. if (lp->txing)
  509. {
  510.      /*
  511.       * Board in transmit mode. May be loading. If we are
  512.       * loading we shouldn't have got this.
  513.       */
  514. int txsr = inb(TX_STATUS);
  515. if(lp->loading==1)
  516. {
  517. if(el_debug > 2)
  518. {
  519. printk(KERN_DEBUG "%s: Interrupt while loading [", dev->name);
  520. printk(KERN_DEBUG " txsr=%02x gp=%04x rp=%04x]n", txsr, inw(GP_LOW),inw(RX_LOW));
  521. }
  522. lp->loading=2; /* Force a reload */
  523. spin_unlock(&lp->lock);
  524. return;
  525. }
  526. if (el_debug > 6)
  527. printk(KERN_DEBUG " txsr=%02x gp=%04x rp=%04x", txsr, inw(GP_LOW),inw(RX_LOW));
  528. if ((axsr & 0x80) && (txsr & TX_READY) == 0)
  529. {
  530. /*
  531.  * FIXME: is there a logic to whether to keep on trying or
  532.  * reset immediately ?
  533.  */
  534. if(el_debug>1)
  535. printk(KERN_DEBUG "%s: Unusual interrupt during Tx, txsr=%02x axsr=%02x"
  536.    " gp=%03x rp=%03x.n", dev->name, txsr, axsr,
  537. inw(ioaddr + EL1_DATAPTR), inw(ioaddr + EL1_RXPTR));
  538. lp->txing = 0;
  539. netif_wake_queue(dev);
  540. }
  541. else if (txsr & TX_16COLLISIONS)
  542. {
  543. /*
  544.  * Timed out
  545.  */
  546. if (el_debug)
  547. printk (KERN_DEBUG "%s: Transmit failed 16 times, Ethernet jammed?n",dev->name);
  548. outb(AX_SYS, AX_CMD);
  549. lp->txing = 0;
  550. lp->stats.tx_aborted_errors++;
  551. netif_wake_queue(dev);
  552. }
  553. else if (txsr & TX_COLLISION)
  554. {
  555. /*
  556.  * Retrigger xmit.
  557.  */
  558. if (el_debug > 6)
  559. printk(KERN_DEBUG " retransmitting after a collision.n");
  560. /*
  561.  * Poor little chip can't reset its own start pointer
  562.  */
  563. outb(AX_SYS, AX_CMD);
  564. outw(lp->tx_pkt_start, GP_LOW);
  565. outb(AX_XMIT, AX_CMD);
  566. lp->stats.collisions++;
  567. spin_unlock(&lp->lock);
  568. return;
  569. }
  570. else
  571. {
  572. /*
  573.  * It worked.. we will now fall through and receive
  574.  */
  575. lp->stats.tx_packets++;
  576. if (el_debug > 6)
  577. printk(KERN_DEBUG " Tx succeeded %sn",
  578.         (txsr & TX_RDY) ? "." : "but tx is busy!");
  579. /*
  580.  * This is safe the interrupt is atomic WRT itself.
  581.  */
  582. lp->txing = 0;
  583. netif_wake_queue(dev); /* In case more to transmit */
  584. }
  585. }
  586. else
  587. {
  588.      /*
  589.       * In receive mode.
  590.       */
  591. int rxsr = inb(RX_STATUS);
  592. if (el_debug > 5)
  593. printk(KERN_DEBUG " rxsr=%02x txsr=%02x rp=%04x", rxsr, inb(TX_STATUS),inw(RX_LOW));
  594. /*
  595.  * Just reading rx_status fixes most errors.
  596.  */
  597. if (rxsr & RX_MISSED)
  598. lp->stats.rx_missed_errors++;
  599. else if (rxsr & RX_RUNT)
  600. { /* Handled to avoid board lock-up. */
  601. lp->stats.rx_length_errors++;
  602. if (el_debug > 5)
  603. printk(KERN_DEBUG " runt.n");
  604. }
  605. else if (rxsr & RX_GOOD)
  606. {
  607. /*
  608.  * Receive worked.
  609.  */
  610. el_receive(dev);
  611. }
  612. else
  613. {
  614. /*
  615.  * Nothing?  Something is broken!
  616.  */
  617. if (el_debug > 2)
  618. printk(KERN_DEBUG "%s: No packet seen, rxsr=%02x **resetting 3c501***n",
  619. dev->name, rxsr);
  620. el_reset(dev);
  621. }
  622. if (el_debug > 3)
  623. printk(KERN_DEBUG ".n");
  624. }
  625. /*
  626.  * Move into receive mode
  627.  */
  628. outb(AX_RX, AX_CMD);
  629. outw(0x00, RX_BUF_CLR);
  630. inb(RX_STATUS); /* Be certain that interrupts are cleared. */
  631. inb(TX_STATUS);
  632. spin_unlock(&lp->lock);
  633. return;
  634. }
  635. /**
  636.  * el_receive:
  637.  * @dev: Device to pull the packets from
  638.  *
  639.  * We have a good packet. Well, not really "good", just mostly not broken.
  640.  * We must check everything to see if it is good. In paticular we occasionally
  641.  * get wild packet sizes from the card. If the packet seems sane we PIO it
  642.  * off the card and queue it for the protocol layers.
  643.  */
  644. static void el_receive(struct net_device *dev)
  645. {
  646. struct net_local *lp = (struct net_local *)dev->priv;
  647. int ioaddr = dev->base_addr;
  648. int pkt_len;
  649. struct sk_buff *skb;
  650. pkt_len = inw(RX_LOW);
  651. if (el_debug > 4)
  652. printk(KERN_DEBUG " el_receive %d.n", pkt_len);
  653. if ((pkt_len < 60)  ||  (pkt_len > 1536))
  654. {
  655. if (el_debug)
  656. printk(KERN_DEBUG "%s: bogus packet, length=%dn", dev->name, pkt_len);
  657. lp->stats.rx_over_errors++;
  658. return;
  659. }
  660. /*
  661.  * Command mode so we can empty the buffer
  662.  */
  663. outb(AX_SYS, AX_CMD);
  664. skb = dev_alloc_skb(pkt_len+2);
  665. /*
  666.  * Start of frame
  667.  */
  668. outw(0x00, GP_LOW);
  669. if (skb == NULL)
  670. {
  671. printk(KERN_INFO "%s: Memory squeeze, dropping packet.n", dev->name);
  672. lp->stats.rx_dropped++;
  673. return;
  674. }
  675. else
  676. {
  677.      skb_reserve(skb,2); /* Force 16 byte alignment */
  678. skb->dev = dev;
  679. /*
  680.  * The read increments through the bytes. The interrupt
  681.  * handler will fix the pointer when it returns to
  682.  * receive mode.
  683.  */
  684. insb(DATAPORT, skb_put(skb,pkt_len), pkt_len);
  685. skb->protocol=eth_type_trans(skb,dev);
  686. netif_rx(skb);
  687. dev->last_rx = jiffies;
  688. lp->stats.rx_packets++;
  689. lp->stats.rx_bytes+=pkt_len;
  690. }
  691. return;
  692. }
  693. /**
  694.  * el_reset: Reset a 3c501 card
  695.  * @dev: The 3c501 card about to get zapped
  696.  *
  697.  * Even resetting a 3c501 isnt simple. When you activate reset it loses all
  698.  * its configuration. You must hold the lock when doing this. The function
  699.  * cannot take the lock itself as it is callable from the irq handler.
  700.  */
  701. static void  el_reset(struct net_device *dev)
  702. {
  703. struct net_local *lp = (struct net_local *)dev->priv;
  704. int ioaddr = dev->base_addr;
  705. if (el_debug> 2)
  706. printk(KERN_INFO "3c501 reset...");
  707. outb(AX_RESET, AX_CMD); /* Reset the chip */
  708. outb(AX_LOOP, AX_CMD); /* Aux control, irq and loopback enabled */
  709. {
  710. int i;
  711. for (i = 0; i < 6; i++) /* Set the station address. */
  712. outb(dev->dev_addr[i], ioaddr + i);
  713. }
  714. outw(0, RX_BUF_CLR); /* Set rx packet area to 0. */
  715. outb(TX_NORM, TX_CMD); /* tx irq on done, collision */
  716. outb(RX_NORM, RX_CMD); /* Set Rx commands. */
  717. inb(RX_STATUS); /* Clear status. */
  718. inb(TX_STATUS);
  719. lp->txing = 0;
  720. }
  721. /**
  722.  * el1_close:
  723.  * @dev: 3c501 card to shut down
  724.  *
  725.  * Close a 3c501 card. The IFF_UP flag has been cleared by the user via
  726.  * the SIOCSIFFLAGS ioctl. We stop any further transmissions being queued,
  727.  * and then disable the interrupts. Finally we reset the chip. The effects
  728.  * of the rest will be cleaned up by #el1_open. Always returns 0 indicating
  729.  * a success.
  730.  */
  731.  
  732. static int el1_close(struct net_device *dev)
  733. {
  734. int ioaddr = dev->base_addr;
  735. if (el_debug > 2)
  736. printk(KERN_INFO "%s: Shutting down Ethernet card at %#x.n", dev->name, ioaddr);
  737. netif_stop_queue(dev);
  738. /*
  739.  * Free and disable the IRQ.
  740.  */
  741. free_irq(dev->irq, dev);
  742. outb(AX_RESET, AX_CMD); /* Reset the chip */
  743. return 0;
  744. }
  745. /**
  746.  * el1_get_stats:
  747.  * @dev: The card to get the statistics for
  748.  *
  749.  * In smarter devices this function is needed to pull statistics off the
  750.  * board itself. The 3c501 has no hardware statistics. We maintain them all
  751.  * so they are by definition always up to date.
  752.  *
  753.  * Returns the statistics for the card from the card private data
  754.  */
  755.  
  756. static struct net_device_stats *el1_get_stats(struct net_device *dev)
  757. {
  758. struct net_local *lp = (struct net_local *)dev->priv;
  759. return &lp->stats;
  760. }
  761. /**
  762.  * set_multicast_list:
  763.  * @dev: The device to adjust
  764.  *
  765.  * Set or clear the multicast filter for this adaptor to use the best-effort 
  766.  * filtering supported. The 3c501 supports only three modes of filtering.
  767.  * It always receives broadcasts and packets for itself. You can choose to
  768.  * optionally receive all packets, or all multicast packets on top of this.
  769.  */
  770. static void set_multicast_list(struct net_device *dev)
  771. {
  772. int ioaddr = dev->base_addr;
  773. if(dev->flags&IFF_PROMISC)
  774. {
  775. outb(RX_PROM, RX_CMD);
  776. inb(RX_STATUS);
  777. }
  778. else if (dev->mc_list || dev->flags&IFF_ALLMULTI)
  779. {
  780. outb(RX_MULT, RX_CMD); /* Multicast or all multicast is the same */
  781. inb(RX_STATUS); /* Clear status. */
  782. }
  783. else
  784. {
  785. outb(RX_NORM, RX_CMD);
  786. inb(RX_STATUS);
  787. }
  788. }
  789. /**
  790.  * netdev_ethtool_ioctl: Handle network interface SIOCETHTOOL ioctls
  791.  * @dev: network interface on which out-of-band action is to be performed
  792.  * @useraddr: userspace address to which data is to be read and returned
  793.  *
  794.  * Process the various commands of the SIOCETHTOOL interface.
  795.  */
  796. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  797. {
  798. u32 ethcmd;
  799. /* dev_ioctl() in ../../net/core/dev.c has already checked
  800.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  801. if (get_user(ethcmd, (u32 *)useraddr))
  802. return -EFAULT;
  803. switch (ethcmd) {
  804. case ETHTOOL_GDRVINFO: {
  805. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  806. strcpy (info.driver, DRV_NAME);
  807. strcpy (info.version, DRV_VERSION);
  808. sprintf(info.bus_info, "ISA 0x%lx", dev->base_addr);
  809. if (copy_to_user (useraddr, &info, sizeof (info)))
  810. return -EFAULT;
  811. return 0;
  812. }
  813. /* get message-level */
  814. case ETHTOOL_GMSGLVL: {
  815. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  816. edata.data = debug;
  817. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  818. return -EFAULT;
  819. return 0;
  820. }
  821. /* set message-level */
  822. case ETHTOOL_SMSGLVL: {
  823. struct ethtool_value edata;
  824. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  825. return -EFAULT;
  826. debug = edata.data;
  827. return 0;
  828. }
  829. default:
  830. break;
  831. }
  832. return -EOPNOTSUPP;
  833. }
  834. /**
  835.  * netdev_ioctl: Handle network interface ioctls
  836.  * @dev: network interface on which out-of-band action is to be performed
  837.  * @rq: user request data
  838.  * @cmd: command issued by user
  839.  *
  840.  * Process the various out-of-band ioctls passed to this driver.
  841.  */
  842. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  843. {
  844. int rc = 0;
  845. switch (cmd) {
  846. case SIOCETHTOOL:
  847. rc = netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  848. break;
  849. default:
  850. rc = -EOPNOTSUPP;
  851. break;
  852. }
  853. return rc;
  854. }
  855.  
  856. #ifdef MODULE
  857. static struct net_device dev_3c501 = {
  858. init: el1_probe,
  859. base_addr: 0x280,
  860. irq: 5,
  861. };
  862. static int io=0x280;
  863. static int irq=5;
  864. MODULE_PARM(io, "i");
  865. MODULE_PARM(irq, "i");
  866. MODULE_PARM_DESC(io, "EtherLink I/O base address");
  867. MODULE_PARM_DESC(irq, "EtherLink IRQ number");
  868. /**
  869.  * init_module:
  870.  *
  871.  * When the driver is loaded as a module this function is called. We fake up
  872.  * a device structure with the base I/O and interrupt set as if it was being
  873.  * called from Space.c. This minimises the extra code that would otherwise
  874.  * be required.
  875.  *
  876.  * Returns 0 for success or -EIO if a card is not found. Returning an error
  877.  * here also causes the module to be unloaded
  878.  */
  879.  
  880. int init_module(void)
  881. {
  882. dev_3c501.irq=irq;
  883. dev_3c501.base_addr=io;
  884. if (register_netdev(&dev_3c501) != 0)
  885. return -EIO;
  886. return 0;
  887. }
  888. /**
  889.  * cleanup_module:
  890.  * 
  891.  * The module is being unloaded. We unhook our network device from the system
  892.  * and then free up the resources we took when the card was found.
  893.  */
  894.  
  895. void cleanup_module(void)
  896. {
  897. /*
  898.  * No need to check MOD_IN_USE, as sys_delete_module() checks.
  899.  */
  900. unregister_netdev(&dev_3c501);
  901. /*
  902.  * Free up the private structure, or leak memory :-)
  903.  */
  904. kfree(dev_3c501.priv);
  905. dev_3c501.priv = NULL; /* gets re-allocated by el1_probe1 */
  906. /*
  907.  * If we don't do this, we can't re-insmod it later.
  908.  */
  909. release_region(dev_3c501.base_addr, EL1_IO_EXTENT);
  910. }
  911. #endif /* MODULE */
  912. MODULE_LICENSE("GPL");
  913. /*
  914.  * Local variables:
  915.  *  compile-command: "gcc -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer  -m486 -c -o 3c501.o 3c501.c"
  916.  *  kept-new-versions: 5
  917.  * End:
  918.  */