net: Remove unused parameter of xfrm_gen_index()
[linux-2.6-block.git] / drivers / net / 3c505.c
CommitLineData
1da177e4
LT
1/*
2 * Linux Ethernet device driver for the 3Com Etherlink Plus (3C505)
3 * By Craig Southeren, Juha Laiho and Philip Blundell
4 *
5 * 3c505.c This module implements an interface to the 3Com
6 * Etherlink Plus (3c505) Ethernet card. Linux device
7 * driver interface reverse engineered from the Linux 3C509
8 * device drivers. Some 3C505 information gleaned from
9 * the Crynwr packet driver. Still this driver would not
10 * be here without 3C505 technical reference provided by
11 * 3Com.
12 *
13 * $Id: 3c505.c,v 1.10 1996/04/16 13:06:27 phil Exp $
14 *
15 * Authors: Linux 3c505 device driver by
16 * Craig Southeren, <craigs@ineluki.apana.org.au>
17 * Final debugging by
18 * Andrew Tridgell, <tridge@nimbus.anu.edu.au>
19 * Auto irq/address, tuning, cleanup and v1.1.4+ kernel mods by
20 * Juha Laiho, <jlaiho@ichaos.nullnet.fi>
21 * Linux 3C509 driver by
22 * Donald Becker, <becker@super.org>
23 * (Now at <becker@scyld.com>)
24 * Crynwr packet driver by
25 * Krishnan Gopalan and Gregg Stefancik,
26 * Clemson University Engineering Computer Operations.
27 * Portions of the code have been adapted from the 3c505
28 * driver for NCSA Telnet by Bruce Orchard and later
29 * modified by Warren Van Houten and krus@diku.dk.
30 * 3C505 technical information provided by
31 * Terry Murphy, of 3Com Network Adapter Division
32 * Linux 1.3.0 changes by
33 * Alan Cox <Alan.Cox@linux.org>
34 * More debugging, DMA support, currently maintained by
35 * Philip Blundell <philb@gnu.org>
36 * Multicard/soft configurable dma channel/rev 2 hardware support
37 * by Christopher Collins <ccollins@pcug.org.au>
38 * Ethtool support (jgarzik), 11/17/2001
39 */
40
41#define DRV_NAME "3c505"
42#define DRV_VERSION "1.10a"
43
44
45/* Theory of operation:
46 *
47 * The 3c505 is quite an intelligent board. All communication with it is done
48 * by means of Primary Command Blocks (PCBs); these are transferred using PIO
49 * through the command register. The card has 256k of on-board RAM, which is
50 * used to buffer received packets. It might seem at first that more buffers
51 * are better, but in fact this isn't true. From my tests, it seems that
52 * more than about 10 buffers are unnecessary, and there is a noticeable
53 * performance hit in having more active on the card. So the majority of the
54 * card's memory isn't, in fact, used. Sadly, the card only has one transmit
55 * buffer and, short of loading our own firmware into it (which is what some
56 * drivers resort to) there's nothing we can do about this.
57 *
58 * We keep up to 4 "receive packet" commands active on the board at a time.
59 * When a packet comes in, so long as there is a receive command active, the
60 * board will send us a "packet received" PCB and then add the data for that
61 * packet to the DMA queue. If a DMA transfer is not already in progress, we
62 * set one up to start uploading the data. We have to maintain a list of
63 * backlogged receive packets, because the card may decide to tell us about
64 * a newly-arrived packet at any time, and we may not be able to start a DMA
65 * transfer immediately (ie one may already be going on). We can't NAK the
66 * PCB, because then it would throw the packet away.
67 *
68 * Trying to send a PCB to the card at the wrong moment seems to have bad
69 * effects. If we send it a transmit PCB while a receive DMA is happening,
70 * it will just NAK the PCB and so we will have wasted our time. Worse, it
71 * sometimes seems to interrupt the transfer. The majority of the low-level
72 * code is protected by one huge semaphore -- "busy" -- which is set whenever
73 * it probably isn't safe to do anything to the card. The receive routine
74 * must gain a lock on "busy" before it can start a DMA transfer, and the
75 * transmit routine must gain a lock before it sends the first PCB to the card.
76 * The send_pcb() routine also has an internal semaphore to protect it against
77 * being re-entered (which would be disastrous) -- this is needed because
78 * several things can happen asynchronously (re-priming the receiver and
79 * asking the card for statistics, for example). send_pcb() will also refuse
80 * to talk to the card at all if a DMA upload is happening. The higher-level
81 * networking code will reschedule a later retry if some part of the driver
82 * is blocked. In practice, this doesn't seem to happen very often.
83 */
84
85/* This driver may now work with revision 2.x hardware, since all the read
86 * operations on the HCR have been removed (we now keep our own softcopy).
87 * But I don't have an old card to test it on.
88 *
89 * This has had the bad effect that the autoprobe routine is now a bit
90 * less friendly to other devices. However, it was never very good.
91 * before, so I doubt it will hurt anybody.
92 */
93
94/* The driver is a mess. I took Craig's and Juha's code, and hacked it firstly
95 * to make it more reliable, and secondly to add DMA mode. Many things could
96 * probably be done better; the concurrency protection is particularly awful.
97 */
98
99#include <linux/module.h>
100#include <linux/kernel.h>
101#include <linux/string.h>
102#include <linux/interrupt.h>
103#include <linux/errno.h>
104#include <linux/in.h>
105#include <linux/slab.h>
106#include <linux/ioport.h>
107#include <linux/spinlock.h>
108#include <linux/ethtool.h>
109#include <linux/delay.h>
110#include <linux/bitops.h>
111
112#include <asm/uaccess.h>
113#include <asm/io.h>
114#include <asm/dma.h>
115
116#include <linux/netdevice.h>
117#include <linux/etherdevice.h>
118#include <linux/skbuff.h>
119#include <linux/init.h>
120
121#include "3c505.h"
122
123/*********************************************************
124 *
125 * define debug messages here as common strings to reduce space
126 *
127 *********************************************************/
128
129static const char filename[] = __FILE__;
130
131static const char timeout_msg[] = "*** timeout at %s:%s (line %d) ***\n";
132#define TIMEOUT_MSG(lineno) \
b39d66a8 133 printk(timeout_msg, filename,__func__,(lineno))
1da177e4
LT
134
135static const char invalid_pcb_msg[] =
136"*** invalid pcb length %d at %s:%s (line %d) ***\n";
137#define INVALID_PCB_MSG(len) \
b39d66a8 138 printk(invalid_pcb_msg, (len),filename,__func__,__LINE__)
1da177e4
LT
139
140static char search_msg[] __initdata = KERN_INFO "%s: Looking for 3c505 adapter at address %#x...";
141
142static char stilllooking_msg[] __initdata = "still looking...";
143
144static char found_msg[] __initdata = "found.\n";
145
146static char notfound_msg[] __initdata = "not found (reason = %d)\n";
147
148static char couldnot_msg[] __initdata = KERN_INFO "%s: 3c505 not found\n";
149
150/*********************************************************
151 *
152 * various other debug stuff
153 *
154 *********************************************************/
155
156#ifdef ELP_DEBUG
157static int elp_debug = ELP_DEBUG;
158#else
159static int elp_debug;
160#endif
161#define debug elp_debug
162
163/*
164 * 0 = no messages (well, some)
165 * 1 = messages when high level commands performed
166 * 2 = messages when low level commands performed
167 * 3 = messages when interrupts received
168 */
169
1da177e4
LT
170/*****************************************************************
171 *
172 * List of I/O-addresses we try to auto-sense
173 * Last element MUST BE 0!
174 *****************************************************************/
175
176static int addr_list[] __initdata = {0x300, 0x280, 0x310, 0};
177
178/* Dma Memory related stuff */
179
180static unsigned long dma_mem_alloc(int size)
181{
182 int order = get_order(size);
183 return __get_dma_pages(GFP_KERNEL, order);
184}
185
186
187/*****************************************************************
188 *
189 * Functions for I/O (note the inline !)
190 *
191 *****************************************************************/
192
193static inline unsigned char inb_status(unsigned int base_addr)
194{
195 return inb(base_addr + PORT_STATUS);
196}
197
198static inline int inb_command(unsigned int base_addr)
199{
200 return inb(base_addr + PORT_COMMAND);
201}
202
203static inline void outb_control(unsigned char val, struct net_device *dev)
204{
205 outb(val, dev->base_addr + PORT_CONTROL);
206 ((elp_device *)(dev->priv))->hcr_val = val;
207}
208
209#define HCR_VAL(x) (((elp_device *)((x)->priv))->hcr_val)
210
211static inline void outb_command(unsigned char val, unsigned int base_addr)
212{
213 outb(val, base_addr + PORT_COMMAND);
214}
215
216static inline unsigned int backlog_next(unsigned int n)
217{
218 return (n + 1) % BACKLOG_SIZE;
219}
220
221/*****************************************************************
222 *
223 * useful functions for accessing the adapter
224 *
225 *****************************************************************/
226
227/*
228 * use this routine when accessing the ASF bits as they are
229 * changed asynchronously by the adapter
230 */
231
232/* get adapter PCB status */
233#define GET_ASF(addr) \
234 (get_status(addr)&ASF_PCB_MASK)
235
236static inline int get_status(unsigned int base_addr)
237{
238 unsigned long timeout = jiffies + 10*HZ/100;
239 register int stat1;
240 do {
241 stat1 = inb_status(base_addr);
242 } while (stat1 != inb_status(base_addr) && time_before(jiffies, timeout));
243 if (time_after_eq(jiffies, timeout))
244 TIMEOUT_MSG(__LINE__);
245 return stat1;
246}
247
248static inline void set_hsf(struct net_device *dev, int hsf)
249{
250 elp_device *adapter = dev->priv;
251 unsigned long flags;
252
253 spin_lock_irqsave(&adapter->lock, flags);
254 outb_control((HCR_VAL(dev) & ~HSF_PCB_MASK) | hsf, dev);
255 spin_unlock_irqrestore(&adapter->lock, flags);
256}
257
df570f93 258static bool start_receive(struct net_device *, pcb_struct *);
1da177e4 259
77933d72 260static inline void adapter_reset(struct net_device *dev)
1da177e4
LT
261{
262 unsigned long timeout;
263 elp_device *adapter = dev->priv;
264 unsigned char orig_hcr = adapter->hcr_val;
265
266 outb_control(0, dev);
267
268 if (inb_status(dev->base_addr) & ACRF) {
269 do {
270 inb_command(dev->base_addr);
271 timeout = jiffies + 2*HZ/100;
272 while (time_before_eq(jiffies, timeout) && !(inb_status(dev->base_addr) & ACRF));
273 } while (inb_status(dev->base_addr) & ACRF);
274 set_hsf(dev, HSF_PCB_NAK);
275 }
276 outb_control(adapter->hcr_val | ATTN | DIR, dev);
277 mdelay(10);
278 outb_control(adapter->hcr_val & ~ATTN, dev);
279 mdelay(10);
280 outb_control(adapter->hcr_val | FLSH, dev);
281 mdelay(10);
282 outb_control(adapter->hcr_val & ~FLSH, dev);
283 mdelay(10);
284
285 outb_control(orig_hcr, dev);
286 if (!start_receive(dev, &adapter->tx_pcb))
287 printk(KERN_ERR "%s: start receive command failed \n", dev->name);
288}
289
290/* Check to make sure that a DMA transfer hasn't timed out. This should
291 * never happen in theory, but seems to occur occasionally if the card gets
292 * prodded at the wrong time.
293 */
294static inline void check_3c505_dma(struct net_device *dev)
295{
296 elp_device *adapter = dev->priv;
297 if (adapter->dmaing && time_after(jiffies, adapter->current_dma.start_time + 10)) {
298 unsigned long flags, f;
299 printk(KERN_ERR "%s: DMA %s timed out, %d bytes left\n", dev->name, adapter->current_dma.direction ? "download" : "upload", get_dma_residue(dev->dma));
300 spin_lock_irqsave(&adapter->lock, flags);
301 adapter->dmaing = 0;
302 adapter->busy = 0;
6aa20a22 303
1da177e4
LT
304 f=claim_dma_lock();
305 disable_dma(dev->dma);
306 release_dma_lock(f);
6aa20a22 307
1da177e4
LT
308 if (adapter->rx_active)
309 adapter->rx_active--;
310 outb_control(adapter->hcr_val & ~(DMAE | TCEN | DIR), dev);
311 spin_unlock_irqrestore(&adapter->lock, flags);
312 }
313}
314
315/* Primitive functions used by send_pcb() */
df570f93 316static inline bool send_pcb_slow(unsigned int base_addr, unsigned char byte)
1da177e4
LT
317{
318 unsigned long timeout;
319 outb_command(byte, base_addr);
320 for (timeout = jiffies + 5*HZ/100; time_before(jiffies, timeout);) {
321 if (inb_status(base_addr) & HCRE)
df570f93 322 return false;
1da177e4
LT
323 }
324 printk(KERN_WARNING "3c505: send_pcb_slow timed out\n");
df570f93 325 return true;
1da177e4
LT
326}
327
df570f93 328static inline bool send_pcb_fast(unsigned int base_addr, unsigned char byte)
1da177e4
LT
329{
330 unsigned int timeout;
331 outb_command(byte, base_addr);
332 for (timeout = 0; timeout < 40000; timeout++) {
333 if (inb_status(base_addr) & HCRE)
df570f93 334 return false;
1da177e4
LT
335 }
336 printk(KERN_WARNING "3c505: send_pcb_fast timed out\n");
df570f93 337 return true;
1da177e4
LT
338}
339
340/* Check to see if the receiver needs restarting, and kick it if so */
341static inline void prime_rx(struct net_device *dev)
342{
343 elp_device *adapter = dev->priv;
344 while (adapter->rx_active < ELP_RX_PCBS && netif_running(dev)) {
345 if (!start_receive(dev, &adapter->itx_pcb))
346 break;
347 }
348}
349
350/*****************************************************************
351 *
352 * send_pcb
353 * Send a PCB to the adapter.
354 *
355 * output byte to command reg --<--+
356 * wait until HCRE is non zero |
357 * loop until all bytes sent -->--+
358 * set HSF1 and HSF2 to 1
359 * output pcb length
360 * wait until ASF give ACK or NAK
361 * set HSF1 and HSF2 to 0
362 *
363 *****************************************************************/
364
365/* This can be quite slow -- the adapter is allowed to take up to 40ms
366 * to respond to the initial interrupt.
367 *
368 * We run initially with interrupts turned on, but with a semaphore set
369 * so that nobody tries to re-enter this code. Once the first byte has
370 * gone through, we turn interrupts off and then send the others (the
371 * timeout is reduced to 500us).
372 */
373
df570f93 374static bool send_pcb(struct net_device *dev, pcb_struct * pcb)
1da177e4
LT
375{
376 int i;
377 unsigned long timeout;
378 elp_device *adapter = dev->priv;
379 unsigned long flags;
380
381 check_3c505_dma(dev);
382
383 if (adapter->dmaing && adapter->current_dma.direction == 0)
df570f93 384 return false;
1da177e4
LT
385
386 /* Avoid contention */
387 if (test_and_set_bit(1, &adapter->send_pcb_semaphore)) {
388 if (elp_debug >= 3) {
389 printk(KERN_DEBUG "%s: send_pcb entered while threaded\n", dev->name);
390 }
df570f93 391 return false;
1da177e4
LT
392 }
393 /*
394 * load each byte into the command register and
395 * wait for the HCRE bit to indicate the adapter
396 * had read the byte
397 */
398 set_hsf(dev, 0);
399
400 if (send_pcb_slow(dev->base_addr, pcb->command))
401 goto abort;
402
403 spin_lock_irqsave(&adapter->lock, flags);
404
405 if (send_pcb_fast(dev->base_addr, pcb->length))
406 goto sti_abort;
407
408 for (i = 0; i < pcb->length; i++) {
409 if (send_pcb_fast(dev->base_addr, pcb->data.raw[i]))
410 goto sti_abort;
411 }
412
413 outb_control(adapter->hcr_val | 3, dev); /* signal end of PCB */
414 outb_command(2 + pcb->length, dev->base_addr);
415
416 /* now wait for the acknowledgement */
417 spin_unlock_irqrestore(&adapter->lock, flags);
418
419 for (timeout = jiffies + 5*HZ/100; time_before(jiffies, timeout);) {
420 switch (GET_ASF(dev->base_addr)) {
421 case ASF_PCB_ACK:
422 adapter->send_pcb_semaphore = 0;
df570f93 423 return true;
1da177e4
LT
424
425 case ASF_PCB_NAK:
426#ifdef ELP_DEBUG
427 printk(KERN_DEBUG "%s: send_pcb got NAK\n", dev->name);
428#endif
429 goto abort;
430 }
431 }
432
433 if (elp_debug >= 1)
434 printk(KERN_DEBUG "%s: timeout waiting for PCB acknowledge (status %02x)\n", dev->name, inb_status(dev->base_addr));
435 goto abort;
436
437 sti_abort:
438 spin_unlock_irqrestore(&adapter->lock, flags);
439 abort:
440 adapter->send_pcb_semaphore = 0;
df570f93 441 return false;
1da177e4
LT
442}
443
444
445/*****************************************************************
446 *
447 * receive_pcb
448 * Read a PCB from the adapter
449 *
450 * wait for ACRF to be non-zero ---<---+
451 * input a byte |
452 * if ASF1 and ASF2 were not both one |
453 * before byte was read, loop --->---+
454 * set HSF1 and HSF2 for ack
455 *
456 *****************************************************************/
457
df570f93 458static bool receive_pcb(struct net_device *dev, pcb_struct * pcb)
1da177e4
LT
459{
460 int i, j;
461 int total_length;
462 int stat;
463 unsigned long timeout;
464 unsigned long flags;
465
466 elp_device *adapter = dev->priv;
467
468 set_hsf(dev, 0);
469
470 /* get the command code */
471 timeout = jiffies + 2*HZ/100;
472 while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && time_before(jiffies, timeout));
473 if (time_after_eq(jiffies, timeout)) {
474 TIMEOUT_MSG(__LINE__);
df570f93 475 return false;
1da177e4
LT
476 }
477 pcb->command = inb_command(dev->base_addr);
478
479 /* read the data length */
480 timeout = jiffies + 3*HZ/100;
481 while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && time_before(jiffies, timeout));
482 if (time_after_eq(jiffies, timeout)) {
483 TIMEOUT_MSG(__LINE__);
484 printk(KERN_INFO "%s: status %02x\n", dev->name, stat);
df570f93 485 return false;
1da177e4
LT
486 }
487 pcb->length = inb_command(dev->base_addr);
488
489 if (pcb->length > MAX_PCB_DATA) {
490 INVALID_PCB_MSG(pcb->length);
491 adapter_reset(dev);
df570f93 492 return false;
1da177e4
LT
493 }
494 /* read the data */
495 spin_lock_irqsave(&adapter->lock, flags);
496 i = 0;
497 do {
498 j = 0;
499 while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && j++ < 20000);
500 pcb->data.raw[i++] = inb_command(dev->base_addr);
501 if (i > MAX_PCB_DATA)
502 INVALID_PCB_MSG(i);
503 } while ((stat & ASF_PCB_MASK) != ASF_PCB_END && j < 20000);
504 spin_unlock_irqrestore(&adapter->lock, flags);
505 if (j >= 20000) {
506 TIMEOUT_MSG(__LINE__);
df570f93 507 return false;
1da177e4
LT
508 }
509 /* woops, the last "data" byte was really the length! */
510 total_length = pcb->data.raw[--i];
511
512 /* safety check total length vs data length */
513 if (total_length != (pcb->length + 2)) {
514 if (elp_debug >= 2)
515 printk(KERN_WARNING "%s: mangled PCB received\n", dev->name);
516 set_hsf(dev, HSF_PCB_NAK);
df570f93 517 return false;
1da177e4
LT
518 }
519
520 if (pcb->command == CMD_RECEIVE_PACKET_COMPLETE) {
521 if (test_and_set_bit(0, (void *) &adapter->busy)) {
522 if (backlog_next(adapter->rx_backlog.in) == adapter->rx_backlog.out) {
523 set_hsf(dev, HSF_PCB_NAK);
524 printk(KERN_WARNING "%s: PCB rejected, transfer in progress and backlog full\n", dev->name);
525 pcb->command = 0;
df570f93 526 return true;
1da177e4
LT
527 } else {
528 pcb->command = 0xff;
529 }
530 }
531 }
532 set_hsf(dev, HSF_PCB_ACK);
df570f93 533 return true;
1da177e4
LT
534}
535
536/******************************************************
537 *
538 * queue a receive command on the adapter so we will get an
539 * interrupt when a packet is received.
540 *
541 ******************************************************/
542
df570f93 543static bool start_receive(struct net_device *dev, pcb_struct * tx_pcb)
1da177e4 544{
df570f93 545 bool status;
1da177e4
LT
546 elp_device *adapter = dev->priv;
547
548 if (elp_debug >= 3)
549 printk(KERN_DEBUG "%s: restarting receiver\n", dev->name);
550 tx_pcb->command = CMD_RECEIVE_PACKET;
551 tx_pcb->length = sizeof(struct Rcv_pkt);
552 tx_pcb->data.rcv_pkt.buf_seg
553 = tx_pcb->data.rcv_pkt.buf_ofs = 0; /* Unused */
554 tx_pcb->data.rcv_pkt.buf_len = 1600;
555 tx_pcb->data.rcv_pkt.timeout = 0; /* set timeout to zero */
556 status = send_pcb(dev, tx_pcb);
557 if (status)
558 adapter->rx_active++;
559 return status;
560}
561
562/******************************************************
563 *
564 * extract a packet from the adapter
565 * this routine is only called from within the interrupt
566 * service routine, so no cli/sti calls are needed
567 * note that the length is always assumed to be even
568 *
569 ******************************************************/
570
571static void receive_packet(struct net_device *dev, int len)
572{
573 int rlen;
574 elp_device *adapter = dev->priv;
575 void *target;
576 struct sk_buff *skb;
577 unsigned long flags;
578
579 rlen = (len + 1) & ~1;
580 skb = dev_alloc_skb(rlen + 2);
581
582 if (!skb) {
583 printk(KERN_WARNING "%s: memory squeeze, dropping packet\n", dev->name);
584 target = adapter->dma_buffer;
585 adapter->current_dma.target = NULL;
586 /* FIXME: stats */
587 return;
588 }
589
590 skb_reserve(skb, 2);
591 target = skb_put(skb, rlen);
592 if ((unsigned long)(target + rlen) >= MAX_DMA_ADDRESS) {
593 adapter->current_dma.target = target;
594 target = adapter->dma_buffer;
595 } else {
596 adapter->current_dma.target = NULL;
597 }
598
599 /* if this happens, we die */
600 if (test_and_set_bit(0, (void *) &adapter->dmaing))
601 printk(KERN_ERR "%s: rx blocked, DMA in progress, dir %d\n", dev->name, adapter->current_dma.direction);
602
1da177e4
LT
603 adapter->current_dma.direction = 0;
604 adapter->current_dma.length = rlen;
605 adapter->current_dma.skb = skb;
606 adapter->current_dma.start_time = jiffies;
607
608 outb_control(adapter->hcr_val | DIR | TCEN | DMAE, dev);
609
610 flags=claim_dma_lock();
611 disable_dma(dev->dma);
612 clear_dma_ff(dev->dma);
613 set_dma_mode(dev->dma, 0x04); /* dma read */
614 set_dma_addr(dev->dma, isa_virt_to_bus(target));
615 set_dma_count(dev->dma, rlen);
616 enable_dma(dev->dma);
617 release_dma_lock(flags);
618
619 if (elp_debug >= 3) {
620 printk(KERN_DEBUG "%s: rx DMA transfer started\n", dev->name);
621 }
622
623 if (adapter->rx_active)
624 adapter->rx_active--;
625
626 if (!adapter->busy)
627 printk(KERN_WARNING "%s: receive_packet called, busy not set.\n", dev->name);
628}
629
630/******************************************************
631 *
632 * interrupt handler
633 *
634 ******************************************************/
635
7d12e780 636static irqreturn_t elp_interrupt(int irq, void *dev_id)
1da177e4
LT
637{
638 int len;
639 int dlen;
640 int icount = 0;
641 struct net_device *dev;
642 elp_device *adapter;
643 unsigned long timeout;
644
645 dev = dev_id;
646 adapter = (elp_device *) dev->priv;
6aa20a22 647
1da177e4
LT
648 spin_lock(&adapter->lock);
649
650 do {
651 /*
652 * has a DMA transfer finished?
653 */
654 if (inb_status(dev->base_addr) & DONE) {
655 if (!adapter->dmaing) {
656 printk(KERN_WARNING "%s: phantom DMA completed\n", dev->name);
657 }
658 if (elp_debug >= 3) {
659 printk(KERN_DEBUG "%s: %s DMA complete, status %02x\n", dev->name, adapter->current_dma.direction ? "tx" : "rx", inb_status(dev->base_addr));
660 }
661
662 outb_control(adapter->hcr_val & ~(DMAE | TCEN | DIR), dev);
663 if (adapter->current_dma.direction) {
664 dev_kfree_skb_irq(adapter->current_dma.skb);
665 } else {
666 struct sk_buff *skb = adapter->current_dma.skb;
667 if (skb) {
668 if (adapter->current_dma.target) {
669 /* have already done the skb_put() */
670 memcpy(adapter->current_dma.target, adapter->dma_buffer, adapter->current_dma.length);
671 }
672 skb->protocol = eth_type_trans(skb,dev);
ba0f6cae 673 dev->stats.rx_bytes += skb->len;
1da177e4 674 netif_rx(skb);
1da177e4
LT
675 }
676 }
677 adapter->dmaing = 0;
678 if (adapter->rx_backlog.in != adapter->rx_backlog.out) {
679 int t = adapter->rx_backlog.length[adapter->rx_backlog.out];
680 adapter->rx_backlog.out = backlog_next(adapter->rx_backlog.out);
681 if (elp_debug >= 2)
682 printk(KERN_DEBUG "%s: receiving backlogged packet (%d)\n", dev->name, t);
683 receive_packet(dev, t);
684 } else {
685 adapter->busy = 0;
686 }
687 } else {
688 /* has one timed out? */
689 check_3c505_dma(dev);
690 }
691
692 /*
693 * receive a PCB from the adapter
694 */
695 timeout = jiffies + 3*HZ/100;
696 while ((inb_status(dev->base_addr) & ACRF) != 0 && time_before(jiffies, timeout)) {
697 if (receive_pcb(dev, &adapter->irx_pcb)) {
6aa20a22 698 switch (adapter->irx_pcb.command)
1da177e4
LT
699 {
700 case 0:
701 break;
702 /*
703 * received a packet - this must be handled fast
704 */
705 case 0xff:
706 case CMD_RECEIVE_PACKET_COMPLETE:
707 /* if the device isn't open, don't pass packets up the stack */
708 if (!netif_running(dev))
709 break;
710 len = adapter->irx_pcb.data.rcv_resp.pkt_len;
711 dlen = adapter->irx_pcb.data.rcv_resp.buf_len;
712 if (adapter->irx_pcb.data.rcv_resp.timeout != 0) {
713 printk(KERN_ERR "%s: interrupt - packet not received correctly\n", dev->name);
714 } else {
715 if (elp_debug >= 3) {
716 printk(KERN_DEBUG "%s: interrupt - packet received of length %i (%i)\n", dev->name, len, dlen);
717 }
718 if (adapter->irx_pcb.command == 0xff) {
719 if (elp_debug >= 2)
720 printk(KERN_DEBUG "%s: adding packet to backlog (len = %d)\n", dev->name, dlen);
721 adapter->rx_backlog.length[adapter->rx_backlog.in] = dlen;
722 adapter->rx_backlog.in = backlog_next(adapter->rx_backlog.in);
723 } else {
724 receive_packet(dev, dlen);
725 }
726 if (elp_debug >= 3)
727 printk(KERN_DEBUG "%s: packet received\n", dev->name);
728 }
729 break;
730
731 /*
732 * 82586 configured correctly
733 */
734 case CMD_CONFIGURE_82586_RESPONSE:
735 adapter->got[CMD_CONFIGURE_82586] = 1;
736 if (elp_debug >= 3)
737 printk(KERN_DEBUG "%s: interrupt - configure response received\n", dev->name);
738 break;
739
740 /*
741 * Adapter memory configuration
742 */
743 case CMD_CONFIGURE_ADAPTER_RESPONSE:
744 adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] = 1;
745 if (elp_debug >= 3)
746 printk(KERN_DEBUG "%s: Adapter memory configuration %s.\n", dev->name,
747 adapter->irx_pcb.data.failed ? "failed" : "succeeded");
748 break;
749
750 /*
751 * Multicast list loading
752 */
753 case CMD_LOAD_MULTICAST_RESPONSE:
754 adapter->got[CMD_LOAD_MULTICAST_LIST] = 1;
755 if (elp_debug >= 3)
756 printk(KERN_DEBUG "%s: Multicast address list loading %s.\n", dev->name,
757 adapter->irx_pcb.data.failed ? "failed" : "succeeded");
758 break;
759
760 /*
761 * Station address setting
762 */
763 case CMD_SET_ADDRESS_RESPONSE:
764 adapter->got[CMD_SET_STATION_ADDRESS] = 1;
765 if (elp_debug >= 3)
766 printk(KERN_DEBUG "%s: Ethernet address setting %s.\n", dev->name,
767 adapter->irx_pcb.data.failed ? "failed" : "succeeded");
768 break;
769
770
771 /*
772 * received board statistics
773 */
774 case CMD_NETWORK_STATISTICS_RESPONSE:
ba0f6cae
PZ
775 dev->stats.rx_packets += adapter->irx_pcb.data.netstat.tot_recv;
776 dev->stats.tx_packets += adapter->irx_pcb.data.netstat.tot_xmit;
777 dev->stats.rx_crc_errors += adapter->irx_pcb.data.netstat.err_CRC;
778 dev->stats.rx_frame_errors += adapter->irx_pcb.data.netstat.err_align;
779 dev->stats.rx_fifo_errors += adapter->irx_pcb.data.netstat.err_ovrrun;
780 dev->stats.rx_over_errors += adapter->irx_pcb.data.netstat.err_res;
1da177e4
LT
781 adapter->got[CMD_NETWORK_STATISTICS] = 1;
782 if (elp_debug >= 3)
783 printk(KERN_DEBUG "%s: interrupt - statistics response received\n", dev->name);
784 break;
785
786 /*
787 * sent a packet
788 */
789 case CMD_TRANSMIT_PACKET_COMPLETE:
790 if (elp_debug >= 3)
791 printk(KERN_DEBUG "%s: interrupt - packet sent\n", dev->name);
792 if (!netif_running(dev))
793 break;
794 switch (adapter->irx_pcb.data.xmit_resp.c_stat) {
795 case 0xffff:
ba0f6cae 796 dev->stats.tx_aborted_errors++;
1da177e4
LT
797 printk(KERN_INFO "%s: transmit timed out, network cable problem?\n", dev->name);
798 break;
799 case 0xfffe:
ba0f6cae 800 dev->stats.tx_fifo_errors++;
1da177e4
LT
801 printk(KERN_INFO "%s: transmit timed out, FIFO underrun\n", dev->name);
802 break;
803 }
804 netif_wake_queue(dev);
805 break;
806
807 /*
808 * some unknown PCB
809 */
810 default:
811 printk(KERN_DEBUG "%s: unknown PCB received - %2.2x\n", dev->name, adapter->irx_pcb.command);
812 break;
813 }
814 } else {
815 printk(KERN_WARNING "%s: failed to read PCB on interrupt\n", dev->name);
816 adapter_reset(dev);
817 }
818 }
819
820 } while (icount++ < 5 && (inb_status(dev->base_addr) & (ACRF | DONE)));
821
822 prime_rx(dev);
823
824 /*
825 * indicate no longer in interrupt routine
826 */
827 spin_unlock(&adapter->lock);
828 return IRQ_HANDLED;
829}
830
831
832/******************************************************
833 *
834 * open the board
835 *
836 ******************************************************/
837
838static int elp_open(struct net_device *dev)
839{
840 elp_device *adapter;
841 int retval;
842
843 adapter = dev->priv;
844
845 if (elp_debug >= 3)
846 printk(KERN_DEBUG "%s: request to open device\n", dev->name);
847
848 /*
849 * make sure we actually found the device
850 */
851 if (adapter == NULL) {
852 printk(KERN_ERR "%s: Opening a non-existent physical device\n", dev->name);
853 return -EAGAIN;
854 }
855 /*
856 * disable interrupts on the board
857 */
858 outb_control(0, dev);
859
860 /*
861 * clear any pending interrupts
862 */
863 inb_command(dev->base_addr);
864 adapter_reset(dev);
865
866 /*
867 * no receive PCBs active
868 */
869 adapter->rx_active = 0;
870
871 adapter->busy = 0;
872 adapter->send_pcb_semaphore = 0;
873 adapter->rx_backlog.in = 0;
874 adapter->rx_backlog.out = 0;
6aa20a22 875
1da177e4
LT
876 spin_lock_init(&adapter->lock);
877
878 /*
879 * install our interrupt service routine
880 */
881 if ((retval = request_irq(dev->irq, &elp_interrupt, 0, dev->name, dev))) {
882 printk(KERN_ERR "%s: could not allocate IRQ%d\n", dev->name, dev->irq);
883 return retval;
884 }
885 if ((retval = request_dma(dev->dma, dev->name))) {
886 free_irq(dev->irq, dev);
887 printk(KERN_ERR "%s: could not allocate DMA%d channel\n", dev->name, dev->dma);
888 return retval;
889 }
890 adapter->dma_buffer = (void *) dma_mem_alloc(DMA_BUFFER_SIZE);
891 if (!adapter->dma_buffer) {
892 printk(KERN_ERR "%s: could not allocate DMA buffer\n", dev->name);
893 free_dma(dev->dma);
894 free_irq(dev->irq, dev);
895 return -ENOMEM;
896 }
897 adapter->dmaing = 0;
898
899 /*
900 * enable interrupts on the board
901 */
902 outb_control(CMDE, dev);
903
904 /*
905 * configure adapter memory: we need 10 multicast addresses, default==0
906 */
907 if (elp_debug >= 3)
908 printk(KERN_DEBUG "%s: sending 3c505 memory configuration command\n", dev->name);
909 adapter->tx_pcb.command = CMD_CONFIGURE_ADAPTER_MEMORY;
910 adapter->tx_pcb.data.memconf.cmd_q = 10;
911 adapter->tx_pcb.data.memconf.rcv_q = 20;
912 adapter->tx_pcb.data.memconf.mcast = 10;
913 adapter->tx_pcb.data.memconf.frame = 20;
914 adapter->tx_pcb.data.memconf.rcv_b = 20;
915 adapter->tx_pcb.data.memconf.progs = 0;
916 adapter->tx_pcb.length = sizeof(struct Memconf);
917 adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] = 0;
918 if (!send_pcb(dev, &adapter->tx_pcb))
919 printk(KERN_ERR "%s: couldn't send memory configuration command\n", dev->name);
920 else {
921 unsigned long timeout = jiffies + TIMEOUT;
922 while (adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] == 0 && time_before(jiffies, timeout));
923 if (time_after_eq(jiffies, timeout))
924 TIMEOUT_MSG(__LINE__);
925 }
926
927
928 /*
929 * configure adapter to receive broadcast messages and wait for response
930 */
931 if (elp_debug >= 3)
932 printk(KERN_DEBUG "%s: sending 82586 configure command\n", dev->name);
933 adapter->tx_pcb.command = CMD_CONFIGURE_82586;
934 adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_BROAD;
935 adapter->tx_pcb.length = 2;
936 adapter->got[CMD_CONFIGURE_82586] = 0;
937 if (!send_pcb(dev, &adapter->tx_pcb))
938 printk(KERN_ERR "%s: couldn't send 82586 configure command\n", dev->name);
939 else {
940 unsigned long timeout = jiffies + TIMEOUT;
941 while (adapter->got[CMD_CONFIGURE_82586] == 0 && time_before(jiffies, timeout));
942 if (time_after_eq(jiffies, timeout))
943 TIMEOUT_MSG(__LINE__);
944 }
945
946 /* enable burst-mode DMA */
947 /* outb(0x1, dev->base_addr + PORT_AUXDMA); */
948
949 /*
950 * queue receive commands to provide buffering
951 */
952 prime_rx(dev);
953 if (elp_debug >= 3)
954 printk(KERN_DEBUG "%s: %d receive PCBs active\n", dev->name, adapter->rx_active);
955
956 /*
957 * device is now officially open!
958 */
959
960 netif_start_queue(dev);
961 return 0;
962}
963
964
965/******************************************************
966 *
967 * send a packet to the adapter
968 *
969 ******************************************************/
970
df570f93 971static bool send_packet(struct net_device *dev, struct sk_buff *skb)
1da177e4
LT
972{
973 elp_device *adapter = dev->priv;
974 unsigned long target;
975 unsigned long flags;
976
977 /*
978 * make sure the length is even and no shorter than 60 bytes
979 */
980 unsigned int nlen = (((skb->len < 60) ? 60 : skb->len) + 1) & (~1);
981
982 if (test_and_set_bit(0, (void *) &adapter->busy)) {
983 if (elp_debug >= 2)
984 printk(KERN_DEBUG "%s: transmit blocked\n", dev->name);
df570f93 985 return false;
1da177e4
LT
986 }
987
ba0f6cae 988 dev->stats.tx_bytes += nlen;
6aa20a22 989
1da177e4
LT
990 /*
991 * send the adapter a transmit packet command. Ignore segment and offset
992 * and make sure the length is even
993 */
994 adapter->tx_pcb.command = CMD_TRANSMIT_PACKET;
995 adapter->tx_pcb.length = sizeof(struct Xmit_pkt);
996 adapter->tx_pcb.data.xmit_pkt.buf_ofs
997 = adapter->tx_pcb.data.xmit_pkt.buf_seg = 0; /* Unused */
998 adapter->tx_pcb.data.xmit_pkt.pkt_len = nlen;
999
1000 if (!send_pcb(dev, &adapter->tx_pcb)) {
1001 adapter->busy = 0;
df570f93 1002 return false;
1da177e4
LT
1003 }
1004 /* if this happens, we die */
1005 if (test_and_set_bit(0, (void *) &adapter->dmaing))
1006 printk(KERN_DEBUG "%s: tx: DMA %d in progress\n", dev->name, adapter->current_dma.direction);
1007
1008 adapter->current_dma.direction = 1;
1009 adapter->current_dma.start_time = jiffies;
1010
1011 if ((unsigned long)(skb->data + nlen) >= MAX_DMA_ADDRESS || nlen != skb->len) {
d626f62b 1012 skb_copy_from_linear_data(skb, adapter->dma_buffer, nlen);
1da177e4
LT
1013 memset(adapter->dma_buffer+skb->len, 0, nlen-skb->len);
1014 target = isa_virt_to_bus(adapter->dma_buffer);
1015 }
1016 else {
1017 target = isa_virt_to_bus(skb->data);
1018 }
1019 adapter->current_dma.skb = skb;
1020
1021 flags=claim_dma_lock();
1022 disable_dma(dev->dma);
1023 clear_dma_ff(dev->dma);
1024 set_dma_mode(dev->dma, 0x48); /* dma memory -> io */
1025 set_dma_addr(dev->dma, target);
1026 set_dma_count(dev->dma, nlen);
1027 outb_control(adapter->hcr_val | DMAE | TCEN, dev);
1028 enable_dma(dev->dma);
1029 release_dma_lock(flags);
6aa20a22 1030
1da177e4
LT
1031 if (elp_debug >= 3)
1032 printk(KERN_DEBUG "%s: DMA transfer started\n", dev->name);
1033
df570f93 1034 return true;
1da177e4
LT
1035}
1036
1037/*
1038 * The upper layer thinks we timed out
1039 */
6aa20a22 1040
1da177e4
LT
1041static void elp_timeout(struct net_device *dev)
1042{
1da177e4
LT
1043 int stat;
1044
1045 stat = inb_status(dev->base_addr);
1046 printk(KERN_WARNING "%s: transmit timed out, lost %s?\n", dev->name, (stat & ACRF) ? "interrupt" : "command");
1047 if (elp_debug >= 1)
1048 printk(KERN_DEBUG "%s: status %#02x\n", dev->name, stat);
1049 dev->trans_start = jiffies;
ba0f6cae 1050 dev->stats.tx_dropped++;
1da177e4
LT
1051 netif_wake_queue(dev);
1052}
1053
1054/******************************************************
1055 *
1056 * start the transmitter
1057 * return 0 if sent OK, else return 1
1058 *
1059 ******************************************************/
1060
1061static int elp_start_xmit(struct sk_buff *skb, struct net_device *dev)
1062{
1063 unsigned long flags;
1064 elp_device *adapter = dev->priv;
6aa20a22 1065
1da177e4
LT
1066 spin_lock_irqsave(&adapter->lock, flags);
1067 check_3c505_dma(dev);
1068
1069 if (elp_debug >= 3)
1070 printk(KERN_DEBUG "%s: request to send packet of length %d\n", dev->name, (int) skb->len);
1071
1072 netif_stop_queue(dev);
6aa20a22 1073
1da177e4
LT
1074 /*
1075 * send the packet at skb->data for skb->len
1076 */
1077 if (!send_packet(dev, skb)) {
1078 if (elp_debug >= 2) {
1079 printk(KERN_DEBUG "%s: failed to transmit packet\n", dev->name);
1080 }
1081 spin_unlock_irqrestore(&adapter->lock, flags);
1082 return 1;
1083 }
1084 if (elp_debug >= 3)
1085 printk(KERN_DEBUG "%s: packet of length %d sent\n", dev->name, (int) skb->len);
1086
1087 /*
1088 * start the transmit timeout
1089 */
1090 dev->trans_start = jiffies;
1091
1092 prime_rx(dev);
1093 spin_unlock_irqrestore(&adapter->lock, flags);
1094 netif_start_queue(dev);
1095 return 0;
1096}
1097
1098/******************************************************
1099 *
1100 * return statistics on the board
1101 *
1102 ******************************************************/
1103
1104static struct net_device_stats *elp_get_stats(struct net_device *dev)
1105{
1106 elp_device *adapter = (elp_device *) dev->priv;
1107
1108 if (elp_debug >= 3)
1109 printk(KERN_DEBUG "%s: request for stats\n", dev->name);
1110
1111 /* If the device is closed, just return the latest stats we have,
1112 - we cannot ask from the adapter without interrupts */
1113 if (!netif_running(dev))
ba0f6cae 1114 return &dev->stats;
1da177e4
LT
1115
1116 /* send a get statistics command to the board */
1117 adapter->tx_pcb.command = CMD_NETWORK_STATISTICS;
1118 adapter->tx_pcb.length = 0;
1119 adapter->got[CMD_NETWORK_STATISTICS] = 0;
1120 if (!send_pcb(dev, &adapter->tx_pcb))
1121 printk(KERN_ERR "%s: couldn't send get statistics command\n", dev->name);
1122 else {
1123 unsigned long timeout = jiffies + TIMEOUT;
1124 while (adapter->got[CMD_NETWORK_STATISTICS] == 0 && time_before(jiffies, timeout));
1125 if (time_after_eq(jiffies, timeout)) {
1126 TIMEOUT_MSG(__LINE__);
ba0f6cae 1127 return &dev->stats;
1da177e4
LT
1128 }
1129 }
1130
1131 /* statistics are now up to date */
ba0f6cae 1132 return &dev->stats;
1da177e4
LT
1133}
1134
1135
1136static void netdev_get_drvinfo(struct net_device *dev,
1137 struct ethtool_drvinfo *info)
1138{
1139 strcpy(info->driver, DRV_NAME);
1140 strcpy(info->version, DRV_VERSION);
1141 sprintf(info->bus_info, "ISA 0x%lx", dev->base_addr);
1142}
1143
1144static u32 netdev_get_msglevel(struct net_device *dev)
1145{
1146 return debug;
1147}
1148
1149static void netdev_set_msglevel(struct net_device *dev, u32 level)
1150{
1151 debug = level;
1152}
1153
7282d491 1154static const struct ethtool_ops netdev_ethtool_ops = {
1da177e4
LT
1155 .get_drvinfo = netdev_get_drvinfo,
1156 .get_msglevel = netdev_get_msglevel,
1157 .set_msglevel = netdev_set_msglevel,
1158};
1159
1160/******************************************************
1161 *
1162 * close the board
1163 *
1164 ******************************************************/
1165
1166static int elp_close(struct net_device *dev)
1167{
1168 elp_device *adapter;
1169
1170 adapter = dev->priv;
1171
1172 if (elp_debug >= 3)
1173 printk(KERN_DEBUG "%s: request to close device\n", dev->name);
1174
1175 netif_stop_queue(dev);
1176
1177 /* Someone may request the device statistic information even when
1178 * the interface is closed. The following will update the statistics
1179 * structure in the driver, so we'll be able to give current statistics.
1180 */
1181 (void) elp_get_stats(dev);
1182
1183 /*
1184 * disable interrupts on the board
1185 */
1186 outb_control(0, dev);
1187
1188 /*
1189 * release the IRQ
1190 */
1191 free_irq(dev->irq, dev);
1192
1193 free_dma(dev->dma);
1194 free_pages((unsigned long) adapter->dma_buffer, get_order(DMA_BUFFER_SIZE));
1195
1196 return 0;
1197}
1198
1199
1200/************************************************************
1201 *
1202 * Set multicast list
1203 * num_addrs==0: clear mc_list
1204 * num_addrs==-1: set promiscuous mode
1205 * num_addrs>0: set mc_list
1206 *
1207 ************************************************************/
1208
1209static void elp_set_mc_list(struct net_device *dev)
1210{
1211 elp_device *adapter = (elp_device *) dev->priv;
1212 struct dev_mc_list *dmi = dev->mc_list;
1213 int i;
1214 unsigned long flags;
1215
1216 if (elp_debug >= 3)
1217 printk(KERN_DEBUG "%s: request to set multicast list\n", dev->name);
1218
1219 spin_lock_irqsave(&adapter->lock, flags);
6aa20a22 1220
1da177e4
LT
1221 if (!(dev->flags & (IFF_PROMISC | IFF_ALLMULTI))) {
1222 /* send a "load multicast list" command to the board, max 10 addrs/cmd */
1223 /* if num_addrs==0 the list will be cleared */
1224 adapter->tx_pcb.command = CMD_LOAD_MULTICAST_LIST;
1225 adapter->tx_pcb.length = 6 * dev->mc_count;
1226 for (i = 0; i < dev->mc_count; i++) {
1227 memcpy(adapter->tx_pcb.data.multicast[i], dmi->dmi_addr, 6);
1228 dmi = dmi->next;
1229 }
1230 adapter->got[CMD_LOAD_MULTICAST_LIST] = 0;
1231 if (!send_pcb(dev, &adapter->tx_pcb))
1232 printk(KERN_ERR "%s: couldn't send set_multicast command\n", dev->name);
1233 else {
1234 unsigned long timeout = jiffies + TIMEOUT;
1235 while (adapter->got[CMD_LOAD_MULTICAST_LIST] == 0 && time_before(jiffies, timeout));
1236 if (time_after_eq(jiffies, timeout)) {
1237 TIMEOUT_MSG(__LINE__);
1238 }
1239 }
1240 if (dev->mc_count)
1241 adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_BROAD | RECV_MULTI;
1242 else /* num_addrs == 0 */
1243 adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_BROAD;
1244 } else
1245 adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_PROMISC;
1246 /*
1247 * configure adapter to receive messages (as specified above)
1248 * and wait for response
1249 */
1250 if (elp_debug >= 3)
1251 printk(KERN_DEBUG "%s: sending 82586 configure command\n", dev->name);
1252 adapter->tx_pcb.command = CMD_CONFIGURE_82586;
1253 adapter->tx_pcb.length = 2;
1254 adapter->got[CMD_CONFIGURE_82586] = 0;
1255 if (!send_pcb(dev, &adapter->tx_pcb))
1256 {
1257 spin_unlock_irqrestore(&adapter->lock, flags);
1258 printk(KERN_ERR "%s: couldn't send 82586 configure command\n", dev->name);
1259 }
1260 else {
1261 unsigned long timeout = jiffies + TIMEOUT;
1262 spin_unlock_irqrestore(&adapter->lock, flags);
1263 while (adapter->got[CMD_CONFIGURE_82586] == 0 && time_before(jiffies, timeout));
1264 if (time_after_eq(jiffies, timeout))
1265 TIMEOUT_MSG(__LINE__);
1266 }
1267}
1268
1269/************************************************************
1270 *
1271 * A couple of tests to see if there's 3C505 or not
1272 * Called only by elp_autodetect
1273 ************************************************************/
1274
1275static int __init elp_sense(struct net_device *dev)
1276{
1277 int addr = dev->base_addr;
1278 const char *name = dev->name;
1279 byte orig_HSR;
1280
1281 if (!request_region(addr, ELP_IO_EXTENT, "3c505"))
1282 return -ENODEV;
1283
1284 orig_HSR = inb_status(addr);
1285
1286 if (elp_debug > 0)
1287 printk(search_msg, name, addr);
1288
1289 if (orig_HSR == 0xff) {
1290 if (elp_debug > 0)
1291 printk(notfound_msg, 1);
1292 goto out;
1293 }
1294
1295 /* Wait for a while; the adapter may still be booting up */
1296 if (elp_debug > 0)
1297 printk(stilllooking_msg);
1298
1299 if (orig_HSR & DIR) {
1300 /* If HCR.DIR is up, we pull it down. HSR.DIR should follow. */
1301 outb(0, dev->base_addr + PORT_CONTROL);
c56943e6 1302 msleep(300);
1da177e4
LT
1303 if (inb_status(addr) & DIR) {
1304 if (elp_debug > 0)
1305 printk(notfound_msg, 2);
1306 goto out;
1307 }
1308 } else {
1309 /* If HCR.DIR is down, we pull it up. HSR.DIR should follow. */
1310 outb(DIR, dev->base_addr + PORT_CONTROL);
c56943e6 1311 msleep(300);
1da177e4
LT
1312 if (!(inb_status(addr) & DIR)) {
1313 if (elp_debug > 0)
1314 printk(notfound_msg, 3);
1315 goto out;
1316 }
1317 }
1318 /*
1319 * It certainly looks like a 3c505.
1320 */
1321 if (elp_debug > 0)
1322 printk(found_msg);
1323
1324 return 0;
1325out:
1326 release_region(addr, ELP_IO_EXTENT);
1327 return -ENODEV;
1328}
1329
1330/*************************************************************
1331 *
1332 * Search through addr_list[] and try to find a 3C505
1333 * Called only by eplus_probe
1334 *************************************************************/
1335
1336static int __init elp_autodetect(struct net_device *dev)
1337{
1338 int idx = 0;
1339
1340 /* if base address set, then only check that address
1341 otherwise, run through the table */
1342 if (dev->base_addr != 0) { /* dev->base_addr == 0 ==> plain autodetect */
1343 if (elp_sense(dev) == 0)
1344 return dev->base_addr;
1345 } else
1346 while ((dev->base_addr = addr_list[idx++])) {
1347 if (elp_sense(dev) == 0)
1348 return dev->base_addr;
1349 }
1350
1351 /* could not find an adapter */
1352 if (elp_debug > 0)
1353 printk(couldnot_msg, dev->name);
1354
1355 return 0; /* Because of this, the layer above will return -ENODEV */
1356}
1357
1358
1359/******************************************************
1360 *
1361 * probe for an Etherlink Plus board at the specified address
1362 *
1363 ******************************************************/
1364
1365/* There are three situations we need to be able to detect here:
1366
1367 * a) the card is idle
1368 * b) the card is still booting up
1369 * c) the card is stuck in a strange state (some DOS drivers do this)
1370 *
1371 * In case (a), all is well. In case (b), we wait 10 seconds to see if the
1372 * card finishes booting, and carry on if so. In case (c), we do a hard reset,
1373 * loop round, and hope for the best.
1374 *
1375 * This is all very unpleasant, but hopefully avoids the problems with the old
1376 * probe code (which had a 15-second delay if the card was idle, and didn't
1377 * work at all if it was in a weird state).
1378 */
1379
1380static int __init elplus_setup(struct net_device *dev)
1381{
1382 elp_device *adapter = dev->priv;
1383 int i, tries, tries1, okay;
1384 unsigned long timeout;
1385 unsigned long cookie = 0;
1386 int err = -ENODEV;
1387
1da177e4
LT
1388 /*
1389 * setup adapter structure
1390 */
1391
1392 dev->base_addr = elp_autodetect(dev);
1393 if (!dev->base_addr)
1394 return -ENODEV;
1395
1396 adapter->send_pcb_semaphore = 0;
1397
1398 for (tries1 = 0; tries1 < 3; tries1++) {
1399 outb_control((adapter->hcr_val | CMDE) & ~DIR, dev);
1400 /* First try to write just one byte, to see if the card is
1401 * responding at all normally.
1402 */
1403 timeout = jiffies + 5*HZ/100;
1404 okay = 0;
1405 while (time_before(jiffies, timeout) && !(inb_status(dev->base_addr) & HCRE));
1406 if ((inb_status(dev->base_addr) & HCRE)) {
1407 outb_command(0, dev->base_addr); /* send a spurious byte */
1408 timeout = jiffies + 5*HZ/100;
1409 while (time_before(jiffies, timeout) && !(inb_status(dev->base_addr) & HCRE));
1410 if (inb_status(dev->base_addr) & HCRE)
1411 okay = 1;
1412 }
1413 if (!okay) {
1414 /* Nope, it's ignoring the command register. This means that
1415 * either it's still booting up, or it's died.
1416 */
1417 printk(KERN_ERR "%s: command register wouldn't drain, ", dev->name);
1418 if ((inb_status(dev->base_addr) & 7) == 3) {
1419 /* If the adapter status is 3, it *could* still be booting.
1420 * Give it the benefit of the doubt for 10 seconds.
1421 */
1422 printk("assuming 3c505 still starting\n");
1423 timeout = jiffies + 10*HZ;
1424 while (time_before(jiffies, timeout) && (inb_status(dev->base_addr) & 7));
1425 if (inb_status(dev->base_addr) & 7) {
1426 printk(KERN_ERR "%s: 3c505 failed to start\n", dev->name);
1427 } else {
1428 okay = 1; /* It started */
1429 }
1430 } else {
1431 /* Otherwise, it must just be in a strange
1432 * state. We probably need to kick it.
1433 */
1434 printk("3c505 is sulking\n");
1435 }
1436 }
1437 for (tries = 0; tries < 5 && okay; tries++) {
1438
1439 /*
1440 * Try to set the Ethernet address, to make sure that the board
1441 * is working.
1442 */
1443 adapter->tx_pcb.command = CMD_STATION_ADDRESS;
1444 adapter->tx_pcb.length = 0;
1445 cookie = probe_irq_on();
1446 if (!send_pcb(dev, &adapter->tx_pcb)) {
1447 printk(KERN_ERR "%s: could not send first PCB\n", dev->name);
1448 probe_irq_off(cookie);
1449 continue;
1450 }
1451 if (!receive_pcb(dev, &adapter->rx_pcb)) {
1452 printk(KERN_ERR "%s: could not read first PCB\n", dev->name);
1453 probe_irq_off(cookie);
1454 continue;
1455 }
1456 if ((adapter->rx_pcb.command != CMD_ADDRESS_RESPONSE) ||
1457 (adapter->rx_pcb.length != 6)) {
1458 printk(KERN_ERR "%s: first PCB wrong (%d, %d)\n", dev->name, adapter->rx_pcb.command, adapter->rx_pcb.length);
1459 probe_irq_off(cookie);
1460 continue;
1461 }
1462 goto okay;
1463 }
1464 /* It's broken. Do a hard reset to re-initialise the board,
1465 * and try again.
1466 */
1467 printk(KERN_INFO "%s: resetting adapter\n", dev->name);
1468 outb_control(adapter->hcr_val | FLSH | ATTN, dev);
1469 outb_control(adapter->hcr_val & ~(FLSH | ATTN), dev);
1470 }
1471 printk(KERN_ERR "%s: failed to initialise 3c505\n", dev->name);
1472 goto out;
1473
1474 okay:
1475 if (dev->irq) { /* Is there a preset IRQ? */
1476 int rpt = probe_irq_off(cookie);
1477 if (dev->irq != rpt) {
1478 printk(KERN_WARNING "%s: warning, irq %d configured but %d detected\n", dev->name, dev->irq, rpt);
1479 }
1480 /* if dev->irq == probe_irq_off(cookie), all is well */
1481 } else /* No preset IRQ; just use what we can detect */
1482 dev->irq = probe_irq_off(cookie);
1483 switch (dev->irq) { /* Legal, sane? */
1484 case 0:
1485 printk(KERN_ERR "%s: IRQ probe failed: check 3c505 jumpers.\n",
1486 dev->name);
1487 goto out;
1488 case 1:
1489 case 6:
1490 case 8:
1491 case 13:
1492 printk(KERN_ERR "%s: Impossible IRQ %d reported by probe_irq_off().\n",
1493 dev->name, dev->irq);
1494 goto out;
1495 }
1496 /*
1497 * Now we have the IRQ number so we can disable the interrupts from
1498 * the board until the board is opened.
1499 */
1500 outb_control(adapter->hcr_val & ~CMDE, dev);
1501
1502 /*
1503 * copy Ethernet address into structure
1504 */
1505 for (i = 0; i < 6; i++)
1506 dev->dev_addr[i] = adapter->rx_pcb.data.eth_addr[i];
1507
1508 /* find a DMA channel */
1509 if (!dev->dma) {
1510 if (dev->mem_start) {
1511 dev->dma = dev->mem_start & 7;
1512 }
1513 else {
1514 printk(KERN_WARNING "%s: warning, DMA channel not specified, using default\n", dev->name);
1515 dev->dma = ELP_DMA;
1516 }
1517 }
1518
1519 /*
1520 * print remainder of startup message
1521 */
0795af57 1522 printk(KERN_INFO "%s: 3c505 at %#lx, irq %d, dma %d, "
e174961c 1523 "addr %pM, ",
0795af57 1524 dev->name, dev->base_addr, dev->irq, dev->dma,
e174961c 1525 dev->dev_addr);
1da177e4
LT
1526
1527 /*
1528 * read more information from the adapter
1529 */
1530
1531 adapter->tx_pcb.command = CMD_ADAPTER_INFO;
1532 adapter->tx_pcb.length = 0;
1533 if (!send_pcb(dev, &adapter->tx_pcb) ||
1534 !receive_pcb(dev, &adapter->rx_pcb) ||
1535 (adapter->rx_pcb.command != CMD_ADAPTER_INFO_RESPONSE) ||
1536 (adapter->rx_pcb.length != 10)) {
1537 printk("not responding to second PCB\n");
1538 }
1539 printk("rev %d.%d, %dk\n", adapter->rx_pcb.data.info.major_vers, adapter->rx_pcb.data.info.minor_vers, adapter->rx_pcb.data.info.RAM_sz);
1540
1541 /*
1542 * reconfigure the adapter memory to better suit our purposes
1543 */
1544 adapter->tx_pcb.command = CMD_CONFIGURE_ADAPTER_MEMORY;
1545 adapter->tx_pcb.length = 12;
1546 adapter->tx_pcb.data.memconf.cmd_q = 8;
1547 adapter->tx_pcb.data.memconf.rcv_q = 8;
1548 adapter->tx_pcb.data.memconf.mcast = 10;
1549 adapter->tx_pcb.data.memconf.frame = 10;
1550 adapter->tx_pcb.data.memconf.rcv_b = 10;
1551 adapter->tx_pcb.data.memconf.progs = 0;
1552 if (!send_pcb(dev, &adapter->tx_pcb) ||
1553 !receive_pcb(dev, &adapter->rx_pcb) ||
1554 (adapter->rx_pcb.command != CMD_CONFIGURE_ADAPTER_RESPONSE) ||
1555 (adapter->rx_pcb.length != 2)) {
1556 printk(KERN_ERR "%s: could not configure adapter memory\n", dev->name);
1557 }
1558 if (adapter->rx_pcb.data.configure) {
1559 printk(KERN_ERR "%s: adapter configuration failed\n", dev->name);
1560 }
1561
1562 dev->open = elp_open; /* local */
1563 dev->stop = elp_close; /* local */
1564 dev->get_stats = elp_get_stats; /* local */
1565 dev->hard_start_xmit = elp_start_xmit; /* local */
1566 dev->tx_timeout = elp_timeout; /* local */
1567 dev->watchdog_timeo = 10*HZ;
1568 dev->set_multicast_list = elp_set_mc_list; /* local */
1569 dev->ethtool_ops = &netdev_ethtool_ops; /* local */
1570
1da177e4
LT
1571 dev->mem_start = dev->mem_end = 0;
1572
1573 err = register_netdev(dev);
1574 if (err)
1575 goto out;
1576
1577 return 0;
1578out:
1579 release_region(dev->base_addr, ELP_IO_EXTENT);
1580 return err;
1581}
1582
1583#ifndef MODULE
1584struct net_device * __init elplus_probe(int unit)
1585{
1586 struct net_device *dev = alloc_etherdev(sizeof(elp_device));
1587 int err;
1588 if (!dev)
1589 return ERR_PTR(-ENOMEM);
1590
1591 sprintf(dev->name, "eth%d", unit);
1592 netdev_boot_setup_check(dev);
1593
1594 err = elplus_setup(dev);
1595 if (err) {
1596 free_netdev(dev);
1597 return ERR_PTR(err);
1598 }
1599 return dev;
1600}
1601
1602#else
1603static struct net_device *dev_3c505[ELP_MAX_CARDS];
1604static int io[ELP_MAX_CARDS];
1605static int irq[ELP_MAX_CARDS];
1606static int dma[ELP_MAX_CARDS];
1607module_param_array(io, int, NULL, 0);
1608module_param_array(irq, int, NULL, 0);
1609module_param_array(dma, int, NULL, 0);
1610MODULE_PARM_DESC(io, "EtherLink Plus I/O base address(es)");
1611MODULE_PARM_DESC(irq, "EtherLink Plus IRQ number(s) (assigned)");
1612MODULE_PARM_DESC(dma, "EtherLink Plus DMA channel(s)");
1613
96e672c7 1614int __init init_module(void)
1da177e4
LT
1615{
1616 int this_dev, found = 0;
1617
1618 for (this_dev = 0; this_dev < ELP_MAX_CARDS; this_dev++) {
1619 struct net_device *dev = alloc_etherdev(sizeof(elp_device));
1620 if (!dev)
1621 break;
1622
1623 dev->irq = irq[this_dev];
1624 dev->base_addr = io[this_dev];
1625 if (dma[this_dev]) {
1626 dev->dma = dma[this_dev];
1627 } else {
1628 dev->dma = ELP_DMA;
1629 printk(KERN_WARNING "3c505.c: warning, using default DMA channel,\n");
1630 }
1631 if (io[this_dev] == 0) {
1632 if (this_dev) {
1633 free_netdev(dev);
1634 break;
1635 }
1636 printk(KERN_NOTICE "3c505.c: module autoprobe not recommended, give io=xx.\n");
1637 }
1638 if (elplus_setup(dev) != 0) {
1639 printk(KERN_WARNING "3c505.c: Failed to register card at 0x%x.\n", io[this_dev]);
1640 free_netdev(dev);
1641 break;
1642 }
1643 dev_3c505[this_dev] = dev;
1644 found++;
1645 }
1646 if (!found)
1647 return -ENODEV;
1648 return 0;
1649}
1650
afc8eb46 1651void __exit cleanup_module(void)
1da177e4
LT
1652{
1653 int this_dev;
1654
1655 for (this_dev = 0; this_dev < ELP_MAX_CARDS; this_dev++) {
1656 struct net_device *dev = dev_3c505[this_dev];
1657 if (dev) {
1658 unregister_netdev(dev);
1659 release_region(dev->base_addr, ELP_IO_EXTENT);
1660 free_netdev(dev);
1661 }
1662 }
1663}
1664
1665#endif /* MODULE */
1666MODULE_LICENSE("GPL");