blob: 7f544ef2f5fcfcad23aa77b148f165cab8b82936 [file] [log] [blame]
Grant Grundler78a65512008-06-05 00:38:55 -06001/* tulip_core.c: A DEC 21x4x-family ethernet driver for Linux.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 Copyright 2000,2001 The Linux Kernel Team
4 Written/copyright 1994-2001 by Donald Becker.
5
6 This software may be used and distributed according to the terms
7 of the GNU General Public License, incorporated herein by reference.
8
9 Please refer to Documentation/DocBook/tulip-user.{pdf,ps,html}
Grant Grundler78a65512008-06-05 00:38:55 -060010 for more information on this driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Grant Grundler78a65512008-06-05 00:38:55 -060012 Please submit bugs to http://bugzilla.kernel.org/ .
Linus Torvalds1da177e2005-04-16 15:20:36 -070013*/
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define DRV_NAME "tulip"
17#ifdef CONFIG_TULIP_NAPI
Valerie Henson6bab99b2007-03-12 02:31:34 -070018#define DRV_VERSION "1.1.15-NAPI" /* Keep at least for test */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#else
Valerie Henson6bab99b2007-03-12 02:31:34 -070020#define DRV_VERSION "1.1.15"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#endif
Valerie Henson6bab99b2007-03-12 02:31:34 -070022#define DRV_RELDATE "Feb 27, 2007"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24
25#include <linux/module.h>
26#include <linux/pci.h>
27#include "tulip.h"
28#include <linux/init.h>
29#include <linux/etherdevice.h>
30#include <linux/delay.h>
31#include <linux/mii.h>
32#include <linux/ethtool.h>
33#include <linux/crc32.h>
34#include <asm/unaligned.h>
35#include <asm/uaccess.h>
36
David S. Miller49345102007-03-29 01:39:44 -070037#ifdef CONFIG_SPARC
David S. Millerd297c312007-03-29 01:41:28 -070038#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#endif
40
41static char version[] __devinitdata =
42 "Linux Tulip driver version " DRV_VERSION " (" DRV_RELDATE ")\n";
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* A few user-configurable values. */
45
46/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
47static unsigned int max_interrupt_work = 25;
48
49#define MAX_UNITS 8
50/* Used to pass the full-duplex flag, etc. */
51static int full_duplex[MAX_UNITS];
52static int options[MAX_UNITS];
53static int mtu[MAX_UNITS]; /* Jumbo MTU for interfaces. */
54
55/* The possible media types that can be set in options[] are: */
56const char * const medianame[32] = {
57 "10baseT", "10base2", "AUI", "100baseTx",
58 "10baseT-FDX", "100baseTx-FDX", "100baseT4", "100baseFx",
59 "100baseFx-FDX", "MII 10baseT", "MII 10baseT-FDX", "MII",
60 "10baseT(forced)", "MII 100baseTx", "MII 100baseTx-FDX", "MII 100baseT4",
61 "MII 100baseFx-HDX", "MII 100baseFx-FDX", "Home-PNA 1Mbps", "Invalid-19",
62 "","","","", "","","","", "","","","Transceiver reset",
63};
64
65/* Set the copy breakpoint for the copy-only-tiny-buffer Rx structure. */
Joe Perches8e95a202009-12-03 07:58:21 +000066#if defined(__alpha__) || defined(__arm__) || defined(__hppa__) || \
67 defined(CONFIG_SPARC) || defined(__ia64__) || \
68 defined(__sh__) || defined(__mips__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int rx_copybreak = 1518;
70#else
71static int rx_copybreak = 100;
72#endif
73
74/*
75 Set the bus performance register.
76 Typical: Set 16 longword cache alignment, no burst limit.
77 Cache alignment bits 15:14 Burst length 13:8
78 0000 No alignment 0x00000000 unlimited 0800 8 longwords
79 4000 8 longwords 0100 1 longword 1000 16 longwords
80 8000 16 longwords 0200 2 longwords 2000 32 longwords
81 C000 32 longwords 0400 4 longwords
82 Warning: many older 486 systems are broken and require setting 0x00A04800
83 8 longword cache alignment, 8 longword burst.
84 ToDo: Non-Intel setting could be better.
85*/
86
87#if defined(__alpha__) || defined(__ia64__)
88static int csr0 = 0x01A00000 | 0xE000;
89#elif defined(__i386__) || defined(__powerpc__) || defined(__x86_64__)
90static int csr0 = 0x01A00000 | 0x8000;
David S. Miller49345102007-03-29 01:39:44 -070091#elif defined(CONFIG_SPARC) || defined(__hppa__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* The UltraSparc PCI controllers will disconnect at every 64-byte
93 * crossing anyways so it makes no sense to tell Tulip to burst
94 * any more than that.
95 */
96static int csr0 = 0x01A00000 | 0x9000;
97#elif defined(__arm__) || defined(__sh__)
98static int csr0 = 0x01A00000 | 0x4800;
99#elif defined(__mips__)
100static int csr0 = 0x00200000 | 0x4000;
101#else
102#warning Processor architecture undefined!
103static int csr0 = 0x00A00000 | 0x4800;
104#endif
105
106/* Operational parameters that usually are not changed. */
107/* Time in jiffies before concluding the transmitter is hung. */
108#define TX_TIMEOUT (4*HZ)
109
110
111MODULE_AUTHOR("The Linux Kernel Team");
112MODULE_DESCRIPTION("Digital 21*4* Tulip ethernet driver");
113MODULE_LICENSE("GPL");
114MODULE_VERSION(DRV_VERSION);
115module_param(tulip_debug, int, 0);
116module_param(max_interrupt_work, int, 0);
117module_param(rx_copybreak, int, 0);
118module_param(csr0, int, 0);
119module_param_array(options, int, NULL, 0);
120module_param_array(full_duplex, int, NULL, 0);
121
122#define PFX DRV_NAME ": "
123
124#ifdef TULIP_DEBUG
125int tulip_debug = TULIP_DEBUG;
126#else
127int tulip_debug = 1;
128#endif
129
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700130static void tulip_timer(unsigned long data)
131{
132 struct net_device *dev = (struct net_device *)data;
133 struct tulip_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700135 if (netif_running(dev))
136 schedule_work(&tp->media_work);
137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139/*
140 * This table use during operation for capabilities and media timer.
141 *
142 * It is indexed via the values in 'enum chips'
143 */
144
145struct tulip_chip_table tulip_tbl[] = {
146 { }, /* placeholder for array, slot unused currently */
147 { }, /* placeholder for array, slot unused currently */
148
149 /* DC21140 */
150 { "Digital DS21140 Tulip", 128, 0x0001ebef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700151 HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_PCI_MWI, tulip_timer,
152 tulip_media_task },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* DC21142, DC21143 */
Thibaut Vareneb892de02006-09-08 11:15:36 -0700155 { "Digital DS21142/43 Tulip", 128, 0x0801fbff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 HAS_MII | HAS_MEDIA_TABLE | ALWAYS_CHECK_MII | HAS_ACPI | HAS_NWAY
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700157 | HAS_INTR_MITIGATION | HAS_PCI_MWI, tulip_timer, t21142_media_task },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* LC82C168 */
160 { "Lite-On 82c168 PNIC", 256, 0x0001fbef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700161 HAS_MII | HAS_PNICNWAY, pnic_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /* MX98713 */
164 { "Macronix 98713 PMAC", 128, 0x0001ebef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700165 HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM, mxic_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 /* MX98715 */
168 { "Macronix 98715 PMAC", 256, 0x0001ebef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700169 HAS_MEDIA_TABLE, mxic_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 /* MX98725 */
172 { "Macronix 98725 PMAC", 256, 0x0001ebef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700173 HAS_MEDIA_TABLE, mxic_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /* AX88140 */
176 { "ASIX AX88140", 128, 0x0001fbff,
177 HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | MC_HASH_ONLY
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700178 | IS_ASIX, tulip_timer, tulip_media_task },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* PNIC2 */
181 { "Lite-On PNIC-II", 256, 0x0801fbff,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700182 HAS_MII | HAS_NWAY | HAS_8023X | HAS_PCI_MWI, pnic2_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 /* COMET */
185 { "ADMtek Comet", 256, 0x0001abef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700186 HAS_MII | MC_HASH_ONLY | COMET_MAC_ADDR, comet_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /* COMPEX9881 */
189 { "Compex 9881 PMAC", 128, 0x0001ebef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700190 HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM, mxic_timer, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* I21145 */
193 { "Intel DS21145 Tulip", 128, 0x0801fbff,
194 HAS_MII | HAS_MEDIA_TABLE | ALWAYS_CHECK_MII | HAS_ACPI
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700195 | HAS_NWAY | HAS_PCI_MWI, tulip_timer, tulip_media_task },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /* DM910X */
Ben Hutchings4d907062010-01-07 02:41:51 +0000198#ifdef CONFIG_TULIP_DM910X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 { "Davicom DM9102/DM9102A", 128, 0x0001ebef,
200 HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_ACPI,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700201 tulip_timer, tulip_media_task },
Ben Hutchings4d907062010-01-07 02:41:51 +0000202#else
203 { NULL },
204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* RS7112 */
207 { "Conexant LANfinity", 256, 0x0001ebef,
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700208 HAS_MII | HAS_ACPI, tulip_timer, tulip_media_task },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
212
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000213static DEFINE_PCI_DEVICE_TABLE(tulip_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 { 0x1011, 0x0009, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DC21140 },
215 { 0x1011, 0x0019, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DC21143 },
216 { 0x11AD, 0x0002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, LC82C168 },
217 { 0x10d9, 0x0512, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98713 },
218 { 0x10d9, 0x0531, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 },
219/* { 0x10d9, 0x0531, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98725 },*/
220 { 0x125B, 0x1400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AX88140 },
221 { 0x11AD, 0xc115, PCI_ANY_ID, PCI_ANY_ID, 0, 0, PNIC2 },
222 { 0x1317, 0x0981, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
223 { 0x1317, 0x0985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
224 { 0x1317, 0x1985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
225 { 0x1317, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
226 { 0x13D1, 0xAB02, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
227 { 0x13D1, 0xAB03, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
228 { 0x13D1, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
229 { 0x104A, 0x0981, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
230 { 0x104A, 0x2774, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
231 { 0x1259, 0xa120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
232 { 0x11F6, 0x9881, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMPEX9881 },
233 { 0x8086, 0x0039, PCI_ANY_ID, PCI_ANY_ID, 0, 0, I21145 },
Ben Hutchings4d907062010-01-07 02:41:51 +0000234#ifdef CONFIG_TULIP_DM910X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 { 0x1282, 0x9100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X },
236 { 0x1282, 0x9102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X },
Ben Hutchings4d907062010-01-07 02:41:51 +0000237#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 { 0x1113, 0x1216, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
239 { 0x1113, 0x1217, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 },
240 { 0x1113, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
241 { 0x1186, 0x1541, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
242 { 0x1186, 0x1561, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
243 { 0x1186, 0x1591, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
244 { 0x14f1, 0x1803, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CONEXANT },
245 { 0x1626, 0x8410, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
246 { 0x1737, 0xAB09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
247 { 0x1737, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
248 { 0x17B3, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 { 0x10b7, 0x9300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* 3Com 3CSOHO100B-TX */
Hideki Yamane9b259782005-06-27 00:18:32 -0400250 { 0x14ea, 0xab08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Planex FNW-3602-TX */
Ron Murray60abe782010-01-19 08:02:48 +0000251 { 0x1414, 0x0001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Microsoft MN-120 */
Jeff Garzik1a449352005-08-31 05:48:59 -0400252 { 0x1414, 0x0002, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 { } /* terminate list */
254};
255MODULE_DEVICE_TABLE(pci, tulip_pci_tbl);
256
257
258/* A full-duplex map for media types. */
259const char tulip_media_cap[32] =
260{0,0,0,16, 3,19,16,24, 27,4,7,5, 0,20,23,20, 28,31,0,0, };
261
262static void tulip_tx_timeout(struct net_device *dev);
263static void tulip_init_ring(struct net_device *dev);
Kyle McMartin69145632009-03-18 18:49:01 -0700264static void tulip_free_ring(struct net_device *dev);
Stephen Hemmingerad096462009-08-31 19:50:53 +0000265static netdev_tx_t tulip_start_xmit(struct sk_buff *skb,
266 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static int tulip_open(struct net_device *dev);
268static int tulip_close(struct net_device *dev);
269static void tulip_up(struct net_device *dev);
270static void tulip_down(struct net_device *dev);
271static struct net_device_stats *tulip_get_stats(struct net_device *dev);
272static int private_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
273static void set_rx_mode(struct net_device *dev);
274#ifdef CONFIG_NET_POLL_CONTROLLER
275static void poll_tulip(struct net_device *dev);
276#endif
277
278static void tulip_set_power_state (struct tulip_private *tp,
279 int sleep, int snooze)
280{
281 if (tp->flags & HAS_ACPI) {
282 u32 tmp, newtmp;
283 pci_read_config_dword (tp->pdev, CFDD, &tmp);
284 newtmp = tmp & ~(CFDD_Sleep | CFDD_Snooze);
285 if (sleep)
286 newtmp |= CFDD_Sleep;
287 else if (snooze)
288 newtmp |= CFDD_Snooze;
289 if (tmp != newtmp)
290 pci_write_config_dword (tp->pdev, CFDD, newtmp);
291 }
292
293}
294
295
296static void tulip_up(struct net_device *dev)
297{
298 struct tulip_private *tp = netdev_priv(dev);
299 void __iomem *ioaddr = tp->base_addr;
300 int next_tick = 3*HZ;
Al Virob4482a42007-10-14 19:35:40 +0100301 u32 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 int i;
303
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700304#ifdef CONFIG_TULIP_NAPI
305 napi_enable(&tp->napi);
306#endif
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* Wake the chip from sleep/snooze mode. */
309 tulip_set_power_state (tp, 0, 0);
310
311 /* On some chip revs we must set the MII/SYM port before the reset!? */
312 if (tp->mii_cnt || (tp->mtable && tp->mtable->has_mii))
313 iowrite32(0x00040000, ioaddr + CSR6);
314
315 /* Reset the chip, holding bit 0 set at least 50 PCI cycles. */
316 iowrite32(0x00000001, ioaddr + CSR0);
Al Virob4482a42007-10-14 19:35:40 +0100317 pci_read_config_dword(tp->pdev, PCI_COMMAND, &reg); /* flush write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 udelay(100);
319
320 /* Deassert reset.
321 Wait the specified 50 PCI cycles after a reset by initializing
322 Tx and Rx queues and the address filter list. */
323 iowrite32(tp->csr0, ioaddr + CSR0);
Al Virob4482a42007-10-14 19:35:40 +0100324 pci_read_config_dword(tp->pdev, PCI_COMMAND, &reg); /* flush write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 udelay(100);
326
327 if (tulip_debug > 1)
Joe Perchesd60bec42010-01-28 20:59:17 +0000328 printk(KERN_DEBUG "%s: tulip_up(), irq==%d\n",
329 dev->name, dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 iowrite32(tp->rx_ring_dma, ioaddr + CSR3);
332 iowrite32(tp->tx_ring_dma, ioaddr + CSR4);
333 tp->cur_rx = tp->cur_tx = 0;
334 tp->dirty_rx = tp->dirty_tx = 0;
335
336 if (tp->flags & MC_HASH_ONLY) {
Harvey Harrison6caf52a42008-04-29 01:03:36 -0700337 u32 addr_low = get_unaligned_le32(dev->dev_addr);
338 u32 addr_high = get_unaligned_le16(dev->dev_addr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (tp->chip_id == AX88140) {
340 iowrite32(0, ioaddr + CSR13);
341 iowrite32(addr_low, ioaddr + CSR14);
342 iowrite32(1, ioaddr + CSR13);
343 iowrite32(addr_high, ioaddr + CSR14);
344 } else if (tp->flags & COMET_MAC_ADDR) {
345 iowrite32(addr_low, ioaddr + 0xA4);
346 iowrite32(addr_high, ioaddr + 0xA8);
347 iowrite32(0, ioaddr + 0xAC);
348 iowrite32(0, ioaddr + 0xB0);
349 }
350 } else {
351 /* This is set_rx_mode(), but without starting the transmitter. */
352 u16 *eaddrs = (u16 *)dev->dev_addr;
353 u16 *setup_frm = &tp->setup_frame[15*6];
354 dma_addr_t mapping;
355
356 /* 21140 bug: you must add the broadcast address. */
357 memset(tp->setup_frame, 0xff, sizeof(tp->setup_frame));
358 /* Fill the final entry of the table with our physical address. */
359 *setup_frm++ = eaddrs[0]; *setup_frm++ = eaddrs[0];
360 *setup_frm++ = eaddrs[1]; *setup_frm++ = eaddrs[1];
361 *setup_frm++ = eaddrs[2]; *setup_frm++ = eaddrs[2];
362
363 mapping = pci_map_single(tp->pdev, tp->setup_frame,
364 sizeof(tp->setup_frame),
365 PCI_DMA_TODEVICE);
366 tp->tx_buffers[tp->cur_tx].skb = NULL;
367 tp->tx_buffers[tp->cur_tx].mapping = mapping;
368
369 /* Put the setup frame on the Tx list. */
370 tp->tx_ring[tp->cur_tx].length = cpu_to_le32(0x08000000 | 192);
371 tp->tx_ring[tp->cur_tx].buffer1 = cpu_to_le32(mapping);
372 tp->tx_ring[tp->cur_tx].status = cpu_to_le32(DescOwned);
373
374 tp->cur_tx++;
375 }
376
377 tp->saved_if_port = dev->if_port;
378 if (dev->if_port == 0)
379 dev->if_port = tp->default_port;
380
381 /* Allow selecting a default media. */
382 i = 0;
383 if (tp->mtable == NULL)
384 goto media_picked;
385 if (dev->if_port) {
386 int looking_for = tulip_media_cap[dev->if_port] & MediaIsMII ? 11 :
387 (dev->if_port == 12 ? 0 : dev->if_port);
388 for (i = 0; i < tp->mtable->leafcount; i++)
389 if (tp->mtable->mleaf[i].media == looking_for) {
Joe Perchesd60bec42010-01-28 20:59:17 +0000390 dev_info(&dev->dev,
391 "Using user-specified media %s\n",
392 medianame[dev->if_port]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 goto media_picked;
394 }
395 }
396 if ((tp->mtable->defaultmedia & 0x0800) == 0) {
397 int looking_for = tp->mtable->defaultmedia & MEDIA_MASK;
398 for (i = 0; i < tp->mtable->leafcount; i++)
399 if (tp->mtable->mleaf[i].media == looking_for) {
Joe Perchesd60bec42010-01-28 20:59:17 +0000400 dev_info(&dev->dev,
401 "Using EEPROM-set media %s\n",
402 medianame[looking_for]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 goto media_picked;
404 }
405 }
406 /* Start sensing first non-full-duplex media. */
407 for (i = tp->mtable->leafcount - 1;
408 (tulip_media_cap[tp->mtable->mleaf[i].media] & MediaAlwaysFD) && i > 0; i--)
409 ;
410media_picked:
411
412 tp->csr6 = 0;
413 tp->cur_index = i;
414 tp->nwayset = 0;
415
416 if (dev->if_port) {
417 if (tp->chip_id == DC21143 &&
418 (tulip_media_cap[dev->if_port] & MediaIsMII)) {
419 /* We must reset the media CSRs when we force-select MII mode. */
420 iowrite32(0x0000, ioaddr + CSR13);
421 iowrite32(0x0000, ioaddr + CSR14);
422 iowrite32(0x0008, ioaddr + CSR15);
423 }
424 tulip_select_media(dev, 1);
425 } else if (tp->chip_id == DC21142) {
426 if (tp->mii_cnt) {
427 tulip_select_media(dev, 1);
428 if (tulip_debug > 1)
Joe Perchesd60bec42010-01-28 20:59:17 +0000429 dev_info(&dev->dev,
430 "Using MII transceiver %d, status %04x\n",
431 tp->phys[0],
432 tulip_mdio_read(dev, tp->phys[0], 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 iowrite32(csr6_mask_defstate, ioaddr + CSR6);
434 tp->csr6 = csr6_mask_hdcap;
435 dev->if_port = 11;
436 iowrite32(0x0000, ioaddr + CSR13);
437 iowrite32(0x0000, ioaddr + CSR14);
438 } else
439 t21142_start_nway(dev);
440 } else if (tp->chip_id == PNIC2) {
441 /* for initial startup advertise 10/100 Full and Half */
442 tp->sym_advertise = 0x01E0;
443 /* enable autonegotiate end interrupt */
444 iowrite32(ioread32(ioaddr+CSR5)| 0x00008010, ioaddr + CSR5);
445 iowrite32(ioread32(ioaddr+CSR7)| 0x00008010, ioaddr + CSR7);
446 pnic2_start_nway(dev);
447 } else if (tp->chip_id == LC82C168 && ! tp->medialock) {
448 if (tp->mii_cnt) {
449 dev->if_port = 11;
450 tp->csr6 = 0x814C0000 | (tp->full_duplex ? 0x0200 : 0);
451 iowrite32(0x0001, ioaddr + CSR15);
452 } else if (ioread32(ioaddr + CSR5) & TPLnkPass)
453 pnic_do_nway(dev);
454 else {
455 /* Start with 10mbps to do autonegotiation. */
456 iowrite32(0x32, ioaddr + CSR12);
457 tp->csr6 = 0x00420000;
458 iowrite32(0x0001B078, ioaddr + 0xB8);
459 iowrite32(0x0201B078, ioaddr + 0xB8);
460 next_tick = 1*HZ;
461 }
Joe Perches8e95a202009-12-03 07:58:21 +0000462 } else if ((tp->chip_id == MX98713 || tp->chip_id == COMPEX9881) &&
463 ! tp->medialock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 dev->if_port = 0;
465 tp->csr6 = 0x01880000 | (tp->full_duplex ? 0x0200 : 0);
466 iowrite32(0x0f370000 | ioread16(ioaddr + 0x80), ioaddr + 0x80);
467 } else if (tp->chip_id == MX98715 || tp->chip_id == MX98725) {
468 /* Provided by BOLO, Macronix - 12/10/1998. */
469 dev->if_port = 0;
470 tp->csr6 = 0x01a80200;
471 iowrite32(0x0f370000 | ioread16(ioaddr + 0x80), ioaddr + 0x80);
472 iowrite32(0x11000 | ioread16(ioaddr + 0xa0), ioaddr + 0xa0);
473 } else if (tp->chip_id == COMET || tp->chip_id == CONEXANT) {
474 /* Enable automatic Tx underrun recovery. */
475 iowrite32(ioread32(ioaddr + 0x88) | 1, ioaddr + 0x88);
476 dev->if_port = tp->mii_cnt ? 11 : 0;
477 tp->csr6 = 0x00040000;
478 } else if (tp->chip_id == AX88140) {
479 tp->csr6 = tp->mii_cnt ? 0x00040100 : 0x00000100;
480 } else
481 tulip_select_media(dev, 1);
482
483 /* Start the chip's Tx to process setup frame. */
484 tulip_stop_rxtx(tp);
485 barrier();
486 udelay(5);
487 iowrite32(tp->csr6 | TxOn, ioaddr + CSR6);
488
489 /* Enable interrupts by setting the interrupt mask. */
490 iowrite32(tulip_tbl[tp->chip_id].valid_intrs, ioaddr + CSR5);
491 iowrite32(tulip_tbl[tp->chip_id].valid_intrs, ioaddr + CSR7);
492 tulip_start_rxtx(tp);
493 iowrite32(0, ioaddr + CSR2); /* Rx poll demand */
494
495 if (tulip_debug > 2) {
Joe Perchesd60bec42010-01-28 20:59:17 +0000496 printk(KERN_DEBUG "%s: Done tulip_up(), CSR0 %08x, CSR5 %08x CSR6 %08x\n",
497 dev->name, ioread32(ioaddr + CSR0),
498 ioread32(ioaddr + CSR5),
499 ioread32(ioaddr + CSR6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501
502 /* Set the timer to switch to check for link beat and perhaps switch
503 to an alternate media type. */
504 tp->timer.expires = RUN_AT(next_tick);
505 add_timer(&tp->timer);
506#ifdef CONFIG_TULIP_NAPI
507 init_timer(&tp->oom_timer);
508 tp->oom_timer.data = (unsigned long)dev;
509 tp->oom_timer.function = oom_timer;
510#endif
511}
512
513static int
514tulip_open(struct net_device *dev)
515{
516 int retval;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 tulip_init_ring (dev);
519
Joe Perchesa0607fd2009-11-18 23:29:17 -0800520 retval = request_irq(dev->irq, tulip_interrupt, IRQF_SHARED, dev->name, dev);
Kyle McMartin69145632009-03-18 18:49:01 -0700521 if (retval)
522 goto free_ring;
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 tulip_up (dev);
525
526 netif_start_queue (dev);
527
528 return 0;
Kyle McMartin69145632009-03-18 18:49:01 -0700529
530free_ring:
531 tulip_free_ring (dev);
532 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535
536static void tulip_tx_timeout(struct net_device *dev)
537{
538 struct tulip_private *tp = netdev_priv(dev);
539 void __iomem *ioaddr = tp->base_addr;
540 unsigned long flags;
541
542 spin_lock_irqsave (&tp->lock, flags);
543
544 if (tulip_media_cap[dev->if_port] & MediaIsMII) {
545 /* Do nothing -- the media monitor should handle this. */
546 if (tulip_debug > 1)
Joe Perchesd60bec42010-01-28 20:59:17 +0000547 dev_warn(&dev->dev,
548 "Transmit timeout using MII device\n");
Joe Perches8e95a202009-12-03 07:58:21 +0000549 } else if (tp->chip_id == DC21140 || tp->chip_id == DC21142 ||
550 tp->chip_id == MX98713 || tp->chip_id == COMPEX9881 ||
551 tp->chip_id == DM910X) {
Joe Perchesd60bec42010-01-28 20:59:17 +0000552 dev_warn(&dev->dev,
553 "21140 transmit timed out, status %08x, SIA %08x %08x %08x %08x, resetting...\n",
554 ioread32(ioaddr + CSR5), ioread32(ioaddr + CSR12),
555 ioread32(ioaddr + CSR13), ioread32(ioaddr + CSR14),
556 ioread32(ioaddr + CSR15));
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700557 tp->timeout_recovery = 1;
558 schedule_work(&tp->media_work);
559 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 } else if (tp->chip_id == PNIC2) {
Joe Perchesd60bec42010-01-28 20:59:17 +0000561 dev_warn(&dev->dev,
562 "PNIC2 transmit timed out, status %08x, CSR6/7 %08x / %08x CSR12 %08x, resetting...\n",
563 (int)ioread32(ioaddr + CSR5),
564 (int)ioread32(ioaddr + CSR6),
565 (int)ioread32(ioaddr + CSR7),
566 (int)ioread32(ioaddr + CSR12));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 } else {
Joe Perchesd60bec42010-01-28 20:59:17 +0000568 dev_warn(&dev->dev,
569 "Transmit timed out, status %08x, CSR12 %08x, resetting...\n",
570 ioread32(ioaddr + CSR5), ioread32(ioaddr + CSR12));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 dev->if_port = 0;
572 }
573
574#if defined(way_too_many_messages)
575 if (tulip_debug > 3) {
576 int i;
577 for (i = 0; i < RX_RING_SIZE; i++) {
578 u8 *buf = (u8 *)(tp->rx_ring[i].buffer1);
579 int j;
Joe Perchesd60bec42010-01-28 20:59:17 +0000580 printk(KERN_DEBUG
581 "%2d: %08x %08x %08x %08x %02x %02x %02x\n",
582 i,
583 (unsigned int)tp->rx_ring[i].status,
584 (unsigned int)tp->rx_ring[i].length,
585 (unsigned int)tp->rx_ring[i].buffer1,
586 (unsigned int)tp->rx_ring[i].buffer2,
587 buf[0], buf[1], buf[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 for (j = 0; buf[j] != 0xee && j < 1600; j++)
Joe Perchesad361c92009-07-06 13:05:40 -0700589 if (j < 100)
Joe Perchesd60bec42010-01-28 20:59:17 +0000590 pr_cont(" %02x", buf[j]);
591 pr_cont(" j=%d\n", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
Joe Perchesd60bec42010-01-28 20:59:17 +0000593 printk(KERN_DEBUG " Rx ring %08x: ", (int)tp->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 for (i = 0; i < RX_RING_SIZE; i++)
Joe Perchesd60bec42010-01-28 20:59:17 +0000595 pr_cont(" %08x", (unsigned int)tp->rx_ring[i].status);
596 printk(KERN_DEBUG " Tx ring %08x: ", (int)tp->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 for (i = 0; i < TX_RING_SIZE; i++)
Joe Perchesd60bec42010-01-28 20:59:17 +0000598 pr_cont(" %08x", (unsigned int)tp->tx_ring[i].status);
599 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601#endif
602
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700603 tulip_tx_timeout_complete(tp, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700605out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 spin_unlock_irqrestore (&tp->lock, flags);
607 dev->trans_start = jiffies;
608 netif_wake_queue (dev);
609}
610
611
612/* Initialize the Rx and Tx rings, along with various 'dev' bits. */
613static void tulip_init_ring(struct net_device *dev)
614{
615 struct tulip_private *tp = netdev_priv(dev);
616 int i;
617
618 tp->susp_rx = 0;
619 tp->ttimer = 0;
620 tp->nir = 0;
621
622 for (i = 0; i < RX_RING_SIZE; i++) {
623 tp->rx_ring[i].status = 0x00000000;
624 tp->rx_ring[i].length = cpu_to_le32(PKT_BUF_SZ);
625 tp->rx_ring[i].buffer2 = cpu_to_le32(tp->rx_ring_dma + sizeof(struct tulip_rx_desc) * (i + 1));
626 tp->rx_buffers[i].skb = NULL;
627 tp->rx_buffers[i].mapping = 0;
628 }
629 /* Mark the last entry as wrapping the ring. */
630 tp->rx_ring[i-1].length = cpu_to_le32(PKT_BUF_SZ | DESC_RING_WRAP);
631 tp->rx_ring[i-1].buffer2 = cpu_to_le32(tp->rx_ring_dma);
632
633 for (i = 0; i < RX_RING_SIZE; i++) {
634 dma_addr_t mapping;
635
636 /* Note the receive buffer must be longword aligned.
637 dev_alloc_skb() provides 16 byte alignment. But do *not*
638 use skb_reserve() to align the IP header! */
639 struct sk_buff *skb = dev_alloc_skb(PKT_BUF_SZ);
640 tp->rx_buffers[i].skb = skb;
641 if (skb == NULL)
642 break;
David S. Miller689be432005-06-28 15:25:31 -0700643 mapping = pci_map_single(tp->pdev, skb->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 PKT_BUF_SZ, PCI_DMA_FROMDEVICE);
645 tp->rx_buffers[i].mapping = mapping;
646 skb->dev = dev; /* Mark as being used by this device. */
647 tp->rx_ring[i].status = cpu_to_le32(DescOwned); /* Owned by Tulip chip */
648 tp->rx_ring[i].buffer1 = cpu_to_le32(mapping);
649 }
650 tp->dirty_rx = (unsigned int)(i - RX_RING_SIZE);
651
652 /* The Tx buffer descriptor is filled in as needed, but we
653 do need to clear the ownership bit. */
654 for (i = 0; i < TX_RING_SIZE; i++) {
655 tp->tx_buffers[i].skb = NULL;
656 tp->tx_buffers[i].mapping = 0;
657 tp->tx_ring[i].status = 0x00000000;
658 tp->tx_ring[i].buffer2 = cpu_to_le32(tp->tx_ring_dma + sizeof(struct tulip_tx_desc) * (i + 1));
659 }
660 tp->tx_ring[i-1].buffer2 = cpu_to_le32(tp->tx_ring_dma);
661}
662
Stephen Hemmingerad096462009-08-31 19:50:53 +0000663static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664tulip_start_xmit(struct sk_buff *skb, struct net_device *dev)
665{
666 struct tulip_private *tp = netdev_priv(dev);
667 int entry;
668 u32 flag;
669 dma_addr_t mapping;
Dongdong Deng22580f82009-08-13 19:12:31 +0000670 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Dongdong Deng22580f82009-08-13 19:12:31 +0000672 spin_lock_irqsave(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /* Calculate the next Tx descriptor entry. */
675 entry = tp->cur_tx % TX_RING_SIZE;
676
677 tp->tx_buffers[entry].skb = skb;
678 mapping = pci_map_single(tp->pdev, skb->data,
679 skb->len, PCI_DMA_TODEVICE);
680 tp->tx_buffers[entry].mapping = mapping;
681 tp->tx_ring[entry].buffer1 = cpu_to_le32(mapping);
682
683 if (tp->cur_tx - tp->dirty_tx < TX_RING_SIZE/2) {/* Typical path */
684 flag = 0x60000000; /* No interrupt */
685 } else if (tp->cur_tx - tp->dirty_tx == TX_RING_SIZE/2) {
686 flag = 0xe0000000; /* Tx-done intr. */
687 } else if (tp->cur_tx - tp->dirty_tx < TX_RING_SIZE - 2) {
688 flag = 0x60000000; /* No Tx-done intr. */
689 } else { /* Leave room for set_rx_mode() to fill entries. */
690 flag = 0xe0000000; /* Tx-done intr. */
691 netif_stop_queue(dev);
692 }
693 if (entry == TX_RING_SIZE-1)
694 flag = 0xe0000000 | DESC_RING_WRAP;
695
696 tp->tx_ring[entry].length = cpu_to_le32(skb->len | flag);
697 /* if we were using Transmit Automatic Polling, we would need a
698 * wmb() here. */
699 tp->tx_ring[entry].status = cpu_to_le32(DescOwned);
700 wmb();
701
702 tp->cur_tx++;
703
704 /* Trigger an immediate transmit demand. */
705 iowrite32(0, tp->base_addr + CSR1);
706
Dongdong Deng22580f82009-08-13 19:12:31 +0000707 spin_unlock_irqrestore(&tp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 dev->trans_start = jiffies;
710
Patrick McHardy6ed10652009-06-23 06:03:08 +0000711 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714static void tulip_clean_tx_ring(struct tulip_private *tp)
715{
716 unsigned int dirty_tx;
717
718 for (dirty_tx = tp->dirty_tx ; tp->cur_tx - dirty_tx > 0;
719 dirty_tx++) {
720 int entry = dirty_tx % TX_RING_SIZE;
721 int status = le32_to_cpu(tp->tx_ring[entry].status);
722
723 if (status < 0) {
724 tp->stats.tx_errors++; /* It wasn't Txed */
725 tp->tx_ring[entry].status = 0;
726 }
727
728 /* Check for Tx filter setup frames. */
729 if (tp->tx_buffers[entry].skb == NULL) {
730 /* test because dummy frames not mapped */
731 if (tp->tx_buffers[entry].mapping)
732 pci_unmap_single(tp->pdev,
733 tp->tx_buffers[entry].mapping,
734 sizeof(tp->setup_frame),
735 PCI_DMA_TODEVICE);
736 continue;
737 }
738
739 pci_unmap_single(tp->pdev, tp->tx_buffers[entry].mapping,
740 tp->tx_buffers[entry].skb->len,
741 PCI_DMA_TODEVICE);
742
743 /* Free the original skb. */
744 dev_kfree_skb_irq(tp->tx_buffers[entry].skb);
745 tp->tx_buffers[entry].skb = NULL;
746 tp->tx_buffers[entry].mapping = 0;
747 }
748}
749
750static void tulip_down (struct net_device *dev)
751{
752 struct tulip_private *tp = netdev_priv(dev);
753 void __iomem *ioaddr = tp->base_addr;
754 unsigned long flags;
755
David S. Miller4bb073c2008-06-12 02:22:02 -0700756 cancel_work_sync(&tp->media_work);
Francois Romieu0bb3cf72006-09-08 11:15:38 -0700757
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700758#ifdef CONFIG_TULIP_NAPI
759 napi_disable(&tp->napi);
760#endif
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 del_timer_sync (&tp->timer);
763#ifdef CONFIG_TULIP_NAPI
764 del_timer_sync (&tp->oom_timer);
765#endif
766 spin_lock_irqsave (&tp->lock, flags);
767
768 /* Disable interrupts by clearing the interrupt mask. */
769 iowrite32 (0x00000000, ioaddr + CSR7);
770
771 /* Stop the Tx and Rx processes. */
772 tulip_stop_rxtx(tp);
773
774 /* prepare receive buffers */
775 tulip_refill_rx(dev);
776
777 /* release any unconsumed transmit buffers */
778 tulip_clean_tx_ring(tp);
779
780 if (ioread32 (ioaddr + CSR6) != 0xffffffff)
781 tp->stats.rx_missed_errors += ioread32 (ioaddr + CSR8) & 0xffff;
782
783 spin_unlock_irqrestore (&tp->lock, flags);
784
785 init_timer(&tp->timer);
786 tp->timer.data = (unsigned long)dev;
787 tp->timer.function = tulip_tbl[tp->chip_id].media_timer;
788
789 dev->if_port = tp->saved_if_port;
790
791 /* Leave the driver in snooze, not sleep, mode. */
792 tulip_set_power_state (tp, 0, 1);
793}
794
Kyle McMartin69145632009-03-18 18:49:01 -0700795static void tulip_free_ring (struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 struct tulip_private *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int i;
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* Free all the skbuffs in the Rx queue. */
801 for (i = 0; i < RX_RING_SIZE; i++) {
802 struct sk_buff *skb = tp->rx_buffers[i].skb;
803 dma_addr_t mapping = tp->rx_buffers[i].mapping;
804
805 tp->rx_buffers[i].skb = NULL;
806 tp->rx_buffers[i].mapping = 0;
807
808 tp->rx_ring[i].status = 0; /* Not owned by Tulip chip. */
809 tp->rx_ring[i].length = 0;
Al Viro76285ee2007-12-23 20:01:04 +0000810 /* An invalid address. */
811 tp->rx_ring[i].buffer1 = cpu_to_le32(0xBADF00D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (skb) {
813 pci_unmap_single(tp->pdev, mapping, PKT_BUF_SZ,
814 PCI_DMA_FROMDEVICE);
815 dev_kfree_skb (skb);
816 }
817 }
Kyle McMartin69145632009-03-18 18:49:01 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 for (i = 0; i < TX_RING_SIZE; i++) {
820 struct sk_buff *skb = tp->tx_buffers[i].skb;
821
822 if (skb != NULL) {
823 pci_unmap_single(tp->pdev, tp->tx_buffers[i].mapping,
824 skb->len, PCI_DMA_TODEVICE);
825 dev_kfree_skb (skb);
826 }
827 tp->tx_buffers[i].skb = NULL;
828 tp->tx_buffers[i].mapping = 0;
829 }
Kyle McMartin69145632009-03-18 18:49:01 -0700830}
831
832static int tulip_close (struct net_device *dev)
833{
834 struct tulip_private *tp = netdev_priv(dev);
835 void __iomem *ioaddr = tp->base_addr;
836
837 netif_stop_queue (dev);
838
839 tulip_down (dev);
840
841 if (tulip_debug > 1)
Joe Perchesd60bec42010-01-28 20:59:17 +0000842 dev_printk(KERN_DEBUG, &dev->dev,
843 "Shutting down ethercard, status was %02x\n",
844 ioread32 (ioaddr + CSR5));
Kyle McMartin69145632009-03-18 18:49:01 -0700845
846 free_irq (dev->irq, dev);
847
848 tulip_free_ring (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 return 0;
851}
852
853static struct net_device_stats *tulip_get_stats(struct net_device *dev)
854{
855 struct tulip_private *tp = netdev_priv(dev);
856 void __iomem *ioaddr = tp->base_addr;
857
858 if (netif_running(dev)) {
859 unsigned long flags;
860
861 spin_lock_irqsave (&tp->lock, flags);
862
863 tp->stats.rx_missed_errors += ioread32(ioaddr + CSR8) & 0xffff;
864
865 spin_unlock_irqrestore(&tp->lock, flags);
866 }
867
868 return &tp->stats;
869}
870
871
872static void tulip_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
873{
874 struct tulip_private *np = netdev_priv(dev);
875 strcpy(info->driver, DRV_NAME);
876 strcpy(info->version, DRV_VERSION);
877 strcpy(info->bus_info, pci_name(np->pdev));
878}
879
Jeff Garzik7282d492006-09-13 14:30:00 -0400880static const struct ethtool_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 .get_drvinfo = tulip_get_drvinfo
882};
883
884/* Provide ioctl() calls to examine the MII xcvr state. */
885static int private_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
886{
887 struct tulip_private *tp = netdev_priv(dev);
888 void __iomem *ioaddr = tp->base_addr;
889 struct mii_ioctl_data *data = if_mii(rq);
890 const unsigned int phy_idx = 0;
891 int phy = tp->phys[phy_idx] & 0x1f;
892 unsigned int regnum = data->reg_num;
893
894 switch (cmd) {
895 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
896 if (tp->mii_cnt)
897 data->phy_id = phy;
898 else if (tp->flags & HAS_NWAY)
899 data->phy_id = 32;
900 else if (tp->chip_id == COMET)
901 data->phy_id = 1;
902 else
903 return -ENODEV;
904
905 case SIOCGMIIREG: /* Read MII PHY register. */
906 if (data->phy_id == 32 && (tp->flags & HAS_NWAY)) {
907 int csr12 = ioread32 (ioaddr + CSR12);
908 int csr14 = ioread32 (ioaddr + CSR14);
909 switch (regnum) {
910 case 0:
911 if (((csr14<<5) & 0x1000) ||
912 (dev->if_port == 5 && tp->nwayset))
913 data->val_out = 0x1000;
914 else
915 data->val_out = (tulip_media_cap[dev->if_port]&MediaIs100 ? 0x2000 : 0)
916 | (tulip_media_cap[dev->if_port]&MediaIsFD ? 0x0100 : 0);
917 break;
918 case 1:
919 data->val_out =
920 0x1848 +
921 ((csr12&0x7000) == 0x5000 ? 0x20 : 0) +
922 ((csr12&0x06) == 6 ? 0 : 4);
923 data->val_out |= 0x6048;
924 break;
925 case 4:
926 /* Advertised value, bogus 10baseTx-FD value from CSR6. */
927 data->val_out =
928 ((ioread32(ioaddr + CSR6) >> 3) & 0x0040) +
929 ((csr14 >> 1) & 0x20) + 1;
930 data->val_out |= ((csr14 >> 9) & 0x03C0);
931 break;
932 case 5: data->val_out = tp->lpar; break;
933 default: data->val_out = 0; break;
934 }
935 } else {
936 data->val_out = tulip_mdio_read (dev, data->phy_id & 0x1f, regnum);
937 }
938 return 0;
939
940 case SIOCSMIIREG: /* Write MII PHY register. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (regnum & ~0x1f)
942 return -EINVAL;
943 if (data->phy_id == phy) {
944 u16 value = data->val_in;
945 switch (regnum) {
946 case 0: /* Check for autonegotiation on or reset. */
947 tp->full_duplex_lock = (value & 0x9000) ? 0 : 1;
948 if (tp->full_duplex_lock)
949 tp->full_duplex = (value & 0x0100) ? 1 : 0;
950 break;
951 case 4:
952 tp->advertising[phy_idx] =
953 tp->mii_advertise = data->val_in;
954 break;
955 }
956 }
957 if (data->phy_id == 32 && (tp->flags & HAS_NWAY)) {
958 u16 value = data->val_in;
959 if (regnum == 0) {
960 if ((value & 0x1200) == 0x1200) {
961 if (tp->chip_id == PNIC2) {
962 pnic2_start_nway (dev);
963 } else {
964 t21142_start_nway (dev);
965 }
966 }
967 } else if (regnum == 4)
968 tp->sym_advertise = value;
969 } else {
970 tulip_mdio_write (dev, data->phy_id & 0x1f, regnum, data->val_in);
971 }
972 return 0;
973 default:
974 return -EOPNOTSUPP;
975 }
976
977 return -EOPNOTSUPP;
978}
979
980
981/* Set or clear the multicast filter for this adaptor.
982 Note that we only use exclusion around actually queueing the
983 new frame, not around filling tp->setup_frame. This is non-deterministic
984 when re-entered but still correct. */
985
986#undef set_bit_le
987#define set_bit_le(i,p) do { ((char *)(p))[(i)/8] |= (1<<((i)%8)); } while(0)
988
989static void build_setup_frame_hash(u16 *setup_frm, struct net_device *dev)
990{
991 struct tulip_private *tp = netdev_priv(dev);
992 u16 hash_table[32];
993 struct dev_mc_list *mclist;
994 int i;
995 u16 *eaddrs;
996
997 memset(hash_table, 0, sizeof(hash_table));
998 set_bit_le(255, hash_table); /* Broadcast entry */
999 /* This should work on big-endian machines as well. */
Jiri Pirko4302b672010-02-18 03:34:54 +00001000 netdev_for_each_mc_addr(mclist, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 int index = ether_crc_le(ETH_ALEN, mclist->dmi_addr) & 0x1ff;
1002
1003 set_bit_le(index, hash_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005 for (i = 0; i < 32; i++) {
1006 *setup_frm++ = hash_table[i];
1007 *setup_frm++ = hash_table[i];
1008 }
1009 setup_frm = &tp->setup_frame[13*6];
1010
1011 /* Fill the final entry with our physical address. */
1012 eaddrs = (u16 *)dev->dev_addr;
1013 *setup_frm++ = eaddrs[0]; *setup_frm++ = eaddrs[0];
1014 *setup_frm++ = eaddrs[1]; *setup_frm++ = eaddrs[1];
1015 *setup_frm++ = eaddrs[2]; *setup_frm++ = eaddrs[2];
1016}
1017
1018static void build_setup_frame_perfect(u16 *setup_frm, struct net_device *dev)
1019{
1020 struct tulip_private *tp = netdev_priv(dev);
1021 struct dev_mc_list *mclist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 u16 *eaddrs;
1023
1024 /* We have <= 14 addresses so we can use the wonderful
1025 16 address perfect filtering of the Tulip. */
Jiri Pirko4302b672010-02-18 03:34:54 +00001026 netdev_for_each_mc_addr(mclist, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 eaddrs = (u16 *)mclist->dmi_addr;
1028 *setup_frm++ = *eaddrs; *setup_frm++ = *eaddrs++;
1029 *setup_frm++ = *eaddrs; *setup_frm++ = *eaddrs++;
1030 *setup_frm++ = *eaddrs; *setup_frm++ = *eaddrs++;
1031 }
1032 /* Fill the unused entries with the broadcast address. */
Jiri Pirko4302b672010-02-18 03:34:54 +00001033 memset(setup_frm, 0xff, (15 - netdev_mc_count(dev)) * 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 setup_frm = &tp->setup_frame[15*6];
1035
1036 /* Fill the final entry with our physical address. */
1037 eaddrs = (u16 *)dev->dev_addr;
1038 *setup_frm++ = eaddrs[0]; *setup_frm++ = eaddrs[0];
1039 *setup_frm++ = eaddrs[1]; *setup_frm++ = eaddrs[1];
1040 *setup_frm++ = eaddrs[2]; *setup_frm++ = eaddrs[2];
1041}
1042
1043
1044static void set_rx_mode(struct net_device *dev)
1045{
1046 struct tulip_private *tp = netdev_priv(dev);
1047 void __iomem *ioaddr = tp->base_addr;
1048 int csr6;
1049
1050 csr6 = ioread32(ioaddr + CSR6) & ~0x00D5;
1051
1052 tp->csr6 &= ~0x00D5;
1053 if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
1054 tp->csr6 |= AcceptAllMulticast | AcceptAllPhys;
1055 csr6 |= AcceptAllMulticast | AcceptAllPhys;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001056 } else if ((netdev_mc_count(dev) > 1000) ||
1057 (dev->flags & IFF_ALLMULTI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* Too many to filter well -- accept all multicasts. */
1059 tp->csr6 |= AcceptAllMulticast;
1060 csr6 |= AcceptAllMulticast;
1061 } else if (tp->flags & MC_HASH_ONLY) {
1062 /* Some work-alikes have only a 64-entry hash filter table. */
1063 /* Should verify correctness on big-endian/__powerpc__ */
1064 struct dev_mc_list *mclist;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001065 if (netdev_mc_count(dev) > 64) {
1066 /* Arbitrary non-effective limit. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 tp->csr6 |= AcceptAllMulticast;
1068 csr6 |= AcceptAllMulticast;
1069 } else {
1070 u32 mc_filter[2] = {0, 0}; /* Multicast hash filter */
1071 int filterbit;
Jiri Pirko4302b672010-02-18 03:34:54 +00001072 netdev_for_each_mc_addr(mclist, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (tp->flags & COMET_MAC_ADDR)
1074 filterbit = ether_crc_le(ETH_ALEN, mclist->dmi_addr);
1075 else
1076 filterbit = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
1077 filterbit &= 0x3f;
1078 mc_filter[filterbit >> 5] |= 1 << (filterbit & 31);
Johannes Berge1749612008-10-27 15:59:26 -07001079 if (tulip_debug > 2)
Joe Perchesd60bec42010-01-28 20:59:17 +00001080 dev_info(&dev->dev,
1081 "Added filter for %pM %08x bit %d\n",
1082 mclist->dmi_addr,
1083 ether_crc(ETH_ALEN, mclist->dmi_addr), filterbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085 if (mc_filter[0] == tp->mc_filter[0] &&
1086 mc_filter[1] == tp->mc_filter[1])
1087 ; /* No change. */
1088 else if (tp->flags & IS_ASIX) {
1089 iowrite32(2, ioaddr + CSR13);
1090 iowrite32(mc_filter[0], ioaddr + CSR14);
1091 iowrite32(3, ioaddr + CSR13);
1092 iowrite32(mc_filter[1], ioaddr + CSR14);
1093 } else if (tp->flags & COMET_MAC_ADDR) {
1094 iowrite32(mc_filter[0], ioaddr + 0xAC);
1095 iowrite32(mc_filter[1], ioaddr + 0xB0);
1096 }
1097 tp->mc_filter[0] = mc_filter[0];
1098 tp->mc_filter[1] = mc_filter[1];
1099 }
1100 } else {
1101 unsigned long flags;
1102 u32 tx_flags = 0x08000000 | 192;
1103
1104 /* Note that only the low-address shortword of setup_frame is valid!
1105 The values are doubled for big-endian architectures. */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001106 if (netdev_mc_count(dev) > 14) {
1107 /* Must use a multicast hash table. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 build_setup_frame_hash(tp->setup_frame, dev);
1109 tx_flags = 0x08400000 | 192;
1110 } else {
1111 build_setup_frame_perfect(tp->setup_frame, dev);
1112 }
1113
1114 spin_lock_irqsave(&tp->lock, flags);
1115
1116 if (tp->cur_tx - tp->dirty_tx > TX_RING_SIZE - 2) {
1117 /* Same setup recently queued, we need not add it. */
1118 } else {
1119 unsigned int entry;
1120 int dummy = -1;
1121
1122 /* Now add this frame to the Tx list. */
1123
1124 entry = tp->cur_tx++ % TX_RING_SIZE;
1125
1126 if (entry != 0) {
Peer Chenea8f4002005-08-11 15:09:23 -04001127 /* Avoid a chip errata by prefixing a dummy entry. */
1128 tp->tx_buffers[entry].skb = NULL;
1129 tp->tx_buffers[entry].mapping = 0;
1130 tp->tx_ring[entry].length =
1131 (entry == TX_RING_SIZE-1) ? cpu_to_le32(DESC_RING_WRAP) : 0;
1132 tp->tx_ring[entry].buffer1 = 0;
1133 /* Must set DescOwned later to avoid race with chip */
1134 dummy = entry;
1135 entry = tp->cur_tx++ % TX_RING_SIZE;
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138
1139 tp->tx_buffers[entry].skb = NULL;
1140 tp->tx_buffers[entry].mapping =
1141 pci_map_single(tp->pdev, tp->setup_frame,
1142 sizeof(tp->setup_frame),
1143 PCI_DMA_TODEVICE);
1144 /* Put the setup frame on the Tx list. */
1145 if (entry == TX_RING_SIZE-1)
1146 tx_flags |= DESC_RING_WRAP; /* Wrap ring. */
1147 tp->tx_ring[entry].length = cpu_to_le32(tx_flags);
1148 tp->tx_ring[entry].buffer1 =
1149 cpu_to_le32(tp->tx_buffers[entry].mapping);
1150 tp->tx_ring[entry].status = cpu_to_le32(DescOwned);
1151 if (dummy >= 0)
1152 tp->tx_ring[dummy].status = cpu_to_le32(DescOwned);
1153 if (tp->cur_tx - tp->dirty_tx >= TX_RING_SIZE - 2)
1154 netif_stop_queue(dev);
1155
1156 /* Trigger an immediate transmit demand. */
1157 iowrite32(0, ioaddr + CSR1);
1158 }
1159
1160 spin_unlock_irqrestore(&tp->lock, flags);
1161 }
1162
1163 iowrite32(csr6, ioaddr + CSR6);
1164}
1165
1166#ifdef CONFIG_TULIP_MWI
1167static void __devinit tulip_mwi_config (struct pci_dev *pdev,
1168 struct net_device *dev)
1169{
1170 struct tulip_private *tp = netdev_priv(dev);
1171 u8 cache;
1172 u16 pci_command;
1173 u32 csr0;
1174
1175 if (tulip_debug > 3)
1176 printk(KERN_DEBUG "%s: tulip_mwi_config()\n", pci_name(pdev));
1177
1178 tp->csr0 = csr0 = 0;
1179
Peter Horton10c64622008-03-25 12:39:09 +01001180 /* if we have any cache line size at all, we can do MRM and MWI */
1181 csr0 |= MRM | MWI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Peter Horton10c64622008-03-25 12:39:09 +01001183 /* Enable MWI in the standard PCI command bit.
1184 * Check for the case where MWI is desired but not available
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 */
Peter Horton10c64622008-03-25 12:39:09 +01001186 pci_try_set_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /* read result from hardware (in case bit refused to enable) */
1189 pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
1190 if ((csr0 & MWI) && (!(pci_command & PCI_COMMAND_INVALIDATE)))
1191 csr0 &= ~MWI;
1192
1193 /* if cache line size hardwired to zero, no MWI */
1194 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache);
1195 if ((csr0 & MWI) && (cache == 0)) {
1196 csr0 &= ~MWI;
1197 pci_clear_mwi(pdev);
1198 }
1199
1200 /* assign per-cacheline-size cache alignment and
1201 * burst length values
1202 */
1203 switch (cache) {
1204 case 8:
1205 csr0 |= MRL | (1 << CALShift) | (16 << BurstLenShift);
1206 break;
1207 case 16:
1208 csr0 |= MRL | (2 << CALShift) | (16 << BurstLenShift);
1209 break;
1210 case 32:
1211 csr0 |= MRL | (3 << CALShift) | (32 << BurstLenShift);
1212 break;
1213 default:
1214 cache = 0;
1215 break;
1216 }
1217
1218 /* if we have a good cache line size, we by now have a good
1219 * csr0, so save it and exit
1220 */
1221 if (cache)
1222 goto out;
1223
1224 /* we don't have a good csr0 or cache line size, disable MWI */
1225 if (csr0 & MWI) {
1226 pci_clear_mwi(pdev);
1227 csr0 &= ~MWI;
1228 }
1229
1230 /* sane defaults for burst length and cache alignment
1231 * originally from de4x5 driver
1232 */
1233 csr0 |= (8 << BurstLenShift) | (1 << CALShift);
1234
1235out:
1236 tp->csr0 = csr0;
1237 if (tulip_debug > 2)
1238 printk(KERN_DEBUG "%s: MWI config cacheline=%d, csr0=%08x\n",
1239 pci_name(pdev), cache, csr0);
1240}
1241#endif
1242
1243/*
1244 * Chips that have the MRM/reserved bit quirk and the burst quirk. That
1245 * is the DM910X and the on chip ULi devices
1246 */
Jeff Garzikf3b197a2006-05-26 21:39:03 -04001247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248static int tulip_uli_dm_quirk(struct pci_dev *pdev)
1249{
1250 if (pdev->vendor == 0x1282 && pdev->device == 0x9102)
1251 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return 0;
1253}
1254
Stephen Hemmingerf4266cf2009-01-07 17:59:15 -08001255static const struct net_device_ops tulip_netdev_ops = {
1256 .ndo_open = tulip_open,
1257 .ndo_start_xmit = tulip_start_xmit,
1258 .ndo_tx_timeout = tulip_tx_timeout,
1259 .ndo_stop = tulip_close,
1260 .ndo_get_stats = tulip_get_stats,
1261 .ndo_do_ioctl = private_ioctl,
1262 .ndo_set_multicast_list = set_rx_mode,
1263 .ndo_change_mtu = eth_change_mtu,
1264 .ndo_set_mac_address = eth_mac_addr,
1265 .ndo_validate_addr = eth_validate_addr,
1266#ifdef CONFIG_NET_POLL_CONTROLLER
1267 .ndo_poll_controller = poll_tulip,
1268#endif
1269};
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271static int __devinit tulip_init_one (struct pci_dev *pdev,
1272 const struct pci_device_id *ent)
1273{
1274 struct tulip_private *tp;
1275 /* See note below on the multiport cards. */
1276 static unsigned char last_phys_addr[6] = {0x00, 'L', 'i', 'n', 'u', 'x'};
1277 static struct pci_device_id early_486_chipsets[] = {
1278 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82424) },
1279 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_496) },
1280 { },
1281 };
1282 static int last_irq;
1283 static int multiport_cnt; /* For four-port boards w/one EEPROM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 int i, irq;
1285 unsigned short sum;
1286 unsigned char *ee_data;
1287 struct net_device *dev;
1288 void __iomem *ioaddr;
1289 static int board_idx = -1;
1290 int chip_idx = ent->driver_data;
1291 const char *chip_name = tulip_tbl[chip_idx].chip_name;
1292 unsigned int eeprom_missing = 0;
1293 unsigned int force_csr0 = 0;
1294
1295#ifndef MODULE
Joe Perchesd60bec42010-01-28 20:59:17 +00001296 if (tulip_debug > 0)
1297 printk_once(KERN_INFO "%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298#endif
1299
1300 board_idx++;
1301
1302 /*
1303 * Lan media wire a tulip chip to a wan interface. Needs a very
1304 * different driver (lmc driver)
1305 */
1306
1307 if (pdev->subsystem_vendor == PCI_VENDOR_ID_LMC) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001308 pr_err(PFX "skipping LMC card\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return -ENODEV;
1310 }
1311
1312 /*
Ben Hutchings4d907062010-01-07 02:41:51 +00001313 * DM910x chips should be handled by the dmfe driver, except
1314 * on-board chips on SPARC systems. Also, early DM9100s need
1315 * software CRC which only the dmfe driver supports.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 */
1317
Ben Hutchings4d907062010-01-07 02:41:51 +00001318#ifdef CONFIG_TULIP_DM910X
1319 if (chip_idx == DM910X) {
1320 struct device_node *dp;
1321
1322 if (pdev->vendor == 0x1282 && pdev->device == 0x9100 &&
1323 pdev->revision < 0x30) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001324 pr_info(PFX "skipping early DM9100 with Crc bug (use dmfe)\n");
Ben Hutchings4d907062010-01-07 02:41:51 +00001325 return -ENODEV;
1326 }
1327
1328 dp = pci_device_to_OF_node(pdev);
1329 if (!(dp && of_get_property(dp, "local-mac-address", NULL))) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001330 pr_info(PFX "skipping DM910x expansion card (use dmfe)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return -ENODEV;
1332 }
1333 }
Ben Hutchings4d907062010-01-07 02:41:51 +00001334#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /*
1337 * Looks for early PCI chipsets where people report hangs
1338 * without the workarounds being on.
1339 */
1340
1341 /* 1. Intel Saturn. Switch to 8 long words burst, 8 long word cache
Jeff Garzikf3b197a2006-05-26 21:39:03 -04001342 aligned. Aries might need this too. The Saturn errata are not
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 pretty reading but thankfully it's an old 486 chipset.
1344
1345 2. The dreaded SiS496 486 chipset. Same workaround as Intel
1346 Saturn.
1347 */
1348
1349 if (pci_dev_present(early_486_chipsets)) {
1350 csr0 = MRL | MRM | (8 << BurstLenShift) | (1 << CALShift);
1351 force_csr0 = 1;
1352 }
1353
1354 /* bugfix: the ASIX must have a burst limit or horrible things happen. */
1355 if (chip_idx == AX88140) {
1356 if ((csr0 & 0x3f00) == 0)
1357 csr0 |= 0x2000;
1358 }
1359
1360 /* PNIC doesn't have MWI/MRL/MRM... */
1361 if (chip_idx == LC82C168)
1362 csr0 &= ~0xfff10000; /* zero reserved bits 31:20, 16 */
1363
1364 /* DM9102A has troubles with MRM & clear reserved bits 24:22, 20, 16, 7:1 */
1365 if (tulip_uli_dm_quirk(pdev)) {
1366 csr0 &= ~0x01f100ff;
David S. Miller49345102007-03-29 01:39:44 -07001367#if defined(CONFIG_SPARC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 csr0 = (csr0 & ~0xff00) | 0xe000;
1369#endif
1370 }
1371 /*
1372 * And back to business
1373 */
1374
1375 i = pci_enable_device(pdev);
1376 if (i) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001377 pr_err(PFX "Cannot enable tulip board #%d, aborting\n",
1378 board_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return i;
1380 }
1381
1382 irq = pdev->irq;
1383
1384 /* alloc_etherdev ensures aligned and zeroed private structures */
1385 dev = alloc_etherdev (sizeof (*tp));
1386 if (!dev) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001387 pr_err(PFX "ether device alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 return -ENOMEM;
1389 }
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 SET_NETDEV_DEV(dev, &pdev->dev);
1392 if (pci_resource_len (pdev, 0) < tulip_tbl[chip_idx].io_size) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001393 pr_err(PFX "%s: I/O region (0x%llx@0x%llx) too small, aborting\n",
1394 pci_name(pdev),
1395 (unsigned long long)pci_resource_len (pdev, 0),
1396 (unsigned long long)pci_resource_start (pdev, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 goto err_out_free_netdev;
1398 }
1399
1400 /* grab all resources from both PIO and MMIO regions, as we
1401 * don't want anyone else messing around with our hardware */
Joe Perchesd60bec42010-01-28 20:59:17 +00001402 if (pci_request_regions (pdev, DRV_NAME))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 goto err_out_free_netdev;
1404
Grant Grundler7f2b1242006-09-08 11:15:39 -07001405 ioaddr = pci_iomap(pdev, TULIP_BAR, tulip_tbl[chip_idx].io_size);
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (!ioaddr)
1408 goto err_out_free_res;
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 /*
1411 * initialize private data structure 'tp'
1412 * it is zeroed and aligned in alloc_etherdev
1413 */
1414 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001415 tp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 tp->rx_ring = pci_alloc_consistent(pdev,
1418 sizeof(struct tulip_rx_desc) * RX_RING_SIZE +
1419 sizeof(struct tulip_tx_desc) * TX_RING_SIZE,
1420 &tp->rx_ring_dma);
1421 if (!tp->rx_ring)
1422 goto err_out_mtable;
1423 tp->tx_ring = (struct tulip_tx_desc *)(tp->rx_ring + RX_RING_SIZE);
1424 tp->tx_ring_dma = tp->rx_ring_dma + sizeof(struct tulip_rx_desc) * RX_RING_SIZE;
1425
1426 tp->chip_id = chip_idx;
1427 tp->flags = tulip_tbl[chip_idx].flags;
1428 tp->pdev = pdev;
1429 tp->base_addr = ioaddr;
Auke Kok44c10132007-06-08 15:46:36 -07001430 tp->revision = pdev->revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 tp->csr0 = csr0;
1432 spin_lock_init(&tp->lock);
1433 spin_lock_init(&tp->mii_lock);
1434 init_timer(&tp->timer);
1435 tp->timer.data = (unsigned long)dev;
1436 tp->timer.function = tulip_tbl[tp->chip_id].media_timer;
1437
David Howellsc4028952006-11-22 14:57:56 +00001438 INIT_WORK(&tp->media_work, tulip_tbl[tp->chip_id].media_task);
Francois Romieu0bb3cf72006-09-08 11:15:38 -07001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 dev->base_addr = (unsigned long)ioaddr;
1441
1442#ifdef CONFIG_TULIP_MWI
1443 if (!force_csr0 && (tp->flags & HAS_PCI_MWI))
1444 tulip_mwi_config (pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445#endif
1446
1447 /* Stop the chip's Tx and Rx processes. */
1448 tulip_stop_rxtx(tp);
1449
1450 pci_set_master(pdev);
1451
1452#ifdef CONFIG_GSC
1453 if (pdev->subsystem_vendor == PCI_VENDOR_ID_HP) {
1454 switch (pdev->subsystem_device) {
1455 default:
1456 break;
1457 case 0x1061:
1458 case 0x1062:
1459 case 0x1063:
1460 case 0x1098:
1461 case 0x1099:
1462 case 0x10EE:
1463 tp->flags |= HAS_SWAPPED_SEEPROM | NEEDS_FAKE_MEDIA_TABLE;
1464 chip_name = "GSC DS21140 Tulip";
1465 }
1466 }
1467#endif
1468
1469 /* Clear the missed-packet counter. */
1470 ioread32(ioaddr + CSR8);
1471
1472 /* The station address ROM is read byte serially. The register must
1473 be polled, waiting for the value to be read bit serially from the
1474 EEPROM.
1475 */
1476 ee_data = tp->eeprom;
Grant Grundler209261c2008-03-23 23:23:10 -06001477 memset(ee_data, 0, sizeof(tp->eeprom));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 sum = 0;
1479 if (chip_idx == LC82C168) {
1480 for (i = 0; i < 3; i++) {
1481 int value, boguscnt = 100000;
1482 iowrite32(0x600 | i, ioaddr + 0x98);
Hannes Ederec1d1ebb2008-12-26 00:07:45 -08001483 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 value = ioread32(ioaddr + CSR9);
Hannes Ederec1d1ebb2008-12-26 00:07:45 -08001485 } while (value < 0 && --boguscnt > 0);
Harvey Harrison6caf52a42008-04-29 01:03:36 -07001486 put_unaligned_le16(value, ((__le16 *)dev->dev_addr) + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 sum += value & 0xffff;
1488 }
1489 } else if (chip_idx == COMET) {
1490 /* No need to read the EEPROM. */
Harvey Harrison6caf52a42008-04-29 01:03:36 -07001491 put_unaligned_le32(ioread32(ioaddr + 0xA4), dev->dev_addr);
1492 put_unaligned_le16(ioread32(ioaddr + 0xA8), dev->dev_addr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 for (i = 0; i < 6; i ++)
1494 sum += dev->dev_addr[i];
1495 } else {
1496 /* A serial EEPROM interface, we read now and sort it out later. */
1497 int sa_offset = 0;
1498 int ee_addr_size = tulip_read_eeprom(dev, 0xff, 8) & 0x40000 ? 8 : 6;
Grant Grundler209261c2008-03-23 23:23:10 -06001499 int ee_max_addr = ((1 << ee_addr_size) - 1) * sizeof(u16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Grant Grundler209261c2008-03-23 23:23:10 -06001501 if (ee_max_addr > sizeof(tp->eeprom))
1502 ee_max_addr = sizeof(tp->eeprom);
1503
1504 for (i = 0; i < ee_max_addr ; i += sizeof(u16)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 u16 data = tulip_read_eeprom(dev, i/2, ee_addr_size);
1506 ee_data[i] = data & 0xff;
1507 ee_data[i + 1] = data >> 8;
1508 }
1509
1510 /* DEC now has a specification (see Notes) but early board makers
1511 just put the address in the first EEPROM locations. */
1512 /* This does memcmp(ee_data, ee_data+16, 8) */
1513 for (i = 0; i < 8; i ++)
1514 if (ee_data[i] != ee_data[16+i])
1515 sa_offset = 20;
1516 if (chip_idx == CONEXANT) {
1517 /* Check that the tuple type and length is correct. */
1518 if (ee_data[0x198] == 0x04 && ee_data[0x199] == 6)
1519 sa_offset = 0x19A;
1520 } else if (ee_data[0] == 0xff && ee_data[1] == 0xff &&
1521 ee_data[2] == 0) {
1522 sa_offset = 2; /* Grrr, damn Matrox boards. */
1523 multiport_cnt = 4;
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525#ifdef CONFIG_MIPS_COBALT
Jeff Garzikf3b197a2006-05-26 21:39:03 -04001526 if ((pdev->bus->number == 0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 ((PCI_SLOT(pdev->devfn) == 7) ||
1528 (PCI_SLOT(pdev->devfn) == 12))) {
1529 /* Cobalt MAC address in first EEPROM locations. */
1530 sa_offset = 0;
Ralf Baechle12755c12005-06-26 17:45:52 -04001531 /* Ensure our media table fixup get's applied */
1532 memcpy(ee_data + 16, ee_data, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534#endif
1535#ifdef CONFIG_GSC
1536 /* Check to see if we have a broken srom */
1537 if (ee_data[0] == 0x61 && ee_data[1] == 0x10) {
1538 /* pci_vendor_id and subsystem_id are swapped */
1539 ee_data[0] = ee_data[2];
1540 ee_data[1] = ee_data[3];
1541 ee_data[2] = 0x61;
1542 ee_data[3] = 0x10;
1543
1544 /* HSC-PCI boards need to be byte-swaped and shifted
1545 * up 1 word. This shift needs to happen at the end
1546 * of the MAC first because of the 2 byte overlap.
1547 */
1548 for (i = 4; i >= 0; i -= 2) {
1549 ee_data[17 + i + 3] = ee_data[17 + i];
1550 ee_data[16 + i + 5] = ee_data[16 + i];
1551 }
1552 }
1553#endif
1554
1555 for (i = 0; i < 6; i ++) {
1556 dev->dev_addr[i] = ee_data[i + sa_offset];
1557 sum += ee_data[i + sa_offset];
1558 }
1559 }
1560 /* Lite-On boards have the address byte-swapped. */
Joe Perches8e95a202009-12-03 07:58:21 +00001561 if ((dev->dev_addr[0] == 0xA0 ||
1562 dev->dev_addr[0] == 0xC0 ||
1563 dev->dev_addr[0] == 0x02) &&
1564 dev->dev_addr[1] == 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 for (i = 0; i < 6; i+=2) {
1566 char tmp = dev->dev_addr[i];
1567 dev->dev_addr[i] = dev->dev_addr[i+1];
1568 dev->dev_addr[i+1] = tmp;
1569 }
1570 /* On the Zynx 315 Etherarray and other multiport boards only the
1571 first Tulip has an EEPROM.
1572 On Sparc systems the mac address is held in the OBP property
1573 "local-mac-address".
1574 The addresses of the subsequent ports are derived from the first.
1575 Many PCI BIOSes also incorrectly report the IRQ line, so we correct
1576 that here as well. */
1577 if (sum == 0 || sum == 6*0xff) {
David S. Miller49345102007-03-29 01:39:44 -07001578#if defined(CONFIG_SPARC)
David S. Millerd297c312007-03-29 01:41:28 -07001579 struct device_node *dp = pci_device_to_OF_node(pdev);
1580 const unsigned char *addr;
1581 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582#endif
1583 eeprom_missing = 1;
1584 for (i = 0; i < 5; i++)
1585 dev->dev_addr[i] = last_phys_addr[i];
1586 dev->dev_addr[i] = last_phys_addr[i] + 1;
David S. Miller49345102007-03-29 01:39:44 -07001587#if defined(CONFIG_SPARC)
David S. Millerd297c312007-03-29 01:41:28 -07001588 addr = of_get_property(dp, "local-mac-address", &len);
1589 if (addr && len == 6)
1590 memcpy(dev->dev_addr, addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591#endif
Christoph Dworzakb9c4c602006-01-06 14:49:22 -05001592#if defined(__i386__) || defined(__x86_64__) /* Patch up x86 BIOS bug. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (last_irq)
1594 irq = last_irq;
1595#endif
1596 }
1597
1598 for (i = 0; i < 6; i++)
1599 last_phys_addr[i] = dev->dev_addr[i];
1600 last_irq = irq;
1601 dev->irq = irq;
1602
1603 /* The lower four bits are the media type. */
1604 if (board_idx >= 0 && board_idx < MAX_UNITS) {
1605 if (options[board_idx] & MEDIA_MASK)
1606 tp->default_port = options[board_idx] & MEDIA_MASK;
1607 if ((options[board_idx] & FullDuplex) || full_duplex[board_idx] > 0)
1608 tp->full_duplex = 1;
1609 if (mtu[board_idx] > 0)
1610 dev->mtu = mtu[board_idx];
1611 }
1612 if (dev->mem_start & MEDIA_MASK)
1613 tp->default_port = dev->mem_start & MEDIA_MASK;
1614 if (tp->default_port) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001615 pr_info(DRV_NAME "%d: Transceiver selection forced to %s\n",
1616 board_idx, medianame[tp->default_port & MEDIA_MASK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 tp->medialock = 1;
1618 if (tulip_media_cap[tp->default_port] & MediaAlwaysFD)
1619 tp->full_duplex = 1;
1620 }
1621 if (tp->full_duplex)
1622 tp->full_duplex_lock = 1;
1623
1624 if (tulip_media_cap[tp->default_port] & MediaIsMII) {
1625 u16 media2advert[] = { 0x20, 0x40, 0x03e0, 0x60, 0x80, 0x100, 0x200 };
1626 tp->mii_advertise = media2advert[tp->default_port - 9];
1627 tp->mii_advertise |= (tp->flags & HAS_8023X); /* Matching bits! */
1628 }
1629
1630 if (tp->flags & HAS_MEDIA_TABLE) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001631 sprintf(dev->name, DRV_NAME "%d", board_idx); /* hack */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 tulip_parse_eeprom(dev);
1633 strcpy(dev->name, "eth%d"); /* un-hack */
1634 }
1635
1636 if ((tp->flags & ALWAYS_CHECK_MII) ||
1637 (tp->mtable && tp->mtable->has_mii) ||
1638 ( ! tp->mtable && (tp->flags & HAS_MII))) {
1639 if (tp->mtable && tp->mtable->has_mii) {
1640 for (i = 0; i < tp->mtable->leafcount; i++)
1641 if (tp->mtable->mleaf[i].media == 11) {
1642 tp->cur_index = i;
1643 tp->saved_if_port = dev->if_port;
1644 tulip_select_media(dev, 2);
1645 dev->if_port = tp->saved_if_port;
1646 break;
1647 }
1648 }
1649
1650 /* Find the connected MII xcvrs.
1651 Doing this in open() would allow detecting external xcvrs
1652 later, but takes much time. */
1653 tulip_find_mii (dev, board_idx);
1654 }
1655
1656 /* The Tulip-specific entries in the device structure. */
Stephen Hemmingerf4266cf2009-01-07 17:59:15 -08001657 dev->netdev_ops = &tulip_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 dev->watchdog_timeo = TX_TIMEOUT;
1659#ifdef CONFIG_TULIP_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001660 netif_napi_add(dev, &tp->napi, tulip_poll, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 SET_ETHTOOL_OPS(dev, &ops);
1663
1664 if (register_netdev(dev))
1665 goto err_out_free_ring;
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 pci_set_drvdata(pdev, dev);
1668
Joe Perchesd60bec42010-01-28 20:59:17 +00001669 dev_info(&dev->dev,
1670#ifdef CONFIG_TULIP_MMIO
1671 "%s rev %d at MMIO %#llx,%s %pM, IRQ %d\n",
1672#else
1673 "%s rev %d at Port %#llx,%s %pM, IRQ %d\n",
1674#endif
1675 chip_name, pdev->revision,
1676 (unsigned long long)pci_resource_start(pdev, TULIP_BAR),
1677 eeprom_missing ? " EEPROM not present," : "",
1678 dev->dev_addr, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 if (tp->chip_id == PNIC2)
1681 tp->link_change = pnic2_lnk_change;
1682 else if (tp->flags & HAS_NWAY)
1683 tp->link_change = t21142_lnk_change;
1684 else if (tp->flags & HAS_PNICNWAY)
1685 tp->link_change = pnic_lnk_change;
1686
1687 /* Reset the xcvr interface and turn on heartbeat. */
1688 switch (chip_idx) {
1689 case DC21140:
1690 case DM910X:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 default:
1692 if (tp->mtable)
1693 iowrite32(tp->mtable->csr12dir | 0x100, ioaddr + CSR12);
1694 break;
1695 case DC21142:
1696 if (tp->mii_cnt || tulip_media_cap[dev->if_port] & MediaIsMII) {
1697 iowrite32(csr6_mask_defstate, ioaddr + CSR6);
1698 iowrite32(0x0000, ioaddr + CSR13);
1699 iowrite32(0x0000, ioaddr + CSR14);
1700 iowrite32(csr6_mask_hdcap, ioaddr + CSR6);
1701 } else
1702 t21142_start_nway(dev);
1703 break;
1704 case PNIC2:
1705 /* just do a reset for sanity sake */
1706 iowrite32(0x0000, ioaddr + CSR13);
1707 iowrite32(0x0000, ioaddr + CSR14);
1708 break;
1709 case LC82C168:
1710 if ( ! tp->mii_cnt) {
1711 tp->nway = 1;
1712 tp->nwayset = 0;
1713 iowrite32(csr6_ttm | csr6_ca, ioaddr + CSR6);
1714 iowrite32(0x30, ioaddr + CSR12);
1715 iowrite32(0x0001F078, ioaddr + CSR6);
1716 iowrite32(0x0201F078, ioaddr + CSR6); /* Turn on autonegotiation. */
1717 }
1718 break;
1719 case MX98713:
1720 case COMPEX9881:
1721 iowrite32(0x00000000, ioaddr + CSR6);
1722 iowrite32(0x000711C0, ioaddr + CSR14); /* Turn on NWay. */
1723 iowrite32(0x00000001, ioaddr + CSR13);
1724 break;
1725 case MX98715:
1726 case MX98725:
1727 iowrite32(0x01a80000, ioaddr + CSR6);
1728 iowrite32(0xFFFFFFFF, ioaddr + CSR14);
1729 iowrite32(0x00001000, ioaddr + CSR12);
1730 break;
1731 case COMET:
1732 /* No initialization necessary. */
1733 break;
1734 }
1735
1736 /* put the chip in snooze mode until opened */
1737 tulip_set_power_state (tp, 0, 1);
1738
1739 return 0;
1740
1741err_out_free_ring:
1742 pci_free_consistent (pdev,
1743 sizeof (struct tulip_rx_desc) * RX_RING_SIZE +
1744 sizeof (struct tulip_tx_desc) * TX_RING_SIZE,
1745 tp->rx_ring, tp->rx_ring_dma);
1746
1747err_out_mtable:
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001748 kfree (tp->mtable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 pci_iounmap(pdev, ioaddr);
1750
1751err_out_free_res:
1752 pci_release_regions (pdev);
1753
1754err_out_free_netdev:
1755 free_netdev (dev);
1756 return -ENODEV;
1757}
1758
1759
1760#ifdef CONFIG_PM
1761
1762static int tulip_suspend (struct pci_dev *pdev, pm_message_t state)
1763{
1764 struct net_device *dev = pci_get_drvdata(pdev);
1765
Adam Belay1fe2cb32005-06-20 14:28:41 -07001766 if (!dev)
1767 return -EINVAL;
1768
Grant Grundler56997fa2008-05-12 00:37:51 -06001769 if (!netif_running(dev))
1770 goto save_state;
1771
1772 tulip_down(dev);
Adam Belay1fe2cb32005-06-20 14:28:41 -07001773
1774 netif_device_detach(dev);
1775 free_irq(dev->irq, dev);
1776
Grant Grundler56997fa2008-05-12 00:37:51 -06001777save_state:
Adam Belay1fe2cb32005-06-20 14:28:41 -07001778 pci_save_state(pdev);
1779 pci_disable_device(pdev);
1780 pci_set_power_state(pdev, pci_choose_state(pdev, state));
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return 0;
1783}
1784
1785
1786static int tulip_resume(struct pci_dev *pdev)
1787{
1788 struct net_device *dev = pci_get_drvdata(pdev);
Adam Belay1fe2cb32005-06-20 14:28:41 -07001789 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Adam Belay1fe2cb32005-06-20 14:28:41 -07001791 if (!dev)
1792 return -EINVAL;
1793
1794 pci_set_power_state(pdev, PCI_D0);
1795 pci_restore_state(pdev);
1796
Grant Grundler56997fa2008-05-12 00:37:51 -06001797 if (!netif_running(dev))
1798 return 0;
1799
Valerie Henson9f486ae2006-09-08 11:15:41 -07001800 if ((retval = pci_enable_device(pdev))) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001801 pr_err(PFX "pci_enable_device failed in resume\n");
Valerie Henson9f486ae2006-09-08 11:15:41 -07001802 return retval;
1803 }
Adam Belay1fe2cb32005-06-20 14:28:41 -07001804
Joe Perchesa0607fd2009-11-18 23:29:17 -08001805 if ((retval = request_irq(dev->irq, tulip_interrupt, IRQF_SHARED, dev->name, dev))) {
Joe Perchesd60bec42010-01-28 20:59:17 +00001806 pr_err(PFX "request_irq failed in resume\n");
Adam Belay1fe2cb32005-06-20 14:28:41 -07001807 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Adam Belay1fe2cb32005-06-20 14:28:41 -07001809
1810 netif_device_attach(dev);
1811
1812 if (netif_running(dev))
1813 tulip_up(dev);
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return 0;
1816}
1817
1818#endif /* CONFIG_PM */
1819
1820
1821static void __devexit tulip_remove_one (struct pci_dev *pdev)
1822{
1823 struct net_device *dev = pci_get_drvdata (pdev);
1824 struct tulip_private *tp;
1825
1826 if (!dev)
1827 return;
1828
1829 tp = netdev_priv(dev);
1830 unregister_netdev(dev);
1831 pci_free_consistent (pdev,
1832 sizeof (struct tulip_rx_desc) * RX_RING_SIZE +
1833 sizeof (struct tulip_tx_desc) * TX_RING_SIZE,
1834 tp->rx_ring, tp->rx_ring_dma);
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001835 kfree (tp->mtable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 pci_iounmap(pdev, tp->base_addr);
1837 free_netdev (dev);
1838 pci_release_regions (pdev);
1839 pci_set_drvdata (pdev, NULL);
1840
1841 /* pci_power_off (pdev, -1); */
1842}
1843
1844#ifdef CONFIG_NET_POLL_CONTROLLER
1845/*
1846 * Polling 'interrupt' - used by things like netconsole to send skbs
1847 * without having to re-enable interrupts. It's not called while
1848 * the interrupt routine is executing.
1849 */
1850
1851static void poll_tulip (struct net_device *dev)
1852{
1853 /* disable_irq here is not very nice, but with the lockless
1854 interrupt handler we have no other choice. */
1855 disable_irq(dev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001856 tulip_interrupt (dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 enable_irq(dev->irq);
1858}
1859#endif
1860
1861static struct pci_driver tulip_driver = {
1862 .name = DRV_NAME,
1863 .id_table = tulip_pci_tbl,
1864 .probe = tulip_init_one,
1865 .remove = __devexit_p(tulip_remove_one),
1866#ifdef CONFIG_PM
1867 .suspend = tulip_suspend,
1868 .resume = tulip_resume,
1869#endif /* CONFIG_PM */
1870};
1871
1872
1873static int __init tulip_init (void)
1874{
1875#ifdef MODULE
Joe Perchesd60bec42010-01-28 20:59:17 +00001876 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877#endif
1878
1879 /* copy module parms into globals */
1880 tulip_rx_copybreak = rx_copybreak;
1881 tulip_max_interrupt_work = max_interrupt_work;
1882
1883 /* probe for and init boards */
Jeff Garzik29917622006-08-19 17:48:59 -04001884 return pci_register_driver(&tulip_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
1887
1888static void __exit tulip_cleanup (void)
1889{
1890 pci_unregister_driver (&tulip_driver);
1891}
1892
1893
1894module_init(tulip_init);
1895module_exit(tulip_cleanup);