blob: dd82ee2f8d21a78a9294ab68a6be1a4bc3c9bf12 [file] [log] [blame]
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Lance ethernet driver for the MIPS processor based
3 * DECstation family
4 *
5 *
6 * adopted from sunlance.c by Richard van den Berg
7 *
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08008 * Copyright (C) 2002, 2003, 2005, 2006 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -080043 *
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
Maciej W. Rozycki257b3462007-02-05 16:28:27 -080047 *
48 * v0.011: Converted the PMAD to the driver model. macro
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 */
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#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>
Maciej W. Rozycki257b3462007-02-05 16:28:27 -080063#include <linux/tc.h>
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -080064#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#include <asm/addrspace.h>
Ralf Baechle36156cd2005-10-10 14:51:16 +010067#include <asm/system.h>
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#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>
Ralf Baechle36156cd2005-10-10 14:51:16 +010074#include <asm/dec/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76static char version[] __devinitdata =
Maciej W. Rozycki257b3462007-02-05 16:28:27 -080077"declance.c: v0.011 by Linux MIPS DECstation task force\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79MODULE_AUTHOR("Linux MIPS DECstation task force");
80MODULE_DESCRIPTION("DEC LANCE (DECstation onboard, PMAD-xx) driver");
81MODULE_LICENSE("GPL");
82
Maciej W. Rozycki257b3462007-02-05 16:28:27 -080083#define __unused __attribute__ ((unused))
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * card types
87 */
88#define ASIC_LANCE 1
89#define PMAD_LANCE 2
90#define PMAX_LANCE 3
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
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 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800122#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800132/* 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
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
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800169/*
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800174 * The PMAD-AA has a 128 kB buffer on-board.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800176 * 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.
180 *
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 :-(.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
186
187struct lance_rx_desc {
188 unsigned short rmd0; /* low address of packet */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800189 unsigned short rmd1; /* high address of packet
190 and descriptor bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 short length; /* 2s complement (negative!)
192 of buffer length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unsigned short mblength; /* actual number of bytes received */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194};
195
196struct lance_tx_desc {
197 unsigned short tmd0; /* low address of packet */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800198 unsigned short tmd1; /* high address of packet
199 and descriptor bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 short length; /* 2s complement (negative!)
201 of buffer length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 unsigned short misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
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) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800210 unsigned short phys_addr[3]; /* physical ethernet address */
211 unsigned short filter[4]; /* multicast filter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* Receive and transmit ring base, along with extra bits. */
214 unsigned short rx_ptr; /* receive descriptor addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 unsigned short rx_len; /* receive len and high addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 unsigned short tx_ptr; /* transmit descriptor addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 unsigned short tx_len; /* transmit len and high addr */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800218
219 short gap[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
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)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800227#define BUF_OFFSET_LNC sizeof(struct lance_init_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800229#define shift_off(off, type) \
230 (type == ASIC_LANCE || type == PMAX_LANCE ? off << 1 : off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800232#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)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250struct lance_private {
251 struct net_device *next;
252 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 int dma_irq;
254 volatile struct lance_regs *ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 spinlock_t lock;
257
258 int rx_new, tx_new;
259 int rx_old, tx_old;
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 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 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800270 uint rx_buf_ptr_lnc[RX_RING_SIZE];
271 uint tx_buf_ptr_lnc[TX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272};
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
Maciej W. Rozycki257b3462007-02-05 16:28:27 -0800292static struct tc_driver dec_lance_tc_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293static 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;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800305 uint leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
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 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800327static void cp_to_buf(const int type, void *to, const void *from, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Joe Perches43d620c2011-06-16 19:08:06 +0000329 unsigned short *tp;
330 const unsigned short *fp;
331 unsigned short clen;
332 unsigned char *rtp;
333 const unsigned char *rfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800335 if (type == PMAD_LANCE) {
336 memcpy(to, from, len);
337 } else if (type == PMAX_LANCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 clen = len >> 1;
Joe Perches43d620c2011-06-16 19:08:06 +0000339 tp = to;
340 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 while (clen--) {
343 *tp++ = *fp++;
344 tp++;
345 }
346
347 clen = len & 1;
Joe Perches43d620c2011-06-16 19:08:06 +0000348 rtp = tp;
349 rfp = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 while (clen--) {
351 *rtp++ = *rfp++;
352 }
353 } else {
354 /*
355 * copy 16 Byte chunks
356 */
357 clen = len >> 4;
Joe Perches43d620c2011-06-16 19:08:06 +0000358 tp = to;
359 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 while (clen--) {
361 *tp++ = *fp++;
362 *tp++ = *fp++;
363 *tp++ = *fp++;
364 *tp++ = *fp++;
365 *tp++ = *fp++;
366 *tp++ = *fp++;
367 *tp++ = *fp++;
368 *tp++ = *fp++;
369 tp += 8;
370 }
371
372 /*
373 * do the rest, if any.
374 */
375 clen = len & 15;
376 rtp = (unsigned char *) tp;
377 rfp = (unsigned char *) fp;
378 while (clen--) {
379 *rtp++ = *rfp++;
380 }
381 }
382
383 iob();
384}
385
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800386static void cp_from_buf(const int type, void *to, const void *from, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Joe Perches43d620c2011-06-16 19:08:06 +0000388 unsigned short *tp;
389 const unsigned short *fp;
390 unsigned short clen;
391 unsigned char *rtp;
392 const unsigned char *rfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800394 if (type == PMAD_LANCE) {
395 memcpy(to, from, len);
396 } else if (type == PMAX_LANCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 clen = len >> 1;
Joe Perches43d620c2011-06-16 19:08:06 +0000398 tp = to;
399 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 while (clen--) {
401 *tp++ = *fp++;
402 fp++;
403 }
404
405 clen = len & 1;
406
Joe Perches43d620c2011-06-16 19:08:06 +0000407 rtp = tp;
408 rfp = fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 while (clen--) {
411 *rtp++ = *rfp++;
412 }
413 } else {
414
415 /*
416 * copy 16 Byte chunks
417 */
418 clen = len >> 4;
Joe Perches43d620c2011-06-16 19:08:06 +0000419 tp = to;
420 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 while (clen--) {
422 *tp++ = *fp++;
423 *tp++ = *fp++;
424 *tp++ = *fp++;
425 *tp++ = *fp++;
426 *tp++ = *fp++;
427 *tp++ = *fp++;
428 *tp++ = *fp++;
429 *tp++ = *fp++;
430 fp += 8;
431 }
432
433 /*
434 * do the rest, if any.
435 */
436 clen = len & 15;
437 rtp = (unsigned char *) tp;
438 rfp = (unsigned char *) fp;
439 while (clen--) {
440 *rtp++ = *rfp++;
441 }
442
443
444 }
445
446}
447
448/* Setup the Lance Rx and Tx rings */
449static void lance_init_ring(struct net_device *dev)
450{
451 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800452 volatile u16 *ib = (volatile u16 *)dev->mem_start;
453 uint leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int i;
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /* Lock out other processes while setting up hardware */
457 netif_stop_queue(dev);
458 lp->rx_new = lp->tx_new = 0;
459 lp->rx_old = lp->tx_old = 0;
460
461 /* Copy the ethernet address to the lance init block.
462 * XXX bit 0 of the physical address registers has to be zero
463 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800464 *lib_ptr(ib, phys_addr[0], lp->type) = (dev->dev_addr[1] << 8) |
465 dev->dev_addr[0];
466 *lib_ptr(ib, phys_addr[1], lp->type) = (dev->dev_addr[3] << 8) |
467 dev->dev_addr[2];
468 *lib_ptr(ib, phys_addr[2], lp->type) = (dev->dev_addr[5] << 8) |
469 dev->dev_addr[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* Setup the initialization block */
471
472 /* Setup rx descriptor pointer */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800473 leptr = offsetof(struct lance_init_block, brx_ring);
474 *lib_ptr(ib, rx_len, lp->type) = (LANCE_LOG_RX_BUFFERS << 13) |
475 (leptr >> 16);
476 *lib_ptr(ib, rx_ptr, lp->type) = leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (ZERO)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800478 printk("RX ptr: %8.8x(%8.8x)\n",
479 leptr, lib_off(brx_ring, lp->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /* Setup tx descriptor pointer */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800482 leptr = offsetof(struct lance_init_block, btx_ring);
483 *lib_ptr(ib, tx_len, lp->type) = (LANCE_LOG_TX_BUFFERS << 13) |
484 (leptr >> 16);
485 *lib_ptr(ib, tx_ptr, lp->type) = leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (ZERO)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800487 printk("TX ptr: %8.8x(%8.8x)\n",
488 leptr, lib_off(btx_ring, lp->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (ZERO)
491 printk("TX rings:\n");
492
493 /* Setup the Tx ring entries */
494 for (i = 0; i < TX_RING_SIZE; i++) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800495 leptr = lp->tx_buf_ptr_lnc[i];
496 *lib_ptr(ib, btx_ring[i].tmd0, lp->type) = leptr;
497 *lib_ptr(ib, btx_ring[i].tmd1, lp->type) = (leptr >> 16) &
498 0xff;
499 *lib_ptr(ib, btx_ring[i].length, lp->type) = 0xf000;
500 /* The ones required by tmd2 */
501 *lib_ptr(ib, btx_ring[i].misc, lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (i < 3 && ZERO)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800503 printk("%d: 0x%8.8x(0x%8.8x)\n",
504 i, leptr, (uint)lp->tx_buf_ptr_cpu[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 /* Setup the Rx ring entries */
508 if (ZERO)
509 printk("RX rings:\n");
510 for (i = 0; i < RX_RING_SIZE; i++) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800511 leptr = lp->rx_buf_ptr_lnc[i];
512 *lib_ptr(ib, brx_ring[i].rmd0, lp->type) = leptr;
513 *lib_ptr(ib, brx_ring[i].rmd1, lp->type) = ((leptr >> 16) &
514 0xff) |
515 LE_R1_OWN;
516 *lib_ptr(ib, brx_ring[i].length, lp->type) = -RX_BUFF_SIZE |
517 0xf000;
518 *lib_ptr(ib, brx_ring[i].mblength, lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (i < 3 && ZERO)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800520 printk("%d: 0x%8.8x(0x%8.8x)\n",
521 i, leptr, (uint)lp->rx_buf_ptr_cpu[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 iob();
524}
525
526static int init_restart_lance(struct lance_private *lp)
527{
528 volatile struct lance_regs *ll = lp->ll;
529 int i;
530
531 writereg(&ll->rap, LE_CSR0);
532 writereg(&ll->rdp, LE_C0_INIT);
533
534 /* Wait for the lance to complete initialization */
535 for (i = 0; (i < 100) && !(ll->rdp & LE_C0_IDON); i++) {
536 udelay(10);
537 }
538 if ((i == 100) || (ll->rdp & LE_C0_ERR)) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800539 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n",
540 i, ll->rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return -1;
542 }
543 if ((ll->rdp & LE_C0_ERR)) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800544 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n",
545 i, ll->rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return -1;
547 }
548 writereg(&ll->rdp, LE_C0_IDON);
549 writereg(&ll->rdp, LE_C0_STRT);
550 writereg(&ll->rdp, LE_C0_INEA);
551
552 return 0;
553}
554
555static int lance_rx(struct net_device *dev)
556{
557 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800558 volatile u16 *ib = (volatile u16 *)dev->mem_start;
559 volatile u16 *rd;
560 unsigned short bits;
561 int entry, len;
562 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564#ifdef TEST_HITS
565 {
566 int i;
567
568 printk("[");
569 for (i = 0; i < RX_RING_SIZE; i++) {
570 if (i == lp->rx_new)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800571 printk("%s", *lib_ptr(ib, brx_ring[i].rmd1,
572 lp->type) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 LE_R1_OWN ? "_" : "X");
574 else
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800575 printk("%s", *lib_ptr(ib, brx_ring[i].rmd1,
576 lp->type) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 LE_R1_OWN ? "." : "1");
578 }
579 printk("]");
580 }
581#endif
582
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800583 for (rd = lib_ptr(ib, brx_ring[lp->rx_new], lp->type);
584 !((bits = *rds_ptr(rd, rmd1, lp->type)) & LE_R1_OWN);
585 rd = lib_ptr(ib, brx_ring[lp->rx_new], lp->type)) {
586 entry = lp->rx_new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 /* We got an incomplete frame? */
589 if ((bits & LE_R1_POK) != LE_R1_POK) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700590 dev->stats.rx_over_errors++;
591 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 } else if (bits & LE_R1_ERR) {
593 /* Count only the end frame as a rx error,
594 * not the beginning
595 */
596 if (bits & LE_R1_BUF)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700597 dev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (bits & LE_R1_CRC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700599 dev->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (bits & LE_R1_OFL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700601 dev->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (bits & LE_R1_FRA)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700603 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (bits & LE_R1_EOP)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700605 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 } else {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800607 len = (*rds_ptr(rd, mblength, lp->type) & 0xfff) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 skb = dev_alloc_skb(len + 2);
609
610 if (skb == 0) {
611 printk("%s: Memory squeeze, deferring packet.\n",
612 dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700613 dev->stats.rx_dropped++;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800614 *rds_ptr(rd, mblength, lp->type) = 0;
615 *rds_ptr(rd, rmd1, lp->type) =
616 ((lp->rx_buf_ptr_lnc[entry] >> 16) &
617 0xff) | LE_R1_OWN;
618 lp->rx_new = (entry + 1) & RX_RING_MOD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return 0;
620 }
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700621 dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 skb_reserve(skb, 2); /* 16 byte align */
624 skb_put(skb, len); /* make room */
625
626 cp_from_buf(lp->type, skb->data,
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800627 (char *)lp->rx_buf_ptr_cpu[entry], len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 skb->protocol = eth_type_trans(skb, dev);
630 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700631 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
634 /* Return the packet to the pool */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800635 *rds_ptr(rd, mblength, lp->type) = 0;
636 *rds_ptr(rd, length, lp->type) = -RX_BUFF_SIZE | 0xf000;
637 *rds_ptr(rd, rmd1, lp->type) =
638 ((lp->rx_buf_ptr_lnc[entry] >> 16) & 0xff) | LE_R1_OWN;
639 lp->rx_new = (entry + 1) & RX_RING_MOD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641 return 0;
642}
643
644static void lance_tx(struct net_device *dev)
645{
646 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800647 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 volatile struct lance_regs *ll = lp->ll;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800649 volatile u16 *td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int i, j;
651 int status;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 j = lp->tx_old;
654
655 spin_lock(&lp->lock);
656
657 for (i = j; i != lp->tx_new; i = j) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800658 td = lib_ptr(ib, btx_ring[i], lp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /* If we hit a packet not owned by us, stop */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800660 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_OWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800663 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_ERR) {
664 status = *tds_ptr(td, misc, lp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700666 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (status & LE_T3_RTY)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700668 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (status & LE_T3_LCOL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700670 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (status & LE_T3_CLOS) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700673 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 printk("%s: Carrier Lost\n", dev->name);
675 /* Stop the lance */
676 writereg(&ll->rap, LE_CSR0);
677 writereg(&ll->rdp, LE_C0_STOP);
678 lance_init_ring(dev);
679 load_csrs(lp);
680 init_restart_lance(lp);
681 goto out;
682 }
683 /* Buffer errors and underflows turn off the
684 * transmitter, restart the adapter.
685 */
686 if (status & (LE_T3_BUF | LE_T3_UFL)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700687 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 printk("%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
690 dev->name);
691 /* Stop the lance */
692 writereg(&ll->rap, LE_CSR0);
693 writereg(&ll->rdp, LE_C0_STOP);
694 lance_init_ring(dev);
695 load_csrs(lp);
696 init_restart_lance(lp);
697 goto out;
698 }
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800699 } else if ((*tds_ptr(td, tmd1, lp->type) & LE_T1_POK) ==
700 LE_T1_POK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /*
702 * So we don't count the packet more than once.
703 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800704 *tds_ptr(td, tmd1, lp->type) &= ~(LE_T1_POK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 /* One collision before packet was sent. */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800707 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_EONE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700708 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 /* More than one collision, be optimistic. */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800711 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_EMORE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700712 dev->stats.collisions += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700714 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 j = (j + 1) & TX_RING_MOD_MASK;
717 }
718 lp->tx_old = j;
719out:
720 if (netif_queue_stopped(dev) &&
721 TX_BUFFS_AVAIL > 0)
722 netif_wake_queue(dev);
723
724 spin_unlock(&lp->lock);
725}
726
Jeff Garzik28fc1f52007-10-29 05:46:16 -0400727static irqreturn_t lance_dma_merr_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Jeff Garzikc31f28e2006-10-06 14:56:04 -0400729 struct net_device *dev = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Jeff Garzik28fc1f52007-10-29 05:46:16 -0400731 printk(KERN_ERR "%s: DMA error\n", dev->name);
Ralf Baechleda848ec2005-10-10 14:51:01 +0100732 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Jeff Garzik28fc1f52007-10-29 05:46:16 -0400735static irqreturn_t lance_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Jeff Garzikc31f28e2006-10-06 14:56:04 -0400737 struct net_device *dev = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 struct lance_private *lp = netdev_priv(dev);
739 volatile struct lance_regs *ll = lp->ll;
740 int csr0;
741
742 writereg(&ll->rap, LE_CSR0);
743 csr0 = ll->rdp;
744
745 /* Acknowledge all the interrupt sources ASAP */
746 writereg(&ll->rdp, csr0 & (LE_C0_INTR | LE_C0_TINT | LE_C0_RINT));
747
748 if ((csr0 & LE_C0_ERR)) {
749 /* Clear the error condition */
750 writereg(&ll->rdp, LE_C0_BABL | LE_C0_ERR | LE_C0_MISS |
751 LE_C0_CERR | LE_C0_MERR);
752 }
753 if (csr0 & LE_C0_RINT)
754 lance_rx(dev);
755
756 if (csr0 & LE_C0_TINT)
757 lance_tx(dev);
758
759 if (csr0 & LE_C0_BABL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700760 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (csr0 & LE_C0_MISS)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700763 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 if (csr0 & LE_C0_MERR) {
766 printk("%s: Memory error, status %04x\n", dev->name, csr0);
767
768 writereg(&ll->rdp, LE_C0_STOP);
769
770 lance_init_ring(dev);
771 load_csrs(lp);
772 init_restart_lance(lp);
773 netif_wake_queue(dev);
774 }
775
776 writereg(&ll->rdp, LE_C0_INEA);
777 writereg(&ll->rdp, LE_C0_INEA);
778 return IRQ_HANDLED;
779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781static int lance_open(struct net_device *dev)
782{
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800783 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct lance_private *lp = netdev_priv(dev);
785 volatile struct lance_regs *ll = lp->ll;
786 int status = 0;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* Stop the Lance */
789 writereg(&ll->rap, LE_CSR0);
790 writereg(&ll->rdp, LE_C0_STOP);
791
792 /* Set mode and clear multicast filter only at device open,
793 * so that lance_init_ring() called at any error will not
794 * forget multicast filters.
795 *
796 * BTW it is common bug in all lance drivers! --ANK
797 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800798 *lib_ptr(ib, mode, lp->type) = 0;
799 *lib_ptr(ib, filter[0], lp->type) = 0;
800 *lib_ptr(ib, filter[1], lp->type) = 0;
801 *lib_ptr(ib, filter[2], lp->type) = 0;
802 *lib_ptr(ib, filter[3], lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 lance_init_ring(dev);
805 load_csrs(lp);
806
807 netif_start_queue(dev);
808
809 /* Associate IRQ with lance_interrupt */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800810 if (request_irq(dev->irq, lance_interrupt, 0, "lance", dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 printk("%s: Can't get IRQ %d\n", dev->name, dev->irq);
812 return -EAGAIN;
813 }
814 if (lp->dma_irq >= 0) {
815 unsigned long flags;
816
Joe Perchesa0607fd2009-11-18 23:29:17 -0800817 if (request_irq(lp->dma_irq, lance_dma_merr_int, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 "lance error", dev)) {
819 free_irq(dev->irq, dev);
820 printk("%s: Can't get DMA IRQ %d\n", dev->name,
821 lp->dma_irq);
822 return -EAGAIN;
823 }
824
825 spin_lock_irqsave(&ioasic_ssr_lock, flags);
826
827 fast_mb();
828 /* Enable I/O ASIC LANCE DMA. */
829 ioasic_write(IO_REG_SSR,
830 ioasic_read(IO_REG_SSR) | IO_SSR_LANCE_DMA_EN);
831
832 fast_mb();
833 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
834 }
835
836 status = init_restart_lance(lp);
837 return status;
838}
839
840static int lance_close(struct net_device *dev)
841{
842 struct lance_private *lp = netdev_priv(dev);
843 volatile struct lance_regs *ll = lp->ll;
844
845 netif_stop_queue(dev);
846 del_timer_sync(&lp->multicast_timer);
847
848 /* Stop the card */
849 writereg(&ll->rap, LE_CSR0);
850 writereg(&ll->rdp, LE_C0_STOP);
851
852 if (lp->dma_irq >= 0) {
853 unsigned long flags;
854
855 spin_lock_irqsave(&ioasic_ssr_lock, flags);
856
857 fast_mb();
858 /* Disable I/O ASIC LANCE DMA. */
859 ioasic_write(IO_REG_SSR,
860 ioasic_read(IO_REG_SSR) & ~IO_SSR_LANCE_DMA_EN);
861
862 fast_iob();
863 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
864
865 free_irq(lp->dma_irq, dev);
866 }
867 free_irq(dev->irq, dev);
868 return 0;
869}
870
871static inline int lance_reset(struct net_device *dev)
872{
873 struct lance_private *lp = netdev_priv(dev);
874 volatile struct lance_regs *ll = lp->ll;
875 int status;
876
877 /* Stop the lance */
878 writereg(&ll->rap, LE_CSR0);
879 writereg(&ll->rdp, LE_C0_STOP);
880
881 lance_init_ring(dev);
882 load_csrs(lp);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700883 dev->trans_start = jiffies; /* prevent tx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 status = init_restart_lance(lp);
885 return status;
886}
887
888static void lance_tx_timeout(struct net_device *dev)
889{
890 struct lance_private *lp = netdev_priv(dev);
891 volatile struct lance_regs *ll = lp->ll;
892
893 printk(KERN_ERR "%s: transmit timed out, status %04x, reset\n",
894 dev->name, ll->rdp);
895 lance_reset(dev);
896 netif_wake_queue(dev);
897}
898
899static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
900{
901 struct lance_private *lp = netdev_priv(dev);
902 volatile struct lance_regs *ll = lp->ll;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800903 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Maciej W. Rozycki963267b2009-06-08 02:42:35 -0700904 unsigned long flags;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800905 int entry, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800907 len = skb->len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (len < ETH_ZLEN) {
Herbert Xu5b057c62006-06-23 02:06:41 -0700910 if (skb_padto(skb, ETH_ZLEN))
Patrick McHardy6ed10652009-06-23 06:03:08 +0000911 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 len = ETH_ZLEN;
913 }
914
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700915 dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Maciej W. Rozycki963267b2009-06-08 02:42:35 -0700917 spin_lock_irqsave(&lp->lock, flags);
918
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800919 entry = lp->tx_new;
920 *lib_ptr(ib, btx_ring[entry].length, lp->type) = (-len);
921 *lib_ptr(ib, btx_ring[entry].misc, lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800923 cp_to_buf(lp->type, (char *)lp->tx_buf_ptr_cpu[entry], skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /* Now, give the packet to the lance */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800926 *lib_ptr(ib, btx_ring[entry].tmd1, lp->type) =
927 ((lp->tx_buf_ptr_lnc[entry] >> 16) & 0xff) |
928 (LE_T1_POK | LE_T1_OWN);
929 lp->tx_new = (entry + 1) & TX_RING_MOD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (TX_BUFFS_AVAIL <= 0)
932 netif_stop_queue(dev);
933
934 /* Kick the lance: transmit now */
935 writereg(&ll->rdp, LE_C0_INEA | LE_C0_TDMD);
936
Maciej W. Rozycki963267b2009-06-08 02:42:35 -0700937 spin_unlock_irqrestore(&lp->lock, flags);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 dev_kfree_skb(skb);
940
Patrick McHardy6ed10652009-06-23 06:03:08 +0000941 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944static void lance_load_multicast(struct net_device *dev)
945{
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800946 struct lance_private *lp = netdev_priv(dev);
947 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000948 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 u32 crc;
950
951 /* set all multicast bits */
952 if (dev->flags & IFF_ALLMULTI) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800953 *lib_ptr(ib, filter[0], lp->type) = 0xffff;
954 *lib_ptr(ib, filter[1], lp->type) = 0xffff;
955 *lib_ptr(ib, filter[2], lp->type) = 0xffff;
956 *lib_ptr(ib, filter[3], lp->type) = 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return;
958 }
959 /* clear the multicast filter */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800960 *lib_ptr(ib, filter[0], lp->type) = 0;
961 *lib_ptr(ib, filter[1], lp->type) = 0;
962 *lib_ptr(ib, filter[2], lp->type) = 0;
963 *lib_ptr(ib, filter[3], lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /* Add addresses */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000966 netdev_for_each_mc_addr(ha, dev) {
Tobias Klauser498d8e22011-07-07 22:06:26 +0000967 crc = ether_crc_le(ETH_ALEN, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 crc = crc >> 26;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800969 *lib_ptr(ib, filter[crc >> 4], lp->type) |= 1 << (crc & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
973static void lance_set_multicast(struct net_device *dev)
974{
975 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800976 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 volatile struct lance_regs *ll = lp->ll;
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (!netif_running(dev))
980 return;
981
982 if (lp->tx_old != lp->tx_new) {
983 mod_timer(&lp->multicast_timer, jiffies + 4 * HZ/100);
984 netif_wake_queue(dev);
985 return;
986 }
987
988 netif_stop_queue(dev);
989
990 writereg(&ll->rap, LE_CSR0);
991 writereg(&ll->rdp, LE_C0_STOP);
992
993 lance_init_ring(dev);
994
995 if (dev->flags & IFF_PROMISC) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800996 *lib_ptr(ib, mode, lp->type) |= LE_MO_PROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 } else {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800998 *lib_ptr(ib, mode, lp->type) &= ~LE_MO_PROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 lance_load_multicast(dev);
1000 }
1001 load_csrs(lp);
1002 init_restart_lance(lp);
1003 netif_wake_queue(dev);
1004}
1005
1006static void lance_set_multicast_retry(unsigned long _opaque)
1007{
1008 struct net_device *dev = (struct net_device *) _opaque;
1009
1010 lance_set_multicast(dev);
1011}
1012
Alexander Beregalovad5a24e02009-04-14 18:30:25 +00001013static const struct net_device_ops lance_netdev_ops = {
1014 .ndo_open = lance_open,
1015 .ndo_stop = lance_close,
1016 .ndo_start_xmit = lance_start_xmit,
1017 .ndo_tx_timeout = lance_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001018 .ndo_set_rx_mode = lance_set_multicast,
Alexander Beregalovad5a24e02009-04-14 18:30:25 +00001019 .ndo_change_mtu = eth_change_mtu,
1020 .ndo_validate_addr = eth_validate_addr,
1021 .ndo_set_mac_address = eth_mac_addr,
1022};
1023
Ralf Baechle3852cc32010-07-26 19:08:14 +01001024static int __devinit dec_lance_probe(struct device *bdev, const int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 static unsigned version_printed;
1027 static const char fmt[] = "declance%d";
1028 char name[10];
1029 struct net_device *dev;
1030 struct lance_private *lp;
1031 volatile struct lance_regs *ll;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001032 resource_size_t start = 0, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 int i, ret;
1034 unsigned long esar_base;
1035 unsigned char *esar;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (dec_lance_debug && version_printed++ == 0)
1038 printk(version);
1039
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001040 if (bdev)
Kay Sieversc2313552009-03-24 16:38:22 -07001041 snprintf(name, sizeof(name), "%s", dev_name(bdev));
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001042 else {
1043 i = 0;
1044 dev = root_lance_dev;
1045 while (dev) {
1046 i++;
Wang Chen4cf16532008-11-12 23:38:14 -08001047 lp = netdev_priv(dev);
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001048 dev = lp->next;
1049 }
1050 snprintf(name, sizeof(name), fmt, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 dev = alloc_etherdev(sizeof(struct lance_private));
1054 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 ret = -ENOMEM;
1056 goto err_out;
1057 }
1058
1059 /*
1060 * alloc_etherdev ensures the data structures used by the LANCE
1061 * are aligned.
1062 */
1063 lp = netdev_priv(dev);
1064 spin_lock_init(&lp->lock);
1065
1066 lp->type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 case ASIC_LANCE:
Ralf Baechle36156cd2005-10-10 14:51:16 +01001069 dev->base_addr = CKSEG1ADDR(dec_kn_slot_base + IOASIC_LANCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* buffer space for the on-board LANCE shared memory */
1072 /*
1073 * FIXME: ugly hack!
1074 */
Ralf Baechle45695042005-10-10 14:51:11 +01001075 dev->mem_start = CKSEG1ADDR(0x00020000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 dev->mem_end = dev->mem_start + 0x00020000;
1077 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
Ralf Baechle36156cd2005-10-10 14:51:16 +01001078 esar_base = CKSEG1ADDR(dec_kn_slot_base + IOASIC_ESAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 /* Workaround crash with booting KN04 2.1k from Disk */
1081 memset((void *)dev->mem_start, 0,
1082 dev->mem_end - dev->mem_start);
1083
1084 /*
1085 * setup the pointer arrays, this sucks [tm] :-(
1086 */
1087 for (i = 0; i < RX_RING_SIZE; i++) {
1088 lp->rx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001089 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 2 * i * RX_BUFF_SIZE);
1091 lp->rx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001092 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094 for (i = 0; i < TX_RING_SIZE; i++) {
1095 lp->tx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001096 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1098 2 * i * TX_BUFF_SIZE);
1099 lp->tx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001100 (BUF_OFFSET_LNC +
1101 RX_RING_SIZE * RX_BUFF_SIZE +
1102 i * TX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104
1105 /* Setup I/O ASIC LANCE DMA. */
1106 lp->dma_irq = dec_interrupt[DEC_IRQ_LANCE_MERR];
1107 ioasic_write(IO_REG_LANCE_DMA_P,
Ralf Baechle6684b4e2005-10-10 14:51:06 +01001108 CPHYSADDR(dev->mem_start) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 break;
Maciej W. Rozyckie8f7f7f2006-12-04 15:04:55 -08001111#ifdef CONFIG_TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 case PMAD_LANCE:
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001113 dev_set_drvdata(bdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001115 start = to_tc_dev(bdev)->resource.start;
1116 len = to_tc_dev(bdev)->resource.end - start + 1;
Kay Sieversc2313552009-03-24 16:38:22 -07001117 if (!request_mem_region(start, len, dev_name(bdev))) {
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001118 printk(KERN_ERR
1119 "%s: Unable to reserve MMIO resource\n",
Kay Sieversc2313552009-03-24 16:38:22 -07001120 dev_name(bdev));
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001121 ret = -EBUSY;
1122 goto err_out_dev;
1123 }
1124
1125 dev->mem_start = CKSEG1ADDR(start);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001126 dev->mem_end = dev->mem_start + 0x100000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 dev->base_addr = dev->mem_start + 0x100000;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001128 dev->irq = to_tc_dev(bdev)->interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 esar_base = dev->mem_start + 0x1c0002;
1130 lp->dma_irq = -1;
1131
1132 for (i = 0; i < RX_RING_SIZE; i++) {
1133 lp->rx_buf_ptr_cpu[i] =
1134 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1135 i * RX_BUFF_SIZE);
1136 lp->rx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001137 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139 for (i = 0; i < TX_RING_SIZE; i++) {
1140 lp->tx_buf_ptr_cpu[i] =
1141 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1142 RX_RING_SIZE * RX_BUFF_SIZE +
1143 i * TX_BUFF_SIZE);
1144 lp->tx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001145 (BUF_OFFSET_LNC +
1146 RX_RING_SIZE * RX_BUFF_SIZE +
1147 i * TX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
1150 break;
1151#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 case PMAX_LANCE:
1153 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
Ralf Baechle36156cd2005-10-10 14:51:16 +01001154 dev->base_addr = CKSEG1ADDR(KN01_SLOT_BASE + KN01_LANCE);
1155 dev->mem_start = CKSEG1ADDR(KN01_SLOT_BASE + KN01_LANCE_MEM);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001156 dev->mem_end = dev->mem_start + KN01_SLOT_SIZE;
Ralf Baechle36156cd2005-10-10 14:51:16 +01001157 esar_base = CKSEG1ADDR(KN01_SLOT_BASE + KN01_ESAR + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 lp->dma_irq = -1;
1159
1160 /*
1161 * setup the pointer arrays, this sucks [tm] :-(
1162 */
1163 for (i = 0; i < RX_RING_SIZE; i++) {
1164 lp->rx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001165 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 2 * i * RX_BUFF_SIZE);
1167 lp->rx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001168 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170 for (i = 0; i < TX_RING_SIZE; i++) {
1171 lp->tx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001172 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1174 2 * i * TX_BUFF_SIZE);
1175 lp->tx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001176 (BUF_OFFSET_LNC +
1177 RX_RING_SIZE * RX_BUFF_SIZE +
1178 i * TX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
1181 break;
1182
1183 default:
1184 printk(KERN_ERR "%s: declance_init called with unknown type\n",
1185 name);
1186 ret = -ENODEV;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001187 goto err_out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189
1190 ll = (struct lance_regs *) dev->base_addr;
1191 esar = (unsigned char *) esar_base;
1192
1193 /* prom checks */
1194 /* First, check for test pattern */
1195 if (esar[0x60] != 0xff && esar[0x64] != 0x00 &&
1196 esar[0x68] != 0x55 && esar[0x6c] != 0xaa) {
1197 printk(KERN_ERR
1198 "%s: Ethernet station address prom not found!\n",
1199 name);
1200 ret = -ENODEV;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001201 goto err_out_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203 /* Check the prom contents */
1204 for (i = 0; i < 8; i++) {
1205 if (esar[i * 4] != esar[0x3c - i * 4] &&
1206 esar[i * 4] != esar[0x40 + i * 4] &&
1207 esar[0x3c - i * 4] != esar[0x40 + i * 4]) {
1208 printk(KERN_ERR "%s: Something is wrong with the "
1209 "ethernet station address prom!\n", name);
1210 ret = -ENODEV;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001211 goto err_out_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213 }
1214
1215 /* Copy the ethernet address to the device structure, later to the
1216 * lance initialization block so the lance gets it every time it's
1217 * (re)initialized.
1218 */
1219 switch (type) {
1220 case ASIC_LANCE:
Joe Perches0795af52007-10-03 17:59:30 -07001221 printk("%s: IOASIC onboard LANCE", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 break;
1223 case PMAD_LANCE:
Joe Perches0795af52007-10-03 17:59:30 -07001224 printk("%s: PMAD-AA", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 break;
1226 case PMAX_LANCE:
Joe Perches0795af52007-10-03 17:59:30 -07001227 printk("%s: PMAX onboard LANCE", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 break;
1229 }
Joe Perches0795af52007-10-03 17:59:30 -07001230 for (i = 0; i < 6; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 dev->dev_addr[i] = esar[i * 4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Johannes Berge1749612008-10-27 15:59:26 -07001233 printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Alexander Beregalovad5a24e02009-04-14 18:30:25 +00001235 dev->netdev_ops = &lance_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 dev->watchdog_timeo = 5*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 /* lp->ll is the location of the registers for lance card */
1239 lp->ll = ll;
1240
1241 /* busmaster_regval (CSR3) should be zero according to the PMAD-AA
1242 * specification.
1243 */
1244 lp->busmaster_regval = 0;
1245
1246 dev->dma = 0;
1247
1248 /* We cannot sleep if the chip is busy during a
1249 * multicast list update event, because such events
1250 * can occur from interrupts (ex. IPv6). So we
1251 * use a timer to try again later when necessary. -DaveM
1252 */
1253 init_timer(&lp->multicast_timer);
1254 lp->multicast_timer.data = (unsigned long) dev;
Joe Perchesc061b182010-08-23 18:20:03 +00001255 lp->multicast_timer.function = lance_set_multicast_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 ret = register_netdev(dev);
1258 if (ret) {
1259 printk(KERN_ERR
1260 "%s: Unable to register netdev, aborting.\n", name);
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001261 goto err_out_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001264 if (!bdev) {
1265 lp->next = root_lance_dev;
1266 root_lance_dev = dev;
1267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 printk("%s: registered as %s.\n", name, dev->name);
1270 return 0;
1271
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001272err_out_resource:
1273 if (bdev)
1274 release_mem_region(start, len);
1275
1276err_out_dev:
Ralf Baechleb07db752006-06-30 13:56:13 +01001277 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279err_out:
1280 return ret;
1281}
1282
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001283static void __exit dec_lance_remove(struct device *bdev)
1284{
1285 struct net_device *dev = dev_get_drvdata(bdev);
1286 resource_size_t start, len;
1287
1288 unregister_netdev(dev);
1289 start = to_tc_dev(bdev)->resource.start;
1290 len = to_tc_dev(bdev)->resource.end - start + 1;
1291 release_mem_region(start, len);
1292 free_netdev(dev);
1293}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295/* Find all the lance cards on the system and initialize them */
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001296static int __init dec_lance_platform_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
1298 int count = 0;
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (dec_interrupt[DEC_IRQ_LANCE] >= 0) {
1301 if (dec_interrupt[DEC_IRQ_LANCE_MERR] >= 0) {
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001302 if (dec_lance_probe(NULL, ASIC_LANCE) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 } else if (!TURBOCHANNEL) {
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001305 if (dec_lance_probe(NULL, PMAX_LANCE) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 count++;
1307 }
1308 }
1309
1310 return (count > 0) ? 0 : -ENODEV;
1311}
1312
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001313static void __exit dec_lance_platform_remove(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 while (root_lance_dev) {
1316 struct net_device *dev = root_lance_dev;
1317 struct lance_private *lp = netdev_priv(dev);
Ralf Baechleb07db752006-06-30 13:56:13 +01001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 root_lance_dev = lp->next;
1321 free_netdev(dev);
1322 }
1323}
1324
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001325#ifdef CONFIG_TC
Ralf Baechle3852cc32010-07-26 19:08:14 +01001326static int __devinit dec_lance_tc_probe(struct device *dev);
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001327static int __exit dec_lance_tc_remove(struct device *dev);
1328
1329static const struct tc_device_id dec_lance_tc_table[] = {
1330 { "DEC ", "PMAD-AA " },
1331 { }
1332};
1333MODULE_DEVICE_TABLE(tc, dec_lance_tc_table);
1334
1335static struct tc_driver dec_lance_tc_driver = {
1336 .id_table = dec_lance_tc_table,
1337 .driver = {
1338 .name = "declance",
1339 .bus = &tc_bus_type,
1340 .probe = dec_lance_tc_probe,
1341 .remove = __exit_p(dec_lance_tc_remove),
1342 },
1343};
1344
Ralf Baechle3852cc32010-07-26 19:08:14 +01001345static int __devinit dec_lance_tc_probe(struct device *dev)
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001346{
1347 int status = dec_lance_probe(dev, PMAD_LANCE);
1348 if (!status)
1349 get_device(dev);
1350 return status;
1351}
1352
1353static int __exit dec_lance_tc_remove(struct device *dev)
1354{
1355 put_device(dev);
1356 dec_lance_remove(dev);
1357 return 0;
1358}
1359#endif
1360
1361static int __init dec_lance_init(void)
1362{
1363 int status;
1364
1365 status = tc_register_driver(&dec_lance_tc_driver);
1366 if (!status)
1367 dec_lance_platform_probe();
1368 return status;
1369}
1370
1371static void __exit dec_lance_exit(void)
1372{
1373 dec_lance_platform_remove();
1374 tc_unregister_driver(&dec_lance_tc_driver);
1375}
1376
1377
1378module_init(dec_lance_init);
1379module_exit(dec_lance_exit);