gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / net / ethernet / natsemi / macsonic.c
blob1b5559aacb3852904ea81853128eebd99cce1be2
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * macsonic.c
5 * (C) 2005 Finn Thain
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.
11 * (C) 1998 Alan Cox
13 * Debugging Andreas Ehliar, Michael Schmitz
15 * Based on code
16 * (C) 1996 by Thomas Bogendoerfer (tsbogend@bigbug.franken.de)
18 * This driver is based on work from Andreas Busse, but most of
19 * the code is rewritten.
21 * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
23 * A driver for the Mac onboard Sonic ethernet chip.
25 * 98/12/21 MSch: judged from tests on Q800, it's basically working,
26 * but eating up both receive and transmit resources
27 * and duplicating packets. Needs more testing.
29 * 99/01/03 MSch: upgraded to version 0.92 of the core driver, fixed.
31 * 00/10/31 sammy@oh.verio.com: Updated driver for 2.4 kernels, fixed problems
32 * on centris.
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/types.h>
38 #include <linux/fcntl.h>
39 #include <linux/gfp.h>
40 #include <linux/interrupt.h>
41 #include <linux/ioport.h>
42 #include <linux/in.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>
50 #include <linux/platform_device.h>
51 #include <linux/dma-mapping.h>
52 #include <linux/bitrev.h>
53 #include <linux/slab.h>
55 #include <asm/pgtable.h>
56 #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>
63 #include "sonic.h"
65 /* 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))
73 /* For onboard SONIC */
74 #define ONBOARD_SONIC_REGISTERS 0x50F0A000
75 #define ONBOARD_SONIC_PROM_BASE 0x50f08000
77 enum macsonic_type {
78 MACSONIC_DUODOCK,
79 MACSONIC_APPLE,
80 MACSONIC_APPLE16,
81 MACSONIC_DAYNA,
82 MACSONIC_DAYNALINK
85 /* For the built-in SONIC in the Duo Dock */
86 #define DUODOCK_SONIC_REGISTERS 0xe10000
87 #define DUODOCK_SONIC_PROM_BASE 0xe12000
89 /* For Apple-style NuBus SONIC */
90 #define APPLE_SONIC_REGISTERS 0
91 #define APPLE_SONIC_PROM_BASE 0x40000
93 /* Daynalink LC SONIC */
94 #define DAYNALINK_PROM_BASE 0x400000
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
103 #define SONIC_READ_PROM(addr) nubus_readb(prom_addr+addr)
106 * For reversing the PROM address
109 static inline void bit_reverse_addr(unsigned char addr[6])
111 int i;
113 for(i = 0; i < 6; i++)
114 addr[i] = bitrev8(addr[i]);
117 static int macsonic_open(struct net_device* dev)
119 int retval;
121 retval = request_irq(dev->irq, sonic_interrupt, 0, "sonic", dev);
122 if (retval) {
123 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
124 dev->name, dev->irq);
125 goto err;
127 /* 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.
131 if (dev->irq == IRQ_AUTO_3) {
132 retval = request_irq(IRQ_NUBUS_9, sonic_interrupt, 0,
133 "sonic", dev);
134 if (retval) {
135 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
136 dev->name, IRQ_NUBUS_9);
137 goto err_irq;
140 retval = sonic_open(dev);
141 if (retval)
142 goto err_irq_nubus;
143 return 0;
145 err_irq_nubus:
146 if (dev->irq == IRQ_AUTO_3)
147 free_irq(IRQ_NUBUS_9, dev);
148 err_irq:
149 free_irq(dev->irq, dev);
150 err:
151 return retval;
154 static int macsonic_close(struct net_device* dev)
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;
164 static 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,
168 .ndo_set_rx_mode = sonic_multicast_list,
169 .ndo_tx_timeout = sonic_tx_timeout,
170 .ndo_get_stats = sonic_get_stats,
171 .ndo_validate_addr = eth_validate_addr,
172 .ndo_set_mac_address = eth_mac_addr,
175 static int macsonic_init(struct net_device *dev)
177 struct sonic_local* lp = netdev_priv(dev);
178 int err = sonic_alloc_descriptors(dev);
180 if (err)
181 return err;
183 dev->netdev_ops = &macsonic_netdev_ops;
184 dev->watchdog_timeo = TX_TIMEOUT;
187 * clear tally counter
189 SONIC_WRITE(SONIC_CRCT, 0xffff);
190 SONIC_WRITE(SONIC_FAET, 0xffff);
191 SONIC_WRITE(SONIC_MPT, 0xffff);
193 return 0;
196 #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))
201 static void mac_onboard_sonic_ethernet_addr(struct net_device *dev)
203 struct sonic_local *lp = netdev_priv(dev);
204 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
205 unsigned short val;
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.
212 if (hwreg_present((void *)prom_addr)) {
213 int i;
215 for (i = 0; i < 6; i++)
216 dev->dev_addr[i] = SONIC_READ_PROM(i);
217 if (!INVALID_MAC(dev->dev_addr))
218 return;
221 * 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.
225 bit_reverse_addr(dev->dev_addr);
226 if (!INVALID_MAC(dev->dev_addr))
227 return;
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.
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");
240 /* This only works if MacOS has already initialized the card. */
242 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
243 SONIC_WRITE(SONIC_CEP, 15);
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;
255 if (!INVALID_MAC(dev->dev_addr))
256 return;
258 /* Still nonsense ... messed up someplace! */
260 printk(KERN_WARNING "macsonic: MAC address in CAM entry 15 "
261 "seems invalid, will use a random MAC\n");
262 eth_hw_addr_random(dev);
265 static int mac_onboard_sonic_probe(struct net_device *dev)
267 struct sonic_local* lp = netdev_priv(dev);
268 int sr;
269 bool commslot = macintosh_config->expansion_type == MAC_EXP_PDS_COMM;
271 /* 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 (commslot || macintosh_config->ident == MAC_MODEL_C610) {
276 int card_present;
278 card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
279 if (!card_present) {
280 pr_info("Onboard/comm-slot SONIC not found\n");
281 return -ENODEV;
285 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
286 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
287 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;
293 /* The PowerBook's SONIC is 16 bit always. */
294 if (macintosh_config->ident == MAC_MODEL_PB520) {
295 lp->reg_offset = 0;
296 lp->dma_bitmode = SONIC_BITMODE16;
297 } else if (commslot) {
298 /* Some of the comm-slot cards are 16 bit. But some
299 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;
306 sr = SONIC_READ(SONIC_SR);
307 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
308 /* 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;
314 } else {
315 /* All onboard cards are at offset 2 with 32 bit DMA. */
316 lp->reg_offset = 2;
317 lp->dma_bitmode = SONIC_BITMODE32;
320 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);
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);
329 /* Software reset, then initialize control registers. */
330 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
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));
336 /* This *must* be written back to in order to restore the
337 * extended programmable output bits, as it may not have been
338 * initialised since the hardware reset. */
339 SONIC_WRITE(SONIC_DCR2, 0);
341 /* Clear *and* disable interrupts to be on the safe side */
342 SONIC_WRITE(SONIC_IMR, 0);
343 SONIC_WRITE(SONIC_ISR, 0x7fff);
345 /* Now look for the MAC address. */
346 mac_onboard_sonic_ethernet_addr(dev);
348 pr_info("SONIC ethernet @%08lx, MAC %pM, IRQ %d\n",
349 dev->base_addr, dev->dev_addr, dev->irq);
351 /* Shared init code */
352 return macsonic_init(dev);
355 static int mac_sonic_nubus_ethernet_addr(struct net_device *dev,
356 unsigned long prom_addr, int id)
358 int i;
359 for(i = 0; i < 6; i++)
360 dev->dev_addr[i] = SONIC_READ_PROM(i);
362 /* Some of the addresses are bit-reversed */
363 if (id != MACSONIC_DAYNA)
364 bit_reverse_addr(dev->dev_addr);
366 return 0;
369 static int macsonic_ident(struct nubus_rsrc *fres)
371 if (fres->dr_hw == NUBUS_DRHW_ASANTE_LC &&
372 fres->dr_sw == NUBUS_DRSW_SONIC_LC)
373 return MACSONIC_DAYNALINK;
374 if (fres->dr_hw == NUBUS_DRHW_SONIC &&
375 fres->dr_sw == NUBUS_DRSW_APPLE) {
376 /* There has to be a better way to do this... */
377 if (strstr(fres->board->name, "DuoDock"))
378 return MACSONIC_DUODOCK;
379 else
380 return MACSONIC_APPLE;
383 if (fres->dr_hw == NUBUS_DRHW_SMC9194 &&
384 fres->dr_sw == NUBUS_DRSW_DAYNA)
385 return MACSONIC_DAYNA;
387 if (fres->dr_hw == NUBUS_DRHW_APPLE_SONIC_LC &&
388 fres->dr_sw == 0) { /* huh? */
389 return MACSONIC_APPLE16;
391 return -1;
394 static int mac_sonic_nubus_probe_board(struct nubus_board *board, int id,
395 struct net_device *dev)
397 struct sonic_local* lp = netdev_priv(dev);
398 unsigned long base_addr, prom_addr;
399 u16 sonic_dcr;
400 int reg_offset, dma_bitmode;
402 switch (id) {
403 case MACSONIC_DUODOCK:
404 base_addr = board->slot_addr + DUODOCK_SONIC_REGISTERS;
405 prom_addr = board->slot_addr + DUODOCK_SONIC_PROM_BASE;
406 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
407 SONIC_DCR_TFT0;
408 reg_offset = 2;
409 dma_bitmode = SONIC_BITMODE32;
410 break;
411 case MACSONIC_APPLE:
412 base_addr = board->slot_addr + APPLE_SONIC_REGISTERS;
413 prom_addr = board->slot_addr + APPLE_SONIC_PROM_BASE;
414 sonic_dcr = SONIC_DCR_BMS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0;
415 reg_offset = 0;
416 dma_bitmode = SONIC_BITMODE32;
417 break;
418 case MACSONIC_APPLE16:
419 base_addr = board->slot_addr + APPLE_SONIC_REGISTERS;
420 prom_addr = board->slot_addr + APPLE_SONIC_PROM_BASE;
421 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
422 SONIC_DCR_PO1 | SONIC_DCR_BMS;
423 reg_offset = 0;
424 dma_bitmode = SONIC_BITMODE16;
425 break;
426 case MACSONIC_DAYNALINK:
427 base_addr = board->slot_addr + APPLE_SONIC_REGISTERS;
428 prom_addr = board->slot_addr + DAYNALINK_PROM_BASE;
429 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
430 SONIC_DCR_PO1 | SONIC_DCR_BMS;
431 reg_offset = 0;
432 dma_bitmode = SONIC_BITMODE16;
433 break;
434 case MACSONIC_DAYNA:
435 base_addr = board->slot_addr + DAYNA_SONIC_REGISTERS;
436 prom_addr = board->slot_addr + DAYNA_SONIC_MAC_ADDR;
437 sonic_dcr = SONIC_DCR_BMS |
438 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
439 reg_offset = 0;
440 dma_bitmode = SONIC_BITMODE16;
441 break;
442 default:
443 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
444 return -ENODEV;
447 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
448 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
449 dev->base_addr = base_addr;
450 lp->reg_offset = reg_offset;
451 lp->dma_bitmode = dma_bitmode;
452 dev->irq = SLOT2IRQ(board->slot);
454 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);
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);
463 /* Software reset, then initialize control registers. */
464 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);
471 /* Clear *and* disable interrupts to be on the safe side */
472 SONIC_WRITE(SONIC_IMR, 0);
473 SONIC_WRITE(SONIC_ISR, 0x7fff);
475 /* Now look for the MAC address. */
476 if (mac_sonic_nubus_ethernet_addr(dev, prom_addr, id) != 0)
477 return -ENODEV;
479 dev_info(&board->dev, "SONIC ethernet @%08lx, MAC %pM, IRQ %d\n",
480 dev->base_addr, dev->dev_addr, dev->irq);
482 /* Shared init code */
483 return macsonic_init(dev);
486 static int mac_sonic_platform_probe(struct platform_device *pdev)
488 struct net_device *dev;
489 struct sonic_local *lp;
490 int err;
492 dev = alloc_etherdev(sizeof(struct sonic_local));
493 if (!dev)
494 return -ENOMEM;
496 lp = netdev_priv(dev);
497 lp->device = &pdev->dev;
498 SET_NETDEV_DEV(dev, &pdev->dev);
499 platform_set_drvdata(pdev, dev);
501 err = mac_onboard_sonic_probe(dev);
502 if (err)
503 goto out;
505 sonic_msg_init(dev);
507 err = register_netdev(dev);
508 if (err)
509 goto out;
511 return 0;
513 out:
514 free_netdev(dev);
516 return err;
519 MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
520 MODULE_ALIAS("platform:macsonic");
522 #include "sonic.c"
524 static int mac_sonic_platform_remove(struct platform_device *pdev)
526 struct net_device *dev = platform_get_drvdata(pdev);
527 struct sonic_local* lp = netdev_priv(dev);
529 unregister_netdev(dev);
530 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
531 lp->descriptors, lp->descriptors_laddr);
532 free_netdev(dev);
534 return 0;
537 static struct platform_driver mac_sonic_platform_driver = {
538 .probe = mac_sonic_platform_probe,
539 .remove = mac_sonic_platform_remove,
540 .driver = {
541 .name = "macsonic",
545 static int mac_sonic_nubus_probe(struct nubus_board *board)
547 struct net_device *ndev;
548 struct sonic_local *lp;
549 struct nubus_rsrc *fres;
550 int id = -1;
551 int err;
553 /* The platform driver will handle a PDS or Comm Slot card (even if
554 * it has a pseudoslot declaration ROM).
556 if (macintosh_config->expansion_type == MAC_EXP_PDS_COMM)
557 return -ENODEV;
559 for_each_board_func_rsrc(board, fres) {
560 if (fres->category != NUBUS_CAT_NETWORK ||
561 fres->type != NUBUS_TYPE_ETHERNET)
562 continue;
564 id = macsonic_ident(fres);
565 if (id != -1)
566 break;
568 if (!fres)
569 return -ENODEV;
571 ndev = alloc_etherdev(sizeof(struct sonic_local));
572 if (!ndev)
573 return -ENOMEM;
575 lp = netdev_priv(ndev);
576 lp->device = &board->dev;
577 SET_NETDEV_DEV(ndev, &board->dev);
579 err = mac_sonic_nubus_probe_board(board, id, ndev);
580 if (err)
581 goto out;
583 sonic_msg_init(ndev);
585 err = register_netdev(ndev);
586 if (err)
587 goto out;
589 nubus_set_drvdata(board, ndev);
591 return 0;
593 out:
594 free_netdev(ndev);
595 return err;
598 static int mac_sonic_nubus_remove(struct nubus_board *board)
600 struct net_device *ndev = nubus_get_drvdata(board);
601 struct sonic_local *lp = netdev_priv(ndev);
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);
609 return 0;
612 static 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,
621 static int perr, nerr;
623 static int __init mac_sonic_init(void)
625 perr = platform_driver_register(&mac_sonic_platform_driver);
626 nerr = nubus_driver_register(&mac_sonic_nubus_driver);
627 return 0;
629 module_init(mac_sonic_init);
631 static void __exit mac_sonic_exit(void)
633 if (!perr)
634 platform_driver_unregister(&mac_sonic_platform_driver);
635 if (!nerr)
636 nubus_driver_unregister(&mac_sonic_nubus_driver);
638 module_exit(mac_sonic_exit);