blob: 31e6dd049859ed6b1987e8c5e7598e43c137bba1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
24#define DRV_NAME "pcnet32"
Don Frya88c8442005-11-01 12:04:33 -080025#define DRV_VERSION "1.31b"
26#define DRV_RELDATE "06.Oct.2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define PFX DRV_NAME ": "
28
29static const char *version =
30DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " tsbogend@alpha.franken.de\n";
31
32#include <linux/module.h>
33#include <linux/kernel.h>
34#include <linux/string.h>
35#include <linux/errno.h>
36#include <linux/ioport.h>
37#include <linux/slab.h>
38#include <linux/interrupt.h>
39#include <linux/pci.h>
40#include <linux/delay.h>
41#include <linux/init.h>
42#include <linux/ethtool.h>
43#include <linux/mii.h>
44#include <linux/crc32.h>
45#include <linux/netdevice.h>
46#include <linux/etherdevice.h>
47#include <linux/skbuff.h>
48#include <linux/spinlock.h>
49#include <linux/moduleparam.h>
50#include <linux/bitops.h>
51
52#include <asm/dma.h>
53#include <asm/io.h>
54#include <asm/uaccess.h>
55#include <asm/irq.h>
56
57/*
58 * PCI device identifiers for "new style" Linux PCI Device Drivers
59 */
60static struct pci_device_id pcnet32_pci_tbl[] = {
61 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE_HOME, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
62 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_LANCE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
63 /*
64 * Adapters that were sold with IBM's RS/6000 or pSeries hardware have
65 * the incorrect vendor id.
66 */
67 { PCI_VENDOR_ID_TRIDENT, PCI_DEVICE_ID_AMD_LANCE, PCI_ANY_ID, PCI_ANY_ID,
68 PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, 0 },
69 { 0, }
70};
71
72MODULE_DEVICE_TABLE (pci, pcnet32_pci_tbl);
73
74static int cards_found;
75
76/*
77 * VLB I/O addresses
78 */
79static unsigned int pcnet32_portlist[] __initdata =
80 { 0x300, 0x320, 0x340, 0x360, 0 };
81
82
83
84static int pcnet32_debug = 0;
85static int tx_start = 1; /* Mapping -- 0:20, 1:64, 2:128, 3:~220 (depends on chip vers) */
86static int pcnet32vlb; /* check for VLB cards ? */
87
88static struct net_device *pcnet32_dev;
89
90static int max_interrupt_work = 2;
91static int rx_copybreak = 200;
92
93#define PCNET32_PORT_AUI 0x00
94#define PCNET32_PORT_10BT 0x01
95#define PCNET32_PORT_GPSI 0x02
96#define PCNET32_PORT_MII 0x03
97
98#define PCNET32_PORT_PORTSEL 0x03
99#define PCNET32_PORT_ASEL 0x04
100#define PCNET32_PORT_100 0x40
101#define PCNET32_PORT_FD 0x80
102
103#define PCNET32_DMA_MASK 0xffffffff
104
105#define PCNET32_WATCHDOG_TIMEOUT (jiffies + (2 * HZ))
106#define PCNET32_BLINK_TIMEOUT (jiffies + (HZ/4))
107
108/*
109 * table to translate option values from tulip
110 * to internal options
111 */
112static unsigned char options_mapping[] = {
113 PCNET32_PORT_ASEL, /* 0 Auto-select */
114 PCNET32_PORT_AUI, /* 1 BNC/AUI */
115 PCNET32_PORT_AUI, /* 2 AUI/BNC */
116 PCNET32_PORT_ASEL, /* 3 not supported */
117 PCNET32_PORT_10BT | PCNET32_PORT_FD, /* 4 10baseT-FD */
118 PCNET32_PORT_ASEL, /* 5 not supported */
119 PCNET32_PORT_ASEL, /* 6 not supported */
120 PCNET32_PORT_ASEL, /* 7 not supported */
121 PCNET32_PORT_ASEL, /* 8 not supported */
122 PCNET32_PORT_MII, /* 9 MII 10baseT */
123 PCNET32_PORT_MII | PCNET32_PORT_FD, /* 10 MII 10baseT-FD */
124 PCNET32_PORT_MII, /* 11 MII (autosel) */
125 PCNET32_PORT_10BT, /* 12 10BaseT */
126 PCNET32_PORT_MII | PCNET32_PORT_100, /* 13 MII 100BaseTx */
127 PCNET32_PORT_MII | PCNET32_PORT_100 | PCNET32_PORT_FD, /* 14 MII 100BaseTx-FD */
128 PCNET32_PORT_ASEL /* 15 not supported */
129};
130
131static const char pcnet32_gstrings_test[][ETH_GSTRING_LEN] = {
132 "Loopback test (offline)"
133};
134#define PCNET32_TEST_LEN (sizeof(pcnet32_gstrings_test) / ETH_GSTRING_LEN)
135
136#define PCNET32_NUM_REGS 168
137
138#define MAX_UNITS 8 /* More are supported, limit only on options */
139static int options[MAX_UNITS];
140static int full_duplex[MAX_UNITS];
141static int homepna[MAX_UNITS];
142
143/*
144 * Theory of Operation
145 *
146 * This driver uses the same software structure as the normal lance
147 * driver. So look for a verbose description in lance.c. The differences
148 * to the normal lance driver is the use of the 32bit mode of PCnet32
149 * and PCnetPCI chips. Because these chips are 32bit chips, there is no
150 * 16MB limitation and we don't need bounce buffers.
151 */
152
153/*
154 * History:
155 * v0.01: Initial version
156 * only tested on Alpha Noname Board
157 * v0.02: changed IRQ handling for new interrupt scheme (dev_id)
158 * tested on a ASUS SP3G
159 * v0.10: fixed an odd problem with the 79C974 in a Compaq Deskpro XL
160 * looks like the 974 doesn't like stopping and restarting in a
161 * short period of time; now we do a reinit of the lance; the
162 * bug was triggered by doing ifconfig eth0 <ip> broadcast <addr>
163 * and hangs the machine (thanks to Klaus Liedl for debugging)
164 * v0.12: by suggestion from Donald Becker: Renamed driver to pcnet32,
165 * made it standalone (no need for lance.c)
166 * v0.13: added additional PCI detecting for special PCI devices (Compaq)
167 * v0.14: stripped down additional PCI probe (thanks to David C Niemi
168 * and sveneric@xs4all.nl for testing this on their Compaq boxes)
169 * v0.15: added 79C965 (VLB) probe
170 * added interrupt sharing for PCI chips
171 * v0.16: fixed set_multicast_list on Alpha machines
172 * v0.17: removed hack from dev.c; now pcnet32 uses ethif_probe in Space.c
173 * v0.19: changed setting of autoselect bit
174 * v0.20: removed additional Compaq PCI probe; there is now a working one
175 * in arch/i386/bios32.c
176 * v0.21: added endian conversion for ppc, from work by cort@cs.nmt.edu
177 * v0.22: added printing of status to ring dump
178 * v0.23: changed enet_statistics to net_devive_stats
179 * v0.90: added multicast filter
180 * added module support
181 * changed irq probe to new style
182 * added PCnetFast chip id
183 * added fix for receive stalls with Intel saturn chipsets
184 * added in-place rx skbs like in the tulip driver
185 * minor cleanups
186 * v0.91: added PCnetFast+ chip id
187 * back port to 2.0.x
188 * v1.00: added some stuff from Donald Becker's 2.0.34 version
189 * added support for byte counters in net_dev_stats
190 * v1.01: do ring dumps, only when debugging the driver
191 * increased the transmit timeout
192 * v1.02: fixed memory leak in pcnet32_init_ring()
193 * v1.10: workaround for stopped transmitter
194 * added port selection for modules
195 * detect special T1/E1 WAN card and setup port selection
196 * v1.11: fixed wrong checking of Tx errors
197 * v1.20: added check of return value kmalloc (cpeterso@cs.washington.edu)
198 * added save original kmalloc addr for freeing (mcr@solidum.com)
199 * added support for PCnetHome chip (joe@MIT.EDU)
200 * rewritten PCI card detection
201 * added dwio mode to get driver working on some PPC machines
202 * v1.21: added mii selection and mii ioctl
203 * v1.22: changed pci scanning code to make PPC people happy
204 * fixed switching to 32bit mode in pcnet32_open() (thanks
205 * to Michael Richard <mcr@solidum.com> for noticing this one)
206 * added sub vendor/device id matching (thanks again to
207 * Michael Richard <mcr@solidum.com>)
208 * added chip id for 79c973/975 (thanks to Zach Brown <zab@zabbo.net>)
209 * v1.23 fixed small bug, when manual selecting MII speed/duplex
210 * v1.24 Applied Thomas' patch to use TxStartPoint and thus decrease TxFIFO
211 * underflows. Added tx_start_pt module parameter. Increased
212 * TX_RING_SIZE from 16 to 32. Added #ifdef'd code to use DXSUFLO
213 * for FAST[+] chipsets. <kaf@fc.hp.com>
214 * v1.24ac Added SMP spinlocking - Alan Cox <alan@redhat.com>
215 * v1.25kf Added No Interrupt on successful Tx for some Tx's <kaf@fc.hp.com>
216 * v1.26 Converted to pci_alloc_consistent, Jamey Hicks / George France
217 * <jamey@crl.dec.com>
218 * - Fixed a few bugs, related to running the controller in 32bit mode.
219 * 23 Oct, 2000. Carsten Langgaard, carstenl@mips.com
220 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
221 * v1.26p Fix oops on rmmod+insmod; plug i/o resource leak - Paul Gortmaker
222 * v1.27 improved CSR/PROM address detection, lots of cleanups,
223 * new pcnet32vlb module option, HP-PARISC support,
224 * added module parameter descriptions,
225 * initial ethtool support - Helge Deller <deller@gmx.de>
226 * v1.27a Sun Feb 10 2002 Go Taniguchi <go@turbolinux.co.jp>
227 * use alloc_etherdev and register_netdev
228 * fix pci probe not increment cards_found
229 * FD auto negotiate error workaround for xSeries250
230 * clean up and using new mii module
231 * v1.27b Sep 30 2002 Kent Yoder <yoder1@us.ibm.com>
232 * Added timer for cable connection state changes.
233 * v1.28 20 Feb 2004 Don Fry <brazilnut@us.ibm.com>
234 * Jon Mason <jonmason@us.ibm.com>, Chinmay Albal <albal@in.ibm.com>
235 * Now uses ethtool_ops, netif_msg_* and generic_mii_ioctl.
236 * Fixes bogus 'Bus master arbitration failure', pci_[un]map_single
237 * length errors, and transmit hangs. Cleans up after errors in open.
238 * Jim Lewis <jklewis@us.ibm.com> added ethernet loopback test.
239 * Thomas Munck Steenholdt <tmus@tmus.dk> non-mii ioctl corrections.
240 * v1.29 6 Apr 2004 Jim Lewis <jklewis@us.ibm.com> added physical
241 * identification code (blink led's) and register dump.
242 * Don Fry added timer for 971/972 so skbufs don't remain on tx ring
243 * forever.
244 * v1.30 18 May 2004 Don Fry removed timer and Last Transmit Interrupt
245 * (ltint) as they added complexity and didn't give good throughput.
246 * v1.30a 22 May 2004 Don Fry limit frames received during interrupt.
247 * v1.30b 24 May 2004 Don Fry fix bogus tx carrier errors with 79c973,
248 * assisted by Bruce Penrod <bmpenrod@endruntechnologies.com>.
249 * v1.30c 25 May 2004 Don Fry added netif_wake_queue after pcnet32_restart.
250 * v1.30d 01 Jun 2004 Don Fry discard oversize rx packets.
251 * v1.30e 11 Jun 2004 Don Fry recover after fifo error and rx hang.
252 * v1.30f 16 Jun 2004 Don Fry cleanup IRQ to allow 0 and 1 for PCI,
253 * expanding on suggestions from Ralf Baechle <ralf@linux-mips.org>,
254 * and Brian Murphy <brian@murphy.dk>.
255 * v1.30g 22 Jun 2004 Patrick Simmons <psimmons@flash.net> added option
256 * homepna for selecting HomePNA mode for PCNet/Home 79C978.
257 * v1.30h 24 Jun 2004 Don Fry correctly select auto, speed, duplex in bcr32.
258 * v1.30i 28 Jun 2004 Don Fry change to use module_param.
Don Fry1bcd3152005-04-29 14:51:17 -0700259 * v1.30j 29 Apr 2005 Don Fry fix skb/map leak with loopback test.
Hubert WS Lineabf0412005-09-14 11:39:25 -0700260 * v1.31 02 Sep 2005 Hubert WS Lin <wslin@tw.ibm.c0m> added set_ringparam().
Hubert WS Lin76209922005-09-14 11:39:27 -0700261 * v1.31a 12 Sep 2005 Hubert WS Lin <wslin@tw.ibm.c0m> set min ring size to 4
262 * to allow loopback test to work unchanged.
Don Frya88c8442005-11-01 12:04:33 -0800263 * v1.31b 06 Oct 2005 Don Fry changed alloc_ring to show name of device
264 * if allocation fails
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
266
267
268/*
269 * Set the number of Tx and Rx buffers, using Log_2(# buffers).
270 * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
271 * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
272 */
273#ifndef PCNET32_LOG_TX_BUFFERS
Hubert WS Lineabf0412005-09-14 11:39:25 -0700274#define PCNET32_LOG_TX_BUFFERS 4
275#define PCNET32_LOG_RX_BUFFERS 5
276#define PCNET32_LOG_MAX_TX_BUFFERS 9 /* 2^9 == 512 */
277#define PCNET32_LOG_MAX_RX_BUFFERS 9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278#endif
279
280#define TX_RING_SIZE (1 << (PCNET32_LOG_TX_BUFFERS))
Hubert WS Lineabf0412005-09-14 11:39:25 -0700281#define TX_MAX_RING_SIZE (1 << (PCNET32_LOG_MAX_TX_BUFFERS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283#define RX_RING_SIZE (1 << (PCNET32_LOG_RX_BUFFERS))
Hubert WS Lineabf0412005-09-14 11:39:25 -0700284#define RX_MAX_RING_SIZE (1 << (PCNET32_LOG_MAX_RX_BUFFERS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286#define PKT_BUF_SZ 1544
287
288/* Offsets from base I/O address. */
289#define PCNET32_WIO_RDP 0x10
290#define PCNET32_WIO_RAP 0x12
291#define PCNET32_WIO_RESET 0x14
292#define PCNET32_WIO_BDP 0x16
293
294#define PCNET32_DWIO_RDP 0x10
295#define PCNET32_DWIO_RAP 0x14
296#define PCNET32_DWIO_RESET 0x18
297#define PCNET32_DWIO_BDP 0x1C
298
299#define PCNET32_TOTAL_SIZE 0x20
300
301/* The PCNET32 Rx and Tx ring descriptors. */
302struct pcnet32_rx_head {
303 u32 base;
304 s16 buf_length;
305 s16 status;
306 u32 msg_length;
307 u32 reserved;
308};
309
310struct pcnet32_tx_head {
311 u32 base;
312 s16 length;
313 s16 status;
314 u32 misc;
315 u32 reserved;
316};
317
318/* The PCNET32 32-Bit initialization block, described in databook. */
319struct pcnet32_init_block {
320 u16 mode;
321 u16 tlen_rlen;
322 u8 phys_addr[6];
323 u16 reserved;
324 u32 filter[2];
325 /* Receive and transmit ring base, along with extra bits. */
326 u32 rx_ring;
327 u32 tx_ring;
328};
329
330/* PCnet32 access functions */
331struct pcnet32_access {
332 u16 (*read_csr)(unsigned long, int);
333 void (*write_csr)(unsigned long, int, u16);
334 u16 (*read_bcr)(unsigned long, int);
335 void (*write_bcr)(unsigned long, int, u16);
336 u16 (*read_rap)(unsigned long);
337 void (*write_rap)(unsigned long, u16);
338 void (*reset)(unsigned long);
339};
340
341/*
Hubert WS Lin76209922005-09-14 11:39:27 -0700342 * The first field of pcnet32_private is read by the ethernet device
343 * so the structure should be allocated using pci_alloc_consistent().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
345struct pcnet32_private {
Hubert WS Lin76209922005-09-14 11:39:27 -0700346 struct pcnet32_init_block init_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /* The Tx and Rx ring entries must be aligned on 16-byte boundaries in 32bit mode. */
Hubert WS Lineabf0412005-09-14 11:39:25 -0700348 struct pcnet32_rx_head *rx_ring;
349 struct pcnet32_tx_head *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 dma_addr_t dma_addr; /* DMA address of beginning of this
351 object, returned by
352 pci_alloc_consistent */
353 struct pci_dev *pci_dev; /* Pointer to the associated pci device
354 structure */
355 const char *name;
356 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
Hubert WS Lineabf0412005-09-14 11:39:25 -0700357 struct sk_buff **tx_skbuff;
358 struct sk_buff **rx_skbuff;
359 dma_addr_t *tx_dma_addr;
360 dma_addr_t *rx_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct pcnet32_access a;
362 spinlock_t lock; /* Guard lock */
363 unsigned int cur_rx, cur_tx; /* The next free ring entry */
Hubert WS Lineabf0412005-09-14 11:39:25 -0700364 unsigned int rx_ring_size; /* current rx ring size */
365 unsigned int tx_ring_size; /* current tx ring size */
366 unsigned int rx_mod_mask; /* rx ring modular mask */
367 unsigned int tx_mod_mask; /* tx ring modular mask */
368 unsigned short rx_len_bits;
369 unsigned short tx_len_bits;
370 dma_addr_t rx_ring_dma_addr;
371 dma_addr_t tx_ring_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 unsigned int dirty_rx, dirty_tx; /* The ring entries to be free()ed. */
373 struct net_device_stats stats;
374 char tx_full;
375 int options;
376 unsigned int shared_irq:1, /* shared irq possible */
377 dxsuflo:1, /* disable transmit stop on uflo */
378 mii:1; /* mii port available */
379 struct net_device *next;
380 struct mii_if_info mii_if;
381 struct timer_list watchdog_timer;
382 struct timer_list blink_timer;
383 u32 msg_enable; /* debug message level */
384};
385
386static void pcnet32_probe_vlbus(void);
387static int pcnet32_probe_pci(struct pci_dev *, const struct pci_device_id *);
388static int pcnet32_probe1(unsigned long, int, struct pci_dev *);
389static int pcnet32_open(struct net_device *);
390static int pcnet32_init_ring(struct net_device *);
391static int pcnet32_start_xmit(struct sk_buff *, struct net_device *);
392static int pcnet32_rx(struct net_device *);
393static void pcnet32_tx_timeout (struct net_device *dev);
394static irqreturn_t pcnet32_interrupt(int, void *, struct pt_regs *);
395static int pcnet32_close(struct net_device *);
396static struct net_device_stats *pcnet32_get_stats(struct net_device *);
397static void pcnet32_load_multicast(struct net_device *dev);
398static void pcnet32_set_multicast_list(struct net_device *);
399static int pcnet32_ioctl(struct net_device *, struct ifreq *, int);
400static void pcnet32_watchdog(struct net_device *);
401static int mdio_read(struct net_device *dev, int phy_id, int reg_num);
402static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val);
403static void pcnet32_restart(struct net_device *dev, unsigned int csr0_bits);
404static void pcnet32_ethtool_test(struct net_device *dev,
405 struct ethtool_test *eth_test, u64 *data);
406static int pcnet32_loopback_test(struct net_device *dev, uint64_t *data1);
407static int pcnet32_phys_id(struct net_device *dev, u32 data);
408static void pcnet32_led_blink_callback(struct net_device *dev);
409static int pcnet32_get_regs_len(struct net_device *dev);
410static void pcnet32_get_regs(struct net_device *dev, struct ethtool_regs *regs,
411 void *ptr);
Don Fry1bcd3152005-04-29 14:51:17 -0700412static void pcnet32_purge_tx_ring(struct net_device *dev);
Don Frya88c8442005-11-01 12:04:33 -0800413static int pcnet32_alloc_ring(struct net_device *dev, char *name);
Hubert WS Lineabf0412005-09-14 11:39:25 -0700414static void pcnet32_free_ring(struct net_device *dev);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417enum pci_flags_bit {
418 PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
419 PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
420};
421
422
423static u16 pcnet32_wio_read_csr (unsigned long addr, int index)
424{
425 outw (index, addr+PCNET32_WIO_RAP);
426 return inw (addr+PCNET32_WIO_RDP);
427}
428
429static void pcnet32_wio_write_csr (unsigned long addr, int index, u16 val)
430{
431 outw (index, addr+PCNET32_WIO_RAP);
432 outw (val, addr+PCNET32_WIO_RDP);
433}
434
435static u16 pcnet32_wio_read_bcr (unsigned long addr, int index)
436{
437 outw (index, addr+PCNET32_WIO_RAP);
438 return inw (addr+PCNET32_WIO_BDP);
439}
440
441static void pcnet32_wio_write_bcr (unsigned long addr, int index, u16 val)
442{
443 outw (index, addr+PCNET32_WIO_RAP);
444 outw (val, addr+PCNET32_WIO_BDP);
445}
446
447static u16 pcnet32_wio_read_rap (unsigned long addr)
448{
449 return inw (addr+PCNET32_WIO_RAP);
450}
451
452static void pcnet32_wio_write_rap (unsigned long addr, u16 val)
453{
454 outw (val, addr+PCNET32_WIO_RAP);
455}
456
457static void pcnet32_wio_reset (unsigned long addr)
458{
459 inw (addr+PCNET32_WIO_RESET);
460}
461
462static int pcnet32_wio_check (unsigned long addr)
463{
464 outw (88, addr+PCNET32_WIO_RAP);
465 return (inw (addr+PCNET32_WIO_RAP) == 88);
466}
467
468static struct pcnet32_access pcnet32_wio = {
469 .read_csr = pcnet32_wio_read_csr,
470 .write_csr = pcnet32_wio_write_csr,
471 .read_bcr = pcnet32_wio_read_bcr,
472 .write_bcr = pcnet32_wio_write_bcr,
473 .read_rap = pcnet32_wio_read_rap,
474 .write_rap = pcnet32_wio_write_rap,
475 .reset = pcnet32_wio_reset
476};
477
478static u16 pcnet32_dwio_read_csr (unsigned long addr, int index)
479{
480 outl (index, addr+PCNET32_DWIO_RAP);
481 return (inl (addr+PCNET32_DWIO_RDP) & 0xffff);
482}
483
484static void pcnet32_dwio_write_csr (unsigned long addr, int index, u16 val)
485{
486 outl (index, addr+PCNET32_DWIO_RAP);
487 outl (val, addr+PCNET32_DWIO_RDP);
488}
489
490static u16 pcnet32_dwio_read_bcr (unsigned long addr, int index)
491{
492 outl (index, addr+PCNET32_DWIO_RAP);
493 return (inl (addr+PCNET32_DWIO_BDP) & 0xffff);
494}
495
496static void pcnet32_dwio_write_bcr (unsigned long addr, int index, u16 val)
497{
498 outl (index, addr+PCNET32_DWIO_RAP);
499 outl (val, addr+PCNET32_DWIO_BDP);
500}
501
502static u16 pcnet32_dwio_read_rap (unsigned long addr)
503{
504 return (inl (addr+PCNET32_DWIO_RAP) & 0xffff);
505}
506
507static void pcnet32_dwio_write_rap (unsigned long addr, u16 val)
508{
509 outl (val, addr+PCNET32_DWIO_RAP);
510}
511
512static void pcnet32_dwio_reset (unsigned long addr)
513{
514 inl (addr+PCNET32_DWIO_RESET);
515}
516
517static int pcnet32_dwio_check (unsigned long addr)
518{
519 outl (88, addr+PCNET32_DWIO_RAP);
520 return ((inl (addr+PCNET32_DWIO_RAP) & 0xffff) == 88);
521}
522
523static struct pcnet32_access pcnet32_dwio = {
524 .read_csr = pcnet32_dwio_read_csr,
525 .write_csr = pcnet32_dwio_write_csr,
526 .read_bcr = pcnet32_dwio_read_bcr,
527 .write_bcr = pcnet32_dwio_write_bcr,
528 .read_rap = pcnet32_dwio_read_rap,
529 .write_rap = pcnet32_dwio_write_rap,
530 .reset = pcnet32_dwio_reset
531};
532
533#ifdef CONFIG_NET_POLL_CONTROLLER
534static void pcnet32_poll_controller(struct net_device *dev)
535{
536 disable_irq(dev->irq);
537 pcnet32_interrupt(0, dev, NULL);
538 enable_irq(dev->irq);
539}
540#endif
541
542
543static int pcnet32_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
544{
545 struct pcnet32_private *lp = dev->priv;
546 unsigned long flags;
547 int r = -EOPNOTSUPP;
548
549 if (lp->mii) {
550 spin_lock_irqsave(&lp->lock, flags);
551 mii_ethtool_gset(&lp->mii_if, cmd);
552 spin_unlock_irqrestore(&lp->lock, flags);
553 r = 0;
554 }
555 return r;
556}
557
558static int pcnet32_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
559{
560 struct pcnet32_private *lp = dev->priv;
561 unsigned long flags;
562 int r = -EOPNOTSUPP;
563
564 if (lp->mii) {
565 spin_lock_irqsave(&lp->lock, flags);
566 r = mii_ethtool_sset(&lp->mii_if, cmd);
567 spin_unlock_irqrestore(&lp->lock, flags);
568 }
569 return r;
570}
571
572static void pcnet32_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
573{
574 struct pcnet32_private *lp = dev->priv;
575
576 strcpy (info->driver, DRV_NAME);
577 strcpy (info->version, DRV_VERSION);
578 if (lp->pci_dev)
579 strcpy (info->bus_info, pci_name(lp->pci_dev));
580 else
581 sprintf(info->bus_info, "VLB 0x%lx", dev->base_addr);
582}
583
584static u32 pcnet32_get_link(struct net_device *dev)
585{
586 struct pcnet32_private *lp = dev->priv;
587 unsigned long flags;
588 int r;
589
590 spin_lock_irqsave(&lp->lock, flags);
591 if (lp->mii) {
592 r = mii_link_ok(&lp->mii_if);
593 } else {
594 ulong ioaddr = dev->base_addr; /* card base I/O address */
595 r = (lp->a.read_bcr(ioaddr, 4) != 0xc0);
596 }
597 spin_unlock_irqrestore(&lp->lock, flags);
598
599 return r;
600}
601
602static u32 pcnet32_get_msglevel(struct net_device *dev)
603{
604 struct pcnet32_private *lp = dev->priv;
605 return lp->msg_enable;
606}
607
608static void pcnet32_set_msglevel(struct net_device *dev, u32 value)
609{
610 struct pcnet32_private *lp = dev->priv;
611 lp->msg_enable = value;
612}
613
614static int pcnet32_nway_reset(struct net_device *dev)
615{
616 struct pcnet32_private *lp = dev->priv;
617 unsigned long flags;
618 int r = -EOPNOTSUPP;
619
620 if (lp->mii) {
621 spin_lock_irqsave(&lp->lock, flags);
622 r = mii_nway_restart(&lp->mii_if);
623 spin_unlock_irqrestore(&lp->lock, flags);
624 }
625 return r;
626}
627
628static void pcnet32_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
629{
630 struct pcnet32_private *lp = dev->priv;
631
Hubert WS Lineabf0412005-09-14 11:39:25 -0700632 ering->tx_max_pending = TX_MAX_RING_SIZE - 1;
633 ering->tx_pending = lp->tx_ring_size - 1;
634 ering->rx_max_pending = RX_MAX_RING_SIZE - 1;
635 ering->rx_pending = lp->rx_ring_size - 1;
636}
637
638static int pcnet32_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
639{
640 struct pcnet32_private *lp = dev->priv;
641 unsigned long flags;
642 int i;
643
644 if (ering->rx_mini_pending || ering->rx_jumbo_pending)
645 return -EINVAL;
646
647 if (netif_running(dev))
648 pcnet32_close(dev);
649
650 spin_lock_irqsave(&lp->lock, flags);
651 pcnet32_free_ring(dev);
652 lp->tx_ring_size = min(ering->tx_pending, (unsigned int) TX_MAX_RING_SIZE);
653 lp->rx_ring_size = min(ering->rx_pending, (unsigned int) RX_MAX_RING_SIZE);
654
Hubert WS Lin76209922005-09-14 11:39:27 -0700655 /* set the minimum ring size to 4, to allow the loopback test to work
656 * unchanged.
657 */
658 for (i = 2; i <= PCNET32_LOG_MAX_TX_BUFFERS; i++) {
Hubert WS Lineabf0412005-09-14 11:39:25 -0700659 if (lp->tx_ring_size <= (1 << i))
660 break;
661 }
662 lp->tx_ring_size = (1 << i);
663 lp->tx_mod_mask = lp->tx_ring_size - 1;
664 lp->tx_len_bits = (i << 12);
665
Hubert WS Lin76209922005-09-14 11:39:27 -0700666 for (i = 2; i <= PCNET32_LOG_MAX_RX_BUFFERS; i++) {
Hubert WS Lineabf0412005-09-14 11:39:25 -0700667 if (lp->rx_ring_size <= (1 << i))
668 break;
669 }
670 lp->rx_ring_size = (1 << i);
671 lp->rx_mod_mask = lp->rx_ring_size - 1;
672 lp->rx_len_bits = (i << 4);
673
Don Frya88c8442005-11-01 12:04:33 -0800674 if (pcnet32_alloc_ring(dev, dev->name)) {
Hubert WS Lineabf0412005-09-14 11:39:25 -0700675 pcnet32_free_ring(dev);
Don Frya88c8442005-11-01 12:04:33 -0800676 spin_unlock_irqrestore(&lp->lock, flags);
Hubert WS Lineabf0412005-09-14 11:39:25 -0700677 return -ENOMEM;
678 }
679
680 spin_unlock_irqrestore(&lp->lock, flags);
681
682 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -0800683 printk(KERN_INFO PFX "%s: Ring Param Settings: RX: %d, TX: %d\n",
684 dev->name, lp->rx_ring_size, lp->tx_ring_size);
Hubert WS Lineabf0412005-09-14 11:39:25 -0700685
686 if (netif_running(dev))
687 pcnet32_open(dev);
688
689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692static void pcnet32_get_strings(struct net_device *dev, u32 stringset, u8 *data)
693{
694 memcpy(data, pcnet32_gstrings_test, sizeof(pcnet32_gstrings_test));
695}
696
697static int pcnet32_self_test_count(struct net_device *dev)
698{
699 return PCNET32_TEST_LEN;
700}
701
702static void pcnet32_ethtool_test(struct net_device *dev,
703 struct ethtool_test *test, u64 *data)
704{
705 struct pcnet32_private *lp = dev->priv;
706 int rc;
707
708 if (test->flags == ETH_TEST_FL_OFFLINE) {
709 rc = pcnet32_loopback_test(dev, data);
710 if (rc) {
711 if (netif_msg_hw(lp))
712 printk(KERN_DEBUG "%s: Loopback test failed.\n", dev->name);
713 test->flags |= ETH_TEST_FL_FAILED;
714 } else if (netif_msg_hw(lp))
715 printk(KERN_DEBUG "%s: Loopback test passed.\n", dev->name);
716 } else if (netif_msg_hw(lp))
717 printk(KERN_DEBUG "%s: No tests to run (specify 'Offline' on ethtool).", dev->name);
718} /* end pcnet32_ethtool_test */
719
720static int pcnet32_loopback_test(struct net_device *dev, uint64_t *data1)
721{
722 struct pcnet32_private *lp = dev->priv;
723 struct pcnet32_access *a = &lp->a; /* access to registers */
724 ulong ioaddr = dev->base_addr; /* card base I/O address */
725 struct sk_buff *skb; /* sk buff */
726 int x, i; /* counters */
727 int numbuffs = 4; /* number of TX/RX buffers and descs */
728 u16 status = 0x8300; /* TX ring status */
729 u16 teststatus; /* test of ring status */
730 int rc; /* return code */
731 int size; /* size of packets */
732 unsigned char *packet; /* source packet data */
733 static int data_len = 60; /* length of source packets */
734 unsigned long flags;
735 unsigned long ticks;
736
737 *data1 = 1; /* status of test, default to fail */
738 rc = 1; /* default to fail */
739
740 if (netif_running(dev))
741 pcnet32_close(dev);
742
743 spin_lock_irqsave(&lp->lock, flags);
744
745 /* Reset the PCNET32 */
746 lp->a.reset (ioaddr);
747
748 /* switch pcnet32 to 32bit mode */
749 lp->a.write_bcr (ioaddr, 20, 2);
750
751 lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
752 lp->init_block.filter[0] = 0;
753 lp->init_block.filter[1] = 0;
754
755 /* purge & init rings but don't actually restart */
756 pcnet32_restart(dev, 0x0000);
757
758 lp->a.write_csr(ioaddr, 0, 0x0004); /* Set STOP bit */
759
760 /* Initialize Transmit buffers. */
761 size = data_len + 15;
762 for (x=0; x<numbuffs; x++) {
763 if (!(skb = dev_alloc_skb(size))) {
764 if (netif_msg_hw(lp))
765 printk(KERN_DEBUG "%s: Cannot allocate skb at line: %d!\n",
766 dev->name, __LINE__);
767 goto clean_up;
768 } else {
769 packet = skb->data;
770 skb_put(skb, size); /* create space for data */
771 lp->tx_skbuff[x] = skb;
772 lp->tx_ring[x].length = le16_to_cpu(-skb->len);
773 lp->tx_ring[x].misc = 0;
774
775 /* put DA and SA into the skb */
776 for (i=0; i<6; i++)
777 *packet++ = dev->dev_addr[i];
778 for (i=0; i<6; i++)
779 *packet++ = dev->dev_addr[i];
780 /* type */
781 *packet++ = 0x08;
782 *packet++ = 0x06;
783 /* packet number */
784 *packet++ = x;
785 /* fill packet with data */
786 for (i=0; i<data_len; i++)
787 *packet++ = i;
788
789 lp->tx_dma_addr[x] = pci_map_single(lp->pci_dev, skb->data,
790 skb->len, PCI_DMA_TODEVICE);
791 lp->tx_ring[x].base = (u32)le32_to_cpu(lp->tx_dma_addr[x]);
792 wmb(); /* Make sure owner changes after all others are visible */
793 lp->tx_ring[x].status = le16_to_cpu(status);
794 }
795 }
796
797 x = a->read_bcr(ioaddr, 32); /* set internal loopback in BSR32 */
798 x = x | 0x0002;
799 a->write_bcr(ioaddr, 32, x);
800
801 lp->a.write_csr (ioaddr, 15, 0x0044); /* set int loopback in CSR15 */
802
803 teststatus = le16_to_cpu(0x8000);
804 lp->a.write_csr(ioaddr, 0, 0x0002); /* Set STRT bit */
805
806 /* Check status of descriptors */
807 for (x=0; x<numbuffs; x++) {
808 ticks = 0;
809 rmb();
810 while ((lp->rx_ring[x].status & teststatus) && (ticks < 200)) {
811 spin_unlock_irqrestore(&lp->lock, flags);
812 mdelay(1);
813 spin_lock_irqsave(&lp->lock, flags);
814 rmb();
815 ticks++;
816 }
817 if (ticks == 200) {
818 if (netif_msg_hw(lp))
819 printk("%s: Desc %d failed to reset!\n",dev->name,x);
820 break;
821 }
822 }
823
824 lp->a.write_csr(ioaddr, 0, 0x0004); /* Set STOP bit */
825 wmb();
826 if (netif_msg_hw(lp) && netif_msg_pktdata(lp)) {
827 printk(KERN_DEBUG "%s: RX loopback packets:\n", dev->name);
828
829 for (x=0; x<numbuffs; x++) {
830 printk(KERN_DEBUG "%s: Packet %d:\n", dev->name, x);
831 skb = lp->rx_skbuff[x];
832 for (i=0; i<size; i++) {
833 printk("%02x ", *(skb->data+i));
834 }
835 printk("\n");
836 }
837 }
838
839 x = 0;
840 rc = 0;
841 while (x<numbuffs && !rc) {
842 skb = lp->rx_skbuff[x];
843 packet = lp->tx_skbuff[x]->data;
844 for (i=0; i<size; i++) {
845 if (*(skb->data+i) != packet[i]) {
846 if (netif_msg_hw(lp))
847 printk(KERN_DEBUG "%s: Error in compare! %2x - %02x %02x\n",
848 dev->name, i, *(skb->data+i), packet[i]);
849 rc = 1;
850 break;
851 }
852 }
853 x++;
854 }
855 if (!rc) {
856 *data1 = 0;
857 }
858
859clean_up:
Don Fry1bcd3152005-04-29 14:51:17 -0700860 pcnet32_purge_tx_ring(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 x = a->read_csr(ioaddr, 15) & 0xFFFF;
862 a->write_csr(ioaddr, 15, (x & ~0x0044)); /* reset bits 6 and 2 */
863
864 x = a->read_bcr(ioaddr, 32); /* reset internal loopback */
865 x = x & ~0x0002;
866 a->write_bcr(ioaddr, 32, x);
867
868 spin_unlock_irqrestore(&lp->lock, flags);
869
870 if (netif_running(dev)) {
871 pcnet32_open(dev);
872 } else {
873 lp->a.write_bcr (ioaddr, 20, 4); /* return to 16bit mode */
874 }
875
876 return(rc);
877} /* end pcnet32_loopback_test */
878
879static void pcnet32_led_blink_callback(struct net_device *dev)
880{
881 struct pcnet32_private *lp = dev->priv;
882 struct pcnet32_access *a = &lp->a;
883 ulong ioaddr = dev->base_addr;
884 unsigned long flags;
885 int i;
886
887 spin_lock_irqsave(&lp->lock, flags);
888 for (i=4; i<8; i++) {
889 a->write_bcr(ioaddr, i, a->read_bcr(ioaddr, i) ^ 0x4000);
890 }
891 spin_unlock_irqrestore(&lp->lock, flags);
892
893 mod_timer(&lp->blink_timer, PCNET32_BLINK_TIMEOUT);
894}
895
896static int pcnet32_phys_id(struct net_device *dev, u32 data)
897{
898 struct pcnet32_private *lp = dev->priv;
899 struct pcnet32_access *a = &lp->a;
900 ulong ioaddr = dev->base_addr;
901 unsigned long flags;
902 int i, regs[4];
903
904 if (!lp->blink_timer.function) {
905 init_timer(&lp->blink_timer);
906 lp->blink_timer.function = (void *) pcnet32_led_blink_callback;
907 lp->blink_timer.data = (unsigned long) dev;
908 }
909
910 /* Save the current value of the bcrs */
911 spin_lock_irqsave(&lp->lock, flags);
912 for (i=4; i<8; i++) {
913 regs[i-4] = a->read_bcr(ioaddr, i);
914 }
915 spin_unlock_irqrestore(&lp->lock, flags);
916
917 mod_timer(&lp->blink_timer, jiffies);
918 set_current_state(TASK_INTERRUPTIBLE);
919
920 if ((!data) || (data > (u32)(MAX_SCHEDULE_TIMEOUT / HZ)))
921 data = (u32)(MAX_SCHEDULE_TIMEOUT / HZ);
922
Nishanth Aravamudanf17697a2005-06-20 23:54:12 +0200923 msleep_interruptible(data * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 del_timer_sync(&lp->blink_timer);
925
926 /* Restore the original value of the bcrs */
927 spin_lock_irqsave(&lp->lock, flags);
928 for (i=4; i<8; i++) {
929 a->write_bcr(ioaddr, i, regs[i-4]);
930 }
931 spin_unlock_irqrestore(&lp->lock, flags);
932
933 return 0;
934}
935
936static int pcnet32_get_regs_len(struct net_device *dev)
937{
938 return(PCNET32_NUM_REGS * sizeof(u16));
939}
940
941static void pcnet32_get_regs(struct net_device *dev, struct ethtool_regs *regs,
942 void *ptr)
943{
944 int i, csr0;
945 u16 *buff = ptr;
946 struct pcnet32_private *lp = dev->priv;
947 struct pcnet32_access *a = &lp->a;
948 ulong ioaddr = dev->base_addr;
949 int ticks;
950 unsigned long flags;
951
952 spin_lock_irqsave(&lp->lock, flags);
953
954 csr0 = a->read_csr(ioaddr, 0);
955 if (!(csr0 & 0x0004)) { /* If not stopped */
956 /* set SUSPEND (SPND) - CSR5 bit 0 */
957 a->write_csr(ioaddr, 5, 0x0001);
958
959 /* poll waiting for bit to be set */
960 ticks = 0;
961 while (!(a->read_csr(ioaddr, 5) & 0x0001)) {
962 spin_unlock_irqrestore(&lp->lock, flags);
963 mdelay(1);
964 spin_lock_irqsave(&lp->lock, flags);
965 ticks++;
966 if (ticks > 200) {
967 if (netif_msg_hw(lp))
968 printk(KERN_DEBUG "%s: Error getting into suspend!\n",
969 dev->name);
970 break;
971 }
972 }
973 }
974
975 /* read address PROM */
976 for (i=0; i<16; i += 2)
977 *buff++ = inw(ioaddr + i);
978
979 /* read control and status registers */
980 for (i=0; i<90; i++) {
981 *buff++ = a->read_csr(ioaddr, i);
982 }
983
984 *buff++ = a->read_csr(ioaddr, 112);
985 *buff++ = a->read_csr(ioaddr, 114);
986
987 /* read bus configuration registers */
988 for (i=0; i<36; i++) {
989 *buff++ = a->read_bcr(ioaddr, i);
990 }
991
992 /* read mii phy registers */
993 if (lp->mii) {
994 for (i=0; i<32; i++) {
995 lp->a.write_bcr(ioaddr, 33, ((lp->mii_if.phy_id) << 5) | i);
996 *buff++ = lp->a.read_bcr(ioaddr, 34);
997 }
998 }
999
1000 if (!(csr0 & 0x0004)) { /* If not stopped */
1001 /* clear SUSPEND (SPND) - CSR5 bit 0 */
1002 a->write_csr(ioaddr, 5, 0x0000);
1003 }
1004
1005 i = buff - (u16 *)ptr;
1006 for (; i < PCNET32_NUM_REGS; i++)
1007 *buff++ = 0;
1008
1009 spin_unlock_irqrestore(&lp->lock, flags);
1010}
1011
1012static struct ethtool_ops pcnet32_ethtool_ops = {
1013 .get_settings = pcnet32_get_settings,
1014 .set_settings = pcnet32_set_settings,
1015 .get_drvinfo = pcnet32_get_drvinfo,
1016 .get_msglevel = pcnet32_get_msglevel,
1017 .set_msglevel = pcnet32_set_msglevel,
1018 .nway_reset = pcnet32_nway_reset,
1019 .get_link = pcnet32_get_link,
1020 .get_ringparam = pcnet32_get_ringparam,
Hubert WS Lineabf0412005-09-14 11:39:25 -07001021 .set_ringparam = pcnet32_set_ringparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 .get_tx_csum = ethtool_op_get_tx_csum,
1023 .get_sg = ethtool_op_get_sg,
1024 .get_tso = ethtool_op_get_tso,
1025 .get_strings = pcnet32_get_strings,
1026 .self_test_count = pcnet32_self_test_count,
1027 .self_test = pcnet32_ethtool_test,
1028 .phys_id = pcnet32_phys_id,
1029 .get_regs_len = pcnet32_get_regs_len,
1030 .get_regs = pcnet32_get_regs,
John W. Linvilledb0276b2005-09-12 10:48:57 -04001031 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032};
1033
1034/* only probes for non-PCI devices, the rest are handled by
1035 * pci_register_driver via pcnet32_probe_pci */
1036
1037static void __devinit
1038pcnet32_probe_vlbus(void)
1039{
1040 unsigned int *port, ioaddr;
1041
1042 /* search for PCnet32 VLB cards at known addresses */
1043 for (port = pcnet32_portlist; (ioaddr = *port); port++) {
1044 if (request_region(ioaddr, PCNET32_TOTAL_SIZE, "pcnet32_probe_vlbus")) {
1045 /* check if there is really a pcnet chip on that ioaddr */
1046 if ((inb(ioaddr + 14) == 0x57) && (inb(ioaddr + 15) == 0x57)) {
1047 pcnet32_probe1(ioaddr, 0, NULL);
1048 } else {
1049 release_region(ioaddr, PCNET32_TOTAL_SIZE);
1050 }
1051 }
1052 }
1053}
1054
1055
1056static int __devinit
1057pcnet32_probe_pci(struct pci_dev *pdev, const struct pci_device_id *ent)
1058{
1059 unsigned long ioaddr;
1060 int err;
1061
1062 err = pci_enable_device(pdev);
1063 if (err < 0) {
1064 if (pcnet32_debug & NETIF_MSG_PROBE)
1065 printk(KERN_ERR PFX "failed to enable device -- err=%d\n", err);
1066 return err;
1067 }
1068 pci_set_master(pdev);
1069
1070 ioaddr = pci_resource_start (pdev, 0);
1071 if (!ioaddr) {
1072 if (pcnet32_debug & NETIF_MSG_PROBE)
1073 printk (KERN_ERR PFX "card has no PCI IO resources, aborting\n");
1074 return -ENODEV;
1075 }
1076
1077 if (!pci_dma_supported(pdev, PCNET32_DMA_MASK)) {
1078 if (pcnet32_debug & NETIF_MSG_PROBE)
1079 printk(KERN_ERR PFX "architecture does not support 32bit PCI busmaster DMA\n");
1080 return -ENODEV;
1081 }
1082 if (request_region(ioaddr, PCNET32_TOTAL_SIZE, "pcnet32_probe_pci") == NULL) {
1083 if (pcnet32_debug & NETIF_MSG_PROBE)
1084 printk(KERN_ERR PFX "io address range already allocated\n");
1085 return -EBUSY;
1086 }
1087
1088 err = pcnet32_probe1(ioaddr, 1, pdev);
1089 if (err < 0) {
1090 pci_disable_device(pdev);
1091 }
1092 return err;
1093}
1094
1095
1096/* pcnet32_probe1
1097 * Called from both pcnet32_probe_vlbus and pcnet_probe_pci.
1098 * pdev will be NULL when called from pcnet32_probe_vlbus.
1099 */
1100static int __devinit
1101pcnet32_probe1(unsigned long ioaddr, int shared, struct pci_dev *pdev)
1102{
1103 struct pcnet32_private *lp;
1104 dma_addr_t lp_dma_addr;
1105 int i, media;
1106 int fdx, mii, fset, dxsuflo;
1107 int chip_version;
1108 char *chipname;
1109 struct net_device *dev;
1110 struct pcnet32_access *a = NULL;
1111 u8 promaddr[6];
1112 int ret = -ENODEV;
1113
1114 /* reset the chip */
1115 pcnet32_wio_reset(ioaddr);
1116
1117 /* NOTE: 16-bit check is first, otherwise some older PCnet chips fail */
1118 if (pcnet32_wio_read_csr(ioaddr, 0) == 4 && pcnet32_wio_check(ioaddr)) {
1119 a = &pcnet32_wio;
1120 } else {
1121 pcnet32_dwio_reset(ioaddr);
1122 if (pcnet32_dwio_read_csr(ioaddr, 0) == 4 && pcnet32_dwio_check(ioaddr)) {
1123 a = &pcnet32_dwio;
1124 } else
1125 goto err_release_region;
1126 }
1127
1128 chip_version = a->read_csr(ioaddr, 88) | (a->read_csr(ioaddr,89) << 16);
1129 if ((pcnet32_debug & NETIF_MSG_PROBE) && (pcnet32_debug & NETIF_MSG_HW))
1130 printk(KERN_INFO " PCnet chip version is %#x.\n", chip_version);
1131 if ((chip_version & 0xfff) != 0x003) {
1132 if (pcnet32_debug & NETIF_MSG_PROBE)
1133 printk(KERN_INFO PFX "Unsupported chip version.\n");
1134 goto err_release_region;
1135 }
1136
1137 /* initialize variables */
1138 fdx = mii = fset = dxsuflo = 0;
1139 chip_version = (chip_version >> 12) & 0xffff;
1140
1141 switch (chip_version) {
1142 case 0x2420:
1143 chipname = "PCnet/PCI 79C970"; /* PCI */
1144 break;
1145 case 0x2430:
1146 if (shared)
1147 chipname = "PCnet/PCI 79C970"; /* 970 gives the wrong chip id back */
1148 else
1149 chipname = "PCnet/32 79C965"; /* 486/VL bus */
1150 break;
1151 case 0x2621:
1152 chipname = "PCnet/PCI II 79C970A"; /* PCI */
1153 fdx = 1;
1154 break;
1155 case 0x2623:
1156 chipname = "PCnet/FAST 79C971"; /* PCI */
1157 fdx = 1; mii = 1; fset = 1;
1158 break;
1159 case 0x2624:
1160 chipname = "PCnet/FAST+ 79C972"; /* PCI */
1161 fdx = 1; mii = 1; fset = 1;
1162 break;
1163 case 0x2625:
1164 chipname = "PCnet/FAST III 79C973"; /* PCI */
1165 fdx = 1; mii = 1;
1166 break;
1167 case 0x2626:
1168 chipname = "PCnet/Home 79C978"; /* PCI */
1169 fdx = 1;
1170 /*
1171 * This is based on specs published at www.amd.com. This section
1172 * assumes that a card with a 79C978 wants to go into standard
1173 * ethernet mode. The 79C978 can also go into 1Mb HomePNA mode,
1174 * and the module option homepna=1 can select this instead.
1175 */
1176 media = a->read_bcr(ioaddr, 49);
1177 media &= ~3; /* default to 10Mb ethernet */
1178 if (cards_found < MAX_UNITS && homepna[cards_found])
1179 media |= 1; /* switch to home wiring mode */
1180 if (pcnet32_debug & NETIF_MSG_PROBE)
1181 printk(KERN_DEBUG PFX "media set to %sMbit mode.\n",
1182 (media & 1) ? "1" : "10");
1183 a->write_bcr(ioaddr, 49, media);
1184 break;
1185 case 0x2627:
1186 chipname = "PCnet/FAST III 79C975"; /* PCI */
1187 fdx = 1; mii = 1;
1188 break;
1189 case 0x2628:
1190 chipname = "PCnet/PRO 79C976";
1191 fdx = 1; mii = 1;
1192 break;
1193 default:
1194 if (pcnet32_debug & NETIF_MSG_PROBE)
1195 printk(KERN_INFO PFX "PCnet version %#x, no PCnet32 chip.\n",
1196 chip_version);
1197 goto err_release_region;
1198 }
1199
1200 /*
1201 * On selected chips turn on the BCR18:NOUFLO bit. This stops transmit
1202 * starting until the packet is loaded. Strike one for reliability, lose
1203 * one for latency - although on PCI this isnt a big loss. Older chips
1204 * have FIFO's smaller than a packet, so you can't do this.
1205 * Turn on BCR18:BurstRdEn and BCR18:BurstWrEn.
1206 */
1207
1208 if (fset) {
1209 a->write_bcr(ioaddr, 18, (a->read_bcr(ioaddr, 18) | 0x0860));
1210 a->write_csr(ioaddr, 80, (a->read_csr(ioaddr, 80) & 0x0C00) | 0x0c00);
1211 dxsuflo = 1;
1212 }
1213
1214 dev = alloc_etherdev(0);
1215 if (!dev) {
1216 if (pcnet32_debug & NETIF_MSG_PROBE)
1217 printk(KERN_ERR PFX "Memory allocation failed.\n");
1218 ret = -ENOMEM;
1219 goto err_release_region;
1220 }
1221 SET_NETDEV_DEV(dev, &pdev->dev);
1222
1223 if (pcnet32_debug & NETIF_MSG_PROBE)
1224 printk(KERN_INFO PFX "%s at %#3lx,", chipname, ioaddr);
1225
1226 /* In most chips, after a chip reset, the ethernet address is read from the
1227 * station address PROM at the base address and programmed into the
1228 * "Physical Address Registers" CSR12-14.
1229 * As a precautionary measure, we read the PROM values and complain if
1230 * they disagree with the CSRs. Either way, we use the CSR values, and
1231 * double check that they are valid.
1232 */
1233 for (i = 0; i < 3; i++) {
1234 unsigned int val;
1235 val = a->read_csr(ioaddr, i+12) & 0x0ffff;
1236 /* There may be endianness issues here. */
1237 dev->dev_addr[2*i] = val & 0x0ff;
1238 dev->dev_addr[2*i+1] = (val >> 8) & 0x0ff;
1239 }
1240
1241 /* read PROM address and compare with CSR address */
1242 for (i = 0; i < 6; i++)
1243 promaddr[i] = inb(ioaddr + i);
1244
1245 if (memcmp(promaddr, dev->dev_addr, 6)
1246 || !is_valid_ether_addr(dev->dev_addr)) {
1247#ifndef __powerpc__
1248 if (is_valid_ether_addr(promaddr)) {
1249#else
1250 if (!is_valid_ether_addr(dev->dev_addr)
1251 && is_valid_ether_addr(promaddr)) {
1252#endif
1253 if (pcnet32_debug & NETIF_MSG_PROBE) {
1254 printk(" warning: CSR address invalid,\n");
1255 printk(KERN_INFO " using instead PROM address of");
1256 }
1257 memcpy(dev->dev_addr, promaddr, 6);
1258 }
1259 }
John W. Linvilledb0276b2005-09-12 10:48:57 -04001260 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 /* if the ethernet address is not valid, force to 00:00:00:00:00:00 */
John W. Linvilledb0276b2005-09-12 10:48:57 -04001263 if (!is_valid_ether_addr(dev->perm_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 memset(dev->dev_addr, 0, sizeof(dev->dev_addr));
1265
1266 if (pcnet32_debug & NETIF_MSG_PROBE) {
1267 for (i = 0; i < 6; i++)
1268 printk(" %2.2x", dev->dev_addr[i]);
1269
1270 /* Version 0x2623 and 0x2624 */
1271 if (((chip_version + 1) & 0xfffe) == 0x2624) {
1272 i = a->read_csr(ioaddr, 80) & 0x0C00; /* Check tx_start_pt */
1273 printk("\n" KERN_INFO " tx_start_pt(0x%04x):",i);
1274 switch(i>>10) {
1275 case 0: printk(" 20 bytes,"); break;
1276 case 1: printk(" 64 bytes,"); break;
1277 case 2: printk(" 128 bytes,"); break;
1278 case 3: printk("~220 bytes,"); break;
1279 }
1280 i = a->read_bcr(ioaddr, 18); /* Check Burst/Bus control */
1281 printk(" BCR18(%x):",i&0xffff);
1282 if (i & (1<<5)) printk("BurstWrEn ");
1283 if (i & (1<<6)) printk("BurstRdEn ");
1284 if (i & (1<<7)) printk("DWordIO ");
1285 if (i & (1<<11)) printk("NoUFlow ");
1286 i = a->read_bcr(ioaddr, 25);
1287 printk("\n" KERN_INFO " SRAMSIZE=0x%04x,",i<<8);
1288 i = a->read_bcr(ioaddr, 26);
1289 printk(" SRAM_BND=0x%04x,",i<<8);
1290 i = a->read_bcr(ioaddr, 27);
1291 if (i & (1<<14)) printk("LowLatRx");
1292 }
1293 }
1294
1295 dev->base_addr = ioaddr;
1296 /* pci_alloc_consistent returns page-aligned memory, so we do not have to check the alignment */
1297 if ((lp = pci_alloc_consistent(pdev, sizeof(*lp), &lp_dma_addr)) == NULL) {
1298 if (pcnet32_debug & NETIF_MSG_PROBE)
1299 printk(KERN_ERR PFX "Consistent memory allocation failed.\n");
1300 ret = -ENOMEM;
1301 goto err_free_netdev;
1302 }
1303
1304 memset(lp, 0, sizeof(*lp));
1305 lp->dma_addr = lp_dma_addr;
1306 lp->pci_dev = pdev;
1307
1308 spin_lock_init(&lp->lock);
1309
1310 SET_MODULE_OWNER(dev);
1311 SET_NETDEV_DEV(dev, &pdev->dev);
1312 dev->priv = lp;
1313 lp->name = chipname;
1314 lp->shared_irq = shared;
Hubert WS Lineabf0412005-09-14 11:39:25 -07001315 lp->tx_ring_size = TX_RING_SIZE; /* default tx ring size */
1316 lp->rx_ring_size = RX_RING_SIZE; /* default rx ring size */
1317 lp->tx_mod_mask = lp->tx_ring_size - 1;
1318 lp->rx_mod_mask = lp->rx_ring_size - 1;
1319 lp->tx_len_bits = (PCNET32_LOG_TX_BUFFERS << 12);
1320 lp->rx_len_bits = (PCNET32_LOG_RX_BUFFERS << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 lp->mii_if.full_duplex = fdx;
1322 lp->mii_if.phy_id_mask = 0x1f;
1323 lp->mii_if.reg_num_mask = 0x1f;
1324 lp->dxsuflo = dxsuflo;
1325 lp->mii = mii;
1326 lp->msg_enable = pcnet32_debug;
1327 if ((cards_found >= MAX_UNITS) || (options[cards_found] > sizeof(options_mapping)))
1328 lp->options = PCNET32_PORT_ASEL;
1329 else
1330 lp->options = options_mapping[options[cards_found]];
1331 lp->mii_if.dev = dev;
1332 lp->mii_if.mdio_read = mdio_read;
1333 lp->mii_if.mdio_write = mdio_write;
1334
1335 if (fdx && !(lp->options & PCNET32_PORT_ASEL) &&
1336 ((cards_found>=MAX_UNITS) || full_duplex[cards_found]))
1337 lp->options |= PCNET32_PORT_FD;
1338
1339 if (!a) {
1340 if (pcnet32_debug & NETIF_MSG_PROBE)
1341 printk(KERN_ERR PFX "No access methods\n");
1342 ret = -ENODEV;
1343 goto err_free_consistent;
1344 }
1345 lp->a = *a;
1346
Don Frya88c8442005-11-01 12:04:33 -08001347 /* prior to register_netdev, dev->name is not yet correct */
1348 if (pcnet32_alloc_ring(dev, pci_name(lp->pci_dev))) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001349 ret = -ENOMEM;
1350 goto err_free_ring;
1351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /* detect special T1/E1 WAN card by checking for MAC address */
1353 if (dev->dev_addr[0] == 0x00 && dev->dev_addr[1] == 0xe0
1354 && dev->dev_addr[2] == 0x75)
1355 lp->options = PCNET32_PORT_FD | PCNET32_PORT_GPSI;
1356
1357 lp->init_block.mode = le16_to_cpu(0x0003); /* Disable Rx and Tx. */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001358 lp->init_block.tlen_rlen = le16_to_cpu(lp->tx_len_bits | lp->rx_len_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 for (i = 0; i < 6; i++)
1360 lp->init_block.phys_addr[i] = dev->dev_addr[i];
1361 lp->init_block.filter[0] = 0x00000000;
1362 lp->init_block.filter[1] = 0x00000000;
Hubert WS Lineabf0412005-09-14 11:39:25 -07001363 lp->init_block.rx_ring = (u32)le32_to_cpu(lp->rx_ring_dma_addr);
1364 lp->init_block.tx_ring = (u32)le32_to_cpu(lp->tx_ring_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 /* switch pcnet32 to 32bit mode */
1367 a->write_bcr(ioaddr, 20, 2);
1368
1369 a->write_csr(ioaddr, 1, (lp->dma_addr + offsetof(struct pcnet32_private,
1370 init_block)) & 0xffff);
1371 a->write_csr(ioaddr, 2, (lp->dma_addr + offsetof(struct pcnet32_private,
1372 init_block)) >> 16);
1373
1374 if (pdev) { /* use the IRQ provided by PCI */
1375 dev->irq = pdev->irq;
1376 if (pcnet32_debug & NETIF_MSG_PROBE)
1377 printk(" assigned IRQ %d.\n", dev->irq);
1378 } else {
1379 unsigned long irq_mask = probe_irq_on();
1380
1381 /*
1382 * To auto-IRQ we enable the initialization-done and DMA error
1383 * interrupts. For ISA boards we get a DMA error, but VLB and PCI
1384 * boards will work.
1385 */
1386 /* Trigger an initialization just for the interrupt. */
1387 a->write_csr (ioaddr, 0, 0x41);
1388 mdelay (1);
1389
1390 dev->irq = probe_irq_off (irq_mask);
1391 if (!dev->irq) {
1392 if (pcnet32_debug & NETIF_MSG_PROBE)
1393 printk(", failed to detect IRQ line.\n");
1394 ret = -ENODEV;
Hubert WS Lineabf0412005-09-14 11:39:25 -07001395 goto err_free_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 if (pcnet32_debug & NETIF_MSG_PROBE)
1398 printk(", probed IRQ %d.\n", dev->irq);
1399 }
1400
1401 /* Set the mii phy_id so that we can query the link state */
1402 if (lp->mii)
1403 lp->mii_if.phy_id = ((lp->a.read_bcr (ioaddr, 33)) >> 5) & 0x1f;
1404
1405 init_timer (&lp->watchdog_timer);
1406 lp->watchdog_timer.data = (unsigned long) dev;
1407 lp->watchdog_timer.function = (void *) &pcnet32_watchdog;
1408
1409 /* The PCNET32-specific entries in the device structure. */
1410 dev->open = &pcnet32_open;
1411 dev->hard_start_xmit = &pcnet32_start_xmit;
1412 dev->stop = &pcnet32_close;
1413 dev->get_stats = &pcnet32_get_stats;
1414 dev->set_multicast_list = &pcnet32_set_multicast_list;
1415 dev->do_ioctl = &pcnet32_ioctl;
1416 dev->ethtool_ops = &pcnet32_ethtool_ops;
1417 dev->tx_timeout = pcnet32_tx_timeout;
1418 dev->watchdog_timeo = (5*HZ);
1419
1420#ifdef CONFIG_NET_POLL_CONTROLLER
1421 dev->poll_controller = pcnet32_poll_controller;
1422#endif
1423
1424 /* Fill in the generic fields of the device structure. */
1425 if (register_netdev(dev))
Hubert WS Lineabf0412005-09-14 11:39:25 -07001426 goto err_free_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 if (pdev) {
1429 pci_set_drvdata(pdev, dev);
1430 } else {
1431 lp->next = pcnet32_dev;
1432 pcnet32_dev = dev;
1433 }
1434
1435 if (pcnet32_debug & NETIF_MSG_PROBE)
1436 printk(KERN_INFO "%s: registered as %s\n", dev->name, lp->name);
1437 cards_found++;
1438
1439 /* enable LED writes */
1440 a->write_bcr(ioaddr, 2, a->read_bcr(ioaddr, 2) | 0x1000);
1441
1442 return 0;
1443
Hubert WS Lineabf0412005-09-14 11:39:25 -07001444err_free_ring:
1445 pcnet32_free_ring(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446err_free_consistent:
1447 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
1448err_free_netdev:
1449 free_netdev(dev);
1450err_release_region:
1451 release_region(ioaddr, PCNET32_TOTAL_SIZE);
1452 return ret;
1453}
1454
1455
Don Frya88c8442005-11-01 12:04:33 -08001456/* if any allocation fails, caller must also call pcnet32_free_ring */
1457static int pcnet32_alloc_ring(struct net_device *dev, char *name)
Hubert WS Lineabf0412005-09-14 11:39:25 -07001458{
1459 struct pcnet32_private *lp = dev->priv;
1460
Don Frya88c8442005-11-01 12:04:33 -08001461 lp->tx_ring = pci_alloc_consistent(lp->pci_dev,
1462 sizeof(struct pcnet32_tx_head) * lp->tx_ring_size,
1463 &lp->tx_ring_dma_addr);
1464 if (lp->tx_ring == NULL) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001465 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001466 printk("\n" KERN_ERR PFX "%s: Consistent memory allocation failed.\n",
1467 name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001468 return -ENOMEM;
1469 }
1470
Don Frya88c8442005-11-01 12:04:33 -08001471 lp->rx_ring = pci_alloc_consistent(lp->pci_dev,
1472 sizeof(struct pcnet32_rx_head) * lp->rx_ring_size,
1473 &lp->rx_ring_dma_addr);
1474 if (lp->rx_ring == NULL) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001475 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001476 printk("\n" KERN_ERR PFX "%s: Consistent memory allocation failed.\n",
1477 name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001478 return -ENOMEM;
1479 }
1480
Don Frya88c8442005-11-01 12:04:33 -08001481 lp->tx_dma_addr = kmalloc(sizeof(dma_addr_t) * lp->tx_ring_size,
1482 GFP_ATOMIC);
1483 if (!lp->tx_dma_addr) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001484 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001485 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001486 return -ENOMEM;
1487 }
1488 memset(lp->tx_dma_addr, 0, sizeof(dma_addr_t) * lp->tx_ring_size);
1489
Don Frya88c8442005-11-01 12:04:33 -08001490 lp->rx_dma_addr = kmalloc(sizeof(dma_addr_t) * lp->rx_ring_size,
1491 GFP_ATOMIC);
1492 if (!lp->rx_dma_addr) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001493 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001494 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001495 return -ENOMEM;
1496 }
1497 memset(lp->rx_dma_addr, 0, sizeof(dma_addr_t) * lp->rx_ring_size);
1498
Don Frya88c8442005-11-01 12:04:33 -08001499 lp->tx_skbuff = kmalloc(sizeof(struct sk_buff *) * lp->tx_ring_size,
1500 GFP_ATOMIC);
1501 if (!lp->tx_skbuff) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001502 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001503 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001504 return -ENOMEM;
1505 }
1506 memset(lp->tx_skbuff, 0, sizeof(struct sk_buff *) * lp->tx_ring_size);
1507
Don Frya88c8442005-11-01 12:04:33 -08001508 lp->rx_skbuff = kmalloc(sizeof(struct sk_buff *) * lp->rx_ring_size,
1509 GFP_ATOMIC);
1510 if (!lp->rx_skbuff) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001511 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001512 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001513 return -ENOMEM;
1514 }
1515 memset(lp->rx_skbuff, 0, sizeof(struct sk_buff *) * lp->rx_ring_size);
1516
1517 return 0;
1518}
1519
1520
1521static void pcnet32_free_ring(struct net_device *dev)
1522{
1523 struct pcnet32_private *lp = dev->priv;
1524
1525 kfree(lp->tx_skbuff);
1526 lp->tx_skbuff = NULL;
1527
1528 kfree(lp->rx_skbuff);
1529 lp->rx_skbuff = NULL;
1530
1531 kfree(lp->tx_dma_addr);
1532 lp->tx_dma_addr = NULL;
1533
1534 kfree(lp->rx_dma_addr);
1535 lp->rx_dma_addr = NULL;
1536
1537 if (lp->tx_ring) {
1538 pci_free_consistent(lp->pci_dev, sizeof(struct pcnet32_tx_head) * lp->tx_ring_size,
1539 lp->tx_ring, lp->tx_ring_dma_addr);
1540 lp->tx_ring = NULL;
1541 }
1542
1543 if (lp->rx_ring) {
1544 pci_free_consistent(lp->pci_dev, sizeof(struct pcnet32_rx_head) * lp->rx_ring_size,
1545 lp->rx_ring, lp->rx_ring_dma_addr);
1546 lp->rx_ring = NULL;
1547 }
1548}
1549
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551static int
1552pcnet32_open(struct net_device *dev)
1553{
1554 struct pcnet32_private *lp = dev->priv;
1555 unsigned long ioaddr = dev->base_addr;
1556 u16 val;
1557 int i;
1558 int rc;
1559 unsigned long flags;
1560
1561 if (request_irq(dev->irq, &pcnet32_interrupt,
1562 lp->shared_irq ? SA_SHIRQ : 0, dev->name, (void *)dev)) {
1563 return -EAGAIN;
1564 }
1565
1566 spin_lock_irqsave(&lp->lock, flags);
1567 /* Check for a valid station address */
1568 if (!is_valid_ether_addr(dev->dev_addr)) {
1569 rc = -EINVAL;
1570 goto err_free_irq;
1571 }
1572
1573 /* Reset the PCNET32 */
1574 lp->a.reset (ioaddr);
1575
1576 /* switch pcnet32 to 32bit mode */
1577 lp->a.write_bcr (ioaddr, 20, 2);
1578
1579 if (netif_msg_ifup(lp))
1580 printk(KERN_DEBUG "%s: pcnet32_open() irq %d tx/rx rings %#x/%#x init %#x.\n",
1581 dev->name, dev->irq,
Hubert WS Lineabf0412005-09-14 11:39:25 -07001582 (u32) (lp->tx_ring_dma_addr),
1583 (u32) (lp->rx_ring_dma_addr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 (u32) (lp->dma_addr + offsetof(struct pcnet32_private, init_block)));
1585
1586 /* set/reset autoselect bit */
1587 val = lp->a.read_bcr (ioaddr, 2) & ~2;
1588 if (lp->options & PCNET32_PORT_ASEL)
1589 val |= 2;
1590 lp->a.write_bcr (ioaddr, 2, val);
1591
1592 /* handle full duplex setting */
1593 if (lp->mii_if.full_duplex) {
1594 val = lp->a.read_bcr (ioaddr, 9) & ~3;
1595 if (lp->options & PCNET32_PORT_FD) {
1596 val |= 1;
1597 if (lp->options == (PCNET32_PORT_FD | PCNET32_PORT_AUI))
1598 val |= 2;
1599 } else if (lp->options & PCNET32_PORT_ASEL) {
1600 /* workaround of xSeries250, turn on for 79C975 only */
1601 i = ((lp->a.read_csr(ioaddr, 88) |
1602 (lp->a.read_csr(ioaddr,89) << 16)) >> 12) & 0xffff;
1603 if (i == 0x2627)
1604 val |= 3;
1605 }
1606 lp->a.write_bcr (ioaddr, 9, val);
1607 }
1608
1609 /* set/reset GPSI bit in test register */
1610 val = lp->a.read_csr (ioaddr, 124) & ~0x10;
1611 if ((lp->options & PCNET32_PORT_PORTSEL) == PCNET32_PORT_GPSI)
1612 val |= 0x10;
1613 lp->a.write_csr (ioaddr, 124, val);
1614
1615 /* Allied Telesyn AT 2700/2701 FX looses the link, so skip that */
1616 if (lp->pci_dev->subsystem_vendor == PCI_VENDOR_ID_AT &&
1617 (lp->pci_dev->subsystem_device == PCI_SUBDEVICE_ID_AT_2700FX ||
1618 lp->pci_dev->subsystem_device == PCI_SUBDEVICE_ID_AT_2701FX)) {
1619 printk(KERN_DEBUG "%s: Skipping PHY selection.\n", dev->name);
1620 } else {
1621 /*
1622 * 24 Jun 2004 according AMD, in order to change the PHY,
1623 * DANAS (or DISPM for 79C976) must be set; then select the speed,
1624 * duplex, and/or enable auto negotiation, and clear DANAS
1625 */
1626 if (lp->mii && !(lp->options & PCNET32_PORT_ASEL)) {
1627 lp->a.write_bcr(ioaddr, 32,
1628 lp->a.read_bcr(ioaddr, 32) | 0x0080);
1629 /* disable Auto Negotiation, set 10Mpbs, HD */
1630 val = lp->a.read_bcr(ioaddr, 32) & ~0xb8;
1631 if (lp->options & PCNET32_PORT_FD)
1632 val |= 0x10;
1633 if (lp->options & PCNET32_PORT_100)
1634 val |= 0x08;
1635 lp->a.write_bcr (ioaddr, 32, val);
1636 } else {
1637 if (lp->options & PCNET32_PORT_ASEL) {
1638 lp->a.write_bcr(ioaddr, 32,
1639 lp->a.read_bcr(ioaddr, 32) | 0x0080);
1640 /* enable auto negotiate, setup, disable fd */
1641 val = lp->a.read_bcr(ioaddr, 32) & ~0x98;
1642 val |= 0x20;
1643 lp->a.write_bcr(ioaddr, 32, val);
1644 }
1645 }
1646 }
1647
1648#ifdef DO_DXSUFLO
1649 if (lp->dxsuflo) { /* Disable transmit stop on underflow */
1650 val = lp->a.read_csr (ioaddr, 3);
1651 val |= 0x40;
1652 lp->a.write_csr (ioaddr, 3, val);
1653 }
1654#endif
1655
1656 lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
1657 pcnet32_load_multicast(dev);
1658
1659 if (pcnet32_init_ring(dev)) {
1660 rc = -ENOMEM;
1661 goto err_free_ring;
1662 }
1663
1664 /* Re-initialize the PCNET32, and start it when done. */
1665 lp->a.write_csr (ioaddr, 1, (lp->dma_addr +
1666 offsetof(struct pcnet32_private, init_block)) & 0xffff);
1667 lp->a.write_csr (ioaddr, 2, (lp->dma_addr +
1668 offsetof(struct pcnet32_private, init_block)) >> 16);
1669
1670 lp->a.write_csr (ioaddr, 4, 0x0915);
1671 lp->a.write_csr (ioaddr, 0, 0x0001);
1672
1673 netif_start_queue(dev);
1674
1675 /* If we have mii, print the link status and start the watchdog */
1676 if (lp->mii) {
1677 mii_check_media (&lp->mii_if, netif_msg_link(lp), 1);
1678 mod_timer (&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
1679 }
1680
1681 i = 0;
1682 while (i++ < 100)
1683 if (lp->a.read_csr (ioaddr, 0) & 0x0100)
1684 break;
1685 /*
1686 * We used to clear the InitDone bit, 0x0100, here but Mark Stockton
1687 * reports that doing so triggers a bug in the '974.
1688 */
1689 lp->a.write_csr (ioaddr, 0, 0x0042);
1690
1691 if (netif_msg_ifup(lp))
1692 printk(KERN_DEBUG "%s: pcnet32 open after %d ticks, init block %#x csr0 %4.4x.\n",
1693 dev->name, i, (u32) (lp->dma_addr +
1694 offsetof(struct pcnet32_private, init_block)),
1695 lp->a.read_csr(ioaddr, 0));
1696
1697 spin_unlock_irqrestore(&lp->lock, flags);
1698
1699 return 0; /* Always succeed */
1700
1701err_free_ring:
1702 /* free any allocated skbuffs */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001703 for (i = 0; i < lp->rx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 lp->rx_ring[i].status = 0;
1705 if (lp->rx_skbuff[i]) {
1706 pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i], PKT_BUF_SZ-2,
1707 PCI_DMA_FROMDEVICE);
1708 dev_kfree_skb(lp->rx_skbuff[i]);
1709 }
1710 lp->rx_skbuff[i] = NULL;
1711 lp->rx_dma_addr[i] = 0;
1712 }
Hubert WS Lineabf0412005-09-14 11:39:25 -07001713
1714 pcnet32_free_ring(dev);
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 /*
1717 * Switch back to 16bit mode to avoid problems with dumb
1718 * DOS packet driver after a warm reboot
1719 */
1720 lp->a.write_bcr (ioaddr, 20, 4);
1721
1722err_free_irq:
1723 spin_unlock_irqrestore(&lp->lock, flags);
1724 free_irq(dev->irq, dev);
1725 return rc;
1726}
1727
1728/*
1729 * The LANCE has been halted for one reason or another (busmaster memory
1730 * arbitration error, Tx FIFO underflow, driver stopped it to reconfigure,
1731 * etc.). Modern LANCE variants always reload their ring-buffer
1732 * configuration when restarted, so we must reinitialize our ring
1733 * context before restarting. As part of this reinitialization,
1734 * find all packets still on the Tx ring and pretend that they had been
1735 * sent (in effect, drop the packets on the floor) - the higher-level
1736 * protocols will time out and retransmit. It'd be better to shuffle
1737 * these skbs to a temp list and then actually re-Tx them after
1738 * restarting the chip, but I'm too lazy to do so right now. dplatt@3do.com
1739 */
1740
1741static void
1742pcnet32_purge_tx_ring(struct net_device *dev)
1743{
1744 struct pcnet32_private *lp = dev->priv;
1745 int i;
1746
Hubert WS Lineabf0412005-09-14 11:39:25 -07001747 for (i = 0; i < lp->tx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 lp->tx_ring[i].status = 0; /* CPU owns buffer */
1749 wmb(); /* Make sure adapter sees owner change */
1750 if (lp->tx_skbuff[i]) {
1751 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i],
1752 lp->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
1753 dev_kfree_skb_any(lp->tx_skbuff[i]);
1754 }
1755 lp->tx_skbuff[i] = NULL;
1756 lp->tx_dma_addr[i] = 0;
1757 }
1758}
1759
1760
1761/* Initialize the PCNET32 Rx and Tx rings. */
1762static int
1763pcnet32_init_ring(struct net_device *dev)
1764{
1765 struct pcnet32_private *lp = dev->priv;
1766 int i;
1767
1768 lp->tx_full = 0;
1769 lp->cur_rx = lp->cur_tx = 0;
1770 lp->dirty_rx = lp->dirty_tx = 0;
1771
Hubert WS Lineabf0412005-09-14 11:39:25 -07001772 for (i = 0; i < lp->rx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 struct sk_buff *rx_skbuff = lp->rx_skbuff[i];
1774 if (rx_skbuff == NULL) {
1775 if (!(rx_skbuff = lp->rx_skbuff[i] = dev_alloc_skb (PKT_BUF_SZ))) {
1776 /* there is not much, we can do at this point */
1777 if (pcnet32_debug & NETIF_MSG_DRV)
1778 printk(KERN_ERR "%s: pcnet32_init_ring dev_alloc_skb failed.\n",
1779 dev->name);
1780 return -1;
1781 }
1782 skb_reserve (rx_skbuff, 2);
1783 }
1784
1785 rmb();
1786 if (lp->rx_dma_addr[i] == 0)
David S. Miller689be432005-06-28 15:25:31 -07001787 lp->rx_dma_addr[i] = pci_map_single(lp->pci_dev, rx_skbuff->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 PKT_BUF_SZ-2, PCI_DMA_FROMDEVICE);
1789 lp->rx_ring[i].base = (u32)le32_to_cpu(lp->rx_dma_addr[i]);
1790 lp->rx_ring[i].buf_length = le16_to_cpu(2-PKT_BUF_SZ);
1791 wmb(); /* Make sure owner changes after all others are visible */
1792 lp->rx_ring[i].status = le16_to_cpu(0x8000);
1793 }
1794 /* The Tx buffer address is filled in as needed, but we do need to clear
1795 * the upper ownership bit. */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001796 for (i = 0; i < lp->tx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 lp->tx_ring[i].status = 0; /* CPU owns buffer */
1798 wmb(); /* Make sure adapter sees owner change */
1799 lp->tx_ring[i].base = 0;
1800 lp->tx_dma_addr[i] = 0;
1801 }
1802
Hubert WS Lineabf0412005-09-14 11:39:25 -07001803 lp->init_block.tlen_rlen = le16_to_cpu(lp->tx_len_bits | lp->rx_len_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 for (i = 0; i < 6; i++)
1805 lp->init_block.phys_addr[i] = dev->dev_addr[i];
Hubert WS Lineabf0412005-09-14 11:39:25 -07001806 lp->init_block.rx_ring = (u32)le32_to_cpu(lp->rx_ring_dma_addr);
1807 lp->init_block.tx_ring = (u32)le32_to_cpu(lp->tx_ring_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 wmb(); /* Make sure all changes are visible */
1809 return 0;
1810}
1811
1812/* the pcnet32 has been issued a stop or reset. Wait for the stop bit
1813 * then flush the pending transmit operations, re-initialize the ring,
1814 * and tell the chip to initialize.
1815 */
1816static void
1817pcnet32_restart(struct net_device *dev, unsigned int csr0_bits)
1818{
1819 struct pcnet32_private *lp = dev->priv;
1820 unsigned long ioaddr = dev->base_addr;
1821 int i;
1822
1823 /* wait for stop */
1824 for (i=0; i<100; i++)
1825 if (lp->a.read_csr(ioaddr, 0) & 0x0004)
1826 break;
1827
1828 if (i >= 100 && netif_msg_drv(lp))
1829 printk(KERN_ERR "%s: pcnet32_restart timed out waiting for stop.\n",
1830 dev->name);
1831
1832 pcnet32_purge_tx_ring(dev);
1833 if (pcnet32_init_ring(dev))
1834 return;
1835
1836 /* ReInit Ring */
1837 lp->a.write_csr (ioaddr, 0, 1);
1838 i = 0;
1839 while (i++ < 1000)
1840 if (lp->a.read_csr (ioaddr, 0) & 0x0100)
1841 break;
1842
1843 lp->a.write_csr (ioaddr, 0, csr0_bits);
1844}
1845
1846
1847static void
1848pcnet32_tx_timeout (struct net_device *dev)
1849{
1850 struct pcnet32_private *lp = dev->priv;
1851 unsigned long ioaddr = dev->base_addr, flags;
1852
1853 spin_lock_irqsave(&lp->lock, flags);
1854 /* Transmitter timeout, serious problems. */
1855 if (pcnet32_debug & NETIF_MSG_DRV)
1856 printk(KERN_ERR "%s: transmit timed out, status %4.4x, resetting.\n",
1857 dev->name, lp->a.read_csr(ioaddr, 0));
1858 lp->a.write_csr (ioaddr, 0, 0x0004);
1859 lp->stats.tx_errors++;
1860 if (netif_msg_tx_err(lp)) {
1861 int i;
1862 printk(KERN_DEBUG " Ring data dump: dirty_tx %d cur_tx %d%s cur_rx %d.",
1863 lp->dirty_tx, lp->cur_tx, lp->tx_full ? " (full)" : "",
1864 lp->cur_rx);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001865 for (i = 0 ; i < lp->rx_ring_size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 printk("%s %08x %04x %08x %04x", i & 1 ? "" : "\n ",
1867 le32_to_cpu(lp->rx_ring[i].base),
1868 (-le16_to_cpu(lp->rx_ring[i].buf_length)) & 0xffff,
1869 le32_to_cpu(lp->rx_ring[i].msg_length),
1870 le16_to_cpu(lp->rx_ring[i].status));
Hubert WS Lineabf0412005-09-14 11:39:25 -07001871 for (i = 0 ; i < lp->tx_ring_size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 printk("%s %08x %04x %08x %04x", i & 1 ? "" : "\n ",
1873 le32_to_cpu(lp->tx_ring[i].base),
1874 (-le16_to_cpu(lp->tx_ring[i].length)) & 0xffff,
1875 le32_to_cpu(lp->tx_ring[i].misc),
1876 le16_to_cpu(lp->tx_ring[i].status));
1877 printk("\n");
1878 }
1879 pcnet32_restart(dev, 0x0042);
1880
1881 dev->trans_start = jiffies;
1882 netif_wake_queue(dev);
1883
1884 spin_unlock_irqrestore(&lp->lock, flags);
1885}
1886
1887
1888static int
1889pcnet32_start_xmit(struct sk_buff *skb, struct net_device *dev)
1890{
1891 struct pcnet32_private *lp = dev->priv;
1892 unsigned long ioaddr = dev->base_addr;
1893 u16 status;
1894 int entry;
1895 unsigned long flags;
1896
1897 spin_lock_irqsave(&lp->lock, flags);
1898
1899 if (netif_msg_tx_queued(lp)) {
1900 printk(KERN_DEBUG "%s: pcnet32_start_xmit() called, csr0 %4.4x.\n",
1901 dev->name, lp->a.read_csr(ioaddr, 0));
1902 }
1903
1904 /* Default status -- will not enable Successful-TxDone
1905 * interrupt when that option is available to us.
1906 */
1907 status = 0x8300;
1908
1909 /* Fill in a Tx ring entry */
1910
1911 /* Mask to ring buffer boundary. */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001912 entry = lp->cur_tx & lp->tx_mod_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 /* Caution: the write order is important here, set the status
1915 * with the "ownership" bits last. */
1916
1917 lp->tx_ring[entry].length = le16_to_cpu(-skb->len);
1918
1919 lp->tx_ring[entry].misc = 0x00000000;
1920
1921 lp->tx_skbuff[entry] = skb;
1922 lp->tx_dma_addr[entry] = pci_map_single(lp->pci_dev, skb->data, skb->len,
1923 PCI_DMA_TODEVICE);
1924 lp->tx_ring[entry].base = (u32)le32_to_cpu(lp->tx_dma_addr[entry]);
1925 wmb(); /* Make sure owner changes after all others are visible */
1926 lp->tx_ring[entry].status = le16_to_cpu(status);
1927
1928 lp->cur_tx++;
1929 lp->stats.tx_bytes += skb->len;
1930
1931 /* Trigger an immediate send poll. */
1932 lp->a.write_csr (ioaddr, 0, 0x0048);
1933
1934 dev->trans_start = jiffies;
1935
Hubert WS Lineabf0412005-09-14 11:39:25 -07001936 if (lp->tx_ring[(entry+1) & lp->tx_mod_mask].base != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 lp->tx_full = 1;
1938 netif_stop_queue(dev);
1939 }
1940 spin_unlock_irqrestore(&lp->lock, flags);
1941 return 0;
1942}
1943
1944/* The PCNET32 interrupt handler. */
1945static irqreturn_t
1946pcnet32_interrupt(int irq, void *dev_id, struct pt_regs * regs)
1947{
1948 struct net_device *dev = dev_id;
1949 struct pcnet32_private *lp;
1950 unsigned long ioaddr;
1951 u16 csr0,rap;
1952 int boguscnt = max_interrupt_work;
1953 int must_restart;
1954
1955 if (!dev) {
1956 if (pcnet32_debug & NETIF_MSG_INTR)
1957 printk (KERN_DEBUG "%s(): irq %d for unknown device\n",
1958 __FUNCTION__, irq);
1959 return IRQ_NONE;
1960 }
1961
1962 ioaddr = dev->base_addr;
1963 lp = dev->priv;
1964
1965 spin_lock(&lp->lock);
1966
1967 rap = lp->a.read_rap(ioaddr);
1968 while ((csr0 = lp->a.read_csr (ioaddr, 0)) & 0x8f00 && --boguscnt >= 0) {
1969 if (csr0 == 0xffff) {
1970 break; /* PCMCIA remove happened */
1971 }
1972 /* Acknowledge all of the current interrupt sources ASAP. */
1973 lp->a.write_csr (ioaddr, 0, csr0 & ~0x004f);
1974
1975 must_restart = 0;
1976
1977 if (netif_msg_intr(lp))
1978 printk(KERN_DEBUG "%s: interrupt csr0=%#2.2x new csr=%#2.2x.\n",
1979 dev->name, csr0, lp->a.read_csr (ioaddr, 0));
1980
1981 if (csr0 & 0x0400) /* Rx interrupt */
1982 pcnet32_rx(dev);
1983
1984 if (csr0 & 0x0200) { /* Tx-done interrupt */
1985 unsigned int dirty_tx = lp->dirty_tx;
1986 int delta;
1987
1988 while (dirty_tx != lp->cur_tx) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001989 int entry = dirty_tx & lp->tx_mod_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int status = (short)le16_to_cpu(lp->tx_ring[entry].status);
1991
1992 if (status < 0)
1993 break; /* It still hasn't been Txed */
1994
1995 lp->tx_ring[entry].base = 0;
1996
1997 if (status & 0x4000) {
1998 /* There was an major error, log it. */
1999 int err_status = le32_to_cpu(lp->tx_ring[entry].misc);
2000 lp->stats.tx_errors++;
2001 if (netif_msg_tx_err(lp))
2002 printk(KERN_ERR "%s: Tx error status=%04x err_status=%08x\n",
2003 dev->name, status, err_status);
2004 if (err_status & 0x04000000) lp->stats.tx_aborted_errors++;
2005 if (err_status & 0x08000000) lp->stats.tx_carrier_errors++;
2006 if (err_status & 0x10000000) lp->stats.tx_window_errors++;
2007#ifndef DO_DXSUFLO
2008 if (err_status & 0x40000000) {
2009 lp->stats.tx_fifo_errors++;
2010 /* Ackk! On FIFO errors the Tx unit is turned off! */
2011 /* Remove this verbosity later! */
2012 if (netif_msg_tx_err(lp))
2013 printk(KERN_ERR "%s: Tx FIFO error! CSR0=%4.4x\n",
2014 dev->name, csr0);
2015 must_restart = 1;
2016 }
2017#else
2018 if (err_status & 0x40000000) {
2019 lp->stats.tx_fifo_errors++;
2020 if (! lp->dxsuflo) { /* If controller doesn't recover ... */
2021 /* Ackk! On FIFO errors the Tx unit is turned off! */
2022 /* Remove this verbosity later! */
2023 if (netif_msg_tx_err(lp))
2024 printk(KERN_ERR "%s: Tx FIFO error! CSR0=%4.4x\n",
2025 dev->name, csr0);
2026 must_restart = 1;
2027 }
2028 }
2029#endif
2030 } else {
2031 if (status & 0x1800)
2032 lp->stats.collisions++;
2033 lp->stats.tx_packets++;
2034 }
2035
2036 /* We must free the original skb */
2037 if (lp->tx_skbuff[entry]) {
2038 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[entry],
2039 lp->tx_skbuff[entry]->len, PCI_DMA_TODEVICE);
2040 dev_kfree_skb_irq(lp->tx_skbuff[entry]);
2041 lp->tx_skbuff[entry] = NULL;
2042 lp->tx_dma_addr[entry] = 0;
2043 }
2044 dirty_tx++;
2045 }
2046
Hubert WS Lineabf0412005-09-14 11:39:25 -07002047 delta = (lp->cur_tx - dirty_tx) & (lp->tx_mod_mask + lp->tx_ring_size);
2048 if (delta > lp->tx_ring_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (netif_msg_drv(lp))
2050 printk(KERN_ERR "%s: out-of-sync dirty pointer, %d vs. %d, full=%d.\n",
2051 dev->name, dirty_tx, lp->cur_tx, lp->tx_full);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002052 dirty_tx += lp->tx_ring_size;
2053 delta -= lp->tx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055
2056 if (lp->tx_full &&
2057 netif_queue_stopped(dev) &&
Hubert WS Lineabf0412005-09-14 11:39:25 -07002058 delta < lp->tx_ring_size - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /* The ring is no longer full, clear tbusy. */
2060 lp->tx_full = 0;
2061 netif_wake_queue (dev);
2062 }
2063 lp->dirty_tx = dirty_tx;
2064 }
2065
2066 /* Log misc errors. */
2067 if (csr0 & 0x4000) lp->stats.tx_errors++; /* Tx babble. */
2068 if (csr0 & 0x1000) {
2069 /*
2070 * this happens when our receive ring is full. This shouldn't
2071 * be a problem as we will see normal rx interrupts for the frames
2072 * in the receive ring. But there are some PCI chipsets (I can
2073 * reproduce this on SP3G with Intel saturn chipset) which have
2074 * sometimes problems and will fill up the receive ring with
2075 * error descriptors. In this situation we don't get a rx
2076 * interrupt, but a missed frame interrupt sooner or later.
2077 * So we try to clean up our receive ring here.
2078 */
2079 pcnet32_rx(dev);
2080 lp->stats.rx_errors++; /* Missed a Rx frame. */
2081 }
2082 if (csr0 & 0x0800) {
2083 if (netif_msg_drv(lp))
2084 printk(KERN_ERR "%s: Bus master arbitration failure, status %4.4x.\n",
2085 dev->name, csr0);
2086 /* unlike for the lance, there is no restart needed */
2087 }
2088
2089 if (must_restart) {
2090 /* reset the chip to clear the error condition, then restart */
2091 lp->a.reset(ioaddr);
2092 lp->a.write_csr(ioaddr, 4, 0x0915);
2093 pcnet32_restart(dev, 0x0002);
2094 netif_wake_queue(dev);
2095 }
2096 }
2097
2098 /* Set interrupt enable. */
2099 lp->a.write_csr (ioaddr, 0, 0x0040);
2100 lp->a.write_rap (ioaddr,rap);
2101
2102 if (netif_msg_intr(lp))
2103 printk(KERN_DEBUG "%s: exiting interrupt, csr0=%#4.4x.\n",
2104 dev->name, lp->a.read_csr (ioaddr, 0));
2105
2106 spin_unlock(&lp->lock);
2107
2108 return IRQ_HANDLED;
2109}
2110
2111static int
2112pcnet32_rx(struct net_device *dev)
2113{
2114 struct pcnet32_private *lp = dev->priv;
Hubert WS Lineabf0412005-09-14 11:39:25 -07002115 int entry = lp->cur_rx & lp->rx_mod_mask;
2116 int boguscnt = lp->rx_ring_size / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /* If we own the next entry, it's a new packet. Send it up. */
2119 while ((short)le16_to_cpu(lp->rx_ring[entry].status) >= 0) {
2120 int status = (short)le16_to_cpu(lp->rx_ring[entry].status) >> 8;
2121
2122 if (status != 0x03) { /* There was an error. */
2123 /*
2124 * There is a tricky error noted by John Murphy,
2125 * <murf@perftech.com> to Russ Nelson: Even with full-sized
2126 * buffers it's possible for a jabber packet to use two
2127 * buffers, with only the last correctly noting the error.
2128 */
2129 if (status & 0x01) /* Only count a general error at the */
2130 lp->stats.rx_errors++; /* end of a packet.*/
2131 if (status & 0x20) lp->stats.rx_frame_errors++;
2132 if (status & 0x10) lp->stats.rx_over_errors++;
2133 if (status & 0x08) lp->stats.rx_crc_errors++;
2134 if (status & 0x04) lp->stats.rx_fifo_errors++;
2135 lp->rx_ring[entry].status &= le16_to_cpu(0x03ff);
2136 } else {
2137 /* Malloc up new buffer, compatible with net-2e. */
2138 short pkt_len = (le32_to_cpu(lp->rx_ring[entry].msg_length) & 0xfff)-4;
2139 struct sk_buff *skb;
2140
2141 /* Discard oversize frames. */
2142 if (unlikely(pkt_len > PKT_BUF_SZ - 2)) {
2143 if (netif_msg_drv(lp))
2144 printk(KERN_ERR "%s: Impossible packet size %d!\n",
2145 dev->name, pkt_len);
2146 lp->stats.rx_errors++;
2147 } else if (pkt_len < 60) {
2148 if (netif_msg_rx_err(lp))
2149 printk(KERN_ERR "%s: Runt packet!\n", dev->name);
2150 lp->stats.rx_errors++;
2151 } else {
2152 int rx_in_place = 0;
2153
2154 if (pkt_len > rx_copybreak) {
2155 struct sk_buff *newskb;
2156
2157 if ((newskb = dev_alloc_skb(PKT_BUF_SZ))) {
2158 skb_reserve (newskb, 2);
2159 skb = lp->rx_skbuff[entry];
2160 pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[entry],
2161 PKT_BUF_SZ-2, PCI_DMA_FROMDEVICE);
2162 skb_put (skb, pkt_len);
2163 lp->rx_skbuff[entry] = newskb;
2164 newskb->dev = dev;
2165 lp->rx_dma_addr[entry] =
David S. Miller689be432005-06-28 15:25:31 -07002166 pci_map_single(lp->pci_dev, newskb->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 PKT_BUF_SZ-2, PCI_DMA_FROMDEVICE);
2168 lp->rx_ring[entry].base = le32_to_cpu(lp->rx_dma_addr[entry]);
2169 rx_in_place = 1;
2170 } else
2171 skb = NULL;
2172 } else {
2173 skb = dev_alloc_skb(pkt_len+2);
2174 }
2175
2176 if (skb == NULL) {
2177 int i;
2178 if (netif_msg_drv(lp))
2179 printk(KERN_ERR "%s: Memory squeeze, deferring packet.\n",
2180 dev->name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002181 for (i = 0; i < lp->rx_ring_size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if ((short)le16_to_cpu(lp->rx_ring[(entry+i)
Hubert WS Lineabf0412005-09-14 11:39:25 -07002183 & lp->rx_mod_mask].status) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 break;
2185
Hubert WS Lineabf0412005-09-14 11:39:25 -07002186 if (i > lp->rx_ring_size -2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 lp->stats.rx_dropped++;
2188 lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
2189 wmb(); /* Make sure adapter sees owner change */
2190 lp->cur_rx++;
2191 }
2192 break;
2193 }
2194 skb->dev = dev;
2195 if (!rx_in_place) {
2196 skb_reserve(skb,2); /* 16 byte align */
2197 skb_put(skb,pkt_len); /* Make room */
2198 pci_dma_sync_single_for_cpu(lp->pci_dev,
2199 lp->rx_dma_addr[entry],
2200 PKT_BUF_SZ-2,
2201 PCI_DMA_FROMDEVICE);
2202 eth_copy_and_sum(skb,
David S. Miller689be432005-06-28 15:25:31 -07002203 (unsigned char *)(lp->rx_skbuff[entry]->data),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 pkt_len,0);
2205 pci_dma_sync_single_for_device(lp->pci_dev,
2206 lp->rx_dma_addr[entry],
2207 PKT_BUF_SZ-2,
2208 PCI_DMA_FROMDEVICE);
2209 }
2210 lp->stats.rx_bytes += skb->len;
2211 skb->protocol=eth_type_trans(skb,dev);
2212 netif_rx(skb);
2213 dev->last_rx = jiffies;
2214 lp->stats.rx_packets++;
2215 }
2216 }
2217 /*
2218 * The docs say that the buffer length isn't touched, but Andrew Boyd
2219 * of QNX reports that some revs of the 79C965 clear it.
2220 */
2221 lp->rx_ring[entry].buf_length = le16_to_cpu(2-PKT_BUF_SZ);
2222 wmb(); /* Make sure owner changes after all others are visible */
2223 lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002224 entry = (++lp->cur_rx) & lp->rx_mod_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (--boguscnt <= 0) break; /* don't stay in loop forever */
2226 }
2227
2228 return 0;
2229}
2230
2231static int
2232pcnet32_close(struct net_device *dev)
2233{
2234 unsigned long ioaddr = dev->base_addr;
2235 struct pcnet32_private *lp = dev->priv;
2236 int i;
2237 unsigned long flags;
2238
2239 del_timer_sync(&lp->watchdog_timer);
2240
2241 netif_stop_queue(dev);
2242
2243 spin_lock_irqsave(&lp->lock, flags);
2244
2245 lp->stats.rx_missed_errors = lp->a.read_csr (ioaddr, 112);
2246
2247 if (netif_msg_ifdown(lp))
2248 printk(KERN_DEBUG "%s: Shutting down ethercard, status was %2.2x.\n",
2249 dev->name, lp->a.read_csr (ioaddr, 0));
2250
2251 /* We stop the PCNET32 here -- it occasionally polls memory if we don't. */
2252 lp->a.write_csr (ioaddr, 0, 0x0004);
2253
2254 /*
2255 * Switch back to 16bit mode to avoid problems with dumb
2256 * DOS packet driver after a warm reboot
2257 */
2258 lp->a.write_bcr (ioaddr, 20, 4);
2259
2260 spin_unlock_irqrestore(&lp->lock, flags);
2261
2262 free_irq(dev->irq, dev);
2263
2264 spin_lock_irqsave(&lp->lock, flags);
2265
2266 /* free all allocated skbuffs */
Hubert WS Lineabf0412005-09-14 11:39:25 -07002267 for (i = 0; i < lp->rx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 lp->rx_ring[i].status = 0;
2269 wmb(); /* Make sure adapter sees owner change */
2270 if (lp->rx_skbuff[i]) {
2271 pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i], PKT_BUF_SZ-2,
2272 PCI_DMA_FROMDEVICE);
2273 dev_kfree_skb(lp->rx_skbuff[i]);
2274 }
2275 lp->rx_skbuff[i] = NULL;
2276 lp->rx_dma_addr[i] = 0;
2277 }
2278
Hubert WS Lineabf0412005-09-14 11:39:25 -07002279 for (i = 0; i < lp->tx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 lp->tx_ring[i].status = 0; /* CPU owns buffer */
2281 wmb(); /* Make sure adapter sees owner change */
2282 if (lp->tx_skbuff[i]) {
2283 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i],
2284 lp->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
2285 dev_kfree_skb(lp->tx_skbuff[i]);
2286 }
2287 lp->tx_skbuff[i] = NULL;
2288 lp->tx_dma_addr[i] = 0;
2289 }
2290
2291 spin_unlock_irqrestore(&lp->lock, flags);
2292
2293 return 0;
2294}
2295
2296static struct net_device_stats *
2297pcnet32_get_stats(struct net_device *dev)
2298{
2299 struct pcnet32_private *lp = dev->priv;
2300 unsigned long ioaddr = dev->base_addr;
2301 u16 saved_addr;
2302 unsigned long flags;
2303
2304 spin_lock_irqsave(&lp->lock, flags);
2305 saved_addr = lp->a.read_rap(ioaddr);
2306 lp->stats.rx_missed_errors = lp->a.read_csr (ioaddr, 112);
2307 lp->a.write_rap(ioaddr, saved_addr);
2308 spin_unlock_irqrestore(&lp->lock, flags);
2309
2310 return &lp->stats;
2311}
2312
2313/* taken from the sunlance driver, which it took from the depca driver */
2314static void pcnet32_load_multicast (struct net_device *dev)
2315{
2316 struct pcnet32_private *lp = dev->priv;
2317 volatile struct pcnet32_init_block *ib = &lp->init_block;
2318 volatile u16 *mcast_table = (u16 *)&ib->filter;
2319 struct dev_mc_list *dmi=dev->mc_list;
2320 char *addrs;
2321 int i;
2322 u32 crc;
2323
2324 /* set all multicast bits */
2325 if (dev->flags & IFF_ALLMULTI) {
2326 ib->filter[0] = 0xffffffff;
2327 ib->filter[1] = 0xffffffff;
2328 return;
2329 }
2330 /* clear the multicast filter */
2331 ib->filter[0] = 0;
2332 ib->filter[1] = 0;
2333
2334 /* Add addresses */
2335 for (i = 0; i < dev->mc_count; i++) {
2336 addrs = dmi->dmi_addr;
2337 dmi = dmi->next;
2338
2339 /* multicast address? */
2340 if (!(*addrs & 1))
2341 continue;
2342
2343 crc = ether_crc_le(6, addrs);
2344 crc = crc >> 26;
2345 mcast_table [crc >> 4] = le16_to_cpu(
2346 le16_to_cpu(mcast_table [crc >> 4]) | (1 << (crc & 0xf)));
2347 }
2348 return;
2349}
2350
2351
2352/*
2353 * Set or clear the multicast filter for this adaptor.
2354 */
2355static void pcnet32_set_multicast_list(struct net_device *dev)
2356{
2357 unsigned long ioaddr = dev->base_addr, flags;
2358 struct pcnet32_private *lp = dev->priv;
2359
2360 spin_lock_irqsave(&lp->lock, flags);
2361 if (dev->flags&IFF_PROMISC) {
2362 /* Log any net taps. */
2363 if (netif_msg_hw(lp))
2364 printk(KERN_INFO "%s: Promiscuous mode enabled.\n", dev->name);
2365 lp->init_block.mode = le16_to_cpu(0x8000 | (lp->options & PCNET32_PORT_PORTSEL) << 7);
2366 } else {
2367 lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
2368 pcnet32_load_multicast (dev);
2369 }
2370
2371 lp->a.write_csr (ioaddr, 0, 0x0004); /* Temporarily stop the lance. */
2372 pcnet32_restart(dev, 0x0042); /* Resume normal operation */
2373 netif_wake_queue(dev);
2374
2375 spin_unlock_irqrestore(&lp->lock, flags);
2376}
2377
2378/* This routine assumes that the lp->lock is held */
2379static int mdio_read(struct net_device *dev, int phy_id, int reg_num)
2380{
2381 struct pcnet32_private *lp = dev->priv;
2382 unsigned long ioaddr = dev->base_addr;
2383 u16 val_out;
2384
2385 if (!lp->mii)
2386 return 0;
2387
2388 lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
2389 val_out = lp->a.read_bcr(ioaddr, 34);
2390
2391 return val_out;
2392}
2393
2394/* This routine assumes that the lp->lock is held */
2395static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val)
2396{
2397 struct pcnet32_private *lp = dev->priv;
2398 unsigned long ioaddr = dev->base_addr;
2399
2400 if (!lp->mii)
2401 return;
2402
2403 lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
2404 lp->a.write_bcr(ioaddr, 34, val);
2405}
2406
2407static int pcnet32_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2408{
2409 struct pcnet32_private *lp = dev->priv;
2410 int rc;
2411 unsigned long flags;
2412
2413 /* SIOC[GS]MIIxxx ioctls */
2414 if (lp->mii) {
2415 spin_lock_irqsave(&lp->lock, flags);
2416 rc = generic_mii_ioctl(&lp->mii_if, if_mii(rq), cmd, NULL);
2417 spin_unlock_irqrestore(&lp->lock, flags);
2418 } else {
2419 rc = -EOPNOTSUPP;
2420 }
2421
2422 return rc;
2423}
2424
2425static void pcnet32_watchdog(struct net_device *dev)
2426{
2427 struct pcnet32_private *lp = dev->priv;
2428 unsigned long flags;
2429
2430 /* Print the link status if it has changed */
2431 if (lp->mii) {
2432 spin_lock_irqsave(&lp->lock, flags);
2433 mii_check_media (&lp->mii_if, netif_msg_link(lp), 0);
2434 spin_unlock_irqrestore(&lp->lock, flags);
2435 }
2436
2437 mod_timer (&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
2438}
2439
2440static void __devexit pcnet32_remove_one(struct pci_dev *pdev)
2441{
2442 struct net_device *dev = pci_get_drvdata(pdev);
2443
2444 if (dev) {
2445 struct pcnet32_private *lp = dev->priv;
2446
2447 unregister_netdev(dev);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002448 pcnet32_free_ring(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 release_region(dev->base_addr, PCNET32_TOTAL_SIZE);
2450 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
2451 free_netdev(dev);
2452 pci_disable_device(pdev);
2453 pci_set_drvdata(pdev, NULL);
2454 }
2455}
2456
2457static struct pci_driver pcnet32_driver = {
2458 .name = DRV_NAME,
2459 .probe = pcnet32_probe_pci,
2460 .remove = __devexit_p(pcnet32_remove_one),
2461 .id_table = pcnet32_pci_tbl,
2462};
2463
2464/* An additional parameter that may be passed in... */
2465static int debug = -1;
2466static int tx_start_pt = -1;
2467static int pcnet32_have_pci;
2468
2469module_param(debug, int, 0);
2470MODULE_PARM_DESC(debug, DRV_NAME " debug level");
2471module_param(max_interrupt_work, int, 0);
2472MODULE_PARM_DESC(max_interrupt_work, DRV_NAME " maximum events handled per interrupt");
2473module_param(rx_copybreak, int, 0);
2474MODULE_PARM_DESC(rx_copybreak, DRV_NAME " copy breakpoint for copy-only-tiny-frames");
2475module_param(tx_start_pt, int, 0);
2476MODULE_PARM_DESC(tx_start_pt, DRV_NAME " transmit start point (0-3)");
2477module_param(pcnet32vlb, int, 0);
2478MODULE_PARM_DESC(pcnet32vlb, DRV_NAME " Vesa local bus (VLB) support (0/1)");
2479module_param_array(options, int, NULL, 0);
2480MODULE_PARM_DESC(options, DRV_NAME " initial option setting(s) (0-15)");
2481module_param_array(full_duplex, int, NULL, 0);
2482MODULE_PARM_DESC(full_duplex, DRV_NAME " full duplex setting(s) (1)");
2483/* Module Parameter for HomePNA cards added by Patrick Simmons, 2004 */
2484module_param_array(homepna, int, NULL, 0);
2485MODULE_PARM_DESC(homepna, DRV_NAME " mode for 79C978 cards (1 for HomePNA, 0 for Ethernet, default Ethernet");
2486
2487MODULE_AUTHOR("Thomas Bogendoerfer");
2488MODULE_DESCRIPTION("Driver for PCnet32 and PCnetPCI based ethercards");
2489MODULE_LICENSE("GPL");
2490
2491#define PCNET32_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
2492
2493static int __init pcnet32_init_module(void)
2494{
2495 printk(KERN_INFO "%s", version);
2496
2497 pcnet32_debug = netif_msg_init(debug, PCNET32_MSG_DEFAULT);
2498
2499 if ((tx_start_pt >= 0) && (tx_start_pt <= 3))
2500 tx_start = tx_start_pt;
2501
2502 /* find the PCI devices */
2503 if (!pci_module_init(&pcnet32_driver))
2504 pcnet32_have_pci = 1;
2505
2506 /* should we find any remaining VLbus devices ? */
2507 if (pcnet32vlb)
2508 pcnet32_probe_vlbus();
2509
2510 if (cards_found && (pcnet32_debug & NETIF_MSG_PROBE))
2511 printk(KERN_INFO PFX "%d cards_found.\n", cards_found);
2512
2513 return (pcnet32_have_pci + cards_found) ? 0 : -ENODEV;
2514}
2515
2516static void __exit pcnet32_cleanup_module(void)
2517{
2518 struct net_device *next_dev;
2519
2520 while (pcnet32_dev) {
2521 struct pcnet32_private *lp = pcnet32_dev->priv;
2522 next_dev = lp->next;
2523 unregister_netdev(pcnet32_dev);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002524 pcnet32_free_ring(pcnet32_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 release_region(pcnet32_dev->base_addr, PCNET32_TOTAL_SIZE);
2526 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
2527 free_netdev(pcnet32_dev);
2528 pcnet32_dev = next_dev;
2529 }
2530
2531 if (pcnet32_have_pci)
2532 pci_unregister_driver(&pcnet32_driver);
2533}
2534
2535module_init(pcnet32_init_module);
2536module_exit(pcnet32_cleanup_module);
2537
2538/*
2539 * Local variables:
2540 * c-indent-level: 4
2541 * tab-width: 8
2542 * End:
2543 */