blob: 24109c288108109575fdba9d7e0b8cff3c917d9c [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";
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#include "sonic.h"
67
Finn Thainefcce832005-08-20 15:53:22 +100068/* 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))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Finn Thainefcce832005-08-20 15:53:22 +100076/* use 0 for production, 1 for verification, >1 for debug */
77#ifdef SONIC_DEBUG
78static unsigned int sonic_debug = SONIC_DEBUG;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040079#else
Finn Thainefcce832005-08-20 15:53:22 +100080static unsigned int sonic_debug = 1;
81#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int sonic_version_printed;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
118 * For reversing the PROM address
119 */
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static inline void bit_reverse_addr(unsigned char addr[6])
122{
123 int i;
124
125 for(i = 0; i < 6; i++)
Akinobu Mitabc63eb92006-12-19 13:09:08 -0800126 addr[i] = bitrev8(addr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Finn Thainf4d86752007-05-02 12:55:56 +1000129static 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{
Joe Perchesa0607fd2009-11-18 23:29:17 -0800142 if (request_irq(dev->irq, sonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) {
Finn Thainf4d86752007-05-02 12:55:56 +1000143 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)
Joe Perchesa0607fd2009-11-18 23:29:17 -0800151 if (request_irq(IRQ_NUBUS_9, macsonic_interrupt, IRQ_FLG_FAST, "sonic", dev)) {
Finn Thainf4d86752007-05-02 12:55:56 +1000152 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
Alexander Beregalovc6e6d852009-04-11 07:41:28 +0000169static 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
Uwe Kleine-König251774762009-07-11 20:52:48 +0000181static int __devinit macsonic_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Finn Thainefcce832005-08-20 15:53:22 +1000183 struct sonic_local* lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* Allocate the entire chunk of memory for the descriptors.
186 Note that this cannot cross a 64K boundary. */
Finn Thainefcce832005-08-20 15:53:22 +1000187 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) {
Kay Sieversc2313552009-03-24 16:38:22 -0700190 printk(KERN_ERR "%s: couldn't alloc DMA memory for descriptors.\n",
191 dev_name(lp->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -ENOMEM;
Finn Thainefcce832005-08-20 15:53:22 +1000193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /* Now set up the pointers to point to the appropriate places */
Finn Thainefcce832005-08-20 15:53:22 +1000196 lp->cda = lp->descriptors;
197 lp->tda = lp->cda + (SIZEOF_SONIC_CDA
198 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 lp->rda = lp->tda + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
Finn Thainefcce832005-08-20 15:53:22 +1000200 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 lp->rra = lp->rda + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
Finn Thainefcce832005-08-20 15:53:22 +1000202 * SONIC_BUS_SCALE(lp->dma_bitmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Finn Thainefcce832005-08-20 15:53:22 +1000204 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alexander Beregalovc6e6d852009-04-11 07:41:28 +0000212 dev->netdev_ops = &macsonic_netdev_ops;
Finn Thainefcce832005-08-20 15:53:22 +1000213 dev->watchdog_timeo = TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /*
216 * clear tally counter
217 */
Finn Thainefcce832005-08-20 15:53:22 +1000218 SONIC_WRITE(SONIC_CRCT, 0xffff);
219 SONIC_WRITE(SONIC_FAET, 0xffff);
220 SONIC_WRITE(SONIC_MPT, 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 return 0;
223}
224
Finn Thaindcaa6a92009-11-03 03:42:40 +0000225#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Finn Thainefcce832005-08-20 15:53:22 +1000232 struct sonic_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
Finn Thaindcaa6a92009-11-03 03:42:40 +0000234 unsigned short val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Finn Thaindcaa6a92009-11-03 03:42:40 +0000236 /*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Finn Thaindcaa6a92009-11-03 03:42:40 +0000244 for (i = 0; i < 6; i++)
245 dev->dev_addr[i] = SONIC_READ_PROM(i);
246 if (!INVALID_MAC(dev->dev_addr))
247 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /*
Finn Thaindcaa6a92009-11-03 03:42:40 +0000250 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Finn Thaindcaa6a92009-11-03 03:42:40 +0000254 bit_reverse_addr(dev->dev_addr);
255 if (!INVALID_MAC(dev->dev_addr))
256 return;
257
258 /*
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.
261 */
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Uwe Kleine-König251774762009-07-11 20:52:48 +0000294static int __devinit mac_onboard_sonic_probe(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 /* Bwahahaha */
297 static int once_is_more_than_enough;
Finn Thainefcce832005-08-20 15:53:22 +1000298 struct sonic_local* lp = netdev_priv(dev);
299 int sr;
300 int commslot = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (macintosh_config->ether_type != MAC_ETHER_SONIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -ENODEV;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400311
Finn Thainefcce832005-08-20 15:53:22 +1000312 printk(KERN_INFO "Checking for internal Macintosh ethernet (SONIC).. ");
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* 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 ||
Finn Thainefcce832005-08-20 15:53:22 +1000320 macintosh_config->ident == MAC_MODEL_P575 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 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 }
Finn Thainefcce832005-08-20 15:53:22 +1000333 commslot = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400336 printk("yes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Finn Thainefcce832005-08-20 15:53:22 +1000338 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
339 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 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",
Kay Sieversc2313552009-03-24 16:38:22 -0700351 dev_name(lp->device), dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* The PowerBook's SONIC is 16 bit always. */
354 if (macintosh_config->ident == MAC_MODEL_PB520) {
Finn Thainefcce832005-08-20 15:53:22 +1000355 lp->reg_offset = 0;
356 lp->dma_bitmode = SONIC_BITMODE16;
357 sr = SONIC_READ(SONIC_SR);
358 } else if (commslot) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /* Some of the comm-slot cards are 16 bit. But some
Finn Thainefcce832005-08-20 15:53:22 +1000360 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Finn Thainefcce832005-08-20 15:53:22 +1000367 sr = SONIC_READ(SONIC_SR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400368 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
Finn Thainefcce832005-08-20 15:53:22 +1000369 /* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Finn Thainefcce832005-08-20 15:53:22 +1000376 } 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Finn Thainefcce832005-08-20 15:53:22 +1000382 printk(KERN_INFO
383 "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
Kay Sieversc2313552009-03-24 16:38:22 -0700384 dev_name(lp->device), sr, lp->dma_bitmode?32:16, lp->reg_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Finn Thainefcce832005-08-20 15:53:22 +1000386#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
Kay Sieversc2313552009-03-24 16:38:22 -0700387 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
Finn Thainefcce832005-08-20 15:53:22 +1000388 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
389#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /* Software reset, then initialize control registers. */
Finn Thainefcce832005-08-20 15:53:22 +1000392 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /* This *must* be written back to in order to restore the
Finn Thainefcce832005-08-20 15:53:22 +1000399 * extended programmable output bits, as it may not have been
400 * initialised since the hardware reset. */
401 SONIC_WRITE(SONIC_DCR2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* Clear *and* disable interrupts to be on the safe side */
Finn Thainefcce832005-08-20 15:53:22 +1000404 SONIC_WRITE(SONIC_IMR, 0);
405 SONIC_WRITE(SONIC_ISR, 0x7fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Now look for the MAC address. */
Finn Thaindcaa6a92009-11-03 03:42:40 +0000408 mac_onboard_sonic_ethernet_addr(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /* Shared init code */
411 return macsonic_init(dev);
412}
413
Uwe Kleine-König251774762009-07-11 20:52:48 +0000414static int __devinit mac_nubus_sonic_ethernet_addr(struct net_device *dev,
Adrian Bunk44f74c02008-06-10 01:23:47 +0300415 unsigned long prom_addr,
416 int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 int i;
419 for(i = 0; i < 6; i++)
420 dev->dev_addr[i] = SONIC_READ_PROM(i);
Finn Thainefcce832005-08-20 15:53:22 +1000421
422 /* Some of the addresses are bit-reversed */
423 if (id != MACSONIC_DAYNA)
424 bit_reverse_addr(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 return 0;
427}
428
Uwe Kleine-König251774762009-07-11 20:52:48 +0000429static int __devinit macsonic_ident(struct nubus_dev *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400431 if (ndev->dr_hw == NUBUS_DRHW_ASANTE_LC &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 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 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400442
Finn Thainefcce832005-08-20 15:53:22 +1000443 if (ndev->dr_hw == NUBUS_DRHW_SMC9194 &&
444 ndev->dr_sw == NUBUS_DRSW_DAYNA)
445 return MACSONIC_DAYNA;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400446
Finn Thainf8779582007-05-01 22:32:53 +0200447 if (ndev->dr_hw == NUBUS_DRHW_APPLE_SONIC_LC &&
Finn Thainefcce832005-08-20 15:53:22 +1000448 ndev->dr_sw == 0) { /* huh? */
449 return MACSONIC_APPLE16;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -1;
452}
453
Uwe Kleine-König251774762009-07-11 20:52:48 +0000454static int __devinit mac_nubus_sonic_probe(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 static int slots;
457 struct nubus_dev* ndev = NULL;
Finn Thainefcce832005-08-20 15:53:22 +1000458 struct sonic_local* lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 unsigned long base_addr, prom_addr;
460 u16 sonic_dcr;
Finn Thainefcce832005-08-20 15:53:22 +1000461 int id = -1;
462 int reg_offset, dma_bitmode;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /* 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;
Finn Thainefcce832005-08-20 15:53:22 +1000485 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
486 SONIC_DCR_TFT0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 reg_offset = 2;
Finn Thainefcce832005-08-20 15:53:22 +1000488 dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 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;
Finn Thainefcce832005-08-20 15:53:22 +1000495 dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 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;
Finn Thainefcce832005-08-20 15:53:22 +1000500 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400501 SONIC_DCR_PO1 | SONIC_DCR_BMS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000503 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 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;
Finn Thainefcce832005-08-20 15:53:22 +1000508 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400509 SONIC_DCR_PO1 | SONIC_DCR_BMS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000511 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 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;
Finn Thainefcce832005-08-20 15:53:22 +1000516 sonic_dcr = SONIC_DCR_BMS |
517 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000519 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521 default:
522 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
523 return -ENODEV;
524 }
525
Finn Thainefcce832005-08-20 15:53:22 +1000526 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
527 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 dev->base_addr = base_addr;
Finn Thainefcce832005-08-20 15:53:22 +1000529 lp->reg_offset = reg_offset;
530 lp->dma_bitmode = dma_bitmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 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",
Kay Sieversc2313552009-03-24 16:38:22 -0700538 dev_name(lp->device), ndev->board->name, ndev->board->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 printk(KERN_INFO "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
Kay Sieversc2313552009-03-24 16:38:22 -0700540 dev_name(lp->device), SONIC_READ(SONIC_SR), dma_bitmode?32:16, reg_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Finn Thainefcce832005-08-20 15:53:22 +1000542#if 0 /* This is sometimes useful to find out how MacOS configured the card. */
Kay Sieversc2313552009-03-24 16:38:22 -0700543 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
Finn Thainefcce832005-08-20 15:53:22 +1000544 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
545#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* Software reset, then initialize control registers. */
Finn Thainefcce832005-08-20 15:53:22 +1000548 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 /* Clear *and* disable interrupts to be on the safe side */
Finn Thainefcce832005-08-20 15:53:22 +1000556 SONIC_WRITE(SONIC_IMR, 0);
557 SONIC_WRITE(SONIC_ISR, 0x7fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* Now look for the MAC address. */
560 if (mac_nubus_sonic_ethernet_addr(dev, prom_addr, id) != 0)
561 return -ENODEV;
562
Finn Thainefcce832005-08-20 15:53:22 +1000563 /* Shared init code */
564 return macsonic_init(dev);
565}
566
Uwe Kleine-König251774762009-07-11 20:52:48 +0000567static int __devinit mac_sonic_probe(struct platform_device *pdev)
Finn Thainefcce832005-08-20 15:53:22 +1000568{
569 struct net_device *dev;
570 struct sonic_local *lp;
571 int err;
Finn Thainefcce832005-08-20 15:53:22 +1000572
573 dev = alloc_etherdev(sizeof(struct sonic_local));
574 if (!dev)
575 return -ENOMEM;
576
577 lp = netdev_priv(dev);
Finn Thaind74472f2007-05-01 22:33:02 +0200578 lp->device = &pdev->dev;
579 SET_NETDEV_DEV(dev, &pdev->dev);
Finn Thain4564cba2009-07-21 12:21:49 -0700580 platform_set_drvdata(pdev, dev);
Finn Thainefcce832005-08-20 15:53:22 +1000581
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
Johannes Berge1749612008-10-27 15:59:26 -0700596 printk("%s: MAC %pM IRQ %d\n", dev->name, dev->dev_addr, dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Finn Thainefcce832005-08-20 15:53:22 +1000598 return 0;
599
600out:
601 free_netdev(dev);
602
603 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Finn Thainefcce832005-08-20 15:53:22 +1000606MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
607module_param(sonic_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608MODULE_PARM_DESC(sonic_debug, "macsonic debug level (1-4)");
Finn Thaineeb9c182009-11-04 00:42:02 +1100609MODULE_ALIAS("platform:macsonic");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611#include "sonic.c"
612
Finn Thaind74472f2007-05-01 22:33:02 +0200613static int __devexit mac_sonic_device_remove (struct platform_device *pdev)
Finn Thainefcce832005-08-20 15:53:22 +1000614{
Finn Thaind74472f2007-05-01 22:33:02 +0200615 struct net_device *dev = platform_get_drvdata(pdev);
Finn Thainefcce832005-08-20 15:53:22 +1000616 struct sonic_local* lp = netdev_priv(dev);
617
Finn Thaind74472f2007-05-01 22:33:02 +0200618 unregister_netdev(dev);
Finn Thainefcce832005-08-20 15:53:22 +1000619 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
620 lp->descriptors, lp->descriptors_laddr);
Finn Thaind74472f2007-05-01 22:33:02 +0200621 free_netdev(dev);
Finn Thainefcce832005-08-20 15:53:22 +1000622
623 return 0;
624}
625
Russell King3ae5eae2005-11-09 22:32:44 +0000626static struct platform_driver mac_sonic_driver = {
Finn Thainefcce832005-08-20 15:53:22 +1000627 .probe = mac_sonic_probe,
628 .remove = __devexit_p(mac_sonic_device_remove),
Russell King3ae5eae2005-11-09 22:32:44 +0000629 .driver = {
Finn Thaineeb9c182009-11-04 00:42:02 +1100630 .name = mac_sonic_string,
631 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +0000632 },
Finn Thainefcce832005-08-20 15:53:22 +1000633};
634
Finn Thainefcce832005-08-20 15:53:22 +1000635static int __init mac_sonic_init_module(void)
636{
Finn Thaineeb9c182009-11-04 00:42:02 +1100637 return platform_driver_register(&mac_sonic_driver);
Finn Thainefcce832005-08-20 15:53:22 +1000638}
639
640static void __exit mac_sonic_cleanup_module(void)
641{
Russell King3ae5eae2005-11-09 22:32:44 +0000642 platform_driver_unregister(&mac_sonic_driver);
Finn Thainefcce832005-08-20 15:53:22 +1000643}
644
645module_init(mac_sonic_init_module);
646module_exit(mac_sonic_cleanup_module);