blob: ad6b8a5b6574b4865b327bff0bb719878316ce27 [file] [log] [blame]
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001/*
2 * 7990.c -- LANCE ethernet IC generic routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * This is an attempt to separate out the bits of various ethernet
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004 * drivers that are common because they all use the AMD 7990 LANCE
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * (Local Area Network Controller for Ethernet) chip.
6 *
7 * Copyright (C) 05/1998 Peter Maydell <pmaydell@chiark.greenend.org.uk>
8 *
9 * Most of this stuff was obtained by looking at other LANCE drivers,
10 * in particular a2065.[ch]. The AMD C-LANCE datasheet was also helpful.
11 * NB: this was made easy by the fact that Jes Sorensen had cleaned up
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012 * most of a2025 and sunlance with the aim of merging them, so the
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * common code was pretty obvious.
14 */
15#include <linux/crc32.h>
16#include <linux/delay.h>
17#include <linux/errno.h>
18#include <linux/netdevice.h>
19#include <linux/etherdevice.h>
20#include <linux/init.h>
21#include <linux/module.h>
22#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/fcntl.h>
25#include <linux/interrupt.h>
26#include <linux/ioport.h>
27#include <linux/in.h>
28#include <linux/route.h>
29#include <linux/slab.h>
30#include <linux/string.h>
31#include <linux/skbuff.h>
Al Viro3c139582005-12-01 06:44:55 -050032#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* Used for the temporal inet entries and routing */
34#include <linux/socket.h>
35#include <linux/bitops.h>
36
37#include <asm/system.h>
38#include <asm/io.h>
39#include <asm/dma.h>
40#include <asm/pgtable.h>
41#ifdef CONFIG_HP300
42#include <asm/blinken.h>
43#endif
44
45#include "7990.h"
46
47#define WRITERAP(lp,x) out_be16(lp->base + LANCE_RAP, (x))
48#define WRITERDP(lp,x) out_be16(lp->base + LANCE_RDP, (x))
49#define READRDP(lp) in_be16(lp->base + LANCE_RDP)
50
51#if defined(CONFIG_HPLANCE) || defined(CONFIG_HPLANCE_MODULE)
52#include "hplance.h"
53
54#undef WRITERAP
55#undef WRITERDP
56#undef READRDP
57
58#if defined(CONFIG_MVME147_NET) || defined(CONFIG_MVME147_NET_MODULE)
59
60/* Lossage Factor Nine, Mr Sulu. */
61#define WRITERAP(lp,x) (lp->writerap(lp,x))
62#define WRITERDP(lp,x) (lp->writerdp(lp,x))
63#define READRDP(lp) (lp->readrdp(lp))
64
65#else
66
67/* These inlines can be used if only CONFIG_HPLANCE is defined */
68static inline void WRITERAP(struct lance_private *lp, __u16 value)
69{
70 do {
71 out_be16(lp->base + HPLANCE_REGOFF + LANCE_RAP, value);
72 } while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
73}
74
75static inline void WRITERDP(struct lance_private *lp, __u16 value)
76{
77 do {
78 out_be16(lp->base + HPLANCE_REGOFF + LANCE_RDP, value);
79 } while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
80}
81
82static inline __u16 READRDP(struct lance_private *lp)
83{
84 __u16 value;
85 do {
86 value = in_be16(lp->base + HPLANCE_REGOFF + LANCE_RDP);
87 } while ((in_8(lp->base + HPLANCE_STATUS) & LE_ACK) == 0);
88 return value;
89}
90
91#endif
92#endif /* CONFIG_HPLANCE || CONFIG_HPLANCE_MODULE */
93
94/* debugging output macros, various flavours */
95/* #define TEST_HITS */
96#ifdef UNDEF
97#define PRINT_RINGS() \
98do { \
99 int t; \
100 for (t=0; t < RX_RING_SIZE; t++) { \
101 printk("R%d: @(%02X %04X) len %04X, mblen %04X, bits %02X\n",\
102 t, ib->brx_ring[t].rmd1_hadr, ib->brx_ring[t].rmd0,\
103 ib->brx_ring[t].length,\
104 ib->brx_ring[t].mblength, ib->brx_ring[t].rmd1_bits);\
105 }\
106 for (t=0; t < TX_RING_SIZE; t++) { \
107 printk("T%d: @(%02X %04X) len %04X, misc %04X, bits %02X\n",\
108 t, ib->btx_ring[t].tmd1_hadr, ib->btx_ring[t].tmd0,\
109 ib->btx_ring[t].length,\
110 ib->btx_ring[t].misc, ib->btx_ring[t].tmd1_bits);\
111 }\
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400112} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#else
114#define PRINT_RINGS()
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/* Load the CSR registers. The LANCE has to be STOPped when we do this! */
118static void load_csrs (struct lance_private *lp)
119{
120 volatile struct lance_init_block *aib = lp->lance_init_block;
121 int leptr;
122
123 leptr = LANCE_ADDR (aib);
124
125 WRITERAP(lp, LE_CSR1); /* load address of init block */
126 WRITERDP(lp, leptr & 0xFFFF);
127 WRITERAP(lp, LE_CSR2);
128 WRITERDP(lp, leptr >> 16);
129 WRITERAP(lp, LE_CSR3);
130 WRITERDP(lp, lp->busmaster_regval); /* set byteswap/ALEctrl/byte ctrl */
131
132 /* Point back to csr0 */
133 WRITERAP(lp, LE_CSR0);
134}
135
136/* #define to 0 or 1 appropriately */
137#define DEBUG_IRING 0
138/* Set up the Lance Rx and Tx rings and the init block */
139static void lance_init_ring (struct net_device *dev)
140{
141 struct lance_private *lp = netdev_priv(dev);
142 volatile struct lance_init_block *ib = lp->init_block;
143 volatile struct lance_init_block *aib; /* for LANCE_ADDR computations */
144 int leptr;
145 int i;
146
147 aib = lp->lance_init_block;
148
149 lp->rx_new = lp->tx_new = 0;
150 lp->rx_old = lp->tx_old = 0;
151
152 ib->mode = LE_MO_PROM; /* normal, enable Tx & Rx */
153
154 /* Copy the ethernet address to the lance init block
155 * Notice that we do a byteswap if we're big endian.
156 * [I think this is the right criterion; at least, sunlance,
157 * a2065 and atarilance do the byteswap and lance.c (PC) doesn't.
158 * However, the datasheet says that the BSWAP bit doesn't affect
159 * the init block, so surely it should be low byte first for
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400160 * everybody? Um.]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * We could define the ib->physaddr as three 16bit values and
162 * use (addr[1] << 8) | addr[0] & co, but this is more efficient.
163 */
164#ifdef __BIG_ENDIAN
165 ib->phys_addr [0] = dev->dev_addr [1];
166 ib->phys_addr [1] = dev->dev_addr [0];
167 ib->phys_addr [2] = dev->dev_addr [3];
168 ib->phys_addr [3] = dev->dev_addr [2];
169 ib->phys_addr [4] = dev->dev_addr [5];
170 ib->phys_addr [5] = dev->dev_addr [4];
171#else
172 for (i=0; i<6; i++)
173 ib->phys_addr[i] = dev->dev_addr[i];
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 if (DEBUG_IRING)
177 printk ("TX rings:\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 lp->tx_full = 0;
180 /* Setup the Tx ring entries */
181 for (i = 0; i < (1<<lp->lance_log_tx_bufs); i++) {
182 leptr = LANCE_ADDR(&aib->tx_buf[i][0]);
183 ib->btx_ring [i].tmd0 = leptr;
184 ib->btx_ring [i].tmd1_hadr = leptr >> 16;
185 ib->btx_ring [i].tmd1_bits = 0;
186 ib->btx_ring [i].length = 0xf000; /* The ones required by tmd2 */
187 ib->btx_ring [i].misc = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400188 if (DEBUG_IRING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 printk ("%d: 0x%8.8x\n", i, leptr);
190 }
191
192 /* Setup the Rx ring entries */
193 if (DEBUG_IRING)
194 printk ("RX rings:\n");
195 for (i = 0; i < (1<<lp->lance_log_rx_bufs); i++) {
196 leptr = LANCE_ADDR(&aib->rx_buf[i][0]);
197
198 ib->brx_ring [i].rmd0 = leptr;
199 ib->brx_ring [i].rmd1_hadr = leptr >> 16;
200 ib->brx_ring [i].rmd1_bits = LE_R1_OWN;
201 /* 0xf000 == bits that must be one (reserved, presumably) */
202 ib->brx_ring [i].length = -RX_BUFF_SIZE | 0xf000;
203 ib->brx_ring [i].mblength = 0;
204 if (DEBUG_IRING)
205 printk ("%d: 0x%8.8x\n", i, leptr);
206 }
207
208 /* Setup the initialization block */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Setup rx descriptor pointer */
211 leptr = LANCE_ADDR(&aib->brx_ring);
212 ib->rx_len = (lp->lance_log_rx_bufs << 13) | (leptr >> 16);
213 ib->rx_ptr = leptr;
214 if (DEBUG_IRING)
215 printk ("RX ptr: %8.8x\n", leptr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* Setup tx descriptor pointer */
218 leptr = LANCE_ADDR(&aib->btx_ring);
219 ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16);
220 ib->tx_ptr = leptr;
221 if (DEBUG_IRING)
222 printk ("TX ptr: %8.8x\n", leptr);
223
224 /* Clear the multicast filter */
225 ib->filter [0] = 0;
226 ib->filter [1] = 0;
227 PRINT_RINGS();
228}
229
230/* LANCE must be STOPped before we do this, too... */
231static int init_restart_lance (struct lance_private *lp)
232{
233 int i;
234
235 WRITERAP(lp, LE_CSR0);
236 WRITERDP(lp, LE_C0_INIT);
237
238 /* Need a hook here for sunlance ledma stuff */
239
240 /* Wait for the lance to complete initialization */
241 for (i = 0; (i < 100) && !(READRDP(lp) & (LE_C0_ERR | LE_C0_IDON)); i++)
242 barrier();
243 if ((i == 100) || (READRDP(lp) & LE_C0_ERR)) {
244 printk ("LANCE unopened after %d ticks, csr0=%4.4x.\n", i, READRDP(lp));
245 return -1;
246 }
247
248 /* Clear IDON by writing a "1", enable interrupts and start lance */
249 WRITERDP(lp, LE_C0_IDON);
250 WRITERDP(lp, LE_C0_INEA | LE_C0_STRT);
251
252 return 0;
253}
254
255static int lance_reset (struct net_device *dev)
256{
257 struct lance_private *lp = netdev_priv(dev);
258 int status;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* Stop the lance */
261 WRITERAP(lp, LE_CSR0);
262 WRITERDP(lp, LE_C0_STOP);
263
264 load_csrs (lp);
265 lance_init_ring (dev);
266 dev->trans_start = jiffies;
267 status = init_restart_lance (lp);
268#ifdef DEBUG_DRIVER
269 printk ("Lance restart=%d\n", status);
270#endif
271 return status;
272}
273
274static int lance_rx (struct net_device *dev)
275{
276 struct lance_private *lp = netdev_priv(dev);
277 volatile struct lance_init_block *ib = lp->init_block;
278 volatile struct lance_rx_desc *rd;
279 unsigned char bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#ifdef TEST_HITS
281 int i;
282#endif
283
284#ifdef TEST_HITS
285 printk ("[");
286 for (i = 0; i < RX_RING_SIZE; i++) {
287 if (i == lp->rx_new)
288 printk ("%s",
289 ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "_" : "X");
290 else
291 printk ("%s",
292 ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "." : "1");
293 }
294 printk ("]");
295#endif
296#ifdef CONFIG_HP300
297 blinken_leds(0x40, 0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400298#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 WRITERDP(lp, LE_C0_RINT | LE_C0_INEA); /* ack Rx int, reenable ints */
300 for (rd = &ib->brx_ring [lp->rx_new]; /* For each Rx ring we own... */
301 !((bits = rd->rmd1_bits) & LE_R1_OWN);
302 rd = &ib->brx_ring [lp->rx_new]) {
303
304 /* We got an incomplete frame? */
305 if ((bits & LE_R1_POK) != LE_R1_POK) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700306 dev->stats.rx_over_errors++;
307 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 continue;
309 } else if (bits & LE_R1_ERR) {
310 /* Count only the end frame as a rx error,
311 * not the beginning
312 */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700313 if (bits & LE_R1_BUF) dev->stats.rx_fifo_errors++;
314 if (bits & LE_R1_CRC) dev->stats.rx_crc_errors++;
315 if (bits & LE_R1_OFL) dev->stats.rx_over_errors++;
316 if (bits & LE_R1_FRA) dev->stats.rx_frame_errors++;
317 if (bits & LE_R1_EOP) dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 } else {
Al Viro79ea13c2008-01-24 02:06:46 -0800319 int len = (rd->mblength & 0xfff) - 4;
320 struct sk_buff *skb = dev_alloc_skb (len+2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Al Viro79ea13c2008-01-24 02:06:46 -0800322 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 printk ("%s: Memory squeeze, deferring packet.\n",
324 dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700325 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 rd->mblength = 0;
327 rd->rmd1_bits = LE_R1_OWN;
328 lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;
329 return 0;
330 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 skb_reserve (skb, 2); /* 16 byte align */
333 skb_put (skb, len); /* make room */
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700334 skb_copy_to_linear_data(skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 (unsigned char *)&(ib->rx_buf [lp->rx_new][0]),
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700336 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 skb->protocol = eth_type_trans (skb, dev);
338 netif_rx (skb);
339 dev->last_rx = jiffies;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700340 dev->stats.rx_packets++;
341 dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 /* Return the packet to the pool */
345 rd->mblength = 0;
346 rd->rmd1_bits = LE_R1_OWN;
347 lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;
348 }
349 return 0;
350}
351
352static int lance_tx (struct net_device *dev)
353{
354 struct lance_private *lp = netdev_priv(dev);
355 volatile struct lance_init_block *ib = lp->init_block;
356 volatile struct lance_tx_desc *td;
357 int i, j;
358 int status;
359
360#ifdef CONFIG_HP300
361 blinken_leds(0x80, 0);
362#endif
363 /* csr0 is 2f3 */
364 WRITERDP(lp, LE_C0_TINT | LE_C0_INEA);
365 /* csr0 is 73 */
366
367 j = lp->tx_old;
368 for (i = j; i != lp->tx_new; i = j) {
369 td = &ib->btx_ring [i];
370
371 /* If we hit a packet not owned by us, stop */
372 if (td->tmd1_bits & LE_T1_OWN)
373 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (td->tmd1_bits & LE_T1_ERR) {
376 status = td->misc;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400377
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700378 dev->stats.tx_errors++;
379 if (status & LE_T3_RTY) dev->stats.tx_aborted_errors++;
380 if (status & LE_T3_LCOL) dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 if (status & LE_T3_CLOS) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700383 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (lp->auto_select) {
385 lp->tpe = 1 - lp->tpe;
386 printk("%s: Carrier Lost, trying %s\n",
387 dev->name, lp->tpe?"TPE":"AUI");
388 /* Stop the lance */
389 WRITERAP(lp, LE_CSR0);
390 WRITERDP(lp, LE_C0_STOP);
391 lance_init_ring (dev);
392 load_csrs (lp);
393 init_restart_lance (lp);
394 return 0;
395 }
396 }
397
398 /* buffer errors and underflows turn off the transmitter */
399 /* Restart the adapter */
400 if (status & (LE_T3_BUF|LE_T3_UFL)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700401 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 printk ("%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
404 dev->name);
405 /* Stop the lance */
406 WRITERAP(lp, LE_CSR0);
407 WRITERDP(lp, LE_C0_STOP);
408 lance_init_ring (dev);
409 load_csrs (lp);
410 init_restart_lance (lp);
411 return 0;
412 }
413 } else if ((td->tmd1_bits & LE_T1_POK) == LE_T1_POK) {
414 /*
415 * So we don't count the packet more than once.
416 */
417 td->tmd1_bits &= ~(LE_T1_POK);
418
419 /* One collision before packet was sent. */
420 if (td->tmd1_bits & LE_T1_EONE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700421 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /* More than one collision, be optimistic. */
424 if (td->tmd1_bits & LE_T1_EMORE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700425 dev->stats.collisions += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700427 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 j = (j + 1) & lp->tx_ring_mod_mask;
431 }
432 lp->tx_old = j;
433 WRITERDP(lp, LE_C0_TINT | LE_C0_INEA);
434 return 0;
435}
436
437static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100438lance_interrupt (int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct net_device *dev = (struct net_device *)dev_id;
441 struct lance_private *lp = netdev_priv(dev);
442 int csr0;
443
444 spin_lock (&lp->devlock);
445
446 WRITERAP(lp, LE_CSR0); /* LANCE Controller Status */
447 csr0 = READRDP(lp);
448
449 PRINT_RINGS();
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (!(csr0 & LE_C0_INTR)) { /* Check if any interrupt has */
452 spin_unlock (&lp->devlock);
453 return IRQ_NONE; /* been generated by the Lance. */
454 }
455
456 /* Acknowledge all the interrupt sources ASAP */
457 WRITERDP(lp, csr0 & ~(LE_C0_INEA|LE_C0_TDMD|LE_C0_STOP|LE_C0_STRT|LE_C0_INIT));
458
459 if ((csr0 & LE_C0_ERR)) {
460 /* Clear the error condition */
461 WRITERDP(lp, LE_C0_BABL|LE_C0_ERR|LE_C0_MISS|LE_C0_INEA);
462 }
463
464 if (csr0 & LE_C0_RINT)
465 lance_rx (dev);
466
467 if (csr0 & LE_C0_TINT)
468 lance_tx (dev);
469
470 /* Log misc errors. */
471 if (csr0 & LE_C0_BABL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700472 dev->stats.tx_errors++; /* Tx babble. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (csr0 & LE_C0_MISS)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700474 dev->stats.rx_errors++; /* Missed a Rx frame. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (csr0 & LE_C0_MERR) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400476 printk("%s: Bus master arbitration failure, status %4.4x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 dev->name, csr0);
478 /* Restart the chip. */
479 WRITERDP(lp, LE_C0_STRT);
480 }
481
482 if (lp->tx_full && netif_queue_stopped(dev) && (TX_BUFFS_AVAIL >= 0)) {
483 lp->tx_full = 0;
484 netif_wake_queue (dev);
485 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 WRITERAP(lp, LE_CSR0);
488 WRITERDP(lp, LE_C0_BABL|LE_C0_CERR|LE_C0_MISS|LE_C0_MERR|LE_C0_IDON|LE_C0_INEA);
489
490 spin_unlock (&lp->devlock);
491 return IRQ_HANDLED;
492}
493
494int lance_open (struct net_device *dev)
495{
496 struct lance_private *lp = netdev_priv(dev);
497 int res;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* Install the Interrupt handler. Or we could shunt this out to specific drivers? */
Thomas Gleixner38515e92007-02-14 00:33:16 -0800500 if (request_irq(lp->irq, lance_interrupt, IRQF_SHARED, lp->name, dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -EAGAIN;
502
503 res = lance_reset(dev);
504 spin_lock_init(&lp->devlock);
505 netif_start_queue (dev);
506
507 return res;
508}
Adrian Bunkbf4d5932008-06-10 01:22:16 +0300509EXPORT_SYMBOL_GPL(lance_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511int lance_close (struct net_device *dev)
512{
513 struct lance_private *lp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 netif_stop_queue (dev);
516
517 /* Stop the LANCE */
518 WRITERAP(lp, LE_CSR0);
519 WRITERDP(lp, LE_C0_STOP);
520
521 free_irq(lp->irq, dev);
522
523 return 0;
524}
Adrian Bunkbf4d5932008-06-10 01:22:16 +0300525EXPORT_SYMBOL_GPL(lance_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527void lance_tx_timeout(struct net_device *dev)
528{
529 printk("lance_tx_timeout\n");
530 lance_reset(dev);
531 dev->trans_start = jiffies;
532 netif_wake_queue (dev);
533}
Adrian Bunkbf4d5932008-06-10 01:22:16 +0300534EXPORT_SYMBOL_GPL(lance_tx_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536int lance_start_xmit (struct sk_buff *skb, struct net_device *dev)
537{
538 struct lance_private *lp = netdev_priv(dev);
539 volatile struct lance_init_block *ib = lp->init_block;
540 int entry, skblen, len;
541 static int outs;
542 unsigned long flags;
543
544 if (!TX_BUFFS_AVAIL)
545 return -1;
546
547 netif_stop_queue (dev);
548
549 skblen = skb->len;
550
551#ifdef DEBUG_DRIVER
552 /* dump the packet */
553 {
554 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 for (i = 0; i < 64; i++) {
557 if ((i % 16) == 0)
558 printk ("\n");
559 printk ("%2.2x ", skb->data [i]);
560 }
561 }
562#endif
563 len = (skblen <= ETH_ZLEN) ? ETH_ZLEN : skblen;
564 entry = lp->tx_new & lp->tx_ring_mod_mask;
565 ib->btx_ring [entry].length = (-len) | 0xf000;
566 ib->btx_ring [entry].misc = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400567
Geert Uytterhoevencfa08bb2007-05-01 22:33:05 +0200568 if (skb->len < ETH_ZLEN)
569 memset((void *)&ib->tx_buf[entry][0], 0, ETH_ZLEN);
570 skb_copy_from_linear_data(skb, (void *)&ib->tx_buf[entry][0], skblen);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /* Now, give the packet to the lance */
573 ib->btx_ring [entry].tmd1_bits = (LE_T1_POK|LE_T1_OWN);
574 lp->tx_new = (lp->tx_new+1) & lp->tx_ring_mod_mask;
575
576 outs++;
577 /* Kick the lance: transmit now */
578 WRITERDP(lp, LE_C0_INEA | LE_C0_TDMD);
579 dev->trans_start = jiffies;
580 dev_kfree_skb (skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 spin_lock_irqsave (&lp->devlock, flags);
583 if (TX_BUFFS_AVAIL)
584 netif_start_queue (dev);
585 else
586 lp->tx_full = 1;
587 spin_unlock_irqrestore (&lp->devlock, flags);
588
589 return 0;
590}
Adrian Bunkbf4d5932008-06-10 01:22:16 +0300591EXPORT_SYMBOL_GPL(lance_start_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/* taken from the depca driver via a2065.c */
594static void lance_load_multicast (struct net_device *dev)
595{
596 struct lance_private *lp = netdev_priv(dev);
597 volatile struct lance_init_block *ib = lp->init_block;
598 volatile u16 *mcast_table = (u16 *)&ib->filter;
599 struct dev_mc_list *dmi=dev->mc_list;
600 char *addrs;
601 int i;
602 u32 crc;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* set all multicast bits */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400605 if (dev->flags & IFF_ALLMULTI){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 ib->filter [0] = 0xffffffff;
607 ib->filter [1] = 0xffffffff;
608 return;
609 }
610 /* clear the multicast filter */
611 ib->filter [0] = 0;
612 ib->filter [1] = 0;
613
614 /* Add addresses */
615 for (i = 0; i < dev->mc_count; i++){
616 addrs = dmi->dmi_addr;
617 dmi = dmi->next;
618
619 /* multicast address? */
620 if (!(*addrs & 1))
621 continue;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 crc = ether_crc_le(6, addrs);
624 crc = crc >> 26;
625 mcast_table [crc >> 4] |= 1 << (crc & 0xf);
626 }
627 return;
628}
629
630
631void lance_set_multicast (struct net_device *dev)
632{
633 struct lance_private *lp = netdev_priv(dev);
634 volatile struct lance_init_block *ib = lp->init_block;
635 int stopped;
636
637 stopped = netif_queue_stopped(dev);
638 if (!stopped)
639 netif_stop_queue (dev);
640
641 while (lp->tx_old != lp->tx_new)
642 schedule();
643
644 WRITERAP(lp, LE_CSR0);
645 WRITERDP(lp, LE_C0_STOP);
646 lance_init_ring (dev);
647
648 if (dev->flags & IFF_PROMISC) {
649 ib->mode |= LE_MO_PROM;
650 } else {
651 ib->mode &= ~LE_MO_PROM;
652 lance_load_multicast (dev);
653 }
654 load_csrs (lp);
655 init_restart_lance (lp);
656
657 if (!stopped)
658 netif_start_queue (dev);
659}
Adrian Bunkbf4d5932008-06-10 01:22:16 +0300660EXPORT_SYMBOL_GPL(lance_set_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662#ifdef CONFIG_NET_POLL_CONTROLLER
663void lance_poll(struct net_device *dev)
664{
665 struct lance_private *lp = netdev_priv(dev);
666
667 spin_lock (&lp->devlock);
668 WRITERAP(lp, LE_CSR0);
669 WRITERDP(lp, LE_C0_STRT);
670 spin_unlock (&lp->devlock);
Al Viro2850bc22006-10-07 14:16:45 +0100671 lance_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673#endif
674
675MODULE_LICENSE("GPL");