blob: 82cc81385033009a0147c8d647808a706a0ddfc3 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <asm/dec/interrupts.h>
69#include <asm/dec/ioasic.h>
70#include <asm/dec/ioasic_addrs.h>
71#include <asm/dec/kn01.h>
72#include <asm/dec/machtype.h>
Ralf Baechle36156cd2005-10-10 14:51:16 +010073#include <asm/dec/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Kees Cook06324662017-05-08 15:59:05 -070075static const char version[] =
Maciej W. Rozycki257b3462007-02-05 16:28:27 -080076"declance.c: v0.011 by Linux MIPS DECstation task force\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78MODULE_AUTHOR("Linux MIPS DECstation task force");
79MODULE_DESCRIPTION("DEC LANCE (DECstation onboard, PMAD-xx) driver");
80MODULE_LICENSE("GPL");
81
Maciej W. Rozycki257b3462007-02-05 16:28:27 -080082#define __unused __attribute__ ((unused))
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * card types
86 */
87#define ASIC_LANCE 1
88#define PMAD_LANCE 2
89#define PMAX_LANCE 3
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#define LE_CSR0 0
93#define LE_CSR1 1
94#define LE_CSR2 2
95#define LE_CSR3 3
96
97#define LE_MO_PROM 0x8000 /* Enable promiscuous mode */
98
99#define LE_C0_ERR 0x8000 /* Error: set if BAB, SQE, MISS or ME is set */
100#define LE_C0_BABL 0x4000 /* BAB: Babble: tx timeout. */
101#define LE_C0_CERR 0x2000 /* SQE: Signal quality error */
102#define LE_C0_MISS 0x1000 /* MISS: Missed a packet */
103#define LE_C0_MERR 0x0800 /* ME: Memory error */
104#define LE_C0_RINT 0x0400 /* Received interrupt */
105#define LE_C0_TINT 0x0200 /* Transmitter Interrupt */
106#define LE_C0_IDON 0x0100 /* IFIN: Init finished. */
107#define LE_C0_INTR 0x0080 /* Interrupt or error */
108#define LE_C0_INEA 0x0040 /* Interrupt enable */
109#define LE_C0_RXON 0x0020 /* Receiver on */
110#define LE_C0_TXON 0x0010 /* Transmitter on */
111#define LE_C0_TDMD 0x0008 /* Transmitter demand */
112#define LE_C0_STOP 0x0004 /* Stop the card */
113#define LE_C0_STRT 0x0002 /* Start the card */
114#define LE_C0_INIT 0x0001 /* Init the card */
115
116#define LE_C3_BSWP 0x4 /* SWAP */
117#define LE_C3_ACON 0x2 /* ALE Control */
118#define LE_C3_BCON 0x1 /* Byte control */
119
120/* Receive message descriptor 1 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800121#define LE_R1_OWN 0x8000 /* Who owns the entry */
122#define LE_R1_ERR 0x4000 /* Error: if FRA, OFL, CRC or BUF is set */
123#define LE_R1_FRA 0x2000 /* FRA: Frame error */
124#define LE_R1_OFL 0x1000 /* OFL: Frame overflow */
125#define LE_R1_CRC 0x0800 /* CRC error */
126#define LE_R1_BUF 0x0400 /* BUF: Buffer error */
127#define LE_R1_SOP 0x0200 /* Start of packet */
128#define LE_R1_EOP 0x0100 /* End of packet */
129#define LE_R1_POK 0x0300 /* Packet is complete: SOP + EOP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800131/* Transmit message descriptor 1 */
132#define LE_T1_OWN 0x8000 /* Lance owns the packet */
133#define LE_T1_ERR 0x4000 /* Error summary */
134#define LE_T1_EMORE 0x1000 /* Error: more than one retry needed */
135#define LE_T1_EONE 0x0800 /* Error: one retry needed */
136#define LE_T1_EDEF 0x0400 /* Error: deferred */
137#define LE_T1_SOP 0x0200 /* Start of packet */
138#define LE_T1_EOP 0x0100 /* End of packet */
139#define LE_T1_POK 0x0300 /* Packet is complete: SOP + EOP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141#define LE_T3_BUF 0x8000 /* Buffer error */
142#define LE_T3_UFL 0x4000 /* Error underflow */
143#define LE_T3_LCOL 0x1000 /* Error late collision */
144#define LE_T3_CLOS 0x0800 /* Error carrier loss */
145#define LE_T3_RTY 0x0400 /* Error retry */
146#define LE_T3_TDR 0x03ff /* Time Domain Reflectometry counter */
147
148/* Define: 2^4 Tx buffers and 2^4 Rx buffers */
149
150#ifndef LANCE_LOG_TX_BUFFERS
151#define LANCE_LOG_TX_BUFFERS 4
152#define LANCE_LOG_RX_BUFFERS 4
153#endif
154
155#define TX_RING_SIZE (1 << (LANCE_LOG_TX_BUFFERS))
156#define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
157
158#define RX_RING_SIZE (1 << (LANCE_LOG_RX_BUFFERS))
159#define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
160
161#define PKT_BUF_SZ 1536
162#define RX_BUFF_SIZE PKT_BUF_SZ
163#define TX_BUFF_SIZE PKT_BUF_SZ
164
165#undef TEST_HITS
166#define ZERO 0
167
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800168/*
169 * The DS2100/3100 have a linear 64 kB buffer which supports halfword
170 * accesses only. Each halfword of the buffer is word-aligned in the
171 * CPU address space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 *
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800173 * The PMAD-AA has a 128 kB buffer on-board.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800175 * The IOASIC LANCE devices use a shared memory region. This region
176 * as seen from the CPU is (max) 128 kB long and has to be on an 128 kB
177 * boundary. The LANCE sees this as a 64 kB long continuous memory
178 * region.
179 *
180 * The LANCE's DMA address is used as an index in this buffer and DMA
181 * takes place in bursts of eight 16-bit words which are packed into
182 * four 32-bit words by the IOASIC. This leads to a strange padding:
183 * 16 bytes of valid data followed by a 16 byte gap :-(.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 */
185
186struct lance_rx_desc {
187 unsigned short rmd0; /* low address of packet */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800188 unsigned short rmd1; /* high address of packet
189 and descriptor bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 short length; /* 2s complement (negative!)
191 of buffer length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 unsigned short mblength; /* actual number of bytes received */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
195struct lance_tx_desc {
196 unsigned short tmd0; /* low address of packet */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800197 unsigned short tmd1; /* high address of packet
198 and descriptor bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 short length; /* 2s complement (negative!)
200 of buffer length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 unsigned short misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202};
203
204
205/* First part of the LANCE initialization block, described in databook. */
206struct lance_init_block {
207 unsigned short mode; /* pre-set mode (reg. 15) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800209 unsigned short phys_addr[3]; /* physical ethernet address */
210 unsigned short filter[4]; /* multicast filter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* Receive and transmit ring base, along with extra bits. */
213 unsigned short rx_ptr; /* receive descriptor addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 unsigned short rx_len; /* receive len and high addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 unsigned short tx_ptr; /* transmit descriptor addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 unsigned short tx_len; /* transmit len and high addr */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800217
218 short gap[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* The buffer descriptors */
221 struct lance_rx_desc brx_ring[RX_RING_SIZE];
222 struct lance_tx_desc btx_ring[TX_RING_SIZE];
223};
224
225#define BUF_OFFSET_CPU sizeof(struct lance_init_block)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800226#define BUF_OFFSET_LNC sizeof(struct lance_init_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800228#define shift_off(off, type) \
229 (type == ASIC_LANCE || type == PMAX_LANCE ? off << 1 : off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800231#define lib_off(rt, type) \
232 shift_off(offsetof(struct lance_init_block, rt), type)
233
234#define lib_ptr(ib, rt, type) \
235 ((volatile u16 *)((u8 *)(ib) + lib_off(rt, type)))
236
237#define rds_off(rt, type) \
238 shift_off(offsetof(struct lance_rx_desc, rt), type)
239
240#define rds_ptr(rd, rt, type) \
241 ((volatile u16 *)((u8 *)(rd) + rds_off(rt, type)))
242
243#define tds_off(rt, type) \
244 shift_off(offsetof(struct lance_tx_desc, rt), type)
245
246#define tds_ptr(td, rt, type) \
247 ((volatile u16 *)((u8 *)(td) + tds_off(rt, type)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249struct lance_private {
250 struct net_device *next;
251 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int dma_irq;
253 volatile struct lance_regs *ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 spinlock_t lock;
256
257 int rx_new, tx_new;
258 int rx_old, tx_old;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 unsigned short busmaster_regval;
261
262 struct timer_list multicast_timer;
263
264 /* Pointers to the ring buffers as seen from the CPU */
265 char *rx_buf_ptr_cpu[RX_RING_SIZE];
266 char *tx_buf_ptr_cpu[TX_RING_SIZE];
267
268 /* Pointers to the ring buffers as seen from the LANCE */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800269 uint rx_buf_ptr_lnc[RX_RING_SIZE];
270 uint tx_buf_ptr_lnc[TX_RING_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271};
272
273#define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?\
274 lp->tx_old+TX_RING_MOD_MASK-lp->tx_new:\
275 lp->tx_old - lp->tx_new-1)
276
277/* The lance control ports are at an absolute address, machine and tc-slot
278 * dependent.
279 * DECstations do only 32-bit access and the LANCE uses 16 bit addresses,
280 * so we have to give the structure an extra member making rap pointing
281 * at the right address
282 */
283struct lance_regs {
284 volatile unsigned short rdp; /* register data port */
285 unsigned short pad;
286 volatile unsigned short rap; /* register address port */
287};
288
289int dec_lance_debug = 2;
290
Maciej W. Rozycki257b3462007-02-05 16:28:27 -0800291static struct tc_driver dec_lance_tc_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static struct net_device *root_lance_dev;
293
294static inline void writereg(volatile unsigned short *regptr, short value)
295{
296 *regptr = value;
297 iob();
298}
299
300/* Load the CSR registers */
301static void load_csrs(struct lance_private *lp)
302{
303 volatile struct lance_regs *ll = lp->ll;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800304 uint leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* The address space as seen from the LANCE
307 * begins at address 0. HK
308 */
309 leptr = 0;
310
311 writereg(&ll->rap, LE_CSR1);
312 writereg(&ll->rdp, (leptr & 0xFFFF));
313 writereg(&ll->rap, LE_CSR2);
314 writereg(&ll->rdp, leptr >> 16);
315 writereg(&ll->rap, LE_CSR3);
316 writereg(&ll->rdp, lp->busmaster_regval);
317
318 /* Point back to csr0 */
319 writereg(&ll->rap, LE_CSR0);
320}
321
322/*
323 * Our specialized copy routines
324 *
325 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800326static void cp_to_buf(const int type, void *to, const void *from, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Joe Perches43d620c2011-06-16 19:08:06 +0000328 unsigned short *tp;
329 const unsigned short *fp;
330 unsigned short clen;
331 unsigned char *rtp;
332 const unsigned char *rfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800334 if (type == PMAD_LANCE) {
335 memcpy(to, from, len);
336 } else if (type == PMAX_LANCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 clen = len >> 1;
Joe Perches43d620c2011-06-16 19:08:06 +0000338 tp = to;
339 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 while (clen--) {
342 *tp++ = *fp++;
343 tp++;
344 }
345
346 clen = len & 1;
Maciej W. Rozycki19717d052013-09-20 00:49:44 +0100347 rtp = (unsigned char *)tp;
348 rfp = (const unsigned char *)fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 while (clen--) {
350 *rtp++ = *rfp++;
351 }
352 } else {
353 /*
354 * copy 16 Byte chunks
355 */
356 clen = len >> 4;
Joe Perches43d620c2011-06-16 19:08:06 +0000357 tp = to;
358 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 while (clen--) {
360 *tp++ = *fp++;
361 *tp++ = *fp++;
362 *tp++ = *fp++;
363 *tp++ = *fp++;
364 *tp++ = *fp++;
365 *tp++ = *fp++;
366 *tp++ = *fp++;
367 *tp++ = *fp++;
368 tp += 8;
369 }
370
371 /*
372 * do the rest, if any.
373 */
374 clen = len & 15;
Maciej W. Rozycki19717d052013-09-20 00:49:44 +0100375 rtp = (unsigned char *)tp;
376 rfp = (const unsigned char *)fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 while (clen--) {
378 *rtp++ = *rfp++;
379 }
380 }
381
382 iob();
383}
384
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800385static void cp_from_buf(const int type, void *to, const void *from, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Joe Perches43d620c2011-06-16 19:08:06 +0000387 unsigned short *tp;
388 const unsigned short *fp;
389 unsigned short clen;
390 unsigned char *rtp;
391 const unsigned char *rfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800393 if (type == PMAD_LANCE) {
394 memcpy(to, from, len);
395 } else if (type == PMAX_LANCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 clen = len >> 1;
Joe Perches43d620c2011-06-16 19:08:06 +0000397 tp = to;
398 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 while (clen--) {
400 *tp++ = *fp++;
401 fp++;
402 }
403
404 clen = len & 1;
405
Maciej W. Rozycki19717d052013-09-20 00:49:44 +0100406 rtp = (unsigned char *)tp;
407 rfp = (const unsigned char *)fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 while (clen--) {
410 *rtp++ = *rfp++;
411 }
412 } else {
413
414 /*
415 * copy 16 Byte chunks
416 */
417 clen = len >> 4;
Joe Perches43d620c2011-06-16 19:08:06 +0000418 tp = to;
419 fp = from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 while (clen--) {
421 *tp++ = *fp++;
422 *tp++ = *fp++;
423 *tp++ = *fp++;
424 *tp++ = *fp++;
425 *tp++ = *fp++;
426 *tp++ = *fp++;
427 *tp++ = *fp++;
428 *tp++ = *fp++;
429 fp += 8;
430 }
431
432 /*
433 * do the rest, if any.
434 */
435 clen = len & 15;
Maciej W. Rozycki19717d052013-09-20 00:49:44 +0100436 rtp = (unsigned char *)tp;
437 rfp = (const unsigned char *)fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 while (clen--) {
439 *rtp++ = *rfp++;
440 }
441
442
443 }
444
445}
446
447/* Setup the Lance Rx and Tx rings */
448static void lance_init_ring(struct net_device *dev)
449{
450 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800451 volatile u16 *ib = (volatile u16 *)dev->mem_start;
452 uint leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int i;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Lock out other processes while setting up hardware */
456 netif_stop_queue(dev);
457 lp->rx_new = lp->tx_new = 0;
458 lp->rx_old = lp->tx_old = 0;
459
460 /* Copy the ethernet address to the lance init block.
461 * XXX bit 0 of the physical address registers has to be zero
462 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800463 *lib_ptr(ib, phys_addr[0], lp->type) = (dev->dev_addr[1] << 8) |
464 dev->dev_addr[0];
465 *lib_ptr(ib, phys_addr[1], lp->type) = (dev->dev_addr[3] << 8) |
466 dev->dev_addr[2];
467 *lib_ptr(ib, phys_addr[2], lp->type) = (dev->dev_addr[5] << 8) |
468 dev->dev_addr[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* Setup the initialization block */
470
471 /* Setup rx descriptor pointer */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800472 leptr = offsetof(struct lance_init_block, brx_ring);
473 *lib_ptr(ib, rx_len, lp->type) = (LANCE_LOG_RX_BUFFERS << 13) |
474 (leptr >> 16);
475 *lib_ptr(ib, rx_ptr, lp->type) = leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (ZERO)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800477 printk("RX ptr: %8.8x(%8.8x)\n",
Maciej W. Rozycki3d5baba2014-07-03 05:56:51 +0100478 leptr, (uint)lib_off(brx_ring, lp->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* Setup tx descriptor pointer */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800481 leptr = offsetof(struct lance_init_block, btx_ring);
482 *lib_ptr(ib, tx_len, lp->type) = (LANCE_LOG_TX_BUFFERS << 13) |
483 (leptr >> 16);
484 *lib_ptr(ib, tx_ptr, lp->type) = leptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (ZERO)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800486 printk("TX ptr: %8.8x(%8.8x)\n",
Maciej W. Rozycki3d5baba2014-07-03 05:56:51 +0100487 leptr, (uint)lib_off(btx_ring, lp->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (ZERO)
490 printk("TX rings:\n");
491
492 /* Setup the Tx ring entries */
493 for (i = 0; i < TX_RING_SIZE; i++) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800494 leptr = lp->tx_buf_ptr_lnc[i];
495 *lib_ptr(ib, btx_ring[i].tmd0, lp->type) = leptr;
496 *lib_ptr(ib, btx_ring[i].tmd1, lp->type) = (leptr >> 16) &
497 0xff;
498 *lib_ptr(ib, btx_ring[i].length, lp->type) = 0xf000;
499 /* The ones required by tmd2 */
500 *lib_ptr(ib, btx_ring[i].misc, lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (i < 3 && ZERO)
Maciej W. Rozycki3d5baba2014-07-03 05:56:51 +0100502 printk("%d: %8.8x(%p)\n",
503 i, leptr, lp->tx_buf_ptr_cpu[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
506 /* Setup the Rx ring entries */
507 if (ZERO)
508 printk("RX rings:\n");
509 for (i = 0; i < RX_RING_SIZE; i++) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800510 leptr = lp->rx_buf_ptr_lnc[i];
511 *lib_ptr(ib, brx_ring[i].rmd0, lp->type) = leptr;
512 *lib_ptr(ib, brx_ring[i].rmd1, lp->type) = ((leptr >> 16) &
513 0xff) |
514 LE_R1_OWN;
515 *lib_ptr(ib, brx_ring[i].length, lp->type) = -RX_BUFF_SIZE |
516 0xf000;
517 *lib_ptr(ib, brx_ring[i].mblength, lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (i < 3 && ZERO)
Maciej W. Rozycki3d5baba2014-07-03 05:56:51 +0100519 printk("%d: %8.8x(%p)\n",
520 i, leptr, lp->rx_buf_ptr_cpu[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522 iob();
523}
524
525static int init_restart_lance(struct lance_private *lp)
526{
527 volatile struct lance_regs *ll = lp->ll;
528 int i;
529
530 writereg(&ll->rap, LE_CSR0);
531 writereg(&ll->rdp, LE_C0_INIT);
532
533 /* Wait for the lance to complete initialization */
534 for (i = 0; (i < 100) && !(ll->rdp & LE_C0_IDON); i++) {
535 udelay(10);
536 }
537 if ((i == 100) || (ll->rdp & LE_C0_ERR)) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800538 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n",
539 i, ll->rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return -1;
541 }
542 if ((ll->rdp & LE_C0_ERR)) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800543 printk("LANCE unopened after %d ticks, csr0=%4.4x.\n",
544 i, ll->rdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -1;
546 }
547 writereg(&ll->rdp, LE_C0_IDON);
548 writereg(&ll->rdp, LE_C0_STRT);
549 writereg(&ll->rdp, LE_C0_INEA);
550
551 return 0;
552}
553
554static int lance_rx(struct net_device *dev)
555{
556 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800557 volatile u16 *ib = (volatile u16 *)dev->mem_start;
558 volatile u16 *rd;
559 unsigned short bits;
560 int entry, len;
561 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563#ifdef TEST_HITS
564 {
565 int i;
566
567 printk("[");
568 for (i = 0; i < RX_RING_SIZE; i++) {
569 if (i == lp->rx_new)
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800570 printk("%s", *lib_ptr(ib, brx_ring[i].rmd1,
571 lp->type) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 LE_R1_OWN ? "_" : "X");
573 else
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800574 printk("%s", *lib_ptr(ib, brx_ring[i].rmd1,
575 lp->type) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 LE_R1_OWN ? "." : "1");
577 }
578 printk("]");
579 }
580#endif
581
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800582 for (rd = lib_ptr(ib, brx_ring[lp->rx_new], lp->type);
583 !((bits = *rds_ptr(rd, rmd1, lp->type)) & LE_R1_OWN);
584 rd = lib_ptr(ib, brx_ring[lp->rx_new], lp->type)) {
585 entry = lp->rx_new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 /* We got an incomplete frame? */
588 if ((bits & LE_R1_POK) != LE_R1_POK) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700589 dev->stats.rx_over_errors++;
590 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 } else if (bits & LE_R1_ERR) {
592 /* Count only the end frame as a rx error,
593 * not the beginning
594 */
595 if (bits & LE_R1_BUF)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700596 dev->stats.rx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (bits & LE_R1_CRC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700598 dev->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (bits & LE_R1_OFL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700600 dev->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (bits & LE_R1_FRA)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700602 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (bits & LE_R1_EOP)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700604 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 } else {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800606 len = (*rds_ptr(rd, mblength, lp->type) & 0xfff) - 4;
Pradeep A Dalvi1d266432012-02-05 02:49:09 +0000607 skb = netdev_alloc_skb(dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 if (skb == 0) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700610 dev->stats.rx_dropped++;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800611 *rds_ptr(rd, mblength, lp->type) = 0;
612 *rds_ptr(rd, rmd1, lp->type) =
613 ((lp->rx_buf_ptr_lnc[entry] >> 16) &
614 0xff) | LE_R1_OWN;
615 lp->rx_new = (entry + 1) & RX_RING_MOD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return 0;
617 }
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700618 dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 skb_reserve(skb, 2); /* 16 byte align */
621 skb_put(skb, len); /* make room */
622
623 cp_from_buf(lp->type, skb->data,
Joe Perches64699332012-06-04 12:44:16 +0000624 lp->rx_buf_ptr_cpu[entry], len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 skb->protocol = eth_type_trans(skb, dev);
627 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700628 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
631 /* Return the packet to the pool */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800632 *rds_ptr(rd, mblength, lp->type) = 0;
633 *rds_ptr(rd, length, lp->type) = -RX_BUFF_SIZE | 0xf000;
634 *rds_ptr(rd, rmd1, lp->type) =
635 ((lp->rx_buf_ptr_lnc[entry] >> 16) & 0xff) | LE_R1_OWN;
636 lp->rx_new = (entry + 1) & RX_RING_MOD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 return 0;
639}
640
641static void lance_tx(struct net_device *dev)
642{
643 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800644 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 volatile struct lance_regs *ll = lp->ll;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800646 volatile u16 *td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int i, j;
648 int status;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 j = lp->tx_old;
651
652 spin_lock(&lp->lock);
653
654 for (i = j; i != lp->tx_new; i = j) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800655 td = lib_ptr(ib, btx_ring[i], lp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /* If we hit a packet not owned by us, stop */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800657 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_OWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800660 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_ERR) {
661 status = *tds_ptr(td, misc, lp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700663 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (status & LE_T3_RTY)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700665 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (status & LE_T3_LCOL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700667 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 if (status & LE_T3_CLOS) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700670 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 printk("%s: Carrier Lost\n", dev->name);
672 /* Stop the lance */
673 writereg(&ll->rap, LE_CSR0);
674 writereg(&ll->rdp, LE_C0_STOP);
675 lance_init_ring(dev);
676 load_csrs(lp);
677 init_restart_lance(lp);
678 goto out;
679 }
680 /* Buffer errors and underflows turn off the
681 * transmitter, restart the adapter.
682 */
683 if (status & (LE_T3_BUF | LE_T3_UFL)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700684 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 printk("%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
687 dev->name);
688 /* Stop the lance */
689 writereg(&ll->rap, LE_CSR0);
690 writereg(&ll->rdp, LE_C0_STOP);
691 lance_init_ring(dev);
692 load_csrs(lp);
693 init_restart_lance(lp);
694 goto out;
695 }
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800696 } else if ((*tds_ptr(td, tmd1, lp->type) & LE_T1_POK) ==
697 LE_T1_POK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * So we don't count the packet more than once.
700 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800701 *tds_ptr(td, tmd1, lp->type) &= ~(LE_T1_POK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /* One collision before packet was sent. */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800704 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_EONE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700705 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /* More than one collision, be optimistic. */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800708 if (*tds_ptr(td, tmd1, lp->type) & LE_T1_EMORE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700709 dev->stats.collisions += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700711 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 j = (j + 1) & TX_RING_MOD_MASK;
714 }
715 lp->tx_old = j;
716out:
717 if (netif_queue_stopped(dev) &&
718 TX_BUFFS_AVAIL > 0)
719 netif_wake_queue(dev);
720
721 spin_unlock(&lp->lock);
722}
723
Jeff Garzik28fc1f52007-10-29 05:46:16 -0400724static irqreturn_t lance_dma_merr_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Jeff Garzikc31f28e2006-10-06 14:56:04 -0400726 struct net_device *dev = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Jeff Garzik28fc1f52007-10-29 05:46:16 -0400728 printk(KERN_ERR "%s: DMA error\n", dev->name);
Ralf Baechleda848ec2005-10-10 14:51:01 +0100729 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Jeff Garzik28fc1f52007-10-29 05:46:16 -0400732static irqreturn_t lance_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Jeff Garzikc31f28e2006-10-06 14:56:04 -0400734 struct net_device *dev = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct lance_private *lp = netdev_priv(dev);
736 volatile struct lance_regs *ll = lp->ll;
737 int csr0;
738
739 writereg(&ll->rap, LE_CSR0);
740 csr0 = ll->rdp;
741
742 /* Acknowledge all the interrupt sources ASAP */
743 writereg(&ll->rdp, csr0 & (LE_C0_INTR | LE_C0_TINT | LE_C0_RINT));
744
745 if ((csr0 & LE_C0_ERR)) {
746 /* Clear the error condition */
747 writereg(&ll->rdp, LE_C0_BABL | LE_C0_ERR | LE_C0_MISS |
748 LE_C0_CERR | LE_C0_MERR);
749 }
750 if (csr0 & LE_C0_RINT)
751 lance_rx(dev);
752
753 if (csr0 & LE_C0_TINT)
754 lance_tx(dev);
755
756 if (csr0 & LE_C0_BABL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700757 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 if (csr0 & LE_C0_MISS)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700760 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (csr0 & LE_C0_MERR) {
763 printk("%s: Memory error, status %04x\n", dev->name, csr0);
764
765 writereg(&ll->rdp, LE_C0_STOP);
766
767 lance_init_ring(dev);
768 load_csrs(lp);
769 init_restart_lance(lp);
770 netif_wake_queue(dev);
771 }
772
773 writereg(&ll->rdp, LE_C0_INEA);
774 writereg(&ll->rdp, LE_C0_INEA);
775 return IRQ_HANDLED;
776}
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778static int lance_open(struct net_device *dev)
779{
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800780 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 struct lance_private *lp = netdev_priv(dev);
782 volatile struct lance_regs *ll = lp->ll;
783 int status = 0;
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /* Stop the Lance */
786 writereg(&ll->rap, LE_CSR0);
787 writereg(&ll->rdp, LE_C0_STOP);
788
789 /* Set mode and clear multicast filter only at device open,
790 * so that lance_init_ring() called at any error will not
791 * forget multicast filters.
792 *
793 * BTW it is common bug in all lance drivers! --ANK
794 */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800795 *lib_ptr(ib, mode, lp->type) = 0;
796 *lib_ptr(ib, filter[0], lp->type) = 0;
797 *lib_ptr(ib, filter[1], lp->type) = 0;
798 *lib_ptr(ib, filter[2], lp->type) = 0;
799 *lib_ptr(ib, filter[3], lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 lance_init_ring(dev);
802 load_csrs(lp);
803
804 netif_start_queue(dev);
805
806 /* Associate IRQ with lance_interrupt */
Joe Perchesa0607fd2009-11-18 23:29:17 -0800807 if (request_irq(dev->irq, lance_interrupt, 0, "lance", dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 printk("%s: Can't get IRQ %d\n", dev->name, dev->irq);
809 return -EAGAIN;
810 }
811 if (lp->dma_irq >= 0) {
812 unsigned long flags;
813
Maciej W. Rozycki0fabe102013-09-22 21:55:19 +0100814 if (request_irq(lp->dma_irq, lance_dma_merr_int, IRQF_ONESHOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 "lance error", dev)) {
816 free_irq(dev->irq, dev);
817 printk("%s: Can't get DMA IRQ %d\n", dev->name,
818 lp->dma_irq);
819 return -EAGAIN;
820 }
821
822 spin_lock_irqsave(&ioasic_ssr_lock, flags);
823
824 fast_mb();
825 /* Enable I/O ASIC LANCE DMA. */
826 ioasic_write(IO_REG_SSR,
827 ioasic_read(IO_REG_SSR) | IO_SSR_LANCE_DMA_EN);
828
829 fast_mb();
830 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
831 }
832
833 status = init_restart_lance(lp);
834 return status;
835}
836
837static int lance_close(struct net_device *dev)
838{
839 struct lance_private *lp = netdev_priv(dev);
840 volatile struct lance_regs *ll = lp->ll;
841
842 netif_stop_queue(dev);
843 del_timer_sync(&lp->multicast_timer);
844
845 /* Stop the card */
846 writereg(&ll->rap, LE_CSR0);
847 writereg(&ll->rdp, LE_C0_STOP);
848
849 if (lp->dma_irq >= 0) {
850 unsigned long flags;
851
852 spin_lock_irqsave(&ioasic_ssr_lock, flags);
853
854 fast_mb();
855 /* Disable I/O ASIC LANCE DMA. */
856 ioasic_write(IO_REG_SSR,
857 ioasic_read(IO_REG_SSR) & ~IO_SSR_LANCE_DMA_EN);
858
859 fast_iob();
860 spin_unlock_irqrestore(&ioasic_ssr_lock, flags);
861
862 free_irq(lp->dma_irq, dev);
863 }
864 free_irq(dev->irq, dev);
865 return 0;
866}
867
868static inline int lance_reset(struct net_device *dev)
869{
870 struct lance_private *lp = netdev_priv(dev);
871 volatile struct lance_regs *ll = lp->ll;
872 int status;
873
874 /* Stop the lance */
875 writereg(&ll->rap, LE_CSR0);
876 writereg(&ll->rdp, LE_C0_STOP);
877
878 lance_init_ring(dev);
879 load_csrs(lp);
Florian Westphal860e9532016-05-03 16:33:13 +0200880 netif_trans_update(dev); /* prevent tx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 status = init_restart_lance(lp);
882 return status;
883}
884
885static void lance_tx_timeout(struct net_device *dev)
886{
887 struct lance_private *lp = netdev_priv(dev);
888 volatile struct lance_regs *ll = lp->ll;
889
890 printk(KERN_ERR "%s: transmit timed out, status %04x, reset\n",
891 dev->name, ll->rdp);
892 lance_reset(dev);
893 netif_wake_queue(dev);
894}
895
896static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
897{
898 struct lance_private *lp = netdev_priv(dev);
899 volatile struct lance_regs *ll = lp->ll;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800900 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Maciej W. Rozycki963267b2009-06-08 02:42:35 -0700901 unsigned long flags;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800902 int entry, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800904 len = skb->len;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (len < ETH_ZLEN) {
Herbert Xu5b057c62006-06-23 02:06:41 -0700907 if (skb_padto(skb, ETH_ZLEN))
Patrick McHardy6ed10652009-06-23 06:03:08 +0000908 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 len = ETH_ZLEN;
910 }
911
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700912 dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Maciej W. Rozycki963267b2009-06-08 02:42:35 -0700914 spin_lock_irqsave(&lp->lock, flags);
915
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800916 entry = lp->tx_new;
917 *lib_ptr(ib, btx_ring[entry].length, lp->type) = (-len);
918 *lib_ptr(ib, btx_ring[entry].misc, lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Joe Perches64699332012-06-04 12:44:16 +0000920 cp_to_buf(lp->type, lp->tx_buf_ptr_cpu[entry], skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* Now, give the packet to the lance */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800923 *lib_ptr(ib, btx_ring[entry].tmd1, lp->type) =
924 ((lp->tx_buf_ptr_lnc[entry] >> 16) & 0xff) |
925 (LE_T1_POK | LE_T1_OWN);
926 lp->tx_new = (entry + 1) & TX_RING_MOD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (TX_BUFFS_AVAIL <= 0)
929 netif_stop_queue(dev);
930
931 /* Kick the lance: transmit now */
932 writereg(&ll->rdp, LE_C0_INEA | LE_C0_TDMD);
933
Maciej W. Rozycki963267b2009-06-08 02:42:35 -0700934 spin_unlock_irqrestore(&lp->lock, flags);
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 dev_kfree_skb(skb);
937
Patrick McHardy6ed10652009-06-23 06:03:08 +0000938 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941static void lance_load_multicast(struct net_device *dev)
942{
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800943 struct lance_private *lp = netdev_priv(dev);
944 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000945 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 u32 crc;
947
948 /* set all multicast bits */
949 if (dev->flags & IFF_ALLMULTI) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800950 *lib_ptr(ib, filter[0], lp->type) = 0xffff;
951 *lib_ptr(ib, filter[1], lp->type) = 0xffff;
952 *lib_ptr(ib, filter[2], lp->type) = 0xffff;
953 *lib_ptr(ib, filter[3], lp->type) = 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return;
955 }
956 /* clear the multicast filter */
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800957 *lib_ptr(ib, filter[0], lp->type) = 0;
958 *lib_ptr(ib, filter[1], lp->type) = 0;
959 *lib_ptr(ib, filter[2], lp->type) = 0;
960 *lib_ptr(ib, filter[3], lp->type) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 /* Add addresses */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000963 netdev_for_each_mc_addr(ha, dev) {
Tobias Klauser498d8e22011-07-07 22:06:26 +0000964 crc = ether_crc_le(ETH_ALEN, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 crc = crc >> 26;
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800966 *lib_ptr(ib, filter[crc >> 4], lp->type) |= 1 << (crc & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
970static void lance_set_multicast(struct net_device *dev)
971{
972 struct lance_private *lp = netdev_priv(dev);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800973 volatile u16 *ib = (volatile u16 *)dev->mem_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 volatile struct lance_regs *ll = lp->ll;
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!netif_running(dev))
977 return;
978
979 if (lp->tx_old != lp->tx_new) {
980 mod_timer(&lp->multicast_timer, jiffies + 4 * HZ/100);
981 netif_wake_queue(dev);
982 return;
983 }
984
985 netif_stop_queue(dev);
986
987 writereg(&ll->rap, LE_CSR0);
988 writereg(&ll->rdp, LE_C0_STOP);
989
990 lance_init_ring(dev);
991
992 if (dev->flags & IFF_PROMISC) {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800993 *lib_ptr(ib, mode, lp->type) |= LE_MO_PROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 } else {
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -0800995 *lib_ptr(ib, mode, lp->type) &= ~LE_MO_PROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 lance_load_multicast(dev);
997 }
998 load_csrs(lp);
999 init_restart_lance(lp);
1000 netif_wake_queue(dev);
1001}
1002
1003static void lance_set_multicast_retry(unsigned long _opaque)
1004{
1005 struct net_device *dev = (struct net_device *) _opaque;
1006
1007 lance_set_multicast(dev);
1008}
1009
Alexander Beregalovad5a24e02009-04-14 18:30:25 +00001010static const struct net_device_ops lance_netdev_ops = {
1011 .ndo_open = lance_open,
1012 .ndo_stop = lance_close,
1013 .ndo_start_xmit = lance_start_xmit,
1014 .ndo_tx_timeout = lance_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001015 .ndo_set_rx_mode = lance_set_multicast,
Alexander Beregalovad5a24e02009-04-14 18:30:25 +00001016 .ndo_validate_addr = eth_validate_addr,
1017 .ndo_set_mac_address = eth_mac_addr,
1018};
1019
Bill Pemberton0cb05682012-12-03 09:23:54 -05001020static int dec_lance_probe(struct device *bdev, const int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 static unsigned version_printed;
1023 static const char fmt[] = "declance%d";
1024 char name[10];
1025 struct net_device *dev;
1026 struct lance_private *lp;
1027 volatile struct lance_regs *ll;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001028 resource_size_t start = 0, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 int i, ret;
1030 unsigned long esar_base;
1031 unsigned char *esar;
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (dec_lance_debug && version_printed++ == 0)
1034 printk(version);
1035
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001036 if (bdev)
Kay Sieversc2313552009-03-24 16:38:22 -07001037 snprintf(name, sizeof(name), "%s", dev_name(bdev));
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001038 else {
1039 i = 0;
1040 dev = root_lance_dev;
1041 while (dev) {
1042 i++;
Wang Chen4cf16532008-11-12 23:38:14 -08001043 lp = netdev_priv(dev);
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001044 dev = lp->next;
1045 }
1046 snprintf(name, sizeof(name), fmt, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 dev = alloc_etherdev(sizeof(struct lance_private));
1050 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ret = -ENOMEM;
1052 goto err_out;
1053 }
1054
1055 /*
1056 * alloc_etherdev ensures the data structures used by the LANCE
1057 * are aligned.
1058 */
1059 lp = netdev_priv(dev);
1060 spin_lock_init(&lp->lock);
1061
1062 lp->type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 case ASIC_LANCE:
Ralf Baechle36156cd2005-10-10 14:51:16 +01001065 dev->base_addr = CKSEG1ADDR(dec_kn_slot_base + IOASIC_LANCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /* buffer space for the on-board LANCE shared memory */
1068 /*
1069 * FIXME: ugly hack!
1070 */
Ralf Baechle45695042005-10-10 14:51:11 +01001071 dev->mem_start = CKSEG1ADDR(0x00020000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 dev->mem_end = dev->mem_start + 0x00020000;
1073 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
Ralf Baechle36156cd2005-10-10 14:51:16 +01001074 esar_base = CKSEG1ADDR(dec_kn_slot_base + IOASIC_ESAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 /* Workaround crash with booting KN04 2.1k from Disk */
1077 memset((void *)dev->mem_start, 0,
1078 dev->mem_end - dev->mem_start);
1079
1080 /*
1081 * setup the pointer arrays, this sucks [tm] :-(
1082 */
1083 for (i = 0; i < RX_RING_SIZE; i++) {
1084 lp->rx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001085 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 2 * i * RX_BUFF_SIZE);
1087 lp->rx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001088 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 for (i = 0; i < TX_RING_SIZE; i++) {
1091 lp->tx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001092 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1094 2 * i * TX_BUFF_SIZE);
1095 lp->tx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001096 (BUF_OFFSET_LNC +
1097 RX_RING_SIZE * RX_BUFF_SIZE +
1098 i * TX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
1101 /* Setup I/O ASIC LANCE DMA. */
1102 lp->dma_irq = dec_interrupt[DEC_IRQ_LANCE_MERR];
1103 ioasic_write(IO_REG_LANCE_DMA_P,
Ralf Baechle6684b4e2005-10-10 14:51:06 +01001104 CPHYSADDR(dev->mem_start) << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 break;
Maciej W. Rozyckie8f7f7f2006-12-04 15:04:55 -08001107#ifdef CONFIG_TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 case PMAD_LANCE:
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001109 dev_set_drvdata(bdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001111 start = to_tc_dev(bdev)->resource.start;
1112 len = to_tc_dev(bdev)->resource.end - start + 1;
Kay Sieversc2313552009-03-24 16:38:22 -07001113 if (!request_mem_region(start, len, dev_name(bdev))) {
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001114 printk(KERN_ERR
1115 "%s: Unable to reserve MMIO resource\n",
Kay Sieversc2313552009-03-24 16:38:22 -07001116 dev_name(bdev));
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001117 ret = -EBUSY;
1118 goto err_out_dev;
1119 }
1120
1121 dev->mem_start = CKSEG1ADDR(start);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001122 dev->mem_end = dev->mem_start + 0x100000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 dev->base_addr = dev->mem_start + 0x100000;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001124 dev->irq = to_tc_dev(bdev)->interrupt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 esar_base = dev->mem_start + 0x1c0002;
1126 lp->dma_irq = -1;
1127
1128 for (i = 0; i < RX_RING_SIZE; i++) {
1129 lp->rx_buf_ptr_cpu[i] =
1130 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1131 i * RX_BUFF_SIZE);
1132 lp->rx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001133 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135 for (i = 0; i < TX_RING_SIZE; i++) {
1136 lp->tx_buf_ptr_cpu[i] =
1137 (char *)(dev->mem_start + BUF_OFFSET_CPU +
1138 RX_RING_SIZE * RX_BUFF_SIZE +
1139 i * TX_BUFF_SIZE);
1140 lp->tx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001141 (BUF_OFFSET_LNC +
1142 RX_RING_SIZE * RX_BUFF_SIZE +
1143 i * TX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145
1146 break;
1147#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 case PMAX_LANCE:
1149 dev->irq = dec_interrupt[DEC_IRQ_LANCE];
Ralf Baechle36156cd2005-10-10 14:51:16 +01001150 dev->base_addr = CKSEG1ADDR(KN01_SLOT_BASE + KN01_LANCE);
1151 dev->mem_start = CKSEG1ADDR(KN01_SLOT_BASE + KN01_LANCE_MEM);
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001152 dev->mem_end = dev->mem_start + KN01_SLOT_SIZE;
Ralf Baechle36156cd2005-10-10 14:51:16 +01001153 esar_base = CKSEG1ADDR(KN01_SLOT_BASE + KN01_ESAR + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 lp->dma_irq = -1;
1155
1156 /*
1157 * setup the pointer arrays, this sucks [tm] :-(
1158 */
1159 for (i = 0; i < RX_RING_SIZE; i++) {
1160 lp->rx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001161 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 2 * i * RX_BUFF_SIZE);
1163 lp->rx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001164 (BUF_OFFSET_LNC + i * RX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166 for (i = 0; i < TX_RING_SIZE; i++) {
1167 lp->tx_buf_ptr_cpu[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001168 (char *)(dev->mem_start + 2 * BUF_OFFSET_CPU +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 2 * RX_RING_SIZE * RX_BUFF_SIZE +
1170 2 * i * TX_BUFF_SIZE);
1171 lp->tx_buf_ptr_lnc[i] =
Maciej W. Rozycki3b6e8fe2006-12-04 15:04:54 -08001172 (BUF_OFFSET_LNC +
1173 RX_RING_SIZE * RX_BUFF_SIZE +
1174 i * TX_BUFF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
1176
1177 break;
1178
1179 default:
1180 printk(KERN_ERR "%s: declance_init called with unknown type\n",
1181 name);
1182 ret = -ENODEV;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001183 goto err_out_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185
1186 ll = (struct lance_regs *) dev->base_addr;
1187 esar = (unsigned char *) esar_base;
1188
1189 /* prom checks */
1190 /* First, check for test pattern */
1191 if (esar[0x60] != 0xff && esar[0x64] != 0x00 &&
1192 esar[0x68] != 0x55 && esar[0x6c] != 0xaa) {
1193 printk(KERN_ERR
1194 "%s: Ethernet station address prom not found!\n",
1195 name);
1196 ret = -ENODEV;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001197 goto err_out_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199 /* Check the prom contents */
1200 for (i = 0; i < 8; i++) {
1201 if (esar[i * 4] != esar[0x3c - i * 4] &&
1202 esar[i * 4] != esar[0x40 + i * 4] &&
1203 esar[0x3c - i * 4] != esar[0x40 + i * 4]) {
1204 printk(KERN_ERR "%s: Something is wrong with the "
1205 "ethernet station address prom!\n", name);
1206 ret = -ENODEV;
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001207 goto err_out_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209 }
1210
1211 /* Copy the ethernet address to the device structure, later to the
1212 * lance initialization block so the lance gets it every time it's
1213 * (re)initialized.
1214 */
1215 switch (type) {
1216 case ASIC_LANCE:
Joe Perches0795af52007-10-03 17:59:30 -07001217 printk("%s: IOASIC onboard LANCE", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 break;
1219 case PMAD_LANCE:
Joe Perches0795af52007-10-03 17:59:30 -07001220 printk("%s: PMAD-AA", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 break;
1222 case PMAX_LANCE:
Joe Perches0795af52007-10-03 17:59:30 -07001223 printk("%s: PMAX onboard LANCE", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 break;
1225 }
Joe Perches0795af52007-10-03 17:59:30 -07001226 for (i = 0; i < 6; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 dev->dev_addr[i] = esar[i * 4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Johannes Berge1749612008-10-27 15:59:26 -07001229 printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Alexander Beregalovad5a24e02009-04-14 18:30:25 +00001231 dev->netdev_ops = &lance_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 dev->watchdog_timeo = 5*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
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;
Joe Perchesc061b182010-08-23 18:20:03 +00001251 lp->multicast_timer.function = lance_set_multicast_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 ret = register_netdev(dev);
1254 if (ret) {
1255 printk(KERN_ERR
1256 "%s: Unable to register netdev, aborting.\n", name);
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001257 goto err_out_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
1259
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001260 if (!bdev) {
1261 lp->next = root_lance_dev;
1262 root_lance_dev = dev;
1263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 printk("%s: registered as %s.\n", name, dev->name);
1266 return 0;
1267
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001268err_out_resource:
1269 if (bdev)
1270 release_mem_region(start, len);
1271
1272err_out_dev:
Ralf Baechleb07db752006-06-30 13:56:13 +01001273 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275err_out:
1276 return ret;
1277}
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/* Find all the lance cards on the system and initialize them */
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001280static int __init dec_lance_platform_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
1282 int count = 0;
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (dec_interrupt[DEC_IRQ_LANCE] >= 0) {
1285 if (dec_interrupt[DEC_IRQ_LANCE_MERR] >= 0) {
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001286 if (dec_lance_probe(NULL, ASIC_LANCE) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 } else if (!TURBOCHANNEL) {
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001289 if (dec_lance_probe(NULL, PMAX_LANCE) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 count++;
1291 }
1292 }
1293
1294 return (count > 0) ? 0 : -ENODEV;
1295}
1296
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001297static void __exit dec_lance_platform_remove(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 while (root_lance_dev) {
1300 struct net_device *dev = root_lance_dev;
1301 struct lance_private *lp = netdev_priv(dev);
Ralf Baechleb07db752006-06-30 13:56:13 +01001302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 root_lance_dev = lp->next;
1305 free_netdev(dev);
1306 }
1307}
1308
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001309#ifdef CONFIG_TC
Bill Pemberton0cb05682012-12-03 09:23:54 -05001310static int dec_lance_tc_probe(struct device *dev);
Dmitry Torokhovbe125022017-03-01 17:24:47 -08001311static int dec_lance_tc_remove(struct device *dev);
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001312
1313static const struct tc_device_id dec_lance_tc_table[] = {
1314 { "DEC ", "PMAD-AA " },
1315 { }
1316};
1317MODULE_DEVICE_TABLE(tc, dec_lance_tc_table);
1318
1319static struct tc_driver dec_lance_tc_driver = {
1320 .id_table = dec_lance_tc_table,
1321 .driver = {
1322 .name = "declance",
1323 .bus = &tc_bus_type,
1324 .probe = dec_lance_tc_probe,
Dmitry Torokhovbe125022017-03-01 17:24:47 -08001325 .remove = dec_lance_tc_remove,
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001326 },
1327};
1328
Bill Pemberton0cb05682012-12-03 09:23:54 -05001329static int dec_lance_tc_probe(struct device *dev)
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001330{
1331 int status = dec_lance_probe(dev, PMAD_LANCE);
1332 if (!status)
1333 get_device(dev);
1334 return status;
1335}
1336
Dmitry Torokhovbe125022017-03-01 17:24:47 -08001337static void dec_lance_remove(struct device *bdev)
1338{
1339 struct net_device *dev = dev_get_drvdata(bdev);
1340 resource_size_t start, len;
1341
1342 unregister_netdev(dev);
1343 start = to_tc_dev(bdev)->resource.start;
1344 len = to_tc_dev(bdev)->resource.end - start + 1;
1345 release_mem_region(start, len);
1346 free_netdev(dev);
1347}
1348
1349static int dec_lance_tc_remove(struct device *dev)
Maciej W. Rozycki257b3462007-02-05 16:28:27 -08001350{
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);