blob: 9ace5a746f7155d853a323343efd7b8eb95b43e6 [file] [log] [blame]
Al Viro6c3561b2006-10-10 00:19:36 +01001/* 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 Marchi25985ed2011-03-30 22:57:33 -030038 Alan Cox : support arbitrary stupid port mappings on the
Al Viro6c3561b2006-10-10 00:19:36 +010039 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#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>
60#include <asm/system.h>
61#include <asm/uaccess.h>
62#include <asm/io.h>
63#include <asm/irq.h>
64#include <linux/delay.h>
65#include <linux/errno.h>
66#include <linux/fcntl.h>
67#include <linux/in.h>
68#include <linux/interrupt.h>
69#include <linux/init.h>
70#include <linux/crc32.h>
71
72#include <linux/netdevice.h>
73#include <linux/etherdevice.h>
74
75#define NS8390_CORE
76#include "8390.h"
77
78#define BUG_83C690
79
80/* These are the operational function interfaces to board-specific
81 routines.
82 void reset_8390(struct net_device *dev)
83 Resets the board associated with DEV, including a hardware reset of
84 the 8390. This is only called when there is a transmit timeout, and
85 it is always followed by 8390_init().
86 void block_output(struct net_device *dev, int count, const unsigned char *buf,
87 int start_page)
88 Write the COUNT bytes of BUF to the packet buffer at START_PAGE. The
89 "page" value uses the 8390's 256-byte pages.
90 void get_8390_hdr(struct net_device *dev, struct e8390_hdr *hdr, int ring_page)
91 Read the 4 byte, page aligned 8390 header. *If* there is a
92 subsequent read, it will be of the rest of the packet.
93 void block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
94 Read COUNT bytes from the packet buffer into the skb data area. Start
95 reading from RING_OFFSET, the address as the 8390 sees it. This will always
96 follow the read of the 8390 header.
97*/
98#define ei_reset_8390 (ei_local->reset_8390)
99#define ei_block_output (ei_local->block_output)
100#define ei_block_input (ei_local->block_input)
101#define ei_get_8390_hdr (ei_local->get_8390_hdr)
102
103/* use 0 for production, 1 for verification, >2 for debug */
104#ifndef ei_debug
105int ei_debug = 1;
106#endif
107
108/* Index to functions. */
109static void ei_tx_intr(struct net_device *dev);
110static void ei_tx_err(struct net_device *dev);
Stephen Hemminger4e4fd4e2008-11-21 17:39:02 -0800111void ei_tx_timeout(struct net_device *dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100112static void ei_receive(struct net_device *dev);
113static void ei_rx_overrun(struct net_device *dev);
114
115/* Routines generic to NS8390-based boards. */
116static void NS8390_trigger_send(struct net_device *dev, unsigned int length,
117 int start_page);
Al Viro6c3561b2006-10-10 00:19:36 +0100118static void do_set_multicast_list(struct net_device *dev);
119static void __NS8390_init(struct net_device *dev, int startp);
120
121/*
122 * SMP and the 8390 setup.
123 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300124 * The 8390 isn't exactly designed to be multithreaded on RX/TX. There is
Al Viro6c3561b2006-10-10 00:19:36 +0100125 * a page register that controls bank and packet buffer access. We guard
126 * this with ei_local->page_lock. Nobody should assume or set the page other
127 * than zero when the lock is not held. Lock holders must restore page 0
128 * before unlocking. Even pure readers must take the lock to protect in
129 * page 0.
130 *
131 * To make life difficult the chip can also be very slow. We therefore can't
132 * just use spinlocks. For the longer lockups we disable the irq the device
133 * sits on and hold the lock. We must hold the lock because there is a dual
134 * processor case other than interrupts (get stats/set multicast list in
135 * parallel with each other and transmit).
136 *
137 * Note: in theory we can just disable the irq on the card _but_ there is
138 * a latency on SMP irq delivery. So we can easily go "disable irq" "sync irqs"
139 * enter lock, take the queued irq. So we waddle instead of flying.
140 *
141 * Finally by special arrangement for the purpose of being generally
142 * annoying the transmit function is called bh atomic. That places
143 * restrictions on the user context callers as disable_irq won't save
144 * them.
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200145 *
146 * Additional explanation of problems with locking by Alan Cox:
147 *
148 * "The author (me) didn't use spin_lock_irqsave because the slowness of the
149 * card means that approach caused horrible problems like losing serial data
Robert P. J. Day14e4a0f2008-02-03 15:12:15 +0200150 * at 38400 baud on some chips. Remember many 8390 nics on PCI were ISA
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200151 * chips with FPGA front ends.
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400152 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200153 * Ok the logic behind the 8390 is very simple:
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400154 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200155 * Things to know
156 * - IRQ delivery is asynchronous to the PCI bus
157 * - Blocking the local CPU IRQ via spin locks was too slow
158 * - The chip has register windows needing locking work
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400159 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200160 * So the path was once (I say once as people appear to have changed it
161 * in the mean time and it now looks rather bogus if the changes to use
162 * disable_irq_nosync_irqsave are disabling the local IRQ)
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400163 *
164 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200165 * Take the page lock
166 * Mask the IRQ on chip
167 * Disable the IRQ (but not mask locally- someone seems to have
168 * broken this with the lock validator stuff)
169 * [This must be _nosync as the page lock may otherwise
170 * deadlock us]
171 * Drop the page lock and turn IRQs back on
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400172 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200173 * At this point an existing IRQ may still be running but we can't
174 * get a new one
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400175 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200176 * Take the lock (so we know the IRQ has terminated) but don't mask
177 * the IRQs on the processor
178 * Set irqlock [for debug]
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400179 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200180 * Transmit (slow as ****)
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400181 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200182 * re-enable the IRQ
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400183 *
184 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200185 * We have to use disable_irq because otherwise you will get delayed
186 * interrupts on the APIC bus deadlocking the transmit path.
Jeff Garzik3f8cb092008-05-13 01:41:28 -0400187 *
Jarek Poplawski55b7b622007-07-26 14:44:01 +0200188 * Quite hairy but the chip simply wasn't designed for SMP and you can't
189 * even ACK an interrupt without risking corrupting other parallel
190 * activities on the chip." [lkml, 25 Jul 2007]
Al Viro6c3561b2006-10-10 00:19:36 +0100191 */
192
193
194
195/**
196 * ei_open - Open/initialize the board.
197 * @dev: network device to initialize
198 *
199 * This routine goes all-out, setting everything
200 * up anew at each open, even though many of these registers should only
201 * need to be set once at boot.
202 */
203static int __ei_open(struct net_device *dev)
204{
205 unsigned long flags;
Joe Perchesece49152010-11-15 11:12:31 +0000206 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100207
Al Viro6c3561b2006-10-10 00:19:36 +0100208 if (dev->watchdog_timeo <= 0)
209 dev->watchdog_timeo = TX_TIMEOUT;
210
211 /*
212 * Grab the page lock so we own the register set, then call
213 * the init function.
214 */
215
216 spin_lock_irqsave(&ei_local->page_lock, flags);
217 __NS8390_init(dev, 1);
218 /* Set the flag before we drop the lock, That way the IRQ arrives
219 after its set and we get no silly warnings */
220 netif_start_queue(dev);
221 spin_unlock_irqrestore(&ei_local->page_lock, flags);
222 ei_local->irqlock = 0;
223 return 0;
224}
225
226/**
227 * ei_close - shut down network device
228 * @dev: network device to close
229 *
230 * Opposite of ei_open(). Only used when "ifconfig <devname> down" is done.
231 */
232static int __ei_close(struct net_device *dev)
233{
Joe Perchesece49152010-11-15 11:12:31 +0000234 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100235 unsigned long flags;
236
237 /*
238 * Hold the page lock during close
239 */
240
241 spin_lock_irqsave(&ei_local->page_lock, flags);
242 __NS8390_init(dev, 0);
243 spin_unlock_irqrestore(&ei_local->page_lock, flags);
244 netif_stop_queue(dev);
245 return 0;
246}
247
248/**
249 * ei_tx_timeout - handle transmit time out condition
250 * @dev: network device which has apparently fallen asleep
251 *
252 * Called by kernel when device never acknowledges a transmit has
253 * completed (or failed) - i.e. never posted a Tx related interrupt.
254 */
255
Stephen Hemminger8884c092008-11-25 18:12:49 -0800256static void __ei_tx_timeout(struct net_device *dev)
Al Viro6c3561b2006-10-10 00:19:36 +0100257{
258 unsigned long e8390_base = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +0000259 struct ei_device *ei_local = netdev_priv(dev);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700260 int txsr, isr, tickssofar = jiffies - dev_trans_start(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100261 unsigned long flags;
262
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300263 dev->stats.tx_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100264
265 spin_lock_irqsave(&ei_local->page_lock, flags);
266 txsr = ei_inb(e8390_base+EN0_TSR);
267 isr = ei_inb(e8390_base+EN0_ISR);
268 spin_unlock_irqrestore(&ei_local->page_lock, flags);
269
Joe Perches840f6392011-06-22 20:38:55 +0000270 netdev_dbg(dev, "Tx timed out, %s TSR=%#2x, ISR=%#2x, t=%d\n",
271 (txsr & ENTSR_ABT) ? "excess collisions." :
272 (isr) ? "lost interrupt?" : "cable problem?",
273 txsr, isr, tickssofar);
Al Viro6c3561b2006-10-10 00:19:36 +0100274
Joe Perches7340c4d2011-06-22 20:38:56 +0000275 if (!isr && !dev->stats.tx_packets) {
Al Viro6c3561b2006-10-10 00:19:36 +0100276 /* The 8390 probably hasn't gotten on the cable yet. */
277 ei_local->interface_num ^= 1; /* Try a different xcvr. */
278 }
279
280 /* Ugly but a reset can be slow, yet must be protected */
281
282 disable_irq_nosync_lockdep(dev->irq);
283 spin_lock(&ei_local->page_lock);
284
285 /* Try to restart the card. Perhaps the user has fixed something. */
286 ei_reset_8390(dev);
287 __NS8390_init(dev, 1);
288
289 spin_unlock(&ei_local->page_lock);
290 enable_irq_lockdep(dev->irq);
291 netif_wake_queue(dev);
292}
293
294/**
295 * ei_start_xmit - begin packet transmission
296 * @skb: packet to be sent
297 * @dev: network device to which packet is sent
298 *
299 * Sends a packet to an 8390 network device.
300 */
301
Stephen Hemminger613573252009-08-31 19:50:58 +0000302static netdev_tx_t __ei_start_xmit(struct sk_buff *skb,
303 struct net_device *dev)
Al Viro6c3561b2006-10-10 00:19:36 +0100304{
305 unsigned long e8390_base = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +0000306 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100307 int send_length = skb->len, output_page;
308 unsigned long flags;
309 char buf[ETH_ZLEN];
310 char *data = skb->data;
311
312 if (skb->len < ETH_ZLEN) {
313 memset(buf, 0, ETH_ZLEN); /* more efficient than doing just the needed bits */
314 memcpy(buf, data, skb->len);
315 send_length = ETH_ZLEN;
316 data = buf;
317 }
318
319 /* Mask interrupts from the ethercard.
320 SMP: We have to grab the lock here otherwise the IRQ handler
321 on another CPU can flip window and race the IRQ mask set. We end
322 up trashing the mcast filter not disabling irqs if we don't lock */
323
324 spin_lock_irqsave(&ei_local->page_lock, flags);
325 ei_outb_p(0x00, e8390_base + EN0_IMR);
326 spin_unlock_irqrestore(&ei_local->page_lock, flags);
327
328
329 /*
330 * Slow phase with lock held.
331 */
332
333 disable_irq_nosync_lockdep_irqsave(dev->irq, &flags);
334
335 spin_lock(&ei_local->page_lock);
336
337 ei_local->irqlock = 1;
338
339 /*
340 * We have two Tx slots available for use. Find the first free
341 * slot, and then perform some sanity checks. With two Tx bufs,
342 * you get very close to transmitting back-to-back packets. With
343 * only one Tx buf, the transmitter sits idle while you reload the
344 * card, leaving a substantial gap between each transmitted packet.
345 */
346
Joe Perches7340c4d2011-06-22 20:38:56 +0000347 if (ei_local->tx1 == 0) {
Al Viro6c3561b2006-10-10 00:19:36 +0100348 output_page = ei_local->tx_start_page;
349 ei_local->tx1 = send_length;
350 if (ei_debug && ei_local->tx2 > 0)
Joe Perches840f6392011-06-22 20:38:55 +0000351 netdev_dbg(dev, "idle transmitter tx2=%d, lasttx=%d, txing=%d\n",
352 ei_local->tx2, ei_local->lasttx, ei_local->txing);
Joe Perches7340c4d2011-06-22 20:38:56 +0000353 } else if (ei_local->tx2 == 0) {
Al Viro6c3561b2006-10-10 00:19:36 +0100354 output_page = ei_local->tx_start_page + TX_PAGES/2;
355 ei_local->tx2 = send_length;
356 if (ei_debug && ei_local->tx1 > 0)
Joe Perches840f6392011-06-22 20:38:55 +0000357 netdev_dbg(dev, "idle transmitter, tx1=%d, lasttx=%d, txing=%d\n",
358 ei_local->tx1, ei_local->lasttx, ei_local->txing);
Joe Perches7340c4d2011-06-22 20:38:56 +0000359 } else { /* We should never get here. */
Al Viro6c3561b2006-10-10 00:19:36 +0100360 if (ei_debug)
Joe Perches840f6392011-06-22 20:38:55 +0000361 netdev_dbg(dev, "No Tx buffers free! tx1=%d tx2=%d last=%d\n",
362 ei_local->tx1, ei_local->tx2, ei_local->lasttx);
Al Viro6c3561b2006-10-10 00:19:36 +0100363 ei_local->irqlock = 0;
364 netif_stop_queue(dev);
365 ei_outb_p(ENISR_ALL, e8390_base + EN0_IMR);
366 spin_unlock(&ei_local->page_lock);
367 enable_irq_lockdep_irqrestore(dev->irq, &flags);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300368 dev->stats.tx_errors++;
Patrick McHardy5b548142009-06-12 06:22:29 +0000369 return NETDEV_TX_BUSY;
Al Viro6c3561b2006-10-10 00:19:36 +0100370 }
371
372 /*
373 * Okay, now upload the packet and trigger a send if the transmitter
374 * isn't already sending. If it is busy, the interrupt handler will
375 * trigger the send later, upon receiving a Tx done interrupt.
376 */
377
378 ei_block_output(dev, send_length, data, output_page);
379
Joe Perches7340c4d2011-06-22 20:38:56 +0000380 if (! ei_local->txing) {
Al Viro6c3561b2006-10-10 00:19:36 +0100381 ei_local->txing = 1;
382 NS8390_trigger_send(dev, send_length, output_page);
Joe Perches7340c4d2011-06-22 20:38:56 +0000383 if (output_page == ei_local->tx_start_page) {
Al Viro6c3561b2006-10-10 00:19:36 +0100384 ei_local->tx1 = -1;
385 ei_local->lasttx = -1;
Joe Perches7340c4d2011-06-22 20:38:56 +0000386 } else {
Al Viro6c3561b2006-10-10 00:19:36 +0100387 ei_local->tx2 = -1;
388 ei_local->lasttx = -2;
389 }
Joe Perches7340c4d2011-06-22 20:38:56 +0000390 } else
391 ei_local->txqueue++;
Al Viro6c3561b2006-10-10 00:19:36 +0100392
393 if (ei_local->tx1 && ei_local->tx2)
394 netif_stop_queue(dev);
395 else
396 netif_start_queue(dev);
397
398 /* Turn 8390 interrupts back on. */
399 ei_local->irqlock = 0;
400 ei_outb_p(ENISR_ALL, e8390_base + EN0_IMR);
401
402 spin_unlock(&ei_local->page_lock);
403 enable_irq_lockdep_irqrestore(dev->irq, &flags);
Richard Cochrand76b7e22011-06-19 21:51:24 +0000404 skb_tx_timestamp(skb);
Al Viro6c3561b2006-10-10 00:19:36 +0100405 dev_kfree_skb (skb);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300406 dev->stats.tx_bytes += send_length;
Al Viro6c3561b2006-10-10 00:19:36 +0100407
Patrick McHardyec634fe2009-07-05 19:23:38 -0700408 return NETDEV_TX_OK;
Al Viro6c3561b2006-10-10 00:19:36 +0100409}
410
411/**
412 * ei_interrupt - handle the interrupts from an 8390
413 * @irq: interrupt number
414 * @dev_id: a pointer to the net_device
415 *
416 * Handle the ether interface interrupts. We pull packets from
417 * the 8390 via the card specific functions and fire them at the networking
418 * stack. We also handle transmit completions and wake the transmit path if
419 * necessary. We also update the counters and do other housekeeping as
420 * needed.
421 */
422
423static irqreturn_t __ei_interrupt(int irq, void *dev_id)
424{
425 struct net_device *dev = dev_id;
426 unsigned long e8390_base = dev->base_addr;
427 int interrupts, nr_serviced = 0;
428 struct ei_device *ei_local = netdev_priv(dev);
429
430 /*
431 * Protect the irq test too.
432 */
433
434 spin_lock(&ei_local->page_lock);
435
Joe Perches7340c4d2011-06-22 20:38:56 +0000436 if (ei_local->irqlock) {
Nikanth Karthikesan6846ad22010-04-15 02:21:23 +0000437 /*
438 * This might just be an interrupt for a PCI device sharing
439 * this line
440 */
Joe Perches840f6392011-06-22 20:38:55 +0000441 netdev_err(dev, "Interrupted while interrupts are masked! isr=%#2x imr=%#2x\n",
442 ei_inb_p(e8390_base + EN0_ISR),
Al Viro6c3561b2006-10-10 00:19:36 +0100443 ei_inb_p(e8390_base + EN0_IMR));
Al Viro6c3561b2006-10-10 00:19:36 +0100444 spin_unlock(&ei_local->page_lock);
445 return IRQ_NONE;
446 }
447
448 /* Change to page 0 and read the intr status reg. */
449 ei_outb_p(E8390_NODMA+E8390_PAGE0, e8390_base + E8390_CMD);
450 if (ei_debug > 3)
Joe Perches840f6392011-06-22 20:38:55 +0000451 netdev_dbg(dev, "interrupt(isr=%#2.2x)\n",
Al Viro6c3561b2006-10-10 00:19:36 +0100452 ei_inb_p(e8390_base + EN0_ISR));
453
454 /* !!Assumption!! -- we stay in page 0. Don't break this. */
Joe Perches8e95a202009-12-03 07:58:21 +0000455 while ((interrupts = ei_inb_p(e8390_base + EN0_ISR)) != 0 &&
Joe Perches7340c4d2011-06-22 20:38:56 +0000456 ++nr_serviced < MAX_SERVICE) {
Al Viro6c3561b2006-10-10 00:19:36 +0100457 if (!netif_running(dev)) {
Joe Perches840f6392011-06-22 20:38:55 +0000458 netdev_warn(dev, "interrupt from stopped card\n");
Al Viro6c3561b2006-10-10 00:19:36 +0100459 /* rmk - acknowledge the interrupts */
460 ei_outb_p(interrupts, e8390_base + EN0_ISR);
461 interrupts = 0;
462 break;
463 }
464 if (interrupts & ENISR_OVER)
465 ei_rx_overrun(dev);
Joe Perches7340c4d2011-06-22 20:38:56 +0000466 else if (interrupts & (ENISR_RX+ENISR_RX_ERR)) {
Al Viro6c3561b2006-10-10 00:19:36 +0100467 /* Got a good (?) packet. */
468 ei_receive(dev);
469 }
470 /* Push the next to-transmit packet through. */
471 if (interrupts & ENISR_TX)
472 ei_tx_intr(dev);
473 else if (interrupts & ENISR_TX_ERR)
474 ei_tx_err(dev);
475
Joe Perches7340c4d2011-06-22 20:38:56 +0000476 if (interrupts & ENISR_COUNTERS) {
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300477 dev->stats.rx_frame_errors += ei_inb_p(e8390_base + EN0_COUNTER0);
478 dev->stats.rx_crc_errors += ei_inb_p(e8390_base + EN0_COUNTER1);
479 dev->stats.rx_missed_errors+= ei_inb_p(e8390_base + EN0_COUNTER2);
Al Viro6c3561b2006-10-10 00:19:36 +0100480 ei_outb_p(ENISR_COUNTERS, e8390_base + EN0_ISR); /* Ack intr. */
481 }
482
483 /* Ignore any RDC interrupts that make it back to here. */
484 if (interrupts & ENISR_RDC)
Al Viro6c3561b2006-10-10 00:19:36 +0100485 ei_outb_p(ENISR_RDC, e8390_base + EN0_ISR);
Al Viro6c3561b2006-10-10 00:19:36 +0100486
487 ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base + E8390_CMD);
488 }
489
Joe Perches7340c4d2011-06-22 20:38:56 +0000490 if (interrupts && ei_debug) {
Al Viro6c3561b2006-10-10 00:19:36 +0100491 ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base + E8390_CMD);
Joe Perches7340c4d2011-06-22 20:38:56 +0000492 if (nr_serviced >= MAX_SERVICE) {
Al Viro6c3561b2006-10-10 00:19:36 +0100493 /* 0xFF is valid for a card removal */
494 if(interrupts!=0xFF)
Joe Perches840f6392011-06-22 20:38:55 +0000495 netdev_warn(dev, "Too much work at interrupt, status %#2.2x\n",
496 interrupts);
Al Viro6c3561b2006-10-10 00:19:36 +0100497 ei_outb_p(ENISR_ALL, e8390_base + EN0_ISR); /* Ack. most intrs. */
498 } else {
Joe Perches840f6392011-06-22 20:38:55 +0000499 netdev_warn(dev, "unknown interrupt %#2x\n", interrupts);
Al Viro6c3561b2006-10-10 00:19:36 +0100500 ei_outb_p(0xff, e8390_base + EN0_ISR); /* Ack. all intrs. */
501 }
502 }
503 spin_unlock(&ei_local->page_lock);
504 return IRQ_RETVAL(nr_serviced > 0);
505}
506
507#ifdef CONFIG_NET_POLL_CONTROLLER
508static void __ei_poll(struct net_device *dev)
509{
Jarek Poplawskif47aeff2008-09-30 20:58:25 +0000510 disable_irq(dev->irq);
Al Viro6c3561b2006-10-10 00:19:36 +0100511 __ei_interrupt(dev->irq, dev);
Jarek Poplawskif47aeff2008-09-30 20:58:25 +0000512 enable_irq(dev->irq);
Al Viro6c3561b2006-10-10 00:19:36 +0100513}
514#endif
515
516/**
517 * ei_tx_err - handle transmitter error
518 * @dev: network device which threw the exception
519 *
520 * A transmitter error has happened. Most likely excess collisions (which
521 * is a fairly normal condition). If the error is one where the Tx will
522 * have been aborted, we try and send another one right away, instead of
523 * letting the failed packet sit and collect dust in the Tx buffer. This
524 * is a much better solution as it avoids kernel based Tx timeouts, and
525 * an unnecessary card reset.
526 *
527 * Called with lock held.
528 */
529
530static void ei_tx_err(struct net_device *dev)
531{
532 unsigned long e8390_base = dev->base_addr;
Stephen Rothwell0c1aa202008-05-29 22:39:28 +1000533 /* ei_local is used on some platforms via the EI_SHIFT macro */
534 struct ei_device *ei_local __maybe_unused = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100535 unsigned char txsr = ei_inb_p(e8390_base+EN0_TSR);
536 unsigned char tx_was_aborted = txsr & (ENTSR_ABT+ENTSR_FU);
537
538#ifdef VERBOSE_ERROR_DUMP
Joe Perches840f6392011-06-22 20:38:55 +0000539 netdev_dbg(dev, "transmitter error (%#2x):", txsr);
Al Viro6c3561b2006-10-10 00:19:36 +0100540 if (txsr & ENTSR_ABT)
Joe Perches840f6392011-06-22 20:38:55 +0000541 pr_cont(" excess-collisions ");
Al Viro6c3561b2006-10-10 00:19:36 +0100542 if (txsr & ENTSR_ND)
Joe Perches840f6392011-06-22 20:38:55 +0000543 pr_cont(" non-deferral ");
Al Viro6c3561b2006-10-10 00:19:36 +0100544 if (txsr & ENTSR_CRS)
Joe Perches840f6392011-06-22 20:38:55 +0000545 pr_cont(" lost-carrier ");
Al Viro6c3561b2006-10-10 00:19:36 +0100546 if (txsr & ENTSR_FU)
Joe Perches840f6392011-06-22 20:38:55 +0000547 pr_cont(" FIFO-underrun ");
Al Viro6c3561b2006-10-10 00:19:36 +0100548 if (txsr & ENTSR_CDH)
Joe Perches840f6392011-06-22 20:38:55 +0000549 pr_cont(" lost-heartbeat ");
550 pr_cont("\n");
Al Viro6c3561b2006-10-10 00:19:36 +0100551#endif
552
553 ei_outb_p(ENISR_TX_ERR, e8390_base + EN0_ISR); /* Ack intr. */
554
555 if (tx_was_aborted)
556 ei_tx_intr(dev);
Joe Perches7340c4d2011-06-22 20:38:56 +0000557 else {
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300558 dev->stats.tx_errors++;
559 if (txsr & ENTSR_CRS) dev->stats.tx_carrier_errors++;
560 if (txsr & ENTSR_CDH) dev->stats.tx_heartbeat_errors++;
561 if (txsr & ENTSR_OWC) dev->stats.tx_window_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100562 }
563}
564
565/**
566 * ei_tx_intr - transmit interrupt handler
567 * @dev: network device for which tx intr is handled
568 *
569 * We have finished a transmit: check for errors and then trigger the next
570 * packet to be sent. Called with lock held.
571 */
572
573static void ei_tx_intr(struct net_device *dev)
574{
575 unsigned long e8390_base = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +0000576 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100577 int status = ei_inb(e8390_base + EN0_TSR);
578
579 ei_outb_p(ENISR_TX, e8390_base + EN0_ISR); /* Ack intr. */
580
581 /*
582 * There are two Tx buffers, see which one finished, and trigger
583 * the send of another one if it exists.
584 */
585 ei_local->txqueue--;
586
Joe Perches7340c4d2011-06-22 20:38:56 +0000587 if (ei_local->tx1 < 0) {
Al Viro6c3561b2006-10-10 00:19:36 +0100588 if (ei_local->lasttx != 1 && ei_local->lasttx != -1)
Joe Perches840f6392011-06-22 20:38:55 +0000589 pr_err("%s: bogus last_tx_buffer %d, tx1=%d\n",
590 ei_local->name, ei_local->lasttx, ei_local->tx1);
Al Viro6c3561b2006-10-10 00:19:36 +0100591 ei_local->tx1 = 0;
Joe Perches7340c4d2011-06-22 20:38:56 +0000592 if (ei_local->tx2 > 0) {
Al Viro6c3561b2006-10-10 00:19:36 +0100593 ei_local->txing = 1;
594 NS8390_trigger_send(dev, ei_local->tx2, ei_local->tx_start_page + 6);
595 dev->trans_start = jiffies;
596 ei_local->tx2 = -1,
597 ei_local->lasttx = 2;
Joe Perches7340c4d2011-06-22 20:38:56 +0000598 } else
599 ei_local->lasttx = 20, ei_local->txing = 0;
600 } else if (ei_local->tx2 < 0) {
Al Viro6c3561b2006-10-10 00:19:36 +0100601 if (ei_local->lasttx != 2 && ei_local->lasttx != -2)
Joe Perches840f6392011-06-22 20:38:55 +0000602 pr_err("%s: bogus last_tx_buffer %d, tx2=%d\n",
603 ei_local->name, ei_local->lasttx, ei_local->tx2);
Al Viro6c3561b2006-10-10 00:19:36 +0100604 ei_local->tx2 = 0;
Joe Perches7340c4d2011-06-22 20:38:56 +0000605 if (ei_local->tx1 > 0) {
Al Viro6c3561b2006-10-10 00:19:36 +0100606 ei_local->txing = 1;
607 NS8390_trigger_send(dev, ei_local->tx1, ei_local->tx_start_page);
608 dev->trans_start = jiffies;
609 ei_local->tx1 = -1;
610 ei_local->lasttx = 1;
Joe Perches7340c4d2011-06-22 20:38:56 +0000611 } else
Al Viro6c3561b2006-10-10 00:19:36 +0100612 ei_local->lasttx = 10, ei_local->txing = 0;
613 }
614// else printk(KERN_WARNING "%s: unexpected TX-done interrupt, lasttx=%d.\n",
615// dev->name, ei_local->lasttx);
616
617 /* Minimize Tx latency: update the statistics after we restart TXing. */
618 if (status & ENTSR_COL)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300619 dev->stats.collisions++;
Al Viro6c3561b2006-10-10 00:19:36 +0100620 if (status & ENTSR_PTX)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300621 dev->stats.tx_packets++;
Joe Perches7340c4d2011-06-22 20:38:56 +0000622 else {
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300623 dev->stats.tx_errors++;
Joe Perches7340c4d2011-06-22 20:38:56 +0000624 if (status & ENTSR_ABT) {
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300625 dev->stats.tx_aborted_errors++;
626 dev->stats.collisions += 16;
Al Viro6c3561b2006-10-10 00:19:36 +0100627 }
628 if (status & ENTSR_CRS)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300629 dev->stats.tx_carrier_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100630 if (status & ENTSR_FU)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300631 dev->stats.tx_fifo_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100632 if (status & ENTSR_CDH)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300633 dev->stats.tx_heartbeat_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100634 if (status & ENTSR_OWC)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300635 dev->stats.tx_window_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100636 }
637 netif_wake_queue(dev);
638}
639
640/**
641 * ei_receive - receive some packets
642 * @dev: network device with which receive will be run
643 *
644 * We have a good packet(s), get it/them out of the buffers.
645 * Called with lock held.
646 */
647
648static void ei_receive(struct net_device *dev)
649{
650 unsigned long e8390_base = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +0000651 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100652 unsigned char rxing_page, this_frame, next_frame;
653 unsigned short current_offset;
654 int rx_pkt_count = 0;
655 struct e8390_pkt_hdr rx_frame;
656 int num_rx_pages = ei_local->stop_page-ei_local->rx_start_page;
657
Joe Perches7340c4d2011-06-22 20:38:56 +0000658 while (++rx_pkt_count < 10) {
Al Viro6c3561b2006-10-10 00:19:36 +0100659 int pkt_len, pkt_stat;
660
661 /* Get the rx page (incoming packet pointer). */
662 ei_outb_p(E8390_NODMA+E8390_PAGE1, e8390_base + E8390_CMD);
663 rxing_page = ei_inb_p(e8390_base + EN1_CURPAG);
664 ei_outb_p(E8390_NODMA+E8390_PAGE0, e8390_base + E8390_CMD);
665
666 /* Remove one frame from the ring. Boundary is always a page behind. */
667 this_frame = ei_inb_p(e8390_base + EN0_BOUNDARY) + 1;
668 if (this_frame >= ei_local->stop_page)
669 this_frame = ei_local->rx_start_page;
670
671 /* Someday we'll omit the previous, iff we never get this message.
672 (There is at least one clone claimed to have a problem.)
673
674 Keep quiet if it looks like a card removal. One problem here
675 is that some clones crash in roughly the same way.
676 */
677 if (ei_debug > 0 && this_frame != ei_local->current_page && (this_frame!=0x0 || rxing_page!=0xFF))
Joe Perches840f6392011-06-22 20:38:55 +0000678 netdev_err(dev, "mismatched read page pointers %2x vs %2x\n",
679 this_frame, ei_local->current_page);
Al Viro6c3561b2006-10-10 00:19:36 +0100680
681 if (this_frame == rxing_page) /* Read all the frames? */
682 break; /* Done for now */
683
684 current_offset = this_frame << 8;
685 ei_get_8390_hdr(dev, &rx_frame, this_frame);
686
687 pkt_len = rx_frame.count - sizeof(struct e8390_pkt_hdr);
688 pkt_stat = rx_frame.status;
689
690 next_frame = this_frame + 1 + ((pkt_len+4)>>8);
691
692 /* Check for bogosity warned by 3c503 book: the status byte is never
693 written. This happened a lot during testing! This code should be
694 cleaned up someday. */
Joe Perches8e95a202009-12-03 07:58:21 +0000695 if (rx_frame.next != next_frame &&
696 rx_frame.next != next_frame + 1 &&
697 rx_frame.next != next_frame - num_rx_pages &&
698 rx_frame.next != next_frame + 1 - num_rx_pages) {
Al Viro6c3561b2006-10-10 00:19:36 +0100699 ei_local->current_page = rxing_page;
700 ei_outb(ei_local->current_page-1, e8390_base+EN0_BOUNDARY);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300701 dev->stats.rx_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100702 continue;
703 }
704
Joe Perches7340c4d2011-06-22 20:38:56 +0000705 if (pkt_len < 60 || pkt_len > 1518) {
Al Viro6c3561b2006-10-10 00:19:36 +0100706 if (ei_debug)
Joe Perches840f6392011-06-22 20:38:55 +0000707 netdev_dbg(dev, "bogus packet size: %d, status=%#2x nxpg=%#2x\n",
708 rx_frame.count, rx_frame.status,
Al Viro6c3561b2006-10-10 00:19:36 +0100709 rx_frame.next);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300710 dev->stats.rx_errors++;
711 dev->stats.rx_length_errors++;
Joe Perches7340c4d2011-06-22 20:38:56 +0000712 } else if ((pkt_stat & 0x0F) == ENRSR_RXOK) {
Al Viro6c3561b2006-10-10 00:19:36 +0100713 struct sk_buff *skb;
714
715 skb = dev_alloc_skb(pkt_len+2);
Joe Perches7340c4d2011-06-22 20:38:56 +0000716 if (skb == NULL) {
Al Viro6c3561b2006-10-10 00:19:36 +0100717 if (ei_debug > 1)
Joe Perches840f6392011-06-22 20:38:55 +0000718 netdev_dbg(dev, "Couldn't allocate a sk_buff of size %d\n",
719 pkt_len);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300720 dev->stats.rx_dropped++;
Al Viro6c3561b2006-10-10 00:19:36 +0100721 break;
Joe Perches7340c4d2011-06-22 20:38:56 +0000722 } else {
Al Viro6c3561b2006-10-10 00:19:36 +0100723 skb_reserve(skb,2); /* IP headers on 16 byte boundaries */
Al Viro6c3561b2006-10-10 00:19:36 +0100724 skb_put(skb, pkt_len); /* Make room */
725 ei_block_input(dev, pkt_len, skb, current_offset + sizeof(rx_frame));
726 skb->protocol=eth_type_trans(skb,dev);
Richard Cochrand76b7e22011-06-19 21:51:24 +0000727 if (!skb_defer_rx_timestamp(skb))
728 netif_rx(skb);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300729 dev->stats.rx_packets++;
730 dev->stats.rx_bytes += pkt_len;
Al Viro6c3561b2006-10-10 00:19:36 +0100731 if (pkt_stat & ENRSR_PHY)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300732 dev->stats.multicast++;
Al Viro6c3561b2006-10-10 00:19:36 +0100733 }
Joe Perches7340c4d2011-06-22 20:38:56 +0000734 } else {
Al Viro6c3561b2006-10-10 00:19:36 +0100735 if (ei_debug)
Joe Perches840f6392011-06-22 20:38:55 +0000736 netdev_dbg(dev, "bogus packet: status=%#2x nxpg=%#2x size=%d\n",
737 rx_frame.status, rx_frame.next,
Al Viro6c3561b2006-10-10 00:19:36 +0100738 rx_frame.count);
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300739 dev->stats.rx_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100740 /* NB: The NIC counts CRC, frame and missed errors. */
741 if (pkt_stat & ENRSR_FO)
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300742 dev->stats.rx_fifo_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100743 }
744 next_frame = rx_frame.next;
745
746 /* This _should_ never happen: it's here for avoiding bad clones. */
747 if (next_frame >= ei_local->stop_page) {
Joe Perches840f6392011-06-22 20:38:55 +0000748 netdev_notice(dev, "next frame inconsistency, %#2x\n",
749 next_frame);
Al Viro6c3561b2006-10-10 00:19:36 +0100750 next_frame = ei_local->rx_start_page;
751 }
752 ei_local->current_page = next_frame;
753 ei_outb_p(next_frame-1, e8390_base+EN0_BOUNDARY);
754 }
755
756 /* We used to also ack ENISR_OVER here, but that would sometimes mask
757 a real overrun, leaving the 8390 in a stopped state with rec'vr off. */
758 ei_outb_p(ENISR_RX+ENISR_RX_ERR, e8390_base+EN0_ISR);
Al Viro6c3561b2006-10-10 00:19:36 +0100759}
760
761/**
762 * ei_rx_overrun - handle receiver overrun
763 * @dev: network device which threw exception
764 *
765 * We have a receiver overrun: we have to kick the 8390 to get it started
766 * again. Problem is that you have to kick it exactly as NS prescribes in
767 * the updated datasheets, or "the NIC may act in an unpredictable manner."
768 * This includes causing "the NIC to defer indefinitely when it is stopped
769 * on a busy network." Ugh.
770 * Called with lock held. Don't call this with the interrupts off or your
771 * computer will hate you - it takes 10ms or so.
772 */
773
774static void ei_rx_overrun(struct net_device *dev)
775{
776 unsigned long e8390_base = dev->base_addr;
777 unsigned char was_txing, must_resend = 0;
Stephen Rothwell0c1aa202008-05-29 22:39:28 +1000778 /* ei_local is used on some platforms via the EI_SHIFT macro */
779 struct ei_device *ei_local __maybe_unused = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100780
781 /*
782 * Record whether a Tx was in progress and then issue the
783 * stop command.
784 */
785 was_txing = ei_inb_p(e8390_base+E8390_CMD) & E8390_TRANS;
786 ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD);
787
788 if (ei_debug > 1)
Joe Perches840f6392011-06-22 20:38:55 +0000789 netdev_dbg(dev, "Receiver overrun\n");
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300790 dev->stats.rx_over_errors++;
Al Viro6c3561b2006-10-10 00:19:36 +0100791
792 /*
793 * Wait a full Tx time (1.2ms) + some guard time, NS says 1.6ms total.
794 * Early datasheets said to poll the reset bit, but now they say that
795 * it "is not a reliable indicator and subsequently should be ignored."
796 * We wait at least 10ms.
797 */
798
799 mdelay(10);
800
801 /*
802 * Reset RBCR[01] back to zero as per magic incantation.
803 */
804 ei_outb_p(0x00, e8390_base+EN0_RCNTLO);
805 ei_outb_p(0x00, e8390_base+EN0_RCNTHI);
806
807 /*
808 * See if any Tx was interrupted or not. According to NS, this
809 * step is vital, and skipping it will cause no end of havoc.
810 */
811
Joe Perches7340c4d2011-06-22 20:38:56 +0000812 if (was_txing) {
Al Viro6c3561b2006-10-10 00:19:36 +0100813 unsigned char tx_completed = ei_inb_p(e8390_base+EN0_ISR) & (ENISR_TX+ENISR_TX_ERR);
814 if (!tx_completed)
815 must_resend = 1;
816 }
817
818 /*
819 * Have to enter loopback mode and then restart the NIC before
820 * you are allowed to slurp packets up off the ring.
821 */
822 ei_outb_p(E8390_TXOFF, e8390_base + EN0_TXCR);
823 ei_outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START, e8390_base + E8390_CMD);
824
825 /*
826 * Clear the Rx ring of all the debris, and ack the interrupt.
827 */
828 ei_receive(dev);
829 ei_outb_p(ENISR_OVER, e8390_base+EN0_ISR);
830
831 /*
832 * Leave loopback mode, and resend any packet that got stopped.
833 */
834 ei_outb_p(E8390_TXCONFIG, e8390_base + EN0_TXCR);
835 if (must_resend)
836 ei_outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START + E8390_TRANS, e8390_base + E8390_CMD);
837}
838
839/*
840 * Collect the stats. This is called unlocked and from several contexts.
841 */
842
Stephen Hemminger8884c092008-11-25 18:12:49 -0800843static struct net_device_stats *__ei_get_stats(struct net_device *dev)
Al Viro6c3561b2006-10-10 00:19:36 +0100844{
845 unsigned long ioaddr = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +0000846 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100847 unsigned long flags;
848
849 /* If the card is stopped, just return the present stats. */
850 if (!netif_running(dev))
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300851 return &dev->stats;
Al Viro6c3561b2006-10-10 00:19:36 +0100852
853 spin_lock_irqsave(&ei_local->page_lock,flags);
854 /* Read the counter registers, assuming we are in page 0. */
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300855 dev->stats.rx_frame_errors += ei_inb_p(ioaddr + EN0_COUNTER0);
856 dev->stats.rx_crc_errors += ei_inb_p(ioaddr + EN0_COUNTER1);
857 dev->stats.rx_missed_errors+= ei_inb_p(ioaddr + EN0_COUNTER2);
Al Viro6c3561b2006-10-10 00:19:36 +0100858 spin_unlock_irqrestore(&ei_local->page_lock, flags);
859
Paulius Zaleckas244d74f2008-05-07 02:20:40 +0300860 return &dev->stats;
Al Viro6c3561b2006-10-10 00:19:36 +0100861}
862
863/*
864 * Form the 64 bit 8390 multicast table from the linked list of addresses
865 * associated with this dev structure.
866 */
867
868static inline void make_mc_bits(u8 *bits, struct net_device *dev)
869{
Jiri Pirko22bedad2010-04-01 21:22:57 +0000870 struct netdev_hw_addr *ha;
Al Viro6c3561b2006-10-10 00:19:36 +0100871
Jiri Pirko22bedad2010-04-01 21:22:57 +0000872 netdev_for_each_mc_addr(ha, dev) {
873 u32 crc = ether_crc(ETH_ALEN, ha->addr);
Al Viro6c3561b2006-10-10 00:19:36 +0100874 /*
875 * The 8390 uses the 6 most significant bits of the
876 * CRC to index the multicast table.
877 */
878 bits[crc>>29] |= (1<<((crc>>26)&7));
879 }
880}
881
882/**
883 * do_set_multicast_list - set/clear multicast filter
884 * @dev: net device for which multicast filter is adjusted
885 *
886 * Set or clear the multicast filter for this adaptor. May be called
887 * from a BH in 2.1.x. Must be called with lock held.
888 */
889
890static void do_set_multicast_list(struct net_device *dev)
891{
892 unsigned long e8390_base = dev->base_addr;
893 int i;
Joe Perchesece49152010-11-15 11:12:31 +0000894 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100895
Joe Perches7340c4d2011-06-22 20:38:56 +0000896 if (!(dev->flags&(IFF_PROMISC|IFF_ALLMULTI))) {
Al Viro6c3561b2006-10-10 00:19:36 +0100897 memset(ei_local->mcfilter, 0, 8);
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +0000898 if (!netdev_mc_empty(dev))
Al Viro6c3561b2006-10-10 00:19:36 +0100899 make_mc_bits(ei_local->mcfilter, dev);
Joe Perches7340c4d2011-06-22 20:38:56 +0000900 } else
Al Viro6c3561b2006-10-10 00:19:36 +0100901 memset(ei_local->mcfilter, 0xFF, 8); /* mcast set to accept-all */
902
903 /*
904 * DP8390 manuals don't specify any magic sequence for altering
905 * the multicast regs on an already running card. To be safe, we
906 * ensure multicast mode is off prior to loading up the new hash
907 * table. If this proves to be not enough, we can always resort
908 * to stopping the NIC, loading the table and then restarting.
909 *
910 * Bug Alert! The MC regs on the SMC 83C690 (SMC Elite and SMC
911 * Elite16) appear to be write-only. The NS 8390 data sheet lists
912 * them as r/w so this is a bug. The SMC 83C790 (SMC Ultra and
913 * Ultra32 EISA) appears to have this bug fixed.
914 */
915
916 if (netif_running(dev))
917 ei_outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR);
918 ei_outb_p(E8390_NODMA + E8390_PAGE1, e8390_base + E8390_CMD);
Joe Perches7340c4d2011-06-22 20:38:56 +0000919 for(i = 0; i < 8; i++) {
Al Viro6c3561b2006-10-10 00:19:36 +0100920 ei_outb_p(ei_local->mcfilter[i], e8390_base + EN1_MULT_SHIFT(i));
921#ifndef BUG_83C690
922 if(ei_inb_p(e8390_base + EN1_MULT_SHIFT(i))!=ei_local->mcfilter[i])
Joe Perches840f6392011-06-22 20:38:55 +0000923 netdev_err(dev, "Multicast filter read/write mismap %d\n",
924 i);
Al Viro6c3561b2006-10-10 00:19:36 +0100925#endif
926 }
927 ei_outb_p(E8390_NODMA + E8390_PAGE0, e8390_base + E8390_CMD);
928
929 if(dev->flags&IFF_PROMISC)
930 ei_outb_p(E8390_RXCONFIG | 0x18, e8390_base + EN0_RXCR);
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +0000931 else if (dev->flags & IFF_ALLMULTI || !netdev_mc_empty(dev))
Al Viro6c3561b2006-10-10 00:19:36 +0100932 ei_outb_p(E8390_RXCONFIG | 0x08, e8390_base + EN0_RXCR);
933 else
934 ei_outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR);
935 }
936
937/*
938 * Called without lock held. This is invoked from user context and may
939 * be parallel to just about everything else. Its also fairly quick and
940 * not called too often. Must protect against both bh and irq users
941 */
942
Stephen Hemminger8884c092008-11-25 18:12:49 -0800943static void __ei_set_multicast_list(struct net_device *dev)
Al Viro6c3561b2006-10-10 00:19:36 +0100944{
945 unsigned long flags;
Joe Perchesece49152010-11-15 11:12:31 +0000946 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100947
948 spin_lock_irqsave(&ei_local->page_lock, flags);
949 do_set_multicast_list(dev);
950 spin_unlock_irqrestore(&ei_local->page_lock, flags);
951}
952
953/**
954 * ethdev_setup - init rest of 8390 device struct
955 * @dev: network device structure to init
956 *
957 * Initialize the rest of the 8390 device structure. Do NOT __init
958 * this, as it is used by 8390 based modular drivers too.
959 */
960
961static void ethdev_setup(struct net_device *dev)
962{
Joe Perchesece49152010-11-15 11:12:31 +0000963 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +0100964 if (ei_debug > 1)
965 printk(version);
966
Al Viro6c3561b2006-10-10 00:19:36 +0100967 ether_setup(dev);
968
969 spin_lock_init(&ei_local->page_lock);
970}
971
972/**
973 * alloc_ei_netdev - alloc_etherdev counterpart for 8390
974 * @size: extra bytes to allocate
975 *
976 * Allocate 8390-specific net_device.
977 */
978static struct net_device *____alloc_ei_netdev(int size)
979{
980 return alloc_netdev(sizeof(struct ei_device) + size, "eth%d",
981 ethdev_setup);
982}
983
984
985
986
987/* This page of functions should be 8390 generic */
988/* Follow National Semi's recommendations for initializing the "NIC". */
989
990/**
991 * NS8390_init - initialize 8390 hardware
992 * @dev: network device to initialize
993 * @startp: boolean. non-zero value to initiate chip processing
994 *
995 * Must be called with lock held.
996 */
997
998static void __NS8390_init(struct net_device *dev, int startp)
999{
1000 unsigned long e8390_base = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +00001001 struct ei_device *ei_local = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +01001002 int i;
1003 int endcfg = ei_local->word16
1004 ? (0x48 | ENDCFG_WTS | (ei_local->bigendian ? ENDCFG_BOS : 0))
1005 : 0x48;
1006
1007 if(sizeof(struct e8390_pkt_hdr)!=4)
1008 panic("8390.c: header struct mispacked\n");
1009 /* Follow National Semi's recommendations for initing the DP83902. */
1010 ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD); /* 0x21 */
1011 ei_outb_p(endcfg, e8390_base + EN0_DCFG); /* 0x48 or 0x49 */
1012 /* Clear the remote byte count registers. */
1013 ei_outb_p(0x00, e8390_base + EN0_RCNTLO);
1014 ei_outb_p(0x00, e8390_base + EN0_RCNTHI);
1015 /* Set to monitor and loopback mode -- this is vital!. */
1016 ei_outb_p(E8390_RXOFF, e8390_base + EN0_RXCR); /* 0x20 */
1017 ei_outb_p(E8390_TXOFF, e8390_base + EN0_TXCR); /* 0x02 */
1018 /* Set the transmit page and receive ring. */
1019 ei_outb_p(ei_local->tx_start_page, e8390_base + EN0_TPSR);
1020 ei_local->tx1 = ei_local->tx2 = 0;
1021 ei_outb_p(ei_local->rx_start_page, e8390_base + EN0_STARTPG);
1022 ei_outb_p(ei_local->stop_page-1, e8390_base + EN0_BOUNDARY); /* 3c503 says 0x3f,NS0x26*/
1023 ei_local->current_page = ei_local->rx_start_page; /* assert boundary+1 */
1024 ei_outb_p(ei_local->stop_page, e8390_base + EN0_STOPPG);
1025 /* Clear the pending interrupts and mask. */
1026 ei_outb_p(0xFF, e8390_base + EN0_ISR);
1027 ei_outb_p(0x00, e8390_base + EN0_IMR);
1028
1029 /* Copy the station address into the DS8390 registers. */
1030
1031 ei_outb_p(E8390_NODMA + E8390_PAGE1 + E8390_STOP, e8390_base+E8390_CMD); /* 0x61 */
Joe Perches7340c4d2011-06-22 20:38:56 +00001032 for(i = 0; i < 6; i++) {
Al Viro6c3561b2006-10-10 00:19:36 +01001033 ei_outb_p(dev->dev_addr[i], e8390_base + EN1_PHYS_SHIFT(i));
1034 if (ei_debug > 1 && ei_inb_p(e8390_base + EN1_PHYS_SHIFT(i))!=dev->dev_addr[i])
Joe Perches840f6392011-06-22 20:38:55 +00001035 netdev_err(dev, "Hw. address read/write mismap %d\n", i);
Al Viro6c3561b2006-10-10 00:19:36 +01001036 }
1037
1038 ei_outb_p(ei_local->rx_start_page, e8390_base + EN1_CURPAG);
1039 ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD);
1040
Al Viro6c3561b2006-10-10 00:19:36 +01001041 ei_local->tx1 = ei_local->tx2 = 0;
1042 ei_local->txing = 0;
1043
Joe Perches7340c4d2011-06-22 20:38:56 +00001044 if (startp) {
Al Viro6c3561b2006-10-10 00:19:36 +01001045 ei_outb_p(0xff, e8390_base + EN0_ISR);
1046 ei_outb_p(ENISR_ALL, e8390_base + EN0_IMR);
1047 ei_outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base+E8390_CMD);
1048 ei_outb_p(E8390_TXCONFIG, e8390_base + EN0_TXCR); /* xmit on. */
1049 /* 3c503 TechMan says rxconfig only after the NIC is started. */
1050 ei_outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR); /* rx on, */
1051 do_set_multicast_list(dev); /* (re)load the mcast table */
1052 }
1053}
1054
1055/* Trigger a transmit start, assuming the length is valid.
1056 Always called with the page lock held */
1057
1058static void NS8390_trigger_send(struct net_device *dev, unsigned int length,
1059 int start_page)
1060{
1061 unsigned long e8390_base = dev->base_addr;
Joe Perchesece49152010-11-15 11:12:31 +00001062 struct ei_device *ei_local __attribute((unused)) = netdev_priv(dev);
Al Viro6c3561b2006-10-10 00:19:36 +01001063
1064 ei_outb_p(E8390_NODMA+E8390_PAGE0, e8390_base+E8390_CMD);
1065
Joe Perches7340c4d2011-06-22 20:38:56 +00001066 if (ei_inb_p(e8390_base + E8390_CMD) & E8390_TRANS) {
Joe Perches840f6392011-06-22 20:38:55 +00001067 netdev_warn(dev, "trigger_send() called with the transmitter busy\n");
Al Viro6c3561b2006-10-10 00:19:36 +01001068 return;
1069 }
1070 ei_outb_p(length & 0xff, e8390_base + EN0_TCNTLO);
1071 ei_outb_p(length >> 8, e8390_base + EN0_TCNTHI);
1072 ei_outb_p(start_page, e8390_base + EN0_TPSR);
1073 ei_outb_p(E8390_NODMA+E8390_TRANS+E8390_START, e8390_base+E8390_CMD);
1074}