2 * Linux Ethernet device driver for the 3Com Etherlink Plus (3C505)
3 * By Craig Southeren, Juha Laiho and Philip Blundell
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
13 * $Id: 3c505.c,v 1.10 1996/04/16 13:06:27 phil Exp $
15 * Authors: Linux 3c505 device driver by
16 * Craig Southeren, <craigs@ineluki.apana.org.au>
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
41 #define DRV_NAME "3c505"
42 #define DRV_VERSION "1.10a"
45 /* Theory of operation:
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.
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.
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.
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.
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.
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.
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/ioport.h>
106 #include <linux/spinlock.h>
107 #include <linux/ethtool.h>
108 #include <linux/delay.h>
109 #include <linux/bitops.h>
110 #include <linux/gfp.h>
112 #include <asm/uaccess.h>
116 #include <linux/netdevice.h>
117 #include <linux/etherdevice.h>
118 #include <linux/skbuff.h>
119 #include <linux/init.h>
123 /*********************************************************
125 * define debug messages here as common strings to reduce space
127 *********************************************************/
129 #define timeout_msg "*** timeout at %s:%s (line %d) ***\n"
130 #define TIMEOUT_MSG(lineno) \
131 pr_notice(timeout_msg, __FILE__, __func__, (lineno))
133 #define invalid_pcb_msg "*** invalid pcb length %d at %s:%s (line %d) ***\n"
134 #define INVALID_PCB_MSG(len) \
135 pr_notice(invalid_pcb_msg, (len), __FILE__, __func__, __LINE__)
137 #define search_msg "%s: Looking for 3c505 adapter at address %#x..."
139 #define stilllooking_msg "still looking..."
141 #define found_msg "found.\n"
143 #define notfound_msg "not found (reason = %d)\n"
145 #define couldnot_msg "%s: 3c505 not found\n"
147 /*********************************************************
149 * various other debug stuff
151 *********************************************************/
154 static int elp_debug
= ELP_DEBUG
;
156 static int elp_debug
;
158 #define debug elp_debug
161 * 0 = no messages (well, some)
162 * 1 = messages when high level commands performed
163 * 2 = messages when low level commands performed
164 * 3 = messages when interrupts received
167 /*****************************************************************
169 * List of I/O-addresses we try to auto-sense
170 * Last element MUST BE 0!
171 *****************************************************************/
173 static int addr_list
[] __initdata
= {0x300, 0x280, 0x310, 0};
175 /* Dma Memory related stuff */
177 static unsigned long dma_mem_alloc(int size
)
179 int order
= get_order(size
);
180 return __get_dma_pages(GFP_KERNEL
, order
);
184 /*****************************************************************
186 * Functions for I/O (note the inline !)
188 *****************************************************************/
190 static inline unsigned char inb_status(unsigned int base_addr
)
192 return inb(base_addr
+ PORT_STATUS
);
195 static inline int inb_command(unsigned int base_addr
)
197 return inb(base_addr
+ PORT_COMMAND
);
200 static inline void outb_control(unsigned char val
, struct net_device
*dev
)
202 outb(val
, dev
->base_addr
+ PORT_CONTROL
);
203 ((elp_device
*)(netdev_priv(dev
)))->hcr_val
= val
;
206 #define HCR_VAL(x) (((elp_device *)(netdev_priv(x)))->hcr_val)
208 static inline void outb_command(unsigned char val
, unsigned int base_addr
)
210 outb(val
, base_addr
+ PORT_COMMAND
);
213 static inline unsigned int backlog_next(unsigned int n
)
215 return (n
+ 1) % BACKLOG_SIZE
;
218 /*****************************************************************
220 * useful functions for accessing the adapter
222 *****************************************************************/
225 * use this routine when accessing the ASF bits as they are
226 * changed asynchronously by the adapter
229 /* get adapter PCB status */
230 #define GET_ASF(addr) \
231 (get_status(addr)&ASF_PCB_MASK)
233 static inline int get_status(unsigned int base_addr
)
235 unsigned long timeout
= jiffies
+ 10*HZ
/100;
238 stat1
= inb_status(base_addr
);
239 } while (stat1
!= inb_status(base_addr
) && time_before(jiffies
, timeout
));
240 if (time_after_eq(jiffies
, timeout
))
241 TIMEOUT_MSG(__LINE__
);
245 static inline void set_hsf(struct net_device
*dev
, int hsf
)
247 elp_device
*adapter
= netdev_priv(dev
);
250 spin_lock_irqsave(&adapter
->lock
, flags
);
251 outb_control((HCR_VAL(dev
) & ~HSF_PCB_MASK
) | hsf
, dev
);
252 spin_unlock_irqrestore(&adapter
->lock
, flags
);
255 static bool start_receive(struct net_device
*, pcb_struct
*);
257 static inline void adapter_reset(struct net_device
*dev
)
259 unsigned long timeout
;
260 elp_device
*adapter
= netdev_priv(dev
);
261 unsigned char orig_hcr
= adapter
->hcr_val
;
263 outb_control(0, dev
);
265 if (inb_status(dev
->base_addr
) & ACRF
) {
267 inb_command(dev
->base_addr
);
268 timeout
= jiffies
+ 2*HZ
/100;
269 while (time_before_eq(jiffies
, timeout
) && !(inb_status(dev
->base_addr
) & ACRF
));
270 } while (inb_status(dev
->base_addr
) & ACRF
);
271 set_hsf(dev
, HSF_PCB_NAK
);
273 outb_control(adapter
->hcr_val
| ATTN
| DIR, dev
);
275 outb_control(adapter
->hcr_val
& ~ATTN
, dev
);
277 outb_control(adapter
->hcr_val
| FLSH
, dev
);
279 outb_control(adapter
->hcr_val
& ~FLSH
, dev
);
282 outb_control(orig_hcr
, dev
);
283 if (!start_receive(dev
, &adapter
->tx_pcb
))
284 pr_err("%s: start receive command failed\n", dev
->name
);
287 /* Check to make sure that a DMA transfer hasn't timed out. This should
288 * never happen in theory, but seems to occur occasionally if the card gets
289 * prodded at the wrong time.
291 static inline void check_3c505_dma(struct net_device
*dev
)
293 elp_device
*adapter
= netdev_priv(dev
);
294 if (adapter
->dmaing
&& time_after(jiffies
, adapter
->current_dma
.start_time
+ 10)) {
295 unsigned long flags
, f
;
296 pr_err("%s: DMA %s timed out, %d bytes left\n", dev
->name
,
297 adapter
->current_dma
.direction
? "download" : "upload",
298 get_dma_residue(dev
->dma
));
299 spin_lock_irqsave(&adapter
->lock
, flags
);
304 disable_dma(dev
->dma
);
307 if (adapter
->rx_active
)
308 adapter
->rx_active
--;
309 outb_control(adapter
->hcr_val
& ~(DMAE
| TCEN
| DIR), dev
);
310 spin_unlock_irqrestore(&adapter
->lock
, flags
);
314 /* Primitive functions used by send_pcb() */
315 static inline bool send_pcb_slow(unsigned int base_addr
, unsigned char byte
)
317 unsigned long timeout
;
318 outb_command(byte
, base_addr
);
319 for (timeout
= jiffies
+ 5*HZ
/100; time_before(jiffies
, timeout
);) {
320 if (inb_status(base_addr
) & HCRE
)
323 pr_warning("3c505: send_pcb_slow timed out\n");
327 static inline bool send_pcb_fast(unsigned int base_addr
, unsigned char byte
)
329 unsigned int timeout
;
330 outb_command(byte
, base_addr
);
331 for (timeout
= 0; timeout
< 40000; timeout
++) {
332 if (inb_status(base_addr
) & HCRE
)
335 pr_warning("3c505: send_pcb_fast timed out\n");
339 /* Check to see if the receiver needs restarting, and kick it if so */
340 static inline void prime_rx(struct net_device
*dev
)
342 elp_device
*adapter
= netdev_priv(dev
);
343 while (adapter
->rx_active
< ELP_RX_PCBS
&& netif_running(dev
)) {
344 if (!start_receive(dev
, &adapter
->itx_pcb
))
349 /*****************************************************************
352 * Send a PCB to the adapter.
354 * output byte to command reg --<--+
355 * wait until HCRE is non zero |
356 * loop until all bytes sent -->--+
357 * set HSF1 and HSF2 to 1
359 * wait until ASF give ACK or NAK
360 * set HSF1 and HSF2 to 0
362 *****************************************************************/
364 /* This can be quite slow -- the adapter is allowed to take up to 40ms
365 * to respond to the initial interrupt.
367 * We run initially with interrupts turned on, but with a semaphore set
368 * so that nobody tries to re-enter this code. Once the first byte has
369 * gone through, we turn interrupts off and then send the others (the
370 * timeout is reduced to 500us).
373 static bool send_pcb(struct net_device
*dev
, pcb_struct
* pcb
)
376 unsigned long timeout
;
377 elp_device
*adapter
= netdev_priv(dev
);
380 check_3c505_dma(dev
);
382 if (adapter
->dmaing
&& adapter
->current_dma
.direction
== 0)
385 /* Avoid contention */
386 if (test_and_set_bit(1, &adapter
->send_pcb_semaphore
)) {
387 if (elp_debug
>= 3) {
388 pr_debug("%s: send_pcb entered while threaded\n", dev
->name
);
393 * load each byte into the command register and
394 * wait for the HCRE bit to indicate the adapter
399 if (send_pcb_slow(dev
->base_addr
, pcb
->command
))
402 spin_lock_irqsave(&adapter
->lock
, flags
);
404 if (send_pcb_fast(dev
->base_addr
, pcb
->length
))
407 for (i
= 0; i
< pcb
->length
; i
++) {
408 if (send_pcb_fast(dev
->base_addr
, pcb
->data
.raw
[i
]))
412 outb_control(adapter
->hcr_val
| 3, dev
); /* signal end of PCB */
413 outb_command(2 + pcb
->length
, dev
->base_addr
);
415 /* now wait for the acknowledgement */
416 spin_unlock_irqrestore(&adapter
->lock
, flags
);
418 for (timeout
= jiffies
+ 5*HZ
/100; time_before(jiffies
, timeout
);) {
419 switch (GET_ASF(dev
->base_addr
)) {
421 adapter
->send_pcb_semaphore
= 0;
426 pr_debug("%s: send_pcb got NAK\n", dev
->name
);
433 pr_debug("%s: timeout waiting for PCB acknowledge (status %02x)\n",
434 dev
->name
, inb_status(dev
->base_addr
));
438 spin_unlock_irqrestore(&adapter
->lock
, flags
);
440 adapter
->send_pcb_semaphore
= 0;
445 /*****************************************************************
448 * Read a PCB from the adapter
450 * wait for ACRF to be non-zero ---<---+
452 * if ASF1 and ASF2 were not both one |
453 * before byte was read, loop --->---+
454 * set HSF1 and HSF2 for ack
456 *****************************************************************/
458 static bool receive_pcb(struct net_device
*dev
, pcb_struct
* pcb
)
463 unsigned long timeout
;
466 elp_device
*adapter
= netdev_priv(dev
);
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__
);
477 pcb
->command
= inb_command(dev
->base_addr
);
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 pr_info("%s: status %02x\n", dev
->name
, stat
);
487 pcb
->length
= inb_command(dev
->base_addr
);
489 if (pcb
->length
> MAX_PCB_DATA
) {
490 INVALID_PCB_MSG(pcb
->length
);
495 spin_lock_irqsave(&adapter
->lock
, flags
);
496 for (i
= 0; i
< MAX_PCB_DATA
; i
++) {
497 for (j
= 0; j
< 20000; j
++) {
498 stat
= get_status(dev
->base_addr
);
502 pcb
->data
.raw
[i
] = inb_command(dev
->base_addr
);
503 if ((stat
& ASF_PCB_MASK
) == ASF_PCB_END
|| j
>= 20000)
506 spin_unlock_irqrestore(&adapter
->lock
, flags
);
507 if (i
>= MAX_PCB_DATA
) {
512 TIMEOUT_MSG(__LINE__
);
515 /* the last "data" byte was really the length! */
516 total_length
= pcb
->data
.raw
[i
];
518 /* safety check total length vs data length */
519 if (total_length
!= (pcb
->length
+ 2)) {
521 pr_warning("%s: mangled PCB received\n", dev
->name
);
522 set_hsf(dev
, HSF_PCB_NAK
);
526 if (pcb
->command
== CMD_RECEIVE_PACKET_COMPLETE
) {
527 if (test_and_set_bit(0, (void *) &adapter
->busy
)) {
528 if (backlog_next(adapter
->rx_backlog
.in
) == adapter
->rx_backlog
.out
) {
529 set_hsf(dev
, HSF_PCB_NAK
);
530 pr_warning("%s: PCB rejected, transfer in progress and backlog full\n", dev
->name
);
538 set_hsf(dev
, HSF_PCB_ACK
);
542 /******************************************************
544 * queue a receive command on the adapter so we will get an
545 * interrupt when a packet is received.
547 ******************************************************/
549 static bool start_receive(struct net_device
*dev
, pcb_struct
* tx_pcb
)
552 elp_device
*adapter
= netdev_priv(dev
);
555 pr_debug("%s: restarting receiver\n", dev
->name
);
556 tx_pcb
->command
= CMD_RECEIVE_PACKET
;
557 tx_pcb
->length
= sizeof(struct Rcv_pkt
);
558 tx_pcb
->data
.rcv_pkt
.buf_seg
559 = tx_pcb
->data
.rcv_pkt
.buf_ofs
= 0; /* Unused */
560 tx_pcb
->data
.rcv_pkt
.buf_len
= 1600;
561 tx_pcb
->data
.rcv_pkt
.timeout
= 0; /* set timeout to zero */
562 status
= send_pcb(dev
, tx_pcb
);
564 adapter
->rx_active
++;
568 /******************************************************
570 * extract a packet from the adapter
571 * this routine is only called from within the interrupt
572 * service routine, so no cli/sti calls are needed
573 * note that the length is always assumed to be even
575 ******************************************************/
577 static void receive_packet(struct net_device
*dev
, int len
)
580 elp_device
*adapter
= netdev_priv(dev
);
585 rlen
= (len
+ 1) & ~1;
586 skb
= dev_alloc_skb(rlen
+ 2);
589 pr_warning("%s: memory squeeze, dropping packet\n", dev
->name
);
590 target
= adapter
->dma_buffer
;
591 adapter
->current_dma
.target
= NULL
;
597 target
= skb_put(skb
, rlen
);
598 if ((unsigned long)(target
+ rlen
) >= MAX_DMA_ADDRESS
) {
599 adapter
->current_dma
.target
= target
;
600 target
= adapter
->dma_buffer
;
602 adapter
->current_dma
.target
= NULL
;
605 /* if this happens, we die */
606 if (test_and_set_bit(0, (void *) &adapter
->dmaing
))
607 pr_err("%s: rx blocked, DMA in progress, dir %d\n",
608 dev
->name
, adapter
->current_dma
.direction
);
610 adapter
->current_dma
.direction
= 0;
611 adapter
->current_dma
.length
= rlen
;
612 adapter
->current_dma
.skb
= skb
;
613 adapter
->current_dma
.start_time
= jiffies
;
615 outb_control(adapter
->hcr_val
| DIR | TCEN
| DMAE
, dev
);
617 flags
=claim_dma_lock();
618 disable_dma(dev
->dma
);
619 clear_dma_ff(dev
->dma
);
620 set_dma_mode(dev
->dma
, 0x04); /* dma read */
621 set_dma_addr(dev
->dma
, isa_virt_to_bus(target
));
622 set_dma_count(dev
->dma
, rlen
);
623 enable_dma(dev
->dma
);
624 release_dma_lock(flags
);
626 if (elp_debug
>= 3) {
627 pr_debug("%s: rx DMA transfer started\n", dev
->name
);
630 if (adapter
->rx_active
)
631 adapter
->rx_active
--;
634 pr_warning("%s: receive_packet called, busy not set.\n", dev
->name
);
637 /******************************************************
641 ******************************************************/
643 static irqreturn_t
elp_interrupt(int irq
, void *dev_id
)
648 struct net_device
*dev
= dev_id
;
649 elp_device
*adapter
= netdev_priv(dev
);
650 unsigned long timeout
;
652 spin_lock(&adapter
->lock
);
656 * has a DMA transfer finished?
658 if (inb_status(dev
->base_addr
) & DONE
) {
659 if (!adapter
->dmaing
)
660 pr_warning("%s: phantom DMA completed\n", dev
->name
);
663 pr_debug("%s: %s DMA complete, status %02x\n", dev
->name
,
664 adapter
->current_dma
.direction
? "tx" : "rx",
665 inb_status(dev
->base_addr
));
667 outb_control(adapter
->hcr_val
& ~(DMAE
| TCEN
| DIR), dev
);
668 if (adapter
->current_dma
.direction
) {
669 dev_kfree_skb_irq(adapter
->current_dma
.skb
);
671 struct sk_buff
*skb
= adapter
->current_dma
.skb
;
673 if (adapter
->current_dma
.target
) {
674 /* have already done the skb_put() */
675 memcpy(adapter
->current_dma
.target
, adapter
->dma_buffer
, adapter
->current_dma
.length
);
677 skb
->protocol
= eth_type_trans(skb
,dev
);
678 dev
->stats
.rx_bytes
+= skb
->len
;
683 if (adapter
->rx_backlog
.in
!= adapter
->rx_backlog
.out
) {
684 int t
= adapter
->rx_backlog
.length
[adapter
->rx_backlog
.out
];
685 adapter
->rx_backlog
.out
= backlog_next(adapter
->rx_backlog
.out
);
687 pr_debug("%s: receiving backlogged packet (%d)\n", dev
->name
, t
);
688 receive_packet(dev
, t
);
693 /* has one timed out? */
694 check_3c505_dma(dev
);
698 * receive a PCB from the adapter
700 timeout
= jiffies
+ 3*HZ
/100;
701 while ((inb_status(dev
->base_addr
) & ACRF
) != 0 && time_before(jiffies
, timeout
)) {
702 if (receive_pcb(dev
, &adapter
->irx_pcb
)) {
703 switch (adapter
->irx_pcb
.command
)
708 * received a packet - this must be handled fast
711 case CMD_RECEIVE_PACKET_COMPLETE
:
712 /* if the device isn't open, don't pass packets up the stack */
713 if (!netif_running(dev
))
715 len
= adapter
->irx_pcb
.data
.rcv_resp
.pkt_len
;
716 dlen
= adapter
->irx_pcb
.data
.rcv_resp
.buf_len
;
717 if (adapter
->irx_pcb
.data
.rcv_resp
.timeout
!= 0) {
718 pr_err("%s: interrupt - packet not received correctly\n", dev
->name
);
720 if (elp_debug
>= 3) {
721 pr_debug("%s: interrupt - packet received of length %i (%i)\n",
722 dev
->name
, len
, dlen
);
724 if (adapter
->irx_pcb
.command
== 0xff) {
726 pr_debug("%s: adding packet to backlog (len = %d)\n",
728 adapter
->rx_backlog
.length
[adapter
->rx_backlog
.in
] = dlen
;
729 adapter
->rx_backlog
.in
= backlog_next(adapter
->rx_backlog
.in
);
731 receive_packet(dev
, dlen
);
734 pr_debug("%s: packet received\n", dev
->name
);
739 * 82586 configured correctly
741 case CMD_CONFIGURE_82586_RESPONSE
:
742 adapter
->got
[CMD_CONFIGURE_82586
] = 1;
744 pr_debug("%s: interrupt - configure response received\n", dev
->name
);
748 * Adapter memory configuration
750 case CMD_CONFIGURE_ADAPTER_RESPONSE
:
751 adapter
->got
[CMD_CONFIGURE_ADAPTER_MEMORY
] = 1;
753 pr_debug("%s: Adapter memory configuration %s.\n", dev
->name
,
754 adapter
->irx_pcb
.data
.failed
? "failed" : "succeeded");
758 * Multicast list loading
760 case CMD_LOAD_MULTICAST_RESPONSE
:
761 adapter
->got
[CMD_LOAD_MULTICAST_LIST
] = 1;
763 pr_debug("%s: Multicast address list loading %s.\n", dev
->name
,
764 adapter
->irx_pcb
.data
.failed
? "failed" : "succeeded");
768 * Station address setting
770 case CMD_SET_ADDRESS_RESPONSE
:
771 adapter
->got
[CMD_SET_STATION_ADDRESS
] = 1;
773 pr_debug("%s: Ethernet address setting %s.\n", dev
->name
,
774 adapter
->irx_pcb
.data
.failed
? "failed" : "succeeded");
779 * received board statistics
781 case CMD_NETWORK_STATISTICS_RESPONSE
:
782 dev
->stats
.rx_packets
+= adapter
->irx_pcb
.data
.netstat
.tot_recv
;
783 dev
->stats
.tx_packets
+= adapter
->irx_pcb
.data
.netstat
.tot_xmit
;
784 dev
->stats
.rx_crc_errors
+= adapter
->irx_pcb
.data
.netstat
.err_CRC
;
785 dev
->stats
.rx_frame_errors
+= adapter
->irx_pcb
.data
.netstat
.err_align
;
786 dev
->stats
.rx_fifo_errors
+= adapter
->irx_pcb
.data
.netstat
.err_ovrrun
;
787 dev
->stats
.rx_over_errors
+= adapter
->irx_pcb
.data
.netstat
.err_res
;
788 adapter
->got
[CMD_NETWORK_STATISTICS
] = 1;
790 pr_debug("%s: interrupt - statistics response received\n", dev
->name
);
796 case CMD_TRANSMIT_PACKET_COMPLETE
:
798 pr_debug("%s: interrupt - packet sent\n", dev
->name
);
799 if (!netif_running(dev
))
801 switch (adapter
->irx_pcb
.data
.xmit_resp
.c_stat
) {
803 dev
->stats
.tx_aborted_errors
++;
804 pr_info("%s: transmit timed out, network cable problem?\n", dev
->name
);
807 dev
->stats
.tx_fifo_errors
++;
808 pr_info("%s: transmit timed out, FIFO underrun\n", dev
->name
);
811 netif_wake_queue(dev
);
818 pr_debug("%s: unknown PCB received - %2.2x\n",
819 dev
->name
, adapter
->irx_pcb
.command
);
823 pr_warning("%s: failed to read PCB on interrupt\n", dev
->name
);
828 } while (icount
++ < 5 && (inb_status(dev
->base_addr
) & (ACRF
| DONE
)));
833 * indicate no longer in interrupt routine
835 spin_unlock(&adapter
->lock
);
840 /******************************************************
844 ******************************************************/
846 static int elp_open(struct net_device
*dev
)
848 elp_device
*adapter
= netdev_priv(dev
);
852 pr_debug("%s: request to open device\n", dev
->name
);
855 * make sure we actually found the device
857 if (adapter
== NULL
) {
858 pr_err("%s: Opening a non-existent physical device\n", dev
->name
);
862 * disable interrupts on the board
864 outb_control(0, dev
);
867 * clear any pending interrupts
869 inb_command(dev
->base_addr
);
873 * no receive PCBs active
875 adapter
->rx_active
= 0;
878 adapter
->send_pcb_semaphore
= 0;
879 adapter
->rx_backlog
.in
= 0;
880 adapter
->rx_backlog
.out
= 0;
882 spin_lock_init(&adapter
->lock
);
885 * install our interrupt service routine
887 if ((retval
= request_irq(dev
->irq
, elp_interrupt
, 0, dev
->name
, dev
))) {
888 pr_err("%s: could not allocate IRQ%d\n", dev
->name
, dev
->irq
);
891 if ((retval
= request_dma(dev
->dma
, dev
->name
))) {
892 free_irq(dev
->irq
, dev
);
893 pr_err("%s: could not allocate DMA%d channel\n", dev
->name
, dev
->dma
);
896 adapter
->dma_buffer
= (void *) dma_mem_alloc(DMA_BUFFER_SIZE
);
897 if (!adapter
->dma_buffer
) {
898 pr_err("%s: could not allocate DMA buffer\n", dev
->name
);
900 free_irq(dev
->irq
, dev
);
906 * enable interrupts on the board
908 outb_control(CMDE
, dev
);
911 * configure adapter memory: we need 10 multicast addresses, default==0
914 pr_debug("%s: sending 3c505 memory configuration command\n", dev
->name
);
915 adapter
->tx_pcb
.command
= CMD_CONFIGURE_ADAPTER_MEMORY
;
916 adapter
->tx_pcb
.data
.memconf
.cmd_q
= 10;
917 adapter
->tx_pcb
.data
.memconf
.rcv_q
= 20;
918 adapter
->tx_pcb
.data
.memconf
.mcast
= 10;
919 adapter
->tx_pcb
.data
.memconf
.frame
= 20;
920 adapter
->tx_pcb
.data
.memconf
.rcv_b
= 20;
921 adapter
->tx_pcb
.data
.memconf
.progs
= 0;
922 adapter
->tx_pcb
.length
= sizeof(struct Memconf
);
923 adapter
->got
[CMD_CONFIGURE_ADAPTER_MEMORY
] = 0;
924 if (!send_pcb(dev
, &adapter
->tx_pcb
))
925 pr_err("%s: couldn't send memory configuration command\n", dev
->name
);
927 unsigned long timeout
= jiffies
+ TIMEOUT
;
928 while (adapter
->got
[CMD_CONFIGURE_ADAPTER_MEMORY
] == 0 && time_before(jiffies
, timeout
));
929 if (time_after_eq(jiffies
, timeout
))
930 TIMEOUT_MSG(__LINE__
);
935 * configure adapter to receive broadcast messages and wait for response
938 pr_debug("%s: sending 82586 configure command\n", dev
->name
);
939 adapter
->tx_pcb
.command
= CMD_CONFIGURE_82586
;
940 adapter
->tx_pcb
.data
.configure
= NO_LOOPBACK
| RECV_BROAD
;
941 adapter
->tx_pcb
.length
= 2;
942 adapter
->got
[CMD_CONFIGURE_82586
] = 0;
943 if (!send_pcb(dev
, &adapter
->tx_pcb
))
944 pr_err("%s: couldn't send 82586 configure command\n", dev
->name
);
946 unsigned long timeout
= jiffies
+ TIMEOUT
;
947 while (adapter
->got
[CMD_CONFIGURE_82586
] == 0 && time_before(jiffies
, timeout
));
948 if (time_after_eq(jiffies
, timeout
))
949 TIMEOUT_MSG(__LINE__
);
952 /* enable burst-mode DMA */
953 /* outb(0x1, dev->base_addr + PORT_AUXDMA); */
956 * queue receive commands to provide buffering
960 pr_debug("%s: %d receive PCBs active\n", dev
->name
, adapter
->rx_active
);
963 * device is now officially open!
966 netif_start_queue(dev
);
971 /******************************************************
973 * send a packet to the adapter
975 ******************************************************/
977 static netdev_tx_t
send_packet(struct net_device
*dev
, struct sk_buff
*skb
)
979 elp_device
*adapter
= netdev_priv(dev
);
980 unsigned long target
;
984 * make sure the length is even and no shorter than 60 bytes
986 unsigned int nlen
= (((skb
->len
< 60) ? 60 : skb
->len
) + 1) & (~1);
988 if (test_and_set_bit(0, (void *) &adapter
->busy
)) {
990 pr_debug("%s: transmit blocked\n", dev
->name
);
994 dev
->stats
.tx_bytes
+= nlen
;
997 * send the adapter a transmit packet command. Ignore segment and offset
998 * and make sure the length is even
1000 adapter
->tx_pcb
.command
= CMD_TRANSMIT_PACKET
;
1001 adapter
->tx_pcb
.length
= sizeof(struct Xmit_pkt
);
1002 adapter
->tx_pcb
.data
.xmit_pkt
.buf_ofs
1003 = adapter
->tx_pcb
.data
.xmit_pkt
.buf_seg
= 0; /* Unused */
1004 adapter
->tx_pcb
.data
.xmit_pkt
.pkt_len
= nlen
;
1006 if (!send_pcb(dev
, &adapter
->tx_pcb
)) {
1010 /* if this happens, we die */
1011 if (test_and_set_bit(0, (void *) &adapter
->dmaing
))
1012 pr_debug("%s: tx: DMA %d in progress\n", dev
->name
, adapter
->current_dma
.direction
);
1014 adapter
->current_dma
.direction
= 1;
1015 adapter
->current_dma
.start_time
= jiffies
;
1017 if ((unsigned long)(skb
->data
+ nlen
) >= MAX_DMA_ADDRESS
|| nlen
!= skb
->len
) {
1018 skb_copy_from_linear_data(skb
, adapter
->dma_buffer
, nlen
);
1019 memset(adapter
->dma_buffer
+skb
->len
, 0, nlen
-skb
->len
);
1020 target
= isa_virt_to_bus(adapter
->dma_buffer
);
1023 target
= isa_virt_to_bus(skb
->data
);
1025 adapter
->current_dma
.skb
= skb
;
1027 flags
=claim_dma_lock();
1028 disable_dma(dev
->dma
);
1029 clear_dma_ff(dev
->dma
);
1030 set_dma_mode(dev
->dma
, 0x48); /* dma memory -> io */
1031 set_dma_addr(dev
->dma
, target
);
1032 set_dma_count(dev
->dma
, nlen
);
1033 outb_control(adapter
->hcr_val
| DMAE
| TCEN
, dev
);
1034 enable_dma(dev
->dma
);
1035 release_dma_lock(flags
);
1038 pr_debug("%s: DMA transfer started\n", dev
->name
);
1044 * The upper layer thinks we timed out
1047 static void elp_timeout(struct net_device
*dev
)
1051 stat
= inb_status(dev
->base_addr
);
1052 pr_warning("%s: transmit timed out, lost %s?\n", dev
->name
,
1053 (stat
& ACRF
) ? "interrupt" : "command");
1055 pr_debug("%s: status %#02x\n", dev
->name
, stat
);
1056 dev
->trans_start
= jiffies
; /* prevent tx timeout */
1057 dev
->stats
.tx_dropped
++;
1058 netif_wake_queue(dev
);
1061 /******************************************************
1063 * start the transmitter
1064 * return 0 if sent OK, else return 1
1066 ******************************************************/
1068 static netdev_tx_t
elp_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1070 unsigned long flags
;
1071 elp_device
*adapter
= netdev_priv(dev
);
1073 spin_lock_irqsave(&adapter
->lock
, flags
);
1074 check_3c505_dma(dev
);
1077 pr_debug("%s: request to send packet of length %d\n", dev
->name
, (int) skb
->len
);
1079 netif_stop_queue(dev
);
1082 * send the packet at skb->data for skb->len
1084 if (!send_packet(dev
, skb
)) {
1085 if (elp_debug
>= 2) {
1086 pr_debug("%s: failed to transmit packet\n", dev
->name
);
1088 spin_unlock_irqrestore(&adapter
->lock
, flags
);
1089 return NETDEV_TX_BUSY
;
1092 pr_debug("%s: packet of length %d sent\n", dev
->name
, (int) skb
->len
);
1095 spin_unlock_irqrestore(&adapter
->lock
, flags
);
1096 netif_start_queue(dev
);
1097 return NETDEV_TX_OK
;
1100 /******************************************************
1102 * return statistics on the board
1104 ******************************************************/
1106 static struct net_device_stats
*elp_get_stats(struct net_device
*dev
)
1108 elp_device
*adapter
= netdev_priv(dev
);
1111 pr_debug("%s: request for stats\n", dev
->name
);
1113 /* If the device is closed, just return the latest stats we have,
1114 - we cannot ask from the adapter without interrupts */
1115 if (!netif_running(dev
))
1118 /* send a get statistics command to the board */
1119 adapter
->tx_pcb
.command
= CMD_NETWORK_STATISTICS
;
1120 adapter
->tx_pcb
.length
= 0;
1121 adapter
->got
[CMD_NETWORK_STATISTICS
] = 0;
1122 if (!send_pcb(dev
, &adapter
->tx_pcb
))
1123 pr_err("%s: couldn't send get statistics command\n", dev
->name
);
1125 unsigned long timeout
= jiffies
+ TIMEOUT
;
1126 while (adapter
->got
[CMD_NETWORK_STATISTICS
] == 0 && time_before(jiffies
, timeout
));
1127 if (time_after_eq(jiffies
, timeout
)) {
1128 TIMEOUT_MSG(__LINE__
);
1133 /* statistics are now up to date */
1138 static void netdev_get_drvinfo(struct net_device
*dev
,
1139 struct ethtool_drvinfo
*info
)
1141 strcpy(info
->driver
, DRV_NAME
);
1142 strcpy(info
->version
, DRV_VERSION
);
1143 sprintf(info
->bus_info
, "ISA 0x%lx", dev
->base_addr
);
1146 static u32
netdev_get_msglevel(struct net_device
*dev
)
1151 static void netdev_set_msglevel(struct net_device
*dev
, u32 level
)
1156 static const struct ethtool_ops netdev_ethtool_ops
= {
1157 .get_drvinfo
= netdev_get_drvinfo
,
1158 .get_msglevel
= netdev_get_msglevel
,
1159 .set_msglevel
= netdev_set_msglevel
,
1162 /******************************************************
1166 ******************************************************/
1168 static int elp_close(struct net_device
*dev
)
1170 elp_device
*adapter
= netdev_priv(dev
);
1173 pr_debug("%s: request to close device\n", dev
->name
);
1175 netif_stop_queue(dev
);
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.
1181 (void) elp_get_stats(dev
);
1184 * disable interrupts on the board
1186 outb_control(0, dev
);
1191 free_irq(dev
->irq
, dev
);
1194 free_pages((unsigned long) adapter
->dma_buffer
, get_order(DMA_BUFFER_SIZE
));
1200 /************************************************************
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
1207 ************************************************************/
1209 static void elp_set_mc_list(struct net_device
*dev
)
1211 elp_device
*adapter
= netdev_priv(dev
);
1212 struct netdev_hw_addr
*ha
;
1214 unsigned long flags
;
1217 pr_debug("%s: request to set multicast list\n", dev
->name
);
1219 spin_lock_irqsave(&adapter
->lock
, flags
);
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 * netdev_mc_count(dev
);
1227 netdev_for_each_mc_addr(ha
, dev
)
1228 memcpy(adapter
->tx_pcb
.data
.multicast
[i
++],
1230 adapter
->got
[CMD_LOAD_MULTICAST_LIST
] = 0;
1231 if (!send_pcb(dev
, &adapter
->tx_pcb
))
1232 pr_err("%s: couldn't send set_multicast command\n", dev
->name
);
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__
);
1240 if (!netdev_mc_empty(dev
))
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
;
1245 adapter
->tx_pcb
.data
.configure
= NO_LOOPBACK
| RECV_PROMISC
;
1247 * configure adapter to receive messages (as specified above)
1248 * and wait for response
1251 pr_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
))
1257 spin_unlock_irqrestore(&adapter
->lock
, flags
);
1258 pr_err("%s: couldn't send 82586 configure command\n", dev
->name
);
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__
);
1269 /************************************************************
1271 * A couple of tests to see if there's 3C505 or not
1272 * Called only by elp_autodetect
1273 ************************************************************/
1275 static int __init
elp_sense(struct net_device
*dev
)
1277 int addr
= dev
->base_addr
;
1278 const char *name
= dev
->name
;
1281 if (!request_region(addr
, ELP_IO_EXTENT
, "3c505"))
1284 orig_HSR
= inb_status(addr
);
1287 pr_debug(search_msg
, name
, addr
);
1289 if (orig_HSR
== 0xff) {
1291 pr_cont(notfound_msg
, 1);
1295 /* Wait for a while; the adapter may still be booting up */
1297 pr_cont(stilllooking_msg
);
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
);
1303 if (inb_status(addr
) & DIR) {
1305 pr_cont(notfound_msg
, 2);
1309 /* If HCR.DIR is down, we pull it up. HSR.DIR should follow. */
1310 outb(DIR, dev
->base_addr
+ PORT_CONTROL
);
1312 if (!(inb_status(addr
) & DIR)) {
1314 pr_cont(notfound_msg
, 3);
1319 * It certainly looks like a 3c505.
1326 release_region(addr
, ELP_IO_EXTENT
);
1330 /*************************************************************
1332 * Search through addr_list[] and try to find a 3C505
1333 * Called only by eplus_probe
1334 *************************************************************/
1336 static int __init
elp_autodetect(struct net_device
*dev
)
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
;
1346 while ((dev
->base_addr
= addr_list
[idx
++])) {
1347 if (elp_sense(dev
) == 0)
1348 return dev
->base_addr
;
1351 /* could not find an adapter */
1353 pr_debug(couldnot_msg
, dev
->name
);
1355 return 0; /* Because of this, the layer above will return -ENODEV */
1358 static const struct net_device_ops elp_netdev_ops
= {
1359 .ndo_open
= elp_open
,
1360 .ndo_stop
= elp_close
,
1361 .ndo_get_stats
= elp_get_stats
,
1362 .ndo_start_xmit
= elp_start_xmit
,
1363 .ndo_tx_timeout
= elp_timeout
,
1364 .ndo_set_rx_mode
= elp_set_mc_list
,
1365 .ndo_change_mtu
= eth_change_mtu
,
1366 .ndo_set_mac_address
= eth_mac_addr
,
1367 .ndo_validate_addr
= eth_validate_addr
,
1370 /******************************************************
1372 * probe for an Etherlink Plus board at the specified address
1374 ******************************************************/
1376 /* There are three situations we need to be able to detect here:
1378 * a) the card is idle
1379 * b) the card is still booting up
1380 * c) the card is stuck in a strange state (some DOS drivers do this)
1382 * In case (a), all is well. In case (b), we wait 10 seconds to see if the
1383 * card finishes booting, and carry on if so. In case (c), we do a hard reset,
1384 * loop round, and hope for the best.
1386 * This is all very unpleasant, but hopefully avoids the problems with the old
1387 * probe code (which had a 15-second delay if the card was idle, and didn't
1388 * work at all if it was in a weird state).
1391 static int __init
elplus_setup(struct net_device
*dev
)
1393 elp_device
*adapter
= netdev_priv(dev
);
1394 int i
, tries
, tries1
, okay
;
1395 unsigned long timeout
;
1396 unsigned long cookie
= 0;
1400 * setup adapter structure
1403 dev
->base_addr
= elp_autodetect(dev
);
1404 if (!dev
->base_addr
)
1407 adapter
->send_pcb_semaphore
= 0;
1409 for (tries1
= 0; tries1
< 3; tries1
++) {
1410 outb_control((adapter
->hcr_val
| CMDE
) & ~DIR, dev
);
1411 /* First try to write just one byte, to see if the card is
1412 * responding at all normally.
1414 timeout
= jiffies
+ 5*HZ
/100;
1416 while (time_before(jiffies
, timeout
) && !(inb_status(dev
->base_addr
) & HCRE
));
1417 if ((inb_status(dev
->base_addr
) & HCRE
)) {
1418 outb_command(0, dev
->base_addr
); /* send a spurious byte */
1419 timeout
= jiffies
+ 5*HZ
/100;
1420 while (time_before(jiffies
, timeout
) && !(inb_status(dev
->base_addr
) & HCRE
));
1421 if (inb_status(dev
->base_addr
) & HCRE
)
1425 /* Nope, it's ignoring the command register. This means that
1426 * either it's still booting up, or it's died.
1428 pr_err("%s: command register wouldn't drain, ", dev
->name
);
1429 if ((inb_status(dev
->base_addr
) & 7) == 3) {
1430 /* If the adapter status is 3, it *could* still be booting.
1431 * Give it the benefit of the doubt for 10 seconds.
1433 pr_cont("assuming 3c505 still starting\n");
1434 timeout
= jiffies
+ 10*HZ
;
1435 while (time_before(jiffies
, timeout
) && (inb_status(dev
->base_addr
) & 7));
1436 if (inb_status(dev
->base_addr
) & 7) {
1437 pr_err("%s: 3c505 failed to start\n", dev
->name
);
1439 okay
= 1; /* It started */
1442 /* Otherwise, it must just be in a strange
1443 * state. We probably need to kick it.
1445 pr_cont("3c505 is sulking\n");
1448 for (tries
= 0; tries
< 5 && okay
; tries
++) {
1451 * Try to set the Ethernet address, to make sure that the board
1454 adapter
->tx_pcb
.command
= CMD_STATION_ADDRESS
;
1455 adapter
->tx_pcb
.length
= 0;
1456 cookie
= probe_irq_on();
1457 if (!send_pcb(dev
, &adapter
->tx_pcb
)) {
1458 pr_err("%s: could not send first PCB\n", dev
->name
);
1459 probe_irq_off(cookie
);
1462 if (!receive_pcb(dev
, &adapter
->rx_pcb
)) {
1463 pr_err("%s: could not read first PCB\n", dev
->name
);
1464 probe_irq_off(cookie
);
1467 if ((adapter
->rx_pcb
.command
!= CMD_ADDRESS_RESPONSE
) ||
1468 (adapter
->rx_pcb
.length
!= 6)) {
1469 pr_err("%s: first PCB wrong (%d, %d)\n", dev
->name
,
1470 adapter
->rx_pcb
.command
, adapter
->rx_pcb
.length
);
1471 probe_irq_off(cookie
);
1476 /* It's broken. Do a hard reset to re-initialise the board,
1479 pr_info("%s: resetting adapter\n", dev
->name
);
1480 outb_control(adapter
->hcr_val
| FLSH
| ATTN
, dev
);
1481 outb_control(adapter
->hcr_val
& ~(FLSH
| ATTN
), dev
);
1483 pr_err("%s: failed to initialise 3c505\n", dev
->name
);
1487 if (dev
->irq
) { /* Is there a preset IRQ? */
1488 int rpt
= probe_irq_off(cookie
);
1489 if (dev
->irq
!= rpt
) {
1490 pr_warning("%s: warning, irq %d configured but %d detected\n", dev
->name
, dev
->irq
, rpt
);
1492 /* if dev->irq == probe_irq_off(cookie), all is well */
1493 } else /* No preset IRQ; just use what we can detect */
1494 dev
->irq
= probe_irq_off(cookie
);
1495 switch (dev
->irq
) { /* Legal, sane? */
1497 pr_err("%s: IRQ probe failed: check 3c505 jumpers.\n",
1504 pr_err("%s: Impossible IRQ %d reported by probe_irq_off().\n",
1505 dev
->name
, dev
->irq
);
1509 * Now we have the IRQ number so we can disable the interrupts from
1510 * the board until the board is opened.
1512 outb_control(adapter
->hcr_val
& ~CMDE
, dev
);
1515 * copy Ethernet address into structure
1517 for (i
= 0; i
< 6; i
++)
1518 dev
->dev_addr
[i
] = adapter
->rx_pcb
.data
.eth_addr
[i
];
1520 /* find a DMA channel */
1522 if (dev
->mem_start
) {
1523 dev
->dma
= dev
->mem_start
& 7;
1526 pr_warning("%s: warning, DMA channel not specified, using default\n", dev
->name
);
1532 * print remainder of startup message
1534 pr_info("%s: 3c505 at %#lx, irq %d, dma %d, addr %pM, ",
1535 dev
->name
, dev
->base_addr
, dev
->irq
, dev
->dma
, dev
->dev_addr
);
1537 * read more information from the adapter
1540 adapter
->tx_pcb
.command
= CMD_ADAPTER_INFO
;
1541 adapter
->tx_pcb
.length
= 0;
1542 if (!send_pcb(dev
, &adapter
->tx_pcb
) ||
1543 !receive_pcb(dev
, &adapter
->rx_pcb
) ||
1544 (adapter
->rx_pcb
.command
!= CMD_ADAPTER_INFO_RESPONSE
) ||
1545 (adapter
->rx_pcb
.length
!= 10)) {
1546 pr_cont("not responding to second PCB\n");
1548 pr_cont("rev %d.%d, %dk\n", adapter
->rx_pcb
.data
.info
.major_vers
,
1549 adapter
->rx_pcb
.data
.info
.minor_vers
, adapter
->rx_pcb
.data
.info
.RAM_sz
);
1552 * reconfigure the adapter memory to better suit our purposes
1554 adapter
->tx_pcb
.command
= CMD_CONFIGURE_ADAPTER_MEMORY
;
1555 adapter
->tx_pcb
.length
= 12;
1556 adapter
->tx_pcb
.data
.memconf
.cmd_q
= 8;
1557 adapter
->tx_pcb
.data
.memconf
.rcv_q
= 8;
1558 adapter
->tx_pcb
.data
.memconf
.mcast
= 10;
1559 adapter
->tx_pcb
.data
.memconf
.frame
= 10;
1560 adapter
->tx_pcb
.data
.memconf
.rcv_b
= 10;
1561 adapter
->tx_pcb
.data
.memconf
.progs
= 0;
1562 if (!send_pcb(dev
, &adapter
->tx_pcb
) ||
1563 !receive_pcb(dev
, &adapter
->rx_pcb
) ||
1564 (adapter
->rx_pcb
.command
!= CMD_CONFIGURE_ADAPTER_RESPONSE
) ||
1565 (adapter
->rx_pcb
.length
!= 2)) {
1566 pr_err("%s: could not configure adapter memory\n", dev
->name
);
1568 if (adapter
->rx_pcb
.data
.configure
) {
1569 pr_err("%s: adapter configuration failed\n", dev
->name
);
1572 dev
->netdev_ops
= &elp_netdev_ops
;
1573 dev
->watchdog_timeo
= 10*HZ
;
1574 dev
->ethtool_ops
= &netdev_ethtool_ops
; /* local */
1576 dev
->mem_start
= dev
->mem_end
= 0;
1578 err
= register_netdev(dev
);
1584 release_region(dev
->base_addr
, ELP_IO_EXTENT
);
1589 struct net_device
* __init
elplus_probe(int unit
)
1591 struct net_device
*dev
= alloc_etherdev(sizeof(elp_device
));
1594 return ERR_PTR(-ENOMEM
);
1596 sprintf(dev
->name
, "eth%d", unit
);
1597 netdev_boot_setup_check(dev
);
1599 err
= elplus_setup(dev
);
1602 return ERR_PTR(err
);
1608 static struct net_device
*dev_3c505
[ELP_MAX_CARDS
];
1609 static int io
[ELP_MAX_CARDS
];
1610 static int irq
[ELP_MAX_CARDS
];
1611 static int dma
[ELP_MAX_CARDS
];
1612 module_param_array(io
, int, NULL
, 0);
1613 module_param_array(irq
, int, NULL
, 0);
1614 module_param_array(dma
, int, NULL
, 0);
1615 MODULE_PARM_DESC(io
, "EtherLink Plus I/O base address(es)");
1616 MODULE_PARM_DESC(irq
, "EtherLink Plus IRQ number(s) (assigned)");
1617 MODULE_PARM_DESC(dma
, "EtherLink Plus DMA channel(s)");
1619 int __init
init_module(void)
1621 int this_dev
, found
= 0;
1623 for (this_dev
= 0; this_dev
< ELP_MAX_CARDS
; this_dev
++) {
1624 struct net_device
*dev
= alloc_etherdev(sizeof(elp_device
));
1628 dev
->irq
= irq
[this_dev
];
1629 dev
->base_addr
= io
[this_dev
];
1630 if (dma
[this_dev
]) {
1631 dev
->dma
= dma
[this_dev
];
1634 pr_warning("3c505.c: warning, using default DMA channel,\n");
1636 if (io
[this_dev
] == 0) {
1641 pr_notice("3c505.c: module autoprobe not recommended, give io=xx.\n");
1643 if (elplus_setup(dev
) != 0) {
1644 pr_warning("3c505.c: Failed to register card at 0x%x.\n", io
[this_dev
]);
1648 dev_3c505
[this_dev
] = dev
;
1656 void __exit
cleanup_module(void)
1660 for (this_dev
= 0; this_dev
< ELP_MAX_CARDS
; this_dev
++) {
1661 struct net_device
*dev
= dev_3c505
[this_dev
];
1663 unregister_netdev(dev
);
1664 release_region(dev
->base_addr
, ELP_IO_EXTENT
);
1671 MODULE_LICENSE("GPL");