]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/macsonic.c
tg3: Prepare FW version code for VPD versioning
[net-next-2.6.git] / drivers / net / macsonic.c
CommitLineData
1da177e4
LT
1/*
2 * macsonic.c
3 *
efcce839
FT
4 * (C) 2005 Finn Thain
5 *
6 * Converted to DMA API, converted to unified driver model, made it work as
7 * a module again, and from the mac68k project, introduced more 32-bit cards
8 * and dhd's support for 16-bit cards.
9 *
1da177e4
LT
10 * (C) 1998 Alan Cox
11 *
12 * Debugging Andreas Ehliar, Michael Schmitz
13 *
14 * Based on code
15 * (C) 1996 by Thomas Bogendoerfer (tsbogend@bigbug.franken.de)
6aa20a22 16 *
1da177e4
LT
17 * This driver is based on work from Andreas Busse, but most of
18 * the code is rewritten.
6aa20a22 19 *
1da177e4
LT
20 * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
21 *
22 * A driver for the Mac onboard Sonic ethernet chip.
23 *
6aa20a22 24 * 98/12/21 MSch: judged from tests on Q800, it's basically working,
1da177e4
LT
25 * but eating up both receive and transmit resources
26 * and duplicating packets. Needs more testing.
27 *
28 * 99/01/03 MSch: upgraded to version 0.92 of the core driver, fixed.
6aa20a22 29 *
1da177e4
LT
30 * 00/10/31 sammy@oh.verio.com: Updated driver for 2.4 kernels, fixed problems
31 * on centris.
32 */
33
34#include <linux/kernel.h>
efcce839 35#include <linux/module.h>
1da177e4 36#include <linux/types.h>
1da177e4
LT
37#include <linux/fcntl.h>
38#include <linux/interrupt.h>
39#include <linux/init.h>
40#include <linux/ioport.h>
41#include <linux/in.h>
42#include <linux/slab.h>
43#include <linux/string.h>
44#include <linux/delay.h>
45#include <linux/nubus.h>
46#include <linux/errno.h>
47#include <linux/netdevice.h>
48#include <linux/etherdevice.h>
49#include <linux/skbuff.h>
d052d1be 50#include <linux/platform_device.h>
efcce839 51#include <linux/dma-mapping.h>
427a57a7 52#include <linux/bitrev.h>
1da177e4
LT
53
54#include <asm/bootinfo.h>
55#include <asm/system.h>
56#include <asm/pgtable.h>
57#include <asm/io.h>
58#include <asm/hwtest.h>
59#include <asm/dma.h>
60#include <asm/macintosh.h>
61#include <asm/macints.h>
62#include <asm/mac_via.h>
63
efcce839 64static char mac_sonic_string[] = "macsonic";
1da177e4
LT
65
66#include "sonic.h"
67
efcce839
FT
68/* These should basically be bus-size and endian independent (since
69 the SONIC is at least smart enough that it uses the same endianness
70 as the host, unlike certain less enlightened Macintosh NICs) */
71#define SONIC_READ(reg) (nubus_readw(dev->base_addr + (reg * 4) \
72 + lp->reg_offset))
73#define SONIC_WRITE(reg,val) (nubus_writew(val, dev->base_addr + (reg * 4) \
74 + lp->reg_offset))
75
76/* use 0 for production, 1 for verification, >1 for debug */
77#ifdef SONIC_DEBUG
78static unsigned int sonic_debug = SONIC_DEBUG;
6aa20a22 79#else
efcce839
FT
80static unsigned int sonic_debug = 1;
81#endif
1da177e4 82
1da177e4
LT
83static int sonic_version_printed;
84
1da177e4
LT
85/* For onboard SONIC */
86#define ONBOARD_SONIC_REGISTERS 0x50F0A000
87#define ONBOARD_SONIC_PROM_BASE 0x50f08000
88
89enum macsonic_type {
90 MACSONIC_DUODOCK,
91 MACSONIC_APPLE,
92 MACSONIC_APPLE16,
93 MACSONIC_DAYNA,
94 MACSONIC_DAYNALINK
95};
96
97/* For the built-in SONIC in the Duo Dock */
98#define DUODOCK_SONIC_REGISTERS 0xe10000
99#define DUODOCK_SONIC_PROM_BASE 0xe12000
100
101/* For Apple-style NuBus SONIC */
102#define APPLE_SONIC_REGISTERS 0
103#define APPLE_SONIC_PROM_BASE 0x40000
104
105/* Daynalink LC SONIC */
106#define DAYNALINK_PROM_BASE 0x400000
107
108/* For Dayna-style NuBus SONIC (haven't seen one yet) */
109#define DAYNA_SONIC_REGISTERS 0x180000
110/* This is what OpenBSD says. However, this is definitely in NuBus
111 ROM space so we should be able to get it by walking the NuBus
112 resource directories */
113#define DAYNA_SONIC_MAC_ADDR 0xffe004
114
115#define SONIC_READ_PROM(addr) nubus_readb(prom_addr+addr)
116
1da177e4
LT
117/*
118 * For reversing the PROM address
119 */
120
1da177e4
LT
121static inline void bit_reverse_addr(unsigned char addr[6])
122{
123 int i;
124
125 for(i = 0; i < 6; i++)
bc63eb9c 126 addr[i] = bitrev8(addr[i]);
1da177e4
LT
127}
128
f4d86754
FT
129static irqreturn_t macsonic_interrupt(int irq, void *dev_id)
130{
131 irqreturn_t result;
132 unsigned long flags;
133
134 local_irq_save(flags);
135 result = sonic_interrupt(irq, dev_id);
136 local_irq_restore(flags);
137 return result;
138}
139
140static int macsonic_open(struct net_device* dev)
141{
a0607fd3 142 if (request_irq(dev->irq, sonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) {
f4d86754
FT
143 printk(KERN_ERR "%s: unable to get IRQ %d.\n", dev->name, dev->irq);
144 return -EAGAIN;
145 }
146 /* Under the A/UX interrupt scheme, the onboard SONIC interrupt comes
147 * in at priority level 3. However, we sometimes get the level 2 inter-
148 * rupt as well, which must prevent re-entrance of the sonic handler.
149 */
150 if (dev->irq == IRQ_AUTO_3)
a0607fd3 151 if (request_irq(IRQ_NUBUS_9, macsonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) {
f4d86754
FT
152 printk(KERN_ERR "%s: unable to get IRQ %d.\n", dev->name, IRQ_NUBUS_9);
153 free_irq(dev->irq, dev);
154 return -EAGAIN;
155 }
156 return sonic_open(dev);
157}
158
159static int macsonic_close(struct net_device* dev)
160{
161 int err;
162 err = sonic_close(dev);
163 free_irq(dev->irq, dev);
164 if (dev->irq == IRQ_AUTO_3)
165 free_irq(IRQ_NUBUS_9, dev);
166 return err;
167}
168
c6e6d852
AB
169static const struct net_device_ops macsonic_netdev_ops = {
170 .ndo_open = macsonic_open,
171 .ndo_stop = macsonic_close,
172 .ndo_start_xmit = sonic_send_packet,
173 .ndo_set_multicast_list = sonic_multicast_list,
174 .ndo_tx_timeout = sonic_tx_timeout,
175 .ndo_get_stats = sonic_get_stats,
176 .ndo_validate_addr = eth_validate_addr,
177 .ndo_change_mtu = eth_change_mtu,
178 .ndo_set_mac_address = eth_mac_addr,
179};
180
25177476 181static int __devinit macsonic_init(struct net_device *dev)
1da177e4 182{
efcce839 183 struct sonic_local* lp = netdev_priv(dev);
1da177e4
LT
184
185 /* Allocate the entire chunk of memory for the descriptors.
186 Note that this cannot cross a 64K boundary. */
efcce839
FT
187 if ((lp->descriptors = dma_alloc_coherent(lp->device,
188 SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
189 &lp->descriptors_laddr, GFP_KERNEL)) == NULL) {
c2313557
KS
190 printk(KERN_ERR "%s: couldn't alloc DMA memory for descriptors.\n",
191 dev_name(lp->device));
1da177e4 192 return -ENOMEM;
efcce839 193 }
1da177e4
LT
194
195 /* Now set up the pointers to point to the appropriate places */
efcce839
FT
196 lp->cda = lp->descriptors;
197 lp->tda = lp->cda + (SIZEOF_SONIC_CDA
198 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 199 lp->rda = lp->tda + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
efcce839 200 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 201 lp->rra = lp->rda + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
efcce839 202 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 203
efcce839
FT
204 lp->cda_laddr = lp->descriptors_laddr;
205 lp->tda_laddr = lp->cda_laddr + (SIZEOF_SONIC_CDA
206 * SONIC_BUS_SCALE(lp->dma_bitmode));
207 lp->rda_laddr = lp->tda_laddr + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
208 * SONIC_BUS_SCALE(lp->dma_bitmode));
209 lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
210 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 211
c6e6d852 212 dev->netdev_ops = &macsonic_netdev_ops;
efcce839 213 dev->watchdog_timeo = TX_TIMEOUT;
1da177e4
LT
214
215 /*
216 * clear tally counter
217 */
efcce839
FT
218 SONIC_WRITE(SONIC_CRCT, 0xffff);
219 SONIC_WRITE(SONIC_FAET, 0xffff);
220 SONIC_WRITE(SONIC_MPT, 0xffff);
1da177e4
LT
221
222 return 0;
223}
224
dcaa6a94
FT
225#define INVALID_MAC(mac) (memcmp(mac, "\x08\x00\x07", 3) && \
226 memcmp(mac, "\x00\xA0\x40", 3) && \
227 memcmp(mac, "\x00\x80\x19", 3) && \
228 memcmp(mac, "\x00\x05\x02", 3))
229
230static void __devinit mac_onboard_sonic_ethernet_addr(struct net_device *dev)
1da177e4 231{
efcce839 232 struct sonic_local *lp = netdev_priv(dev);
1da177e4 233 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
dcaa6a94 234 unsigned short val;
1da177e4 235
dcaa6a94
FT
236 /*
237 * On NuBus boards we can sometimes look in the ROM resources.
238 * No such luck for comm-slot/onboard.
239 * On the PowerBook 520, the PROM base address is a mystery.
240 */
241 if (hwreg_present((void *)prom_addr)) {
242 int i;
243
244 for (i = 0; i < 6; i++)
245 dev->dev_addr[i] = SONIC_READ_PROM(i);
246 if (!INVALID_MAC(dev->dev_addr))
247 return;
1da177e4 248
dcaa6a94
FT
249 /*
250 * Most of the time, the address is bit-reversed. The NetBSD
251 * source has a rather long and detailed historical account of
252 * why this is so.
253 */
1da177e4 254 bit_reverse_addr(dev->dev_addr);
dcaa6a94
FT
255 if (!INVALID_MAC(dev->dev_addr))
256 return;
257
1da177e4 258 /*
dcaa6a94
FT
259 * If we still have what seems to be a bogus address, we'll
260 * look in the CAM. The top entry should be ours.
1da177e4 261 */
dcaa6a94
FT
262 printk(KERN_WARNING "macsonic: MAC address in PROM seems "
263 "to be invalid, trying CAM\n");
264 } else {
265 printk(KERN_WARNING "macsonic: cannot read MAC address from "
266 "PROM, trying CAM\n");
267 }
268
269 /* This only works if MacOS has already initialized the card. */
270
271 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
272 SONIC_WRITE(SONIC_CEP, 15);
273
274 val = SONIC_READ(SONIC_CAP2);
275 dev->dev_addr[5] = val >> 8;
276 dev->dev_addr[4] = val & 0xff;
277 val = SONIC_READ(SONIC_CAP1);
278 dev->dev_addr[3] = val >> 8;
279 dev->dev_addr[2] = val & 0xff;
280 val = SONIC_READ(SONIC_CAP0);
281 dev->dev_addr[1] = val >> 8;
282 dev->dev_addr[0] = val & 0xff;
283
284 if (!INVALID_MAC(dev->dev_addr))
285 return;
286
287 /* Still nonsense ... messed up someplace! */
288
289 printk(KERN_WARNING "macsonic: MAC address in CAM entry 15 "
290 "seems invalid, will use a random MAC\n");
291 random_ether_addr(dev->dev_addr);
1da177e4
LT
292}
293
25177476 294static int __devinit mac_onboard_sonic_probe(struct net_device *dev)
1da177e4
LT
295{
296 /* Bwahahaha */
297 static int once_is_more_than_enough;
efcce839
FT
298 struct sonic_local* lp = netdev_priv(dev);
299 int sr;
300 int commslot = 0;
6aa20a22 301
1da177e4
LT
302 if (once_is_more_than_enough)
303 return -ENODEV;
304 once_is_more_than_enough = 1;
305
306 if (!MACH_IS_MAC)
307 return -ENODEV;
308
1da177e4 309 if (macintosh_config->ether_type != MAC_ETHER_SONIC)
1da177e4 310 return -ENODEV;
6aa20a22 311
efcce839 312 printk(KERN_INFO "Checking for internal Macintosh ethernet (SONIC).. ");
6aa20a22 313
1da177e4
LT
314 /* Bogus probing, on the models which may or may not have
315 Ethernet (BTW, the Ethernet *is* always at the same
316 address, and nothing else lives there, at least if Apple's
317 documentation is to be believed) */
318 if (macintosh_config->ident == MAC_MODEL_Q630 ||
319 macintosh_config->ident == MAC_MODEL_P588 ||
efcce839 320 macintosh_config->ident == MAC_MODEL_P575 ||
1da177e4
LT
321 macintosh_config->ident == MAC_MODEL_C610) {
322 unsigned long flags;
323 int card_present;
324
325 local_irq_save(flags);
326 card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
327 local_irq_restore(flags);
328
329 if (!card_present) {
330 printk("none.\n");
331 return -ENODEV;
332 }
efcce839 333 commslot = 1;
1da177e4
LT
334 }
335
6aa20a22 336 printk("yes\n");
1da177e4 337
efcce839
FT
338 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
339 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
1da177e4
LT
340 dev->base_addr = ONBOARD_SONIC_REGISTERS;
341 if (via_alt_mapping)
342 dev->irq = IRQ_AUTO_3;
343 else
344 dev->irq = IRQ_NUBUS_9;
345
346 if (!sonic_version_printed) {
347 printk(KERN_INFO "%s", version);
348 sonic_version_printed = 1;
349 }
350 printk(KERN_INFO "%s: onboard / comm-slot SONIC at 0x%08lx\n",
c2313557 351 dev_name(lp->device), dev->base_addr);
1da177e4
LT
352
353 /* The PowerBook's SONIC is 16 bit always. */
354 if (macintosh_config->ident == MAC_MODEL_PB520) {
efcce839
FT
355 lp->reg_offset = 0;
356 lp->dma_bitmode = SONIC_BITMODE16;
357 sr = SONIC_READ(SONIC_SR);
358 } else if (commslot) {
1da177e4 359 /* Some of the comm-slot cards are 16 bit. But some
efcce839
FT
360 of them are not. The 32-bit cards use offset 2 and
361 have known revisions, we try reading the revision
362 register at offset 2, if we don't get a known revision
363 we assume 16 bit at offset 0. */
364 lp->reg_offset = 2;
365 lp->dma_bitmode = SONIC_BITMODE16;
366
367 sr = SONIC_READ(SONIC_SR);
6aa20a22 368 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
efcce839
FT
369 /* 83932 is 0x0004 or 0x0006, 83934 is 0x0100 or 0x0101 */
370 lp->dma_bitmode = SONIC_BITMODE32;
371 else {
372 lp->dma_bitmode = SONIC_BITMODE16;
373 lp->reg_offset = 0;
374 sr = SONIC_READ(SONIC_SR);
1da177e4 375 }
efcce839
FT
376 } else {
377 /* All onboard cards are at offset 2 with 32 bit DMA. */
378 lp->reg_offset = 2;
379 lp->dma_bitmode = SONIC_BITMODE32;
380 sr = SONIC_READ(SONIC_SR);
1da177e4 381 }
efcce839
FT
382 printk(KERN_INFO
383 "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
c2313557 384 dev_name(lp->device), sr, lp->dma_bitmode?32:16, lp->reg_offset);
1da177e4 385
efcce839 386#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
c2313557 387 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
efcce839
FT
388 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
389#endif
1da177e4 390
1da177e4 391 /* Software reset, then initialize control registers. */
efcce839
FT
392 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
393
394 SONIC_WRITE(SONIC_DCR, SONIC_DCR_EXBUS | SONIC_DCR_BMS |
395 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
396 (lp->dma_bitmode ? SONIC_DCR_DW : 0));
1da177e4
LT
397
398 /* This *must* be written back to in order to restore the
efcce839
FT
399 * extended programmable output bits, as it may not have been
400 * initialised since the hardware reset. */
401 SONIC_WRITE(SONIC_DCR2, 0);
1da177e4
LT
402
403 /* Clear *and* disable interrupts to be on the safe side */
efcce839
FT
404 SONIC_WRITE(SONIC_IMR, 0);
405 SONIC_WRITE(SONIC_ISR, 0x7fff);
1da177e4
LT
406
407 /* Now look for the MAC address. */
dcaa6a94 408 mac_onboard_sonic_ethernet_addr(dev);
1da177e4 409
1da177e4
LT
410 /* Shared init code */
411 return macsonic_init(dev);
412}
413
25177476 414static int __devinit mac_nubus_sonic_ethernet_addr(struct net_device *dev,
44f74c04
AB
415 unsigned long prom_addr,
416 int id)
1da177e4
LT
417{
418 int i;
419 for(i = 0; i < 6; i++)
420 dev->dev_addr[i] = SONIC_READ_PROM(i);
efcce839
FT
421
422 /* Some of the addresses are bit-reversed */
423 if (id != MACSONIC_DAYNA)
424 bit_reverse_addr(dev->dev_addr);
1da177e4
LT
425
426 return 0;
427}
428
25177476 429static int __devinit macsonic_ident(struct nubus_dev *ndev)
1da177e4 430{
6aa20a22 431 if (ndev->dr_hw == NUBUS_DRHW_ASANTE_LC &&
1da177e4
LT
432 ndev->dr_sw == NUBUS_DRSW_SONIC_LC)
433 return MACSONIC_DAYNALINK;
434 if (ndev->dr_hw == NUBUS_DRHW_SONIC &&
435 ndev->dr_sw == NUBUS_DRSW_APPLE) {
436 /* There has to be a better way to do this... */
437 if (strstr(ndev->board->name, "DuoDock"))
438 return MACSONIC_DUODOCK;
439 else
440 return MACSONIC_APPLE;
441 }
6aa20a22 442
efcce839
FT
443 if (ndev->dr_hw == NUBUS_DRHW_SMC9194 &&
444 ndev->dr_sw == NUBUS_DRSW_DAYNA)
445 return MACSONIC_DAYNA;
6aa20a22 446
f8779588 447 if (ndev->dr_hw == NUBUS_DRHW_APPLE_SONIC_LC &&
efcce839
FT
448 ndev->dr_sw == 0) { /* huh? */
449 return MACSONIC_APPLE16;
450 }
1da177e4
LT
451 return -1;
452}
453
25177476 454static int __devinit mac_nubus_sonic_probe(struct net_device *dev)
1da177e4
LT
455{
456 static int slots;
457 struct nubus_dev* ndev = NULL;
efcce839 458 struct sonic_local* lp = netdev_priv(dev);
1da177e4
LT
459 unsigned long base_addr, prom_addr;
460 u16 sonic_dcr;
efcce839
FT
461 int id = -1;
462 int reg_offset, dma_bitmode;
6aa20a22 463
1da177e4
LT
464 /* Find the first SONIC that hasn't been initialized already */
465 while ((ndev = nubus_find_type(NUBUS_CAT_NETWORK,
466 NUBUS_TYPE_ETHERNET, ndev)) != NULL)
467 {
468 /* Have we seen it already? */
469 if (slots & (1<<ndev->board->slot))
470 continue;
471 slots |= 1<<ndev->board->slot;
472
473 /* Is it one of ours? */
474 if ((id = macsonic_ident(ndev)) != -1)
475 break;
476 }
477
478 if (ndev == NULL)
479 return -ENODEV;
480
481 switch (id) {
482 case MACSONIC_DUODOCK:
483 base_addr = ndev->board->slot_addr + DUODOCK_SONIC_REGISTERS;
484 prom_addr = ndev->board->slot_addr + DUODOCK_SONIC_PROM_BASE;
efcce839
FT
485 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
486 SONIC_DCR_TFT0;
1da177e4 487 reg_offset = 2;
efcce839 488 dma_bitmode = SONIC_BITMODE32;
1da177e4
LT
489 break;
490 case MACSONIC_APPLE:
491 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
492 prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
493 sonic_dcr = SONIC_DCR_BMS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0;
494 reg_offset = 0;
efcce839 495 dma_bitmode = SONIC_BITMODE32;
1da177e4
LT
496 break;
497 case MACSONIC_APPLE16:
498 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
499 prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
efcce839 500 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
6aa20a22 501 SONIC_DCR_PO1 | SONIC_DCR_BMS;
1da177e4 502 reg_offset = 0;
efcce839 503 dma_bitmode = SONIC_BITMODE16;
1da177e4
LT
504 break;
505 case MACSONIC_DAYNALINK:
506 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
507 prom_addr = ndev->board->slot_addr + DAYNALINK_PROM_BASE;
efcce839 508 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
6aa20a22 509 SONIC_DCR_PO1 | SONIC_DCR_BMS;
1da177e4 510 reg_offset = 0;
efcce839 511 dma_bitmode = SONIC_BITMODE16;
1da177e4
LT
512 break;
513 case MACSONIC_DAYNA:
514 base_addr = ndev->board->slot_addr + DAYNA_SONIC_REGISTERS;
515 prom_addr = ndev->board->slot_addr + DAYNA_SONIC_MAC_ADDR;
efcce839
FT
516 sonic_dcr = SONIC_DCR_BMS |
517 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
1da177e4 518 reg_offset = 0;
efcce839 519 dma_bitmode = SONIC_BITMODE16;
1da177e4
LT
520 break;
521 default:
522 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
523 return -ENODEV;
524 }
525
efcce839
FT
526 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
527 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
1da177e4 528 dev->base_addr = base_addr;
efcce839
FT
529 lp->reg_offset = reg_offset;
530 lp->dma_bitmode = dma_bitmode;
1da177e4
LT
531 dev->irq = SLOT2IRQ(ndev->board->slot);
532
533 if (!sonic_version_printed) {
534 printk(KERN_INFO "%s", version);
535 sonic_version_printed = 1;
536 }
537 printk(KERN_INFO "%s: %s in slot %X\n",
c2313557 538 dev_name(lp->device), ndev->board->name, ndev->board->slot);
1da177e4 539 printk(KERN_INFO "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
c2313557 540 dev_name(lp->device), SONIC_READ(SONIC_SR), dma_bitmode?32:16, reg_offset);
1da177e4 541
efcce839 542#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
c2313557 543 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
efcce839
FT
544 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
545#endif
1da177e4
LT
546
547 /* Software reset, then initialize control registers. */
efcce839
FT
548 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
549 SONIC_WRITE(SONIC_DCR, sonic_dcr | (dma_bitmode ? SONIC_DCR_DW : 0));
550 /* This *must* be written back to in order to restore the
551 * extended programmable output bits, since it may not have been
552 * initialised since the hardware reset. */
553 SONIC_WRITE(SONIC_DCR2, 0);
1da177e4
LT
554
555 /* Clear *and* disable interrupts to be on the safe side */
efcce839
FT
556 SONIC_WRITE(SONIC_IMR, 0);
557 SONIC_WRITE(SONIC_ISR, 0x7fff);
1da177e4
LT
558
559 /* Now look for the MAC address. */
560 if (mac_nubus_sonic_ethernet_addr(dev, prom_addr, id) != 0)
561 return -ENODEV;
562
efcce839
FT
563 /* Shared init code */
564 return macsonic_init(dev);
565}
566
25177476 567static int __devinit mac_sonic_probe(struct platform_device *pdev)
efcce839
FT
568{
569 struct net_device *dev;
570 struct sonic_local *lp;
571 int err;
efcce839
FT
572
573 dev = alloc_etherdev(sizeof(struct sonic_local));
574 if (!dev)
575 return -ENOMEM;
576
577 lp = netdev_priv(dev);
d74472f0
FT
578 lp->device = &pdev->dev;
579 SET_NETDEV_DEV(dev, &pdev->dev);
4564cba7 580 platform_set_drvdata(pdev, dev);
efcce839
FT
581
582 /* This will catch fatal stuff like -ENOMEM as well as success */
583 err = mac_onboard_sonic_probe(dev);
584 if (err == 0)
585 goto found;
586 if (err != -ENODEV)
587 goto out;
588 err = mac_nubus_sonic_probe(dev);
589 if (err)
590 goto out;
591found:
592 err = register_netdev(dev);
593 if (err)
594 goto out;
595
e174961c 596 printk("%s: MAC %pM IRQ %d\n", dev->name, dev->dev_addr, dev->irq);
1da177e4 597
efcce839 598 return 0;
1da177e4 599
efcce839
FT
600out:
601 free_netdev(dev);
1da177e4 602
efcce839
FT
603 return err;
604}
605
606MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
607module_param(sonic_debug, int, 0);
1da177e4 608MODULE_PARM_DESC(sonic_debug, "macsonic debug level (1-4)");
eeb9c182 609MODULE_ALIAS("platform:macsonic");
1da177e4 610
efcce839
FT
611#include "sonic.c"
612
d74472f0 613static int __devexit mac_sonic_device_remove (struct platform_device *pdev)
1da177e4 614{
d74472f0 615 struct net_device *dev = platform_get_drvdata(pdev);
efcce839
FT
616 struct sonic_local* lp = netdev_priv(dev);
617
d74472f0 618 unregister_netdev(dev);
efcce839
FT
619 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
620 lp->descriptors, lp->descriptors_laddr);
d74472f0 621 free_netdev(dev);
efcce839 622
1da177e4
LT
623 return 0;
624}
625
3ae5eaec 626static struct platform_driver mac_sonic_driver = {
efcce839
FT
627 .probe = mac_sonic_probe,
628 .remove = __devexit_p(mac_sonic_device_remove),
3ae5eaec 629 .driver = {
eeb9c182
FT
630 .name = mac_sonic_string,
631 .owner = THIS_MODULE,
3ae5eaec 632 },
efcce839
FT
633};
634
efcce839
FT
635static int __init mac_sonic_init_module(void)
636{
eeb9c182 637 return platform_driver_register(&mac_sonic_driver);
efcce839
FT
638}
639
640static void __exit mac_sonic_cleanup_module(void)
641{
3ae5eaec 642 platform_driver_unregister(&mac_sonic_driver);
efcce839
FT
643}
644
645module_init(mac_sonic_init_module);
646module_exit(mac_sonic_cleanup_module);