blob: 65758881d7aac7e600324c3519ae61f942c99345 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: sunlance.c,v 1.112 2002/01/15 06:48:55 davem Exp $
2 * lance.c: Linux/Sparc/Lance driver
3 *
4 * Written 1995, 1996 by Miguel de Icaza
5 * Sources:
6 * The Linux depca driver
7 * The Linux lance driver.
8 * The Linux skeleton driver.
9 * The NetBSD Sparc/Lance driver.
10 * Theo de Raadt (deraadt@openbsd.org)
11 * NCR92C990 Lan Controller manual
12 *
13 * 1.4:
14 * Added support to run with a ledma on the Sun4m
15 *
16 * 1.5:
17 * Added multiple card detection.
18 *
19 * 4/17/96: Burst sizes and tpe selection on sun4m by Eddie C. Dost
20 * (ecd@skynet.be)
21 *
22 * 5/15/96: auto carrier detection on sun4m by Eddie C. Dost
23 * (ecd@skynet.be)
24 *
25 * 5/17/96: lebuffer on scsi/ether cards now work David S. Miller
26 * (davem@caip.rutgers.edu)
27 *
28 * 5/29/96: override option 'tpe-link-test?', if it is 'false', as
29 * this disables auto carrier detection on sun4m. Eddie C. Dost
30 * (ecd@skynet.be)
31 *
32 * 1.7:
33 * 6/26/96: Bug fix for multiple ledmas, miguel.
34 *
35 * 1.8:
36 * Stole multicast code from depca.c, fixed lance_tx.
37 *
38 * 1.9:
39 * 8/21/96: Fixed the multicast code (Pedro Roque)
40 *
41 * 8/28/96: Send fake packet in lance_open() if auto_select is true,
42 * so we can detect the carrier loss condition in time.
43 * Eddie C. Dost (ecd@skynet.be)
44 *
45 * 9/15/96: Align rx_buf so that eth_copy_and_sum() won't cause an
46 * MNA trap during chksum_partial_copy(). (ecd@skynet.be)
47 *
48 * 11/17/96: Handle LE_C0_MERR in lance_interrupt(). (ecd@skynet.be)
49 *
50 * 12/22/96: Don't loop forever in lance_rx() on incomplete packets.
51 * This was the sun4c killer. Shit, stupid bug.
52 * (ecd@skynet.be)
53 *
54 * 1.10:
55 * 1/26/97: Modularize driver. (ecd@skynet.be)
56 *
57 * 1.11:
58 * 12/27/97: Added sun4d support. (jj@sunsite.mff.cuni.cz)
59 *
60 * 1.12:
61 * 11/3/99: Fixed SMP race in lance_start_xmit found by davem.
62 * Anton Blanchard (anton@progsoc.uts.edu.au)
63 * 2.00: 11/9/99: Massive overhaul and port to new SBUS driver interfaces.
64 * David S. Miller (davem@redhat.com)
65 * 2.01:
66 * 11/08/01: Use library crc32 functions (Matt_Domsch@dell.com)
Jeff Garzik6aa20a22006-09-13 13:24:59 -040067 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69
70#undef DEBUG_DRIVER
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static char lancestr[] = "LANCE";
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/module.h>
75#include <linux/kernel.h>
76#include <linux/types.h>
77#include <linux/fcntl.h>
78#include <linux/interrupt.h>
79#include <linux/ioport.h>
80#include <linux/in.h>
81#include <linux/slab.h>
82#include <linux/string.h>
83#include <linux/delay.h>
84#include <linux/init.h>
85#include <linux/crc32.h>
86#include <linux/errno.h>
87#include <linux/socket.h> /* Used for the temporal inet entries and routing */
88#include <linux/route.h>
89#include <linux/netdevice.h>
90#include <linux/etherdevice.h>
91#include <linux/skbuff.h>
92#include <linux/ethtool.h>
93#include <linux/bitops.h>
David S. Miller738f2b72008-08-27 18:09:11 -070094#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#include <asm/system.h>
97#include <asm/io.h>
98#include <asm/dma.h>
99#include <asm/pgtable.h>
100#include <asm/byteorder.h> /* Used by the checksum routines */
101#include <asm/idprom.h>
102#include <asm/sbus.h>
David S. Miller76fcdb32007-07-30 18:23:39 -0700103#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <asm/auxio.h> /* For tpe-link-test? setting */
105#include <asm/irq.h>
106
Tom 'spot' Callaway10158282005-04-24 20:35:20 -0700107#define DRV_NAME "sunlance"
108#define DRV_VERSION "2.02"
109#define DRV_RELDATE "8/24/03"
110#define DRV_AUTHOR "Miguel de Icaza (miguel@nuclecu.unam.mx)"
111
112static char version[] =
113 DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " " DRV_AUTHOR "\n";
114
115MODULE_VERSION(DRV_VERSION);
116MODULE_AUTHOR(DRV_AUTHOR);
117MODULE_DESCRIPTION("Sun Lance ethernet driver");
118MODULE_LICENSE("GPL");
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* Define: 2^4 Tx buffers and 2^4 Rx buffers */
121#ifndef LANCE_LOG_TX_BUFFERS
122#define LANCE_LOG_TX_BUFFERS 4
123#define LANCE_LOG_RX_BUFFERS 4
124#endif
125
126#define LE_CSR0 0
127#define LE_CSR1 1
128#define LE_CSR2 2
129#define LE_CSR3 3
130
131#define LE_MO_PROM 0x8000 /* Enable promiscuous mode */
132
133#define LE_C0_ERR 0x8000 /* Error: set if BAB, SQE, MISS or ME is set */
134#define LE_C0_BABL 0x4000 /* BAB: Babble: tx timeout. */
135#define LE_C0_CERR 0x2000 /* SQE: Signal quality error */
136#define LE_C0_MISS 0x1000 /* MISS: Missed a packet */
137#define LE_C0_MERR 0x0800 /* ME: Memory error */
138#define LE_C0_RINT 0x0400 /* Received interrupt */
139#define LE_C0_TINT 0x0200 /* Transmitter Interrupt */
140#define LE_C0_IDON 0x0100 /* IFIN: Init finished. */
141#define LE_C0_INTR 0x0080 /* Interrupt or error */
142#define LE_C0_INEA 0x0040 /* Interrupt enable */
143#define LE_C0_RXON 0x0020 /* Receiver on */
144#define LE_C0_TXON 0x0010 /* Transmitter on */
145#define LE_C0_TDMD 0x0008 /* Transmitter demand */
146#define LE_C0_STOP 0x0004 /* Stop the card */
147#define LE_C0_STRT 0x0002 /* Start the card */
148#define LE_C0_INIT 0x0001 /* Init the card */
149
150#define LE_C3_BSWP 0x4 /* SWAP */
151#define LE_C3_ACON 0x2 /* ALE Control */
152#define LE_C3_BCON 0x1 /* Byte control */
153
154/* Receive message descriptor 1 */
155#define LE_R1_OWN 0x80 /* Who owns the entry */
156#define LE_R1_ERR 0x40 /* Error: if FRA, OFL, CRC or BUF is set */
157#define LE_R1_FRA 0x20 /* FRA: Frame error */
158#define LE_R1_OFL 0x10 /* OFL: Frame overflow */
159#define LE_R1_CRC 0x08 /* CRC error */
160#define LE_R1_BUF 0x04 /* BUF: Buffer error */
161#define LE_R1_SOP 0x02 /* Start of packet */
162#define LE_R1_EOP 0x01 /* End of packet */
163#define LE_R1_POK 0x03 /* Packet is complete: SOP + EOP */
164
165#define LE_T1_OWN 0x80 /* Lance owns the packet */
166#define LE_T1_ERR 0x40 /* Error summary */
167#define LE_T1_EMORE 0x10 /* Error: more than one retry needed */
168#define LE_T1_EONE 0x08 /* Error: one retry needed */
169#define LE_T1_EDEF 0x04 /* Error: deferred */
170#define LE_T1_SOP 0x02 /* Start of packet */
171#define LE_T1_EOP 0x01 /* End of packet */
172#define LE_T1_POK 0x03 /* Packet is complete: SOP + EOP */
173
174#define LE_T3_BUF 0x8000 /* Buffer error */
175#define LE_T3_UFL 0x4000 /* Error underflow */
176#define LE_T3_LCOL 0x1000 /* Error late collision */
177#define LE_T3_CLOS 0x0800 /* Error carrier loss */
178#define LE_T3_RTY 0x0400 /* Error retry */
179#define LE_T3_TDR 0x03ff /* Time Domain Reflectometry counter */
180
181#define TX_RING_SIZE (1 << (LANCE_LOG_TX_BUFFERS))
182#define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
183#define TX_RING_LEN_BITS ((LANCE_LOG_TX_BUFFERS) << 29)
184#define TX_NEXT(__x) (((__x)+1) & TX_RING_MOD_MASK)
185
186#define RX_RING_SIZE (1 << (LANCE_LOG_RX_BUFFERS))
187#define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
188#define RX_RING_LEN_BITS ((LANCE_LOG_RX_BUFFERS) << 29)
189#define RX_NEXT(__x) (((__x)+1) & RX_RING_MOD_MASK)
190
191#define PKT_BUF_SZ 1544
192#define RX_BUFF_SIZE PKT_BUF_SZ
193#define TX_BUFF_SIZE PKT_BUF_SZ
194
195struct lance_rx_desc {
196 u16 rmd0; /* low address of packet */
197 u8 rmd1_bits; /* descriptor bits */
198 u8 rmd1_hadr; /* high address of packet */
199 s16 length; /* This length is 2s complement (negative)!
200 * Buffer length
201 */
202 u16 mblength; /* This is the actual number of bytes received */
203};
204
205struct lance_tx_desc {
206 u16 tmd0; /* low address of packet */
207 u8 tmd1_bits; /* descriptor bits */
208 u8 tmd1_hadr; /* high address of packet */
209 s16 length; /* Length is 2s complement (negative)! */
210 u16 misc;
211};
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/* The LANCE initialization block, described in databook. */
214/* On the Sparc, this block should be on a DMA region */
215struct lance_init_block {
216 u16 mode; /* Pre-set mode (reg. 15) */
217 u8 phys_addr[6]; /* Physical ethernet address */
218 u32 filter[2]; /* Multicast filter. */
219
220 /* Receive and transmit ring base, along with extra bits. */
221 u16 rx_ptr; /* receive descriptor addr */
222 u16 rx_len; /* receive len and high addr */
223 u16 tx_ptr; /* transmit descriptor addr */
224 u16 tx_len; /* transmit len and high addr */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* The Tx and Rx ring entries must aligned on 8-byte boundaries. */
227 struct lance_rx_desc brx_ring[RX_RING_SIZE];
228 struct lance_tx_desc btx_ring[TX_RING_SIZE];
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 u8 tx_buf [TX_RING_SIZE][TX_BUFF_SIZE];
231 u8 pad[2]; /* align rx_buf for copy_and_sum(). */
232 u8 rx_buf [RX_RING_SIZE][RX_BUFF_SIZE];
233};
234
235#define libdesc_offset(rt, elem) \
236((__u32)(((unsigned long)(&(((struct lance_init_block *)0)->rt[elem])))))
237
238#define libbuff_offset(rt, elem) \
239((__u32)(((unsigned long)(&(((struct lance_init_block *)0)->rt[elem][0])))))
240
241struct lance_private {
242 void __iomem *lregs; /* Lance RAP/RDP regs. */
243 void __iomem *dregs; /* DMA controller regs. */
244 struct lance_init_block __iomem *init_block_iomem;
245 struct lance_init_block *init_block_mem;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 spinlock_t lock;
248
249 int rx_new, tx_new;
250 int rx_old, tx_old;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400251
David S. Miller334ae612008-08-27 17:01:57 -0700252 struct of_device *ledma; /* If set this points to ledma */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 char tpe; /* cable-selection is TPE */
254 char auto_select; /* cable-selection by carrier */
255 char burst_sizes; /* ledma SBus burst sizes */
256 char pio_buffer; /* init block in PIO space? */
257
258 unsigned short busmaster_regval;
259
260 void (*init_ring)(struct net_device *);
261 void (*rx)(struct net_device *);
262 void (*tx)(struct net_device *);
263
264 char *name;
265 dma_addr_t init_block_dvma;
266 struct net_device *dev; /* Backpointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct sbus_dev *sdev;
268 struct timer_list multicast_timer;
269};
270
271#define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?\
272 lp->tx_old+TX_RING_MOD_MASK-lp->tx_new:\
273 lp->tx_old - lp->tx_new-1)
274
275/* Lance registers. */
276#define RDP 0x00UL /* register data port */
277#define RAP 0x02UL /* register address port */
278#define LANCE_REG_SIZE 0x04UL
279
280#define STOP_LANCE(__lp) \
281do { void __iomem *__base = (__lp)->lregs; \
282 sbus_writew(LE_CSR0, __base + RAP); \
283 sbus_writew(LE_C0_STOP, __base + RDP); \
284} while (0)
285
286int sparc_lance_debug = 2;
287
288/* The Lance uses 24 bit addresses */
289/* On the Sun4c the DVMA will provide the remaining bytes for us */
290/* On the Sun4m we have to instruct the ledma to provide them */
291/* Even worse, on scsi/ether SBUS cards, the init block and the
292 * transmit/receive buffers are addresses as offsets from absolute
293 * zero on the lebuffer PIO area. -DaveM
294 */
295
296#define LANCE_ADDR(x) ((long)(x) & ~0xff000000)
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/* Load the CSR registers */
299static void load_csrs(struct lance_private *lp)
300{
301 u32 leptr;
302
303 if (lp->pio_buffer)
304 leptr = 0;
305 else
306 leptr = LANCE_ADDR(lp->init_block_dvma);
307
308 sbus_writew(LE_CSR1, lp->lregs + RAP);
309 sbus_writew(leptr & 0xffff, lp->lregs + RDP);
310 sbus_writew(LE_CSR2, lp->lregs + RAP);
311 sbus_writew(leptr >> 16, lp->lregs + RDP);
312 sbus_writew(LE_CSR3, lp->lregs + RAP);
313 sbus_writew(lp->busmaster_regval, lp->lregs + RDP);
314
315 /* Point back to csr0 */
316 sbus_writew(LE_CSR0, lp->lregs + RAP);
317}
318
319/* Setup the Lance Rx and Tx rings */
320static void lance_init_ring_dvma(struct net_device *dev)
321{
322 struct lance_private *lp = netdev_priv(dev);
323 struct lance_init_block *ib = lp->init_block_mem;
324 dma_addr_t aib = lp->init_block_dvma;
325 __u32 leptr;
326 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* Lock out other processes while setting up hardware */
329 netif_stop_queue(dev);
330 lp->rx_new = lp->tx_new = 0;
331 lp->rx_old = lp->tx_old = 0;
332
333 /* Copy the ethernet address to the lance init block
334 * Note that on the sparc you need to swap the ethernet address.
335 */
336 ib->phys_addr [0] = dev->dev_addr [1];
337 ib->phys_addr [1] = dev->dev_addr [0];
338 ib->phys_addr [2] = dev->dev_addr [3];
339 ib->phys_addr [3] = dev->dev_addr [2];
340 ib->phys_addr [4] = dev->dev_addr [5];
341 ib->phys_addr [5] = dev->dev_addr [4];
342
343 /* Setup the Tx ring entries */
344 for (i = 0; i <= TX_RING_SIZE; i++) {
345 leptr = LANCE_ADDR(aib + libbuff_offset(tx_buf, i));
346 ib->btx_ring [i].tmd0 = leptr;
347 ib->btx_ring [i].tmd1_hadr = leptr >> 16;
348 ib->btx_ring [i].tmd1_bits = 0;
349 ib->btx_ring [i].length = 0xf000; /* The ones required by tmd2 */
350 ib->btx_ring [i].misc = 0;
351 }
352
353 /* Setup the Rx ring entries */
354 for (i = 0; i < RX_RING_SIZE; i++) {
355 leptr = LANCE_ADDR(aib + libbuff_offset(rx_buf, i));
356
357 ib->brx_ring [i].rmd0 = leptr;
358 ib->brx_ring [i].rmd1_hadr = leptr >> 16;
359 ib->brx_ring [i].rmd1_bits = LE_R1_OWN;
360 ib->brx_ring [i].length = -RX_BUFF_SIZE | 0xf000;
361 ib->brx_ring [i].mblength = 0;
362 }
363
364 /* Setup the initialization block */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* Setup rx descriptor pointer */
367 leptr = LANCE_ADDR(aib + libdesc_offset(brx_ring, 0));
368 ib->rx_len = (LANCE_LOG_RX_BUFFERS << 13) | (leptr >> 16);
369 ib->rx_ptr = leptr;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* Setup tx descriptor pointer */
372 leptr = LANCE_ADDR(aib + libdesc_offset(btx_ring, 0));
373 ib->tx_len = (LANCE_LOG_TX_BUFFERS << 13) | (leptr >> 16);
374 ib->tx_ptr = leptr;
375}
376
377static void lance_init_ring_pio(struct net_device *dev)
378{
379 struct lance_private *lp = netdev_priv(dev);
380 struct lance_init_block __iomem *ib = lp->init_block_iomem;
381 u32 leptr;
382 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* Lock out other processes while setting up hardware */
385 netif_stop_queue(dev);
386 lp->rx_new = lp->tx_new = 0;
387 lp->rx_old = lp->tx_old = 0;
388
389 /* Copy the ethernet address to the lance init block
390 * Note that on the sparc you need to swap the ethernet address.
391 */
392 sbus_writeb(dev->dev_addr[1], &ib->phys_addr[0]);
393 sbus_writeb(dev->dev_addr[0], &ib->phys_addr[1]);
394 sbus_writeb(dev->dev_addr[3], &ib->phys_addr[2]);
395 sbus_writeb(dev->dev_addr[2], &ib->phys_addr[3]);
396 sbus_writeb(dev->dev_addr[5], &ib->phys_addr[4]);
397 sbus_writeb(dev->dev_addr[4], &ib->phys_addr[5]);
398
399 /* Setup the Tx ring entries */
400 for (i = 0; i <= TX_RING_SIZE; i++) {
401 leptr = libbuff_offset(tx_buf, i);
402 sbus_writew(leptr, &ib->btx_ring [i].tmd0);
403 sbus_writeb(leptr >> 16,&ib->btx_ring [i].tmd1_hadr);
404 sbus_writeb(0, &ib->btx_ring [i].tmd1_bits);
405
406 /* The ones required by tmd2 */
407 sbus_writew(0xf000, &ib->btx_ring [i].length);
408 sbus_writew(0, &ib->btx_ring [i].misc);
409 }
410
411 /* Setup the Rx ring entries */
412 for (i = 0; i < RX_RING_SIZE; i++) {
413 leptr = libbuff_offset(rx_buf, i);
414
415 sbus_writew(leptr, &ib->brx_ring [i].rmd0);
416 sbus_writeb(leptr >> 16,&ib->brx_ring [i].rmd1_hadr);
417 sbus_writeb(LE_R1_OWN, &ib->brx_ring [i].rmd1_bits);
418 sbus_writew(-RX_BUFF_SIZE|0xf000,
419 &ib->brx_ring [i].length);
420 sbus_writew(0, &ib->brx_ring [i].mblength);
421 }
422
423 /* Setup the initialization block */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* Setup rx descriptor pointer */
426 leptr = libdesc_offset(brx_ring, 0);
427 sbus_writew((LANCE_LOG_RX_BUFFERS << 13) | (leptr >> 16),
428 &ib->rx_len);
429 sbus_writew(leptr, &ib->rx_ptr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 /* Setup tx descriptor pointer */
432 leptr = libdesc_offset(btx_ring, 0);
433 sbus_writew((LANCE_LOG_TX_BUFFERS << 13) | (leptr >> 16),
434 &ib->tx_len);
435 sbus_writew(leptr, &ib->tx_ptr);
436}
437
438static void init_restart_ledma(struct lance_private *lp)
439{
440 u32 csr = sbus_readl(lp->dregs + DMA_CSR);
441
442 if (!(csr & DMA_HNDL_ERROR)) {
443 /* E-Cache draining */
444 while (sbus_readl(lp->dregs + DMA_CSR) & DMA_FIFO_ISDRAIN)
445 barrier();
446 }
447
448 csr = sbus_readl(lp->dregs + DMA_CSR);
449 csr &= ~DMA_E_BURSTS;
450 if (lp->burst_sizes & DMA_BURST32)
451 csr |= DMA_E_BURST32;
452 else
453 csr |= DMA_E_BURST16;
454
455 csr |= (DMA_DSBL_RD_DRN | DMA_DSBL_WR_INV | DMA_FIFO_INV);
456
457 if (lp->tpe)
458 csr |= DMA_EN_ENETAUI;
459 else
460 csr &= ~DMA_EN_ENETAUI;
461 udelay(20);
462 sbus_writel(csr, lp->dregs + DMA_CSR);
463 udelay(200);
464}
465
466static int init_restart_lance(struct lance_private *lp)
467{
468 u16 regval = 0;
469 int i;
470
471 if (lp->dregs)
472 init_restart_ledma(lp);
473
474 sbus_writew(LE_CSR0, lp->lregs + RAP);
475 sbus_writew(LE_C0_INIT, lp->lregs + RDP);
476
477 /* Wait for the lance to complete initialization */
478 for (i = 0; i < 100; i++) {
479 regval = sbus_readw(lp->lregs + RDP);
480
481 if (regval & (LE_C0_ERR | LE_C0_IDON))
482 break;
483 barrier();
484 }
485 if (i == 100 || (regval & LE_C0_ERR)) {
486 printk(KERN_ERR "LANCE unopened after %d ticks, csr0=%4.4x.\n",
487 i, regval);
488 if (lp->dregs)
489 printk("dcsr=%8.8x\n", sbus_readl(lp->dregs + DMA_CSR));
490 return -1;
491 }
492
493 /* Clear IDON by writing a "1", enable interrupts and start lance */
494 sbus_writew(LE_C0_IDON, lp->lregs + RDP);
495 sbus_writew(LE_C0_INEA | LE_C0_STRT, lp->lregs + RDP);
496
497 if (lp->dregs) {
498 u32 csr = sbus_readl(lp->dregs + DMA_CSR);
499
500 csr |= DMA_INT_ENAB;
501 sbus_writel(csr, lp->dregs + DMA_CSR);
502 }
503
504 return 0;
505}
506
507static void lance_rx_dvma(struct net_device *dev)
508{
509 struct lance_private *lp = netdev_priv(dev);
510 struct lance_init_block *ib = lp->init_block_mem;
511 struct lance_rx_desc *rd;
512 u8 bits;
513 int len, entry = lp->rx_new;
514 struct sk_buff *skb;
515
516 for (rd = &ib->brx_ring [entry];
517 !((bits = rd->rmd1_bits) & LE_R1_OWN);
518 rd = &ib->brx_ring [entry]) {
519
520 /* We got an incomplete frame? */
521 if ((bits & LE_R1_POK) != LE_R1_POK) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700522 dev->stats.rx_over_errors++;
523 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 } else if (bits & LE_R1_ERR) {
525 /* Count only the end frame as a rx error,
526 * not the beginning
527 */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700528 if (bits & LE_R1_BUF) dev->stats.rx_fifo_errors++;
529 if (bits & LE_R1_CRC) dev->stats.rx_crc_errors++;
530 if (bits & LE_R1_OFL) dev->stats.rx_over_errors++;
531 if (bits & LE_R1_FRA) dev->stats.rx_frame_errors++;
532 if (bits & LE_R1_EOP) dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } else {
534 len = (rd->mblength & 0xfff) - 4;
535 skb = dev_alloc_skb(len + 2);
536
537 if (skb == NULL) {
538 printk(KERN_INFO "%s: Memory squeeze, deferring packet.\n",
539 dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700540 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 rd->mblength = 0;
542 rd->rmd1_bits = LE_R1_OWN;
543 lp->rx_new = RX_NEXT(entry);
544 return;
545 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400546
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700547 dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 skb_reserve(skb, 2); /* 16 byte align */
550 skb_put(skb, len); /* make room */
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700551 skb_copy_to_linear_data(skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 (unsigned char *)&(ib->rx_buf [entry][0]),
David S. Miller8c7b7fa2007-07-10 22:08:12 -0700553 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 skb->protocol = eth_type_trans(skb, dev);
555 netif_rx(skb);
556 dev->last_rx = jiffies;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700557 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
560 /* Return the packet to the pool */
561 rd->mblength = 0;
562 rd->rmd1_bits = LE_R1_OWN;
563 entry = RX_NEXT(entry);
564 }
565
566 lp->rx_new = entry;
567}
568
569static void lance_tx_dvma(struct net_device *dev)
570{
571 struct lance_private *lp = netdev_priv(dev);
572 struct lance_init_block *ib = lp->init_block_mem;
573 int i, j;
574
575 spin_lock(&lp->lock);
576
577 j = lp->tx_old;
578 for (i = j; i != lp->tx_new; i = j) {
579 struct lance_tx_desc *td = &ib->btx_ring [i];
580 u8 bits = td->tmd1_bits;
581
582 /* If we hit a packet not owned by us, stop */
583 if (bits & LE_T1_OWN)
584 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (bits & LE_T1_ERR) {
587 u16 status = td->misc;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400588
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700589 dev->stats.tx_errors++;
590 if (status & LE_T3_RTY) dev->stats.tx_aborted_errors++;
591 if (status & LE_T3_LCOL) dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (status & LE_T3_CLOS) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700594 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (lp->auto_select) {
596 lp->tpe = 1 - lp->tpe;
597 printk(KERN_NOTICE "%s: Carrier Lost, trying %s\n",
598 dev->name, lp->tpe?"TPE":"AUI");
599 STOP_LANCE(lp);
600 lp->init_ring(dev);
601 load_csrs(lp);
602 init_restart_lance(lp);
603 goto out;
604 }
605 }
606
607 /* Buffer errors and underflows turn off the
608 * transmitter, restart the adapter.
609 */
610 if (status & (LE_T3_BUF|LE_T3_UFL)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700611 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 printk(KERN_ERR "%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
614 dev->name);
615 STOP_LANCE(lp);
616 lp->init_ring(dev);
617 load_csrs(lp);
618 init_restart_lance(lp);
619 goto out;
620 }
621 } else if ((bits & LE_T1_POK) == LE_T1_POK) {
622 /*
623 * So we don't count the packet more than once.
624 */
625 td->tmd1_bits = bits & ~(LE_T1_POK);
626
627 /* One collision before packet was sent. */
628 if (bits & LE_T1_EONE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700629 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 /* More than one collision, be optimistic. */
632 if (bits & LE_T1_EMORE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700633 dev->stats.collisions += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700635 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 j = TX_NEXT(j);
639 }
640 lp->tx_old = j;
641out:
642 if (netif_queue_stopped(dev) &&
643 TX_BUFFS_AVAIL > 0)
644 netif_wake_queue(dev);
645
646 spin_unlock(&lp->lock);
647}
648
649static void lance_piocopy_to_skb(struct sk_buff *skb, void __iomem *piobuf, int len)
650{
651 u16 *p16 = (u16 *) skb->data;
652 u32 *p32;
653 u8 *p8;
654 void __iomem *pbuf = piobuf;
655
656 /* We know here that both src and dest are on a 16bit boundary. */
657 *p16++ = sbus_readw(pbuf);
658 p32 = (u32 *) p16;
659 pbuf += 2;
660 len -= 2;
661
662 while (len >= 4) {
663 *p32++ = sbus_readl(pbuf);
664 pbuf += 4;
665 len -= 4;
666 }
667 p8 = (u8 *) p32;
668 if (len >= 2) {
669 p16 = (u16 *) p32;
670 *p16++ = sbus_readw(pbuf);
671 pbuf += 2;
672 len -= 2;
673 p8 = (u8 *) p16;
674 }
675 if (len >= 1)
676 *p8 = sbus_readb(pbuf);
677}
678
679static void lance_rx_pio(struct net_device *dev)
680{
681 struct lance_private *lp = netdev_priv(dev);
682 struct lance_init_block __iomem *ib = lp->init_block_iomem;
683 struct lance_rx_desc __iomem *rd;
684 unsigned char bits;
685 int len, entry;
686 struct sk_buff *skb;
687
688 entry = lp->rx_new;
689 for (rd = &ib->brx_ring [entry];
690 !((bits = sbus_readb(&rd->rmd1_bits)) & LE_R1_OWN);
691 rd = &ib->brx_ring [entry]) {
692
693 /* We got an incomplete frame? */
694 if ((bits & LE_R1_POK) != LE_R1_POK) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700695 dev->stats.rx_over_errors++;
696 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 } else if (bits & LE_R1_ERR) {
698 /* Count only the end frame as a rx error,
699 * not the beginning
700 */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700701 if (bits & LE_R1_BUF) dev->stats.rx_fifo_errors++;
702 if (bits & LE_R1_CRC) dev->stats.rx_crc_errors++;
703 if (bits & LE_R1_OFL) dev->stats.rx_over_errors++;
704 if (bits & LE_R1_FRA) dev->stats.rx_frame_errors++;
705 if (bits & LE_R1_EOP) dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 } else {
707 len = (sbus_readw(&rd->mblength) & 0xfff) - 4;
708 skb = dev_alloc_skb(len + 2);
709
710 if (skb == NULL) {
711 printk(KERN_INFO "%s: Memory squeeze, deferring packet.\n",
712 dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700713 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 sbus_writew(0, &rd->mblength);
715 sbus_writeb(LE_R1_OWN, &rd->rmd1_bits);
716 lp->rx_new = RX_NEXT(entry);
717 return;
718 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400719
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700720 dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 skb_reserve (skb, 2); /* 16 byte align */
723 skb_put(skb, len); /* make room */
724 lance_piocopy_to_skb(skb, &(ib->rx_buf[entry][0]), len);
725 skb->protocol = eth_type_trans(skb, dev);
726 netif_rx(skb);
727 dev->last_rx = jiffies;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700728 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
731 /* Return the packet to the pool */
732 sbus_writew(0, &rd->mblength);
733 sbus_writeb(LE_R1_OWN, &rd->rmd1_bits);
734 entry = RX_NEXT(entry);
735 }
736
737 lp->rx_new = entry;
738}
739
740static void lance_tx_pio(struct net_device *dev)
741{
742 struct lance_private *lp = netdev_priv(dev);
743 struct lance_init_block __iomem *ib = lp->init_block_iomem;
744 int i, j;
745
746 spin_lock(&lp->lock);
747
748 j = lp->tx_old;
749 for (i = j; i != lp->tx_new; i = j) {
750 struct lance_tx_desc __iomem *td = &ib->btx_ring [i];
751 u8 bits = sbus_readb(&td->tmd1_bits);
752
753 /* If we hit a packet not owned by us, stop */
754 if (bits & LE_T1_OWN)
755 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (bits & LE_T1_ERR) {
758 u16 status = sbus_readw(&td->misc);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400759
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700760 dev->stats.tx_errors++;
761 if (status & LE_T3_RTY) dev->stats.tx_aborted_errors++;
762 if (status & LE_T3_LCOL) dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 if (status & LE_T3_CLOS) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700765 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (lp->auto_select) {
767 lp->tpe = 1 - lp->tpe;
768 printk(KERN_NOTICE "%s: Carrier Lost, trying %s\n",
769 dev->name, lp->tpe?"TPE":"AUI");
770 STOP_LANCE(lp);
771 lp->init_ring(dev);
772 load_csrs(lp);
773 init_restart_lance(lp);
774 goto out;
775 }
776 }
777
778 /* Buffer errors and underflows turn off the
779 * transmitter, restart the adapter.
780 */
781 if (status & (LE_T3_BUF|LE_T3_UFL)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700782 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 printk(KERN_ERR "%s: Tx: ERR_BUF|ERR_UFL, restarting\n",
785 dev->name);
786 STOP_LANCE(lp);
787 lp->init_ring(dev);
788 load_csrs(lp);
789 init_restart_lance(lp);
790 goto out;
791 }
792 } else if ((bits & LE_T1_POK) == LE_T1_POK) {
793 /*
794 * So we don't count the packet more than once.
795 */
796 sbus_writeb(bits & ~(LE_T1_POK), &td->tmd1_bits);
797
798 /* One collision before packet was sent. */
799 if (bits & LE_T1_EONE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700800 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 /* More than one collision, be optimistic. */
803 if (bits & LE_T1_EMORE)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700804 dev->stats.collisions += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700806 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 j = TX_NEXT(j);
810 }
811 lp->tx_old = j;
812
813 if (netif_queue_stopped(dev) &&
814 TX_BUFFS_AVAIL > 0)
815 netif_wake_queue(dev);
816out:
817 spin_unlock(&lp->lock);
818}
819
David Howells7d12e782006-10-05 14:55:46 +0100820static irqreturn_t lance_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Jeff Garzikc31f28e2006-10-06 14:56:04 -0400822 struct net_device *dev = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 struct lance_private *lp = netdev_priv(dev);
824 int csr0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 sbus_writew(LE_CSR0, lp->lregs + RAP);
827 csr0 = sbus_readw(lp->lregs + RDP);
828
829 /* Acknowledge all the interrupt sources ASAP */
830 sbus_writew(csr0 & (LE_C0_INTR | LE_C0_TINT | LE_C0_RINT),
831 lp->lregs + RDP);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if ((csr0 & LE_C0_ERR) != 0) {
834 /* Clear the error condition */
835 sbus_writew((LE_C0_BABL | LE_C0_ERR | LE_C0_MISS |
836 LE_C0_CERR | LE_C0_MERR),
837 lp->lregs + RDP);
838 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (csr0 & LE_C0_RINT)
841 lp->rx(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (csr0 & LE_C0_TINT)
844 lp->tx(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (csr0 & LE_C0_BABL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700847 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (csr0 & LE_C0_MISS)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700850 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 if (csr0 & LE_C0_MERR) {
853 if (lp->dregs) {
854 u32 addr = sbus_readl(lp->dregs + DMA_ADDR);
855
856 printk(KERN_ERR "%s: Memory error, status %04x, addr %06x\n",
857 dev->name, csr0, addr & 0xffffff);
858 } else {
859 printk(KERN_ERR "%s: Memory error, status %04x\n",
860 dev->name, csr0);
861 }
862
863 sbus_writew(LE_C0_STOP, lp->lregs + RDP);
864
865 if (lp->dregs) {
866 u32 dma_csr = sbus_readl(lp->dregs + DMA_CSR);
867
868 dma_csr |= DMA_FIFO_INV;
869 sbus_writel(dma_csr, lp->dregs + DMA_CSR);
870 }
871
872 lp->init_ring(dev);
873 load_csrs(lp);
874 init_restart_lance(lp);
875 netif_wake_queue(dev);
876 }
877
878 sbus_writew(LE_C0_INEA, lp->lregs + RDP);
879
880 return IRQ_HANDLED;
881}
882
883/* Build a fake network packet and send it to ourselves. */
884static void build_fake_packet(struct lance_private *lp)
885{
886 struct net_device *dev = lp->dev;
887 int i, entry;
888
889 entry = lp->tx_new & TX_RING_MOD_MASK;
890 if (lp->pio_buffer) {
891 struct lance_init_block __iomem *ib = lp->init_block_iomem;
892 u16 __iomem *packet = (u16 __iomem *) &(ib->tx_buf[entry][0]);
893 struct ethhdr __iomem *eth = (struct ethhdr __iomem *) packet;
894 for (i = 0; i < (ETH_ZLEN / sizeof(u16)); i++)
895 sbus_writew(0, &packet[i]);
896 for (i = 0; i < 6; i++) {
897 sbus_writeb(dev->dev_addr[i], &eth->h_dest[i]);
898 sbus_writeb(dev->dev_addr[i], &eth->h_source[i]);
899 }
900 sbus_writew((-ETH_ZLEN) | 0xf000, &ib->btx_ring[entry].length);
901 sbus_writew(0, &ib->btx_ring[entry].misc);
902 sbus_writeb(LE_T1_POK|LE_T1_OWN, &ib->btx_ring[entry].tmd1_bits);
903 } else {
904 struct lance_init_block *ib = lp->init_block_mem;
905 u16 *packet = (u16 *) &(ib->tx_buf[entry][0]);
906 struct ethhdr *eth = (struct ethhdr *) packet;
907 memset(packet, 0, ETH_ZLEN);
908 for (i = 0; i < 6; i++) {
909 eth->h_dest[i] = dev->dev_addr[i];
910 eth->h_source[i] = dev->dev_addr[i];
911 }
912 ib->btx_ring[entry].length = (-ETH_ZLEN) | 0xf000;
913 ib->btx_ring[entry].misc = 0;
914 ib->btx_ring[entry].tmd1_bits = (LE_T1_POK|LE_T1_OWN);
915 }
916 lp->tx_new = TX_NEXT(entry);
917}
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919static int lance_open(struct net_device *dev)
920{
921 struct lance_private *lp = netdev_priv(dev);
922 int status = 0;
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 STOP_LANCE(lp);
925
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700926 if (request_irq(dev->irq, &lance_interrupt, IRQF_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 lancestr, (void *) dev)) {
David S. Millerc6387a42006-06-20 01:21:29 -0700928 printk(KERN_ERR "Lance: Can't get irq %d\n", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return -EAGAIN;
930 }
931
932 /* On the 4m, setup the ledma to provide the upper bits for buffers */
933 if (lp->dregs) {
934 u32 regval = lp->init_block_dvma & 0xff000000;
935
936 sbus_writel(regval, lp->dregs + DMA_TEST);
937 }
938
939 /* Set mode and clear multicast filter only at device open,
940 * so that lance_init_ring() called at any error will not
941 * forget multicast filters.
942 *
943 * BTW it is common bug in all lance drivers! --ANK
944 */
945 if (lp->pio_buffer) {
946 struct lance_init_block __iomem *ib = lp->init_block_iomem;
947 sbus_writew(0, &ib->mode);
948 sbus_writel(0, &ib->filter[0]);
949 sbus_writel(0, &ib->filter[1]);
950 } else {
951 struct lance_init_block *ib = lp->init_block_mem;
952 ib->mode = 0;
953 ib->filter [0] = 0;
954 ib->filter [1] = 0;
955 }
956
957 lp->init_ring(dev);
958 load_csrs(lp);
959
960 netif_start_queue(dev);
961
962 status = init_restart_lance(lp);
963 if (!status && lp->auto_select) {
964 build_fake_packet(lp);
965 sbus_writew(LE_C0_INEA | LE_C0_TDMD, lp->lregs + RDP);
966 }
967
968 return status;
969}
970
971static int lance_close(struct net_device *dev)
972{
973 struct lance_private *lp = netdev_priv(dev);
974
975 netif_stop_queue(dev);
976 del_timer_sync(&lp->multicast_timer);
977
978 STOP_LANCE(lp);
979
980 free_irq(dev->irq, (void *) dev);
981 return 0;
982}
983
984static int lance_reset(struct net_device *dev)
985{
986 struct lance_private *lp = netdev_priv(dev);
987 int status;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 STOP_LANCE(lp);
990
991 /* On the 4m, reset the dma too */
992 if (lp->dregs) {
993 u32 csr, addr;
994
995 printk(KERN_ERR "resetting ledma\n");
996 csr = sbus_readl(lp->dregs + DMA_CSR);
997 sbus_writel(csr | DMA_RST_ENET, lp->dregs + DMA_CSR);
998 udelay(200);
999 sbus_writel(csr & ~DMA_RST_ENET, lp->dregs + DMA_CSR);
1000
1001 addr = lp->init_block_dvma & 0xff000000;
1002 sbus_writel(addr, lp->dregs + DMA_TEST);
1003 }
1004 lp->init_ring(dev);
1005 load_csrs(lp);
1006 dev->trans_start = jiffies;
1007 status = init_restart_lance(lp);
1008 return status;
1009}
1010
1011static void lance_piocopy_from_skb(void __iomem *dest, unsigned char *src, int len)
1012{
1013 void __iomem *piobuf = dest;
1014 u32 *p32;
1015 u16 *p16;
1016 u8 *p8;
1017
1018 switch ((unsigned long)src & 0x3) {
1019 case 0:
1020 p32 = (u32 *) src;
1021 while (len >= 4) {
1022 sbus_writel(*p32, piobuf);
1023 p32++;
1024 piobuf += 4;
1025 len -= 4;
1026 }
1027 src = (char *) p32;
1028 break;
1029 case 1:
1030 case 3:
1031 p8 = (u8 *) src;
1032 while (len >= 4) {
1033 u32 val;
1034
1035 val = p8[0] << 24;
1036 val |= p8[1] << 16;
1037 val |= p8[2] << 8;
1038 val |= p8[3];
1039 sbus_writel(val, piobuf);
1040 p8 += 4;
1041 piobuf += 4;
1042 len -= 4;
1043 }
1044 src = (char *) p8;
1045 break;
1046 case 2:
1047 p16 = (u16 *) src;
1048 while (len >= 4) {
1049 u32 val = p16[0]<<16 | p16[1];
1050 sbus_writel(val, piobuf);
1051 p16 += 2;
1052 piobuf += 4;
1053 len -= 4;
1054 }
1055 src = (char *) p16;
1056 break;
1057 };
1058 if (len >= 2) {
1059 u16 val = src[0] << 8 | src[1];
1060 sbus_writew(val, piobuf);
1061 src += 2;
1062 piobuf += 2;
1063 len -= 2;
1064 }
1065 if (len >= 1)
1066 sbus_writeb(src[0], piobuf);
1067}
1068
1069static void lance_piozero(void __iomem *dest, int len)
1070{
1071 void __iomem *piobuf = dest;
1072
1073 if ((unsigned long)piobuf & 1) {
1074 sbus_writeb(0, piobuf);
1075 piobuf += 1;
1076 len -= 1;
1077 if (len == 0)
1078 return;
1079 }
1080 if (len == 1) {
1081 sbus_writeb(0, piobuf);
1082 return;
1083 }
1084 if ((unsigned long)piobuf & 2) {
1085 sbus_writew(0, piobuf);
1086 piobuf += 2;
1087 len -= 2;
1088 if (len == 0)
1089 return;
1090 }
1091 while (len >= 4) {
1092 sbus_writel(0, piobuf);
1093 piobuf += 4;
1094 len -= 4;
1095 }
1096 if (len >= 2) {
1097 sbus_writew(0, piobuf);
1098 piobuf += 2;
1099 len -= 2;
1100 }
1101 if (len >= 1)
1102 sbus_writeb(0, piobuf);
1103}
1104
1105static void lance_tx_timeout(struct net_device *dev)
1106{
1107 struct lance_private *lp = netdev_priv(dev);
1108
1109 printk(KERN_ERR "%s: transmit timed out, status %04x, reset\n",
1110 dev->name, sbus_readw(lp->lregs + RDP));
1111 lance_reset(dev);
1112 netif_wake_queue(dev);
1113}
1114
1115static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
1116{
1117 struct lance_private *lp = netdev_priv(dev);
1118 int entry, skblen, len;
1119
1120 skblen = skb->len;
1121
1122 len = (skblen <= ETH_ZLEN) ? ETH_ZLEN : skblen;
1123
1124 spin_lock_irq(&lp->lock);
1125
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001126 dev->stats.tx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 entry = lp->tx_new & TX_RING_MOD_MASK;
1129 if (lp->pio_buffer) {
1130 struct lance_init_block __iomem *ib = lp->init_block_iomem;
1131 sbus_writew((-len) | 0xf000, &ib->btx_ring[entry].length);
1132 sbus_writew(0, &ib->btx_ring[entry].misc);
1133 lance_piocopy_from_skb(&ib->tx_buf[entry][0], skb->data, skblen);
1134 if (len != skblen)
1135 lance_piozero(&ib->tx_buf[entry][skblen], len - skblen);
1136 sbus_writeb(LE_T1_POK | LE_T1_OWN, &ib->btx_ring[entry].tmd1_bits);
1137 } else {
1138 struct lance_init_block *ib = lp->init_block_mem;
1139 ib->btx_ring [entry].length = (-len) | 0xf000;
1140 ib->btx_ring [entry].misc = 0;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001141 skb_copy_from_linear_data(skb, &ib->tx_buf [entry][0], skblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (len != skblen)
1143 memset((char *) &ib->tx_buf [entry][skblen], 0, len - skblen);
1144 ib->btx_ring [entry].tmd1_bits = (LE_T1_POK | LE_T1_OWN);
1145 }
1146
1147 lp->tx_new = TX_NEXT(entry);
1148
1149 if (TX_BUFFS_AVAIL <= 0)
1150 netif_stop_queue(dev);
1151
1152 /* Kick the lance: transmit now */
1153 sbus_writew(LE_C0_INEA | LE_C0_TDMD, lp->lregs + RDP);
1154
1155 /* Read back CSR to invalidate the E-Cache.
1156 * This is needed, because DMA_DSBL_WR_INV is set.
1157 */
1158 if (lp->dregs)
1159 sbus_readw(lp->lregs + RDP);
1160
1161 spin_unlock_irq(&lp->lock);
1162
1163 dev->trans_start = jiffies;
1164 dev_kfree_skb(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return 0;
1167}
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169/* taken from the depca driver */
1170static void lance_load_multicast(struct net_device *dev)
1171{
1172 struct lance_private *lp = netdev_priv(dev);
1173 struct dev_mc_list *dmi = dev->mc_list;
1174 char *addrs;
1175 int i;
1176 u32 crc;
1177 u32 val;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 /* set all multicast bits */
1180 if (dev->flags & IFF_ALLMULTI)
1181 val = ~0;
1182 else
1183 val = 0;
1184
1185 if (lp->pio_buffer) {
1186 struct lance_init_block __iomem *ib = lp->init_block_iomem;
1187 sbus_writel(val, &ib->filter[0]);
1188 sbus_writel(val, &ib->filter[1]);
1189 } else {
1190 struct lance_init_block *ib = lp->init_block_mem;
1191 ib->filter [0] = val;
1192 ib->filter [1] = val;
1193 }
1194
1195 if (dev->flags & IFF_ALLMULTI)
1196 return;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /* Add addresses */
1199 for (i = 0; i < dev->mc_count; i++) {
1200 addrs = dmi->dmi_addr;
1201 dmi = dmi->next;
1202
1203 /* multicast address? */
1204 if (!(*addrs & 1))
1205 continue;
1206 crc = ether_crc_le(6, addrs);
1207 crc = crc >> 26;
1208 if (lp->pio_buffer) {
1209 struct lance_init_block __iomem *ib = lp->init_block_iomem;
1210 u16 __iomem *mcast_table = (u16 __iomem *) &ib->filter;
1211 u16 tmp = sbus_readw(&mcast_table[crc>>4]);
1212 tmp |= 1 << (crc & 0xf);
1213 sbus_writew(tmp, &mcast_table[crc>>4]);
1214 } else {
1215 struct lance_init_block *ib = lp->init_block_mem;
1216 u16 *mcast_table = (u16 *) &ib->filter;
1217 mcast_table [crc >> 4] |= 1 << (crc & 0xf);
1218 }
1219 }
1220}
1221
1222static void lance_set_multicast(struct net_device *dev)
1223{
1224 struct lance_private *lp = netdev_priv(dev);
1225 struct lance_init_block *ib_mem = lp->init_block_mem;
1226 struct lance_init_block __iomem *ib_iomem = lp->init_block_iomem;
1227 u16 mode;
1228
1229 if (!netif_running(dev))
1230 return;
1231
1232 if (lp->tx_old != lp->tx_new) {
1233 mod_timer(&lp->multicast_timer, jiffies + 4);
1234 netif_wake_queue(dev);
1235 return;
1236 }
1237
1238 netif_stop_queue(dev);
1239
1240 STOP_LANCE(lp);
1241 lp->init_ring(dev);
1242
1243 if (lp->pio_buffer)
1244 mode = sbus_readw(&ib_iomem->mode);
1245 else
1246 mode = ib_mem->mode;
1247 if (dev->flags & IFF_PROMISC) {
1248 mode |= LE_MO_PROM;
1249 if (lp->pio_buffer)
1250 sbus_writew(mode, &ib_iomem->mode);
1251 else
1252 ib_mem->mode = mode;
1253 } else {
1254 mode &= ~LE_MO_PROM;
1255 if (lp->pio_buffer)
1256 sbus_writew(mode, &ib_iomem->mode);
1257 else
1258 ib_mem->mode = mode;
1259 lance_load_multicast(dev);
1260 }
1261 load_csrs(lp);
1262 init_restart_lance(lp);
1263 netif_wake_queue(dev);
1264}
1265
1266static void lance_set_multicast_retry(unsigned long _opaque)
1267{
1268 struct net_device *dev = (struct net_device *) _opaque;
1269
1270 lance_set_multicast(dev);
1271}
1272
1273static void lance_free_hwresources(struct lance_private *lp)
1274{
1275 if (lp->lregs)
1276 sbus_iounmap(lp->lregs, LANCE_REG_SIZE);
David S. Miller334ae612008-08-27 17:01:57 -07001277 if (lp->dregs) {
1278 struct of_device *ledma = lp->ledma;
1279
1280 of_iounmap(&ledma->resource[0], lp->dregs,
1281 resource_size(&ledma->resource[0]));
1282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (lp->init_block_iomem) {
1284 sbus_iounmap(lp->init_block_iomem,
1285 sizeof(struct lance_init_block));
1286 } else if (lp->init_block_mem) {
David S. Miller738f2b72008-08-27 18:09:11 -07001287 dma_free_coherent(&lp->sdev->ofdev.dev,
1288 sizeof(struct lance_init_block),
1289 lp->init_block_mem,
1290 lp->init_block_dvma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292}
1293
1294/* Ethtool support... */
1295static void sparc_lance_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1296{
1297 struct lance_private *lp = netdev_priv(dev);
1298
1299 strcpy(info->driver, "sunlance");
1300 strcpy(info->version, "2.02");
1301 sprintf(info->bus_info, "SBUS:%d",
1302 lp->sdev->slot);
1303}
1304
1305static u32 sparc_lance_get_link(struct net_device *dev)
1306{
1307 /* We really do not keep track of this, but this
1308 * is better than not reporting anything at all.
1309 */
1310 return 1;
1311}
1312
Jeff Garzik7282d492006-09-13 14:30:00 -04001313static const struct ethtool_ops sparc_lance_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 .get_drvinfo = sparc_lance_get_drvinfo,
1315 .get_link = sparc_lance_get_link,
1316};
1317
David S. Millerefdbc1a2006-09-25 14:04:49 -07001318static int __devinit sparc_lance_probe_one(struct sbus_dev *sdev,
David S. Miller334ae612008-08-27 17:01:57 -07001319 struct of_device *ledma,
David S. Millerefdbc1a2006-09-25 14:04:49 -07001320 struct sbus_dev *lebuffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 static unsigned version_printed;
David S. Miller76fcdb32007-07-30 18:23:39 -07001323 struct device_node *dp = sdev->ofdev.node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct net_device *dev;
1325 struct lance_private *lp;
1326 int i;
Joe Perches0795af52007-10-03 17:59:30 -07001327 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 dev = alloc_etherdev(sizeof(struct lance_private) + 8);
1330 if (!dev)
1331 return -ENOMEM;
1332
1333 lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 if (sparc_lance_debug && version_printed++ == 0)
1336 printk (KERN_INFO "%s", version);
1337
1338 spin_lock_init(&lp->lock);
1339
1340 /* Copy the IDPROM ethernet address to the device structure, later we
1341 * will copy the address in the device structure to the lance
1342 * initialization block.
1343 */
1344 for (i = 0; i < 6; i++)
1345 dev->dev_addr[i] = idprom->id_ethaddr[i];
1346
1347 /* Get the IO region */
1348 lp->lregs = sbus_ioremap(&sdev->resource[0], 0,
1349 LANCE_REG_SIZE, lancestr);
1350 if (!lp->lregs) {
1351 printk(KERN_ERR "SunLance: Cannot map registers.\n");
1352 goto fail;
1353 }
1354
David S. Miller334ae612008-08-27 17:01:57 -07001355 lp->ledma = ledma;
1356 if (lp->ledma) {
1357 lp->dregs = of_ioremap(&ledma->resource[0], 0,
1358 resource_size(&ledma->resource[0]),
1359 "ledma");
1360 if (!lp->dregs) {
1361 printk(KERN_ERR "SunLance: Cannot map "
1362 "ledma registers.\n");
1363 goto fail;
1364 }
1365 }
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 lp->sdev = sdev;
1368 if (lebuffer) {
1369 /* sanity check */
1370 if (lebuffer->resource[0].start & 7) {
1371 printk(KERN_ERR "SunLance: ERROR: Rx and Tx rings not on even boundary.\n");
1372 goto fail;
1373 }
1374 lp->init_block_iomem =
1375 sbus_ioremap(&lebuffer->resource[0], 0,
1376 sizeof(struct lance_init_block), "lebuffer");
1377 if (!lp->init_block_iomem) {
1378 printk(KERN_ERR "SunLance: Cannot map PIO buffer.\n");
1379 goto fail;
1380 }
1381 lp->init_block_dvma = 0;
1382 lp->pio_buffer = 1;
1383 lp->init_ring = lance_init_ring_pio;
1384 lp->rx = lance_rx_pio;
1385 lp->tx = lance_tx_pio;
1386 } else {
1387 lp->init_block_mem =
David S. Miller738f2b72008-08-27 18:09:11 -07001388 dma_alloc_coherent(&sdev->ofdev.dev,
1389 sizeof(struct lance_init_block),
1390 &lp->init_block_dvma, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (!lp->init_block_mem || lp->init_block_dvma == 0) {
1392 printk(KERN_ERR "SunLance: Cannot allocate consistent DMA memory.\n");
1393 goto fail;
1394 }
1395 lp->pio_buffer = 0;
1396 lp->init_ring = lance_init_ring_dvma;
1397 lp->rx = lance_rx_dvma;
1398 lp->tx = lance_tx_dvma;
1399 }
David S. Miller76fcdb32007-07-30 18:23:39 -07001400 lp->busmaster_regval = of_getintprop_default(dp, "busmaster-regval",
1401 (LE_C3_BSWP |
1402 LE_C3_ACON |
1403 LE_C3_BCON));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 lp->name = lancestr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 lp->burst_sizes = 0;
1408 if (lp->ledma) {
David S. Miller334ae612008-08-27 17:01:57 -07001409 struct device_node *ledma_dp = ledma->node;
David S. Miller76fcdb32007-07-30 18:23:39 -07001410 const char *prop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 unsigned int sbmask;
1412 u32 csr;
1413
1414 /* Find burst-size property for ledma */
David S. Miller76fcdb32007-07-30 18:23:39 -07001415 lp->burst_sizes = of_getintprop_default(ledma_dp,
1416 "burst-sizes", 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 /* ledma may be capable of fast bursts, but sbus may not. */
David S. Miller76fcdb32007-07-30 18:23:39 -07001419 sbmask = of_getintprop_default(ledma_dp, "burst-sizes",
1420 DMA_BURSTBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 lp->burst_sizes &= sbmask;
1422
1423 /* Get the cable-selection property */
David S. Miller76fcdb32007-07-30 18:23:39 -07001424 prop = of_get_property(ledma_dp, "cable-selection", NULL);
1425 if (!prop || prop[0] == '\0') {
1426 struct device_node *nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
David S. Miller76fcdb32007-07-30 18:23:39 -07001428 printk(KERN_INFO "SunLance: using "
1429 "auto-carrier-detection.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
David S. Miller76fcdb32007-07-30 18:23:39 -07001431 nd = of_find_node_by_path("/options");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (!nd)
1433 goto no_link_test;
1434
David S. Miller76fcdb32007-07-30 18:23:39 -07001435 prop = of_get_property(nd, "tpe-link-test?", NULL);
1436 if (!prop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 goto no_link_test;
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (strcmp(prop, "true")) {
1440 printk(KERN_NOTICE "SunLance: warning: overriding option "
1441 "'tpe-link-test?'\n");
1442 printk(KERN_NOTICE "SunLance: warning: mail any problems "
1443 "to ecd@skynet.be\n");
1444 auxio_set_lte(AUXIO_LTE_ON);
1445 }
1446no_link_test:
1447 lp->auto_select = 1;
1448 lp->tpe = 0;
1449 } else if (!strcmp(prop, "aui")) {
1450 lp->auto_select = 0;
1451 lp->tpe = 0;
1452 } else {
1453 lp->auto_select = 0;
1454 lp->tpe = 1;
1455 }
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 /* Reset ledma */
1458 csr = sbus_readl(lp->dregs + DMA_CSR);
1459 sbus_writel(csr | DMA_RST_ENET, lp->dregs + DMA_CSR);
1460 udelay(200);
1461 sbus_writel(csr & ~DMA_RST_ENET, lp->dregs + DMA_CSR);
1462 } else
1463 lp->dregs = NULL;
1464
1465 lp->dev = dev;
David S. Millerc2d81e62006-06-23 18:39:40 -07001466 SET_NETDEV_DEV(dev, &sdev->ofdev.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 dev->open = &lance_open;
1468 dev->stop = &lance_close;
1469 dev->hard_start_xmit = &lance_start_xmit;
1470 dev->tx_timeout = &lance_tx_timeout;
1471 dev->watchdog_timeo = 5*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 dev->set_multicast_list = &lance_set_multicast;
1473 dev->ethtool_ops = &sparc_lance_ethtool_ops;
1474
1475 dev->irq = sdev->irqs[0];
1476
1477 dev->dma = 0;
1478
1479 /* We cannot sleep if the chip is busy during a
1480 * multicast list update event, because such events
1481 * can occur from interrupts (ex. IPv6). So we
1482 * use a timer to try again later when necessary. -DaveM
1483 */
1484 init_timer(&lp->multicast_timer);
1485 lp->multicast_timer.data = (unsigned long) dev;
1486 lp->multicast_timer.function = &lance_set_multicast_retry;
1487
1488 if (register_netdev(dev)) {
1489 printk(KERN_ERR "SunLance: Cannot register device.\n");
1490 goto fail;
1491 }
1492
David S. Millerc2d81e62006-06-23 18:39:40 -07001493 dev_set_drvdata(&sdev->ofdev.dev, lp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Joe Perches0795af52007-10-03 17:59:30 -07001495 printk(KERN_INFO "%s: LANCE %s\n",
1496 dev->name, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 return 0;
1499
1500fail:
1501 lance_free_hwresources(lp);
1502 free_netdev(dev);
1503 return -ENODEV;
1504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506#ifdef CONFIG_SUN4
1507
1508#include <asm/sun4paddr.h>
1509#include <asm/machines.h>
1510
1511/* Find all the lance cards on the system and initialize them */
David S. Millerc2d81e62006-06-23 18:39:40 -07001512static struct sbus_dev sun4_sdev;
David S. Millerefdbc1a2006-09-25 14:04:49 -07001513static int __devinit sparc_lance_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if ((idprom->id_machtype == (SM_SUN4|SM_4_330)) ||
1516 (idprom->id_machtype == (SM_SUN4|SM_4_470))) {
Alexey Dobriyan93853fd2006-07-28 01:09:40 -07001517 memset(&sun4_sdev, 0, sizeof(struct sbus_dev));
David S. Millerc2d81e62006-06-23 18:39:40 -07001518 sun4_sdev.reg_addrs[0].phys_addr = sun4_eth_physaddr;
1519 sun4_sdev.irqs[0] = 6;
1520 return sparc_lance_probe_one(&sun4_sdev, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522 return -ENODEV;
1523}
1524
David S. Millerc2d81e62006-06-23 18:39:40 -07001525static int __exit sunlance_sun4_remove(void)
1526{
Alexey Dobriyan93853fd2006-07-28 01:09:40 -07001527 struct lance_private *lp = dev_get_drvdata(&sun4_sdev.ofdev.dev);
David S. Millerc2d81e62006-06-23 18:39:40 -07001528 struct net_device *net_dev = lp->dev;
1529
Marcel van Nies9f9b6692007-04-21 15:34:10 -07001530 unregister_netdev(net_dev);
David S. Millerc2d81e62006-06-23 18:39:40 -07001531
Alexey Dobriyan93853fd2006-07-28 01:09:40 -07001532 lance_free_hwresources(lp);
David S. Millerc2d81e62006-06-23 18:39:40 -07001533
1534 free_netdev(net_dev);
1535
Alexey Dobriyan93853fd2006-07-28 01:09:40 -07001536 dev_set_drvdata(&sun4_sdev.ofdev.dev, NULL);
David S. Millerc2d81e62006-06-23 18:39:40 -07001537
1538 return 0;
1539}
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541#else /* !CONFIG_SUN4 */
1542
David S. Millerc2d81e62006-06-23 18:39:40 -07001543static int __devinit sunlance_sbus_probe(struct of_device *dev, const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
David S. Millerc2d81e62006-06-23 18:39:40 -07001545 struct sbus_dev *sdev = to_sbus_device(&dev->dev);
David S. Millerc2d81e62006-06-23 18:39:40 -07001546 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Krzysztof Helt404dda82006-08-28 23:28:16 -07001548 if (sdev->parent) {
David S. Miller334ae612008-08-27 17:01:57 -07001549 struct device_node *parent_node = sdev->parent->ofdev.node;
1550 struct of_device *parent;
Krzysztof Helt404dda82006-08-28 23:28:16 -07001551
David S. Miller334ae612008-08-27 17:01:57 -07001552 parent = of_find_device_by_node(parent_node);
1553 if (parent && !strcmp(parent->node->name, "ledma")) {
1554 err = sparc_lance_probe_one(sdev, parent, NULL);
1555 } else if (parent && !strcmp(parent->node->name, "lebuffer")) {
Krzysztof Helt404dda82006-08-28 23:28:16 -07001556 err = sparc_lance_probe_one(sdev, NULL, to_sbus_device(&parent->dev));
1557 } else
1558 err = sparc_lance_probe_one(sdev, NULL, NULL);
1559 } else
David S. Millerc2d81e62006-06-23 18:39:40 -07001560 err = sparc_lance_probe_one(sdev, NULL, NULL);
David S. Millerc2d81e62006-06-23 18:39:40 -07001561
1562 return err;
1563}
1564
1565static int __devexit sunlance_sbus_remove(struct of_device *dev)
1566{
1567 struct lance_private *lp = dev_get_drvdata(&dev->dev);
1568 struct net_device *net_dev = lp->dev;
1569
Marcel van Nies9f9b6692007-04-21 15:34:10 -07001570 unregister_netdev(net_dev);
David S. Millerc2d81e62006-06-23 18:39:40 -07001571
1572 lance_free_hwresources(lp);
1573
1574 free_netdev(net_dev);
1575
1576 dev_set_drvdata(&dev->dev, NULL);
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return 0;
1579}
David S. Millerc2d81e62006-06-23 18:39:40 -07001580
1581static struct of_device_id sunlance_sbus_match[] = {
1582 {
1583 .name = "le",
1584 },
David S. Millerc2d81e62006-06-23 18:39:40 -07001585 {},
1586};
1587
1588MODULE_DEVICE_TABLE(of, sunlance_sbus_match);
1589
1590static struct of_platform_driver sunlance_sbus_driver = {
1591 .name = "sunlance",
1592 .match_table = sunlance_sbus_match,
1593 .probe = sunlance_sbus_probe,
1594 .remove = __devexit_p(sunlance_sbus_remove),
1595};
1596
1597
1598/* Find all the lance cards on the system and initialize them */
1599static int __init sparc_lance_init(void)
1600{
1601 return of_register_driver(&sunlance_sbus_driver, &sbus_bus_type);
1602}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603#endif /* !CONFIG_SUN4 */
1604
David S. Millerc2d81e62006-06-23 18:39:40 -07001605static void __exit sparc_lance_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
David S. Millerc2d81e62006-06-23 18:39:40 -07001607#ifdef CONFIG_SUN4
1608 sunlance_sun4_remove();
1609#else
1610 of_unregister_driver(&sunlance_sbus_driver);
1611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
David S. Millerc2d81e62006-06-23 18:39:40 -07001614module_init(sparc_lance_init);
1615module_exit(sparc_lance_exit);