2 * Amiga Linux/m68k Ariadne Ethernet Driver
4 * © Copyright 1995-2003 by Geert Uytterhoeven (geert@linux-m68k.org)
5 * Peter De Schrijver (p2@mind.be)
7 * ---------------------------------------------------------------------------
9 * This program is based on
11 * lance.c: An AMD LANCE ethernet driver for linux.
12 * Written 1993-94 by Donald Becker.
14 * Am79C960: PCnet(tm)-ISA Single-Chip Ethernet Controller
15 * Advanced Micro Devices
16 * Publication #16907, Rev. B, Amendment/0, May 1994
18 * MC68230: Parallel Interface/Timer (PI/T)
19 * Motorola Semiconductors, December, 1983
21 * ---------------------------------------------------------------------------
23 * This file is subject to the terms and conditions of the GNU General Public
24 * License. See the file COPYING in the main directory of the Linux
25 * distribution for more details.
27 * ---------------------------------------------------------------------------
29 * The Ariadne is a Zorro-II board made by Village Tronic. It contains:
31 * - an Am79C960 PCnet-ISA Single-Chip Ethernet Controller with both
32 * 10BASE-2 (thin coax) and 10BASE-T (UTP) connectors
34 * - an MC68230 Parallel Interface/Timer configured as 2 parallel ports
37 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40 #include <linux/module.h>
41 #include <linux/stddef.h>
42 #include <linux/kernel.h>
43 #include <linux/string.h>
44 #include <linux/errno.h>
45 #include <linux/ioport.h>
46 #include <linux/netdevice.h>
47 #include <linux/etherdevice.h>
48 #include <linux/interrupt.h>
49 #include <linux/skbuff.h>
50 #include <linux/init.h>
51 #include <linux/zorro.h>
52 #include <linux/bitops.h>
54 #include <asm/byteorder.h>
55 #include <asm/amigaints.h>
56 #include <asm/amigahw.h>
62 int ariadne_debug
= ARIADNE_DEBUG
;
64 int ariadne_debug
= 1;
67 /* Macros to Fix Endianness problems */
69 /* Swap the Bytes in a WORD */
70 #define swapw(x) (((x >> 8) & 0x00ff) | ((x << 8) & 0xff00))
71 /* Get the Low BYTE in a WORD */
72 #define lowb(x) (x & 0xff)
73 /* Get the Swapped High WORD in a LONG */
74 #define swhighw(x) ((((x) >> 8) & 0xff00) | (((x) >> 24) & 0x00ff))
75 /* Get the Swapped Low WORD in a LONG */
76 #define swloww(x) ((((x) << 8) & 0xff00) | (((x) >> 8) & 0x00ff))
78 /* Transmit/Receive Ring Definitions */
80 #define TX_RING_SIZE 5
81 #define RX_RING_SIZE 16
83 #define PKT_BUF_SIZE 1520
85 /* Private Device Data */
87 struct ariadne_private
{
88 volatile struct TDRE
*tx_ring
[TX_RING_SIZE
];
89 volatile struct RDRE
*rx_ring
[RX_RING_SIZE
];
90 volatile u_short
*tx_buff
[TX_RING_SIZE
];
91 volatile u_short
*rx_buff
[RX_RING_SIZE
];
92 int cur_tx
, cur_rx
; /* The next free ring entry */
93 int dirty_tx
; /* The ring entries to be free()ed */
97 /* Structure Created in the Ariadne's RAM Buffer */
100 struct TDRE tx_ring
[TX_RING_SIZE
];
101 struct RDRE rx_ring
[RX_RING_SIZE
];
102 u_short tx_buff
[TX_RING_SIZE
][PKT_BUF_SIZE
/ sizeof(u_short
)];
103 u_short rx_buff
[RX_RING_SIZE
][PKT_BUF_SIZE
/ sizeof(u_short
)];
106 static void memcpyw(volatile u_short
*dest
, u_short
*src
, int len
)
109 *(dest
++) = *(src
++);
113 *dest
= (*(u_char
*)src
) << 8;
116 static void ariadne_init_ring(struct net_device
*dev
)
118 struct ariadne_private
*priv
= netdev_priv(dev
);
119 volatile struct lancedata
*lancedata
= (struct lancedata
*)dev
->mem_start
;
122 netif_stop_queue(dev
);
125 priv
->cur_rx
= priv
->cur_tx
= 0;
129 for (i
= 0; i
< TX_RING_SIZE
; i
++) {
130 volatile struct TDRE
*t
= &lancedata
->tx_ring
[i
];
131 t
->TMD0
= swloww(ARIADNE_RAM
+
132 offsetof(struct lancedata
, tx_buff
[i
]));
133 t
->TMD1
= swhighw(ARIADNE_RAM
+
134 offsetof(struct lancedata
, tx_buff
[i
])) |
136 t
->TMD2
= swapw((u_short
)-PKT_BUF_SIZE
);
138 priv
->tx_ring
[i
] = &lancedata
->tx_ring
[i
];
139 priv
->tx_buff
[i
] = lancedata
->tx_buff
[i
];
140 netdev_dbg(dev
, "TX Entry %2d at %p, Buf at %p\n",
141 i
, &lancedata
->tx_ring
[i
], lancedata
->tx_buff
[i
]);
145 for (i
= 0; i
< RX_RING_SIZE
; i
++) {
146 volatile struct RDRE
*r
= &lancedata
->rx_ring
[i
];
147 r
->RMD0
= swloww(ARIADNE_RAM
+
148 offsetof(struct lancedata
, rx_buff
[i
]));
149 r
->RMD1
= swhighw(ARIADNE_RAM
+
150 offsetof(struct lancedata
, rx_buff
[i
])) |
152 r
->RMD2
= swapw((u_short
)-PKT_BUF_SIZE
);
154 priv
->rx_ring
[i
] = &lancedata
->rx_ring
[i
];
155 priv
->rx_buff
[i
] = lancedata
->rx_buff
[i
];
156 netdev_dbg(dev
, "RX Entry %2d at %p, Buf at %p\n",
157 i
, &lancedata
->rx_ring
[i
], lancedata
->rx_buff
[i
]);
161 static int ariadne_rx(struct net_device
*dev
)
163 struct ariadne_private
*priv
= netdev_priv(dev
);
164 int entry
= priv
->cur_rx
% RX_RING_SIZE
;
167 /* If we own the next entry, it's a new packet. Send it up */
168 while (!(lowb(priv
->rx_ring
[entry
]->RMD1
) & RF_OWN
)) {
169 int status
= lowb(priv
->rx_ring
[entry
]->RMD1
);
171 if (status
!= (RF_STP
| RF_ENP
)) { /* There was an error */
172 /* There is a tricky error noted by
173 * John Murphy <murf@perftech.com> to Russ Nelson:
174 * Even with full-sized buffers it's possible for a
175 * jabber packet to use two buffers, with only the
176 * last correctly noting the error
178 /* Only count a general error at the end of a packet */
180 dev
->stats
.rx_errors
++;
181 if (status
& RF_FRAM
)
182 dev
->stats
.rx_frame_errors
++;
183 if (status
& RF_OFLO
)
184 dev
->stats
.rx_over_errors
++;
186 dev
->stats
.rx_crc_errors
++;
187 if (status
& RF_BUFF
)
188 dev
->stats
.rx_fifo_errors
++;
189 priv
->rx_ring
[entry
]->RMD1
&= 0xff00 | RF_STP
| RF_ENP
;
191 /* Malloc up new buffer, compatible with net-3 */
192 short pkt_len
= swapw(priv
->rx_ring
[entry
]->RMD3
);
195 skb
= netdev_alloc_skb(dev
, pkt_len
+ 2);
197 for (i
= 0; i
< RX_RING_SIZE
; i
++)
198 if (lowb(priv
->rx_ring
[(entry
+ i
) % RX_RING_SIZE
]->RMD1
) & RF_OWN
)
201 if (i
> RX_RING_SIZE
- 2) {
202 dev
->stats
.rx_dropped
++;
203 priv
->rx_ring
[entry
]->RMD1
|= RF_OWN
;
210 skb_reserve(skb
, 2); /* 16 byte align */
211 skb_put(skb
, pkt_len
); /* Make room */
212 skb_copy_to_linear_data(skb
,
213 (const void *)priv
->rx_buff
[entry
],
215 skb
->protocol
= eth_type_trans(skb
, dev
);
216 netdev_dbg(dev
, "RX pkt type 0x%04x from %pM to %pM data %p len %u\n",
217 ((u_short
*)skb
->data
)[6],
218 skb
->data
+ 6, skb
->data
,
219 skb
->data
, skb
->len
);
222 dev
->stats
.rx_packets
++;
223 dev
->stats
.rx_bytes
+= pkt_len
;
226 priv
->rx_ring
[entry
]->RMD1
|= RF_OWN
;
227 entry
= (++priv
->cur_rx
) % RX_RING_SIZE
;
230 priv
->cur_rx
= priv
->cur_rx
% RX_RING_SIZE
;
232 /* We should check that at least two ring entries are free.
233 * If not, we should free one and mark stats->rx_dropped++
239 static irqreturn_t
ariadne_interrupt(int irq
, void *data
)
241 struct net_device
*dev
= (struct net_device
*)data
;
242 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
243 struct ariadne_private
*priv
;
247 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
249 if (!(lance
->RDP
& INTR
)) /* Check if any interrupt has been */
250 return IRQ_NONE
; /* generated by the board */
252 priv
= netdev_priv(dev
);
255 while ((csr0
= lance
->RDP
) & (ERR
| RINT
| TINT
) && --boguscnt
>= 0) {
256 /* Acknowledge all of the current interrupt sources ASAP */
257 lance
->RDP
= csr0
& ~(INEA
| TDMD
| STOP
| STRT
| INIT
);
260 if (ariadne_debug
> 5) {
261 netdev_dbg(dev
, "interrupt csr0=%#02x new csr=%#02x [",
299 if (csr0
& RINT
) { /* Rx interrupt */
304 if (csr0
& TINT
) { /* Tx-done interrupt */
305 int dirty_tx
= priv
->dirty_tx
;
308 while (dirty_tx
< priv
->cur_tx
) {
309 int entry
= dirty_tx
% TX_RING_SIZE
;
310 int status
= lowb(priv
->tx_ring
[entry
]->TMD1
);
313 break; /* It still hasn't been Txed */
315 priv
->tx_ring
[entry
]->TMD1
&= 0xff00;
317 if (status
& TF_ERR
) {
318 /* There was an major error, log it */
319 int err_status
= priv
->tx_ring
[entry
]->TMD3
;
320 dev
->stats
.tx_errors
++;
321 if (err_status
& EF_RTRY
)
322 dev
->stats
.tx_aborted_errors
++;
323 if (err_status
& EF_LCAR
)
324 dev
->stats
.tx_carrier_errors
++;
325 if (err_status
& EF_LCOL
)
326 dev
->stats
.tx_window_errors
++;
327 if (err_status
& EF_UFLO
) {
328 /* Ackk! On FIFO errors the Tx unit is turned off! */
329 dev
->stats
.tx_fifo_errors
++;
330 /* Remove this verbosity later! */
331 netdev_err(dev
, "Tx FIFO error! Status %04x\n",
333 /* Restart the chip */
337 if (status
& (TF_MORE
| TF_ONE
))
338 dev
->stats
.collisions
++;
339 dev
->stats
.tx_packets
++;
344 #ifndef final_version
345 if (priv
->cur_tx
- dirty_tx
>= TX_RING_SIZE
) {
346 netdev_err(dev
, "out-of-sync dirty pointer, %d vs. %d, full=%d\n",
347 dirty_tx
, priv
->cur_tx
,
349 dirty_tx
+= TX_RING_SIZE
;
353 if (priv
->tx_full
&& netif_queue_stopped(dev
) &&
354 dirty_tx
> priv
->cur_tx
- TX_RING_SIZE
+ 2) {
355 /* The ring is no longer full */
357 netif_wake_queue(dev
);
360 priv
->dirty_tx
= dirty_tx
;
363 /* Log misc errors */
366 dev
->stats
.tx_errors
++; /* Tx babble */
370 dev
->stats
.rx_errors
++; /* Missed a Rx frame */
374 netdev_err(dev
, "Bus master arbitration failure, status %04x\n",
376 /* Restart the chip */
381 /* Clear any other interrupt, and set interrupt enable */
382 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
383 lance
->RDP
= INEA
| BABL
| CERR
| MISS
| MERR
| IDON
;
385 if (ariadne_debug
> 4)
386 netdev_dbg(dev
, "exiting interrupt, csr%d=%#04x\n",
387 lance
->RAP
, lance
->RDP
);
389 return IRQ_RETVAL(handled
);
392 static int ariadne_open(struct net_device
*dev
)
394 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
399 /* Reset the LANCE */
403 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
406 /* Check the LANCE version */
407 lance
->RAP
= CSR88
; /* Chip ID */
408 version
= swapw(lance
->RDP
);
409 lance
->RAP
= CSR89
; /* Chip ID */
410 version
|= swapw(lance
->RDP
) << 16;
411 if ((version
& 0x00000fff) != 0x00000003) {
412 pr_warn("Couldn't find AMD Ethernet Chip\n");
415 if ((version
& 0x0ffff000) != 0x00003000) {
416 pr_warn("Couldn't find Am79C960 (Wrong part number = %ld)\n",
417 (version
& 0x0ffff000) >> 12);
421 netdev_dbg(dev
, "Am79C960 (PCnet-ISA) Revision %ld\n",
422 (version
& 0xf0000000) >> 28);
424 ariadne_init_ring(dev
);
426 /* Miscellaneous Stuff */
427 lance
->RAP
= CSR3
; /* Interrupt Masks and Deferral Control */
429 lance
->RAP
= CSR4
; /* Test and Features Control */
430 lance
->RDP
= DPOLL
| APAD_XMT
| MFCOM
| RCVCCOM
| TXSTRTM
| JABM
;
432 /* Set the Multicast Table */
433 lance
->RAP
= CSR8
; /* Logical Address Filter, LADRF[15:0] */
435 lance
->RAP
= CSR9
; /* Logical Address Filter, LADRF[31:16] */
437 lance
->RAP
= CSR10
; /* Logical Address Filter, LADRF[47:32] */
439 lance
->RAP
= CSR11
; /* Logical Address Filter, LADRF[63:48] */
442 /* Set the Ethernet Hardware Address */
443 lance
->RAP
= CSR12
; /* Physical Address Register, PADR[15:0] */
444 lance
->RDP
= ((u_short
*)&dev
->dev_addr
[0])[0];
445 lance
->RAP
= CSR13
; /* Physical Address Register, PADR[31:16] */
446 lance
->RDP
= ((u_short
*)&dev
->dev_addr
[0])[1];
447 lance
->RAP
= CSR14
; /* Physical Address Register, PADR[47:32] */
448 lance
->RDP
= ((u_short
*)&dev
->dev_addr
[0])[2];
450 /* Set the Init Block Mode */
451 lance
->RAP
= CSR15
; /* Mode Register */
454 /* Set the Transmit Descriptor Ring Pointer */
455 lance
->RAP
= CSR30
; /* Base Address of Transmit Ring */
456 lance
->RDP
= swloww(ARIADNE_RAM
+ offsetof(struct lancedata
, tx_ring
));
457 lance
->RAP
= CSR31
; /* Base Address of transmit Ring */
458 lance
->RDP
= swhighw(ARIADNE_RAM
+ offsetof(struct lancedata
, tx_ring
));
460 /* Set the Receive Descriptor Ring Pointer */
461 lance
->RAP
= CSR24
; /* Base Address of Receive Ring */
462 lance
->RDP
= swloww(ARIADNE_RAM
+ offsetof(struct lancedata
, rx_ring
));
463 lance
->RAP
= CSR25
; /* Base Address of Receive Ring */
464 lance
->RDP
= swhighw(ARIADNE_RAM
+ offsetof(struct lancedata
, rx_ring
));
466 /* Set the Number of RX and TX Ring Entries */
467 lance
->RAP
= CSR76
; /* Receive Ring Length */
468 lance
->RDP
= swapw(((u_short
)-RX_RING_SIZE
));
469 lance
->RAP
= CSR78
; /* Transmit Ring Length */
470 lance
->RDP
= swapw(((u_short
)-TX_RING_SIZE
));
472 /* Enable Media Interface Port Auto Select (10BASE-2/10BASE-T) */
473 lance
->RAP
= ISACSR2
; /* Miscellaneous Configuration */
477 lance
->RAP
= ISACSR5
; /* LED1 Status */
478 lance
->IDP
= PSE
|XMTE
;
479 lance
->RAP
= ISACSR6
; /* LED2 Status */
480 lance
->IDP
= PSE
|COLE
;
481 lance
->RAP
= ISACSR7
; /* LED3 Status */
482 lance
->IDP
= PSE
|RCVE
;
484 netif_start_queue(dev
);
486 i
= request_irq(IRQ_AMIGA_PORTS
, ariadne_interrupt
, IRQF_SHARED
,
491 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
492 lance
->RDP
= INEA
| STRT
;
497 static int ariadne_close(struct net_device
*dev
)
499 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
501 netif_stop_queue(dev
);
503 lance
->RAP
= CSR112
; /* Missed Frame Count */
504 dev
->stats
.rx_missed_errors
= swapw(lance
->RDP
);
505 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
507 if (ariadne_debug
> 1) {
508 netdev_dbg(dev
, "Shutting down ethercard, status was %02x\n",
510 netdev_dbg(dev
, "%lu packets missed\n",
511 dev
->stats
.rx_missed_errors
);
514 /* We stop the LANCE here -- it occasionally polls memory if we don't */
517 free_irq(IRQ_AMIGA_PORTS
, dev
);
522 static inline void ariadne_reset(struct net_device
*dev
)
524 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
526 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
528 ariadne_init_ring(dev
);
529 lance
->RDP
= INEA
| STRT
;
530 netif_start_queue(dev
);
533 static void ariadne_tx_timeout(struct net_device
*dev
, unsigned int txqueue
)
535 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
537 netdev_err(dev
, "transmit timed out, status %04x, resetting\n",
540 netif_wake_queue(dev
);
543 static netdev_tx_t
ariadne_start_xmit(struct sk_buff
*skb
,
544 struct net_device
*dev
)
546 struct ariadne_private
*priv
= netdev_priv(dev
);
547 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
553 if (ariadne_debug
> 3) {
554 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
555 netdev_dbg(dev
, "%s: csr0 %04x\n", __func__
, lance
->RDP
);
560 /* FIXME: is the 79C960 new enough to do its own padding right ? */
561 if (skb
->len
< ETH_ZLEN
) {
562 if (skb_padto(skb
, ETH_ZLEN
))
567 /* Fill in a Tx ring entry */
569 netdev_dbg(dev
, "TX pkt type 0x%04x from %pM to %pM data %p len %u\n",
570 ((u_short
*)skb
->data
)[6],
571 skb
->data
+ 6, skb
->data
,
572 skb
->data
, skb
->len
);
574 local_irq_save(flags
);
576 entry
= priv
->cur_tx
% TX_RING_SIZE
;
578 /* Caution: the write order is important here, set the base address with
579 the "ownership" bits last */
581 priv
->tx_ring
[entry
]->TMD2
= swapw((u_short
)-skb
->len
);
582 priv
->tx_ring
[entry
]->TMD3
= 0x0000;
583 memcpyw(priv
->tx_buff
[entry
], (u_short
*)skb
->data
, len
);
586 print_hex_dump(KERN_DEBUG
, "tx_buff: ", DUMP_PREFIX_OFFSET
, 16, 1,
587 (void *)priv
->tx_buff
[entry
],
588 skb
->len
> 64 ? 64 : skb
->len
, true);
591 priv
->tx_ring
[entry
]->TMD1
= (priv
->tx_ring
[entry
]->TMD1
& 0xff00)
592 | TF_OWN
| TF_STP
| TF_ENP
;
597 if ((priv
->cur_tx
>= TX_RING_SIZE
) &&
598 (priv
->dirty_tx
>= TX_RING_SIZE
)) {
600 netdev_dbg(dev
, "*** Subtracting TX_RING_SIZE from cur_tx (%d) and dirty_tx (%d)\n",
601 priv
->cur_tx
, priv
->dirty_tx
);
603 priv
->cur_tx
-= TX_RING_SIZE
;
604 priv
->dirty_tx
-= TX_RING_SIZE
;
606 dev
->stats
.tx_bytes
+= len
;
608 /* Trigger an immediate send poll */
609 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
610 lance
->RDP
= INEA
| TDMD
;
612 if (lowb(priv
->tx_ring
[(entry
+ 1) % TX_RING_SIZE
]->TMD1
) != 0) {
613 netif_stop_queue(dev
);
616 local_irq_restore(flags
);
621 static struct net_device_stats
*ariadne_get_stats(struct net_device
*dev
)
623 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
627 local_irq_save(flags
);
628 saved_addr
= lance
->RAP
;
629 lance
->RAP
= CSR112
; /* Missed Frame Count */
630 dev
->stats
.rx_missed_errors
= swapw(lance
->RDP
);
631 lance
->RAP
= saved_addr
;
632 local_irq_restore(flags
);
637 /* Set or clear the multicast filter for this adaptor.
638 * num_addrs == -1 Promiscuous mode, receive all packets
639 * num_addrs == 0 Normal mode, clear multicast list
640 * num_addrs > 0 Multicast mode, receive normal and MC packets,
641 * and do best-effort filtering.
643 static void set_multicast_list(struct net_device
*dev
)
645 volatile struct Am79C960
*lance
= (struct Am79C960
*)dev
->base_addr
;
647 if (!netif_running(dev
))
650 netif_stop_queue(dev
);
652 /* We take the simple way out and always enable promiscuous mode */
653 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
654 lance
->RDP
= STOP
; /* Temporarily stop the lance */
655 ariadne_init_ring(dev
);
657 if (dev
->flags
& IFF_PROMISC
) {
658 lance
->RAP
= CSR15
; /* Mode Register */
659 lance
->RDP
= PROM
; /* Set promiscuous mode */
661 short multicast_table
[4];
662 int num_addrs
= netdev_mc_count(dev
);
664 /* We don't use the multicast table,
665 * but rely on upper-layer filtering
667 memset(multicast_table
, (num_addrs
== 0) ? 0 : -1,
668 sizeof(multicast_table
));
669 for (i
= 0; i
< 4; i
++) {
670 lance
->RAP
= CSR8
+ (i
<< 8);
671 /* Logical Address Filter */
672 lance
->RDP
= swapw(multicast_table
[i
]);
674 lance
->RAP
= CSR15
; /* Mode Register */
675 lance
->RDP
= 0x0000; /* Unset promiscuous mode */
678 lance
->RAP
= CSR0
; /* PCnet-ISA Controller Status */
679 lance
->RDP
= INEA
| STRT
| IDON
;/* Resume normal operation */
681 netif_wake_queue(dev
);
685 static void ariadne_remove_one(struct zorro_dev
*z
)
687 struct net_device
*dev
= zorro_get_drvdata(z
);
689 unregister_netdev(dev
);
690 release_mem_region(ZTWO_PADDR(dev
->base_addr
), sizeof(struct Am79C960
));
691 release_mem_region(ZTWO_PADDR(dev
->mem_start
), ARIADNE_RAM_SIZE
);
695 static const struct zorro_device_id ariadne_zorro_tbl
[] = {
696 { ZORRO_PROD_VILLAGE_TRONIC_ARIADNE
},
699 MODULE_DEVICE_TABLE(zorro
, ariadne_zorro_tbl
);
701 static const struct net_device_ops ariadne_netdev_ops
= {
702 .ndo_open
= ariadne_open
,
703 .ndo_stop
= ariadne_close
,
704 .ndo_start_xmit
= ariadne_start_xmit
,
705 .ndo_tx_timeout
= ariadne_tx_timeout
,
706 .ndo_get_stats
= ariadne_get_stats
,
707 .ndo_set_rx_mode
= set_multicast_list
,
708 .ndo_validate_addr
= eth_validate_addr
,
709 .ndo_set_mac_address
= eth_mac_addr
,
712 static int ariadne_init_one(struct zorro_dev
*z
,
713 const struct zorro_device_id
*ent
)
715 unsigned long board
= z
->resource
.start
;
716 unsigned long base_addr
= board
+ ARIADNE_LANCE
;
717 unsigned long mem_start
= board
+ ARIADNE_RAM
;
718 struct resource
*r1
, *r2
;
719 struct net_device
*dev
;
723 r1
= request_mem_region(base_addr
, sizeof(struct Am79C960
), "Am79C960");
726 r2
= request_mem_region(mem_start
, ARIADNE_RAM_SIZE
, "RAM");
728 release_mem_region(base_addr
, sizeof(struct Am79C960
));
732 dev
= alloc_etherdev(sizeof(struct ariadne_private
));
734 release_mem_region(base_addr
, sizeof(struct Am79C960
));
735 release_mem_region(mem_start
, ARIADNE_RAM_SIZE
);
739 r1
->name
= dev
->name
;
740 r2
->name
= dev
->name
;
742 serial
= be32_to_cpu(z
->rom
.er_SerialNumber
);
743 dev
->dev_addr
[0] = 0x00;
744 dev
->dev_addr
[1] = 0x60;
745 dev
->dev_addr
[2] = 0x30;
746 dev
->dev_addr
[3] = (serial
>> 16) & 0xff;
747 dev
->dev_addr
[4] = (serial
>> 8) & 0xff;
748 dev
->dev_addr
[5] = serial
& 0xff;
749 dev
->base_addr
= (unsigned long)ZTWO_VADDR(base_addr
);
750 dev
->mem_start
= (unsigned long)ZTWO_VADDR(mem_start
);
751 dev
->mem_end
= dev
->mem_start
+ ARIADNE_RAM_SIZE
;
753 dev
->netdev_ops
= &ariadne_netdev_ops
;
754 dev
->watchdog_timeo
= 5 * HZ
;
756 err
= register_netdev(dev
);
758 release_mem_region(base_addr
, sizeof(struct Am79C960
));
759 release_mem_region(mem_start
, ARIADNE_RAM_SIZE
);
763 zorro_set_drvdata(z
, dev
);
765 netdev_info(dev
, "Ariadne at 0x%08lx, Ethernet Address %pM\n",
766 board
, dev
->dev_addr
);
771 static struct zorro_driver ariadne_driver
= {
773 .id_table
= ariadne_zorro_tbl
,
774 .probe
= ariadne_init_one
,
775 .remove
= ariadne_remove_one
,
778 static int __init
ariadne_init_module(void)
780 return zorro_register_driver(&ariadne_driver
);
783 static void __exit
ariadne_cleanup_module(void)
785 zorro_unregister_driver(&ariadne_driver
);
788 module_init(ariadne_init_module
);
789 module_exit(ariadne_cleanup_module
);
791 MODULE_LICENSE("GPL");