Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1 | /* 8390.c: A general NS8390 ethernet driver core for linux. */ |
| 2 | /* |
| 3 | Written 1992-94 by Donald Becker. |
| 4 | |
| 5 | Copyright 1993 United States Government as represented by the |
| 6 | Director, National Security Agency. |
| 7 | |
| 8 | This software may be used and distributed according to the terms |
| 9 | of the GNU General Public License, incorporated herein by reference. |
| 10 | |
| 11 | The author may be reached as becker@scyld.com, or C/O |
| 12 | Scyld Computing Corporation |
| 13 | 410 Severn Ave., Suite 210 |
| 14 | Annapolis MD 21403 |
| 15 | |
| 16 | |
| 17 | This is the chip-specific code for many 8390-based ethernet adaptors. |
| 18 | This is not a complete driver, it must be combined with board-specific |
| 19 | code such as ne.c, wd.c, 3c503.c, etc. |
| 20 | |
| 21 | Seeing how at least eight drivers use this code, (not counting the |
| 22 | PCMCIA ones either) it is easy to break some card by what seems like |
| 23 | a simple innocent change. Please contact me or Donald if you think |
| 24 | you have found something that needs changing. -- PG |
| 25 | |
| 26 | |
| 27 | Changelog: |
| 28 | |
| 29 | Paul Gortmaker : remove set_bit lock, other cleanups. |
| 30 | Paul Gortmaker : add ei_get_8390_hdr() so we can pass skb's to |
| 31 | ei_block_input() for eth_io_copy_and_sum(). |
| 32 | Paul Gortmaker : exchange static int ei_pingpong for a #define, |
| 33 | also add better Tx error handling. |
| 34 | Paul Gortmaker : rewrite Rx overrun handling as per NS specs. |
| 35 | Alexey Kuznetsov : use the 8390's six bit hash multicast filter. |
| 36 | Paul Gortmaker : tweak ANK's above multicast changes a bit. |
| 37 | Paul Gortmaker : update packet statistics for v2.1.x |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 38 | Alan Cox : support arbitrary stupid port mappings on the |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 39 | 68K Macintosh. Support >16bit I/O spaces |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 40 | Paul Gortmaker : add kmod support for auto-loading of the 8390 |
| 41 | module by all drivers that require it. |
| 42 | Alan Cox : Spinlocking work, added 'BUG_83C690' |
| 43 | Paul Gortmaker : Separate out Tx timeout code from Tx path. |
| 44 | Paul Gortmaker : Remove old unused single Tx buffer code. |
| 45 | Hayato Fujiwara : Add m32r support. |
| 46 | Paul Gortmaker : use skb_padto() instead of stack scratch area |
| 47 | |
| 48 | Sources: |
| 49 | The National Semiconductor LAN Databook, and the 3Com 3c503 databook. |
| 50 | |
| 51 | */ |
| 52 | |
| 53 | #include <linux/module.h> |
| 54 | #include <linux/kernel.h> |
| 55 | #include <linux/jiffies.h> |
| 56 | #include <linux/fs.h> |
| 57 | #include <linux/types.h> |
| 58 | #include <linux/string.h> |
| 59 | #include <linux/bitops.h> |
Joe Perches | 5aedcf5 | 2011-06-22 20:38:58 +0000 | [diff] [blame] | 60 | #include <linux/uaccess.h> |
| 61 | #include <linux/io.h> |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 62 | #include <asm/irq.h> |
| 63 | #include <linux/delay.h> |
| 64 | #include <linux/errno.h> |
| 65 | #include <linux/fcntl.h> |
| 66 | #include <linux/in.h> |
| 67 | #include <linux/interrupt.h> |
| 68 | #include <linux/init.h> |
| 69 | #include <linux/crc32.h> |
| 70 | |
| 71 | #include <linux/netdevice.h> |
| 72 | #include <linux/etherdevice.h> |
| 73 | |
| 74 | #define NS8390_CORE |
| 75 | #include "8390.h" |
| 76 | |
| 77 | #define BUG_83C690 |
| 78 | |
| 79 | /* These are the operational function interfaces to board-specific |
| 80 | routines. |
| 81 | void reset_8390(struct net_device *dev) |
| 82 | Resets the board associated with DEV, including a hardware reset of |
| 83 | the 8390. This is only called when there is a transmit timeout, and |
| 84 | it is always followed by 8390_init(). |
| 85 | void block_output(struct net_device *dev, int count, const unsigned char *buf, |
| 86 | int start_page) |
| 87 | Write the COUNT bytes of BUF to the packet buffer at START_PAGE. The |
| 88 | "page" value uses the 8390's 256-byte pages. |
| 89 | void get_8390_hdr(struct net_device *dev, struct e8390_hdr *hdr, int ring_page) |
| 90 | Read the 4 byte, page aligned 8390 header. *If* there is a |
| 91 | subsequent read, it will be of the rest of the packet. |
| 92 | void block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset) |
| 93 | Read COUNT bytes from the packet buffer into the skb data area. Start |
| 94 | reading from RING_OFFSET, the address as the 8390 sees it. This will always |
| 95 | follow the read of the 8390 header. |
| 96 | */ |
| 97 | #define ei_reset_8390 (ei_local->reset_8390) |
| 98 | #define ei_block_output (ei_local->block_output) |
| 99 | #define ei_block_input (ei_local->block_input) |
| 100 | #define ei_get_8390_hdr (ei_local->get_8390_hdr) |
| 101 | |
| 102 | /* use 0 for production, 1 for verification, >2 for debug */ |
| 103 | #ifndef ei_debug |
| 104 | int ei_debug = 1; |
| 105 | #endif |
| 106 | |
| 107 | /* Index to functions. */ |
| 108 | static void ei_tx_intr(struct net_device *dev); |
| 109 | static void ei_tx_err(struct net_device *dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 110 | static void ei_receive(struct net_device *dev); |
| 111 | static void ei_rx_overrun(struct net_device *dev); |
| 112 | |
| 113 | /* Routines generic to NS8390-based boards. */ |
| 114 | static void NS8390_trigger_send(struct net_device *dev, unsigned int length, |
| 115 | int start_page); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 116 | static void do_set_multicast_list(struct net_device *dev); |
| 117 | static void __NS8390_init(struct net_device *dev, int startp); |
| 118 | |
| 119 | /* |
| 120 | * SMP and the 8390 setup. |
| 121 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 122 | * The 8390 isn't exactly designed to be multithreaded on RX/TX. There is |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 123 | * a page register that controls bank and packet buffer access. We guard |
| 124 | * this with ei_local->page_lock. Nobody should assume or set the page other |
| 125 | * than zero when the lock is not held. Lock holders must restore page 0 |
| 126 | * before unlocking. Even pure readers must take the lock to protect in |
| 127 | * page 0. |
| 128 | * |
| 129 | * To make life difficult the chip can also be very slow. We therefore can't |
| 130 | * just use spinlocks. For the longer lockups we disable the irq the device |
| 131 | * sits on and hold the lock. We must hold the lock because there is a dual |
| 132 | * processor case other than interrupts (get stats/set multicast list in |
| 133 | * parallel with each other and transmit). |
| 134 | * |
| 135 | * Note: in theory we can just disable the irq on the card _but_ there is |
| 136 | * a latency on SMP irq delivery. So we can easily go "disable irq" "sync irqs" |
| 137 | * enter lock, take the queued irq. So we waddle instead of flying. |
| 138 | * |
| 139 | * Finally by special arrangement for the purpose of being generally |
| 140 | * annoying the transmit function is called bh atomic. That places |
| 141 | * restrictions on the user context callers as disable_irq won't save |
| 142 | * them. |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 143 | * |
| 144 | * Additional explanation of problems with locking by Alan Cox: |
| 145 | * |
| 146 | * "The author (me) didn't use spin_lock_irqsave because the slowness of the |
| 147 | * card means that approach caused horrible problems like losing serial data |
Robert P. J. Day | 14e4a0f | 2008-02-03 15:12:15 +0200 | [diff] [blame] | 148 | * at 38400 baud on some chips. Remember many 8390 nics on PCI were ISA |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 149 | * chips with FPGA front ends. |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 150 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 151 | * Ok the logic behind the 8390 is very simple: |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 152 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 153 | * Things to know |
| 154 | * - IRQ delivery is asynchronous to the PCI bus |
| 155 | * - Blocking the local CPU IRQ via spin locks was too slow |
| 156 | * - The chip has register windows needing locking work |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 157 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 158 | * So the path was once (I say once as people appear to have changed it |
| 159 | * in the mean time and it now looks rather bogus if the changes to use |
| 160 | * disable_irq_nosync_irqsave are disabling the local IRQ) |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 161 | * |
| 162 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 163 | * Take the page lock |
| 164 | * Mask the IRQ on chip |
| 165 | * Disable the IRQ (but not mask locally- someone seems to have |
| 166 | * broken this with the lock validator stuff) |
| 167 | * [This must be _nosync as the page lock may otherwise |
| 168 | * deadlock us] |
| 169 | * Drop the page lock and turn IRQs back on |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 170 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 171 | * At this point an existing IRQ may still be running but we can't |
| 172 | * get a new one |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 173 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 174 | * Take the lock (so we know the IRQ has terminated) but don't mask |
| 175 | * the IRQs on the processor |
| 176 | * Set irqlock [for debug] |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 177 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 178 | * Transmit (slow as ****) |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 179 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 180 | * re-enable the IRQ |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 181 | * |
| 182 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 183 | * We have to use disable_irq because otherwise you will get delayed |
| 184 | * interrupts on the APIC bus deadlocking the transmit path. |
Jeff Garzik | 3f8cb09 | 2008-05-13 01:41:28 -0400 | [diff] [blame] | 185 | * |
Jarek Poplawski | 55b7b62 | 2007-07-26 14:44:01 +0200 | [diff] [blame] | 186 | * Quite hairy but the chip simply wasn't designed for SMP and you can't |
| 187 | * even ACK an interrupt without risking corrupting other parallel |
| 188 | * activities on the chip." [lkml, 25 Jul 2007] |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 189 | */ |
| 190 | |
| 191 | |
| 192 | |
| 193 | /** |
| 194 | * ei_open - Open/initialize the board. |
| 195 | * @dev: network device to initialize |
| 196 | * |
| 197 | * This routine goes all-out, setting everything |
| 198 | * up anew at each open, even though many of these registers should only |
| 199 | * need to be set once at boot. |
| 200 | */ |
| 201 | static int __ei_open(struct net_device *dev) |
| 202 | { |
| 203 | unsigned long flags; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 204 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 205 | |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 206 | if (dev->watchdog_timeo <= 0) |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 207 | dev->watchdog_timeo = TX_TIMEOUT; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 208 | |
| 209 | /* |
| 210 | * Grab the page lock so we own the register set, then call |
| 211 | * the init function. |
| 212 | */ |
| 213 | |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 214 | spin_lock_irqsave(&ei_local->page_lock, flags); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 215 | __NS8390_init(dev, 1); |
| 216 | /* Set the flag before we drop the lock, That way the IRQ arrives |
| 217 | after its set and we get no silly warnings */ |
| 218 | netif_start_queue(dev); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 219 | spin_unlock_irqrestore(&ei_local->page_lock, flags); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 220 | ei_local->irqlock = 0; |
| 221 | return 0; |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * ei_close - shut down network device |
| 226 | * @dev: network device to close |
| 227 | * |
| 228 | * Opposite of ei_open(). Only used when "ifconfig <devname> down" is done. |
| 229 | */ |
| 230 | static int __ei_close(struct net_device *dev) |
| 231 | { |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 232 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 233 | unsigned long flags; |
| 234 | |
| 235 | /* |
| 236 | * Hold the page lock during close |
| 237 | */ |
| 238 | |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 239 | spin_lock_irqsave(&ei_local->page_lock, flags); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 240 | __NS8390_init(dev, 0); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 241 | spin_unlock_irqrestore(&ei_local->page_lock, flags); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 242 | netif_stop_queue(dev); |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * ei_tx_timeout - handle transmit time out condition |
| 248 | * @dev: network device which has apparently fallen asleep |
| 249 | * |
| 250 | * Called by kernel when device never acknowledges a transmit has |
| 251 | * completed (or failed) - i.e. never posted a Tx related interrupt. |
| 252 | */ |
| 253 | |
Stephen Hemminger | 8884c09 | 2008-11-25 18:12:49 -0800 | [diff] [blame] | 254 | static void __ei_tx_timeout(struct net_device *dev) |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 255 | { |
| 256 | unsigned long e8390_base = dev->base_addr; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 257 | struct ei_device *ei_local = netdev_priv(dev); |
Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 258 | int txsr, isr, tickssofar = jiffies - dev_trans_start(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 259 | unsigned long flags; |
| 260 | |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 261 | dev->stats.tx_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 262 | |
| 263 | spin_lock_irqsave(&ei_local->page_lock, flags); |
| 264 | txsr = ei_inb(e8390_base+EN0_TSR); |
| 265 | isr = ei_inb(e8390_base+EN0_ISR); |
| 266 | spin_unlock_irqrestore(&ei_local->page_lock, flags); |
| 267 | |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 268 | netdev_dbg(dev, "Tx timed out, %s TSR=%#2x, ISR=%#2x, t=%d\n", |
| 269 | (txsr & ENTSR_ABT) ? "excess collisions." : |
| 270 | (isr) ? "lost interrupt?" : "cable problem?", |
| 271 | txsr, isr, tickssofar); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 272 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 273 | if (!isr && !dev->stats.tx_packets) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 274 | /* The 8390 probably hasn't gotten on the cable yet. */ |
| 275 | ei_local->interface_num ^= 1; /* Try a different xcvr. */ |
| 276 | } |
| 277 | |
| 278 | /* Ugly but a reset can be slow, yet must be protected */ |
| 279 | |
| 280 | disable_irq_nosync_lockdep(dev->irq); |
| 281 | spin_lock(&ei_local->page_lock); |
| 282 | |
| 283 | /* Try to restart the card. Perhaps the user has fixed something. */ |
| 284 | ei_reset_8390(dev); |
| 285 | __NS8390_init(dev, 1); |
| 286 | |
| 287 | spin_unlock(&ei_local->page_lock); |
| 288 | enable_irq_lockdep(dev->irq); |
| 289 | netif_wake_queue(dev); |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * ei_start_xmit - begin packet transmission |
| 294 | * @skb: packet to be sent |
| 295 | * @dev: network device to which packet is sent |
| 296 | * |
| 297 | * Sends a packet to an 8390 network device. |
| 298 | */ |
| 299 | |
Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 300 | static netdev_tx_t __ei_start_xmit(struct sk_buff *skb, |
| 301 | struct net_device *dev) |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 302 | { |
| 303 | unsigned long e8390_base = dev->base_addr; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 304 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 305 | int send_length = skb->len, output_page; |
| 306 | unsigned long flags; |
| 307 | char buf[ETH_ZLEN]; |
| 308 | char *data = skb->data; |
| 309 | |
| 310 | if (skb->len < ETH_ZLEN) { |
| 311 | memset(buf, 0, ETH_ZLEN); /* more efficient than doing just the needed bits */ |
| 312 | memcpy(buf, data, skb->len); |
| 313 | send_length = ETH_ZLEN; |
| 314 | data = buf; |
| 315 | } |
| 316 | |
| 317 | /* Mask interrupts from the ethercard. |
| 318 | SMP: We have to grab the lock here otherwise the IRQ handler |
| 319 | on another CPU can flip window and race the IRQ mask set. We end |
| 320 | up trashing the mcast filter not disabling irqs if we don't lock */ |
| 321 | |
| 322 | spin_lock_irqsave(&ei_local->page_lock, flags); |
| 323 | ei_outb_p(0x00, e8390_base + EN0_IMR); |
| 324 | spin_unlock_irqrestore(&ei_local->page_lock, flags); |
| 325 | |
| 326 | |
| 327 | /* |
| 328 | * Slow phase with lock held. |
| 329 | */ |
| 330 | |
| 331 | disable_irq_nosync_lockdep_irqsave(dev->irq, &flags); |
| 332 | |
| 333 | spin_lock(&ei_local->page_lock); |
| 334 | |
| 335 | ei_local->irqlock = 1; |
| 336 | |
| 337 | /* |
| 338 | * We have two Tx slots available for use. Find the first free |
| 339 | * slot, and then perform some sanity checks. With two Tx bufs, |
| 340 | * you get very close to transmitting back-to-back packets. With |
| 341 | * only one Tx buf, the transmitter sits idle while you reload the |
| 342 | * card, leaving a substantial gap between each transmitted packet. |
| 343 | */ |
| 344 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 345 | if (ei_local->tx1 == 0) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 346 | output_page = ei_local->tx_start_page; |
| 347 | ei_local->tx1 = send_length; |
| 348 | if (ei_debug && ei_local->tx2 > 0) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 349 | netdev_dbg(dev, "idle transmitter tx2=%d, lasttx=%d, txing=%d\n", |
| 350 | ei_local->tx2, ei_local->lasttx, ei_local->txing); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 351 | } else if (ei_local->tx2 == 0) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 352 | output_page = ei_local->tx_start_page + TX_PAGES/2; |
| 353 | ei_local->tx2 = send_length; |
| 354 | if (ei_debug && ei_local->tx1 > 0) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 355 | netdev_dbg(dev, "idle transmitter, tx1=%d, lasttx=%d, txing=%d\n", |
| 356 | ei_local->tx1, ei_local->lasttx, ei_local->txing); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 357 | } else { /* We should never get here. */ |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 358 | if (ei_debug) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 359 | netdev_dbg(dev, "No Tx buffers free! tx1=%d tx2=%d last=%d\n", |
| 360 | ei_local->tx1, ei_local->tx2, ei_local->lasttx); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 361 | ei_local->irqlock = 0; |
| 362 | netif_stop_queue(dev); |
| 363 | ei_outb_p(ENISR_ALL, e8390_base + EN0_IMR); |
| 364 | spin_unlock(&ei_local->page_lock); |
| 365 | enable_irq_lockdep_irqrestore(dev->irq, &flags); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 366 | dev->stats.tx_errors++; |
Patrick McHardy | 5b54814 | 2009-06-12 06:22:29 +0000 | [diff] [blame] | 367 | return NETDEV_TX_BUSY; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | /* |
| 371 | * Okay, now upload the packet and trigger a send if the transmitter |
| 372 | * isn't already sending. If it is busy, the interrupt handler will |
| 373 | * trigger the send later, upon receiving a Tx done interrupt. |
| 374 | */ |
| 375 | |
| 376 | ei_block_output(dev, send_length, data, output_page); |
| 377 | |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 378 | if (!ei_local->txing) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 379 | ei_local->txing = 1; |
| 380 | NS8390_trigger_send(dev, send_length, output_page); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 381 | if (output_page == ei_local->tx_start_page) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 382 | ei_local->tx1 = -1; |
| 383 | ei_local->lasttx = -1; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 384 | } else { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 385 | ei_local->tx2 = -1; |
| 386 | ei_local->lasttx = -2; |
| 387 | } |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 388 | } else |
| 389 | ei_local->txqueue++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 390 | |
| 391 | if (ei_local->tx1 && ei_local->tx2) |
| 392 | netif_stop_queue(dev); |
| 393 | else |
| 394 | netif_start_queue(dev); |
| 395 | |
| 396 | /* Turn 8390 interrupts back on. */ |
| 397 | ei_local->irqlock = 0; |
| 398 | ei_outb_p(ENISR_ALL, e8390_base + EN0_IMR); |
| 399 | |
| 400 | spin_unlock(&ei_local->page_lock); |
| 401 | enable_irq_lockdep_irqrestore(dev->irq, &flags); |
Richard Cochran | d76b7e2 | 2011-06-19 21:51:24 +0000 | [diff] [blame] | 402 | skb_tx_timestamp(skb); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 403 | dev_kfree_skb(skb); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 404 | dev->stats.tx_bytes += send_length; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 405 | |
Patrick McHardy | ec634fe | 2009-07-05 19:23:38 -0700 | [diff] [blame] | 406 | return NETDEV_TX_OK; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | /** |
| 410 | * ei_interrupt - handle the interrupts from an 8390 |
| 411 | * @irq: interrupt number |
| 412 | * @dev_id: a pointer to the net_device |
| 413 | * |
| 414 | * Handle the ether interface interrupts. We pull packets from |
| 415 | * the 8390 via the card specific functions and fire them at the networking |
| 416 | * stack. We also handle transmit completions and wake the transmit path if |
| 417 | * necessary. We also update the counters and do other housekeeping as |
| 418 | * needed. |
| 419 | */ |
| 420 | |
| 421 | static irqreturn_t __ei_interrupt(int irq, void *dev_id) |
| 422 | { |
| 423 | struct net_device *dev = dev_id; |
| 424 | unsigned long e8390_base = dev->base_addr; |
| 425 | int interrupts, nr_serviced = 0; |
| 426 | struct ei_device *ei_local = netdev_priv(dev); |
| 427 | |
| 428 | /* |
| 429 | * Protect the irq test too. |
| 430 | */ |
| 431 | |
| 432 | spin_lock(&ei_local->page_lock); |
| 433 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 434 | if (ei_local->irqlock) { |
Nikanth Karthikesan | 6846ad2 | 2010-04-15 02:21:23 +0000 | [diff] [blame] | 435 | /* |
| 436 | * This might just be an interrupt for a PCI device sharing |
| 437 | * this line |
| 438 | */ |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 439 | netdev_err(dev, "Interrupted while interrupts are masked! isr=%#2x imr=%#2x\n", |
| 440 | ei_inb_p(e8390_base + EN0_ISR), |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 441 | ei_inb_p(e8390_base + EN0_IMR)); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 442 | spin_unlock(&ei_local->page_lock); |
| 443 | return IRQ_NONE; |
| 444 | } |
| 445 | |
| 446 | /* Change to page 0 and read the intr status reg. */ |
| 447 | ei_outb_p(E8390_NODMA+E8390_PAGE0, e8390_base + E8390_CMD); |
| 448 | if (ei_debug > 3) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 449 | netdev_dbg(dev, "interrupt(isr=%#2.2x)\n", |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 450 | ei_inb_p(e8390_base + EN0_ISR)); |
| 451 | |
| 452 | /* !!Assumption!! -- we stay in page 0. Don't break this. */ |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 453 | while ((interrupts = ei_inb_p(e8390_base + EN0_ISR)) != 0 && |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 454 | ++nr_serviced < MAX_SERVICE) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 455 | if (!netif_running(dev)) { |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 456 | netdev_warn(dev, "interrupt from stopped card\n"); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 457 | /* rmk - acknowledge the interrupts */ |
| 458 | ei_outb_p(interrupts, e8390_base + EN0_ISR); |
| 459 | interrupts = 0; |
| 460 | break; |
| 461 | } |
| 462 | if (interrupts & ENISR_OVER) |
| 463 | ei_rx_overrun(dev); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 464 | else if (interrupts & (ENISR_RX+ENISR_RX_ERR)) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 465 | /* Got a good (?) packet. */ |
| 466 | ei_receive(dev); |
| 467 | } |
| 468 | /* Push the next to-transmit packet through. */ |
| 469 | if (interrupts & ENISR_TX) |
| 470 | ei_tx_intr(dev); |
| 471 | else if (interrupts & ENISR_TX_ERR) |
| 472 | ei_tx_err(dev); |
| 473 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 474 | if (interrupts & ENISR_COUNTERS) { |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 475 | dev->stats.rx_frame_errors += ei_inb_p(e8390_base + EN0_COUNTER0); |
| 476 | dev->stats.rx_crc_errors += ei_inb_p(e8390_base + EN0_COUNTER1); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 477 | dev->stats.rx_missed_errors += ei_inb_p(e8390_base + EN0_COUNTER2); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 478 | ei_outb_p(ENISR_COUNTERS, e8390_base + EN0_ISR); /* Ack intr. */ |
| 479 | } |
| 480 | |
| 481 | /* Ignore any RDC interrupts that make it back to here. */ |
| 482 | if (interrupts & ENISR_RDC) |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 483 | ei_outb_p(ENISR_RDC, e8390_base + EN0_ISR); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 484 | |
| 485 | ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base + E8390_CMD); |
| 486 | } |
| 487 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 488 | if (interrupts && ei_debug) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 489 | ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base + E8390_CMD); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 490 | if (nr_serviced >= MAX_SERVICE) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 491 | /* 0xFF is valid for a card removal */ |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 492 | if (interrupts != 0xFF) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 493 | netdev_warn(dev, "Too much work at interrupt, status %#2.2x\n", |
| 494 | interrupts); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 495 | ei_outb_p(ENISR_ALL, e8390_base + EN0_ISR); /* Ack. most intrs. */ |
| 496 | } else { |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 497 | netdev_warn(dev, "unknown interrupt %#2x\n", interrupts); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 498 | ei_outb_p(0xff, e8390_base + EN0_ISR); /* Ack. all intrs. */ |
| 499 | } |
| 500 | } |
| 501 | spin_unlock(&ei_local->page_lock); |
| 502 | return IRQ_RETVAL(nr_serviced > 0); |
| 503 | } |
| 504 | |
| 505 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 506 | static void __ei_poll(struct net_device *dev) |
| 507 | { |
Jarek Poplawski | f47aeff | 2008-09-30 20:58:25 +0000 | [diff] [blame] | 508 | disable_irq(dev->irq); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 509 | __ei_interrupt(dev->irq, dev); |
Jarek Poplawski | f47aeff | 2008-09-30 20:58:25 +0000 | [diff] [blame] | 510 | enable_irq(dev->irq); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 511 | } |
| 512 | #endif |
| 513 | |
| 514 | /** |
| 515 | * ei_tx_err - handle transmitter error |
| 516 | * @dev: network device which threw the exception |
| 517 | * |
| 518 | * A transmitter error has happened. Most likely excess collisions (which |
| 519 | * is a fairly normal condition). If the error is one where the Tx will |
| 520 | * have been aborted, we try and send another one right away, instead of |
| 521 | * letting the failed packet sit and collect dust in the Tx buffer. This |
| 522 | * is a much better solution as it avoids kernel based Tx timeouts, and |
| 523 | * an unnecessary card reset. |
| 524 | * |
| 525 | * Called with lock held. |
| 526 | */ |
| 527 | |
| 528 | static void ei_tx_err(struct net_device *dev) |
| 529 | { |
| 530 | unsigned long e8390_base = dev->base_addr; |
Stephen Rothwell | 0c1aa20 | 2008-05-29 22:39:28 +1000 | [diff] [blame] | 531 | /* ei_local is used on some platforms via the EI_SHIFT macro */ |
| 532 | struct ei_device *ei_local __maybe_unused = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 533 | unsigned char txsr = ei_inb_p(e8390_base+EN0_TSR); |
| 534 | unsigned char tx_was_aborted = txsr & (ENTSR_ABT+ENTSR_FU); |
| 535 | |
| 536 | #ifdef VERBOSE_ERROR_DUMP |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 537 | netdev_dbg(dev, "transmitter error (%#2x):", txsr); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 538 | if (txsr & ENTSR_ABT) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 539 | pr_cont(" excess-collisions "); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 540 | if (txsr & ENTSR_ND) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 541 | pr_cont(" non-deferral "); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 542 | if (txsr & ENTSR_CRS) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 543 | pr_cont(" lost-carrier "); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 544 | if (txsr & ENTSR_FU) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 545 | pr_cont(" FIFO-underrun "); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 546 | if (txsr & ENTSR_CDH) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 547 | pr_cont(" lost-heartbeat "); |
| 548 | pr_cont("\n"); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 549 | #endif |
| 550 | |
| 551 | ei_outb_p(ENISR_TX_ERR, e8390_base + EN0_ISR); /* Ack intr. */ |
| 552 | |
| 553 | if (tx_was_aborted) |
| 554 | ei_tx_intr(dev); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 555 | else { |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 556 | dev->stats.tx_errors++; |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 557 | if (txsr & ENTSR_CRS) |
| 558 | dev->stats.tx_carrier_errors++; |
| 559 | if (txsr & ENTSR_CDH) |
| 560 | dev->stats.tx_heartbeat_errors++; |
| 561 | if (txsr & ENTSR_OWC) |
| 562 | dev->stats.tx_window_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
| 566 | /** |
| 567 | * ei_tx_intr - transmit interrupt handler |
| 568 | * @dev: network device for which tx intr is handled |
| 569 | * |
| 570 | * We have finished a transmit: check for errors and then trigger the next |
| 571 | * packet to be sent. Called with lock held. |
| 572 | */ |
| 573 | |
| 574 | static void ei_tx_intr(struct net_device *dev) |
| 575 | { |
| 576 | unsigned long e8390_base = dev->base_addr; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 577 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 578 | int status = ei_inb(e8390_base + EN0_TSR); |
| 579 | |
| 580 | ei_outb_p(ENISR_TX, e8390_base + EN0_ISR); /* Ack intr. */ |
| 581 | |
| 582 | /* |
| 583 | * There are two Tx buffers, see which one finished, and trigger |
| 584 | * the send of another one if it exists. |
| 585 | */ |
| 586 | ei_local->txqueue--; |
| 587 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 588 | if (ei_local->tx1 < 0) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 589 | if (ei_local->lasttx != 1 && ei_local->lasttx != -1) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 590 | pr_err("%s: bogus last_tx_buffer %d, tx1=%d\n", |
| 591 | ei_local->name, ei_local->lasttx, ei_local->tx1); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 592 | ei_local->tx1 = 0; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 593 | if (ei_local->tx2 > 0) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 594 | ei_local->txing = 1; |
| 595 | NS8390_trigger_send(dev, ei_local->tx2, ei_local->tx_start_page + 6); |
| 596 | dev->trans_start = jiffies; |
| 597 | ei_local->tx2 = -1, |
| 598 | ei_local->lasttx = 2; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 599 | } else |
| 600 | ei_local->lasttx = 20, ei_local->txing = 0; |
| 601 | } else if (ei_local->tx2 < 0) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 602 | if (ei_local->lasttx != 2 && ei_local->lasttx != -2) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 603 | pr_err("%s: bogus last_tx_buffer %d, tx2=%d\n", |
| 604 | ei_local->name, ei_local->lasttx, ei_local->tx2); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 605 | ei_local->tx2 = 0; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 606 | if (ei_local->tx1 > 0) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 607 | ei_local->txing = 1; |
| 608 | NS8390_trigger_send(dev, ei_local->tx1, ei_local->tx_start_page); |
| 609 | dev->trans_start = jiffies; |
| 610 | ei_local->tx1 = -1; |
| 611 | ei_local->lasttx = 1; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 612 | } else |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 613 | ei_local->lasttx = 10, ei_local->txing = 0; |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 614 | } /* else |
| 615 | netdev_warn(dev, "unexpected TX-done interrupt, lasttx=%d\n", |
| 616 | ei_local->lasttx); |
| 617 | */ |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 618 | |
| 619 | /* Minimize Tx latency: update the statistics after we restart TXing. */ |
| 620 | if (status & ENTSR_COL) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 621 | dev->stats.collisions++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 622 | if (status & ENTSR_PTX) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 623 | dev->stats.tx_packets++; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 624 | else { |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 625 | dev->stats.tx_errors++; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 626 | if (status & ENTSR_ABT) { |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 627 | dev->stats.tx_aborted_errors++; |
| 628 | dev->stats.collisions += 16; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 629 | } |
| 630 | if (status & ENTSR_CRS) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 631 | dev->stats.tx_carrier_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 632 | if (status & ENTSR_FU) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 633 | dev->stats.tx_fifo_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 634 | if (status & ENTSR_CDH) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 635 | dev->stats.tx_heartbeat_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 636 | if (status & ENTSR_OWC) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 637 | dev->stats.tx_window_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 638 | } |
| 639 | netif_wake_queue(dev); |
| 640 | } |
| 641 | |
| 642 | /** |
| 643 | * ei_receive - receive some packets |
| 644 | * @dev: network device with which receive will be run |
| 645 | * |
| 646 | * We have a good packet(s), get it/them out of the buffers. |
| 647 | * Called with lock held. |
| 648 | */ |
| 649 | |
| 650 | static void ei_receive(struct net_device *dev) |
| 651 | { |
| 652 | unsigned long e8390_base = dev->base_addr; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 653 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 654 | unsigned char rxing_page, this_frame, next_frame; |
| 655 | unsigned short current_offset; |
| 656 | int rx_pkt_count = 0; |
| 657 | struct e8390_pkt_hdr rx_frame; |
| 658 | int num_rx_pages = ei_local->stop_page-ei_local->rx_start_page; |
| 659 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 660 | while (++rx_pkt_count < 10) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 661 | int pkt_len, pkt_stat; |
| 662 | |
| 663 | /* Get the rx page (incoming packet pointer). */ |
| 664 | ei_outb_p(E8390_NODMA+E8390_PAGE1, e8390_base + E8390_CMD); |
| 665 | rxing_page = ei_inb_p(e8390_base + EN1_CURPAG); |
| 666 | ei_outb_p(E8390_NODMA+E8390_PAGE0, e8390_base + E8390_CMD); |
| 667 | |
| 668 | /* Remove one frame from the ring. Boundary is always a page behind. */ |
| 669 | this_frame = ei_inb_p(e8390_base + EN0_BOUNDARY) + 1; |
| 670 | if (this_frame >= ei_local->stop_page) |
| 671 | this_frame = ei_local->rx_start_page; |
| 672 | |
| 673 | /* Someday we'll omit the previous, iff we never get this message. |
| 674 | (There is at least one clone claimed to have a problem.) |
| 675 | |
| 676 | Keep quiet if it looks like a card removal. One problem here |
| 677 | is that some clones crash in roughly the same way. |
| 678 | */ |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 679 | if (ei_debug > 0 && |
| 680 | this_frame != ei_local->current_page && |
| 681 | (this_frame != 0x0 || rxing_page != 0xFF)) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 682 | netdev_err(dev, "mismatched read page pointers %2x vs %2x\n", |
| 683 | this_frame, ei_local->current_page); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 684 | |
| 685 | if (this_frame == rxing_page) /* Read all the frames? */ |
| 686 | break; /* Done for now */ |
| 687 | |
| 688 | current_offset = this_frame << 8; |
| 689 | ei_get_8390_hdr(dev, &rx_frame, this_frame); |
| 690 | |
| 691 | pkt_len = rx_frame.count - sizeof(struct e8390_pkt_hdr); |
| 692 | pkt_stat = rx_frame.status; |
| 693 | |
| 694 | next_frame = this_frame + 1 + ((pkt_len+4)>>8); |
| 695 | |
| 696 | /* Check for bogosity warned by 3c503 book: the status byte is never |
| 697 | written. This happened a lot during testing! This code should be |
| 698 | cleaned up someday. */ |
Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 699 | if (rx_frame.next != next_frame && |
| 700 | rx_frame.next != next_frame + 1 && |
| 701 | rx_frame.next != next_frame - num_rx_pages && |
| 702 | rx_frame.next != next_frame + 1 - num_rx_pages) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 703 | ei_local->current_page = rxing_page; |
| 704 | ei_outb(ei_local->current_page-1, e8390_base+EN0_BOUNDARY); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 705 | dev->stats.rx_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 706 | continue; |
| 707 | } |
| 708 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 709 | if (pkt_len < 60 || pkt_len > 1518) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 710 | if (ei_debug) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 711 | netdev_dbg(dev, "bogus packet size: %d, status=%#2x nxpg=%#2x\n", |
| 712 | rx_frame.count, rx_frame.status, |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 713 | rx_frame.next); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 714 | dev->stats.rx_errors++; |
| 715 | dev->stats.rx_length_errors++; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 716 | } else if ((pkt_stat & 0x0F) == ENRSR_RXOK) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 717 | struct sk_buff *skb; |
| 718 | |
Pradeep A Dalvi | 1d26643 | 2012-02-05 02:49:09 +0000 | [diff] [blame] | 719 | skb = netdev_alloc_skb(dev, pkt_len + 2); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 720 | if (skb == NULL) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 721 | if (ei_debug > 1) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 722 | netdev_dbg(dev, "Couldn't allocate a sk_buff of size %d\n", |
| 723 | pkt_len); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 724 | dev->stats.rx_dropped++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 725 | break; |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 726 | } else { |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 727 | skb_reserve(skb, 2); /* IP headers on 16 byte boundaries */ |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 728 | skb_put(skb, pkt_len); /* Make room */ |
| 729 | ei_block_input(dev, pkt_len, skb, current_offset + sizeof(rx_frame)); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 730 | skb->protocol = eth_type_trans(skb, dev); |
Richard Cochran | d76b7e2 | 2011-06-19 21:51:24 +0000 | [diff] [blame] | 731 | if (!skb_defer_rx_timestamp(skb)) |
| 732 | netif_rx(skb); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 733 | dev->stats.rx_packets++; |
| 734 | dev->stats.rx_bytes += pkt_len; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 735 | if (pkt_stat & ENRSR_PHY) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 736 | dev->stats.multicast++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 737 | } |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 738 | } else { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 739 | if (ei_debug) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 740 | netdev_dbg(dev, "bogus packet: status=%#2x nxpg=%#2x size=%d\n", |
| 741 | rx_frame.status, rx_frame.next, |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 742 | rx_frame.count); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 743 | dev->stats.rx_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 744 | /* NB: The NIC counts CRC, frame and missed errors. */ |
| 745 | if (pkt_stat & ENRSR_FO) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 746 | dev->stats.rx_fifo_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 747 | } |
| 748 | next_frame = rx_frame.next; |
| 749 | |
| 750 | /* This _should_ never happen: it's here for avoiding bad clones. */ |
| 751 | if (next_frame >= ei_local->stop_page) { |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 752 | netdev_notice(dev, "next frame inconsistency, %#2x\n", |
| 753 | next_frame); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 754 | next_frame = ei_local->rx_start_page; |
| 755 | } |
| 756 | ei_local->current_page = next_frame; |
| 757 | ei_outb_p(next_frame-1, e8390_base+EN0_BOUNDARY); |
| 758 | } |
| 759 | |
| 760 | /* We used to also ack ENISR_OVER here, but that would sometimes mask |
| 761 | a real overrun, leaving the 8390 in a stopped state with rec'vr off. */ |
| 762 | ei_outb_p(ENISR_RX+ENISR_RX_ERR, e8390_base+EN0_ISR); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | /** |
| 766 | * ei_rx_overrun - handle receiver overrun |
| 767 | * @dev: network device which threw exception |
| 768 | * |
| 769 | * We have a receiver overrun: we have to kick the 8390 to get it started |
| 770 | * again. Problem is that you have to kick it exactly as NS prescribes in |
| 771 | * the updated datasheets, or "the NIC may act in an unpredictable manner." |
| 772 | * This includes causing "the NIC to defer indefinitely when it is stopped |
| 773 | * on a busy network." Ugh. |
| 774 | * Called with lock held. Don't call this with the interrupts off or your |
| 775 | * computer will hate you - it takes 10ms or so. |
| 776 | */ |
| 777 | |
| 778 | static void ei_rx_overrun(struct net_device *dev) |
| 779 | { |
| 780 | unsigned long e8390_base = dev->base_addr; |
| 781 | unsigned char was_txing, must_resend = 0; |
Stephen Rothwell | 0c1aa20 | 2008-05-29 22:39:28 +1000 | [diff] [blame] | 782 | /* ei_local is used on some platforms via the EI_SHIFT macro */ |
| 783 | struct ei_device *ei_local __maybe_unused = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 784 | |
| 785 | /* |
| 786 | * Record whether a Tx was in progress and then issue the |
| 787 | * stop command. |
| 788 | */ |
| 789 | was_txing = ei_inb_p(e8390_base+E8390_CMD) & E8390_TRANS; |
| 790 | ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD); |
| 791 | |
| 792 | if (ei_debug > 1) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 793 | netdev_dbg(dev, "Receiver overrun\n"); |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 794 | dev->stats.rx_over_errors++; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 795 | |
| 796 | /* |
| 797 | * Wait a full Tx time (1.2ms) + some guard time, NS says 1.6ms total. |
| 798 | * Early datasheets said to poll the reset bit, but now they say that |
| 799 | * it "is not a reliable indicator and subsequently should be ignored." |
| 800 | * We wait at least 10ms. |
| 801 | */ |
| 802 | |
| 803 | mdelay(10); |
| 804 | |
| 805 | /* |
| 806 | * Reset RBCR[01] back to zero as per magic incantation. |
| 807 | */ |
| 808 | ei_outb_p(0x00, e8390_base+EN0_RCNTLO); |
| 809 | ei_outb_p(0x00, e8390_base+EN0_RCNTHI); |
| 810 | |
| 811 | /* |
| 812 | * See if any Tx was interrupted or not. According to NS, this |
| 813 | * step is vital, and skipping it will cause no end of havoc. |
| 814 | */ |
| 815 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 816 | if (was_txing) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 817 | unsigned char tx_completed = ei_inb_p(e8390_base+EN0_ISR) & (ENISR_TX+ENISR_TX_ERR); |
| 818 | if (!tx_completed) |
| 819 | must_resend = 1; |
| 820 | } |
| 821 | |
| 822 | /* |
| 823 | * Have to enter loopback mode and then restart the NIC before |
| 824 | * you are allowed to slurp packets up off the ring. |
| 825 | */ |
| 826 | ei_outb_p(E8390_TXOFF, e8390_base + EN0_TXCR); |
| 827 | ei_outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START, e8390_base + E8390_CMD); |
| 828 | |
| 829 | /* |
| 830 | * Clear the Rx ring of all the debris, and ack the interrupt. |
| 831 | */ |
| 832 | ei_receive(dev); |
| 833 | ei_outb_p(ENISR_OVER, e8390_base+EN0_ISR); |
| 834 | |
| 835 | /* |
| 836 | * Leave loopback mode, and resend any packet that got stopped. |
| 837 | */ |
| 838 | ei_outb_p(E8390_TXCONFIG, e8390_base + EN0_TXCR); |
| 839 | if (must_resend) |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 840 | ei_outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START + E8390_TRANS, e8390_base + E8390_CMD); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | /* |
| 844 | * Collect the stats. This is called unlocked and from several contexts. |
| 845 | */ |
| 846 | |
Stephen Hemminger | 8884c09 | 2008-11-25 18:12:49 -0800 | [diff] [blame] | 847 | static struct net_device_stats *__ei_get_stats(struct net_device *dev) |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 848 | { |
| 849 | unsigned long ioaddr = dev->base_addr; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 850 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 851 | unsigned long flags; |
| 852 | |
| 853 | /* If the card is stopped, just return the present stats. */ |
| 854 | if (!netif_running(dev)) |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 855 | return &dev->stats; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 856 | |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 857 | spin_lock_irqsave(&ei_local->page_lock, flags); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 858 | /* Read the counter registers, assuming we are in page 0. */ |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 859 | dev->stats.rx_frame_errors += ei_inb_p(ioaddr + EN0_COUNTER0); |
| 860 | dev->stats.rx_crc_errors += ei_inb_p(ioaddr + EN0_COUNTER1); |
| 861 | dev->stats.rx_missed_errors += ei_inb_p(ioaddr + EN0_COUNTER2); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 862 | spin_unlock_irqrestore(&ei_local->page_lock, flags); |
| 863 | |
Paulius Zaleckas | 244d74f | 2008-05-07 02:20:40 +0300 | [diff] [blame] | 864 | return &dev->stats; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | /* |
| 868 | * Form the 64 bit 8390 multicast table from the linked list of addresses |
| 869 | * associated with this dev structure. |
| 870 | */ |
| 871 | |
| 872 | static inline void make_mc_bits(u8 *bits, struct net_device *dev) |
| 873 | { |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 874 | struct netdev_hw_addr *ha; |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 875 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 876 | netdev_for_each_mc_addr(ha, dev) { |
| 877 | u32 crc = ether_crc(ETH_ALEN, ha->addr); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 878 | /* |
| 879 | * The 8390 uses the 6 most significant bits of the |
| 880 | * CRC to index the multicast table. |
| 881 | */ |
| 882 | bits[crc>>29] |= (1<<((crc>>26)&7)); |
| 883 | } |
| 884 | } |
| 885 | |
| 886 | /** |
| 887 | * do_set_multicast_list - set/clear multicast filter |
| 888 | * @dev: net device for which multicast filter is adjusted |
| 889 | * |
| 890 | * Set or clear the multicast filter for this adaptor. May be called |
| 891 | * from a BH in 2.1.x. Must be called with lock held. |
| 892 | */ |
| 893 | |
| 894 | static void do_set_multicast_list(struct net_device *dev) |
| 895 | { |
| 896 | unsigned long e8390_base = dev->base_addr; |
| 897 | int i; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 898 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 899 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 900 | if (!(dev->flags&(IFF_PROMISC|IFF_ALLMULTI))) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 901 | memset(ei_local->mcfilter, 0, 8); |
Jiri Pirko | f9dcbcc | 2010-02-23 09:19:49 +0000 | [diff] [blame] | 902 | if (!netdev_mc_empty(dev)) |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 903 | make_mc_bits(ei_local->mcfilter, dev); |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 904 | } else |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 905 | memset(ei_local->mcfilter, 0xFF, 8); /* mcast set to accept-all */ |
| 906 | |
| 907 | /* |
| 908 | * DP8390 manuals don't specify any magic sequence for altering |
| 909 | * the multicast regs on an already running card. To be safe, we |
| 910 | * ensure multicast mode is off prior to loading up the new hash |
| 911 | * table. If this proves to be not enough, we can always resort |
| 912 | * to stopping the NIC, loading the table and then restarting. |
| 913 | * |
| 914 | * Bug Alert! The MC regs on the SMC 83C690 (SMC Elite and SMC |
| 915 | * Elite16) appear to be write-only. The NS 8390 data sheet lists |
| 916 | * them as r/w so this is a bug. The SMC 83C790 (SMC Ultra and |
| 917 | * Ultra32 EISA) appears to have this bug fixed. |
| 918 | */ |
| 919 | |
| 920 | if (netif_running(dev)) |
| 921 | ei_outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR); |
| 922 | ei_outb_p(E8390_NODMA + E8390_PAGE1, e8390_base + E8390_CMD); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 923 | for (i = 0; i < 8; i++) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 924 | ei_outb_p(ei_local->mcfilter[i], e8390_base + EN1_MULT_SHIFT(i)); |
| 925 | #ifndef BUG_83C690 |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 926 | if (ei_inb_p(e8390_base + EN1_MULT_SHIFT(i)) != ei_local->mcfilter[i]) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 927 | netdev_err(dev, "Multicast filter read/write mismap %d\n", |
| 928 | i); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 929 | #endif |
| 930 | } |
| 931 | ei_outb_p(E8390_NODMA + E8390_PAGE0, e8390_base + E8390_CMD); |
| 932 | |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 933 | if (dev->flags&IFF_PROMISC) |
| 934 | ei_outb_p(E8390_RXCONFIG | 0x18, e8390_base + EN0_RXCR); |
Jiri Pirko | f9dcbcc | 2010-02-23 09:19:49 +0000 | [diff] [blame] | 935 | else if (dev->flags & IFF_ALLMULTI || !netdev_mc_empty(dev)) |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 936 | ei_outb_p(E8390_RXCONFIG | 0x08, e8390_base + EN0_RXCR); |
| 937 | else |
| 938 | ei_outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR); |
| 939 | } |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 940 | |
| 941 | /* |
| 942 | * Called without lock held. This is invoked from user context and may |
| 943 | * be parallel to just about everything else. Its also fairly quick and |
| 944 | * not called too often. Must protect against both bh and irq users |
| 945 | */ |
| 946 | |
Stephen Hemminger | 8884c09 | 2008-11-25 18:12:49 -0800 | [diff] [blame] | 947 | static void __ei_set_multicast_list(struct net_device *dev) |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 948 | { |
| 949 | unsigned long flags; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 950 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 951 | |
| 952 | spin_lock_irqsave(&ei_local->page_lock, flags); |
| 953 | do_set_multicast_list(dev); |
| 954 | spin_unlock_irqrestore(&ei_local->page_lock, flags); |
| 955 | } |
| 956 | |
| 957 | /** |
| 958 | * ethdev_setup - init rest of 8390 device struct |
| 959 | * @dev: network device structure to init |
| 960 | * |
| 961 | * Initialize the rest of the 8390 device structure. Do NOT __init |
| 962 | * this, as it is used by 8390 based modular drivers too. |
| 963 | */ |
| 964 | |
| 965 | static void ethdev_setup(struct net_device *dev) |
| 966 | { |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 967 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 968 | if (ei_debug > 1) |
| 969 | printk(version); |
| 970 | |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 971 | ether_setup(dev); |
| 972 | |
| 973 | spin_lock_init(&ei_local->page_lock); |
| 974 | } |
| 975 | |
| 976 | /** |
| 977 | * alloc_ei_netdev - alloc_etherdev counterpart for 8390 |
| 978 | * @size: extra bytes to allocate |
| 979 | * |
| 980 | * Allocate 8390-specific net_device. |
| 981 | */ |
| 982 | static struct net_device *____alloc_ei_netdev(int size) |
| 983 | { |
| 984 | return alloc_netdev(sizeof(struct ei_device) + size, "eth%d", |
| 985 | ethdev_setup); |
| 986 | } |
| 987 | |
| 988 | |
| 989 | |
| 990 | |
| 991 | /* This page of functions should be 8390 generic */ |
| 992 | /* Follow National Semi's recommendations for initializing the "NIC". */ |
| 993 | |
| 994 | /** |
| 995 | * NS8390_init - initialize 8390 hardware |
| 996 | * @dev: network device to initialize |
| 997 | * @startp: boolean. non-zero value to initiate chip processing |
| 998 | * |
| 999 | * Must be called with lock held. |
| 1000 | */ |
| 1001 | |
| 1002 | static void __NS8390_init(struct net_device *dev, int startp) |
| 1003 | { |
| 1004 | unsigned long e8390_base = dev->base_addr; |
Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 1005 | struct ei_device *ei_local = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1006 | int i; |
| 1007 | int endcfg = ei_local->word16 |
| 1008 | ? (0x48 | ENDCFG_WTS | (ei_local->bigendian ? ENDCFG_BOS : 0)) |
| 1009 | : 0x48; |
| 1010 | |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 1011 | if (sizeof(struct e8390_pkt_hdr) != 4) |
| 1012 | panic("8390.c: header struct mispacked\n"); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1013 | /* Follow National Semi's recommendations for initing the DP83902. */ |
| 1014 | ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD); /* 0x21 */ |
| 1015 | ei_outb_p(endcfg, e8390_base + EN0_DCFG); /* 0x48 or 0x49 */ |
| 1016 | /* Clear the remote byte count registers. */ |
| 1017 | ei_outb_p(0x00, e8390_base + EN0_RCNTLO); |
| 1018 | ei_outb_p(0x00, e8390_base + EN0_RCNTHI); |
| 1019 | /* Set to monitor and loopback mode -- this is vital!. */ |
| 1020 | ei_outb_p(E8390_RXOFF, e8390_base + EN0_RXCR); /* 0x20 */ |
| 1021 | ei_outb_p(E8390_TXOFF, e8390_base + EN0_TXCR); /* 0x02 */ |
| 1022 | /* Set the transmit page and receive ring. */ |
| 1023 | ei_outb_p(ei_local->tx_start_page, e8390_base + EN0_TPSR); |
| 1024 | ei_local->tx1 = ei_local->tx2 = 0; |
| 1025 | ei_outb_p(ei_local->rx_start_page, e8390_base + EN0_STARTPG); |
| 1026 | ei_outb_p(ei_local->stop_page-1, e8390_base + EN0_BOUNDARY); /* 3c503 says 0x3f,NS0x26*/ |
| 1027 | ei_local->current_page = ei_local->rx_start_page; /* assert boundary+1 */ |
| 1028 | ei_outb_p(ei_local->stop_page, e8390_base + EN0_STOPPG); |
| 1029 | /* Clear the pending interrupts and mask. */ |
| 1030 | ei_outb_p(0xFF, e8390_base + EN0_ISR); |
| 1031 | ei_outb_p(0x00, e8390_base + EN0_IMR); |
| 1032 | |
| 1033 | /* Copy the station address into the DS8390 registers. */ |
| 1034 | |
| 1035 | ei_outb_p(E8390_NODMA + E8390_PAGE1 + E8390_STOP, e8390_base+E8390_CMD); /* 0x61 */ |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 1036 | for (i = 0; i < 6; i++) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1037 | ei_outb_p(dev->dev_addr[i], e8390_base + EN1_PHYS_SHIFT(i)); |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 1038 | if (ei_debug > 1 && |
| 1039 | ei_inb_p(e8390_base + EN1_PHYS_SHIFT(i)) != dev->dev_addr[i]) |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 1040 | netdev_err(dev, "Hw. address read/write mismap %d\n", i); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | ei_outb_p(ei_local->rx_start_page, e8390_base + EN1_CURPAG); |
| 1044 | ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD); |
| 1045 | |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1046 | ei_local->tx1 = ei_local->tx2 = 0; |
| 1047 | ei_local->txing = 0; |
| 1048 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 1049 | if (startp) { |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1050 | ei_outb_p(0xff, e8390_base + EN0_ISR); |
| 1051 | ei_outb_p(ENISR_ALL, e8390_base + EN0_IMR); |
| 1052 | ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base+E8390_CMD); |
| 1053 | ei_outb_p(E8390_TXCONFIG, e8390_base + EN0_TXCR); /* xmit on. */ |
| 1054 | /* 3c503 TechMan says rxconfig only after the NIC is started. */ |
| 1055 | ei_outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR); /* rx on, */ |
| 1056 | do_set_multicast_list(dev); /* (re)load the mcast table */ |
| 1057 | } |
| 1058 | } |
| 1059 | |
| 1060 | /* Trigger a transmit start, assuming the length is valid. |
| 1061 | Always called with the page lock held */ |
| 1062 | |
| 1063 | static void NS8390_trigger_send(struct net_device *dev, unsigned int length, |
| 1064 | int start_page) |
| 1065 | { |
| 1066 | unsigned long e8390_base = dev->base_addr; |
Joe Perches | be763c9 | 2011-06-22 20:38:57 +0000 | [diff] [blame] | 1067 | struct ei_device *ei_local __attribute((unused)) = netdev_priv(dev); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1068 | |
| 1069 | ei_outb_p(E8390_NODMA+E8390_PAGE0, e8390_base+E8390_CMD); |
| 1070 | |
Joe Perches | 7340c4d | 2011-06-22 20:38:56 +0000 | [diff] [blame] | 1071 | if (ei_inb_p(e8390_base + E8390_CMD) & E8390_TRANS) { |
Joe Perches | 840f639 | 2011-06-22 20:38:55 +0000 | [diff] [blame] | 1072 | netdev_warn(dev, "trigger_send() called with the transmitter busy\n"); |
Al Viro | 6c3561b | 2006-10-10 00:19:36 +0100 | [diff] [blame] | 1073 | return; |
| 1074 | } |
| 1075 | ei_outb_p(length & 0xff, e8390_base + EN0_TCNTLO); |
| 1076 | ei_outb_p(length >> 8, e8390_base + EN0_TCNTHI); |
| 1077 | ei_outb_p(start_page, e8390_base + EN0_TPSR); |
| 1078 | ei_outb_p(E8390_NODMA+E8390_TRANS+E8390_START, e8390_base+E8390_CMD); |
| 1079 | } |