3c501.c
来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 941 行 · 第 1/2 页
C
941 行
/* 3c501.c: A 3Com 3c501 Ethernet driver for Linux. *//* Written 1992,1993,1994 Donald Becker Copyright 1993 United States Government as represented by the Director, National Security Agency. This software may be used and distributed according to the terms of the GNU General Public License, incorporated herein by reference. This is a device driver for the 3Com Etherlink 3c501. Do not purchase this card, even as a joke. It's performance is horrible, and it breaks in many ways. The original author may be reached as becker@scyld.com, or C/O Scyld Computing Corporation 410 Severn Ave., Suite 210 Annapolis MD 21403 Fixed (again!) the missing interrupt locking on TX/RX shifting. Alan Cox <Alan.Cox@linux.org> Removed calls to init_etherdev since they are no longer needed, and cleaned up modularization just a bit. The driver still allows only the default address for cards when loaded as a module, but that's really less braindead than anyone using a 3c501 board. :) 19950208 (invid@msen.com) Added traps for interrupts hitting the window as we clear and TX load the board. Now getting 150K/second FTP with a 3c501 card. Still playing with a TX-TX optimisation to see if we can touch 180-200K/second as seems theoretically maximum. 19950402 Alan Cox <Alan.Cox@linux.org> Cleaned up for 2.3.x because we broke SMP now. 20000208 Alan Cox <alan@redhat.com> Check up pass for 2.5. Nothing significant changed 20021009 Alan Cox <alan@redhat.com> Fixed zero fill corner case 20030104 Alan Cox <alan@redhat.com> For the avoidance of doubt the "preferred form" of this code is one which is in an open non patent encumbered format. Where cryptographic key signing forms part of the process of creating an executable the information including keys needed to generate an equivalently functional executable are deemed to be part of the source code.*//** * DOC: 3c501 Card Notes * * Some notes on this thing if you have to hack it. [Alan] * * Some documentation is available from 3Com. Due to the boards age * standard responses when you ask for this will range from 'be serious' * to 'give it to a museum'. The documentation is incomplete and mostly * of historical interest anyway. * * The basic system is a single buffer which can be used to receive or * transmit a packet. A third command mode exists when you are setting * things up. * * If it's transmitting it's not receiving and vice versa. In fact the * time to get the board back into useful state after an operation is * quite large. * * The driver works by keeping the board in receive mode waiting for a * packet to arrive. When one arrives it is copied out of the buffer * and delivered to the kernel. The card is reloaded and off we go. * * When transmitting lp->txing is set and the card is reset (from * receive mode) [possibly losing a packet just received] to command * mode. A packet is loaded and transmit mode triggered. The interrupt * handler runs different code for transmit interrupts and can handle * returning to receive mode or retransmissions (yes you have to help * out with those too). * * DOC: Problems * * There are a wide variety of undocumented error returns from the card * and you basically have to kick the board and pray if they turn up. Most * only occur under extreme load or if you do something the board doesn't * like (eg touching a register at the wrong time). * * The driver is less efficient than it could be. It switches through * receive mode even if more transmits are queued. If this worries you buy * a real Ethernet card. * * The combination of slow receive restart and no real multicast * filter makes the board unusable with a kernel compiled for IP * multicasting in a real multicast environment. That's down to the board, * but even with no multicast programs running a multicast IP kernel is * in group 224.0.0.1 and you will therefore be listening to all multicasts. * One nv conference running over that Ethernet and you can give up. * */#define DRV_NAME "3c501"#define DRV_VERSION "2002/10/09"static const char version[] = DRV_NAME ".c: " DRV_VERSION " Alan Cox (alan@redhat.com).\n";/* * Braindamage remaining: * The 3c501 board. */#include <linux/module.h>#include <linux/kernel.h>#include <linux/fcntl.h>#include <linux/ioport.h>#include <linux/interrupt.h>#include <linux/slab.h>#include <linux/string.h>#include <linux/errno.h>#include <linux/config.h> /* for CONFIG_IP_MULTICAST */#include <linux/spinlock.h>#include <linux/ethtool.h>#include <linux/delay.h>#include <asm/uaccess.h>#include <asm/bitops.h>#include <asm/io.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <linux/skbuff.h>#include <linux/init.h>#include "3c501.h"/* * The boilerplate probe code. */static int io=0x280;static int irq=5;static int mem_start;/** * el1_probe: - probe for a 3c501 * @dev: The device structure passed in to probe. * * This can be called from two places. The network layer will probe using * a device structure passed in with the probe information completed. For a * modular driver we use #init_module to fill in our own structure and probe * for it. * * Returns 0 on success. ENXIO if asked not to probe and ENODEV if asked to * probe and failing to find anything. */ struct net_device * __init el1_probe(int unit){ struct net_device *dev = alloc_etherdev(sizeof(struct net_local)); static unsigned ports[] = { 0x280, 0x300, 0}; unsigned *port; int err = 0; if (!dev) return ERR_PTR(-ENOMEM); if (unit >= 0) { sprintf(dev->name, "eth%d", unit); netdev_boot_setup_check(dev); io = dev->base_addr; irq = dev->irq; mem_start = dev->mem_start & 7; } SET_MODULE_OWNER(dev); if (io > 0x1ff) { /* Check a single specified location. */ err = el1_probe1(dev, io); } else if (io != 0) { err = -ENXIO; /* Don't probe at all. */ } else { for (port = ports; *port && el1_probe1(dev, *port); port++) ; if (!*port) err = -ENODEV; } if (err) goto out; err = register_netdev(dev); if (err) goto out1; return dev;out1: release_region(dev->base_addr, EL1_IO_EXTENT);out: free_netdev(dev); return ERR_PTR(err);}/** * el1_probe1: * @dev: The device structure to use * @ioaddr: An I/O address to probe at. * * The actual probe. This is iterated over by #el1_probe in order to * check all the applicable device locations. * * Returns 0 for a success, in which case the device is activated, * EAGAIN if the IRQ is in use by another driver, and ENODEV if the * board cannot be found. */static int __init el1_probe1(struct net_device *dev, int ioaddr){ struct net_local *lp; const char *mname; /* Vendor name */ unsigned char station_addr[6]; int autoirq = 0; int i; /* * Reserve I/O resource for exclusive use by this driver */ if (!request_region(ioaddr, EL1_IO_EXTENT, DRV_NAME)) return -ENODEV; /* * Read the station address PROM data from the special port. */ for (i = 0; i < 6; i++) { outw(i, ioaddr + EL1_DATAPTR); station_addr[i] = inb(ioaddr + EL1_SAPROM); } /* * Check the first three octets of the S.A. for 3Com's prefix, or * for the Sager NP943 prefix. */ if (station_addr[0] == 0x02 && station_addr[1] == 0x60 && station_addr[2] == 0x8c) { mname = "3c501"; } else if (station_addr[0] == 0x00 && station_addr[1] == 0x80 && station_addr[2] == 0xC8) { mname = "NP943"; } else { release_region(ioaddr, EL1_IO_EXTENT); return -ENODEV; } /* * We auto-IRQ by shutting off the interrupt line and letting it float * high. */ dev->irq = irq; if (dev->irq < 2) { unsigned long irq_mask; irq_mask = probe_irq_on(); inb(RX_STATUS); /* Clear pending interrupts. */ inb(TX_STATUS); outb(AX_LOOP + 1, AX_CMD); outb(0x00, AX_CMD); mdelay(20); autoirq = probe_irq_off(irq_mask); if (autoirq == 0) { printk(KERN_WARNING "%s probe at %#x failed to detect IRQ line.\n", mname, ioaddr); release_region(ioaddr, EL1_IO_EXTENT); return -EAGAIN; } } outb(AX_RESET+AX_LOOP, AX_CMD); /* Loopback mode. */ dev->base_addr = ioaddr; memcpy(dev->dev_addr, station_addr, ETH_ALEN); if (mem_start & 0xf) el_debug = mem_start & 0x7; if (autoirq) dev->irq = autoirq; printk(KERN_INFO "%s: %s EtherLink at %#lx, using %sIRQ %d.\n", dev->name, mname, dev->base_addr, autoirq ? "auto":"assigned ", dev->irq);#ifdef CONFIG_IP_MULTICAST printk(KERN_WARNING "WARNING: Use of the 3c501 in a multicast kernel is NOT recommended.\n");#endif if (el_debug) printk(KERN_DEBUG "%s", version); memset(dev->priv, 0, sizeof(struct net_local)); lp = netdev_priv(dev); spin_lock_init(&lp->lock); /* * The EL1-specific entries in the device structure. */ dev->open = &el_open; dev->hard_start_xmit = &el_start_xmit; dev->tx_timeout = &el_timeout; dev->watchdog_timeo = HZ; dev->stop = &el1_close; dev->get_stats = &el1_get_stats; dev->set_multicast_list = &set_multicast_list; dev->ethtool_ops = &netdev_ethtool_ops; return 0;}/** * el1_open: * @dev: device that is being opened * * When an ifconfig is issued which changes the device flags to include * IFF_UP this function is called. It is only called when the change * occurs, not when the interface remains up. #el1_close will be called * when it goes down. * * Returns 0 for a successful open, or -EAGAIN if someone has run off * with our interrupt line. */static int el_open(struct net_device *dev){ int retval; int ioaddr = dev->base_addr; struct net_local *lp = netdev_priv(dev); unsigned long flags; if (el_debug > 2) printk(KERN_DEBUG "%s: Doing el_open()...", dev->name); if ((retval = request_irq(dev->irq, &el_interrupt, 0, dev->name, dev))) return retval; spin_lock_irqsave(&lp->lock, flags); el_reset(dev); spin_unlock_irqrestore(&lp->lock, flags); lp->txing = 0; /* Board in RX mode */ outb(AX_RX, AX_CMD); /* Aux control, irq and receive enabled */ netif_start_queue(dev); return 0;}/** * el_timeout: * @dev: The 3c501 card that has timed out * * Attempt to restart the board. This is basically a mixture of extreme * violence and prayer * */ static void el_timeout(struct net_device *dev){ struct net_local *lp = netdev_priv(dev); int ioaddr = dev->base_addr; if (el_debug) printk (KERN_DEBUG "%s: transmit timed out, txsr %#2x axsr=%02x rxsr=%02x.\n", dev->name, inb(TX_STATUS), inb(AX_STATUS), inb(RX_STATUS)); lp->stats.tx_errors++; outb(TX_NORM, TX_CMD); outb(RX_NORM, RX_CMD); outb(AX_OFF, AX_CMD); /* Just trigger a false interrupt. */ outb(AX_RX, AX_CMD); /* Aux control, irq and receive enabled */ lp->txing = 0; /* Ripped back in to RX */ netif_wake_queue(dev);} /** * el_start_xmit: * @skb: The packet that is queued to be sent * @dev: The 3c501 card we want to throw it down * * Attempt to send a packet to a 3c501 card. There are some interesting * catches here because the 3c501 is an extremely old and therefore * stupid piece of technology. * * If we are handling an interrupt on the other CPU we cannot load a packet * as we may still be attempting to retrieve the last RX packet buffer. * * When a transmit times out we dump the card into control mode and just * start again. It happens enough that it isnt worth logging. * * We avoid holding the spin locks when doing the packet load to the board. * The device is very slow, and its DMA mode is even slower. If we held the * lock while loading 1500 bytes onto the controller we would drop a lot of * serial port characters. This requires we do extra locking, but we have * no real choice. */static int el_start_xmit(struct sk_buff *skb, struct net_device *dev){ struct net_local *lp = netdev_priv(dev); int ioaddr = dev->base_addr; unsigned long flags; /* * Avoid incoming interrupts between us flipping txing and flipping * mode as the driver assumes txing is a faithful indicator of card * state */ spin_lock_irqsave(&lp->lock, flags); /* * Avoid timer-based retransmission conflicts. */ netif_stop_queue(dev); do { int len = skb->len; int pad = 0; int gp_start; unsigned char *buf = skb->data; if (len < ETH_ZLEN) pad = ETH_ZLEN - len; gp_start = 0x800 - ( len + pad ); lp->tx_pkt_start = gp_start; lp->collisions = 0; lp->stats.tx_bytes += skb->len; /* * Command mode with status cleared should [in theory] * mean no more interrupts can be pending on the card. */ outb_p(AX_SYS, AX_CMD); inb_p(RX_STATUS); inb_p(TX_STATUS); lp->loading = 1; lp->txing = 1; /* * Turn interrupts back on while we spend a pleasant afternoon * loading bytes into the board */ spin_unlock_irqrestore(&lp->lock, flags); outw(0x00, RX_BUF_CLR); /* Set rx packet area to 0. */ outw(gp_start, GP_LOW); /* aim - packet will be loaded into buffer start */ outsb(DATAPORT,buf,len); /* load buffer (usual thing each byte increments the pointer) */ if (pad) {
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?