]> git.neil.brown.name Git - history.git/commitdiff
Linux 2.2.18pre14 2.2.18pre14
authorAlan Cox <alan@lxorguk.ukuu.org.uk>
Fri, 23 Nov 2007 20:22:32 +0000 (15:22 -0500)
committerAlan Cox <alan@lxorguk.ukuu.org.uk>
Fri, 23 Nov 2007 20:22:32 +0000 (15:22 -0500)
o Reorder attributes in drm to work with gcc272 (Alan Cox)
o GNU cross compilers are foo-bar-gcc  (Russell King)
o Add extra strange pcnet32 ident (Willy Tarreau)
o Since no vendor can get which right.. use a (Miquel van Smoorenburg)
shell script instead
| Please nobody tell me this fails in some bash version!
o Should be using bash not bash2 (escaped debug) (Petri Kaukasoina)
o spin_unlock_irq wrong debug mode printk (Willy Tarreau)
o Fix pcxx for the loops changes (Arjan van de Ven)
o Fix ov511/via-rhine name clash (Arjan van de Ven)
o Fix bridge compile with loops_per_sec change (Mitch Adair)
o 8139too driver added (Jeff Garzik)

17 files changed:
Makefile
drivers/char/drm/gamma_drv.c
drivers/char/drm/i810_drv.c
drivers/char/drm/mga_drv.c
drivers/char/drm/r128_drv.c
drivers/char/drm/tdfx_drv.c
drivers/char/pcxx.c
drivers/net/8139too.c [new file with mode: 0644]
drivers/net/Config.in
drivers/net/Makefile
drivers/net/Space.c
drivers/net/pcnet32.c
drivers/net/via-rhine.c
drivers/usb/ov511.c
include/asm-i386/spinlock.h
net/bridge/br.c
scripts/kwhich [new file with mode: 0644]

index e23c980eac2af5a0d7a0f9a2ff833f568f357791..6d079f9fa4db9065bc5af7f679f6accf5820ef0c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
 VERSION = 2
 PATCHLEVEL = 2
 SUBLEVEL = 18
-EXTRAVERSION = pre13
+EXTRAVERSION = pre14
 
 ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/)
 
 .EXPORT_ALL_VARIABLES:
 
 CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
-         else if [ -x /bin/bash ]; then echo /bin/bash2; \
+         else if [ -x /bin/bash ]; then echo /bin/bash; \
          else echo sh; fi ; fi)
 TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
 
@@ -22,10 +22,15 @@ CROSS_COMPILE       =
 
 AS     =$(CROSS_COMPILE)as
 LD     =$(CROSS_COMPILE)ld
-CC     =$(shell if [ -n "$(CROSS_COMPILE)" ]; then echo $(CROSS_COMPILE)cc; else \
-       which gcc272 2>/dev/null || which kgcc 2>/dev/null || echo cc; fi) \
+#
+#      foo-bar-gcc for cross builds
+#      gcc272 for Debian's old compiler for kernels
+#      kgcc for Conectiva and Red Hat 7
+#      otherwise 'cc'
+#
+CC     =$(shell if [ -n "$(CROSS_COMPILE)" ]; then echo $(CROSS_COMPILE)gcc; else \
+       scripts/kwhich gcc272 2>/dev/null || scripts/kwhich kgcc 2>/dev/null || echo cc; fi) \
        -D__KERNEL__ -I$(HPATH)
-#CC    =$(CROSS_COMPILE)cc -D__KERNEL__ -I$(HPATH)
 CPP    =$(CC) -E
 AR     =$(CROSS_COMPILE)ar
 NM     =$(CROSS_COMPILE)nm
index 12ed9f5e425c8e8fbdebca43c31f864ca94ee5c2..e078e25cd9a1e8fc0cd7198966ef550ad7aa667f 100644 (file)
@@ -35,7 +35,7 @@
 
 #include <linux/agp_backend.h>
 
-static __attribute__((unused)) void unused(void)
+static void __attribute__((unused)) unused(void)
 {
        agp_enable(0);
 }
index d776482f4b64160780a265fd1f96d558aa71f17a..371c8d7bca5e2f2169b13811f40a45071e4257fe 100644 (file)
@@ -35,7 +35,7 @@
 
 #include <linux/agp_backend.h>
 
-static __attribute__((unused)) void unused(void)
+static void __attribute__((unused)) unused(void)
 {
        agp_enable(0);
 }
index f497eb336df94bdb552696490e693100d6ca0fdb..011294fcea931b2159619ba55378810b8885e271 100644 (file)
@@ -36,7 +36,7 @@
 
 #include <linux/agp_backend.h>
 
-static __attribute__((unused)) void unused(void)
+static void __attribute__((unused)) unused(void)
 {
        agp_enable(0);
 }
index a431b1a99203cd0221fe34fc2a8053c9289af9ab..3180c919f41bc5c263f7eb7bb7938d8cae5ce589 100644 (file)
@@ -35,7 +35,7 @@
 
 #include <linux/agp_backend.h>
 
-static __attribute__((unused)) void unused(void)
+static void __attribute__((unused)) unused(void)
 {
        agp_enable(0);
 }
index bd384fe7ff32343c1a64814f717ca243eab28740..6782cf44094e034204a1be18261780d9bf0c4c8a 100644 (file)
@@ -36,7 +36,7 @@
 
 #include <linux/agp_backend.h>
 
-static __attribute__((unused)) void unused(void)
+static void __attribute__((unused)) unused(void)
 {
        agp_enable(0);
 }
index 27e1b0eff49b5a474f321d43b7054d292074874e..faa861ddd85112bd277adf0dfb9ee4160859ef07 100644 (file)
@@ -1781,10 +1781,9 @@ static void doevent(int crd)
 /*
  * pcxxdelay - delays a specified number of milliseconds
  */
-static void pcxxdelay(int msec)
+static void pcxxdelay(int mseconds)
 {
-       while(msec-- > 0)
-               __delay(loops_per_sec/1000);
+       mdelay(mseconds);
 }
 
 
diff --git a/drivers/net/8139too.c b/drivers/net/8139too.c
new file mode 100644 (file)
index 0000000..c96f23e
--- /dev/null
@@ -0,0 +1,2255 @@
+/*
+
+       8139too.c: A RealTek RTL-8139 Fast Ethernet driver for Linux.
+
+       Maintained by Jeff Garzik <jgarzik@mandrakesoft.com>
+       Much code comes from Donald Becker's rtl8139.c driver,
+       versions 1.11 and older.  This driver was originally based
+       on rtl8139.c version 1.07.  Header of rtl8139.c version 1.11:
+       -----<snip>-----
+               Written 1997-2000 by Donald Becker.
+               This software may be used and distributed according to the
+               terms of the GNU General Public License (GPL), incorporated
+               herein by reference.  Drivers based on or derived from this
+               code fall under the GPL and must retain the authorship,
+               copyright and license notice.  This file is not a complete
+               program and may only be used when the entire operating
+               system is licensed under the GPL.
+               This driver is for boards based on the RTL8129 and RTL8139
+               PCI ethernet chips.
+               The author may be reached as becker@scyld.com, or C/O Scyld
+               Computing Corporation 410 Severn Ave., Suite 210 Annapolis
+               MD 21403
+               Support and updates available at
+               http://www.scyld.com/network/rtl8139.html
+               Twister-tuning table provided by Kinston
+               <shangh@realtek.com.tw>.
+       -----<snip>-----
+
+       This software may be used and distributed according to the terms
+       of the GNU Public License, incorporated herein by reference.
+
+       Contributors:
+
+               Donald Becker - he wrote the original driver, kudos to him!
+               (but please don't e-mail him for support, this isn't his driver)
+
+               Tigran Aivazian - bug fixes, skbuff free cleanup
+
+               Martin Mares - suggestions for PCI cleanup
+               
+               David S. Miller - PCI DMA and softnet updates
+
+               Ernst Gill - fixes ported from BSD driver
+
+               Daniel Kobras - identified specific locations of
+                       posted MMIO write bugginess
+
+               Gerard Sharp - bug fix, testing and feedback
+               
+               David Ford - Rx ring wrap fix
+               
+               Dan DeMaggio - swapped RTL8139 cards with me, and allowed me
+               to find and fix a crucial bug on older chipsets.
+               
+               Donald Becker/Chris Butterworth/Marcus Westergren -
+               Noticed various Rx packet size-related buglets.
+
+               Santiago Garcia Mantinan - testing and feedback
+
+               Jens David - 2.2.x kernel backports
+
+               Martin Dennett - incredibly helpful insight on undocumented
+               features of the 8139 chips
+
+       Submitting bug reports:
+
+               "rtl8139-diag -mmmaaavvveefN" output
+               enable RTL8139_DEBUG below, and look at 'dmesg' or kernel log
+
+               See 8139too.txt for more details.
+
+-----------------------------------------------------------------------------
+
+                               Theory of Operation
+
+I. Board Compatibility
+
+This device driver is designed for the RealTek RTL8139 series, the RealTek
+Fast Ethernet controllers for PCI and CardBus.  This chip is used on many
+low-end boards, sometimes with its markings changed.
+
+
+II. Board-specific settings
+
+PCI bus devices are configured by the system at boot time, so no jumpers
+need to be set on the board.  The system BIOS will assign the
+PCI INTA signal to a (preferably otherwise unused) system IRQ line.
+
+III. Driver operation
+
+IIIa. Rx Ring buffers
+
+The receive unit uses a single linear ring buffer rather than the more
+common (and more efficient) descriptor-based architecture.  Incoming frames
+are sequentially stored into the Rx region, and the host copies them into
+skbuffs.
+
+Comment: While it is theoretically possible to process many frames in place,
+any delay in Rx processing would cause us to drop frames.  More importantly,
+the Linux protocol stack is not designed to operate in this manner.
+
+IIIb. Tx operation
+
+The RTL8139 uses a fixed set of four Tx descriptors in register space.
+In a stunningly bad design choice, Tx frames must be 32 bit aligned.  Linux
+aligns the IP header on word boundaries, and 14 byte ethernet header means
+that almost all frames will need to be copied to an alignment buffer.
+
+IVb. References
+
+http://www.realtek.com.tw/cn/cn.html
+http://www.scyld.com/expert/NWay.html
+
+IVc. Errata
+
+1) The RTL-8139 has a serious problem with motherboards which do
+posted MMIO writes to PCI space.  This driver works around the
+problem by having an MMIO  register write be immediately followed by
+an MMIO register read.
+
+2) The RTL-8129 is only supported in Donald Becker's rtl8139 driver.
+
+*/
+
+#include <linux/module.h>
+#include <linux/kernel.h>
+#include <linux/pci.h>
+#include <linux/init.h>
+#include <linux/ioport.h>
+#include <linux/netdevice.h>
+#include <linux/etherdevice.h>
+#include <linux/delay.h>
+#include <asm/io.h>
+
+
+#define RTL8139_VERSION "0.9.10-2.2"
+#define RTL8139_MODULE_NAME "8139too"
+#define RTL8139_DRIVER_NAME   RTL8139_MODULE_NAME " FastEthernet driver " RTL8139_VERSION
+#define RTL8139_AUTHOR "Jeff Garzik <jgarzik@mandrakesoft.com>"
+#define PFX RTL8139_MODULE_NAME ": "
+
+
+/* define to 1 to enable PIO instead of MMIO */
+#undef USE_IO_OPS
+
+/* define to 1 to enable copious debugging info */
+#undef RTL8139_DEBUG
+
+/* define to 1 to disable lightweight runtime debugging checks */
+#undef RTL8139_NDEBUG
+
+
+#ifdef RTL8139_DEBUG
+/* note: prints function name for you */
+#define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
+#else
+#define DPRINTK(fmt, args...)
+#endif
+
+#ifdef RTL8139_NDEBUG
+#define assert(expr) do {} while (0)
+#else
+#define assert(expr) \
+        if(!(expr)) {                                  \
+        printk( "Assertion failed! %s,%s,%s,line=%d\n",        \
+        #expr,__FILE__,__FUNCTION__,__LINE__);         \
+        }
+#endif
+
+#define dev_kfree_skb_irq(a)   dev_kfree_skb(a)
+#define netif_wake_queue(dev)  clear_bit(0, &dev->tbusy)
+#define netif_stop_queue(dev)  set_bit(0, &dev->tbusy)
+
+static inline void netif_start_queue(struct device *dev)
+{
+       dev->tbusy = 0;
+       dev->interrupt = 0;
+       dev->start = 1;
+}
+
+#define netif_queue_stopped(dev)       dev->tbusy
+#define netif_running(dev)             dev->start
+#define dma_addr_t unsigned long
+
+struct resource {
+       const char *name;
+       unsigned long start, end;
+       unsigned long flags;
+       struct resource *parent, *sibling, *child;
+};
+
+#define IORESOURCE_BITS         0x000000ff      /* Bus-specific bits */
+#define IORESOURCE_IO           0x00000100      /* Resource type */
+#define IORESOURCE_MEM          0x00000200
+#define IORESOURCE_IRQ          0x00000400
+#define IORESOURCE_DMA          0x00000800
+#define IORESOURCE_PREFETCH     0x00001000      /* No side effects */
+#define IORESOURCE_READONLY     0x00002000
+#define IORESOURCE_CACHEABLE    0x00004000
+#define IORESOURCE_RANGELENGTH  0x00008000
+#define IORESOURCE_SHADOWABLE   0x00010000
+#define IORESOURCE_UNSET        0x20000000
+#define IORESOURCE_AUTO         0x40000000
+#define IORESOURCE_BUSY         0x80000000
+
+#define PCI_USES_IO            1
+#define PCI_USES_MEM           2
+#define PCI_USES_MASTER        4
+
+static inline unsigned int pci_calc_resource_flags(unsigned int flags)
+{
+       if (flags & PCI_BASE_ADDRESS_SPACE_IO)
+               return IORESOURCE_IO;
+
+       if (flags & PCI_BASE_ADDRESS_MEM_PREFETCH)
+               return IORESOURCE_MEM | IORESOURCE_PREFETCH;
+
+       return IORESOURCE_MEM;
+}
+
+static void rtl8139_read_pci_resources(struct pci_dev *dev, struct resource *res)
+{
+       unsigned int pos, reg, next;
+       u32 l, sz, tmp;
+       u16 cmd;
+
+       /* Disable IO and memory while we fiddle */
+       pci_read_config_word(dev, PCI_COMMAND, &cmd);
+       tmp = cmd & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
+       pci_write_config_word(dev, PCI_COMMAND, tmp);
+       
+       for (pos=0; pos<4; pos = next, res++) {
+               next = pos+1;
+               reg = PCI_BASE_ADDRESS_0 + (pos << 2);
+               pci_read_config_dword(dev, reg, &l);
+               pci_write_config_dword(dev, reg, ~0);
+               pci_read_config_dword(dev, reg, &sz);
+               pci_write_config_dword(dev, reg, l);
+               if (!sz || sz == 0xffffffff)
+                       continue;
+               if (l == 0xffffffff)
+                       l = 0;
+               if ((l & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_MEMORY) {
+                       res->start = l & PCI_BASE_ADDRESS_MEM_MASK;
+                       sz = ~(sz & PCI_BASE_ADDRESS_MEM_MASK);
+               } else {
+                       res->start = l & PCI_BASE_ADDRESS_IO_MASK;
+                       sz = ~(sz & PCI_BASE_ADDRESS_IO_MASK) & 0xffff;
+               }
+               res->end = res->start + (unsigned long) sz;
+               res->flags |= (l & 0xf) | pci_calc_resource_flags(l);
+       }
+}
+
+#define pci_resource_start(dev_priv,bar)       ((dev_priv)->rtl8139_pci_resource[(bar)].start)
+#define pci_resource_end(dev_priv,bar) ((dev_priv)->rtl8139_pci_resource[(bar)].end)
+#define pci_resource_flags(dev_priv,bar)       ((dev_priv)->rtl8139_pci_resource[(bar)].flags)
+#define pci_resource_len(dev_priv,bar) \
+       ((pci_resource_start((dev_priv),(bar)) == 0 &&  \
+         pci_resource_end((dev_priv),(bar)) ==         \
+         pci_resource_start((dev_priv),(bar))) ? 0 :   \
+                                                       \
+        (pci_resource_end((dev_priv),(bar)) -          \
+         pci_resource_start((dev_priv),(bar)) + 1))
+
+#define arraysize(x)            (sizeof(x)/sizeof(*(x)))
+
+
+/* A few user-configurable values. */
+/* media options */
+static int media[] = {-1, -1, -1, -1, -1, -1, -1, -1};
+
+/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
+static int max_interrupt_work = 20;
+
+/* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
+   The RTL chips use a 64 element hash table based on the Ethernet CRC.  */
+static int multicast_filter_limit = 32;
+
+/* Size of the in-memory receive ring. */
+#define RX_BUF_LEN_IDX 2       /* 0==8K, 1==16K, 2==32K, 3==64K */
+#define RX_BUF_LEN (8192 << RX_BUF_LEN_IDX)
+#define RX_BUF_PAD 16
+#define RX_BUF_WRAP_PAD 2048 /* spare padding to handle lack of packet wrap */
+#define RX_BUF_TOT_LEN (RX_BUF_LEN + RX_BUF_PAD + RX_BUF_WRAP_PAD)
+
+/* Number of Tx descriptor registers. */
+#define NUM_TX_DESC    4
+
+/* Size of the Tx bounce buffers -- must be at least (dev->mtu+14+4). */
+#define TX_BUF_SIZE    1536
+#define TX_BUF_TOT_LEN (TX_BUF_SIZE * NUM_TX_DESC)
+
+/* PCI Tuning Parameters
+   Threshold is bytes transferred to chip before transmission starts. */
+#define TX_FIFO_THRESH 256     /* In bytes, rounded down to 32 byte units. */
+
+/* The following settings are log_2(bytes)-4:  0 == 16 bytes .. 6==1024, 7==end of packet. */
+#define RX_FIFO_THRESH 6       /* Rx buffer level before first PCI xfer.  */
+#define RX_DMA_BURST   6       /* Maximum PCI burst, '6' is 1024 */
+#define TX_DMA_BURST   6       /* Maximum PCI burst, '6' is 1024 */
+
+
+/* Operational parameters that usually are not changed. */
+/* Time in jiffies before concluding the transmitter is hung. */
+#define TX_TIMEOUT  (HZ/2)
+
+
+enum {
+       HAS_CHIP_XCVR = 0x020000,
+       HAS_LNK_CHNG = 0x040000,
+};
+
+#define RTL_MIN_IO_SIZE 0x80
+#define RTL8139B_IO_SIZE 256
+
+#define RTL8139_CAPS   HAS_CHIP_XCVR|HAS_LNK_CHNG
+
+typedef enum {
+       RTL8139 = 0,
+       RTL8139_CB,
+       SMC1211TX,
+       DELTA8139,
+       ADDTRON8139,
+} board_t;
+
+
+/* indexed by board_t, above */
+static struct {
+       const char *name;
+} board_info[] = {
+       { "RealTek RTL8139 Fast Ethernet" },
+       { "RealTek RTL8139B PCI/CardBus" },
+       { "SMC1211TX EZCard 10/100 (RealTek RTL8139)" },
+       { "Delta Electronics 8139 10/100BaseTX" },
+       { "Addtron Technolgy 8139 10/100BaseTX" },
+};
+
+struct pci_device_id {
+       unsigned int vendor, device;
+       board_t board;
+};
+
+static struct pci_device_id rtl8139_pci_tbl[] = {
+       {0x10ec, 0x8139, RTL8139 },
+       {0x10ec, 0x8138, RTL8139_CB },
+       {0x1113, 0x1211, SMC1211TX },
+       {0x1500, 0x1360, DELTA8139 },
+       {0x4033, 0x1360, ADDTRON8139 },
+       {0,}
+};
+
+/* The rest of these values should never change. */
+
+static struct device *rtl8139_device_tab[16];
+static int rtl8139_device_count = 0;
+static int rtl8139_initialized = 0;
+
+/* Symbolic offsets to registers. */
+enum RTL8139_registers {
+       MAC0 = 0,               /* Ethernet hardware address. */
+       MAR0 = 8,               /* Multicast filter. */
+       TxStatus0 = 0x10,       /* Transmit status (Four 32bit registers). */
+       TxAddr0 = 0x20,         /* Tx descriptors (also four 32bit). */
+       RxBuf = 0x30,
+       RxEarlyCnt = 0x34,
+       RxEarlyStatus = 0x36,
+       ChipCmd = 0x37,
+       RxBufPtr = 0x38,
+       RxBufAddr = 0x3A,
+       IntrMask = 0x3C,
+       IntrStatus = 0x3E,
+       TxConfig = 0x40,
+       ChipVersion = 0x43,
+       RxConfig = 0x44,
+       Timer = 0x48,           /* A general-purpose counter. */
+       RxMissed = 0x4C,        /* 24 bits valid, write clears. */
+       Cfg9346 = 0x50,
+       Config0 = 0x51,
+       Config1 = 0x52,
+       FlashReg = 0x54,
+       MediaStatus = 0x58,
+       Config3 = 0x59,
+       Config4 = 0x5A,         /* absent on RTL-8139A */
+       HltClk = 0x5B,
+       MultiIntr = 0x5C,
+       TxSummary = 0x60,
+       BasicModeCtrl = 0x62,
+       BasicModeStatus = 0x64,
+       NWayAdvert = 0x66,
+       NWayLPAR = 0x68,
+       NWayExpansion = 0x6A,
+       /* Undocumented registers, but required for proper operation. */
+       FIFOTMS = 0x70,         /* FIFO Control and test. */
+       CSCR = 0x74,            /* Chip Status and Configuration Register. */
+       PARA78 = 0x78,
+       PARA7c = 0x7c,          /* Magic transceiver parameter register. */
+       Config5 = 0xD8,         /* absent on RTL-8139A */
+};
+
+enum ClearBitMasks {
+       MultiIntrClear = 0xF000,
+       ChipCmdClear = 0xE2,
+       Config1Clear = (1<<7)|(1<<6)|(1<<3)|(1<<2)|(1<<1),
+};
+
+enum ChipCmdBits {
+       CmdReset = 0x10,
+       CmdRxEnb = 0x08,
+       CmdTxEnb = 0x04,
+       RxBufEmpty = 0x01,
+};
+
+/* Interrupt register bits, using my own meaningful names. */
+enum IntrStatusBits {
+       PCIErr = 0x8000,
+       PCSTimeout = 0x4000,
+       RxFIFOOver = 0x40,
+       RxUnderrun = 0x20,
+       RxOverflow = 0x10,
+       TxErr = 0x08,
+       TxOK = 0x04,
+       RxErr = 0x02,
+       RxOK = 0x01,
+};
+enum TxStatusBits {
+       TxHostOwns = 0x2000,
+       TxUnderrun = 0x4000,
+       TxStatOK = 0x8000,
+       TxOutOfWindow = 0x20000000,
+       TxAborted = 0x40000000,
+       TxCarrierLost = 0x80000000,
+};
+enum RxStatusBits {
+       RxMulticast = 0x8000,
+       RxPhysical = 0x4000,
+       RxBroadcast = 0x2000,
+       RxBadSymbol = 0x0020,
+       RxRunt = 0x0010,
+       RxTooLong = 0x0008,
+       RxCRCErr = 0x0004,
+       RxBadAlign = 0x0002,
+       RxStatusOK = 0x0001,
+};
+
+/* Bits in RxConfig. */
+enum rx_mode_bits {
+       AcceptErr = 0x20,
+       AcceptRunt = 0x10,
+       AcceptBroadcast = 0x08,
+       AcceptMulticast = 0x04,
+       AcceptMyPhys = 0x02,
+       AcceptAllPhys = 0x01,
+};
+
+/* Bits in TxConfig. */
+enum tx_config_bits {
+       TxIFG1 = (1 << 25),     /* Interframe Gap Time */
+       TxIFG0 = (1 << 24),     /* Enabling these bits violates IEEE 802.3 */
+       TxLoopBack = (1 << 18) | (1 << 17), /* enable loopback test mode */
+       TxCRC = (1 << 16),      /* DISABLE appending CRC to end of Tx packets */
+       TxClearAbt = (1 << 0),  /* Clear abort (WO) */
+       TxDMAShift = 8,         /* DMA burst value (0-7) is shift this many bits */
+
+       TxVersionMask = 0x7C800000, /* mask out version bits 30-26, 23 */
+};
+
+/* Bits in Config1 */
+enum Config1Bits {
+       Cfg1_PM_Enable = 0x01,
+       Cfg1_VPD_Enable = 0x02,
+       Cfg1_PIO = 0x04,
+       Cfg1_MMIO = 0x08,
+       Cfg1_LWAKE = 0x10,
+       Cfg1_Driver_Load = 0x20,
+       Cfg1_LED0 = 0x40,
+       Cfg1_LED1 = 0x80,
+};
+
+enum RxConfigBits {
+       /* Early Rx threshold, none or X/16 */
+       RxCfgEarlyRxNone = 0,
+       RxCfgEarlyRxShift = 24,
+
+       /* rx fifo threshold */
+       RxCfgFIFOShift = 13,
+       RxCfgFIFONone = (7 << RxCfgFIFOShift),
+
+       /* Max DMA burst */
+       RxCfgDMAShift = 8,
+       RxCfgDMAUnlimited = (7 << RxCfgDMAShift),
+
+       /* rx ring buffer length */
+       RxCfgRcv8K = 0,
+       RxCfgRcv16K = (1 << 11),
+       RxCfgRcv32K = (1 << 12),
+       RxCfgRcv64K = (1 << 11) | (1 << 12),
+
+       /* Disable packet wrap at end of Rx buffer */
+       RxNoWrap = (1 << 7),
+};
+
+
+/* Twister tuning parameters from RealTek.
+   Completely undocumented, but required to tune bad links. */
+enum CSCRBits {
+       CSCR_LinkOKBit = 0x0400,
+       CSCR_LinkChangeBit = 0x0800,
+       CSCR_LinkStatusBits = 0x0f000,
+       CSCR_LinkDownOffCmd = 0x003c0,
+       CSCR_LinkDownCmd = 0x0f3c0,
+};
+
+
+enum Cfg9346Bits {
+       Cfg9346_Lock = 0x00,
+       Cfg9346_Unlock = 0xC0,
+};
+
+
+#define PARA78_default 0x78fa8388
+#define PARA7c_default 0xcb38de43      /* param[0][3] */
+#define PARA7c_xxx             0xcb38de43
+static const unsigned long param[4][4] = {
+       {0xcb39de43, 0xcb39ce43, 0xfb38de03, 0xcb38de43},
+       {0xcb39de43, 0xcb39ce43, 0xcb39ce83, 0xcb39ce83},
+       {0xcb39de43, 0xcb39ce43, 0xcb39ce83, 0xcb39ce83},
+       {0xbb39de43, 0xbb39ce43, 0xbb39ce83, 0xbb39ce83}
+};
+
+struct ring_info {
+       struct sk_buff *skb;
+};
+
+
+typedef enum {
+       CH_8139 = 0,
+       CH_8139_K,
+       CH_8139A,
+       CH_8139B,
+       CH_8130,
+       CH_8139C,
+} chip_t;
+
+
+/* directly indexed by chip_t, above */
+const static struct {
+       const char *name;
+       u8 version; /* from RTL8139C docs */
+       u32 RxConfigMask; /* should clear the bits supported by this chip */
+} rtl_chip_info[] = {
+       { "RTL-8139",
+         0x40,
+         0xf0fe0040, /* XXX copied from RTL8139A, verify */
+       },
+       
+       { "RTL-8139 rev K",
+         0x60,
+         0xf0fe0040,
+       },
+       
+       { "RTL-8139A",
+         0x70,
+         0xf0fe0040,
+       },
+       
+       { "RTL-8139B",
+         0x78,
+         0xf0fc0040
+       },
+
+       { "RTL-8130",
+         0x7C,
+         0xf0fe0040, /* XXX copied from RTL8139A, verify */
+       },
+
+       { "RTL-8139C",
+         0x74,
+         0xf0fc0040, /* XXX copied from RTL8139B, verify */
+       },
+
+};
+
+
+struct rtl8139_private {
+       board_t board;
+       void *mmio_addr;
+       int drv_flags;
+       struct pci_dev *pci_dev;
+       struct resource rtl8139_pci_resource[4];
+       struct net_device_stats stats;
+       struct timer_list timer;        /* Media selection timer. */
+       unsigned char *rx_ring;
+       unsigned int cur_rx;    /* Index into the Rx buffer of next Rx pkt. */
+       unsigned int tx_flag;
+       atomic_t cur_tx;
+       atomic_t dirty_tx;
+       /* The saved address of a sent-in-place packet/buffer, for skfree(). */
+       struct ring_info tx_info[NUM_TX_DESC];
+       unsigned char *tx_buf[NUM_TX_DESC];     /* Tx bounce buffers */
+       unsigned char *tx_bufs; /* Tx bounce buffer region. */
+       dma_addr_t rx_ring_dma;
+       dma_addr_t tx_bufs_dma;
+       char phys[4];           /* MII device addresses. */
+       char twistie, twist_row, twist_col;     /* Twister tune state. */
+       unsigned int full_duplex:1;     /* Full-duplex operation requested. */
+       unsigned int duplex_lock:1;
+       unsigned int default_port:4;    /* Last dev->if_port value. */
+       unsigned int media2:4;  /* Secondary monitored media port. */
+       unsigned int medialock:1;       /* Don't sense media type. */
+       unsigned int mediasense:1;      /* Media sensing in progress. */
+       spinlock_t lock;
+       chip_t chipset;
+};
+
+
+
+static int read_eeprom (void *ioaddr, int location, int addr_len);
+static int rtl8139_open (struct device *dev);
+static int mdio_read (struct device *dev, int phy_id, int location);
+static void mdio_write (struct device *dev, int phy_id, int location,
+                       int val);
+static void rtl8139_timer (unsigned long data);
+static void rtl8139_tx_timeout (struct device *dev);
+static void rtl8139_init_ring (struct device *dev);
+static int rtl8139_start_xmit (struct sk_buff *skb,
+                              struct device *dev);
+static void rtl8139_interrupt (int irq, void *dev_instance,
+                              struct pt_regs *regs);
+static int rtl8139_close (struct device *dev);
+static int mii_ioctl (struct device *dev, struct ifreq *rq, int cmd);
+static struct net_device_stats *rtl8139_get_stats (struct device *dev);
+static inline u32 ether_crc (int length, unsigned char *data);
+static void rtl8139_set_rx_mode (struct device *dev);
+static void rtl8139_hw_start (struct device *dev);
+
+
+#ifdef USE_IO_OPS
+
+#define RTL_R8(reg)            inb (((unsigned long)ioaddr) + (reg))
+#define RTL_R16(reg)           inw (((unsigned long)ioaddr) + (reg))
+#define RTL_R32(reg)           inl (((unsigned long)ioaddr) + (reg))
+#define RTL_W8(reg, val8)      outb ((val8), ((unsigned long)ioaddr) + (reg))
+#define RTL_W16(reg, val16)    outw ((val16), ((unsigned long)ioaddr) + (reg))
+#define RTL_W32(reg, val32)    outl ((val32), ((unsigned long)ioaddr) + (reg))
+#define RTL_W8_F               RTL_W8
+#define RTL_W16_F              RTL_W16
+#define RTL_W32_F              RTL_W32
+#undef readb
+#undef readw
+#undef readl
+#undef writeb
+#undef writew
+#undef writel
+#define readb(addr) inb((unsigned long)(addr))
+#define readw(addr) inw((unsigned long)(addr))
+#define readl(addr) inl((unsigned long)(addr))
+#define writeb(val,addr) outb((val),(unsigned long)(addr))
+#define writew(val,addr) outw((val),(unsigned long)(addr))
+#define writel(val,addr) outl((val),(unsigned long)(addr))
+
+#else
+
+/* write MMIO register, with flush */
+/* Flush avoids rtl8139 bug w/ posted MMIO writes */
+#define RTL_W8_F(reg, val8)    do { writeb ((val8), ioaddr + (reg)); readb (ioaddr + (reg)); } while (0)
+#define RTL_W16_F(reg, val16)  do { writew ((val16), ioaddr + (reg)); readw (ioaddr + (reg)); } while (0)
+#define RTL_W32_F(reg, val32)  do { writel ((val32), ioaddr + (reg)); readl (ioaddr + (reg)); } while (0)
+
+
+#if MMIO_FLUSH_AUDIT_COMPLETE
+
+/* write MMIO register */
+#define RTL_W8(reg, val8)      writeb ((val8), ioaddr + (reg))
+#define RTL_W16(reg, val16)    writew ((val16), ioaddr + (reg))
+#define RTL_W32(reg, val32)    writel ((val32), ioaddr + (reg))
+
+#else
+
+/* write MMIO register, then flush */
+#define RTL_W8         RTL_W8_F
+#define RTL_W16                RTL_W16_F
+#define RTL_W32                RTL_W32_F
+
+#endif /* MMIO_FLUSH_AUDIT_COMPLETE */
+
+/* read MMIO register */
+#define RTL_R8(reg)            readb (ioaddr + (reg))
+#define RTL_R16(reg)           readw (ioaddr + (reg))
+#define RTL_R32(reg)           readl (ioaddr + (reg))
+
+#endif /* USE_IO_OPS */
+
+
+static const u16 rtl8139_intr_mask = 
+       PCIErr | PCSTimeout | RxUnderrun | RxOverflow | RxFIFOOver |
+       TxErr | TxOK | RxErr | RxOK;
+
+static const unsigned int rtl8139_rx_config =
+         RxCfgEarlyRxNone | RxCfgRcv32K | RxNoWrap |
+         (RX_FIFO_THRESH << RxCfgFIFOShift) |
+         (RX_DMA_BURST << RxCfgDMAShift);
+
+
+static int rtl8139_init_board (struct pci_dev *pdev, struct device **dev_out,
+                                        void **ioaddr_out)
+{
+       void *ioaddr = NULL;
+       struct device *dev;
+       struct rtl8139_private *tp;
+       u8 tmp8;
+       int rc, i;
+       u32 pio_start, pio_end, pio_flags, pio_len;
+       unsigned long mmio_start, mmio_end, mmio_flags, mmio_len;
+       u32 tmp;
+       u16 pci_command, new_command;
+
+       DPRINTK ("ENTER\n");
+
+       assert (pdev != NULL);
+       assert (ioaddr_out != NULL);
+
+       *ioaddr_out = NULL;
+       *dev_out = NULL;
+
+       /* dev zeroed in init_etherdev */
+       dev = init_etherdev (NULL, sizeof (*tp));
+       if (dev == NULL) {
+               printk (KERN_ERR PFX "unable to alloc new ethernet\n");
+               DPRINTK ("EXIT, returning -ENOMEM\n");
+               return -ENOMEM;
+       }
+       tp = dev->priv;
+
+       rtl8139_read_pci_resources(pdev, &tp->rtl8139_pci_resource[0]);
+
+       pio_start = pci_resource_start (tp, 0);
+       pio_end = pci_resource_end (tp, 0);
+       pio_flags = pci_resource_flags (tp, 0);
+       pio_len = pci_resource_len (tp, 0);
+
+       mmio_start = pci_resource_start (tp, 1);
+       mmio_end = pci_resource_end (tp, 1);
+       mmio_flags = pci_resource_flags (tp, 1);
+       mmio_len = pci_resource_len (tp, 1);
+
+       /* set this immediately, we need to know before
+        * we talk to the chip directly */
+       DPRINTK("PIO region size == 0x%02X\n", pio_len);
+       DPRINTK("MMIO region size == 0x%02lX\n", mmio_len);
+       if (pio_len == RTL8139B_IO_SIZE)
+               tp->chipset = CH_8139B;
+
+       /* make sure PCI base addr 0 is PIO */
+       if (!(pio_flags & IORESOURCE_IO)) {
+               printk (KERN_ERR PFX "region #0 not a PIO resource, aborting\n");
+               rc = -ENODEV;
+               goto err_out;
+       }
+       
+       /* make sure PCI base addr 1 is MMIO */
+       if (!(mmio_flags & IORESOURCE_MEM)) {
+               printk (KERN_ERR PFX "region #1 not an MMIO resource, aborting\n");
+               rc = -ENODEV;
+               goto err_out;
+       }
+       
+       /* check for weird/broken PCI region reporting */
+       if ((pio_len != mmio_len) ||
+           (pio_len < RTL_MIN_IO_SIZE) ||
+           (mmio_len < RTL_MIN_IO_SIZE)) {
+               printk (KERN_ERR PFX "Invalid PCI region size(s), aborting\n");
+               rc = -ENODEV;
+               goto err_out;
+       }
+
+       /* make sure our PIO region in PCI space is available */
+       if (check_region(pio_start, pio_len)) {
+               printk (KERN_ERR PFX "no I/O resource available, aborting\n");
+               rc = -EBUSY;
+               goto err_out;
+       }
+       request_region(pio_start, pio_len, dev->name);
+       
+       pci_set_master (pdev);
+
+#ifdef USE_IO_OPS
+       ioaddr = (void *) pio_start;
+#else
+       /* ioremap MMIO region */
+       ioaddr = ioremap_nocache(mmio_start, mmio_len);
+       
+       if (ioaddr == NULL) {
+               printk (KERN_ERR PFX "cannot remap MMIO, aborting\n");
+               rc = -EIO;
+               goto err_out_free_mmio;
+       }
+#endif /* USE_IO_OPS */
+
+       /* Activate the card: fix for brain-damaged Win98 BIOSes. */
+       pci_read_config_word(pdev,  PCI_COMMAND, &pci_command);
+       new_command = pci_command | PCI_USES_IO | PCI_USES_MEM | PCI_USES_MASTER;
+       if (pci_command != new_command)
+               pci_write_config_word(pdev, PCI_COMMAND, new_command);
+       
+       /* Soft reset the chip. */
+       RTL_W8 (ChipCmd, (RTL_R8 (ChipCmd) & ChipCmdClear) | CmdReset);
+
+       /* Check that the chip has finished the reset. */
+       for (i = 10000; i > 0; i--)
+               if ((RTL_R8 (ChipCmd) & CmdReset) == 0)
+                       break;
+               else
+                       udelay (10);
+
+       /* Bring the chip out of low-power mode. */
+       if (tp->chipset == CH_8139B) {
+               RTL_W8 (Config1, RTL_R8 (Config1) & ~(1<<4));
+               RTL_W8 (Config4, RTL_R8 (Config4) & ~(1<<2));
+       } else {
+               /* handle RTL8139A and RTL8139 cases */
+               /* XXX from becker driver. is this right?? */
+               RTL_W8 (Config1, 0);
+       }
+
+#ifndef USE_IO_OPS
+       /* sanity checks -- ensure PIO and MMIO registers agree */
+       assert (inb (pio_start+Config0) == readb (ioaddr+Config0));
+       assert (inb (pio_start+Config1) == readb (ioaddr+Config1));
+       assert (inb (pio_start+TxConfig) == readb (ioaddr+TxConfig));
+       assert (inb (pio_start+RxConfig) == readb (ioaddr+RxConfig));
+#endif /* !USE_IO_OPS */
+       
+       /* make sure chip thinks PIO and MMIO are enabled */
+       tmp8 = RTL_R8 (Config1);
+       if ((tmp8 & Cfg1_PIO) == 0) {
+               printk (KERN_ERR PFX "PIO not enabled, Cfg1=%02X, aborting\n", tmp8);
+               rc = -EIO;
+               goto err_out_iounmap;
+       }
+       if ((tmp8 & Cfg1_MMIO) == 0) {
+               printk (KERN_ERR PFX "MMIO not enabled, Cfg1=%02X, aborting\n", tmp8);
+               rc = -EIO;
+               goto err_out_iounmap;
+       }
+       
+       /* identify chip attached to board */
+       tmp = RTL_R8 (ChipVersion);
+       for (i = arraysize (rtl_chip_info) - 1; i >= 0; i--)
+               if (tmp == rtl_chip_info[i].version) {
+                       tp->chipset = i;
+                       goto match;
+               }
+
+       /* if unknown chip, assume array element #0, original RTL-8139 in this case */
+       printk (KERN_DEBUG PFX "PCI device %08lX: unknown chip version, assuming RTL-8139\n",
+               (unsigned long) pdev);
+       printk (KERN_DEBUG PFX "PCI device %08lX: TxConfig = 0x%x\n", (unsigned long) pdev, RTL_R32 (TxConfig));
+       tp->chipset = 0;
+
+match:
+       DPRINTK ("chipset id (%d) == index %d, '%s'\n",
+               tmp,
+               tp->chipset,
+               rtl_chip_info[tp->chipset].name);
+       
+       DPRINTK ("EXIT, returning 0\n");
+       *ioaddr_out = ioaddr;
+       *dev_out = dev;
+       return 0;       
+
+err_out_iounmap:
+       assert (ioaddr > 0);
+#ifndef USE_IO_OPS
+       iounmap (ioaddr);
+#endif /* !USE_IO_OPS */
+err_out_free_mmio:
+       release_region (pio_start, pio_len);
+err_out:
+       unregister_netdev (dev);
+       kfree (dev);
+       DPRINTK ("EXIT, returning %d\n", rc);
+       return rc;
+}
+
+static int rtl8139_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
+{
+       struct device *dev = NULL;
+       struct rtl8139_private *tp;
+       int i, addr_len, option;
+       void *ioaddr = NULL;
+       static int board_idx = -1;
+       u8 tmp;
+
+       DPRINTK ("ENTER\n");
+       
+       assert (pdev != NULL);
+       assert (ent != NULL);
+
+       board_idx++;
+
+       i = rtl8139_init_board (pdev, &dev, &ioaddr);
+       if (i < 0) {
+               DPRINTK ("EXIT, returning %d\n", i);
+               return i;
+       }
+       
+       tp = dev->priv;
+       
+       assert (ioaddr != NULL);
+       assert (dev != NULL);
+       assert (tp != NULL);
+
+       addr_len = read_eeprom (ioaddr, 0, 8) == 0x8129 ? 8 : 6;
+       for (i = 0; i < 3; i++)
+               ((u16 *) (dev->dev_addr))[i] =
+                   le16_to_cpu (read_eeprom (ioaddr, i + 7, addr_len));
+
+       /* The Rtl8139-specific entries in the device structure. */
+       dev->open = rtl8139_open;
+       dev->hard_start_xmit = rtl8139_start_xmit;
+       dev->stop = rtl8139_close;
+       dev->get_stats = rtl8139_get_stats;
+       dev->set_multicast_list = rtl8139_set_rx_mode;
+       dev->do_ioctl = mii_ioctl;
+
+       dev->irq = pdev->irq;
+       dev->base_addr = (unsigned long) ioaddr;
+
+       /* dev->priv/tp zeroed and aligned in init_etherdev */
+       tp = dev->priv;
+
+       /* note: tp->chipset set in rtl8139_init_board */
+       tp->drv_flags = PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
+                       PCI_COMMAND_MASTER | RTL8139_CAPS;
+       tp->pci_dev = pdev;
+       tp->board = ent->board;
+       tp->mmio_addr = ioaddr;
+       tp->lock = SPIN_LOCK_UNLOCKED;
+
+       tp->phys[0] = 32;
+
+       if (rtl8139_device_count == 0) {
+               printk (KERN_INFO "%s: " RTL8139_DRIVER_NAME " " RTL8139_AUTHOR "\n", dev->name);
+               printk (KERN_INFO "%s: Linux-2.2 bug reports to Jens David <dg1kjd@afthd.tu-darmstadt.de>\n", dev->name);
+       }
+       
+       printk (KERN_INFO "%s: %s board found at 0x%lx, IRQ %d\n",
+               dev->name, board_info[ent->board].name,
+               dev->base_addr, dev->irq);
+
+       printk (KERN_INFO "%s: Chip is '%s' - MAC address '%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x'.\n",
+               dev->name,
+               rtl_chip_info[tp->chipset].name,
+               dev->dev_addr[0], dev->dev_addr[1],
+               dev->dev_addr[2], dev->dev_addr[3],
+               dev->dev_addr[4], dev->dev_addr[5]);
+
+       /* Put the chip into low-power mode. */
+       RTL_W8_F (Cfg9346, Cfg9346_Unlock);
+
+       tmp = RTL_R8 (Config1) & Config1Clear;
+       tmp |= (tp->chipset == CH_8139B) ? 3 : 1; /* Enable PM/VPD */
+       RTL_W8_F (Config1, tmp);
+
+       RTL_W8_F (HltClk, 'H'); /* 'R' would leave the clock running. */
+
+       /* The lower four bits are the media type. */
+       option = (board_idx > 7) ? 0 : media[board_idx];
+       if (option > 0) {
+               tp->full_duplex = (option & 0x200) ? 1 : 0;
+               tp->default_port = option & 15;
+               if (tp->default_port)
+                       tp->medialock = 1;
+       }
+
+       if (tp->full_duplex) {
+               printk (KERN_INFO
+                       "%s: Media type forced to Full Duplex.\n",
+                       dev->name);
+               mdio_write (dev, tp->phys[0], 4, 0x141);
+               tp->duplex_lock = 1;
+       }
+
+       rtl8139_device_tab[rtl8139_device_count++] = dev;
+       
+       DPRINTK ("EXIT - returning 0\n");
+       return 0;
+}
+
+static void rtl8139_remove_one (struct device *dev)
+{
+       struct pci_dev *pdev;
+       struct rtl8139_private *np;
+
+       DPRINTK ("ENTER\n");
+
+       assert (dev != NULL);
+
+       np = (struct rtl8139_private *) (dev->priv);
+       assert (np != NULL);
+
+       pdev = np->pci_dev;
+       assert (pdev != NULL);
+
+       unregister_netdev (dev);
+
+#ifndef USE_IO_OPS
+       iounmap (np->mmio_addr);
+#endif /* !USE_IO_OPS */
+
+       release_region (pci_resource_start (np, 0),
+                       pci_resource_len (np, 0));
+#ifndef RTL8139_NDEBUG
+       /* poison memory before freeing */
+       memset (dev, 0xBC,
+               sizeof (struct device) +
+               sizeof (struct rtl8139_private));
+#endif /* RTL8139_NDEBUG */
+
+       kfree (dev);
+
+       DPRINTK ("EXIT\n");
+}
+
+/* Serial EEPROM section. */
+
+/*  EEPROM_Ctrl bits. */
+#define EE_SHIFT_CLK   0x04    /* EEPROM shift clock. */
+#define EE_CS                  0x08    /* EEPROM chip select. */
+#define EE_DATA_WRITE  0x02    /* EEPROM chip data in. */
+#define EE_WRITE_0             0x00
+#define EE_WRITE_1             0x02
+#define EE_DATA_READ   0x01    /* EEPROM chip data out. */
+#define EE_ENB                 (0x80 | EE_CS)
+
+/* Delay between EEPROM clock transitions.
+   No extra delay is needed with 33Mhz PCI, but 66Mhz may change this.
+ */
+
+#define eeprom_delay() readl(ee_addr)
+
+/* The EEPROM commands include the alway-set leading bit. */
+#define EE_WRITE_CMD   (5)
+#define EE_READ_CMD            (6)
+#define EE_ERASE_CMD   (7)
+
+static int read_eeprom (void *ioaddr, int location, int addr_len)
+{
+       int i;
+       unsigned retval = 0;
+       void *ee_addr = ioaddr + Cfg9346;
+       int read_cmd = location | (EE_READ_CMD << addr_len);
+
+       DPRINTK ("ENTER\n");
+
+       writeb (EE_ENB & ~EE_CS, ee_addr);
+       writeb (EE_ENB, ee_addr);
+       eeprom_delay ();
+
+       /* Shift the read command bits out. */
+       for (i = 4 + addr_len; i >= 0; i--) {
+               int dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0;
+               writeb (EE_ENB | dataval, ee_addr);
+               eeprom_delay ();
+               writeb (EE_ENB | dataval | EE_SHIFT_CLK, ee_addr);
+               eeprom_delay ();
+       }
+       writeb (EE_ENB, ee_addr);
+       eeprom_delay ();
+
+       for (i = 16; i > 0; i--) {
+               writeb (EE_ENB | EE_SHIFT_CLK, ee_addr);
+               eeprom_delay ();
+               retval =
+                   (retval << 1) | ((readb (ee_addr) & EE_DATA_READ) ? 1 :
+                                    0);
+               writeb (EE_ENB, ee_addr);
+               eeprom_delay ();
+       }
+
+       /* Terminate the EEPROM access. */
+       writeb (~EE_CS, ee_addr);
+       eeprom_delay ();
+
+       DPRINTK ("EXIT - returning %d\n", retval);
+       return retval;
+}
+
+/* MII serial management: mostly bogus for now. */
+/* Read and write the MII management registers using software-generated
+   serial MDIO protocol.
+   The maximum data clock rate is 2.5 Mhz.  The minimum timing is usually
+   met by back-to-back PCI I/O cycles, but we insert a delay to avoid
+   "overclocking" issues. */
+#define MDIO_DIR               0x80
+#define MDIO_DATA_OUT  0x04
+#define MDIO_DATA_IN   0x02
+#define MDIO_CLK               0x01
+#define MDIO_WRITE0 (MDIO_DIR)
+#define MDIO_WRITE1 (MDIO_DIR | MDIO_DATA_OUT)
+
+#define mdio_delay()   readb(mdio_addr)
+
+
+static char mii_2_8139_map[8] = {
+       BasicModeCtrl,
+       BasicModeStatus,
+       0,
+       0,
+       NWayAdvert,
+       NWayLPAR,
+       NWayExpansion,
+       0
+};
+
+
+/* Syncronize the MII management interface by shifting 32 one bits out. */
+static void mdio_sync (void *mdio_addr)
+{
+       int i;
+
+       DPRINTK ("ENTER\n");
+
+       for (i = 32; i >= 0; i--) {
+               writeb (MDIO_WRITE1, mdio_addr);
+               mdio_delay ();
+               writeb (MDIO_WRITE1 | MDIO_CLK, mdio_addr);
+               mdio_delay ();
+       }
+
+       DPRINTK ("EXIT\n");
+}
+
+
+static int mdio_read (struct device *dev, int phy_id, int location)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *mdio_addr = tp->mmio_addr + Config4;
+       int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location;
+       int retval = 0;
+       int i;
+
+       DPRINTK ("ENTER\n");
+
+       if (phy_id > 31) {      /* Really a 8139.  Use internal registers. */
+               DPRINTK ("EXIT after directly using 8139 internal regs\n");
+               return location < 8 && mii_2_8139_map[location] ?
+                   readw (tp->mmio_addr + mii_2_8139_map[location]) : 0;
+       }
+       mdio_sync (mdio_addr);
+       /* Shift the read command bits out. */
+       for (i = 15; i >= 0; i--) {
+               int dataval = (mii_cmd & (1 << i)) ? MDIO_DATA_OUT : 0;
+
+               writeb (MDIO_DIR | dataval, mdio_addr);
+               mdio_delay ();
+               writeb (MDIO_DIR | dataval | MDIO_CLK, mdio_addr);
+               mdio_delay ();
+       }
+
+       /* Read the two transition, 16 data, and wire-idle bits. */
+       for (i = 19; i > 0; i--) {
+               writeb (0, mdio_addr);
+               mdio_delay ();
+               retval =
+                   (retval << 1) | ((readb (mdio_addr) & MDIO_DATA_IN) ? 1
+                                    : 0);
+               writeb (MDIO_CLK, mdio_addr);
+               mdio_delay ();
+       }
+
+       DPRINTK ("EXIT, returning %d\n", (retval >> 1) & 0xffff);
+       return (retval >> 1) & 0xffff;
+}
+
+
+static void mdio_write (struct device *dev, int phy_id, int location,
+                       int value)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *mdio_addr = tp->mmio_addr + Config4;
+       int mii_cmd =
+           (0x5002 << 16) | (phy_id << 23) | (location << 18) | value;
+       int i;
+
+       DPRINTK ("ENTER\n");
+
+       if (phy_id > 31) {      /* Really a 8139.  Use internal registers. */
+               if (location < 8 && mii_2_8139_map[location]) {
+                       writew (value,
+                               tp->mmio_addr + mii_2_8139_map[location]);
+                       readw (tp->mmio_addr + mii_2_8139_map[location]);
+               }
+               DPRINTK ("EXIT after directly using 8139 internal regs\n");
+               return;
+       }
+       mdio_sync (mdio_addr);
+
+       /* Shift the command bits out. */
+       for (i = 31; i >= 0; i--) {
+               int dataval =
+                   (mii_cmd & (1 << i)) ? MDIO_WRITE1 : MDIO_WRITE0;
+               writeb (dataval, mdio_addr);
+               mdio_delay ();
+               writeb (dataval | MDIO_CLK, mdio_addr);
+               mdio_delay ();
+       }
+
+       /* Clear out extra bits. */
+       for (i = 2; i > 0; i--) {
+               writeb (0, mdio_addr);
+               mdio_delay ();
+               writeb (MDIO_CLK, mdio_addr);
+               mdio_delay ();
+       }
+
+       DPRINTK ("EXIT\n");
+}
+
+
+static int rtl8139_open (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       int retval;
+#ifdef RTL8139_DEBUG
+       void *ioaddr = tp->mmio_addr;
+#endif
+
+       DPRINTK ("ENTER\n");
+
+       MOD_INC_USE_COUNT;
+
+       retval = request_irq (dev->irq, rtl8139_interrupt, SA_SHIRQ, dev->name, dev);
+       if (retval) {
+               DPRINTK ("EXIT, returning %d\n", retval);
+               MOD_DEC_USE_COUNT;
+               return retval;
+       }
+
+       tp->tx_bufs = kmalloc(TX_BUF_TOT_LEN, GFP_KERNEL | GFP_DMA);
+       tp->tx_bufs_dma = virt_to_bus(tp->tx_bufs);
+       tp->rx_ring = kmalloc(RX_BUF_TOT_LEN, GFP_KERNEL | GFP_DMA);
+       tp->rx_ring_dma = virt_to_bus(tp->rx_ring);
+
+       if (tp->tx_bufs == NULL || tp->rx_ring == NULL) {
+               free_irq(dev->irq, dev);
+
+               if (tp->tx_bufs) kfree(tp->tx_bufs);
+               if (tp->rx_ring) kfree(tp->rx_ring);
+
+               DPRINTK ("EXIT, returning -ENOMEM\n");
+               MOD_DEC_USE_COUNT;
+               return -ENOMEM;
+               
+       }
+       
+       tp->full_duplex = tp->duplex_lock;
+       tp->tx_flag = (TX_FIFO_THRESH << 11) & 0x003f0000;
+
+       rtl8139_init_ring (dev);
+       rtl8139_hw_start (dev);
+
+       DPRINTK ("%s: rtl8139_open() ioaddr %#lx IRQ %d"
+                       " GP Pins %2.2x %s-duplex.\n",
+                       dev->name, pci_resource_start (tp, 1),
+                       dev->irq, RTL_R8 (MediaStatus),
+                       tp->full_duplex ? "full" : "half");
+
+       /* Set the timer to switch to check for link beat and perhaps switch
+          to an alternate media type. */
+       init_timer (&tp->timer);
+       tp->timer.expires = jiffies + 3 * HZ;
+       tp->timer.data = (unsigned long) dev;
+       tp->timer.function = &rtl8139_timer;
+       add_timer (&tp->timer);
+
+       DPRINTK ("EXIT, returning 0\n");
+       return 0;
+}
+
+
+/* Start the hardware at open or resume. */
+static void rtl8139_hw_start (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+       u32 i;
+       u8 tmp;
+
+       DPRINTK ("ENTER\n");
+       
+       /* Soft reset the chip. */
+       RTL_W8 (ChipCmd, (RTL_R8 (ChipCmd) & ChipCmdClear) | CmdReset);
+       udelay (100);
+
+       /* Check that the chip has finished the reset. */
+       for (i = 1000; i > 0; i--)
+               if ((RTL_R8 (ChipCmd) & CmdReset) == 0)
+                       break;
+
+       /* Restore our idea of the MAC address. */
+       RTL_W32_F (MAC0 + 0, cpu_to_le32 (*(u32 *) (dev->dev_addr + 0)));
+       RTL_W32_F (MAC0 + 4, cpu_to_le32 (*(u32 *) (dev->dev_addr + 4)));
+
+       /* Must enable Tx/Rx before setting transfer thresholds! */
+       RTL_W8_F (ChipCmd, (RTL_R8 (ChipCmd) & ChipCmdClear) |
+                          CmdRxEnb | CmdTxEnb);
+
+       i = rtl8139_rx_config |
+           (RTL_R32 (RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
+       RTL_W32_F (RxConfig, i);
+
+       /* Check this value: the documentation for IFG contradicts ifself. */
+       RTL_W32 (TxConfig, (TX_DMA_BURST << TxDMAShift));
+
+       /* unlock Config[01234] and BMCR register writes */
+       RTL_W8_F (Cfg9346, Cfg9346_Unlock);
+       udelay (10);
+
+       tp->cur_rx = 0;
+
+       if (tp->chipset >= CH_8139A) {
+               tmp = RTL_R8 (Config1) & Config1Clear;
+               tmp |= Cfg1_Driver_Load;
+               tmp |= (tp->chipset == CH_8139B) ? 3 : 1; /* Enable PM/VPD */
+               RTL_W8_F (Config1, tmp);
+       } else {
+               u8 foo = RTL_R8 (Config1) & Config1Clear;
+               RTL_W8 (Config1, tp->full_duplex ? (foo|0x60) : (foo|0x20));
+       }
+
+       if (tp->chipset >= CH_8139B) {
+               tmp = RTL_R8 (Config4) & ~(1<<2);
+               /* chip will clear Rx FIFO overflow automatically */
+               tmp |= (1<<7);  
+               RTL_W8 (Config4, tmp);
+       
+               /* disable magic packet scanning, which is enabled
+                * when PM is enabled above (Config1) */
+               RTL_W8 (Config3, RTL_R8 (Config3) & ~(1<<5));
+       }
+
+       /* Lock Config[01234] and BMCR register writes */
+       RTL_W8_F (Cfg9346, Cfg9346_Lock);
+       udelay (10);
+
+       /* init Rx ring buffer DMA address */
+       RTL_W32_F (RxBuf, tp->rx_ring_dma);
+
+       /* init Tx buffer DMA addresses */
+       for (i = 0; i < NUM_TX_DESC; i++)
+               RTL_W32_F (TxAddr0 + (i * 4), tp->tx_bufs_dma + (tp->tx_buf[i] - tp->tx_bufs));
+
+       RTL_W32_F (RxMissed, 0);
+
+       rtl8139_set_rx_mode (dev);
+
+       /* no early-rx interrupts */
+       RTL_W16 (MultiIntr, RTL_R16 (MultiIntr) & MultiIntrClear);
+
+       /* make sure RxTx has started */
+       RTL_W8_F (ChipCmd, (RTL_R8 (ChipCmd) & ChipCmdClear) |
+                          CmdRxEnb | CmdTxEnb);
+
+       /* Enable all known interrupts by setting the interrupt mask. */
+       RTL_W16_F (IntrMask, rtl8139_intr_mask);
+
+       netif_start_queue (dev);
+
+       DPRINTK ("EXIT\n");
+}
+
+
+/* Initialize the Rx and Tx rings, along with various 'dev' bits. */
+static void rtl8139_init_ring (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       int i;
+
+       DPRINTK ("ENTER\n");
+
+       tp->cur_rx = 0;
+       atomic_set (&tp->cur_tx, 0);
+       atomic_set (&tp->dirty_tx, 0);
+
+       for (i = 0; i < NUM_TX_DESC; i++) {
+               tp->tx_info[i].skb = NULL;
+               tp->tx_buf[i] = &tp->tx_bufs[i * TX_BUF_SIZE];
+       }
+
+       DPRINTK ("EXIT\n");
+}
+
+
+#ifndef RTL_TUNE_TWISTER
+static inline void rtl8139_tune_twister (struct device *dev,
+                                 struct rtl8139_private *tp) {}
+#else
+static void rtl8139_tune_twister (struct device *dev,
+                                 struct rtl8139_private *tp)
+{
+       int linkcase;
+
+       DPRINTK ("ENTER\n");
+
+       /* This is a complicated state machine to configure the "twister" for
+          impedance/echos based on the cable length.
+          All of this is magic and undocumented.
+        */
+       switch (tp->twistie) {
+       case 1:
+               if (RTL_R16 (CSCR) & CSCR_LinkOKBit) {
+                       /* We have link beat, let us tune the twister. */
+                       RTL_W16 (CSCR, CSCR_LinkDownOffCmd);
+                       tp->twistie = 2;        /* Change to state 2. */
+                       next_tick = HZ / 10;
+               } else {
+                       /* Just put in some reasonable defaults for when beat returns. */
+                       RTL_W16 (CSCR, CSCR_LinkDownCmd);
+                       RTL_W32 (FIFOTMS, 0x20);        /* Turn on cable test mode. */
+                       RTL_W32 (PARA78, PARA78_default);
+                       RTL_W32 (PARA7c, PARA7c_default);
+                       tp->twistie = 0;        /* Bail from future actions. */
+               }
+               break;
+       case 2:
+               /* Read how long it took to hear the echo. */
+               linkcase = RTL_R16 (CSCR) & CSCR_LinkStatusBits;
+               if (linkcase == 0x7000)
+                       tp->twist_row = 3;
+               else if (linkcase == 0x3000)
+                       tp->twist_row = 2;
+               else if (linkcase == 0x1000)
+                       tp->twist_row = 1;
+               else
+                       tp->twist_row = 0;
+               tp->twist_col = 0;
+               tp->twistie = 3;        /* Change to state 2. */
+               next_tick = HZ / 10;
+               break;
+       case 3:
+               /* Put out four tuning parameters, one per 100msec. */
+               if (tp->twist_col == 0)
+                       RTL_W16 (FIFOTMS, 0);
+               RTL_W32 (PARA7c, param[(int) tp->twist_row]
+                        [(int) tp->twist_col]);
+               next_tick = HZ / 10;
+               if (++tp->twist_col >= 4) {
+                       /* For short cables we are done.
+                          For long cables (row == 3) check for mistune. */
+                       tp->twistie =
+                           (tp->twist_row == 3) ? 4 : 0;
+               }
+               break;
+       case 4:
+               /* Special case for long cables: check for mistune. */
+               if ((RTL_R16 (CSCR) &
+                    CSCR_LinkStatusBits) == 0x7000) {
+                       tp->twistie = 0;
+                       break;
+               } else {
+                       RTL_W32 (PARA7c, 0xfb38de03);
+                       tp->twistie = 5;
+                       next_tick = HZ / 10;
+               }
+               break;
+       case 5:
+               /* Retune for shorter cable (column 2). */
+               RTL_W32 (FIFOTMS, 0x20);
+               RTL_W32 (PARA78, PARA78_default);
+               RTL_W32 (PARA7c, PARA7c_default);
+               RTL_W32 (FIFOTMS, 0x00);
+               tp->twist_row = 2;
+               tp->twist_col = 0;
+               tp->twistie = 3;
+               next_tick = HZ / 10;
+               break;
+
+       default:
+               /* do nothing */
+               break;
+       }
+
+       DPRINTK ("EXIT\n");
+}
+#endif /* RTL_TUNE_TWISTER */
+
+
+static void rtl8139_timer (unsigned long data)
+{
+       struct device *dev = (struct device *) data;
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+       int next_tick = 60 * HZ;
+       int mii_reg5;
+
+       mii_reg5 = mdio_read (dev, tp->phys[0], 5);
+
+       if (!tp->duplex_lock && mii_reg5 != 0xffff) {
+               int duplex = (mii_reg5 & 0x0100)
+                   || (mii_reg5 & 0x01C0) == 0x0040;
+               if (tp->full_duplex != duplex) {
+                       tp->full_duplex = duplex;
+                       printk (KERN_INFO
+                               "%s: Setting %s-duplex based on MII #%d link"
+                               " partner ability of %4.4x.\n", dev->name,
+                               tp->full_duplex ? "full" : "half",
+                               tp->phys[0], mii_reg5);
+                       RTL_W8 (Cfg9346, Cfg9346_Unlock);
+                       RTL_W8 (Config1, tp->full_duplex ? 0x60 : 0x20);
+                       RTL_W8 (Cfg9346, Cfg9346_Lock);
+               }
+       }
+
+       rtl8139_tune_twister (dev, tp);
+
+       DPRINTK ("%s: Media selection tick, Link partner %4.4x.\n",
+                dev->name, RTL_R16 (NWayLPAR));
+       DPRINTK ("%s:  Other registers are IntMask %4.4x IntStatus %4.4x"
+                " RxStatus %4.4x.\n", dev->name,
+                RTL_R16 (IntrMask),
+                RTL_R16 (IntrStatus),
+                RTL_R32 (RxEarlyStatus));
+       DPRINTK ("%s:  Chip config %2.2x %2.2x.\n",
+                dev->name, RTL_R8 (Config0),
+                RTL_R8 (Config1));
+
+       tp->timer.expires = jiffies + next_tick;
+       add_timer (&tp->timer);
+}
+
+
+static void rtl8139_tx_timeout (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+       int i;
+       unsigned long flags;
+
+       DPRINTK ("%s: Transmit timeout, status %2.2x %4.4x "
+                "media %2.2x.\n", dev->name,
+                RTL_R8 (ChipCmd),
+                RTL_R16 (IntrStatus),
+                RTL_R8 (MediaStatus));
+
+       /* Disable interrupts by clearing the interrupt mask. */
+       RTL_W16 (IntrMask, 0x0000);
+
+       /* Emit info to figure out what went wrong. */
+        printk (KERN_DEBUG "%s: Tx queue start entry %d  dirty entry %d.\n",
+               dev->name, atomic_read (&tp->cur_tx),
+               atomic_read (&tp->dirty_tx));
+       for (i = 0; i < NUM_TX_DESC; i++)
+               printk (KERN_DEBUG "%s:  Tx descriptor %d is %8.8x.%s\n",
+                       dev->name, i, RTL_R32 (TxStatus0 + (i * 4)),
+                       i == atomic_read (&tp->dirty_tx) % NUM_TX_DESC ?
+                               " (queue head)" : "");
+
+       spin_lock_irqsave (&tp->lock, flags);
+
+       /* Stop a shared interrupt from scavenging while we are. */
+       atomic_set (&tp->cur_tx, 0);
+       atomic_set (&tp->dirty_tx, 0);
+
+       /* Dump the unsent Tx packets. */
+       for (i = 0; i < NUM_TX_DESC; i++) {
+               struct ring_info *rp = &tp->tx_info[i];
+               if (rp->skb) {
+                       dev_kfree_skb (rp->skb);
+                       rp->skb = NULL;
+                       tp->stats.tx_dropped++;
+               }
+       }
+       
+       spin_unlock_irqrestore (&tp->lock, flags);
+
+       /* ...and finally, reset everything */
+       rtl8139_hw_start (dev);
+}
+
+
+
+static int rtl8139_start_xmit (struct sk_buff *skb, struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+       int entry;
+
+       if (dev->tbusy) {
+               /* If this happens network layer tells us we're broken. */
+               if (jiffies - dev->trans_start > TX_TIMEOUT)
+                       rtl8139_tx_timeout(dev);
+       }
+
+       /* Calculate the next Tx descriptor entry. */
+       entry = atomic_read (&tp->cur_tx) % NUM_TX_DESC;
+
+       assert (tp->tx_info[entry].skb == NULL);
+
+       tp->tx_info[entry].skb = skb;
+       memcpy (tp->tx_buf[entry], skb->data, skb->len);
+
+       /* Note: the chip doesn't have auto-pad! */
+       RTL_W32 (TxStatus0 + (entry * sizeof(u32)),
+                tp->tx_flag | (skb->len >= ETH_ZLEN ? skb->len : ETH_ZLEN));
+
+       dev->trans_start = jiffies;
+       atomic_inc (&tp->cur_tx);
+       if ((atomic_read (&tp->cur_tx) - atomic_read (&tp->dirty_tx)) >= NUM_TX_DESC)
+               netif_stop_queue (dev);
+
+       DPRINTK ("%s: Queued Tx packet at %p size %u to slot %d.\n",
+                dev->name, skb->data, skb->len, entry);
+
+       return 0;
+}
+
+
+static inline void rtl8139_tx_interrupt (struct device *dev,
+                                        struct rtl8139_private *tp,
+                                        void *ioaddr)
+{
+       unsigned int dirty_tx;
+
+       assert (dev != NULL);
+       assert (tp != NULL);
+       assert (ioaddr != NULL);
+       
+       dirty_tx = atomic_read (&tp->dirty_tx);
+
+       while ((atomic_read (&tp->cur_tx) - dirty_tx) > 0) {
+               int entry = dirty_tx % NUM_TX_DESC;
+               int txstatus;
+
+               txstatus = RTL_R32 (TxStatus0 + (entry * sizeof (u32)));
+               
+               if (!(txstatus & (TxStatOK | TxUnderrun | TxAborted)))
+                       break;  /* It still hasn't been Txed */
+
+               /* Note: TxCarrierLost is always asserted at 100mbps. */
+               if (txstatus & (TxOutOfWindow | TxAborted)) {
+                       /* There was an major error, log it. */
+                       DPRINTK ("%s: Transmit error, Tx status %8.8x.\n",
+                                dev->name, txstatus);
+                       tp->stats.tx_errors++;
+                       if (txstatus & TxAborted) {
+                               tp->stats.tx_aborted_errors++;
+                               RTL_W32 (TxConfig, TxClearAbt | (TX_DMA_BURST << TxDMAShift));
+                       }
+                       if (txstatus & TxCarrierLost)
+                               tp->stats.tx_carrier_errors++;
+                       if (txstatus & TxOutOfWindow)
+                               tp->stats.tx_window_errors++;
+#ifdef ETHER_STATS
+                       if ((txstatus & 0x0f000000) == 0x0f000000)
+                               tp->stats.collisions16++;
+#endif
+               } else {
+                       if (txstatus & TxUnderrun) {
+                               /* Add 64 to the Tx FIFO threshold. */
+                               if (tp->tx_flag < 0x00300000)
+                                       tp->tx_flag += 0x00020000;
+                               tp->stats.tx_fifo_errors++;
+                       }
+                       tp->stats.collisions += (txstatus >> 24) & 15;
+                       tp->stats.tx_bytes += txstatus & 0x7ff;
+                       tp->stats.tx_packets++;
+               }
+
+               dev_kfree_skb_irq (tp->tx_info[entry].skb);
+               tp->tx_info[entry].skb = NULL;
+               dirty_tx++;
+               if (netif_queue_stopped (dev) &&
+                   (atomic_read (&tp->cur_tx) - dirty_tx < NUM_TX_DESC))
+                       netif_wake_queue (dev);
+               mark_bh(NET_BH);
+       }
+
+#ifndef RTL8139_NDEBUG
+       if (atomic_read (&tp->cur_tx) - dirty_tx > NUM_TX_DESC) {
+               printk (KERN_ERR
+                 "%s: Out-of-sync dirty pointer, %d vs. %d.\n",
+                    dev->name, dirty_tx, atomic_read (&tp->cur_tx));
+               dirty_tx += NUM_TX_DESC;
+       }
+#endif /* RTL8139_NDEBUG */
+
+       atomic_set (&tp->dirty_tx, dirty_tx);
+}
+
+/* TODO: clean this up!  Rx reset need not be this intensive */
+static void rtl8139_rx_err (u32 rx_status, struct device *dev,
+                           struct rtl8139_private *tp, void *ioaddr)
+{
+       u8 tmp8;
+       int tmp_work = 1000;
+
+       DPRINTK ("%s: Ethernet frame had errors, status %8.8x.\n",
+                dev->name, rx_status);
+       if (rx_status & RxTooLong) {
+               DPRINTK ("%s: Oversized Ethernet frame, status %4.4x!\n",
+                        dev->name, rx_status);
+               /* A.C.: The chip hangs here. */
+       }
+       tp->stats.rx_errors++;
+       if (rx_status & (RxBadSymbol | RxBadAlign))
+               tp->stats.rx_frame_errors++;
+       if (rx_status & (RxRunt | RxTooLong))
+               tp->stats.rx_length_errors++;
+       if (rx_status & RxCRCErr)
+               tp->stats.rx_crc_errors++;
+       /* Reset the receiver, based on RealTek recommendation. (Bug?) */
+       tp->cur_rx = 0;
+
+       /* disable receive */
+       tmp8 = RTL_R8 (ChipCmd) & ChipCmdClear;
+       RTL_W8_F (ChipCmd, tmp8 | CmdTxEnb);
+
+       /* A.C.: Reset the multicast list. */
+       rtl8139_set_rx_mode (dev);
+
+       /* XXX potentially temporary hack to
+        * restart hung receiver */
+       while (--tmp_work > 0) {
+               tmp8 = RTL_R8 (ChipCmd);
+               if ((tmp8 & CmdRxEnb) && (tmp8 & CmdTxEnb))
+                       break;
+               RTL_W8_F (ChipCmd,
+                         (tmp8 & ChipCmdClear) | CmdRxEnb | CmdTxEnb);
+       }
+
+       /* G.S.: Re-enable receiver */
+       /* XXX temporary hack to work around receiver hang */
+       rtl8139_set_rx_mode (dev);
+
+       if (tmp_work <= 0)
+               printk (KERN_WARNING PFX "tx/rx enable wait too long\n");
+}
+
+
+/* The data sheet doesn't describe the Rx ring at all, so I'm guessing at the
+   field alignments and semantics. */
+static void rtl8139_rx_interrupt (struct device *dev,
+                                 struct rtl8139_private *tp, void *ioaddr)
+{
+       unsigned char *rx_ring;
+       u16 cur_rx;
+
+       assert (dev != NULL);
+       assert (tp != NULL);
+       assert (ioaddr != NULL);
+
+       rx_ring = tp->rx_ring;
+       cur_rx = tp->cur_rx;
+
+       DPRINTK ("%s: In rtl8139_rx(), current %4.4x BufAddr %4.4x,"
+                " free to %4.4x, Cmd %2.2x.\n", dev->name, cur_rx,
+                RTL_R16 (RxBufAddr),
+                RTL_R16 (RxBufPtr), RTL_R8 (ChipCmd));
+
+       while ((RTL_R8 (ChipCmd) & RxBufEmpty) == 0) {
+               int ring_offset = cur_rx % RX_BUF_LEN;
+               u32 rx_status = le32_to_cpu (*(u32 *) (rx_ring + ring_offset));
+               int rx_size = rx_status >> 16;
+               struct sk_buff *skb;
+               int pkt_size = rx_size - 4;
+
+               DPRINTK ("%s:  rtl8139_rx() status %4.4x, size %4.4x,"
+                        " cur %4.4x.\n", dev->name, rx_status,
+                        rx_size, cur_rx);
+#if RTL8139_DEBUG > 2
+               {
+                       int i;
+                       DPRINTK ("%s: Frame contents ", dev->name);
+                       for (i = 0; i < 70; i++)
+                               printk (" %2.2x",
+                                       rx_ring[ring_offset + i]);
+                       printk (".\n");
+               }
+#endif
+
+               /* E. Gill */
+               /* Note from BSD driver:
+                * Here's a totally undocumented fact for you. When the
+                * RealTek chip is in the process of copying a packet into
+                * RAM for you, the length will be 0xfff0. If you spot a
+                * packet header with this value, you need to stop. The
+                * datasheet makes absolutely no mention of this and
+                * RealTek should be shot for this.
+                */
+               if (rx_size == 0xfff0)
+                       break;
+
+               /* if Rx err received, Rx process gets reset, so
+                * we abort any further Rx processing
+                */
+               if (rx_status &
+                   (RxBadSymbol | RxRunt | RxTooLong | RxCRCErr | RxBadAlign)) {
+                       rtl8139_rx_err (rx_status, dev, tp, ioaddr);
+                       return;
+               }
+
+               /* Malloc up new buffer, compatible with net-2e. */
+               /* Omit the four octet CRC from the length. */
+
+               /* TODO: consider allocating skb's outside of
+                * interrupt context, both to speed interrupt processing,
+                * and also to reduce the chances of having to
+                * drop packets here under memory pressure.
+                */
+
+               skb = dev_alloc_skb (pkt_size + 2);
+               if (skb == NULL) {
+                       printk (KERN_WARNING
+                               "%s: Memory squeeze, dropping packet.\n",
+                               dev->name);
+                       tp->stats.rx_dropped++;
+                       break;
+               }
+               skb->dev = dev;
+               skb_reserve (skb, 2);   /* 16 byte align the IP fields. */
+
+               eth_copy_and_sum (skb, &rx_ring[ring_offset + 4], pkt_size, 0);
+               skb_put (skb, pkt_size);
+
+               skb->protocol = eth_type_trans (skb, dev);
+               netif_rx (skb);
+               mark_bh(NET_BH);
+               tp->stats.rx_bytes += pkt_size ;
+               tp->stats.rx_packets++;
+
+               cur_rx = (cur_rx + rx_size + 4 + 3) & ~3;
+               RTL_W16_F (RxBufPtr, cur_rx - 16);
+       }
+
+       DPRINTK ("%s: Done rtl8139_rx(), current %4.4x BufAddr %4.4x,"
+               " free to %4.4x, Cmd %2.2x.\n", dev->name, cur_rx,
+               RTL_R16 (RxBufAddr),
+               RTL_R16 (RxBufPtr), RTL_R8 (ChipCmd));
+
+       tp->cur_rx = cur_rx;
+}
+
+
+static void rtl8139_weird_interrupt (struct device *dev,
+                                    struct rtl8139_private *tp,
+                                    void *ioaddr,
+                                    int status, int link_changed)
+{
+       printk (KERN_DEBUG "%s: Abnormal interrupt, status %8.8x.\n",
+               dev->name, status);
+                
+       assert (dev != NULL);
+       assert (tp != NULL);
+       assert (ioaddr != NULL);
+       
+       /* Update the error count. */
+       tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
+       RTL_W32 (RxMissed, 0);
+
+       if ((status & RxUnderrun) && link_changed &&
+           (tp->drv_flags & HAS_LNK_CHNG)) {
+               /* Really link-change on new chips. */
+               int lpar = RTL_R16 (NWayLPAR);
+               int duplex = (lpar & 0x0100) || (lpar & 0x01C0) == 0x0040
+                               || tp->duplex_lock;
+               if (tp->full_duplex != duplex) {
+                       tp->full_duplex = duplex;
+                       RTL_W8 (Cfg9346, Cfg9346_Unlock);
+                       RTL_W8 (Config1, tp->full_duplex ? 0x60 : 0x20);
+               }
+               status &= ~RxUnderrun;
+       }
+       if (status &
+           (RxUnderrun | RxOverflow | RxErr | RxFIFOOver))
+               tp->stats.rx_errors++;
+
+       if (status & (PCSTimeout))
+               tp->stats.rx_length_errors++;
+       if (status & (RxUnderrun | RxFIFOOver))
+               tp->stats.rx_fifo_errors++;
+       if (status & RxOverflow) {
+               tp->stats.rx_over_errors++;
+               tp->cur_rx = RTL_R16 (RxBufAddr) % RX_BUF_LEN;
+               RTL_W16_F (RxBufPtr, tp->cur_rx - 16);
+       }
+       if (status & PCIErr) {
+               u16 pci_cmd_status;
+               pci_read_config_word (tp->pci_dev, PCI_STATUS, &pci_cmd_status);
+
+               printk (KERN_ERR "%s: PCI Bus error %4.4x.\n",
+                       dev->name, pci_cmd_status);
+       }
+}
+
+
+/* The interrupt handler does all of the Rx thread work and cleans up
+   after the Tx thread. */
+static void rtl8139_interrupt (int irq, void *dev_instance,
+                              struct pt_regs *regs)
+{
+       struct device *dev = (struct device *) dev_instance;
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       int boguscnt = max_interrupt_work;
+       void *ioaddr = tp->mmio_addr;
+       int status = 0, link_changed = 0; /* avoid bogus "uninit" warning */
+
+       spin_lock (&tp->lock);
+       
+       do {
+               status = RTL_R16 (IntrStatus);
+
+               /* h/w no longer present (hotplug?) or major error, bail */
+               if (status == 0xFFFF)
+                       break;
+               
+               /* Acknowledge all of the current interrupt sources ASAP, but
+                  an first get an additional status bit from CSCR. */
+               if (status & RxUnderrun)
+                       link_changed = RTL_R16 (CSCR) & CSCR_LinkChangeBit;
+
+               /* E. Gill */
+               /* In case of an RxFIFOOver we must also clear the RxOverflow
+                  bit to avoid dropping frames for ever. Believe me, I got a
+                  lot of troubles copying huge data (approximately 2 RxFIFOOver
+                  errors per 1GB data transfer).
+                  The following is written in the 'p-guide.pdf' file (RTL8139(A/B)
+                  Programming guide V0.1, from 1999/1/15) on page 9 from REALTEC.
+                  -----------------------------------------------------------
+                  2. RxFIFOOvw handling:
+                    When RxFIFOOvw occurs, all incoming packets are discarded.
+                    Clear ISR(RxFIFOOvw) doesn't dismiss RxFIFOOvw event. To
+                    dismiss RxFIFOOvw event, the ISR(RxBufOvw) must be written
+                    with a '1'.
+                  -----------------------------------------------------------
+                  Unfortunately I was not able to find any reason for the
+                  RxFIFOOver error (I got the feeling this depends on the
+                  CPU speed, lower CPU speed --> more errors).
+                  After clearing the RxOverflow bit the transfer of the
+                  packet was repeated and all data are error free transfered */
+               RTL_W16_F (IntrStatus, (status & RxFIFOOver) ? (status | RxOverflow) : status);
+
+               DPRINTK ("%s: interrupt  status=%#4.4x new intstat=%#4.4x.\n",
+                               dev->name, status,
+                               RTL_R16 (IntrStatus));
+
+               if ((status & (PCIErr | PCSTimeout | RxUnderrun | RxOverflow
+                       | RxFIFOOver | TxErr | TxOK | RxErr | RxOK)) == 0)
+                       break;
+
+               /* Check uncommon events with one test. */
+               if (status & (PCIErr | PCSTimeout | RxUnderrun | RxOverflow |
+                             RxFIFOOver | TxErr | RxErr))
+                       rtl8139_weird_interrupt (dev, tp, ioaddr,
+                                                status, link_changed);
+
+               if (status & (RxOK | RxUnderrun | RxOverflow | RxFIFOOver))     /* Rx interrupt */
+                       rtl8139_rx_interrupt (dev, tp, ioaddr);
+
+               if (status & (TxOK | TxErr))
+                       rtl8139_tx_interrupt (dev, tp, ioaddr);
+
+               boguscnt--;
+       } while (boguscnt > 0);
+
+       if (boguscnt <= 0) {
+               printk (KERN_WARNING
+                       "%s: Too much work at interrupt, "
+                       "IntrStatus=0x%4.4x.\n", dev->name,
+                       status);
+
+               /* Clear all interrupt sources. */
+               RTL_W16 (IntrStatus, 0xffff);
+       }
+
+       spin_unlock (&tp->lock);
+       
+       DPRINTK ("%s: exiting interrupt, intr_status=%#4.4x.\n",
+                dev->name, RTL_R16 (IntrStatus));
+}
+
+
+static int rtl8139_close (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+       int i;
+       unsigned long flags;
+
+       DPRINTK ("ENTER\n");
+
+       netif_stop_queue (dev);
+       dev->start = 0;
+
+       DPRINTK ("%s: Shutting down ethercard, status was 0x%4.4x.\n",
+                       dev->name, RTL_R16 (IntrStatus));
+
+       del_timer (&tp->timer);
+       
+       spin_lock_irqsave (&tp->lock, flags);
+
+       /* Disable interrupts by clearing the interrupt mask. */
+       RTL_W16 (IntrMask, 0x0000);
+
+       /* Stop the chip's Tx and Rx DMA processes. */
+       RTL_W8 (ChipCmd, (RTL_R8 (ChipCmd) & ChipCmdClear));
+
+       /* Update the error counts. */
+       tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
+       RTL_W32 (RxMissed, 0);
+
+       spin_unlock_irqrestore (&tp->lock, flags);
+       
+       /* snooze for a small bit */
+       if (current->need_resched)
+               schedule ();
+
+       free_irq (dev->irq, dev);
+
+       for (i = 0; i < NUM_TX_DESC; i++) {
+               struct sk_buff *skb = tp->tx_info[i].skb;
+
+               if (skb) {
+                       dev_kfree_skb (skb);
+                       DPRINTK("PCI unmap?\n");
+               }
+               tp->tx_info[i].skb = NULL;
+       }
+
+       kfree(tp->rx_ring);
+       kfree(tp->tx_bufs);
+       tp->rx_ring = NULL;
+       tp->tx_bufs = NULL;
+
+       /* Green! Put the chip in low-power mode. */
+       RTL_W8 (Cfg9346, Cfg9346_Unlock);
+       RTL_W8 (Config1, 0x03);
+       RTL_W8 (HltClk, 'H');   /* 'R' would leave the clock running. */
+
+       MOD_DEC_USE_COUNT;
+
+       DPRINTK ("EXIT\n");
+       return 0;
+}
+
+
+static int mii_ioctl (struct device *dev, struct ifreq *rq, int cmd)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       u16 *data = (u16 *) & rq->ifr_data;
+       unsigned long flags;
+       int rc = 0;
+
+       DPRINTK ("ENTER\n");
+
+       switch (cmd) {
+       case SIOCDEVPRIVATE:    /* Get the address of the PHY in use. */
+               data[0] = tp->phys[0] & 0x3f;
+               /* Fall Through */
+
+       case SIOCDEVPRIVATE + 1:        /* Read the specified MII register. */
+               spin_lock_irqsave (&tp->lock, flags);
+               data[3] = mdio_read (dev, data[0], data[1] & 0x1f);
+               spin_unlock_irqrestore (&tp->lock, flags);
+               break;
+
+       case SIOCDEVPRIVATE + 2:        /* Write the specified MII register */
+               if (!capable (CAP_NET_ADMIN)) {
+                       rc = -EPERM;
+                       break;
+               }
+
+               spin_lock_irqsave (&tp->lock, flags);
+               mdio_write (dev, data[0], data[1] & 0x1f, data[2]);
+               spin_unlock_irqrestore (&tp->lock, flags);
+               break;
+
+       default:
+               rc = -EOPNOTSUPP;
+               break;
+       }
+
+       DPRINTK ("EXIT, returning %d\n", rc);
+       return rc;
+}
+
+
+static struct net_device_stats *rtl8139_get_stats (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+
+       DPRINTK ("ENTER\n");
+
+       assert (tp != NULL);
+
+       if (netif_running(dev)) {
+               unsigned long flags;
+
+               spin_lock_irqsave (&tp->lock, flags);
+
+               tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
+               RTL_W32 (RxMissed, 0);
+
+               spin_unlock_irqrestore (&tp->lock, flags);
+       }
+
+       DPRINTK ("EXIT\n");
+       return &tp->stats;
+}
+
+
+
+/* Set or clear the multicast filter for this adaptor.
+   This routine is not state sensitive and need not be SMP locked. */
+
+static unsigned const ethernet_polynomial = 0x04c11db7U;
+static inline u32 ether_crc (int length, unsigned char *data)
+{
+       int crc = -1;
+
+       DPRINTK ("ENTER\n");
+
+       while (--length >= 0) {
+               unsigned char current_octet = *data++;
+               int bit;
+               for (bit = 0; bit < 8; bit++, current_octet >>= 1)
+                       crc = (crc << 1) ^
+                           ((crc < 0) ^ (current_octet & 1) ?
+                            ethernet_polynomial : 0);
+       }
+
+       DPRINTK ("EXIT\n");
+       return crc;
+}
+
+
+static void rtl8139_set_rx_mode (struct device *dev)
+{
+       struct rtl8139_private *tp = (struct rtl8139_private *) dev->priv;
+       void *ioaddr = tp->mmio_addr;
+       u32 mc_filter[2];       /* Multicast hash filter */
+       int i, rx_mode;
+       u32 tmp;
+
+       DPRINTK ("ENTER\n");
+
+       DPRINTK ("%s:   rtl8139_set_rx_mode(%4.4x) done -- Rx config %8.8x.\n",
+                       dev->name, dev->flags, RTL_R32 (RxConfig));
+
+       /* Note: do not reorder, GCC is clever about common statements. */
+       if (dev->flags & IFF_PROMISC) {
+               /* Unconditionally log net taps. */
+               printk (KERN_NOTICE "%s: Promiscuous mode enabled.\n",
+                       dev->name);
+               rx_mode =
+                   AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
+                   AcceptAllPhys;
+               mc_filter[1] = mc_filter[0] = 0xffffffff;
+       } else if ((dev->mc_count > multicast_filter_limit)
+                  || (dev->flags & IFF_ALLMULTI)) {
+               /* Too many to filter perfectly -- accept all multicasts. */
+               rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
+               mc_filter[1] = mc_filter[0] = 0xffffffff;
+       } else {
+               struct dev_mc_list *mclist;
+               rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
+               mc_filter[1] = mc_filter[0] = 0;
+               for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
+                    i++, mclist = mclist->next)
+                       set_bit (ether_crc (ETH_ALEN, mclist->dmi_addr) >> 26,
+                                mc_filter);
+       }
+       
+       spin_lock_irq (&tp->lock);
+
+       /* We can safely update without stopping the chip. */
+       tmp = rtl8139_rx_config | rx_mode |
+               (RTL_R32 (RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
+       RTL_W32_F (RxConfig, tmp);
+       RTL_W32_F (MAR0 + 0, mc_filter[0]);
+       RTL_W32_F (MAR0 + 4, mc_filter[1]);
+
+       spin_unlock_irq (&tp->lock);
+
+       DPRINTK ("EXIT\n");
+}
+
+
+int rtl8139_init(void)
+{
+       struct pci_dev *pcidev;
+       struct pci_device_id *pdid;
+
+       if (rtl8139_initialized) return -ENODEV;
+       for (pdid=&rtl8139_pci_tbl[0]; pdid->vendor != 0; pdid++) {
+               for (pcidev = pci_find_device(pdid->vendor, pdid->device, NULL); pcidev != NULL; pcidev = pci_find_device(pdid->vendor, pdid->device, pcidev)) {
+                       if (rtl8139_init_one(pcidev, pdid) != 0) {
+                               printk(KERN_ERR "Error initializing PCI device %08lX.\n", (unsigned long) pcidev);
+                       }
+               }
+       }
+       rtl8139_initialized++;
+       return (rtl8139_device_count > 0 ? 0 : -ENODEV);
+}
+
+void rtl8139_cleanup(void)
+{
+       int i;
+       
+       for (i=0; i<rtl8139_device_count; i++) {
+               rtl8139_remove_one(rtl8139_device_tab[i]);
+       }
+       return;
+}
+
+/* ------------------------------------------------------------------------- */
+
+#ifdef MODULE
+
+MODULE_AUTHOR (RTL8139_AUTHOR);
+MODULE_DESCRIPTION ("RealTek RTL-8139 Fast Ethernet driver");
+MODULE_PARM (multicast_filter_limit, "i");
+MODULE_PARM (max_interrupt_work, "i");
+MODULE_PARM (debug, "i");
+MODULE_PARM (media, "1-" __MODULE_STRING(8) "i");
+
+int init_module(void)
+{
+       return rtl8139_init();
+}
+
+void cleanup_module(void)
+{
+       rtl8139_cleanup();
+       return;
+}
+
+#else
+
+int rtl8139too_probe(struct device *dev)
+{
+       return rtl8139_init();
+}
+
+#endif
index 3e3703a60e8b70ac04dba1f1421ff1db56679396..5a4c69613031749e3497ebfa3321f0bfdb2b4383 100644 (file)
@@ -100,6 +100,9 @@ if [ "$CONFIG_NET_ETHERNET" = "y" ]; then
   if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
       tristate 'RealTek 8129/8139 (not 8019/8029!) support' CONFIG_RTL8139
   fi
+  if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+      tristate 'RealTek 8139too driver support' CONFIG_RTL8139TOO
+  fi
   bool 'Other ISA cards' CONFIG_NET_ISA
   if [ "$CONFIG_NET_ISA" = "y" ]; then
     tristate 'AT1700/1720 support (EXPERIMENTAL)' CONFIG_AT1700
index f9eb80c9894700c4db7acfc7547009e8aedf85b7..f077ac82ad6800d9c74b3611ce5a3871d45219a2 100644 (file)
@@ -580,6 +580,14 @@ else
   endif
 endif
 
+ifeq ($(CONFIG_RTL8139TOO),y)
+L_OBJS += 8139too.o
+else
+  ifeq ($(CONFIG_RTL8139TOO),m)
+  M_OBJS += 8139too.o
+  endif
+endif
+
 ifeq ($(CONFIG_SIS900),y)
 L_OBJS += sis900.o
 else
index 4249d0fa4c0c8b277a7d1dcc81def77cef226ad0..229c1d26f877948b2014d536ea70acf7ef5225a3 100644 (file)
@@ -115,6 +115,7 @@ extern int etherh_probe (struct device *dev);
 extern int am79c961_probe(struct device *dev);
 extern int epic100_probe(struct device *dev);
 extern int rtl8139_probe(struct device *dev);
+extern int rtl8139too_probe(struct device *dev);
 extern int sis900_probe(struct device *dev);
 extern int hplance_probe(struct device *dev);
 extern int bagetlance_probe(struct device *);
@@ -250,6 +251,9 @@ struct devprobe pci_probes[] __initdata = {
 #ifdef CONFIG_RTL8139
        {rtl8139_probe, 0},
 #endif
+#ifdef CONFIG_RTL8139TOO
+       {rtl8139too_probe, 0},
+#endif
 #ifdef CONFIG_SIS900
        {sis900_probe, 0},
 #endif
index a8d6c7d524c6973f49fbc7de3047ccc76acd3d8b..08f04746b3e53bc13f18e009f78ac215fb247039 100644 (file)
@@ -316,6 +316,12 @@ static struct pcnet32_pci_id_info pcnet32_tbl[] = {
        PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE, 0x1014, 0x2000,
        PCI_USES_IO|PCI_USES_MASTER, PCNET32_TOTAL_SIZE,
        pcnet32_probe1},
+    /* Someone apparently got their vendor id wrong ..
+       reported in an IBM box */
+    { "AMD PCnetPCI series (IBM)",
+       0x1023, 0x2000, 0, 0,
+       PCI_USES_IO|PCI_USES_MASTER, PCNET32_TOTAL_SIZE,
+       pcnet32_probe1},
     { "AMD PCnetHome series",
        PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_PCNETHOME, 0, 0,
        PCI_USES_IO|PCI_USES_MASTER, PCNET32_TOTAL_SIZE,
index 6c0e485774b39b7330bad394113234f154c74bd5..6ed796962939e695b1aa20bcecb5a1684ed0603c 100644 (file)
@@ -111,7 +111,7 @@ static const int multicast_filter_limit = 32;
 #define RUN_AT(x) (jiffies + (x))
 
 #if (LINUX_VERSION_CODE >= 0x20100)
-char kernel_version[] = UTS_RELEASE;
+static char kernel_version[] = UTS_RELEASE;
 #else
 #ifndef __alpha__
 #define ioremap vremap
index 8ca0e7934d0396f9ebe982d9aa283b1ec6ce03aa..ec72462443e2de25eaa469ffb7b1bb2184e662f1 100644 (file)
@@ -146,7 +146,7 @@ MODULE_PARM_DESC(testpat, "Replace image with vertical bar testpattern (only par
 MODULE_AUTHOR("Mark McClelland <mwm@i.am> & Bret Wallach & Orion Sky Lawlor <olawlor@acm.org> & Kevin Moore & Charl P. Botha <cpbotha@ieee.org> & Claudio Matsuoka <claudio@conectiva.com>");
 MODULE_DESCRIPTION("OV511 USB Camera Driver");
 
-char kernel_version[] = UTS_RELEASE;
+static char kernel_version[] = UTS_RELEASE;
 
 static struct usb_driver ov511_driver;
 
index 65af8e0be548fbc1fd96316acaf9f5ddb3b6e61f..e09ee5b2839d17892a129229de942e951c56c84e 100644 (file)
@@ -72,7 +72,7 @@ typedef struct {
 #define spin_unlock_wait(x)    do {unsigned long __spinflags; save_flags(__spinflags); cli(); if ((x)->lock&&(x)->babble) {printk("%s:%d: spin_unlock_wait(%s:%p) deadlock\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} restore_flags(__spinflags);} while (0)
 #define spin_unlock(x)         do {unsigned long __spinflags; save_flags(__spinflags); cli(); if (!(x)->lock&&(x)->babble) {printk("%s:%d: spin_unlock(%s:%p) not locked\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} (x)->lock = 0; restore_flags(__spinflags);} while (0)
 #define spin_lock_irq(x)       do {cli(); if ((x)->lock&&(x)->babble) {printk("%s:%d: spin_lock_irq(%s:%p) already locked\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} (x)->lock = 1;} while (0)
-#define spin_unlock_irq(x)     do {cli(); if (!(x)->lock&&(x)->babble) {printk("%s:%d: spin_lock(%s:%p) not locked\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} (x)->lock = 0; sti();} while (0)
+#define spin_unlock_irq(x)     do {cli(); if (!(x)->lock&&(x)->babble) {printk("%s:%d: spin_unlock_irq(%s:%p) not locked\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} (x)->lock = 0; sti();} while (0)
 
 #define spin_lock_irqsave(x,flags)      do {save_flags(flags); cli(); if ((x)->lock&&(x)->babble) {printk("%s:%d: spin_lock_irqsave(%s:%p) already locked\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} (x)->lock = 1;} while (0)
 #define spin_unlock_irqrestore(x,flags) do {cli(); if (!(x)->lock&&(x)->babble) {printk("%s:%d: spin_unlock_irqrestore(%s:%p) not locked\n", __BASE_FILE__,__LINE__, (x)->module, (x));(x)->babble--;} (x)->lock = 0; restore_flags(flags);} while (0)
index ccc61d5abb4134538a11cda143e9e9228cc1d215..93f10b70f26634cb4eedaac6652783d553ed89eb 100644 (file)
@@ -2455,7 +2455,7 @@ __initfunc(int brg_probe(struct device *dev))
 
        /* Set up MAC address based on BogoMIPs figure for first CPU and time
         */ 
-       bogomips = (loops_per_sec+2500)/500000 ;
+       bogomips = (loops_per_jiffy+2500)/500000/HZ ;
        get_fast_time(&utime);
 
        /* Ummmm....  YES! */
diff --git a/scripts/kwhich b/scripts/kwhich
new file mode 100644 (file)
index 0000000..032989c
--- /dev/null
@@ -0,0 +1,24 @@
+# kwhich 1.0 (C) 2000 Miquel van Smoorenburg
+# This program is GPLed
+
+if [ $# -lt 1 ]
+then
+        echo "Usage: $0 cmd [cmd..]" >&2
+        exit 1
+fi
+
+IFS=:
+for cmd in $*
+do
+        for path in $PATH
+        do
+                if [ -x "$path/$cmd" ]
+                then
+                        echo "$path/$cmd"
+                        exit 0
+                fi
+        done
+done
+
+echo "$*: not found" >&2
+exit 1