blob: 4f226064d55e982b2c86f178cb918619275eedcf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ne2k-pci.c: A NE2000 clone on PCI bus driver for Linux. */
2/*
3 A Linux device driver for PCI NE2000 clones.
4
5 Authors and other copyright holders:
6 1992-2000 by Donald Becker, NE2000 core and various modifications.
7 1995-1998 by Paul Gortmaker, core modifications and PCI support.
8 Copyright 1993 assigned to the United States Government as represented
9 by the Director, National Security Agency.
10
11 This software may be used and distributed according to the terms of
12 the GNU General Public License (GPL), incorporated herein by reference.
13 Drivers based on or derived from this code fall under the GPL and must
14 retain the authorship, copyright and license notice. This file is not
15 a complete program and may only be used when the entire operating
16 system is licensed under the GPL.
17
18 The author may be reached as becker@scyld.com, or C/O
19 Scyld Computing Corporation
20 410 Severn Ave., Suite 210
21 Annapolis MD 21403
22
23 Issues remaining:
24 People are making PCI ne2000 clones! Oh the horror, the horror...
25 Limited full-duplex support.
26*/
27
28#define DRV_NAME "ne2k-pci"
29#define DRV_VERSION "1.03"
30#define DRV_RELDATE "9/22/2003"
31
32
33/* The user-configurable values.
34 These may be modified when a driver module is loaded.*/
35
36static int debug = 1; /* 1 normal messages, 0 quiet .. 7 verbose. */
37
38#define MAX_UNITS 8 /* More are supported, limit only on options */
39/* Used to pass the full-duplex flag, etc. */
40static int full_duplex[MAX_UNITS];
41static int options[MAX_UNITS];
42
43/* Force a non std. amount of memory. Units are 256 byte pages. */
44/* #define PACKETBUF_MEMSIZE 0x40 */
45
46
47#include <linux/module.h>
48#include <linux/kernel.h>
49#include <linux/errno.h>
50#include <linux/pci.h>
51#include <linux/init.h>
52#include <linux/interrupt.h>
53#include <linux/ethtool.h>
54#include <linux/netdevice.h>
55#include <linux/etherdevice.h>
56
57#include <asm/system.h>
58#include <asm/io.h>
59#include <asm/irq.h>
60#include <asm/uaccess.h>
61
62#include "8390.h"
63
64/* These identify the driver base version and may not be removed. */
65static char version[] __devinitdata =
66KERN_INFO DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " D. Becker/P. Gortmaker\n"
67KERN_INFO " http://www.scyld.com/network/ne2k-pci.html\n";
68
69#if defined(__powerpc__)
70#define inl_le(addr) le32_to_cpu(inl(addr))
71#define inw_le(addr) le16_to_cpu(inw(addr))
72#endif
73
74#define PFX DRV_NAME ": "
75
76MODULE_AUTHOR("Donald Becker / Paul Gortmaker");
77MODULE_DESCRIPTION("PCI NE2000 clone driver");
78MODULE_LICENSE("GPL");
79
80module_param(debug, int, 0);
81module_param_array(options, int, NULL, 0);
82module_param_array(full_duplex, int, NULL, 0);
83MODULE_PARM_DESC(debug, "debug level (1-2)");
84MODULE_PARM_DESC(options, "Bit 5: full duplex");
85MODULE_PARM_DESC(full_duplex, "full duplex setting(s) (1)");
86
87/* Some defines that people can play with if so inclined. */
88
89/* Use 32 bit data-movement operations instead of 16 bit. */
90#define USE_LONGIO
91
92/* Do we implement the read before write bugfix ? */
93/* #define NE_RW_BUGFIX */
94
95/* Flags. We rename an existing ei_status field to store flags! */
96/* Thus only the low 8 bits are usable for non-init-time flags. */
97#define ne2k_flags reg0
98enum {
99 ONLY_16BIT_IO=8, ONLY_32BIT_IO=4, /* Chip can do only 16/32-bit xfers. */
100 FORCE_FDX=0x20, /* User override. */
101 REALTEK_FDX=0x40, HOLTEK_FDX=0x80,
102 STOP_PG_0x60=0x100,
103};
104
105enum ne2k_pci_chipsets {
106 CH_RealTek_RTL_8029 = 0,
107 CH_Winbond_89C940,
108 CH_Compex_RL2000,
109 CH_KTI_ET32P2,
110 CH_NetVin_NV5000SC,
111 CH_Via_86C926,
112 CH_SureCom_NE34,
113 CH_Winbond_W89C940F,
114 CH_Holtek_HT80232,
115 CH_Holtek_HT80229,
116 CH_Winbond_89C940_8c4a,
117};
118
119
Hormsb2fd16b2006-03-23 16:36:28 +0900120static struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 char *name;
122 int flags;
123} pci_clone_list[] __devinitdata = {
124 {"RealTek RTL-8029", REALTEK_FDX},
125 {"Winbond 89C940", 0},
126 {"Compex RL2000", 0},
127 {"KTI ET32P2", 0},
128 {"NetVin NV5000SC", 0},
129 {"Via 86C926", ONLY_16BIT_IO},
130 {"SureCom NE34", 0},
131 {"Winbond W89C940F", 0},
132 {"Holtek HT80232", ONLY_16BIT_IO | HOLTEK_FDX},
133 {"Holtek HT80229", ONLY_32BIT_IO | HOLTEK_FDX | STOP_PG_0x60 },
134 {"Winbond W89C940(misprogrammed)", 0},
135 {NULL,}
136};
137
138
139static struct pci_device_id ne2k_pci_tbl[] = {
140 { 0x10ec, 0x8029, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RealTek_RTL_8029 },
141 { 0x1050, 0x0940, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Winbond_89C940 },
142 { 0x11f6, 0x1401, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Compex_RL2000 },
143 { 0x8e2e, 0x3000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_KTI_ET32P2 },
144 { 0x4a14, 0x5000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_NetVin_NV5000SC },
145 { 0x1106, 0x0926, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Via_86C926 },
146 { 0x10bd, 0x0e34, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_SureCom_NE34 },
147 { 0x1050, 0x5a5a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Winbond_W89C940F },
148 { 0x12c3, 0x0058, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Holtek_HT80232 },
149 { 0x12c3, 0x5598, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Holtek_HT80229 },
150 { 0x8c4a, 0x1980, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_Winbond_89C940_8c4a },
151 { 0, }
152};
153MODULE_DEVICE_TABLE(pci, ne2k_pci_tbl);
154
155
156/* ---- No user-serviceable parts below ---- */
157
158#define NE_BASE (dev->base_addr)
159#define NE_CMD 0x00
160#define NE_DATAPORT 0x10 /* NatSemi-defined port window offset. */
161#define NE_RESET 0x1f /* Issue a read to reset, a write to clear. */
162#define NE_IO_EXTENT 0x20
163
164#define NESM_START_PG 0x40 /* First page of TX buffer */
165#define NESM_STOP_PG 0x80 /* Last page +1 of RX ring */
166
167
168static int ne2k_pci_open(struct net_device *dev);
169static int ne2k_pci_close(struct net_device *dev);
170
171static void ne2k_pci_reset_8390(struct net_device *dev);
172static void ne2k_pci_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
173 int ring_page);
174static void ne2k_pci_block_input(struct net_device *dev, int count,
175 struct sk_buff *skb, int ring_offset);
176static void ne2k_pci_block_output(struct net_device *dev, const int count,
177 const unsigned char *buf, const int start_page);
178static struct ethtool_ops ne2k_pci_ethtool_ops;
179
180
181
182/* There is no room in the standard 8390 structure for extra info we need,
183 so we build a meta/outer-wrapper structure.. */
184struct ne2k_pci_card {
185 struct net_device *dev;
186 struct pci_dev *pci_dev;
187};
188
189
190
191/*
192 NEx000-clone boards have a Station Address (SA) PROM (SAPROM) in the packet
193 buffer memory space. By-the-spec NE2000 clones have 0x57,0x57 in bytes
194 0x0e,0x0f of the SAPROM, while other supposed NE2000 clones must be
195 detected by their SA prefix.
196
197 Reading the SAPROM from a word-wide card with the 8390 set in byte-wide
198 mode results in doubled values, which can be detected and compensated for.
199
200 The probe is also responsible for initializing the card and filling
201 in the 'dev' and 'ei_status' structures.
202*/
203
204
205static int __devinit ne2k_pci_init_one (struct pci_dev *pdev,
206 const struct pci_device_id *ent)
207{
208 struct net_device *dev;
209 int i;
210 unsigned char SA_prom[32];
211 int start_page, stop_page;
212 int irq, reg0, chip_idx = ent->driver_data;
213 static unsigned int fnd_cnt;
214 long ioaddr;
215 int flags = pci_clone_list[chip_idx].flags;
216
217/* when built into the kernel, we only print version if device is found */
218#ifndef MODULE
219 static int printed_version;
220 if (!printed_version++)
221 printk(version);
222#endif
223
224 fnd_cnt++;
225
226 i = pci_enable_device (pdev);
227 if (i)
228 return i;
229
230 ioaddr = pci_resource_start (pdev, 0);
231 irq = pdev->irq;
232
233 if (!ioaddr || ((pci_resource_flags (pdev, 0) & IORESOURCE_IO) == 0)) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -0400234 dev_printk (KERN_ERR, &pdev->dev,
235 "no I/O resource at PCI BAR #0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -ENODEV;
237 }
238
239 if (request_region (ioaddr, NE_IO_EXTENT, DRV_NAME) == NULL) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -0400240 dev_printk (KERN_ERR, &pdev->dev,
241 "I/O resource 0x%x @ 0x%lx busy\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 NE_IO_EXTENT, ioaddr);
243 return -EBUSY;
244 }
245
246 reg0 = inb(ioaddr);
247 if (reg0 == 0xFF)
248 goto err_out_free_res;
249
250 /* Do a preliminary verification that we have a 8390. */
251 {
252 int regd;
253 outb(E8390_NODMA+E8390_PAGE1+E8390_STOP, ioaddr + E8390_CMD);
254 regd = inb(ioaddr + 0x0d);
255 outb(0xff, ioaddr + 0x0d);
256 outb(E8390_NODMA+E8390_PAGE0, ioaddr + E8390_CMD);
257 inb(ioaddr + EN0_COUNTER0); /* Clear the counter by reading. */
258 if (inb(ioaddr + EN0_COUNTER0) != 0) {
259 outb(reg0, ioaddr);
260 outb(regd, ioaddr + 0x0d); /* Restore the old values. */
261 goto err_out_free_res;
262 }
263 }
264
265 /* Allocate net_device, dev->priv; fill in 8390 specific dev fields. */
266 dev = alloc_ei_netdev();
267 if (!dev) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -0400268 dev_printk (KERN_ERR, &pdev->dev,
269 "cannot allocate ethernet device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 goto err_out_free_res;
271 }
272 SET_MODULE_OWNER(dev);
273 SET_NETDEV_DEV(dev, &pdev->dev);
274
275 /* Reset card. Who knows what dain-bramaged state it was left in. */
276 {
277 unsigned long reset_start_time = jiffies;
278
279 outb(inb(ioaddr + NE_RESET), ioaddr + NE_RESET);
280
281 /* This looks like a horrible timing loop, but it should never take
282 more than a few cycles.
283 */
284 while ((inb(ioaddr + EN0_ISR) & ENISR_RESET) == 0)
285 /* Limit wait: '2' avoids jiffy roll-over. */
286 if (jiffies - reset_start_time > 2) {
Jeff Garzik2e8a5382006-06-27 10:47:51 -0400287 dev_printk(KERN_ERR, &pdev->dev,
288 "Card failure (no reset ack).\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 goto err_out_free_netdev;
290 }
291
292 outb(0xff, ioaddr + EN0_ISR); /* Ack all intr. */
293 }
294
295 /* Read the 16 bytes of station address PROM.
296 We must first initialize registers, similar to NS8390_init(eifdev, 0).
297 We can't reliably read the SAPROM address without this.
298 (I learned the hard way!). */
299 {
300 struct {unsigned char value, offset; } program_seq[] = {
301 {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, /* Select page 0*/
302 {0x49, EN0_DCFG}, /* Set word-wide access. */
303 {0x00, EN0_RCNTLO}, /* Clear the count regs. */
304 {0x00, EN0_RCNTHI},
305 {0x00, EN0_IMR}, /* Mask completion irq. */
306 {0xFF, EN0_ISR},
307 {E8390_RXOFF, EN0_RXCR}, /* 0x20 Set to monitor */
308 {E8390_TXOFF, EN0_TXCR}, /* 0x02 and loopback mode. */
309 {32, EN0_RCNTLO},
310 {0x00, EN0_RCNTHI},
311 {0x00, EN0_RSARLO}, /* DMA starting at 0x0000. */
312 {0x00, EN0_RSARHI},
313 {E8390_RREAD+E8390_START, E8390_CMD},
314 };
315 for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++)
316 outb(program_seq[i].value, ioaddr + program_seq[i].offset);
317
318 }
319
320 /* Note: all PCI cards have at least 16 bit access, so we don't have
321 to check for 8 bit cards. Most cards permit 32 bit access. */
322 if (flags & ONLY_32BIT_IO) {
323 for (i = 0; i < 4 ; i++)
324 ((u32 *)SA_prom)[i] = le32_to_cpu(inl(ioaddr + NE_DATAPORT));
325 } else
326 for(i = 0; i < 32 /*sizeof(SA_prom)*/; i++)
327 SA_prom[i] = inb(ioaddr + NE_DATAPORT);
328
329 /* We always set the 8390 registers for word mode. */
330 outb(0x49, ioaddr + EN0_DCFG);
331 start_page = NESM_START_PG;
332
333 stop_page = flags & STOP_PG_0x60 ? 0x60 : NESM_STOP_PG;
334
335 /* Set up the rest of the parameters. */
336 dev->irq = irq;
337 dev->base_addr = ioaddr;
338 pci_set_drvdata(pdev, dev);
339
340 ei_status.name = pci_clone_list[chip_idx].name;
341 ei_status.tx_start_page = start_page;
342 ei_status.stop_page = stop_page;
343 ei_status.word16 = 1;
344 ei_status.ne2k_flags = flags;
345 if (fnd_cnt < MAX_UNITS) {
346 if (full_duplex[fnd_cnt] > 0 || (options[fnd_cnt] & FORCE_FDX))
347 ei_status.ne2k_flags |= FORCE_FDX;
348 }
349
350 ei_status.rx_start_page = start_page + TX_PAGES;
351#ifdef PACKETBUF_MEMSIZE
352 /* Allow the packet buffer size to be overridden by know-it-alls. */
353 ei_status.stop_page = ei_status.tx_start_page + PACKETBUF_MEMSIZE;
354#endif
355
356 ei_status.reset_8390 = &ne2k_pci_reset_8390;
357 ei_status.block_input = &ne2k_pci_block_input;
358 ei_status.block_output = &ne2k_pci_block_output;
359 ei_status.get_8390_hdr = &ne2k_pci_get_8390_hdr;
360 ei_status.priv = (unsigned long) pdev;
361 dev->open = &ne2k_pci_open;
362 dev->stop = &ne2k_pci_close;
363 dev->ethtool_ops = &ne2k_pci_ethtool_ops;
364#ifdef CONFIG_NET_POLL_CONTROLLER
365 dev->poll_controller = ei_poll;
366#endif
367 NS8390_init(dev, 0);
368
369 i = register_netdev(dev);
370 if (i)
371 goto err_out_free_netdev;
372
373 printk("%s: %s found at %#lx, IRQ %d, ",
374 dev->name, pci_clone_list[chip_idx].name, ioaddr, dev->irq);
375 for(i = 0; i < 6; i++) {
376 printk("%2.2X%s", SA_prom[i], i == 5 ? ".\n": ":");
377 dev->dev_addr[i] = SA_prom[i];
378 }
John W. Linville78b34582005-09-12 10:48:57 -0400379 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 return 0;
382
383err_out_free_netdev:
384 free_netdev (dev);
385err_out_free_res:
386 release_region (ioaddr, NE_IO_EXTENT);
387 pci_set_drvdata (pdev, NULL);
388 return -ENODEV;
389
390}
391
392/*
393 * Magic incantation sequence for full duplex on the supported cards.
394 */
395static inline int set_realtek_fdx(struct net_device *dev)
396{
397 long ioaddr = dev->base_addr;
398
399 outb(0xC0 + E8390_NODMA, ioaddr + NE_CMD); /* Page 3 */
400 outb(0xC0, ioaddr + 0x01); /* Enable writes to CONFIG3 */
401 outb(0x40, ioaddr + 0x06); /* Enable full duplex */
402 outb(0x00, ioaddr + 0x01); /* Disable writes to CONFIG3 */
403 outb(E8390_PAGE0 + E8390_NODMA, ioaddr + NE_CMD); /* Page 0 */
404 return 0;
405}
406
407static inline int set_holtek_fdx(struct net_device *dev)
408{
409 long ioaddr = dev->base_addr;
410
411 outb(inb(ioaddr + 0x20) | 0x80, ioaddr + 0x20);
412 return 0;
413}
414
415static int ne2k_pci_set_fdx(struct net_device *dev)
416{
417 if (ei_status.ne2k_flags & REALTEK_FDX)
418 return set_realtek_fdx(dev);
419 else if (ei_status.ne2k_flags & HOLTEK_FDX)
420 return set_holtek_fdx(dev);
421
422 return -EOPNOTSUPP;
423}
424
425static int ne2k_pci_open(struct net_device *dev)
426{
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700427 int ret = request_irq(dev->irq, ei_interrupt, IRQF_SHARED, dev->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (ret)
429 return ret;
430
431 if (ei_status.ne2k_flags & FORCE_FDX)
432 ne2k_pci_set_fdx(dev);
433
434 ei_open(dev);
435 return 0;
436}
437
438static int ne2k_pci_close(struct net_device *dev)
439{
440 ei_close(dev);
441 free_irq(dev->irq, dev);
442 return 0;
443}
444
445/* Hard reset the card. This used to pause for the same period that a
446 8390 reset command required, but that shouldn't be necessary. */
447static void ne2k_pci_reset_8390(struct net_device *dev)
448{
449 unsigned long reset_start_time = jiffies;
450
451 if (debug > 1) printk("%s: Resetting the 8390 t=%ld...",
452 dev->name, jiffies);
453
454 outb(inb(NE_BASE + NE_RESET), NE_BASE + NE_RESET);
455
456 ei_status.txing = 0;
457 ei_status.dmaing = 0;
458
459 /* This check _should_not_ be necessary, omit eventually. */
460 while ((inb(NE_BASE+EN0_ISR) & ENISR_RESET) == 0)
461 if (jiffies - reset_start_time > 2) {
462 printk("%s: ne2k_pci_reset_8390() did not complete.\n", dev->name);
463 break;
464 }
465 outb(ENISR_RESET, NE_BASE + EN0_ISR); /* Ack intr. */
466}
467
468/* Grab the 8390 specific header. Similar to the block_input routine, but
469 we don't need to be concerned with ring wrap as the header will be at
470 the start of a page, so we optimize accordingly. */
471
472static void ne2k_pci_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
473{
474
475 long nic_base = dev->base_addr;
476
477 /* This *shouldn't* happen. If it does, it's the last thing you'll see */
478 if (ei_status.dmaing) {
479 printk("%s: DMAing conflict in ne2k_pci_get_8390_hdr "
480 "[DMAstat:%d][irqlock:%d].\n",
481 dev->name, ei_status.dmaing, ei_status.irqlock);
482 return;
483 }
484
485 ei_status.dmaing |= 0x01;
486 outb(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
487 outb(sizeof(struct e8390_pkt_hdr), nic_base + EN0_RCNTLO);
488 outb(0, nic_base + EN0_RCNTHI);
489 outb(0, nic_base + EN0_RSARLO); /* On page boundary */
490 outb(ring_page, nic_base + EN0_RSARHI);
491 outb(E8390_RREAD+E8390_START, nic_base + NE_CMD);
492
493 if (ei_status.ne2k_flags & ONLY_16BIT_IO) {
494 insw(NE_BASE + NE_DATAPORT, hdr, sizeof(struct e8390_pkt_hdr)>>1);
495 } else {
496 *(u32*)hdr = le32_to_cpu(inl(NE_BASE + NE_DATAPORT));
497 le16_to_cpus(&hdr->count);
498 }
499
500 outb(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
501 ei_status.dmaing &= ~0x01;
502}
503
504/* Block input and output, similar to the Crynwr packet driver. If you
505 are porting to a new ethercard, look at the packet driver source for hints.
506 The NEx000 doesn't share the on-board packet memory -- you have to put
507 the packet out through the "remote DMA" dataport using outb. */
508
509static void ne2k_pci_block_input(struct net_device *dev, int count,
510 struct sk_buff *skb, int ring_offset)
511{
512 long nic_base = dev->base_addr;
513 char *buf = skb->data;
514
515 /* This *shouldn't* happen. If it does, it's the last thing you'll see */
516 if (ei_status.dmaing) {
517 printk("%s: DMAing conflict in ne2k_pci_block_input "
518 "[DMAstat:%d][irqlock:%d].\n",
519 dev->name, ei_status.dmaing, ei_status.irqlock);
520 return;
521 }
522 ei_status.dmaing |= 0x01;
523 if (ei_status.ne2k_flags & ONLY_32BIT_IO)
524 count = (count + 3) & 0xFFFC;
525 outb(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
526 outb(count & 0xff, nic_base + EN0_RCNTLO);
527 outb(count >> 8, nic_base + EN0_RCNTHI);
528 outb(ring_offset & 0xff, nic_base + EN0_RSARLO);
529 outb(ring_offset >> 8, nic_base + EN0_RSARHI);
530 outb(E8390_RREAD+E8390_START, nic_base + NE_CMD);
531
532 if (ei_status.ne2k_flags & ONLY_16BIT_IO) {
533 insw(NE_BASE + NE_DATAPORT,buf,count>>1);
534 if (count & 0x01) {
535 buf[count-1] = inb(NE_BASE + NE_DATAPORT);
536 }
537 } else {
538 insl(NE_BASE + NE_DATAPORT, buf, count>>2);
539 if (count & 3) {
540 buf += count & ~3;
541 if (count & 2) {
542 u16 *b = (u16 *)buf;
543
544 *b++ = le16_to_cpu(inw(NE_BASE + NE_DATAPORT));
545 buf = (char *)b;
546 }
547 if (count & 1)
548 *buf = inb(NE_BASE + NE_DATAPORT);
549 }
550 }
551
552 outb(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
553 ei_status.dmaing &= ~0x01;
554}
555
556static void ne2k_pci_block_output(struct net_device *dev, int count,
557 const unsigned char *buf, const int start_page)
558{
559 long nic_base = NE_BASE;
560 unsigned long dma_start;
561
562 /* On little-endian it's always safe to round the count up for
563 word writes. */
564 if (ei_status.ne2k_flags & ONLY_32BIT_IO)
565 count = (count + 3) & 0xFFFC;
566 else
567 if (count & 0x01)
568 count++;
569
570 /* This *shouldn't* happen. If it does, it's the last thing you'll see */
571 if (ei_status.dmaing) {
572 printk("%s: DMAing conflict in ne2k_pci_block_output."
573 "[DMAstat:%d][irqlock:%d]\n",
574 dev->name, ei_status.dmaing, ei_status.irqlock);
575 return;
576 }
577 ei_status.dmaing |= 0x01;
578 /* We should already be in page 0, but to be safe... */
579 outb(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base + NE_CMD);
580
581#ifdef NE8390_RW_BUGFIX
582 /* Handle the read-before-write bug the same way as the
583 Crynwr packet driver -- the NatSemi method doesn't work.
584 Actually this doesn't always work either, but if you have
585 problems with your NEx000 this is better than nothing! */
586 outb(0x42, nic_base + EN0_RCNTLO);
587 outb(0x00, nic_base + EN0_RCNTHI);
588 outb(0x42, nic_base + EN0_RSARLO);
589 outb(0x00, nic_base + EN0_RSARHI);
590 outb(E8390_RREAD+E8390_START, nic_base + NE_CMD);
591#endif
592 outb(ENISR_RDC, nic_base + EN0_ISR);
593
594 /* Now the normal output. */
595 outb(count & 0xff, nic_base + EN0_RCNTLO);
596 outb(count >> 8, nic_base + EN0_RCNTHI);
597 outb(0x00, nic_base + EN0_RSARLO);
598 outb(start_page, nic_base + EN0_RSARHI);
599 outb(E8390_RWRITE+E8390_START, nic_base + NE_CMD);
600 if (ei_status.ne2k_flags & ONLY_16BIT_IO) {
601 outsw(NE_BASE + NE_DATAPORT, buf, count>>1);
602 } else {
603 outsl(NE_BASE + NE_DATAPORT, buf, count>>2);
604 if (count & 3) {
605 buf += count & ~3;
606 if (count & 2) {
607 u16 *b = (u16 *)buf;
608
609 outw(cpu_to_le16(*b++), NE_BASE + NE_DATAPORT);
610 buf = (char *)b;
611 }
612 }
613 }
614
615 dma_start = jiffies;
616
617 while ((inb(nic_base + EN0_ISR) & ENISR_RDC) == 0)
618 if (jiffies - dma_start > 2) { /* Avoid clock roll-over. */
619 printk(KERN_WARNING "%s: timeout waiting for Tx RDC.\n", dev->name);
620 ne2k_pci_reset_8390(dev);
621 NS8390_init(dev,1);
622 break;
623 }
624
625 outb(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
626 ei_status.dmaing &= ~0x01;
627 return;
628}
629
630static void ne2k_pci_get_drvinfo(struct net_device *dev,
631 struct ethtool_drvinfo *info)
632{
633 struct ei_device *ei = dev->priv;
634 struct pci_dev *pci_dev = (struct pci_dev *) ei->priv;
635
636 strcpy(info->driver, DRV_NAME);
637 strcpy(info->version, DRV_VERSION);
638 strcpy(info->bus_info, pci_name(pci_dev));
639}
640
641static struct ethtool_ops ne2k_pci_ethtool_ops = {
642 .get_drvinfo = ne2k_pci_get_drvinfo,
643 .get_tx_csum = ethtool_op_get_tx_csum,
644 .get_sg = ethtool_op_get_sg,
John W. Linville78b34582005-09-12 10:48:57 -0400645 .get_perm_addr = ethtool_op_get_perm_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646};
647
648static void __devexit ne2k_pci_remove_one (struct pci_dev *pdev)
649{
650 struct net_device *dev = pci_get_drvdata(pdev);
651
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200652 BUG_ON(!dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 unregister_netdev(dev);
654 release_region(dev->base_addr, NE_IO_EXTENT);
655 free_netdev(dev);
656 pci_disable_device(pdev);
657 pci_set_drvdata(pdev, NULL);
658}
659
660#ifdef CONFIG_PM
661static int ne2k_pci_suspend (struct pci_dev *pdev, pm_message_t state)
662{
663 struct net_device *dev = pci_get_drvdata (pdev);
664
665 netif_device_detach(dev);
666 pci_save_state(pdev);
David Shaohua Lid58da592005-03-18 16:43:54 -0500667 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 pci_set_power_state(pdev, pci_choose_state(pdev, state));
669
670 return 0;
671}
672
673static int ne2k_pci_resume (struct pci_dev *pdev)
674{
675 struct net_device *dev = pci_get_drvdata (pdev);
676
677 pci_set_power_state(pdev, 0);
678 pci_restore_state(pdev);
David Shaohua Lid58da592005-03-18 16:43:54 -0500679 pci_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 NS8390_init(dev, 1);
681 netif_device_attach(dev);
682
683 return 0;
684}
685
686#endif /* CONFIG_PM */
687
688
689static struct pci_driver ne2k_driver = {
690 .name = DRV_NAME,
691 .probe = ne2k_pci_init_one,
692 .remove = __devexit_p(ne2k_pci_remove_one),
693 .id_table = ne2k_pci_tbl,
694#ifdef CONFIG_PM
695 .suspend = ne2k_pci_suspend,
696 .resume = ne2k_pci_resume,
697#endif /* CONFIG_PM */
698
699};
700
701
702static int __init ne2k_pci_init(void)
703{
704/* when a module, this is printed whether or not devices are found in probe */
705#ifdef MODULE
706 printk(version);
707#endif
708 return pci_module_init (&ne2k_driver);
709}
710
711
712static void __exit ne2k_pci_cleanup(void)
713{
714 pci_unregister_driver (&ne2k_driver);
715}
716
717module_init(ne2k_pci_init);
718module_exit(ne2k_pci_cleanup);