blob: aa99f5e09d374319a153392da72b1f254abdce2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ne-h8300.c: A NE2000 clone on H8/300 driver for linux. */
2/*
3 original ne.c
4 Written 1992-94 by Donald Becker.
5
6 Copyright 1993 United States Government as represented by the
7 Director, National Security Agency.
8
9 This software may be used and distributed according to the terms
10 of the GNU General Public License, incorporated herein by reference.
11
12 The author may be reached as becker@scyld.com, or C/O
13 Scyld Computing Corporation, 410 Severn Ave., Suite 210, Annapolis MD 21403
14
15 H8/300 modified
16 Yoshinori Sato <ysato@users.sourceforge.jp>
17*/
18
19static const char version1[] =
20"ne-h8300.c:v1.00 2004/04/11 ysato\n";
21
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/errno.h>
25#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/delay.h>
28#include <linux/netdevice.h>
29#include <linux/etherdevice.h>
Marcelo Feitoza Parisiff5688a2006-01-09 18:37:15 -080030#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/system.h>
33#include <asm/io.h>
34#include <asm/irq.h>
35
Al Viro3470cb12006-10-10 00:19:36 +010036#define EI_SHIFT(x) (ei_local->reg_offset[x])
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "8390.h"
39
40#define DRV_NAME "ne-h8300"
41
42/* Some defines that people can play with if so inclined. */
43
44/* Do we perform extra sanity checks on stuff ? */
45/* #define NE_SANITY_CHECK */
46
47/* Do we implement the read before write bugfix ? */
48/* #define NE_RW_BUGFIX */
49
50/* Do we have a non std. amount of memory? (in units of 256 byte pages) */
51/* #define PACKETBUF_MEMSIZE 0x40 */
52
53/* A zero-terminated list of I/O addresses to be probed at boot. */
54
55/* ---- No user-serviceable parts below ---- */
56
Al Viro3470cb12006-10-10 00:19:36 +010057static const char version[] =
58 "8390.c:v1.10cvs 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n";
59
60#include "lib8390.c"
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define NE_BASE (dev->base_addr)
63#define NE_CMD 0x00
64#define NE_DATAPORT (ei_status.word16?0x20:0x10) /* NatSemi-defined port window offset. */
65#define NE_RESET (ei_status.word16?0x3f:0x1f) /* Issue a read to reset, a write to clear. */
66#define NE_IO_EXTENT (ei_status.word16?0x40:0x20)
67
68#define NESM_START_PG 0x40 /* First page of TX buffer */
69#define NESM_STOP_PG 0x80 /* Last page +1 of RX ring */
70
71static int ne_probe1(struct net_device *dev, int ioaddr);
72
73static int ne_open(struct net_device *dev);
74static int ne_close(struct net_device *dev);
75
76static void ne_reset_8390(struct net_device *dev);
77static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
78 int ring_page);
79static void ne_block_input(struct net_device *dev, int count,
80 struct sk_buff *skb, int ring_offset);
81static void ne_block_output(struct net_device *dev, const int count,
82 const unsigned char *buf, const int start_page);
83
84
85static u32 reg_offset[16];
86
87static int __init init_reg_offset(struct net_device *dev,unsigned long base_addr)
88{
89 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
90 int i;
91 unsigned char bus_width;
92
93 bus_width = *(volatile unsigned char *)ABWCR;
94 bus_width &= 1 << ((base_addr >> 21) & 7);
95
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020096 for (i = 0; i < ARRAY_SIZE(reg_offset); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (bus_width == 0)
98 reg_offset[i] = i * 2 + 1;
99 else
100 reg_offset[i] = i;
101
102 ei_local->reg_offset = reg_offset;
103 return 0;
104}
105
106static int __initdata h8300_ne_count = 0;
107#ifdef CONFIG_H8300H_H8MAX
108static unsigned long __initdata h8300_ne_base[] = { 0x800600 };
109static int h8300_ne_irq[] = {EXT_IRQ4};
110#endif
111#ifdef CONFIG_H8300H_AKI3068NET
112static unsigned long __initdata h8300_ne_base[] = { 0x200000 };
113static int h8300_ne_irq[] = {EXT_IRQ5};
114#endif
115
116static inline int init_dev(struct net_device *dev)
117{
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +0200118 if (h8300_ne_count < ARRAY_SIZE(h8300_ne_base)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 dev->base_addr = h8300_ne_base[h8300_ne_count];
120 dev->irq = h8300_ne_irq[h8300_ne_count];
121 h8300_ne_count++;
122 return 0;
123 } else
124 return -ENODEV;
125}
126
127/* Probe for various non-shared-memory ethercards.
128
129 NEx000-clone boards have a Station Address PROM (SAPROM) in the packet
130 buffer memory space. NE2000 clones have 0x57,0x57 in bytes 0x0e,0x0f of
131 the SAPROM, while other supposed NE2000 clones must be detected by their
132 SA prefix.
133
134 Reading the SAPROM from a word-wide card with the 8390 set in byte-wide
135 mode results in doubled values, which can be detected and compensated for.
136
137 The probe is also responsible for initializing the card and filling
138 in the 'dev' and 'ei_status' structures.
139
140 We use the minimum memory size for some ethercard product lines, iff we can't
141 distinguish models. You can increase the packet buffer size by setting
142 PACKETBUF_MEMSIZE. Reported Cabletron packet buffer locations are:
143 E1010 starts at 0x100 and ends at 0x2000.
144 E1010-x starts at 0x100 and ends at 0x8000. ("-x" means "more memory")
145 E2010 starts at 0x100 and ends at 0x4000.
146 E2010-x starts at 0x100 and ends at 0xffff. */
147
148static int __init do_ne_probe(struct net_device *dev)
149{
150 unsigned int base_addr = dev->base_addr;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* First check any supplied i/o locations. User knows best. <cough> */
153 if (base_addr > 0x1ff) /* Check a single specified location. */
154 return ne_probe1(dev, base_addr);
155 else if (base_addr != 0) /* Don't probe at all. */
156 return -ENXIO;
157
158 return -ENODEV;
159}
160
161static void cleanup_card(struct net_device *dev)
162{
163 free_irq(dev->irq, dev);
164 release_region(dev->base_addr, NE_IO_EXTENT);
165}
166
167#ifndef MODULE
168struct net_device * __init ne_probe(int unit)
169{
Al Viro3470cb12006-10-10 00:19:36 +0100170 struct net_device *dev = ____alloc_ei_netdev(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int err;
172
173 if (!dev)
174 return ERR_PTR(-ENOMEM);
175
176 if (init_dev(dev))
177 return ERR_PTR(-ENODEV);
178
179 sprintf(dev->name, "eth%d", unit);
180 netdev_boot_setup_check(dev);
181
182 err = init_reg_offset(dev, dev->base_addr);
183 if (err)
184 goto out;
185
186 err = do_ne_probe(dev);
187 if (err)
188 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190out:
191 free_netdev(dev);
192 return ERR_PTR(err);
193}
194#endif
195
196static int __init ne_probe1(struct net_device *dev, int ioaddr)
197{
198 int i;
199 unsigned char SA_prom[16];
200 int wordlength = 2;
201 const char *name = NULL;
202 int start_page, stop_page;
203 int reg0, ret;
204 static unsigned version_printed;
205 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
206 unsigned char bus_width;
207
208 if (!request_region(ioaddr, NE_IO_EXTENT, DRV_NAME))
209 return -EBUSY;
210
211 reg0 = inb_p(ioaddr);
212 if (reg0 == 0xFF) {
213 ret = -ENODEV;
214 goto err_out;
215 }
216
217 /* Do a preliminary verification that we have a 8390. */
218 {
219 int regd;
220 outb_p(E8390_NODMA+E8390_PAGE1+E8390_STOP, ioaddr + E8390_CMD);
221 regd = inb_p(ioaddr + EI_SHIFT(0x0d));
222 outb_p(0xff, ioaddr + EI_SHIFT(0x0d));
223 outb_p(E8390_NODMA+E8390_PAGE0, ioaddr + E8390_CMD);
224 inb_p(ioaddr + EN0_COUNTER0); /* Clear the counter by reading. */
225 if (inb_p(ioaddr + EN0_COUNTER0) != 0) {
226 outb_p(reg0, ioaddr + EI_SHIFT(0));
227 outb_p(regd, ioaddr + EI_SHIFT(0x0d)); /* Restore the old values. */
228 ret = -ENODEV;
229 goto err_out;
230 }
231 }
232
233 if (ei_debug && version_printed++ == 0)
234 printk(KERN_INFO "%s", version1);
235
236 printk(KERN_INFO "NE*000 ethercard probe at %08x:", ioaddr);
237
238 /* Read the 16 bytes of station address PROM.
239 We must first initialize registers, similar to NS8390_init(eifdev, 0).
240 We can't reliably read the SAPROM address without this.
241 (I learned the hard way!). */
242 {
243 struct {unsigned char value, offset; } program_seq[] =
244 {
245 {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, /* Select page 0*/
246 {0x48, EN0_DCFG}, /* Set byte-wide (0x48) access. */
247 {0x00, EN0_RCNTLO}, /* Clear the count regs. */
248 {0x00, EN0_RCNTHI},
249 {0x00, EN0_IMR}, /* Mask completion irq. */
250 {0xFF, EN0_ISR},
251 {E8390_RXOFF, EN0_RXCR}, /* 0x20 Set to monitor */
252 {E8390_TXOFF, EN0_TXCR}, /* 0x02 and loopback mode. */
253 {32, EN0_RCNTLO},
254 {0x00, EN0_RCNTHI},
255 {0x00, EN0_RSARLO}, /* DMA starting at 0x0000. */
256 {0x00, EN0_RSARHI},
257 {E8390_RREAD+E8390_START, E8390_CMD},
258 };
259
Denis Chengff8ac602007-09-02 18:30:18 +0800260 for (i = 0; i < ARRAY_SIZE(program_seq); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 outb_p(program_seq[i].value, ioaddr + program_seq[i].offset);
262
263 }
264 bus_width = *(volatile unsigned char *)ABWCR;
265 bus_width &= 1 << ((ioaddr >> 21) & 7);
266 ei_status.word16 = (bus_width == 0); /* temporary setting */
267 for(i = 0; i < 16 /*sizeof(SA_prom)*/; i++) {
268 SA_prom[i] = inb_p(ioaddr + NE_DATAPORT);
269 inb_p(ioaddr + NE_DATAPORT); /* dummy read */
270 }
271
272 start_page = NESM_START_PG;
273 stop_page = NESM_STOP_PG;
274
275 if (bus_width)
276 wordlength = 1;
277 else
278 outb_p(0x49, ioaddr + EN0_DCFG);
279
280 /* Set up the rest of the parameters. */
281 name = (wordlength == 2) ? "NE2000" : "NE1000";
282
283 if (! dev->irq) {
284 printk(" failed to detect IRQ line.\n");
285 ret = -EAGAIN;
286 goto err_out;
287 }
288
289 /* Snarf the interrupt now. There's no point in waiting since we cannot
290 share and the board will usually be enabled. */
Al Viro3470cb12006-10-10 00:19:36 +0100291 ret = request_irq(dev->irq, __ei_interrupt, 0, name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (ret) {
293 printk (" unable to get IRQ %d (errno=%d).\n", dev->irq, ret);
294 goto err_out;
295 }
296
297 dev->base_addr = ioaddr;
298
Joe Perches0795af52007-10-03 17:59:30 -0700299 for(i = 0; i < ETHER_ADDR_LEN; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 dev->dev_addr[i] = SA_prom[i];
Johannes Berge1749612008-10-27 15:59:26 -0700301 printk(" %pM\n", dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Joe Perches0795af52007-10-03 17:59:30 -0700303 printk("%s: %s found at %#x, using IRQ %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 dev->name, name, ioaddr, dev->irq);
305
306 ei_status.name = name;
307 ei_status.tx_start_page = start_page;
308 ei_status.stop_page = stop_page;
309 ei_status.word16 = (wordlength == 2);
310
311 ei_status.rx_start_page = start_page + TX_PAGES;
312#ifdef PACKETBUF_MEMSIZE
313 /* Allow the packet buffer size to be overridden by know-it-alls. */
314 ei_status.stop_page = ei_status.tx_start_page + PACKETBUF_MEMSIZE;
315#endif
316
317 ei_status.reset_8390 = &ne_reset_8390;
318 ei_status.block_input = &ne_block_input;
319 ei_status.block_output = &ne_block_output;
320 ei_status.get_8390_hdr = &ne_get_8390_hdr;
321 ei_status.priv = 0;
322 dev->open = &ne_open;
323 dev->stop = &ne_close;
324#ifdef CONFIG_NET_POLL_CONTROLLER
Al Viro3470cb12006-10-10 00:19:36 +0100325 dev->poll_controller = __ei_poll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#endif
Al Viro3470cb12006-10-10 00:19:36 +0100327 __NS8390_init(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
b1fc5502005-05-12 20:11:55 -0400329 ret = register_netdev(dev);
330 if (ret)
331 goto out_irq;
332 return 0;
333out_irq:
334 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335err_out:
336 release_region(ioaddr, NE_IO_EXTENT);
337 return ret;
338}
339
340static int ne_open(struct net_device *dev)
341{
Al Viro3470cb12006-10-10 00:19:36 +0100342 __ei_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344}
345
346static int ne_close(struct net_device *dev)
347{
348 if (ei_debug > 1)
349 printk(KERN_DEBUG "%s: Shutting down ethercard.\n", dev->name);
Al Viro3470cb12006-10-10 00:19:36 +0100350 __ei_close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return 0;
352}
353
354/* Hard reset the card. This used to pause for the same period that a
355 8390 reset command required, but that shouldn't be necessary. */
356
357static void ne_reset_8390(struct net_device *dev)
358{
359 unsigned long reset_start_time = jiffies;
360 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
361
362 if (ei_debug > 1)
363 printk(KERN_DEBUG "resetting the 8390 t=%ld...", jiffies);
364
365 /* DON'T change these to inb_p/outb_p or reset will fail on clones. */
366 outb(inb(NE_BASE + NE_RESET), NE_BASE + NE_RESET);
367
368 ei_status.txing = 0;
369 ei_status.dmaing = 0;
370
371 /* This check _should_not_ be necessary, omit eventually. */
372 while ((inb_p(NE_BASE+EN0_ISR) & ENISR_RESET) == 0)
Marcelo Feitoza Parisiff5688a2006-01-09 18:37:15 -0800373 if (time_after(jiffies, reset_start_time + 2*HZ/100)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 printk(KERN_WARNING "%s: ne_reset_8390() did not complete.\n", dev->name);
375 break;
376 }
377 outb_p(ENISR_RESET, NE_BASE + EN0_ISR); /* Ack intr. */
378}
379
380/* Grab the 8390 specific header. Similar to the block_input routine, but
381 we don't need to be concerned with ring wrap as the header will be at
382 the start of a page, so we optimize accordingly. */
383
384static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
385{
386 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
387 /* This *shouldn't* happen. If it does, it's the last thing you'll see */
388
389 if (ei_status.dmaing)
390 {
391 printk(KERN_EMERG "%s: DMAing conflict in ne_get_8390_hdr "
392 "[DMAstat:%d][irqlock:%d].\n",
393 dev->name, ei_status.dmaing, ei_status.irqlock);
394 return;
395 }
396
397 ei_status.dmaing |= 0x01;
398 outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, NE_BASE + NE_CMD);
399 outb_p(sizeof(struct e8390_pkt_hdr), NE_BASE + EN0_RCNTLO);
400 outb_p(0, NE_BASE + EN0_RCNTHI);
401 outb_p(0, NE_BASE + EN0_RSARLO); /* On page boundary */
402 outb_p(ring_page, NE_BASE + EN0_RSARHI);
403 outb_p(E8390_RREAD+E8390_START, NE_BASE + NE_CMD);
404
405 if (ei_status.word16) {
406 int len;
407 unsigned short *p = (unsigned short *)hdr;
408 for (len = sizeof(struct e8390_pkt_hdr)>>1; len > 0; len--)
409 *p++ = inw(NE_BASE + NE_DATAPORT);
410 } else
411 insb(NE_BASE + NE_DATAPORT, hdr, sizeof(struct e8390_pkt_hdr));
412
413 outb_p(ENISR_RDC, NE_BASE + EN0_ISR); /* Ack intr. */
414 ei_status.dmaing &= ~0x01;
415
416 le16_to_cpus(&hdr->count);
417}
418
419/* Block input and output, similar to the Crynwr packet driver. If you
420 are porting to a new ethercard, look at the packet driver source for hints.
421 The NEx000 doesn't share the on-board packet memory -- you have to put
422 the packet out through the "remote DMA" dataport using outb. */
423
424static void ne_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
425{
426 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
427#ifdef NE_SANITY_CHECK
428 int xfer_count = count;
429#endif
430 char *buf = skb->data;
431
432 /* This *shouldn't* happen. If it does, it's the last thing you'll see */
433 if (ei_status.dmaing)
434 {
435 printk(KERN_EMERG "%s: DMAing conflict in ne_block_input "
436 "[DMAstat:%d][irqlock:%d].\n",
437 dev->name, ei_status.dmaing, ei_status.irqlock);
438 return;
439 }
440 ei_status.dmaing |= 0x01;
441 outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, NE_BASE + NE_CMD);
442 outb_p(count & 0xff, NE_BASE + EN0_RCNTLO);
443 outb_p(count >> 8, NE_BASE + EN0_RCNTHI);
444 outb_p(ring_offset & 0xff, NE_BASE + EN0_RSARLO);
445 outb_p(ring_offset >> 8, NE_BASE + EN0_RSARHI);
446 outb_p(E8390_RREAD+E8390_START, NE_BASE + NE_CMD);
447 if (ei_status.word16)
448 {
449 int len;
450 unsigned short *p = (unsigned short *)buf;
451 for (len = count>>1; len > 0; len--)
452 *p++ = inw(NE_BASE + NE_DATAPORT);
453 if (count & 0x01)
454 {
455 buf[count-1] = inb(NE_BASE + NE_DATAPORT);
456#ifdef NE_SANITY_CHECK
457 xfer_count++;
458#endif
459 }
460 } else {
461 insb(NE_BASE + NE_DATAPORT, buf, count);
462 }
463
464#ifdef NE_SANITY_CHECK
465 /* This was for the ALPHA version only, but enough people have
466 been encountering problems so it is still here. If you see
467 this message you either 1) have a slightly incompatible clone
468 or 2) have noise/speed problems with your bus. */
469
470 if (ei_debug > 1)
471 {
472 /* DMA termination address check... */
473 int addr, tries = 20;
474 do {
475 /* DON'T check for 'inb_p(EN0_ISR) & ENISR_RDC' here
476 -- it's broken for Rx on some cards! */
477 int high = inb_p(NE_BASE + EN0_RSARHI);
478 int low = inb_p(NE_BASE + EN0_RSARLO);
479 addr = (high << 8) + low;
480 if (((ring_offset + xfer_count) & 0xff) == low)
481 break;
482 } while (--tries > 0);
483 if (tries <= 0)
484 printk(KERN_WARNING "%s: RX transfer address mismatch,"
485 "%#4.4x (expected) vs. %#4.4x (actual).\n",
486 dev->name, ring_offset + xfer_count, addr);
487 }
488#endif
489 outb_p(ENISR_RDC, NE_BASE + EN0_ISR); /* Ack intr. */
490 ei_status.dmaing &= ~0x01;
491}
492
493static void ne_block_output(struct net_device *dev, int count,
494 const unsigned char *buf, const int start_page)
495{
496 struct ei_device *ei_local = (struct ei_device *) netdev_priv(dev);
497 unsigned long dma_start;
498#ifdef NE_SANITY_CHECK
499 int retries = 0;
500#endif
501
502 /* Round the count up for word writes. Do we need to do this?
503 What effect will an odd byte count have on the 8390?
504 I should check someday. */
505
506 if (ei_status.word16 && (count & 0x01))
507 count++;
508
509 /* This *shouldn't* happen. If it does, it's the last thing you'll see */
510 if (ei_status.dmaing)
511 {
512 printk(KERN_EMERG "%s: DMAing conflict in ne_block_output."
513 "[DMAstat:%d][irqlock:%d]\n",
514 dev->name, ei_status.dmaing, ei_status.irqlock);
515 return;
516 }
517 ei_status.dmaing |= 0x01;
518 /* We should already be in page 0, but to be safe... */
519 outb_p(E8390_PAGE0+E8390_START+E8390_NODMA, NE_BASE + NE_CMD);
520
521#ifdef NE_SANITY_CHECK
522retry:
523#endif
524
525#ifdef NE8390_RW_BUGFIX
526 /* Handle the read-before-write bug the same way as the
527 Crynwr packet driver -- the NatSemi method doesn't work.
528 Actually this doesn't always work either, but if you have
529 problems with your NEx000 this is better than nothing! */
530
531 outb_p(0x42, NE_BASE + EN0_RCNTLO);
532 outb_p(0x00, NE_BASE + EN0_RCNTHI);
533 outb_p(0x42, NE_BASE + EN0_RSARLO);
534 outb_p(0x00, NE_BASE + EN0_RSARHI);
535 outb_p(E8390_RREAD+E8390_START, NE_BASE + NE_CMD);
536 /* Make certain that the dummy read has occurred. */
537 udelay(6);
538#endif
539
540 outb_p(ENISR_RDC, NE_BASE + EN0_ISR);
541
542 /* Now the normal output. */
543 outb_p(count & 0xff, NE_BASE + EN0_RCNTLO);
544 outb_p(count >> 8, NE_BASE + EN0_RCNTHI);
545 outb_p(0x00, NE_BASE + EN0_RSARLO);
546 outb_p(start_page, NE_BASE + EN0_RSARHI);
547
548 outb_p(E8390_RWRITE+E8390_START, NE_BASE + NE_CMD);
549 if (ei_status.word16) {
550 int len;
551 unsigned short *p = (unsigned short *)buf;
552 for (len = count>>1; len > 0; len--)
553 outw(*p++, NE_BASE + NE_DATAPORT);
554 } else {
555 outsb(NE_BASE + NE_DATAPORT, buf, count);
556 }
557
558 dma_start = jiffies;
559
560#ifdef NE_SANITY_CHECK
561 /* This was for the ALPHA version only, but enough people have
562 been encountering problems so it is still here. */
563
564 if (ei_debug > 1)
565 {
566 /* DMA termination address check... */
567 int addr, tries = 20;
568 do {
569 int high = inb_p(NE_BASE + EN0_RSARHI);
570 int low = inb_p(NE_BASE + EN0_RSARLO);
571 addr = (high << 8) + low;
572 if ((start_page << 8) + count == addr)
573 break;
574 } while (--tries > 0);
575
576 if (tries <= 0)
577 {
578 printk(KERN_WARNING "%s: Tx packet transfer address mismatch,"
579 "%#4.4x (expected) vs. %#4.4x (actual).\n",
580 dev->name, (start_page << 8) + count, addr);
581 if (retries++ == 0)
582 goto retry;
583 }
584 }
585#endif
586
587 while ((inb_p(NE_BASE + EN0_ISR) & ENISR_RDC) == 0)
Marcelo Feitoza Parisiff5688a2006-01-09 18:37:15 -0800588 if (time_after(jiffies, dma_start + 2*HZ/100)) { /* 20ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 printk(KERN_WARNING "%s: timeout waiting for Tx RDC.\n", dev->name);
590 ne_reset_8390(dev);
Al Viro3470cb12006-10-10 00:19:36 +0100591 __NS8390_init(dev,1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593 }
594
595 outb_p(ENISR_RDC, NE_BASE + EN0_ISR); /* Ack intr. */
596 ei_status.dmaing &= ~0x01;
597 return;
598}
599
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601#ifdef MODULE
602#define MAX_NE_CARDS 1 /* Max number of NE cards per module */
603static struct net_device *dev_ne[MAX_NE_CARDS];
604static int io[MAX_NE_CARDS];
605static int irq[MAX_NE_CARDS];
606static int bad[MAX_NE_CARDS]; /* 0xbad = bad sig or no reset ack */
607
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800608module_param_array(io, int, NULL, 0);
609module_param_array(irq, int, NULL, 0);
610module_param_array(bad, int, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611MODULE_PARM_DESC(io, "I/O base address(es)");
612MODULE_PARM_DESC(irq, "IRQ number(s)");
613MODULE_DESCRIPTION("H8/300 NE2000 Ethernet driver");
614MODULE_LICENSE("GPL");
615
616/* This is set up so that no ISA autoprobe takes place. We can't guarantee
617that the ne2k probe is the last 8390 based probe to take place (as it
618is at boot) and so the probe will get confused by any other 8390 cards.
619ISA device autoprobes on a running machine are not recommended anyway. */
620
621int init_module(void)
622{
623 int this_dev, found = 0;
624 int err;
625
626 for (this_dev = 0; this_dev < MAX_NE_CARDS; this_dev++) {
Al Viro3470cb12006-10-10 00:19:36 +0100627 struct net_device *dev = ____alloc_ei_netdev(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (!dev)
629 break;
630 if (io[this_dev]) {
631 dev->irq = irq[this_dev];
632 dev->mem_end = bad[this_dev];
633 dev->base_addr = io[this_dev];
634 } else {
635 dev->base_addr = h8300_ne_base[this_dev];
636 dev->irq = h8300_ne_irq[this_dev];
637 }
638 err = init_reg_offset(dev, dev->base_addr);
639 if (!err) {
640 if (do_ne_probe(dev) == 0) {
b1fc5502005-05-12 20:11:55 -0400641 dev_ne[found++] = dev;
642 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644 }
645 free_netdev(dev);
646 if (found)
647 break;
648 if (io[this_dev] != 0)
649 printk(KERN_WARNING "ne.c: No NE*000 card found at i/o = %#x\n", dev->base_addr);
650 else
651 printk(KERN_NOTICE "ne.c: You must supply \"io=0xNNN\" value(s) for ISA cards.\n");
652 return -ENXIO;
653 }
654 if (found)
655 return 0;
656 return -ENODEV;
657}
658
659void cleanup_module(void)
660{
661 int this_dev;
662
663 for (this_dev = 0; this_dev < MAX_NE_CARDS; this_dev++) {
664 struct net_device *dev = dev_ne[this_dev];
665 if (dev) {
666 unregister_netdev(dev);
667 cleanup_card(dev);
668 free_netdev(dev);
669 }
670 }
671}
672#endif /* MODULE */