blob: fcfccbb3d9a2a0e5a6a84ee0daea317e5d2b32b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux ARCnet driver - device-independent routines
Joe Perchescb334642015-05-05 10:05:47 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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 * **********************
Joe Perchescb334642015-05-05 10:05:47 -070023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * The change log is now in a file called ChangeLog in this directory.
25 *
26 * Sources:
27 * - Crynwr arcnet.com/arcether.com packet drivers.
Joe Perchescb334642015-05-05 10:05:47 -070028 * - arcnet.c v0.00 dated 1/1/94 and apparently by
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * 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
Joe Perches05a24b22015-05-05 10:05:56 -070044#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#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>
Marcelo Feitoza Parisiff5688a2006-01-09 18:37:15 -080053#include <linux/jiffies.h>
Michael Grzeschik05fcd312017-06-28 18:32:18 +020054#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Michael Grzeschik88906242014-09-18 00:12:50 +020056#include <linux/leds.h>
57
Joe Perches26c6d282015-05-05 10:06:03 -070058#include "arcdevice.h"
Joe Perches8e0f2952015-05-05 10:06:13 -070059#include "com9026.h"
Joe Perches26c6d282015-05-05 10:06:03 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* "do nothing" functions for protocol drivers */
62static void null_rx(struct net_device *dev, int bufnum,
63 struct archdr *pkthdr, int length);
64static int null_build_header(struct sk_buff *skb, struct net_device *dev,
65 unsigned short type, uint8_t daddr);
66static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
67 int length, int bufnum);
68
Adrian Bunkf03aa2d2006-01-14 03:10:22 +010069static void arcnet_rx(struct net_device *dev, int bufnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesf2f0a162015-05-05 10:05:52 -070071/* one ArcProto per possible proto ID. None of the elements of
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * 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 */
Joe Perches811eafc2015-05-05 10:05:57 -070076struct ArcProto *arc_proto_map[256];
77EXPORT_SYMBOL(arc_proto_map);
78
79struct ArcProto *arc_proto_default;
80EXPORT_SYMBOL(arc_proto_default);
81
82struct ArcProto *arc_bcast_proto;
83EXPORT_SYMBOL(arc_bcast_proto);
84
85struct ArcProto *arc_raw_proto;
86EXPORT_SYMBOL(arc_raw_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Joe Perches7f5e7602015-05-05 10:05:49 -070088static struct ArcProto arc_proto_null = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 .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 */
100int arcnet_debug = ARCNET_DEBUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101EXPORT_SYMBOL(arcnet_debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* Internal function prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700105 unsigned short type, const void *daddr,
106 const void *saddr, unsigned len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int go_tx(struct net_device *dev);
108
109static int debug = ARCNET_DEBUG;
110module_param(debug, int, 0);
111MODULE_LICENSE("GPL");
112
113static int __init arcnet_init(void)
114{
115 int count;
116
117 arcnet_debug = debug;
118
Joe Perches05a24b22015-05-05 10:05:56 -0700119 pr_info("arcnet loaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
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
Joe Perches72aeea42015-05-05 10:05:54 -0700126 if (BUGLVL(D_DURING))
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800127 pr_info("struct sizes: %zd %zd %zd %zd %zd\n",
Joe Perches05a24b22015-05-05 10:05:56 -0700128 sizeof(struct arc_hardware),
129 sizeof(struct arc_rfc1201),
130 sizeof(struct arc_rfc1051),
131 sizeof(struct arc_eth_encap),
132 sizeof(struct archdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 return 0;
135}
136
137static void __exit arcnet_exit(void)
138{
139}
140
141module_init(arcnet_init);
142module_exit(arcnet_exit);
143
Joe Perchesf2f0a162015-05-05 10:05:52 -0700144/* Dump the contents of an sk_buff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#if ARCNET_DEBUG_MAX & D_SKB
146void arcnet_dump_skb(struct net_device *dev,
147 struct sk_buff *skb, char *desc)
148{
Joe Perchesad361c92009-07-06 13:05:40 -0700149 char hdr[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Joe Perchesad361c92009-07-06 13:05:40 -0700151 /* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156EXPORT_SYMBOL(arcnet_dump_skb);
157#endif
158
Joe Perchesf2f0a162015-05-05 10:05:52 -0700159/* Dump the contents of an ARCnet buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#if (ARCNET_DEBUG_MAX & (D_RX | D_TX))
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100161static void arcnet_dump_packet(struct net_device *dev, int bufnum,
162 char *desc, int take_arcnet_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Wang Chen454d7c92008-11-12 23:37:49 -0800164 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int i, length;
166 unsigned long flags = 0;
167 static uint8_t buf[512];
Joe Perchesad361c92009-07-06 13:05:40 -0700168 char hdr[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* hw.copy_from_card expects IRQ context so take the IRQ lock
Joe Perchesf2f0a162015-05-05 10:05:52 -0700171 * to keep it single threaded
172 */
Joe Perchescb334642015-05-05 10:05:47 -0700173 if (take_arcnet_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 spin_lock_irqsave(&lp->lock, flags);
175
176 lp->hw.copy_from_card(dev, bufnum, 0, buf, 512);
Joe Perchescb334642015-05-05 10:05:47 -0700177 if (take_arcnet_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 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
Joe Perchesad361c92009-07-06 13:05:40 -0700183 /* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100189#else
190
Joe Perchescb334642015-05-05 10:05:47 -0700191#define arcnet_dump_packet(dev, bufnum, desc, take_arcnet_lock) do { } while (0)
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#endif
194
Michael Grzeschik88906242014-09-18 00:12:50 +0200195/* Trigger a LED event in response to a ARCNET device event */
196void 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}
221EXPORT_SYMBOL_GPL(arcnet_led_event);
222
223static 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 */
235void 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}
258EXPORT_SYMBOL_GPL(devm_arcnet_led_init);
259
Joe Perchesf2f0a162015-05-05 10:05:52 -0700260/* Unregister a protocol driver from the arc_proto_map. Protocol drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 * are responsible for registering themselves, but the unregister routine
262 * is pretty generic so we'll do it here.
263 */
264void 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}
Joe Perches811eafc2015-05-05 10:05:57 -0700280EXPORT_SYMBOL(arcnet_unregister_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Joe Perchesf2f0a162015-05-05 10:05:52 -0700282/* Add a buffer to the queue. Only the interrupt handler is allowed to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * this, unless interrupts are disabled.
Joe Perchescb334642015-05-05 10:05:47 -0700284 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * Note: we don't check for a full queue, since there aren't enough buffers
286 * to more than fill it.
287 */
288static void release_arcbuf(struct net_device *dev, int bufnum)
289{
Wang Chen454d7c92008-11-12 23:37:49 -0800290 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int i;
292
293 lp->buf_queue[lp->first_free_buf++] = bufnum;
294 lp->first_free_buf %= 5;
295
Joe Perches72aeea42015-05-05 10:05:54 -0700296 if (BUGLVL(D_DURING)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700297 arc_printk(D_DURING, dev, "release_arcbuf: freed #%d; buffer queue is now: ",
298 bufnum);
Joe Perchescb334642015-05-05 10:05:47 -0700299 for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
Joe Perchesa34c0932015-05-05 10:05:55 -0700300 arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
301 arc_cont(D_DURING, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303}
304
Joe Perchesf2f0a162015-05-05 10:05:52 -0700305/* Get a buffer from the queue.
306 * If this returns -1, there are no buffers available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
308static int get_arcbuf(struct net_device *dev)
309{
Wang Chen454d7c92008-11-12 23:37:49 -0800310 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int buf = -1, i;
312
313 if (!atomic_dec_and_test(&lp->buf_lock)) {
314 /* already in this function */
Joe Perchesa34c0932015-05-05 10:05:55 -0700315 arc_printk(D_NORMAL, dev, "get_arcbuf: overlap (%d)!\n",
316 lp->buf_lock.counter);
Joe Perches7f5e7602015-05-05 10:05:49 -0700317 } else { /* we can continue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (lp->next_buf >= 5)
319 lp->next_buf -= 5;
320
Joe Perches7f5e7602015-05-05 10:05:49 -0700321 if (lp->next_buf == lp->first_free_buf) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700322 arc_printk(D_NORMAL, dev, "get_arcbuf: BUG: no buffers are available??\n");
Joe Perches7f5e7602015-05-05 10:05:49 -0700323 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 buf = lp->buf_queue[lp->next_buf++];
325 lp->next_buf %= 5;
326 }
327 }
328
Joe Perches72aeea42015-05-05 10:05:54 -0700329 if (BUGLVL(D_DURING)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700330 arc_printk(D_DURING, dev, "get_arcbuf: got #%d; buffer queue is now: ",
331 buf);
Joe Perchescb334642015-05-05 10:05:47 -0700332 for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
Joe Perchesa34c0932015-05-05 10:05:55 -0700333 arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
334 arc_cont(D_DURING, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
337 atomic_inc(&lp->buf_lock);
338 return buf;
339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static 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++) {
Joe Perches8e95a202009-12-03 07:58:21 +0000347 if (arc_proto_map[count] != &arc_proto_null &&
348 arc_proto_map[count]->mtu < mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 mtu = arc_proto_map[count]->mtu;
350 }
351 }
352
353 return mtu == 65535 ? XMTU : mtu;
354}
355
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700356static const struct header_ops arcnet_header_ops = {
357 .create = arcnet_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700358};
359
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000360static 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};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367/* Setup a struct device for ARCnet. */
368static void arcdev_setup(struct net_device *dev)
369{
370 dev->type = ARPHRD_ARCNET;
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000371 dev->netdev_ops = &arcnet_netdev_ops;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700372 dev->header_ops = &arcnet_header_ops;
Michael Grzeschik980137a2015-09-17 15:18:34 +0200373 dev->hard_header_len = sizeof(struct arc_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200385static 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
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200395static 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
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000441struct net_device *alloc_arcdev(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct net_device *dev;
444
445 dev = alloc_netdev(sizeof(struct arcnet_local),
Tom Gundersenc835a672014-07-14 16:37:24 +0200446 name && *name ? name : "arc%d", NET_NAME_UNKNOWN,
447 arcdev_setup);
Joe Perchescb334642015-05-05 10:05:47 -0700448 if (dev) {
Wang Chen454d7c92008-11-12 23:37:49 -0800449 struct arcnet_local *lp = netdev_priv(dev);
Joe Perches01a1d5a2015-05-05 10:05:48 -0700450
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200451 lp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 spin_lock_init(&lp->lock);
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200453 init_timer(&lp->timer);
454 lp->timer.data = (unsigned long) dev;
455 lp->timer.function = arcnet_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 return dev;
459}
Joe Perches811eafc2015-05-05 10:05:57 -0700460EXPORT_SYMBOL(alloc_arcdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Joe Perchesf2f0a162015-05-05 10:05:52 -0700462/* Open/initialize the board. This is called sometime after booting when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * the 'ifconfig' program is run.
464 *
465 * This routine should set everything up anew at each open, even registers
466 * that "should" only need to be set once at boot, so that there is
467 * non-reboot way to recover if something goes wrong.
468 */
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000469int arcnet_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Wang Chen454d7c92008-11-12 23:37:49 -0800471 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int count, newmtu, error;
473
Joe Perchesa34c0932015-05-05 10:05:55 -0700474 arc_printk(D_INIT, dev, "opened.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 if (!try_module_get(lp->hw.owner))
477 return -ENODEV;
478
Joe Perches72aeea42015-05-05 10:05:54 -0700479 if (BUGLVL(D_PROTO)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700480 arc_printk(D_PROTO, dev, "protocol map (default is '%c'): ",
481 arc_proto_default->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 for (count = 0; count < 256; count++)
Joe Perchesa34c0932015-05-05 10:05:55 -0700483 arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix);
484 arc_cont(D_PROTO, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200487 tasklet_init(&lp->reply_tasklet, arcnet_reply_tasklet,
488 (unsigned long)lp);
489
Joe Perchesa34c0932015-05-05 10:05:55 -0700490 arc_printk(D_INIT, dev, "arcnet_open: resetting card.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* try to put the card in a defined state - if it fails the first
493 * time, actually reset it.
494 */
495 error = -ENODEV;
Joe Perchese15b0362015-05-05 10:06:12 -0700496 if (lp->hw.reset(dev, 0) && lp->hw.reset(dev, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto out_module_put;
498
499 newmtu = choose_mtu();
500 if (newmtu < dev->mtu)
501 dev->mtu = newmtu;
502
Joe Perchesa34c0932015-05-05 10:05:55 -0700503 arc_printk(D_INIT, dev, "arcnet_open: mtu: %d.\n", dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* autodetect the encapsulation for each host. */
506 memset(lp->default_proto, 0, sizeof(lp->default_proto));
507
508 /* the broadcast address is special - use the 'bcast' protocol */
509 for (count = 0; count < 256; count++) {
510 if (arc_proto_map[count] == arc_bcast_proto) {
511 lp->default_proto[0] = count;
512 break;
513 }
514 }
515
516 /* initialize buffers */
517 atomic_set(&lp->buf_lock, 1);
518
519 lp->next_buf = lp->first_free_buf = 0;
520 release_arcbuf(dev, 0);
521 release_arcbuf(dev, 1);
522 release_arcbuf(dev, 2);
523 release_arcbuf(dev, 3);
524 lp->cur_tx = lp->next_tx = -1;
525 lp->cur_rx = -1;
526
527 lp->rfc1201.sequence = 1;
528
529 /* bring up the hardware driver */
530 if (lp->hw.open)
531 lp->hw.open(dev);
532
533 if (dev->dev_addr[0] == 0)
Joe Perchesa34c0932015-05-05 10:05:55 -0700534 arc_printk(D_NORMAL, dev, "WARNING! Station address 00 is reserved for broadcasts!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 else if (dev->dev_addr[0] == 255)
Joe Perchesa34c0932015-05-05 10:05:55 -0700536 arc_printk(D_NORMAL, dev, "WARNING! Station address FF may confuse DOS networking programs!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Joe Perchesa34c0932015-05-05 10:05:55 -0700538 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Joe Perchese15b0362015-05-05 10:06:12 -0700539 if (lp->hw.status(dev) & RESETflag) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700540 arc_printk(D_DEBUG, dev, "%s: %d: %s\n",
541 __FILE__, __LINE__, __func__);
Joe Perchese15b0362015-05-05 10:06:12 -0700542 lp->hw.command(dev, CFLAGScmd | RESETclear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
Joe Perchesa34c0932015-05-05 10:05:55 -0700545 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* make sure we're ready to receive IRQ's. */
Joe Perchese15b0362015-05-05 10:06:12 -0700547 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 udelay(1); /* give it time to set the mask before
549 * we reset it again. (may not even be
550 * necessary)
551 */
Joe Perchesa34c0932015-05-05 10:05:55 -0700552 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 lp->intmask = NORXflag | RECONflag;
Joe Perchese15b0362015-05-05 10:06:12 -0700554 lp->hw.intmask(dev, lp->intmask);
Joe Perchesa34c0932015-05-05 10:05:55 -0700555 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200557 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 netif_start_queue(dev);
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200559 mod_timer(&lp->timer, jiffies + msecs_to_jiffies(1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Michael Grzeschik88906242014-09-18 00:12:50 +0200561 arcnet_led_event(dev, ARCNET_LED_EVENT_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return 0;
563
564 out_module_put:
565 module_put(lp->hw.owner);
566 return error;
567}
Joe Perches811eafc2015-05-05 10:05:57 -0700568EXPORT_SYMBOL(arcnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/* The inverse routine to arcnet_open - shuts down the card. */
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000571int arcnet_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Wang Chen454d7c92008-11-12 23:37:49 -0800573 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Michael Grzeschik88906242014-09-18 00:12:50 +0200575 arcnet_led_event(dev, ARCNET_LED_EVENT_STOP);
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200576 del_timer_sync(&lp->timer);
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 netif_stop_queue(dev);
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200579 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200581 tasklet_kill(&lp->reply_tasklet);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* flush TX and disable RX */
Joe Perchese15b0362015-05-05 10:06:12 -0700584 lp->hw.intmask(dev, 0);
585 lp->hw.command(dev, NOTXcmd); /* stop transmit */
586 lp->hw.command(dev, NORXcmd); /* disable receive */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 mdelay(1);
588
589 /* shut down the card */
590 lp->hw.close(dev);
591 module_put(lp->hw.owner);
592 return 0;
593}
Joe Perches811eafc2015-05-05 10:05:57 -0700594EXPORT_SYMBOL(arcnet_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700597 unsigned short type, const void *daddr,
598 const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700600 const struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 uint8_t _daddr, proto_num;
602 struct ArcProto *proto;
603
Joe Perchesa34c0932015-05-05 10:05:55 -0700604 arc_printk(D_DURING, dev,
605 "create header from %d to %d; protocol %d (%Xh); size %u.\n",
606 saddr ? *(uint8_t *)saddr : -1,
607 daddr ? *(uint8_t *)daddr : -1,
608 type, type, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Joe Perchescb334642015-05-05 10:05:47 -0700610 if (skb->len != 0 && len != skb->len)
Joe Perchesa34c0932015-05-05 10:05:55 -0700611 arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! skb->len(%d) != len(%d)!\n",
612 skb->len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Joe Perchescb334642015-05-05 10:05:47 -0700614 /* Type is host order - ? */
615 if (type == ETH_P_ARCNET) {
616 proto = arc_raw_proto;
Joe Perchesa34c0932015-05-05 10:05:55 -0700617 arc_printk(D_DEBUG, dev, "arc_raw_proto used. proto='%c'\n",
618 proto->suffix);
Joe Perchescb334642015-05-05 10:05:47 -0700619 _daddr = daddr ? *(uint8_t *)daddr : 0;
Joe Perches7f5e7602015-05-05 10:05:49 -0700620 } else if (!daddr) {
Joe Perchesf2f0a162015-05-05 10:05:52 -0700621 /* if the dest addr isn't provided, we can't choose an
622 * encapsulation! Store the packet type (eg. ETH_P_IP)
623 * for now, and we'll push on a real header when we do
624 * rebuild_header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
Joe Perchescb334642015-05-05 10:05:47 -0700626 *(uint16_t *)skb_push(skb, 2) = type;
Joe Perchesf2f0a162015-05-05 10:05:52 -0700627 /* XXX: Why not use skb->mac_len? */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700628 if (skb->network_header - skb->mac_header != 2)
Joe Perchesa34c0932015-05-05 10:05:55 -0700629 arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! diff (%u) is not 2!\n",
630 skb->network_header - skb->mac_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -2; /* return error -- can't transmit yet! */
Joe Perches7f5e7602015-05-05 10:05:49 -0700632 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* otherwise, we can just add the header as usual. */
Joe Perchescb334642015-05-05 10:05:47 -0700634 _daddr = *(uint8_t *)daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 proto_num = lp->default_proto[_daddr];
636 proto = arc_proto_map[proto_num];
Joe Perchesa34c0932015-05-05 10:05:55 -0700637 arc_printk(D_DURING, dev, "building header for %02Xh using protocol '%c'\n",
638 proto_num, proto->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (proto == &arc_proto_null && arc_bcast_proto != proto) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700640 arc_printk(D_DURING, dev, "actually, let's use '%c' instead.\n",
641 arc_bcast_proto->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 proto = arc_bcast_proto;
643 }
644 }
645 return proto->build_header(skb, dev, type, _daddr);
646}
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648/* Called by the kernel in order to transmit a packet. */
Stephen Hemminger613573252009-08-31 19:50:58 +0000649netdev_tx_t arcnet_send_packet(struct sk_buff *skb,
Joe Perchescb334642015-05-05 10:05:47 -0700650 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Wang Chen454d7c92008-11-12 23:37:49 -0800652 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct archdr *pkt;
654 struct arc_rfc1201 *soft;
655 struct ArcProto *proto;
656 int txbuf;
657 unsigned long flags;
Michael Grzeschikb82de0e2015-04-22 16:41:46 +0200658 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Joe Perchesa34c0932015-05-05 10:05:55 -0700660 arc_printk(D_DURING, dev,
661 "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700662 lp->hw.status(dev), lp->cur_tx, lp->next_tx, skb->len, skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Joe Perchescb334642015-05-05 10:05:47 -0700664 pkt = (struct archdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 soft = &pkt->soft.rfc1201;
666 proto = arc_proto_map[soft->proto];
667
Joe Perchesa34c0932015-05-05 10:05:55 -0700668 arc_printk(D_SKB_SIZE, dev, "skb: transmitting %d bytes to %02X\n",
669 skb->len, pkt->hard.dest);
Joe Perches72aeea42015-05-05 10:05:54 -0700670 if (BUGLVL(D_SKB))
671 arcnet_dump_skb(dev, skb, "tx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 /* fits in one packet? */
674 if (skb->len - ARC_HDR_SIZE > XMTU && !proto->continue_tx) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700675 arc_printk(D_NORMAL, dev, "fixme: packet too large: compensating badly!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 dev_kfree_skb(skb);
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700677 return NETDEV_TX_OK; /* don't try again */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
680 /* We're busy transmitting a packet... */
681 netif_stop_queue(dev);
682
683 spin_lock_irqsave(&lp->lock, flags);
Joe Perchese15b0362015-05-05 10:06:12 -0700684 lp->hw.intmask(dev, 0);
Joe Perchescb334642015-05-05 10:05:47 -0700685 if (lp->next_tx == -1)
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700686 txbuf = get_arcbuf(dev);
Joe Perches7f5e7602015-05-05 10:05:49 -0700687 else
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700688 txbuf = -1;
Joe Perches7f5e7602015-05-05 10:05:49 -0700689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (txbuf != -1) {
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200691 lp->outgoing.skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (proto->prepare_tx(dev, pkt, skb->len, txbuf) &&
693 !proto->ack_tx) {
694 /* done right away and we don't want to acknowledge
Joe Perchesf2f0a162015-05-05 10:05:52 -0700695 * the package later - forget about it now
696 */
Stephen Hemminger5803c512009-01-09 13:01:08 +0000697 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 } else {
699 /* do it the 'split' way */
700 lp->outgoing.proto = proto;
701 lp->outgoing.skb = skb;
702 lp->outgoing.pkt = pkt;
703
704 if (proto->continue_tx &&
705 proto->continue_tx(dev, txbuf)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700706 arc_printk(D_NORMAL, dev,
707 "bug! continue_tx finished the first time! (proto='%c')\n",
708 proto->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710 }
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700711 retval = NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 lp->next_tx = txbuf;
713 } else {
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700714 retval = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Joe Perchesa34c0932015-05-05 10:05:55 -0700717 arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700718 __FILE__, __LINE__, __func__, lp->hw.status(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* make sure we didn't ignore a TX IRQ while we were in here */
Joe Perchese15b0362015-05-05 10:06:12 -0700720 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Joe Perchesa34c0932015-05-05 10:05:55 -0700722 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Joe Perchescb334642015-05-05 10:05:47 -0700723 lp->intmask |= TXFREEflag | EXCNAKflag;
Joe Perchese15b0362015-05-05 10:06:12 -0700724 lp->hw.intmask(dev, lp->intmask);
Joe Perchesa34c0932015-05-05 10:05:55 -0700725 arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700726 __FILE__, __LINE__, __func__, lp->hw.status(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Michael Grzeschik88906242014-09-18 00:12:50 +0200728 arcnet_led_event(dev, ARCNET_LED_EVENT_TX);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 spin_unlock_irqrestore(&lp->lock, flags);
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700731 return retval; /* no need to try again */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
Joe Perches811eafc2015-05-05 10:05:57 -0700733EXPORT_SYMBOL(arcnet_send_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Joe Perchesf2f0a162015-05-05 10:05:52 -0700735/* Actually start transmitting a packet that was loaded into a buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * by prepare_tx. This should _only_ be called by the interrupt handler.
737 */
738static int go_tx(struct net_device *dev)
739{
Wang Chen454d7c92008-11-12 23:37:49 -0800740 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Joe Perchesa34c0932015-05-05 10:05:55 -0700742 arc_printk(D_DURING, dev, "go_tx: status=%Xh, intmask=%Xh, next_tx=%d, cur_tx=%d\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700743 lp->hw.status(dev), lp->intmask, lp->next_tx, lp->cur_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 if (lp->cur_tx != -1 || lp->next_tx == -1)
746 return 0;
747
Joe Perches72aeea42015-05-05 10:05:54 -0700748 if (BUGLVL(D_TX))
749 arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 lp->cur_tx = lp->next_tx;
752 lp->next_tx = -1;
753
754 /* start sending */
Joe Perchese15b0362015-05-05 10:06:12 -0700755 lp->hw.command(dev, TXcmd | (lp->cur_tx << 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Stephen Hemminger5803c512009-01-09 13:01:08 +0000757 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 lp->lasttrans_dest = lp->lastload_dest;
759 lp->lastload_dest = 0;
760 lp->excnak_pending = 0;
Joe Perchescb334642015-05-05 10:05:47 -0700761 lp->intmask |= TXFREEflag | EXCNAKflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 return 1;
764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/* Called by the kernel when transmit times out */
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000767void arcnet_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 unsigned long flags;
Wang Chen454d7c92008-11-12 23:37:49 -0800770 struct arcnet_local *lp = netdev_priv(dev);
Joe Perchese15b0362015-05-05 10:06:12 -0700771 int status = lp->hw.status(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 char *msg;
773
774 spin_lock_irqsave(&lp->lock, flags);
775 if (status & TXFREEflag) { /* transmit _DID_ finish */
776 msg = " - missed IRQ?";
777 } else {
778 msg = "";
Stephen Hemminger5803c512009-01-09 13:01:08 +0000779 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 lp->timed_out = 1;
Joe Perchese15b0362015-05-05 10:06:12 -0700781 lp->hw.command(dev, NOTXcmd | (lp->cur_tx << 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Stephen Hemminger5803c512009-01-09 13:01:08 +0000783 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 /* make sure we didn't miss a TX or a EXC NAK IRQ */
Joe Perchese15b0362015-05-05 10:06:12 -0700786 lp->hw.intmask(dev, 0);
Joe Perchescb334642015-05-05 10:05:47 -0700787 lp->intmask |= TXFREEflag | EXCNAKflag;
Joe Perchese15b0362015-05-05 10:06:12 -0700788 lp->hw.intmask(dev, lp->intmask);
Joe Perchescb334642015-05-05 10:05:47 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 spin_unlock_irqrestore(&lp->lock, flags);
791
Joe Perchescb334642015-05-05 10:05:47 -0700792 if (time_after(jiffies, lp->last_timeout + 10 * HZ)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700793 arc_printk(D_EXTRA, dev, "tx timed out%s (status=%Xh, intmask=%Xh, dest=%02Xh)\n",
794 msg, status, lp->intmask, lp->lasttrans_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 lp->last_timeout = jiffies;
796 }
797
798 if (lp->cur_tx == -1)
799 netif_wake_queue(dev);
800}
Joe Perches811eafc2015-05-05 10:05:57 -0700801EXPORT_SYMBOL(arcnet_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Joe Perchesf2f0a162015-05-05 10:05:52 -0700803/* The typical workload of the driver: Handle the network interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * interrupts. Establish which device needs attention, and call the correct
805 * chipset interrupt handler.
806 */
David Howells7d12e782006-10-05 14:55:46 +0100807irqreturn_t arcnet_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 struct net_device *dev = dev_id;
810 struct arcnet_local *lp;
811 int recbuf, status, diagstatus, didsomething, boguscount;
Michael Grzeschik5b858402017-06-28 18:28:33 +0200812 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 int retval = IRQ_NONE;
814
Joe Perchesa34c0932015-05-05 10:05:55 -0700815 arc_printk(D_DURING, dev, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Joe Perchesa34c0932015-05-05 10:05:55 -0700817 arc_printk(D_DURING, dev, "in arcnet_interrupt\n");
Wang Chen454d7c92008-11-12 23:37:49 -0800818
819 lp = netdev_priv(dev);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200820 BUG_ON(!lp);
Joe Perchescb334642015-05-05 10:05:47 -0700821
Michael Grzeschik5b858402017-06-28 18:28:33 +0200822 spin_lock_irqsave(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Joe Perchesf2f0a162015-05-05 10:05:52 -0700824 /* RESET flag was enabled - if device is not running, we must
825 * clear it right away (but nothing else).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
827 if (!netif_running(dev)) {
Joe Perchese15b0362015-05-05 10:06:12 -0700828 if (lp->hw.status(dev) & RESETflag)
829 lp->hw.command(dev, CFLAGScmd | RESETclear);
830 lp->hw.intmask(dev, 0);
Michael Grzeschik5b858402017-06-28 18:28:33 +0200831 spin_unlock_irqrestore(&lp->lock, flags);
Michael Grzeschik226ee672014-09-29 11:55:34 +0200832 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
Joe Perchesa34c0932015-05-05 10:05:55 -0700835 arc_printk(D_DURING, dev, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700836 lp->hw.status(dev), lp->intmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 boguscount = 5;
839 do {
Joe Perchese15b0362015-05-05 10:06:12 -0700840 status = lp->hw.status(dev);
Joe Perchescb334642015-05-05 10:05:47 -0700841 diagstatus = (status >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Joe Perchesa34c0932015-05-05 10:05:55 -0700843 arc_printk(D_DEBUG, dev, "%s: %d: %s: status=%x\n",
844 __FILE__, __LINE__, __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 didsomething = 0;
846
Joe Perchesf2f0a162015-05-05 10:05:52 -0700847 /* RESET flag was enabled - card is resetting and if RX is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 * disabled, it's NOT because we just got a packet.
Joe Perchescb334642015-05-05 10:05:47 -0700849 *
Joe Perchesf2f0a162015-05-05 10:05:52 -0700850 * The card is in an undefined state.
851 * Clear it out and start over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
853 if (status & RESETflag) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700854 arc_printk(D_NORMAL, dev, "spurious reset (status=%Xh)\n",
855 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 arcnet_close(dev);
857 arcnet_open(dev);
858
859 /* get out of the interrupt handler! */
860 break;
861 }
Joe Perchesf2f0a162015-05-05 10:05:52 -0700862 /* RX is inhibited - we must have received something.
863 * Prepare to receive into the next buffer.
Joe Perchescb334642015-05-05 10:05:47 -0700864 *
Joe Perchesf2f0a162015-05-05 10:05:52 -0700865 * We don't actually copy the received packet from the card
866 * until after the transmit handler runs (and possibly
867 * launches the next tx); this should improve latency slightly
868 * if we get both types of interrupts at once.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 */
870 recbuf = -1;
871 if (status & lp->intmask & NORXflag) {
872 recbuf = lp->cur_rx;
Joe Perchesa34c0932015-05-05 10:05:55 -0700873 arc_printk(D_DURING, dev, "Buffer #%d: receive irq (status=%Xh)\n",
874 recbuf, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 lp->cur_rx = get_arcbuf(dev);
877 if (lp->cur_rx != -1) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700878 arc_printk(D_DURING, dev, "enabling receive to buffer #%d\n",
879 lp->cur_rx);
Joe Perchese15b0362015-05-05 10:06:12 -0700880 lp->hw.command(dev, RXcmd | (lp->cur_rx << 3) | RXbcasts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 didsomething++;
883 }
884
Joe Perchescb334642015-05-05 10:05:47 -0700885 if ((diagstatus & EXCNAKflag)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700886 arc_printk(D_DURING, dev, "EXCNAK IRQ (diagstat=%Xh)\n",
887 diagstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Joe Perchese15b0362015-05-05 10:06:12 -0700889 lp->hw.command(dev, NOTXcmd); /* disable transmit */
Joe Perchescb334642015-05-05 10:05:47 -0700890 lp->excnak_pending = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Joe Perchese15b0362015-05-05 10:06:12 -0700892 lp->hw.command(dev, EXCNAKclear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 lp->intmask &= ~(EXCNAKflag);
Joe Perchescb334642015-05-05 10:05:47 -0700894 didsomething++;
895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /* a transmit finished, and we're interested in it. */
898 if ((status & lp->intmask & TXFREEflag) || lp->timed_out) {
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200899 int ackstatus;
Joe Perchescb334642015-05-05 10:05:47 -0700900 lp->intmask &= ~(TXFREEflag | EXCNAKflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200902 if (status & TXACKflag)
903 ackstatus = 2;
904 else if (lp->excnak_pending)
905 ackstatus = 1;
906 else
907 ackstatus = 0;
908
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700909 arc_printk(D_DURING, dev, "TX IRQ (stat=%Xh)\n",
910 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 if (lp->cur_tx != -1 && !lp->timed_out) {
Joe Perchescb334642015-05-05 10:05:47 -0700913 if (!(status & TXACKflag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (lp->lasttrans_dest != 0) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700915 arc_printk(D_EXTRA, dev,
916 "transmit was not acknowledged! (status=%Xh, dest=%02Xh)\n",
917 status,
918 lp->lasttrans_dest);
Stephen Hemminger5803c512009-01-09 13:01:08 +0000919 dev->stats.tx_errors++;
920 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 } else {
Joe Perchesa34c0932015-05-05 10:05:55 -0700922 arc_printk(D_DURING, dev,
923 "broadcast was not acknowledged; that's normal (status=%Xh, dest=%02Xh)\n",
924 status,
925 lp->lasttrans_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927 }
928
929 if (lp->outgoing.proto &&
930 lp->outgoing.proto->ack_tx) {
Joe Perchescb334642015-05-05 10:05:47 -0700931 lp->outgoing.proto
932 ->ack_tx(dev, ackstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
Michael Grzeschik05fcd312017-06-28 18:32:18 +0200934 lp->reply_status = ackstatus;
935 tasklet_hi_schedule(&lp->reply_tasklet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 if (lp->cur_tx != -1)
938 release_arcbuf(dev, lp->cur_tx);
939
940 lp->cur_tx = -1;
941 lp->timed_out = 0;
942 didsomething++;
943
944 /* send another packet if there is one */
945 go_tx(dev);
946
947 /* continue a split packet, if any */
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700948 if (lp->outgoing.proto &&
949 lp->outgoing.proto->continue_tx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 int txbuf = get_arcbuf(dev);
Joe Perches01a1d5a2015-05-05 10:05:48 -0700951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (txbuf != -1) {
953 if (lp->outgoing.proto->continue_tx(dev, txbuf)) {
954 /* that was the last segment */
Stephen Hemminger5803c512009-01-09 13:01:08 +0000955 dev->stats.tx_bytes += lp->outgoing.skb->len;
Joe Perches7f5e7602015-05-05 10:05:49 -0700956 if (!lp->outgoing.proto->ack_tx) {
Joe Perchescb334642015-05-05 10:05:47 -0700957 dev_kfree_skb_irq(lp->outgoing.skb);
958 lp->outgoing.proto = NULL;
959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961 lp->next_tx = txbuf;
962 }
963 }
964 /* inform upper layers of idleness, if necessary */
965 if (lp->cur_tx == -1)
966 netif_wake_queue(dev);
967 }
968 /* now process the received packet, if any */
969 if (recbuf != -1) {
Joe Perches72aeea42015-05-05 10:05:54 -0700970 if (BUGLVL(D_RX))
971 arcnet_dump_packet(dev, recbuf, "rx irq", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 arcnet_rx(dev, recbuf);
974 release_arcbuf(dev, recbuf);
975
976 didsomething++;
977 }
978 if (status & lp->intmask & RECONflag) {
Joe Perchese15b0362015-05-05 10:06:12 -0700979 lp->hw.command(dev, CFLAGScmd | CONFIGclear);
Stephen Hemminger5803c512009-01-09 13:01:08 +0000980 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Joe Perchesa34c0932015-05-05 10:05:55 -0700982 arc_printk(D_RECON, dev, "Network reconfiguration detected (status=%Xh)\n",
983 status);
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +0200984 if (netif_carrier_ok(dev)) {
985 netif_carrier_off(dev);
986 netdev_info(dev, "link down\n");
987 }
988 mod_timer(&lp->timer, jiffies + msecs_to_jiffies(1000));
989
Michael Grzeschik88906242014-09-18 00:12:50 +0200990 arcnet_led_event(dev, ARCNET_LED_EVENT_RECON);
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700991 /* MYRECON bit is at bit 7 of diagstatus */
Joe Perchescb334642015-05-05 10:05:47 -0700992 if (diagstatus & 0x80)
Joe Perchesa34c0932015-05-05 10:05:55 -0700993 arc_printk(D_RECON, dev, "Put out that recon myself\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 /* is the RECON info empty or old? */
996 if (!lp->first_recon || !lp->last_recon ||
S.Caglar Onur9307b572008-03-28 14:41:24 -0700997 time_after(jiffies, lp->last_recon + HZ * 10)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (lp->network_down)
Joe Perchesa34c0932015-05-05 10:05:55 -0700999 arc_printk(D_NORMAL, dev, "reconfiguration detected: cabling restored?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 lp->first_recon = lp->last_recon = jiffies;
1001 lp->num_recons = lp->network_down = 0;
1002
Joe Perchesa34c0932015-05-05 10:05:55 -07001003 arc_printk(D_DURING, dev, "recon: clearing counters.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 } else { /* add to current RECON counter */
1005 lp->last_recon = jiffies;
1006 lp->num_recons++;
1007
Joe Perchesa34c0932015-05-05 10:05:55 -07001008 arc_printk(D_DURING, dev, "recon: counter=%d, time=%lds, net=%d\n",
1009 lp->num_recons,
1010 (lp->last_recon - lp->first_recon) / HZ,
1011 lp->network_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /* if network is marked up;
1014 * and first_recon and last_recon are 60+ apart;
1015 * and the average no. of recons counted is
1016 * > RECON_THRESHOLD/min;
1017 * then print a warning message.
1018 */
Joe Perches8e95a202009-12-03 07:58:21 +00001019 if (!lp->network_down &&
1020 (lp->last_recon - lp->first_recon) <= HZ * 60 &&
1021 lp->num_recons >= RECON_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 lp->network_down = 1;
Joe Perchesa34c0932015-05-05 10:05:55 -07001023 arc_printk(D_NORMAL, dev, "many reconfigurations detected: cabling problem?\n");
Joe Perches8e95a202009-12-03 07:58:21 +00001024 } else if (!lp->network_down &&
1025 lp->last_recon - lp->first_recon > HZ * 60) {
Joe Perchesd6d7d3e2015-05-05 10:06:02 -07001026 /* reset counters if we've gone for
1027 * over a minute.
1028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 lp->first_recon = lp->last_recon;
1030 lp->num_recons = 1;
1031 }
1032 }
S.Caglar Onur9307b572008-03-28 14:41:24 -07001033 } else if (lp->network_down &&
Joe Perchescb334642015-05-05 10:05:47 -07001034 time_after(jiffies, lp->last_recon + HZ * 10)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (lp->network_down)
Joe Perchesa34c0932015-05-05 10:05:55 -07001036 arc_printk(D_NORMAL, dev, "cabling restored?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 lp->first_recon = lp->last_recon = 0;
1038 lp->num_recons = lp->network_down = 0;
1039
Joe Perchesa34c0932015-05-05 10:05:55 -07001040 arc_printk(D_DURING, dev, "not recon: clearing counters anyway.\n");
Michael Grzeschik59fbcbc2015-09-16 10:15:45 +02001041 netif_carrier_on(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
Joe Perches7f5e7602015-05-05 10:05:49 -07001044 if (didsomething)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 retval |= IRQ_HANDLED;
Joe Perches7f5e7602015-05-05 10:05:49 -07001046 } while (--boguscount && didsomething);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Joe Perchesa34c0932015-05-05 10:05:55 -07001048 arc_printk(D_DURING, dev, "arcnet_interrupt complete (status=%Xh, count=%d)\n",
Joe Perchese15b0362015-05-05 10:06:12 -07001049 lp->hw.status(dev), boguscount);
Joe Perchesa34c0932015-05-05 10:05:55 -07001050 arc_printk(D_DURING, dev, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Joe Perchese15b0362015-05-05 10:06:12 -07001052 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 udelay(1);
Joe Perchese15b0362015-05-05 10:06:12 -07001054 lp->hw.intmask(dev, lp->intmask);
Joe Perchescb334642015-05-05 10:05:47 -07001055
Michael Grzeschik5b858402017-06-28 18:28:33 +02001056 spin_unlock_irqrestore(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return retval;
1058}
Joe Perches811eafc2015-05-05 10:05:57 -07001059EXPORT_SYMBOL(arcnet_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Joe Perchesf2f0a162015-05-05 10:05:52 -07001061/* This is a generic packet receiver that calls arcnet??_rx depending on the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 * protocol ID found.
1063 */
Adrian Bunkf03aa2d2006-01-14 03:10:22 +01001064static void arcnet_rx(struct net_device *dev, int bufnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Wang Chen454d7c92008-11-12 23:37:49 -08001066 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct archdr pkt;
1068 struct arc_rfc1201 *soft;
1069 int length, ofs;
1070
1071 soft = &pkt.soft.rfc1201;
1072
Dan Carpenter087d2732013-07-19 08:48:05 +03001073 lp->hw.copy_from_card(dev, bufnum, 0, &pkt, ARC_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (pkt.hard.offset[0]) {
1075 ofs = pkt.hard.offset[0];
1076 length = 256 - ofs;
1077 } else {
1078 ofs = pkt.hard.offset[1];
1079 length = 512 - ofs;
1080 }
1081
1082 /* get the full header, if possible */
Joe Perches7f5e7602015-05-05 10:05:49 -07001083 if (sizeof(pkt.soft) <= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(pkt.soft));
Joe Perches7f5e7602015-05-05 10:05:49 -07001085 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 memset(&pkt.soft, 0, sizeof(pkt.soft));
1087 lp->hw.copy_from_card(dev, bufnum, ofs, soft, length);
1088 }
1089
Joe Perchesa34c0932015-05-05 10:05:55 -07001090 arc_printk(D_DURING, dev, "Buffer #%d: received packet from %02Xh to %02Xh (%d+4 bytes)\n",
1091 bufnum, pkt.hard.source, pkt.hard.dest, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Stephen Hemminger5803c512009-01-09 13:01:08 +00001093 dev->stats.rx_packets++;
1094 dev->stats.rx_bytes += length + ARC_HDR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* call the right receiver for the protocol */
1097 if (arc_proto_map[soft->proto]->is_ip) {
Joe Perches72aeea42015-05-05 10:05:54 -07001098 if (BUGLVL(D_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 struct ArcProto
1100 *oldp = arc_proto_map[lp->default_proto[pkt.hard.source]],
1101 *newp = arc_proto_map[soft->proto];
1102
1103 if (oldp != newp) {
Joe Perchesa34c0932015-05-05 10:05:55 -07001104 arc_printk(D_PROTO, dev,
1105 "got protocol %02Xh; encap for host %02Xh is now '%c' (was '%c')\n",
1106 soft->proto, pkt.hard.source,
1107 newp->suffix, oldp->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109 }
1110
1111 /* broadcasts will always be done with the last-used encap. */
1112 lp->default_proto[0] = soft->proto;
1113
1114 /* in striking contrast, the following isn't a hack. */
1115 lp->default_proto[pkt.hard.source] = soft->proto;
1116 }
1117 /* call the protocol-specific receiver. */
1118 arc_proto_map[soft->proto]->rx(dev, bufnum, &pkt, length);
1119}
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121static void null_rx(struct net_device *dev, int bufnum,
1122 struct archdr *pkthdr, int length)
1123{
Joe Perchesa34c0932015-05-05 10:05:55 -07001124 arc_printk(D_PROTO, dev,
1125 "rx: don't know how to deal with proto %02Xh from host %02Xh.\n",
1126 pkthdr->soft.rfc1201.proto, pkthdr->hard.source);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129static int null_build_header(struct sk_buff *skb, struct net_device *dev,
1130 unsigned short type, uint8_t daddr)
1131{
Wang Chen454d7c92008-11-12 23:37:49 -08001132 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Joe Perchesa34c0932015-05-05 10:05:55 -07001134 arc_printk(D_PROTO, dev,
1135 "tx: can't build header for encap %02Xh; load a protocol driver.\n",
1136 lp->default_proto[daddr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /* always fails */
1139 return 0;
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/* the "do nothing" prepare_tx function warns that there's nothing to do. */
1143static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
1144 int length, int bufnum)
1145{
Wang Chen454d7c92008-11-12 23:37:49 -08001146 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 struct arc_hardware newpkt;
1148
Joe Perchesa34c0932015-05-05 10:05:55 -07001149 arc_printk(D_PROTO, dev, "tx: no encap for this host; load a protocol driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 /* send a packet to myself -- will never get received, of course */
1152 newpkt.source = newpkt.dest = dev->dev_addr[0];
1153
1154 /* only one byte of actual data (and it's random) */
1155 newpkt.offset[0] = 0xFF;
1156
1157 lp->hw.copy_to_card(dev, bufnum, 0, &newpkt, ARC_HDR_SIZE);
1158
1159 return 1; /* done */
1160}