pcnet32.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:53k
源码类别:

嵌入式Linux

开发平台:

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