blob: 549a07385884ddb093406a1af4bf0b0580aa03dd [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 Fry2964bbd2005-11-01 12:50:57 -080025#define DRV_VERSION "1.31c"
26#define DRV_RELDATE "01.Nov.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
Don Fry2964bbd2005-11-01 12:50:57 -0800265 * v1.31c 01 Nov 2005 Don Fry Allied Telesyn 2700/2701 FX are 100Mbit only.
266 * Force 100Mbit FD if Auto (ASEL) is selected.
267 * See Bugzilla 2669 and 4551.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
269
270
271/*
272 * Set the number of Tx and Rx buffers, using Log_2(# buffers).
273 * Reasonable default values are 4 Tx buffers, and 16 Rx buffers.
274 * That translates to 2 (4 == 2^^2) and 4 (16 == 2^^4).
275 */
276#ifndef PCNET32_LOG_TX_BUFFERS
Hubert WS Lineabf0412005-09-14 11:39:25 -0700277#define PCNET32_LOG_TX_BUFFERS 4
278#define PCNET32_LOG_RX_BUFFERS 5
279#define PCNET32_LOG_MAX_TX_BUFFERS 9 /* 2^9 == 512 */
280#define PCNET32_LOG_MAX_RX_BUFFERS 9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#endif
282
283#define TX_RING_SIZE (1 << (PCNET32_LOG_TX_BUFFERS))
Hubert WS Lineabf0412005-09-14 11:39:25 -0700284#define TX_MAX_RING_SIZE (1 << (PCNET32_LOG_MAX_TX_BUFFERS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286#define RX_RING_SIZE (1 << (PCNET32_LOG_RX_BUFFERS))
Hubert WS Lineabf0412005-09-14 11:39:25 -0700287#define RX_MAX_RING_SIZE (1 << (PCNET32_LOG_MAX_RX_BUFFERS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289#define PKT_BUF_SZ 1544
290
291/* Offsets from base I/O address. */
292#define PCNET32_WIO_RDP 0x10
293#define PCNET32_WIO_RAP 0x12
294#define PCNET32_WIO_RESET 0x14
295#define PCNET32_WIO_BDP 0x16
296
297#define PCNET32_DWIO_RDP 0x10
298#define PCNET32_DWIO_RAP 0x14
299#define PCNET32_DWIO_RESET 0x18
300#define PCNET32_DWIO_BDP 0x1C
301
302#define PCNET32_TOTAL_SIZE 0x20
303
304/* The PCNET32 Rx and Tx ring descriptors. */
305struct pcnet32_rx_head {
306 u32 base;
307 s16 buf_length;
308 s16 status;
309 u32 msg_length;
310 u32 reserved;
311};
312
313struct pcnet32_tx_head {
314 u32 base;
315 s16 length;
316 s16 status;
317 u32 misc;
318 u32 reserved;
319};
320
321/* The PCNET32 32-Bit initialization block, described in databook. */
322struct pcnet32_init_block {
323 u16 mode;
324 u16 tlen_rlen;
325 u8 phys_addr[6];
326 u16 reserved;
327 u32 filter[2];
328 /* Receive and transmit ring base, along with extra bits. */
329 u32 rx_ring;
330 u32 tx_ring;
331};
332
333/* PCnet32 access functions */
334struct pcnet32_access {
335 u16 (*read_csr)(unsigned long, int);
336 void (*write_csr)(unsigned long, int, u16);
337 u16 (*read_bcr)(unsigned long, int);
338 void (*write_bcr)(unsigned long, int, u16);
339 u16 (*read_rap)(unsigned long);
340 void (*write_rap)(unsigned long, u16);
341 void (*reset)(unsigned long);
342};
343
344/*
Hubert WS Lin76209922005-09-14 11:39:27 -0700345 * The first field of pcnet32_private is read by the ethernet device
346 * so the structure should be allocated using pci_alloc_consistent().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
348struct pcnet32_private {
Hubert WS Lin76209922005-09-14 11:39:27 -0700349 struct pcnet32_init_block init_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* The Tx and Rx ring entries must be aligned on 16-byte boundaries in 32bit mode. */
Hubert WS Lineabf0412005-09-14 11:39:25 -0700351 struct pcnet32_rx_head *rx_ring;
352 struct pcnet32_tx_head *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dma_addr_t dma_addr; /* DMA address of beginning of this
354 object, returned by
355 pci_alloc_consistent */
356 struct pci_dev *pci_dev; /* Pointer to the associated pci device
357 structure */
358 const char *name;
359 /* The saved address of a sent-in-place packet/buffer, for skfree(). */
Hubert WS Lineabf0412005-09-14 11:39:25 -0700360 struct sk_buff **tx_skbuff;
361 struct sk_buff **rx_skbuff;
362 dma_addr_t *tx_dma_addr;
363 dma_addr_t *rx_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct pcnet32_access a;
365 spinlock_t lock; /* Guard lock */
366 unsigned int cur_rx, cur_tx; /* The next free ring entry */
Hubert WS Lineabf0412005-09-14 11:39:25 -0700367 unsigned int rx_ring_size; /* current rx ring size */
368 unsigned int tx_ring_size; /* current tx ring size */
369 unsigned int rx_mod_mask; /* rx ring modular mask */
370 unsigned int tx_mod_mask; /* tx ring modular mask */
371 unsigned short rx_len_bits;
372 unsigned short tx_len_bits;
373 dma_addr_t rx_ring_dma_addr;
374 dma_addr_t tx_ring_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 unsigned int dirty_rx, dirty_tx; /* The ring entries to be free()ed. */
376 struct net_device_stats stats;
377 char tx_full;
378 int options;
379 unsigned int shared_irq:1, /* shared irq possible */
380 dxsuflo:1, /* disable transmit stop on uflo */
381 mii:1; /* mii port available */
382 struct net_device *next;
383 struct mii_if_info mii_if;
384 struct timer_list watchdog_timer;
385 struct timer_list blink_timer;
386 u32 msg_enable; /* debug message level */
387};
388
389static void pcnet32_probe_vlbus(void);
390static int pcnet32_probe_pci(struct pci_dev *, const struct pci_device_id *);
391static int pcnet32_probe1(unsigned long, int, struct pci_dev *);
392static int pcnet32_open(struct net_device *);
393static int pcnet32_init_ring(struct net_device *);
394static int pcnet32_start_xmit(struct sk_buff *, struct net_device *);
395static int pcnet32_rx(struct net_device *);
396static void pcnet32_tx_timeout (struct net_device *dev);
397static irqreturn_t pcnet32_interrupt(int, void *, struct pt_regs *);
398static int pcnet32_close(struct net_device *);
399static struct net_device_stats *pcnet32_get_stats(struct net_device *);
400static void pcnet32_load_multicast(struct net_device *dev);
401static void pcnet32_set_multicast_list(struct net_device *);
402static int pcnet32_ioctl(struct net_device *, struct ifreq *, int);
403static void pcnet32_watchdog(struct net_device *);
404static int mdio_read(struct net_device *dev, int phy_id, int reg_num);
405static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val);
406static void pcnet32_restart(struct net_device *dev, unsigned int csr0_bits);
407static void pcnet32_ethtool_test(struct net_device *dev,
408 struct ethtool_test *eth_test, u64 *data);
409static int pcnet32_loopback_test(struct net_device *dev, uint64_t *data1);
410static int pcnet32_phys_id(struct net_device *dev, u32 data);
411static void pcnet32_led_blink_callback(struct net_device *dev);
412static int pcnet32_get_regs_len(struct net_device *dev);
413static void pcnet32_get_regs(struct net_device *dev, struct ethtool_regs *regs,
414 void *ptr);
Don Fry1bcd3152005-04-29 14:51:17 -0700415static void pcnet32_purge_tx_ring(struct net_device *dev);
Don Frya88c8442005-11-01 12:04:33 -0800416static int pcnet32_alloc_ring(struct net_device *dev, char *name);
Hubert WS Lineabf0412005-09-14 11:39:25 -0700417static void pcnet32_free_ring(struct net_device *dev);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420enum pci_flags_bit {
421 PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
422 PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
423};
424
425
426static u16 pcnet32_wio_read_csr (unsigned long addr, int index)
427{
428 outw (index, addr+PCNET32_WIO_RAP);
429 return inw (addr+PCNET32_WIO_RDP);
430}
431
432static void pcnet32_wio_write_csr (unsigned long addr, int index, u16 val)
433{
434 outw (index, addr+PCNET32_WIO_RAP);
435 outw (val, addr+PCNET32_WIO_RDP);
436}
437
438static u16 pcnet32_wio_read_bcr (unsigned long addr, int index)
439{
440 outw (index, addr+PCNET32_WIO_RAP);
441 return inw (addr+PCNET32_WIO_BDP);
442}
443
444static void pcnet32_wio_write_bcr (unsigned long addr, int index, u16 val)
445{
446 outw (index, addr+PCNET32_WIO_RAP);
447 outw (val, addr+PCNET32_WIO_BDP);
448}
449
450static u16 pcnet32_wio_read_rap (unsigned long addr)
451{
452 return inw (addr+PCNET32_WIO_RAP);
453}
454
455static void pcnet32_wio_write_rap (unsigned long addr, u16 val)
456{
457 outw (val, addr+PCNET32_WIO_RAP);
458}
459
460static void pcnet32_wio_reset (unsigned long addr)
461{
462 inw (addr+PCNET32_WIO_RESET);
463}
464
465static int pcnet32_wio_check (unsigned long addr)
466{
467 outw (88, addr+PCNET32_WIO_RAP);
468 return (inw (addr+PCNET32_WIO_RAP) == 88);
469}
470
471static struct pcnet32_access pcnet32_wio = {
472 .read_csr = pcnet32_wio_read_csr,
473 .write_csr = pcnet32_wio_write_csr,
474 .read_bcr = pcnet32_wio_read_bcr,
475 .write_bcr = pcnet32_wio_write_bcr,
476 .read_rap = pcnet32_wio_read_rap,
477 .write_rap = pcnet32_wio_write_rap,
478 .reset = pcnet32_wio_reset
479};
480
481static u16 pcnet32_dwio_read_csr (unsigned long addr, int index)
482{
483 outl (index, addr+PCNET32_DWIO_RAP);
484 return (inl (addr+PCNET32_DWIO_RDP) & 0xffff);
485}
486
487static void pcnet32_dwio_write_csr (unsigned long addr, int index, u16 val)
488{
489 outl (index, addr+PCNET32_DWIO_RAP);
490 outl (val, addr+PCNET32_DWIO_RDP);
491}
492
493static u16 pcnet32_dwio_read_bcr (unsigned long addr, int index)
494{
495 outl (index, addr+PCNET32_DWIO_RAP);
496 return (inl (addr+PCNET32_DWIO_BDP) & 0xffff);
497}
498
499static void pcnet32_dwio_write_bcr (unsigned long addr, int index, u16 val)
500{
501 outl (index, addr+PCNET32_DWIO_RAP);
502 outl (val, addr+PCNET32_DWIO_BDP);
503}
504
505static u16 pcnet32_dwio_read_rap (unsigned long addr)
506{
507 return (inl (addr+PCNET32_DWIO_RAP) & 0xffff);
508}
509
510static void pcnet32_dwio_write_rap (unsigned long addr, u16 val)
511{
512 outl (val, addr+PCNET32_DWIO_RAP);
513}
514
515static void pcnet32_dwio_reset (unsigned long addr)
516{
517 inl (addr+PCNET32_DWIO_RESET);
518}
519
520static int pcnet32_dwio_check (unsigned long addr)
521{
522 outl (88, addr+PCNET32_DWIO_RAP);
523 return ((inl (addr+PCNET32_DWIO_RAP) & 0xffff) == 88);
524}
525
526static struct pcnet32_access pcnet32_dwio = {
527 .read_csr = pcnet32_dwio_read_csr,
528 .write_csr = pcnet32_dwio_write_csr,
529 .read_bcr = pcnet32_dwio_read_bcr,
530 .write_bcr = pcnet32_dwio_write_bcr,
531 .read_rap = pcnet32_dwio_read_rap,
532 .write_rap = pcnet32_dwio_write_rap,
533 .reset = pcnet32_dwio_reset
534};
535
536#ifdef CONFIG_NET_POLL_CONTROLLER
537static void pcnet32_poll_controller(struct net_device *dev)
538{
539 disable_irq(dev->irq);
540 pcnet32_interrupt(0, dev, NULL);
541 enable_irq(dev->irq);
542}
543#endif
544
545
546static int pcnet32_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
547{
548 struct pcnet32_private *lp = dev->priv;
549 unsigned long flags;
550 int r = -EOPNOTSUPP;
551
552 if (lp->mii) {
553 spin_lock_irqsave(&lp->lock, flags);
554 mii_ethtool_gset(&lp->mii_if, cmd);
555 spin_unlock_irqrestore(&lp->lock, flags);
556 r = 0;
557 }
558 return r;
559}
560
561static int pcnet32_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
562{
563 struct pcnet32_private *lp = dev->priv;
564 unsigned long flags;
565 int r = -EOPNOTSUPP;
566
567 if (lp->mii) {
568 spin_lock_irqsave(&lp->lock, flags);
569 r = mii_ethtool_sset(&lp->mii_if, cmd);
570 spin_unlock_irqrestore(&lp->lock, flags);
571 }
572 return r;
573}
574
575static void pcnet32_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
576{
577 struct pcnet32_private *lp = dev->priv;
578
579 strcpy (info->driver, DRV_NAME);
580 strcpy (info->version, DRV_VERSION);
581 if (lp->pci_dev)
582 strcpy (info->bus_info, pci_name(lp->pci_dev));
583 else
584 sprintf(info->bus_info, "VLB 0x%lx", dev->base_addr);
585}
586
587static u32 pcnet32_get_link(struct net_device *dev)
588{
589 struct pcnet32_private *lp = dev->priv;
590 unsigned long flags;
591 int r;
592
593 spin_lock_irqsave(&lp->lock, flags);
594 if (lp->mii) {
595 r = mii_link_ok(&lp->mii_if);
596 } else {
597 ulong ioaddr = dev->base_addr; /* card base I/O address */
598 r = (lp->a.read_bcr(ioaddr, 4) != 0xc0);
599 }
600 spin_unlock_irqrestore(&lp->lock, flags);
601
602 return r;
603}
604
605static u32 pcnet32_get_msglevel(struct net_device *dev)
606{
607 struct pcnet32_private *lp = dev->priv;
608 return lp->msg_enable;
609}
610
611static void pcnet32_set_msglevel(struct net_device *dev, u32 value)
612{
613 struct pcnet32_private *lp = dev->priv;
614 lp->msg_enable = value;
615}
616
617static int pcnet32_nway_reset(struct net_device *dev)
618{
619 struct pcnet32_private *lp = dev->priv;
620 unsigned long flags;
621 int r = -EOPNOTSUPP;
622
623 if (lp->mii) {
624 spin_lock_irqsave(&lp->lock, flags);
625 r = mii_nway_restart(&lp->mii_if);
626 spin_unlock_irqrestore(&lp->lock, flags);
627 }
628 return r;
629}
630
631static void pcnet32_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
632{
633 struct pcnet32_private *lp = dev->priv;
634
Hubert WS Lineabf0412005-09-14 11:39:25 -0700635 ering->tx_max_pending = TX_MAX_RING_SIZE - 1;
636 ering->tx_pending = lp->tx_ring_size - 1;
637 ering->rx_max_pending = RX_MAX_RING_SIZE - 1;
638 ering->rx_pending = lp->rx_ring_size - 1;
639}
640
641static int pcnet32_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
642{
643 struct pcnet32_private *lp = dev->priv;
644 unsigned long flags;
645 int i;
646
647 if (ering->rx_mini_pending || ering->rx_jumbo_pending)
648 return -EINVAL;
649
650 if (netif_running(dev))
651 pcnet32_close(dev);
652
653 spin_lock_irqsave(&lp->lock, flags);
654 pcnet32_free_ring(dev);
655 lp->tx_ring_size = min(ering->tx_pending, (unsigned int) TX_MAX_RING_SIZE);
656 lp->rx_ring_size = min(ering->rx_pending, (unsigned int) RX_MAX_RING_SIZE);
657
Hubert WS Lin76209922005-09-14 11:39:27 -0700658 /* set the minimum ring size to 4, to allow the loopback test to work
659 * unchanged.
660 */
661 for (i = 2; i <= PCNET32_LOG_MAX_TX_BUFFERS; i++) {
Hubert WS Lineabf0412005-09-14 11:39:25 -0700662 if (lp->tx_ring_size <= (1 << i))
663 break;
664 }
665 lp->tx_ring_size = (1 << i);
666 lp->tx_mod_mask = lp->tx_ring_size - 1;
667 lp->tx_len_bits = (i << 12);
668
Hubert WS Lin76209922005-09-14 11:39:27 -0700669 for (i = 2; i <= PCNET32_LOG_MAX_RX_BUFFERS; i++) {
Hubert WS Lineabf0412005-09-14 11:39:25 -0700670 if (lp->rx_ring_size <= (1 << i))
671 break;
672 }
673 lp->rx_ring_size = (1 << i);
674 lp->rx_mod_mask = lp->rx_ring_size - 1;
675 lp->rx_len_bits = (i << 4);
676
Don Frya88c8442005-11-01 12:04:33 -0800677 if (pcnet32_alloc_ring(dev, dev->name)) {
Hubert WS Lineabf0412005-09-14 11:39:25 -0700678 pcnet32_free_ring(dev);
Don Frya88c8442005-11-01 12:04:33 -0800679 spin_unlock_irqrestore(&lp->lock, flags);
Hubert WS Lineabf0412005-09-14 11:39:25 -0700680 return -ENOMEM;
681 }
682
683 spin_unlock_irqrestore(&lp->lock, flags);
684
685 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -0800686 printk(KERN_INFO PFX "%s: Ring Param Settings: RX: %d, TX: %d\n",
687 dev->name, lp->rx_ring_size, lp->tx_ring_size);
Hubert WS Lineabf0412005-09-14 11:39:25 -0700688
689 if (netif_running(dev))
690 pcnet32_open(dev);
691
692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695static void pcnet32_get_strings(struct net_device *dev, u32 stringset, u8 *data)
696{
697 memcpy(data, pcnet32_gstrings_test, sizeof(pcnet32_gstrings_test));
698}
699
700static int pcnet32_self_test_count(struct net_device *dev)
701{
702 return PCNET32_TEST_LEN;
703}
704
705static void pcnet32_ethtool_test(struct net_device *dev,
706 struct ethtool_test *test, u64 *data)
707{
708 struct pcnet32_private *lp = dev->priv;
709 int rc;
710
711 if (test->flags == ETH_TEST_FL_OFFLINE) {
712 rc = pcnet32_loopback_test(dev, data);
713 if (rc) {
714 if (netif_msg_hw(lp))
715 printk(KERN_DEBUG "%s: Loopback test failed.\n", dev->name);
716 test->flags |= ETH_TEST_FL_FAILED;
717 } else if (netif_msg_hw(lp))
718 printk(KERN_DEBUG "%s: Loopback test passed.\n", dev->name);
719 } else if (netif_msg_hw(lp))
720 printk(KERN_DEBUG "%s: No tests to run (specify 'Offline' on ethtool).", dev->name);
721} /* end pcnet32_ethtool_test */
722
723static int pcnet32_loopback_test(struct net_device *dev, uint64_t *data1)
724{
725 struct pcnet32_private *lp = dev->priv;
726 struct pcnet32_access *a = &lp->a; /* access to registers */
727 ulong ioaddr = dev->base_addr; /* card base I/O address */
728 struct sk_buff *skb; /* sk buff */
729 int x, i; /* counters */
730 int numbuffs = 4; /* number of TX/RX buffers and descs */
731 u16 status = 0x8300; /* TX ring status */
732 u16 teststatus; /* test of ring status */
733 int rc; /* return code */
734 int size; /* size of packets */
735 unsigned char *packet; /* source packet data */
736 static int data_len = 60; /* length of source packets */
737 unsigned long flags;
738 unsigned long ticks;
739
740 *data1 = 1; /* status of test, default to fail */
741 rc = 1; /* default to fail */
742
743 if (netif_running(dev))
744 pcnet32_close(dev);
745
746 spin_lock_irqsave(&lp->lock, flags);
747
748 /* Reset the PCNET32 */
749 lp->a.reset (ioaddr);
750
751 /* switch pcnet32 to 32bit mode */
752 lp->a.write_bcr (ioaddr, 20, 2);
753
754 lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
755 lp->init_block.filter[0] = 0;
756 lp->init_block.filter[1] = 0;
757
758 /* purge & init rings but don't actually restart */
759 pcnet32_restart(dev, 0x0000);
760
761 lp->a.write_csr(ioaddr, 0, 0x0004); /* Set STOP bit */
762
763 /* Initialize Transmit buffers. */
764 size = data_len + 15;
765 for (x=0; x<numbuffs; x++) {
766 if (!(skb = dev_alloc_skb(size))) {
767 if (netif_msg_hw(lp))
768 printk(KERN_DEBUG "%s: Cannot allocate skb at line: %d!\n",
769 dev->name, __LINE__);
770 goto clean_up;
771 } else {
772 packet = skb->data;
773 skb_put(skb, size); /* create space for data */
774 lp->tx_skbuff[x] = skb;
775 lp->tx_ring[x].length = le16_to_cpu(-skb->len);
776 lp->tx_ring[x].misc = 0;
777
778 /* put DA and SA into the skb */
779 for (i=0; i<6; i++)
780 *packet++ = dev->dev_addr[i];
781 for (i=0; i<6; i++)
782 *packet++ = dev->dev_addr[i];
783 /* type */
784 *packet++ = 0x08;
785 *packet++ = 0x06;
786 /* packet number */
787 *packet++ = x;
788 /* fill packet with data */
789 for (i=0; i<data_len; i++)
790 *packet++ = i;
791
792 lp->tx_dma_addr[x] = pci_map_single(lp->pci_dev, skb->data,
793 skb->len, PCI_DMA_TODEVICE);
794 lp->tx_ring[x].base = (u32)le32_to_cpu(lp->tx_dma_addr[x]);
795 wmb(); /* Make sure owner changes after all others are visible */
796 lp->tx_ring[x].status = le16_to_cpu(status);
797 }
798 }
799
800 x = a->read_bcr(ioaddr, 32); /* set internal loopback in BSR32 */
801 x = x | 0x0002;
802 a->write_bcr(ioaddr, 32, x);
803
804 lp->a.write_csr (ioaddr, 15, 0x0044); /* set int loopback in CSR15 */
805
806 teststatus = le16_to_cpu(0x8000);
807 lp->a.write_csr(ioaddr, 0, 0x0002); /* Set STRT bit */
808
809 /* Check status of descriptors */
810 for (x=0; x<numbuffs; x++) {
811 ticks = 0;
812 rmb();
813 while ((lp->rx_ring[x].status & teststatus) && (ticks < 200)) {
814 spin_unlock_irqrestore(&lp->lock, flags);
815 mdelay(1);
816 spin_lock_irqsave(&lp->lock, flags);
817 rmb();
818 ticks++;
819 }
820 if (ticks == 200) {
821 if (netif_msg_hw(lp))
822 printk("%s: Desc %d failed to reset!\n",dev->name,x);
823 break;
824 }
825 }
826
827 lp->a.write_csr(ioaddr, 0, 0x0004); /* Set STOP bit */
828 wmb();
829 if (netif_msg_hw(lp) && netif_msg_pktdata(lp)) {
830 printk(KERN_DEBUG "%s: RX loopback packets:\n", dev->name);
831
832 for (x=0; x<numbuffs; x++) {
833 printk(KERN_DEBUG "%s: Packet %d:\n", dev->name, x);
834 skb = lp->rx_skbuff[x];
835 for (i=0; i<size; i++) {
836 printk("%02x ", *(skb->data+i));
837 }
838 printk("\n");
839 }
840 }
841
842 x = 0;
843 rc = 0;
844 while (x<numbuffs && !rc) {
845 skb = lp->rx_skbuff[x];
846 packet = lp->tx_skbuff[x]->data;
847 for (i=0; i<size; i++) {
848 if (*(skb->data+i) != packet[i]) {
849 if (netif_msg_hw(lp))
850 printk(KERN_DEBUG "%s: Error in compare! %2x - %02x %02x\n",
851 dev->name, i, *(skb->data+i), packet[i]);
852 rc = 1;
853 break;
854 }
855 }
856 x++;
857 }
858 if (!rc) {
859 *data1 = 0;
860 }
861
862clean_up:
Don Fry1bcd3152005-04-29 14:51:17 -0700863 pcnet32_purge_tx_ring(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 x = a->read_csr(ioaddr, 15) & 0xFFFF;
865 a->write_csr(ioaddr, 15, (x & ~0x0044)); /* reset bits 6 and 2 */
866
867 x = a->read_bcr(ioaddr, 32); /* reset internal loopback */
868 x = x & ~0x0002;
869 a->write_bcr(ioaddr, 32, x);
870
871 spin_unlock_irqrestore(&lp->lock, flags);
872
873 if (netif_running(dev)) {
874 pcnet32_open(dev);
875 } else {
876 lp->a.write_bcr (ioaddr, 20, 4); /* return to 16bit mode */
877 }
878
879 return(rc);
880} /* end pcnet32_loopback_test */
881
882static void pcnet32_led_blink_callback(struct net_device *dev)
883{
884 struct pcnet32_private *lp = dev->priv;
885 struct pcnet32_access *a = &lp->a;
886 ulong ioaddr = dev->base_addr;
887 unsigned long flags;
888 int i;
889
890 spin_lock_irqsave(&lp->lock, flags);
891 for (i=4; i<8; i++) {
892 a->write_bcr(ioaddr, i, a->read_bcr(ioaddr, i) ^ 0x4000);
893 }
894 spin_unlock_irqrestore(&lp->lock, flags);
895
896 mod_timer(&lp->blink_timer, PCNET32_BLINK_TIMEOUT);
897}
898
899static int pcnet32_phys_id(struct net_device *dev, u32 data)
900{
901 struct pcnet32_private *lp = dev->priv;
902 struct pcnet32_access *a = &lp->a;
903 ulong ioaddr = dev->base_addr;
904 unsigned long flags;
905 int i, regs[4];
906
907 if (!lp->blink_timer.function) {
908 init_timer(&lp->blink_timer);
909 lp->blink_timer.function = (void *) pcnet32_led_blink_callback;
910 lp->blink_timer.data = (unsigned long) dev;
911 }
912
913 /* Save the current value of the bcrs */
914 spin_lock_irqsave(&lp->lock, flags);
915 for (i=4; i<8; i++) {
916 regs[i-4] = a->read_bcr(ioaddr, i);
917 }
918 spin_unlock_irqrestore(&lp->lock, flags);
919
920 mod_timer(&lp->blink_timer, jiffies);
921 set_current_state(TASK_INTERRUPTIBLE);
922
923 if ((!data) || (data > (u32)(MAX_SCHEDULE_TIMEOUT / HZ)))
924 data = (u32)(MAX_SCHEDULE_TIMEOUT / HZ);
925
Nishanth Aravamudanf17697a2005-06-20 23:54:12 +0200926 msleep_interruptible(data * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 del_timer_sync(&lp->blink_timer);
928
929 /* Restore the original value of the bcrs */
930 spin_lock_irqsave(&lp->lock, flags);
931 for (i=4; i<8; i++) {
932 a->write_bcr(ioaddr, i, regs[i-4]);
933 }
934 spin_unlock_irqrestore(&lp->lock, flags);
935
936 return 0;
937}
938
939static int pcnet32_get_regs_len(struct net_device *dev)
940{
941 return(PCNET32_NUM_REGS * sizeof(u16));
942}
943
944static void pcnet32_get_regs(struct net_device *dev, struct ethtool_regs *regs,
945 void *ptr)
946{
947 int i, csr0;
948 u16 *buff = ptr;
949 struct pcnet32_private *lp = dev->priv;
950 struct pcnet32_access *a = &lp->a;
951 ulong ioaddr = dev->base_addr;
952 int ticks;
953 unsigned long flags;
954
955 spin_lock_irqsave(&lp->lock, flags);
956
957 csr0 = a->read_csr(ioaddr, 0);
958 if (!(csr0 & 0x0004)) { /* If not stopped */
959 /* set SUSPEND (SPND) - CSR5 bit 0 */
960 a->write_csr(ioaddr, 5, 0x0001);
961
962 /* poll waiting for bit to be set */
963 ticks = 0;
964 while (!(a->read_csr(ioaddr, 5) & 0x0001)) {
965 spin_unlock_irqrestore(&lp->lock, flags);
966 mdelay(1);
967 spin_lock_irqsave(&lp->lock, flags);
968 ticks++;
969 if (ticks > 200) {
970 if (netif_msg_hw(lp))
971 printk(KERN_DEBUG "%s: Error getting into suspend!\n",
972 dev->name);
973 break;
974 }
975 }
976 }
977
978 /* read address PROM */
979 for (i=0; i<16; i += 2)
980 *buff++ = inw(ioaddr + i);
981
982 /* read control and status registers */
983 for (i=0; i<90; i++) {
984 *buff++ = a->read_csr(ioaddr, i);
985 }
986
987 *buff++ = a->read_csr(ioaddr, 112);
988 *buff++ = a->read_csr(ioaddr, 114);
989
990 /* read bus configuration registers */
991 for (i=0; i<36; i++) {
992 *buff++ = a->read_bcr(ioaddr, i);
993 }
994
995 /* read mii phy registers */
996 if (lp->mii) {
997 for (i=0; i<32; i++) {
998 lp->a.write_bcr(ioaddr, 33, ((lp->mii_if.phy_id) << 5) | i);
999 *buff++ = lp->a.read_bcr(ioaddr, 34);
1000 }
1001 }
1002
1003 if (!(csr0 & 0x0004)) { /* If not stopped */
1004 /* clear SUSPEND (SPND) - CSR5 bit 0 */
1005 a->write_csr(ioaddr, 5, 0x0000);
1006 }
1007
1008 i = buff - (u16 *)ptr;
1009 for (; i < PCNET32_NUM_REGS; i++)
1010 *buff++ = 0;
1011
1012 spin_unlock_irqrestore(&lp->lock, flags);
1013}
1014
1015static struct ethtool_ops pcnet32_ethtool_ops = {
1016 .get_settings = pcnet32_get_settings,
1017 .set_settings = pcnet32_set_settings,
1018 .get_drvinfo = pcnet32_get_drvinfo,
1019 .get_msglevel = pcnet32_get_msglevel,
1020 .set_msglevel = pcnet32_set_msglevel,
1021 .nway_reset = pcnet32_nway_reset,
1022 .get_link = pcnet32_get_link,
1023 .get_ringparam = pcnet32_get_ringparam,
Hubert WS Lineabf0412005-09-14 11:39:25 -07001024 .set_ringparam = pcnet32_set_ringparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 .get_tx_csum = ethtool_op_get_tx_csum,
1026 .get_sg = ethtool_op_get_sg,
1027 .get_tso = ethtool_op_get_tso,
1028 .get_strings = pcnet32_get_strings,
1029 .self_test_count = pcnet32_self_test_count,
1030 .self_test = pcnet32_ethtool_test,
1031 .phys_id = pcnet32_phys_id,
1032 .get_regs_len = pcnet32_get_regs_len,
1033 .get_regs = pcnet32_get_regs,
John W. Linvilledb0276b2005-09-12 10:48:57 -04001034 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035};
1036
1037/* only probes for non-PCI devices, the rest are handled by
1038 * pci_register_driver via pcnet32_probe_pci */
1039
1040static void __devinit
1041pcnet32_probe_vlbus(void)
1042{
1043 unsigned int *port, ioaddr;
1044
1045 /* search for PCnet32 VLB cards at known addresses */
1046 for (port = pcnet32_portlist; (ioaddr = *port); port++) {
1047 if (request_region(ioaddr, PCNET32_TOTAL_SIZE, "pcnet32_probe_vlbus")) {
1048 /* check if there is really a pcnet chip on that ioaddr */
1049 if ((inb(ioaddr + 14) == 0x57) && (inb(ioaddr + 15) == 0x57)) {
1050 pcnet32_probe1(ioaddr, 0, NULL);
1051 } else {
1052 release_region(ioaddr, PCNET32_TOTAL_SIZE);
1053 }
1054 }
1055 }
1056}
1057
1058
1059static int __devinit
1060pcnet32_probe_pci(struct pci_dev *pdev, const struct pci_device_id *ent)
1061{
1062 unsigned long ioaddr;
1063 int err;
1064
1065 err = pci_enable_device(pdev);
1066 if (err < 0) {
1067 if (pcnet32_debug & NETIF_MSG_PROBE)
1068 printk(KERN_ERR PFX "failed to enable device -- err=%d\n", err);
1069 return err;
1070 }
1071 pci_set_master(pdev);
1072
1073 ioaddr = pci_resource_start (pdev, 0);
1074 if (!ioaddr) {
1075 if (pcnet32_debug & NETIF_MSG_PROBE)
1076 printk (KERN_ERR PFX "card has no PCI IO resources, aborting\n");
1077 return -ENODEV;
1078 }
1079
1080 if (!pci_dma_supported(pdev, PCNET32_DMA_MASK)) {
1081 if (pcnet32_debug & NETIF_MSG_PROBE)
1082 printk(KERN_ERR PFX "architecture does not support 32bit PCI busmaster DMA\n");
1083 return -ENODEV;
1084 }
1085 if (request_region(ioaddr, PCNET32_TOTAL_SIZE, "pcnet32_probe_pci") == NULL) {
1086 if (pcnet32_debug & NETIF_MSG_PROBE)
1087 printk(KERN_ERR PFX "io address range already allocated\n");
1088 return -EBUSY;
1089 }
1090
1091 err = pcnet32_probe1(ioaddr, 1, pdev);
1092 if (err < 0) {
1093 pci_disable_device(pdev);
1094 }
1095 return err;
1096}
1097
1098
1099/* pcnet32_probe1
1100 * Called from both pcnet32_probe_vlbus and pcnet_probe_pci.
1101 * pdev will be NULL when called from pcnet32_probe_vlbus.
1102 */
1103static int __devinit
1104pcnet32_probe1(unsigned long ioaddr, int shared, struct pci_dev *pdev)
1105{
1106 struct pcnet32_private *lp;
1107 dma_addr_t lp_dma_addr;
1108 int i, media;
1109 int fdx, mii, fset, dxsuflo;
1110 int chip_version;
1111 char *chipname;
1112 struct net_device *dev;
1113 struct pcnet32_access *a = NULL;
1114 u8 promaddr[6];
1115 int ret = -ENODEV;
1116
1117 /* reset the chip */
1118 pcnet32_wio_reset(ioaddr);
1119
1120 /* NOTE: 16-bit check is first, otherwise some older PCnet chips fail */
1121 if (pcnet32_wio_read_csr(ioaddr, 0) == 4 && pcnet32_wio_check(ioaddr)) {
1122 a = &pcnet32_wio;
1123 } else {
1124 pcnet32_dwio_reset(ioaddr);
1125 if (pcnet32_dwio_read_csr(ioaddr, 0) == 4 && pcnet32_dwio_check(ioaddr)) {
1126 a = &pcnet32_dwio;
1127 } else
1128 goto err_release_region;
1129 }
1130
1131 chip_version = a->read_csr(ioaddr, 88) | (a->read_csr(ioaddr,89) << 16);
1132 if ((pcnet32_debug & NETIF_MSG_PROBE) && (pcnet32_debug & NETIF_MSG_HW))
1133 printk(KERN_INFO " PCnet chip version is %#x.\n", chip_version);
1134 if ((chip_version & 0xfff) != 0x003) {
1135 if (pcnet32_debug & NETIF_MSG_PROBE)
1136 printk(KERN_INFO PFX "Unsupported chip version.\n");
1137 goto err_release_region;
1138 }
1139
1140 /* initialize variables */
1141 fdx = mii = fset = dxsuflo = 0;
1142 chip_version = (chip_version >> 12) & 0xffff;
1143
1144 switch (chip_version) {
1145 case 0x2420:
1146 chipname = "PCnet/PCI 79C970"; /* PCI */
1147 break;
1148 case 0x2430:
1149 if (shared)
1150 chipname = "PCnet/PCI 79C970"; /* 970 gives the wrong chip id back */
1151 else
1152 chipname = "PCnet/32 79C965"; /* 486/VL bus */
1153 break;
1154 case 0x2621:
1155 chipname = "PCnet/PCI II 79C970A"; /* PCI */
1156 fdx = 1;
1157 break;
1158 case 0x2623:
1159 chipname = "PCnet/FAST 79C971"; /* PCI */
1160 fdx = 1; mii = 1; fset = 1;
1161 break;
1162 case 0x2624:
1163 chipname = "PCnet/FAST+ 79C972"; /* PCI */
1164 fdx = 1; mii = 1; fset = 1;
1165 break;
1166 case 0x2625:
1167 chipname = "PCnet/FAST III 79C973"; /* PCI */
1168 fdx = 1; mii = 1;
1169 break;
1170 case 0x2626:
1171 chipname = "PCnet/Home 79C978"; /* PCI */
1172 fdx = 1;
1173 /*
1174 * This is based on specs published at www.amd.com. This section
1175 * assumes that a card with a 79C978 wants to go into standard
1176 * ethernet mode. The 79C978 can also go into 1Mb HomePNA mode,
1177 * and the module option homepna=1 can select this instead.
1178 */
1179 media = a->read_bcr(ioaddr, 49);
1180 media &= ~3; /* default to 10Mb ethernet */
1181 if (cards_found < MAX_UNITS && homepna[cards_found])
1182 media |= 1; /* switch to home wiring mode */
1183 if (pcnet32_debug & NETIF_MSG_PROBE)
1184 printk(KERN_DEBUG PFX "media set to %sMbit mode.\n",
1185 (media & 1) ? "1" : "10");
1186 a->write_bcr(ioaddr, 49, media);
1187 break;
1188 case 0x2627:
1189 chipname = "PCnet/FAST III 79C975"; /* PCI */
1190 fdx = 1; mii = 1;
1191 break;
1192 case 0x2628:
1193 chipname = "PCnet/PRO 79C976";
1194 fdx = 1; mii = 1;
1195 break;
1196 default:
1197 if (pcnet32_debug & NETIF_MSG_PROBE)
1198 printk(KERN_INFO PFX "PCnet version %#x, no PCnet32 chip.\n",
1199 chip_version);
1200 goto err_release_region;
1201 }
1202
1203 /*
1204 * On selected chips turn on the BCR18:NOUFLO bit. This stops transmit
1205 * starting until the packet is loaded. Strike one for reliability, lose
1206 * one for latency - although on PCI this isnt a big loss. Older chips
1207 * have FIFO's smaller than a packet, so you can't do this.
1208 * Turn on BCR18:BurstRdEn and BCR18:BurstWrEn.
1209 */
1210
1211 if (fset) {
1212 a->write_bcr(ioaddr, 18, (a->read_bcr(ioaddr, 18) | 0x0860));
1213 a->write_csr(ioaddr, 80, (a->read_csr(ioaddr, 80) & 0x0C00) | 0x0c00);
1214 dxsuflo = 1;
1215 }
1216
1217 dev = alloc_etherdev(0);
1218 if (!dev) {
1219 if (pcnet32_debug & NETIF_MSG_PROBE)
1220 printk(KERN_ERR PFX "Memory allocation failed.\n");
1221 ret = -ENOMEM;
1222 goto err_release_region;
1223 }
1224 SET_NETDEV_DEV(dev, &pdev->dev);
1225
1226 if (pcnet32_debug & NETIF_MSG_PROBE)
1227 printk(KERN_INFO PFX "%s at %#3lx,", chipname, ioaddr);
1228
1229 /* In most chips, after a chip reset, the ethernet address is read from the
1230 * station address PROM at the base address and programmed into the
1231 * "Physical Address Registers" CSR12-14.
1232 * As a precautionary measure, we read the PROM values and complain if
1233 * they disagree with the CSRs. Either way, we use the CSR values, and
1234 * double check that they are valid.
1235 */
1236 for (i = 0; i < 3; i++) {
1237 unsigned int val;
1238 val = a->read_csr(ioaddr, i+12) & 0x0ffff;
1239 /* There may be endianness issues here. */
1240 dev->dev_addr[2*i] = val & 0x0ff;
1241 dev->dev_addr[2*i+1] = (val >> 8) & 0x0ff;
1242 }
1243
1244 /* read PROM address and compare with CSR address */
1245 for (i = 0; i < 6; i++)
1246 promaddr[i] = inb(ioaddr + i);
1247
1248 if (memcmp(promaddr, dev->dev_addr, 6)
1249 || !is_valid_ether_addr(dev->dev_addr)) {
1250#ifndef __powerpc__
1251 if (is_valid_ether_addr(promaddr)) {
1252#else
1253 if (!is_valid_ether_addr(dev->dev_addr)
1254 && is_valid_ether_addr(promaddr)) {
1255#endif
1256 if (pcnet32_debug & NETIF_MSG_PROBE) {
1257 printk(" warning: CSR address invalid,\n");
1258 printk(KERN_INFO " using instead PROM address of");
1259 }
1260 memcpy(dev->dev_addr, promaddr, 6);
1261 }
1262 }
John W. Linvilledb0276b2005-09-12 10:48:57 -04001263 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 /* if the ethernet address is not valid, force to 00:00:00:00:00:00 */
John W. Linvilledb0276b2005-09-12 10:48:57 -04001266 if (!is_valid_ether_addr(dev->perm_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 memset(dev->dev_addr, 0, sizeof(dev->dev_addr));
1268
1269 if (pcnet32_debug & NETIF_MSG_PROBE) {
1270 for (i = 0; i < 6; i++)
1271 printk(" %2.2x", dev->dev_addr[i]);
1272
1273 /* Version 0x2623 and 0x2624 */
1274 if (((chip_version + 1) & 0xfffe) == 0x2624) {
1275 i = a->read_csr(ioaddr, 80) & 0x0C00; /* Check tx_start_pt */
1276 printk("\n" KERN_INFO " tx_start_pt(0x%04x):",i);
1277 switch(i>>10) {
1278 case 0: printk(" 20 bytes,"); break;
1279 case 1: printk(" 64 bytes,"); break;
1280 case 2: printk(" 128 bytes,"); break;
1281 case 3: printk("~220 bytes,"); break;
1282 }
1283 i = a->read_bcr(ioaddr, 18); /* Check Burst/Bus control */
1284 printk(" BCR18(%x):",i&0xffff);
1285 if (i & (1<<5)) printk("BurstWrEn ");
1286 if (i & (1<<6)) printk("BurstRdEn ");
1287 if (i & (1<<7)) printk("DWordIO ");
1288 if (i & (1<<11)) printk("NoUFlow ");
1289 i = a->read_bcr(ioaddr, 25);
1290 printk("\n" KERN_INFO " SRAMSIZE=0x%04x,",i<<8);
1291 i = a->read_bcr(ioaddr, 26);
1292 printk(" SRAM_BND=0x%04x,",i<<8);
1293 i = a->read_bcr(ioaddr, 27);
1294 if (i & (1<<14)) printk("LowLatRx");
1295 }
1296 }
1297
1298 dev->base_addr = ioaddr;
1299 /* pci_alloc_consistent returns page-aligned memory, so we do not have to check the alignment */
1300 if ((lp = pci_alloc_consistent(pdev, sizeof(*lp), &lp_dma_addr)) == NULL) {
1301 if (pcnet32_debug & NETIF_MSG_PROBE)
1302 printk(KERN_ERR PFX "Consistent memory allocation failed.\n");
1303 ret = -ENOMEM;
1304 goto err_free_netdev;
1305 }
1306
1307 memset(lp, 0, sizeof(*lp));
1308 lp->dma_addr = lp_dma_addr;
1309 lp->pci_dev = pdev;
1310
1311 spin_lock_init(&lp->lock);
1312
1313 SET_MODULE_OWNER(dev);
1314 SET_NETDEV_DEV(dev, &pdev->dev);
1315 dev->priv = lp;
1316 lp->name = chipname;
1317 lp->shared_irq = shared;
Hubert WS Lineabf0412005-09-14 11:39:25 -07001318 lp->tx_ring_size = TX_RING_SIZE; /* default tx ring size */
1319 lp->rx_ring_size = RX_RING_SIZE; /* default rx ring size */
1320 lp->tx_mod_mask = lp->tx_ring_size - 1;
1321 lp->rx_mod_mask = lp->rx_ring_size - 1;
1322 lp->tx_len_bits = (PCNET32_LOG_TX_BUFFERS << 12);
1323 lp->rx_len_bits = (PCNET32_LOG_RX_BUFFERS << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 lp->mii_if.full_duplex = fdx;
1325 lp->mii_if.phy_id_mask = 0x1f;
1326 lp->mii_if.reg_num_mask = 0x1f;
1327 lp->dxsuflo = dxsuflo;
1328 lp->mii = mii;
1329 lp->msg_enable = pcnet32_debug;
1330 if ((cards_found >= MAX_UNITS) || (options[cards_found] > sizeof(options_mapping)))
1331 lp->options = PCNET32_PORT_ASEL;
1332 else
1333 lp->options = options_mapping[options[cards_found]];
1334 lp->mii_if.dev = dev;
1335 lp->mii_if.mdio_read = mdio_read;
1336 lp->mii_if.mdio_write = mdio_write;
1337
1338 if (fdx && !(lp->options & PCNET32_PORT_ASEL) &&
1339 ((cards_found>=MAX_UNITS) || full_duplex[cards_found]))
1340 lp->options |= PCNET32_PORT_FD;
1341
1342 if (!a) {
1343 if (pcnet32_debug & NETIF_MSG_PROBE)
1344 printk(KERN_ERR PFX "No access methods\n");
1345 ret = -ENODEV;
1346 goto err_free_consistent;
1347 }
1348 lp->a = *a;
1349
Don Frya88c8442005-11-01 12:04:33 -08001350 /* prior to register_netdev, dev->name is not yet correct */
1351 if (pcnet32_alloc_ring(dev, pci_name(lp->pci_dev))) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001352 ret = -ENOMEM;
1353 goto err_free_ring;
1354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /* detect special T1/E1 WAN card by checking for MAC address */
1356 if (dev->dev_addr[0] == 0x00 && dev->dev_addr[1] == 0xe0
1357 && dev->dev_addr[2] == 0x75)
1358 lp->options = PCNET32_PORT_FD | PCNET32_PORT_GPSI;
1359
1360 lp->init_block.mode = le16_to_cpu(0x0003); /* Disable Rx and Tx. */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001361 lp->init_block.tlen_rlen = le16_to_cpu(lp->tx_len_bits | lp->rx_len_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 for (i = 0; i < 6; i++)
1363 lp->init_block.phys_addr[i] = dev->dev_addr[i];
1364 lp->init_block.filter[0] = 0x00000000;
1365 lp->init_block.filter[1] = 0x00000000;
Hubert WS Lineabf0412005-09-14 11:39:25 -07001366 lp->init_block.rx_ring = (u32)le32_to_cpu(lp->rx_ring_dma_addr);
1367 lp->init_block.tx_ring = (u32)le32_to_cpu(lp->tx_ring_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 /* switch pcnet32 to 32bit mode */
1370 a->write_bcr(ioaddr, 20, 2);
1371
1372 a->write_csr(ioaddr, 1, (lp->dma_addr + offsetof(struct pcnet32_private,
1373 init_block)) & 0xffff);
1374 a->write_csr(ioaddr, 2, (lp->dma_addr + offsetof(struct pcnet32_private,
1375 init_block)) >> 16);
1376
1377 if (pdev) { /* use the IRQ provided by PCI */
1378 dev->irq = pdev->irq;
1379 if (pcnet32_debug & NETIF_MSG_PROBE)
1380 printk(" assigned IRQ %d.\n", dev->irq);
1381 } else {
1382 unsigned long irq_mask = probe_irq_on();
1383
1384 /*
1385 * To auto-IRQ we enable the initialization-done and DMA error
1386 * interrupts. For ISA boards we get a DMA error, but VLB and PCI
1387 * boards will work.
1388 */
1389 /* Trigger an initialization just for the interrupt. */
1390 a->write_csr (ioaddr, 0, 0x41);
1391 mdelay (1);
1392
1393 dev->irq = probe_irq_off (irq_mask);
1394 if (!dev->irq) {
1395 if (pcnet32_debug & NETIF_MSG_PROBE)
1396 printk(", failed to detect IRQ line.\n");
1397 ret = -ENODEV;
Hubert WS Lineabf0412005-09-14 11:39:25 -07001398 goto err_free_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400 if (pcnet32_debug & NETIF_MSG_PROBE)
1401 printk(", probed IRQ %d.\n", dev->irq);
1402 }
1403
1404 /* Set the mii phy_id so that we can query the link state */
1405 if (lp->mii)
1406 lp->mii_if.phy_id = ((lp->a.read_bcr (ioaddr, 33)) >> 5) & 0x1f;
1407
1408 init_timer (&lp->watchdog_timer);
1409 lp->watchdog_timer.data = (unsigned long) dev;
1410 lp->watchdog_timer.function = (void *) &pcnet32_watchdog;
1411
1412 /* The PCNET32-specific entries in the device structure. */
1413 dev->open = &pcnet32_open;
1414 dev->hard_start_xmit = &pcnet32_start_xmit;
1415 dev->stop = &pcnet32_close;
1416 dev->get_stats = &pcnet32_get_stats;
1417 dev->set_multicast_list = &pcnet32_set_multicast_list;
1418 dev->do_ioctl = &pcnet32_ioctl;
1419 dev->ethtool_ops = &pcnet32_ethtool_ops;
1420 dev->tx_timeout = pcnet32_tx_timeout;
1421 dev->watchdog_timeo = (5*HZ);
1422
1423#ifdef CONFIG_NET_POLL_CONTROLLER
1424 dev->poll_controller = pcnet32_poll_controller;
1425#endif
1426
1427 /* Fill in the generic fields of the device structure. */
1428 if (register_netdev(dev))
Hubert WS Lineabf0412005-09-14 11:39:25 -07001429 goto err_free_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 if (pdev) {
1432 pci_set_drvdata(pdev, dev);
1433 } else {
1434 lp->next = pcnet32_dev;
1435 pcnet32_dev = dev;
1436 }
1437
1438 if (pcnet32_debug & NETIF_MSG_PROBE)
1439 printk(KERN_INFO "%s: registered as %s\n", dev->name, lp->name);
1440 cards_found++;
1441
1442 /* enable LED writes */
1443 a->write_bcr(ioaddr, 2, a->read_bcr(ioaddr, 2) | 0x1000);
1444
1445 return 0;
1446
Hubert WS Lineabf0412005-09-14 11:39:25 -07001447err_free_ring:
1448 pcnet32_free_ring(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449err_free_consistent:
1450 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
1451err_free_netdev:
1452 free_netdev(dev);
1453err_release_region:
1454 release_region(ioaddr, PCNET32_TOTAL_SIZE);
1455 return ret;
1456}
1457
1458
Don Frya88c8442005-11-01 12:04:33 -08001459/* if any allocation fails, caller must also call pcnet32_free_ring */
1460static int pcnet32_alloc_ring(struct net_device *dev, char *name)
Hubert WS Lineabf0412005-09-14 11:39:25 -07001461{
1462 struct pcnet32_private *lp = dev->priv;
1463
Don Frya88c8442005-11-01 12:04:33 -08001464 lp->tx_ring = pci_alloc_consistent(lp->pci_dev,
1465 sizeof(struct pcnet32_tx_head) * lp->tx_ring_size,
1466 &lp->tx_ring_dma_addr);
1467 if (lp->tx_ring == NULL) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001468 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001469 printk("\n" KERN_ERR PFX "%s: Consistent memory allocation failed.\n",
1470 name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001471 return -ENOMEM;
1472 }
1473
Don Frya88c8442005-11-01 12:04:33 -08001474 lp->rx_ring = pci_alloc_consistent(lp->pci_dev,
1475 sizeof(struct pcnet32_rx_head) * lp->rx_ring_size,
1476 &lp->rx_ring_dma_addr);
1477 if (lp->rx_ring == NULL) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001478 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001479 printk("\n" KERN_ERR PFX "%s: Consistent memory allocation failed.\n",
1480 name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001481 return -ENOMEM;
1482 }
1483
Don Frya88c8442005-11-01 12:04:33 -08001484 lp->tx_dma_addr = kmalloc(sizeof(dma_addr_t) * lp->tx_ring_size,
1485 GFP_ATOMIC);
1486 if (!lp->tx_dma_addr) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001487 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001488 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001489 return -ENOMEM;
1490 }
1491 memset(lp->tx_dma_addr, 0, sizeof(dma_addr_t) * lp->tx_ring_size);
1492
Don Frya88c8442005-11-01 12:04:33 -08001493 lp->rx_dma_addr = kmalloc(sizeof(dma_addr_t) * lp->rx_ring_size,
1494 GFP_ATOMIC);
1495 if (!lp->rx_dma_addr) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001496 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001497 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001498 return -ENOMEM;
1499 }
1500 memset(lp->rx_dma_addr, 0, sizeof(dma_addr_t) * lp->rx_ring_size);
1501
Don Frya88c8442005-11-01 12:04:33 -08001502 lp->tx_skbuff = kmalloc(sizeof(struct sk_buff *) * lp->tx_ring_size,
1503 GFP_ATOMIC);
1504 if (!lp->tx_skbuff) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001505 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001506 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001507 return -ENOMEM;
1508 }
1509 memset(lp->tx_skbuff, 0, sizeof(struct sk_buff *) * lp->tx_ring_size);
1510
Don Frya88c8442005-11-01 12:04:33 -08001511 lp->rx_skbuff = kmalloc(sizeof(struct sk_buff *) * lp->rx_ring_size,
1512 GFP_ATOMIC);
1513 if (!lp->rx_skbuff) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001514 if (pcnet32_debug & NETIF_MSG_DRV)
Don Frya88c8442005-11-01 12:04:33 -08001515 printk("\n" KERN_ERR PFX "%s: Memory allocation failed.\n", name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001516 return -ENOMEM;
1517 }
1518 memset(lp->rx_skbuff, 0, sizeof(struct sk_buff *) * lp->rx_ring_size);
1519
1520 return 0;
1521}
1522
1523
1524static void pcnet32_free_ring(struct net_device *dev)
1525{
1526 struct pcnet32_private *lp = dev->priv;
1527
1528 kfree(lp->tx_skbuff);
1529 lp->tx_skbuff = NULL;
1530
1531 kfree(lp->rx_skbuff);
1532 lp->rx_skbuff = NULL;
1533
1534 kfree(lp->tx_dma_addr);
1535 lp->tx_dma_addr = NULL;
1536
1537 kfree(lp->rx_dma_addr);
1538 lp->rx_dma_addr = NULL;
1539
1540 if (lp->tx_ring) {
1541 pci_free_consistent(lp->pci_dev, sizeof(struct pcnet32_tx_head) * lp->tx_ring_size,
1542 lp->tx_ring, lp->tx_ring_dma_addr);
1543 lp->tx_ring = NULL;
1544 }
1545
1546 if (lp->rx_ring) {
1547 pci_free_consistent(lp->pci_dev, sizeof(struct pcnet32_rx_head) * lp->rx_ring_size,
1548 lp->rx_ring, lp->rx_ring_dma_addr);
1549 lp->rx_ring = NULL;
1550 }
1551}
1552
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554static int
1555pcnet32_open(struct net_device *dev)
1556{
1557 struct pcnet32_private *lp = dev->priv;
1558 unsigned long ioaddr = dev->base_addr;
1559 u16 val;
1560 int i;
1561 int rc;
1562 unsigned long flags;
1563
1564 if (request_irq(dev->irq, &pcnet32_interrupt,
1565 lp->shared_irq ? SA_SHIRQ : 0, dev->name, (void *)dev)) {
1566 return -EAGAIN;
1567 }
1568
1569 spin_lock_irqsave(&lp->lock, flags);
1570 /* Check for a valid station address */
1571 if (!is_valid_ether_addr(dev->dev_addr)) {
1572 rc = -EINVAL;
1573 goto err_free_irq;
1574 }
1575
1576 /* Reset the PCNET32 */
1577 lp->a.reset (ioaddr);
1578
1579 /* switch pcnet32 to 32bit mode */
1580 lp->a.write_bcr (ioaddr, 20, 2);
1581
1582 if (netif_msg_ifup(lp))
1583 printk(KERN_DEBUG "%s: pcnet32_open() irq %d tx/rx rings %#x/%#x init %#x.\n",
1584 dev->name, dev->irq,
Hubert WS Lineabf0412005-09-14 11:39:25 -07001585 (u32) (lp->tx_ring_dma_addr),
1586 (u32) (lp->rx_ring_dma_addr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 (u32) (lp->dma_addr + offsetof(struct pcnet32_private, init_block)));
1588
1589 /* set/reset autoselect bit */
1590 val = lp->a.read_bcr (ioaddr, 2) & ~2;
1591 if (lp->options & PCNET32_PORT_ASEL)
1592 val |= 2;
1593 lp->a.write_bcr (ioaddr, 2, val);
1594
1595 /* handle full duplex setting */
1596 if (lp->mii_if.full_duplex) {
1597 val = lp->a.read_bcr (ioaddr, 9) & ~3;
1598 if (lp->options & PCNET32_PORT_FD) {
1599 val |= 1;
1600 if (lp->options == (PCNET32_PORT_FD | PCNET32_PORT_AUI))
1601 val |= 2;
1602 } else if (lp->options & PCNET32_PORT_ASEL) {
1603 /* workaround of xSeries250, turn on for 79C975 only */
1604 i = ((lp->a.read_csr(ioaddr, 88) |
1605 (lp->a.read_csr(ioaddr,89) << 16)) >> 12) & 0xffff;
1606 if (i == 0x2627)
1607 val |= 3;
1608 }
1609 lp->a.write_bcr (ioaddr, 9, val);
1610 }
1611
1612 /* set/reset GPSI bit in test register */
1613 val = lp->a.read_csr (ioaddr, 124) & ~0x10;
1614 if ((lp->options & PCNET32_PORT_PORTSEL) == PCNET32_PORT_GPSI)
1615 val |= 0x10;
1616 lp->a.write_csr (ioaddr, 124, val);
1617
Don Fry2964bbd2005-11-01 12:50:57 -08001618 /* Allied Telesyn AT 2700/2701 FX are 100Mbit only and do not negotiate */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 if (lp->pci_dev->subsystem_vendor == PCI_VENDOR_ID_AT &&
Don Fry2964bbd2005-11-01 12:50:57 -08001620 (lp->pci_dev->subsystem_device == PCI_SUBDEVICE_ID_AT_2700FX ||
1621 lp->pci_dev->subsystem_device == PCI_SUBDEVICE_ID_AT_2701FX)) {
1622 if (lp->options & PCNET32_PORT_ASEL) {
1623 lp->options = PCNET32_PORT_FD | PCNET32_PORT_100;
1624 if (netif_msg_link(lp))
1625 printk(KERN_DEBUG "%s: Setting 100Mb-Full Duplex.\n",
1626 dev->name);
1627 }
1628 }
1629 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 /*
1631 * 24 Jun 2004 according AMD, in order to change the PHY,
1632 * DANAS (or DISPM for 79C976) must be set; then select the speed,
1633 * duplex, and/or enable auto negotiation, and clear DANAS
1634 */
1635 if (lp->mii && !(lp->options & PCNET32_PORT_ASEL)) {
1636 lp->a.write_bcr(ioaddr, 32,
1637 lp->a.read_bcr(ioaddr, 32) | 0x0080);
1638 /* disable Auto Negotiation, set 10Mpbs, HD */
1639 val = lp->a.read_bcr(ioaddr, 32) & ~0xb8;
1640 if (lp->options & PCNET32_PORT_FD)
1641 val |= 0x10;
1642 if (lp->options & PCNET32_PORT_100)
1643 val |= 0x08;
1644 lp->a.write_bcr (ioaddr, 32, val);
1645 } else {
1646 if (lp->options & PCNET32_PORT_ASEL) {
1647 lp->a.write_bcr(ioaddr, 32,
1648 lp->a.read_bcr(ioaddr, 32) | 0x0080);
1649 /* enable auto negotiate, setup, disable fd */
1650 val = lp->a.read_bcr(ioaddr, 32) & ~0x98;
1651 val |= 0x20;
1652 lp->a.write_bcr(ioaddr, 32, val);
1653 }
1654 }
1655 }
1656
1657#ifdef DO_DXSUFLO
1658 if (lp->dxsuflo) { /* Disable transmit stop on underflow */
1659 val = lp->a.read_csr (ioaddr, 3);
1660 val |= 0x40;
1661 lp->a.write_csr (ioaddr, 3, val);
1662 }
1663#endif
1664
1665 lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
1666 pcnet32_load_multicast(dev);
1667
1668 if (pcnet32_init_ring(dev)) {
1669 rc = -ENOMEM;
1670 goto err_free_ring;
1671 }
1672
1673 /* Re-initialize the PCNET32, and start it when done. */
1674 lp->a.write_csr (ioaddr, 1, (lp->dma_addr +
1675 offsetof(struct pcnet32_private, init_block)) & 0xffff);
1676 lp->a.write_csr (ioaddr, 2, (lp->dma_addr +
1677 offsetof(struct pcnet32_private, init_block)) >> 16);
1678
1679 lp->a.write_csr (ioaddr, 4, 0x0915);
1680 lp->a.write_csr (ioaddr, 0, 0x0001);
1681
1682 netif_start_queue(dev);
1683
1684 /* If we have mii, print the link status and start the watchdog */
1685 if (lp->mii) {
1686 mii_check_media (&lp->mii_if, netif_msg_link(lp), 1);
1687 mod_timer (&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
1688 }
1689
1690 i = 0;
1691 while (i++ < 100)
1692 if (lp->a.read_csr (ioaddr, 0) & 0x0100)
1693 break;
1694 /*
1695 * We used to clear the InitDone bit, 0x0100, here but Mark Stockton
1696 * reports that doing so triggers a bug in the '974.
1697 */
1698 lp->a.write_csr (ioaddr, 0, 0x0042);
1699
1700 if (netif_msg_ifup(lp))
1701 printk(KERN_DEBUG "%s: pcnet32 open after %d ticks, init block %#x csr0 %4.4x.\n",
1702 dev->name, i, (u32) (lp->dma_addr +
1703 offsetof(struct pcnet32_private, init_block)),
1704 lp->a.read_csr(ioaddr, 0));
1705
1706 spin_unlock_irqrestore(&lp->lock, flags);
1707
1708 return 0; /* Always succeed */
1709
1710err_free_ring:
1711 /* free any allocated skbuffs */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001712 for (i = 0; i < lp->rx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 lp->rx_ring[i].status = 0;
1714 if (lp->rx_skbuff[i]) {
1715 pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i], PKT_BUF_SZ-2,
1716 PCI_DMA_FROMDEVICE);
1717 dev_kfree_skb(lp->rx_skbuff[i]);
1718 }
1719 lp->rx_skbuff[i] = NULL;
1720 lp->rx_dma_addr[i] = 0;
1721 }
Hubert WS Lineabf0412005-09-14 11:39:25 -07001722
1723 pcnet32_free_ring(dev);
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 /*
1726 * Switch back to 16bit mode to avoid problems with dumb
1727 * DOS packet driver after a warm reboot
1728 */
1729 lp->a.write_bcr (ioaddr, 20, 4);
1730
1731err_free_irq:
1732 spin_unlock_irqrestore(&lp->lock, flags);
1733 free_irq(dev->irq, dev);
1734 return rc;
1735}
1736
1737/*
1738 * The LANCE has been halted for one reason or another (busmaster memory
1739 * arbitration error, Tx FIFO underflow, driver stopped it to reconfigure,
1740 * etc.). Modern LANCE variants always reload their ring-buffer
1741 * configuration when restarted, so we must reinitialize our ring
1742 * context before restarting. As part of this reinitialization,
1743 * find all packets still on the Tx ring and pretend that they had been
1744 * sent (in effect, drop the packets on the floor) - the higher-level
1745 * protocols will time out and retransmit. It'd be better to shuffle
1746 * these skbs to a temp list and then actually re-Tx them after
1747 * restarting the chip, but I'm too lazy to do so right now. dplatt@3do.com
1748 */
1749
1750static void
1751pcnet32_purge_tx_ring(struct net_device *dev)
1752{
1753 struct pcnet32_private *lp = dev->priv;
1754 int i;
1755
Hubert WS Lineabf0412005-09-14 11:39:25 -07001756 for (i = 0; i < lp->tx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 lp->tx_ring[i].status = 0; /* CPU owns buffer */
1758 wmb(); /* Make sure adapter sees owner change */
1759 if (lp->tx_skbuff[i]) {
1760 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i],
1761 lp->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
1762 dev_kfree_skb_any(lp->tx_skbuff[i]);
1763 }
1764 lp->tx_skbuff[i] = NULL;
1765 lp->tx_dma_addr[i] = 0;
1766 }
1767}
1768
1769
1770/* Initialize the PCNET32 Rx and Tx rings. */
1771static int
1772pcnet32_init_ring(struct net_device *dev)
1773{
1774 struct pcnet32_private *lp = dev->priv;
1775 int i;
1776
1777 lp->tx_full = 0;
1778 lp->cur_rx = lp->cur_tx = 0;
1779 lp->dirty_rx = lp->dirty_tx = 0;
1780
Hubert WS Lineabf0412005-09-14 11:39:25 -07001781 for (i = 0; i < lp->rx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct sk_buff *rx_skbuff = lp->rx_skbuff[i];
1783 if (rx_skbuff == NULL) {
1784 if (!(rx_skbuff = lp->rx_skbuff[i] = dev_alloc_skb (PKT_BUF_SZ))) {
1785 /* there is not much, we can do at this point */
1786 if (pcnet32_debug & NETIF_MSG_DRV)
1787 printk(KERN_ERR "%s: pcnet32_init_ring dev_alloc_skb failed.\n",
1788 dev->name);
1789 return -1;
1790 }
1791 skb_reserve (rx_skbuff, 2);
1792 }
1793
1794 rmb();
1795 if (lp->rx_dma_addr[i] == 0)
David S. Miller689be432005-06-28 15:25:31 -07001796 lp->rx_dma_addr[i] = pci_map_single(lp->pci_dev, rx_skbuff->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 PKT_BUF_SZ-2, PCI_DMA_FROMDEVICE);
1798 lp->rx_ring[i].base = (u32)le32_to_cpu(lp->rx_dma_addr[i]);
1799 lp->rx_ring[i].buf_length = le16_to_cpu(2-PKT_BUF_SZ);
1800 wmb(); /* Make sure owner changes after all others are visible */
1801 lp->rx_ring[i].status = le16_to_cpu(0x8000);
1802 }
1803 /* The Tx buffer address is filled in as needed, but we do need to clear
1804 * the upper ownership bit. */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001805 for (i = 0; i < lp->tx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 lp->tx_ring[i].status = 0; /* CPU owns buffer */
1807 wmb(); /* Make sure adapter sees owner change */
1808 lp->tx_ring[i].base = 0;
1809 lp->tx_dma_addr[i] = 0;
1810 }
1811
Hubert WS Lineabf0412005-09-14 11:39:25 -07001812 lp->init_block.tlen_rlen = le16_to_cpu(lp->tx_len_bits | lp->rx_len_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 for (i = 0; i < 6; i++)
1814 lp->init_block.phys_addr[i] = dev->dev_addr[i];
Hubert WS Lineabf0412005-09-14 11:39:25 -07001815 lp->init_block.rx_ring = (u32)le32_to_cpu(lp->rx_ring_dma_addr);
1816 lp->init_block.tx_ring = (u32)le32_to_cpu(lp->tx_ring_dma_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 wmb(); /* Make sure all changes are visible */
1818 return 0;
1819}
1820
1821/* the pcnet32 has been issued a stop or reset. Wait for the stop bit
1822 * then flush the pending transmit operations, re-initialize the ring,
1823 * and tell the chip to initialize.
1824 */
1825static void
1826pcnet32_restart(struct net_device *dev, unsigned int csr0_bits)
1827{
1828 struct pcnet32_private *lp = dev->priv;
1829 unsigned long ioaddr = dev->base_addr;
1830 int i;
1831
1832 /* wait for stop */
1833 for (i=0; i<100; i++)
1834 if (lp->a.read_csr(ioaddr, 0) & 0x0004)
1835 break;
1836
1837 if (i >= 100 && netif_msg_drv(lp))
1838 printk(KERN_ERR "%s: pcnet32_restart timed out waiting for stop.\n",
1839 dev->name);
1840
1841 pcnet32_purge_tx_ring(dev);
1842 if (pcnet32_init_ring(dev))
1843 return;
1844
1845 /* ReInit Ring */
1846 lp->a.write_csr (ioaddr, 0, 1);
1847 i = 0;
1848 while (i++ < 1000)
1849 if (lp->a.read_csr (ioaddr, 0) & 0x0100)
1850 break;
1851
1852 lp->a.write_csr (ioaddr, 0, csr0_bits);
1853}
1854
1855
1856static void
1857pcnet32_tx_timeout (struct net_device *dev)
1858{
1859 struct pcnet32_private *lp = dev->priv;
1860 unsigned long ioaddr = dev->base_addr, flags;
1861
1862 spin_lock_irqsave(&lp->lock, flags);
1863 /* Transmitter timeout, serious problems. */
1864 if (pcnet32_debug & NETIF_MSG_DRV)
1865 printk(KERN_ERR "%s: transmit timed out, status %4.4x, resetting.\n",
1866 dev->name, lp->a.read_csr(ioaddr, 0));
1867 lp->a.write_csr (ioaddr, 0, 0x0004);
1868 lp->stats.tx_errors++;
1869 if (netif_msg_tx_err(lp)) {
1870 int i;
1871 printk(KERN_DEBUG " Ring data dump: dirty_tx %d cur_tx %d%s cur_rx %d.",
1872 lp->dirty_tx, lp->cur_tx, lp->tx_full ? " (full)" : "",
1873 lp->cur_rx);
Hubert WS Lineabf0412005-09-14 11:39:25 -07001874 for (i = 0 ; i < lp->rx_ring_size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 printk("%s %08x %04x %08x %04x", i & 1 ? "" : "\n ",
1876 le32_to_cpu(lp->rx_ring[i].base),
1877 (-le16_to_cpu(lp->rx_ring[i].buf_length)) & 0xffff,
1878 le32_to_cpu(lp->rx_ring[i].msg_length),
1879 le16_to_cpu(lp->rx_ring[i].status));
Hubert WS Lineabf0412005-09-14 11:39:25 -07001880 for (i = 0 ; i < lp->tx_ring_size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 printk("%s %08x %04x %08x %04x", i & 1 ? "" : "\n ",
1882 le32_to_cpu(lp->tx_ring[i].base),
1883 (-le16_to_cpu(lp->tx_ring[i].length)) & 0xffff,
1884 le32_to_cpu(lp->tx_ring[i].misc),
1885 le16_to_cpu(lp->tx_ring[i].status));
1886 printk("\n");
1887 }
1888 pcnet32_restart(dev, 0x0042);
1889
1890 dev->trans_start = jiffies;
1891 netif_wake_queue(dev);
1892
1893 spin_unlock_irqrestore(&lp->lock, flags);
1894}
1895
1896
1897static int
1898pcnet32_start_xmit(struct sk_buff *skb, struct net_device *dev)
1899{
1900 struct pcnet32_private *lp = dev->priv;
1901 unsigned long ioaddr = dev->base_addr;
1902 u16 status;
1903 int entry;
1904 unsigned long flags;
1905
1906 spin_lock_irqsave(&lp->lock, flags);
1907
1908 if (netif_msg_tx_queued(lp)) {
1909 printk(KERN_DEBUG "%s: pcnet32_start_xmit() called, csr0 %4.4x.\n",
1910 dev->name, lp->a.read_csr(ioaddr, 0));
1911 }
1912
1913 /* Default status -- will not enable Successful-TxDone
1914 * interrupt when that option is available to us.
1915 */
1916 status = 0x8300;
1917
1918 /* Fill in a Tx ring entry */
1919
1920 /* Mask to ring buffer boundary. */
Hubert WS Lineabf0412005-09-14 11:39:25 -07001921 entry = lp->cur_tx & lp->tx_mod_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* Caution: the write order is important here, set the status
1924 * with the "ownership" bits last. */
1925
1926 lp->tx_ring[entry].length = le16_to_cpu(-skb->len);
1927
1928 lp->tx_ring[entry].misc = 0x00000000;
1929
1930 lp->tx_skbuff[entry] = skb;
1931 lp->tx_dma_addr[entry] = pci_map_single(lp->pci_dev, skb->data, skb->len,
1932 PCI_DMA_TODEVICE);
1933 lp->tx_ring[entry].base = (u32)le32_to_cpu(lp->tx_dma_addr[entry]);
1934 wmb(); /* Make sure owner changes after all others are visible */
1935 lp->tx_ring[entry].status = le16_to_cpu(status);
1936
1937 lp->cur_tx++;
1938 lp->stats.tx_bytes += skb->len;
1939
1940 /* Trigger an immediate send poll. */
1941 lp->a.write_csr (ioaddr, 0, 0x0048);
1942
1943 dev->trans_start = jiffies;
1944
Hubert WS Lineabf0412005-09-14 11:39:25 -07001945 if (lp->tx_ring[(entry+1) & lp->tx_mod_mask].base != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 lp->tx_full = 1;
1947 netif_stop_queue(dev);
1948 }
1949 spin_unlock_irqrestore(&lp->lock, flags);
1950 return 0;
1951}
1952
1953/* The PCNET32 interrupt handler. */
1954static irqreturn_t
1955pcnet32_interrupt(int irq, void *dev_id, struct pt_regs * regs)
1956{
1957 struct net_device *dev = dev_id;
1958 struct pcnet32_private *lp;
1959 unsigned long ioaddr;
1960 u16 csr0,rap;
1961 int boguscnt = max_interrupt_work;
1962 int must_restart;
1963
1964 if (!dev) {
1965 if (pcnet32_debug & NETIF_MSG_INTR)
1966 printk (KERN_DEBUG "%s(): irq %d for unknown device\n",
1967 __FUNCTION__, irq);
1968 return IRQ_NONE;
1969 }
1970
1971 ioaddr = dev->base_addr;
1972 lp = dev->priv;
1973
1974 spin_lock(&lp->lock);
1975
1976 rap = lp->a.read_rap(ioaddr);
1977 while ((csr0 = lp->a.read_csr (ioaddr, 0)) & 0x8f00 && --boguscnt >= 0) {
1978 if (csr0 == 0xffff) {
1979 break; /* PCMCIA remove happened */
1980 }
1981 /* Acknowledge all of the current interrupt sources ASAP. */
1982 lp->a.write_csr (ioaddr, 0, csr0 & ~0x004f);
1983
1984 must_restart = 0;
1985
1986 if (netif_msg_intr(lp))
1987 printk(KERN_DEBUG "%s: interrupt csr0=%#2.2x new csr=%#2.2x.\n",
1988 dev->name, csr0, lp->a.read_csr (ioaddr, 0));
1989
1990 if (csr0 & 0x0400) /* Rx interrupt */
1991 pcnet32_rx(dev);
1992
1993 if (csr0 & 0x0200) { /* Tx-done interrupt */
1994 unsigned int dirty_tx = lp->dirty_tx;
1995 int delta;
1996
1997 while (dirty_tx != lp->cur_tx) {
Hubert WS Lineabf0412005-09-14 11:39:25 -07001998 int entry = dirty_tx & lp->tx_mod_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 int status = (short)le16_to_cpu(lp->tx_ring[entry].status);
2000
2001 if (status < 0)
2002 break; /* It still hasn't been Txed */
2003
2004 lp->tx_ring[entry].base = 0;
2005
2006 if (status & 0x4000) {
2007 /* There was an major error, log it. */
2008 int err_status = le32_to_cpu(lp->tx_ring[entry].misc);
2009 lp->stats.tx_errors++;
2010 if (netif_msg_tx_err(lp))
2011 printk(KERN_ERR "%s: Tx error status=%04x err_status=%08x\n",
2012 dev->name, status, err_status);
2013 if (err_status & 0x04000000) lp->stats.tx_aborted_errors++;
2014 if (err_status & 0x08000000) lp->stats.tx_carrier_errors++;
2015 if (err_status & 0x10000000) lp->stats.tx_window_errors++;
2016#ifndef DO_DXSUFLO
2017 if (err_status & 0x40000000) {
2018 lp->stats.tx_fifo_errors++;
2019 /* Ackk! On FIFO errors the Tx unit is turned off! */
2020 /* Remove this verbosity later! */
2021 if (netif_msg_tx_err(lp))
2022 printk(KERN_ERR "%s: Tx FIFO error! CSR0=%4.4x\n",
2023 dev->name, csr0);
2024 must_restart = 1;
2025 }
2026#else
2027 if (err_status & 0x40000000) {
2028 lp->stats.tx_fifo_errors++;
2029 if (! lp->dxsuflo) { /* If controller doesn't recover ... */
2030 /* Ackk! On FIFO errors the Tx unit is turned off! */
2031 /* Remove this verbosity later! */
2032 if (netif_msg_tx_err(lp))
2033 printk(KERN_ERR "%s: Tx FIFO error! CSR0=%4.4x\n",
2034 dev->name, csr0);
2035 must_restart = 1;
2036 }
2037 }
2038#endif
2039 } else {
2040 if (status & 0x1800)
2041 lp->stats.collisions++;
2042 lp->stats.tx_packets++;
2043 }
2044
2045 /* We must free the original skb */
2046 if (lp->tx_skbuff[entry]) {
2047 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[entry],
2048 lp->tx_skbuff[entry]->len, PCI_DMA_TODEVICE);
2049 dev_kfree_skb_irq(lp->tx_skbuff[entry]);
2050 lp->tx_skbuff[entry] = NULL;
2051 lp->tx_dma_addr[entry] = 0;
2052 }
2053 dirty_tx++;
2054 }
2055
Hubert WS Lineabf0412005-09-14 11:39:25 -07002056 delta = (lp->cur_tx - dirty_tx) & (lp->tx_mod_mask + lp->tx_ring_size);
2057 if (delta > lp->tx_ring_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (netif_msg_drv(lp))
2059 printk(KERN_ERR "%s: out-of-sync dirty pointer, %d vs. %d, full=%d.\n",
2060 dev->name, dirty_tx, lp->cur_tx, lp->tx_full);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002061 dirty_tx += lp->tx_ring_size;
2062 delta -= lp->tx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064
2065 if (lp->tx_full &&
2066 netif_queue_stopped(dev) &&
Hubert WS Lineabf0412005-09-14 11:39:25 -07002067 delta < lp->tx_ring_size - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /* The ring is no longer full, clear tbusy. */
2069 lp->tx_full = 0;
2070 netif_wake_queue (dev);
2071 }
2072 lp->dirty_tx = dirty_tx;
2073 }
2074
2075 /* Log misc errors. */
2076 if (csr0 & 0x4000) lp->stats.tx_errors++; /* Tx babble. */
2077 if (csr0 & 0x1000) {
2078 /*
2079 * this happens when our receive ring is full. This shouldn't
2080 * be a problem as we will see normal rx interrupts for the frames
2081 * in the receive ring. But there are some PCI chipsets (I can
2082 * reproduce this on SP3G with Intel saturn chipset) which have
2083 * sometimes problems and will fill up the receive ring with
2084 * error descriptors. In this situation we don't get a rx
2085 * interrupt, but a missed frame interrupt sooner or later.
2086 * So we try to clean up our receive ring here.
2087 */
2088 pcnet32_rx(dev);
2089 lp->stats.rx_errors++; /* Missed a Rx frame. */
2090 }
2091 if (csr0 & 0x0800) {
2092 if (netif_msg_drv(lp))
2093 printk(KERN_ERR "%s: Bus master arbitration failure, status %4.4x.\n",
2094 dev->name, csr0);
2095 /* unlike for the lance, there is no restart needed */
2096 }
2097
2098 if (must_restart) {
2099 /* reset the chip to clear the error condition, then restart */
2100 lp->a.reset(ioaddr);
2101 lp->a.write_csr(ioaddr, 4, 0x0915);
2102 pcnet32_restart(dev, 0x0002);
2103 netif_wake_queue(dev);
2104 }
2105 }
2106
2107 /* Set interrupt enable. */
2108 lp->a.write_csr (ioaddr, 0, 0x0040);
2109 lp->a.write_rap (ioaddr,rap);
2110
2111 if (netif_msg_intr(lp))
2112 printk(KERN_DEBUG "%s: exiting interrupt, csr0=%#4.4x.\n",
2113 dev->name, lp->a.read_csr (ioaddr, 0));
2114
2115 spin_unlock(&lp->lock);
2116
2117 return IRQ_HANDLED;
2118}
2119
2120static int
2121pcnet32_rx(struct net_device *dev)
2122{
2123 struct pcnet32_private *lp = dev->priv;
Hubert WS Lineabf0412005-09-14 11:39:25 -07002124 int entry = lp->cur_rx & lp->rx_mod_mask;
2125 int boguscnt = lp->rx_ring_size / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /* If we own the next entry, it's a new packet. Send it up. */
2128 while ((short)le16_to_cpu(lp->rx_ring[entry].status) >= 0) {
2129 int status = (short)le16_to_cpu(lp->rx_ring[entry].status) >> 8;
2130
2131 if (status != 0x03) { /* There was an error. */
2132 /*
2133 * There is a tricky error noted by John Murphy,
2134 * <murf@perftech.com> to Russ Nelson: Even with full-sized
2135 * buffers it's possible for a jabber packet to use two
2136 * buffers, with only the last correctly noting the error.
2137 */
2138 if (status & 0x01) /* Only count a general error at the */
2139 lp->stats.rx_errors++; /* end of a packet.*/
2140 if (status & 0x20) lp->stats.rx_frame_errors++;
2141 if (status & 0x10) lp->stats.rx_over_errors++;
2142 if (status & 0x08) lp->stats.rx_crc_errors++;
2143 if (status & 0x04) lp->stats.rx_fifo_errors++;
2144 lp->rx_ring[entry].status &= le16_to_cpu(0x03ff);
2145 } else {
2146 /* Malloc up new buffer, compatible with net-2e. */
2147 short pkt_len = (le32_to_cpu(lp->rx_ring[entry].msg_length) & 0xfff)-4;
2148 struct sk_buff *skb;
2149
2150 /* Discard oversize frames. */
2151 if (unlikely(pkt_len > PKT_BUF_SZ - 2)) {
2152 if (netif_msg_drv(lp))
2153 printk(KERN_ERR "%s: Impossible packet size %d!\n",
2154 dev->name, pkt_len);
2155 lp->stats.rx_errors++;
2156 } else if (pkt_len < 60) {
2157 if (netif_msg_rx_err(lp))
2158 printk(KERN_ERR "%s: Runt packet!\n", dev->name);
2159 lp->stats.rx_errors++;
2160 } else {
2161 int rx_in_place = 0;
2162
2163 if (pkt_len > rx_copybreak) {
2164 struct sk_buff *newskb;
2165
2166 if ((newskb = dev_alloc_skb(PKT_BUF_SZ))) {
2167 skb_reserve (newskb, 2);
2168 skb = lp->rx_skbuff[entry];
2169 pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[entry],
2170 PKT_BUF_SZ-2, PCI_DMA_FROMDEVICE);
2171 skb_put (skb, pkt_len);
2172 lp->rx_skbuff[entry] = newskb;
2173 newskb->dev = dev;
2174 lp->rx_dma_addr[entry] =
David S. Miller689be432005-06-28 15:25:31 -07002175 pci_map_single(lp->pci_dev, newskb->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 PKT_BUF_SZ-2, PCI_DMA_FROMDEVICE);
2177 lp->rx_ring[entry].base = le32_to_cpu(lp->rx_dma_addr[entry]);
2178 rx_in_place = 1;
2179 } else
2180 skb = NULL;
2181 } else {
2182 skb = dev_alloc_skb(pkt_len+2);
2183 }
2184
2185 if (skb == NULL) {
2186 int i;
2187 if (netif_msg_drv(lp))
2188 printk(KERN_ERR "%s: Memory squeeze, deferring packet.\n",
2189 dev->name);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002190 for (i = 0; i < lp->rx_ring_size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if ((short)le16_to_cpu(lp->rx_ring[(entry+i)
Hubert WS Lineabf0412005-09-14 11:39:25 -07002192 & lp->rx_mod_mask].status) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
2194
Hubert WS Lineabf0412005-09-14 11:39:25 -07002195 if (i > lp->rx_ring_size -2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 lp->stats.rx_dropped++;
2197 lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
2198 wmb(); /* Make sure adapter sees owner change */
2199 lp->cur_rx++;
2200 }
2201 break;
2202 }
2203 skb->dev = dev;
2204 if (!rx_in_place) {
2205 skb_reserve(skb,2); /* 16 byte align */
2206 skb_put(skb,pkt_len); /* Make room */
2207 pci_dma_sync_single_for_cpu(lp->pci_dev,
2208 lp->rx_dma_addr[entry],
2209 PKT_BUF_SZ-2,
2210 PCI_DMA_FROMDEVICE);
2211 eth_copy_and_sum(skb,
David S. Miller689be432005-06-28 15:25:31 -07002212 (unsigned char *)(lp->rx_skbuff[entry]->data),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 pkt_len,0);
2214 pci_dma_sync_single_for_device(lp->pci_dev,
2215 lp->rx_dma_addr[entry],
2216 PKT_BUF_SZ-2,
2217 PCI_DMA_FROMDEVICE);
2218 }
2219 lp->stats.rx_bytes += skb->len;
2220 skb->protocol=eth_type_trans(skb,dev);
2221 netif_rx(skb);
2222 dev->last_rx = jiffies;
2223 lp->stats.rx_packets++;
2224 }
2225 }
2226 /*
2227 * The docs say that the buffer length isn't touched, but Andrew Boyd
2228 * of QNX reports that some revs of the 79C965 clear it.
2229 */
2230 lp->rx_ring[entry].buf_length = le16_to_cpu(2-PKT_BUF_SZ);
2231 wmb(); /* Make sure owner changes after all others are visible */
2232 lp->rx_ring[entry].status |= le16_to_cpu(0x8000);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002233 entry = (++lp->cur_rx) & lp->rx_mod_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 if (--boguscnt <= 0) break; /* don't stay in loop forever */
2235 }
2236
2237 return 0;
2238}
2239
2240static int
2241pcnet32_close(struct net_device *dev)
2242{
2243 unsigned long ioaddr = dev->base_addr;
2244 struct pcnet32_private *lp = dev->priv;
2245 int i;
2246 unsigned long flags;
2247
2248 del_timer_sync(&lp->watchdog_timer);
2249
2250 netif_stop_queue(dev);
2251
2252 spin_lock_irqsave(&lp->lock, flags);
2253
2254 lp->stats.rx_missed_errors = lp->a.read_csr (ioaddr, 112);
2255
2256 if (netif_msg_ifdown(lp))
2257 printk(KERN_DEBUG "%s: Shutting down ethercard, status was %2.2x.\n",
2258 dev->name, lp->a.read_csr (ioaddr, 0));
2259
2260 /* We stop the PCNET32 here -- it occasionally polls memory if we don't. */
2261 lp->a.write_csr (ioaddr, 0, 0x0004);
2262
2263 /*
2264 * Switch back to 16bit mode to avoid problems with dumb
2265 * DOS packet driver after a warm reboot
2266 */
2267 lp->a.write_bcr (ioaddr, 20, 4);
2268
2269 spin_unlock_irqrestore(&lp->lock, flags);
2270
2271 free_irq(dev->irq, dev);
2272
2273 spin_lock_irqsave(&lp->lock, flags);
2274
2275 /* free all allocated skbuffs */
Hubert WS Lineabf0412005-09-14 11:39:25 -07002276 for (i = 0; i < lp->rx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 lp->rx_ring[i].status = 0;
2278 wmb(); /* Make sure adapter sees owner change */
2279 if (lp->rx_skbuff[i]) {
2280 pci_unmap_single(lp->pci_dev, lp->rx_dma_addr[i], PKT_BUF_SZ-2,
2281 PCI_DMA_FROMDEVICE);
2282 dev_kfree_skb(lp->rx_skbuff[i]);
2283 }
2284 lp->rx_skbuff[i] = NULL;
2285 lp->rx_dma_addr[i] = 0;
2286 }
2287
Hubert WS Lineabf0412005-09-14 11:39:25 -07002288 for (i = 0; i < lp->tx_ring_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 lp->tx_ring[i].status = 0; /* CPU owns buffer */
2290 wmb(); /* Make sure adapter sees owner change */
2291 if (lp->tx_skbuff[i]) {
2292 pci_unmap_single(lp->pci_dev, lp->tx_dma_addr[i],
2293 lp->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
2294 dev_kfree_skb(lp->tx_skbuff[i]);
2295 }
2296 lp->tx_skbuff[i] = NULL;
2297 lp->tx_dma_addr[i] = 0;
2298 }
2299
2300 spin_unlock_irqrestore(&lp->lock, flags);
2301
2302 return 0;
2303}
2304
2305static struct net_device_stats *
2306pcnet32_get_stats(struct net_device *dev)
2307{
2308 struct pcnet32_private *lp = dev->priv;
2309 unsigned long ioaddr = dev->base_addr;
2310 u16 saved_addr;
2311 unsigned long flags;
2312
2313 spin_lock_irqsave(&lp->lock, flags);
2314 saved_addr = lp->a.read_rap(ioaddr);
2315 lp->stats.rx_missed_errors = lp->a.read_csr (ioaddr, 112);
2316 lp->a.write_rap(ioaddr, saved_addr);
2317 spin_unlock_irqrestore(&lp->lock, flags);
2318
2319 return &lp->stats;
2320}
2321
2322/* taken from the sunlance driver, which it took from the depca driver */
2323static void pcnet32_load_multicast (struct net_device *dev)
2324{
2325 struct pcnet32_private *lp = dev->priv;
2326 volatile struct pcnet32_init_block *ib = &lp->init_block;
2327 volatile u16 *mcast_table = (u16 *)&ib->filter;
2328 struct dev_mc_list *dmi=dev->mc_list;
2329 char *addrs;
2330 int i;
2331 u32 crc;
2332
2333 /* set all multicast bits */
2334 if (dev->flags & IFF_ALLMULTI) {
2335 ib->filter[0] = 0xffffffff;
2336 ib->filter[1] = 0xffffffff;
2337 return;
2338 }
2339 /* clear the multicast filter */
2340 ib->filter[0] = 0;
2341 ib->filter[1] = 0;
2342
2343 /* Add addresses */
2344 for (i = 0; i < dev->mc_count; i++) {
2345 addrs = dmi->dmi_addr;
2346 dmi = dmi->next;
2347
2348 /* multicast address? */
2349 if (!(*addrs & 1))
2350 continue;
2351
2352 crc = ether_crc_le(6, addrs);
2353 crc = crc >> 26;
2354 mcast_table [crc >> 4] = le16_to_cpu(
2355 le16_to_cpu(mcast_table [crc >> 4]) | (1 << (crc & 0xf)));
2356 }
2357 return;
2358}
2359
2360
2361/*
2362 * Set or clear the multicast filter for this adaptor.
2363 */
2364static void pcnet32_set_multicast_list(struct net_device *dev)
2365{
2366 unsigned long ioaddr = dev->base_addr, flags;
2367 struct pcnet32_private *lp = dev->priv;
2368
2369 spin_lock_irqsave(&lp->lock, flags);
2370 if (dev->flags&IFF_PROMISC) {
2371 /* Log any net taps. */
2372 if (netif_msg_hw(lp))
2373 printk(KERN_INFO "%s: Promiscuous mode enabled.\n", dev->name);
2374 lp->init_block.mode = le16_to_cpu(0x8000 | (lp->options & PCNET32_PORT_PORTSEL) << 7);
2375 } else {
2376 lp->init_block.mode = le16_to_cpu((lp->options & PCNET32_PORT_PORTSEL) << 7);
2377 pcnet32_load_multicast (dev);
2378 }
2379
2380 lp->a.write_csr (ioaddr, 0, 0x0004); /* Temporarily stop the lance. */
2381 pcnet32_restart(dev, 0x0042); /* Resume normal operation */
2382 netif_wake_queue(dev);
2383
2384 spin_unlock_irqrestore(&lp->lock, flags);
2385}
2386
2387/* This routine assumes that the lp->lock is held */
2388static int mdio_read(struct net_device *dev, int phy_id, int reg_num)
2389{
2390 struct pcnet32_private *lp = dev->priv;
2391 unsigned long ioaddr = dev->base_addr;
2392 u16 val_out;
2393
2394 if (!lp->mii)
2395 return 0;
2396
2397 lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
2398 val_out = lp->a.read_bcr(ioaddr, 34);
2399
2400 return val_out;
2401}
2402
2403/* This routine assumes that the lp->lock is held */
2404static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val)
2405{
2406 struct pcnet32_private *lp = dev->priv;
2407 unsigned long ioaddr = dev->base_addr;
2408
2409 if (!lp->mii)
2410 return;
2411
2412 lp->a.write_bcr(ioaddr, 33, ((phy_id & 0x1f) << 5) | (reg_num & 0x1f));
2413 lp->a.write_bcr(ioaddr, 34, val);
2414}
2415
2416static int pcnet32_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2417{
2418 struct pcnet32_private *lp = dev->priv;
2419 int rc;
2420 unsigned long flags;
2421
2422 /* SIOC[GS]MIIxxx ioctls */
2423 if (lp->mii) {
2424 spin_lock_irqsave(&lp->lock, flags);
2425 rc = generic_mii_ioctl(&lp->mii_if, if_mii(rq), cmd, NULL);
2426 spin_unlock_irqrestore(&lp->lock, flags);
2427 } else {
2428 rc = -EOPNOTSUPP;
2429 }
2430
2431 return rc;
2432}
2433
2434static void pcnet32_watchdog(struct net_device *dev)
2435{
2436 struct pcnet32_private *lp = dev->priv;
2437 unsigned long flags;
2438
2439 /* Print the link status if it has changed */
2440 if (lp->mii) {
2441 spin_lock_irqsave(&lp->lock, flags);
2442 mii_check_media (&lp->mii_if, netif_msg_link(lp), 0);
2443 spin_unlock_irqrestore(&lp->lock, flags);
2444 }
2445
2446 mod_timer (&(lp->watchdog_timer), PCNET32_WATCHDOG_TIMEOUT);
2447}
2448
2449static void __devexit pcnet32_remove_one(struct pci_dev *pdev)
2450{
2451 struct net_device *dev = pci_get_drvdata(pdev);
2452
2453 if (dev) {
2454 struct pcnet32_private *lp = dev->priv;
2455
2456 unregister_netdev(dev);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002457 pcnet32_free_ring(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 release_region(dev->base_addr, PCNET32_TOTAL_SIZE);
2459 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
2460 free_netdev(dev);
2461 pci_disable_device(pdev);
2462 pci_set_drvdata(pdev, NULL);
2463 }
2464}
2465
2466static struct pci_driver pcnet32_driver = {
2467 .name = DRV_NAME,
2468 .probe = pcnet32_probe_pci,
2469 .remove = __devexit_p(pcnet32_remove_one),
2470 .id_table = pcnet32_pci_tbl,
2471};
2472
2473/* An additional parameter that may be passed in... */
2474static int debug = -1;
2475static int tx_start_pt = -1;
2476static int pcnet32_have_pci;
2477
2478module_param(debug, int, 0);
2479MODULE_PARM_DESC(debug, DRV_NAME " debug level");
2480module_param(max_interrupt_work, int, 0);
2481MODULE_PARM_DESC(max_interrupt_work, DRV_NAME " maximum events handled per interrupt");
2482module_param(rx_copybreak, int, 0);
2483MODULE_PARM_DESC(rx_copybreak, DRV_NAME " copy breakpoint for copy-only-tiny-frames");
2484module_param(tx_start_pt, int, 0);
2485MODULE_PARM_DESC(tx_start_pt, DRV_NAME " transmit start point (0-3)");
2486module_param(pcnet32vlb, int, 0);
2487MODULE_PARM_DESC(pcnet32vlb, DRV_NAME " Vesa local bus (VLB) support (0/1)");
2488module_param_array(options, int, NULL, 0);
2489MODULE_PARM_DESC(options, DRV_NAME " initial option setting(s) (0-15)");
2490module_param_array(full_duplex, int, NULL, 0);
2491MODULE_PARM_DESC(full_duplex, DRV_NAME " full duplex setting(s) (1)");
2492/* Module Parameter for HomePNA cards added by Patrick Simmons, 2004 */
2493module_param_array(homepna, int, NULL, 0);
2494MODULE_PARM_DESC(homepna, DRV_NAME " mode for 79C978 cards (1 for HomePNA, 0 for Ethernet, default Ethernet");
2495
2496MODULE_AUTHOR("Thomas Bogendoerfer");
2497MODULE_DESCRIPTION("Driver for PCnet32 and PCnetPCI based ethercards");
2498MODULE_LICENSE("GPL");
2499
2500#define PCNET32_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
2501
2502static int __init pcnet32_init_module(void)
2503{
2504 printk(KERN_INFO "%s", version);
2505
2506 pcnet32_debug = netif_msg_init(debug, PCNET32_MSG_DEFAULT);
2507
2508 if ((tx_start_pt >= 0) && (tx_start_pt <= 3))
2509 tx_start = tx_start_pt;
2510
2511 /* find the PCI devices */
2512 if (!pci_module_init(&pcnet32_driver))
2513 pcnet32_have_pci = 1;
2514
2515 /* should we find any remaining VLbus devices ? */
2516 if (pcnet32vlb)
2517 pcnet32_probe_vlbus();
2518
2519 if (cards_found && (pcnet32_debug & NETIF_MSG_PROBE))
2520 printk(KERN_INFO PFX "%d cards_found.\n", cards_found);
2521
2522 return (pcnet32_have_pci + cards_found) ? 0 : -ENODEV;
2523}
2524
2525static void __exit pcnet32_cleanup_module(void)
2526{
2527 struct net_device *next_dev;
2528
2529 while (pcnet32_dev) {
2530 struct pcnet32_private *lp = pcnet32_dev->priv;
2531 next_dev = lp->next;
2532 unregister_netdev(pcnet32_dev);
Hubert WS Lineabf0412005-09-14 11:39:25 -07002533 pcnet32_free_ring(pcnet32_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 release_region(pcnet32_dev->base_addr, PCNET32_TOTAL_SIZE);
2535 pci_free_consistent(lp->pci_dev, sizeof(*lp), lp, lp->dma_addr);
2536 free_netdev(pcnet32_dev);
2537 pcnet32_dev = next_dev;
2538 }
2539
2540 if (pcnet32_have_pci)
2541 pci_unregister_driver(&pcnet32_driver);
2542}
2543
2544module_init(pcnet32_init_module);
2545module_exit(pcnet32_cleanup_module);
2546
2547/*
2548 * Local variables:
2549 * c-indent-level: 4
2550 * tab-width: 8
2551 * End:
2552 */