net: convert print_mac to %pM
[deliverable/linux.git] / drivers / net / declance.c
CommitLineData
6aa20a22 1/*
1da177e4
LT
2 * Lance ethernet driver for the MIPS processor based
3 * DECstation family
4 *
5 *
6 * adopted from sunlance.c by Richard van den Berg
7 *
257b346d 8 * Copyright (C) 2002, 2003, 2005, 2006 Maciej W. Rozycki
1da177e4
LT
9 *
10 * additional sources:
11 * - PMAD-AA TURBOchannel Ethernet Module Functional Specification,
12 * Revision 1.2
13 *
14 * History:
15 *
16 * v0.001: The kernel accepts the code and it shows the hardware address.
17 *
18 * v0.002: Removed most sparc stuff, left only some module and dma stuff.
19 *
20 * v0.003: Enhanced base address calculation from proposals by
21 * Harald Koerfgen and Thomas Riemer.
22 *
23 * v0.004: lance-regs is pointing at the right addresses, added prom
24 * check. First start of address mapping and DMA.
25 *
26 * v0.005: started to play around with LANCE-DMA. This driver will not
27 * work for non IOASIC lances. HK
28 *
29 * v0.006: added pointer arrays to lance_private and setup routine for
30 * them in dec_lance_init. HK
31 *
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
38 *
39 * v0.008: mods to make PMAX_LANCE work. 01/09/1999 triemer
40 *
41 * v0.009: Module support fixes, multiple interfaces support, various
42 * bits. macro
3b6e8fe7
MR
43 *
44 * v0.010: Fixes for the PMAD mapping of the LANCE buffer and for the
45 * PMAX requirement to only use halfword accesses to the
46 * buffer. macro
257b346d
MR
47 *
48 * v0.011: Converted the PMAD to the driver model. macro
1da177e4
LT
49 */
50
1da177e4
LT
51#include <linux/crc32.h>
52#include <linux/delay.h>
53#include <linux/errno.h>
54#include <linux/if_ether.h>
55#include <linux/init.h>
56#include <linux/kernel.h>
57#include <linux/module.h>
58#include <linux/netdevice.h>
59#include <linux/etherdevice.h>
60#include <linux/spinlock.h>
61#include <linux/stddef.h>
62#include <linux/string.h>
257b346d 63#include <linux/tc.h>
3b6e8fe7 64#include <linux/types.h>
1da177e4
LT
65
66#include <asm/addrspace.h>
36156cdf
RB
67#include <asm/system.h>
68
1da177e4
LT
69#include <asm/dec/interrupts.h>
70#include <asm/dec/ioasic.h>
71#include <asm/dec/ioasic_addrs.h>
72#include <asm/dec/kn01.h>
73#include <asm/dec/machtype.h>
36156cdf 74#include <asm/dec/system.h>
1da177e4
LT
75
76static char version[] __devinitdata =
257b346d 77"declance.c: v0.011 by Linux MIPS DECstation task force\n";
1da177e4
LT
78
79MODULE_AUTHOR("Linux MIPS DECstation task force");
80MODULE_DESCRIPTION("DEC LANCE (DECstation onboard, PMAD-xx) driver");
81MODULE_LICENSE("GPL");
82
257b346d
MR
83#define __unused __attribute__ ((unused))
84
1da177e4
LT
85/*
86 * card types
87 */
88#define ASIC_LANCE 1
89#define PMAD_LANCE 2
90#define PMAX_LANCE 3
91
1da177e4
LT
92
93#define LE_CSR0 0
94#define LE_CSR1 1
95#define LE_CSR2 2
96#define LE_CSR3 3
97
98#define LE_MO_PROM 0x8000 /* Enable promiscuous mode */
99
100#define LE_C0_ERR 0x8000 /* Error: set if BAB, SQE, MISS or ME is set */
101#define LE_C0_BABL 0x4000 /* BAB: Babble: tx timeout. */
102#define LE_C0_CERR 0x2000 /* SQE: Signal quality error */
103#define LE_C0_MISS 0x1000 /* MISS: Missed a packet */
104#define LE_C0_MERR 0x0800 /* ME: Memory error */
105#define LE_C0_RINT 0x0400 /* Received interrupt */
106#define LE_C0_TINT 0x0200 /* Transmitter Interrupt */
107#define LE_C0_IDON 0x0100 /* IFIN: Init finished. */
108#define LE_C0_INTR 0x0080 /* Interrupt or error */
109#define LE_C0_INEA 0x0040 /* Interrupt enable */
110#define LE_C0_RXON 0x0020 /* Receiver on */
111#define LE_C0_TXON 0x0010 /* Transmitter on */
112#define LE_C0_TDMD 0x0008 /* Transmitter demand */
113#define LE_C0_STOP 0x0004 /* Stop the card */
114#define LE_C0_STRT 0x0002 /* Start the card */
115#define LE_C0_INIT 0x0001 /* Init the card */
116
117#define LE_C3_BSWP 0x4 /* SWAP */
118#define LE_C3_ACON 0x2 /* ALE Control */
119#define LE_C3_BCON 0x1 /* Byte control */
120
121/* Receive message descriptor 1 */
3b6e8fe7
MR
122#define LE_R1_OWN 0x8000 /* Who owns the entry */
123#define LE_R1_ERR 0x4000 /* Error: if FRA, OFL, CRC or BUF is set */
124#define LE_R1_FRA 0x2000 /* FRA: Frame error */
125#define LE_R1_OFL 0x1000 /* OFL: Frame overflow */
126#define LE_R1_CRC 0x0800 /* CRC error */
127#define LE_R1_BUF 0x0400 /* BUF: Buffer error */
128#define LE_R1_SOP 0x0200 /* Start of packet */
129#define LE_R1_EOP 0x0100 /* End of packet */
130#define LE_R1_POK 0x0300 /* Packet is complete: SOP + EOP */
131
132/* Transmit message descriptor 1 */
133#define LE_T1_OWN 0x8000 /* Lance owns the packet */
134#define LE_T1_ERR 0x4000 /* Error summary */
135#define LE_T1_EMORE 0x1000 /* Error: more than one retry needed */
136#define LE_T1_EONE 0x0800 /* Error: one retry needed */
137#define LE_T1_EDEF 0x0400 /* Error: deferred */
138#define LE_T1_SOP 0x0200 /* Start of packet */
139#define LE_T1_EOP 0x0100 /* End of packet */
140#define LE_T1_POK 0x0300 /* Packet is complete: SOP + EOP */
1da177e4
LT
141
142#define LE_T3_BUF 0x8000 /* Buffer error */
143#define LE_T3_UFL 0x4000 /* Error underflow */
144#define LE_T3_LCOL 0x1000 /* Error late collision */
145#define LE_T3_CLOS 0x0800 /* Error carrier loss */
146#define LE_T3_RTY 0x0400 /* Error retry */
147#define LE_T3_TDR 0x03ff /* Time Domain Reflectometry counter */
148
149/* Define: 2^4 Tx buffers and 2^4 Rx buffers */
150
151#ifndef LANCE_LOG_TX_BUFFERS
152#define LANCE_LOG_TX_BUFFERS 4
153#define LANCE_LOG_RX_BUFFERS 4
154#endif
155
156#define TX_RING_SIZE (1 << (LANCE_LOG_TX_BUFFERS))
157#define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
158
159#define RX_RING_SIZE (1 << (LANCE_LOG_RX_BUFFERS))
160#define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
161
162#define PKT_BUF_SZ 1536
163#define RX_BUFF_SIZE PKT_BUF_SZ
164#define TX_BUFF_SIZE PKT_BUF_SZ
165
166#undef TEST_HITS
167#define ZERO 0
168
3b6e8fe7
MR
169/*
170 * The DS2100/3100 have a linear 64 kB buffer which supports halfword
171 * accesses only. Each halfword of the buffer is word-aligned in the
172 * CPU address space.
173 *
174 * The PMAD-AA has a 128 kB buffer on-board.
1da177e4 175 *
3b6e8fe7
MR
176 * The IOASIC LANCE devices use a shared memory region. This region
177 * as seen from the CPU is (max) 128 kB long and has to be on an 128 kB
178 * boundary. The LANCE sees this as a 64 kB long continuous memory
179 * region.
1da177e4 180 *
3b6e8fe7
MR
181 * The LANCE's DMA address is used as an index in this buffer and DMA
182 * takes place in bursts of eight 16-bit words which are packed into
183 * four 32-bit words by the IOASIC. This leads to a strange padding:
184 * 16 bytes of valid data followed by a 16 byte gap :-(.
1da177e4
LT
185 */
186
187struct lance_rx_desc {
188 unsigned short rmd0; /* low address of packet */
3b6e8fe7
MR
189 unsigned short rmd1; /* high address of packet
190 and descriptor bits */
1da177e4
LT
191 short length; /* 2s complement (negative!)
192 of buffer length */
1da177e4 193 unsigned short mblength; /* actual number of bytes received */
1da177e4
LT
194};
195
196struct lance_tx_desc {
197 unsigned short tmd0; /* low address of packet */
3b6e8fe7
MR
198 unsigned short tmd1; /* high address of packet
199 and descriptor bits */
1da177e4
LT
200 short length; /* 2s complement (negative!)
201 of buffer length */
1da177e4 202 unsigned short misc;
1da177e4
LT
203};
204
205
206/* First part of the LANCE initialization block, described in databook. */
207struct lance_init_block {
208 unsigned short mode; /* pre-set mode (reg. 15) */
1da177e4 209
3b6e8fe7
MR
210 unsigned short phys_addr[3]; /* physical ethernet address */
211 unsigned short filter[4]; /* multicast filter */
1da177e4
LT
212
213 /* Receive and transmit ring base, along with extra bits. */
214 unsigned short rx_ptr; /* receive descriptor addr */
1da177e4 215 unsigned short rx_len; /* receive len and high addr */
1da177e4 216 unsigned short tx_ptr; /* transmit descriptor addr */
1da177e4 217 unsigned short tx_len; /* transmit len and high addr */
3b6e8fe7
MR
218
219 short gap[4];
1da177e4
LT
220
221 /* The buffer descriptors */
222 struct lance_rx_desc brx_ring[RX_RING_SIZE];
223 struct lance_tx_desc btx_ring[TX_RING_SIZE];
224};
225
226#define BUF_OFFSET_CPU sizeof(struct lance_init_block)
3b6e8fe7 227#define BUF_OFFSET_LNC sizeof(struct lance_init_block)
1da177e4 228
3b6e8fe7
MR
229#define shift_off(off, type) \
230 (type == ASIC_LANCE || type == PMAX_LANCE ? off << 1 : off)
1da177e4 231
3b6e8fe7
MR
232#define lib_off(rt, type) \
233 shift_off(offsetof(struct lance_init_block, rt), type)
234
235#define lib_ptr(ib, rt, type) \
236 ((volatile u16 *)((u8 *)(ib) + lib_off(rt, type)))
237
238#define rds_off(rt, type) \
239 shift_off(offsetof(struct lance_rx_desc, rt), type)
240
241#define rds_ptr(rd, rt, type) \
242 ((volatile u16 *)((u8 *)(rd) + rds_off(rt, type)))
243
244#define tds_off(rt, type) \
245 shift_off(offsetof(struct lance_tx_desc, rt), type)
246
247#define tds_ptr(td, rt, type) \
248 ((volatile u16 *)((u8 *)(td) + tds_off(rt, type)))
1da177e4
LT
249
250struct lance_private {
251 struct net_device *next;
252 int type;
1da177e4
LT
253 int dma_irq;
254 volatile struct lance_regs *ll;
1da177e4
LT
255
256 spinlock_t lock;
257
258 int rx_new, tx_new;
259 int rx_old, tx_old;
260
1da177e4
LT
261 unsigned short busmaster_regval;
262
263 struct timer_list multicast_timer;
264
265 /* Pointers to the ring buffers as seen from the CPU */
266 char *rx_buf_ptr_cpu[RX_RING_SIZE];
267 char *tx_buf_ptr_cpu[TX_RING_SIZE];
268
269 /* Pointers to the ring buffers as seen from the LANCE */
3b6e8fe7
MR
270 uint rx_buf_ptr_lnc[RX_RING_SIZE];
271 uint tx_buf_ptr_lnc[TX_RING_SIZE];
1da177e4
LT
272};
273
274#define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?\
275 lp->tx_old+TX_RING_MOD_MASK-lp->tx_new:\
276 lp->tx_old - lp->tx_new-1)
277
278/* The lance control ports are at an absolute address, machine and tc-slot
279 * dependent.
280 * DECstations do only 32-bit access and the LANCE uses 16 bit addresses,
281 * so we have to give the structure an extra member making rap pointing
282 * at the right address
283 */
284struct lance_regs {
285 volatile unsigned short rdp; /* register data port */
286 unsigned short pad;
287 volatile unsigned short rap; /* register address port */
288};
289
290int dec_lance_debug = 2;
291
257b346d 292static struct tc_driver dec_lance_tc_driver;
1da177e4
LT
293static struct net_device *root_lance_dev;
294
295static inline void writereg(volatile unsigned short *regptr, short value)
296{
297 *regptr = value;
298 iob();
299}
300
301/* Load the CSR registers */
302static void load_csrs(struct lance_private *lp)
303{
304 volatile struct lance_regs *ll = lp->ll;
3b6e8fe7 305 uint leptr;
1da177e4
LT
306
307 /* The address space as seen from the LANCE
308 * begins at address 0. HK
309 */
310 leptr = 0;
311
312 writereg(&ll->rap, LE_CSR1);
313 writereg(&ll->rdp, (leptr & 0xFFFF));
314 writereg(&ll->rap, LE_CSR2);
315 writereg(&ll->rdp, leptr >> 16);
316 writereg(&ll->rap, LE_CSR3);
317 writereg(&ll->rdp, lp->busmaster_regval);
318
319 /* Point back to csr0 */
320 writereg(&ll->rap, LE_CSR0);
321}
322
323/*
324 * Our specialized copy routines
325 *
326 */
3b6e8fe7 327static void cp_to_buf(const int type, void *to, const void *from, int len)
1da177e4
LT
328{
329 unsigned short *tp, *fp, clen;
330 unsigned char *rtp, *rfp;
331
3b6e8fe7
MR
332 if (type == PMAD_LANCE) {
333 memcpy(to, from, len);
334 } else if (type == PMAX_LANCE) {
1da177e4
LT
335 clen = len >> 1;
336 tp = (unsigned short *) to;
337 fp = (unsigned short *) from;
338
339 while (clen--) {
340 *tp++ = *fp++;
341 tp++;
342 }
343
344 clen = len & 1;
345 rtp = (unsigned char *) tp;
346 rfp = (unsigned char *) fp;
347 while (clen--) {
348 *rtp++ = *rfp++;
349 }
350 } else {
351 /*
352 * copy 16 Byte chunks
353 */
354 clen = len >> 4;
355 tp = (unsigned short *) to;
356 fp = (unsigned short *) from;
357 while (clen--) {
358 *tp++ = *fp++;
359 *tp++ = *fp++;
360 *tp++ = *fp++;
361 *tp++ = *fp++;
362 *tp++ = *fp++;
363 *tp++ = *fp++;
364 *tp++ = *fp++;
365 *tp++ = *fp++;
366 tp += 8;
367 }
368
369 /*
370 * do the rest, if any.
371 */
372 clen = len & 15;
373 rtp = (unsigned char *) tp;
374 rfp = (unsigned char *) fp;
375 while (clen--) {
376 *rtp++ = *rfp++;
377 }
378 }
379
380 iob();
381}
382
3b6e8fe7 383static void cp_from_buf(const int type, void *to, const void *from, int len)
1da177e4
LT
384{
385 unsigned short *tp, *fp, clen;
386 unsigned char *rtp, *rfp;
387
3b6e8fe7
MR
388 if (type == PMAD_LANCE) {
389 memcpy(to, from, len);
390 } else if (type == PMAX_LANCE) {
1da177e4
LT
391 clen = len >> 1;
392 tp = (unsigned short *) to;
393 fp = (unsigned short *) from;
394 while (clen--) {
395 *tp++ = *fp++;
396 fp++;
397 }
398
399 clen = len & 1;
400
401 rtp = (unsigned char *) tp;
402 rfp = (unsigned char *) fp;
403
404 while (clen--) {
405 *rtp++ = *rfp++;
406 }
407 } else {
408
409 /*
410 * copy 16 Byte chunks
411 */
412 clen = len >> 4;
413 tp = (unsigned short *) to;
414 fp = (unsigned short *) from;
415 while (clen--) {
416 *tp++ = *fp++;
417 *tp++ = *fp++;
418 *tp++ = *fp++;
419 *tp++ = *fp++;
420 *tp++ = *fp++;
421 *tp++ = *fp++;
422 *tp++ = *fp++;
423 *tp++ = *fp++;
424 fp += 8;
425 }
426
427 /*
428 * do the rest, if any.
429 */
430 clen = len & 15;
431 rtp = (unsigned char *) tp;
432 rfp = (unsigned char *) fp;
433 while (clen--) {
434 *rtp++ = *rfp++;
435 }
436
437
438 }
439
440}
441
442/* Setup the Lance Rx and Tx rings */
443static void lance_init_ring(struct net_device *dev)
444{
445 struct lance_private *lp = netdev_priv(dev);
3b6e8fe7
MR
446 volatile u16 *ib = (volatile u16 *)dev->mem_start;
447 uint leptr;
1da177e4
LT
448 int i;
449
1da177e4
LT
450 /* Lock out other processes while setting up hardware */
451 netif_stop_queue(dev);
452 lp->rx_new = lp->tx_new = 0;
453 lp->rx_old = lp->tx_old = 0;
454
455 /* Copy the ethernet address to the lance init block.
456 * XXX bit 0 of the physical address registers has to be zero
457 */
3b6e8fe7
MR
458 *lib_ptr(ib, phys_addr[0], lp->type) = (dev->dev_addr[1] << 8) |
459 dev->dev_addr[0];
460 *lib_ptr(ib, phys_addr[1], lp->type) = (dev->dev_addr[3] << 8) |
461 dev->dev_addr[2];
462 *lib_ptr(ib, phys_addr[2], lp->type) = (dev->dev_addr[5] << 8) |
463 dev->dev_addr[4];
1da177e4
LT
464 /* Setup the initialization block */
465
466 /* Setup rx descriptor pointer */
3b6e8fe7
MR
467 leptr = offsetof(struct lance_init_block, brx_ring);
468 *lib_ptr(ib, rx_len, lp->type) = (LANCE_LOG_RX_BUFFERS << 13) |
469 (leptr >> 16);
470 *lib_ptr(ib, rx_ptr, lp->type) = leptr;
1da177e4 471 if (ZERO)
3b6e8fe7
MR
472 printk("RX ptr: %8.8x(%8.8x)\n",
473 leptr, lib_off(brx_ring, lp->type));
1da177e4
LT
474
475 /* Setup tx descriptor pointer */
3b6e8fe7
MR
476 leptr = offsetof(struct lance_init_block, btx_ring);
477 *lib_ptr(ib, tx_len, lp->type) = (LANCE_LOG_TX_BUFFERS << 13) |
478 (leptr >> 16);
479 *lib_ptr(ib, tx_ptr, lp->type) = leptr;
1da177e4 480 if (ZERO)
3b6e8fe7
MR
481 printk("TX ptr: %8.8x(%8.8x)\n",
482 leptr, lib_off(btx_ring, lp->type));
1da177e4
LT
483
484 if (ZERO)
485 printk("TX rings:\n");
486
487 /* Setup the Tx ring entries */
488 for (i = 0; i < TX_RING_SIZE; i++) {
3b6e8fe7
MR
489 leptr = lp->tx_buf_ptr_lnc[i];
490 *lib_ptr(ib, btx_ring[i].tmd0, lp->type) = leptr;
491 *lib_ptr(ib, btx_ring[i].tmd1, lp->type) = (leptr >> 16) &
492 0xff;
493 *lib_ptr(ib, btx_ring[i].length, lp->type) = 0xf000;
494 /* The ones required by tmd2 */
495 *lib_ptr(ib, btx_ring[i].misc, lp->type) = 0;
1da177e4 496 if (i < 3 && ZERO)
3b6e8fe7
MR
497 printk("%d: 0x%8.8x(0x%8.8x)\n",
498 i, leptr, (uint)lp->tx_buf_ptr_cpu[i]);
1da177e4
LT
499 }
500
501 /* Setup the Rx ring entries */
502 if (ZERO)
503 printk("RX rings:\n");
504 for (i = 0; i < RX_RING_SIZE; i++) {
3b6e8fe7
MR
505 leptr = lp->rx_buf_ptr_lnc[i];
506 *lib_ptr(ib, brx_ring[i].rmd0, lp->type) = leptr;
507 *lib_ptr(ib, brx_ring[i].rmd1, lp->type) = ((leptr >> 16) &
508 0xff) |
509 LE_R1_OWN;
510 *lib_ptr(ib, brx_ring[i].length, lp->type) = -RX_BUFF_SIZE |
511 0xf000;
512 *lib_ptr(ib, brx_ring[i].mblength, lp->type) = 0;
1da177e4 513 if (i < 3 && ZERO)
3b6e8fe7
MR
514 printk("%d: 0x%8.8x(0x%8.8x)\n",
515 i, leptr, (uint)lp->rx_buf_ptr_cpu[i]);
1da177e4
LT
516 }
517 iob();
518}
519
520static int init_restart_lance(struct lance_private *lp)
521{
522 volatile struct lance_regs *ll = lp->ll;
523 int i;
524
525 writereg(&ll->rap, LE_CSR0);
526 writereg(&ll->rdp, LE_C0_INIT);
527
528 /* Wait for the lance to complete initialization */
529 for (i = 0; (i < 100) && !(ll->rdp & LE_C0_IDON); i++) {
530 udelay(10);
531 }
532 if ((i == 100) || (ll->rdp & LE_C0_ERR)) {
3b6e8fe7
MR
533 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n",
534 i, ll->rdp);
1da177e4
LT
535 return -1;
536 }
537 if ((ll->rdp & LE_C0_ERR)) {
3b6e8fe7
MR
538 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n",
539 i, ll->rdp);
1da177e4
LT
540 return -1;
541 }
542 writereg(&ll->rdp, LE_C0_IDON);
543 writereg(&ll->rdp, LE_C0_STRT);
544 writereg(&ll->rdp, LE_C0_INEA);
545
546 return 0;
547}
548
549static int lance_rx(struct net_device *dev)
550{
551 struct lance_private *lp = netdev_priv(dev);
3b6e8fe7
MR
552 volatile u16 *ib = (volatile u16 *)dev->mem_start;
553 volatile u16 *rd;
554 unsigned short bits;
555 int entry, len;
556 struct sk_buff *skb;
1da177e4
LT
557
558#ifdef TEST_HITS
559 {
560 int i;
561
562 printk("[");
563 for (i = 0; i < RX_RING_SIZE; i++) {
564 if (i == lp->rx_new)
3b6e8fe7
MR
565 printk("%s", *lib_ptr(ib, brx_ring[i].rmd1,
566 lp->type) &
1da177e4
LT
567 LE_R1_OWN ? "_" : "X");
568 else
3b6e8fe7
MR
569 printk("%s", *lib_ptr(ib, brx_ring[i].rmd1,
570 lp->type) &
1da177e4
LT
571 LE_R1_OWN ? "." : "1");
572 }
573 printk("]");
574 }
575#endif
576
3b6e8fe7
MR
577 for (rd = lib_ptr(ib, brx_ring[lp->rx_new], lp->type);
578 !((bits = *rds_ptr(rd, rmd1, lp->type)) & LE_R1_OWN);
579 rd = lib_ptr(ib, brx_ring[lp->rx_new], lp->type)) {
580 entry = lp->rx_new;
1da177e4
LT
581
582 /* We got an incomplete frame? */
583 if ((bits & LE_R1_POK) != LE_R1_POK) {
09f75cd7
JG
584 dev->stats.rx_over_errors++;
585 dev->stats.rx_errors++;
1da177e4
LT
586 } else if (bits & LE_R1_ERR) {
587 /* Count only the end frame as a rx error,
588 * not the beginning
589 */
590 if (bits & LE_R1_BUF)
09f75cd7 591 dev->stats.rx_fifo_errors++;
1da177e4 592 if (bits & LE_R1_CRC)
09f75cd7 593 dev->stats.rx_crc_errors++;
1da177e4 594 if (bits & LE_R1_OFL)
09f75cd7 595 dev->stats.rx_over_errors++;
1da177e4 596 if (bits & LE_R1_FRA)
09f75cd7 597 dev->stats.rx_frame_errors++;
1da177e4 598 if (bits & LE_R1_EOP)
09f75cd7 599 dev->stats.rx_errors++;
1da177e4 600 } else {
3b6e8fe7 601 len = (*rds_ptr(rd, mblength, lp->type) & 0xfff) - 4;
1da177e4
LT
602 skb = dev_alloc_skb(len + 2);
603
604 if (skb == 0) {
605 printk("%s: Memory squeeze, deferring packet.\n",
606 dev->name);
09f75cd7 607 dev->stats.rx_dropped++;
3b6e8fe7
MR
608 *rds_ptr(rd, mblength, lp->type) = 0;
609 *rds_ptr(rd, rmd1, lp->type) =
610 ((lp->rx_buf_ptr_lnc[entry] >> 16) &
611 0xff) | LE_R1_OWN;
612 lp->rx_new = (entry + 1) & RX_RING_MOD_MASK;
1da177e4
LT
613 return 0;
614 }
09f75cd7 615 dev->stats.rx_bytes += len;
1da177e4 616
1da177e4
LT
617 skb_reserve(skb, 2); /* 16 byte align */
618 skb_put(skb, len); /* make room */
619
620 cp_from_buf(lp->type, skb->data,
3b6e8fe7 621 (char *)lp->rx_buf_ptr_cpu[entry], len);
1da177e4
LT
622
623 skb->protocol = eth_type_trans(skb, dev);
624 netif_rx(skb);
625 dev->last_rx = jiffies;
09f75cd7 626 dev->stats.rx_packets++;
1da177e4
LT
627 }
628
629 /* Return the packet to the pool */
3b6e8fe7
MR
630 *rds_ptr(rd, mblength, lp->type) = 0;
631 *rds_ptr(rd, length, lp->type) = -RX_BUFF_SIZE | 0xf000;
632 *rds_ptr(rd, rmd1, lp->type) =
633 ((lp->rx_buf_ptr_lnc[entry] >> 16) & 0xff) | LE_R1_OWN;
634 lp->rx_new = (entry + 1) & RX_RING_MOD_MASK;
1da177e4
LT
635 }
636 return 0;
637}
638
639static void lance_tx(struct net_device *dev)
640{
641 struct lance_private *lp = netdev_priv(dev);
3b6e8fe7 642 volatile u16 *ib = (volatile u16 *)dev->mem_start;
1da177e4 643 volatile struct lance_regs *ll = lp->ll;
3b6e8fe7 644 volatile u16 *td;
1da177e4
LT
645 int i, j;
646 int status;
3b6e8fe7 647
1da177e4
LT
648 j = lp->tx_old;
649
650 spin_lock(&lp->lock);
651
652 for (i = j; i != lp->tx_new; i = j) {
3b6e8fe7 653 td = lib_ptr(ib, btx_ring[i], lp->type);
1da177e4 654 /* If we hit a packet not owned by us, stop */
3b6e8fe7 655 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_OWN)
1da177e4
LT
656 break;
657
3b6e8fe7
MR
658 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_ERR) {
659 status = *tds_ptr(td, misc, lp->type);
1da177e4 660
09f75cd7 661 dev->stats.tx_errors++;
1da177e4 662 if (status & LE_T3_RTY)
09f75cd7 663 dev->stats.tx_aborted_errors++;
1da177e4 664 if (status & LE_T3_LCOL)
09f75cd7 665 dev->stats.tx_window_errors++;
1da177e4
LT
666
667 if (status & LE_T3_CLOS) {
09f75cd7 668 dev->stats.tx_carrier_errors++;
1da177e4
LT
669 printk("%s: Carrier Lost\n", dev->name);
670 /* Stop the lance */
671 writereg(&ll->rap, LE_CSR0);
672 writereg(&ll->rdp, LE_C0_STOP);
673 lance_init_ring(dev);
674 load_csrs(lp);
675 init_restart_lance(lp);
676 goto out;
677 }
678 /* Buffer errors and underflows turn off the
679 * transmitter, restart the adapter.
680 */
681 if (status & (LE_T3_BUF | LE_T3_UFL)) {
09f75cd7 682 dev->stats.tx_fifo_errors++;
1da177e4
LT
683
684 printk("%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
685 dev->name);
686 /* Stop the lance */
687 writereg(&ll->rap, LE_CSR0);
688 writereg(&ll->rdp, LE_C0_STOP);
689 lance_init_ring(dev);
690 load_csrs(lp);
691 init_restart_lance(lp);
692 goto out;
693 }
3b6e8fe7
MR
694 } else if ((*tds_ptr(td, tmd1, lp->type) & LE_T1_POK) ==
695 LE_T1_POK) {
1da177e4
LT
696 /*
697 * So we don't count the packet more than once.
698 */
3b6e8fe7 699 *tds_ptr(td, tmd1, lp->type) &= ~(LE_T1_POK);
1da177e4
LT
700
701 /* One collision before packet was sent. */
3b6e8fe7 702 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_EONE)
09f75cd7 703 dev->stats.collisions++;
1da177e4
LT
704
705 /* More than one collision, be optimistic. */
3b6e8fe7 706 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_EMORE)
09f75cd7 707 dev->stats.collisions += 2;
1da177e4 708
09f75cd7 709 dev->stats.tx_packets++;
1da177e4
LT
710 }
711 j = (j + 1) & TX_RING_MOD_MASK;
712 }
713 lp->tx_old = j;
714out:
715 if (netif_queue_stopped(dev) &&
716 TX_BUFFS_AVAIL > 0)
717 netif_wake_queue(dev);
718
719 spin_unlock(&lp->lock);
720}
721
28fc1f5a 722static irqreturn_t lance_dma_merr_int(int irq, void *dev_id)
1da177e4 723{
c31f28e7 724 struct net_device *dev = dev_id;
1da177e4 725
28fc1f5a 726 printk(KERN_ERR "%s: DMA error\n", dev->name);
da848ec3 727 return IRQ_HANDLED;
1da177e4
LT
728}
729
28fc1f5a 730static irqreturn_t lance_interrupt(int irq, void *dev_id)
1da177e4 731{
c31f28e7 732 struct net_device *dev = dev_id;
1da177e4
LT
733 struct lance_private *lp = netdev_priv(dev);
734 volatile struct lance_regs *ll = lp->ll;
735 int csr0;
736
737 writereg(&ll->rap, LE_CSR0);
738 csr0 = ll->rdp;
739
740 /* Acknowledge all the interrupt sources ASAP */
741 writereg(&ll->rdp, csr0 & (LE_C0_INTR | LE_C0_TINT | LE_C0_RINT));
742
743 if ((csr0 & LE_C0_ERR)) {
744 /* Clear the error condition */
745 writereg(&ll->rdp, LE_C0_BABL | LE_C0_ERR | LE_C0_MISS |
746 LE_C0_CERR | LE_C0_MERR);
747 }
748 if (csr0 & LE_C0_RINT)
749 lance_rx(dev);
750
751 if (csr0 & LE_C0_TINT)
752 lance_tx(dev);
753
754 if (csr0 & LE_C0_BABL)
09f75cd7 755 dev->stats.tx_errors++;
1da177e4
LT
756
757 if (csr0 & LE_C0_MISS)
09f75cd7 758 dev->stats.rx_errors++;
1da177e4
LT
759
760 if (csr0 & LE_C0_MERR) {
761 printk("%s: Memory error, status %04x\n", dev->name, csr0);
762
763 writereg(&ll->rdp, LE_C0_STOP);
764
765 lance_init_ring(dev);
766 load_csrs(lp);
767 init_restart_lance(lp);
768 netif_wake_queue(dev);
769 }
770
771 writereg(&ll->rdp, LE_C0_INEA);
772 writereg(&ll->rdp, LE_C0_INEA);
773 return IRQ_HANDLED;
774}
775
1da177e4
LT
776static int lance_open(struct net_device *dev)
777{
3b6e8fe7 778 volatile u16 *ib = (volatile u16 *)dev->mem_start;
1da177e4
LT
779 struct lance_private *lp = netdev_priv(dev);
780 volatile struct lance_regs *ll = lp->ll;
781 int status = 0;
782
1da177e4
LT
783 /* Stop the Lance */
784 writereg(&ll->rap, LE_CSR0);
785 writereg(&ll->rdp, LE_C0_STOP);
786
787 /* Set mode and clear multicast filter only at device open,
788 * so that lance_init_ring() called at any error will not
789 * forget multicast filters.
790 *
791 * BTW it is common bug in all lance drivers! --ANK
792 */
3b6e8fe7
MR
793 *lib_ptr(ib, mode, lp->type) = 0;
794 *lib_ptr(ib, filter[0], lp->type) = 0;
795 *lib_ptr(ib, filter[1], lp->type) = 0;
796 *lib_ptr(ib, filter[2], lp->type) = 0;
797 *lib_ptr(ib, filter[3], lp->type) = 0;
1da177e4
LT
798
799 lance_init_ring(dev);
800 load_csrs(lp);
801
802 netif_start_queue(dev);
803
804 /* Associate IRQ with lance_interrupt */
805 if (request_irq(dev->irq, &lance_interrupt, 0, "lance", dev)) {
806 printk("%s: Can't get IRQ %d\n", dev->name, dev->irq);
807 return -EAGAIN;
808 }
809 if (lp->dma_irq >= 0) {
810 unsigned long flags;
811
812 if (request_irq(lp->dma_irq, &lance_dma_merr_int, 0,
813 "lance error", dev)) {
814 free_irq(dev->irq, dev);
815 printk("%s: Can't get DMA IRQ %d\n", dev->name,
816 lp->dma_irq);
817 return -EAGAIN;
818 }
819
820 spin_lock_irqsave(&ioasic_ssr_lock, flags);
821
822 fast_mb();
823 /* Enable I/O ASIC LANCE DMA. */
824 ioasic_write(IO_REG_SSR,
825 ioasic_read(IO_REG_SSR) | IO_SSR_LANCE_DMA_EN);
826
827 fast_mb();
828 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
829 }
830
831 status = init_restart_lance(lp);
832 return status;
833}
834
835static int lance_close(struct net_device *dev)
836{
837 struct lance_private *lp = netdev_priv(dev);
838 volatile struct lance_regs *ll = lp->ll;
839
840 netif_stop_queue(dev);
841 del_timer_sync(&lp->multicast_timer);
842
843 /* Stop the card */
844 writereg(&ll->rap, LE_CSR0);
845 writereg(&ll->rdp, LE_C0_STOP);
846
847 if (lp->dma_irq >= 0) {
848 unsigned long flags;
849
850 spin_lock_irqsave(&ioasic_ssr_lock, flags);
851
852 fast_mb();
853 /* Disable I/O ASIC LANCE DMA. */
854 ioasic_write(IO_REG_SSR,
855 ioasic_read(IO_REG_SSR) & ~IO_SSR_LANCE_DMA_EN);
856
857 fast_iob();
858 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
859
860 free_irq(lp->dma_irq, dev);
861 }
862 free_irq(dev->irq, dev);
863 return 0;
864}
865
866static inline int lance_reset(struct net_device *dev)
867{
868 struct lance_private *lp = netdev_priv(dev);
869 volatile struct lance_regs *ll = lp->ll;
870 int status;
871
872 /* Stop the lance */
873 writereg(&ll->rap, LE_CSR0);
874 writereg(&ll->rdp, LE_C0_STOP);
875
876 lance_init_ring(dev);
877 load_csrs(lp);
878 dev->trans_start = jiffies;
879 status = init_restart_lance(lp);
880 return status;
881}
882
883static void lance_tx_timeout(struct net_device *dev)
884{
885 struct lance_private *lp = netdev_priv(dev);
886 volatile struct lance_regs *ll = lp->ll;
887
888 printk(KERN_ERR "%s: transmit timed out, status %04x, reset\n",
889 dev->name, ll->rdp);
890 lance_reset(dev);
891 netif_wake_queue(dev);
892}
893
894static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
895{
896 struct lance_private *lp = netdev_priv(dev);
897 volatile struct lance_regs *ll = lp->ll;
3b6e8fe7
MR
898 volatile u16 *ib = (volatile u16 *)dev->mem_start;
899 int entry, len;
1da177e4 900
3b6e8fe7 901 len = skb->len;
6aa20a22 902
1da177e4 903 if (len < ETH_ZLEN) {
5b057c6b 904 if (skb_padto(skb, ETH_ZLEN))
1da177e4
LT
905 return 0;
906 len = ETH_ZLEN;
907 }
908
09f75cd7 909 dev->stats.tx_bytes += len;
1da177e4 910
3b6e8fe7
MR
911 entry = lp->tx_new;
912 *lib_ptr(ib, btx_ring[entry].length, lp->type) = (-len);
913 *lib_ptr(ib, btx_ring[entry].misc, lp->type) = 0;
1da177e4 914
3b6e8fe7 915 cp_to_buf(lp->type, (char *)lp->tx_buf_ptr_cpu[entry], skb->data, len);
1da177e4
LT
916
917 /* Now, give the packet to the lance */
3b6e8fe7
MR
918 *lib_ptr(ib, btx_ring[entry].tmd1, lp->type) =
919 ((lp->tx_buf_ptr_lnc[entry] >> 16) & 0xff) |
920 (LE_T1_POK | LE_T1_OWN);
921 lp->tx_new = (entry + 1) & TX_RING_MOD_MASK;
1da177e4
LT
922
923 if (TX_BUFFS_AVAIL <= 0)
924 netif_stop_queue(dev);
925
926 /* Kick the lance: transmit now */
927 writereg(&ll->rdp, LE_C0_INEA | LE_C0_TDMD);
928
1da177e4
LT
929 dev->trans_start = jiffies;
930 dev_kfree_skb(skb);
931
932 return 0;
933}
934
1da177e4
LT
935static void lance_load_multicast(struct net_device *dev)
936{
3b6e8fe7
MR
937 struct lance_private *lp = netdev_priv(dev);
938 volatile u16 *ib = (volatile u16 *)dev->mem_start;
1da177e4
LT
939 struct dev_mc_list *dmi = dev->mc_list;
940 char *addrs;
941 int i;
942 u32 crc;
943
944 /* set all multicast bits */
945 if (dev->flags & IFF_ALLMULTI) {
3b6e8fe7
MR
946 *lib_ptr(ib, filter[0], lp->type) = 0xffff;
947 *lib_ptr(ib, filter[1], lp->type) = 0xffff;
948 *lib_ptr(ib, filter[2], lp->type) = 0xffff;
949 *lib_ptr(ib, filter[3], lp->type) = 0xffff;
1da177e4
LT
950 return;
951 }
952 /* clear the multicast filter */
3b6e8fe7
MR
953 *lib_ptr(ib, filter[0], lp->type) = 0;
954 *lib_ptr(ib, filter[1], lp->type) = 0;
955 *lib_ptr(ib, filter[2], lp->type) = 0;
956 *lib_ptr(ib, filter[3], lp->type) = 0;
1da177e4
LT
957
958 /* Add addresses */
959 for (i = 0; i < dev->mc_count; i++) {
960 addrs = dmi->dmi_addr;
961 dmi = dmi->next;
962
963 /* multicast address? */
964 if (!(*addrs & 1))
965 continue;
966
967 crc = ether_crc_le(ETH_ALEN, addrs);
968 crc = crc >> 26;
3b6e8fe7 969 *lib_ptr(ib, filter[crc >> 4], lp->type) |= 1 << (crc & 0xf);
1da177e4
LT
970 }
971 return;
972}
973
974static void lance_set_multicast(struct net_device *dev)
975{
976 struct lance_private *lp = netdev_priv(dev);
3b6e8fe7 977 volatile u16 *ib = (volatile u16 *)dev->mem_start;
1da177e4
LT
978 volatile struct lance_regs *ll = lp->ll;
979
1da177e4
LT
980 if (!netif_running(dev))
981 return;
982
983 if (lp->tx_old != lp->tx_new) {
984 mod_timer(&lp->multicast_timer, jiffies + 4 * HZ/100);
985 netif_wake_queue(dev);
986 return;
987 }
988
989 netif_stop_queue(dev);
990
991 writereg(&ll->rap, LE_CSR0);
992 writereg(&ll->rdp, LE_C0_STOP);
993
994 lance_init_ring(dev);
995
996 if (dev->flags & IFF_PROMISC) {
3b6e8fe7 997 *lib_ptr(ib, mode, lp->type) |= LE_MO_PROM;
1da177e4 998 } else {
3b6e8fe7 999 *lib_ptr(ib, mode, lp->type) &= ~LE_MO_PROM;
1da177e4
LT
1000 lance_load_multicast(dev);
1001 }
1002 load_csrs(lp);
1003 init_restart_lance(lp);
1004 netif_wake_queue(dev);
1005}
1006
1007static void lance_set_multicast_retry(unsigned long _opaque)
1008{
1009 struct net_device *dev = (struct net_device *) _opaque;
1010
1011 lance_set_multicast(dev);
1012}
1013
257b346d 1014static int __init dec_lance_probe(struct device *bdev, const int type)
1da177e4
LT
1015{
1016 static unsigned version_printed;
1017 static const char fmt[] = "declance%d";
1018 char name[10];
1019 struct net_device *dev;
1020 struct lance_private *lp;
1021 volatile struct lance_regs *ll;
257b346d 1022 resource_size_t start = 0, len = 0;
1da177e4
LT
1023 int i, ret;
1024 unsigned long esar_base;
1025 unsigned char *esar;
1026
1da177e4
LT
1027 if (dec_lance_debug && version_printed++ == 0)
1028 printk(version);
1029
257b346d
MR
1030 if (bdev)
1031 snprintf(name, sizeof(name), "%s", bdev->bus_id);
1032 else {
1033 i = 0;
1034 dev = root_lance_dev;
1035 while (dev) {
1036 i++;
1037 lp = (struct lance_private *)dev->priv;
1038 dev = lp->next;
1039 }
1040 snprintf(name, sizeof(name), fmt, i);
1da177e4 1041 }
1da177e4
LT
1042
1043 dev = alloc_etherdev(sizeof(struct lance_private));
1044 if (!dev) {
1045 printk(KERN_ERR "%s: Unable to allocate etherdev, aborting.\n",
1046 name);
1047 ret = -ENOMEM;
1048 goto err_out;
1049 }
1050
1051 /*
1052 * alloc_etherdev ensures the data structures used by the LANCE
1053 * are aligned.
1054 */
1055 lp = netdev_priv(dev);
1056 spin_lock_init(&lp->lock);
1057
1058 lp->type = type;
1da177e4 1059 switch (type) {
1da177e4 1060 case ASIC_LANCE:
36156cdf 1061 dev->base_addr = CKSEG1ADDR(dec_kn_slot_base + IOASIC_LANCE);
1da177e4
LT
1062
1063 /* buffer space for the on-board LANCE shared memory */
1064 /*
1065 * FIXME: ugly hack!
1066 */
4569504a 1067 dev->mem_start = CKSEG1ADDR(0x00020000);
1da177e4
LT
1068 dev->mem_end = dev->mem_start + 0x00020000;
1069 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
36156cdf 1070 esar_base = CKSEG1ADDR(dec_kn_slot_base + IOASIC_ESAR);
1da177e4
LT
1071
1072 /* Workaround crash with booting KN04 2.1k from Disk */
1073 memset((void *)dev->mem_start, 0,
1074 dev->mem_end - dev->mem_start);
1075
1076 /*
1077 * setup the pointer arrays, this sucks [tm] :-(
1078 */
1079 for (i = 0; i < RX_RING_SIZE; i++) {
1080 lp->rx_buf_ptr_cpu[i] =
3b6e8fe7 1081 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
1da177e4
LT
1082 2 * i * RX_BUFF_SIZE);
1083 lp->rx_buf_ptr_lnc[i] =
3b6e8fe7 1084 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
1da177e4
LT
1085 }
1086 for (i = 0; i < TX_RING_SIZE; i++) {
1087 lp->tx_buf_ptr_cpu[i] =
3b6e8fe7 1088 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
1da177e4
LT
1089 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1090 2 * i * TX_BUFF_SIZE);
1091 lp->tx_buf_ptr_lnc[i] =
3b6e8fe7
MR
1092 (BUF_OFFSET_LNC +
1093 RX_RING_SIZE * RX_BUFF_SIZE +
1094 i * TX_BUFF_SIZE);
1da177e4
LT
1095 }
1096
1097 /* Setup I/O ASIC LANCE DMA. */
1098 lp->dma_irq = dec_interrupt[DEC_IRQ_LANCE_MERR];
1099 ioasic_write(IO_REG_LANCE_DMA_P,
6684b4e2 1100 CPHYSADDR(dev->mem_start) << 3);
1da177e4
LT
1101
1102 break;
e8f7f7f1 1103#ifdef CONFIG_TC
1da177e4 1104 case PMAD_LANCE:
257b346d
MR
1105 dev_set_drvdata(bdev, dev);
1106
1107 start = to_tc_dev(bdev)->resource.start;
1108 len = to_tc_dev(bdev)->resource.end - start + 1;
1109 if (!request_mem_region(start, len, bdev->bus_id)) {
1110 printk(KERN_ERR
1111 "%s: Unable to reserve MMIO resource\n",
1112 bdev->bus_id);
1113 ret = -EBUSY;
1114 goto err_out_dev;
1115 }
1da177e4 1116
257b346d 1117 dev->mem_start = CKSEG1ADDR(start);
3b6e8fe7 1118 dev->mem_end = dev->mem_start + 0x100000;
1da177e4 1119 dev->base_addr = dev->mem_start + 0x100000;
257b346d 1120 dev->irq = to_tc_dev(bdev)->interrupt;
1da177e4
LT
1121 esar_base = dev->mem_start + 0x1c0002;
1122 lp->dma_irq = -1;
1123
1124 for (i = 0; i < RX_RING_SIZE; i++) {
1125 lp->rx_buf_ptr_cpu[i] =
1126 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1127 i * RX_BUFF_SIZE);
1128 lp->rx_buf_ptr_lnc[i] =
3b6e8fe7 1129 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
1da177e4
LT
1130 }
1131 for (i = 0; i < TX_RING_SIZE; i++) {
1132 lp->tx_buf_ptr_cpu[i] =
1133 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1134 RX_RING_SIZE * RX_BUFF_SIZE +
1135 i * TX_BUFF_SIZE);
1136 lp->tx_buf_ptr_lnc[i] =
3b6e8fe7
MR
1137 (BUF_OFFSET_LNC +
1138 RX_RING_SIZE * RX_BUFF_SIZE +
1139 i * TX_BUFF_SIZE);
1da177e4
LT
1140 }
1141
1142 break;
1143#endif
1da177e4
LT
1144 case PMAX_LANCE:
1145 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
36156cdf
RB
1146 dev->base_addr = CKSEG1ADDR(KN01_SLOT_BASE + KN01_LANCE);
1147 dev->mem_start = CKSEG1ADDR(KN01_SLOT_BASE + KN01_LANCE_MEM);
3b6e8fe7 1148 dev->mem_end = dev->mem_start + KN01_SLOT_SIZE;
36156cdf 1149 esar_base = CKSEG1ADDR(KN01_SLOT_BASE + KN01_ESAR + 1);
1da177e4
LT
1150 lp->dma_irq = -1;
1151
1152 /*
1153 * setup the pointer arrays, this sucks [tm] :-(
1154 */
1155 for (i = 0; i < RX_RING_SIZE; i++) {
1156 lp->rx_buf_ptr_cpu[i] =
3b6e8fe7 1157 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
1da177e4
LT
1158 2 * i * RX_BUFF_SIZE);
1159 lp->rx_buf_ptr_lnc[i] =
3b6e8fe7 1160 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
1da177e4
LT
1161 }
1162 for (i = 0; i < TX_RING_SIZE; i++) {
1163 lp->tx_buf_ptr_cpu[i] =
3b6e8fe7 1164 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
1da177e4
LT
1165 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1166 2 * i * TX_BUFF_SIZE);
1167 lp->tx_buf_ptr_lnc[i] =
3b6e8fe7
MR
1168 (BUF_OFFSET_LNC +
1169 RX_RING_SIZE * RX_BUFF_SIZE +
1170 i * TX_BUFF_SIZE);
1da177e4
LT
1171 }
1172
1173 break;
1174
1175 default:
1176 printk(KERN_ERR "%s: declance_init called with unknown type\n",
1177 name);
1178 ret = -ENODEV;
257b346d 1179 goto err_out_dev;
1da177e4
LT
1180 }
1181
1182 ll = (struct lance_regs *) dev->base_addr;
1183 esar = (unsigned char *) esar_base;
1184
1185 /* prom checks */
1186 /* First, check for test pattern */
1187 if (esar[0x60] != 0xff && esar[0x64] != 0x00 &&
1188 esar[0x68] != 0x55 && esar[0x6c] != 0xaa) {
1189 printk(KERN_ERR
1190 "%s: Ethernet station address prom not found!\n",
1191 name);
1192 ret = -ENODEV;
257b346d 1193 goto err_out_resource;
1da177e4
LT
1194 }
1195 /* Check the prom contents */
1196 for (i = 0; i < 8; i++) {
1197 if (esar[i * 4] != esar[0x3c - i * 4] &&
1198 esar[i * 4] != esar[0x40 + i * 4] &&
1199 esar[0x3c - i * 4] != esar[0x40 + i * 4]) {
1200 printk(KERN_ERR "%s: Something is wrong with the "
1201 "ethernet station address prom!\n", name);
1202 ret = -ENODEV;
257b346d 1203 goto err_out_resource;
1da177e4
LT
1204 }
1205 }
1206
1207 /* Copy the ethernet address to the device structure, later to the
1208 * lance initialization block so the lance gets it every time it's
1209 * (re)initialized.
1210 */
1211 switch (type) {
1212 case ASIC_LANCE:
0795af57 1213 printk("%s: IOASIC onboard LANCE", name);
1da177e4
LT
1214 break;
1215 case PMAD_LANCE:
0795af57 1216 printk("%s: PMAD-AA", name);
1da177e4
LT
1217 break;
1218 case PMAX_LANCE:
0795af57 1219 printk("%s: PMAX onboard LANCE", name);
1da177e4
LT
1220 break;
1221 }
0795af57 1222 for (i = 0; i < 6; i++)
1da177e4 1223 dev->dev_addr[i] = esar[i * 4];
1da177e4 1224
e174961c 1225 printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq);
1da177e4
LT
1226
1227 dev->open = &lance_open;
1228 dev->stop = &lance_close;
1229 dev->hard_start_xmit = &lance_start_xmit;
1230 dev->tx_timeout = &lance_tx_timeout;
1231 dev->watchdog_timeo = 5*HZ;
1da177e4
LT
1232 dev->set_multicast_list = &lance_set_multicast;
1233
1234 /* lp->ll is the location of the registers for lance card */
1235 lp->ll = ll;
1236
1237 /* busmaster_regval (CSR3) should be zero according to the PMAD-AA
1238 * specification.
1239 */
1240 lp->busmaster_regval = 0;
1241
1242 dev->dma = 0;
1243
1244 /* We cannot sleep if the chip is busy during a
1245 * multicast list update event, because such events
1246 * can occur from interrupts (ex. IPv6). So we
1247 * use a timer to try again later when necessary. -DaveM
1248 */
1249 init_timer(&lp->multicast_timer);
1250 lp->multicast_timer.data = (unsigned long) dev;
1251 lp->multicast_timer.function = &lance_set_multicast_retry;
1252
1253 ret = register_netdev(dev);
1254 if (ret) {
1255 printk(KERN_ERR
1256 "%s: Unable to register netdev, aborting.\n", name);
257b346d 1257 goto err_out_resource;
1da177e4
LT
1258 }
1259
257b346d
MR
1260 if (!bdev) {
1261 lp->next = root_lance_dev;
1262 root_lance_dev = dev;
1263 }
1da177e4
LT
1264
1265 printk("%s: registered as %s.\n", name, dev->name);
1266 return 0;
1267
257b346d
MR
1268err_out_resource:
1269 if (bdev)
1270 release_mem_region(start, len);
1271
1272err_out_dev:
b07db75a 1273 free_netdev(dev);
1da177e4
LT
1274
1275err_out:
1276 return ret;
1277}
1278
257b346d
MR
1279static void __exit dec_lance_remove(struct device *bdev)
1280{
1281 struct net_device *dev = dev_get_drvdata(bdev);
1282 resource_size_t start, len;
1283
1284 unregister_netdev(dev);
1285 start = to_tc_dev(bdev)->resource.start;
1286 len = to_tc_dev(bdev)->resource.end - start + 1;
1287 release_mem_region(start, len);
1288 free_netdev(dev);
1289}
1da177e4
LT
1290
1291/* Find all the lance cards on the system and initialize them */
257b346d 1292static int __init dec_lance_platform_probe(void)
1da177e4
LT
1293{
1294 int count = 0;
1295
1da177e4
LT
1296 if (dec_interrupt[DEC_IRQ_LANCE] >= 0) {
1297 if (dec_interrupt[DEC_IRQ_LANCE_MERR] >= 0) {
257b346d 1298 if (dec_lance_probe(NULL, ASIC_LANCE) >= 0)
1da177e4 1299 count++;
1da177e4 1300 } else if (!TURBOCHANNEL) {
257b346d 1301 if (dec_lance_probe(NULL, PMAX_LANCE) >= 0)
1da177e4
LT
1302 count++;
1303 }
1304 }
1305
1306 return (count > 0) ? 0 : -ENODEV;
1307}
1308
257b346d 1309static void __exit dec_lance_platform_remove(void)
1da177e4
LT
1310{
1311 while (root_lance_dev) {
1312 struct net_device *dev = root_lance_dev;
1313 struct lance_private *lp = netdev_priv(dev);
b07db75a 1314
1da177e4 1315 unregister_netdev(dev);
1da177e4
LT
1316 root_lance_dev = lp->next;
1317 free_netdev(dev);
1318 }
1319}
1320
257b346d
MR
1321#ifdef CONFIG_TC
1322static int __init dec_lance_tc_probe(struct device *dev);
1323static int __exit dec_lance_tc_remove(struct device *dev);
1324
1325static const struct tc_device_id dec_lance_tc_table[] = {
1326 { "DEC ", "PMAD-AA " },
1327 { }
1328};
1329MODULE_DEVICE_TABLE(tc, dec_lance_tc_table);
1330
1331static struct tc_driver dec_lance_tc_driver = {
1332 .id_table = dec_lance_tc_table,
1333 .driver = {
1334 .name = "declance",
1335 .bus = &tc_bus_type,
1336 .probe = dec_lance_tc_probe,
1337 .remove = __exit_p(dec_lance_tc_remove),
1338 },
1339};
1340
1341static int __init dec_lance_tc_probe(struct device *dev)
1342{
1343 int status = dec_lance_probe(dev, PMAD_LANCE);
1344 if (!status)
1345 get_device(dev);
1346 return status;
1347}
1348
1349static int __exit dec_lance_tc_remove(struct device *dev)
1350{
1351 put_device(dev);
1352 dec_lance_remove(dev);
1353 return 0;
1354}
1355#endif
1356
1357static int __init dec_lance_init(void)
1358{
1359 int status;
1360
1361 status = tc_register_driver(&dec_lance_tc_driver);
1362 if (!status)
1363 dec_lance_platform_probe();
1364 return status;
1365}
1366
1367static void __exit dec_lance_exit(void)
1368{
1369 dec_lance_platform_remove();
1370 tc_unregister_driver(&dec_lance_tc_driver);
1371}
1372
1373
1374module_init(dec_lance_init);
1375module_exit(dec_lance_exit);
This page took 0.600704 seconds and 5 git commands to generate.