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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* pcnet32.c: An AMD PCnet32 ethernet driver for linux. */
  2. /*
  3.  * Copyright 1996-1999 Thomas Bogendoerfer
  4.  * 
  5.  * Derived from the lance driver written 1993,1994,1995 by Donald Becker.
  6.  * 
  7.  * Copyright 1993 United States Government as represented by the
  8.  * Director, National Security Agency.
  9.  * 
  10.  * This software may be used and distributed according to the terms
  11.  * of the GNU General Public License, incorporated herein by reference.
  12.  *
  13.  * This driver is for PCnet32 and PCnetPCI based ethercards
  14.  */
  15. /**************************************************************************
  16.  *  23 Oct, 2000.
  17.  *  Fixed a few bugs, related to running the controller in 32bit mode.
  18.  *
  19.  *  Carsten Langgaard, carstenl@mips.com
  20.  *  Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  21.  *
  22.  *************************************************************************/
  23. #define DRV_NAME "pcnet32"
  24. #define DRV_VERSION "1.27b"
  25. #define DRV_RELDATE "01.10.2002"
  26. #define PFX DRV_NAME ": "
  27. static const char *version =
  28. DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " tsbogend@alpha.franken.den";
  29. #include <linux/module.h>
  30. #include <linux/kernel.h>
  31. #include <linux/sched.h>
  32. #include <linux/string.h>
  33. #include <linux/ptrace.h>
  34. #include <linux/errno.h>
  35. #include <linux/ioport.h>
  36. #include <linux/slab.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/pci.h>
  39. #include <linux/delay.h>
  40. #include <linux/init.h>
  41. #include <linux/ethtool.h>
  42. #include <linux/mii.h>
  43. #include <linux/crc32.h>
  44. #include <asm/bitops.h>
  45. #include <asm/io.h>
  46. #include <asm/dma.h>
  47. #include <asm/uaccess.h>
  48. #include <linux/netdevice.h>
  49. #include <linux/etherdevice.h>
  50. #include <linux/skbuff.h>
  51. #include <linux/spinlock.h>
  52. /*
  53.  * PCI device identifiers for "new style" Linux PCI Device Drivers
  54.  */
  55. static struct pci_device_id pcnet32_pci_tbl[] __devinitdata = {
  56.     { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE_HOME, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  57.     { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  58.     { 0, }
  59. };
  60. MODULE_DEVICE_TABLE (pci, pcnet32_pci_tbl);
  61. int cards_found __initdata;
  62. /* 
  63.  * VLB I/O addresses 
  64.  */
  65. static unsigned int pcnet32_portlist[] __initdata = 
  66. { 0x300, 0x320, 0x340, 0x360, 0 };
  67. static int pcnet32_debug = 1;
  68. static int tx_start = 1; /* Mapping -- 0:20, 1:64, 2:128, 3:~220 (depends on chip vers) */
  69. static int pcnet32vlb;  /* check for VLB cards ? */
  70. static struct net_device *pcnet32_dev;
  71. static int max_interrupt_work = 80;
  72. static int rx_copybreak = 200;
  73. #define PCNET32_PORT_AUI      0x00
  74. #define PCNET32_PORT_10BT     0x01
  75. #define PCNET32_PORT_GPSI     0x02
  76. #define PCNET32_PORT_MII      0x03
  77. #define PCNET32_PORT_PORTSEL  0x03
  78. #define PCNET32_PORT_ASEL     0x04
  79. #define PCNET32_PORT_100      0x40
  80. #define PCNET32_PORT_FD       0x80
  81. #define PCNET32_DMA_MASK 0xffffffff
  82. #define PCNET32_WATCHDOG_TIMEOUT (jiffies + (2 * HZ))
  83. /*
  84.  * table to translate option values from tulip
  85.  * to internal options
  86.  */
  87. static unsigned char options_mapping[] = {
  88.     PCNET32_PORT_ASEL,    /*  0 Auto-select   */
  89.     PCNET32_PORT_AUI,    /*  1 BNC/AUI   */
  90.     PCNET32_PORT_AUI,    /*  2 AUI/BNC   */ 
  91.     PCNET32_PORT_ASEL,    /*  3 not supported   */
  92.     PCNET32_PORT_10BT | PCNET32_PORT_FD,   /*  4 10baseT-FD   */
  93.     PCNET32_PORT_ASEL,    /*  5 not supported   */
  94.     PCNET32_PORT_ASEL,    /*  6 not supported   */
  95.     PCNET32_PORT_ASEL,    /*  7 not supported   */
  96.     PCNET32_PORT_ASEL,    /*  8 not supported   */
  97.     PCNET32_PORT_MII,    /*  9 MII 10baseT   */
  98.     PCNET32_PORT_MII | PCNET32_PORT_FD,    /* 10 MII 10baseT-FD   */
  99.     PCNET32_PORT_MII,    /* 11 MII (autosel)   */
  100.     PCNET32_PORT_10BT,    /* 12 10BaseT   */
  101.     PCNET32_PORT_MII | PCNET32_PORT_100,   /* 13 MII 100BaseTx   */
  102.     PCNET32_PORT_MII | PCNET32_PORT_100 | PCNET32_PORT_FD, /* 14 MII 100BaseTx-FD */
  103.     PCNET32_PORT_ASEL    /* 15 not supported   */
  104. };
  105. #define MAX_UNITS 8 /* More are supported, limit only on options */
  106. static int options[MAX_UNITS];
  107. static int full_duplex[MAX_UNITS];
  108. /*
  109.  * Theory of Operation
  110.  * 
  111.  * This driver uses the same software structure as the normal lance
  112.  * driver. So look for a verbose description in lance.c. The differences
  113.  * to the normal lance driver is the use of the 32bit mode of PCnet32
  114.  * and PCnetPCI chips. Because these chips are 32bit chips, there is no
  115.  * 16MB limitation and we don't need bounce buffers.
  116.  */
  117.  
  118. /*
  119.  * History:
  120.  * v0.01:  Initial version
  121.  *    only tested on Alpha Noname Board
  122.  * v0.02:  changed IRQ handling for new interrupt scheme (dev_id)
  123.  *    tested on a ASUS SP3G
  124.  * v0.10:  fixed an odd problem with the 79C974 in a Compaq Deskpro XL
  125.  *    looks like the 974 doesn't like stopping and restarting in a
  126.  *    short period of time; now we do a reinit of the lance; the
  127.  *    bug was triggered by doing ifconfig eth0 <ip> broadcast <addr>
  128.  *    and hangs the machine (thanks to Klaus Liedl for debugging)
  129.  * v0.12:  by suggestion from Donald Becker: Renamed driver to pcnet32,
  130.  *    made it standalone (no need for lance.c)
  131.  * v0.13:  added additional PCI detecting for special PCI devices (Compaq)
  132.  * v0.14:  stripped down additional PCI probe (thanks to David C Niemi
  133.  *    and sveneric@xs4all.nl for testing this on their Compaq boxes)
  134.  * v0.15:  added 79C965 (VLB) probe
  135.  *    added interrupt sharing for PCI chips
  136.  * v0.16:  fixed set_multicast_list on Alpha machines
  137.  * v0.17:  removed hack from dev.c; now pcnet32 uses ethif_probe in Space.c
  138.  * v0.19:  changed setting of autoselect bit
  139.  * v0.20:  removed additional Compaq PCI probe; there is now a working one
  140.  *    in arch/i386/bios32.c
  141.  * v0.21:  added endian conversion for ppc, from work by cort@cs.nmt.edu
  142.  * v0.22:  added printing of status to ring dump
  143.  * v0.23:  changed enet_statistics to net_devive_stats
  144.  * v0.90:  added multicast filter
  145.  *    added module support
  146.  *    changed irq probe to new style
  147.  *    added PCnetFast chip id
  148.  *    added fix for receive stalls with Intel saturn chipsets
  149.  *    added in-place rx skbs like in the tulip driver
  150.  *    minor cleanups
  151.  * v0.91:  added PCnetFast+ chip id
  152.  *    back port to 2.0.x
  153.  * v1.00:  added some stuff from Donald Becker's 2.0.34 version
  154.  *    added support for byte counters in net_dev_stats
  155.  * v1.01:  do ring dumps, only when debugging the driver
  156.  *    increased the transmit timeout
  157.  * v1.02:  fixed memory leak in pcnet32_init_ring()
  158.  * v1.10:  workaround for stopped transmitter
  159.  *    added port selection for modules
  160.  *    detect special T1/E1 WAN card and setup port selection
  161.  * v1.11:  fixed wrong checking of Tx errors
  162.  * v1.20:  added check of return value kmalloc (cpeterso@cs.washington.edu)
  163.  *    added save original kmalloc addr for freeing (mcr@solidum.com)
  164.  *    added support for PCnetHome chip (joe@MIT.EDU)
  165.  *    rewritten PCI card detection
  166.  *    added dwio mode to get driver working on some PPC machines
  167.  * v1.21:  added mii selection and mii ioctl
  168.  * v1.22:  changed pci scanning code to make PPC people happy
  169.  *    fixed switching to 32bit mode in pcnet32_open() (thanks
  170.  *    to Michael Richard <mcr@solidum.com> for noticing this one)
  171.  *    added sub vendor/device id matching (thanks again to 
  172.  *    Michael Richard <mcr@solidum.com>)
  173.  *    added chip id for 79c973/975 (thanks to Zach Brown <zab@zabbo.net>)
  174.  * v1.23   fixed small bug, when manual selecting MII speed/duplex
  175.  * v1.24   Applied Thomas' patch to use TxStartPoint and thus decrease TxFIFO
  176.  *    underflows. Added tx_start_pt module parameter. Increased
  177.  *    TX_RING_SIZE from 16 to 32. Added #ifdef'd code to use DXSUFLO
  178.  *    for FAST[+] chipsets. <kaf@fc.hp.com>
  179.  * v1.24ac Added SMP spinlocking - Alan Cox <alan@redhat.com>
  180.  * v1.25kf Added No Interrupt on successful Tx for some Tx's <kaf@fc.hp.com>
  181.  * v1.26   Converted to pci_alloc_consistent, Jamey Hicks / George France
  182.  *                                           <jamey@crl.dec.com>
  183.  * -    Fixed a few bugs, related to running the controller in 32bit mode.
  184.  *    23 Oct, 2000.  Carsten Langgaard, carstenl@mips.com
  185.  *    Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  186.  * v1.26p  Fix oops on rmmod+insmod; plug i/o resource leak - Paul Gortmaker
  187.  * v1.27   improved CSR/PROM address detection, lots of cleanups,
  188.  *     new pcnet32vlb module option, HP-PARISC support,
  189.  *     added module parameter descriptions, 
  190.  *     initial ethtool support - Helge Deller <deller@gmx.de>
  191.  * v1.27a  Sun Feb 10 2002 Go Taniguchi <go@turbolinux.co.jp>
  192.  *    use alloc_etherdev and register_netdev
  193.  *    fix pci probe not increment cards_found
  194.  *    FD auto negotiate error workaround for xSeries250
  195.  *    clean up and using new mii module
  196.  * v1.27b  Sep 30 2002 Kent Yoder <yoder1@us.ibm.com>
  197.  *     Added timer for cable connection state changes.
  198.  */
  199. /*
  200.  * Set the number of Tx and Rx buffers, using Log_2(# buffers).
  201.  * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
  202.  * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
  203.  */
  204. #ifndef PCNET32_LOG_TX_BUFFERS
  205. #define PCNET32_LOG_TX_BUFFERS 4
  206. #define PCNET32_LOG_RX_BUFFERS 5
  207. #endif
  208. #define TX_RING_SIZE (1 << (PCNET32_LOG_TX_BUFFERS))
  209. #define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
  210. #define TX_RING_LEN_BITS ((PCNET32_LOG_TX_BUFFERS) << 12)
  211. #define RX_RING_SIZE (1 << (PCNET32_LOG_RX_BUFFERS))
  212. #define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
  213. #define RX_RING_LEN_BITS ((PCNET32_LOG_RX_BUFFERS) << 4)
  214. #define PKT_BUF_SZ 1544
  215. /* Offsets from base I/O address. */
  216. #define PCNET32_WIO_RDP 0x10
  217. #define PCNET32_WIO_RAP 0x12
  218. #define PCNET32_WIO_RESET 0x14
  219. #define PCNET32_WIO_BDP 0x16
  220. #define PCNET32_DWIO_RDP 0x10
  221. #define PCNET32_DWIO_RAP 0x14
  222. #define PCNET32_DWIO_RESET 0x18
  223. #define PCNET32_DWIO_BDP 0x1C
  224. #define PCNET32_TOTAL_SIZE 0x20
  225. /* The PCNET32 Rx and Tx ring descriptors. */
  226. struct pcnet32_rx_head {
  227.     u32 base;
  228.     s16 buf_length;
  229.     s16 status;    
  230.     u32 msg_length;
  231.     u32 reserved;
  232. };
  233. struct pcnet32_tx_head {
  234.     u32 base;
  235.     s16 length;
  236.     s16 status;
  237.     u32 misc;
  238.     u32 reserved;
  239. };
  240. /* The PCNET32 32-Bit initialization block, described in databook. */
  241. struct pcnet32_init_block {
  242.     u16 mode;
  243.     u16 tlen_rlen;
  244.     u8 phys_addr[6];
  245.     u16 reserved;
  246.     u32 filter[2];
  247.     /* Receive and transmit ring base, along with extra bits. */    
  248.     u32 rx_ring;
  249.     u32 tx_ring;
  250. };
  251. /* PCnet32 access functions */
  252. struct pcnet32_access {
  253.     u16 (*read_csr)(unsigned long, int);
  254.     void (*write_csr)(unsigned long, int, u16);
  255.     u16 (*read_bcr)(unsigned long, int);
  256.     void (*write_bcr)(unsigned long, int, u16);
  257.     u16 (*read_rap)(unsigned long);
  258.     void (*write_rap)(unsigned long, u16);
  259.     void (*reset)(unsigned long);
  260. };
  261. /*
  262.  * The first three fields of pcnet32_private are read by the ethernet device 
  263.  * so we allocate the structure should be allocated by pci_alloc_consistent().
  264.  */
  265. struct pcnet32_private {
  266.     /* The Tx and Rx ring entries must be aligned on 16-byte boundaries in 32bit mode. */
  267.     struct pcnet32_rx_head    rx_ring[RX_RING_SIZE];
  268.     struct pcnet32_tx_head    tx_ring[TX_RING_SIZE];
  269.     struct pcnet32_init_block init_block;
  270.     dma_addr_t  dma_addr; /* DMA address of beginning of this object, 
  271.    returned by pci_alloc_consistent */
  272.     struct pci_dev *pci_dev; /* Pointer to the associated pci device structure */
  273.     const char *name;
  274.     /* The saved address of a sent-in-place packet/buffer, for skfree(). */
  275.     struct sk_buff *tx_skbuff[TX_RING_SIZE];
  276.     struct sk_buff *rx_skbuff[RX_RING_SIZE];
  277.     dma_addr_t tx_dma_addr[TX_RING_SIZE];
  278.     dma_addr_t rx_dma_addr[RX_RING_SIZE];
  279.     struct pcnet32_access a;
  280.     spinlock_t lock; /* Guard lock */
  281.     unsigned int cur_rx, cur_tx; /* The next free ring entry */
  282.     unsigned int dirty_rx, dirty_tx; /* The ring entries to be free()ed. */
  283.     struct net_device_stats stats;
  284.     char tx_full;
  285.     int options;
  286.     int shared_irq:1, /* shared irq possible */
  287. ltint:1, /* enable TxDone-intr inhibitor */
  288. dxsuflo:1, /* disable transmit stop on uflo */
  289. mii:1; /* mii port available */
  290.     struct net_device *next;
  291.     struct mii_if_info mii_if;
  292.     struct timer_list watchdog_timer;
  293. };
  294. static void pcnet32_probe_vlbus(void);
  295. static int  pcnet32_probe_pci(struct pci_dev *, const struct pci_device_id *);
  296. static int  pcnet32_probe1(unsigned long, unsigned int, int, struct pci_dev *);
  297. static int  pcnet32_open(struct net_device *);
  298. static int  pcnet32_init_ring(struct net_device *);
  299. static int  pcnet32_start_xmit(struct sk_buff *, struct net_device *);
  300. static int  pcnet32_rx(struct net_device *);
  301. static void pcnet32_tx_timeout (struct net_device *dev);
  302. static void pcnet32_interrupt(int, void *, struct pt_regs *);
  303. static int  pcnet32_close(struct net_device *);
  304. static struct net_device_stats *pcnet32_get_stats(struct net_device *);
  305. static void pcnet32_set_multicast_list(struct net_device *);
  306. static int  pcnet32_ioctl(struct net_device *, struct ifreq *, int);
  307. static void pcnet32_watchdog(struct net_device *);
  308. static int mdio_read(struct net_device *dev, int phy_id, int reg_num);
  309. static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val);
  310. enum pci_flags_bit {
  311.     PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
  312.     PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
  313. };
  314. static u16 pcnet32_wio_read_csr (unsigned long addr, int index)
  315. {
  316.     outw (index, addr+PCNET32_WIO_RAP);
  317.     return inw (addr+PCNET32_WIO_RDP);
  318. }
  319. static void pcnet32_wio_write_csr (unsigned long addr, int index, u16 val)
  320. {
  321.     outw (index, addr+PCNET32_WIO_RAP);
  322.     outw (val, addr+PCNET32_WIO_RDP);
  323. }
  324. static u16 pcnet32_wio_read_bcr (unsigned long addr, int index)
  325. {
  326.     outw (index, addr+PCNET32_WIO_RAP);
  327.     return inw (addr+PCNET32_WIO_BDP);
  328. }
  329. static void pcnet32_wio_write_bcr (unsigned long addr, int index, u16 val)
  330. {
  331.     outw (index, addr+PCNET32_WIO_RAP);
  332.     outw (val, addr+PCNET32_WIO_BDP);
  333. }
  334. static u16 pcnet32_wio_read_rap (unsigned long addr)
  335. {
  336.     return inw (addr+PCNET32_WIO_RAP);
  337. }
  338. static void pcnet32_wio_write_rap (unsigned long addr, u16 val)
  339. {
  340.     outw (val, addr+PCNET32_WIO_RAP);
  341. }
  342. static void pcnet32_wio_reset (unsigned long addr)
  343. {
  344.     inw (addr+PCNET32_WIO_RESET);
  345. }
  346. static int pcnet32_wio_check (unsigned long addr)
  347. {
  348.     outw (88, addr+PCNET32_WIO_RAP);
  349.     return (inw (addr+PCNET32_WIO_RAP) == 88);
  350. }
  351. static struct pcnet32_access pcnet32_wio = {
  352.     read_csr: pcnet32_wio_read_csr,
  353.     write_csr: pcnet32_wio_write_csr,
  354.     read_bcr: pcnet32_wio_read_bcr,
  355.     write_bcr: pcnet32_wio_write_bcr,
  356.     read_rap: pcnet32_wio_read_rap,
  357.     write_rap: pcnet32_wio_write_rap,
  358.     reset: pcnet32_wio_reset
  359. };
  360. static u16 pcnet32_dwio_read_csr (unsigned long addr, int index)
  361. {
  362.     outl (index, addr+PCNET32_DWIO_RAP);
  363.     return (inl (addr+PCNET32_DWIO_RDP) & 0xffff);
  364. }
  365. static void pcnet32_dwio_write_csr (unsigned long addr, int index, u16 val)
  366. {
  367.     outl (index, addr+PCNET32_DWIO_RAP);
  368.     outl (val, addr+PCNET32_DWIO_RDP);
  369. }
  370. static u16 pcnet32_dwio_read_bcr (unsigned long addr, int index)
  371. {
  372.     outl (index, addr+PCNET32_DWIO_RAP);
  373.     return (inl (addr+PCNET32_DWIO_BDP) & 0xffff);
  374. }
  375. static void pcnet32_dwio_write_bcr (unsigned long addr, int index, u16 val)
  376. {
  377.     outl (index, addr+PCNET32_DWIO_RAP);
  378.     outl (val, addr+PCNET32_DWIO_BDP);
  379. }
  380. static u16 pcnet32_dwio_read_rap (unsigned long addr)
  381. {
  382.     return (inl (addr+PCNET32_DWIO_RAP) & 0xffff);
  383. }
  384. static void pcnet32_dwio_write_rap (unsigned long addr, u16 val)
  385. {
  386.     outl (val, addr+PCNET32_DWIO_RAP);
  387. }
  388. static void pcnet32_dwio_reset (unsigned long addr)
  389. {
  390.     inl (addr+PCNET32_DWIO_RESET);
  391. }
  392. static int pcnet32_dwio_check (unsigned long addr)
  393. {
  394.     outl (88, addr+PCNET32_DWIO_RAP);
  395.     return ((inl (addr+PCNET32_DWIO_RAP) & 0xffff) == 88);
  396. }
  397. static struct pcnet32_access pcnet32_dwio = {
  398.     read_csr: pcnet32_dwio_read_csr,
  399.     write_csr: pcnet32_dwio_write_csr,
  400.     read_bcr: pcnet32_dwio_read_bcr,
  401.     write_bcr: pcnet32_dwio_write_bcr,
  402.     read_rap: pcnet32_dwio_read_rap,
  403.     write_rap: pcnet32_dwio_write_rap,
  404.     reset: pcnet32_dwio_reset
  405. };
  406. /* only probes for non-PCI devices, the rest are handled by 
  407.  * pci_register_driver via pcnet32_probe_pci */
  408. static void __devinit
  409. pcnet32_probe_vlbus(void)
  410. {
  411.     unsigned int *port, ioaddr;
  412.     
  413.     /* search for PCnet32 VLB cards at known addresses */
  414.     for (port = pcnet32_portlist; (ioaddr = *port); port++) {
  415. if (!check_region(ioaddr, PCNET32_TOTAL_SIZE)) {
  416.     /* check if there is really a pcnet chip on that ioaddr */
  417.     if ((inb(ioaddr + 14) == 0x57) && (inb(ioaddr + 15) == 0x57))
  418. pcnet32_probe1(ioaddr, 0, 0, NULL);
  419. }
  420.     }
  421. }
  422. static int __devinit
  423. pcnet32_probe_pci(struct pci_dev *pdev, const struct pci_device_id *ent)
  424. {
  425.     unsigned long ioaddr;
  426.     int err;
  427.     err = pci_enable_device(pdev);
  428.     if (err < 0) {
  429. printk(KERN_ERR PFX "failed to enable device -- err=%dn", err);
  430. return err;
  431.     }
  432.     pci_set_master(pdev);
  433.     ioaddr = pci_resource_start (pdev, 0);
  434.     if (!ioaddr) {
  435.         printk (KERN_ERR PFX "card has no PCI IO resources, abortingn");
  436.         return -ENODEV;
  437.     }
  438.     
  439.     if (!pci_dma_supported(pdev, PCNET32_DMA_MASK)) {
  440. printk(KERN_ERR PFX "architecture does not support 32bit PCI busmaster DMAn");
  441. return -ENODEV;
  442.     }
  443.     return pcnet32_probe1(ioaddr, pdev->irq, 1, pdev);
  444. }
  445. /* pcnet32_probe1 
  446.  *  Called from both pcnet32_probe_vlbus and pcnet_probe_pci.  
  447.  *  pdev will be NULL when called from pcnet32_probe_vlbus.
  448.  */
  449. static int __devinit
  450. pcnet32_probe1(unsigned long ioaddr, unsigned int irq_line, int shared,
  451. struct pci_dev *pdev)
  452. {
  453.     struct pcnet32_private *lp;
  454.     dma_addr_t lp_dma_addr;
  455.     int i, media;
  456.     int fdx, mii, fset, dxsuflo, ltint;
  457.     int chip_version;
  458.     char *chipname;
  459.     struct net_device *dev;
  460.     struct pcnet32_access *a = NULL;
  461.     u8 promaddr[6];
  462.     /* reset the chip */
  463.     pcnet32_wio_reset(ioaddr);
  464.     /* NOTE: 16-bit check is first, otherwise some older PCnet chips fail */
  465.     if (pcnet32_wio_read_csr(ioaddr, 0) == 4 && pcnet32_wio_check(ioaddr)) {
  466. a = &pcnet32_wio;
  467.     } else {
  468. pcnet32_dwio_reset(ioaddr);
  469. if (pcnet32_dwio_read_csr(ioaddr, 0) == 4 && pcnet32_dwio_check(ioaddr)) {
  470.     a = &pcnet32_dwio;
  471. } else
  472.     return -ENODEV;
  473.     }
  474.     chip_version = a->read_csr(ioaddr, 88) | (a->read_csr(ioaddr,89) << 16);
  475.     if (pcnet32_debug > 2)
  476. printk(KERN_INFO "  PCnet chip version is %#x.n", chip_version);
  477.     if ((chip_version & 0xfff) != 0x003)
  478. return -ENODEV;
  479.     
  480.     /* initialize variables */
  481.     fdx = mii = fset = dxsuflo = ltint = 0;
  482.     chip_version = (chip_version >> 12) & 0xffff;
  483.     switch (chip_version) {
  484.     case 0x2420:
  485. chipname = "PCnet/PCI 79C970"; /* PCI */
  486. break;
  487.     case 0x2430:
  488. if (shared)
  489.     chipname = "PCnet/PCI 79C970"; /* 970 gives the wrong chip id back */
  490. else
  491.     chipname = "PCnet/32 79C965"; /* 486/VL bus */
  492. break;
  493.     case 0x2621:
  494. chipname = "PCnet/PCI II 79C970A"; /* PCI */
  495. fdx = 1;
  496. break;
  497.     case 0x2623:
  498. chipname = "PCnet/FAST 79C971"; /* PCI */
  499. fdx = 1; mii = 1; fset = 1;
  500. ltint = 1;
  501. break;
  502.     case 0x2624:
  503. chipname = "PCnet/FAST+ 79C972"; /* PCI */
  504. fdx = 1; mii = 1; fset = 1;
  505. break;
  506.     case 0x2625:
  507. chipname = "PCnet/FAST III 79C973"; /* PCI */
  508. fdx = 1; mii = 1;
  509. break;
  510.     case 0x2626:
  511. chipname = "PCnet/Home 79C978"; /* PCI */
  512. fdx = 1;
  513. /* 
  514.  * This is based on specs published at www.amd.com.  This section
  515.  * assumes that a card with a 79C978 wants to go into 1Mb HomePNA
  516.  * mode.  The 79C978 can also go into standard ethernet, and there
  517.  * probably should be some sort of module option to select the
  518.  * mode by which the card should operate
  519.  */
  520. /* switch to home wiring mode */
  521. media = a->read_bcr(ioaddr, 49);
  522. #if 0
  523. if (pcnet32_debug > 2)
  524.     printk(KERN_DEBUG PFX "media value %#x.n",  media);
  525. media &= ~3;
  526. media |= 1;
  527. #endif
  528. if (pcnet32_debug > 2)
  529.     printk(KERN_DEBUG PFX "media reset to %#x.n",  media);
  530. a->write_bcr(ioaddr, 49, media);
  531. break;
  532.     case 0x2627:
  533. chipname = "PCnet/FAST III 79C975"; /* PCI */
  534. fdx = 1; mii = 1;
  535. break;
  536.     default:
  537. printk(KERN_INFO PFX "PCnet version %#x, no PCnet32 chip.n",
  538. chip_version);
  539. return -ENODEV;
  540.     }
  541.     /*
  542.      * On selected chips turn on the BCR18:NOUFLO bit. This stops transmit
  543.      * starting until the packet is loaded. Strike one for reliability, lose
  544.      * one for latency - although on PCI this isnt a big loss. Older chips 
  545.      * have FIFO's smaller than a packet, so you can't do this.
  546.      */
  547.  
  548.     if(fset)
  549.     {
  550. a->write_bcr(ioaddr, 18, (a->read_bcr(ioaddr, 18) | 0x0800));
  551. a->write_csr(ioaddr, 80, (a->read_csr(ioaddr, 80) & 0x0C00) | 0x0c00);
  552. dxsuflo = 1;
  553. ltint = 1;
  554.     }
  555.     
  556.     dev = alloc_etherdev(0);
  557.     if(!dev)
  558. return -ENOMEM;
  559.     printk(KERN_INFO PFX "%s at %#3lx,", chipname, ioaddr);
  560.     /* In most chips, after a chip reset, the ethernet address is read from the
  561.      * station address PROM at the base address and programmed into the
  562.      * "Physical Address Registers" CSR12-14.
  563.      * As a precautionary measure, we read the PROM values and complain if
  564.      * they disagree with the CSRs.  Either way, we use the CSR values, and
  565.      * double check that they are valid.
  566.      */
  567.     for (i = 0; i < 3; i++) {
  568. unsigned int val;
  569. val = a->read_csr(ioaddr, i+12) & 0x0ffff;
  570. /* There may be endianness issues here. */
  571. dev->dev_addr[2*i] = val & 0x0ff;
  572. dev->dev_addr[2*i+1] = (val >> 8) & 0x0ff;
  573.     }
  574.     /* read PROM address and compare with CSR address */
  575.     for (i = 0; i < 6; i++)
  576. promaddr[i] = inb(ioaddr + i);
  577.     
  578.     if( memcmp( promaddr, dev->dev_addr, 6)
  579. || !is_valid_ether_addr(dev->dev_addr) ) {
  580. #ifndef __powerpc__
  581. if( is_valid_ether_addr(promaddr) ){
  582. #else
  583. if( !is_valid_ether_addr(dev->dev_addr)
  584.     && is_valid_ether_addr(promaddr)) {
  585. #endif
  586.     printk(" warning: CSR address invalid,n");
  587.     printk(KERN_INFO "    using instead PROM address of");
  588.     memcpy(dev->dev_addr, promaddr, 6);
  589. }
  590.     }
  591.     /* if the ethernet address is not valid, force to 00:00:00:00:00:00 */
  592.     if( !is_valid_ether_addr(dev->dev_addr) )
  593. memset(dev->dev_addr, 0, sizeof(dev->dev_addr));
  594.     for (i = 0; i < 6; i++)
  595. printk(" %2.2x", dev->dev_addr[i] );
  596.     if (((chip_version + 1) & 0xfffe) == 0x2624) { /* Version 0x2623 or 0x2624 */
  597. i = a->read_csr(ioaddr, 80) & 0x0C00;  /* Check tx_start_pt */
  598. printk("n" KERN_INFO "    tx_start_pt(0x%04x):",i);
  599. switch(i>>10) {
  600.     case 0: printk("  20 bytes,"); break;
  601.     case 1: printk("  64 bytes,"); break;
  602.     case 2: printk(" 128 bytes,"); break;
  603.     case 3: printk("~220 bytes,"); break;
  604. }
  605. i = a->read_bcr(ioaddr, 18);  /* Check Burst/Bus control */
  606. printk(" BCR18(%x):",i&0xffff);
  607. if (i & (1<<5)) printk("BurstWrEn ");
  608. if (i & (1<<6)) printk("BurstRdEn ");
  609. if (i & (1<<7)) printk("DWordIO ");
  610. if (i & (1<<11)) printk("NoUFlow ");
  611. i = a->read_bcr(ioaddr, 25);
  612. printk("n" KERN_INFO "    SRAMSIZE=0x%04x,",i<<8);
  613. i = a->read_bcr(ioaddr, 26);
  614. printk(" SRAM_BND=0x%04x,",i<<8);
  615. i = a->read_bcr(ioaddr, 27);
  616. if (i & (1<<14)) printk("LowLatRx");
  617.     }
  618.     dev->base_addr = ioaddr;
  619.     if (request_region(ioaddr, PCNET32_TOTAL_SIZE, chipname) == NULL)
  620. return -EBUSY;
  621.     
  622.     /* pci_alloc_consistent returns page-aligned memory, so we do not have to check the alignment */
  623.     if ((lp = pci_alloc_consistent(pdev, sizeof(*lp), &lp_dma_addr)) == NULL) {
  624. release_region(ioaddr, PCNET32_TOTAL_SIZE);
  625. return -ENOMEM;
  626.     }
  627.     memset(lp, 0, sizeof(*lp));
  628.     lp->dma_addr = lp_dma_addr;
  629.     lp->pci_dev = pdev;
  630.     spin_lock_init(&lp->lock);
  631.     
  632.     dev->priv = lp;
  633.     lp->name = chipname;
  634.     lp->shared_irq = shared;
  635.     lp->mii_if.full_duplex = fdx;
  636.     lp->dxsuflo = dxsuflo;
  637.     lp->ltint = ltint;
  638.     lp->mii = mii;
  639.     if ((cards_found >= MAX_UNITS) || (options[cards_found] > sizeof(options_mapping)))
  640. lp->options = PCNET32_PORT_ASEL;
  641.     else
  642. lp->options = options_mapping[options[cards_found]];
  643.     lp->mii_if.dev = dev;
  644.     lp->mii_if.mdio_read = mdio_read;
  645.     lp->mii_if.mdio_write = mdio_write;
  646.     
  647.     if (fdx && !(lp->options & PCNET32_PORT_ASEL) && 
  648. ((cards_found>=MAX_UNITS) || full_duplex[cards_found]))
  649. lp->options |= PCNET32_PORT_FD;
  650.     
  651.     if (!a) {
  652.       printk(KERN_ERR PFX "No access methodsn");
  653.       pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
  654.       release_region(ioaddr, PCNET32_TOTAL_SIZE);
  655.       return -ENODEV;
  656.     }
  657.     lp->a = *a;
  658.     
  659.     /* detect special T1/E1 WAN card by checking for MAC address */
  660.     if (dev->dev_addr[0] == 0x00 && dev->dev_addr[1] == 0xe0 && dev->dev_addr[2] == 0x75)
  661. lp->options = PCNET32_PORT_FD | PCNET32_PORT_GPSI;
  662.     lp->init_block.mode = le16_to_cpu(0x0003); /* Disable Rx and Tx. */
  663.     lp->init_block.tlen_rlen = le16_to_cpu(TX_RING_LEN_BITS | RX_RING_LEN_BITS); 
  664.     for (i = 0; i < 6; i++)
  665. lp->init_block.phys_addr[i] = dev->dev_addr[i];
  666.     lp->init_block.filter[0] = 0x00000000;
  667.     lp->init_block.filter[1] = 0x00000000;
  668.     lp->init_block.rx_ring = (u32)le32_to_cpu(lp->dma_addr + offsetof(struct pcnet32_private, rx_ring));
  669.     lp->init_block.tx_ring = (u32)le32_to_cpu(lp->dma_addr + offsetof(struct pcnet32_private, tx_ring));
  670.     
  671.     /* switch pcnet32 to 32bit mode */
  672.     a->write_bcr (ioaddr, 20, 2);
  673.     a->write_csr (ioaddr, 1, (lp->dma_addr + offsetof(struct pcnet32_private, init_block)) & 0xffff);
  674.     a->write_csr (ioaddr, 2, (lp->dma_addr + offsetof(struct pcnet32_private, init_block)) >> 16);
  675.     
  676.     if (irq_line) {
  677. dev->irq = irq_line;
  678.     }
  679.     
  680.     if (dev->irq >= 2)
  681. printk(" assigned IRQ %d.n", dev->irq);
  682.     else {
  683. unsigned long irq_mask = probe_irq_on();
  684. /*
  685.  * To auto-IRQ we enable the initialization-done and DMA error
  686.  * interrupts. For ISA boards we get a DMA error, but VLB and PCI
  687.  * boards will work.
  688.  */
  689. /* Trigger an initialization just for the interrupt. */
  690. a->write_csr (ioaddr, 0, 0x41);
  691. mdelay (1);
  692. dev->irq = probe_irq_off (irq_mask);
  693. if (dev->irq)
  694.     printk(", probed IRQ %d.n", dev->irq);
  695. else {
  696.     printk(", failed to detect IRQ line.n");
  697.     pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
  698.     release_region(ioaddr, PCNET32_TOTAL_SIZE);
  699.     return -ENODEV;
  700. }
  701.     }
  702.     /* Set the mii phy_id so that we can query the link state */
  703.     if (lp->mii)
  704. lp->mii_if.phy_id = ((lp->a.read_bcr (ioaddr, 33)) >> 5) & 0x1f;
  705.     init_timer (&lp->watchdog_timer);
  706.     lp->watchdog_timer.data = (unsigned long) dev;
  707.     lp->watchdog_timer.function = (void *) &pcnet32_watchdog;
  708.     
  709.     /* The PCNET32-specific entries in the device structure. */
  710.     dev->open = &pcnet32_open;
  711.     dev->hard_start_xmit = &pcnet32_start_xmit;
  712.     dev->stop = &pcnet32_close;
  713.     dev->get_stats = &pcnet32_get_stats;
  714.     dev->set_multicast_list = &pcnet32_set_multicast_list;
  715.     dev->do_ioctl = &pcnet32_ioctl;
  716.     dev->tx_timeout = pcnet32_tx_timeout;
  717.     dev->watchdog_timeo = (5*HZ);
  718.     lp->next = pcnet32_dev;
  719.     pcnet32_dev = dev;
  720.     /* Fill in the generic fields of the device structure. */
  721.     register_netdev(dev);
  722.     printk(KERN_INFO "%s: registered as %sn",dev->name, lp->name);
  723.     cards_found++;
  724.     return 0;
  725. }
  726. static int
  727. pcnet32_open(struct net_device *dev)
  728. {
  729.     struct pcnet32_private *lp = dev->priv;
  730.     unsigned long ioaddr = dev->base_addr;
  731.     u16 val;
  732.     int i;
  733.     if (dev->irq == 0 ||
  734. request_irq(dev->irq, &pcnet32_interrupt,
  735.     lp->shared_irq ? SA_SHIRQ : 0, lp->name, (void *)dev)) {
  736. return -EAGAIN;
  737.     }
  738.     /* Check for a valid station address */
  739.     if( !is_valid_ether_addr(dev->dev_addr) )
  740. return -EINVAL;
  741.     /* Reset the PCNET32 */
  742.     lp->a.reset (ioaddr);
  743.     /* switch pcnet32 to 32bit mode */
  744.     lp->a.write_bcr (ioaddr, 20, 2);
  745.     if (pcnet32_debug > 1)
  746. printk(KERN_DEBUG "%s: pcnet32_open() irq %d tx/rx rings %#x/%#x init %#x.n",
  747.        dev->name, dev->irq,
  748.        (u32) (lp->dma_addr + offsetof(struct pcnet32_private, tx_ring)),
  749.        (u32) (lp->dma_addr + offsetof(struct pcnet32_private, rx_ring)),
  750.        (u32) (lp->dma_addr + offsetof(struct pcnet32_private, init_block)));
  751.     
  752.     /* set/reset autoselect bit */
  753.     val = lp->a.read_bcr (ioaddr, 2) & ~2;
  754.     if (lp->options & PCNET32_PORT_ASEL)
  755. val |= 2;
  756.     lp->a.write_bcr (ioaddr, 2, val);
  757.     
  758.     /* handle full duplex setting */
  759.     if (lp->mii_if.full_duplex) {
  760. val = lp->a.read_bcr (ioaddr, 9) & ~3;
  761. if (lp->options & PCNET32_PORT_FD) {
  762.     val |= 1;
  763.     if (lp->options == (PCNET32_PORT_FD | PCNET32_PORT_AUI))
  764. val |= 2;
  765. } else if (lp->options & PCNET32_PORT_ASEL) {
  766. /* workaround of xSeries250, turn on for 79C975 only */
  767.     i = ((lp->a.read_csr(ioaddr, 88) | (lp->a.read_csr(ioaddr,89) << 16)) >> 12) & 0xffff;
  768.     if (i == 0x2627) val |= 3;
  769. }
  770. lp->a.write_bcr (ioaddr, 9, val);
  771.     }
  772.     
  773.     /* set/reset GPSI bit in test register */
  774.     val = lp->a.read_csr (ioaddr, 124) & ~0x10;
  775.     if ((lp->options & PCNET32_PORT_PORTSEL) == PCNET32_PORT_GPSI)
  776. val |= 0x10;
  777.     lp->a.write_csr (ioaddr, 124, val);
  778.     
  779.     if (lp->mii && !(lp->options & PCNET32_PORT_ASEL)) {
  780. val = lp->a.read_bcr (ioaddr, 32) & ~0x38; /* disable Auto Negotiation, set 10Mpbs, HD */
  781. if (lp->options & PCNET32_PORT_FD)
  782.     val |= 0x10;
  783. if (lp->options & PCNET32_PORT_100)
  784.     val |= 0x08;
  785. lp->a.write_bcr (ioaddr, 32, val);
  786.     } else {
  787. if (lp->options & PCNET32_PORT_ASEL) {  /* enable auto negotiate, setup, disable fd */
  788. val = lp->a.read_bcr(ioaddr, 32) & ~0x98;
  789. val |= 0x20;
  790. lp->a.write_bcr(ioaddr, 32, val);
  791. }
  792.     }
  793. #ifdef DO_DXSUFLO 
  794.     if (lp->dxsuflo) { /* Disable transmit stop on underflow */
  795. val = lp->a.read_csr (ioaddr, 3);
  796. val |= 0x40;
  797. lp->a.write_csr (ioaddr, 3, val);
  798.     }
  799. #endif
  800.     if (lp->ltint) { /* Enable TxDone-intr inhibitor */
  801. val = lp->a.read_csr (ioaddr, 5);
  802. val |= (1<<14);
  803. lp->a.write_csr (ioaddr, 5, val);
  804.     }
  805.    
  806.     lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
  807.     lp->init_block.filter[0] = 0x00000000;
  808.     lp->init_block.filter[1] = 0x00000000;
  809.     if (pcnet32_init_ring(dev))
  810. return -ENOMEM;
  811.     
  812.     /* Re-initialize the PCNET32, and start it when done. */
  813.     lp->a.write_csr (ioaddr, 1, (lp->dma_addr + offsetof(struct pcnet32_private, init_block)) &0xffff);
  814.     lp->a.write_csr (ioaddr, 2, (lp->dma_addr + offsetof(struct pcnet32_private, init_block)) >> 16);
  815.     lp->a.write_csr (ioaddr, 4, 0x0915);
  816.     lp->a.write_csr (ioaddr, 0, 0x0001);
  817.     netif_start_queue(dev);
  818.     /* If we have mii, print the link status and start the watchdog */
  819.     if (lp->mii) {
  820. mii_check_media (&lp->mii_if, 1, 1);
  821. mod_timer (&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
  822.     }
  823.     
  824.     i = 0;
  825.     while (i++ < 100)
  826. if (lp->a.read_csr (ioaddr, 0) & 0x0100)
  827.     break;
  828.     /* 
  829.      * We used to clear the InitDone bit, 0x0100, here but Mark Stockton
  830.      * reports that doing so triggers a bug in the '974.
  831.      */
  832.     lp->a.write_csr (ioaddr, 0, 0x0042);
  833.     if (pcnet32_debug > 2)
  834. printk(KERN_DEBUG "%s: pcnet32 open after %d ticks, init block %#x csr0 %4.4x.n",
  835.        dev->name, i, (u32) (lp->dma_addr + offsetof(struct pcnet32_private, init_block)),
  836.        lp->a.read_csr(ioaddr, 0));
  837.     MOD_INC_USE_COUNT;
  838.     
  839.     return 0; /* Always succeed */
  840. }
  841. /*
  842.  * The LANCE has been halted for one reason or another (busmaster memory
  843.  * arbitration error, Tx FIFO underflow, driver stopped it to reconfigure,
  844.  * etc.).  Modern LANCE variants always reload their ring-buffer
  845.  * configuration when restarted, so we must reinitialize our ring
  846.  * context before restarting.  As part of this reinitialization,
  847.  * find all packets still on the Tx ring and pretend that they had been
  848.  * sent (in effect, drop the packets on the floor) - the higher-level
  849.  * protocols will time out and retransmit.  It'd be better to shuffle
  850.  * these skbs to a temp list and then actually re-Tx them after
  851.  * restarting the chip, but I'm too lazy to do so right now.  dplatt@3do.com
  852.  */
  853. static void 
  854. pcnet32_purge_tx_ring(struct net_device *dev)
  855. {
  856.     struct pcnet32_private *lp = dev->priv;
  857.     int i;
  858.     for (i = 0; i < TX_RING_SIZE; i++) {
  859. if (lp->tx_skbuff[i]) {
  860.             pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i], lp->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
  861.     dev_kfree_skb_any(lp->tx_skbuff[i]); 
  862.     lp->tx_skbuff[i] = NULL;
  863.             lp->tx_dma_addr[i] = 0;
  864. }
  865.     }
  866. }
  867. /* Initialize the PCNET32 Rx and Tx rings. */
  868. static int
  869. pcnet32_init_ring(struct net_device *dev)
  870. {
  871.     struct pcnet32_private *lp = dev->priv;
  872.     int i;
  873.     lp->tx_full = 0;
  874.     lp->cur_rx = lp->cur_tx = 0;
  875.     lp->dirty_rx = lp->dirty_tx = 0;
  876.     for (i = 0; i < RX_RING_SIZE; i++) {
  877.         struct sk_buff *rx_skbuff = lp->rx_skbuff[i];
  878. if (rx_skbuff == NULL) {
  879.     if (!(rx_skbuff = lp->rx_skbuff[i] = dev_alloc_skb (PKT_BUF_SZ))) {
  880. /* there is not much, we can do at this point */
  881. printk(KERN_ERR "%s: pcnet32_init_ring dev_alloc_skb failed.n",dev->name);
  882. return -1;
  883.     }
  884.     skb_reserve (rx_skbuff, 2);
  885. }
  886.         lp->rx_dma_addr[i] = pci_map_single(lp->pci_dev, rx_skbuff->tail, rx_skbuff->len, PCI_DMA_FROMDEVICE);
  887. lp->rx_ring[i].base = (u32)le32_to_cpu(lp->rx_dma_addr[i]);
  888. lp->rx_ring[i].buf_length = le16_to_cpu(-PKT_BUF_SZ);
  889. lp->rx_ring[i].status = le16_to_cpu(0x8000);
  890.     }
  891.     /* The Tx buffer address is filled in as needed, but we do need to clear
  892.        the upper ownership bit. */
  893.     for (i = 0; i < TX_RING_SIZE; i++) {
  894. lp->tx_ring[i].base = 0;
  895. lp->tx_ring[i].status = 0;
  896.         lp->tx_dma_addr[i] = 0;
  897.     }
  898.     lp->init_block.tlen_rlen = le16_to_cpu(TX_RING_LEN_BITS | RX_RING_LEN_BITS);
  899.     for (i = 0; i < 6; i++)
  900. lp->init_block.phys_addr[i] = dev->dev_addr[i];
  901.     lp->init_block.rx_ring = (u32)le32_to_cpu(lp->dma_addr + offsetof(struct pcnet32_private, rx_ring));
  902.     lp->init_block.tx_ring = (u32)le32_to_cpu(lp->dma_addr + offsetof(struct pcnet32_private, tx_ring));
  903.     return 0;
  904. }
  905. static void
  906. pcnet32_restart(struct net_device *dev, unsigned int csr0_bits)
  907. {
  908.     struct pcnet32_private *lp = dev->priv;
  909.     unsigned long ioaddr = dev->base_addr;
  910.     int i;
  911.     
  912.     pcnet32_purge_tx_ring(dev);
  913.     if (pcnet32_init_ring(dev))
  914. return;
  915.     
  916.     /* ReInit Ring */
  917.     lp->a.write_csr (ioaddr, 0, 1);
  918.     i = 0;
  919.     while (i++ < 100)
  920. if (lp->a.read_csr (ioaddr, 0) & 0x0100)
  921.     break;
  922.     lp->a.write_csr (ioaddr, 0, csr0_bits);
  923. }
  924. static void
  925. pcnet32_tx_timeout (struct net_device *dev)
  926. {
  927.     struct pcnet32_private *lp = dev->priv;
  928.     unsigned long ioaddr = dev->base_addr, flags;
  929.     spin_lock_irqsave(&lp->lock, flags);
  930.     /* Transmitter timeout, serious problems. */
  931. printk(KERN_ERR "%s: transmit timed out, status %4.4x, resetting.n",
  932.        dev->name, lp->a.read_csr(ioaddr, 0));
  933. lp->a.write_csr (ioaddr, 0, 0x0004);
  934. lp->stats.tx_errors++;
  935. if (pcnet32_debug > 2) {
  936.     int i;
  937.     printk(KERN_DEBUG " Ring data dump: dirty_tx %d cur_tx %d%s cur_rx %d.",
  938.        lp->dirty_tx, lp->cur_tx, lp->tx_full ? " (full)" : "",
  939.        lp->cur_rx);
  940.     for (i = 0 ; i < RX_RING_SIZE; i++)
  941.     printk("%s %08x %04x %08x %04x", i & 1 ? "" : "n ",
  942.    lp->rx_ring[i].base, -lp->rx_ring[i].buf_length,
  943.    lp->rx_ring[i].msg_length, (unsigned)lp->rx_ring[i].status);
  944.     for (i = 0 ; i < TX_RING_SIZE; i++)
  945.     printk("%s %08x %04x %08x %04x", i & 1 ? "" : "n ",
  946.    lp->tx_ring[i].base, -lp->tx_ring[i].length,
  947.    lp->tx_ring[i].misc, (unsigned)lp->tx_ring[i].status);
  948.     printk("n");
  949. }
  950. pcnet32_restart(dev, 0x0042);
  951. dev->trans_start = jiffies;
  952. netif_start_queue(dev);
  953. spin_unlock_irqrestore(&lp->lock, flags);
  954. }
  955. static int
  956. pcnet32_start_xmit(struct sk_buff *skb, struct net_device *dev)
  957. {
  958.     struct pcnet32_private *lp = dev->priv;
  959.     unsigned long ioaddr = dev->base_addr;
  960.     u16 status;
  961.     int entry;
  962.     unsigned long flags;
  963.     if (pcnet32_debug > 3) {
  964. printk(KERN_DEBUG "%s: pcnet32_start_xmit() called, csr0 %4.4x.n",
  965.        dev->name, lp->a.read_csr(ioaddr, 0));
  966.     }
  967.     spin_lock_irqsave(&lp->lock, flags);
  968.     /* Default status -- will not enable Successful-TxDone
  969.      * interrupt when that option is available to us.
  970.      */
  971.     status = 0x8300;
  972.     if ((lp->ltint) &&
  973. ((lp->cur_tx - lp->dirty_tx == TX_RING_SIZE/2) ||
  974.  (lp->cur_tx - lp->dirty_tx >= TX_RING_SIZE-2)))
  975.     {
  976. /* Enable Successful-TxDone interrupt if we have
  977.  * 1/2 of, or nearly all of, our ring buffer Tx'd
  978.  * but not yet cleaned up.  Thus, most of the time,
  979.  * we will not enable Successful-TxDone interrupts.
  980.  */
  981. status = 0x9300;
  982.     }
  983.   
  984.     /* Fill in a Tx ring entry */
  985.   
  986.     /* Mask to ring buffer boundary. */
  987.     entry = lp->cur_tx & TX_RING_MOD_MASK;
  988.   
  989.     /* Caution: the write order is important here, set the base address
  990.        with the "ownership" bits last. */
  991.     lp->tx_ring[entry].length = le16_to_cpu(-skb->len);
  992.     lp->tx_ring[entry].misc = 0x00000000;
  993.     lp->tx_skbuff[entry] = skb;
  994.     lp->tx_dma_addr[entry] = pci_map_single(lp->pci_dev, skb->data, skb->len, PCI_DMA_TODEVICE);
  995.     lp->tx_ring[entry].base = (u32)le32_to_cpu(lp->tx_dma_addr[entry]);
  996.     lp->tx_ring[entry].status = le16_to_cpu(status);
  997.     lp->cur_tx++;
  998.     lp->stats.tx_bytes += skb->len;
  999.     /* Trigger an immediate send poll. */
  1000.     lp->a.write_csr (ioaddr, 0, 0x0048);
  1001.     dev->trans_start = jiffies;
  1002.     if (lp->tx_ring[(entry+1) & TX_RING_MOD_MASK].base == 0)
  1003. netif_start_queue(dev);
  1004.     else {
  1005. lp->tx_full = 1;
  1006. netif_stop_queue(dev);
  1007.     }
  1008.     spin_unlock_irqrestore(&lp->lock, flags);
  1009.     return 0;
  1010. }
  1011. /* The PCNET32 interrupt handler. */
  1012. static void
  1013. pcnet32_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1014. {
  1015.     struct net_device *dev = dev_id;
  1016.     struct pcnet32_private *lp;
  1017.     unsigned long ioaddr;
  1018.     u16 csr0,rap;
  1019.     int boguscnt =  max_interrupt_work;
  1020.     int must_restart;
  1021.     if (!dev) {
  1022. printk (KERN_DEBUG "%s(): irq %d for unknown devicen",
  1023. __FUNCTION__, irq);
  1024. return;
  1025.     }
  1026.     ioaddr = dev->base_addr;
  1027.     lp = dev->priv;
  1028.     
  1029.     spin_lock(&lp->lock);
  1030.     
  1031.     rap = lp->a.read_rap(ioaddr);
  1032.     while ((csr0 = lp->a.read_csr (ioaddr, 0)) & 0x8600 && --boguscnt >= 0) {
  1033. /* Acknowledge all of the current interrupt sources ASAP. */
  1034. lp->a.write_csr (ioaddr, 0, csr0 & ~0x004f);
  1035. must_restart = 0;
  1036. if (pcnet32_debug > 5)
  1037.     printk(KERN_DEBUG "%s: interrupt  csr0=%#2.2x new csr=%#2.2x.n",
  1038.    dev->name, csr0, lp->a.read_csr (ioaddr, 0));
  1039. if (csr0 & 0x0400) /* Rx interrupt */
  1040.     pcnet32_rx(dev);
  1041. if (csr0 & 0x0200) { /* Tx-done interrupt */
  1042.     unsigned int dirty_tx = lp->dirty_tx;
  1043.     while (dirty_tx < lp->cur_tx) {
  1044. int entry = dirty_tx & TX_RING_MOD_MASK;
  1045. int status = (short)le16_to_cpu(lp->tx_ring[entry].status);
  1046. if (status < 0)
  1047.     break; /* It still hasn't been Txed */
  1048. lp->tx_ring[entry].base = 0;
  1049. if (status & 0x4000) {
  1050.     /* There was an major error, log it. */
  1051.     int err_status = le32_to_cpu(lp->tx_ring[entry].misc);
  1052.     lp->stats.tx_errors++;
  1053.     if (err_status & 0x04000000) lp->stats.tx_aborted_errors++;
  1054.     if (err_status & 0x08000000) lp->stats.tx_carrier_errors++;
  1055.     if (err_status & 0x10000000) lp->stats.tx_window_errors++;
  1056. #ifndef DO_DXSUFLO
  1057.     if (err_status & 0x40000000) {
  1058. lp->stats.tx_fifo_errors++;
  1059. /* Ackk!  On FIFO errors the Tx unit is turned off! */
  1060. /* Remove this verbosity later! */
  1061. printk(KERN_ERR "%s: Tx FIFO error! CSR0=%4.4xn",
  1062.        dev->name, csr0);
  1063. must_restart = 1;
  1064.     }
  1065. #else
  1066.     if (err_status & 0x40000000) {
  1067. lp->stats.tx_fifo_errors++;
  1068. if (! lp->dxsuflo) {  /* If controller doesn't recover ... */
  1069.     /* Ackk!  On FIFO errors the Tx unit is turned off! */
  1070.     /* Remove this verbosity later! */
  1071.     printk(KERN_ERR "%s: Tx FIFO error! CSR0=%4.4xn",
  1072.    dev->name, csr0);
  1073.     must_restart = 1;
  1074. }
  1075.     }
  1076. #endif
  1077. } else {
  1078.     if (status & 0x1800)
  1079. lp->stats.collisions++;
  1080.     lp->stats.tx_packets++;
  1081. }
  1082. /* We must free the original skb */
  1083. if (lp->tx_skbuff[entry]) {
  1084.                     pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[entry],
  1085. lp->tx_skbuff[entry]->len, PCI_DMA_TODEVICE);
  1086.     dev_kfree_skb_irq(lp->tx_skbuff[entry]);
  1087.     lp->tx_skbuff[entry] = 0;
  1088.                     lp->tx_dma_addr[entry] = 0;
  1089. }
  1090. dirty_tx++;
  1091.     }
  1092.     if (lp->cur_tx - dirty_tx >= TX_RING_SIZE) {
  1093. printk(KERN_ERR "%s: out-of-sync dirty pointer, %d vs. %d, full=%d.n",
  1094. dev->name, dirty_tx, lp->cur_tx, lp->tx_full);
  1095. dirty_tx += TX_RING_SIZE;
  1096.     }
  1097.     if (lp->tx_full &&
  1098. netif_queue_stopped(dev) &&
  1099. dirty_tx > lp->cur_tx - TX_RING_SIZE + 2) {
  1100. /* The ring is no longer full, clear tbusy. */
  1101. lp->tx_full = 0;
  1102. netif_wake_queue (dev);
  1103.     }
  1104.     lp->dirty_tx = dirty_tx;
  1105. }
  1106. /* Log misc errors. */
  1107. if (csr0 & 0x4000) lp->stats.tx_errors++; /* Tx babble. */
  1108. if (csr0 & 0x1000) {
  1109.     /*
  1110.      * this happens when our receive ring is full. This shouldn't
  1111.      * be a problem as we will see normal rx interrupts for the frames
  1112.      * in the receive ring. But there are some PCI chipsets (I can reproduce
  1113.      * this on SP3G with Intel saturn chipset) which have sometimes problems
  1114.      * and will fill up the receive ring with error descriptors. In this
  1115.      * situation we don't get a rx interrupt, but a missed frame interrupt sooner
  1116.      * or later. So we try to clean up our receive ring here.
  1117.      */
  1118.     pcnet32_rx(dev);
  1119.     lp->stats.rx_errors++; /* Missed a Rx frame. */
  1120. }
  1121. if (csr0 & 0x0800) {
  1122.     printk(KERN_ERR "%s: Bus master arbitration failure, status %4.4x.n",
  1123.    dev->name, csr0);
  1124.     /* unlike for the lance, there is no restart needed */
  1125. }
  1126. if (must_restart) {
  1127.     /* stop the chip to clear the error condition, then restart */
  1128.     lp->a.write_csr (ioaddr, 0, 0x0004);
  1129.     pcnet32_restart(dev, 0x0002);
  1130. }
  1131.     }
  1132.     /* Clear any other interrupt, and set interrupt enable. */
  1133.     lp->a.write_csr (ioaddr, 0, 0x7940);
  1134.     lp->a.write_rap (ioaddr,rap);
  1135.     
  1136.     if (pcnet32_debug > 4)
  1137. printk(KERN_DEBUG "%s: exiting interrupt, csr0=%#4.4x.n",
  1138.        dev->name, lp->a.read_csr (ioaddr, 0));
  1139.     spin_unlock(&lp->lock);
  1140. }
  1141. static int
  1142. pcnet32_rx(struct net_device *dev)
  1143. {
  1144.     struct pcnet32_private *lp = dev->priv;
  1145.     int entry = lp->cur_rx & RX_RING_MOD_MASK;
  1146.     /* If we own the next entry, it's a new packet. Send it up. */
  1147.     while ((short)le16_to_cpu(lp->rx_ring[entry].status) >= 0) {
  1148. int status = (short)le16_to_cpu(lp->rx_ring[entry].status) >> 8;
  1149. if (status != 0x03) { /* There was an error. */
  1150.     /* 
  1151.      * There is a tricky error noted by John Murphy,
  1152.      * <murf@perftech.com> to Russ Nelson: Even with full-sized
  1153.      * buffers it's possible for a jabber packet to use two
  1154.      * buffers, with only the last correctly noting the error.
  1155.      */
  1156.     if (status & 0x01) /* Only count a general error at the */
  1157. lp->stats.rx_errors++; /* end of a packet.*/
  1158.     if (status & 0x20) lp->stats.rx_frame_errors++;
  1159.     if (status & 0x10) lp->stats.rx_over_errors++;
  1160.     if (status & 0x08) lp->stats.rx_crc_errors++;
  1161.     if (status & 0x04) lp->stats.rx_fifo_errors++;
  1162.     lp->rx_ring[entry].status &= le16_to_cpu(0x03ff);
  1163. } else {
  1164.     /* Malloc up new buffer, compatible with net-2e. */
  1165.     short pkt_len = (le32_to_cpu(lp->rx_ring[entry].msg_length) & 0xfff)-4;
  1166.     struct sk_buff *skb;
  1167.     if(pkt_len < 60) {
  1168. printk(KERN_ERR "%s: Runt packet!n",dev->name);
  1169. lp->stats.rx_errors++;
  1170.     } else {
  1171. int rx_in_place = 0;
  1172. if (pkt_len > rx_copybreak) {
  1173.     struct sk_buff *newskb;
  1174.     if ((newskb = dev_alloc_skb (PKT_BUF_SZ))) {
  1175. skb_reserve (newskb, 2);
  1176. skb = lp->rx_skbuff[entry];
  1177. pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[entry], skb->len, PCI_DMA_FROMDEVICE);
  1178. skb_put (skb, pkt_len);
  1179. lp->rx_skbuff[entry] = newskb;
  1180. newskb->dev = dev;
  1181.                         lp->rx_dma_addr[entry] = 
  1182. pci_map_single(lp->pci_dev, newskb->tail,
  1183. newskb->len, PCI_DMA_FROMDEVICE);
  1184. lp->rx_ring[entry].base = le32_to_cpu(lp->rx_dma_addr[entry]);
  1185. rx_in_place = 1;
  1186.     } else
  1187. skb = NULL;
  1188. } else {
  1189.     skb = dev_alloc_skb(pkt_len+2);
  1190.                 }
  1191.     
  1192. if (skb == NULL) {
  1193.                     int i;
  1194.     printk(KERN_ERR "%s: Memory squeeze, deferring packet.n", dev->name);
  1195.     for (i = 0; i < RX_RING_SIZE; i++)
  1196. if ((short)le16_to_cpu(lp->rx_ring[(entry+i) & RX_RING_MOD_MASK].status) < 0)
  1197.     break;
  1198.     if (i > RX_RING_SIZE -2) {
  1199. lp->stats.rx_dropped++;
  1200. lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
  1201. lp->cur_rx++;
  1202.     }
  1203.     break;
  1204. }
  1205. skb->dev = dev;
  1206. if (!rx_in_place) {
  1207.     skb_reserve(skb,2); /* 16 byte align */
  1208.     skb_put(skb,pkt_len); /* Make room */
  1209.     eth_copy_and_sum(skb,
  1210.      (unsigned char *)(lp->rx_skbuff[entry]->tail),
  1211.      pkt_len,0);
  1212. }
  1213. lp->stats.rx_bytes += skb->len;
  1214. skb->protocol=eth_type_trans(skb,dev);
  1215. netif_rx(skb);
  1216. dev->last_rx = jiffies;
  1217. lp->stats.rx_packets++;
  1218.     }
  1219. }
  1220. /*
  1221.  * The docs say that the buffer length isn't touched, but Andrew Boyd
  1222.  * of QNX reports that some revs of the 79C965 clear it.
  1223.  */
  1224. lp->rx_ring[entry].buf_length = le16_to_cpu(-PKT_BUF_SZ);
  1225. lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
  1226. entry = (++lp->cur_rx) & RX_RING_MOD_MASK;
  1227.     }
  1228.     return 0;
  1229. }
  1230. static int
  1231. pcnet32_close(struct net_device *dev)
  1232. {
  1233.     unsigned long ioaddr = dev->base_addr;
  1234.     struct pcnet32_private *lp = dev->priv;
  1235.     int i;
  1236.     del_timer_sync(&lp->watchdog_timer);
  1237.     netif_stop_queue(dev);
  1238.     lp->stats.rx_missed_errors = lp->a.read_csr (ioaddr, 112);
  1239.     if (pcnet32_debug > 1)
  1240. printk(KERN_DEBUG "%s: Shutting down ethercard, status was %2.2x.n",
  1241.        dev->name, lp->a.read_csr (ioaddr, 0));
  1242.     /* We stop the PCNET32 here -- it occasionally polls memory if we don't. */
  1243.     lp->a.write_csr (ioaddr, 0, 0x0004);
  1244.     /*
  1245.      * Switch back to 16bit mode to avoid problems with dumb 
  1246.      * DOS packet driver after a warm reboot
  1247.      */
  1248.     lp->a.write_bcr (ioaddr, 20, 4);
  1249.     free_irq(dev->irq, dev);
  1250.     
  1251.     /* free all allocated skbuffs */
  1252.     for (i = 0; i < RX_RING_SIZE; i++) {
  1253. lp->rx_ring[i].status = 0;     
  1254. if (lp->rx_skbuff[i]) {
  1255.             pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i], lp->rx_skbuff[i]->len, PCI_DMA_FROMDEVICE);
  1256.     dev_kfree_skb(lp->rx_skbuff[i]);
  1257.         }
  1258. lp->rx_skbuff[i] = NULL;
  1259.         lp->rx_dma_addr[i] = 0;
  1260.     }
  1261.     
  1262.     for (i = 0; i < TX_RING_SIZE; i++) {
  1263. if (lp->tx_skbuff[i]) {
  1264.             pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i], lp->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
  1265.     dev_kfree_skb(lp->tx_skbuff[i]);
  1266.         }
  1267. lp->tx_skbuff[i] = NULL;
  1268.         lp->tx_dma_addr[i] = 0;
  1269.     }
  1270.     
  1271.     MOD_DEC_USE_COUNT;
  1272.     return 0;
  1273. }
  1274. static struct net_device_stats *
  1275. pcnet32_get_stats(struct net_device *dev)
  1276. {
  1277.     struct pcnet32_private *lp = dev->priv;
  1278.     unsigned long ioaddr = dev->base_addr;
  1279.     u16 saved_addr;
  1280.     unsigned long flags;
  1281.     spin_lock_irqsave(&lp->lock, flags);
  1282.     saved_addr = lp->a.read_rap(ioaddr);
  1283.     lp->stats.rx_missed_errors = lp->a.read_csr (ioaddr, 112);
  1284.     lp->a.write_rap(ioaddr, saved_addr);
  1285.     spin_unlock_irqrestore(&lp->lock, flags);
  1286.     return &lp->stats;
  1287. }
  1288. /* taken from the sunlance driver, which it took from the depca driver */
  1289. static void pcnet32_load_multicast (struct net_device *dev)
  1290. {
  1291.     struct pcnet32_private *lp = dev->priv;
  1292.     volatile struct pcnet32_init_block *ib = &lp->init_block;
  1293.     volatile u16 *mcast_table = (u16 *)&ib->filter;
  1294.     struct dev_mc_list *dmi=dev->mc_list;
  1295.     char *addrs;
  1296.     int i;
  1297.     u32 crc;
  1298.     /* set all multicast bits */
  1299.     if (dev->flags & IFF_ALLMULTI){ 
  1300. ib->filter[0] = 0xffffffff;
  1301. ib->filter[1] = 0xffffffff;
  1302. return;
  1303.     }
  1304.     /* clear the multicast filter */
  1305.     ib->filter[0] = 0;
  1306.     ib->filter[1] = 0;
  1307.     /* Add addresses */
  1308.     for (i = 0; i < dev->mc_count; i++){
  1309. addrs = dmi->dmi_addr;
  1310. dmi   = dmi->next;
  1311. /* multicast address? */
  1312. if (!(*addrs & 1))
  1313.     continue;
  1314. crc = ether_crc_le(6, addrs);
  1315. crc = crc >> 26;
  1316. mcast_table [crc >> 4] |= 1 << (crc & 0xf);
  1317.     }
  1318.     return;
  1319. }
  1320. /*
  1321.  * Set or clear the multicast filter for this adaptor.
  1322.  */
  1323. static void pcnet32_set_multicast_list(struct net_device *dev)
  1324. {
  1325.     unsigned long ioaddr = dev->base_addr, flags;
  1326.     struct pcnet32_private *lp = dev->priv;  
  1327.     spin_lock_irqsave(&lp->lock, flags);
  1328.     if (dev->flags&IFF_PROMISC) {
  1329. /* Log any net taps. */
  1330. printk(KERN_INFO "%s: Promiscuous mode enabled.n", dev->name);
  1331. lp->init_block.mode = le16_to_cpu(0x8000 | (lp->options & PCNET32_PORT_PORTSEL) << 7);
  1332.     } else {
  1333. lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
  1334. pcnet32_load_multicast (dev);
  1335.     }
  1336.     
  1337.     lp->a.write_csr (ioaddr, 0, 0x0004); /* Temporarily stop the lance. */
  1338.     pcnet32_restart(dev, 0x0042); /*  Resume normal operation */
  1339.     spin_unlock_irqrestore(&lp->lock, flags);
  1340. }
  1341. static int mdio_read(struct net_device *dev, int phy_id, int reg_num)
  1342. {
  1343. struct pcnet32_private *lp = dev->priv;
  1344. unsigned long ioaddr = dev->base_addr;
  1345. u16 val_out;
  1346. int phyaddr;
  1347. if (!lp->mii)
  1348. return 0;
  1349. phyaddr = lp->a.read_bcr(ioaddr, 33);
  1350. lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
  1351. val_out = lp->a.read_bcr(ioaddr, 34);
  1352. lp->a.write_bcr(ioaddr, 33, phyaddr);
  1353. return val_out;
  1354. }
  1355. static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val)
  1356. {
  1357. struct pcnet32_private *lp = dev->priv;
  1358. unsigned long ioaddr = dev->base_addr;
  1359. int phyaddr;
  1360. if (!lp->mii)
  1361. return;
  1362. phyaddr = lp->a.read_bcr(ioaddr, 33);
  1363. lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
  1364. lp->a.write_bcr(ioaddr, 34, val);
  1365. lp->a.write_bcr(ioaddr, 33, phyaddr);
  1366. }
  1367. static int pcnet32_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1368. {
  1369. struct pcnet32_private *lp = dev->priv;
  1370. u32 ethcmd;
  1371. int phyaddr = 0;
  1372. int phy_id = 0;
  1373. unsigned long ioaddr = dev->base_addr;
  1374. if (lp->mii) {
  1375. phyaddr = lp->a.read_bcr (ioaddr, 33);
  1376. phy_id = (phyaddr >> 5) & 0x1f;
  1377. lp->mii_if.phy_id = phy_id;
  1378. }
  1379. if (copy_from_user (&ethcmd, useraddr, sizeof (ethcmd)))
  1380. return -EFAULT;
  1381. switch (ethcmd) {
  1382. case ETHTOOL_GDRVINFO: {
  1383. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1384. strcpy (info.driver, DRV_NAME);
  1385. strcpy (info.version, DRV_VERSION);
  1386. if (lp->pci_dev)
  1387. strcpy (info.bus_info, lp->pci_dev->slot_name);
  1388. else
  1389. sprintf(info.bus_info, "VLB 0x%lx", dev->base_addr);
  1390. if (copy_to_user (useraddr, &info, sizeof (info)))
  1391. return -EFAULT;
  1392. return 0;
  1393. }
  1394. /* get settings */
  1395. case ETHTOOL_GSET: {
  1396. struct ethtool_cmd ecmd = { ETHTOOL_GSET };
  1397. spin_lock_irq(&lp->lock);
  1398. mii_ethtool_gset(&lp->mii_if, &ecmd);
  1399. spin_unlock_irq(&lp->lock);
  1400. if (copy_to_user(useraddr, &ecmd, sizeof(ecmd)))
  1401. return -EFAULT;
  1402. return 0;
  1403. }
  1404. /* set settings */
  1405. case ETHTOOL_SSET: {
  1406. int r;
  1407. struct ethtool_cmd ecmd;
  1408. if (copy_from_user(&ecmd, useraddr, sizeof(ecmd)))
  1409. return -EFAULT;
  1410. spin_lock_irq(&lp->lock);
  1411. r = mii_ethtool_sset(&lp->mii_if, &ecmd);
  1412. spin_unlock_irq(&lp->lock);
  1413. return r;
  1414. }
  1415. /* restart autonegotiation */
  1416. case ETHTOOL_NWAY_RST: {
  1417. return mii_nway_restart(&lp->mii_if);
  1418. }
  1419. /* get link status */
  1420. case ETHTOOL_GLINK: {
  1421. struct ethtool_value edata = {ETHTOOL_GLINK};
  1422. edata.data = mii_link_ok(&lp->mii_if);
  1423. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1424. return -EFAULT;
  1425. return 0;
  1426. }
  1427. /* get message-level */
  1428. case ETHTOOL_GMSGLVL: {
  1429. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  1430. edata.data = pcnet32_debug;
  1431. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1432. return -EFAULT;
  1433. return 0;
  1434. }
  1435. /* set message-level */
  1436. case ETHTOOL_SMSGLVL: {
  1437. struct ethtool_value edata;
  1438. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  1439. return -EFAULT;
  1440. pcnet32_debug = edata.data;
  1441. return 0;
  1442. }
  1443. default:
  1444. break;
  1445. }
  1446. return -EOPNOTSUPP;
  1447. }
  1448. static int pcnet32_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1449. {
  1450.     unsigned long ioaddr = dev->base_addr;
  1451.     struct pcnet32_private *lp = dev->priv;  
  1452.     struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  1453.     int phyaddr = lp->a.read_bcr (ioaddr, 33);
  1454.     if (cmd == SIOCETHTOOL)
  1455. return pcnet32_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1456.     if (lp->mii) {
  1457. switch(cmd) {
  1458. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  1459.     data->phy_id = (phyaddr >> 5) & 0x1f;
  1460.     /* Fall Through */
  1461. case SIOCGMIIREG: /* Read MII PHY register. */
  1462.     lp->a.write_bcr (ioaddr, 33, ((data->phy_id & 0x1f) << 5) | (data->reg_num & 0x1f));
  1463.     data->val_out = lp->a.read_bcr (ioaddr, 34);
  1464.     lp->a.write_bcr (ioaddr, 33, phyaddr);
  1465.     return 0;
  1466. case SIOCSMIIREG: /* Write MII PHY register. */
  1467.     if (!capable(CAP_NET_ADMIN))
  1468. return -EPERM;
  1469.     lp->a.write_bcr (ioaddr, 33, ((data->phy_id & 0x1f) << 5) | (data->reg_num & 0x1f));
  1470.     lp->a.write_bcr (ioaddr, 34, data->val_in);
  1471.     lp->a.write_bcr (ioaddr, 33, phyaddr);
  1472.     return 0;
  1473. default:
  1474.     return -EOPNOTSUPP;
  1475. }
  1476.     }
  1477.     return -EOPNOTSUPP;
  1478. }
  1479. static void pcnet32_watchdog(struct net_device *dev)
  1480. {
  1481.     struct pcnet32_private *lp = dev->priv;
  1482.     /* Print the link status if it has changed */
  1483.     if (lp->mii)
  1484. mii_check_media (&lp->mii_if, 1, 0);
  1485.     mod_timer (&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
  1486. }
  1487. static struct pci_driver pcnet32_driver = {
  1488.     name: DRV_NAME,
  1489.     probe: pcnet32_probe_pci,
  1490.     id_table: pcnet32_pci_tbl,
  1491. };
  1492. MODULE_PARM(debug, "i");
  1493. MODULE_PARM_DESC(debug, DRV_NAME " debug level (0-6)");
  1494. MODULE_PARM(max_interrupt_work, "i");
  1495. MODULE_PARM_DESC(max_interrupt_work, DRV_NAME " maximum events handled per interrupt");  
  1496. MODULE_PARM(rx_copybreak, "i");
  1497. MODULE_PARM_DESC(rx_copybreak, DRV_NAME " copy breakpoint for copy-only-tiny-frames"); 
  1498. MODULE_PARM(tx_start_pt, "i");
  1499. MODULE_PARM_DESC(tx_start_pt, DRV_NAME " transmit start point (0-3)"); 
  1500. MODULE_PARM(pcnet32vlb, "i");
  1501. MODULE_PARM_DESC(pcnet32vlb, DRV_NAME " Vesa local bus (VLB) support (0/1)"); 
  1502. MODULE_PARM(options, "1-" __MODULE_STRING(MAX_UNITS) "i");
  1503. MODULE_PARM_DESC(options, DRV_NAME " initial option setting(s) (0-15)"); 
  1504. MODULE_PARM(full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
  1505. MODULE_PARM_DESC(full_duplex, DRV_NAME " full duplex setting(s) (1)");
  1506. MODULE_AUTHOR("Thomas Bogendoerfer");
  1507. MODULE_DESCRIPTION("Driver for PCnet32 and PCnetPCI based ethercards");
  1508. MODULE_LICENSE("GPL");
  1509. /* An additional parameter that may be passed in... */
  1510. static int debug = -1;
  1511. static int tx_start_pt = -1;
  1512. static int __init pcnet32_init_module(void)
  1513. {
  1514.     printk(KERN_INFO "%s", version);
  1515.     if (debug > 0)
  1516. pcnet32_debug = debug;
  1517.     if ((tx_start_pt >= 0) && (tx_start_pt <= 3))
  1518. tx_start = tx_start_pt;
  1519.     /* find the PCI devices */
  1520.     pci_module_init(&pcnet32_driver);
  1521.     /* should we find any remaining VLbus devices ? */
  1522.     if (pcnet32vlb)
  1523. pcnet32_probe_vlbus();
  1524.     if (cards_found)
  1525. printk(KERN_INFO PFX "%d cards_found.n", cards_found);
  1526.     
  1527.     return cards_found ? 0 : -ENODEV;
  1528. }
  1529. static void __exit pcnet32_cleanup_module(void)
  1530. {
  1531.     struct net_device *next_dev;
  1532.     /* No need to check MOD_IN_USE, as sys_delete_module() checks. */
  1533.     while (pcnet32_dev) {
  1534. struct pcnet32_private *lp = pcnet32_dev->priv;
  1535. next_dev = lp->next;
  1536. unregister_netdev(pcnet32_dev);
  1537. release_region(pcnet32_dev->base_addr, PCNET32_TOTAL_SIZE);
  1538. if (lp->pci_dev)
  1539.     pci_unregister_driver(&pcnet32_driver);
  1540. pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
  1541. kfree(pcnet32_dev);
  1542. pcnet32_dev = next_dev;
  1543.     }
  1544. }
  1545. module_init(pcnet32_init_module);
  1546. module_exit(pcnet32_cleanup_module);
  1547. /*
  1548.  * Local variables:
  1549.  *  compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c pcnet32.c"
  1550.  *  c-indent-level: 4
  1551.  *  tab-width: 8
  1552.  * End:
  1553.  */