Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / net / ethernet / natsemi / macsonic.c
blobb922ab5cedea2500a4aadde3c324155c0caf6657
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 static char mac_sonic_string[] = "macsonic";
65 #include "sonic.h"
67 /* These should basically be bus-size and endian independent (since
68 the SONIC is at least smart enough that it uses the same endianness
69 as the host, unlike certain less enlightened Macintosh NICs) */
70 #define SONIC_READ(reg) (nubus_readw(dev->base_addr + (reg * 4) \
71 + lp->reg_offset))
72 #define SONIC_WRITE(reg,val) (nubus_writew(val, dev->base_addr + (reg * 4) \
73 + lp->reg_offset))
75 /* use 0 for production, 1 for verification, >1 for debug */
76 #ifdef SONIC_DEBUG
77 static unsigned int sonic_debug = SONIC_DEBUG;
78 #else
79 static unsigned int sonic_debug = 1;
80 #endif
82 static int sonic_version_printed;
84 /* For onboard SONIC */
85 #define ONBOARD_SONIC_REGISTERS 0x50F0A000
86 #define ONBOARD_SONIC_PROM_BASE 0x50f08000
88 enum macsonic_type {
89 MACSONIC_DUODOCK,
90 MACSONIC_APPLE,
91 MACSONIC_APPLE16,
92 MACSONIC_DAYNA,
93 MACSONIC_DAYNALINK
96 /* For the built-in SONIC in the Duo Dock */
97 #define DUODOCK_SONIC_REGISTERS 0xe10000
98 #define DUODOCK_SONIC_PROM_BASE 0xe12000
100 /* For Apple-style NuBus SONIC */
101 #define APPLE_SONIC_REGISTERS 0
102 #define APPLE_SONIC_PROM_BASE 0x40000
104 /* Daynalink LC SONIC */
105 #define DAYNALINK_PROM_BASE 0x400000
107 /* For Dayna-style NuBus SONIC (haven't seen one yet) */
108 #define DAYNA_SONIC_REGISTERS 0x180000
109 /* This is what OpenBSD says. However, this is definitely in NuBus
110 ROM space so we should be able to get it by walking the NuBus
111 resource directories */
112 #define DAYNA_SONIC_MAC_ADDR 0xffe004
114 #define SONIC_READ_PROM(addr) nubus_readb(prom_addr+addr)
117 * For reversing the PROM address
120 static inline void bit_reverse_addr(unsigned char addr[6])
122 int i;
124 for(i = 0; i < 6; i++)
125 addr[i] = bitrev8(addr[i]);
128 static irqreturn_t macsonic_interrupt(int irq, void *dev_id)
130 irqreturn_t result;
131 unsigned long flags;
133 local_irq_save(flags);
134 result = sonic_interrupt(irq, dev_id);
135 local_irq_restore(flags);
136 return result;
139 static int macsonic_open(struct net_device* dev)
141 int retval;
143 retval = request_irq(dev->irq, sonic_interrupt, 0, "sonic", dev);
144 if (retval) {
145 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
146 dev->name, dev->irq);
147 goto err;
149 /* Under the A/UX interrupt scheme, the onboard SONIC interrupt comes
150 * in at priority level 3. However, we sometimes get the level 2 inter-
151 * rupt as well, which must prevent re-entrance of the sonic handler.
153 if (dev->irq == IRQ_AUTO_3) {
154 retval = request_irq(IRQ_NUBUS_9, macsonic_interrupt, 0,
155 "sonic", dev);
156 if (retval) {
157 printk(KERN_ERR "%s: unable to get IRQ %d.\n",
158 dev->name, IRQ_NUBUS_9);
159 goto err_irq;
162 retval = sonic_open(dev);
163 if (retval)
164 goto err_irq_nubus;
165 return 0;
167 err_irq_nubus:
168 if (dev->irq == IRQ_AUTO_3)
169 free_irq(IRQ_NUBUS_9, dev);
170 err_irq:
171 free_irq(dev->irq, dev);
172 err:
173 return retval;
176 static int macsonic_close(struct net_device* dev)
178 int err;
179 err = sonic_close(dev);
180 free_irq(dev->irq, dev);
181 if (dev->irq == IRQ_AUTO_3)
182 free_irq(IRQ_NUBUS_9, dev);
183 return err;
186 static const struct net_device_ops macsonic_netdev_ops = {
187 .ndo_open = macsonic_open,
188 .ndo_stop = macsonic_close,
189 .ndo_start_xmit = sonic_send_packet,
190 .ndo_set_rx_mode = sonic_multicast_list,
191 .ndo_tx_timeout = sonic_tx_timeout,
192 .ndo_get_stats = sonic_get_stats,
193 .ndo_validate_addr = eth_validate_addr,
194 .ndo_set_mac_address = eth_mac_addr,
197 static int macsonic_init(struct net_device *dev)
199 struct sonic_local* lp = netdev_priv(dev);
201 /* Allocate the entire chunk of memory for the descriptors.
202 Note that this cannot cross a 64K boundary. */
203 lp->descriptors = dma_alloc_coherent(lp->device,
204 SIZEOF_SONIC_DESC *
205 SONIC_BUS_SCALE(lp->dma_bitmode),
206 &lp->descriptors_laddr,
207 GFP_KERNEL);
208 if (lp->descriptors == NULL)
209 return -ENOMEM;
211 /* Now set up the pointers to point to the appropriate places */
212 lp->cda = lp->descriptors;
213 lp->tda = lp->cda + (SIZEOF_SONIC_CDA
214 * SONIC_BUS_SCALE(lp->dma_bitmode));
215 lp->rda = lp->tda + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
216 * SONIC_BUS_SCALE(lp->dma_bitmode));
217 lp->rra = lp->rda + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
218 * SONIC_BUS_SCALE(lp->dma_bitmode));
220 lp->cda_laddr = lp->descriptors_laddr;
221 lp->tda_laddr = lp->cda_laddr + (SIZEOF_SONIC_CDA
222 * SONIC_BUS_SCALE(lp->dma_bitmode));
223 lp->rda_laddr = lp->tda_laddr + (SIZEOF_SONIC_TD * SONIC_NUM_TDS
224 * SONIC_BUS_SCALE(lp->dma_bitmode));
225 lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS
226 * SONIC_BUS_SCALE(lp->dma_bitmode));
228 dev->netdev_ops = &macsonic_netdev_ops;
229 dev->watchdog_timeo = TX_TIMEOUT;
232 * clear tally counter
234 SONIC_WRITE(SONIC_CRCT, 0xffff);
235 SONIC_WRITE(SONIC_FAET, 0xffff);
236 SONIC_WRITE(SONIC_MPT, 0xffff);
238 return 0;
241 #define INVALID_MAC(mac) (memcmp(mac, "\x08\x00\x07", 3) && \
242 memcmp(mac, "\x00\xA0\x40", 3) && \
243 memcmp(mac, "\x00\x80\x19", 3) && \
244 memcmp(mac, "\x00\x05\x02", 3))
246 static void mac_onboard_sonic_ethernet_addr(struct net_device *dev)
248 struct sonic_local *lp = netdev_priv(dev);
249 const int prom_addr = ONBOARD_SONIC_PROM_BASE;
250 unsigned short val;
253 * On NuBus boards we can sometimes look in the ROM resources.
254 * No such luck for comm-slot/onboard.
255 * On the PowerBook 520, the PROM base address is a mystery.
257 if (hwreg_present((void *)prom_addr)) {
258 int i;
260 for (i = 0; i < 6; i++)
261 dev->dev_addr[i] = SONIC_READ_PROM(i);
262 if (!INVALID_MAC(dev->dev_addr))
263 return;
266 * Most of the time, the address is bit-reversed. The NetBSD
267 * source has a rather long and detailed historical account of
268 * why this is so.
270 bit_reverse_addr(dev->dev_addr);
271 if (!INVALID_MAC(dev->dev_addr))
272 return;
275 * If we still have what seems to be a bogus address, we'll
276 * look in the CAM. The top entry should be ours.
278 printk(KERN_WARNING "macsonic: MAC address in PROM seems "
279 "to be invalid, trying CAM\n");
280 } else {
281 printk(KERN_WARNING "macsonic: cannot read MAC address from "
282 "PROM, trying CAM\n");
285 /* This only works if MacOS has already initialized the card. */
287 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
288 SONIC_WRITE(SONIC_CEP, 15);
290 val = SONIC_READ(SONIC_CAP2);
291 dev->dev_addr[5] = val >> 8;
292 dev->dev_addr[4] = val & 0xff;
293 val = SONIC_READ(SONIC_CAP1);
294 dev->dev_addr[3] = val >> 8;
295 dev->dev_addr[2] = val & 0xff;
296 val = SONIC_READ(SONIC_CAP0);
297 dev->dev_addr[1] = val >> 8;
298 dev->dev_addr[0] = val & 0xff;
300 if (!INVALID_MAC(dev->dev_addr))
301 return;
303 /* Still nonsense ... messed up someplace! */
305 printk(KERN_WARNING "macsonic: MAC address in CAM entry 15 "
306 "seems invalid, will use a random MAC\n");
307 eth_hw_addr_random(dev);
310 static int mac_onboard_sonic_probe(struct net_device *dev)
312 struct sonic_local* lp = netdev_priv(dev);
313 int sr;
314 bool commslot = macintosh_config->expansion_type == MAC_EXP_PDS_COMM;
316 if (!MACH_IS_MAC)
317 return -ENODEV;
319 printk(KERN_INFO "Checking for internal Macintosh ethernet (SONIC).. ");
321 /* Bogus probing, on the models which may or may not have
322 Ethernet (BTW, the Ethernet *is* always at the same
323 address, and nothing else lives there, at least if Apple's
324 documentation is to be believed) */
325 if (commslot || macintosh_config->ident == MAC_MODEL_C610) {
326 int card_present;
328 card_present = hwreg_present((void*)ONBOARD_SONIC_REGISTERS);
329 if (!card_present) {
330 printk("none.\n");
331 return -ENODEV;
335 printk("yes\n");
337 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
338 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
339 dev->base_addr = ONBOARD_SONIC_REGISTERS;
340 if (via_alt_mapping)
341 dev->irq = IRQ_AUTO_3;
342 else
343 dev->irq = IRQ_NUBUS_9;
345 if (!sonic_version_printed) {
346 printk(KERN_INFO "%s", version);
347 sonic_version_printed = 1;
349 printk(KERN_INFO "%s: onboard / comm-slot SONIC at 0x%08lx\n",
350 dev_name(lp->device), dev->base_addr);
352 /* The PowerBook's SONIC is 16 bit always. */
353 if (macintosh_config->ident == MAC_MODEL_PB520) {
354 lp->reg_offset = 0;
355 lp->dma_bitmode = SONIC_BITMODE16;
356 sr = SONIC_READ(SONIC_SR);
357 } else if (commslot) {
358 /* Some of the comm-slot cards are 16 bit. But some
359 of them are not. The 32-bit cards use offset 2 and
360 have known revisions, we try reading the revision
361 register at offset 2, if we don't get a known revision
362 we assume 16 bit at offset 0. */
363 lp->reg_offset = 2;
364 lp->dma_bitmode = SONIC_BITMODE16;
366 sr = SONIC_READ(SONIC_SR);
367 if (sr == 0x0004 || sr == 0x0006 || sr == 0x0100 || sr == 0x0101)
368 /* 83932 is 0x0004 or 0x0006, 83934 is 0x0100 or 0x0101 */
369 lp->dma_bitmode = SONIC_BITMODE32;
370 else {
371 lp->dma_bitmode = SONIC_BITMODE16;
372 lp->reg_offset = 0;
373 sr = SONIC_READ(SONIC_SR);
375 } else {
376 /* All onboard cards are at offset 2 with 32 bit DMA. */
377 lp->reg_offset = 2;
378 lp->dma_bitmode = SONIC_BITMODE32;
379 sr = SONIC_READ(SONIC_SR);
381 printk(KERN_INFO
382 "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
383 dev_name(lp->device), sr, lp->dma_bitmode?32:16, lp->reg_offset);
385 #if 0 /* This is sometimes useful to find out how MacOS configured the card. */
386 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
387 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
388 #endif
390 /* Software reset, then initialize control registers. */
391 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
393 SONIC_WRITE(SONIC_DCR, SONIC_DCR_EXBUS | SONIC_DCR_BMS |
394 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
395 (lp->dma_bitmode ? SONIC_DCR_DW : 0));
397 /* This *must* be written back to in order to restore the
398 * extended programmable output bits, as it may not have been
399 * initialised since the hardware reset. */
400 SONIC_WRITE(SONIC_DCR2, 0);
402 /* Clear *and* disable interrupts to be on the safe side */
403 SONIC_WRITE(SONIC_IMR, 0);
404 SONIC_WRITE(SONIC_ISR, 0x7fff);
406 /* Now look for the MAC address. */
407 mac_onboard_sonic_ethernet_addr(dev);
409 /* Shared init code */
410 return macsonic_init(dev);
413 static int mac_nubus_sonic_ethernet_addr(struct net_device *dev,
414 unsigned long prom_addr, int id)
416 int i;
417 for(i = 0; i < 6; i++)
418 dev->dev_addr[i] = SONIC_READ_PROM(i);
420 /* Some of the addresses are bit-reversed */
421 if (id != MACSONIC_DAYNA)
422 bit_reverse_addr(dev->dev_addr);
424 return 0;
427 static int macsonic_ident(struct nubus_rsrc *fres)
429 if (fres->dr_hw == NUBUS_DRHW_ASANTE_LC &&
430 fres->dr_sw == NUBUS_DRSW_SONIC_LC)
431 return MACSONIC_DAYNALINK;
432 if (fres->dr_hw == NUBUS_DRHW_SONIC &&
433 fres->dr_sw == NUBUS_DRSW_APPLE) {
434 /* There has to be a better way to do this... */
435 if (strstr(fres->board->name, "DuoDock"))
436 return MACSONIC_DUODOCK;
437 else
438 return MACSONIC_APPLE;
441 if (fres->dr_hw == NUBUS_DRHW_SMC9194 &&
442 fres->dr_sw == NUBUS_DRSW_DAYNA)
443 return MACSONIC_DAYNA;
445 if (fres->dr_hw == NUBUS_DRHW_APPLE_SONIC_LC &&
446 fres->dr_sw == 0) { /* huh? */
447 return MACSONIC_APPLE16;
449 return -1;
452 static int mac_nubus_sonic_probe(struct net_device *dev)
454 static int slots;
455 struct nubus_rsrc *ndev = NULL;
456 struct sonic_local* lp = netdev_priv(dev);
457 unsigned long base_addr, prom_addr;
458 u16 sonic_dcr;
459 int id = -1;
460 int reg_offset, dma_bitmode;
462 /* Find the first SONIC that hasn't been initialized already */
463 for_each_func_rsrc(ndev) {
464 if (ndev->category != NUBUS_CAT_NETWORK ||
465 ndev->type != NUBUS_TYPE_ETHERNET)
466 continue;
468 /* Have we seen it already? */
469 if (slots & (1<<ndev->board->slot))
470 continue;
471 slots |= 1<<ndev->board->slot;
473 /* Is it one of ours? */
474 if ((id = macsonic_ident(ndev)) != -1)
475 break;
478 if (ndev == NULL)
479 return -ENODEV;
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;
485 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT0 | SONIC_DCR_RFT1 |
486 SONIC_DCR_TFT0;
487 reg_offset = 2;
488 dma_bitmode = SONIC_BITMODE32;
489 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;
495 dma_bitmode = SONIC_BITMODE32;
496 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;
500 sonic_dcr = SONIC_DCR_EXBUS | SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
501 SONIC_DCR_PO1 | SONIC_DCR_BMS;
502 reg_offset = 0;
503 dma_bitmode = SONIC_BITMODE16;
504 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;
508 sonic_dcr = SONIC_DCR_RFT1 | SONIC_DCR_TFT0 |
509 SONIC_DCR_PO1 | SONIC_DCR_BMS;
510 reg_offset = 0;
511 dma_bitmode = SONIC_BITMODE16;
512 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;
516 sonic_dcr = SONIC_DCR_BMS |
517 SONIC_DCR_RFT1 | SONIC_DCR_TFT0 | SONIC_DCR_PO1;
518 reg_offset = 0;
519 dma_bitmode = SONIC_BITMODE16;
520 break;
521 default:
522 printk(KERN_ERR "macsonic: WTF, id is %d\n", id);
523 return -ENODEV;
526 /* Danger! My arms are flailing wildly! You *must* set lp->reg_offset
527 * and dev->base_addr before using SONIC_READ() or SONIC_WRITE() */
528 dev->base_addr = base_addr;
529 lp->reg_offset = reg_offset;
530 lp->dma_bitmode = dma_bitmode;
531 dev->irq = SLOT2IRQ(ndev->board->slot);
533 if (!sonic_version_printed) {
534 printk(KERN_INFO "%s", version);
535 sonic_version_printed = 1;
537 printk(KERN_INFO "%s: %s in slot %X\n",
538 dev_name(lp->device), ndev->board->name, ndev->board->slot);
539 printk(KERN_INFO "%s: revision 0x%04x, using %d bit DMA and register offset %d\n",
540 dev_name(lp->device), SONIC_READ(SONIC_SR), dma_bitmode?32:16, reg_offset);
542 #if 0 /* This is sometimes useful to find out how MacOS configured the card. */
543 printk(KERN_INFO "%s: DCR: 0x%04x, DCR2: 0x%04x\n", dev_name(lp->device),
544 SONIC_READ(SONIC_DCR) & 0xffff, SONIC_READ(SONIC_DCR2) & 0xffff);
545 #endif
547 /* Software reset, then initialize control registers. */
548 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);
555 /* Clear *and* disable interrupts to be on the safe side */
556 SONIC_WRITE(SONIC_IMR, 0);
557 SONIC_WRITE(SONIC_ISR, 0x7fff);
559 /* Now look for the MAC address. */
560 if (mac_nubus_sonic_ethernet_addr(dev, prom_addr, id) != 0)
561 return -ENODEV;
563 /* Shared init code */
564 return macsonic_init(dev);
567 static int mac_sonic_probe(struct platform_device *pdev)
569 struct net_device *dev;
570 struct sonic_local *lp;
571 int err;
573 dev = alloc_etherdev(sizeof(struct sonic_local));
574 if (!dev)
575 return -ENOMEM;
577 lp = netdev_priv(dev);
578 lp->device = &pdev->dev;
579 SET_NETDEV_DEV(dev, &pdev->dev);
580 platform_set_drvdata(pdev, dev);
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;
591 found:
592 err = register_netdev(dev);
593 if (err)
594 goto out;
596 printk("%s: MAC %pM IRQ %d\n", dev->name, dev->dev_addr, dev->irq);
598 return 0;
600 out:
601 free_netdev(dev);
603 return err;
606 MODULE_DESCRIPTION("Macintosh SONIC ethernet driver");
607 module_param(sonic_debug, int, 0);
608 MODULE_PARM_DESC(sonic_debug, "macsonic debug level (1-4)");
609 MODULE_ALIAS("platform:macsonic");
611 #include "sonic.c"
613 static int mac_sonic_device_remove(struct platform_device *pdev)
615 struct net_device *dev = platform_get_drvdata(pdev);
616 struct sonic_local* lp = netdev_priv(dev);
618 unregister_netdev(dev);
619 dma_free_coherent(lp->device, SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
620 lp->descriptors, lp->descriptors_laddr);
621 free_netdev(dev);
623 return 0;
626 static struct platform_driver mac_sonic_driver = {
627 .probe = mac_sonic_probe,
628 .remove = mac_sonic_device_remove,
629 .driver = {
630 .name = mac_sonic_string,
634 module_platform_driver(mac_sonic_driver);