MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / net / declance.c
blob7f62a435270aa3f1729bed7adb4ed14d37d0ec33
1 /*
2 * Lance ethernet driver for the MIPS processor based
3 * DECstation family
6 * adopted from sunlance.c by Richard van den Berg
8 * Copyright (C) 2002, 2003 Maciej W. Rozycki
10 * additional sources:
11 * - PMAD-AA TURBOchannel Ethernet Module Functional Specification,
12 * Revision 1.2
14 * History:
16 * v0.001: The kernel accepts the code and it shows the hardware address.
18 * v0.002: Removed most sparc stuff, left only some module and dma stuff.
20 * v0.003: Enhanced base address calculation from proposals by
21 * Harald Koerfgen and Thomas Riemer.
23 * v0.004: lance-regs is pointing at the right addresses, added prom
24 * check. First start of address mapping and DMA.
26 * v0.005: started to play around with LANCE-DMA. This driver will not
27 * work for non IOASIC lances. HK
29 * v0.006: added pointer arrays to lance_private and setup routine for
30 * them in dec_lance_init. HK
32 * v0.007: Big shit. The LANCE seems to use a different DMA mechanism to
33 * access the init block. This looks like one (short) word at a
34 * time, but the smallest amount the IOASIC can transfer is a
35 * (long) word. So we have a 2-2 padding here. Changed
36 * lance_init_block accordingly. The 16-16 padding for the buffers
37 * seems to be correct. HK
39 * v0.008: mods to make PMAX_LANCE work. 01/09/1999 triemer
41 * v0.009: Module support fixes, multiple interfaces support, various
42 * bits. macro
45 #include <linux/config.h>
46 #include <linux/crc32.h>
47 #include <linux/delay.h>
48 #include <linux/errno.h>
49 #include <linux/if_ether.h>
50 #include <linux/init.h>
51 #include <linux/kernel.h>
52 #include <linux/module.h>
53 #include <linux/netdevice.h>
54 #include <linux/etherdevice.h>
55 #include <linux/spinlock.h>
56 #include <linux/stddef.h>
57 #include <linux/string.h>
59 #include <asm/addrspace.h>
60 #include <asm/dec/interrupts.h>
61 #include <asm/dec/ioasic.h>
62 #include <asm/dec/ioasic_addrs.h>
63 #include <asm/dec/kn01.h>
64 #include <asm/dec/machtype.h>
65 #include <asm/dec/tc.h>
66 #include <asm/system.h>
68 static char version[] __devinitdata =
69 "declance.c: v0.009 by Linux MIPS DECstation task force\n";
71 MODULE_AUTHOR("Linux MIPS DECstation task force");
72 MODULE_DESCRIPTION("DEC LANCE (DECstation onboard, PMAD-xx) driver");
73 MODULE_LICENSE("GPL");
76 * card types
78 #define ASIC_LANCE 1
79 #define PMAD_LANCE 2
80 #define PMAX_LANCE 3
82 #ifndef CONFIG_TC
83 unsigned long system_base;
84 unsigned long dmaptr;
85 #endif
87 #define LE_CSR0 0
88 #define LE_CSR1 1
89 #define LE_CSR2 2
90 #define LE_CSR3 3
92 #define LE_MO_PROM 0x8000 /* Enable promiscuous mode */
94 #define LE_C0_ERR 0x8000 /* Error: set if BAB, SQE, MISS or ME is set */
95 #define LE_C0_BABL 0x4000 /* BAB: Babble: tx timeout. */
96 #define LE_C0_CERR 0x2000 /* SQE: Signal quality error */
97 #define LE_C0_MISS 0x1000 /* MISS: Missed a packet */
98 #define LE_C0_MERR 0x0800 /* ME: Memory error */
99 #define LE_C0_RINT 0x0400 /* Received interrupt */
100 #define LE_C0_TINT 0x0200 /* Transmitter Interrupt */
101 #define LE_C0_IDON 0x0100 /* IFIN: Init finished. */
102 #define LE_C0_INTR 0x0080 /* Interrupt or error */
103 #define LE_C0_INEA 0x0040 /* Interrupt enable */
104 #define LE_C0_RXON 0x0020 /* Receiver on */
105 #define LE_C0_TXON 0x0010 /* Transmitter on */
106 #define LE_C0_TDMD 0x0008 /* Transmitter demand */
107 #define LE_C0_STOP 0x0004 /* Stop the card */
108 #define LE_C0_STRT 0x0002 /* Start the card */
109 #define LE_C0_INIT 0x0001 /* Init the card */
111 #define LE_C3_BSWP 0x4 /* SWAP */
112 #define LE_C3_ACON 0x2 /* ALE Control */
113 #define LE_C3_BCON 0x1 /* Byte control */
115 /* Receive message descriptor 1 */
116 #define LE_R1_OWN 0x80 /* Who owns the entry */
117 #define LE_R1_ERR 0x40 /* Error: if FRA, OFL, CRC or BUF is set */
118 #define LE_R1_FRA 0x20 /* FRA: Frame error */
119 #define LE_R1_OFL 0x10 /* OFL: Frame overflow */
120 #define LE_R1_CRC 0x08 /* CRC error */
121 #define LE_R1_BUF 0x04 /* BUF: Buffer error */
122 #define LE_R1_SOP 0x02 /* Start of packet */
123 #define LE_R1_EOP 0x01 /* End of packet */
124 #define LE_R1_POK 0x03 /* Packet is complete: SOP + EOP */
126 #define LE_T1_OWN 0x80 /* Lance owns the packet */
127 #define LE_T1_ERR 0x40 /* Error summary */
128 #define LE_T1_EMORE 0x10 /* Error: more than one retry needed */
129 #define LE_T1_EONE 0x08 /* Error: one retry needed */
130 #define LE_T1_EDEF 0x04 /* Error: deferred */
131 #define LE_T1_SOP 0x02 /* Start of packet */
132 #define LE_T1_EOP 0x01 /* End of packet */
133 #define LE_T1_POK 0x03 /* Packet is complete: SOP + EOP */
135 #define LE_T3_BUF 0x8000 /* Buffer error */
136 #define LE_T3_UFL 0x4000 /* Error underflow */
137 #define LE_T3_LCOL 0x1000 /* Error late collision */
138 #define LE_T3_CLOS 0x0800 /* Error carrier loss */
139 #define LE_T3_RTY 0x0400 /* Error retry */
140 #define LE_T3_TDR 0x03ff /* Time Domain Reflectometry counter */
142 /* Define: 2^4 Tx buffers and 2^4 Rx buffers */
144 #ifndef LANCE_LOG_TX_BUFFERS
145 #define LANCE_LOG_TX_BUFFERS 4
146 #define LANCE_LOG_RX_BUFFERS 4
147 #endif
149 #define TX_RING_SIZE (1 << (LANCE_LOG_TX_BUFFERS))
150 #define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
152 #define RX_RING_SIZE (1 << (LANCE_LOG_RX_BUFFERS))
153 #define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
155 #define PKT_BUF_SZ 1536
156 #define RX_BUFF_SIZE PKT_BUF_SZ
157 #define TX_BUFF_SIZE PKT_BUF_SZ
159 #undef TEST_HITS
160 #define ZERO 0
162 /* The DS2000/3000 have a linear 64 KB buffer.
164 * The PMAD-AA has 128 kb buffer on-board.
166 * The IOASIC LANCE devices use a shared memory region. This region as seen
167 * from the CPU is (max) 128 KB long and has to be on an 128 KB boundary.
168 * The LANCE sees this as a 64 KB long continuous memory region.
170 * The LANCE's DMA address is used as an index in this buffer and DMA takes
171 * place in bursts of eight 16-Bit words which are packed into four 32-Bit words
172 * by the IOASIC. This leads to a strange padding: 16 bytes of valid data followed
173 * by a 16 byte gap :-(.
176 struct lance_rx_desc {
177 unsigned short rmd0; /* low address of packet */
178 short gap0;
179 unsigned char rmd1_hadr; /* high address of packet */
180 unsigned char rmd1_bits; /* descriptor bits */
181 short gap1;
182 short length; /* 2s complement (negative!)
183 of buffer length */
184 short gap2;
185 unsigned short mblength; /* actual number of bytes received */
186 short gap3;
189 struct lance_tx_desc {
190 unsigned short tmd0; /* low address of packet */
191 short gap0;
192 unsigned char tmd1_hadr; /* high address of packet */
193 unsigned char tmd1_bits; /* descriptor bits */
194 short gap1;
195 short length; /* 2s complement (negative!)
196 of buffer length */
197 short gap2;
198 unsigned short misc;
199 short gap3;
203 /* First part of the LANCE initialization block, described in databook. */
204 struct lance_init_block {
205 unsigned short mode; /* pre-set mode (reg. 15) */
206 short gap0;
208 unsigned char phys_addr[12]; /* physical ethernet address
209 only 0, 1, 4, 5, 8, 9 are valid
210 2, 3, 6, 7, 10, 11 are gaps */
211 unsigned short filter[8]; /* multicast filter
212 only 0, 2, 4, 6 are valid
213 1, 3, 5, 7 are gaps */
215 /* Receive and transmit ring base, along with extra bits. */
216 unsigned short rx_ptr; /* receive descriptor addr */
217 short gap1;
218 unsigned short rx_len; /* receive len and high addr */
219 short gap2;
220 unsigned short tx_ptr; /* transmit descriptor addr */
221 short gap3;
222 unsigned short tx_len; /* transmit len and high addr */
223 short gap4;
224 short gap5[8];
226 /* The buffer descriptors */
227 struct lance_rx_desc brx_ring[RX_RING_SIZE];
228 struct lance_tx_desc btx_ring[TX_RING_SIZE];
231 #define BUF_OFFSET_CPU sizeof(struct lance_init_block)
232 #define BUF_OFFSET_LNC (sizeof(struct lance_init_block)>>1)
234 #define libdesc_offset(rt, elem) \
235 ((__u32)(((unsigned long)(&(((struct lance_init_block *)0)->rt[elem])))))
238 * This works *only* for the ring descriptors
240 #define LANCE_ADDR(x) (PHYSADDR(x) >> 1)
242 struct lance_private {
243 struct net_device *next;
244 int type;
245 int slot;
246 int dma_irq;
247 volatile struct lance_regs *ll;
248 volatile struct lance_init_block *init_block;
250 spinlock_t lock;
252 int rx_new, tx_new;
253 int rx_old, tx_old;
255 struct net_device_stats stats;
257 unsigned short busmaster_regval;
259 struct timer_list multicast_timer;
261 /* Pointers to the ring buffers as seen from the CPU */
262 char *rx_buf_ptr_cpu[RX_RING_SIZE];
263 char *tx_buf_ptr_cpu[TX_RING_SIZE];
265 /* Pointers to the ring buffers as seen from the LANCE */
266 char *rx_buf_ptr_lnc[RX_RING_SIZE];
267 char *tx_buf_ptr_lnc[TX_RING_SIZE];
270 #define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?\
271 lp->tx_old+TX_RING_MOD_MASK-lp->tx_new:\
272 lp->tx_old - lp->tx_new-1)
274 /* The lance control ports are at an absolute address, machine and tc-slot
275 * dependent.
276 * DECstations do only 32-bit access and the LANCE uses 16 bit addresses,
277 * so we have to give the structure an extra member making rap pointing
278 * at the right address
280 struct lance_regs {
281 volatile unsigned short rdp; /* register data port */
282 unsigned short pad;
283 volatile unsigned short rap; /* register address port */
286 int dec_lance_debug = 2;
288 static struct net_device *root_lance_dev;
290 static inline void writereg(volatile unsigned short *regptr, short value)
292 *regptr = value;
293 iob();
296 /* Load the CSR registers */
297 static void load_csrs(struct lance_private *lp)
299 volatile struct lance_regs *ll = lp->ll;
300 int leptr;
302 /* The address space as seen from the LANCE
303 * begins at address 0. HK
305 leptr = 0;
307 writereg(&ll->rap, LE_CSR1);
308 writereg(&ll->rdp, (leptr & 0xFFFF));
309 writereg(&ll->rap, LE_CSR2);
310 writereg(&ll->rdp, leptr >> 16);
311 writereg(&ll->rap, LE_CSR3);
312 writereg(&ll->rdp, lp->busmaster_regval);
314 /* Point back to csr0 */
315 writereg(&ll->rap, LE_CSR0);
319 * Our specialized copy routines
322 void cp_to_buf(const int type, void *to, const void *from, int len)
324 unsigned short *tp, *fp, clen;
325 unsigned char *rtp, *rfp;
327 if (type == PMAX_LANCE) {
328 clen = len >> 1;
329 tp = (unsigned short *) to;
330 fp = (unsigned short *) from;
332 while (clen--) {
333 *tp++ = *fp++;
334 tp++;
337 clen = len & 1;
338 rtp = (unsigned char *) tp;
339 rfp = (unsigned char *) fp;
340 while (clen--) {
341 *rtp++ = *rfp++;
343 } else {
345 * copy 16 Byte chunks
347 clen = len >> 4;
348 tp = (unsigned short *) to;
349 fp = (unsigned short *) from;
350 while (clen--) {
351 *tp++ = *fp++;
352 *tp++ = *fp++;
353 *tp++ = *fp++;
354 *tp++ = *fp++;
355 *tp++ = *fp++;
356 *tp++ = *fp++;
357 *tp++ = *fp++;
358 *tp++ = *fp++;
359 tp += 8;
363 * do the rest, if any.
365 clen = len & 15;
366 rtp = (unsigned char *) tp;
367 rfp = (unsigned char *) fp;
368 while (clen--) {
369 *rtp++ = *rfp++;
373 iob();
376 void cp_from_buf(const int type, void *to, const void *from, int len)
378 unsigned short *tp, *fp, clen;
379 unsigned char *rtp, *rfp;
381 if (type == PMAX_LANCE) {
382 clen = len >> 1;
383 tp = (unsigned short *) to;
384 fp = (unsigned short *) from;
385 while (clen--) {
386 *tp++ = *fp++;
387 fp++;
390 clen = len & 1;
392 rtp = (unsigned char *) tp;
393 rfp = (unsigned char *) fp;
395 while (clen--) {
396 *rtp++ = *rfp++;
398 } else {
401 * copy 16 Byte chunks
403 clen = len >> 4;
404 tp = (unsigned short *) to;
405 fp = (unsigned short *) from;
406 while (clen--) {
407 *tp++ = *fp++;
408 *tp++ = *fp++;
409 *tp++ = *fp++;
410 *tp++ = *fp++;
411 *tp++ = *fp++;
412 *tp++ = *fp++;
413 *tp++ = *fp++;
414 *tp++ = *fp++;
415 fp += 8;
419 * do the rest, if any.
421 clen = len & 15;
422 rtp = (unsigned char *) tp;
423 rfp = (unsigned char *) fp;
424 while (clen--) {
425 *rtp++ = *rfp++;
433 /* Setup the Lance Rx and Tx rings */
434 static void lance_init_ring(struct net_device *dev)
436 struct lance_private *lp = netdev_priv(dev);
437 volatile struct lance_init_block *ib;
438 int leptr;
439 int i;
441 ib = (struct lance_init_block *) (dev->mem_start);
443 /* Lock out other processes while setting up hardware */
444 netif_stop_queue(dev);
445 lp->rx_new = lp->tx_new = 0;
446 lp->rx_old = lp->tx_old = 0;
448 /* Copy the ethernet address to the lance init block.
449 * XXX bit 0 of the physical address registers has to be zero
451 ib->phys_addr[0] = dev->dev_addr[0];
452 ib->phys_addr[1] = dev->dev_addr[1];
453 ib->phys_addr[4] = dev->dev_addr[2];
454 ib->phys_addr[5] = dev->dev_addr[3];
455 ib->phys_addr[8] = dev->dev_addr[4];
456 ib->phys_addr[9] = dev->dev_addr[5];
457 /* Setup the initialization block */
459 /* Setup rx descriptor pointer */
460 leptr = LANCE_ADDR(libdesc_offset(brx_ring, 0));
461 ib->rx_len = (LANCE_LOG_RX_BUFFERS << 13) | (leptr >> 16);
462 ib->rx_ptr = leptr;
463 if (ZERO)
464 printk("RX ptr: %8.8x(%8.8x)\n", leptr, libdesc_offset(brx_ring, 0));
466 /* Setup tx descriptor pointer */
467 leptr = LANCE_ADDR(libdesc_offset(btx_ring, 0));
468 ib->tx_len = (LANCE_LOG_TX_BUFFERS << 13) | (leptr >> 16);
469 ib->tx_ptr = leptr;
470 if (ZERO)
471 printk("TX ptr: %8.8x(%8.8x)\n", leptr, libdesc_offset(btx_ring, 0));
473 if (ZERO)
474 printk("TX rings:\n");
476 /* Setup the Tx ring entries */
477 for (i = 0; i < TX_RING_SIZE; i++) {
478 leptr = (int) lp->tx_buf_ptr_lnc[i];
479 ib->btx_ring[i].tmd0 = leptr;
480 ib->btx_ring[i].tmd1_hadr = leptr >> 16;
481 ib->btx_ring[i].tmd1_bits = 0;
482 ib->btx_ring[i].length = 0xf000; /* The ones required by tmd2 */
483 ib->btx_ring[i].misc = 0;
484 if (i < 3 && ZERO)
485 printk("%d: 0x%8.8x(0x%8.8x)\n", i, leptr, (int) lp->tx_buf_ptr_cpu[i]);
488 /* Setup the Rx ring entries */
489 if (ZERO)
490 printk("RX rings:\n");
491 for (i = 0; i < RX_RING_SIZE; i++) {
492 leptr = (int) lp->rx_buf_ptr_lnc[i];
493 ib->brx_ring[i].rmd0 = leptr;
494 ib->brx_ring[i].rmd1_hadr = leptr >> 16;
495 ib->brx_ring[i].rmd1_bits = LE_R1_OWN;
496 ib->brx_ring[i].length = -RX_BUFF_SIZE | 0xf000;
497 ib->brx_ring[i].mblength = 0;
498 if (i < 3 && ZERO)
499 printk("%d: 0x%8.8x(0x%8.8x)\n", i, leptr, (int) lp->rx_buf_ptr_cpu[i]);
501 iob();
504 static int init_restart_lance(struct lance_private *lp)
506 volatile struct lance_regs *ll = lp->ll;
507 int i;
509 writereg(&ll->rap, LE_CSR0);
510 writereg(&ll->rdp, LE_C0_INIT);
512 /* Wait for the lance to complete initialization */
513 for (i = 0; (i < 100) && !(ll->rdp & LE_C0_IDON); i++) {
514 udelay(10);
516 if ((i == 100) || (ll->rdp & LE_C0_ERR)) {
517 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n", i, ll->rdp);
518 return -1;
520 if ((ll->rdp & LE_C0_ERR)) {
521 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n", i, ll->rdp);
522 return -1;
524 writereg(&ll->rdp, LE_C0_IDON);
525 writereg(&ll->rdp, LE_C0_STRT);
526 writereg(&ll->rdp, LE_C0_INEA);
528 return 0;
531 static int lance_rx(struct net_device *dev)
533 struct lance_private *lp = netdev_priv(dev);
534 volatile struct lance_init_block *ib;
535 volatile struct lance_rx_desc *rd = 0;
536 unsigned char bits;
537 int len = 0;
538 struct sk_buff *skb = 0;
539 ib = (struct lance_init_block *) (dev->mem_start);
541 #ifdef TEST_HITS
543 int i;
545 printk("[");
546 for (i = 0; i < RX_RING_SIZE; i++) {
547 if (i == lp->rx_new)
548 printk("%s", ib->brx_ring[i].rmd1_bits &
549 LE_R1_OWN ? "_" : "X");
550 else
551 printk("%s", ib->brx_ring[i].rmd1_bits &
552 LE_R1_OWN ? "." : "1");
554 printk("]");
556 #endif
558 for (rd = &ib->brx_ring[lp->rx_new];
559 !((bits = rd->rmd1_bits) & LE_R1_OWN);
560 rd = &ib->brx_ring[lp->rx_new]) {
562 /* We got an incomplete frame? */
563 if ((bits & LE_R1_POK) != LE_R1_POK) {
564 lp->stats.rx_over_errors++;
565 lp->stats.rx_errors++;
566 } else if (bits & LE_R1_ERR) {
567 /* Count only the end frame as a rx error,
568 * not the beginning
570 if (bits & LE_R1_BUF)
571 lp->stats.rx_fifo_errors++;
572 if (bits & LE_R1_CRC)
573 lp->stats.rx_crc_errors++;
574 if (bits & LE_R1_OFL)
575 lp->stats.rx_over_errors++;
576 if (bits & LE_R1_FRA)
577 lp->stats.rx_frame_errors++;
578 if (bits & LE_R1_EOP)
579 lp->stats.rx_errors++;
580 } else {
581 len = (rd->mblength & 0xfff) - 4;
582 skb = dev_alloc_skb(len + 2);
584 if (skb == 0) {
585 printk("%s: Memory squeeze, deferring packet.\n",
586 dev->name);
587 lp->stats.rx_dropped++;
588 rd->mblength = 0;
589 rd->rmd1_bits = LE_R1_OWN;
590 lp->rx_new = (lp->rx_new + 1) & RX_RING_MOD_MASK;
591 return 0;
593 lp->stats.rx_bytes += len;
595 skb->dev = dev;
596 skb_reserve(skb, 2); /* 16 byte align */
597 skb_put(skb, len); /* make room */
599 cp_from_buf(lp->type, skb->data,
600 (char *)lp->rx_buf_ptr_cpu[lp->rx_new],
601 len);
603 skb->protocol = eth_type_trans(skb, dev);
604 netif_rx(skb);
605 dev->last_rx = jiffies;
606 lp->stats.rx_packets++;
609 /* Return the packet to the pool */
610 rd->mblength = 0;
611 rd->length = -RX_BUFF_SIZE | 0xf000;
612 rd->rmd1_bits = LE_R1_OWN;
613 lp->rx_new = (lp->rx_new + 1) & RX_RING_MOD_MASK;
615 return 0;
618 static void lance_tx(struct net_device *dev)
620 struct lance_private *lp = netdev_priv(dev);
621 volatile struct lance_init_block *ib;
622 volatile struct lance_regs *ll = lp->ll;
623 volatile struct lance_tx_desc *td;
624 int i, j;
625 int status;
626 ib = (struct lance_init_block *) (dev->mem_start);
627 j = lp->tx_old;
629 spin_lock(&lp->lock);
631 for (i = j; i != lp->tx_new; i = j) {
632 td = &ib->btx_ring[i];
633 /* If we hit a packet not owned by us, stop */
634 if (td->tmd1_bits & LE_T1_OWN)
635 break;
637 if (td->tmd1_bits & LE_T1_ERR) {
638 status = td->misc;
640 lp->stats.tx_errors++;
641 if (status & LE_T3_RTY)
642 lp->stats.tx_aborted_errors++;
643 if (status & LE_T3_LCOL)
644 lp->stats.tx_window_errors++;
646 if (status & LE_T3_CLOS) {
647 lp->stats.tx_carrier_errors++;
648 printk("%s: Carrier Lost\n", dev->name);
649 /* Stop the lance */
650 writereg(&ll->rap, LE_CSR0);
651 writereg(&ll->rdp, LE_C0_STOP);
652 lance_init_ring(dev);
653 load_csrs(lp);
654 init_restart_lance(lp);
655 goto out;
657 /* Buffer errors and underflows turn off the
658 * transmitter, restart the adapter.
660 if (status & (LE_T3_BUF | LE_T3_UFL)) {
661 lp->stats.tx_fifo_errors++;
663 printk("%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
664 dev->name);
665 /* Stop the lance */
666 writereg(&ll->rap, LE_CSR0);
667 writereg(&ll->rdp, LE_C0_STOP);
668 lance_init_ring(dev);
669 load_csrs(lp);
670 init_restart_lance(lp);
671 goto out;
673 } else if ((td->tmd1_bits & LE_T1_POK) == LE_T1_POK) {
675 * So we don't count the packet more than once.
677 td->tmd1_bits &= ~(LE_T1_POK);
679 /* One collision before packet was sent. */
680 if (td->tmd1_bits & LE_T1_EONE)
681 lp->stats.collisions++;
683 /* More than one collision, be optimistic. */
684 if (td->tmd1_bits & LE_T1_EMORE)
685 lp->stats.collisions += 2;
687 lp->stats.tx_packets++;
689 j = (j + 1) & TX_RING_MOD_MASK;
691 lp->tx_old = j;
692 out:
693 if (netif_queue_stopped(dev) &&
694 TX_BUFFS_AVAIL > 0)
695 netif_wake_queue(dev);
697 spin_unlock(&lp->lock);
700 static void lance_dma_merr_int(const int irq, void *dev_id,
701 struct pt_regs *regs)
703 struct net_device *dev = (struct net_device *) dev_id;
705 printk("%s: DMA error\n", dev->name);
708 static irqreturn_t
709 lance_interrupt(const int irq, void *dev_id, struct pt_regs *regs)
711 struct net_device *dev = (struct net_device *) dev_id;
712 struct lance_private *lp = netdev_priv(dev);
713 volatile struct lance_regs *ll = lp->ll;
714 int csr0;
716 writereg(&ll->rap, LE_CSR0);
717 csr0 = ll->rdp;
719 /* Acknowledge all the interrupt sources ASAP */
720 writereg(&ll->rdp, csr0 & (LE_C0_INTR | LE_C0_TINT | LE_C0_RINT));
722 if ((csr0 & LE_C0_ERR)) {
723 /* Clear the error condition */
724 writereg(&ll->rdp, LE_C0_BABL | LE_C0_ERR | LE_C0_MISS |
725 LE_C0_CERR | LE_C0_MERR);
727 if (csr0 & LE_C0_RINT)
728 lance_rx(dev);
730 if (csr0 & LE_C0_TINT)
731 lance_tx(dev);
733 if (csr0 & LE_C0_BABL)
734 lp->stats.tx_errors++;
736 if (csr0 & LE_C0_MISS)
737 lp->stats.rx_errors++;
739 if (csr0 & LE_C0_MERR) {
740 printk("%s: Memory error, status %04x\n", dev->name, csr0);
742 writereg(&ll->rdp, LE_C0_STOP);
744 lance_init_ring(dev);
745 load_csrs(lp);
746 init_restart_lance(lp);
747 netif_wake_queue(dev);
750 writereg(&ll->rdp, LE_C0_INEA);
751 writereg(&ll->rdp, LE_C0_INEA);
752 return IRQ_HANDLED;
755 struct net_device *last_dev = 0;
757 static int lance_open(struct net_device *dev)
759 volatile struct lance_init_block *ib = (struct lance_init_block *) (dev->mem_start);
760 struct lance_private *lp = netdev_priv(dev);
761 volatile struct lance_regs *ll = lp->ll;
762 int status = 0;
764 last_dev = dev;
766 /* Stop the Lance */
767 writereg(&ll->rap, LE_CSR0);
768 writereg(&ll->rdp, LE_C0_STOP);
770 /* Set mode and clear multicast filter only at device open,
771 * so that lance_init_ring() called at any error will not
772 * forget multicast filters.
774 * BTW it is common bug in all lance drivers! --ANK
776 ib->mode = 0;
777 ib->filter [0] = 0;
778 ib->filter [2] = 0;
779 ib->filter [4] = 0;
780 ib->filter [6] = 0;
782 lance_init_ring(dev);
783 load_csrs(lp);
785 netif_start_queue(dev);
787 /* Associate IRQ with lance_interrupt */
788 if (request_irq(dev->irq, &lance_interrupt, 0, "lance", dev)) {
789 printk("%s: Can't get IRQ %d\n", dev->name, dev->irq);
790 return -EAGAIN;
792 if (lp->dma_irq >= 0) {
793 unsigned long flags;
795 if (request_irq(lp->dma_irq, &lance_dma_merr_int, 0,
796 "lance error", dev)) {
797 free_irq(dev->irq, dev);
798 printk("%s: Can't get DMA IRQ %d\n", dev->name,
799 lp->dma_irq);
800 return -EAGAIN;
803 spin_lock_irqsave(&ioasic_ssr_lock, flags);
805 fast_mb();
806 /* Enable I/O ASIC LANCE DMA. */
807 ioasic_write(IO_REG_SSR,
808 ioasic_read(IO_REG_SSR) | IO_SSR_LANCE_DMA_EN);
810 fast_mb();
811 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
814 status = init_restart_lance(lp);
817 * if (!status)
818 * MOD_INC_USE_COUNT;
821 return status;
824 static int lance_close(struct net_device *dev)
826 struct lance_private *lp = netdev_priv(dev);
827 volatile struct lance_regs *ll = lp->ll;
829 netif_stop_queue(dev);
830 del_timer_sync(&lp->multicast_timer);
832 /* Stop the card */
833 writereg(&ll->rap, LE_CSR0);
834 writereg(&ll->rdp, LE_C0_STOP);
836 if (lp->dma_irq >= 0) {
837 unsigned long flags;
839 spin_lock_irqsave(&ioasic_ssr_lock, flags);
841 fast_mb();
842 /* Disable I/O ASIC LANCE DMA. */
843 ioasic_write(IO_REG_SSR,
844 ioasic_read(IO_REG_SSR) & ~IO_SSR_LANCE_DMA_EN);
846 fast_iob();
847 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
849 free_irq(lp->dma_irq, dev);
851 free_irq(dev->irq, dev);
853 MOD_DEC_USE_COUNT;
855 return 0;
858 static inline int lance_reset(struct net_device *dev)
860 struct lance_private *lp = netdev_priv(dev);
861 volatile struct lance_regs *ll = lp->ll;
862 int status;
864 /* Stop the lance */
865 writereg(&ll->rap, LE_CSR0);
866 writereg(&ll->rdp, LE_C0_STOP);
868 lance_init_ring(dev);
869 load_csrs(lp);
870 dev->trans_start = jiffies;
871 status = init_restart_lance(lp);
872 return status;
875 static void lance_tx_timeout(struct net_device *dev)
877 struct lance_private *lp = netdev_priv(dev);
878 volatile struct lance_regs *ll = lp->ll;
880 printk(KERN_ERR "%s: transmit timed out, status %04x, reset\n",
881 dev->name, ll->rdp);
882 lance_reset(dev);
883 netif_wake_queue(dev);
886 static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
888 struct lance_private *lp = netdev_priv(dev);
889 volatile struct lance_regs *ll = lp->ll;
890 volatile struct lance_init_block *ib = (struct lance_init_block *) (dev->mem_start);
891 int entry, skblen, len;
893 skblen = skb->len;
895 len = skblen;
897 if (len < ETH_ZLEN) {
898 skb = skb_padto(skb, ETH_ZLEN);
899 if (skb == NULL)
900 return 0;
901 len = ETH_ZLEN;
904 lp->stats.tx_bytes += len;
906 entry = lp->tx_new & TX_RING_MOD_MASK;
907 ib->btx_ring[entry].length = (-len);
908 ib->btx_ring[entry].misc = 0;
910 cp_to_buf(lp->type, (char *)lp->tx_buf_ptr_cpu[entry], skb->data,
911 skblen);
913 /* Clear the slack of the packet, do I need this? */
914 /* For a firewall it's a good idea - AC */
916 if (len != skblen)
917 memset ((char *) &ib->tx_buf [entry][skblen], 0, (len - skblen) << 1);
920 /* Now, give the packet to the lance */
921 ib->btx_ring[entry].tmd1_bits = (LE_T1_POK | LE_T1_OWN);
922 lp->tx_new = (lp->tx_new + 1) & TX_RING_MOD_MASK;
924 if (TX_BUFFS_AVAIL <= 0)
925 netif_stop_queue(dev);
927 /* Kick the lance: transmit now */
928 writereg(&ll->rdp, LE_C0_INEA | LE_C0_TDMD);
930 spin_unlock_irq(&lp->lock);
932 dev->trans_start = jiffies;
933 dev_kfree_skb(skb);
935 return 0;
938 static struct net_device_stats *lance_get_stats(struct net_device *dev)
940 struct lance_private *lp = netdev_priv(dev);
942 return &lp->stats;
945 static void lance_load_multicast(struct net_device *dev)
947 volatile struct lance_init_block *ib = (struct lance_init_block *) (dev->mem_start);
948 volatile u16 *mcast_table = (u16 *) & ib->filter;
949 struct dev_mc_list *dmi = dev->mc_list;
950 char *addrs;
951 int i;
952 u32 crc;
954 /* set all multicast bits */
955 if (dev->flags & IFF_ALLMULTI) {
956 ib->filter[0] = 0xffff;
957 ib->filter[2] = 0xffff;
958 ib->filter[4] = 0xffff;
959 ib->filter[6] = 0xffff;
960 return;
962 /* clear the multicast filter */
963 ib->filter[0] = 0;
964 ib->filter[2] = 0;
965 ib->filter[4] = 0;
966 ib->filter[6] = 0;
968 /* Add addresses */
969 for (i = 0; i < dev->mc_count; i++) {
970 addrs = dmi->dmi_addr;
971 dmi = dmi->next;
973 /* multicast address? */
974 if (!(*addrs & 1))
975 continue;
977 crc = ether_crc_le(ETH_ALEN, addrs);
978 crc = crc >> 26;
979 mcast_table[2 * (crc >> 4)] |= 1 << (crc & 0xf);
981 return;
984 static void lance_set_multicast(struct net_device *dev)
986 struct lance_private *lp = netdev_priv(dev);
987 volatile struct lance_init_block *ib;
988 volatile struct lance_regs *ll = lp->ll;
990 ib = (struct lance_init_block *) (dev->mem_start);
992 if (!netif_running(dev))
993 return;
995 if (lp->tx_old != lp->tx_new) {
996 mod_timer(&lp->multicast_timer, jiffies + 4 * HZ/100);
997 netif_wake_queue(dev);
998 return;
1001 netif_stop_queue(dev);
1003 writereg(&ll->rap, LE_CSR0);
1004 writereg(&ll->rdp, LE_C0_STOP);
1006 lance_init_ring(dev);
1008 if (dev->flags & IFF_PROMISC) {
1009 ib->mode |= LE_MO_PROM;
1010 } else {
1011 ib->mode &= ~LE_MO_PROM;
1012 lance_load_multicast(dev);
1014 load_csrs(lp);
1015 init_restart_lance(lp);
1016 netif_wake_queue(dev);
1019 static void lance_set_multicast_retry(unsigned long _opaque)
1021 struct net_device *dev = (struct net_device *) _opaque;
1023 lance_set_multicast(dev);
1026 static int __init dec_lance_init(const int type, const int slot)
1028 static unsigned version_printed;
1029 static const char fmt[] = "declance%d";
1030 char name[10];
1031 struct net_device *dev;
1032 struct lance_private *lp;
1033 volatile struct lance_regs *ll;
1034 int i, ret;
1035 unsigned long esar_base;
1036 unsigned char *esar;
1038 #ifndef CONFIG_TC
1039 system_base = KN01_LANCE_BASE;
1040 #endif
1042 if (dec_lance_debug && version_printed++ == 0)
1043 printk(version);
1045 i = 0;
1046 dev = root_lance_dev;
1047 while (dev) {
1048 i++;
1049 lp = (struct lance_private *)dev->priv;
1050 dev = lp->next;
1052 snprintf(name, sizeof(name), fmt, i);
1054 dev = alloc_etherdev(sizeof(struct lance_private));
1055 if (!dev) {
1056 printk(KERN_ERR "%s: Unable to allocate etherdev, aborting.\n",
1057 name);
1058 ret = -ENOMEM;
1059 goto err_out;
1063 * alloc_etherdev ensures the data structures used by the LANCE
1064 * are aligned.
1066 lp = netdev_priv(dev);
1067 spin_lock_init(&lp->lock);
1069 lp->type = type;
1070 lp->slot = slot;
1071 switch (type) {
1072 #ifdef CONFIG_TC
1073 case ASIC_LANCE:
1074 dev->base_addr = system_base + IOASIC_LANCE;
1076 /* buffer space for the on-board LANCE shared memory */
1078 * FIXME: ugly hack!
1080 dev->mem_start = KSEG1ADDR(0x00020000);
1081 dev->mem_end = dev->mem_start + 0x00020000;
1082 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
1083 esar_base = system_base + IOASIC_ESAR;
1085 /* Workaround crash with booting KN04 2.1k from Disk */
1086 memset((void *)dev->mem_start, 0,
1087 dev->mem_end - dev->mem_start);
1090 * setup the pointer arrays, this sucks [tm] :-(
1092 for (i = 0; i < RX_RING_SIZE; i++) {
1093 lp->rx_buf_ptr_cpu[i] =
1094 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1095 2 * i * RX_BUFF_SIZE);
1096 lp->rx_buf_ptr_lnc[i] =
1097 (char *)(BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
1099 for (i = 0; i < TX_RING_SIZE; i++) {
1100 lp->tx_buf_ptr_cpu[i] =
1101 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1102 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1103 2 * i * TX_BUFF_SIZE);
1104 lp->tx_buf_ptr_lnc[i] =
1105 (char *)(BUF_OFFSET_LNC +
1106 RX_RING_SIZE * RX_BUFF_SIZE +
1107 i * TX_BUFF_SIZE);
1110 /* Setup I/O ASIC LANCE DMA. */
1111 lp->dma_irq = dec_interrupt[DEC_IRQ_LANCE_MERR];
1112 ioasic_write(IO_REG_LANCE_DMA_P,
1113 PHYSADDR(dev->mem_start) << 3);
1115 break;
1117 case PMAD_LANCE:
1118 claim_tc_card(slot);
1120 dev->mem_start = get_tc_base_addr(slot);
1121 dev->base_addr = dev->mem_start + 0x100000;
1122 dev->irq = get_tc_irq_nr(slot);
1123 esar_base = dev->mem_start + 0x1c0002;
1124 lp->dma_irq = -1;
1126 for (i = 0; i < RX_RING_SIZE; i++) {
1127 lp->rx_buf_ptr_cpu[i] =
1128 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1129 i * RX_BUFF_SIZE);
1130 lp->rx_buf_ptr_lnc[i] =
1131 (char *)(BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
1133 for (i = 0; i < TX_RING_SIZE; i++) {
1134 lp->tx_buf_ptr_cpu[i] =
1135 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1136 RX_RING_SIZE * RX_BUFF_SIZE +
1137 i * TX_BUFF_SIZE);
1138 lp->tx_buf_ptr_lnc[i] =
1139 (char *)(BUF_OFFSET_LNC +
1140 RX_RING_SIZE * RX_BUFF_SIZE +
1141 i * TX_BUFF_SIZE);
1144 break;
1145 #endif
1147 case PMAX_LANCE:
1148 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
1149 dev->base_addr = KN01_LANCE_BASE;
1150 dev->mem_start = KN01_LANCE_BASE + 0x01000000;
1151 esar_base = KN01_RTC_BASE + 1;
1152 lp->dma_irq = -1;
1155 * setup the pointer arrays, this sucks [tm] :-(
1157 for (i = 0; i < RX_RING_SIZE; i++) {
1158 lp->rx_buf_ptr_cpu[i] =
1159 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1160 2 * i * RX_BUFF_SIZE);
1161 lp->rx_buf_ptr_lnc[i] =
1162 (char *)(BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
1164 for (i = 0; i < TX_RING_SIZE; i++) {
1165 lp->tx_buf_ptr_cpu[i] =
1166 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1167 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1168 2 * i * TX_BUFF_SIZE);
1169 lp->tx_buf_ptr_lnc[i] =
1170 (char *)(BUF_OFFSET_LNC +
1171 RX_RING_SIZE * RX_BUFF_SIZE +
1172 i * TX_BUFF_SIZE);
1175 break;
1177 default:
1178 printk(KERN_ERR "%s: declance_init called with unknown type\n",
1179 name);
1180 ret = -ENODEV;
1181 goto err_out_free_dev;
1184 ll = (struct lance_regs *) dev->base_addr;
1185 esar = (unsigned char *) esar_base;
1187 /* prom checks */
1188 /* First, check for test pattern */
1189 if (esar[0x60] != 0xff && esar[0x64] != 0x00 &&
1190 esar[0x68] != 0x55 && esar[0x6c] != 0xaa) {
1191 printk(KERN_ERR
1192 "%s: Ethernet station address prom not found!\n",
1193 name);
1194 ret = -ENODEV;
1195 goto err_out_free_dev;
1197 /* Check the prom contents */
1198 for (i = 0; i < 8; i++) {
1199 if (esar[i * 4] != esar[0x3c - i * 4] &&
1200 esar[i * 4] != esar[0x40 + i * 4] &&
1201 esar[0x3c - i * 4] != esar[0x40 + i * 4]) {
1202 printk(KERN_ERR "%s: Something is wrong with the "
1203 "ethernet station address prom!\n", name);
1204 ret = -ENODEV;
1205 goto err_out_free_dev;
1209 /* Copy the ethernet address to the device structure, later to the
1210 * lance initialization block so the lance gets it every time it's
1211 * (re)initialized.
1213 switch (type) {
1214 case ASIC_LANCE:
1215 printk("%s: IOASIC onboard LANCE, addr = ", name);
1216 break;
1217 case PMAD_LANCE:
1218 printk("%s: PMAD-AA, addr = ", name);
1219 break;
1220 case PMAX_LANCE:
1221 printk("%s: PMAX onboard LANCE, addr = ", name);
1222 break;
1224 for (i = 0; i < 6; i++) {
1225 dev->dev_addr[i] = esar[i * 4];
1226 printk("%2.2x%c", dev->dev_addr[i], i == 5 ? ',' : ':');
1229 printk(" irq = %d\n", dev->irq);
1231 dev->open = &lance_open;
1232 dev->stop = &lance_close;
1233 dev->hard_start_xmit = &lance_start_xmit;
1234 dev->tx_timeout = &lance_tx_timeout;
1235 dev->watchdog_timeo = 5*HZ;
1236 dev->get_stats = &lance_get_stats;
1237 dev->set_multicast_list = &lance_set_multicast;
1239 /* lp->ll is the location of the registers for lance card */
1240 lp->ll = ll;
1242 /* busmaster_regval (CSR3) should be zero according to the PMAD-AA
1243 * specification.
1245 lp->busmaster_regval = 0;
1247 dev->dma = 0;
1249 /* We cannot sleep if the chip is busy during a
1250 * multicast list update event, because such events
1251 * can occur from interrupts (ex. IPv6). So we
1252 * use a timer to try again later when necessary. -DaveM
1254 init_timer(&lp->multicast_timer);
1255 lp->multicast_timer.data = (unsigned long) dev;
1256 lp->multicast_timer.function = &lance_set_multicast_retry;
1258 ret = register_netdev(dev);
1259 if (ret) {
1260 printk(KERN_ERR
1261 "%s: Unable to register netdev, aborting.\n", name);
1262 goto err_out_free_dev;
1265 lp->next = root_lance_dev;
1266 root_lance_dev = dev;
1268 printk("%s: registered as %s.\n", name, dev->name);
1269 return 0;
1271 err_out_free_dev:
1272 kfree(dev);
1274 err_out:
1275 return ret;
1279 /* Find all the lance cards on the system and initialize them */
1280 static int __init dec_lance_probe(void)
1282 int count = 0;
1284 /* Scan slots for PMAD-AA cards first. */
1285 #ifdef CONFIG_TC
1286 if (TURBOCHANNEL) {
1287 int slot;
1289 while ((slot = search_tc_card("PMAD-AA")) >= 0) {
1290 if (dec_lance_init(PMAD_LANCE, slot) < 0)
1291 break;
1292 count++;
1295 #endif
1297 /* Then handle onboard devices. */
1298 if (dec_interrupt[DEC_IRQ_LANCE] >= 0) {
1299 if (dec_interrupt[DEC_IRQ_LANCE_MERR] >= 0) {
1300 #ifdef CONFIG_TC
1301 if (dec_lance_init(ASIC_LANCE, -1) >= 0)
1302 count++;
1303 #endif
1304 } else if (!TURBOCHANNEL) {
1305 if (dec_lance_init(PMAX_LANCE, -1) >= 0)
1306 count++;
1310 return (count > 0) ? 0 : -ENODEV;
1313 static void __exit dec_lance_cleanup(void)
1315 while (root_lance_dev) {
1316 struct net_device *dev = root_lance_dev;
1317 struct lance_private *lp = netdev_priv(dev);
1318 unregister_netdev(dev);
1319 #ifdef CONFIG_TC
1320 if (lp->slot >= 0)
1321 release_tc_card(lp->slot);
1322 #endif
1323 root_lance_dev = lp->next;
1324 free_netdev(dev);
1328 module_init(dec_lance_probe);
1329 module_exit(dec_lance_cleanup);