|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Linux ARCnet driver - device-independent routines
|
|
|
- *
|
|
|
+ *
|
|
|
* Written 1997 by David Woodhouse.
|
|
|
* Written 1994-1999 by Avery Pennarun.
|
|
|
* Written 1999-2000 by Martin Mares <mj@ucw.cz>.
|
|
@@ -20,12 +20,12 @@
|
|
|
* modified by SRC, incorporated herein by reference.
|
|
|
*
|
|
|
* **********************
|
|
|
- *
|
|
|
+ *
|
|
|
* The change log is now in a file called ChangeLog in this directory.
|
|
|
*
|
|
|
* Sources:
|
|
|
* - Crynwr arcnet.com/arcether.com packet drivers.
|
|
|
- * - arcnet.c v0.00 dated 1/1/94 and apparently by
|
|
|
+ * - arcnet.c v0.00 dated 1/1/94 and apparently by
|
|
|
* Donald Becker - it didn't work :)
|
|
|
* - skeleton.c v0.05 dated 11/16/93 by Donald Becker
|
|
|
* (from Linux Kernel 1.1.45)
|
|
@@ -41,7 +41,7 @@
|
|
|
* <jojo@repas.de>
|
|
|
*/
|
|
|
|
|
|
-#define VERSION "arcnet: v3.94 BETA 2007/02/08 - by Avery Pennarun et al.\n"
|
|
|
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/types.h>
|
|
@@ -50,9 +50,13 @@
|
|
|
#include <linux/if_arp.h>
|
|
|
#include <net/arp.h>
|
|
|
#include <linux/init.h>
|
|
|
-#include <linux/arcdevice.h>
|
|
|
#include <linux/jiffies.h>
|
|
|
|
|
|
+#include <linux/leds.h>
|
|
|
+
|
|
|
+#include "arcdevice.h"
|
|
|
+#include "com9026.h"
|
|
|
+
|
|
|
/* "do nothing" functions for protocol drivers */
|
|
|
static void null_rx(struct net_device *dev, int bufnum,
|
|
|
struct archdr *pkthdr, int length);
|
|
@@ -63,17 +67,24 @@ static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
|
|
|
|
|
|
static void arcnet_rx(struct net_device *dev, int bufnum);
|
|
|
|
|
|
-/*
|
|
|
- * one ArcProto per possible proto ID. None of the elements of
|
|
|
+/* one ArcProto per possible proto ID. None of the elements of
|
|
|
* arc_proto_map are allowed to be NULL; they will get set to
|
|
|
* arc_proto_default instead. It also must not be NULL; if you would like
|
|
|
* to set it to NULL, set it to &arc_proto_null instead.
|
|
|
*/
|
|
|
- struct ArcProto *arc_proto_map[256], *arc_proto_default,
|
|
|
- *arc_bcast_proto, *arc_raw_proto;
|
|
|
+struct ArcProto *arc_proto_map[256];
|
|
|
+EXPORT_SYMBOL(arc_proto_map);
|
|
|
|
|
|
-static struct ArcProto arc_proto_null =
|
|
|
-{
|
|
|
+struct ArcProto *arc_proto_default;
|
|
|
+EXPORT_SYMBOL(arc_proto_default);
|
|
|
+
|
|
|
+struct ArcProto *arc_bcast_proto;
|
|
|
+EXPORT_SYMBOL(arc_bcast_proto);
|
|
|
+
|
|
|
+struct ArcProto *arc_raw_proto;
|
|
|
+EXPORT_SYMBOL(arc_raw_proto);
|
|
|
+
|
|
|
+static struct ArcProto arc_proto_null = {
|
|
|
.suffix = '?',
|
|
|
.mtu = XMTU,
|
|
|
.is_ip = 0,
|
|
@@ -86,19 +97,7 @@ static struct ArcProto arc_proto_null =
|
|
|
|
|
|
/* Exported function prototypes */
|
|
|
int arcnet_debug = ARCNET_DEBUG;
|
|
|
-
|
|
|
-EXPORT_SYMBOL(arc_proto_map);
|
|
|
-EXPORT_SYMBOL(arc_proto_default);
|
|
|
-EXPORT_SYMBOL(arc_bcast_proto);
|
|
|
-EXPORT_SYMBOL(arc_raw_proto);
|
|
|
-EXPORT_SYMBOL(arcnet_unregister_proto);
|
|
|
EXPORT_SYMBOL(arcnet_debug);
|
|
|
-EXPORT_SYMBOL(alloc_arcdev);
|
|
|
-EXPORT_SYMBOL(arcnet_interrupt);
|
|
|
-EXPORT_SYMBOL(arcnet_open);
|
|
|
-EXPORT_SYMBOL(arcnet_close);
|
|
|
-EXPORT_SYMBOL(arcnet_send_packet);
|
|
|
-EXPORT_SYMBOL(arcnet_timeout);
|
|
|
|
|
|
/* Internal function prototypes */
|
|
|
static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
|
|
@@ -116,29 +115,20 @@ static int __init arcnet_init(void)
|
|
|
|
|
|
arcnet_debug = debug;
|
|
|
|
|
|
- printk("arcnet loaded.\n");
|
|
|
-
|
|
|
-#ifdef ALPHA_WARNING
|
|
|
- BUGLVL(D_EXTRA) {
|
|
|
- printk("arcnet: ***\n"
|
|
|
- "arcnet: * Read arcnet.txt for important release notes!\n"
|
|
|
- "arcnet: *\n"
|
|
|
- "arcnet: * This is an ALPHA version! (Last stable release: v3.02) E-mail\n"
|
|
|
- "arcnet: * me if you have any questions, comments, or bug reports.\n"
|
|
|
- "arcnet: ***\n");
|
|
|
- }
|
|
|
-#endif
|
|
|
+ pr_info("arcnet loaded\n");
|
|
|
|
|
|
/* initialize the protocol map */
|
|
|
arc_raw_proto = arc_proto_default = arc_bcast_proto = &arc_proto_null;
|
|
|
for (count = 0; count < 256; count++)
|
|
|
arc_proto_map[count] = arc_proto_default;
|
|
|
|
|
|
- BUGLVL(D_DURING)
|
|
|
- printk("arcnet: struct sizes: %Zd %Zd %Zd %Zd %Zd\n",
|
|
|
- sizeof(struct arc_hardware), sizeof(struct arc_rfc1201),
|
|
|
- sizeof(struct arc_rfc1051), sizeof(struct arc_eth_encap),
|
|
|
- sizeof(struct archdr));
|
|
|
+ if (BUGLVL(D_DURING))
|
|
|
+ pr_info("struct sizes: %Zd %Zd %Zd %Zd %Zd\n",
|
|
|
+ sizeof(struct arc_hardware),
|
|
|
+ sizeof(struct arc_rfc1201),
|
|
|
+ sizeof(struct arc_rfc1051),
|
|
|
+ sizeof(struct arc_eth_encap),
|
|
|
+ sizeof(struct archdr));
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
@@ -150,9 +140,7 @@ static void __exit arcnet_exit(void)
|
|
|
module_init(arcnet_init);
|
|
|
module_exit(arcnet_exit);
|
|
|
|
|
|
-/*
|
|
|
- * Dump the contents of an sk_buff
|
|
|
- */
|
|
|
+/* Dump the contents of an sk_buff */
|
|
|
#if ARCNET_DEBUG_MAX & D_SKB
|
|
|
void arcnet_dump_skb(struct net_device *dev,
|
|
|
struct sk_buff *skb, char *desc)
|
|
@@ -164,14 +152,10 @@ void arcnet_dump_skb(struct net_device *dev,
|
|
|
print_hex_dump(KERN_DEBUG, hdr, DUMP_PREFIX_OFFSET,
|
|
|
16, 1, skb->data, skb->len, true);
|
|
|
}
|
|
|
-
|
|
|
EXPORT_SYMBOL(arcnet_dump_skb);
|
|
|
#endif
|
|
|
|
|
|
-
|
|
|
-/*
|
|
|
- * Dump the contents of an ARCnet buffer
|
|
|
- */
|
|
|
+/* Dump the contents of an ARCnet buffer */
|
|
|
#if (ARCNET_DEBUG_MAX & (D_RX | D_TX))
|
|
|
static void arcnet_dump_packet(struct net_device *dev, int bufnum,
|
|
|
char *desc, int take_arcnet_lock)
|
|
@@ -183,12 +167,13 @@ static void arcnet_dump_packet(struct net_device *dev, int bufnum,
|
|
|
char hdr[32];
|
|
|
|
|
|
/* hw.copy_from_card expects IRQ context so take the IRQ lock
|
|
|
- to keep it single threaded */
|
|
|
- if(take_arcnet_lock)
|
|
|
+ * to keep it single threaded
|
|
|
+ */
|
|
|
+ if (take_arcnet_lock)
|
|
|
spin_lock_irqsave(&lp->lock, flags);
|
|
|
|
|
|
lp->hw.copy_from_card(dev, bufnum, 0, buf, 512);
|
|
|
- if(take_arcnet_lock)
|
|
|
+ if (take_arcnet_lock)
|
|
|
spin_unlock_irqrestore(&lp->lock, flags);
|
|
|
|
|
|
/* if the offset[0] byte is nonzero, this is a 256-byte packet */
|
|
@@ -202,13 +187,76 @@ static void arcnet_dump_packet(struct net_device *dev, int bufnum,
|
|
|
|
|
|
#else
|
|
|
|
|
|
-#define arcnet_dump_packet(dev, bufnum, desc,take_arcnet_lock) do { } while (0)
|
|
|
+#define arcnet_dump_packet(dev, bufnum, desc, take_arcnet_lock) do { } while (0)
|
|
|
|
|
|
#endif
|
|
|
|
|
|
+/* Trigger a LED event in response to a ARCNET device event */
|
|
|
+void arcnet_led_event(struct net_device *dev, enum arcnet_led_event event)
|
|
|
+{
|
|
|
+ struct arcnet_local *lp = netdev_priv(dev);
|
|
|
+ unsigned long led_delay = 350;
|
|
|
+ unsigned long tx_delay = 50;
|
|
|
+
|
|
|
+ switch (event) {
|
|
|
+ case ARCNET_LED_EVENT_RECON:
|
|
|
+ led_trigger_blink_oneshot(lp->recon_led_trig,
|
|
|
+ &led_delay, &led_delay, 0);
|
|
|
+ break;
|
|
|
+ case ARCNET_LED_EVENT_OPEN:
|
|
|
+ led_trigger_event(lp->tx_led_trig, LED_OFF);
|
|
|
+ led_trigger_event(lp->recon_led_trig, LED_OFF);
|
|
|
+ break;
|
|
|
+ case ARCNET_LED_EVENT_STOP:
|
|
|
+ led_trigger_event(lp->tx_led_trig, LED_OFF);
|
|
|
+ led_trigger_event(lp->recon_led_trig, LED_OFF);
|
|
|
+ break;
|
|
|
+ case ARCNET_LED_EVENT_TX:
|
|
|
+ led_trigger_blink_oneshot(lp->tx_led_trig,
|
|
|
+ &tx_delay, &tx_delay, 0);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+EXPORT_SYMBOL_GPL(arcnet_led_event);
|
|
|
|
|
|
-/*
|
|
|
- * Unregister a protocol driver from the arc_proto_map. Protocol drivers
|
|
|
+static void arcnet_led_release(struct device *gendev, void *res)
|
|
|
+{
|
|
|
+ struct arcnet_local *lp = netdev_priv(to_net_dev(gendev));
|
|
|
+
|
|
|
+ led_trigger_unregister_simple(lp->tx_led_trig);
|
|
|
+ led_trigger_unregister_simple(lp->recon_led_trig);
|
|
|
+}
|
|
|
+
|
|
|
+/* Register ARCNET LED triggers for a arcnet device
|
|
|
+ *
|
|
|
+ * This is normally called from a driver's probe function
|
|
|
+ */
|
|
|
+void devm_arcnet_led_init(struct net_device *netdev, int index, int subid)
|
|
|
+{
|
|
|
+ struct arcnet_local *lp = netdev_priv(netdev);
|
|
|
+ void *res;
|
|
|
+
|
|
|
+ res = devres_alloc(arcnet_led_release, 0, GFP_KERNEL);
|
|
|
+ if (!res) {
|
|
|
+ netdev_err(netdev, "cannot register LED triggers\n");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ snprintf(lp->tx_led_trig_name, sizeof(lp->tx_led_trig_name),
|
|
|
+ "arc%d-%d-tx", index, subid);
|
|
|
+ snprintf(lp->recon_led_trig_name, sizeof(lp->recon_led_trig_name),
|
|
|
+ "arc%d-%d-recon", index, subid);
|
|
|
+
|
|
|
+ led_trigger_register_simple(lp->tx_led_trig_name,
|
|
|
+ &lp->tx_led_trig);
|
|
|
+ led_trigger_register_simple(lp->recon_led_trig_name,
|
|
|
+ &lp->recon_led_trig);
|
|
|
+
|
|
|
+ devres_add(&netdev->dev, res);
|
|
|
+}
|
|
|
+EXPORT_SYMBOL_GPL(devm_arcnet_led_init);
|
|
|
+
|
|
|
+/* Unregister a protocol driver from the arc_proto_map. Protocol drivers
|
|
|
* are responsible for registering themselves, but the unregister routine
|
|
|
* is pretty generic so we'll do it here.
|
|
|
*/
|
|
@@ -228,12 +276,11 @@ void arcnet_unregister_proto(struct ArcProto *proto)
|
|
|
arc_proto_map[count] = arc_proto_default;
|
|
|
}
|
|
|
}
|
|
|
+EXPORT_SYMBOL(arcnet_unregister_proto);
|
|
|
|
|
|
-
|
|
|
-/*
|
|
|
- * Add a buffer to the queue. Only the interrupt handler is allowed to do
|
|
|
+/* Add a buffer to the queue. Only the interrupt handler is allowed to do
|
|
|
* this, unless interrupts are disabled.
|
|
|
- *
|
|
|
+ *
|
|
|
* Note: we don't check for a full queue, since there aren't enough buffers
|
|
|
* to more than fill it.
|
|
|
*/
|
|
@@ -245,19 +292,17 @@ static void release_arcbuf(struct net_device *dev, int bufnum)
|
|
|
lp->buf_queue[lp->first_free_buf++] = bufnum;
|
|
|
lp->first_free_buf %= 5;
|
|
|
|
|
|
- BUGLVL(D_DURING) {
|
|
|
- BUGMSG(D_DURING, "release_arcbuf: freed #%d; buffer queue is now: ",
|
|
|
- bufnum);
|
|
|
- for (i = lp->next_buf; i != lp->first_free_buf; i = (i+1) % 5)
|
|
|
- BUGMSG2(D_DURING, "#%d ", lp->buf_queue[i]);
|
|
|
- BUGMSG2(D_DURING, "\n");
|
|
|
+ if (BUGLVL(D_DURING)) {
|
|
|
+ arc_printk(D_DURING, dev, "release_arcbuf: freed #%d; buffer queue is now: ",
|
|
|
+ bufnum);
|
|
|
+ for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
|
|
|
+ arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
|
|
|
+ arc_cont(D_DURING, "\n");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-/*
|
|
|
- * Get a buffer from the queue. If this returns -1, there are no buffers
|
|
|
- * available.
|
|
|
+/* Get a buffer from the queue.
|
|
|
+ * If this returns -1, there are no buffers available.
|
|
|
*/
|
|
|
static int get_arcbuf(struct net_device *dev)
|
|
|
{
|
|
@@ -266,34 +311,32 @@ static int get_arcbuf(struct net_device *dev)
|
|
|
|
|
|
if (!atomic_dec_and_test(&lp->buf_lock)) {
|
|
|
/* already in this function */
|
|
|
- BUGMSG(D_NORMAL, "get_arcbuf: overlap (%d)!\n",
|
|
|
- lp->buf_lock.counter);
|
|
|
- }
|
|
|
- else { /* we can continue */
|
|
|
+ arc_printk(D_NORMAL, dev, "get_arcbuf: overlap (%d)!\n",
|
|
|
+ lp->buf_lock.counter);
|
|
|
+ } else { /* we can continue */
|
|
|
if (lp->next_buf >= 5)
|
|
|
lp->next_buf -= 5;
|
|
|
|
|
|
- if (lp->next_buf == lp->first_free_buf)
|
|
|
- BUGMSG(D_NORMAL, "get_arcbuf: BUG: no buffers are available??\n");
|
|
|
- else {
|
|
|
+ if (lp->next_buf == lp->first_free_buf) {
|
|
|
+ arc_printk(D_NORMAL, dev, "get_arcbuf: BUG: no buffers are available??\n");
|
|
|
+ } else {
|
|
|
buf = lp->buf_queue[lp->next_buf++];
|
|
|
lp->next_buf %= 5;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- BUGLVL(D_DURING) {
|
|
|
- BUGMSG(D_DURING, "get_arcbuf: got #%d; buffer queue is now: ", buf);
|
|
|
- for (i = lp->next_buf; i != lp->first_free_buf; i = (i+1) % 5)
|
|
|
- BUGMSG2(D_DURING, "#%d ", lp->buf_queue[i]);
|
|
|
- BUGMSG2(D_DURING, "\n");
|
|
|
+ if (BUGLVL(D_DURING)) {
|
|
|
+ arc_printk(D_DURING, dev, "get_arcbuf: got #%d; buffer queue is now: ",
|
|
|
+ buf);
|
|
|
+ for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5)
|
|
|
+ arc_cont(D_DURING, "#%d ", lp->buf_queue[i]);
|
|
|
+ arc_cont(D_DURING, "\n");
|
|
|
}
|
|
|
|
|
|
atomic_inc(&lp->buf_lock);
|
|
|
return buf;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
static int choose_mtu(void)
|
|
|
{
|
|
|
int count, mtu = 65535;
|
|
@@ -336,7 +379,16 @@ static void arcdev_setup(struct net_device *dev)
|
|
|
|
|
|
/* New-style flags. */
|
|
|
dev->flags = IFF_BROADCAST;
|
|
|
+}
|
|
|
|
|
|
+static void arcnet_timer(unsigned long data)
|
|
|
+{
|
|
|
+ struct net_device *dev = (struct net_device *)data;
|
|
|
+
|
|
|
+ if (!netif_carrier_ok(dev)) {
|
|
|
+ netif_carrier_on(dev);
|
|
|
+ netdev_info(dev, "link up\n");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
struct net_device *alloc_arcdev(const char *name)
|
|
@@ -346,16 +398,20 @@ struct net_device *alloc_arcdev(const char *name)
|
|
|
dev = alloc_netdev(sizeof(struct arcnet_local),
|
|
|
name && *name ? name : "arc%d", NET_NAME_UNKNOWN,
|
|
|
arcdev_setup);
|
|
|
- if(dev) {
|
|
|
+ if (dev) {
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
+
|
|
|
spin_lock_init(&lp->lock);
|
|
|
+ init_timer(&lp->timer);
|
|
|
+ lp->timer.data = (unsigned long) dev;
|
|
|
+ lp->timer.function = arcnet_timer;
|
|
|
}
|
|
|
|
|
|
return dev;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(alloc_arcdev);
|
|
|
|
|
|
-/*
|
|
|
- * Open/initialize the board. This is called sometime after booting when
|
|
|
+/* Open/initialize the board. This is called sometime after booting when
|
|
|
* the 'ifconfig' program is run.
|
|
|
*
|
|
|
* This routine should set everything up anew at each open, even registers
|
|
@@ -367,34 +423,33 @@ int arcnet_open(struct net_device *dev)
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
int count, newmtu, error;
|
|
|
|
|
|
- BUGMSG(D_INIT,"opened.");
|
|
|
+ arc_printk(D_INIT, dev, "opened.");
|
|
|
|
|
|
if (!try_module_get(lp->hw.owner))
|
|
|
return -ENODEV;
|
|
|
|
|
|
- BUGLVL(D_PROTO) {
|
|
|
- BUGMSG(D_PROTO, "protocol map (default is '%c'): ",
|
|
|
- arc_proto_default->suffix);
|
|
|
+ if (BUGLVL(D_PROTO)) {
|
|
|
+ arc_printk(D_PROTO, dev, "protocol map (default is '%c'): ",
|
|
|
+ arc_proto_default->suffix);
|
|
|
for (count = 0; count < 256; count++)
|
|
|
- BUGMSG2(D_PROTO, "%c", arc_proto_map[count]->suffix);
|
|
|
- BUGMSG2(D_PROTO, "\n");
|
|
|
+ arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix);
|
|
|
+ arc_cont(D_PROTO, "\n");
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- BUGMSG(D_INIT, "arcnet_open: resetting card.\n");
|
|
|
+ arc_printk(D_INIT, dev, "arcnet_open: resetting card.\n");
|
|
|
|
|
|
/* try to put the card in a defined state - if it fails the first
|
|
|
* time, actually reset it.
|
|
|
*/
|
|
|
error = -ENODEV;
|
|
|
- if (ARCRESET(0) && ARCRESET(1))
|
|
|
+ if (lp->hw.reset(dev, 0) && lp->hw.reset(dev, 1))
|
|
|
goto out_module_put;
|
|
|
|
|
|
newmtu = choose_mtu();
|
|
|
if (newmtu < dev->mtu)
|
|
|
dev->mtu = newmtu;
|
|
|
|
|
|
- BUGMSG(D_INIT, "arcnet_open: mtu: %d.\n", dev->mtu);
|
|
|
+ arc_printk(D_INIT, dev, "arcnet_open: mtu: %d.\n", dev->mtu);
|
|
|
|
|
|
/* autodetect the encapsulation for each host. */
|
|
|
memset(lp->default_proto, 0, sizeof(lp->default_proto));
|
|
@@ -425,52 +480,57 @@ int arcnet_open(struct net_device *dev)
|
|
|
lp->hw.open(dev);
|
|
|
|
|
|
if (dev->dev_addr[0] == 0)
|
|
|
- BUGMSG(D_NORMAL, "WARNING! Station address 00 is reserved "
|
|
|
- "for broadcasts!\n");
|
|
|
+ arc_printk(D_NORMAL, dev, "WARNING! Station address 00 is reserved for broadcasts!\n");
|
|
|
else if (dev->dev_addr[0] == 255)
|
|
|
- BUGMSG(D_NORMAL, "WARNING! Station address FF may confuse "
|
|
|
- "DOS networking programs!\n");
|
|
|
+ arc_printk(D_NORMAL, dev, "WARNING! Station address FF may confuse DOS networking programs!\n");
|
|
|
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s\n",__FILE__,__LINE__,__func__);
|
|
|
- if (ASTATUS() & RESETflag) {
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s\n",__FILE__,__LINE__,__func__);
|
|
|
- ACOMMAND(CFLAGScmd | RESETclear);
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
|
|
|
+ if (lp->hw.status(dev) & RESETflag) {
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s\n",
|
|
|
+ __FILE__, __LINE__, __func__);
|
|
|
+ lp->hw.command(dev, CFLAGScmd | RESETclear);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s\n",__FILE__,__LINE__,__func__);
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
|
|
|
/* make sure we're ready to receive IRQ's. */
|
|
|
- AINTMASK(0);
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
udelay(1); /* give it time to set the mask before
|
|
|
* we reset it again. (may not even be
|
|
|
* necessary)
|
|
|
*/
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s\n",__FILE__,__LINE__,__func__);
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
|
|
|
lp->intmask = NORXflag | RECONflag;
|
|
|
- AINTMASK(lp->intmask);
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s\n",__FILE__,__LINE__,__func__);
|
|
|
+ lp->hw.intmask(dev, lp->intmask);
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
|
|
|
|
|
|
+ netif_carrier_off(dev);
|
|
|
netif_start_queue(dev);
|
|
|
+ mod_timer(&lp->timer, jiffies + msecs_to_jiffies(1000));
|
|
|
|
|
|
+ arcnet_led_event(dev, ARCNET_LED_EVENT_OPEN);
|
|
|
return 0;
|
|
|
|
|
|
out_module_put:
|
|
|
module_put(lp->hw.owner);
|
|
|
return error;
|
|
|
}
|
|
|
-
|
|
|
+EXPORT_SYMBOL(arcnet_open);
|
|
|
|
|
|
/* The inverse routine to arcnet_open - shuts down the card. */
|
|
|
int arcnet_close(struct net_device *dev)
|
|
|
{
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
|
|
|
+ arcnet_led_event(dev, ARCNET_LED_EVENT_STOP);
|
|
|
+ del_timer_sync(&lp->timer);
|
|
|
+
|
|
|
netif_stop_queue(dev);
|
|
|
+ netif_carrier_off(dev);
|
|
|
|
|
|
/* flush TX and disable RX */
|
|
|
- AINTMASK(0);
|
|
|
- ACOMMAND(NOTXcmd); /* stop transmit */
|
|
|
- ACOMMAND(NORXcmd); /* disable receive */
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
+ lp->hw.command(dev, NOTXcmd); /* stop transmit */
|
|
|
+ lp->hw.command(dev, NORXcmd); /* disable receive */
|
|
|
mdelay(1);
|
|
|
|
|
|
/* shut down the card */
|
|
@@ -478,7 +538,7 @@ int arcnet_close(struct net_device *dev)
|
|
|
module_put(lp->hw.owner);
|
|
|
return 0;
|
|
|
}
|
|
|
-
|
|
|
+EXPORT_SYMBOL(arcnet_close);
|
|
|
|
|
|
static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
|
|
|
unsigned short type, const void *daddr,
|
|
@@ -488,48 +548,44 @@ static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
|
|
|
uint8_t _daddr, proto_num;
|
|
|
struct ArcProto *proto;
|
|
|
|
|
|
- BUGMSG(D_DURING,
|
|
|
- "create header from %d to %d; protocol %d (%Xh); size %u.\n",
|
|
|
- saddr ? *(uint8_t *) saddr : -1,
|
|
|
- daddr ? *(uint8_t *) daddr : -1,
|
|
|
- type, type, len);
|
|
|
-
|
|
|
- if (skb->len!=0 && len != skb->len)
|
|
|
- BUGMSG(D_NORMAL, "arcnet_header: Yikes! skb->len(%d) != len(%d)!\n",
|
|
|
- skb->len, len);
|
|
|
-
|
|
|
-
|
|
|
- /* Type is host order - ? */
|
|
|
- if(type == ETH_P_ARCNET) {
|
|
|
- proto = arc_raw_proto;
|
|
|
- BUGMSG(D_DEBUG, "arc_raw_proto used. proto='%c'\n",proto->suffix);
|
|
|
- _daddr = daddr ? *(uint8_t *) daddr : 0;
|
|
|
- }
|
|
|
- else if (!daddr) {
|
|
|
- /*
|
|
|
- * if the dest addr isn't provided, we can't choose an encapsulation!
|
|
|
- * Store the packet type (eg. ETH_P_IP) for now, and we'll push on a
|
|
|
- * real header when we do rebuild_header.
|
|
|
- */
|
|
|
- *(uint16_t *) skb_push(skb, 2) = type;
|
|
|
- /*
|
|
|
- * XXX: Why not use skb->mac_len?
|
|
|
+ arc_printk(D_DURING, dev,
|
|
|
+ "create header from %d to %d; protocol %d (%Xh); size %u.\n",
|
|
|
+ saddr ? *(uint8_t *)saddr : -1,
|
|
|
+ daddr ? *(uint8_t *)daddr : -1,
|
|
|
+ type, type, len);
|
|
|
+
|
|
|
+ if (skb->len != 0 && len != skb->len)
|
|
|
+ arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! skb->len(%d) != len(%d)!\n",
|
|
|
+ skb->len, len);
|
|
|
+
|
|
|
+ /* Type is host order - ? */
|
|
|
+ if (type == ETH_P_ARCNET) {
|
|
|
+ proto = arc_raw_proto;
|
|
|
+ arc_printk(D_DEBUG, dev, "arc_raw_proto used. proto='%c'\n",
|
|
|
+ proto->suffix);
|
|
|
+ _daddr = daddr ? *(uint8_t *)daddr : 0;
|
|
|
+ } else if (!daddr) {
|
|
|
+ /* if the dest addr isn't provided, we can't choose an
|
|
|
+ * encapsulation! Store the packet type (eg. ETH_P_IP)
|
|
|
+ * for now, and we'll push on a real header when we do
|
|
|
+ * rebuild_header.
|
|
|
*/
|
|
|
+ *(uint16_t *)skb_push(skb, 2) = type;
|
|
|
+ /* XXX: Why not use skb->mac_len? */
|
|
|
if (skb->network_header - skb->mac_header != 2)
|
|
|
- BUGMSG(D_NORMAL, "arcnet_header: Yikes! diff (%d) is not 2!\n",
|
|
|
- (int)(skb->network_header - skb->mac_header));
|
|
|
+ arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! diff (%u) is not 2!\n",
|
|
|
+ skb->network_header - skb->mac_header);
|
|
|
return -2; /* return error -- can't transmit yet! */
|
|
|
- }
|
|
|
- else {
|
|
|
+ } else {
|
|
|
/* otherwise, we can just add the header as usual. */
|
|
|
- _daddr = *(uint8_t *) daddr;
|
|
|
+ _daddr = *(uint8_t *)daddr;
|
|
|
proto_num = lp->default_proto[_daddr];
|
|
|
proto = arc_proto_map[proto_num];
|
|
|
- BUGMSG(D_DURING, "building header for %02Xh using protocol '%c'\n",
|
|
|
- proto_num, proto->suffix);
|
|
|
+ arc_printk(D_DURING, dev, "building header for %02Xh using protocol '%c'\n",
|
|
|
+ proto_num, proto->suffix);
|
|
|
if (proto == &arc_proto_null && arc_bcast_proto != proto) {
|
|
|
- BUGMSG(D_DURING, "actually, let's use '%c' instead.\n",
|
|
|
- arc_bcast_proto->suffix);
|
|
|
+ arc_printk(D_DURING, dev, "actually, let's use '%c' instead.\n",
|
|
|
+ arc_bcast_proto->suffix);
|
|
|
proto = arc_bcast_proto;
|
|
|
}
|
|
|
}
|
|
@@ -538,7 +594,7 @@ static int arcnet_header(struct sk_buff *skb, struct net_device *dev,
|
|
|
|
|
|
/* Called by the kernel in order to transmit a packet. */
|
|
|
netdev_tx_t arcnet_send_packet(struct sk_buff *skb,
|
|
|
- struct net_device *dev)
|
|
|
+ struct net_device *dev)
|
|
|
{
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
struct archdr *pkt;
|
|
@@ -546,23 +602,24 @@ netdev_tx_t arcnet_send_packet(struct sk_buff *skb,
|
|
|
struct ArcProto *proto;
|
|
|
int txbuf;
|
|
|
unsigned long flags;
|
|
|
- int freeskb, retval;
|
|
|
+ int retval;
|
|
|
|
|
|
- BUGMSG(D_DURING,
|
|
|
- "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n",
|
|
|
- ASTATUS(), lp->cur_tx, lp->next_tx, skb->len,skb->protocol);
|
|
|
+ arc_printk(D_DURING, dev,
|
|
|
+ "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n",
|
|
|
+ lp->hw.status(dev), lp->cur_tx, lp->next_tx, skb->len, skb->protocol);
|
|
|
|
|
|
- pkt = (struct archdr *) skb->data;
|
|
|
+ pkt = (struct archdr *)skb->data;
|
|
|
soft = &pkt->soft.rfc1201;
|
|
|
proto = arc_proto_map[soft->proto];
|
|
|
|
|
|
- BUGMSG(D_SKB_SIZE, "skb: transmitting %d bytes to %02X\n",
|
|
|
- skb->len, pkt->hard.dest);
|
|
|
- BUGLVL(D_SKB) arcnet_dump_skb(dev, skb, "tx");
|
|
|
+ arc_printk(D_SKB_SIZE, dev, "skb: transmitting %d bytes to %02X\n",
|
|
|
+ skb->len, pkt->hard.dest);
|
|
|
+ if (BUGLVL(D_SKB))
|
|
|
+ arcnet_dump_skb(dev, skb, "tx");
|
|
|
|
|
|
/* fits in one packet? */
|
|
|
if (skb->len - ARC_HDR_SIZE > XMTU && !proto->continue_tx) {
|
|
|
- BUGMSG(D_NORMAL, "fixme: packet too large: compensating badly!\n");
|
|
|
+ arc_printk(D_NORMAL, dev, "fixme: packet too large: compensating badly!\n");
|
|
|
dev_kfree_skb(skb);
|
|
|
return NETDEV_TX_OK; /* don't try again */
|
|
|
}
|
|
@@ -571,96 +628,94 @@ netdev_tx_t arcnet_send_packet(struct sk_buff *skb,
|
|
|
netif_stop_queue(dev);
|
|
|
|
|
|
spin_lock_irqsave(&lp->lock, flags);
|
|
|
- AINTMASK(0);
|
|
|
- if(lp->next_tx == -1)
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
+ if (lp->next_tx == -1)
|
|
|
txbuf = get_arcbuf(dev);
|
|
|
- else {
|
|
|
+ else
|
|
|
txbuf = -1;
|
|
|
- }
|
|
|
+
|
|
|
if (txbuf != -1) {
|
|
|
if (proto->prepare_tx(dev, pkt, skb->len, txbuf) &&
|
|
|
!proto->ack_tx) {
|
|
|
/* done right away and we don't want to acknowledge
|
|
|
- the package later - forget about it now */
|
|
|
+ * the package later - forget about it now
|
|
|
+ */
|
|
|
dev->stats.tx_bytes += skb->len;
|
|
|
- freeskb = 1;
|
|
|
+ dev_kfree_skb(skb);
|
|
|
} else {
|
|
|
/* do it the 'split' way */
|
|
|
lp->outgoing.proto = proto;
|
|
|
lp->outgoing.skb = skb;
|
|
|
lp->outgoing.pkt = pkt;
|
|
|
|
|
|
- freeskb = 0;
|
|
|
-
|
|
|
if (proto->continue_tx &&
|
|
|
proto->continue_tx(dev, txbuf)) {
|
|
|
- BUGMSG(D_NORMAL,
|
|
|
- "bug! continue_tx finished the first time! "
|
|
|
- "(proto='%c')\n", proto->suffix);
|
|
|
+ arc_printk(D_NORMAL, dev,
|
|
|
+ "bug! continue_tx finished the first time! (proto='%c')\n",
|
|
|
+ proto->suffix);
|
|
|
}
|
|
|
}
|
|
|
retval = NETDEV_TX_OK;
|
|
|
lp->next_tx = txbuf;
|
|
|
} else {
|
|
|
retval = NETDEV_TX_BUSY;
|
|
|
- freeskb = 0;
|
|
|
}
|
|
|
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s, status: %x\n",__FILE__,__LINE__,__func__,ASTATUS());
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
|
|
|
+ __FILE__, __LINE__, __func__, lp->hw.status(dev));
|
|
|
/* make sure we didn't ignore a TX IRQ while we were in here */
|
|
|
- AINTMASK(0);
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s\n",__FILE__,__LINE__,__func__);
|
|
|
- lp->intmask |= TXFREEflag|EXCNAKflag;
|
|
|
- AINTMASK(lp->intmask);
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s, status: %x\n",__FILE__,__LINE__,__func__,ASTATUS());
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__);
|
|
|
+ lp->intmask |= TXFREEflag | EXCNAKflag;
|
|
|
+ lp->hw.intmask(dev, lp->intmask);
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n",
|
|
|
+ __FILE__, __LINE__, __func__, lp->hw.status(dev));
|
|
|
+
|
|
|
+ arcnet_led_event(dev, ARCNET_LED_EVENT_TX);
|
|
|
|
|
|
spin_unlock_irqrestore(&lp->lock, flags);
|
|
|
- if (freeskb) {
|
|
|
- dev_kfree_skb(skb);
|
|
|
- }
|
|
|
return retval; /* no need to try again */
|
|
|
}
|
|
|
+EXPORT_SYMBOL(arcnet_send_packet);
|
|
|
|
|
|
-
|
|
|
-/*
|
|
|
- * Actually start transmitting a packet that was loaded into a buffer
|
|
|
+/* Actually start transmitting a packet that was loaded into a buffer
|
|
|
* by prepare_tx. This should _only_ be called by the interrupt handler.
|
|
|
*/
|
|
|
static int go_tx(struct net_device *dev)
|
|
|
{
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
|
|
|
- BUGMSG(D_DURING, "go_tx: status=%Xh, intmask=%Xh, next_tx=%d, cur_tx=%d\n",
|
|
|
- ASTATUS(), lp->intmask, lp->next_tx, lp->cur_tx);
|
|
|
+ arc_printk(D_DURING, dev, "go_tx: status=%Xh, intmask=%Xh, next_tx=%d, cur_tx=%d\n",
|
|
|
+ lp->hw.status(dev), lp->intmask, lp->next_tx, lp->cur_tx);
|
|
|
|
|
|
if (lp->cur_tx != -1 || lp->next_tx == -1)
|
|
|
return 0;
|
|
|
|
|
|
- BUGLVL(D_TX) arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0);
|
|
|
+ if (BUGLVL(D_TX))
|
|
|
+ arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0);
|
|
|
|
|
|
lp->cur_tx = lp->next_tx;
|
|
|
lp->next_tx = -1;
|
|
|
|
|
|
/* start sending */
|
|
|
- ACOMMAND(TXcmd | (lp->cur_tx << 3));
|
|
|
+ lp->hw.command(dev, TXcmd | (lp->cur_tx << 3));
|
|
|
|
|
|
dev->stats.tx_packets++;
|
|
|
lp->lasttrans_dest = lp->lastload_dest;
|
|
|
lp->lastload_dest = 0;
|
|
|
lp->excnak_pending = 0;
|
|
|
- lp->intmask |= TXFREEflag|EXCNAKflag;
|
|
|
+ lp->intmask |= TXFREEflag | EXCNAKflag;
|
|
|
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/* Called by the kernel when transmit times out */
|
|
|
void arcnet_timeout(struct net_device *dev)
|
|
|
{
|
|
|
unsigned long flags;
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
- int status = ASTATUS();
|
|
|
+ int status = lp->hw.status(dev);
|
|
|
char *msg;
|
|
|
|
|
|
spin_lock_irqsave(&lp->lock, flags);
|
|
@@ -670,30 +725,29 @@ void arcnet_timeout(struct net_device *dev)
|
|
|
msg = "";
|
|
|
dev->stats.tx_aborted_errors++;
|
|
|
lp->timed_out = 1;
|
|
|
- ACOMMAND(NOTXcmd | (lp->cur_tx << 3));
|
|
|
+ lp->hw.command(dev, NOTXcmd | (lp->cur_tx << 3));
|
|
|
}
|
|
|
dev->stats.tx_errors++;
|
|
|
|
|
|
/* make sure we didn't miss a TX or a EXC NAK IRQ */
|
|
|
- AINTMASK(0);
|
|
|
- lp->intmask |= TXFREEflag|EXCNAKflag;
|
|
|
- AINTMASK(lp->intmask);
|
|
|
-
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
+ lp->intmask |= TXFREEflag | EXCNAKflag;
|
|
|
+ lp->hw.intmask(dev, lp->intmask);
|
|
|
+
|
|
|
spin_unlock_irqrestore(&lp->lock, flags);
|
|
|
|
|
|
- if (time_after(jiffies, lp->last_timeout + 10*HZ)) {
|
|
|
- BUGMSG(D_EXTRA, "tx timed out%s (status=%Xh, intmask=%Xh, dest=%02Xh)\n",
|
|
|
- msg, status, lp->intmask, lp->lasttrans_dest);
|
|
|
+ if (time_after(jiffies, lp->last_timeout + 10 * HZ)) {
|
|
|
+ arc_printk(D_EXTRA, dev, "tx timed out%s (status=%Xh, intmask=%Xh, dest=%02Xh)\n",
|
|
|
+ msg, status, lp->intmask, lp->lasttrans_dest);
|
|
|
lp->last_timeout = jiffies;
|
|
|
}
|
|
|
|
|
|
if (lp->cur_tx == -1)
|
|
|
netif_wake_queue(dev);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(arcnet_timeout);
|
|
|
|
|
|
-
|
|
|
-/*
|
|
|
- * The typical workload of the driver: Handle the network interface
|
|
|
+/* The typical workload of the driver: Handle the network interface
|
|
|
* interrupts. Establish which device needs attention, and call the correct
|
|
|
* chipset interrupt handler.
|
|
|
*/
|
|
@@ -704,125 +758,125 @@ irqreturn_t arcnet_interrupt(int irq, void *dev_id)
|
|
|
int recbuf, status, diagstatus, didsomething, boguscount;
|
|
|
int retval = IRQ_NONE;
|
|
|
|
|
|
- BUGMSG(D_DURING, "\n");
|
|
|
+ arc_printk(D_DURING, dev, "\n");
|
|
|
|
|
|
- BUGMSG(D_DURING, "in arcnet_interrupt\n");
|
|
|
+ arc_printk(D_DURING, dev, "in arcnet_interrupt\n");
|
|
|
|
|
|
lp = netdev_priv(dev);
|
|
|
BUG_ON(!lp);
|
|
|
-
|
|
|
+
|
|
|
spin_lock(&lp->lock);
|
|
|
|
|
|
- /*
|
|
|
- * RESET flag was enabled - if device is not running, we must clear it right
|
|
|
- * away (but nothing else).
|
|
|
+ /* RESET flag was enabled - if device is not running, we must
|
|
|
+ * clear it right away (but nothing else).
|
|
|
*/
|
|
|
if (!netif_running(dev)) {
|
|
|
- if (ASTATUS() & RESETflag)
|
|
|
- ACOMMAND(CFLAGScmd | RESETclear);
|
|
|
- AINTMASK(0);
|
|
|
+ if (lp->hw.status(dev) & RESETflag)
|
|
|
+ lp->hw.command(dev, CFLAGScmd | RESETclear);
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
spin_unlock(&lp->lock);
|
|
|
return retval;
|
|
|
}
|
|
|
|
|
|
- BUGMSG(D_DURING, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n",
|
|
|
- ASTATUS(), lp->intmask);
|
|
|
+ arc_printk(D_DURING, dev, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n",
|
|
|
+ lp->hw.status(dev), lp->intmask);
|
|
|
|
|
|
boguscount = 5;
|
|
|
do {
|
|
|
- status = ASTATUS();
|
|
|
- diagstatus = (status >> 8) & 0xFF;
|
|
|
+ status = lp->hw.status(dev);
|
|
|
+ diagstatus = (status >> 8) & 0xFF;
|
|
|
|
|
|
- BUGMSG(D_DEBUG, "%s: %d: %s: status=%x\n",
|
|
|
- __FILE__,__LINE__,__func__,status);
|
|
|
+ arc_printk(D_DEBUG, dev, "%s: %d: %s: status=%x\n",
|
|
|
+ __FILE__, __LINE__, __func__, status);
|
|
|
didsomething = 0;
|
|
|
|
|
|
- /*
|
|
|
- * RESET flag was enabled - card is resetting and if RX is
|
|
|
+ /* RESET flag was enabled - card is resetting and if RX is
|
|
|
* disabled, it's NOT because we just got a packet.
|
|
|
- *
|
|
|
- * The card is in an undefined state. Clear it out and start over.
|
|
|
+ *
|
|
|
+ * The card is in an undefined state.
|
|
|
+ * Clear it out and start over.
|
|
|
*/
|
|
|
if (status & RESETflag) {
|
|
|
- BUGMSG(D_NORMAL, "spurious reset (status=%Xh)\n", status);
|
|
|
+ arc_printk(D_NORMAL, dev, "spurious reset (status=%Xh)\n",
|
|
|
+ status);
|
|
|
arcnet_close(dev);
|
|
|
arcnet_open(dev);
|
|
|
|
|
|
/* get out of the interrupt handler! */
|
|
|
break;
|
|
|
}
|
|
|
- /*
|
|
|
- * RX is inhibited - we must have received something. Prepare to
|
|
|
- * receive into the next buffer.
|
|
|
- *
|
|
|
- * We don't actually copy the received packet from the card until
|
|
|
- * after the transmit handler runs (and possibly launches the next
|
|
|
- * tx); this should improve latency slightly if we get both types
|
|
|
- * of interrupts at once.
|
|
|
+ /* RX is inhibited - we must have received something.
|
|
|
+ * Prepare to receive into the next buffer.
|
|
|
+ *
|
|
|
+ * We don't actually copy the received packet from the card
|
|
|
+ * until after the transmit handler runs (and possibly
|
|
|
+ * launches the next tx); this should improve latency slightly
|
|
|
+ * if we get both types of interrupts at once.
|
|
|
*/
|
|
|
recbuf = -1;
|
|
|
if (status & lp->intmask & NORXflag) {
|
|
|
recbuf = lp->cur_rx;
|
|
|
- BUGMSG(D_DURING, "Buffer #%d: receive irq (status=%Xh)\n",
|
|
|
- recbuf, status);
|
|
|
+ arc_printk(D_DURING, dev, "Buffer #%d: receive irq (status=%Xh)\n",
|
|
|
+ recbuf, status);
|
|
|
|
|
|
lp->cur_rx = get_arcbuf(dev);
|
|
|
if (lp->cur_rx != -1) {
|
|
|
- BUGMSG(D_DURING, "enabling receive to buffer #%d\n",
|
|
|
- lp->cur_rx);
|
|
|
- ACOMMAND(RXcmd | (lp->cur_rx << 3) | RXbcasts);
|
|
|
+ arc_printk(D_DURING, dev, "enabling receive to buffer #%d\n",
|
|
|
+ lp->cur_rx);
|
|
|
+ lp->hw.command(dev, RXcmd | (lp->cur_rx << 3) | RXbcasts);
|
|
|
}
|
|
|
didsomething++;
|
|
|
}
|
|
|
|
|
|
- if((diagstatus & EXCNAKflag)) {
|
|
|
- BUGMSG(D_DURING, "EXCNAK IRQ (diagstat=%Xh)\n",
|
|
|
- diagstatus);
|
|
|
+ if ((diagstatus & EXCNAKflag)) {
|
|
|
+ arc_printk(D_DURING, dev, "EXCNAK IRQ (diagstat=%Xh)\n",
|
|
|
+ diagstatus);
|
|
|
|
|
|
- ACOMMAND(NOTXcmd); /* disable transmit */
|
|
|
- lp->excnak_pending = 1;
|
|
|
+ lp->hw.command(dev, NOTXcmd); /* disable transmit */
|
|
|
+ lp->excnak_pending = 1;
|
|
|
|
|
|
- ACOMMAND(EXCNAKclear);
|
|
|
+ lp->hw.command(dev, EXCNAKclear);
|
|
|
lp->intmask &= ~(EXCNAKflag);
|
|
|
- didsomething++;
|
|
|
- }
|
|
|
-
|
|
|
+ didsomething++;
|
|
|
+ }
|
|
|
|
|
|
/* a transmit finished, and we're interested in it. */
|
|
|
if ((status & lp->intmask & TXFREEflag) || lp->timed_out) {
|
|
|
- lp->intmask &= ~(TXFREEflag|EXCNAKflag);
|
|
|
+ lp->intmask &= ~(TXFREEflag | EXCNAKflag);
|
|
|
|
|
|
- BUGMSG(D_DURING, "TX IRQ (stat=%Xh)\n", status);
|
|
|
+ arc_printk(D_DURING, dev, "TX IRQ (stat=%Xh)\n",
|
|
|
+ status);
|
|
|
|
|
|
if (lp->cur_tx != -1 && !lp->timed_out) {
|
|
|
- if(!(status & TXACKflag)) {
|
|
|
+ if (!(status & TXACKflag)) {
|
|
|
if (lp->lasttrans_dest != 0) {
|
|
|
- BUGMSG(D_EXTRA,
|
|
|
- "transmit was not acknowledged! "
|
|
|
- "(status=%Xh, dest=%02Xh)\n",
|
|
|
- status, lp->lasttrans_dest);
|
|
|
+ arc_printk(D_EXTRA, dev,
|
|
|
+ "transmit was not acknowledged! (status=%Xh, dest=%02Xh)\n",
|
|
|
+ status,
|
|
|
+ lp->lasttrans_dest);
|
|
|
dev->stats.tx_errors++;
|
|
|
dev->stats.tx_carrier_errors++;
|
|
|
} else {
|
|
|
- BUGMSG(D_DURING,
|
|
|
- "broadcast was not acknowledged; that's normal "
|
|
|
- "(status=%Xh, dest=%02Xh)\n",
|
|
|
- status, lp->lasttrans_dest);
|
|
|
+ arc_printk(D_DURING, dev,
|
|
|
+ "broadcast was not acknowledged; that's normal (status=%Xh, dest=%02Xh)\n",
|
|
|
+ status,
|
|
|
+ lp->lasttrans_dest);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (lp->outgoing.proto &&
|
|
|
lp->outgoing.proto->ack_tx) {
|
|
|
- int ackstatus;
|
|
|
- if(status & TXACKflag)
|
|
|
- ackstatus=2;
|
|
|
- else if(lp->excnak_pending)
|
|
|
- ackstatus=1;
|
|
|
- else
|
|
|
- ackstatus=0;
|
|
|
-
|
|
|
- lp->outgoing.proto
|
|
|
- ->ack_tx(dev, ackstatus);
|
|
|
+ int ackstatus;
|
|
|
+
|
|
|
+ if (status & TXACKflag)
|
|
|
+ ackstatus = 2;
|
|
|
+ else if (lp->excnak_pending)
|
|
|
+ ackstatus = 1;
|
|
|
+ else
|
|
|
+ ackstatus = 0;
|
|
|
+
|
|
|
+ lp->outgoing.proto
|
|
|
+ ->ack_tx(dev, ackstatus);
|
|
|
}
|
|
|
}
|
|
|
if (lp->cur_tx != -1)
|
|
@@ -836,17 +890,18 @@ irqreturn_t arcnet_interrupt(int irq, void *dev_id)
|
|
|
go_tx(dev);
|
|
|
|
|
|
/* continue a split packet, if any */
|
|
|
- if (lp->outgoing.proto && lp->outgoing.proto->continue_tx) {
|
|
|
+ if (lp->outgoing.proto &&
|
|
|
+ lp->outgoing.proto->continue_tx) {
|
|
|
int txbuf = get_arcbuf(dev);
|
|
|
+
|
|
|
if (txbuf != -1) {
|
|
|
if (lp->outgoing.proto->continue_tx(dev, txbuf)) {
|
|
|
/* that was the last segment */
|
|
|
dev->stats.tx_bytes += lp->outgoing.skb->len;
|
|
|
- if(!lp->outgoing.proto->ack_tx)
|
|
|
- {
|
|
|
- dev_kfree_skb_irq(lp->outgoing.skb);
|
|
|
- lp->outgoing.proto = NULL;
|
|
|
- }
|
|
|
+ if (!lp->outgoing.proto->ack_tx) {
|
|
|
+ dev_kfree_skb_irq(lp->outgoing.skb);
|
|
|
+ lp->outgoing.proto = NULL;
|
|
|
+ }
|
|
|
}
|
|
|
lp->next_tx = txbuf;
|
|
|
}
|
|
@@ -857,7 +912,8 @@ irqreturn_t arcnet_interrupt(int irq, void *dev_id)
|
|
|
}
|
|
|
/* now process the received packet, if any */
|
|
|
if (recbuf != -1) {
|
|
|
- BUGLVL(D_RX) arcnet_dump_packet(dev, recbuf, "rx irq", 0);
|
|
|
+ if (BUGLVL(D_RX))
|
|
|
+ arcnet_dump_packet(dev, recbuf, "rx irq", 0);
|
|
|
|
|
|
arcnet_rx(dev, recbuf);
|
|
|
release_arcbuf(dev, recbuf);
|
|
@@ -865,32 +921,39 @@ irqreturn_t arcnet_interrupt(int irq, void *dev_id)
|
|
|
didsomething++;
|
|
|
}
|
|
|
if (status & lp->intmask & RECONflag) {
|
|
|
- ACOMMAND(CFLAGScmd | CONFIGclear);
|
|
|
+ lp->hw.command(dev, CFLAGScmd | CONFIGclear);
|
|
|
dev->stats.tx_carrier_errors++;
|
|
|
|
|
|
- BUGMSG(D_RECON, "Network reconfiguration detected (status=%Xh)\n",
|
|
|
- status);
|
|
|
+ arc_printk(D_RECON, dev, "Network reconfiguration detected (status=%Xh)\n",
|
|
|
+ status);
|
|
|
+ if (netif_carrier_ok(dev)) {
|
|
|
+ netif_carrier_off(dev);
|
|
|
+ netdev_info(dev, "link down\n");
|
|
|
+ }
|
|
|
+ mod_timer(&lp->timer, jiffies + msecs_to_jiffies(1000));
|
|
|
+
|
|
|
+ arcnet_led_event(dev, ARCNET_LED_EVENT_RECON);
|
|
|
/* MYRECON bit is at bit 7 of diagstatus */
|
|
|
- if(diagstatus & 0x80)
|
|
|
- BUGMSG(D_RECON,"Put out that recon myself\n");
|
|
|
+ if (diagstatus & 0x80)
|
|
|
+ arc_printk(D_RECON, dev, "Put out that recon myself\n");
|
|
|
|
|
|
/* is the RECON info empty or old? */
|
|
|
if (!lp->first_recon || !lp->last_recon ||
|
|
|
time_after(jiffies, lp->last_recon + HZ * 10)) {
|
|
|
if (lp->network_down)
|
|
|
- BUGMSG(D_NORMAL, "reconfiguration detected: cabling restored?\n");
|
|
|
+ arc_printk(D_NORMAL, dev, "reconfiguration detected: cabling restored?\n");
|
|
|
lp->first_recon = lp->last_recon = jiffies;
|
|
|
lp->num_recons = lp->network_down = 0;
|
|
|
|
|
|
- BUGMSG(D_DURING, "recon: clearing counters.\n");
|
|
|
+ arc_printk(D_DURING, dev, "recon: clearing counters.\n");
|
|
|
} else { /* add to current RECON counter */
|
|
|
lp->last_recon = jiffies;
|
|
|
lp->num_recons++;
|
|
|
|
|
|
- BUGMSG(D_DURING, "recon: counter=%d, time=%lds, net=%d\n",
|
|
|
- lp->num_recons,
|
|
|
- (lp->last_recon - lp->first_recon) / HZ,
|
|
|
- lp->network_down);
|
|
|
+ arc_printk(D_DURING, dev, "recon: counter=%d, time=%lds, net=%d\n",
|
|
|
+ lp->num_recons,
|
|
|
+ (lp->last_recon - lp->first_recon) / HZ,
|
|
|
+ lp->network_down);
|
|
|
|
|
|
/* if network is marked up;
|
|
|
* and first_recon and last_recon are 60+ apart;
|
|
@@ -902,46 +965,45 @@ irqreturn_t arcnet_interrupt(int irq, void *dev_id)
|
|
|
(lp->last_recon - lp->first_recon) <= HZ * 60 &&
|
|
|
lp->num_recons >= RECON_THRESHOLD) {
|
|
|
lp->network_down = 1;
|
|
|
- BUGMSG(D_NORMAL, "many reconfigurations detected: cabling problem?\n");
|
|
|
+ arc_printk(D_NORMAL, dev, "many reconfigurations detected: cabling problem?\n");
|
|
|
} else if (!lp->network_down &&
|
|
|
lp->last_recon - lp->first_recon > HZ * 60) {
|
|
|
- /* reset counters if we've gone for over a minute. */
|
|
|
+ /* reset counters if we've gone for
|
|
|
+ * over a minute.
|
|
|
+ */
|
|
|
lp->first_recon = lp->last_recon;
|
|
|
lp->num_recons = 1;
|
|
|
}
|
|
|
}
|
|
|
} else if (lp->network_down &&
|
|
|
- time_after(jiffies, lp->last_recon + HZ * 10)) {
|
|
|
+ time_after(jiffies, lp->last_recon + HZ * 10)) {
|
|
|
if (lp->network_down)
|
|
|
- BUGMSG(D_NORMAL, "cabling restored?\n");
|
|
|
+ arc_printk(D_NORMAL, dev, "cabling restored?\n");
|
|
|
lp->first_recon = lp->last_recon = 0;
|
|
|
lp->num_recons = lp->network_down = 0;
|
|
|
|
|
|
- BUGMSG(D_DURING, "not recon: clearing counters anyway.\n");
|
|
|
+ arc_printk(D_DURING, dev, "not recon: clearing counters anyway.\n");
|
|
|
+ netif_carrier_on(dev);
|
|
|
}
|
|
|
|
|
|
- if(didsomething) {
|
|
|
+ if (didsomething)
|
|
|
retval |= IRQ_HANDLED;
|
|
|
- }
|
|
|
- }
|
|
|
- while (--boguscount && didsomething);
|
|
|
-
|
|
|
- BUGMSG(D_DURING, "arcnet_interrupt complete (status=%Xh, count=%d)\n",
|
|
|
- ASTATUS(), boguscount);
|
|
|
- BUGMSG(D_DURING, "\n");
|
|
|
+ } while (--boguscount && didsomething);
|
|
|
|
|
|
+ arc_printk(D_DURING, dev, "arcnet_interrupt complete (status=%Xh, count=%d)\n",
|
|
|
+ lp->hw.status(dev), boguscount);
|
|
|
+ arc_printk(D_DURING, dev, "\n");
|
|
|
|
|
|
- AINTMASK(0);
|
|
|
+ lp->hw.intmask(dev, 0);
|
|
|
udelay(1);
|
|
|
- AINTMASK(lp->intmask);
|
|
|
-
|
|
|
+ lp->hw.intmask(dev, lp->intmask);
|
|
|
+
|
|
|
spin_unlock(&lp->lock);
|
|
|
return retval;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(arcnet_interrupt);
|
|
|
|
|
|
-
|
|
|
-/*
|
|
|
- * This is a generic packet receiver that calls arcnet??_rx depending on the
|
|
|
+/* This is a generic packet receiver that calls arcnet??_rx depending on the
|
|
|
* protocol ID found.
|
|
|
*/
|
|
|
static void arcnet_rx(struct net_device *dev, int bufnum)
|
|
@@ -963,32 +1025,31 @@ static void arcnet_rx(struct net_device *dev, int bufnum)
|
|
|
}
|
|
|
|
|
|
/* get the full header, if possible */
|
|
|
- if (sizeof(pkt.soft) <= length)
|
|
|
+ if (sizeof(pkt.soft) <= length) {
|
|
|
lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(pkt.soft));
|
|
|
- else {
|
|
|
+ } else {
|
|
|
memset(&pkt.soft, 0, sizeof(pkt.soft));
|
|
|
lp->hw.copy_from_card(dev, bufnum, ofs, soft, length);
|
|
|
}
|
|
|
|
|
|
- BUGMSG(D_DURING, "Buffer #%d: received packet from %02Xh to %02Xh "
|
|
|
- "(%d+4 bytes)\n",
|
|
|
- bufnum, pkt.hard.source, pkt.hard.dest, length);
|
|
|
+ arc_printk(D_DURING, dev, "Buffer #%d: received packet from %02Xh to %02Xh (%d+4 bytes)\n",
|
|
|
+ bufnum, pkt.hard.source, pkt.hard.dest, length);
|
|
|
|
|
|
dev->stats.rx_packets++;
|
|
|
dev->stats.rx_bytes += length + ARC_HDR_SIZE;
|
|
|
|
|
|
/* call the right receiver for the protocol */
|
|
|
if (arc_proto_map[soft->proto]->is_ip) {
|
|
|
- BUGLVL(D_PROTO) {
|
|
|
+ if (BUGLVL(D_PROTO)) {
|
|
|
struct ArcProto
|
|
|
*oldp = arc_proto_map[lp->default_proto[pkt.hard.source]],
|
|
|
*newp = arc_proto_map[soft->proto];
|
|
|
|
|
|
if (oldp != newp) {
|
|
|
- BUGMSG(D_PROTO,
|
|
|
- "got protocol %02Xh; encap for host %02Xh is now '%c'"
|
|
|
- " (was '%c')\n", soft->proto, pkt.hard.source,
|
|
|
- newp->suffix, oldp->suffix);
|
|
|
+ arc_printk(D_PROTO, dev,
|
|
|
+ "got protocol %02Xh; encap for host %02Xh is now '%c' (was '%c')\n",
|
|
|
+ soft->proto, pkt.hard.source,
|
|
|
+ newp->suffix, oldp->suffix);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1002,30 +1063,27 @@ static void arcnet_rx(struct net_device *dev, int bufnum)
|
|
|
arc_proto_map[soft->proto]->rx(dev, bufnum, &pkt, length);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
static void null_rx(struct net_device *dev, int bufnum,
|
|
|
struct archdr *pkthdr, int length)
|
|
|
{
|
|
|
- BUGMSG(D_PROTO,
|
|
|
- "rx: don't know how to deal with proto %02Xh from host %02Xh.\n",
|
|
|
- pkthdr->soft.rfc1201.proto, pkthdr->hard.source);
|
|
|
+ arc_printk(D_PROTO, dev,
|
|
|
+ "rx: don't know how to deal with proto %02Xh from host %02Xh.\n",
|
|
|
+ pkthdr->soft.rfc1201.proto, pkthdr->hard.source);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
static int null_build_header(struct sk_buff *skb, struct net_device *dev,
|
|
|
unsigned short type, uint8_t daddr)
|
|
|
{
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
|
|
|
- BUGMSG(D_PROTO,
|
|
|
- "tx: can't build header for encap %02Xh; load a protocol driver.\n",
|
|
|
- lp->default_proto[daddr]);
|
|
|
+ arc_printk(D_PROTO, dev,
|
|
|
+ "tx: can't build header for encap %02Xh; load a protocol driver.\n",
|
|
|
+ lp->default_proto[daddr]);
|
|
|
|
|
|
/* always fails */
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/* the "do nothing" prepare_tx function warns that there's nothing to do. */
|
|
|
static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
|
|
|
int length, int bufnum)
|
|
@@ -1033,7 +1091,7 @@ static int null_prepare_tx(struct net_device *dev, struct archdr *pkt,
|
|
|
struct arcnet_local *lp = netdev_priv(dev);
|
|
|
struct arc_hardware newpkt;
|
|
|
|
|
|
- BUGMSG(D_PROTO, "tx: no encap for this host; load a protocol driver.\n");
|
|
|
+ arc_printk(D_PROTO, dev, "tx: no encap for this host; load a protocol driver.\n");
|
|
|
|
|
|
/* send a packet to myself -- will never get received, of course */
|
|
|
newpkt.source = newpkt.dest = dev->dev_addr[0];
|