xref: /linux/drivers/net/arcnet/arcnet.c (revision 83a37b3292f4aca799b355179ad6fbdd78a08e10)
1 /*
2  * Linux ARCnet driver - device-independent routines
3  *
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.
8  *
9  * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
10  *  for sponsoring the further development of this driver.
11  *
12  * **********************
13  *
14  * The original copyright was as follows:
15  *
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.
21  *
22  * **********************
23  *
24  * The change log is now in a file called ChangeLog in this directory.
25  *
26  * Sources:
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
41  *     <jojo@repas.de>
42  */
43 
44 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45 
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>
51 #include <net/arp.h>
52 #include <linux/init.h>
53 #include <linux/jiffies.h>
54 #include <linux/errqueue.h>
55 
56 #include <linux/leds.h>
57 
58 #include "arcdevice.h"
59 #include "com9026.h"
60 
61 /* "do nothing" functions for protocol drivers */
62 static void null_rx(struct net_device *dev, int bufnum,
63 		    struct archdr *pkthdr, int length);
64 static int null_build_header(struct sk_buff *skb, struct net_device *dev,
65 			     unsigned short type, uint8_t daddr);
66 static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
67 			   int length, int bufnum);
68 
69 static void arcnet_rx(struct net_device *dev, int bufnum);
70 
71 /* one ArcProto per possible proto ID.  None of the elements of
72  * arc_proto_map are allowed to be NULL; they will get set to
73  * arc_proto_default instead.  It also must not be NULL; if you would like
74  * to set it to NULL, set it to &arc_proto_null instead.
75  */
76 struct ArcProto *arc_proto_map[256];
77 EXPORT_SYMBOL(arc_proto_map);
78 
79 struct ArcProto *arc_proto_default;
80 EXPORT_SYMBOL(arc_proto_default);
81 
82 struct ArcProto *arc_bcast_proto;
83 EXPORT_SYMBOL(arc_bcast_proto);
84 
85 struct ArcProto *arc_raw_proto;
86 EXPORT_SYMBOL(arc_raw_proto);
87 
88 static struct ArcProto arc_proto_null = {
89 	.suffix		= '?',
90 	.mtu		= XMTU,
91 	.is_ip          = 0,
92 	.rx		= null_rx,
93 	.build_header	= null_build_header,
94 	.prepare_tx	= null_prepare_tx,
95 	.continue_tx    = NULL,
96 	.ack_tx         = NULL
97 };
98 
99 /* Exported function prototypes */
100 int arcnet_debug = ARCNET_DEBUG;
101 EXPORT_SYMBOL(arcnet_debug);
102 
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);
108 
109 static int debug = ARCNET_DEBUG;
110 module_param(debug, int, 0);
111 MODULE_LICENSE("GPL");
112 
113 static int __init arcnet_init(void)
114 {
115 	int count;
116 
117 	arcnet_debug = debug;
118 
119 	pr_info("arcnet loaded\n");
120 
121 	/* initialize the protocol map */
122 	arc_raw_proto = arc_proto_default = arc_bcast_proto = &arc_proto_null;
123 	for (count = 0; count < 256; count++)
124 		arc_proto_map[count] = arc_proto_default;
125 
126 	if (BUGLVL(D_DURING))
127 		pr_info("struct sizes: %zd %zd %zd %zd %zd\n",
128 			sizeof(struct arc_hardware),
129 			sizeof(struct arc_rfc1201),
130 			sizeof(struct arc_rfc1051),
131 			sizeof(struct arc_eth_encap),
132 			sizeof(struct archdr));
133 
134 	return 0;
135 }
136 
137 static void __exit arcnet_exit(void)
138 {
139 }
140 
141 module_init(arcnet_init);
142 module_exit(arcnet_exit);
143 
144 /* Dump the contents of an sk_buff */
145 #if ARCNET_DEBUG_MAX & D_SKB
146 void arcnet_dump_skb(struct net_device *dev,
147 		     struct sk_buff *skb, char *desc)
148 {
149 	char hdr[32];
150 
151 	/* dump the packet */
152 	snprintf(hdr, sizeof(hdr), "%6s:%s skb->data:", dev->name, desc);
153 	print_hex_dump(KERN_DEBUG, hdr, DUMP_PREFIX_OFFSET,
154 		       16, 1, skb->data, skb->len, true);
155 }
156 EXPORT_SYMBOL(arcnet_dump_skb);
157 #endif
158 
159 /* Dump the contents of an ARCnet buffer */
160 #if (ARCNET_DEBUG_MAX & (D_RX | D_TX))
161 static void arcnet_dump_packet(struct net_device *dev, int bufnum,
162 			       char *desc, int take_arcnet_lock)
163 {
164 	struct arcnet_local *lp = netdev_priv(dev);
165 	int i, length;
166 	unsigned long flags = 0;
167 	static uint8_t buf[512];
168 	char hdr[32];
169 
170 	/* hw.copy_from_card expects IRQ context so take the IRQ lock
171 	 * to keep it single threaded
172 	 */
173 	if (take_arcnet_lock)
174 		spin_lock_irqsave(&lp->lock, flags);
175 
176 	lp->hw.copy_from_card(dev, bufnum, 0, buf, 512);
177 	if (take_arcnet_lock)
178 		spin_unlock_irqrestore(&lp->lock, flags);
179 
180 	/* if the offset[0] byte is nonzero, this is a 256-byte packet */
181 	length = (buf[2] ? 256 : 512);
182 
183 	/* dump the packet */
184 	snprintf(hdr, sizeof(hdr), "%6s:%s packet dump:", dev->name, desc);
185 	print_hex_dump(KERN_DEBUG, hdr, DUMP_PREFIX_OFFSET,
186 		       16, 1, buf, length, true);
187 }
188 
189 #else
190 
191 #define arcnet_dump_packet(dev, bufnum, desc, take_arcnet_lock) do { } while (0)
192 
193 #endif
194 
195 /* Trigger a LED event in response to a ARCNET device event */
196 void arcnet_led_event(struct net_device *dev, enum arcnet_led_event event)
197 {
198 	struct arcnet_local *lp = netdev_priv(dev);
199 	unsigned long led_delay = 350;
200 	unsigned long tx_delay = 50;
201 
202 	switch (event) {
203 	case ARCNET_LED_EVENT_RECON:
204 		led_trigger_blink_oneshot(lp->recon_led_trig,
205 					  &led_delay, &led_delay, 0);
206 		break;
207 	case ARCNET_LED_EVENT_OPEN:
208 		led_trigger_event(lp->tx_led_trig, LED_OFF);
209 		led_trigger_event(lp->recon_led_trig, LED_OFF);
210 		break;
211 	case ARCNET_LED_EVENT_STOP:
212 		led_trigger_event(lp->tx_led_trig, LED_OFF);
213 		led_trigger_event(lp->recon_led_trig, LED_OFF);
214 		break;
215 	case ARCNET_LED_EVENT_TX:
216 		led_trigger_blink_oneshot(lp->tx_led_trig,
217 					  &tx_delay, &tx_delay, 0);
218 		break;
219 	}
220 }
221 EXPORT_SYMBOL_GPL(arcnet_led_event);
222 
223 static void arcnet_led_release(struct device *gendev, void *res)
224 {
225 	struct arcnet_local *lp = netdev_priv(to_net_dev(gendev));
226 
227 	led_trigger_unregister_simple(lp->tx_led_trig);
228 	led_trigger_unregister_simple(lp->recon_led_trig);
229 }
230 
231 /* Register ARCNET LED triggers for a arcnet device
232  *
233  * This is normally called from a driver's probe function
234  */
235 void devm_arcnet_led_init(struct net_device *netdev, int index, int subid)
236 {
237 	struct arcnet_local *lp = netdev_priv(netdev);
238 	void *res;
239 
240 	res = devres_alloc(arcnet_led_release, 0, GFP_KERNEL);
241 	if (!res) {
242 		netdev_err(netdev, "cannot register LED triggers\n");
243 		return;
244 	}
245 
246 	snprintf(lp->tx_led_trig_name, sizeof(lp->tx_led_trig_name),
247 		 "arc%d-%d-tx", index, subid);
248 	snprintf(lp->recon_led_trig_name, sizeof(lp->recon_led_trig_name),
249 		 "arc%d-%d-recon", index, subid);
250 
251 	led_trigger_register_simple(lp->tx_led_trig_name,
252 				    &lp->tx_led_trig);
253 	led_trigger_register_simple(lp->recon_led_trig_name,
254 				    &lp->recon_led_trig);
255 
256 	devres_add(&netdev->dev, res);
257 }
258 EXPORT_SYMBOL_GPL(devm_arcnet_led_init);
259 
260 /* Unregister a protocol driver from the arc_proto_map.  Protocol drivers
261  * are responsible for registering themselves, but the unregister routine
262  * is pretty generic so we'll do it here.
263  */
264 void arcnet_unregister_proto(struct ArcProto *proto)
265 {
266 	int count;
267 
268 	if (arc_proto_default == proto)
269 		arc_proto_default = &arc_proto_null;
270 	if (arc_bcast_proto == proto)
271 		arc_bcast_proto = arc_proto_default;
272 	if (arc_raw_proto == proto)
273 		arc_raw_proto = arc_proto_default;
274 
275 	for (count = 0; count < 256; count++) {
276 		if (arc_proto_map[count] == proto)
277 			arc_proto_map[count] = arc_proto_default;
278 	}
279 }
280 EXPORT_SYMBOL(arcnet_unregister_proto);
281 
282 /* Add a buffer to the queue.  Only the interrupt handler is allowed to do
283  * this, unless interrupts are disabled.
284  *
285  * Note: we don't check for a full queue, since there aren't enough buffers
286  * to more than fill it.
287  */
288 static void release_arcbuf(struct net_device *dev, int bufnum)
289 {
290 	struct arcnet_local *lp = netdev_priv(dev);
291 	int i;
292 
293 	lp->buf_queue[lp->first_free_buf++] = bufnum;
294 	lp->first_free_buf %= 5;
295 
296 	if (BUGLVL(D_DURING)) {
297 		arc_printk(D_DURING, dev, "release_arcbuf: freed #%d; buffer queue is now: ",
298 			   bufnum);
299 		for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
300 			arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
301 		arc_cont(D_DURING, "\n");
302 	}
303 }
304 
305 /* Get a buffer from the queue.
306  * If this returns -1, there are no buffers available.
307  */
308 static int get_arcbuf(struct net_device *dev)
309 {
310 	struct arcnet_local *lp = netdev_priv(dev);
311 	int buf = -1, i;
312 
313 	if (!atomic_dec_and_test(&lp->buf_lock)) {
314 		/* already in this function */
315 		arc_printk(D_NORMAL, dev, "get_arcbuf: overlap (%d)!\n",
316 			   lp->buf_lock.counter);
317 	} else {			/* we can continue */
318 		if (lp->next_buf >= 5)
319 			lp->next_buf -= 5;
320 
321 		if (lp->next_buf == lp->first_free_buf) {
322 			arc_printk(D_NORMAL, dev, "get_arcbuf: BUG: no buffers are available??\n");
323 		} else {
324 			buf = lp->buf_queue[lp->next_buf++];
325 			lp->next_buf %= 5;
326 		}
327 	}
328 
329 	if (BUGLVL(D_DURING)) {
330 		arc_printk(D_DURING, dev, "get_arcbuf: got #%d; buffer queue is now: ",
331 			   buf);
332 		for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
333 			arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
334 		arc_cont(D_DURING, "\n");
335 	}
336 
337 	atomic_inc(&lp->buf_lock);
338 	return buf;
339 }
340 
341 static int choose_mtu(void)
342 {
343 	int count, mtu = 65535;
344 
345 	/* choose the smallest MTU of all available encaps */
346 	for (count = 0; count < 256; count++) {
347 		if (arc_proto_map[count] != &arc_proto_null &&
348 		    arc_proto_map[count]->mtu < mtu) {
349 			mtu = arc_proto_map[count]->mtu;
350 		}
351 	}
352 
353 	return mtu == 65535 ? XMTU : mtu;
354 }
355 
356 static const struct header_ops arcnet_header_ops = {
357 	.create = arcnet_header,
358 };
359 
360 static const struct net_device_ops arcnet_netdev_ops = {
361 	.ndo_open	= arcnet_open,
362 	.ndo_stop	= arcnet_close,
363 	.ndo_start_xmit = arcnet_send_packet,
364 	.ndo_tx_timeout = arcnet_timeout,
365 };
366 
367 /* Setup a struct device for ARCnet. */
368 static void arcdev_setup(struct net_device *dev)
369 {
370 	dev->type = ARPHRD_ARCNET;
371 	dev->netdev_ops = &arcnet_netdev_ops;
372 	dev->header_ops = &arcnet_header_ops;
373 	dev->hard_header_len = sizeof(struct arc_hardware);
374 	dev->mtu = choose_mtu();
375 
376 	dev->addr_len = ARCNET_ALEN;
377 	dev->tx_queue_len = 100;
378 	dev->broadcast[0] = 0x00;	/* for us, broadcasts are address 0 */
379 	dev->watchdog_timeo = TX_TIMEOUT;
380 
381 	/* New-style flags. */
382 	dev->flags = IFF_BROADCAST;
383 }
384 
385 static void arcnet_timer(unsigned long data)
386 {
387 	struct net_device *dev = (struct net_device *)data;
388 
389 	if (!netif_carrier_ok(dev)) {
390 		netif_carrier_on(dev);
391 		netdev_info(dev, "link up\n");
392 	}
393 }
394 
395 static void arcnet_reply_tasklet(unsigned long data)
396 {
397 	struct arcnet_local *lp = (struct arcnet_local *)data;
398 
399 	struct sk_buff *ackskb, *skb;
400 	struct sock_exterr_skb *serr;
401 	struct sock *sk;
402 	int ret;
403 
404 	local_irq_disable();
405 	skb = lp->outgoing.skb;
406 	if (!skb || !skb->sk) {
407 		local_irq_enable();
408 		return;
409 	}
410 
411 	sock_hold(skb->sk);
412 	sk = skb->sk;
413 	ackskb = skb_clone_sk(skb);
414 	sock_put(skb->sk);
415 
416 	if (!ackskb) {
417 		local_irq_enable();
418 		return;
419 	}
420 
421 	serr = SKB_EXT_ERR(ackskb);
422 	memset(serr, 0, sizeof(*serr));
423 	serr->ee.ee_errno = ENOMSG;
424 	serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
425 	serr->ee.ee_data = skb_shinfo(skb)->tskey;
426 	serr->ee.ee_info = lp->reply_status;
427 
428 	/* finally erasing outgoing skb */
429 	dev_kfree_skb(lp->outgoing.skb);
430 	lp->outgoing.skb = NULL;
431 
432 	ackskb->dev = lp->dev;
433 
434 	ret = sock_queue_err_skb(sk, ackskb);
435 	if (ret)
436 		kfree_skb(ackskb);
437 
438 	local_irq_enable();
439 };
440 
441 struct net_device *alloc_arcdev(const char *name)
442 {
443 	struct net_device *dev;
444 
445 	dev = alloc_netdev(sizeof(struct arcnet_local),
446 			   name && *name ? name : "arc%d", NET_NAME_UNKNOWN,
447 			   arcdev_setup);
448 	if (dev) {
449 		struct arcnet_local *lp = netdev_priv(dev);
450 
451 		lp->dev = dev;
452 		spin_lock_init(&lp->lock);
453 		setup_timer(&lp->timer, arcnet_timer, (unsigned long)dev);
454 	}
455 
456 	return dev;
457 }
458 EXPORT_SYMBOL(alloc_arcdev);
459 
460 /* Open/initialize the board.  This is called sometime after booting when
461  * the 'ifconfig' program is run.
462  *
463  * This routine should set everything up anew at each open, even registers
464  * that "should" only need to be set once at boot, so that there is
465  * non-reboot way to recover if something goes wrong.
466  */
467 int arcnet_open(struct net_device *dev)
468 {
469 	struct arcnet_local *lp = netdev_priv(dev);
470 	int count, newmtu, error;
471 
472 	arc_printk(D_INIT, dev, "opened.");
473 
474 	if (!try_module_get(lp->hw.owner))
475 		return -ENODEV;
476 
477 	if (BUGLVL(D_PROTO)) {
478 		arc_printk(D_PROTO, dev, "protocol map (default is '%c'): ",
479 			   arc_proto_default->suffix);
480 		for (count = 0; count < 256; count++)
481 			arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix);
482 		arc_cont(D_PROTO, "\n");
483 	}
484 
485 	tasklet_init(&lp->reply_tasklet, arcnet_reply_tasklet,
486 		     (unsigned long)lp);
487 
488 	arc_printk(D_INIT, dev, "arcnet_open: resetting card.\n");
489 
490 	/* try to put the card in a defined state - if it fails the first
491 	 * time, actually reset it.
492 	 */
493 	error = -ENODEV;
494 	if (lp->hw.reset(dev, 0) && lp->hw.reset(dev, 1))
495 		goto out_module_put;
496 
497 	newmtu = choose_mtu();
498 	if (newmtu < dev->mtu)
499 		dev->mtu = newmtu;
500 
501 	arc_printk(D_INIT, dev, "arcnet_open: mtu: %d.\n", dev->mtu);
502 
503 	/* autodetect the encapsulation for each host. */
504 	memset(lp->default_proto, 0, sizeof(lp->default_proto));
505 
506 	/* the broadcast address is special - use the 'bcast' protocol */
507 	for (count = 0; count < 256; count++) {
508 		if (arc_proto_map[count] == arc_bcast_proto) {
509 			lp->default_proto[0] = count;
510 			break;
511 		}
512 	}
513 
514 	/* initialize buffers */
515 	atomic_set(&lp->buf_lock, 1);
516 
517 	lp->next_buf = lp->first_free_buf = 0;
518 	release_arcbuf(dev, 0);
519 	release_arcbuf(dev, 1);
520 	release_arcbuf(dev, 2);
521 	release_arcbuf(dev, 3);
522 	lp->cur_tx = lp->next_tx = -1;
523 	lp->cur_rx = -1;
524 
525 	lp->rfc1201.sequence = 1;
526 
527 	/* bring up the hardware driver */
528 	if (lp->hw.open)
529 		lp->hw.open(dev);
530 
531 	if (dev->dev_addr[0] == 0)
532 		arc_printk(D_NORMAL, dev, "WARNING!  Station address 00 is reserved for broadcasts!\n");
533 	else if (dev->dev_addr[0] == 255)
534 		arc_printk(D_NORMAL, dev, "WARNING!  Station address FF may confuse DOS networking programs!\n");
535 
536 	arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
537 	if (lp->hw.status(dev) & RESETflag) {
538 		arc_printk(D_DEBUG, dev, "%s: %d: %s\n",
539 			   __FILE__, __LINE__, __func__);
540 		lp->hw.command(dev, CFLAGScmd | RESETclear);
541 	}
542 
543 	arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
544 	/* make sure we're ready to receive IRQ's. */
545 	lp->hw.intmask(dev, 0);
546 	udelay(1);		/* give it time to set the mask before
547 				 * we reset it again. (may not even be
548 				 * necessary)
549 				 */
550 	arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
551 	lp->intmask = NORXflag | RECONflag;
552 	lp->hw.intmask(dev, lp->intmask);
553 	arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
554 
555 	netif_carrier_off(dev);
556 	netif_start_queue(dev);
557 	mod_timer(&lp->timer, jiffies + msecs_to_jiffies(1000));
558 
559 	arcnet_led_event(dev, ARCNET_LED_EVENT_OPEN);
560 	return 0;
561 
562  out_module_put:
563 	module_put(lp->hw.owner);
564 	return error;
565 }
566 EXPORT_SYMBOL(arcnet_open);
567 
568 /* The inverse routine to arcnet_open - shuts down the card. */
569 int arcnet_close(struct net_device *dev)
570 {
571 	struct arcnet_local *lp = netdev_priv(dev);
572 
573 	arcnet_led_event(dev, ARCNET_LED_EVENT_STOP);
574 	del_timer_sync(&lp->timer);
575 
576 	netif_stop_queue(dev);
577 	netif_carrier_off(dev);
578 
579 	tasklet_kill(&lp->reply_tasklet);
580 
581 	/* flush TX and disable RX */
582 	lp->hw.intmask(dev, 0);
583 	lp->hw.command(dev, NOTXcmd);	/* stop transmit */
584 	lp->hw.command(dev, NORXcmd);	/* disable receive */
585 	mdelay(1);
586 
587 	/* shut down the card */
588 	lp->hw.close(dev);
589 	module_put(lp->hw.owner);
590 	return 0;
591 }
592 EXPORT_SYMBOL(arcnet_close);
593 
594 static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
595 			 unsigned short type, const void *daddr,
596 			 const void *saddr, unsigned len)
597 {
598 	const struct arcnet_local *lp = netdev_priv(dev);
599 	uint8_t _daddr, proto_num;
600 	struct ArcProto *proto;
601 
602 	arc_printk(D_DURING, dev,
603 		   "create header from %d to %d; protocol %d (%Xh); size %u.\n",
604 		   saddr ? *(uint8_t *)saddr : -1,
605 		   daddr ? *(uint8_t *)daddr : -1,
606 		   type, type, len);
607 
608 	if (skb->len != 0 && len != skb->len)
609 		arc_printk(D_NORMAL, dev, "arcnet_header: Yikes!  skb->len(%d) != len(%d)!\n",
610 			   skb->len, len);
611 
612 	/* Type is host order - ? */
613 	if (type == ETH_P_ARCNET) {
614 		proto = arc_raw_proto;
615 		arc_printk(D_DEBUG, dev, "arc_raw_proto used. proto='%c'\n",
616 			   proto->suffix);
617 		_daddr = daddr ? *(uint8_t *)daddr : 0;
618 	} else if (!daddr) {
619 		/* if the dest addr isn't provided, we can't choose an
620 		 * encapsulation!  Store the packet type (eg. ETH_P_IP)
621 		 * for now, and we'll push on a real header when we do
622 		 * rebuild_header.
623 		 */
624 		*(uint16_t *)skb_push(skb, 2) = type;
625 		/* XXX: Why not use skb->mac_len? */
626 		if (skb->network_header - skb->mac_header != 2)
627 			arc_printk(D_NORMAL, dev, "arcnet_header: Yikes!  diff (%u) is not 2!\n",
628 				   skb->network_header - skb->mac_header);
629 		return -2;	/* return error -- can't transmit yet! */
630 	} else {
631 		/* otherwise, we can just add the header as usual. */
632 		_daddr = *(uint8_t *)daddr;
633 		proto_num = lp->default_proto[_daddr];
634 		proto = arc_proto_map[proto_num];
635 		arc_printk(D_DURING, dev, "building header for %02Xh using protocol '%c'\n",
636 			   proto_num, proto->suffix);
637 		if (proto == &arc_proto_null && arc_bcast_proto != proto) {
638 			arc_printk(D_DURING, dev, "actually, let's use '%c' instead.\n",
639 				   arc_bcast_proto->suffix);
640 			proto = arc_bcast_proto;
641 		}
642 	}
643 	return proto->build_header(skb, dev, type, _daddr);
644 }
645 
646 /* Called by the kernel in order to transmit a packet. */
647 netdev_tx_t arcnet_send_packet(struct sk_buff *skb,
648 			       struct net_device *dev)
649 {
650 	struct arcnet_local *lp = netdev_priv(dev);
651 	struct archdr *pkt;
652 	struct arc_rfc1201 *soft;
653 	struct ArcProto *proto;
654 	int txbuf;
655 	unsigned long flags;
656 	int retval;
657 
658 	arc_printk(D_DURING, dev,
659 		   "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n",
660 		   lp->hw.status(dev), lp->cur_tx, lp->next_tx, skb->len, skb->protocol);
661 
662 	pkt = (struct archdr *)skb->data;
663 	soft = &pkt->soft.rfc1201;
664 	proto = arc_proto_map[soft->proto];
665 
666 	arc_printk(D_SKB_SIZE, dev, "skb: transmitting %d bytes to %02X\n",
667 		   skb->len, pkt->hard.dest);
668 	if (BUGLVL(D_SKB))
669 		arcnet_dump_skb(dev, skb, "tx");
670 
671 	/* fits in one packet? */
672 	if (skb->len - ARC_HDR_SIZE > XMTU && !proto->continue_tx) {
673 		arc_printk(D_NORMAL, dev, "fixme: packet too large: compensating badly!\n");
674 		dev_kfree_skb(skb);
675 		return NETDEV_TX_OK;	/* don't try again */
676 	}
677 
678 	/* We're busy transmitting a packet... */
679 	netif_stop_queue(dev);
680 
681 	spin_lock_irqsave(&lp->lock, flags);
682 	lp->hw.intmask(dev, 0);
683 	if (lp->next_tx == -1)
684 		txbuf = get_arcbuf(dev);
685 	else
686 		txbuf = -1;
687 
688 	if (txbuf != -1) {
689 		lp->outgoing.skb = skb;
690 		if (proto->prepare_tx(dev, pkt, skb->len, txbuf) &&
691 		    !proto->ack_tx) {
692 			/* done right away and we don't want to acknowledge
693 			 *  the package later - forget about it now
694 			 */
695 			dev->stats.tx_bytes += skb->len;
696 		} else {
697 			/* do it the 'split' way */
698 			lp->outgoing.proto = proto;
699 			lp->outgoing.skb = skb;
700 			lp->outgoing.pkt = pkt;
701 
702 			if (proto->continue_tx &&
703 			    proto->continue_tx(dev, txbuf)) {
704 				arc_printk(D_NORMAL, dev,
705 					   "bug! continue_tx finished the first time! (proto='%c')\n",
706 					   proto->suffix);
707 			}
708 		}
709 		retval = NETDEV_TX_OK;
710 		lp->next_tx = txbuf;
711 	} else {
712 		retval = NETDEV_TX_BUSY;
713 	}
714 
715 	arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
716 		   __FILE__, __LINE__, __func__, lp->hw.status(dev));
717 	/* make sure we didn't ignore a TX IRQ while we were in here */
718 	lp->hw.intmask(dev, 0);
719 
720 	arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
721 	lp->intmask |= TXFREEflag | EXCNAKflag;
722 	lp->hw.intmask(dev, lp->intmask);
723 	arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
724 		   __FILE__, __LINE__, __func__, lp->hw.status(dev));
725 
726 	arcnet_led_event(dev, ARCNET_LED_EVENT_TX);
727 
728 	spin_unlock_irqrestore(&lp->lock, flags);
729 	return retval;		/* no need to try again */
730 }
731 EXPORT_SYMBOL(arcnet_send_packet);
732 
733 /* Actually start transmitting a packet that was loaded into a buffer
734  * by prepare_tx.  This should _only_ be called by the interrupt handler.
735  */
736 static int go_tx(struct net_device *dev)
737 {
738 	struct arcnet_local *lp = netdev_priv(dev);
739 
740 	arc_printk(D_DURING, dev, "go_tx: status=%Xh, intmask=%Xh, next_tx=%d, cur_tx=%d\n",
741 		   lp->hw.status(dev), lp->intmask, lp->next_tx, lp->cur_tx);
742 
743 	if (lp->cur_tx != -1 || lp->next_tx == -1)
744 		return 0;
745 
746 	if (BUGLVL(D_TX))
747 		arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0);
748 
749 	lp->cur_tx = lp->next_tx;
750 	lp->next_tx = -1;
751 
752 	/* start sending */
753 	lp->hw.command(dev, TXcmd | (lp->cur_tx << 3));
754 
755 	dev->stats.tx_packets++;
756 	lp->lasttrans_dest = lp->lastload_dest;
757 	lp->lastload_dest = 0;
758 	lp->excnak_pending = 0;
759 	lp->intmask |= TXFREEflag | EXCNAKflag;
760 
761 	return 1;
762 }
763 
764 /* Called by the kernel when transmit times out */
765 void arcnet_timeout(struct net_device *dev)
766 {
767 	unsigned long flags;
768 	struct arcnet_local *lp = netdev_priv(dev);
769 	int status = lp->hw.status(dev);
770 	char *msg;
771 
772 	spin_lock_irqsave(&lp->lock, flags);
773 	if (status & TXFREEflag) {	/* transmit _DID_ finish */
774 		msg = " - missed IRQ?";
775 	} else {
776 		msg = "";
777 		dev->stats.tx_aborted_errors++;
778 		lp->timed_out = 1;
779 		lp->hw.command(dev, NOTXcmd | (lp->cur_tx << 3));
780 	}
781 	dev->stats.tx_errors++;
782 
783 	/* make sure we didn't miss a TX or a EXC NAK IRQ */
784 	lp->hw.intmask(dev, 0);
785 	lp->intmask |= TXFREEflag | EXCNAKflag;
786 	lp->hw.intmask(dev, lp->intmask);
787 
788 	spin_unlock_irqrestore(&lp->lock, flags);
789 
790 	if (time_after(jiffies, lp->last_timeout + 10 * HZ)) {
791 		arc_printk(D_EXTRA, dev, "tx timed out%s (status=%Xh, intmask=%Xh, dest=%02Xh)\n",
792 			   msg, status, lp->intmask, lp->lasttrans_dest);
793 		lp->last_timeout = jiffies;
794 	}
795 
796 	if (lp->cur_tx == -1)
797 		netif_wake_queue(dev);
798 }
799 EXPORT_SYMBOL(arcnet_timeout);
800 
801 /* The typical workload of the driver: Handle the network interface
802  * interrupts. Establish which device needs attention, and call the correct
803  * chipset interrupt handler.
804  */
805 irqreturn_t arcnet_interrupt(int irq, void *dev_id)
806 {
807 	struct net_device *dev = dev_id;
808 	struct arcnet_local *lp;
809 	int recbuf, status, diagstatus, didsomething, boguscount;
810 	unsigned long flags;
811 	int retval = IRQ_NONE;
812 
813 	arc_printk(D_DURING, dev, "\n");
814 
815 	arc_printk(D_DURING, dev, "in arcnet_interrupt\n");
816 
817 	lp = netdev_priv(dev);
818 	BUG_ON(!lp);
819 
820 	spin_lock_irqsave(&lp->lock, flags);
821 
822 	/* RESET flag was enabled - if device is not running, we must
823 	 * clear it right away (but nothing else).
824 	 */
825 	if (!netif_running(dev)) {
826 		if (lp->hw.status(dev) & RESETflag)
827 			lp->hw.command(dev, CFLAGScmd | RESETclear);
828 		lp->hw.intmask(dev, 0);
829 		spin_unlock_irqrestore(&lp->lock, flags);
830 		return retval;
831 	}
832 
833 	arc_printk(D_DURING, dev, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n",
834 		   lp->hw.status(dev), lp->intmask);
835 
836 	boguscount = 5;
837 	do {
838 		status = lp->hw.status(dev);
839 		diagstatus = (status >> 8) & 0xFF;
840 
841 		arc_printk(D_DEBUG, dev, "%s: %d: %s: status=%x\n",
842 			   __FILE__, __LINE__, __func__, status);
843 		didsomething = 0;
844 
845 		/* RESET flag was enabled - card is resetting and if RX is
846 		 * disabled, it's NOT because we just got a packet.
847 		 *
848 		 * The card is in an undefined state.
849 		 * Clear it out and start over.
850 		 */
851 		if (status & RESETflag) {
852 			arc_printk(D_NORMAL, dev, "spurious reset (status=%Xh)\n",
853 				   status);
854 			arcnet_close(dev);
855 			arcnet_open(dev);
856 
857 			/* get out of the interrupt handler! */
858 			break;
859 		}
860 		/* RX is inhibited - we must have received something.
861 		 * Prepare to receive into the next buffer.
862 		 *
863 		 * We don't actually copy the received packet from the card
864 		 * until after the transmit handler runs (and possibly
865 		 * launches the next tx); this should improve latency slightly
866 		 * if we get both types of interrupts at once.
867 		 */
868 		recbuf = -1;
869 		if (status & lp->intmask & NORXflag) {
870 			recbuf = lp->cur_rx;
871 			arc_printk(D_DURING, dev, "Buffer #%d: receive irq (status=%Xh)\n",
872 				   recbuf, status);
873 
874 			lp->cur_rx = get_arcbuf(dev);
875 			if (lp->cur_rx != -1) {
876 				arc_printk(D_DURING, dev, "enabling receive to buffer #%d\n",
877 					   lp->cur_rx);
878 				lp->hw.command(dev, RXcmd | (lp->cur_rx << 3) | RXbcasts);
879 			}
880 			didsomething++;
881 		}
882 
883 		if ((diagstatus & EXCNAKflag)) {
884 			arc_printk(D_DURING, dev, "EXCNAK IRQ (diagstat=%Xh)\n",
885 				   diagstatus);
886 
887 			lp->hw.command(dev, NOTXcmd);      /* disable transmit */
888 			lp->excnak_pending = 1;
889 
890 			lp->hw.command(dev, EXCNAKclear);
891 			lp->intmask &= ~(EXCNAKflag);
892 			didsomething++;
893 		}
894 
895 		/* a transmit finished, and we're interested in it. */
896 		if ((status & lp->intmask & TXFREEflag) || lp->timed_out) {
897 			int ackstatus;
898 			lp->intmask &= ~(TXFREEflag | EXCNAKflag);
899 
900 			if (status & TXACKflag)
901 				ackstatus = 2;
902 			else if (lp->excnak_pending)
903 				ackstatus = 1;
904 			else
905 				ackstatus = 0;
906 
907 			arc_printk(D_DURING, dev, "TX IRQ (stat=%Xh)\n",
908 				   status);
909 
910 			if (lp->cur_tx != -1 && !lp->timed_out) {
911 				if (!(status & TXACKflag)) {
912 					if (lp->lasttrans_dest != 0) {
913 						arc_printk(D_EXTRA, dev,
914 							   "transmit was not acknowledged! (status=%Xh, dest=%02Xh)\n",
915 							   status,
916 							   lp->lasttrans_dest);
917 						dev->stats.tx_errors++;
918 						dev->stats.tx_carrier_errors++;
919 					} else {
920 						arc_printk(D_DURING, dev,
921 							   "broadcast was not acknowledged; that's normal (status=%Xh, dest=%02Xh)\n",
922 							   status,
923 							   lp->lasttrans_dest);
924 					}
925 				}
926 
927 				if (lp->outgoing.proto &&
928 				    lp->outgoing.proto->ack_tx) {
929 					lp->outgoing.proto
930 						->ack_tx(dev, ackstatus);
931 				}
932 				lp->reply_status = ackstatus;
933 				tasklet_hi_schedule(&lp->reply_tasklet);
934 			}
935 			if (lp->cur_tx != -1)
936 				release_arcbuf(dev, lp->cur_tx);
937 
938 			lp->cur_tx = -1;
939 			lp->timed_out = 0;
940 			didsomething++;
941 
942 			/* send another packet if there is one */
943 			go_tx(dev);
944 
945 			/* continue a split packet, if any */
946 			if (lp->outgoing.proto &&
947 			    lp->outgoing.proto->continue_tx) {
948 				int txbuf = get_arcbuf(dev);
949 
950 				if (txbuf != -1) {
951 					if (lp->outgoing.proto->continue_tx(dev, txbuf)) {
952 						/* that was the last segment */
953 						dev->stats.tx_bytes += lp->outgoing.skb->len;
954 						if (!lp->outgoing.proto->ack_tx) {
955 							dev_kfree_skb_irq(lp->outgoing.skb);
956 							lp->outgoing.proto = NULL;
957 						}
958 					}
959 					lp->next_tx = txbuf;
960 				}
961 			}
962 			/* inform upper layers of idleness, if necessary */
963 			if (lp->cur_tx == -1)
964 				netif_wake_queue(dev);
965 		}
966 		/* now process the received packet, if any */
967 		if (recbuf != -1) {
968 			if (BUGLVL(D_RX))
969 				arcnet_dump_packet(dev, recbuf, "rx irq", 0);
970 
971 			arcnet_rx(dev, recbuf);
972 			release_arcbuf(dev, recbuf);
973 
974 			didsomething++;
975 		}
976 		if (status & lp->intmask & RECONflag) {
977 			lp->hw.command(dev, CFLAGScmd | CONFIGclear);
978 			dev->stats.tx_carrier_errors++;
979 
980 			arc_printk(D_RECON, dev, "Network reconfiguration detected (status=%Xh)\n",
981 				   status);
982 			if (netif_carrier_ok(dev)) {
983 				netif_carrier_off(dev);
984 				netdev_info(dev, "link down\n");
985 			}
986 			mod_timer(&lp->timer, jiffies + msecs_to_jiffies(1000));
987 
988 			arcnet_led_event(dev, ARCNET_LED_EVENT_RECON);
989 			/* MYRECON bit is at bit 7 of diagstatus */
990 			if (diagstatus & 0x80)
991 				arc_printk(D_RECON, dev, "Put out that recon myself\n");
992 
993 			/* is the RECON info empty or old? */
994 			if (!lp->first_recon || !lp->last_recon ||
995 			    time_after(jiffies, lp->last_recon + HZ * 10)) {
996 				if (lp->network_down)
997 					arc_printk(D_NORMAL, dev, "reconfiguration detected: cabling restored?\n");
998 				lp->first_recon = lp->last_recon = jiffies;
999 				lp->num_recons = lp->network_down = 0;
1000 
1001 				arc_printk(D_DURING, dev, "recon: clearing counters.\n");
1002 			} else {	/* add to current RECON counter */
1003 				lp->last_recon = jiffies;
1004 				lp->num_recons++;
1005 
1006 				arc_printk(D_DURING, dev, "recon: counter=%d, time=%lds, net=%d\n",
1007 					   lp->num_recons,
1008 					   (lp->last_recon - lp->first_recon) / HZ,
1009 					   lp->network_down);
1010 
1011 				/* if network is marked up;
1012 				 * and first_recon and last_recon are 60+ apart;
1013 				 * and the average no. of recons counted is
1014 				 *    > RECON_THRESHOLD/min;
1015 				 * then print a warning message.
1016 				 */
1017 				if (!lp->network_down &&
1018 				    (lp->last_recon - lp->first_recon) <= HZ * 60 &&
1019 				    lp->num_recons >= RECON_THRESHOLD) {
1020 					lp->network_down = 1;
1021 					arc_printk(D_NORMAL, dev, "many reconfigurations detected: cabling problem?\n");
1022 				} else if (!lp->network_down &&
1023 					   lp->last_recon - lp->first_recon > HZ * 60) {
1024 					/* reset counters if we've gone for
1025 					 *  over a minute.
1026 					 */
1027 					lp->first_recon = lp->last_recon;
1028 					lp->num_recons = 1;
1029 				}
1030 			}
1031 		} else if (lp->network_down &&
1032 			   time_after(jiffies, lp->last_recon + HZ * 10)) {
1033 			if (lp->network_down)
1034 				arc_printk(D_NORMAL, dev, "cabling restored?\n");
1035 			lp->first_recon = lp->last_recon = 0;
1036 			lp->num_recons = lp->network_down = 0;
1037 
1038 			arc_printk(D_DURING, dev, "not recon: clearing counters anyway.\n");
1039 			netif_carrier_on(dev);
1040 		}
1041 
1042 		if (didsomething)
1043 			retval |= IRQ_HANDLED;
1044 	} while (--boguscount && didsomething);
1045 
1046 	arc_printk(D_DURING, dev, "arcnet_interrupt complete (status=%Xh, count=%d)\n",
1047 		   lp->hw.status(dev), boguscount);
1048 	arc_printk(D_DURING, dev, "\n");
1049 
1050 	lp->hw.intmask(dev, 0);
1051 	udelay(1);
1052 	lp->hw.intmask(dev, lp->intmask);
1053 
1054 	spin_unlock_irqrestore(&lp->lock, flags);
1055 	return retval;
1056 }
1057 EXPORT_SYMBOL(arcnet_interrupt);
1058 
1059 /* This is a generic packet receiver that calls arcnet??_rx depending on the
1060  * protocol ID found.
1061  */
1062 static void arcnet_rx(struct net_device *dev, int bufnum)
1063 {
1064 	struct arcnet_local *lp = netdev_priv(dev);
1065 	struct archdr pkt;
1066 	struct arc_rfc1201 *soft;
1067 	int length, ofs;
1068 
1069 	soft = &pkt.soft.rfc1201;
1070 
1071 	lp->hw.copy_from_card(dev, bufnum, 0, &pkt, ARC_HDR_SIZE);
1072 	if (pkt.hard.offset[0]) {
1073 		ofs = pkt.hard.offset[0];
1074 		length = 256 - ofs;
1075 	} else {
1076 		ofs = pkt.hard.offset[1];
1077 		length = 512 - ofs;
1078 	}
1079 
1080 	/* get the full header, if possible */
1081 	if (sizeof(pkt.soft) <= length) {
1082 		lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(pkt.soft));
1083 	} else {
1084 		memset(&pkt.soft, 0, sizeof(pkt.soft));
1085 		lp->hw.copy_from_card(dev, bufnum, ofs, soft, length);
1086 	}
1087 
1088 	arc_printk(D_DURING, dev, "Buffer #%d: received packet from %02Xh to %02Xh (%d+4 bytes)\n",
1089 		   bufnum, pkt.hard.source, pkt.hard.dest, length);
1090 
1091 	dev->stats.rx_packets++;
1092 	dev->stats.rx_bytes += length + ARC_HDR_SIZE;
1093 
1094 	/* call the right receiver for the protocol */
1095 	if (arc_proto_map[soft->proto]->is_ip) {
1096 		if (BUGLVL(D_PROTO)) {
1097 			struct ArcProto
1098 			*oldp = arc_proto_map[lp->default_proto[pkt.hard.source]],
1099 			*newp = arc_proto_map[soft->proto];
1100 
1101 			if (oldp != newp) {
1102 				arc_printk(D_PROTO, dev,
1103 					   "got protocol %02Xh; encap for host %02Xh is now '%c' (was '%c')\n",
1104 					   soft->proto, pkt.hard.source,
1105 					   newp->suffix, oldp->suffix);
1106 			}
1107 		}
1108 
1109 		/* broadcasts will always be done with the last-used encap. */
1110 		lp->default_proto[0] = soft->proto;
1111 
1112 		/* in striking contrast, the following isn't a hack. */
1113 		lp->default_proto[pkt.hard.source] = soft->proto;
1114 	}
1115 	/* call the protocol-specific receiver. */
1116 	arc_proto_map[soft->proto]->rx(dev, bufnum, &pkt, length);
1117 }
1118 
1119 static void null_rx(struct net_device *dev, int bufnum,
1120 		    struct archdr *pkthdr, int length)
1121 {
1122 	arc_printk(D_PROTO, dev,
1123 		   "rx: don't know how to deal with proto %02Xh from host %02Xh.\n",
1124 		   pkthdr->soft.rfc1201.proto, pkthdr->hard.source);
1125 }
1126 
1127 static int null_build_header(struct sk_buff *skb, struct net_device *dev,
1128 			     unsigned short type, uint8_t daddr)
1129 {
1130 	struct arcnet_local *lp = netdev_priv(dev);
1131 
1132 	arc_printk(D_PROTO, dev,
1133 		   "tx: can't build header for encap %02Xh; load a protocol driver.\n",
1134 		   lp->default_proto[daddr]);
1135 
1136 	/* always fails */
1137 	return 0;
1138 }
1139 
1140 /* the "do nothing" prepare_tx function warns that there's nothing to do. */
1141 static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
1142 			   int length, int bufnum)
1143 {
1144 	struct arcnet_local *lp = netdev_priv(dev);
1145 	struct arc_hardware newpkt;
1146 
1147 	arc_printk(D_PROTO, dev, "tx: no encap for this host; load a protocol driver.\n");
1148 
1149 	/* send a packet to myself -- will never get received, of course */
1150 	newpkt.source = newpkt.dest = dev->dev_addr[0];
1151 
1152 	/* only one byte of actual data (and it's random) */
1153 	newpkt.offset[0] = 0xFF;
1154 
1155 	lp->hw.copy_to_card(dev, bufnum, 0, &newpkt, ARC_HDR_SIZE);
1156 
1157 	return 1;		/* done */
1158 }
1159