Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm...
[deliverable/linux.git] / drivers / net / ethernet / natsemi / 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 37#include <linux/fcntl.h>
5a0e3ad6 38#include <linux/gfp.h>
1da177e4
LT
39#include <linux/interrupt.h>
40#include <linux/init.h>
41#include <linux/ioport.h>
42#include <linux/in.h>
1da177e4
LT
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>
5a0e3ad6 53#include <linux/slab.h>
1da177e4
LT
54
55#include <asm/bootinfo.h>
1da177e4
LT
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{
546e3abd
KV
142 int retval;
143
e71ef315 144 retval = request_irq(dev->irq, sonic_interrupt, 0, "sonic", dev);
546e3abd
KV
145 if (retval) {
146 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
147 dev->name, dev->irq);
148 goto err;
f4d86754
FT
149 }
150 /* Under the A/UX interrupt scheme, the onboard SONIC interrupt comes
151 * in at priority level 3. However, we sometimes get the level 2 inter-
152 * rupt as well, which must prevent re-entrance of the sonic handler.
153 */
546e3abd 154 if (dev->irq == IRQ_AUTO_3) {
e71ef315
GU
155 retval = request_irq(IRQ_NUBUS_9, macsonic_interrupt, 0,
156 "sonic", dev);
546e3abd
KV
157 if (retval) {
158 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
159 dev->name, IRQ_NUBUS_9);
160 goto err_irq;
f4d86754 161 }
546e3abd
KV
162 }
163 retval = sonic_open(dev);
164 if (retval)
165 goto err_irq_nubus;
166 return 0;
167
168err_irq_nubus:
169 if (dev->irq == IRQ_AUTO_3)
170 free_irq(IRQ_NUBUS_9, dev);
171err_irq:
172 free_irq(dev->irq, dev);
173err:
174 return retval;
f4d86754
FT
175}
176
177static int macsonic_close(struct net_device* dev)
178{
179 int err;
180 err = sonic_close(dev);
181 free_irq(dev->irq, dev);
182 if (dev->irq == IRQ_AUTO_3)
183 free_irq(IRQ_NUBUS_9, dev);
184 return err;
185}
186
c6e6d852
AB
187static const struct net_device_ops macsonic_netdev_ops = {
188 .ndo_open = macsonic_open,
189 .ndo_stop = macsonic_close,
190 .ndo_start_xmit = sonic_send_packet,
afc4b13d 191 .ndo_set_rx_mode = sonic_multicast_list,
c6e6d852
AB
192 .ndo_tx_timeout = sonic_tx_timeout,
193 .ndo_get_stats = sonic_get_stats,
194 .ndo_validate_addr = eth_validate_addr,
195 .ndo_change_mtu = eth_change_mtu,
196 .ndo_set_mac_address = eth_mac_addr,
197};
198
6980cbe4 199static int macsonic_init(struct net_device *dev)
1da177e4 200{
efcce839 201 struct sonic_local* lp = netdev_priv(dev);
1da177e4
LT
202
203 /* Allocate the entire chunk of memory for the descriptors.
204 Note that this cannot cross a 64K boundary. */
efcce839
FT
205 if ((lp->descriptors = dma_alloc_coherent(lp->device,
206 SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
207 &lp->descriptors_laddr, GFP_KERNEL)) == NULL) {
c2313557
KS
208 printk(KERN_ERR "%s: couldn't alloc DMA memory for descriptors.\n",
209 dev_name(lp->device));
1da177e4 210 return -ENOMEM;
efcce839 211 }
1da177e4
LT
212
213 /* Now set up the pointers to point to the appropriate places */
efcce839
FT
214 lp->cda = lp->descriptors;
215 lp->tda = lp->cda + (SIZEOF_SONIC_CDA
216 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 217 lp->rda = lp->tda + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
efcce839 218 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 219 lp->rra = lp->rda + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
efcce839 220 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 221
efcce839
FT
222 lp->cda_laddr = lp->descriptors_laddr;
223 lp->tda_laddr = lp->cda_laddr + (SIZEOF_SONIC_CDA
224 * SONIC_BUS_SCALE(lp->dma_bitmode));
225 lp->rda_laddr = lp->tda_laddr + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
226 * SONIC_BUS_SCALE(lp->dma_bitmode));
227 lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
228 * SONIC_BUS_SCALE(lp->dma_bitmode));
1da177e4 229
c6e6d852 230 dev->netdev_ops = &macsonic_netdev_ops;
efcce839 231 dev->watchdog_timeo = TX_TIMEOUT;
1da177e4
LT
232
233 /*
234 * clear tally counter
235 */
efcce839
FT
236 SONIC_WRITE(SONIC_CRCT, 0xffff);
237 SONIC_WRITE(SONIC_FAET, 0xffff);
238 SONIC_WRITE(SONIC_MPT, 0xffff);
1da177e4
LT
239
240 return 0;
241}
242
dcaa6a94
FT
243#define INVALID_MAC(mac) (memcmp(mac, "\x08\x00\x07", 3) && \
244 memcmp(mac, "\x00\xA0\x40", 3) && \
245 memcmp(mac, "\x00\x80\x19", 3) && \
246 memcmp(mac, "\x00\x05\x02", 3))
247
6980cbe4 248static void mac_onboard_sonic_ethernet_addr(struct net_device *dev)
1da177e4 249{
efcce839 250 struct sonic_local *lp = netdev_priv(dev);
1da177e4 251 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
dcaa6a94 252 unsigned short val;
1da177e4 253
dcaa6a94
FT
254 /*
255 * On NuBus boards we can sometimes look in the ROM resources.
256 * No such luck for comm-slot/onboard.
257 * On the PowerBook 520, the PROM base address is a mystery.
258 */
259 if (hwreg_present((void *)prom_addr)) {
260 int i;
261
262 for (i = 0; i < 6; i++)
263 dev->dev_addr[i] = SONIC_READ_PROM(i);
264 if (!INVALID_MAC(dev->dev_addr))
265 return;
1da177e4 266
dcaa6a94
FT
267 /*
268 * Most of the time, the address is bit-reversed. The NetBSD
269 * source has a rather long and detailed historical account of
270 * why this is so.
271 */
1da177e4 272 bit_reverse_addr(dev->dev_addr);
dcaa6a94
FT
273 if (!INVALID_MAC(dev->dev_addr))
274 return;
275
1da177e4 276 /*
dcaa6a94
FT
277 * If we still have what seems to be a bogus address, we'll
278 * look in the CAM. The top entry should be ours.
1da177e4 279 */
dcaa6a94
FT
280 printk(KERN_WARNING "macsonic: MAC address in PROM seems "
281 "to be invalid, trying CAM\n");
282 } else {
283 printk(KERN_WARNING "macsonic: cannot read MAC address from "
284 "PROM, trying CAM\n");
285 }
286
287 /* This only works if MacOS has already initialized the card. */
288
289 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
290 SONIC_WRITE(SONIC_CEP, 15);
291
292 val = SONIC_READ(SONIC_CAP2);
293 dev->dev_addr[5] = val >> 8;
294 dev->dev_addr[4] = val & 0xff;
295 val = SONIC_READ(SONIC_CAP1);
296 dev->dev_addr[3] = val >> 8;
297 dev->dev_addr[2] = val & 0xff;
298 val = SONIC_READ(SONIC_CAP0);
299 dev->dev_addr[1] = val >> 8;
300 dev->dev_addr[0] = val & 0xff;
301
302 if (!INVALID_MAC(dev->dev_addr))
303 return;
304
305 /* Still nonsense ... messed up someplace! */
306
307 printk(KERN_WARNING "macsonic: MAC address in CAM entry 15 "
308 "seems invalid, will use a random MAC\n");
f2cedb63 309 eth_hw_addr_random(dev);
1da177e4
LT
310}
311
6980cbe4 312static int mac_onboard_sonic_probe(struct net_device *dev)
1da177e4 313{
efcce839
FT
314 struct sonic_local* lp = netdev_priv(dev);
315 int sr;
316 int commslot = 0;
6aa20a22 317
1da177e4
LT
318 if (!MACH_IS_MAC)
319 return -ENODEV;
320
efcce839 321 printk(KERN_INFO "Checking for internal Macintosh ethernet (SONIC).. ");
6aa20a22 322
1da177e4
LT
323 /* Bogus probing, on the models which may or may not have
324 Ethernet (BTW, the Ethernet *is* always at the same
325 address, and nothing else lives there, at least if Apple's
326 documentation is to be believed) */
327 if (macintosh_config->ident == MAC_MODEL_Q630 ||
328 macintosh_config->ident == MAC_MODEL_P588 ||
efcce839 329 macintosh_config->ident == MAC_MODEL_P575 ||
1da177e4
LT
330 macintosh_config->ident == MAC_MODEL_C610) {
331 unsigned long flags;
332 int card_present;
333
334 local_irq_save(flags);
335 card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
336 local_irq_restore(flags);
337
338 if (!card_present) {
339 printk("none.\n");
340 return -ENODEV;
341 }
efcce839 342 commslot = 1;
1da177e4
LT
343 }
344
6aa20a22 345 printk("yes\n");
1da177e4 346
efcce839
FT
347 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
348 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
1da177e4
LT
349 dev->base_addr = ONBOARD_SONIC_REGISTERS;
350 if (via_alt_mapping)
351 dev->irq = IRQ_AUTO_3;
352 else
353 dev->irq = IRQ_NUBUS_9;
354
355 if (!sonic_version_printed) {
356 printk(KERN_INFO "%s", version);
357 sonic_version_printed = 1;
358 }
359 printk(KERN_INFO "%s: onboard / comm-slot SONIC at 0x%08lx\n",
c2313557 360 dev_name(lp->device), dev->base_addr);
1da177e4
LT
361
362 /* The PowerBook's SONIC is 16 bit always. */
363 if (macintosh_config->ident == MAC_MODEL_PB520) {
efcce839
FT
364 lp->reg_offset = 0;
365 lp->dma_bitmode = SONIC_BITMODE16;
366 sr = SONIC_READ(SONIC_SR);
367 } else if (commslot) {
1da177e4 368 /* Some of the comm-slot cards are 16 bit. But some
efcce839
FT
369 of them are not. The 32-bit cards use offset 2 and
370 have known revisions, we try reading the revision
371 register at offset 2, if we don't get a known revision
372 we assume 16 bit at offset 0. */
373 lp->reg_offset = 2;
374 lp->dma_bitmode = SONIC_BITMODE16;
375
376 sr = SONIC_READ(SONIC_SR);
6aa20a22 377 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
efcce839
FT
378 /* 83932 is 0x0004 or 0x0006, 83934 is 0x0100 or 0x0101 */
379 lp->dma_bitmode = SONIC_BITMODE32;
380 else {
381 lp->dma_bitmode = SONIC_BITMODE16;
382 lp->reg_offset = 0;
383 sr = SONIC_READ(SONIC_SR);
1da177e4 384 }
efcce839
FT
385 } else {
386 /* All onboard cards are at offset 2 with 32 bit DMA. */
387 lp->reg_offset = 2;
388 lp->dma_bitmode = SONIC_BITMODE32;
389 sr = SONIC_READ(SONIC_SR);
1da177e4 390 }
efcce839
FT
391 printk(KERN_INFO
392 "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
c2313557 393 dev_name(lp->device), sr, lp->dma_bitmode?32:16, lp->reg_offset);
1da177e4 394
efcce839 395#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
c2313557 396 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
efcce839
FT
397 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
398#endif
1da177e4 399
1da177e4 400 /* Software reset, then initialize control registers. */
efcce839
FT
401 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
402
403 SONIC_WRITE(SONIC_DCR, SONIC_DCR_EXBUS | SONIC_DCR_BMS |
404 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
405 (lp->dma_bitmode ? SONIC_DCR_DW : 0));
1da177e4
LT
406
407 /* This *must* be written back to in order to restore the
efcce839
FT
408 * extended programmable output bits, as it may not have been
409 * initialised since the hardware reset. */
410 SONIC_WRITE(SONIC_DCR2, 0);
1da177e4
LT
411
412 /* Clear *and* disable interrupts to be on the safe side */
efcce839
FT
413 SONIC_WRITE(SONIC_IMR, 0);
414 SONIC_WRITE(SONIC_ISR, 0x7fff);
1da177e4
LT
415
416 /* Now look for the MAC address. */
dcaa6a94 417 mac_onboard_sonic_ethernet_addr(dev);
1da177e4 418
1da177e4
LT
419 /* Shared init code */
420 return macsonic_init(dev);
421}
422
6980cbe4 423static int mac_nubus_sonic_ethernet_addr(struct net_device *dev,
1dd06ae8 424 unsigned long prom_addr, int id)
1da177e4
LT
425{
426 int i;
427 for(i = 0; i < 6; i++)
428 dev->dev_addr[i] = SONIC_READ_PROM(i);
efcce839
FT
429
430 /* Some of the addresses are bit-reversed */
431 if (id != MACSONIC_DAYNA)
432 bit_reverse_addr(dev->dev_addr);
1da177e4
LT
433
434 return 0;
435}
436
6980cbe4 437static int macsonic_ident(struct nubus_dev *ndev)
1da177e4 438{
6aa20a22 439 if (ndev->dr_hw == NUBUS_DRHW_ASANTE_LC &&
1da177e4
LT
440 ndev->dr_sw == NUBUS_DRSW_SONIC_LC)
441 return MACSONIC_DAYNALINK;
442 if (ndev->dr_hw == NUBUS_DRHW_SONIC &&
443 ndev->dr_sw == NUBUS_DRSW_APPLE) {
444 /* There has to be a better way to do this... */
445 if (strstr(ndev->board->name, "DuoDock"))
446 return MACSONIC_DUODOCK;
447 else
448 return MACSONIC_APPLE;
449 }
6aa20a22 450
efcce839
FT
451 if (ndev->dr_hw == NUBUS_DRHW_SMC9194 &&
452 ndev->dr_sw == NUBUS_DRSW_DAYNA)
453 return MACSONIC_DAYNA;
6aa20a22 454
f8779588 455 if (ndev->dr_hw == NUBUS_DRHW_APPLE_SONIC_LC &&
efcce839
FT
456 ndev->dr_sw == 0) { /* huh? */
457 return MACSONIC_APPLE16;
458 }
1da177e4
LT
459 return -1;
460}
461
6980cbe4 462static int mac_nubus_sonic_probe(struct net_device *dev)
1da177e4
LT
463{
464 static int slots;
465 struct nubus_dev* ndev = NULL;
efcce839 466 struct sonic_local* lp = netdev_priv(dev);
1da177e4
LT
467 unsigned long base_addr, prom_addr;
468 u16 sonic_dcr;
efcce839
FT
469 int id = -1;
470 int reg_offset, dma_bitmode;
6aa20a22 471
1da177e4
LT
472 /* Find the first SONIC that hasn't been initialized already */
473 while ((ndev = nubus_find_type(NUBUS_CAT_NETWORK,
474 NUBUS_TYPE_ETHERNET, ndev)) != NULL)
475 {
476 /* Have we seen it already? */
477 if (slots & (1<<ndev->board->slot))
478 continue;
479 slots |= 1<<ndev->board->slot;
480
481 /* Is it one of ours? */
482 if ((id = macsonic_ident(ndev)) != -1)
483 break;
484 }
485
486 if (ndev == NULL)
487 return -ENODEV;
488
489 switch (id) {
490 case MACSONIC_DUODOCK:
491 base_addr = ndev->board->slot_addr + DUODOCK_SONIC_REGISTERS;
492 prom_addr = ndev->board->slot_addr + DUODOCK_SONIC_PROM_BASE;
efcce839
FT
493 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
494 SONIC_DCR_TFT0;
1da177e4 495 reg_offset = 2;
efcce839 496 dma_bitmode = SONIC_BITMODE32;
1da177e4
LT
497 break;
498 case MACSONIC_APPLE:
499 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
500 prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
501 sonic_dcr = SONIC_DCR_BMS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0;
502 reg_offset = 0;
efcce839 503 dma_bitmode = SONIC_BITMODE32;
1da177e4
LT
504 break;
505 case MACSONIC_APPLE16:
506 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
507 prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
efcce839 508 sonic_dcr = SONIC_DCR_EXBUS | 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_DAYNALINK:
514 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
515 prom_addr = ndev->board->slot_addr + DAYNALINK_PROM_BASE;
efcce839 516 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
6aa20a22 517 SONIC_DCR_PO1 | SONIC_DCR_BMS;
1da177e4 518 reg_offset = 0;
efcce839 519 dma_bitmode = SONIC_BITMODE16;
1da177e4
LT
520 break;
521 case MACSONIC_DAYNA:
522 base_addr = ndev->board->slot_addr + DAYNA_SONIC_REGISTERS;
523 prom_addr = ndev->board->slot_addr + DAYNA_SONIC_MAC_ADDR;
efcce839
FT
524 sonic_dcr = SONIC_DCR_BMS |
525 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
1da177e4 526 reg_offset = 0;
efcce839 527 dma_bitmode = SONIC_BITMODE16;
1da177e4
LT
528 break;
529 default:
530 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
531 return -ENODEV;
532 }
533
efcce839
FT
534 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
535 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
1da177e4 536 dev->base_addr = base_addr;
efcce839
FT
537 lp->reg_offset = reg_offset;
538 lp->dma_bitmode = dma_bitmode;
1da177e4
LT
539 dev->irq = SLOT2IRQ(ndev->board->slot);
540
541 if (!sonic_version_printed) {
542 printk(KERN_INFO "%s", version);
543 sonic_version_printed = 1;
544 }
545 printk(KERN_INFO "%s: %s in slot %X\n",
c2313557 546 dev_name(lp->device), ndev->board->name, ndev->board->slot);
1da177e4 547 printk(KERN_INFO "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
c2313557 548 dev_name(lp->device), SONIC_READ(SONIC_SR), dma_bitmode?32:16, reg_offset);
1da177e4 549
efcce839 550#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
c2313557 551 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
efcce839
FT
552 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
553#endif
1da177e4
LT
554
555 /* Software reset, then initialize control registers. */
efcce839
FT
556 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
557 SONIC_WRITE(SONIC_DCR, sonic_dcr | (dma_bitmode ? SONIC_DCR_DW : 0));
558 /* This *must* be written back to in order to restore the
559 * extended programmable output bits, since it may not have been
560 * initialised since the hardware reset. */
561 SONIC_WRITE(SONIC_DCR2, 0);
1da177e4
LT
562
563 /* Clear *and* disable interrupts to be on the safe side */
efcce839
FT
564 SONIC_WRITE(SONIC_IMR, 0);
565 SONIC_WRITE(SONIC_ISR, 0x7fff);
1da177e4
LT
566
567 /* Now look for the MAC address. */
568 if (mac_nubus_sonic_ethernet_addr(dev, prom_addr, id) != 0)
569 return -ENODEV;
570
efcce839
FT
571 /* Shared init code */
572 return macsonic_init(dev);
573}
574
6980cbe4 575static int mac_sonic_probe(struct platform_device *pdev)
efcce839
FT
576{
577 struct net_device *dev;
578 struct sonic_local *lp;
579 int err;
efcce839
FT
580
581 dev = alloc_etherdev(sizeof(struct sonic_local));
582 if (!dev)
583 return -ENOMEM;
584
585 lp = netdev_priv(dev);
d74472f0
FT
586 lp->device = &pdev->dev;
587 SET_NETDEV_DEV(dev, &pdev->dev);
4564cba7 588 platform_set_drvdata(pdev, dev);
efcce839
FT
589
590 /* This will catch fatal stuff like -ENOMEM as well as success */
591 err = mac_onboard_sonic_probe(dev);
592 if (err == 0)
593 goto found;
594 if (err != -ENODEV)
595 goto out;
596 err = mac_nubus_sonic_probe(dev);
597 if (err)
598 goto out;
599found:
600 err = register_netdev(dev);
601 if (err)
602 goto out;
603
e174961c 604 printk("%s: MAC %pM IRQ %d\n", dev->name, dev->dev_addr, dev->irq);
1da177e4 605
efcce839 606 return 0;
1da177e4 607
efcce839
FT
608out:
609 free_netdev(dev);
1da177e4 610
efcce839
FT
611 return err;
612}
613
614MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
615module_param(sonic_debug, int, 0);
1da177e4 616MODULE_PARM_DESC(sonic_debug, "macsonic debug level (1-4)");
eeb9c182 617MODULE_ALIAS("platform:macsonic");
1da177e4 618
efcce839
FT
619#include "sonic.c"
620
6980cbe4 621static int mac_sonic_device_remove(struct platform_device *pdev)
1da177e4 622{
d74472f0 623 struct net_device *dev = platform_get_drvdata(pdev);
efcce839
FT
624 struct sonic_local* lp = netdev_priv(dev);
625
d74472f0 626 unregister_netdev(dev);
efcce839
FT
627 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
628 lp->descriptors, lp->descriptors_laddr);
d74472f0 629 free_netdev(dev);
efcce839 630
1da177e4
LT
631 return 0;
632}
633
3ae5eaec 634static struct platform_driver mac_sonic_driver = {
efcce839 635 .probe = mac_sonic_probe,
6980cbe4 636 .remove = mac_sonic_device_remove,
3ae5eaec 637 .driver = {
eeb9c182
FT
638 .name = mac_sonic_string,
639 .owner = THIS_MODULE,
3ae5eaec 640 },
efcce839
FT
641};
642
db62f684 643module_platform_driver(mac_sonic_driver);
This page took 0.85205 seconds and 5 git commands to generate.