blob: 8ca57a0a4c11acb47ece31b99bac91e8887d4066 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * macsonic.c
3 *
Finn Thainefcce832005-08-20 15:53:22 +10004 * (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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (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)
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * This driver is based on work from Andreas Busse, but most of
18 * the code is rewritten.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040019 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
21 *
22 * A driver for the Mac onboard Sonic ethernet chip.
23 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040024 * 98/12/21 MSch: judged from tests on Q800, it's basically working,
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * 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.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040029 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * 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>
Finn Thainefcce832005-08-20 15:53:22 +100035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#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>
Russell Kingd052d1b2005-10-29 19:07:23 +010050#include <linux/platform_device.h>
Finn Thainefcce832005-08-20 15:53:22 +100051#include <linux/dma-mapping.h>
Al Viro427a57a2007-02-09 16:05:22 +000052#include <linux/bitrev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
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
Finn Thainefcce832005-08-20 15:53:22 +100064static char mac_sonic_string[] = "macsonic";
65static struct platform_device *mac_sonic_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include "sonic.h"
68
Finn Thainefcce832005-08-20 15:53:22 +100069/* These should basically be bus-size and endian independent (since
70 the SONIC is at least smart enough that it uses the same endianness
71 as the host, unlike certain less enlightened Macintosh NICs) */
72#define SONIC_READ(reg) (nubus_readw(dev->base_addr + (reg * 4) \
73 + lp->reg_offset))
74#define SONIC_WRITE(reg,val) (nubus_writew(val, dev->base_addr + (reg * 4) \
75 + lp->reg_offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Finn Thainefcce832005-08-20 15:53:22 +100077/* use 0 for production, 1 for verification, >1 for debug */
78#ifdef SONIC_DEBUG
79static unsigned int sonic_debug = SONIC_DEBUG;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040080#else
Finn Thainefcce832005-08-20 15:53:22 +100081static unsigned int sonic_debug = 1;
82#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int sonic_version_printed;
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086extern int mac_onboard_sonic_probe(struct net_device* dev);
87extern int mac_nubus_sonic_probe(struct net_device* dev);
88
89/* For onboard SONIC */
90#define ONBOARD_SONIC_REGISTERS 0x50F0A000
91#define ONBOARD_SONIC_PROM_BASE 0x50f08000
92
93enum macsonic_type {
94 MACSONIC_DUODOCK,
95 MACSONIC_APPLE,
96 MACSONIC_APPLE16,
97 MACSONIC_DAYNA,
98 MACSONIC_DAYNALINK
99};
100
101/* For the built-in SONIC in the Duo Dock */
102#define DUODOCK_SONIC_REGISTERS 0xe10000
103#define DUODOCK_SONIC_PROM_BASE 0xe12000
104
105/* For Apple-style NuBus SONIC */
106#define APPLE_SONIC_REGISTERS 0
107#define APPLE_SONIC_PROM_BASE 0x40000
108
109/* Daynalink LC SONIC */
110#define DAYNALINK_PROM_BASE 0x400000
111
112/* For Dayna-style NuBus SONIC (haven't seen one yet) */
113#define DAYNA_SONIC_REGISTERS 0x180000
114/* This is what OpenBSD says. However, this is definitely in NuBus
115 ROM space so we should be able to get it by walking the NuBus
116 resource directories */
117#define DAYNA_SONIC_MAC_ADDR 0xffe004
118
119#define SONIC_READ_PROM(addr) nubus_readb(prom_addr+addr)
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*
122 * For reversing the PROM address
123 */
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static inline void bit_reverse_addr(unsigned char addr[6])
126{
127 int i;
128
129 for(i = 0; i < 6; i++)
Akinobu Mitabc63eb92006-12-19 13:09:08 -0800130 addr[i] = bitrev8(addr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133int __init macsonic_init(struct net_device* dev)
134{
Finn Thainefcce832005-08-20 15:53:22 +1000135 struct sonic_local* lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /* Allocate the entire chunk of memory for the descriptors.
138 Note that this cannot cross a 64K boundary. */
Finn Thainefcce832005-08-20 15:53:22 +1000139 if ((lp->descriptors = dma_alloc_coherent(lp->device,
140 SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
141 &lp->descriptors_laddr, GFP_KERNEL)) == NULL) {
142 printk(KERN_ERR "%s: couldn't alloc DMA memory for descriptors.\n", lp->device->bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return -ENOMEM;
Finn Thainefcce832005-08-20 15:53:22 +1000144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* Now set up the pointers to point to the appropriate places */
Finn Thainefcce832005-08-20 15:53:22 +1000147 lp->cda = lp->descriptors;
148 lp->tda = lp->cda + (SIZEOF_SONIC_CDA
149 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 lp->rda = lp->tda + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
Finn Thainefcce832005-08-20 15:53:22 +1000151 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 lp->rra = lp->rda + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
Finn Thainefcce832005-08-20 15:53:22 +1000153 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Finn Thainefcce832005-08-20 15:53:22 +1000155 lp->cda_laddr = lp->descriptors_laddr;
156 lp->tda_laddr = lp->cda_laddr + (SIZEOF_SONIC_CDA
157 * SONIC_BUS_SCALE(lp->dma_bitmode));
158 lp->rda_laddr = lp->tda_laddr + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
159 * SONIC_BUS_SCALE(lp->dma_bitmode));
160 lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
161 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 dev->open = sonic_open;
164 dev->stop = sonic_close;
165 dev->hard_start_xmit = sonic_send_packet;
166 dev->get_stats = sonic_get_stats;
167 dev->set_multicast_list = &sonic_multicast_list;
Finn Thainefcce832005-08-20 15:53:22 +1000168 dev->tx_timeout = sonic_tx_timeout;
169 dev->watchdog_timeo = TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 /*
172 * clear tally counter
173 */
Finn Thainefcce832005-08-20 15:53:22 +1000174 SONIC_WRITE(SONIC_CRCT, 0xffff);
175 SONIC_WRITE(SONIC_FAET, 0xffff);
176 SONIC_WRITE(SONIC_MPT, 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 return 0;
179}
180
181int __init mac_onboard_sonic_ethernet_addr(struct net_device* dev)
182{
Finn Thainefcce832005-08-20 15:53:22 +1000183 struct sonic_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
185 int i;
186
187 /* On NuBus boards we can sometimes look in the ROM resources.
188 No such luck for comm-slot/onboard. */
189 for(i = 0; i < 6; i++)
190 dev->dev_addr[i] = SONIC_READ_PROM(i);
191
192 /* Most of the time, the address is bit-reversed. The NetBSD
193 source has a rather long and detailed historical account of
194 why this is so. */
195 if (memcmp(dev->dev_addr, "\x08\x00\x07", 3) &&
196 memcmp(dev->dev_addr, "\x00\xA0\x40", 3) &&
Finn Thainefcce832005-08-20 15:53:22 +1000197 memcmp(dev->dev_addr, "\x00\x80\x19", 3) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 memcmp(dev->dev_addr, "\x00\x05\x02", 3))
199 bit_reverse_addr(dev->dev_addr);
200 else
201 return 0;
202
203 /* If we still have what seems to be a bogus address, we'll
204 look in the CAM. The top entry should be ours. */
205 /* Danger! This only works if MacOS has already initialized
206 the card... */
207 if (memcmp(dev->dev_addr, "\x08\x00\x07", 3) &&
208 memcmp(dev->dev_addr, "\x00\xA0\x40", 3) &&
Finn Thainefcce832005-08-20 15:53:22 +1000209 memcmp(dev->dev_addr, "\x00\x80\x19", 3) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 memcmp(dev->dev_addr, "\x00\x05\x02", 3))
211 {
212 unsigned short val;
213
214 printk(KERN_INFO "macsonic: PROM seems to be wrong, trying CAM entry 15\n");
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400215
Finn Thainefcce832005-08-20 15:53:22 +1000216 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
217 SONIC_WRITE(SONIC_CEP, 15);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Finn Thainefcce832005-08-20 15:53:22 +1000219 val = SONIC_READ(SONIC_CAP2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 dev->dev_addr[5] = val >> 8;
221 dev->dev_addr[4] = val & 0xff;
Finn Thainefcce832005-08-20 15:53:22 +1000222 val = SONIC_READ(SONIC_CAP1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 dev->dev_addr[3] = val >> 8;
224 dev->dev_addr[2] = val & 0xff;
Finn Thainefcce832005-08-20 15:53:22 +1000225 val = SONIC_READ(SONIC_CAP0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 dev->dev_addr[1] = val >> 8;
227 dev->dev_addr[0] = val & 0xff;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 printk(KERN_INFO "HW Address from CAM 15: ");
230 for (i = 0; i < 6; i++) {
231 printk("%2.2x", dev->dev_addr[i]);
232 if (i < 5)
233 printk(":");
234 }
235 printk("\n");
236 } else return 0;
237
238 if (memcmp(dev->dev_addr, "\x08\x00\x07", 3) &&
239 memcmp(dev->dev_addr, "\x00\xA0\x40", 3) &&
Finn Thainefcce832005-08-20 15:53:22 +1000240 memcmp(dev->dev_addr, "\x00\x80\x19", 3) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 memcmp(dev->dev_addr, "\x00\x05\x02", 3))
242 {
243 /*
244 * Still nonsense ... messed up someplace!
245 */
246 printk(KERN_ERR "macsonic: ERROR (INVALID MAC)\n");
247 return -EIO;
248 } else return 0;
249}
250
251int __init mac_onboard_sonic_probe(struct net_device* dev)
252{
253 /* Bwahahaha */
254 static int once_is_more_than_enough;
Finn Thainefcce832005-08-20 15:53:22 +1000255 struct sonic_local* lp = netdev_priv(dev);
256 int sr;
257 int commslot = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (once_is_more_than_enough)
260 return -ENODEV;
261 once_is_more_than_enough = 1;
262
263 if (!MACH_IS_MAC)
264 return -ENODEV;
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (macintosh_config->ether_type != MAC_ETHER_SONIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -ENODEV;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400268
Finn Thainefcce832005-08-20 15:53:22 +1000269 printk(KERN_INFO "Checking for internal Macintosh ethernet (SONIC).. ");
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* Bogus probing, on the models which may or may not have
272 Ethernet (BTW, the Ethernet *is* always at the same
273 address, and nothing else lives there, at least if Apple's
274 documentation is to be believed) */
275 if (macintosh_config->ident == MAC_MODEL_Q630 ||
276 macintosh_config->ident == MAC_MODEL_P588 ||
Finn Thainefcce832005-08-20 15:53:22 +1000277 macintosh_config->ident == MAC_MODEL_P575 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 macintosh_config->ident == MAC_MODEL_C610) {
279 unsigned long flags;
280 int card_present;
281
282 local_irq_save(flags);
283 card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
284 local_irq_restore(flags);
285
286 if (!card_present) {
287 printk("none.\n");
288 return -ENODEV;
289 }
Finn Thainefcce832005-08-20 15:53:22 +1000290 commslot = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400293 printk("yes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Finn Thainefcce832005-08-20 15:53:22 +1000295 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
296 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 dev->base_addr = ONBOARD_SONIC_REGISTERS;
298 if (via_alt_mapping)
299 dev->irq = IRQ_AUTO_3;
300 else
301 dev->irq = IRQ_NUBUS_9;
302
303 if (!sonic_version_printed) {
304 printk(KERN_INFO "%s", version);
305 sonic_version_printed = 1;
306 }
307 printk(KERN_INFO "%s: onboard / comm-slot SONIC at 0x%08lx\n",
Finn Thainefcce832005-08-20 15:53:22 +1000308 lp->device->bus_id, dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* The PowerBook's SONIC is 16 bit always. */
311 if (macintosh_config->ident == MAC_MODEL_PB520) {
Finn Thainefcce832005-08-20 15:53:22 +1000312 lp->reg_offset = 0;
313 lp->dma_bitmode = SONIC_BITMODE16;
314 sr = SONIC_READ(SONIC_SR);
315 } else if (commslot) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* Some of the comm-slot cards are 16 bit. But some
Finn Thainefcce832005-08-20 15:53:22 +1000317 of them are not. The 32-bit cards use offset 2 and
318 have known revisions, we try reading the revision
319 register at offset 2, if we don't get a known revision
320 we assume 16 bit at offset 0. */
321 lp->reg_offset = 2;
322 lp->dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Finn Thainefcce832005-08-20 15:53:22 +1000324 sr = SONIC_READ(SONIC_SR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400325 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
Finn Thainefcce832005-08-20 15:53:22 +1000326 /* 83932 is 0x0004 or 0x0006, 83934 is 0x0100 or 0x0101 */
327 lp->dma_bitmode = SONIC_BITMODE32;
328 else {
329 lp->dma_bitmode = SONIC_BITMODE16;
330 lp->reg_offset = 0;
331 sr = SONIC_READ(SONIC_SR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Finn Thainefcce832005-08-20 15:53:22 +1000333 } else {
334 /* All onboard cards are at offset 2 with 32 bit DMA. */
335 lp->reg_offset = 2;
336 lp->dma_bitmode = SONIC_BITMODE32;
337 sr = SONIC_READ(SONIC_SR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
Finn Thainefcce832005-08-20 15:53:22 +1000339 printk(KERN_INFO
340 "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
341 lp->device->bus_id, sr, lp->dma_bitmode?32:16, lp->reg_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Finn Thainefcce832005-08-20 15:53:22 +1000343#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
344 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", lp->device->bus_id,
345 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
346#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* Software reset, then initialize control registers. */
Finn Thainefcce832005-08-20 15:53:22 +1000349 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
350
351 SONIC_WRITE(SONIC_DCR, SONIC_DCR_EXBUS | SONIC_DCR_BMS |
352 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
353 (lp->dma_bitmode ? SONIC_DCR_DW : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 /* This *must* be written back to in order to restore the
Finn Thainefcce832005-08-20 15:53:22 +1000356 * extended programmable output bits, as it may not have been
357 * initialised since the hardware reset. */
358 SONIC_WRITE(SONIC_DCR2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Clear *and* disable interrupts to be on the safe side */
Finn Thainefcce832005-08-20 15:53:22 +1000361 SONIC_WRITE(SONIC_IMR, 0);
362 SONIC_WRITE(SONIC_ISR, 0x7fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /* Now look for the MAC address. */
365 if (mac_onboard_sonic_ethernet_addr(dev) != 0)
366 return -ENODEV;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /* Shared init code */
369 return macsonic_init(dev);
370}
371
372int __init mac_nubus_sonic_ethernet_addr(struct net_device* dev,
373 unsigned long prom_addr,
374 int id)
375{
376 int i;
377 for(i = 0; i < 6; i++)
378 dev->dev_addr[i] = SONIC_READ_PROM(i);
Finn Thainefcce832005-08-20 15:53:22 +1000379
380 /* Some of the addresses are bit-reversed */
381 if (id != MACSONIC_DAYNA)
382 bit_reverse_addr(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 return 0;
385}
386
387int __init macsonic_ident(struct nubus_dev* ndev)
388{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400389 if (ndev->dr_hw == NUBUS_DRHW_ASANTE_LC &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 ndev->dr_sw == NUBUS_DRSW_SONIC_LC)
391 return MACSONIC_DAYNALINK;
392 if (ndev->dr_hw == NUBUS_DRHW_SONIC &&
393 ndev->dr_sw == NUBUS_DRSW_APPLE) {
394 /* There has to be a better way to do this... */
395 if (strstr(ndev->board->name, "DuoDock"))
396 return MACSONIC_DUODOCK;
397 else
398 return MACSONIC_APPLE;
399 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400400
Finn Thainefcce832005-08-20 15:53:22 +1000401 if (ndev->dr_hw == NUBUS_DRHW_SMC9194 &&
402 ndev->dr_sw == NUBUS_DRSW_DAYNA)
403 return MACSONIC_DAYNA;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400404
Finn Thainefcce832005-08-20 15:53:22 +1000405 if (ndev->dr_hw == NUBUS_DRHW_SONIC_LC &&
406 ndev->dr_sw == 0) { /* huh? */
407 return MACSONIC_APPLE16;
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -1;
410}
411
412int __init mac_nubus_sonic_probe(struct net_device* dev)
413{
414 static int slots;
415 struct nubus_dev* ndev = NULL;
Finn Thainefcce832005-08-20 15:53:22 +1000416 struct sonic_local* lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 unsigned long base_addr, prom_addr;
418 u16 sonic_dcr;
Finn Thainefcce832005-08-20 15:53:22 +1000419 int id = -1;
420 int reg_offset, dma_bitmode;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* Find the first SONIC that hasn't been initialized already */
423 while ((ndev = nubus_find_type(NUBUS_CAT_NETWORK,
424 NUBUS_TYPE_ETHERNET, ndev)) != NULL)
425 {
426 /* Have we seen it already? */
427 if (slots & (1<<ndev->board->slot))
428 continue;
429 slots |= 1<<ndev->board->slot;
430
431 /* Is it one of ours? */
432 if ((id = macsonic_ident(ndev)) != -1)
433 break;
434 }
435
436 if (ndev == NULL)
437 return -ENODEV;
438
439 switch (id) {
440 case MACSONIC_DUODOCK:
441 base_addr = ndev->board->slot_addr + DUODOCK_SONIC_REGISTERS;
442 prom_addr = ndev->board->slot_addr + DUODOCK_SONIC_PROM_BASE;
Finn Thainefcce832005-08-20 15:53:22 +1000443 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
444 SONIC_DCR_TFT0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 reg_offset = 2;
Finn Thainefcce832005-08-20 15:53:22 +1000446 dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 break;
448 case MACSONIC_APPLE:
449 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
450 prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
451 sonic_dcr = SONIC_DCR_BMS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0;
452 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000453 dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 break;
455 case MACSONIC_APPLE16:
456 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
457 prom_addr = ndev->board->slot_addr + APPLE_SONIC_PROM_BASE;
Finn Thainefcce832005-08-20 15:53:22 +1000458 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400459 SONIC_DCR_PO1 | SONIC_DCR_BMS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000461 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
463 case MACSONIC_DAYNALINK:
464 base_addr = ndev->board->slot_addr + APPLE_SONIC_REGISTERS;
465 prom_addr = ndev->board->slot_addr + DAYNALINK_PROM_BASE;
Finn Thainefcce832005-08-20 15:53:22 +1000466 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400467 SONIC_DCR_PO1 | SONIC_DCR_BMS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000469 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 break;
471 case MACSONIC_DAYNA:
472 base_addr = ndev->board->slot_addr + DAYNA_SONIC_REGISTERS;
473 prom_addr = ndev->board->slot_addr + DAYNA_SONIC_MAC_ADDR;
Finn Thainefcce832005-08-20 15:53:22 +1000474 sonic_dcr = SONIC_DCR_BMS |
475 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000477 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 default:
480 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
481 return -ENODEV;
482 }
483
Finn Thainefcce832005-08-20 15:53:22 +1000484 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
485 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 dev->base_addr = base_addr;
Finn Thainefcce832005-08-20 15:53:22 +1000487 lp->reg_offset = reg_offset;
488 lp->dma_bitmode = dma_bitmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 dev->irq = SLOT2IRQ(ndev->board->slot);
490
491 if (!sonic_version_printed) {
492 printk(KERN_INFO "%s", version);
493 sonic_version_printed = 1;
494 }
495 printk(KERN_INFO "%s: %s in slot %X\n",
Finn Thainefcce832005-08-20 15:53:22 +1000496 lp->device->bus_id, ndev->board->name, ndev->board->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 printk(KERN_INFO "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
Finn Thainefcce832005-08-20 15:53:22 +1000498 lp->device->bus_id, SONIC_READ(SONIC_SR), dma_bitmode?32:16, reg_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Finn Thainefcce832005-08-20 15:53:22 +1000500#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
501 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", lp->device->bus_id,
502 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* Software reset, then initialize control registers. */
Finn Thainefcce832005-08-20 15:53:22 +1000506 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
507 SONIC_WRITE(SONIC_DCR, sonic_dcr | (dma_bitmode ? SONIC_DCR_DW : 0));
508 /* This *must* be written back to in order to restore the
509 * extended programmable output bits, since it may not have been
510 * initialised since the hardware reset. */
511 SONIC_WRITE(SONIC_DCR2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /* Clear *and* disable interrupts to be on the safe side */
Finn Thainefcce832005-08-20 15:53:22 +1000514 SONIC_WRITE(SONIC_IMR, 0);
515 SONIC_WRITE(SONIC_ISR, 0x7fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* Now look for the MAC address. */
518 if (mac_nubus_sonic_ethernet_addr(dev, prom_addr, id) != 0)
519 return -ENODEV;
520
Finn Thainefcce832005-08-20 15:53:22 +1000521 /* Shared init code */
522 return macsonic_init(dev);
523}
524
Russell King3ae5eae2005-11-09 22:32:44 +0000525static int __init mac_sonic_probe(struct platform_device *device)
Finn Thainefcce832005-08-20 15:53:22 +1000526{
527 struct net_device *dev;
528 struct sonic_local *lp;
529 int err;
530 int i;
531
532 dev = alloc_etherdev(sizeof(struct sonic_local));
533 if (!dev)
534 return -ENOMEM;
535
536 lp = netdev_priv(dev);
Russell King3ae5eae2005-11-09 22:32:44 +0000537 lp->device = &device->dev;
538 SET_NETDEV_DEV(dev, &device->dev);
Finn Thainefcce832005-08-20 15:53:22 +1000539 SET_MODULE_OWNER(dev);
540
541 /* This will catch fatal stuff like -ENOMEM as well as success */
542 err = mac_onboard_sonic_probe(dev);
543 if (err == 0)
544 goto found;
545 if (err != -ENODEV)
546 goto out;
547 err = mac_nubus_sonic_probe(dev);
548 if (err)
549 goto out;
550found:
551 err = register_netdev(dev);
552 if (err)
553 goto out;
554
555 printk("%s: MAC ", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 for (i = 0; i < 6; i++) {
557 printk("%2.2x", dev->dev_addr[i]);
558 if (i < 5)
559 printk(":");
560 }
561 printk(" IRQ %d\n", dev->irq);
562
Finn Thainefcce832005-08-20 15:53:22 +1000563 return 0;
564
565out:
566 free_netdev(dev);
567
568 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Finn Thainefcce832005-08-20 15:53:22 +1000571MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
572module_param(sonic_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573MODULE_PARM_DESC(sonic_debug, "macsonic debug level (1-4)");
574
Finn Thainefcce832005-08-20 15:53:22 +1000575#define SONIC_IRQ_FLAG IRQ_FLG_FAST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577#include "sonic.c"
578
Russell King3ae5eae2005-11-09 22:32:44 +0000579static int __devexit mac_sonic_device_remove (struct platform_device *device)
Finn Thainefcce832005-08-20 15:53:22 +1000580{
Russell King3ae5eae2005-11-09 22:32:44 +0000581 struct net_device *dev = platform_get_drvdata(device);
Finn Thainefcce832005-08-20 15:53:22 +1000582 struct sonic_local* lp = netdev_priv(dev);
583
584 unregister_netdev (dev);
585 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
586 lp->descriptors, lp->descriptors_laddr);
587 free_netdev (dev);
588
589 return 0;
590}
591
Russell King3ae5eae2005-11-09 22:32:44 +0000592static struct platform_driver mac_sonic_driver = {
Finn Thainefcce832005-08-20 15:53:22 +1000593 .probe = mac_sonic_probe,
594 .remove = __devexit_p(mac_sonic_device_remove),
Russell King3ae5eae2005-11-09 22:32:44 +0000595 .driver = {
596 .name = mac_sonic_string,
597 },
Finn Thainefcce832005-08-20 15:53:22 +1000598};
599
Finn Thainefcce832005-08-20 15:53:22 +1000600static int __init mac_sonic_init_module(void)
601{
Finn Thainefcce832005-08-20 15:53:22 +1000602 int err;
603
Russell King3ae5eae2005-11-09 22:32:44 +0000604 if ((err = platform_driver_register(&mac_sonic_driver))) {
Finn Thainefcce832005-08-20 15:53:22 +1000605 printk(KERN_ERR "Driver registration failed\n");
606 return err;
607 }
608
Russell King09c65182005-11-05 21:21:10 +0000609 mac_sonic_device = platform_device_alloc(mac_sonic_string, 0);
610 if (!mac_sonic_device) {
Finn Thainefcce832005-08-20 15:53:22 +1000611 goto out_unregister;
612 }
613
Russell King09c65182005-11-05 21:21:10 +0000614 if (platform_device_add(mac_sonic_device)) {
615 platform_device_put(mac_sonic_device);
Finn Thainefcce832005-08-20 15:53:22 +1000616 mac_sonic_device = NULL;
617 }
618
619 return 0;
620
621out_unregister:
Al Viroded5ca12005-12-04 02:28:40 -0500622 platform_driver_unregister(&mac_sonic_driver);
Finn Thainefcce832005-08-20 15:53:22 +1000623
624 return -ENOMEM;
625}
626
627static void __exit mac_sonic_cleanup_module(void)
628{
Russell King3ae5eae2005-11-09 22:32:44 +0000629 platform_driver_unregister(&mac_sonic_driver);
Finn Thainefcce832005-08-20 15:53:22 +1000630
631 if (mac_sonic_device) {
632 platform_device_unregister(mac_sonic_device);
633 mac_sonic_device = NULL;
634 }
635}
636
637module_init(mac_sonic_init_module);
638module_exit(mac_sonic_cleanup_module);