Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux ARCnet driver - device-independent routines |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Written 1997 by David Woodhouse. |
| 5 | * Written 1994-1999 by Avery Pennarun. |
| 6 | * Written 1999-2000 by Martin Mares <mj@ucw.cz>. |
| 7 | * Derived from skeleton.c by Donald Becker. |
| 8 | * |
| 9 | * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com) |
| 10 | * for sponsoring the further development of this driver. |
| 11 | * |
| 12 | * ********************** |
| 13 | * |
| 14 | * The original copyright was as follows: |
| 15 | * |
| 16 | * skeleton.c Written 1993 by Donald Becker. |
| 17 | * Copyright 1993 United States Government as represented by the |
| 18 | * Director, National Security Agency. This software may only be used |
| 19 | * and distributed according to the terms of the GNU General Public License as |
| 20 | * modified by SRC, incorporated herein by reference. |
| 21 | * |
| 22 | * ********************** |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 23 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * The change log is now in a file called ChangeLog in this directory. |
| 25 | * |
| 26 | * Sources: |
| 27 | * - Crynwr arcnet.com/arcether.com packet drivers. |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 28 | * - arcnet.c v0.00 dated 1/1/94 and apparently by |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * Donald Becker - it didn't work :) |
| 30 | * - skeleton.c v0.05 dated 11/16/93 by Donald Becker |
| 31 | * (from Linux Kernel 1.1.45) |
| 32 | * - RFC's 1201 and 1051 - re: TCP/IP over ARCnet |
| 33 | * - The official ARCnet COM9026 data sheets (!) thanks to |
| 34 | * Ken Cornetet <kcornete@nyx10.cs.du.edu> |
| 35 | * - The official ARCnet COM20020 data sheets. |
| 36 | * - Information on some more obscure ARCnet controller chips, thanks |
| 37 | * to the nice people at SMSC. |
| 38 | * - net/inet/eth.c (from kernel 1.1.50) for header-building info. |
| 39 | * - Alternate Linux ARCnet source by V.Shergin <vsher@sao.stavropol.su> |
| 40 | * - Textual information and more alternate source from Joachim Koenig |
| 41 | * <jojo@repas.de> |
| 42 | */ |
| 43 | |
Joe Perches | 05a24b2 | 2015-05-05 10:05:56 -0700 | [diff] [blame] | 44 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/types.h> |
| 48 | #include <linux/delay.h> |
| 49 | #include <linux/netdevice.h> |
| 50 | #include <linux/if_arp.h> |
| 51 | #include <net/arp.h> |
| 52 | #include <linux/init.h> |
Marcelo Feitoza Parisi | ff5688a | 2006-01-09 18:37:15 -0800 | [diff] [blame] | 53 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Michael Grzeschik | 8890624 | 2014-09-18 00:12:50 +0200 | [diff] [blame^] | 55 | #include <linux/leds.h> |
| 56 | |
Joe Perches | 26c6d28 | 2015-05-05 10:06:03 -0700 | [diff] [blame] | 57 | #include "arcdevice.h" |
Joe Perches | 8e0f295 | 2015-05-05 10:06:13 -0700 | [diff] [blame] | 58 | #include "com9026.h" |
Joe Perches | 26c6d28 | 2015-05-05 10:06:03 -0700 | [diff] [blame] | 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | /* "do nothing" functions for protocol drivers */ |
| 61 | static void null_rx(struct net_device *dev, int bufnum, |
| 62 | struct archdr *pkthdr, int length); |
| 63 | static int null_build_header(struct sk_buff *skb, struct net_device *dev, |
| 64 | unsigned short type, uint8_t daddr); |
| 65 | static int null_prepare_tx(struct net_device *dev, struct archdr *pkt, |
| 66 | int length, int bufnum); |
| 67 | |
Adrian Bunk | f03aa2d | 2006-01-14 03:10:22 +0100 | [diff] [blame] | 68 | static void arcnet_rx(struct net_device *dev, int bufnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 70 | /* one ArcProto per possible proto ID. None of the elements of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * 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 Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 75 | struct ArcProto *arc_proto_map[256]; |
| 76 | EXPORT_SYMBOL(arc_proto_map); |
| 77 | |
| 78 | struct ArcProto *arc_proto_default; |
| 79 | EXPORT_SYMBOL(arc_proto_default); |
| 80 | |
| 81 | struct ArcProto *arc_bcast_proto; |
| 82 | EXPORT_SYMBOL(arc_bcast_proto); |
| 83 | |
| 84 | struct ArcProto *arc_raw_proto; |
| 85 | EXPORT_SYMBOL(arc_raw_proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 87 | static struct ArcProto arc_proto_null = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | .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 */ |
| 99 | int arcnet_debug = ARCNET_DEBUG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | EXPORT_SYMBOL(arcnet_debug); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | /* Internal function prototypes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | static int arcnet_header(struct sk_buff *skb, struct net_device *dev, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 104 | unsigned short type, const void *daddr, |
| 105 | const void *saddr, unsigned len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | static int go_tx(struct net_device *dev); |
| 107 | |
| 108 | static int debug = ARCNET_DEBUG; |
| 109 | module_param(debug, int, 0); |
| 110 | MODULE_LICENSE("GPL"); |
| 111 | |
| 112 | static int __init arcnet_init(void) |
| 113 | { |
| 114 | int count; |
| 115 | |
| 116 | arcnet_debug = debug; |
| 117 | |
Joe Perches | 05a24b2 | 2015-05-05 10:05:56 -0700 | [diff] [blame] | 118 | pr_info("arcnet loaded\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
| 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 Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 125 | if (BUGLVL(D_DURING)) |
Joe Perches | 05a24b2 | 2015-05-05 10:05:56 -0700 | [diff] [blame] | 126 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | static void __exit arcnet_exit(void) |
| 137 | { |
| 138 | } |
| 139 | |
| 140 | module_init(arcnet_init); |
| 141 | module_exit(arcnet_exit); |
| 142 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 143 | /* Dump the contents of an sk_buff */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | #if ARCNET_DEBUG_MAX & D_SKB |
| 145 | void arcnet_dump_skb(struct net_device *dev, |
| 146 | struct sk_buff *skb, char *desc) |
| 147 | { |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 148 | char hdr[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 150 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | EXPORT_SYMBOL(arcnet_dump_skb); |
| 156 | #endif |
| 157 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 158 | /* Dump the contents of an ARCnet buffer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | #if (ARCNET_DEBUG_MAX & (D_RX | D_TX)) |
Adrian Bunk | f03aa2d | 2006-01-14 03:10:22 +0100 | [diff] [blame] | 160 | static void arcnet_dump_packet(struct net_device *dev, int bufnum, |
| 161 | char *desc, int take_arcnet_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 163 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | int i, length; |
| 165 | unsigned long flags = 0; |
| 166 | static uint8_t buf[512]; |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 167 | char hdr[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | /* hw.copy_from_card expects IRQ context so take the IRQ lock |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 170 | * to keep it single threaded |
| 171 | */ |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 172 | if (take_arcnet_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | spin_lock_irqsave(&lp->lock, flags); |
| 174 | |
| 175 | lp->hw.copy_from_card(dev, bufnum, 0, buf, 512); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 176 | if (take_arcnet_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | 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 Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 182 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Adrian Bunk | f03aa2d | 2006-01-14 03:10:22 +0100 | [diff] [blame] | 188 | #else |
| 189 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 190 | #define arcnet_dump_packet(dev, bufnum, desc, take_arcnet_lock) do { } while (0) |
Adrian Bunk | f03aa2d | 2006-01-14 03:10:22 +0100 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | #endif |
| 193 | |
Michael Grzeschik | 8890624 | 2014-09-18 00:12:50 +0200 | [diff] [blame^] | 194 | /* Trigger a LED event in response to a ARCNET device event */ |
| 195 | void 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 | } |
| 220 | EXPORT_SYMBOL_GPL(arcnet_led_event); |
| 221 | |
| 222 | static 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 | */ |
| 234 | void 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 | } |
| 257 | EXPORT_SYMBOL_GPL(devm_arcnet_led_init); |
| 258 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 259 | /* Unregister a protocol driver from the arc_proto_map. Protocol drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | * are responsible for registering themselves, but the unregister routine |
| 261 | * is pretty generic so we'll do it here. |
| 262 | */ |
| 263 | void 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 Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 279 | EXPORT_SYMBOL(arcnet_unregister_proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 281 | /* Add a buffer to the queue. Only the interrupt handler is allowed to do |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | * this, unless interrupts are disabled. |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 283 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | * Note: we don't check for a full queue, since there aren't enough buffers |
| 285 | * to more than fill it. |
| 286 | */ |
| 287 | static void release_arcbuf(struct net_device *dev, int bufnum) |
| 288 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 289 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | int i; |
| 291 | |
| 292 | lp->buf_queue[lp->first_free_buf++] = bufnum; |
| 293 | lp->first_free_buf %= 5; |
| 294 | |
Joe Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 295 | if (BUGLVL(D_DURING)) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 296 | arc_printk(D_DURING, dev, "release_arcbuf: freed #%d; buffer queue is now: ", |
| 297 | bufnum); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 298 | for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 299 | arc_cont(D_DURING, "#%d ", lp->buf_queue[i]); |
| 300 | arc_cont(D_DURING, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 304 | /* Get a buffer from the queue. |
| 305 | * If this returns -1, there are no buffers available. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | */ |
| 307 | static int get_arcbuf(struct net_device *dev) |
| 308 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 309 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | int buf = -1, i; |
| 311 | |
| 312 | if (!atomic_dec_and_test(&lp->buf_lock)) { |
| 313 | /* already in this function */ |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 314 | arc_printk(D_NORMAL, dev, "get_arcbuf: overlap (%d)!\n", |
| 315 | lp->buf_lock.counter); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 316 | } else { /* we can continue */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | if (lp->next_buf >= 5) |
| 318 | lp->next_buf -= 5; |
| 319 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 320 | if (lp->next_buf == lp->first_free_buf) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 321 | arc_printk(D_NORMAL, dev, "get_arcbuf: BUG: no buffers are available??\n"); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 322 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | buf = lp->buf_queue[lp->next_buf++]; |
| 324 | lp->next_buf %= 5; |
| 325 | } |
| 326 | } |
| 327 | |
Joe Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 328 | if (BUGLVL(D_DURING)) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 329 | arc_printk(D_DURING, dev, "get_arcbuf: got #%d; buffer queue is now: ", |
| 330 | buf); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 331 | for (i = lp->next_buf; i != lp->first_free_buf; i = (i + 1) % 5) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 332 | arc_cont(D_DURING, "#%d ", lp->buf_queue[i]); |
| 333 | arc_cont(D_DURING, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | atomic_inc(&lp->buf_lock); |
| 337 | return buf; |
| 338 | } |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | static 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 Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 346 | if (arc_proto_map[count] != &arc_proto_null && |
| 347 | arc_proto_map[count]->mtu < mtu) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | mtu = arc_proto_map[count]->mtu; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | return mtu == 65535 ? XMTU : mtu; |
| 353 | } |
| 354 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 355 | static const struct header_ops arcnet_header_ops = { |
| 356 | .create = arcnet_header, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 357 | }; |
| 358 | |
Stephen Hemminger | bca5b89 | 2009-01-09 13:01:09 +0000 | [diff] [blame] | 359 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | /* Setup a struct device for ARCnet. */ |
| 367 | static void arcdev_setup(struct net_device *dev) |
| 368 | { |
| 369 | dev->type = ARPHRD_ARCNET; |
Stephen Hemminger | bca5b89 | 2009-01-09 13:01:09 +0000 | [diff] [blame] | 370 | dev->netdev_ops = &arcnet_netdev_ops; |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 371 | dev->header_ops = &arcnet_header_ops; |
Michael Grzeschik | 980137a | 2015-09-17 15:18:34 +0200 | [diff] [blame] | 372 | dev->hard_header_len = sizeof(struct arc_hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Stephen Hemminger | bca5b89 | 2009-01-09 13:01:09 +0000 | [diff] [blame] | 384 | struct net_device *alloc_arcdev(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | { |
| 386 | struct net_device *dev; |
| 387 | |
| 388 | dev = alloc_netdev(sizeof(struct arcnet_local), |
Tom Gundersen | c835a67 | 2014-07-14 16:37:24 +0200 | [diff] [blame] | 389 | name && *name ? name : "arc%d", NET_NAME_UNKNOWN, |
| 390 | arcdev_setup); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 391 | if (dev) { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 392 | struct arcnet_local *lp = netdev_priv(dev); |
Joe Perches | 01a1d5a | 2015-05-05 10:05:48 -0700 | [diff] [blame] | 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | spin_lock_init(&lp->lock); |
| 395 | } |
| 396 | |
| 397 | return dev; |
| 398 | } |
Joe Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 399 | EXPORT_SYMBOL(alloc_arcdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 401 | /* Open/initialize the board. This is called sometime after booting when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | * 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 Hemminger | bca5b89 | 2009-01-09 13:01:09 +0000 | [diff] [blame] | 408 | int arcnet_open(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 410 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | int count, newmtu, error; |
| 412 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 413 | arc_printk(D_INIT, dev, "opened."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | if (!try_module_get(lp->hw.owner)) |
| 416 | return -ENODEV; |
| 417 | |
Joe Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 418 | if (BUGLVL(D_PROTO)) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 419 | arc_printk(D_PROTO, dev, "protocol map (default is '%c'): ", |
| 420 | arc_proto_default->suffix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | for (count = 0; count < 256; count++) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 422 | arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix); |
| 423 | arc_cont(D_PROTO, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 426 | arc_printk(D_INIT, dev, "arcnet_open: resetting card.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
| 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 Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 432 | if (lp->hw.reset(dev, 0) && lp->hw.reset(dev, 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | goto out_module_put; |
| 434 | |
| 435 | newmtu = choose_mtu(); |
| 436 | if (newmtu < dev->mtu) |
| 437 | dev->mtu = newmtu; |
| 438 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 439 | arc_printk(D_INIT, dev, "arcnet_open: mtu: %d.\n", dev->mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 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 Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 470 | arc_printk(D_NORMAL, dev, "WARNING! Station address 00 is reserved for broadcasts!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | else if (dev->dev_addr[0] == 255) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 472 | arc_printk(D_NORMAL, dev, "WARNING! Station address FF may confuse DOS networking programs!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 474 | arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__); |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 475 | if (lp->hw.status(dev) & RESETflag) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 476 | arc_printk(D_DEBUG, dev, "%s: %d: %s\n", |
| 477 | __FILE__, __LINE__, __func__); |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 478 | lp->hw.command(dev, CFLAGScmd | RESETclear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | } |
| 480 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 481 | arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | /* make sure we're ready to receive IRQ's. */ |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 483 | lp->hw.intmask(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | udelay(1); /* give it time to set the mask before |
| 485 | * we reset it again. (may not even be |
| 486 | * necessary) |
| 487 | */ |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 488 | arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | lp->intmask = NORXflag | RECONflag; |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 490 | lp->hw.intmask(dev, lp->intmask); |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 491 | arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
| 493 | netif_start_queue(dev); |
| 494 | |
Michael Grzeschik | 8890624 | 2014-09-18 00:12:50 +0200 | [diff] [blame^] | 495 | arcnet_led_event(dev, ARCNET_LED_EVENT_OPEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | return 0; |
| 497 | |
| 498 | out_module_put: |
| 499 | module_put(lp->hw.owner); |
| 500 | return error; |
| 501 | } |
Joe Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 502 | EXPORT_SYMBOL(arcnet_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | /* The inverse routine to arcnet_open - shuts down the card. */ |
Stephen Hemminger | bca5b89 | 2009-01-09 13:01:09 +0000 | [diff] [blame] | 505 | int arcnet_close(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 507 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
Michael Grzeschik | 8890624 | 2014-09-18 00:12:50 +0200 | [diff] [blame^] | 509 | arcnet_led_event(dev, ARCNET_LED_EVENT_STOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | netif_stop_queue(dev); |
| 511 | |
| 512 | /* flush TX and disable RX */ |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 513 | lp->hw.intmask(dev, 0); |
| 514 | lp->hw.command(dev, NOTXcmd); /* stop transmit */ |
| 515 | lp->hw.command(dev, NORXcmd); /* disable receive */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | mdelay(1); |
| 517 | |
| 518 | /* shut down the card */ |
| 519 | lp->hw.close(dev); |
| 520 | module_put(lp->hw.owner); |
| 521 | return 0; |
| 522 | } |
Joe Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 523 | EXPORT_SYMBOL(arcnet_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | static int arcnet_header(struct sk_buff *skb, struct net_device *dev, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 526 | unsigned short type, const void *daddr, |
| 527 | const void *saddr, unsigned len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | { |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 529 | const struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | uint8_t _daddr, proto_num; |
| 531 | struct ArcProto *proto; |
| 532 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 533 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 539 | if (skb->len != 0 && len != skb->len) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 540 | arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! skb->len(%d) != len(%d)!\n", |
| 541 | skb->len, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 543 | /* Type is host order - ? */ |
| 544 | if (type == ETH_P_ARCNET) { |
| 545 | proto = arc_raw_proto; |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 546 | arc_printk(D_DEBUG, dev, "arc_raw_proto used. proto='%c'\n", |
| 547 | proto->suffix); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 548 | _daddr = daddr ? *(uint8_t *)daddr : 0; |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 549 | } else if (!daddr) { |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 550 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | */ |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 555 | *(uint16_t *)skb_push(skb, 2) = type; |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 556 | /* XXX: Why not use skb->mac_len? */ |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 557 | if (skb->network_header - skb->mac_header != 2) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 558 | arc_printk(D_NORMAL, dev, "arcnet_header: Yikes! diff (%u) is not 2!\n", |
| 559 | skb->network_header - skb->mac_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | return -2; /* return error -- can't transmit yet! */ |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 561 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | /* otherwise, we can just add the header as usual. */ |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 563 | _daddr = *(uint8_t *)daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | proto_num = lp->default_proto[_daddr]; |
| 565 | proto = arc_proto_map[proto_num]; |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 566 | arc_printk(D_DURING, dev, "building header for %02Xh using protocol '%c'\n", |
| 567 | proto_num, proto->suffix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | if (proto == &arc_proto_null && arc_bcast_proto != proto) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 569 | arc_printk(D_DURING, dev, "actually, let's use '%c' instead.\n", |
| 570 | arc_bcast_proto->suffix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | proto = arc_bcast_proto; |
| 572 | } |
| 573 | } |
| 574 | return proto->build_header(skb, dev, type, _daddr); |
| 575 | } |
| 576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | /* Called by the kernel in order to transmit a packet. */ |
Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 578 | netdev_tx_t arcnet_send_packet(struct sk_buff *skb, |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 579 | struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 581 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | struct archdr *pkt; |
| 583 | struct arc_rfc1201 *soft; |
| 584 | struct ArcProto *proto; |
| 585 | int txbuf; |
| 586 | unsigned long flags; |
Michael Grzeschik | b82de0e | 2015-04-22 16:41:46 +0200 | [diff] [blame] | 587 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 589 | arc_printk(D_DURING, dev, |
| 590 | "transmit requested (status=%Xh, txbufs=%d/%d, len=%d, protocol %x)\n", |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 591 | lp->hw.status(dev), lp->cur_tx, lp->next_tx, skb->len, skb->protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 593 | pkt = (struct archdr *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | soft = &pkt->soft.rfc1201; |
| 595 | proto = arc_proto_map[soft->proto]; |
| 596 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 597 | arc_printk(D_SKB_SIZE, dev, "skb: transmitting %d bytes to %02X\n", |
| 598 | skb->len, pkt->hard.dest); |
Joe Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 599 | if (BUGLVL(D_SKB)) |
| 600 | arcnet_dump_skb(dev, skb, "tx"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | /* fits in one packet? */ |
| 603 | if (skb->len - ARC_HDR_SIZE > XMTU && !proto->continue_tx) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 604 | arc_printk(D_NORMAL, dev, "fixme: packet too large: compensating badly!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | dev_kfree_skb(skb); |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 606 | return NETDEV_TX_OK; /* don't try again */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | /* We're busy transmitting a packet... */ |
| 610 | netif_stop_queue(dev); |
| 611 | |
| 612 | spin_lock_irqsave(&lp->lock, flags); |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 613 | lp->hw.intmask(dev, 0); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 614 | if (lp->next_tx == -1) |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 615 | txbuf = get_arcbuf(dev); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 616 | else |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 617 | txbuf = -1; |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | 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 Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 623 | * the package later - forget about it now |
| 624 | */ |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 625 | dev->stats.tx_bytes += skb->len; |
Michael Grzeschik | b82de0e | 2015-04-22 16:41:46 +0200 | [diff] [blame] | 626 | dev_kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } 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 Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 635 | arc_printk(D_NORMAL, dev, |
| 636 | "bug! continue_tx finished the first time! (proto='%c')\n", |
| 637 | proto->suffix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
| 639 | } |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 640 | retval = NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | lp->next_tx = txbuf; |
| 642 | } else { |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 643 | retval = NETDEV_TX_BUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 646 | arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n", |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 647 | __FILE__, __LINE__, __func__, lp->hw.status(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | /* make sure we didn't ignore a TX IRQ while we were in here */ |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 649 | lp->hw.intmask(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 651 | arc_printk(D_DEBUG, dev, "%s: %d: %s\n", __FILE__, __LINE__, __func__); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 652 | lp->intmask |= TXFREEflag | EXCNAKflag; |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 653 | lp->hw.intmask(dev, lp->intmask); |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 654 | arc_printk(D_DEBUG, dev, "%s: %d: %s, status: %x\n", |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 655 | __FILE__, __LINE__, __func__, lp->hw.status(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Michael Grzeschik | 8890624 | 2014-09-18 00:12:50 +0200 | [diff] [blame^] | 657 | arcnet_led_event(dev, ARCNET_LED_EVENT_TX); |
| 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | spin_unlock_irqrestore(&lp->lock, flags); |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 660 | return retval; /* no need to try again */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } |
Joe Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 662 | EXPORT_SYMBOL(arcnet_send_packet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 664 | /* Actually start transmitting a packet that was loaded into a buffer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | * by prepare_tx. This should _only_ be called by the interrupt handler. |
| 666 | */ |
| 667 | static int go_tx(struct net_device *dev) |
| 668 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 669 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 671 | arc_printk(D_DURING, dev, "go_tx: status=%Xh, intmask=%Xh, next_tx=%d, cur_tx=%d\n", |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 672 | lp->hw.status(dev), lp->intmask, lp->next_tx, lp->cur_tx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
| 674 | if (lp->cur_tx != -1 || lp->next_tx == -1) |
| 675 | return 0; |
| 676 | |
Joe Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 677 | if (BUGLVL(D_TX)) |
| 678 | arcnet_dump_packet(dev, lp->next_tx, "go_tx", 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
| 680 | lp->cur_tx = lp->next_tx; |
| 681 | lp->next_tx = -1; |
| 682 | |
| 683 | /* start sending */ |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 684 | lp->hw.command(dev, TXcmd | (lp->cur_tx << 3)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 686 | dev->stats.tx_packets++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | lp->lasttrans_dest = lp->lastload_dest; |
| 688 | lp->lastload_dest = 0; |
| 689 | lp->excnak_pending = 0; |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 690 | lp->intmask |= TXFREEflag | EXCNAKflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
| 692 | return 1; |
| 693 | } |
| 694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | /* Called by the kernel when transmit times out */ |
Stephen Hemminger | bca5b89 | 2009-01-09 13:01:09 +0000 | [diff] [blame] | 696 | void arcnet_timeout(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
| 698 | unsigned long flags; |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 699 | struct arcnet_local *lp = netdev_priv(dev); |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 700 | int status = lp->hw.status(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | 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 Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 708 | dev->stats.tx_aborted_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | lp->timed_out = 1; |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 710 | lp->hw.command(dev, NOTXcmd | (lp->cur_tx << 3)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 712 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
| 714 | /* make sure we didn't miss a TX or a EXC NAK IRQ */ |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 715 | lp->hw.intmask(dev, 0); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 716 | lp->intmask |= TXFREEflag | EXCNAKflag; |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 717 | lp->hw.intmask(dev, lp->intmask); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | spin_unlock_irqrestore(&lp->lock, flags); |
| 720 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 721 | if (time_after(jiffies, lp->last_timeout + 10 * HZ)) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 722 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | lp->last_timeout = jiffies; |
| 725 | } |
| 726 | |
| 727 | if (lp->cur_tx == -1) |
| 728 | netif_wake_queue(dev); |
| 729 | } |
Joe Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 730 | EXPORT_SYMBOL(arcnet_timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 732 | /* The typical workload of the driver: Handle the network interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | * interrupts. Establish which device needs attention, and call the correct |
| 734 | * chipset interrupt handler. |
| 735 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 736 | irqreturn_t arcnet_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | { |
| 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 Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 743 | arc_printk(D_DURING, dev, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 745 | arc_printk(D_DURING, dev, "in arcnet_interrupt\n"); |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 746 | |
| 747 | lp = netdev_priv(dev); |
Eric Sesterhenn | 5d9428d | 2006-04-02 13:52:48 +0200 | [diff] [blame] | 748 | BUG_ON(!lp); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | spin_lock(&lp->lock); |
| 751 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 752 | /* RESET flag was enabled - if device is not running, we must |
| 753 | * clear it right away (but nothing else). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | */ |
| 755 | if (!netif_running(dev)) { |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 756 | if (lp->hw.status(dev) & RESETflag) |
| 757 | lp->hw.command(dev, CFLAGScmd | RESETclear); |
| 758 | lp->hw.intmask(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | spin_unlock(&lp->lock); |
Michael Grzeschik | 226ee67 | 2014-09-29 11:55:34 +0200 | [diff] [blame] | 760 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } |
| 762 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 763 | arc_printk(D_DURING, dev, "in arcnet_inthandler (status=%Xh, intmask=%Xh)\n", |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 764 | lp->hw.status(dev), lp->intmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
| 766 | boguscount = 5; |
| 767 | do { |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 768 | status = lp->hw.status(dev); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 769 | diagstatus = (status >> 8) & 0xFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 771 | arc_printk(D_DEBUG, dev, "%s: %d: %s: status=%x\n", |
| 772 | __FILE__, __LINE__, __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | didsomething = 0; |
| 774 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 775 | /* RESET flag was enabled - card is resetting and if RX is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | * disabled, it's NOT because we just got a packet. |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 777 | * |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 778 | * The card is in an undefined state. |
| 779 | * Clear it out and start over. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | */ |
| 781 | if (status & RESETflag) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 782 | arc_printk(D_NORMAL, dev, "spurious reset (status=%Xh)\n", |
| 783 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | arcnet_close(dev); |
| 785 | arcnet_open(dev); |
| 786 | |
| 787 | /* get out of the interrupt handler! */ |
| 788 | break; |
| 789 | } |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 790 | /* RX is inhibited - we must have received something. |
| 791 | * Prepare to receive into the next buffer. |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 792 | * |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 793 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | */ |
| 798 | recbuf = -1; |
| 799 | if (status & lp->intmask & NORXflag) { |
| 800 | recbuf = lp->cur_rx; |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 801 | arc_printk(D_DURING, dev, "Buffer #%d: receive irq (status=%Xh)\n", |
| 802 | recbuf, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
| 804 | lp->cur_rx = get_arcbuf(dev); |
| 805 | if (lp->cur_rx != -1) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 806 | arc_printk(D_DURING, dev, "enabling receive to buffer #%d\n", |
| 807 | lp->cur_rx); |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 808 | lp->hw.command(dev, RXcmd | (lp->cur_rx << 3) | RXbcasts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | didsomething++; |
| 811 | } |
| 812 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 813 | if ((diagstatus & EXCNAKflag)) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 814 | arc_printk(D_DURING, dev, "EXCNAK IRQ (diagstat=%Xh)\n", |
| 815 | diagstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 817 | lp->hw.command(dev, NOTXcmd); /* disable transmit */ |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 818 | lp->excnak_pending = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 820 | lp->hw.command(dev, EXCNAKclear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | lp->intmask &= ~(EXCNAKflag); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 822 | didsomething++; |
| 823 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* a transmit finished, and we're interested in it. */ |
| 826 | if ((status & lp->intmask & TXFREEflag) || lp->timed_out) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 827 | lp->intmask &= ~(TXFREEflag | EXCNAKflag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
Joe Perches | d6d7d3e | 2015-05-05 10:06:02 -0700 | [diff] [blame] | 829 | arc_printk(D_DURING, dev, "TX IRQ (stat=%Xh)\n", |
| 830 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | |
| 832 | if (lp->cur_tx != -1 && !lp->timed_out) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 833 | if (!(status & TXACKflag)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | if (lp->lasttrans_dest != 0) { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 835 | arc_printk(D_EXTRA, dev, |
| 836 | "transmit was not acknowledged! (status=%Xh, dest=%02Xh)\n", |
| 837 | status, |
| 838 | lp->lasttrans_dest); |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 839 | dev->stats.tx_errors++; |
| 840 | dev->stats.tx_carrier_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | } else { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 842 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | } |
| 847 | } |
| 848 | |
| 849 | if (lp->outgoing.proto && |
| 850 | lp->outgoing.proto->ack_tx) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 851 | int ackstatus; |
Joe Perches | 01a1d5a | 2015-05-05 10:05:48 -0700 | [diff] [blame] | 852 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 853 | if (status & TXACKflag) |
| 854 | ackstatus = 2; |
| 855 | else if (lp->excnak_pending) |
| 856 | ackstatus = 1; |
| 857 | else |
| 858 | ackstatus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 860 | lp->outgoing.proto |
| 861 | ->ack_tx(dev, ackstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | } |
| 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 Perches | d6d7d3e | 2015-05-05 10:06:02 -0700 | [diff] [blame] | 875 | if (lp->outgoing.proto && |
| 876 | lp->outgoing.proto->continue_tx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | int txbuf = get_arcbuf(dev); |
Joe Perches | 01a1d5a | 2015-05-05 10:05:48 -0700 | [diff] [blame] | 878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | if (txbuf != -1) { |
| 880 | if (lp->outgoing.proto->continue_tx(dev, txbuf)) { |
| 881 | /* that was the last segment */ |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 882 | dev->stats.tx_bytes += lp->outgoing.skb->len; |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 883 | if (!lp->outgoing.proto->ack_tx) { |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 884 | dev_kfree_skb_irq(lp->outgoing.skb); |
| 885 | lp->outgoing.proto = NULL; |
| 886 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | } |
| 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 Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 897 | if (BUGLVL(D_RX)) |
| 898 | arcnet_dump_packet(dev, recbuf, "rx irq", 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
| 900 | arcnet_rx(dev, recbuf); |
| 901 | release_arcbuf(dev, recbuf); |
| 902 | |
| 903 | didsomething++; |
| 904 | } |
| 905 | if (status & lp->intmask & RECONflag) { |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 906 | lp->hw.command(dev, CFLAGScmd | CONFIGclear); |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 907 | dev->stats.tx_carrier_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 909 | arc_printk(D_RECON, dev, "Network reconfiguration detected (status=%Xh)\n", |
| 910 | status); |
Michael Grzeschik | 8890624 | 2014-09-18 00:12:50 +0200 | [diff] [blame^] | 911 | arcnet_led_event(dev, ARCNET_LED_EVENT_RECON); |
Pieter Dejaeghere | c6bb15a | 2005-09-06 19:54:48 -0700 | [diff] [blame] | 912 | /* MYRECON bit is at bit 7 of diagstatus */ |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 913 | if (diagstatus & 0x80) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 914 | arc_printk(D_RECON, dev, "Put out that recon myself\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
| 916 | /* is the RECON info empty or old? */ |
| 917 | if (!lp->first_recon || !lp->last_recon || |
S.Caglar Onur | 9307b57 | 2008-03-28 14:41:24 -0700 | [diff] [blame] | 918 | time_after(jiffies, lp->last_recon + HZ * 10)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | if (lp->network_down) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 920 | arc_printk(D_NORMAL, dev, "reconfiguration detected: cabling restored?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | lp->first_recon = lp->last_recon = jiffies; |
| 922 | lp->num_recons = lp->network_down = 0; |
| 923 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 924 | arc_printk(D_DURING, dev, "recon: clearing counters.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | } else { /* add to current RECON counter */ |
| 926 | lp->last_recon = jiffies; |
| 927 | lp->num_recons++; |
| 928 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 929 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
| 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 Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 940 | if (!lp->network_down && |
| 941 | (lp->last_recon - lp->first_recon) <= HZ * 60 && |
| 942 | lp->num_recons >= RECON_THRESHOLD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | lp->network_down = 1; |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 944 | arc_printk(D_NORMAL, dev, "many reconfigurations detected: cabling problem?\n"); |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 945 | } else if (!lp->network_down && |
| 946 | lp->last_recon - lp->first_recon > HZ * 60) { |
Joe Perches | d6d7d3e | 2015-05-05 10:06:02 -0700 | [diff] [blame] | 947 | /* reset counters if we've gone for |
| 948 | * over a minute. |
| 949 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | lp->first_recon = lp->last_recon; |
| 951 | lp->num_recons = 1; |
| 952 | } |
| 953 | } |
S.Caglar Onur | 9307b57 | 2008-03-28 14:41:24 -0700 | [diff] [blame] | 954 | } else if (lp->network_down && |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 955 | time_after(jiffies, lp->last_recon + HZ * 10)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | if (lp->network_down) |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 957 | arc_printk(D_NORMAL, dev, "cabling restored?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | lp->first_recon = lp->last_recon = 0; |
| 959 | lp->num_recons = lp->network_down = 0; |
| 960 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 961 | arc_printk(D_DURING, dev, "not recon: clearing counters anyway.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | } |
| 963 | |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 964 | if (didsomething) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | retval |= IRQ_HANDLED; |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 966 | } while (--boguscount && didsomething); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 968 | arc_printk(D_DURING, dev, "arcnet_interrupt complete (status=%Xh, count=%d)\n", |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 969 | lp->hw.status(dev), boguscount); |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 970 | arc_printk(D_DURING, dev, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 972 | lp->hw.intmask(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | udelay(1); |
Joe Perches | e15b036 | 2015-05-05 10:06:12 -0700 | [diff] [blame] | 974 | lp->hw.intmask(dev, lp->intmask); |
Joe Perches | cb33464 | 2015-05-05 10:05:47 -0700 | [diff] [blame] | 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | spin_unlock(&lp->lock); |
| 977 | return retval; |
| 978 | } |
Joe Perches | 811eafc | 2015-05-05 10:05:57 -0700 | [diff] [blame] | 979 | EXPORT_SYMBOL(arcnet_interrupt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
Joe Perches | f2f0a16 | 2015-05-05 10:05:52 -0700 | [diff] [blame] | 981 | /* This is a generic packet receiver that calls arcnet??_rx depending on the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | * protocol ID found. |
| 983 | */ |
Adrian Bunk | f03aa2d | 2006-01-14 03:10:22 +0100 | [diff] [blame] | 984 | static void arcnet_rx(struct net_device *dev, int bufnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 986 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | struct archdr pkt; |
| 988 | struct arc_rfc1201 *soft; |
| 989 | int length, ofs; |
| 990 | |
| 991 | soft = &pkt.soft.rfc1201; |
| 992 | |
Dan Carpenter | 087d273 | 2013-07-19 08:48:05 +0300 | [diff] [blame] | 993 | lp->hw.copy_from_card(dev, bufnum, 0, &pkt, ARC_HDR_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | 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 Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 1003 | if (sizeof(pkt.soft) <= length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | lp->hw.copy_from_card(dev, bufnum, ofs, soft, sizeof(pkt.soft)); |
Joe Perches | 7f5e760 | 2015-05-05 10:05:49 -0700 | [diff] [blame] | 1005 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | memset(&pkt.soft, 0, sizeof(pkt.soft)); |
| 1007 | lp->hw.copy_from_card(dev, bufnum, ofs, soft, length); |
| 1008 | } |
| 1009 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 1010 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | |
Stephen Hemminger | 5803c51 | 2009-01-09 13:01:08 +0000 | [diff] [blame] | 1013 | dev->stats.rx_packets++; |
| 1014 | dev->stats.rx_bytes += length + ARC_HDR_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | |
| 1016 | /* call the right receiver for the protocol */ |
| 1017 | if (arc_proto_map[soft->proto]->is_ip) { |
Joe Perches | 72aeea4 | 2015-05-05 10:05:54 -0700 | [diff] [blame] | 1018 | if (BUGLVL(D_PROTO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | 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 Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 1024 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | } |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | static void null_rx(struct net_device *dev, int bufnum, |
| 1042 | struct archdr *pkthdr, int length) |
| 1043 | { |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 1044 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | static int null_build_header(struct sk_buff *skb, struct net_device *dev, |
| 1050 | unsigned short type, uint8_t daddr) |
| 1051 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 1052 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 1054 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | |
| 1058 | /* always fails */ |
| 1059 | return 0; |
| 1060 | } |
| 1061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | /* the "do nothing" prepare_tx function warns that there's nothing to do. */ |
| 1063 | static int null_prepare_tx(struct net_device *dev, struct archdr *pkt, |
| 1064 | int length, int bufnum) |
| 1065 | { |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 1066 | struct arcnet_local *lp = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | struct arc_hardware newpkt; |
| 1068 | |
Joe Perches | a34c093 | 2015-05-05 10:05:55 -0700 | [diff] [blame] | 1069 | arc_printk(D_PROTO, dev, "tx: no encap for this host; load a protocol driver.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
| 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 | } |