2 * Linux ARCnet driver - device-independent routines
4 * Written 1997 by David Woodhouse.
5 * Written 1994-1999 by Avery Pennarun.
6 * Written 1999-2000 by Martin Mares <mj@ucw.cz>.
7 * Derived from skeleton.c by Donald Becker.
9 * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
10 * for sponsoring the further development of this driver.
12 * **********************
14 * The original copyright was as follows:
16 * skeleton.c Written 1993 by Donald Becker.
17 * Copyright 1993 United States Government as represented by the
18 * Director, National Security Agency. This software may only be used
19 * and distributed according to the terms of the GNU General Public License as
20 * modified by SRC, incorporated herein by reference.
22 * **********************
24 * The change log is now in a file called ChangeLog in this directory.
27 * - Crynwr arcnet.com/arcether.com packet drivers.
28 * - arcnet.c v0.00 dated 1/1/94 and apparently by
29 * Donald Becker - it didn't work :)
30 * - skeleton.c v0.05 dated 11/16/93 by Donald Becker
31 * (from Linux Kernel 1.1.45)
32 * - RFC's 1201 and 1051 - re: TCP/IP over ARCnet
33 * - The official ARCnet COM9026 data sheets (!) thanks to
34 * Ken Cornetet <kcornete@nyx10.cs.du.edu>
35 * - The official ARCnet COM20020 data sheets.
36 * - Information on some more obscure ARCnet controller chips, thanks
37 * to the nice people at SMSC.
38 * - net/inet/eth.c (from kernel 1.1.50) for header-building info.
39 * - Alternate Linux ARCnet source by V.Shergin <vsher@sao.stavropol.su>
40 * - Textual information and more alternate source from Joachim Koenig
44 #define VERSION "arcnet: v3.94 BETA 2007/02/08 - by Avery Pennarun et al.\n"
46 #include <linux/module.h>
47 #include <linux/types.h>
48 #include <linux/delay.h>
49 #include <linux/netdevice.h>
50 #include <linux/if_arp.h>
52 #include <linux/init.h>
53 #include <linux/arcdevice.h>
54 #include <linux/jiffies.h>
56 /* "do nothing" functions for protocol drivers */
57 static void null_rx(struct net_device
*dev
, int bufnum
,
58 struct archdr
*pkthdr
, int length
);
59 static int null_build_header(struct sk_buff
*skb
, struct net_device
*dev
,
60 unsigned short type
, uint8_t daddr
);
61 static int null_prepare_tx(struct net_device
*dev
, struct archdr
*pkt
,
62 int length
, int bufnum
);
64 static void arcnet_rx(struct net_device
*dev
, int bufnum
);
67 * one ArcProto per possible proto ID. None of the elements of
68 * arc_proto_map are allowed to be NULL; they will get set to
69 * arc_proto_default instead. It also must not be NULL; if you would like
70 * to set it to NULL, set it to &arc_proto_null instead.
72 struct ArcProto
*arc_proto_map
[256], *arc_proto_default
,
73 *arc_bcast_proto
, *arc_raw_proto
;
75 static struct ArcProto arc_proto_null
=
81 .build_header
= null_build_header
,
82 .prepare_tx
= null_prepare_tx
,
87 /* Exported function prototypes */
88 int arcnet_debug
= ARCNET_DEBUG
;
90 EXPORT_SYMBOL(arc_proto_map
);
91 EXPORT_SYMBOL(arc_proto_default
);
92 EXPORT_SYMBOL(arc_bcast_proto
);
93 EXPORT_SYMBOL(arc_raw_proto
);
94 EXPORT_SYMBOL(arcnet_unregister_proto
);
95 EXPORT_SYMBOL(arcnet_debug
);
96 EXPORT_SYMBOL(alloc_arcdev
);
97 EXPORT_SYMBOL(arcnet_interrupt
);
98 EXPORT_SYMBOL(arcnet_open
);
99 EXPORT_SYMBOL(arcnet_close
);
100 EXPORT_SYMBOL(arcnet_send_packet
);
101 EXPORT_SYMBOL(arcnet_timeout
);
103 /* Internal function prototypes */
104 static int arcnet_header(struct sk_buff
*skb
, struct net_device
*dev
,
105 unsigned short type
, const void *daddr
,
106 const void *saddr
, unsigned len
);
107 static int go_tx(struct net_device
*dev
);
109 static int debug
= ARCNET_DEBUG
;
110 module_param(debug
, int, 0);
111 MODULE_LICENSE("GPL");
113 static int __init
arcnet_init(void)
117 arcnet_debug
= debug
;
119 printk("arcnet loaded.\n");
123 printk("arcnet: ***\n"
124 "arcnet: * Read arcnet.txt for important release notes!\n"
126 "arcnet: * This is an ALPHA version! (Last stable release: v3.02) E-mail\n"
127 "arcnet: * me if you have any questions, comments, or bug reports.\n"
132 /* initialize the protocol map */
133 arc_raw_proto
= arc_proto_default
= arc_bcast_proto
= &arc_proto_null
;
134 for (count
= 0; count
< 256; count
++)
135 arc_proto_map
[count
] = arc_proto_default
;
138 printk("arcnet: struct sizes: %Zd %Zd %Zd %Zd %Zd\n",
139 sizeof(struct arc_hardware
), sizeof(struct arc_rfc1201
),
140 sizeof(struct arc_rfc1051
), sizeof(struct arc_eth_encap
),
141 sizeof(struct archdr
));
146 static void __exit
arcnet_exit(void)
150 module_init(arcnet_init
);
151 module_exit(arcnet_exit
);
154 * Dump the contents of an sk_buff
156 #if ARCNET_DEBUG_MAX & D_SKB
157 void arcnet_dump_skb(struct net_device
*dev
,
158 struct sk_buff
*skb
, char *desc
)
162 /* dump the packet */
163 snprintf(hdr
, sizeof(hdr
), "%6s:%s skb->data:", dev
->name
, desc
);
164 print_hex_dump(KERN_DEBUG
, hdr
, DUMP_PREFIX_OFFSET
,
165 16, 1, skb
->data
, skb
->len
, true);
168 EXPORT_SYMBOL(arcnet_dump_skb
);
173 * Dump the contents of an ARCnet buffer
175 #if (ARCNET_DEBUG_MAX & (D_RX | D_TX))
176 static void arcnet_dump_packet(struct net_device
*dev
, int bufnum
,
177 char *desc
, int take_arcnet_lock
)
179 struct arcnet_local
*lp
= netdev_priv(dev
);
181 unsigned long flags
= 0;
182 static uint8_t buf
[512];
185 /* hw.copy_from_card expects IRQ context so take the IRQ lock
186 to keep it single threaded */
188 spin_lock_irqsave(&lp
->lock
, flags
);
190 lp
->hw
.copy_from_card(dev
, bufnum
, 0, buf
, 512);
192 spin_unlock_irqrestore(&lp
->lock
, flags
);
194 /* if the offset[0] byte is nonzero, this is a 256-byte packet */
195 length
= (buf
[2] ? 256 : 512);
197 /* dump the packet */
198 snprintf(hdr
, sizeof(hdr
), "%6s:%s packet dump:", dev
->name
, desc
);
199 print_hex_dump(KERN_DEBUG
, hdr
, DUMP_PREFIX_OFFSET
,
200 16, 1, buf
, length
, true);
205 #define arcnet_dump_packet(dev, bufnum, desc,take_arcnet_lock) do { } while (0)
211 * Unregister a protocol driver from the arc_proto_map. Protocol drivers
212 * are responsible for registering themselves, but the unregister routine
213 * is pretty generic so we'll do it here.
215 void arcnet_unregister_proto(struct ArcProto
*proto
)
219 if (arc_proto_default
== proto
)
220 arc_proto_default
= &arc_proto_null
;
221 if (arc_bcast_proto
== proto
)
222 arc_bcast_proto
= arc_proto_default
;
223 if (arc_raw_proto
== proto
)
224 arc_raw_proto
= arc_proto_default
;
226 for (count
= 0; count
< 256; count
++) {
227 if (arc_proto_map
[count
] == proto
)
228 arc_proto_map
[count
] = arc_proto_default
;
234 * Add a buffer to the queue. Only the interrupt handler is allowed to do
235 * this, unless interrupts are disabled.
237 * Note: we don't check for a full queue, since there aren't enough buffers
238 * to more than fill it.
240 static void release_arcbuf(struct net_device
*dev
, int bufnum
)
242 struct arcnet_local
*lp
= netdev_priv(dev
);
245 lp
->buf_queue
[lp
->first_free_buf
++] = bufnum
;
246 lp
->first_free_buf
%= 5;
249 BUGMSG(D_DURING
, "release_arcbuf: freed #%d; buffer queue is now: ",
251 for (i
= lp
->next_buf
; i
!= lp
->first_free_buf
; i
= (i
+1) % 5)
252 BUGMSG2(D_DURING
, "#%d ", lp
->buf_queue
[i
]);
253 BUGMSG2(D_DURING
, "\n");
259 * Get a buffer from the queue. If this returns -1, there are no buffers
262 static int get_arcbuf(struct net_device
*dev
)
264 struct arcnet_local
*lp
= netdev_priv(dev
);
267 if (!atomic_dec_and_test(&lp
->buf_lock
)) {
268 /* already in this function */
269 BUGMSG(D_NORMAL
, "get_arcbuf: overlap (%d)!\n",
270 lp
->buf_lock
.counter
);
272 else { /* we can continue */
273 if (lp
->next_buf
>= 5)
276 if (lp
->next_buf
== lp
->first_free_buf
)
277 BUGMSG(D_NORMAL
, "get_arcbuf: BUG: no buffers are available??\n");
279 buf
= lp
->buf_queue
[lp
->next_buf
++];
286 BUGMSG(D_DURING
, "get_arcbuf: got #%d; buffer queue is now: ", buf
);
287 for (i
= lp
->next_buf
; i
!= lp
->first_free_buf
; i
= (i
+1) % 5)
288 BUGMSG2(D_DURING
, "#%d ", lp
->buf_queue
[i
]);
289 BUGMSG2(D_DURING
, "\n");
292 atomic_inc(&lp
->buf_lock
);
297 static int choose_mtu(void)
299 int count
, mtu
= 65535;
301 /* choose the smallest MTU of all available encaps */
302 for (count
= 0; count
< 256; count
++) {
303 if (arc_proto_map
[count
] != &arc_proto_null
&&
304 arc_proto_map
[count
]->mtu
< mtu
) {
305 mtu
= arc_proto_map
[count
]->mtu
;
309 return mtu
== 65535 ? XMTU
: mtu
;
312 static const struct header_ops arcnet_header_ops
= {
313 .create
= arcnet_header
,
316 static const struct net_device_ops arcnet_netdev_ops
= {
317 .ndo_open
= arcnet_open
,
318 .ndo_stop
= arcnet_close
,
319 .ndo_start_xmit
= arcnet_send_packet
,
320 .ndo_tx_timeout
= arcnet_timeout
,
323 /* Setup a struct device for ARCnet. */
324 static void arcdev_setup(struct net_device
*dev
)
326 dev
->type
= ARPHRD_ARCNET
;
327 dev
->netdev_ops
= &arcnet_netdev_ops
;
328 dev
->header_ops
= &arcnet_header_ops
;
329 dev
->hard_header_len
= sizeof(struct archdr
);
330 dev
->mtu
= choose_mtu();
332 dev
->addr_len
= ARCNET_ALEN
;
333 dev
->tx_queue_len
= 100;
334 dev
->broadcast
[0] = 0x00; /* for us, broadcasts are address 0 */
335 dev
->watchdog_timeo
= TX_TIMEOUT
;
337 /* New-style flags. */
338 dev
->flags
= IFF_BROADCAST
;
342 struct net_device
*alloc_arcdev(const char *name
)
344 struct net_device
*dev
;
346 dev
= alloc_netdev(sizeof(struct arcnet_local
),
347 name
&& *name
? name
: "arc%d", NET_NAME_UNKNOWN
,
350 struct arcnet_local
*lp
= netdev_priv(dev
);
351 spin_lock_init(&lp
->lock
);
358 * Open/initialize the board. This is called sometime after booting when
359 * the 'ifconfig' program is run.
361 * This routine should set everything up anew at each open, even registers
362 * that "should" only need to be set once at boot, so that there is
363 * non-reboot way to recover if something goes wrong.
365 int arcnet_open(struct net_device
*dev
)
367 struct arcnet_local
*lp
= netdev_priv(dev
);
368 int count
, newmtu
, error
;
370 BUGMSG(D_INIT
,"opened.");
372 if (!try_module_get(lp
->hw
.owner
))
376 BUGMSG(D_PROTO
, "protocol map (default is '%c'): ",
377 arc_proto_default
->suffix
);
378 for (count
= 0; count
< 256; count
++)
379 BUGMSG2(D_PROTO
, "%c", arc_proto_map
[count
]->suffix
);
380 BUGMSG2(D_PROTO
, "\n");
384 BUGMSG(D_INIT
, "arcnet_open: resetting card.\n");
386 /* try to put the card in a defined state - if it fails the first
387 * time, actually reset it.
390 if (ARCRESET(0) && ARCRESET(1))
393 newmtu
= choose_mtu();
394 if (newmtu
< dev
->mtu
)
397 BUGMSG(D_INIT
, "arcnet_open: mtu: %d.\n", dev
->mtu
);
399 /* autodetect the encapsulation for each host. */
400 memset(lp
->default_proto
, 0, sizeof(lp
->default_proto
));
402 /* the broadcast address is special - use the 'bcast' protocol */
403 for (count
= 0; count
< 256; count
++) {
404 if (arc_proto_map
[count
] == arc_bcast_proto
) {
405 lp
->default_proto
[0] = count
;
410 /* initialize buffers */
411 atomic_set(&lp
->buf_lock
, 1);
413 lp
->next_buf
= lp
->first_free_buf
= 0;
414 release_arcbuf(dev
, 0);
415 release_arcbuf(dev
, 1);
416 release_arcbuf(dev
, 2);
417 release_arcbuf(dev
, 3);
418 lp
->cur_tx
= lp
->next_tx
= -1;
421 lp
->rfc1201
.sequence
= 1;
423 /* bring up the hardware driver */
427 if (dev
->dev_addr
[0] == 0)
428 BUGMSG(D_NORMAL
, "WARNING! Station address 00 is reserved "
429 "for broadcasts!\n");
430 else if (dev
->dev_addr
[0] == 255)
431 BUGMSG(D_NORMAL
, "WARNING! Station address FF may confuse "
432 "DOS networking programs!\n");
434 BUGMSG(D_DEBUG
, "%s: %d: %s\n",__FILE__
,__LINE__
,__func__
);
435 if (ASTATUS() & RESETflag
) {
436 BUGMSG(D_DEBUG
, "%s: %d: %s\n",__FILE__
,__LINE__
,__func__
);
437 ACOMMAND(CFLAGScmd
| RESETclear
);
441 BUGMSG(D_DEBUG
, "%s: %d: %s\n",__FILE__
,__LINE__
,__func__
);
442 /* make sure we're ready to receive IRQ's. */
444 udelay(1); /* give it time to set the mask before
445 * we reset it again. (may not even be
448 BUGMSG(D_DEBUG
, "%s: %d: %s\n",__FILE__
,__LINE__
,__func__
);
449 lp
->intmask
= NORXflag
| RECONflag
;
450 AINTMASK(lp
->intmask
);
451 BUGMSG(D_DEBUG
, "%s: %d: %s\n",__FILE__
,__LINE__
,__func__
);
453 netif_start_queue(dev
);
458 module_put(lp
->hw
.owner
);
463 /* The inverse routine to arcnet_open - shuts down the card. */
464 int arcnet_close(struct net_device
*dev
)
466 struct arcnet_local
*lp
= netdev_priv(dev
);
468 netif_stop_queue(dev
);
470 /* flush TX and disable RX */
472 ACOMMAND(NOTXcmd
); /* stop transmit */
473 ACOMMAND(NORXcmd
); /* disable receive */
476 /* shut down the card */
478 module_put(lp
->hw
.owner
);
483 static int arcnet_header(struct sk_buff
*skb
, struct net_device
*dev
,
484 unsigned short type
, const void *daddr
,
485 const void *saddr
, unsigned len
)
487 const struct arcnet_local
*lp
= netdev_priv(dev
);
488 uint8_t _daddr
, proto_num
;
489 struct ArcProto
*proto
;
492 "create header from %d to %d; protocol %d (%Xh); size %u.\n",
493 saddr
? *(uint8_t *) saddr
: -1,
494 daddr
? *(uint8_t *) daddr
: -1,
497 if (skb
->len
!=0 && len
!= skb
->len
)
498 BUGMSG(D_NORMAL
, "arcnet_header: Yikes! skb->len(%d) != len(%d)!\n",
502 /* Type is host order - ? */
503 if(type
== ETH_P_ARCNET
) {
504 proto
= arc_raw_proto
;
505 BUGMSG(D_DEBUG
, "arc_raw_proto used. proto='%c'\n",proto
->suffix
);
506 _daddr
= daddr
? *(uint8_t *) daddr
: 0;
510 * if the dest addr isn't provided, we can't choose an encapsulation!
511 * Store the packet type (eg. ETH_P_IP) for now, and we'll push on a
512 * real header when we do rebuild_header.
514 *(uint16_t *) skb_push(skb
, 2) = type
;
516 * XXX: Why not use skb->mac_len?
518 if (skb
->network_header
- skb
->mac_header
!= 2)
519 BUGMSG(D_NORMAL
, "arcnet_header: Yikes! diff (%d) is not 2!\n",
520 (int)(skb
->network_header
- skb
->mac_header
));
521 return -2; /* return error -- can't transmit yet! */
524 /* otherwise, we can just add the header as usual. */
525 _daddr
= *(uint8_t *) daddr
;
526 proto_num
= lp
->default_proto
[_daddr
];
527 proto
= arc_proto_map
[proto_num
];
528 BUGMSG(D_DURING
, "building header for %02Xh using protocol '%c'\n",
529 proto_num
, proto
->suffix
);
530 if (proto
== &arc_proto_null
&& arc_bcast_proto
!= proto
) {
531 BUGMSG(D_DURING
, "actually, let's use '%c' instead.\n",
532 arc_bcast_proto
->suffix
);
533 proto
= arc_bcast_proto
;
536 return proto
->build_header(skb
, dev
, type
, _daddr
);
539 /* Called by the kernel in order to transmit a packet. */
540 netdev_tx_t
arcnet_send_packet(struct sk_buff
*skb
,
541 struct net_device
*dev
)
543 struct arcnet_local
*lp
= netdev_priv(dev
);
545 struct arc_rfc1201
*soft
;
546 struct ArcProto
*proto
;
552 "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n",
553 ASTATUS(), lp
->cur_tx
, lp
->next_tx
, skb
->len
,skb
->protocol
);
555 pkt
= (struct archdr
*) skb
->data
;
556 soft
= &pkt
->soft
.rfc1201
;
557 proto
= arc_proto_map
[soft
->proto
];
559 BUGMSG(D_SKB_SIZE
, "skb: transmitting %d bytes to %02X\n",
560 skb
->len
, pkt
->hard
.dest
);
561 BUGLVL(D_SKB
) arcnet_dump_skb(dev
, skb
, "tx");
563 /* fits in one packet? */
564 if (skb
->len
- ARC_HDR_SIZE
> XMTU
&& !proto
->continue_tx
) {
565 BUGMSG(D_NORMAL
, "fixme: packet too large: compensating badly!\n");
567 return NETDEV_TX_OK
; /* don't try again */
570 /* We're busy transmitting a packet... */
571 netif_stop_queue(dev
);
573 spin_lock_irqsave(&lp
->lock
, flags
);
575 if(lp
->next_tx
== -1)
576 txbuf
= get_arcbuf(dev
);
581 if (proto
->prepare_tx(dev
, pkt
, skb
->len
, txbuf
) &&
583 /* done right away and we don't want to acknowledge
584 the package later - forget about it now */
585 dev
->stats
.tx_bytes
+= skb
->len
;
588 /* do it the 'split' way */
589 lp
->outgoing
.proto
= proto
;
590 lp
->outgoing
.skb
= skb
;
591 lp
->outgoing
.pkt
= pkt
;
595 if (proto
->continue_tx
&&
596 proto
->continue_tx(dev
, txbuf
)) {
598 "bug! continue_tx finished the first time! "
599 "(proto='%c')\n", proto
->suffix
);
602 retval
= NETDEV_TX_OK
;
605 retval
= NETDEV_TX_BUSY
;
609 BUGMSG(D_DEBUG
, "%s: %d: %s, status: %x\n",__FILE__
,__LINE__
,__func__
,ASTATUS());
610 /* make sure we didn't ignore a TX IRQ while we were in here */
613 BUGMSG(D_DEBUG
, "%s: %d: %s\n",__FILE__
,__LINE__
,__func__
);
614 lp
->intmask
|= TXFREEflag
|EXCNAKflag
;
615 AINTMASK(lp
->intmask
);
616 BUGMSG(D_DEBUG
, "%s: %d: %s, status: %x\n",__FILE__
,__LINE__
,__func__
,ASTATUS());
618 spin_unlock_irqrestore(&lp
->lock
, flags
);
622 return retval
; /* no need to try again */
627 * Actually start transmitting a packet that was loaded into a buffer
628 * by prepare_tx. This should _only_ be called by the interrupt handler.
630 static int go_tx(struct net_device
*dev
)
632 struct arcnet_local
*lp
= netdev_priv(dev
);
634 BUGMSG(D_DURING
, "go_tx: status=%Xh, intmask=%Xh, next_tx=%d, cur_tx=%d\n",
635 ASTATUS(), lp
->intmask
, lp
->next_tx
, lp
->cur_tx
);
637 if (lp
->cur_tx
!= -1 || lp
->next_tx
== -1)
640 BUGLVL(D_TX
) arcnet_dump_packet(dev
, lp
->next_tx
, "go_tx", 0);
642 lp
->cur_tx
= lp
->next_tx
;
646 ACOMMAND(TXcmd
| (lp
->cur_tx
<< 3));
648 dev
->stats
.tx_packets
++;
649 lp
->lasttrans_dest
= lp
->lastload_dest
;
650 lp
->lastload_dest
= 0;
651 lp
->excnak_pending
= 0;
652 lp
->intmask
|= TXFREEflag
|EXCNAKflag
;
658 /* Called by the kernel when transmit times out */
659 void arcnet_timeout(struct net_device
*dev
)
662 struct arcnet_local
*lp
= netdev_priv(dev
);
663 int status
= ASTATUS();
666 spin_lock_irqsave(&lp
->lock
, flags
);
667 if (status
& TXFREEflag
) { /* transmit _DID_ finish */
668 msg
= " - missed IRQ?";
671 dev
->stats
.tx_aborted_errors
++;
673 ACOMMAND(NOTXcmd
| (lp
->cur_tx
<< 3));
675 dev
->stats
.tx_errors
++;
677 /* make sure we didn't miss a TX or a EXC NAK IRQ */
679 lp
->intmask
|= TXFREEflag
|EXCNAKflag
;
680 AINTMASK(lp
->intmask
);
682 spin_unlock_irqrestore(&lp
->lock
, flags
);
684 if (time_after(jiffies
, lp
->last_timeout
+ 10*HZ
)) {
685 BUGMSG(D_EXTRA
, "tx timed out%s (status=%Xh, intmask=%Xh, dest=%02Xh)\n",
686 msg
, status
, lp
->intmask
, lp
->lasttrans_dest
);
687 lp
->last_timeout
= jiffies
;
690 if (lp
->cur_tx
== -1)
691 netif_wake_queue(dev
);
696 * The typical workload of the driver: Handle the network interface
697 * interrupts. Establish which device needs attention, and call the correct
698 * chipset interrupt handler.
700 irqreturn_t
arcnet_interrupt(int irq
, void *dev_id
)
702 struct net_device
*dev
= dev_id
;
703 struct arcnet_local
*lp
;
704 int recbuf
, status
, diagstatus
, didsomething
, boguscount
;
705 int retval
= IRQ_NONE
;
707 BUGMSG(D_DURING
, "\n");
709 BUGMSG(D_DURING
, "in arcnet_interrupt\n");
711 lp
= netdev_priv(dev
);
714 spin_lock(&lp
->lock
);
717 * RESET flag was enabled - if device is not running, we must clear it right
718 * away (but nothing else).
720 if (!netif_running(dev
)) {
721 if (ASTATUS() & RESETflag
)
722 ACOMMAND(CFLAGScmd
| RESETclear
);
724 spin_unlock(&lp
->lock
);
728 BUGMSG(D_DURING
, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n",
729 ASTATUS(), lp
->intmask
);
734 diagstatus
= (status
>> 8) & 0xFF;
736 BUGMSG(D_DEBUG
, "%s: %d: %s: status=%x\n",
737 __FILE__
,__LINE__
,__func__
,status
);
741 * RESET flag was enabled - card is resetting and if RX is
742 * disabled, it's NOT because we just got a packet.
744 * The card is in an undefined state. Clear it out and start over.
746 if (status
& RESETflag
) {
747 BUGMSG(D_NORMAL
, "spurious reset (status=%Xh)\n", status
);
751 /* get out of the interrupt handler! */
755 * RX is inhibited - we must have received something. Prepare to
756 * receive into the next buffer.
758 * We don't actually copy the received packet from the card until
759 * after the transmit handler runs (and possibly launches the next
760 * tx); this should improve latency slightly if we get both types
761 * of interrupts at once.
764 if (status
& lp
->intmask
& NORXflag
) {
766 BUGMSG(D_DURING
, "Buffer #%d: receive irq (status=%Xh)\n",
769 lp
->cur_rx
= get_arcbuf(dev
);
770 if (lp
->cur_rx
!= -1) {
771 BUGMSG(D_DURING
, "enabling receive to buffer #%d\n",
773 ACOMMAND(RXcmd
| (lp
->cur_rx
<< 3) | RXbcasts
);
778 if((diagstatus
& EXCNAKflag
)) {
779 BUGMSG(D_DURING
, "EXCNAK IRQ (diagstat=%Xh)\n",
782 ACOMMAND(NOTXcmd
); /* disable transmit */
783 lp
->excnak_pending
= 1;
785 ACOMMAND(EXCNAKclear
);
786 lp
->intmask
&= ~(EXCNAKflag
);
791 /* a transmit finished, and we're interested in it. */
792 if ((status
& lp
->intmask
& TXFREEflag
) || lp
->timed_out
) {
793 lp
->intmask
&= ~(TXFREEflag
|EXCNAKflag
);
795 BUGMSG(D_DURING
, "TX IRQ (stat=%Xh)\n", status
);
797 if (lp
->cur_tx
!= -1 && !lp
->timed_out
) {
798 if(!(status
& TXACKflag
)) {
799 if (lp
->lasttrans_dest
!= 0) {
801 "transmit was not acknowledged! "
802 "(status=%Xh, dest=%02Xh)\n",
803 status
, lp
->lasttrans_dest
);
804 dev
->stats
.tx_errors
++;
805 dev
->stats
.tx_carrier_errors
++;
808 "broadcast was not acknowledged; that's normal "
809 "(status=%Xh, dest=%02Xh)\n",
810 status
, lp
->lasttrans_dest
);
814 if (lp
->outgoing
.proto
&&
815 lp
->outgoing
.proto
->ack_tx
) {
817 if(status
& TXACKflag
)
819 else if(lp
->excnak_pending
)
825 ->ack_tx(dev
, ackstatus
);
828 if (lp
->cur_tx
!= -1)
829 release_arcbuf(dev
, lp
->cur_tx
);
835 /* send another packet if there is one */
838 /* continue a split packet, if any */
839 if (lp
->outgoing
.proto
&& lp
->outgoing
.proto
->continue_tx
) {
840 int txbuf
= get_arcbuf(dev
);
842 if (lp
->outgoing
.proto
->continue_tx(dev
, txbuf
)) {
843 /* that was the last segment */
844 dev
->stats
.tx_bytes
+= lp
->outgoing
.skb
->len
;
845 if(!lp
->outgoing
.proto
->ack_tx
)
847 dev_kfree_skb_irq(lp
->outgoing
.skb
);
848 lp
->outgoing
.proto
= NULL
;
854 /* inform upper layers of idleness, if necessary */
855 if (lp
->cur_tx
== -1)
856 netif_wake_queue(dev
);
858 /* now process the received packet, if any */
860 BUGLVL(D_RX
) arcnet_dump_packet(dev
, recbuf
, "rx irq", 0);
862 arcnet_rx(dev
, recbuf
);
863 release_arcbuf(dev
, recbuf
);
867 if (status
& lp
->intmask
& RECONflag
) {
868 ACOMMAND(CFLAGScmd
| CONFIGclear
);
869 dev
->stats
.tx_carrier_errors
++;
871 BUGMSG(D_RECON
, "Network reconfiguration detected (status=%Xh)\n",
873 /* MYRECON bit is at bit 7 of diagstatus */
874 if(diagstatus
& 0x80)
875 BUGMSG(D_RECON
,"Put out that recon myself\n");
877 /* is the RECON info empty or old? */
878 if (!lp
->first_recon
|| !lp
->last_recon
||
879 time_after(jiffies
, lp
->last_recon
+ HZ
* 10)) {
880 if (lp
->network_down
)
881 BUGMSG(D_NORMAL
, "reconfiguration detected: cabling restored?\n");
882 lp
->first_recon
= lp
->last_recon
= jiffies
;
883 lp
->num_recons
= lp
->network_down
= 0;
885 BUGMSG(D_DURING
, "recon: clearing counters.\n");
886 } else { /* add to current RECON counter */
887 lp
->last_recon
= jiffies
;
890 BUGMSG(D_DURING
, "recon: counter=%d, time=%lds, net=%d\n",
892 (lp
->last_recon
- lp
->first_recon
) / HZ
,
895 /* if network is marked up;
896 * and first_recon and last_recon are 60+ apart;
897 * and the average no. of recons counted is
898 * > RECON_THRESHOLD/min;
899 * then print a warning message.
901 if (!lp
->network_down
&&
902 (lp
->last_recon
- lp
->first_recon
) <= HZ
* 60 &&
903 lp
->num_recons
>= RECON_THRESHOLD
) {
904 lp
->network_down
= 1;
905 BUGMSG(D_NORMAL
, "many reconfigurations detected: cabling problem?\n");
906 } else if (!lp
->network_down
&&
907 lp
->last_recon
- lp
->first_recon
> HZ
* 60) {
908 /* reset counters if we've gone for over a minute. */
909 lp
->first_recon
= lp
->last_recon
;
913 } else if (lp
->network_down
&&
914 time_after(jiffies
, lp
->last_recon
+ HZ
* 10)) {
915 if (lp
->network_down
)
916 BUGMSG(D_NORMAL
, "cabling restored?\n");
917 lp
->first_recon
= lp
->last_recon
= 0;
918 lp
->num_recons
= lp
->network_down
= 0;
920 BUGMSG(D_DURING
, "not recon: clearing counters anyway.\n");
924 retval
|= IRQ_HANDLED
;
927 while (--boguscount
&& didsomething
);
929 BUGMSG(D_DURING
, "arcnet_interrupt complete (status=%Xh, count=%d)\n",
930 ASTATUS(), boguscount
);
931 BUGMSG(D_DURING
, "\n");
936 AINTMASK(lp
->intmask
);
938 spin_unlock(&lp
->lock
);
944 * This is a generic packet receiver that calls arcnet??_rx depending on the
947 static void arcnet_rx(struct net_device
*dev
, int bufnum
)
949 struct arcnet_local
*lp
= netdev_priv(dev
);
951 struct arc_rfc1201
*soft
;
954 soft
= &pkt
.soft
.rfc1201
;
956 lp
->hw
.copy_from_card(dev
, bufnum
, 0, &pkt
, ARC_HDR_SIZE
);
957 if (pkt
.hard
.offset
[0]) {
958 ofs
= pkt
.hard
.offset
[0];
961 ofs
= pkt
.hard
.offset
[1];
965 /* get the full header, if possible */
966 if (sizeof(pkt
.soft
) <= length
)
967 lp
->hw
.copy_from_card(dev
, bufnum
, ofs
, soft
, sizeof(pkt
.soft
));
969 memset(&pkt
.soft
, 0, sizeof(pkt
.soft
));
970 lp
->hw
.copy_from_card(dev
, bufnum
, ofs
, soft
, length
);
973 BUGMSG(D_DURING
, "Buffer #%d: received packet from %02Xh to %02Xh "
975 bufnum
, pkt
.hard
.source
, pkt
.hard
.dest
, length
);
977 dev
->stats
.rx_packets
++;
978 dev
->stats
.rx_bytes
+= length
+ ARC_HDR_SIZE
;
980 /* call the right receiver for the protocol */
981 if (arc_proto_map
[soft
->proto
]->is_ip
) {
984 *oldp
= arc_proto_map
[lp
->default_proto
[pkt
.hard
.source
]],
985 *newp
= arc_proto_map
[soft
->proto
];
989 "got protocol %02Xh; encap for host %02Xh is now '%c'"
990 " (was '%c')\n", soft
->proto
, pkt
.hard
.source
,
991 newp
->suffix
, oldp
->suffix
);
995 /* broadcasts will always be done with the last-used encap. */
996 lp
->default_proto
[0] = soft
->proto
;
998 /* in striking contrast, the following isn't a hack. */
999 lp
->default_proto
[pkt
.hard
.source
] = soft
->proto
;
1001 /* call the protocol-specific receiver. */
1002 arc_proto_map
[soft
->proto
]->rx(dev
, bufnum
, &pkt
, length
);
1006 static void null_rx(struct net_device
*dev
, int bufnum
,
1007 struct archdr
*pkthdr
, int length
)
1010 "rx: don't know how to deal with proto %02Xh from host %02Xh.\n",
1011 pkthdr
->soft
.rfc1201
.proto
, pkthdr
->hard
.source
);
1015 static int null_build_header(struct sk_buff
*skb
, struct net_device
*dev
,
1016 unsigned short type
, uint8_t daddr
)
1018 struct arcnet_local
*lp
= netdev_priv(dev
);
1021 "tx: can't build header for encap %02Xh; load a protocol driver.\n",
1022 lp
->default_proto
[daddr
]);
1029 /* the "do nothing" prepare_tx function warns that there's nothing to do. */
1030 static int null_prepare_tx(struct net_device
*dev
, struct archdr
*pkt
,
1031 int length
, int bufnum
)
1033 struct arcnet_local
*lp
= netdev_priv(dev
);
1034 struct arc_hardware newpkt
;
1036 BUGMSG(D_PROTO
, "tx: no encap for this host; load a protocol driver.\n");
1038 /* send a packet to myself -- will never get received, of course */
1039 newpkt
.source
= newpkt
.dest
= dev
->dev_addr
[0];
1041 /* only one byte of actual data (and it's random) */
1042 newpkt
.offset
[0] = 0xFF;
1044 lp
->hw
.copy_to_card(dev
, bufnum
, 0, &newpkt
, ARC_HDR_SIZE
);
1046 return 1; /* done */