blob: 776b7d264dc34e83704f116d7d24bb33bd7ff795 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * macsonic.c
4 *
Finn Thainefcce832005-08-20 15:53:22 +10005 * (C) 2005 Finn Thain
6 *
7 * Converted to DMA API, converted to unified driver model, made it work as
8 * a module again, and from the mac68k project, introduced more 32-bit cards
9 * and dhd's support for 16-bit cards.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * (C) 1998 Alan Cox
12 *
13 * Debugging Andreas Ehliar, Michael Schmitz
14 *
15 * Based on code
16 * (C) 1996 by Thomas Bogendoerfer (tsbogend@bigbug.franken.de)
Jeff Garzik6aa20a22006-09-13 13:24:59 -040017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * This driver is based on work from Andreas Busse, but most of
19 * the code is rewritten.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
22 *
23 * A driver for the Mac onboard Sonic ethernet chip.
24 *
Jeff Garzik6aa20a22006-09-13 13:24:59 -040025 * 98/12/21 MSch: judged from tests on Q800, it's basically working,
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * but eating up both receive and transmit resources
27 * and duplicating packets. Needs more testing.
28 *
29 * 99/01/03 MSch: upgraded to version 0.92 of the core driver, fixed.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * 00/10/31 sammy@oh.verio.com: Updated driver for 2.4 kernels, fixed problems
32 * on centris.
33 */
34
35#include <linux/kernel.h>
Finn Thainefcce832005-08-20 15:53:22 +100036#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/fcntl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/ioport.h>
42#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Mike Rapoportca5999f2020-06-08 21:32:38 -070054#include <linux/pgtable.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/io.h>
57#include <asm/hwtest.h>
58#include <asm/dma.h>
59#include <asm/macintosh.h>
60#include <asm/macints.h>
61#include <asm/mac_via.h>
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include "sonic.h"
64
Finn Thainefcce832005-08-20 15:53:22 +100065/* These should basically be bus-size and endian independent (since
66 the SONIC is at least smart enough that it uses the same endianness
67 as the host, unlike certain less enlightened Macintosh NICs) */
68#define SONIC_READ(reg) (nubus_readw(dev->base_addr + (reg * 4) \
69 + lp->reg_offset))
70#define SONIC_WRITE(reg,val) (nubus_writew(val, dev->base_addr + (reg * 4) \
71 + lp->reg_offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* For onboard SONIC */
74#define ONBOARD_SONIC_REGISTERS 0x50F0A000
75#define ONBOARD_SONIC_PROM_BASE 0x50f08000
76
77enum macsonic_type {
78 MACSONIC_DUODOCK,
79 MACSONIC_APPLE,
80 MACSONIC_APPLE16,
81 MACSONIC_DAYNA,
82 MACSONIC_DAYNALINK
83};
84
85/* For the built-in SONIC in the Duo Dock */
86#define DUODOCK_SONIC_REGISTERS 0xe10000
87#define DUODOCK_SONIC_PROM_BASE 0xe12000
88
89/* For Apple-style NuBus SONIC */
90#define APPLE_SONIC_REGISTERS 0
91#define APPLE_SONIC_PROM_BASE 0x40000
92
93/* Daynalink LC SONIC */
94#define DAYNALINK_PROM_BASE 0x400000
95
96/* For Dayna-style NuBus SONIC (haven't seen one yet) */
97#define DAYNA_SONIC_REGISTERS 0x180000
98/* This is what OpenBSD says. However, this is definitely in NuBus
99 ROM space so we should be able to get it by walking the NuBus
100 resource directories */
101#define DAYNA_SONIC_MAC_ADDR 0xffe004
102
103#define SONIC_READ_PROM(addr) nubus_readb(prom_addr+addr)
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * For reversing the PROM address
107 */
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static inline void bit_reverse_addr(unsigned char addr[6])
110{
111 int i;
112
113 for(i = 0; i < 6; i++)
Akinobu Mitabc63eb92006-12-19 13:09:08 -0800114 addr[i] = bitrev8(addr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Finn Thainf4d86752007-05-02 12:55:56 +1000117static int macsonic_open(struct net_device* dev)
118{
Kulikov Vasiliy546e3ab2010-07-10 01:39:06 +0000119 int retval;
120
Geert Uytterhoevene71ef312011-07-13 22:33:13 +0200121 retval = request_irq(dev->irq, sonic_interrupt, 0, "sonic", dev);
Kulikov Vasiliy546e3ab2010-07-10 01:39:06 +0000122 if (retval) {
123 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
124 dev->name, dev->irq);
125 goto err;
Finn Thainf4d86752007-05-02 12:55:56 +1000126 }
Finn Thaind5f38892020-02-16 08:03:32 +1100127 /* Under the A/UX interrupt scheme, the onboard SONIC interrupt gets
128 * moved from level 2 to level 3. Unfortunately we still get some
129 * level 2 interrupts so register the handler for both.
Finn Thainf4d86752007-05-02 12:55:56 +1000130 */
Kulikov Vasiliy546e3ab2010-07-10 01:39:06 +0000131 if (dev->irq == IRQ_AUTO_3) {
Finn Thaind5f38892020-02-16 08:03:32 +1100132 retval = request_irq(IRQ_NUBUS_9, sonic_interrupt, 0,
Geert Uytterhoevene71ef312011-07-13 22:33:13 +0200133 "sonic", dev);
Kulikov Vasiliy546e3ab2010-07-10 01:39:06 +0000134 if (retval) {
135 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
136 dev->name, IRQ_NUBUS_9);
137 goto err_irq;
Finn Thainf4d86752007-05-02 12:55:56 +1000138 }
Kulikov Vasiliy546e3ab2010-07-10 01:39:06 +0000139 }
140 retval = sonic_open(dev);
141 if (retval)
142 goto err_irq_nubus;
143 return 0;
144
145err_irq_nubus:
146 if (dev->irq == IRQ_AUTO_3)
147 free_irq(IRQ_NUBUS_9, dev);
148err_irq:
149 free_irq(dev->irq, dev);
150err:
151 return retval;
Finn Thainf4d86752007-05-02 12:55:56 +1000152}
153
154static int macsonic_close(struct net_device* dev)
155{
156 int err;
157 err = sonic_close(dev);
158 free_irq(dev->irq, dev);
159 if (dev->irq == IRQ_AUTO_3)
160 free_irq(IRQ_NUBUS_9, dev);
161 return err;
162}
163
Alexander Beregalovc6e6d852009-04-11 07:41:28 +0000164static const struct net_device_ops macsonic_netdev_ops = {
165 .ndo_open = macsonic_open,
166 .ndo_stop = macsonic_close,
167 .ndo_start_xmit = sonic_send_packet,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000168 .ndo_set_rx_mode = sonic_multicast_list,
Alexander Beregalovc6e6d852009-04-11 07:41:28 +0000169 .ndo_tx_timeout = sonic_tx_timeout,
170 .ndo_get_stats = sonic_get_stats,
171 .ndo_validate_addr = eth_validate_addr,
Alexander Beregalovc6e6d852009-04-11 07:41:28 +0000172 .ndo_set_mac_address = eth_mac_addr,
173};
174
Bill Pemberton6980cbe2012-12-03 09:23:17 -0500175static int macsonic_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Finn Thainefcce832005-08-20 15:53:22 +1000177 struct sonic_local* lp = netdev_priv(dev);
Finn Thain5d58c21c2020-02-16 08:03:32 +1100178 int err = sonic_alloc_descriptors(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Finn Thain5d58c21c2020-02-16 08:03:32 +1100180 if (err)
181 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Alexander Beregalovc6e6d852009-04-11 07:41:28 +0000183 dev->netdev_ops = &macsonic_netdev_ops;
Finn Thainefcce832005-08-20 15:53:22 +1000184 dev->watchdog_timeo = TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /*
187 * clear tally counter
188 */
Finn Thainefcce832005-08-20 15:53:22 +1000189 SONIC_WRITE(SONIC_CRCT, 0xffff);
190 SONIC_WRITE(SONIC_FAET, 0xffff);
191 SONIC_WRITE(SONIC_MPT, 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 return 0;
194}
195
Finn Thaindcaa6a92009-11-03 03:42:40 +0000196#define INVALID_MAC(mac) (memcmp(mac, "\x08\x00\x07", 3) && \
197 memcmp(mac, "\x00\xA0\x40", 3) && \
198 memcmp(mac, "\x00\x80\x19", 3) && \
199 memcmp(mac, "\x00\x05\x02", 3))
200
Bill Pemberton6980cbe2012-12-03 09:23:17 -0500201static void mac_onboard_sonic_ethernet_addr(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Finn Thainefcce832005-08-20 15:53:22 +1000203 struct sonic_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
Finn Thaindcaa6a92009-11-03 03:42:40 +0000205 unsigned short val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Finn Thaindcaa6a92009-11-03 03:42:40 +0000207 /*
208 * On NuBus boards we can sometimes look in the ROM resources.
209 * No such luck for comm-slot/onboard.
210 * On the PowerBook 520, the PROM base address is a mystery.
211 */
212 if (hwreg_present((void *)prom_addr)) {
213 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Finn Thaindcaa6a92009-11-03 03:42:40 +0000215 for (i = 0; i < 6; i++)
216 dev->dev_addr[i] = SONIC_READ_PROM(i);
217 if (!INVALID_MAC(dev->dev_addr))
218 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /*
Finn Thaindcaa6a92009-11-03 03:42:40 +0000221 * Most of the time, the address is bit-reversed. The NetBSD
222 * source has a rather long and detailed historical account of
223 * why this is so.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 */
Finn Thaindcaa6a92009-11-03 03:42:40 +0000225 bit_reverse_addr(dev->dev_addr);
226 if (!INVALID_MAC(dev->dev_addr))
227 return;
228
229 /*
230 * If we still have what seems to be a bogus address, we'll
231 * look in the CAM. The top entry should be ours.
232 */
233 printk(KERN_WARNING "macsonic: MAC address in PROM seems "
234 "to be invalid, trying CAM\n");
235 } else {
236 printk(KERN_WARNING "macsonic: cannot read MAC address from "
237 "PROM, trying CAM\n");
238 }
239
240 /* This only works if MacOS has already initialized the card. */
241
242 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
243 SONIC_WRITE(SONIC_CEP, 15);
244
245 val = SONIC_READ(SONIC_CAP2);
246 dev->dev_addr[5] = val >> 8;
247 dev->dev_addr[4] = val & 0xff;
248 val = SONIC_READ(SONIC_CAP1);
249 dev->dev_addr[3] = val >> 8;
250 dev->dev_addr[2] = val & 0xff;
251 val = SONIC_READ(SONIC_CAP0);
252 dev->dev_addr[1] = val >> 8;
253 dev->dev_addr[0] = val & 0xff;
254
255 if (!INVALID_MAC(dev->dev_addr))
256 return;
257
258 /* Still nonsense ... messed up someplace! */
259
260 printk(KERN_WARNING "macsonic: MAC address in CAM entry 15 "
261 "seems invalid, will use a random MAC\n");
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000262 eth_hw_addr_random(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Bill Pemberton6980cbe2012-12-03 09:23:17 -0500265static int mac_onboard_sonic_probe(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Finn Thainefcce832005-08-20 15:53:22 +1000267 struct sonic_local* lp = netdev_priv(dev);
268 int sr;
Finn Thainb87eaec2018-01-13 17:37:13 -0500269 bool commslot = macintosh_config->expansion_type == MAC_EXP_PDS_COMM;
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) */
Finn Thainb87eaec2018-01-13 17:37:13 -0500275 if (commslot || macintosh_config->ident == MAC_MODEL_C610) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 int card_present;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!card_present) {
Finn Thainbbc2f232018-02-24 18:27:25 -0500280 pr_info("Onboard/comm-slot SONIC not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return -ENODEV;
282 }
283 }
284
Finn Thainefcce832005-08-20 15:53:22 +1000285 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
286 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 dev->base_addr = ONBOARD_SONIC_REGISTERS;
288 if (via_alt_mapping)
289 dev->irq = IRQ_AUTO_3;
290 else
291 dev->irq = IRQ_NUBUS_9;
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* The PowerBook's SONIC is 16 bit always. */
294 if (macintosh_config->ident == MAC_MODEL_PB520) {
Finn Thainefcce832005-08-20 15:53:22 +1000295 lp->reg_offset = 0;
296 lp->dma_bitmode = SONIC_BITMODE16;
Finn Thainefcce832005-08-20 15:53:22 +1000297 } else if (commslot) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* Some of the comm-slot cards are 16 bit. But some
Finn Thainefcce832005-08-20 15:53:22 +1000299 of them are not. The 32-bit cards use offset 2 and
300 have known revisions, we try reading the revision
301 register at offset 2, if we don't get a known revision
302 we assume 16 bit at offset 0. */
303 lp->reg_offset = 2;
304 lp->dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Finn Thainefcce832005-08-20 15:53:22 +1000306 sr = SONIC_READ(SONIC_SR);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400307 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
Finn Thainefcce832005-08-20 15:53:22 +1000308 /* 83932 is 0x0004 or 0x0006, 83934 is 0x0100 or 0x0101 */
309 lp->dma_bitmode = SONIC_BITMODE32;
310 else {
311 lp->dma_bitmode = SONIC_BITMODE16;
312 lp->reg_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Finn Thainefcce832005-08-20 15:53:22 +1000314 } else {
315 /* All onboard cards are at offset 2 with 32 bit DMA. */
316 lp->reg_offset = 2;
317 lp->dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Finn Thainbbc2f232018-02-24 18:27:25 -0500320 pr_info("Onboard/comm-slot SONIC, revision 0x%04x, %d bit DMA, register offset %d\n",
321 SONIC_READ(SONIC_SR), lp->dma_bitmode ? 32 : 16,
322 lp->reg_offset);
323
324 /* This is sometimes useful to find out how MacOS configured the card */
325 pr_debug("%s: DCR=0x%04x, DCR2=0x%04x\n", __func__,
326 SONIC_READ(SONIC_DCR) & 0xffff,
327 SONIC_READ(SONIC_DCR2) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /* Software reset, then initialize control registers. */
Finn Thainefcce832005-08-20 15:53:22 +1000330 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
331
332 SONIC_WRITE(SONIC_DCR, SONIC_DCR_EXBUS | SONIC_DCR_BMS |
333 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
334 (lp->dma_bitmode ? SONIC_DCR_DW : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* This *must* be written back to in order to restore the
Finn Thainefcce832005-08-20 15:53:22 +1000337 * extended programmable output bits, as it may not have been
338 * initialised since the hardware reset. */
339 SONIC_WRITE(SONIC_DCR2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 /* Clear *and* disable interrupts to be on the safe side */
Finn Thainefcce832005-08-20 15:53:22 +1000342 SONIC_WRITE(SONIC_IMR, 0);
343 SONIC_WRITE(SONIC_ISR, 0x7fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* Now look for the MAC address. */
Finn Thaindcaa6a92009-11-03 03:42:40 +0000346 mac_onboard_sonic_ethernet_addr(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Finn Thainbbc2f232018-02-24 18:27:25 -0500348 pr_info("SONIC ethernet @%08lx, MAC %pM, IRQ %d\n",
349 dev->base_addr, dev->dev_addr, dev->irq);
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Shared init code */
352 return macsonic_init(dev);
353}
354
Finn Thain0d12c682018-02-24 18:27:25 -0500355static int mac_sonic_nubus_ethernet_addr(struct net_device *dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000356 unsigned long prom_addr, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 int i;
359 for(i = 0; i < 6; i++)
360 dev->dev_addr[i] = SONIC_READ_PROM(i);
Finn Thainefcce832005-08-20 15:53:22 +1000361
362 /* Some of the addresses are bit-reversed */
363 if (id != MACSONIC_DAYNA)
364 bit_reverse_addr(dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 return 0;
367}
368
Finn Thain189e19e2018-01-13 17:37:13 -0500369static int macsonic_ident(struct nubus_rsrc *fres)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Finn Thain189e19e2018-01-13 17:37:13 -0500371 if (fres->dr_hw == NUBUS_DRHW_ASANTE_LC &&
372 fres->dr_sw == NUBUS_DRSW_SONIC_LC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return MACSONIC_DAYNALINK;
Finn Thain189e19e2018-01-13 17:37:13 -0500374 if (fres->dr_hw == NUBUS_DRHW_SONIC &&
375 fres->dr_sw == NUBUS_DRSW_APPLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* There has to be a better way to do this... */
Finn Thain189e19e2018-01-13 17:37:13 -0500377 if (strstr(fres->board->name, "DuoDock"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return MACSONIC_DUODOCK;
379 else
380 return MACSONIC_APPLE;
381 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400382
Finn Thain189e19e2018-01-13 17:37:13 -0500383 if (fres->dr_hw == NUBUS_DRHW_SMC9194 &&
384 fres->dr_sw == NUBUS_DRSW_DAYNA)
Finn Thainefcce832005-08-20 15:53:22 +1000385 return MACSONIC_DAYNA;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400386
Finn Thain189e19e2018-01-13 17:37:13 -0500387 if (fres->dr_hw == NUBUS_DRHW_APPLE_SONIC_LC &&
388 fres->dr_sw == 0) { /* huh? */
Finn Thainefcce832005-08-20 15:53:22 +1000389 return MACSONIC_APPLE16;
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -1;
392}
393
Finn Thain0d12c682018-02-24 18:27:25 -0500394static int mac_sonic_nubus_probe_board(struct nubus_board *board, int id,
395 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Finn Thainefcce832005-08-20 15:53:22 +1000397 struct sonic_local* lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 unsigned long base_addr, prom_addr;
399 u16 sonic_dcr;
Finn Thainefcce832005-08-20 15:53:22 +1000400 int reg_offset, dma_bitmode;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 switch (id) {
403 case MACSONIC_DUODOCK:
Finn Thain0d12c682018-02-24 18:27:25 -0500404 base_addr = board->slot_addr + DUODOCK_SONIC_REGISTERS;
405 prom_addr = board->slot_addr + DUODOCK_SONIC_PROM_BASE;
Finn Thainefcce832005-08-20 15:53:22 +1000406 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
407 SONIC_DCR_TFT0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 reg_offset = 2;
Finn Thainefcce832005-08-20 15:53:22 +1000409 dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 break;
411 case MACSONIC_APPLE:
Finn Thain0d12c682018-02-24 18:27:25 -0500412 base_addr = board->slot_addr + APPLE_SONIC_REGISTERS;
413 prom_addr = board->slot_addr + APPLE_SONIC_PROM_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 sonic_dcr = SONIC_DCR_BMS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0;
415 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000416 dma_bitmode = SONIC_BITMODE32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 case MACSONIC_APPLE16:
Finn Thain0d12c682018-02-24 18:27:25 -0500419 base_addr = board->slot_addr + APPLE_SONIC_REGISTERS;
420 prom_addr = board->slot_addr + APPLE_SONIC_PROM_BASE;
Finn Thainefcce832005-08-20 15:53:22 +1000421 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400422 SONIC_DCR_PO1 | SONIC_DCR_BMS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000424 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 break;
426 case MACSONIC_DAYNALINK:
Finn Thain0d12c682018-02-24 18:27:25 -0500427 base_addr = board->slot_addr + APPLE_SONIC_REGISTERS;
428 prom_addr = board->slot_addr + DAYNALINK_PROM_BASE;
Finn Thainefcce832005-08-20 15:53:22 +1000429 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400430 SONIC_DCR_PO1 | SONIC_DCR_BMS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000432 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 case MACSONIC_DAYNA:
Finn Thain0d12c682018-02-24 18:27:25 -0500435 base_addr = board->slot_addr + DAYNA_SONIC_REGISTERS;
436 prom_addr = board->slot_addr + DAYNA_SONIC_MAC_ADDR;
Finn Thainefcce832005-08-20 15:53:22 +1000437 sonic_dcr = SONIC_DCR_BMS |
438 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 reg_offset = 0;
Finn Thainefcce832005-08-20 15:53:22 +1000440 dma_bitmode = SONIC_BITMODE16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
442 default:
443 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
444 return -ENODEV;
445 }
446
Finn Thainefcce832005-08-20 15:53:22 +1000447 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
448 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 dev->base_addr = base_addr;
Finn Thainefcce832005-08-20 15:53:22 +1000450 lp->reg_offset = reg_offset;
451 lp->dma_bitmode = dma_bitmode;
Finn Thain0d12c682018-02-24 18:27:25 -0500452 dev->irq = SLOT2IRQ(board->slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Finn Thainbbc2f232018-02-24 18:27:25 -0500454 dev_info(&board->dev, "%s, revision 0x%04x, %d bit DMA, register offset %d\n",
455 board->name, SONIC_READ(SONIC_SR),
456 lp->dma_bitmode ? 32 : 16, lp->reg_offset);
457
458 /* This is sometimes useful to find out how MacOS configured the card */
459 dev_dbg(&board->dev, "%s: DCR=0x%04x, DCR2=0x%04x\n", __func__,
460 SONIC_READ(SONIC_DCR) & 0xffff,
461 SONIC_READ(SONIC_DCR2) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Software reset, then initialize control registers. */
Finn Thainefcce832005-08-20 15:53:22 +1000464 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
465 SONIC_WRITE(SONIC_DCR, sonic_dcr | (dma_bitmode ? SONIC_DCR_DW : 0));
466 /* This *must* be written back to in order to restore the
467 * extended programmable output bits, since it may not have been
468 * initialised since the hardware reset. */
469 SONIC_WRITE(SONIC_DCR2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* Clear *and* disable interrupts to be on the safe side */
Finn Thainefcce832005-08-20 15:53:22 +1000472 SONIC_WRITE(SONIC_IMR, 0);
473 SONIC_WRITE(SONIC_ISR, 0x7fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* Now look for the MAC address. */
Finn Thain0d12c682018-02-24 18:27:25 -0500476 if (mac_sonic_nubus_ethernet_addr(dev, prom_addr, id) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return -ENODEV;
478
Finn Thain0d12c682018-02-24 18:27:25 -0500479 dev_info(&board->dev, "SONIC ethernet @%08lx, MAC %pM, IRQ %d\n",
480 dev->base_addr, dev->dev_addr, dev->irq);
481
Finn Thainefcce832005-08-20 15:53:22 +1000482 /* Shared init code */
483 return macsonic_init(dev);
484}
485
Finn Thain0d12c682018-02-24 18:27:25 -0500486static int mac_sonic_platform_probe(struct platform_device *pdev)
Finn Thainefcce832005-08-20 15:53:22 +1000487{
488 struct net_device *dev;
489 struct sonic_local *lp;
490 int err;
Finn Thainefcce832005-08-20 15:53:22 +1000491
492 dev = alloc_etherdev(sizeof(struct sonic_local));
493 if (!dev)
494 return -ENOMEM;
495
496 lp = netdev_priv(dev);
Finn Thaind74472f2007-05-01 22:33:02 +0200497 lp->device = &pdev->dev;
498 SET_NETDEV_DEV(dev, &pdev->dev);
Finn Thain4564cba2009-07-21 12:21:49 -0700499 platform_set_drvdata(pdev, dev);
Finn Thainefcce832005-08-20 15:53:22 +1000500
Finn Thainefcce832005-08-20 15:53:22 +1000501 err = mac_onboard_sonic_probe(dev);
Finn Thainefcce832005-08-20 15:53:22 +1000502 if (err)
503 goto out;
Finn Thain0d12c682018-02-24 18:27:25 -0500504
Finn Thain995b2a62018-02-24 18:27:25 -0500505 sonic_msg_init(dev);
506
Finn Thainefcce832005-08-20 15:53:22 +1000507 err = register_netdev(dev);
508 if (err)
509 goto out;
510
Finn Thainefcce832005-08-20 15:53:22 +1000511 return 0;
512
513out:
514 free_netdev(dev);
515
516 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Finn Thainefcce832005-08-20 15:53:22 +1000519MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
Finn Thaineeb9c182009-11-04 00:42:02 +1100520MODULE_ALIAS("platform:macsonic");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522#include "sonic.c"
523
Finn Thain0d12c682018-02-24 18:27:25 -0500524static int mac_sonic_platform_remove(struct platform_device *pdev)
Finn Thainefcce832005-08-20 15:53:22 +1000525{
Finn Thaind74472f2007-05-01 22:33:02 +0200526 struct net_device *dev = platform_get_drvdata(pdev);
Finn Thainefcce832005-08-20 15:53:22 +1000527 struct sonic_local* lp = netdev_priv(dev);
528
Finn Thaind74472f2007-05-01 22:33:02 +0200529 unregister_netdev(dev);
Finn Thainefcce832005-08-20 15:53:22 +1000530 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
531 lp->descriptors, lp->descriptors_laddr);
Finn Thaind74472f2007-05-01 22:33:02 +0200532 free_netdev(dev);
Finn Thainefcce832005-08-20 15:53:22 +1000533
534 return 0;
535}
536
Finn Thain0d12c682018-02-24 18:27:25 -0500537static struct platform_driver mac_sonic_platform_driver = {
538 .probe = mac_sonic_platform_probe,
539 .remove = mac_sonic_platform_remove,
540 .driver = {
541 .name = "macsonic",
Russell King3ae5eae2005-11-09 22:32:44 +0000542 },
Finn Thainefcce832005-08-20 15:53:22 +1000543};
544
Finn Thain0d12c682018-02-24 18:27:25 -0500545static int mac_sonic_nubus_probe(struct nubus_board *board)
546{
547 struct net_device *ndev;
548 struct sonic_local *lp;
549 struct nubus_rsrc *fres;
550 int id = -1;
551 int err;
552
553 /* The platform driver will handle a PDS or Comm Slot card (even if
554 * it has a pseudoslot declaration ROM).
555 */
556 if (macintosh_config->expansion_type == MAC_EXP_PDS_COMM)
557 return -ENODEV;
558
559 for_each_board_func_rsrc(board, fres) {
560 if (fres->category != NUBUS_CAT_NETWORK ||
561 fres->type != NUBUS_TYPE_ETHERNET)
562 continue;
563
564 id = macsonic_ident(fres);
565 if (id != -1)
566 break;
567 }
568 if (!fres)
569 return -ENODEV;
570
571 ndev = alloc_etherdev(sizeof(struct sonic_local));
572 if (!ndev)
573 return -ENOMEM;
574
575 lp = netdev_priv(ndev);
576 lp->device = &board->dev;
577 SET_NETDEV_DEV(ndev, &board->dev);
578
579 err = mac_sonic_nubus_probe_board(board, id, ndev);
580 if (err)
581 goto out;
582
Finn Thain995b2a62018-02-24 18:27:25 -0500583 sonic_msg_init(ndev);
584
Finn Thain0d12c682018-02-24 18:27:25 -0500585 err = register_netdev(ndev);
586 if (err)
587 goto out;
588
589 nubus_set_drvdata(board, ndev);
590
591 return 0;
592
593out:
594 free_netdev(ndev);
595 return err;
596}
597
598static int mac_sonic_nubus_remove(struct nubus_board *board)
599{
600 struct net_device *ndev = nubus_get_drvdata(board);
601 struct sonic_local *lp = netdev_priv(ndev);
602
603 unregister_netdev(ndev);
604 dma_free_coherent(lp->device,
605 SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
606 lp->descriptors, lp->descriptors_laddr);
607 free_netdev(ndev);
608
609 return 0;
610}
611
612static struct nubus_driver mac_sonic_nubus_driver = {
613 .probe = mac_sonic_nubus_probe,
614 .remove = mac_sonic_nubus_remove,
615 .driver = {
616 .name = "macsonic-nubus",
617 .owner = THIS_MODULE,
618 },
619};
620
621static int perr, nerr;
622
623static int __init mac_sonic_init(void)
624{
625 perr = platform_driver_register(&mac_sonic_platform_driver);
626 nerr = nubus_driver_register(&mac_sonic_nubus_driver);
627 return 0;
628}
629module_init(mac_sonic_init);
630
631static void __exit mac_sonic_exit(void)
632{
633 if (!perr)
634 platform_driver_unregister(&mac_sonic_platform_driver);
635 if (!nerr)
636 nubus_driver_unregister(&mac_sonic_nubus_driver);
637}
638module_exit(mac_sonic_exit);