blob: 4242522ae86b8e4a0a9cd2f21fc99cfeb6aac3a9 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Michael Grzeschik88906242014-09-18 00:12:50 +020055#include <linux/leds.h>
56
Joe Perches26c6d282015-05-05 10:06:03 -070057#include "arcdevice.h"
Joe Perches8e0f2952015-05-05 10:06:13 -070058#include "com9026.h"
Joe Perches26c6d282015-05-05 10:06:03 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* "do nothing" functions for protocol drivers */
61static void null_rx(struct net_device *dev, int bufnum,
62 struct archdr *pkthdr, int length);
63static int null_build_header(struct sk_buff *skb, struct net_device *dev,
64 unsigned short type, uint8_t daddr);
65static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
66 int length, int bufnum);
67
Adrian Bunkf03aa2d2006-01-14 03:10:22 +010068static void arcnet_rx(struct net_device *dev, int bufnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Joe Perchesf2f0a162015-05-05 10:05:52 -070070/* one ArcProto per possible proto ID. None of the elements of
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * arc_proto_map are allowed to be NULL; they will get set to
72 * arc_proto_default instead. It also must not be NULL; if you would like
73 * to set it to NULL, set it to &arc_proto_null instead.
74 */
Joe Perches811eafc2015-05-05 10:05:57 -070075struct ArcProto *arc_proto_map[256];
76EXPORT_SYMBOL(arc_proto_map);
77
78struct ArcProto *arc_proto_default;
79EXPORT_SYMBOL(arc_proto_default);
80
81struct ArcProto *arc_bcast_proto;
82EXPORT_SYMBOL(arc_bcast_proto);
83
84struct ArcProto *arc_raw_proto;
85EXPORT_SYMBOL(arc_raw_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Joe Perches7f5e7602015-05-05 10:05:49 -070087static struct ArcProto arc_proto_null = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .suffix = '?',
89 .mtu = XMTU,
90 .is_ip = 0,
91 .rx = null_rx,
92 .build_header = null_build_header,
93 .prepare_tx = null_prepare_tx,
94 .continue_tx = NULL,
95 .ack_tx = NULL
96};
97
98/* Exported function prototypes */
99int arcnet_debug = ARCNET_DEBUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100EXPORT_SYMBOL(arcnet_debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/* Internal function prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700104 unsigned short type, const void *daddr,
105 const void *saddr, unsigned len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static int go_tx(struct net_device *dev);
107
108static int debug = ARCNET_DEBUG;
109module_param(debug, int, 0);
110MODULE_LICENSE("GPL");
111
112static int __init arcnet_init(void)
113{
114 int count;
115
116 arcnet_debug = debug;
117
Joe Perches05a24b22015-05-05 10:05:56 -0700118 pr_info("arcnet loaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /* initialize the protocol map */
121 arc_raw_proto = arc_proto_default = arc_bcast_proto = &arc_proto_null;
122 for (count = 0; count < 256; count++)
123 arc_proto_map[count] = arc_proto_default;
124
Joe Perches72aeea42015-05-05 10:05:54 -0700125 if (BUGLVL(D_DURING))
Joe Perches05a24b22015-05-05 10:05:56 -0700126 pr_info("struct sizes: %Zd %Zd %Zd %Zd %Zd\n",
127 sizeof(struct arc_hardware),
128 sizeof(struct arc_rfc1201),
129 sizeof(struct arc_rfc1051),
130 sizeof(struct arc_eth_encap),
131 sizeof(struct archdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 return 0;
134}
135
136static void __exit arcnet_exit(void)
137{
138}
139
140module_init(arcnet_init);
141module_exit(arcnet_exit);
142
Joe Perchesf2f0a162015-05-05 10:05:52 -0700143/* Dump the contents of an sk_buff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#if ARCNET_DEBUG_MAX & D_SKB
145void arcnet_dump_skb(struct net_device *dev,
146 struct sk_buff *skb, char *desc)
147{
Joe Perchesad361c92009-07-06 13:05:40 -0700148 char hdr[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Joe Perchesad361c92009-07-06 13:05:40 -0700150 /* dump the packet */
151 snprintf(hdr, sizeof(hdr), "%6s:%s skb->data:", dev->name, desc);
152 print_hex_dump(KERN_DEBUG, hdr, DUMP_PREFIX_OFFSET,
153 16, 1, skb->data, skb->len, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155EXPORT_SYMBOL(arcnet_dump_skb);
156#endif
157
Joe Perchesf2f0a162015-05-05 10:05:52 -0700158/* Dump the contents of an ARCnet buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#if (ARCNET_DEBUG_MAX & (D_RX | D_TX))
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100160static void arcnet_dump_packet(struct net_device *dev, int bufnum,
161 char *desc, int take_arcnet_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Wang Chen454d7c92008-11-12 23:37:49 -0800163 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int i, length;
165 unsigned long flags = 0;
166 static uint8_t buf[512];
Joe Perchesad361c92009-07-06 13:05:40 -0700167 char hdr[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* hw.copy_from_card expects IRQ context so take the IRQ lock
Joe Perchesf2f0a162015-05-05 10:05:52 -0700170 * to keep it single threaded
171 */
Joe Perchescb334642015-05-05 10:05:47 -0700172 if (take_arcnet_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 spin_lock_irqsave(&lp->lock, flags);
174
175 lp->hw.copy_from_card(dev, bufnum, 0, buf, 512);
Joe Perchescb334642015-05-05 10:05:47 -0700176 if (take_arcnet_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 spin_unlock_irqrestore(&lp->lock, flags);
178
179 /* if the offset[0] byte is nonzero, this is a 256-byte packet */
180 length = (buf[2] ? 256 : 512);
181
Joe Perchesad361c92009-07-06 13:05:40 -0700182 /* dump the packet */
183 snprintf(hdr, sizeof(hdr), "%6s:%s packet dump:", dev->name, desc);
184 print_hex_dump(KERN_DEBUG, hdr, DUMP_PREFIX_OFFSET,
185 16, 1, buf, length, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100188#else
189
Joe Perchescb334642015-05-05 10:05:47 -0700190#define arcnet_dump_packet(dev, bufnum, desc, take_arcnet_lock) do { } while (0)
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#endif
193
Michael Grzeschik88906242014-09-18 00:12:50 +0200194/* Trigger a LED event in response to a ARCNET device event */
195void arcnet_led_event(struct net_device *dev, enum arcnet_led_event event)
196{
197 struct arcnet_local *lp = netdev_priv(dev);
198 unsigned long led_delay = 350;
199 unsigned long tx_delay = 50;
200
201 switch (event) {
202 case ARCNET_LED_EVENT_RECON:
203 led_trigger_blink_oneshot(lp->recon_led_trig,
204 &led_delay, &led_delay, 0);
205 break;
206 case ARCNET_LED_EVENT_OPEN:
207 led_trigger_event(lp->tx_led_trig, LED_OFF);
208 led_trigger_event(lp->recon_led_trig, LED_OFF);
209 break;
210 case ARCNET_LED_EVENT_STOP:
211 led_trigger_event(lp->tx_led_trig, LED_OFF);
212 led_trigger_event(lp->recon_led_trig, LED_OFF);
213 break;
214 case ARCNET_LED_EVENT_TX:
215 led_trigger_blink_oneshot(lp->tx_led_trig,
216 &tx_delay, &tx_delay, 0);
217 break;
218 }
219}
220EXPORT_SYMBOL_GPL(arcnet_led_event);
221
222static void arcnet_led_release(struct device *gendev, void *res)
223{
224 struct arcnet_local *lp = netdev_priv(to_net_dev(gendev));
225
226 led_trigger_unregister_simple(lp->tx_led_trig);
227 led_trigger_unregister_simple(lp->recon_led_trig);
228}
229
230/* Register ARCNET LED triggers for a arcnet device
231 *
232 * This is normally called from a driver's probe function
233 */
234void devm_arcnet_led_init(struct net_device *netdev, int index, int subid)
235{
236 struct arcnet_local *lp = netdev_priv(netdev);
237 void *res;
238
239 res = devres_alloc(arcnet_led_release, 0, GFP_KERNEL);
240 if (!res) {
241 netdev_err(netdev, "cannot register LED triggers\n");
242 return;
243 }
244
245 snprintf(lp->tx_led_trig_name, sizeof(lp->tx_led_trig_name),
246 "arc%d-%d-tx", index, subid);
247 snprintf(lp->recon_led_trig_name, sizeof(lp->recon_led_trig_name),
248 "arc%d-%d-recon", index, subid);
249
250 led_trigger_register_simple(lp->tx_led_trig_name,
251 &lp->tx_led_trig);
252 led_trigger_register_simple(lp->recon_led_trig_name,
253 &lp->recon_led_trig);
254
255 devres_add(&netdev->dev, res);
256}
257EXPORT_SYMBOL_GPL(devm_arcnet_led_init);
258
Joe Perchesf2f0a162015-05-05 10:05:52 -0700259/* Unregister a protocol driver from the arc_proto_map. Protocol drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 * are responsible for registering themselves, but the unregister routine
261 * is pretty generic so we'll do it here.
262 */
263void arcnet_unregister_proto(struct ArcProto *proto)
264{
265 int count;
266
267 if (arc_proto_default == proto)
268 arc_proto_default = &arc_proto_null;
269 if (arc_bcast_proto == proto)
270 arc_bcast_proto = arc_proto_default;
271 if (arc_raw_proto == proto)
272 arc_raw_proto = arc_proto_default;
273
274 for (count = 0; count < 256; count++) {
275 if (arc_proto_map[count] == proto)
276 arc_proto_map[count] = arc_proto_default;
277 }
278}
Joe Perches811eafc2015-05-05 10:05:57 -0700279EXPORT_SYMBOL(arcnet_unregister_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Joe Perchesf2f0a162015-05-05 10:05:52 -0700281/* Add a buffer to the queue. Only the interrupt handler is allowed to do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * this, unless interrupts are disabled.
Joe Perchescb334642015-05-05 10:05:47 -0700283 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * Note: we don't check for a full queue, since there aren't enough buffers
285 * to more than fill it.
286 */
287static void release_arcbuf(struct net_device *dev, int bufnum)
288{
Wang Chen454d7c92008-11-12 23:37:49 -0800289 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int i;
291
292 lp->buf_queue[lp->first_free_buf++] = bufnum;
293 lp->first_free_buf %= 5;
294
Joe Perches72aeea42015-05-05 10:05:54 -0700295 if (BUGLVL(D_DURING)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700296 arc_printk(D_DURING, dev, "release_arcbuf: freed #%d; buffer queue is now: ",
297 bufnum);
Joe Perchescb334642015-05-05 10:05:47 -0700298 for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
Joe Perchesa34c0932015-05-05 10:05:55 -0700299 arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
300 arc_cont(D_DURING, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302}
303
Joe Perchesf2f0a162015-05-05 10:05:52 -0700304/* Get a buffer from the queue.
305 * If this returns -1, there are no buffers available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
307static int get_arcbuf(struct net_device *dev)
308{
Wang Chen454d7c92008-11-12 23:37:49 -0800309 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int buf = -1, i;
311
312 if (!atomic_dec_and_test(&lp->buf_lock)) {
313 /* already in this function */
Joe Perchesa34c0932015-05-05 10:05:55 -0700314 arc_printk(D_NORMAL, dev, "get_arcbuf: overlap (%d)!\n",
315 lp->buf_lock.counter);
Joe Perches7f5e7602015-05-05 10:05:49 -0700316 } else { /* we can continue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (lp->next_buf >= 5)
318 lp->next_buf -= 5;
319
Joe Perches7f5e7602015-05-05 10:05:49 -0700320 if (lp->next_buf == lp->first_free_buf) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700321 arc_printk(D_NORMAL, dev, "get_arcbuf: BUG: no buffers are available??\n");
Joe Perches7f5e7602015-05-05 10:05:49 -0700322 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 buf = lp->buf_queue[lp->next_buf++];
324 lp->next_buf %= 5;
325 }
326 }
327
Joe Perches72aeea42015-05-05 10:05:54 -0700328 if (BUGLVL(D_DURING)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700329 arc_printk(D_DURING, dev, "get_arcbuf: got #%d; buffer queue is now: ",
330 buf);
Joe Perchescb334642015-05-05 10:05:47 -0700331 for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
Joe Perchesa34c0932015-05-05 10:05:55 -0700332 arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
333 arc_cont(D_DURING, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
336 atomic_inc(&lp->buf_lock);
337 return buf;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static int choose_mtu(void)
341{
342 int count, mtu = 65535;
343
344 /* choose the smallest MTU of all available encaps */
345 for (count = 0; count < 256; count++) {
Joe Perches8e95a202009-12-03 07:58:21 +0000346 if (arc_proto_map[count] != &arc_proto_null &&
347 arc_proto_map[count]->mtu < mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 mtu = arc_proto_map[count]->mtu;
349 }
350 }
351
352 return mtu == 65535 ? XMTU : mtu;
353}
354
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700355static const struct header_ops arcnet_header_ops = {
356 .create = arcnet_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700357};
358
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000359static const struct net_device_ops arcnet_netdev_ops = {
360 .ndo_open = arcnet_open,
361 .ndo_stop = arcnet_close,
362 .ndo_start_xmit = arcnet_send_packet,
363 .ndo_tx_timeout = arcnet_timeout,
364};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366/* Setup a struct device for ARCnet. */
367static void arcdev_setup(struct net_device *dev)
368{
369 dev->type = ARPHRD_ARCNET;
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000370 dev->netdev_ops = &arcnet_netdev_ops;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700371 dev->header_ops = &arcnet_header_ops;
Michael Grzeschik980137a2015-09-17 15:18:34 +0200372 dev->hard_header_len = sizeof(struct arc_hardware);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 dev->mtu = choose_mtu();
374
375 dev->addr_len = ARCNET_ALEN;
376 dev->tx_queue_len = 100;
377 dev->broadcast[0] = 0x00; /* for us, broadcasts are address 0 */
378 dev->watchdog_timeo = TX_TIMEOUT;
379
380 /* New-style flags. */
381 dev->flags = IFF_BROADCAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000384struct net_device *alloc_arcdev(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct net_device *dev;
387
388 dev = alloc_netdev(sizeof(struct arcnet_local),
Tom Gundersenc835a672014-07-14 16:37:24 +0200389 name && *name ? name : "arc%d", NET_NAME_UNKNOWN,
390 arcdev_setup);
Joe Perchescb334642015-05-05 10:05:47 -0700391 if (dev) {
Wang Chen454d7c92008-11-12 23:37:49 -0800392 struct arcnet_local *lp = netdev_priv(dev);
Joe Perches01a1d5a2015-05-05 10:05:48 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 spin_lock_init(&lp->lock);
395 }
396
397 return dev;
398}
Joe Perches811eafc2015-05-05 10:05:57 -0700399EXPORT_SYMBOL(alloc_arcdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Joe Perchesf2f0a162015-05-05 10:05:52 -0700401/* Open/initialize the board. This is called sometime after booting when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * the 'ifconfig' program is run.
403 *
404 * This routine should set everything up anew at each open, even registers
405 * that "should" only need to be set once at boot, so that there is
406 * non-reboot way to recover if something goes wrong.
407 */
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000408int arcnet_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Wang Chen454d7c92008-11-12 23:37:49 -0800410 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 int count, newmtu, error;
412
Joe Perchesa34c0932015-05-05 10:05:55 -0700413 arc_printk(D_INIT, dev, "opened.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 if (!try_module_get(lp->hw.owner))
416 return -ENODEV;
417
Joe Perches72aeea42015-05-05 10:05:54 -0700418 if (BUGLVL(D_PROTO)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700419 arc_printk(D_PROTO, dev, "protocol map (default is '%c'): ",
420 arc_proto_default->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 for (count = 0; count < 256; count++)
Joe Perchesa34c0932015-05-05 10:05:55 -0700422 arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix);
423 arc_cont(D_PROTO, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
Joe Perchesa34c0932015-05-05 10:05:55 -0700426 arc_printk(D_INIT, dev, "arcnet_open: resetting card.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* try to put the card in a defined state - if it fails the first
429 * time, actually reset it.
430 */
431 error = -ENODEV;
Joe Perchese15b0362015-05-05 10:06:12 -0700432 if (lp->hw.reset(dev, 0) && lp->hw.reset(dev, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 goto out_module_put;
434
435 newmtu = choose_mtu();
436 if (newmtu < dev->mtu)
437 dev->mtu = newmtu;
438
Joe Perchesa34c0932015-05-05 10:05:55 -0700439 arc_printk(D_INIT, dev, "arcnet_open: mtu: %d.\n", dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* autodetect the encapsulation for each host. */
442 memset(lp->default_proto, 0, sizeof(lp->default_proto));
443
444 /* the broadcast address is special - use the 'bcast' protocol */
445 for (count = 0; count < 256; count++) {
446 if (arc_proto_map[count] == arc_bcast_proto) {
447 lp->default_proto[0] = count;
448 break;
449 }
450 }
451
452 /* initialize buffers */
453 atomic_set(&lp->buf_lock, 1);
454
455 lp->next_buf = lp->first_free_buf = 0;
456 release_arcbuf(dev, 0);
457 release_arcbuf(dev, 1);
458 release_arcbuf(dev, 2);
459 release_arcbuf(dev, 3);
460 lp->cur_tx = lp->next_tx = -1;
461 lp->cur_rx = -1;
462
463 lp->rfc1201.sequence = 1;
464
465 /* bring up the hardware driver */
466 if (lp->hw.open)
467 lp->hw.open(dev);
468
469 if (dev->dev_addr[0] == 0)
Joe Perchesa34c0932015-05-05 10:05:55 -0700470 arc_printk(D_NORMAL, dev, "WARNING! Station address 00 is reserved for broadcasts!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 else if (dev->dev_addr[0] == 255)
Joe Perchesa34c0932015-05-05 10:05:55 -0700472 arc_printk(D_NORMAL, dev, "WARNING! Station address FF may confuse DOS networking programs!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Joe Perchesa34c0932015-05-05 10:05:55 -0700474 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Joe Perchese15b0362015-05-05 10:06:12 -0700475 if (lp->hw.status(dev) & RESETflag) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700476 arc_printk(D_DEBUG, dev, "%s: %d: %s\n",
477 __FILE__, __LINE__, __func__);
Joe Perchese15b0362015-05-05 10:06:12 -0700478 lp->hw.command(dev, CFLAGScmd | RESETclear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
Joe Perchesa34c0932015-05-05 10:05:55 -0700481 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* make sure we're ready to receive IRQ's. */
Joe Perchese15b0362015-05-05 10:06:12 -0700483 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 udelay(1); /* give it time to set the mask before
485 * we reset it again. (may not even be
486 * necessary)
487 */
Joe Perchesa34c0932015-05-05 10:05:55 -0700488 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 lp->intmask = NORXflag | RECONflag;
Joe Perchese15b0362015-05-05 10:06:12 -0700490 lp->hw.intmask(dev, lp->intmask);
Joe Perchesa34c0932015-05-05 10:05:55 -0700491 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 netif_start_queue(dev);
494
Michael Grzeschik88906242014-09-18 00:12:50 +0200495 arcnet_led_event(dev, ARCNET_LED_EVENT_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return 0;
497
498 out_module_put:
499 module_put(lp->hw.owner);
500 return error;
501}
Joe Perches811eafc2015-05-05 10:05:57 -0700502EXPORT_SYMBOL(arcnet_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/* The inverse routine to arcnet_open - shuts down the card. */
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000505int arcnet_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Wang Chen454d7c92008-11-12 23:37:49 -0800507 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Michael Grzeschik88906242014-09-18 00:12:50 +0200509 arcnet_led_event(dev, ARCNET_LED_EVENT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 netif_stop_queue(dev);
511
512 /* flush TX and disable RX */
Joe Perchese15b0362015-05-05 10:06:12 -0700513 lp->hw.intmask(dev, 0);
514 lp->hw.command(dev, NOTXcmd); /* stop transmit */
515 lp->hw.command(dev, NORXcmd); /* disable receive */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 mdelay(1);
517
518 /* shut down the card */
519 lp->hw.close(dev);
520 module_put(lp->hw.owner);
521 return 0;
522}
Joe Perches811eafc2015-05-05 10:05:57 -0700523EXPORT_SYMBOL(arcnet_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700526 unsigned short type, const void *daddr,
527 const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700529 const struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 uint8_t _daddr, proto_num;
531 struct ArcProto *proto;
532
Joe Perchesa34c0932015-05-05 10:05:55 -0700533 arc_printk(D_DURING, dev,
534 "create header from %d to %d; protocol %d (%Xh); size %u.\n",
535 saddr ? *(uint8_t *)saddr : -1,
536 daddr ? *(uint8_t *)daddr : -1,
537 type, type, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Joe Perchescb334642015-05-05 10:05:47 -0700539 if (skb->len != 0 && len != skb->len)
Joe Perchesa34c0932015-05-05 10:05:55 -0700540 arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! skb->len(%d) != len(%d)!\n",
541 skb->len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Joe Perchescb334642015-05-05 10:05:47 -0700543 /* Type is host order - ? */
544 if (type == ETH_P_ARCNET) {
545 proto = arc_raw_proto;
Joe Perchesa34c0932015-05-05 10:05:55 -0700546 arc_printk(D_DEBUG, dev, "arc_raw_proto used. proto='%c'\n",
547 proto->suffix);
Joe Perchescb334642015-05-05 10:05:47 -0700548 _daddr = daddr ? *(uint8_t *)daddr : 0;
Joe Perches7f5e7602015-05-05 10:05:49 -0700549 } else if (!daddr) {
Joe Perchesf2f0a162015-05-05 10:05:52 -0700550 /* if the dest addr isn't provided, we can't choose an
551 * encapsulation! Store the packet type (eg. ETH_P_IP)
552 * for now, and we'll push on a real header when we do
553 * rebuild_header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Joe Perchescb334642015-05-05 10:05:47 -0700555 *(uint16_t *)skb_push(skb, 2) = type;
Joe Perchesf2f0a162015-05-05 10:05:52 -0700556 /* XXX: Why not use skb->mac_len? */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700557 if (skb->network_header - skb->mac_header != 2)
Joe Perchesa34c0932015-05-05 10:05:55 -0700558 arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! diff (%u) is not 2!\n",
559 skb->network_header - skb->mac_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -2; /* return error -- can't transmit yet! */
Joe Perches7f5e7602015-05-05 10:05:49 -0700561 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* otherwise, we can just add the header as usual. */
Joe Perchescb334642015-05-05 10:05:47 -0700563 _daddr = *(uint8_t *)daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 proto_num = lp->default_proto[_daddr];
565 proto = arc_proto_map[proto_num];
Joe Perchesa34c0932015-05-05 10:05:55 -0700566 arc_printk(D_DURING, dev, "building header for %02Xh using protocol '%c'\n",
567 proto_num, proto->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (proto == &arc_proto_null && arc_bcast_proto != proto) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700569 arc_printk(D_DURING, dev, "actually, let's use '%c' instead.\n",
570 arc_bcast_proto->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 proto = arc_bcast_proto;
572 }
573 }
574 return proto->build_header(skb, dev, type, _daddr);
575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/* Called by the kernel in order to transmit a packet. */
Stephen Hemminger613573252009-08-31 19:50:58 +0000578netdev_tx_t arcnet_send_packet(struct sk_buff *skb,
Joe Perchescb334642015-05-05 10:05:47 -0700579 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Wang Chen454d7c92008-11-12 23:37:49 -0800581 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct archdr *pkt;
583 struct arc_rfc1201 *soft;
584 struct ArcProto *proto;
585 int txbuf;
586 unsigned long flags;
Michael Grzeschikb82de0e2015-04-22 16:41:46 +0200587 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Joe Perchesa34c0932015-05-05 10:05:55 -0700589 arc_printk(D_DURING, dev,
590 "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700591 lp->hw.status(dev), lp->cur_tx, lp->next_tx, skb->len, skb->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Joe Perchescb334642015-05-05 10:05:47 -0700593 pkt = (struct archdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 soft = &pkt->soft.rfc1201;
595 proto = arc_proto_map[soft->proto];
596
Joe Perchesa34c0932015-05-05 10:05:55 -0700597 arc_printk(D_SKB_SIZE, dev, "skb: transmitting %d bytes to %02X\n",
598 skb->len, pkt->hard.dest);
Joe Perches72aeea42015-05-05 10:05:54 -0700599 if (BUGLVL(D_SKB))
600 arcnet_dump_skb(dev, skb, "tx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /* fits in one packet? */
603 if (skb->len - ARC_HDR_SIZE > XMTU && !proto->continue_tx) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700604 arc_printk(D_NORMAL, dev, "fixme: packet too large: compensating badly!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 dev_kfree_skb(skb);
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700606 return NETDEV_TX_OK; /* don't try again */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 /* We're busy transmitting a packet... */
610 netif_stop_queue(dev);
611
612 spin_lock_irqsave(&lp->lock, flags);
Joe Perchese15b0362015-05-05 10:06:12 -0700613 lp->hw.intmask(dev, 0);
Joe Perchescb334642015-05-05 10:05:47 -0700614 if (lp->next_tx == -1)
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700615 txbuf = get_arcbuf(dev);
Joe Perches7f5e7602015-05-05 10:05:49 -0700616 else
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700617 txbuf = -1;
Joe Perches7f5e7602015-05-05 10:05:49 -0700618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (txbuf != -1) {
620 if (proto->prepare_tx(dev, pkt, skb->len, txbuf) &&
621 !proto->ack_tx) {
622 /* done right away and we don't want to acknowledge
Joe Perchesf2f0a162015-05-05 10:05:52 -0700623 * the package later - forget about it now
624 */
Stephen Hemminger5803c512009-01-09 13:01:08 +0000625 dev->stats.tx_bytes += skb->len;
Michael Grzeschikb82de0e2015-04-22 16:41:46 +0200626 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 } else {
628 /* do it the 'split' way */
629 lp->outgoing.proto = proto;
630 lp->outgoing.skb = skb;
631 lp->outgoing.pkt = pkt;
632
633 if (proto->continue_tx &&
634 proto->continue_tx(dev, txbuf)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700635 arc_printk(D_NORMAL, dev,
636 "bug! continue_tx finished the first time! (proto='%c')\n",
637 proto->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639 }
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700640 retval = NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 lp->next_tx = txbuf;
642 } else {
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700643 retval = NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Joe Perchesa34c0932015-05-05 10:05:55 -0700646 arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700647 __FILE__, __LINE__, __func__, lp->hw.status(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /* make sure we didn't ignore a TX IRQ while we were in here */
Joe Perchese15b0362015-05-05 10:06:12 -0700649 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Joe Perchesa34c0932015-05-05 10:05:55 -0700651 arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
Joe Perchescb334642015-05-05 10:05:47 -0700652 lp->intmask |= TXFREEflag | EXCNAKflag;
Joe Perchese15b0362015-05-05 10:06:12 -0700653 lp->hw.intmask(dev, lp->intmask);
Joe Perchesa34c0932015-05-05 10:05:55 -0700654 arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700655 __FILE__, __LINE__, __func__, lp->hw.status(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Michael Grzeschik88906242014-09-18 00:12:50 +0200657 arcnet_led_event(dev, ARCNET_LED_EVENT_TX);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 spin_unlock_irqrestore(&lp->lock, flags);
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700660 return retval; /* no need to try again */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
Joe Perches811eafc2015-05-05 10:05:57 -0700662EXPORT_SYMBOL(arcnet_send_packet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Joe Perchesf2f0a162015-05-05 10:05:52 -0700664/* Actually start transmitting a packet that was loaded into a buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * by prepare_tx. This should _only_ be called by the interrupt handler.
666 */
667static int go_tx(struct net_device *dev)
668{
Wang Chen454d7c92008-11-12 23:37:49 -0800669 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Joe Perchesa34c0932015-05-05 10:05:55 -0700671 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 -0700672 lp->hw.status(dev), lp->intmask, lp->next_tx, lp->cur_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (lp->cur_tx != -1 || lp->next_tx == -1)
675 return 0;
676
Joe Perches72aeea42015-05-05 10:05:54 -0700677 if (BUGLVL(D_TX))
678 arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 lp->cur_tx = lp->next_tx;
681 lp->next_tx = -1;
682
683 /* start sending */
Joe Perchese15b0362015-05-05 10:06:12 -0700684 lp->hw.command(dev, TXcmd | (lp->cur_tx << 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Stephen Hemminger5803c512009-01-09 13:01:08 +0000686 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 lp->lasttrans_dest = lp->lastload_dest;
688 lp->lastload_dest = 0;
689 lp->excnak_pending = 0;
Joe Perchescb334642015-05-05 10:05:47 -0700690 lp->intmask |= TXFREEflag | EXCNAKflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 return 1;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/* Called by the kernel when transmit times out */
Stephen Hemmingerbca5b892009-01-09 13:01:09 +0000696void arcnet_timeout(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 unsigned long flags;
Wang Chen454d7c92008-11-12 23:37:49 -0800699 struct arcnet_local *lp = netdev_priv(dev);
Joe Perchese15b0362015-05-05 10:06:12 -0700700 int status = lp->hw.status(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 char *msg;
702
703 spin_lock_irqsave(&lp->lock, flags);
704 if (status & TXFREEflag) { /* transmit _DID_ finish */
705 msg = " - missed IRQ?";
706 } else {
707 msg = "";
Stephen Hemminger5803c512009-01-09 13:01:08 +0000708 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 lp->timed_out = 1;
Joe Perchese15b0362015-05-05 10:06:12 -0700710 lp->hw.command(dev, NOTXcmd | (lp->cur_tx << 3));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Stephen Hemminger5803c512009-01-09 13:01:08 +0000712 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 /* make sure we didn't miss a TX or a EXC NAK IRQ */
Joe Perchese15b0362015-05-05 10:06:12 -0700715 lp->hw.intmask(dev, 0);
Joe Perchescb334642015-05-05 10:05:47 -0700716 lp->intmask |= TXFREEflag | EXCNAKflag;
Joe Perchese15b0362015-05-05 10:06:12 -0700717 lp->hw.intmask(dev, lp->intmask);
Joe Perchescb334642015-05-05 10:05:47 -0700718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 spin_unlock_irqrestore(&lp->lock, flags);
720
Joe Perchescb334642015-05-05 10:05:47 -0700721 if (time_after(jiffies, lp->last_timeout + 10 * HZ)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700722 arc_printk(D_EXTRA, dev, "tx timed out%s (status=%Xh, intmask=%Xh, dest=%02Xh)\n",
723 msg, status, lp->intmask, lp->lasttrans_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 lp->last_timeout = jiffies;
725 }
726
727 if (lp->cur_tx == -1)
728 netif_wake_queue(dev);
729}
Joe Perches811eafc2015-05-05 10:05:57 -0700730EXPORT_SYMBOL(arcnet_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Joe Perchesf2f0a162015-05-05 10:05:52 -0700732/* The typical workload of the driver: Handle the network interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * interrupts. Establish which device needs attention, and call the correct
734 * chipset interrupt handler.
735 */
David Howells7d12e782006-10-05 14:55:46 +0100736irqreturn_t arcnet_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct net_device *dev = dev_id;
739 struct arcnet_local *lp;
740 int recbuf, status, diagstatus, didsomething, boguscount;
741 int retval = IRQ_NONE;
742
Joe Perchesa34c0932015-05-05 10:05:55 -0700743 arc_printk(D_DURING, dev, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Joe Perchesa34c0932015-05-05 10:05:55 -0700745 arc_printk(D_DURING, dev, "in arcnet_interrupt\n");
Wang Chen454d7c92008-11-12 23:37:49 -0800746
747 lp = netdev_priv(dev);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200748 BUG_ON(!lp);
Joe Perchescb334642015-05-05 10:05:47 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 spin_lock(&lp->lock);
751
Joe Perchesf2f0a162015-05-05 10:05:52 -0700752 /* RESET flag was enabled - if device is not running, we must
753 * clear it right away (but nothing else).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 */
755 if (!netif_running(dev)) {
Joe Perchese15b0362015-05-05 10:06:12 -0700756 if (lp->hw.status(dev) & RESETflag)
757 lp->hw.command(dev, CFLAGScmd | RESETclear);
758 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 spin_unlock(&lp->lock);
Michael Grzeschik226ee672014-09-29 11:55:34 +0200760 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
Joe Perchesa34c0932015-05-05 10:05:55 -0700763 arc_printk(D_DURING, dev, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700764 lp->hw.status(dev), lp->intmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 boguscount = 5;
767 do {
Joe Perchese15b0362015-05-05 10:06:12 -0700768 status = lp->hw.status(dev);
Joe Perchescb334642015-05-05 10:05:47 -0700769 diagstatus = (status >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Joe Perchesa34c0932015-05-05 10:05:55 -0700771 arc_printk(D_DEBUG, dev, "%s: %d: %s: status=%x\n",
772 __FILE__, __LINE__, __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 didsomething = 0;
774
Joe Perchesf2f0a162015-05-05 10:05:52 -0700775 /* RESET flag was enabled - card is resetting and if RX is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * disabled, it's NOT because we just got a packet.
Joe Perchescb334642015-05-05 10:05:47 -0700777 *
Joe Perchesf2f0a162015-05-05 10:05:52 -0700778 * The card is in an undefined state.
779 * Clear it out and start over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 */
781 if (status & RESETflag) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700782 arc_printk(D_NORMAL, dev, "spurious reset (status=%Xh)\n",
783 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 arcnet_close(dev);
785 arcnet_open(dev);
786
787 /* get out of the interrupt handler! */
788 break;
789 }
Joe Perchesf2f0a162015-05-05 10:05:52 -0700790 /* RX is inhibited - we must have received something.
791 * Prepare to receive into the next buffer.
Joe Perchescb334642015-05-05 10:05:47 -0700792 *
Joe Perchesf2f0a162015-05-05 10:05:52 -0700793 * We don't actually copy the received packet from the card
794 * until after the transmit handler runs (and possibly
795 * launches the next tx); this should improve latency slightly
796 * if we get both types of interrupts at once.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
798 recbuf = -1;
799 if (status & lp->intmask & NORXflag) {
800 recbuf = lp->cur_rx;
Joe Perchesa34c0932015-05-05 10:05:55 -0700801 arc_printk(D_DURING, dev, "Buffer #%d: receive irq (status=%Xh)\n",
802 recbuf, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 lp->cur_rx = get_arcbuf(dev);
805 if (lp->cur_rx != -1) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700806 arc_printk(D_DURING, dev, "enabling receive to buffer #%d\n",
807 lp->cur_rx);
Joe Perchese15b0362015-05-05 10:06:12 -0700808 lp->hw.command(dev, RXcmd | (lp->cur_rx << 3) | RXbcasts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 didsomething++;
811 }
812
Joe Perchescb334642015-05-05 10:05:47 -0700813 if ((diagstatus & EXCNAKflag)) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700814 arc_printk(D_DURING, dev, "EXCNAK IRQ (diagstat=%Xh)\n",
815 diagstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Joe Perchese15b0362015-05-05 10:06:12 -0700817 lp->hw.command(dev, NOTXcmd); /* disable transmit */
Joe Perchescb334642015-05-05 10:05:47 -0700818 lp->excnak_pending = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Joe Perchese15b0362015-05-05 10:06:12 -0700820 lp->hw.command(dev, EXCNAKclear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 lp->intmask &= ~(EXCNAKflag);
Joe Perchescb334642015-05-05 10:05:47 -0700822 didsomething++;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /* a transmit finished, and we're interested in it. */
826 if ((status & lp->intmask & TXFREEflag) || lp->timed_out) {
Joe Perchescb334642015-05-05 10:05:47 -0700827 lp->intmask &= ~(TXFREEflag | EXCNAKflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700829 arc_printk(D_DURING, dev, "TX IRQ (stat=%Xh)\n",
830 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (lp->cur_tx != -1 && !lp->timed_out) {
Joe Perchescb334642015-05-05 10:05:47 -0700833 if (!(status & TXACKflag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (lp->lasttrans_dest != 0) {
Joe Perchesa34c0932015-05-05 10:05:55 -0700835 arc_printk(D_EXTRA, dev,
836 "transmit was not acknowledged! (status=%Xh, dest=%02Xh)\n",
837 status,
838 lp->lasttrans_dest);
Stephen Hemminger5803c512009-01-09 13:01:08 +0000839 dev->stats.tx_errors++;
840 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 } else {
Joe Perchesa34c0932015-05-05 10:05:55 -0700842 arc_printk(D_DURING, dev,
843 "broadcast was not acknowledged; that's normal (status=%Xh, dest=%02Xh)\n",
844 status,
845 lp->lasttrans_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 }
848
849 if (lp->outgoing.proto &&
850 lp->outgoing.proto->ack_tx) {
Joe Perchescb334642015-05-05 10:05:47 -0700851 int ackstatus;
Joe Perches01a1d5a2015-05-05 10:05:48 -0700852
Joe Perchescb334642015-05-05 10:05:47 -0700853 if (status & TXACKflag)
854 ackstatus = 2;
855 else if (lp->excnak_pending)
856 ackstatus = 1;
857 else
858 ackstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Joe Perchescb334642015-05-05 10:05:47 -0700860 lp->outgoing.proto
861 ->ack_tx(dev, ackstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863 }
864 if (lp->cur_tx != -1)
865 release_arcbuf(dev, lp->cur_tx);
866
867 lp->cur_tx = -1;
868 lp->timed_out = 0;
869 didsomething++;
870
871 /* send another packet if there is one */
872 go_tx(dev);
873
874 /* continue a split packet, if any */
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700875 if (lp->outgoing.proto &&
876 lp->outgoing.proto->continue_tx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 int txbuf = get_arcbuf(dev);
Joe Perches01a1d5a2015-05-05 10:05:48 -0700878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (txbuf != -1) {
880 if (lp->outgoing.proto->continue_tx(dev, txbuf)) {
881 /* that was the last segment */
Stephen Hemminger5803c512009-01-09 13:01:08 +0000882 dev->stats.tx_bytes += lp->outgoing.skb->len;
Joe Perches7f5e7602015-05-05 10:05:49 -0700883 if (!lp->outgoing.proto->ack_tx) {
Joe Perchescb334642015-05-05 10:05:47 -0700884 dev_kfree_skb_irq(lp->outgoing.skb);
885 lp->outgoing.proto = NULL;
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888 lp->next_tx = txbuf;
889 }
890 }
891 /* inform upper layers of idleness, if necessary */
892 if (lp->cur_tx == -1)
893 netif_wake_queue(dev);
894 }
895 /* now process the received packet, if any */
896 if (recbuf != -1) {
Joe Perches72aeea42015-05-05 10:05:54 -0700897 if (BUGLVL(D_RX))
898 arcnet_dump_packet(dev, recbuf, "rx irq", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 arcnet_rx(dev, recbuf);
901 release_arcbuf(dev, recbuf);
902
903 didsomething++;
904 }
905 if (status & lp->intmask & RECONflag) {
Joe Perchese15b0362015-05-05 10:06:12 -0700906 lp->hw.command(dev, CFLAGScmd | CONFIGclear);
Stephen Hemminger5803c512009-01-09 13:01:08 +0000907 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Joe Perchesa34c0932015-05-05 10:05:55 -0700909 arc_printk(D_RECON, dev, "Network reconfiguration detected (status=%Xh)\n",
910 status);
Michael Grzeschik88906242014-09-18 00:12:50 +0200911 arcnet_led_event(dev, ARCNET_LED_EVENT_RECON);
Pieter Dejaegherec6bb15a2005-09-06 19:54:48 -0700912 /* MYRECON bit is at bit 7 of diagstatus */
Joe Perchescb334642015-05-05 10:05:47 -0700913 if (diagstatus & 0x80)
Joe Perchesa34c0932015-05-05 10:05:55 -0700914 arc_printk(D_RECON, dev, "Put out that recon myself\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 /* is the RECON info empty or old? */
917 if (!lp->first_recon || !lp->last_recon ||
S.Caglar Onur9307b572008-03-28 14:41:24 -0700918 time_after(jiffies, lp->last_recon + HZ * 10)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (lp->network_down)
Joe Perchesa34c0932015-05-05 10:05:55 -0700920 arc_printk(D_NORMAL, dev, "reconfiguration detected: cabling restored?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 lp->first_recon = lp->last_recon = jiffies;
922 lp->num_recons = lp->network_down = 0;
923
Joe Perchesa34c0932015-05-05 10:05:55 -0700924 arc_printk(D_DURING, dev, "recon: clearing counters.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 } else { /* add to current RECON counter */
926 lp->last_recon = jiffies;
927 lp->num_recons++;
928
Joe Perchesa34c0932015-05-05 10:05:55 -0700929 arc_printk(D_DURING, dev, "recon: counter=%d, time=%lds, net=%d\n",
930 lp->num_recons,
931 (lp->last_recon - lp->first_recon) / HZ,
932 lp->network_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 /* if network is marked up;
935 * and first_recon and last_recon are 60+ apart;
936 * and the average no. of recons counted is
937 * > RECON_THRESHOLD/min;
938 * then print a warning message.
939 */
Joe Perches8e95a202009-12-03 07:58:21 +0000940 if (!lp->network_down &&
941 (lp->last_recon - lp->first_recon) <= HZ * 60 &&
942 lp->num_recons >= RECON_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 lp->network_down = 1;
Joe Perchesa34c0932015-05-05 10:05:55 -0700944 arc_printk(D_NORMAL, dev, "many reconfigurations detected: cabling problem?\n");
Joe Perches8e95a202009-12-03 07:58:21 +0000945 } else if (!lp->network_down &&
946 lp->last_recon - lp->first_recon > HZ * 60) {
Joe Perchesd6d7d3e2015-05-05 10:06:02 -0700947 /* reset counters if we've gone for
948 * over a minute.
949 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 lp->first_recon = lp->last_recon;
951 lp->num_recons = 1;
952 }
953 }
S.Caglar Onur9307b572008-03-28 14:41:24 -0700954 } else if (lp->network_down &&
Joe Perchescb334642015-05-05 10:05:47 -0700955 time_after(jiffies, lp->last_recon + HZ * 10)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (lp->network_down)
Joe Perchesa34c0932015-05-05 10:05:55 -0700957 arc_printk(D_NORMAL, dev, "cabling restored?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 lp->first_recon = lp->last_recon = 0;
959 lp->num_recons = lp->network_down = 0;
960
Joe Perchesa34c0932015-05-05 10:05:55 -0700961 arc_printk(D_DURING, dev, "not recon: clearing counters anyway.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
Joe Perches7f5e7602015-05-05 10:05:49 -0700964 if (didsomething)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 retval |= IRQ_HANDLED;
Joe Perches7f5e7602015-05-05 10:05:49 -0700966 } while (--boguscount && didsomething);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Joe Perchesa34c0932015-05-05 10:05:55 -0700968 arc_printk(D_DURING, dev, "arcnet_interrupt complete (status=%Xh, count=%d)\n",
Joe Perchese15b0362015-05-05 10:06:12 -0700969 lp->hw.status(dev), boguscount);
Joe Perchesa34c0932015-05-05 10:05:55 -0700970 arc_printk(D_DURING, dev, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Joe Perchese15b0362015-05-05 10:06:12 -0700972 lp->hw.intmask(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 udelay(1);
Joe Perchese15b0362015-05-05 10:06:12 -0700974 lp->hw.intmask(dev, lp->intmask);
Joe Perchescb334642015-05-05 10:05:47 -0700975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 spin_unlock(&lp->lock);
977 return retval;
978}
Joe Perches811eafc2015-05-05 10:05:57 -0700979EXPORT_SYMBOL(arcnet_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Joe Perchesf2f0a162015-05-05 10:05:52 -0700981/* This is a generic packet receiver that calls arcnet??_rx depending on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 * protocol ID found.
983 */
Adrian Bunkf03aa2d2006-01-14 03:10:22 +0100984static void arcnet_rx(struct net_device *dev, int bufnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Wang Chen454d7c92008-11-12 23:37:49 -0800986 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 struct archdr pkt;
988 struct arc_rfc1201 *soft;
989 int length, ofs;
990
991 soft = &pkt.soft.rfc1201;
992
Dan Carpenter087d2732013-07-19 08:48:05 +0300993 lp->hw.copy_from_card(dev, bufnum, 0, &pkt, ARC_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (pkt.hard.offset[0]) {
995 ofs = pkt.hard.offset[0];
996 length = 256 - ofs;
997 } else {
998 ofs = pkt.hard.offset[1];
999 length = 512 - ofs;
1000 }
1001
1002 /* get the full header, if possible */
Joe Perches7f5e7602015-05-05 10:05:49 -07001003 if (sizeof(pkt.soft) <= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(pkt.soft));
Joe Perches7f5e7602015-05-05 10:05:49 -07001005 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 memset(&pkt.soft, 0, sizeof(pkt.soft));
1007 lp->hw.copy_from_card(dev, bufnum, ofs, soft, length);
1008 }
1009
Joe Perchesa34c0932015-05-05 10:05:55 -07001010 arc_printk(D_DURING, dev, "Buffer #%d: received packet from %02Xh to %02Xh (%d+4 bytes)\n",
1011 bufnum, pkt.hard.source, pkt.hard.dest, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Stephen Hemminger5803c512009-01-09 13:01:08 +00001013 dev->stats.rx_packets++;
1014 dev->stats.rx_bytes += length + ARC_HDR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /* call the right receiver for the protocol */
1017 if (arc_proto_map[soft->proto]->is_ip) {
Joe Perches72aeea42015-05-05 10:05:54 -07001018 if (BUGLVL(D_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 struct ArcProto
1020 *oldp = arc_proto_map[lp->default_proto[pkt.hard.source]],
1021 *newp = arc_proto_map[soft->proto];
1022
1023 if (oldp != newp) {
Joe Perchesa34c0932015-05-05 10:05:55 -07001024 arc_printk(D_PROTO, dev,
1025 "got protocol %02Xh; encap for host %02Xh is now '%c' (was '%c')\n",
1026 soft->proto, pkt.hard.source,
1027 newp->suffix, oldp->suffix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 }
1030
1031 /* broadcasts will always be done with the last-used encap. */
1032 lp->default_proto[0] = soft->proto;
1033
1034 /* in striking contrast, the following isn't a hack. */
1035 lp->default_proto[pkt.hard.source] = soft->proto;
1036 }
1037 /* call the protocol-specific receiver. */
1038 arc_proto_map[soft->proto]->rx(dev, bufnum, &pkt, length);
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041static void null_rx(struct net_device *dev, int bufnum,
1042 struct archdr *pkthdr, int length)
1043{
Joe Perchesa34c0932015-05-05 10:05:55 -07001044 arc_printk(D_PROTO, dev,
1045 "rx: don't know how to deal with proto %02Xh from host %02Xh.\n",
1046 pkthdr->soft.rfc1201.proto, pkthdr->hard.source);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049static int null_build_header(struct sk_buff *skb, struct net_device *dev,
1050 unsigned short type, uint8_t daddr)
1051{
Wang Chen454d7c92008-11-12 23:37:49 -08001052 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Joe Perchesa34c0932015-05-05 10:05:55 -07001054 arc_printk(D_PROTO, dev,
1055 "tx: can't build header for encap %02Xh; load a protocol driver.\n",
1056 lp->default_proto[daddr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 /* always fails */
1059 return 0;
1060}
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062/* the "do nothing" prepare_tx function warns that there's nothing to do. */
1063static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
1064 int length, int bufnum)
1065{
Wang Chen454d7c92008-11-12 23:37:49 -08001066 struct arcnet_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct arc_hardware newpkt;
1068
Joe Perchesa34c0932015-05-05 10:05:55 -07001069 arc_printk(D_PROTO, dev, "tx: no encap for this host; load a protocol driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* send a packet to myself -- will never get received, of course */
1072 newpkt.source = newpkt.dest = dev->dev_addr[0];
1073
1074 /* only one byte of actual data (and it's random) */
1075 newpkt.offset[0] = 0xFF;
1076
1077 lp->hw.copy_to_card(dev, bufnum, 0, &newpkt, ARC_HDR_SIZE);
1078
1079 return 1; /* done */
1080}