]> git.neil.brown.name Git - history.git/commitdiff
Linux 2.2.13pre9 2.2.13pre9
authorAlan Cox <alan@lxorguk.ukuu.org.uk>
Fri, 23 Nov 2007 20:19:50 +0000 (15:19 -0500)
committerAlan Cox <alan@lxorguk.ukuu.org.uk>
Fri, 23 Nov 2007 20:19:50 +0000 (15:19 -0500)
o Make shmall configurable (Henrik Nordstrom)
| + fixed a couple of bugs
o Amateur radio update (Tomi Manninen)
o Tlan unloads if it finds no cards (Christian Holtje)
o ISOfs fix (Todd Sabin)
o Fix Amiga RDSK parsing (Benny)
o Fix signal delivery hole (Alan Cox)
o Davicom D9102 driver (Sten Wang, Davicom)
o Strlen_user fix (Ivan Kokshaysky)
| I still strongly recommend you don't use gcc 2.95 to
| build 2.2.13 kernels. There are 3 or 4 reports now of 'random
  | crash' that went away with older compilers.
o Hopefully fixed the 3c527 properly  (Alan Cox)

24 files changed:
Documentation/Configure.help
Makefile
arch/i386/lib/usercopy.c
drivers/block/genhd.c
drivers/char/serial.c
drivers/net/3c527.c
drivers/net/Config.in
drivers/net/Makefile
drivers/net/Space.c
drivers/net/dmfe.c [new file with mode: 0644]
drivers/net/irda/Makefile
drivers/net/ppp.c
drivers/net/slip.c
drivers/net/tlan.c
fs/isofs/inode.c
include/linux/sysctl.h
include/net/irda/dongle.h
ipc/shm.c
kernel/exit.c
kernel/sysctl.c
net/ax25/af_ax25.c
net/ax25/ax25_timer.c
net/netrom/nr_loopback.c
net/rose/af_rose.c

index b26c2707dc60577477be230a3655cb3dff6063a4..0290172a39a72b1cc17bcf217b54c02f1e42613b 100644 (file)
@@ -5729,6 +5729,18 @@ CONFIG_NE2K_PCI
   module, say M here and read Documentation/modules.txt as well as
   Documentation/networking/net-modules.txt.
 
+PCI DM9102 support
+CONFIG_DM9102
+  This driver is for DM9102 compatible PCI cards from Davicom 
+  (http://www.davicom.com.tw) 
+  If you have a PCI DM9102 network (Ethernet) card, say Y.
+
+  This driver is also available as a module ( = code which can be
+  inserted in and removed from the running kernel whenever you want).
+  The module will be called dmfe.o. If you want to compile it as a
+  module, say M here and read Documentation/modules.txt as well as
+  Documentation/networking/net-modules.txt.
+
 Racal-Interlan (Micom) NI cards
 CONFIG_NET_VENDOR_RACAL
   If you have a network (Ethernet) card belonging to this class, such
index 98d612d94951ddfb9ff804e1e8b901d904335b59..c355ff17c25bf95697527fd0fd65adc5ca41dd37 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 VERSION = 2
 PATCHLEVEL = 2
 SUBLEVEL = 13
-EXTRAVERSION = pre8
+EXTRAVERSION = pre9
 
 ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/)
 
index e2fe4aad24c0a186ce3b5dc40fe3aa2a652f16e5..e1bd37a412ab41d8459a2c3a712c641e20efb977 100644 (file)
@@ -123,7 +123,7 @@ __clear_user(void *to, unsigned long n)
 long strnlen_user(const char *s, long n)
 {
        unsigned long mask = -__addr_ok(s);
-       unsigned long res;
+       unsigned long res, tmp;
 
        __asm__ __volatile__(
                "       andl %0,%%ecx\n"
@@ -140,8 +140,8 @@ long strnlen_user(const char *s, long n)
                "       .align 4\n"
                "       .long 0b,2b\n"
                ".previous"
-               :"=r" (n), "=D" (s), "=a" (res)
-               :"0" (n), "1" (s), "2" (0), "c" (mask)
-               :"cx", "cc");
+               :"=r" (n), "=D" (s), "=a" (res), "=c" (tmp)
+               :"0" (n), "1" (s), "2" (0), "3" (mask)
+               :"cc");
        return res & mask;
 }
index c0cb2f8e91cd1bd3cf08a3f0a3ee9b71ad381e72..63dba9e5db415bfab359c581304144f7e105a2db 100644 (file)
@@ -901,7 +901,7 @@ checksum_block(u32 *m, int size)
        u32 sum = 0;
 
        while (size--)
-               sum += htonl(*m++);
+               sum += be32_to_cpu(*m++);
        return sum;
 }
 
@@ -933,15 +933,15 @@ amiga_partition(struct gendisk *hd, kdev_t dev, unsigned long first_sector)
                               kdevname(dev),blk);
                        goto rdb_done;
                }
-               if (*(u32 *)bh->b_data == htonl(IDNAME_RIGIDDISK)) {
+               if (*(u32 *)bh->b_data == cpu_to_be32(IDNAME_RIGIDDISK)) {
                        rdb = (struct RigidDiskBlock *)bh->b_data;
-                       if (checksum_block((u32 *)bh->b_data,htonl(rdb->rdb_SummedLongs) & 0x7F)) {
+                       if (checksum_block((u32 *)bh->b_data,be32_to_cpu(rdb->rdb_SummedLongs) & 0x7F)) {
                                /* Try again with 0xdc..0xdf zeroed, Windows might have
                                 * trashed it.
                                 */
                                *(u32 *)(&bh->b_data[0xdc]) = 0;
                                if (checksum_block((u32 *)bh->b_data,
-                                               htonl(rdb->rdb_SummedLongs) & 0x7F)) {
+                                               be32_to_cpu(rdb->rdb_SummedLongs) & 0x7F)) {
                                        brelse(bh);
                                        printk("Dev %s: RDB in block %d has bad checksum\n",
                                               kdevname(dev),blk);
@@ -951,7 +951,7 @@ amiga_partition(struct gendisk *hd, kdev_t dev, unsigned long first_sector)
                                        "ignored in checksum calculation\n",blk);
                        }
                        printk(" RDSK");
-                       blk = htonl(rdb->rdb_PartitionList);
+                       blk = be32_to_cpu(rdb->rdb_PartitionList);
                        brelse(bh);
                        for (part = 1; blk > 0 && part <= 16; part++) {
                                if (!(bh = bread(dev,blk,blocksize))) {
@@ -960,22 +960,22 @@ amiga_partition(struct gendisk *hd, kdev_t dev, unsigned long first_sector)
                                        goto rdb_done;
                                }
                                pb  = (struct PartitionBlock *)bh->b_data;
-                               blk = htonl(pb->pb_Next);
-                               if (pb->pb_ID == htonl(IDNAME_PARTITION) && checksum_block(
-                                   (u32 *)pb,htonl(pb->pb_SummedLongs) & 0x7F) == 0 ) {
+                               blk = be32_to_cpu(pb->pb_Next);
+                               if (pb->pb_ID == cpu_to_be32(IDNAME_PARTITION) && checksum_block(
+                                   (u32 *)pb,be32_to_cpu(pb->pb_SummedLongs) & 0x7F) == 0 ) {
 
                                        /* Tell Kernel about it */
 
-                                       if (!(nr_sects = (htonl(pb->pb_Environment[10]) + 1 -
-                                                         htonl(pb->pb_Environment[9])) *
-                                                        htonl(pb->pb_Environment[3]) *
-                                                        htonl(pb->pb_Environment[5]))) {
+                                       if (!(nr_sects = (be32_to_cpu(pb->pb_Environment[10]) + 1 -
+                                                         be32_to_cpu(pb->pb_Environment[9])) *
+                                                        be32_to_cpu(pb->pb_Environment[3]) *
+                                                        be32_to_cpu(pb->pb_Environment[5]))) {
                                                brelse(bh);
                                                continue;
                                        }
-                                       start_sect = htonl(pb->pb_Environment[9]) *
-                                                    htonl(pb->pb_Environment[3]) *
-                                                    htonl(pb->pb_Environment[5]);
+                                       start_sect = be32_to_cpu(pb->pb_Environment[9]) *
+                                                    be32_to_cpu(pb->pb_Environment[3]) *
+                                                    be32_to_cpu(pb->pb_Environment[5]);
                                        add_partition(hd,current_minor,
                                                        start_sect,nr_sects,0);
                                        current_minor++;
@@ -984,6 +984,7 @@ amiga_partition(struct gendisk *hd, kdev_t dev, unsigned long first_sector)
                                brelse(bh);
                        }
                        printk("\n");
+                       break;
                }
                else
                        brelse(bh);
index 1bf31d626b61e5d64b7fc3e7c2e7e99c15d8ea44..5754c221ac078c2b9f1d87e6cd1284c78d2feb96 100644 (file)
@@ -2782,7 +2782,7 @@ int rs_read_proc(char *page, char **start, off_t off, int count,
        off_t   begin = 0;
 
        len += sprintf(page, "serinfo:1.0 driver:%s\n", serial_version);
-       for (i = 0; i < NR_PORTS && len < 4000; i++) {
+       for (i = 0; i < NR_PORTS && len < 3900; i++) {
                l = line_info(page + len, &rs_table[i]);
                len += l;
                if (len+begin > off+count)
index 15c207f651b4d0ebd2c965ee1f05da6299396caa..bfe7f9af9c70f75f428c5f21749ea12e21195218 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 static const char *version =
-       "3c527.c:v0.05 1999/09/06 Alan Cox (alan@redhat.com)\n";
+       "3c527.c:v0.06 1999/09/16 Alan Cox (alan@redhat.com)\n";
 
 /*
  *     Things you need
@@ -138,7 +138,7 @@ static int  mc32_open(struct device *dev);
 static int     mc32_send_packet(struct sk_buff *skb, struct device *dev);
 static void    mc32_interrupt(int irq, void *dev_id, struct pt_regs *regs);
 static int     mc32_close(struct device *dev);
-static struct  device_stats *mc32_get_stats(struct device *dev);
+static struct  net_device_stats *mc32_get_stats(struct device *dev);
 static void    mc32_set_multicast_list(struct device *dev);
 static void    mc32_reset_multicast_list(struct device *dev);
 
@@ -445,7 +445,20 @@ static void mc32_ring_poll(struct device *dev)
 
 
 /*
- *     Send exec commands
+ *     Send exec commands. This requires a bit of explaining.
+ *
+ *     You feed the card a command, you wait, it interrupts you get a 
+ *     reply. All well and good. The complication arises because you use
+ *     commands for filter list changes which come in at bh level from things
+ *     like IPV6 group stuff.
+ *
+ *     We have a simple state machine
+ *
+ *     0       - nothing issued
+ *     1       - command issued, wait reply
+ *     2       - reply waiting - reader then goes to state 0
+ *     3       - command issued, trash reply. In which case the irq
+ *               takes it back to state 0
  */
  
 
@@ -461,7 +474,7 @@ static int mc32_command_nowait(struct device *dev, u16 cmd, void *data, int len)
        if(lp->exec_pending)
                return -1;
                
-       lp->exec_pending=1;
+       lp->exec_pending=3;
        lp->exec_box->mbox=0;
        lp->exec_box->mbox=cmd;
        memcpy((void *)lp->exec_box->data, data, len);
@@ -490,6 +503,9 @@ static int mc32_command(struct device *dev, u16 cmd, void *data, int len)
         *      Wait for a command
         */
         
+       save_flags(flags);
+       cli();
+        
        while(lp->exec_pending)
                sleep_on(&lp->event);
                
@@ -498,6 +514,9 @@ static int mc32_command(struct device *dev, u16 cmd, void *data, int len)
         */
 
        lp->exec_pending=1;
+       
+       restore_flags(flags);
+       
        lp->exec_box->mbox=0;
        lp->exec_box->mbox=cmd;
        memcpy((void *)lp->exec_box->data, data, len);
@@ -824,6 +843,10 @@ static int mc32_send_packet(struct sk_buff *skb, struct device *dev)
                wmb();
                
                np->length      = skb->len;
+
+               if(np->length < 60)
+                       np->length = 60;
+                       
                np->data        = virt_to_bus(skb->data);
                np->status      = 0;
                np->control     = (1<<7)|(1<<6);        /* EOP EOL */
@@ -1013,8 +1036,11 @@ static void mc32_interrupt(int irq, void *dev_id, struct pt_regs * regs)
                status>>=3;
                if(status&1)
                {
-                       /* 0=no 1=yes 2=reply clearing */
-                       lp->exec_pending=2;
+                       /* 0=no 1=yes 2=replied, get cmd, 3 = wait reply & dump it */
+                       if(lp->exec_pending!=3)
+                               lp->exec_pending=2;
+                       else
+                               lp->exec_pending=0;
                        wake_up(&lp->event);
                }
                if(status&2)
@@ -1094,7 +1120,7 @@ static int mc32_close(struct device *dev)
  * This may be called with the card open or closed.
  */
 
-static struct device_stats *mc32_get_stats(struct device *dev)
+static struct net_device_stats *mc32_get_stats(struct device *dev)
 {
        struct mc32_local *lp = (struct mc32_local *)dev->priv;
        return &lp->net_stats;
index 95a0bf762c9a7b8e58b2f68b3d6e7aa33ecc980d..61716407532aa5b13712587e25762583da38e19c 100644 (file)
@@ -131,6 +131,7 @@ if [ "$CONFIG_NET_ETHERNET" = "y" ]; then
 
     tristate 'Apricot Xen-II on board Ethernet' CONFIG_APRICOT
     tristate 'CS89x0 support' CONFIG_CS89x0
+    tristate 'DM9102 PCI Fast Ethernet Adapter support (EXPERIMENTAL)' CONFIG_DM9102
     tristate 'Generic DECchip & DIGITAL EtherWORKS PCI/EISA' CONFIG_DE4X5
     tristate 'DECchip Tulip (dc21x4x) PCI support' CONFIG_DEC_ELCP
     tristate 'Digi Intl. RightSwitch SE-X support' CONFIG_DGRS
index a8032e14b0b1c2e2df18af86bf2b9815b8b79cec..c5853d2fce9973a548f0430e23a4b1ae618625a9 100644 (file)
@@ -574,6 +574,15 @@ else
   endif
 endif
 
+ifeq ($(CONFIG_DM9102),y) 
+L_OBJS += dmfe.o
+else
+  ifeq ($(CONFIG_DM9102),m)
+  M_OBJS += dmfe.o
+  endif
+endif
+
+
 ifeq ($(CONFIG_YELLOWFIN),y)
 L_OBJS += yellowfin.o
 else
index f2b8d548c137ec77988fd5616b6f3e1ec2555a61..ee57d82fdd11c3ca6c9eb196bfe004468bf8dda7 100644 (file)
@@ -215,6 +215,11 @@ struct devprobe pci_probes[] __initdata = {
 #ifdef CONFIG_SIS900
        {sis900_probe, 0},
 #endif
+
+#ifdef CONFIG_DM9102
+       {dmfe_reg_board, 0}, 
+#endif
+
 #ifdef CONFIG_YELLOWFIN
        {yellowfin_probe, 0},
 #endif
diff --git a/drivers/net/dmfe.c b/drivers/net/dmfe.c
new file mode 100644 (file)
index 0000000..a037b29
--- /dev/null
@@ -0,0 +1,1531 @@
+/*
+   dmfe.c: Version 1.26
+
+   A Davicom DM9102 fast ethernet driver for Linux. 
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation, version 1.
+
+   Compiler command:
+   "gcc -DMODULE -D__KERNEL__ -I/usr/src/linux/net/inet -Wall 
+               -Wstrict-prototypes -O6 -c dmfe.c"
+
+   The following steps teach you how to active DM9102 board:
+   1. Used the upper compiler command to compile dmfe.c
+   2. insert dmfe module into kernel
+   "insmod dmfe"        ;;Auto Detection Mode
+   "insmod dmfe mode=0" ;;Force 10M Half Duplex
+   "insmod dmfe mode=1" ;;Force 100M Half Duplex
+   "insmod dmfe mode=4" ;;Force 10M Full Duplex
+   "insmod dmfe mode=5" ;;Force 100M Full Duplex
+   3. config a dm9102 network interface
+   "ifconfig eth0 172.22.3.18"
+   4. active the IP routing table
+   "route add -net 172.22.3.0 eth0"
+   5. Well done. Your DM9102 adapter actived now.
+
+   Author: Sten Wang, E-mail: sten_wang@davicom.com.tw
+
+   Date:   10/28,1998
+
+   (C)Copyright 1997-1998 DAVICOM Semiconductor, Inc. All Rights Reserved.
+
+   Marcelo Tosatti <marcelo@conectiva.com.br> : 
+   Made it compile in 2.3 (device to net_device)
+   
+   Alan Cox <alan@redhat.com> :
+   Removed the back compatibility support
+   Reformatted, fixing spelling etc as I went
+   Removed IRQ 0-15 assumption
+   
+   TODO
+   
+   Check and fix on 64bit and big endian boxes.
+   Sort out the PCI latency.
+   
+ */
+
+#include <linux/config.h>
+#ifdef MODULE
+#ifdef MODVERSIONS
+#include <linux/modversions.h>
+#endif
+#include <linux/module.h>
+#include <linux/version.h>
+#else
+#define MOD_INC_USE_COUNT
+#define MOD_DEC_USE_COUNT
+#endif
+
+#include <linux/kernel.h>
+#include <linux/sched.h>
+#include <linux/string.h>
+#include <linux/timer.h>
+#include <linux/ptrace.h>
+#include <linux/errno.h>
+#include <linux/ioport.h>
+#include <linux/malloc.h>
+#include <linux/interrupt.h>
+#include <linux/pci.h>
+
+#if LINUX_VERSION_CODE < 0x20155
+#include <linux/bios32.h>
+#endif
+
+#include <linux/delay.h>
+#include <asm/processor.h>
+#include <asm/bitops.h>
+#include <asm/io.h>
+#include <asm/dma.h>
+
+#include <linux/netdevice.h>
+#include <linux/etherdevice.h>
+#include <linux/skbuff.h>
+
+
+/* Board/System/Debug information/definition ---------------- */
+#define PCI_DM9102_ID   0x91021282     /* Davicom DM9102 ID */
+#define PCI_DM9100_ID   0x91001282     /* Davicom DM9100 ID */
+
+#define DMFE_SUCC       0
+#define DM9102_IO_SIZE  0x80
+#define TX_FREE_DESC_CNT 0x1   /* Tx packet count */
+#define TX_DESC_CNT     0x10   /* Allocated Tx descriptors */
+#define RX_DESC_CNT     0x10   /* Allocated Rx descriptors */
+#define DESC_ALL_CNT    TX_DESC_CNT+RX_DESC_CNT
+#define TX_BUF_ALLOC    0x600
+#define RX_ALLOC_SIZE   0x620
+#define DM910X_RESET    1
+#define CR6_DEFAULT     0x002c0000     /* SF, MII, HD */
+#define CR7_DEFAULT     0x1a2cd
+#define CR15_DEFAULT    0x06   /* TxJabber RxWatchdog */
+#define TDES0_ERR_MASK  0x4302 /* TXJT, LC, EC, FUE */
+#define MAX_PACKET_SIZE 1514
+#define DMFE_MAX_MULTICAST 14
+#define RX_MAX_TRAFFIC 0x5000
+#define MAX_CHECK_PACKET 0x8000
+
+#define DMFE_10MHF      0
+#define DMFE_100MHF     1
+#define DMFE_10MFD      4
+#define DMFE_100MFD     5
+#define DMFE_AUTO       8
+
+#define DMFE_TIMER_WUT  jiffies+HZ*1   /* timer wakeup time : 1 second */
+#define DMFE_TX_TIMEOUT HZ*2   /* tx packet time-out time */
+
+#define DMFE_DBUG(dbug_now, msg, vaule) if (dmfe_debug || dbug_now) printk("DBUG: %s %x\n", msg, vaule)
+
+#define DELAY_5US udelay(5)    /* udelay scale 1 usec */
+
+#define DELAY_1US udelay(1)    /* udelay scale 1 usec */
+
+#define SHOW_MEDIA_TYPE(mode) printk("\n<WARN> Change Speed to %sMhz %s duplex\n",mode & 1 ?"100":"10", mode & 4 ? "full":"half");
+
+
+/* CR9 definition: SROM/MII */
+#define CR9_SROM_READ   0x4800
+#define CR9_SRCS        0x1
+#define CR9_SRCLK       0x2
+#define CR9_CRDOUT      0x8
+#define SROM_DATA_0     0x0
+#define SROM_DATA_1     0x4
+#define PHY_DATA_1      0x20000
+#define PHY_DATA_0      0x00000
+#define MDCLKH          0x10000
+
+#define SROM_CLK_WRITE(data, ioaddr) outl(data|CR9_SROM_READ|CR9_SRCS,ioaddr);DELAY_5US;outl(data|CR9_SROM_READ|CR9_SRCS|CR9_SRCLK,ioaddr);DELAY_5US;outl(data|CR9_SROM_READ|CR9_SRCS,ioaddr);DELAY_5US;
+
+#if LINUX_VERSION_CODE < 0x20123
+#define test_and_set_bit(val, addr) set_bit(val, addr)
+#endif
+
+/* Structure/enum declaration ------------------------------- */
+struct tx_desc {
+       u32 tdes0, tdes1, tdes2, tdes3;
+       u32 tx_skb_ptr;
+       u32 tx_buf_ptr;
+       u32 next_tx_desc;
+       u32 reserved;
+};
+
+struct rx_desc {
+       u32 rdes0, rdes1, rdes2, rdes3;
+       u32 rx_skb_ptr;
+       u32 rx_buf_ptr;
+       u32 next_rx_desc;
+       u32 reserved;
+};
+
+struct dmfe_board_info {
+       u32 chip_id;            /* Chip vendor/Device ID */
+       u32 chip_revesion;      /* Chip revesion */
+       struct device *next_dev;        /* next device */
+
+       struct pci_dev *net_dev;        /* PCI device */
+
+       u32 ioaddr;             /* I/O base address */
+       u32 cr5_data;
+       u32 cr6_data;
+       u32 cr7_data;
+       u32 cr15_data;
+
+/* descriptor pointer */
+       unsigned char *buf_pool_ptr;    /* Tx buffer pool memory */
+       unsigned char *buf_pool_start;  /* Tx buffer pool align dword */
+       unsigned char *desc_pool_ptr;   /* descriptor pool memory */
+       struct tx_desc *first_tx_desc;
+       struct tx_desc *tx_insert_ptr;
+       struct tx_desc *tx_remove_ptr;
+       struct rx_desc *first_rx_desc;
+       struct rx_desc *rx_insert_ptr;
+       struct rx_desc *rx_ready_ptr;   /* packet come pointer */
+       u32 tx_packet_cnt;      /* transmitted packet count */
+       u32 rx_avail_cnt;       /* available rx descriptor count */
+       u32 interval_rx_cnt;    /* rx packet count a callback time */
+
+       u8 media_mode;          /* user specify media mode */
+       u8 op_mode;             /* real work media mode */
+       u8 phy_addr;
+       u8 link_failed;         /* Ever link failed */
+       u8 wait_reset;          /* Hardware failed, need to reset */
+       u8 in_reset_state;      /* Now driver in reset routine */
+       u8 rx_error_cnt;        /* recievd abnormal case count */
+       u8 dm910x_chk_mode;     /* Operating mode check */
+       struct timer_list timer;
+       struct enet_statistics stats;   /* statistic counter */
+       unsigned char srom[128];
+};
+
+enum dmfe_offsets {
+       DCR0 = 0, DCR1 = 0x08, DCR2 = 0x10, DCR3 = 0x18, DCR4 = 0x20, DCR5 = 0x28,
+       DCR6 = 0x30, DCR7 = 0x38, DCR8 = 0x40, DCR9 = 0x48, DCR10 = 0x50, DCR11 = 0x58,
+       DCR12 = 0x60, DCR13 = 0x68, DCR14 = 0x70, DCR15 = 0x78
+};
+
+enum dmfe_CR6_bits {
+       CR6_RXSC = 0x2, CR6_PBF = 0x8, CR6_PM = 0x40, CR6_PAM = 0x80, CR6_FDM = 0x200,
+       CR6_TXSC = 0x2000, CR6_STI = 0x100000, CR6_SFT = 0x200000, CR6_RXA = 0x40000000
+};
+
+/* Global variable declaration ----------------------------- */
+
+static int dmfe_debug = 0;
+static unsigned char dmfe_media_mode = 8;
+static struct device *dmfe_root_dev = NULL;            /* First device */
+static u32 dmfe_cr6_user_set = 0;
+
+/* For module input parameter */
+static int debug = 0;
+static u32 cr6set = 0;
+static unsigned char mode = 8;
+static u8 chkmode = 1;
+
+unsigned long CrcTable[256] =
+{
+       0x00000000L, 0x77073096L, 0xEE0E612CL, 0x990951BAL,
+       0x076DC419L, 0x706AF48FL, 0xE963A535L, 0x9E6495A3L,
+       0x0EDB8832L, 0x79DCB8A4L, 0xE0D5E91EL, 0x97D2D988L,
+       0x09B64C2BL, 0x7EB17CBDL, 0xE7B82D07L, 0x90BF1D91L,
+       0x1DB71064L, 0x6AB020F2L, 0xF3B97148L, 0x84BE41DEL,
+       0x1ADAD47DL, 0x6DDDE4EBL, 0xF4D4B551L, 0x83D385C7L,
+       0x136C9856L, 0x646BA8C0L, 0xFD62F97AL, 0x8A65C9ECL,
+       0x14015C4FL, 0x63066CD9L, 0xFA0F3D63L, 0x8D080DF5L,
+       0x3B6E20C8L, 0x4C69105EL, 0xD56041E4L, 0xA2677172L,
+       0x3C03E4D1L, 0x4B04D447L, 0xD20D85FDL, 0xA50AB56BL,
+       0x35B5A8FAL, 0x42B2986CL, 0xDBBBC9D6L, 0xACBCF940L,
+       0x32D86CE3L, 0x45DF5C75L, 0xDCD60DCFL, 0xABD13D59L,
+       0x26D930ACL, 0x51DE003AL, 0xC8D75180L, 0xBFD06116L,
+       0x21B4F4B5L, 0x56B3C423L, 0xCFBA9599L, 0xB8BDA50FL,
+       0x2802B89EL, 0x5F058808L, 0xC60CD9B2L, 0xB10BE924L,
+       0x2F6F7C87L, 0x58684C11L, 0xC1611DABL, 0xB6662D3DL,
+       0x76DC4190L, 0x01DB7106L, 0x98D220BCL, 0xEFD5102AL,
+       0x71B18589L, 0x06B6B51FL, 0x9FBFE4A5L, 0xE8B8D433L,
+       0x7807C9A2L, 0x0F00F934L, 0x9609A88EL, 0xE10E9818L,
+       0x7F6A0DBBL, 0x086D3D2DL, 0x91646C97L, 0xE6635C01L,
+       0x6B6B51F4L, 0x1C6C6162L, 0x856530D8L, 0xF262004EL,
+       0x6C0695EDL, 0x1B01A57BL, 0x8208F4C1L, 0xF50FC457L,
+       0x65B0D9C6L, 0x12B7E950L, 0x8BBEB8EAL, 0xFCB9887CL,
+       0x62DD1DDFL, 0x15DA2D49L, 0x8CD37CF3L, 0xFBD44C65L,
+       0x4DB26158L, 0x3AB551CEL, 0xA3BC0074L, 0xD4BB30E2L,
+       0x4ADFA541L, 0x3DD895D7L, 0xA4D1C46DL, 0xD3D6F4FBL,
+       0x4369E96AL, 0x346ED9FCL, 0xAD678846L, 0xDA60B8D0L,
+       0x44042D73L, 0x33031DE5L, 0xAA0A4C5FL, 0xDD0D7CC9L,
+       0x5005713CL, 0x270241AAL, 0xBE0B1010L, 0xC90C2086L,
+       0x5768B525L, 0x206F85B3L, 0xB966D409L, 0xCE61E49FL,
+       0x5EDEF90EL, 0x29D9C998L, 0xB0D09822L, 0xC7D7A8B4L,
+       0x59B33D17L, 0x2EB40D81L, 0xB7BD5C3BL, 0xC0BA6CADL,
+       0xEDB88320L, 0x9ABFB3B6L, 0x03B6E20CL, 0x74B1D29AL,
+       0xEAD54739L, 0x9DD277AFL, 0x04DB2615L, 0x73DC1683L,
+       0xE3630B12L, 0x94643B84L, 0x0D6D6A3EL, 0x7A6A5AA8L,
+       0xE40ECF0BL, 0x9309FF9DL, 0x0A00AE27L, 0x7D079EB1L,
+       0xF00F9344L, 0x8708A3D2L, 0x1E01F268L, 0x6906C2FEL,
+       0xF762575DL, 0x806567CBL, 0x196C3671L, 0x6E6B06E7L,
+       0xFED41B76L, 0x89D32BE0L, 0x10DA7A5AL, 0x67DD4ACCL,
+       0xF9B9DF6FL, 0x8EBEEFF9L, 0x17B7BE43L, 0x60B08ED5L,
+       0xD6D6A3E8L, 0xA1D1937EL, 0x38D8C2C4L, 0x4FDFF252L,
+       0xD1BB67F1L, 0xA6BC5767L, 0x3FB506DDL, 0x48B2364BL,
+       0xD80D2BDAL, 0xAF0A1B4CL, 0x36034AF6L, 0x41047A60L,
+       0xDF60EFC3L, 0xA867DF55L, 0x316E8EEFL, 0x4669BE79L,
+       0xCB61B38CL, 0xBC66831AL, 0x256FD2A0L, 0x5268E236L,
+       0xCC0C7795L, 0xBB0B4703L, 0x220216B9L, 0x5505262FL,
+       0xC5BA3BBEL, 0xB2BD0B28L, 0x2BB45A92L, 0x5CB36A04L,
+       0xC2D7FFA7L, 0xB5D0CF31L, 0x2CD99E8BL, 0x5BDEAE1DL,
+       0x9B64C2B0L, 0xEC63F226L, 0x756AA39CL, 0x026D930AL,
+       0x9C0906A9L, 0xEB0E363FL, 0x72076785L, 0x05005713L,
+       0x95BF4A82L, 0xE2B87A14L, 0x7BB12BAEL, 0x0CB61B38L,
+       0x92D28E9BL, 0xE5D5BE0DL, 0x7CDCEFB7L, 0x0BDBDF21L,
+       0x86D3D2D4L, 0xF1D4E242L, 0x68DDB3F8L, 0x1FDA836EL,
+       0x81BE16CDL, 0xF6B9265BL, 0x6FB077E1L, 0x18B74777L,
+       0x88085AE6L, 0xFF0F6A70L, 0x66063BCAL, 0x11010B5CL,
+       0x8F659EFFL, 0xF862AE69L, 0x616BFFD3L, 0x166CCF45L,
+       0xA00AE278L, 0xD70DD2EEL, 0x4E048354L, 0x3903B3C2L,
+       0xA7672661L, 0xD06016F7L, 0x4969474DL, 0x3E6E77DBL,
+       0xAED16A4AL, 0xD9D65ADCL, 0x40DF0B66L, 0x37D83BF0L,
+       0xA9BCAE53L, 0xDEBB9EC5L, 0x47B2CF7FL, 0x30B5FFE9L,
+       0xBDBDF21CL, 0xCABAC28AL, 0x53B39330L, 0x24B4A3A6L,
+       0xBAD03605L, 0xCDD70693L, 0x54DE5729L, 0x23D967BFL,
+       0xB3667A2EL, 0xC4614AB8L, 0x5D681B02L, 0x2A6F2B94L,
+       0xB40BBE37L, 0xC30C8EA1L, 0x5A05DF1BL, 0x2D02EF8DL
+};
+
+/* function declaration ------------------------------------- */
+static int dmfe_reg_board(struct device *);
+static int dmfe_open(struct device *);
+static int dmfe_start_xmit(struct sk_buff *, struct device *);
+static int dmfe_stop(struct device *);
+static struct enet_statistics *dmfe_get_stats(struct device *);
+static void dmfe_set_filter_mode(struct device *);
+static int dmfe_do_ioctl(struct device *, struct ifreq *, int);
+static u16 read_srom_word(long, int);
+static void dmfe_interrupt(int, void *, struct pt_regs *);
+static void dmfe_descriptor_init(struct dmfe_board_info *, u32);
+static void allocated_rx_buffer(struct dmfe_board_info *);
+static void update_cr6(u32, u32);
+static void send_filter_frame(struct device *, int);
+static u16 phy_read(u32, u8, u8);
+static void phy_write(u32, u8, u8, u16);
+static void phy_write_1bit(u32, u32);
+static u16 phy_read_1bit(u32);
+static void parser_ctrl_info(struct dmfe_board_info *);
+static void dmfe_sense_speed(struct dmfe_board_info *);
+static void dmfe_process_mode(struct dmfe_board_info *);
+static void dmfe_timer(unsigned long);
+static void dmfe_rx_packet(struct device *, struct dmfe_board_info *);
+static void dmfe_reused_skb(struct dmfe_board_info *, struct sk_buff *);
+static void dmfe_dynamic_reset(struct device *);
+static void dmfe_free_rxbuffer(struct dmfe_board_info *);
+static void dmfe_init_dm910x(struct device *);
+static unsigned long cal_CRC(unsigned char *, unsigned int);
+
+/* DM910X network board routine ---------------------------- */
+
+/*
+ *     Search DM910X board, allocate space and register it
+ */
+int dmfe_reg_board(struct device *dev)
+{
+       u32 pci_iobase;
+       u16 dm9102_count = 0;
+       u8 pci_irqline;
+       static int index = 0;   /* For multiple call */
+       struct dmfe_board_info *db;     /* Point a board information structure */
+       int i;
+       struct pci_dev *net_dev = NULL;
+
+       DMFE_DBUG(0, "dmfe_reg_board()", 0);
+
+       if (!pci_present())
+               return -ENODEV;
+
+       index = 0;
+       while ((net_dev = pci_find_class(PCI_CLASS_NETWORK_ETHERNET << 8, net_dev)))
+       {
+               u32 pci_id;
+               u8 pci_cmd;
+
+               index++;
+               if (pci_read_config_dword(net_dev, PCI_VENDOR_ID, &pci_id) != DMFE_SUCC)
+                       continue;
+
+               if (pci_id != PCI_DM9102_ID)
+                       continue;
+
+               pci_iobase = net_dev->base_address[0] & ~3;
+               pci_irqline = net_dev->irq;
+                               
+               /* Enable Master/IO access, Disable memory access */
+               
+               pci_set_master(net_dev);
+               
+               pci_read_config_byte(net_dev, PCI_COMMAND, &pci_cmd);
+               pci_cmd |= PCI_COMMAND_IO;
+               pci_cmd &= ~PCI_COMMAND_MEMORY;
+               pci_write_config_byte(net_dev, PCI_COMMAND, pci_cmd);
+
+               /* Set Latency Timer 80h */
+               
+               /* FIXME: setting values > 32 breaks some SiS 559x stuff.
+                  Need a PCI quirk.. */
+                  
+               pci_write_config_byte(net_dev, PCI_LATENCY_TIMER, 0x80);
+
+               /* IO range and interrupt check */
+
+               if (check_region(pci_iobase, DM9102_IO_SIZE))   /* IO range check */
+                       continue;
+
+               /* Found DM9102 card and PCI resource allocated OK */
+               dm9102_count++; /* Found a DM9102 card */
+
+               /* Init network device */
+               dev = init_etherdev(dev, 0);
+
+               /* Allocated board information structure */
+               db = (void *) (kmalloc(sizeof(*db), GFP_KERNEL | GFP_DMA));
+               if(db==NULL)
+                       continue;       /* Out of memory */
+                       
+               memset(db, 0, sizeof(*db));
+               dev->priv = db; /* link device and board info */
+               db->next_dev = dmfe_root_dev;
+               dmfe_root_dev = dev;
+
+               db->chip_id = pci_id;   /* keep Chip vandor/Device ID */
+               db->ioaddr = pci_iobase;
+               pci_read_config_dword(net_dev, 8, &db->chip_revesion);
+
+               db->net_dev = net_dev;
+
+               dev->base_addr = pci_iobase;
+               dev->irq = pci_irqline;
+               dev->open = &dmfe_open;
+               dev->hard_start_xmit = &dmfe_start_xmit;
+               dev->stop = &dmfe_stop;
+               dev->get_stats = &dmfe_get_stats;
+               dev->set_multicast_list = &dmfe_set_filter_mode;
+               dev->do_ioctl = &dmfe_do_ioctl;
+
+               request_region(pci_iobase, DM9102_IO_SIZE, dev->name);
+
+               /* read 64 word srom data */
+               for (i = 0; i < 64; i++)
+                       ((u16 *) db->srom)[i] = read_srom_word(pci_iobase, i);
+
+               /* Set Node address */
+               for (i = 0; i < 6; i++)
+                       dev->dev_addr[i] = db->srom[20 + i];
+
+               dev = 0;        /* NULL device */
+       }
+
+       if (!dm9102_count)
+               printk(KERN_WARNING "dmfe: Can't find DM910X board\n");
+       return dm9102_count ? 0 : -ENODEV;
+}
+
+/*
+ *     Open the interface.
+ *     The interface is opened whenever "ifconfig" actives it.
+ */
+static int dmfe_open(struct device *dev)
+{
+       struct dmfe_board_info *db = dev->priv;
+
+       DMFE_DBUG(0, "dmfe_open", 0);
+
+       if (request_irq(dev->irq, &dmfe_interrupt, SA_SHIRQ, dev->name, dev))
+               return -EAGAIN;
+
+       /* Allocated Tx/Rx descriptor memory */
+       db->desc_pool_ptr = kmalloc(sizeof(struct tx_desc) * DESC_ALL_CNT + 0x20, GFP_KERNEL | GFP_DMA);
+       if (db->desc_pool_ptr == NULL)
+               return -ENOMEM;
+
+       if ((u32) db->desc_pool_ptr & 0x1f)
+               db->first_tx_desc = (struct tx_desc *) (((u32) db->desc_pool_ptr & ~0x1f) + 0x20);
+       else
+               db->first_tx_desc = (struct tx_desc *) db->desc_pool_ptr;
+
+       /* Allocated Tx buffer memory */
+       
+       db->buf_pool_ptr = kmalloc(TX_BUF_ALLOC * TX_DESC_CNT + 4, GFP_KERNEL | GFP_DMA);
+       if (db->buf_pool_ptr == NULL) {
+               kfree(db->desc_pool_ptr);
+               return -ENOMEM;
+       }
+       
+       if ((u32) db->buf_pool_ptr & 0x3)
+               db->buf_pool_start = (char *) (((u32) db->buf_pool_ptr & ~0x3) + 0x4);
+       else
+               db->buf_pool_start = db->buf_pool_ptr;
+
+       /* system variable init */
+       db->cr6_data = CR6_DEFAULT | dmfe_cr6_user_set;
+       db->tx_packet_cnt = 0;
+       db->rx_avail_cnt = 0;
+       db->link_failed = 0;
+       db->wait_reset = 0;
+       db->in_reset_state = 0;
+       db->rx_error_cnt = 0;
+
+       if (chkmode && (db->chip_revesion < 0x02000030)) {
+               db->dm910x_chk_mode = 1;        /* Enter the check mode */
+       } else {
+               db->dm910x_chk_mode = 4;        /* Enter the normal mode */
+       }
+
+       /* Initilize DM910X board */
+       dmfe_init_dm910x(dev);
+
+       /* Active System Interface */
+       dev->tbusy = 0;         /* Can transmit packet */
+       dev->start = 1;         /* interface ready */
+       MOD_INC_USE_COUNT;
+
+       /* set and active a timer process */
+       init_timer(&db->timer);
+       db->timer.expires = DMFE_TIMER_WUT;
+       db->timer.data = (unsigned long) dev;
+       db->timer.function = &dmfe_timer;
+       add_timer(&db->timer);
+
+       return 0;
+}
+
+/*
+ *     Initialize DM910X board
+ *     Reset DM910X board
+ *     Initialize TX/Rx descriptor chain structure
+ *     Send the set-up frame
+ *     Enable Tx/Rx machine
+ */
+static void dmfe_init_dm910x(struct device *dev)
+{
+       struct dmfe_board_info *db = dev->priv;
+       u32 ioaddr = db->ioaddr;
+
+       DMFE_DBUG(0, "dmfe_init_dm910x()", 0);
+
+       /* Reset DM910x board : need 32 PCI clock to complete */
+       outl(DM910X_RESET, ioaddr + DCR0);
+       DELAY_5US;
+       outl(0, ioaddr + DCR0);
+
+       outl(0x180, ioaddr + DCR12);    /* Let bit 7 output port */
+       outl(0x80, ioaddr + DCR12);     /* Reset DM9102 phyxcer */
+       outl(0x0, ioaddr + DCR12);      /* Clear RESET signal */
+
+       /* Parser control information: Phy addr */
+       parser_ctrl_info(db);
+       db->media_mode = dmfe_media_mode;
+       if (db->media_mode & DMFE_AUTO)
+               dmfe_sense_speed(db);
+       else
+               db->op_mode = db->media_mode;
+       dmfe_process_mode(db);
+
+       /* Initiliaze Transmit/Receive decriptor and CR3/4 */
+       dmfe_descriptor_init(db, ioaddr);
+
+       /* Init CR6 to program DM910x operation */
+       update_cr6(db->cr6_data, ioaddr);
+
+       /* Send setup frame */
+       send_filter_frame(dev, 0);
+
+       /* Init CR5/CR7, interrupt active bit */
+       outl(0xffffffff, ioaddr + DCR5);        /* clear all CR5 status */
+       db->cr7_data = CR7_DEFAULT;
+       outl(db->cr7_data, ioaddr + DCR7);
+
+       /* Init CR15, Tx jabber and Rx watchdog timer */
+       db->cr15_data = CR15_DEFAULT;
+       outl(db->cr15_data, ioaddr + DCR15);
+
+       /* Enable DM910X Tx/Rx function */
+       db->cr6_data |= CR6_RXSC | CR6_TXSC;
+       update_cr6(db->cr6_data, ioaddr);
+
+}
+
+
+/*
+ *     Hardware start transmission.
+ *     Send a packet to media from the upper layer.
+ */
+static int dmfe_start_xmit(struct sk_buff *skb, struct device *dev)
+{
+       struct dmfe_board_info *db = dev->priv;
+       struct tx_desc *txptr;
+
+       DMFE_DBUG(0, "dmfe_start_xmit", 0);
+
+       if ((dev->tbusy == 1) && (db->tx_packet_cnt != 0))
+               return 1;
+       else
+               dev->tbusy = 0;
+
+       /* Too large packet check */
+       if (skb->len > MAX_PACKET_SIZE) {
+               printk(KERN_ERR "%s: oversized frame received (%d bytes).\n", dev->name, (u16) skb->len);
+               dev_kfree_skb(skb);
+               return 0;
+       }
+       /* No Tx resource check, it never happen nromally */
+       if (db->tx_packet_cnt >= TX_FREE_DESC_CNT) {
+               printk(KERN_WARNING "%s: No Tx resource, enter xmit() again \n", dev->name);
+               dev_kfree_skb(skb);
+               dev->tbusy = 1;
+               return -EBUSY;
+       }
+
+       /* transmit this packet */
+       txptr = db->tx_insert_ptr;
+       memcpy((char *) txptr->tx_buf_ptr, (char *) skb->data, skb->len);
+       txptr->tdes1 = 0xe1000000 | skb->len;
+       txptr->tdes0 = 0x80000000;      /* set owner bit to DM910X */
+
+       /* Point to next transmit free descriptor */
+       db->tx_insert_ptr = (struct tx_desc *) txptr->next_tx_desc;
+
+       /* transmit counter increase 1 */
+       db->tx_packet_cnt++;
+       db->stats.tx_packets++;
+
+       /* issue Tx polling command */
+       outl(0x1, dev->base_addr + DCR1);
+
+       /* Tx resource check */
+       if (db->tx_packet_cnt >= TX_FREE_DESC_CNT)
+               dev->tbusy = 1;
+
+       /* Set transmit time stamp */
+       dev->trans_start = jiffies;     /* saved the time stamp */
+
+       /* free this SKB */
+       dev_kfree_skb(skb);
+       return 0;
+}
+
+/*
+ *     Stop the interface.
+ *     The interface is stopped when it is brought.
+ */
+
+static int dmfe_stop(struct device *dev)
+{
+       struct dmfe_board_info *db = dev->priv;
+       u32 ioaddr = dev->base_addr;
+
+       DMFE_DBUG(0, "dmfe_stop", 0);
+
+       /* disable system */
+       dev->start = 0;         /* interface disable */
+       dev->tbusy = 1;         /* can't transmit */
+
+       /* Reset & stop DM910X board */
+       outl(DM910X_RESET, ioaddr + DCR0);
+       DELAY_5US;
+
+       /* deleted timer */
+       del_timer(&db->timer);
+
+       /* free interrupt */
+       free_irq(dev->irq, dev);
+
+       /* free allocated rx buffer */
+       dmfe_free_rxbuffer(db);
+
+       /* free all descriptor memory and buffer memory */
+       kfree(db->desc_pool_ptr);
+       kfree(db->buf_pool_ptr);
+
+       MOD_DEC_USE_COUNT;
+
+       return 0;
+}
+
+/*
+ *     DM9102 insterrupt handler
+ *     receive the packet to upper layer, free the transmitted packet
+ */
+
+static void dmfe_interrupt(int irq, void *dev_id, struct pt_regs *regs)
+{
+       struct device *dev = dev_id;
+       struct tx_desc *txptr;
+       struct dmfe_board_info *db;
+       u32 ioaddr;
+
+       if (!dev) {
+               DMFE_DBUG(1, "dmfe_interrupt() without device arg", 0);
+               return;
+       }
+       if (dev->interrupt) {
+               DMFE_DBUG(1, "dmfe_interrupt() re-entry ", 0);
+               return;
+       }
+
+       /* A real interrupt coming */
+       dev->interrupt = 1;     /* Lock interrupt */
+       db = (struct dmfe_board_info *) dev->priv;
+       ioaddr = dev->base_addr;
+
+       DMFE_DBUG(0, "dmfe_interrupt()", 0);
+
+       /* Disable all interrupt in CR7 to solve the interrupt edge problem */
+       outl(0, ioaddr + DCR7);
+
+       /* Got DM910X status */
+       db->cr5_data = inl(ioaddr + DCR5);
+       outl(db->cr5_data, ioaddr + DCR5);
+       /* printk("CR5=%x\n", db->cr5_data); */
+
+       /* Check system status */
+       if (db->cr5_data & 0x2000) {
+               /* A system bus error occurred */
+               DMFE_DBUG(1, "A system bus error occurred. CR5=", db->cr5_data);
+               dev->tbusy = 1;
+               db->wait_reset = 1;             /* Need to RESET */
+               outl(0, ioaddr + DCR7);         /* disable all interrupt */
+               dev->interrupt = 0;             /* unlock interrupt */
+               return;
+       }
+       /* Free the transmitted descriptor */
+       txptr = db->tx_remove_ptr;
+       while (db->tx_packet_cnt) {
+               /* printk("tdes0=%x\n", txptr->tdes0); */
+               if (txptr->tdes0 & 0x80000000)
+                       break;
+               if ((txptr->tdes0 & TDES0_ERR_MASK) && (txptr->tdes0 != 0x7fffffff)) {
+                       /* printk("tdes0=%x\n", txptr->tdes0); */
+                       db->stats.tx_errors++;
+               }
+               txptr = (struct tx_desc *) txptr->next_tx_desc;
+               db->tx_packet_cnt--;
+       }
+       db->tx_remove_ptr = (struct tx_desc *) txptr;
+
+       if (dev->tbusy && (db->tx_packet_cnt < TX_FREE_DESC_CNT)) {
+               dev->tbusy = 0;         /* free a resource */
+               mark_bh(NET_BH);        /* active bottom half */
+       }
+       /* Received the coming packet */
+       if (db->rx_avail_cnt)
+               dmfe_rx_packet(dev, db);
+
+       /* reallocated rx descriptor buffer */
+       if (db->rx_avail_cnt < RX_DESC_CNT)
+               allocated_rx_buffer(db);
+
+       /* Mode Check */
+       if (db->dm910x_chk_mode & 0x2) {
+               db->dm910x_chk_mode = 0x4;
+               db->cr6_data |= 0x100;
+               update_cr6(db->cr6_data, db->ioaddr);
+       }
+       dev->interrupt = 0;     /* release interrupt lock */
+
+       /* Restore CR7 to enable interrupt mask */
+       
+       if (db->interval_rx_cnt > RX_MAX_TRAFFIC)
+               db->cr7_data = 0x1a28d;
+       else
+               db->cr7_data = 0x1a2cd;
+       outl(db->cr7_data, ioaddr + DCR7);
+}
+
+/*
+ *     Receive the come packet and pass to upper layer
+ */
+static void dmfe_rx_packet(struct device *dev, struct dmfe_board_info *db)
+{
+       struct rx_desc *rxptr;
+       struct sk_buff *skb;
+       int rxlen;
+
+       rxptr = db->rx_ready_ptr;
+
+       while (db->rx_avail_cnt) {
+               if (rxptr->rdes0 & 0x80000000)  /* packet owner check */
+                       break;
+
+               db->rx_avail_cnt--;
+               db->interval_rx_cnt++;
+
+               if ((rxptr->rdes0 & 0x300) != 0x300) {
+                       /* A packet without First/Last flag */
+                       /* reused this SKB */
+                       DMFE_DBUG(0, "Reused SK buffer, rdes0", rxptr->rdes0);
+                       dmfe_reused_skb(db, (struct sk_buff *) rxptr->rx_skb_ptr);
+                       db->rx_error_cnt++;
+               } else {
+                       rxlen = ((rxptr->rdes0 >> 16) & 0x3fff) - 4;    /* skip CRC */
+
+                       /* A packet with First/Last flag */
+                       if (rxptr->rdes0 & 0x8000) {    /* error summary bit check */
+                               /* This is a error packet */
+                               /* printk("rdes0 error : %x \n", rxptr->rdes0); */
+                               db->stats.rx_errors++;
+                               if (rxptr->rdes0 & 1)
+                                       db->stats.rx_fifo_errors++;
+                               if (rxptr->rdes0 & 2)
+                                       db->stats.rx_crc_errors++;
+                               if (rxptr->rdes0 & 0x80)
+                                       db->stats.rx_length_errors++;
+                       }
+                       if (!(rxptr->rdes0 & 0x8000) ||
+                           ((db->cr6_data & CR6_PM) && (rxlen > 6))) {
+                               skb = (struct sk_buff *) rxptr->rx_skb_ptr;
+
+                               /* Received Packet CRC check need or not */
+                               if ((db->dm910x_chk_mode & 1) && (cal_CRC(skb->tail, rxlen) != (*(unsigned long *) (skb->tail + rxlen)))) {
+                                       /* Found a error received packet */
+                                       dmfe_reused_skb(db, (struct sk_buff *) rxptr->rx_skb_ptr);
+                                       db->dm910x_chk_mode = 3;
+                               } else {
+                                       /* A good packet coming, send to upper layer */
+                                       skb->dev = dev;
+                                       skb_put(skb, rxlen);
+                                       skb->protocol = eth_type_trans(skb, dev);
+                                       netif_rx(skb);  /* Send to upper layer */
+                                       /* skb->ip_summed = CHECKSUM_UNNECESSARY; */
+                                       dev->last_rx = jiffies;
+                                       db->stats.rx_packets++;
+                               }
+                       } else {
+                               DMFE_DBUG(0, "Reused SK buffer, rdes0", rxptr->rdes0);
+                               dmfe_reused_skb(db, (struct sk_buff *) rxptr->rx_skb_ptr);
+                       }
+               }
+
+               rxptr = (struct rx_desc *) rxptr->next_rx_desc;
+       }
+
+       db->rx_ready_ptr = rxptr;
+}
+
+/*
+ *     Get statistics from driver.
+ */
+static struct enet_statistics *dmfe_get_stats(struct device *dev)
+{
+       struct dmfe_board_info *db = (struct dmfe_board_info *) dev->priv;
+
+       DMFE_DBUG(0, "dmfe_get_stats", 0);
+       return &db->stats;
+}
+
+/*
+ *     Set DM910X multicast address
+ */
+static void dmfe_set_filter_mode(struct device *dev)
+{
+       struct dmfe_board_info *db = dev->priv;
+
+       DMFE_DBUG(0, "dmfe_set_filter_mode()", 0);
+
+       if (dev->flags & IFF_PROMISC) {
+               DMFE_DBUG(0, "Enable PROM Mode", 0);
+               db->cr6_data |= CR6_PM | CR6_PBF;
+               update_cr6(db->cr6_data, db->ioaddr);
+               return;
+       }
+       if (dev->flags & IFF_ALLMULTI || dev->mc_count > DMFE_MAX_MULTICAST) {
+               DMFE_DBUG(0, "Pass all multicast address", dev->mc_count);
+               db->cr6_data &= ~(CR6_PM | CR6_PBF);
+               db->cr6_data |= CR6_PAM;
+               return;
+       }
+       DMFE_DBUG(0, "Set multicast address", dev->mc_count);
+       send_filter_frame(dev, dev->mc_count);
+}
+
+/*
+ *     Process the upper socket ioctl command
+ */
+static int dmfe_do_ioctl(struct device *dev, struct ifreq *ifr, int cmd)
+{
+       DMFE_DBUG(0, "dmfe_do_ioctl()", 0);
+       return 0;
+}
+
+/*
+ *     A periodic timer routine
+ *     Dynamic media sense, allocated Rx buffer...
+ */
+static void dmfe_timer(unsigned long data)
+{
+       u32 tmp_cr8;
+       unsigned char tmp_cr12;
+       struct device *dev = (struct device *) data;
+       struct dmfe_board_info *db = (struct dmfe_board_info *) dev->priv;
+
+       DMFE_DBUG(0, "dmfe_timer()", 0);
+
+       /* Do reset now */
+       if (db->in_reset_state)
+               return;
+
+       /* Operating Mode Check */
+       if ((db->dm910x_chk_mode & 0x1) && (db->stats.rx_packets > MAX_CHECK_PACKET)) {
+               db->dm910x_chk_mode = 0x4;
+       }
+       /* Dynamic reset DM910X : system error or transmit time-out */
+       tmp_cr8 = inl(db->ioaddr + DCR8);
+       if ((db->interval_rx_cnt == 0) && (tmp_cr8)) {
+               db->wait_reset = 1;
+               /* printk("CR8 %x, Interval Rx %x\n", tmp_cr8, db->interval_rx_cnt); */
+       }
+       /* Receiving Traffic check */
+       if (db->interval_rx_cnt > RX_MAX_TRAFFIC)
+               db->cr7_data = 0x1a28d;
+       else
+               db->cr7_data = 0x1a2cd;
+       outl(db->cr7_data, db->ioaddr + DCR7);
+
+       db->interval_rx_cnt = 0;
+
+       if (db->wait_reset | (db->tx_packet_cnt &&
+                             ((jiffies - dev->trans_start) > DMFE_TX_TIMEOUT)) | (db->rx_error_cnt > 3)) {
+               /* printk("wait_reset %x, tx cnt %x, rx err %x, time %x\n", db->wait_reset, db->tx_packet_cnt, db->rx_error_cnt, jiffies-dev->trans_start); */
+               DMFE_DBUG(0, "Warn!! Warn!! Tx/Rx moniotr step1", db->tx_packet_cnt);
+               dmfe_dynamic_reset(dev);
+               db->timer.expires = DMFE_TIMER_WUT;
+               add_timer(&db->timer);
+               return;
+       }
+       db->rx_error_cnt = 0;   /* Clear previous counter */
+
+       /* Link status check, Dynamic media type change */
+       tmp_cr12 = inb(db->ioaddr + DCR12);
+       if (db->chip_revesion == 0x02000030) {
+               if (tmp_cr12 & 2)
+                       tmp_cr12 = 0x0;         /* Link failed */
+               else
+                       tmp_cr12 = 0x3;         /* Link OK */
+       }
+       if (!(tmp_cr12 & 0x3) && !db->link_failed) {
+               /* Link Failed */
+               DMFE_DBUG(0, "Link Failed", tmp_cr12);
+               db->link_failed = 1;
+               phy_write(db->ioaddr, db->phy_addr, 0, 0x8000);         /* reset Phy controller */
+       } else if ((tmp_cr12 & 0x3) && db->link_failed) {
+               DMFE_DBUG(0, "Link link OK", tmp_cr12);
+               db->link_failed = 0;
+               if (db->media_mode & DMFE_AUTO)
+                       dmfe_sense_speed(db);
+               dmfe_process_mode(db);
+               update_cr6(db->cr6_data, db->ioaddr);
+               /* SHOW_MEDIA_TYPE(db->op_mode); */
+       }
+       /* reallocated rx descriptor buffer */
+       if (db->rx_avail_cnt < RX_DESC_CNT)
+               allocated_rx_buffer(db);
+
+       /* Timer active again */
+       db->timer.expires = DMFE_TIMER_WUT;
+       add_timer(&db->timer);
+}
+
+/*
+ *     Dynamic reset the DM910X board
+ *     Stop DM910X board
+ *     Free Tx/Rx allocated memory
+ *     Reset DM910X board
+ *     Re-initilize DM910X board
+ */
+static void dmfe_dynamic_reset(struct device *dev)
+{
+       struct dmfe_board_info *db = dev->priv;
+
+       DMFE_DBUG(0, "dmfe_dynamic_reset()", 0);
+
+       /* Enter dynamic reset route */
+       db->in_reset_state = 1;
+
+       /* Disable upper layer interface */
+       dev->tbusy = 1;         /* transmit packet disable */
+       dev->start = 0;         /* interface not ready */
+
+       db->cr6_data &= ~(CR6_RXSC | CR6_TXSC);         /* Disable Tx/Rx */
+       update_cr6(db->cr6_data, dev->base_addr);
+
+       /* Free Rx Allocate buffer */
+       dmfe_free_rxbuffer(db);
+
+       /* system variable init */
+       db->tx_packet_cnt = 0;
+       db->rx_avail_cnt = 0;
+       db->link_failed = 0;
+       db->wait_reset = 0;
+       db->rx_error_cnt = 0;
+
+       /* Re-initilize DM910X board */
+       dmfe_init_dm910x(dev);
+
+       /* Restart upper layer interface */
+       dev->tbusy = 0;         /* Can transmit packet */
+       dev->start = 1;         /* interface ready */
+
+       /* Leave dynamic reser route */
+       db->in_reset_state = 0;
+}
+
+/*
+ *     Free all allocated rx buffer 
+ */
+
+static void dmfe_free_rxbuffer(struct dmfe_board_info *db)
+{
+       DMFE_DBUG(0, "dmfe_free_rxbuffer()", 0);
+
+       /* free allocated rx buffer */
+       while (db->rx_avail_cnt) {
+               dev_kfree_skb((void *) (db->rx_ready_ptr->rx_skb_ptr));
+               db->rx_ready_ptr = (struct rx_desc *) db->rx_ready_ptr->next_rx_desc;
+               db->rx_avail_cnt--;
+       }
+}
+
+/*
+ *     Reused the SK buffer
+ */
+static void dmfe_reused_skb(struct dmfe_board_info *db, struct sk_buff *skb)
+{
+       struct rx_desc *rxptr = db->rx_insert_ptr;
+
+       if (!(rxptr->rdes0 & 0x80000000)) {
+               rxptr->rx_skb_ptr = (u32) skb;
+               rxptr->rdes2 = virt_to_bus(skb->tail);
+               rxptr->rdes0 = 0x80000000;
+               db->rx_avail_cnt++;
+               db->rx_insert_ptr = (struct rx_desc *) rxptr->next_rx_desc;
+       } else
+               DMFE_DBUG(0, "SK Buffer reused method error", db->rx_avail_cnt);
+}
+
+/*
+ *     Initialize transmit/Receive descriptor 
+ *     Using Chain structure, and allocated Tx/Rx buffer
+ */
+static void dmfe_descriptor_init(struct dmfe_board_info *db, u32 ioaddr)
+{
+       struct tx_desc *tmp_tx;
+       struct rx_desc *tmp_rx;
+       unsigned char *tmp_buf;
+       int i;
+
+       DMFE_DBUG(0, "dmfe_descriptor_init()", 0);
+
+       /* tx descriptor start pointer */
+       db->tx_insert_ptr = db->first_tx_desc;
+       db->tx_remove_ptr = db->first_tx_desc;
+       outl(virt_to_bus(db->first_tx_desc), ioaddr + DCR4);    /* Init CR4 */
+
+       /* rx descriptor start pointer */
+       db->first_rx_desc = (struct rx_desc *)
+           ((u32) db->first_tx_desc + sizeof(struct rx_desc) * TX_DESC_CNT);
+       db->rx_insert_ptr = db->first_rx_desc;
+       db->rx_ready_ptr = db->first_rx_desc;
+       outl(virt_to_bus(db->first_rx_desc), ioaddr + DCR3);    /* Init CR3 */
+
+       /* Init Transmit chain */
+       tmp_buf = db->buf_pool_start;
+       for (tmp_tx = db->first_tx_desc, i = 0; i < TX_DESC_CNT; i++, tmp_tx++) {
+               tmp_tx->tx_buf_ptr = (u32) tmp_buf;
+               tmp_tx->tdes0 = 0;
+               tmp_tx->tdes1 = 0x81000000;     /* IC, chain */
+               tmp_tx->tdes2 = (u32) virt_to_bus(tmp_buf);
+               tmp_tx->tdes3 = (u32) virt_to_bus(tmp_tx) + sizeof(struct tx_desc);
+               tmp_tx->next_tx_desc = (u32) ((u32) tmp_tx + sizeof(struct tx_desc));
+               tmp_buf = (unsigned char *) ((u32) tmp_buf + TX_BUF_ALLOC);
+       }
+       (--tmp_tx)->tdes3 = (u32) virt_to_bus(db->first_tx_desc);
+       tmp_tx->next_tx_desc = (u32) db->first_tx_desc;
+
+       /* Init Receive descriptor chain */
+       for (tmp_rx = db->first_rx_desc, i = 0; i < RX_DESC_CNT; i++, tmp_rx++) {
+               tmp_rx->rdes0 = 0;
+               tmp_rx->rdes1 = 0x01000600;
+               tmp_rx->rdes3 = (u32) virt_to_bus(tmp_rx) + sizeof(struct rx_desc);
+               tmp_rx->next_rx_desc = (u32) ((u32) tmp_rx + sizeof(struct rx_desc));
+       }
+       (--tmp_rx)->rdes3 = (u32) virt_to_bus(db->first_rx_desc);
+       tmp_rx->next_rx_desc = (u32) db->first_rx_desc;
+
+       /* pre-allocated Rx buffer */
+       allocated_rx_buffer(db);
+}
+
+/*
+ *     Update CR6 vaule
+ *     Firstly stop DM910X , then written value and start
+ */
+static void update_cr6(u32 cr6_data, u32 ioaddr)
+{
+       u32 cr6_tmp;
+
+       cr6_tmp = cr6_data & ~0x2002;   /* stop Tx/Rx */
+       outl(cr6_tmp, ioaddr + DCR6);
+       DELAY_5US;
+       outl(cr6_data, ioaddr + DCR6);
+       cr6_tmp = inl(ioaddr + DCR6);
+       /* printk("CR6 update %x ", cr6_tmp); */
+}
+
+/*
+ *     Send a setup frame
+ *     This setup frame initilize DM910X addres filter mode
+ */
+static void send_filter_frame(struct device *dev, int mc_cnt)
+{
+       struct dmfe_board_info *db = dev->priv;
+       struct dev_mc_list *mcptr;
+       struct tx_desc *txptr;
+       u16 *addrptr;
+       u32 *suptr;
+       int i;
+
+       DMFE_DBUG(0, "send_filetr_frame()", 0);
+
+       txptr = db->tx_insert_ptr;
+       suptr = (u32 *) txptr->tx_buf_ptr;
+
+       /* broadcast address */
+       *suptr++ = 0xffff;
+       *suptr++ = 0xffff;
+       *suptr++ = 0xffff;
+
+       /* Node address */
+       addrptr = (u16 *) dev->dev_addr;
+       *suptr++ = addrptr[0];
+       *suptr++ = addrptr[1];
+       *suptr++ = addrptr[2];
+
+       /* fit the multicast address */
+       for (mcptr = dev->mc_list, i = 0; i < mc_cnt; i++, mcptr = mcptr->next) {
+               addrptr = (u16 *) mcptr->dmi_addr;
+               *suptr++ = addrptr[0];
+               *suptr++ = addrptr[1];
+               *suptr++ = addrptr[2];
+       }
+
+       for (; i < 14; i++) {
+               *suptr++ = 0xffff;
+               *suptr++ = 0xffff;
+               *suptr++ = 0xffff;
+       }
+
+       /* prepare the setup frame */
+       db->tx_packet_cnt++;
+       dev->tbusy = 1;
+       txptr->tdes1 = 0x890000c0;
+       txptr->tdes0 = 0x80000000;
+       db->tx_insert_ptr = (struct tx_desc *) txptr->next_tx_desc;
+
+       update_cr6(db->cr6_data | 0x2000, dev->base_addr);
+       outl(0x1, dev->base_addr + DCR1);
+       update_cr6(db->cr6_data, dev->base_addr);
+       dev->trans_start = jiffies;
+
+}
+
+/*
+ *     Allocate rx buffer,
+ *     Allocate as many Rx buffers as possible.
+ */
+static void allocated_rx_buffer(struct dmfe_board_info *db)
+{
+       struct rx_desc *rxptr;
+       struct sk_buff *skb;
+
+       rxptr = db->rx_insert_ptr;
+
+       while (db->rx_avail_cnt < RX_DESC_CNT) {
+               if ((skb = alloc_skb(RX_ALLOC_SIZE, GFP_ATOMIC)) == NULL)
+                       break;
+               rxptr->rx_skb_ptr = (u32) skb;
+               rxptr->rdes2 = virt_to_bus(skb->tail);
+               rxptr->rdes0 = 0x80000000;
+               rxptr = (struct rx_desc *) rxptr->next_rx_desc;
+               db->rx_avail_cnt++;
+       }
+
+       db->rx_insert_ptr = rxptr;
+}
+
+/*
+ *     Read one word data from the serial ROM
+ */
+static u16 read_srom_word(long ioaddr, int offset)
+{
+       int i;
+       u16 srom_data = 0;
+       long cr9_ioaddr = ioaddr + DCR9;
+
+       outl(CR9_SROM_READ, cr9_ioaddr);
+       outl(CR9_SROM_READ | CR9_SRCS, cr9_ioaddr);
+
+       /* Send the Read Command 110b */
+       SROM_CLK_WRITE(SROM_DATA_1, cr9_ioaddr);
+       SROM_CLK_WRITE(SROM_DATA_1, cr9_ioaddr);
+       SROM_CLK_WRITE(SROM_DATA_0, cr9_ioaddr);
+
+       /* Send the offset */
+       for (i = 5; i >= 0; i--) {
+               srom_data = (offset & (1 << i)) ? SROM_DATA_1 : SROM_DATA_0;
+               SROM_CLK_WRITE(srom_data, cr9_ioaddr);
+       }
+
+       outl(CR9_SROM_READ | CR9_SRCS, cr9_ioaddr);
+
+       for (i = 16; i > 0; i--) {
+               outl(CR9_SROM_READ | CR9_SRCS | CR9_SRCLK, cr9_ioaddr);
+               DELAY_5US;
+               srom_data = (srom_data << 1) | ((inl(cr9_ioaddr) & CR9_CRDOUT) ? 1 : 0);
+               outl(CR9_SROM_READ | CR9_SRCS, cr9_ioaddr);
+               DELAY_5US;
+       }
+
+       outl(CR9_SROM_READ, cr9_ioaddr);
+       return srom_data;
+}
+
+/*
+ *     Parser Control media block to get Phy address
+ */
+static void parser_ctrl_info(struct dmfe_board_info *db)
+{
+       int i;
+       char *sdata = db->srom;
+       unsigned char count;
+
+       /* point to info leaf0 */
+       count = *(sdata + 33);
+
+       /* Point to First media block */
+       sdata += 34;
+       for (i = 0; i < count; i++) {
+               if (*(sdata + 1) == 1) {
+                       db->phy_addr = *(sdata + 2);
+                       break;
+               }
+               sdata += ((unsigned char) *(sdata) & 0x7f) + 1;
+       }
+
+       if (i >= count) {
+               printk("Can't found Control Block\n");
+               db->phy_addr = 1;
+       }
+}
+
+/*
+ *     Auto sense the media mode
+ */
+static void dmfe_sense_speed(struct dmfe_board_info *db)
+{
+       int i;
+       u16 phy_mode;
+
+       for (i = 1000; i; i--) {
+               DELAY_5US;
+               phy_mode = phy_read(db->ioaddr, db->phy_addr, 1);
+               if ((phy_mode & 0x24) == 0x24)
+                       break;
+       }
+
+       if (i) {
+               phy_mode = phy_read(db->ioaddr, db->phy_addr, 17) & 0xf000;
+               /* printk("Phy_mode %x ",phy_mode); */
+               switch (phy_mode) {
+               case 0x1000:
+                       db->op_mode = DMFE_10MHF;
+                       break;
+               case 0x2000:
+                       db->op_mode = DMFE_10MFD;
+                       break;
+               case 0x4000:
+                       db->op_mode = DMFE_100MHF;
+                       break;
+               case 0x8000:
+                       db->op_mode = DMFE_100MFD;
+                       break;
+               default:
+                       db->op_mode = DMFE_100MHF;
+                       DMFE_DBUG(1, "Media Type error, phy reg17", phy_mode);
+                       break;
+               }
+       } else {
+               db->op_mode = DMFE_100MHF;
+               DMFE_DBUG(0, "Link Failed :", phy_mode);
+       }
+}
+
+/*
+ *     Process op-mode
+ *     AUTO mode : PHY controller in Auto-negotiation Mode
+ *     Force mode: PHY controller in force mode with HUB
+ *     N-way force capability with SWITCH
+ */
+static void dmfe_process_mode(struct dmfe_board_info *db)
+{
+       u16 phy_reg;
+
+       /* Full Duplex Mode Check */
+       db->cr6_data &= ~CR6_FDM;       /* Clear Full Duplex Bit */
+       if (db->op_mode & 0x4)
+               db->cr6_data |= CR6_FDM;
+
+       if (!(db->media_mode & DMFE_AUTO)) {    /* Force Mode Check */
+               /* User force the media type */
+               phy_reg = phy_read(db->ioaddr, db->phy_addr, 5);
+               /* printk("Nway phy_reg5 %x ",phy_reg); */
+               if (phy_reg & 0x1) {
+                       /* parter own the N-Way capability */
+                       phy_reg = phy_read(db->ioaddr, db->phy_addr, 4) & ~0x1e0;
+                       switch (db->op_mode) {
+                       case DMFE_10MHF:
+                               phy_reg |= 0x20;
+                               break;
+                       case DMFE_10MFD:
+                               phy_reg |= 0x40;
+                               break;
+                       case DMFE_100MHF:
+                               phy_reg |= 0x80;
+                               break;
+                       case DMFE_100MFD:
+                               phy_reg |= 0x100;
+                               break;
+                       }
+                       phy_write(db->ioaddr, db->phy_addr, 4, phy_reg);
+               } else {
+                       /* parter without the N-Way capability */
+                       switch (db->op_mode) {
+                       case DMFE_10MHF:
+                               phy_reg = 0x0;
+                               break;
+                       case DMFE_10MFD:
+                               phy_reg = 0x100;
+                               break;
+                       case DMFE_100MHF:
+                               phy_reg = 0x2000;
+                               break;
+                       case DMFE_100MFD:
+                               phy_reg = 0x2100;
+                               break;
+                       }
+                       phy_write(db->ioaddr, db->phy_addr, 0, phy_reg);
+               }
+       }
+}
+
+/*
+ *     Write a word to Phy register
+ */
+static void phy_write(u32 iobase, u8 phy_addr, u8 offset, u16 phy_data)
+{
+       u16 i;
+       u32 ioaddr = iobase + DCR9;
+
+       /* Send 33 synchronization clock to Phy controller */
+       for (i = 0; i < 35; i++)
+               phy_write_1bit(ioaddr, PHY_DATA_1);
+
+       /* Send start command(01) to Phy */
+       phy_write_1bit(ioaddr, PHY_DATA_0);
+       phy_write_1bit(ioaddr, PHY_DATA_1);
+
+       /* Send write command(01) to Phy */
+       phy_write_1bit(ioaddr, PHY_DATA_0);
+       phy_write_1bit(ioaddr, PHY_DATA_1);
+
+       /* Send Phy addres */
+       for (i = 0x10; i > 0; i = i >> 1)
+               phy_write_1bit(ioaddr, phy_addr & i ? PHY_DATA_1 : PHY_DATA_0);
+
+       /* Send register addres */
+       for (i = 0x10; i > 0; i = i >> 1)
+               phy_write_1bit(ioaddr, offset & i ? PHY_DATA_1 : PHY_DATA_0);
+
+       /* written trasnition */
+       phy_write_1bit(ioaddr, PHY_DATA_1);
+       phy_write_1bit(ioaddr, PHY_DATA_0);
+
+       /* Write a word data to PHY controller */
+       for (i = 0x8000; i > 0; i >>= 1)
+               phy_write_1bit(ioaddr, phy_data & i ? PHY_DATA_1 : PHY_DATA_0);
+}
+
+/*
+ *     Read a word data from phy register
+ */
+static u16 phy_read(u32 iobase, u8 phy_addr, u8 offset)
+{
+       int i;
+       u16 phy_data;
+       u32 ioaddr = iobase + DCR9;
+
+       /* Send 33 synchronization clock to Phy controller */
+       for (i = 0; i < 35; i++)
+               phy_write_1bit(ioaddr, PHY_DATA_1);
+
+       /* Send start command(01) to Phy */
+       phy_write_1bit(ioaddr, PHY_DATA_0);
+       phy_write_1bit(ioaddr, PHY_DATA_1);
+
+       /* Send read command(10) to Phy */
+       phy_write_1bit(ioaddr, PHY_DATA_1);
+       phy_write_1bit(ioaddr, PHY_DATA_0);
+
+       /* Send Phy addres */
+       for (i = 0x10; i > 0; i = i >> 1)
+               phy_write_1bit(ioaddr, phy_addr & i ? PHY_DATA_1 : PHY_DATA_0);
+
+       /* Send register addres */
+       for (i = 0x10; i > 0; i = i >> 1)
+               phy_write_1bit(ioaddr, offset & i ? PHY_DATA_1 : PHY_DATA_0);
+
+       /* Skip transition state */
+       phy_read_1bit(ioaddr);
+
+       /* read 16bit data */
+       for (phy_data = 0, i = 0; i < 16; i++) {
+               phy_data <<= 1;
+               phy_data |= phy_read_1bit(ioaddr);
+       }
+
+       return phy_data;
+}
+
+/*
+ *     Write one bit data to Phy Controller
+ */
+static void phy_write_1bit(u32 ioaddr, u32 phy_data)
+{
+       outl(phy_data, ioaddr); /* MII Clock Low */
+       DELAY_1US;
+       outl(phy_data | MDCLKH, ioaddr);        /* MII Clock High */
+       DELAY_1US;
+       outl(phy_data, ioaddr); /* MII Clock Low */
+       DELAY_1US;
+}
+
+/*
+ *     Read one bit phy data from PHY controller
+ */
+static u16 phy_read_1bit(u32 ioaddr)
+{
+       u16 phy_data;
+
+       outl(0x50000, ioaddr);
+       DELAY_1US;
+       phy_data = (inl(ioaddr) >> 19) & 0x1;
+       outl(0x40000, ioaddr);
+       DELAY_1US;
+
+       return phy_data;
+}
+
+/*
+ *     Calculate the CRC valude of the Rx packet
+ */
+static unsigned long cal_CRC(unsigned char *Data, unsigned int Len)
+{
+       unsigned long Crc = 0xffffffff;
+
+       while (Len--) {
+               Crc = CrcTable[(Crc ^ *Data++) & 0xFF] ^ (Crc >> 8);
+       }
+
+       return ~Crc;
+
+}
+
+#ifdef MODULE
+
+MODULE_AUTHOR("Sten Wang, sten_wang@davicom.com.tw");
+MODULE_DESCRIPTION("Davicom DM910X fast ethernet driver");
+MODULE_PARM(debug, "i");
+MODULE_PARM(mode, "i");
+MODULE_PARM(cr6set, "i");
+MODULE_PARM(chkmode, "i");
+
+/*     Description: 
+ *     when user used insmod to add module, system invoked init_module()
+ *     to initilize and register.
+ */
+int init_module(void)
+{
+       DMFE_DBUG(0, "init_module() ", debug);
+
+       if (debug)
+               dmfe_debug = debug;     /* set debug flag */
+       if (cr6set)
+               dmfe_cr6_user_set = cr6set;
+
+       switch (mode) {
+       case 0:
+       case 1:
+       case 4:
+       case 5:
+               dmfe_media_mode = mode;
+               break;
+       default:
+               dmfe_media_mode = 8;
+               break;
+       }
+
+       return dmfe_reg_board(0);       /* search board and register */
+}
+
+/*
+ *     Description: 
+ *     when user used rmmod to delete module, system invoked clean_module()
+ *     to un-register device.
+ */
+void cleanup_module(void)
+{
+       struct device *next_dev;
+
+       DMFE_DBUG(0, "clean_module()", 0);
+
+       while (dmfe_root_dev) {
+               next_dev = ((struct dmfe_board_info *) dmfe_root_dev->priv)->next_dev;
+               unregister_netdev(dmfe_root_dev);
+               release_region(dmfe_root_dev->base_addr, DM9102_IO_SIZE);
+               kfree(dmfe_root_dev->priv);     /* free board information */
+               kfree(dmfe_root_dev);   /* free device structure */
+               dmfe_root_dev = next_dev;
+       }
+       DMFE_DBUG(0, "clean_module() exit", 0);
+}
+
+#endif                         /* MODULE */
index b92dde935af913ee1f02900a682c58c149297c35..c1cb392ee1c89587838781111a2128da3d39c4fc 100644 (file)
@@ -140,22 +140,6 @@ else
   endif
 endif
 
-ifeq ($(CONFIG_LITELINK_DONGLE),y)
-L_OBJS += litelink.o
-else
-  ifeq ($(CONFIG_LITELINK_DONGLE),m)
-  M_OBJS += litelink.o
-  endif
-endif
-
-ifeq ($(CONFIG_LITELINK_DONGLE),y)
-L_OBJS += litelink.o
-else
-  ifeq ($(CONFIG_LITELINK_DONGLE),m)
-  M_OBJS += litelink.o
-  endif
-endif
-
 include $(TOPDIR)/Rules.make
 
 clean:
index 0691956286ddf5b817b992c438ffaca42a855837..1e40bd8840dd29889a041dc8265fb9a316bb1482 100644 (file)
@@ -371,6 +371,9 @@ static int
 ppp_tty_open (struct tty_struct *tty)
 {
        struct ppp *ppp;
+       
+       if(!capable(CAP_NET_ADMIN))
+               return -EPERM;
 
        /*
         * Allocate a ppp structure to use.
index 7187a3d8f03e9792c1ad0aec820b38c314aefb83..e5a884fed777c3babdafec7b824b706db7b17eca 100644 (file)
@@ -831,6 +831,9 @@ slip_open(struct tty_struct *tty)
        struct slip *sl;
        int err;
 
+       if(!capable(CAP_NET_ADMIN))
+               return -EPERM;
+               
        MOD_INC_USE_COUNT;
 
        /* RTnetlink lock is misused here to serialize concurrent
index 621f3c5835ad1e20d3f2f9a2dda74fc73e8e2e7e..4b2281efa30f77799884c1a19ba9329dcdc7a971 100644 (file)
@@ -359,7 +359,7 @@ extern int init_module(void)
        
        /* printk( "TLAN:  Found %d device(s).\n", TLanDevicesInstalled ); */
 
-    return ( ( TLanDevicesInstalled >= 0 ) ? 0 : -ENODEV );
+       return ( ( TLanDevicesInstalled > 0 ) ? 0 : -ENODEV );
 
 } /* init_module */
 
index 049a0cc15ac9ab9661103af6b672d04173fcada1..d794a0846fa55af836c78cca103b2c8becf9d35d 100644 (file)
@@ -976,6 +976,7 @@ static int isofs_read_level3_size(struct inode * inode)
        struct buffer_head * bh = NULL;
        int block = 0;
        int i = 0;
+       int more_entries = 0;
        void *cpnt;
        struct iso_directory_record * raw_inode;
 
@@ -996,7 +997,6 @@ static int isofs_read_level3_size(struct inode * inode)
                                goto out_noread;
                }
                pnt = ((unsigned char *) bh->b_data + offset);
-               raw_inode = ((struct iso_directory_record *) pnt);
                /*
                 * Note: this is invariant even if the record
                 * spans buffers and must be copied ...
@@ -1008,6 +1008,7 @@ static int isofs_read_level3_size(struct inode * inode)
                        ino = (ino & ~(ISOFS_BLOCK_SIZE - 1)) + ISOFS_BLOCK_SIZE;
                        continue;
                }
+               raw_inode = ((struct iso_directory_record *) pnt);
 
                /* Check whether the raw inode spans the buffer ... */  
                if (offset + reclen > bufsize){
@@ -1029,13 +1030,15 @@ static int isofs_read_level3_size(struct inode * inode)
                inode->i_size += isonum_733 (raw_inode->size);
                if(i == 1) inode->u.isofs_i.i_next_section_ino = ino;
 
+               more_entries = raw_inode->flags[-high_sierra] & 0x80;
+               
                ino += reclen;
                if (cpnt)
                        kfree (cpnt);
                i++;
                if(i > 100)
                        goto out_toomany;
-       } while(raw_inode->flags[-high_sierra] & 0x80);
+       } while(more_entries);
 out:
        brelse(bh);
        return 0;
index ba147ec6e6b56d1dd55ee03d0cefa4c09ad71c50..753df742305b071d60113d7b0f3aef80a2647c86 100644 (file)
@@ -103,7 +103,8 @@ enum
        KERN_MSGMAX=35,         /* int: Maximum size of a messege */
        KERN_MSGMNB=36,         /* int: Maximum message queue size */
        KERN_MSGPOOL=37,         /* int: Maximum system message pool size */
-       KERN_SYSRQ=38           /* int: Sysreq enable */
+       KERN_SYSRQ=38,          /* int: Sysreq enable */
+       KERN_SHMALL=41          /* int: maximum size of shared memory */
 };
 
 
index 82f129fca4c2443bfef4f33b88f54e4d598ba862..e4ccc7e88df87aef2ecda77d1823fd794e48a441 100644 (file)
@@ -35,6 +35,7 @@ typedef enum {
        ACTISYS_PLUS_DONGLE,
        GIRBIL_DONGLE,
        LITELINK_DONGLE,
+       AIRPORT_DONGLE,
 } IRDA_DONGLE;
 
 struct irda_device;
index 3684d92858f7d62f6317941ccda24e7d51168a81..3d9538e727ed8e104311f06b3a6c6284be68897c 100644 (file)
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -68,6 +68,9 @@ static int findkey (key_t key)
        return -1;
 }
 
+int shmall = SHMALL;
+int shmall_max = SHMALL;
+
 /*
  * allocate new shmid_kernel and pgtable. protected by shm_segs[id] = NOID.
  */
@@ -79,7 +82,7 @@ static int newseg (key_t key, int shmflg, int size)
 
        if (size < SHMMIN)
                return -EINVAL;
-       if (shm_tot + numpages >= SHMALL)
+       if (shm_tot + numpages >= shmall)
                return -ENOSPC;
        for (id = 0; id < SHMMNI; id++)
                if (shm_segs[id] == IPC_UNUSED) {
@@ -233,7 +236,7 @@ asmlinkage int sys_shmctl (int shmid, int cmd, struct shmid_ds *buf)
                shminfo.shmmni = SHMMNI;
                shminfo.shmmax = shmmax;
                shminfo.shmmin = SHMMIN;
-               shminfo.shmall = SHMALL;
+               shminfo.shmall = shmall;
                shminfo.shmseg = SHMSEG;
                if(copy_to_user (buf, &shminfo, sizeof(struct shminfo)))
                        goto out;
index 100bfc96bf8be2ede83ac1775b9ca80363d3cc4c..759d1b40067fd281ed1594480a702a8ceed43054 100644 (file)
@@ -277,7 +277,7 @@ void exit_mm(struct task_struct *tsk)
  */
 static void exit_notify(void)
 {
-       struct task_struct * p;
+       struct task_struct * p, *t;
 
        forget_original_parent(current);
        /*
@@ -289,15 +289,30 @@ static void exit_notify(void)
         * and we were the only connection outside, so our pgrp
         * is about to become orphaned.
         */
-       if ((current->p_pptr->pgrp != current->pgrp) &&
-           (current->p_pptr->session == current->session) &&
+        
+       t = current->p_pptr;
+       
+       if ((t->pgrp != current->pgrp) &&
+           (t->session == current->session) &&
            will_become_orphaned_pgrp(current->pgrp, current) &&
            has_stopped_jobs(current->pgrp)) {
                kill_pg(current->pgrp,SIGHUP,1);
                kill_pg(current->pgrp,SIGCONT,1);
        }
 
-       /* Let father know we died */
+       /* Let father know we died 
+        *
+        * Thread signals are configurable, but you aren't going to use
+        * that to send signals to arbitary processes. 
+        * That stops right now.
+        */
+       
+       if(current->exit_signal != SIGCHLD &&
+           (current->euid ^ t->suid) && (current->euid ^ t->uid)
+           && (current->uid ^ t->suid) && (current->uid ^ t->uid)
+           && !capable(CAP_KILL))
+               current->exit_signal = SIGCHLD;
+
        notify_parent(current, current->exit_signal);
 
        /*
index a5f4c3a4fcc5688c72c42d17c693e1bc03beb50d..a474f38ac436be5e14df54872496f6ef3b335d20 100644 (file)
@@ -47,6 +47,8 @@ extern int sg_big_buff;
 #endif
 #ifdef CONFIG_SYSVIPC
 extern int shmmax;
+extern int shmall;
+extern int shmall_max;
 #endif
 
 #ifdef __sparc__
@@ -137,6 +139,8 @@ static void unregister_proc_table(ctl_table *, struct proc_dir_entry *);
 extern int inodes_stat[];
 extern int dentry_stat[];
 
+static int zero_value = 0;
+
 /* The default sysctl tables: */
 
 static ctl_table root_table[] = {
@@ -214,6 +218,9 @@ static ctl_table kern_table[] = {
 #ifdef CONFIG_SYSVIPC
        {KERN_SHMMAX, "shmmax", &shmmax, sizeof (int),
         0644, NULL, &proc_dointvec},
+       {KERN_SHMALL, "shmall", &shmall, sizeof (int),
+        0644, NULL, &proc_dointvec_minmax, &sysctl_intvec,
+        NULL, &zero_value, &shmall_max},
 #endif
 #ifdef CONFIG_MAGIC_SYSRQ
        {KERN_SYSRQ, "sysrq", &sysrq_enabled, sizeof (int),
index f6ae5e6774f3be35c43fd815c523b0ce5bb443a6..e0513541cefa809542eb64a8aea686921aa45dfe 100644 (file)
@@ -95,6 +95,7 @@
  *     AX.25 037       Jonathan(G4KLX)         New timer architecture.
  *      AX.25 038       Matthias(DG2FEF)        Small fixes to the syscall interface to make kernel
  *                                              independent of AX25_MAX_DIGIS used by applications.
+ *                      Tomi(OH2BNS)            Fixed ax25_getname().
  */
 
 #include <linux/config.h>
@@ -1278,37 +1279,34 @@ static int ax25_accept(struct socket *sock, struct socket *newsock, int flags)
 static int ax25_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len, int peer)
 {
        struct sock *sk = sock->sk;
+       struct full_sockaddr_ax25 *fsa = (struct full_sockaddr_ax25 *)uaddr;
        unsigned char ndigi, i;
-       struct full_sockaddr_ax25 fsa;
 
        if (peer != 0) {
                if (sk->state != TCP_ESTABLISHED)
                        return -ENOTCONN;
 
-               fsa.fsa_ax25.sax25_family = AF_AX25;
-               fsa.fsa_ax25.sax25_call   = sk->protinfo.ax25->dest_addr;
-               fsa.fsa_ax25.sax25_ndigis = 0;
+               fsa->fsa_ax25.sax25_family = AF_AX25;
+               fsa->fsa_ax25.sax25_call   = sk->protinfo.ax25->dest_addr;
+               fsa->fsa_ax25.sax25_ndigis = 0;
 
                if (sk->protinfo.ax25->digipeat != NULL) {
                        ndigi = sk->protinfo.ax25->digipeat->ndigi;
-                       fsa.fsa_ax25.sax25_ndigis = ndigi;
+                       fsa->fsa_ax25.sax25_ndigis = ndigi;
                        for (i = 0; i < ndigi; i++)
-                               fsa.fsa_digipeater[i] = sk->protinfo.ax25->digipeat->calls[i];
+                               fsa->fsa_digipeater[i] = sk->protinfo.ax25->digipeat->calls[i];
                }
        } else {
-               fsa.fsa_ax25.sax25_family = AF_AX25;
-               fsa.fsa_ax25.sax25_call   = sk->protinfo.ax25->source_addr;
-               fsa.fsa_ax25.sax25_ndigis = 1;
+               fsa->fsa_ax25.sax25_family = AF_AX25;
+               fsa->fsa_ax25.sax25_call   = sk->protinfo.ax25->source_addr;
+               fsa->fsa_ax25.sax25_ndigis = 1;
                if (sk->protinfo.ax25->ax25_dev != NULL) {
-                       memcpy(&fsa.fsa_digipeater[0], sk->protinfo.ax25->ax25_dev->dev->dev_addr, AX25_ADDR_LEN);
+                       memcpy(&fsa->fsa_digipeater[0], sk->protinfo.ax25->ax25_dev->dev->dev_addr, AX25_ADDR_LEN);
                } else {
-                       fsa.fsa_digipeater[0] = null_ax25_address;
+                       fsa->fsa_digipeater[0] = null_ax25_address;
                }
        }
-       if (*uaddr_len > sizeof (struct full_sockaddr_ax25))
-               *uaddr_len = sizeof (struct full_sockaddr_ax25);
-       memcpy(uaddr, &fsa, *uaddr_len);
-
+       *uaddr_len = sizeof (struct full_sockaddr_ax25);
        return 0;
 }
 
index ed6fd7fc28718a5661e82a5cdf4ad809134f6d8c..1aa76359b3973bf6edb3d10e299fd98f12904fb3 100644 (file)
@@ -22,6 +22,7 @@
  *                     Joerg(DL1BKE)   Fixed DAMA Slave. We are *required* to start with
  *                                     standard AX.25 mode.
  *     AX.25 037       Jonathan(G4KLX) New timer architecture.
+ *                      Tomi(OH2BNS)    Fixed heartbeat expiry (check ax25_dev).
  */
 
 #include <linux/config.h>
@@ -153,8 +154,12 @@ unsigned long ax25_display_timer(struct timer_list *timer)
 static void ax25_heartbeat_expiry(unsigned long param)
 {
        ax25_cb *ax25 = (ax25_cb *)param;
+       int proto = AX25_PROTO_STD_SIMPLEX;
 
-       switch (ax25->ax25_dev->values[AX25_VALUES_PROTOCOL]) {
+       if (ax25->ax25_dev)
+               proto = ax25->ax25_dev->values[AX25_VALUES_PROTOCOL];
+
+       switch (proto) {
                case AX25_PROTO_STD_SIMPLEX:
                case AX25_PROTO_STD_DUPLEX:
                        ax25_std_heartbeat_expiry(ax25);
index 007cb87389c5c0c9be5cb71e461a5f40908e5fd2..de9b867c4f9934bf2e477309fe3b51dba29226e2 100644 (file)
@@ -11,6 +11,7 @@
  *
  *     History
  *     NET/ROM 007     Tomi(OH2BNS)    Created this file.
+ *                                      Small change in nr_loopback_queue().
  *
  */
 
@@ -44,17 +45,17 @@ int nr_loopback_queue(struct sk_buff *skb)
 {
        struct sk_buff *skbn;
 
-       skbn = skb_clone(skb, GFP_ATOMIC);
+       if ((skbn = alloc_skb(skb->len, GFP_ATOMIC)) != NULL) {
+               memcpy(skb_put(skbn, skb->len), skb->data, skb->len);
+               skbn->h.raw = skbn->data;
 
-       kfree_skb(skb);
-
-       if (skbn != NULL) {
                skb_queue_tail(&loopback_queue, skbn);
 
                if (!nr_loopback_running())
                        nr_set_loopback_timer();
        }
 
+       kfree_skb(skb);
        return 1;
 }
 
index acba673958289e3e6fd3bcc52effb9fbcf468f4e..7264bc6f3c19fb18e59fabca10d827256a222491 100644 (file)
@@ -20,6 +20,7 @@
  *     ROSE 003        Jonathan(G4KLX) New timer architecture.
  *                                     Implemented idle timer.
  *                                     Added use count to neighbour.
+ *                      Tomi(OH2BNS)    Fixed rose_getname().
  */
 
 #include <linux/config.h>
@@ -898,7 +899,7 @@ static int rose_accept(struct socket *sock, struct socket *newsock, int flags)
 static int rose_getname(struct socket *sock, struct sockaddr *uaddr,
        int *uaddr_len, int peer)
 {
-       struct sockaddr_rose *srose = (struct sockaddr_rose *)uaddr;
+       struct full_sockaddr_rose *srose = (struct full_sockaddr_rose *)uaddr;
        struct sock *sk = sock->sk;
        int n;
 
@@ -906,42 +907,21 @@ static int rose_getname(struct socket *sock, struct sockaddr *uaddr,
                if (sk->state != TCP_ESTABLISHED)
                        return -ENOTCONN;
                srose->srose_family = AF_ROSE;
-               srose->srose_ndigis = 0;
                srose->srose_addr   = sk->protinfo.rose->dest_addr;
                srose->srose_call   = sk->protinfo.rose->dest_call;
                srose->srose_ndigis = sk->protinfo.rose->dest_ndigis;
-               if (*uaddr_len >= sizeof(struct full_sockaddr_rose)) {
-                       struct full_sockaddr_rose *full_srose = (struct full_sockaddr_rose *)uaddr;
-                       for (n = 0 ; n < sk->protinfo.rose->dest_ndigis ; n++)
-                               full_srose->srose_digis[n] = sk->protinfo.rose->dest_digis[n];
-                       *uaddr_len = sizeof(struct full_sockaddr_rose);
-               } else {
-                       if (sk->protinfo.rose->dest_ndigis >= 1) {
-                               srose->srose_ndigis = 1;
-                               srose->srose_digi = sk->protinfo.rose->dest_digis[0];
-                       }
-                       *uaddr_len = sizeof(struct sockaddr_rose);
-               }
+               for (n = 0 ; n < sk->protinfo.rose->dest_ndigis ; n++)
+                       srose->srose_digis[n] = sk->protinfo.rose->dest_digis[n];
        } else {
                srose->srose_family = AF_ROSE;
-               srose->srose_ndigis = 0;
                srose->srose_addr   = sk->protinfo.rose->source_addr;
                srose->srose_call   = sk->protinfo.rose->source_call;
                srose->srose_ndigis = sk->protinfo.rose->source_ndigis;
-               if (*uaddr_len >= sizeof(struct full_sockaddr_rose)) {
-                       struct full_sockaddr_rose *full_srose = (struct full_sockaddr_rose *)uaddr;
-                       for (n = 0 ; n < sk->protinfo.rose->source_ndigis ; n++)
-                               full_srose->srose_digis[n] = sk->protinfo.rose->source_digis[n];
-                       *uaddr_len = sizeof(struct full_sockaddr_rose);
-               } else {
-                       if (sk->protinfo.rose->source_ndigis >= 1) {
-                               srose->srose_ndigis = 1;
-                               srose->srose_digi = sk->protinfo.rose->source_digis[sk->protinfo.rose->source_ndigis-1];
-                       }
-                       *uaddr_len = sizeof(struct sockaddr_rose);
-               }
+               for (n = 0 ; n < sk->protinfo.rose->source_ndigis ; n++)
+                       srose->srose_digis[n] = sk->protinfo.rose->source_digis[n];
        }
 
+       *uaddr_len = sizeof(struct full_sockaddr_rose);
        return 0;
 }