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