GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / net / macmace.c
blob4d583f7ce5e5654954a3eb8d46a657072e35ba96
1 /*
2 * Driver for the Macintosh 68K onboard MACE controller with PSC
3 * driven DMA. The MACE driver code is derived from mace.c. The
4 * Mac68k theory of operation is courtesy of the MacBSD wizards.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * Copyright (C) 1996 Paul Mackerras.
12 * Copyright (C) 1998 Alan Cox <alan@lxorguk.ukuu.org.uk>
14 * Modified heavily by Joshua M. Thompson based on Dave Huang's NetBSD driver
16 * Copyright (C) 2007 Finn Thain
18 * Converted to DMA API, converted to unified driver model,
19 * sync'd some routines with mace.c and fixed various bugs.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/netdevice.h>
26 #include <linux/etherdevice.h>
27 #include <linux/delay.h>
28 #include <linux/string.h>
29 #include <linux/crc32.h>
30 #include <linux/bitrev.h>
31 #include <linux/dma-mapping.h>
32 #include <linux/platform_device.h>
33 #include <linux/gfp.h>
34 #include <asm/io.h>
35 #include <asm/irq.h>
36 #include <asm/macintosh.h>
37 #include <asm/macints.h>
38 #include <asm/mac_psc.h>
39 #include <asm/page.h>
40 #include "mace.h"
42 static char mac_mace_string[] = "macmace";
44 #define N_TX_BUFF_ORDER 0
45 #define N_TX_RING (1 << N_TX_BUFF_ORDER)
46 #define N_RX_BUFF_ORDER 3
47 #define N_RX_RING (1 << N_RX_BUFF_ORDER)
49 #define TX_TIMEOUT HZ
51 #define MACE_BUFF_SIZE 0x800
53 #define BROKEN_ADDRCHG_REV 0x0941
55 /* The MACE is simply wired down on a Mac68K box */
57 #define MACE_BASE (void *)(0x50F1C000)
58 #define MACE_PROM (void *)(0x50F08001)
60 struct mace_data {
61 volatile struct mace *mace;
62 unsigned char *tx_ring;
63 dma_addr_t tx_ring_phys;
64 unsigned char *rx_ring;
65 dma_addr_t rx_ring_phys;
66 int dma_intr;
67 int rx_slot, rx_tail;
68 int tx_slot, tx_sloti, tx_count;
69 int chipid;
70 struct device *device;
73 struct mace_frame {
74 u8 rcvcnt;
75 u8 pad1;
76 u8 rcvsts;
77 u8 pad2;
78 u8 rntpc;
79 u8 pad3;
80 u8 rcvcc;
81 u8 pad4;
82 u32 pad5;
83 u32 pad6;
84 u8 data[1];
85 /* And frame continues.. */
88 #define PRIV_BYTES sizeof(struct mace_data)
90 static int mace_open(struct net_device *dev);
91 static int mace_close(struct net_device *dev);
92 static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev);
93 static void mace_set_multicast(struct net_device *dev);
94 static int mace_set_address(struct net_device *dev, void *addr);
95 static void mace_reset(struct net_device *dev);
96 static irqreturn_t mace_interrupt(int irq, void *dev_id);
97 static irqreturn_t mace_dma_intr(int irq, void *dev_id);
98 static void mace_tx_timeout(struct net_device *dev);
99 static void __mace_set_address(struct net_device *dev, void *addr);
102 * Load a receive DMA channel with a base address and ring length
105 static void mace_load_rxdma_base(struct net_device *dev, int set)
107 struct mace_data *mp = netdev_priv(dev);
109 psc_write_word(PSC_ENETRD_CMD + set, 0x0100);
110 psc_write_long(PSC_ENETRD_ADDR + set, (u32) mp->rx_ring_phys);
111 psc_write_long(PSC_ENETRD_LEN + set, N_RX_RING);
112 psc_write_word(PSC_ENETRD_CMD + set, 0x9800);
113 mp->rx_tail = 0;
117 * Reset the receive DMA subsystem
120 static void mace_rxdma_reset(struct net_device *dev)
122 struct mace_data *mp = netdev_priv(dev);
123 volatile struct mace *mace = mp->mace;
124 u8 maccc = mace->maccc;
126 mace->maccc = maccc & ~ENRCV;
128 psc_write_word(PSC_ENETRD_CTL, 0x8800);
129 mace_load_rxdma_base(dev, 0x00);
130 psc_write_word(PSC_ENETRD_CTL, 0x0400);
132 psc_write_word(PSC_ENETRD_CTL, 0x8800);
133 mace_load_rxdma_base(dev, 0x10);
134 psc_write_word(PSC_ENETRD_CTL, 0x0400);
136 mace->maccc = maccc;
137 mp->rx_slot = 0;
139 psc_write_word(PSC_ENETRD_CMD + PSC_SET0, 0x9800);
140 psc_write_word(PSC_ENETRD_CMD + PSC_SET1, 0x9800);
144 * Reset the transmit DMA subsystem
147 static void mace_txdma_reset(struct net_device *dev)
149 struct mace_data *mp = netdev_priv(dev);
150 volatile struct mace *mace = mp->mace;
151 u8 maccc;
153 psc_write_word(PSC_ENETWR_CTL, 0x8800);
155 maccc = mace->maccc;
156 mace->maccc = maccc & ~ENXMT;
158 mp->tx_slot = mp->tx_sloti = 0;
159 mp->tx_count = N_TX_RING;
161 psc_write_word(PSC_ENETWR_CTL, 0x0400);
162 mace->maccc = maccc;
166 * Disable DMA
169 static void mace_dma_off(struct net_device *dev)
171 psc_write_word(PSC_ENETRD_CTL, 0x8800);
172 psc_write_word(PSC_ENETRD_CTL, 0x1000);
173 psc_write_word(PSC_ENETRD_CMD + PSC_SET0, 0x1100);
174 psc_write_word(PSC_ENETRD_CMD + PSC_SET1, 0x1100);
176 psc_write_word(PSC_ENETWR_CTL, 0x8800);
177 psc_write_word(PSC_ENETWR_CTL, 0x1000);
178 psc_write_word(PSC_ENETWR_CMD + PSC_SET0, 0x1100);
179 psc_write_word(PSC_ENETWR_CMD + PSC_SET1, 0x1100);
182 static const struct net_device_ops mace_netdev_ops = {
183 .ndo_open = mace_open,
184 .ndo_stop = mace_close,
185 .ndo_start_xmit = mace_xmit_start,
186 .ndo_tx_timeout = mace_tx_timeout,
187 .ndo_set_multicast_list = mace_set_multicast,
188 .ndo_set_mac_address = mace_set_address,
189 .ndo_change_mtu = eth_change_mtu,
190 .ndo_validate_addr = eth_validate_addr,
194 * Not really much of a probe. The hardware table tells us if this
195 * model of Macintrash has a MACE (AV macintoshes)
198 static int __devinit mace_probe(struct platform_device *pdev)
200 int j;
201 struct mace_data *mp;
202 unsigned char *addr;
203 struct net_device *dev;
204 unsigned char checksum = 0;
205 static int found = 0;
206 int err;
208 if (found || macintosh_config->ether_type != MAC_ETHER_MACE)
209 return -ENODEV;
211 found = 1; /* prevent 'finding' one on every device probe */
213 dev = alloc_etherdev(PRIV_BYTES);
214 if (!dev)
215 return -ENOMEM;
217 mp = netdev_priv(dev);
219 mp->device = &pdev->dev;
220 SET_NETDEV_DEV(dev, &pdev->dev);
222 dev->base_addr = (u32)MACE_BASE;
223 mp->mace = (volatile struct mace *) MACE_BASE;
225 dev->irq = IRQ_MAC_MACE;
226 mp->dma_intr = IRQ_MAC_MACE_DMA;
228 mp->chipid = mp->mace->chipid_hi << 8 | mp->mace->chipid_lo;
231 * The PROM contains 8 bytes which total 0xFF when XOR'd
232 * together. Due to the usual peculiar apple brain damage
233 * the bytes are spaced out in a strange boundary and the
234 * bits are reversed.
237 addr = (void *)MACE_PROM;
239 for (j = 0; j < 6; ++j) {
240 u8 v = bitrev8(addr[j<<4]);
241 checksum ^= v;
242 dev->dev_addr[j] = v;
244 for (; j < 8; ++j) {
245 checksum ^= bitrev8(addr[j<<4]);
248 if (checksum != 0xFF) {
249 free_netdev(dev);
250 return -ENODEV;
253 dev->netdev_ops = &mace_netdev_ops;
254 dev->watchdog_timeo = TX_TIMEOUT;
256 printk(KERN_INFO "%s: 68K MACE, hardware address %pM\n",
257 dev->name, dev->dev_addr);
259 err = register_netdev(dev);
260 if (!err)
261 return 0;
263 free_netdev(dev);
264 return err;
268 * Reset the chip.
271 static void mace_reset(struct net_device *dev)
273 struct mace_data *mp = netdev_priv(dev);
274 volatile struct mace *mb = mp->mace;
275 int i;
277 /* soft-reset the chip */
278 i = 200;
279 while (--i) {
280 mb->biucc = SWRST;
281 if (mb->biucc & SWRST) {
282 udelay(10);
283 continue;
285 break;
287 if (!i) {
288 printk(KERN_ERR "macmace: cannot reset chip!\n");
289 return;
292 mb->maccc = 0; /* turn off tx, rx */
293 mb->imr = 0xFF; /* disable all intrs for now */
294 i = mb->ir;
296 mb->biucc = XMTSP_64;
297 mb->utr = RTRD;
298 mb->fifocc = XMTFW_8 | RCVFW_64 | XMTFWU | RCVFWU;
300 mb->xmtfc = AUTO_PAD_XMIT; /* auto-pad short frames */
301 mb->rcvfc = 0;
303 /* load up the hardware address */
304 __mace_set_address(dev, dev->dev_addr);
306 /* clear the multicast filter */
307 if (mp->chipid == BROKEN_ADDRCHG_REV)
308 mb->iac = LOGADDR;
309 else {
310 mb->iac = ADDRCHG | LOGADDR;
311 while ((mb->iac & ADDRCHG) != 0)
314 for (i = 0; i < 8; ++i)
315 mb->ladrf = 0;
317 /* done changing address */
318 if (mp->chipid != BROKEN_ADDRCHG_REV)
319 mb->iac = 0;
321 mb->plscc = PORTSEL_AUI;
325 * Load the address on a mace controller.
328 static void __mace_set_address(struct net_device *dev, void *addr)
330 struct mace_data *mp = netdev_priv(dev);
331 volatile struct mace *mb = mp->mace;
332 unsigned char *p = addr;
333 int i;
335 /* load up the hardware address */
336 if (mp->chipid == BROKEN_ADDRCHG_REV)
337 mb->iac = PHYADDR;
338 else {
339 mb->iac = ADDRCHG | PHYADDR;
340 while ((mb->iac & ADDRCHG) != 0)
343 for (i = 0; i < 6; ++i)
344 mb->padr = dev->dev_addr[i] = p[i];
345 if (mp->chipid != BROKEN_ADDRCHG_REV)
346 mb->iac = 0;
349 static int mace_set_address(struct net_device *dev, void *addr)
351 struct mace_data *mp = netdev_priv(dev);
352 volatile struct mace *mb = mp->mace;
353 unsigned long flags;
354 u8 maccc;
356 local_irq_save(flags);
358 maccc = mb->maccc;
360 __mace_set_address(dev, addr);
362 mb->maccc = maccc;
364 local_irq_restore(flags);
366 return 0;
370 * Open the Macintosh MACE. Most of this is playing with the DMA
371 * engine. The ethernet chip is quite friendly.
374 static int mace_open(struct net_device *dev)
376 struct mace_data *mp = netdev_priv(dev);
377 volatile struct mace *mb = mp->mace;
379 /* reset the chip */
380 mace_reset(dev);
382 if (request_irq(dev->irq, mace_interrupt, 0, dev->name, dev)) {
383 printk(KERN_ERR "%s: can't get irq %d\n", dev->name, dev->irq);
384 return -EAGAIN;
386 if (request_irq(mp->dma_intr, mace_dma_intr, 0, dev->name, dev)) {
387 printk(KERN_ERR "%s: can't get irq %d\n", dev->name, mp->dma_intr);
388 free_irq(dev->irq, dev);
389 return -EAGAIN;
392 /* Allocate the DMA ring buffers */
394 mp->tx_ring = dma_alloc_coherent(mp->device,
395 N_TX_RING * MACE_BUFF_SIZE,
396 &mp->tx_ring_phys, GFP_KERNEL);
397 if (mp->tx_ring == NULL) {
398 printk(KERN_ERR "%s: unable to allocate DMA tx buffers\n", dev->name);
399 goto out1;
402 mp->rx_ring = dma_alloc_coherent(mp->device,
403 N_RX_RING * MACE_BUFF_SIZE,
404 &mp->rx_ring_phys, GFP_KERNEL);
405 if (mp->rx_ring == NULL) {
406 printk(KERN_ERR "%s: unable to allocate DMA rx buffers\n", dev->name);
407 goto out2;
410 mace_dma_off(dev);
412 /* Not sure what these do */
414 psc_write_word(PSC_ENETWR_CTL, 0x9000);
415 psc_write_word(PSC_ENETRD_CTL, 0x9000);
416 psc_write_word(PSC_ENETWR_CTL, 0x0400);
417 psc_write_word(PSC_ENETRD_CTL, 0x0400);
419 mace_rxdma_reset(dev);
420 mace_txdma_reset(dev);
422 /* turn it on! */
423 mb->maccc = ENXMT | ENRCV;
424 /* enable all interrupts except receive interrupts */
425 mb->imr = RCVINT;
426 return 0;
428 out2:
429 dma_free_coherent(mp->device, N_TX_RING * MACE_BUFF_SIZE,
430 mp->tx_ring, mp->tx_ring_phys);
431 out1:
432 free_irq(dev->irq, dev);
433 free_irq(mp->dma_intr, dev);
434 return -ENOMEM;
438 * Shut down the mace and its interrupt channel
441 static int mace_close(struct net_device *dev)
443 struct mace_data *mp = netdev_priv(dev);
444 volatile struct mace *mb = mp->mace;
446 mb->maccc = 0; /* disable rx and tx */
447 mb->imr = 0xFF; /* disable all irqs */
448 mace_dma_off(dev); /* disable rx and tx dma */
450 return 0;
454 * Transmit a frame
457 static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev)
459 struct mace_data *mp = netdev_priv(dev);
460 unsigned long flags;
462 /* Stop the queue since there's only the one buffer */
464 local_irq_save(flags);
465 netif_stop_queue(dev);
466 if (!mp->tx_count) {
467 printk(KERN_ERR "macmace: tx queue running but no free buffers.\n");
468 local_irq_restore(flags);
469 return NETDEV_TX_BUSY;
471 mp->tx_count--;
472 local_irq_restore(flags);
474 dev->stats.tx_packets++;
475 dev->stats.tx_bytes += skb->len;
477 /* We need to copy into our xmit buffer to take care of alignment and caching issues */
478 skb_copy_from_linear_data(skb, mp->tx_ring, skb->len);
480 /* load the Tx DMA and fire it off */
482 psc_write_long(PSC_ENETWR_ADDR + mp->tx_slot, (u32) mp->tx_ring_phys);
483 psc_write_long(PSC_ENETWR_LEN + mp->tx_slot, skb->len);
484 psc_write_word(PSC_ENETWR_CMD + mp->tx_slot, 0x9800);
486 mp->tx_slot ^= 0x10;
488 dev_kfree_skb(skb);
490 return NETDEV_TX_OK;
493 static void mace_set_multicast(struct net_device *dev)
495 struct mace_data *mp = netdev_priv(dev);
496 volatile struct mace *mb = mp->mace;
497 int i;
498 u32 crc;
499 u8 maccc;
500 unsigned long flags;
502 local_irq_save(flags);
503 maccc = mb->maccc;
504 mb->maccc &= ~PROM;
506 if (dev->flags & IFF_PROMISC) {
507 mb->maccc |= PROM;
508 } else {
509 unsigned char multicast_filter[8];
510 struct netdev_hw_addr *ha;
512 if (dev->flags & IFF_ALLMULTI) {
513 for (i = 0; i < 8; i++) {
514 multicast_filter[i] = 0xFF;
516 } else {
517 for (i = 0; i < 8; i++)
518 multicast_filter[i] = 0;
519 netdev_for_each_mc_addr(ha, dev) {
520 crc = ether_crc_le(6, ha->addr);
521 /* bit number in multicast_filter */
522 i = crc >> 26;
523 multicast_filter[i >> 3] |= 1 << (i & 7);
527 if (mp->chipid == BROKEN_ADDRCHG_REV)
528 mb->iac = LOGADDR;
529 else {
530 mb->iac = ADDRCHG | LOGADDR;
531 while ((mb->iac & ADDRCHG) != 0)
534 for (i = 0; i < 8; ++i)
535 mb->ladrf = multicast_filter[i];
536 if (mp->chipid != BROKEN_ADDRCHG_REV)
537 mb->iac = 0;
540 mb->maccc = maccc;
541 local_irq_restore(flags);
544 static void mace_handle_misc_intrs(struct net_device *dev, int intr)
546 struct mace_data *mp = netdev_priv(dev);
547 volatile struct mace *mb = mp->mace;
548 static int mace_babbles, mace_jabbers;
550 if (intr & MPCO)
551 dev->stats.rx_missed_errors += 256;
552 dev->stats.rx_missed_errors += mb->mpc; /* reading clears it */
553 if (intr & RNTPCO)
554 dev->stats.rx_length_errors += 256;
555 dev->stats.rx_length_errors += mb->rntpc; /* reading clears it */
556 if (intr & CERR)
557 ++dev->stats.tx_heartbeat_errors;
558 if (intr & BABBLE)
559 if (mace_babbles++ < 4)
560 printk(KERN_DEBUG "macmace: babbling transmitter\n");
561 if (intr & JABBER)
562 if (mace_jabbers++ < 4)
563 printk(KERN_DEBUG "macmace: jabbering transceiver\n");
566 static irqreturn_t mace_interrupt(int irq, void *dev_id)
568 struct net_device *dev = (struct net_device *) dev_id;
569 struct mace_data *mp = netdev_priv(dev);
570 volatile struct mace *mb = mp->mace;
571 int intr, fs;
572 unsigned long flags;
574 /* don't want the dma interrupt handler to fire */
575 local_irq_save(flags);
577 intr = mb->ir; /* read interrupt register */
578 mace_handle_misc_intrs(dev, intr);
580 if (intr & XMTINT) {
581 fs = mb->xmtfs;
582 if ((fs & XMTSV) == 0) {
583 printk(KERN_ERR "macmace: xmtfs not valid! (fs=%x)\n", fs);
584 mace_reset(dev);
586 /* dma should have finished */
587 if (!mp->tx_count) {
588 printk(KERN_DEBUG "macmace: tx ring ran out? (fs=%x)\n", fs);
590 /* Update stats */
591 if (fs & (UFLO|LCOL|LCAR|RTRY)) {
592 ++dev->stats.tx_errors;
593 if (fs & LCAR)
594 ++dev->stats.tx_carrier_errors;
595 else if (fs & (UFLO|LCOL|RTRY)) {
596 ++dev->stats.tx_aborted_errors;
597 if (mb->xmtfs & UFLO) {
598 printk(KERN_ERR "%s: DMA underrun.\n", dev->name);
599 dev->stats.tx_fifo_errors++;
600 mace_txdma_reset(dev);
606 if (mp->tx_count)
607 netif_wake_queue(dev);
609 local_irq_restore(flags);
611 return IRQ_HANDLED;
614 static void mace_tx_timeout(struct net_device *dev)
616 struct mace_data *mp = netdev_priv(dev);
617 volatile struct mace *mb = mp->mace;
618 unsigned long flags;
620 local_irq_save(flags);
622 /* turn off both tx and rx and reset the chip */
623 mb->maccc = 0;
624 printk(KERN_ERR "macmace: transmit timeout - resetting\n");
625 mace_txdma_reset(dev);
626 mace_reset(dev);
628 /* restart rx dma */
629 mace_rxdma_reset(dev);
631 mp->tx_count = N_TX_RING;
632 netif_wake_queue(dev);
634 /* turn it on! */
635 mb->maccc = ENXMT | ENRCV;
636 /* enable all interrupts except receive interrupts */
637 mb->imr = RCVINT;
639 local_irq_restore(flags);
643 * Handle a newly arrived frame
646 static void mace_dma_rx_frame(struct net_device *dev, struct mace_frame *mf)
648 struct sk_buff *skb;
649 unsigned int frame_status = mf->rcvsts;
651 if (frame_status & (RS_OFLO | RS_CLSN | RS_FRAMERR | RS_FCSERR)) {
652 dev->stats.rx_errors++;
653 if (frame_status & RS_OFLO) {
654 printk(KERN_DEBUG "%s: fifo overflow.\n", dev->name);
655 dev->stats.rx_fifo_errors++;
657 if (frame_status & RS_CLSN)
658 dev->stats.collisions++;
659 if (frame_status & RS_FRAMERR)
660 dev->stats.rx_frame_errors++;
661 if (frame_status & RS_FCSERR)
662 dev->stats.rx_crc_errors++;
663 } else {
664 unsigned int frame_length = mf->rcvcnt + ((frame_status & 0x0F) << 8 );
666 skb = dev_alloc_skb(frame_length + 2);
667 if (!skb) {
668 dev->stats.rx_dropped++;
669 return;
671 skb_reserve(skb, 2);
672 memcpy(skb_put(skb, frame_length), mf->data, frame_length);
674 skb->protocol = eth_type_trans(skb, dev);
675 netif_rx(skb);
676 dev->stats.rx_packets++;
677 dev->stats.rx_bytes += frame_length;
682 * The PSC has passed us a DMA interrupt event.
685 static irqreturn_t mace_dma_intr(int irq, void *dev_id)
687 struct net_device *dev = (struct net_device *) dev_id;
688 struct mace_data *mp = netdev_priv(dev);
689 int left, head;
690 u16 status;
691 u32 baka;
693 /* Not sure what this does */
695 while ((baka = psc_read_long(PSC_MYSTERY)) != psc_read_long(PSC_MYSTERY));
696 if (!(baka & 0x60000000)) return IRQ_NONE;
699 * Process the read queue
702 status = psc_read_word(PSC_ENETRD_CTL);
704 if (status & 0x2000) {
705 mace_rxdma_reset(dev);
706 } else if (status & 0x0100) {
707 psc_write_word(PSC_ENETRD_CMD + mp->rx_slot, 0x1100);
709 left = psc_read_long(PSC_ENETRD_LEN + mp->rx_slot);
710 head = N_RX_RING - left;
712 /* Loop through the ring buffer and process new packages */
714 while (mp->rx_tail < head) {
715 mace_dma_rx_frame(dev, (struct mace_frame*) (mp->rx_ring
716 + (mp->rx_tail * MACE_BUFF_SIZE)));
717 mp->rx_tail++;
720 /* If we're out of buffers in this ring then switch to */
721 /* the other set, otherwise just reactivate this one. */
723 if (!left) {
724 mace_load_rxdma_base(dev, mp->rx_slot);
725 mp->rx_slot ^= 0x10;
726 } else {
727 psc_write_word(PSC_ENETRD_CMD + mp->rx_slot, 0x9800);
732 * Process the write queue
735 status = psc_read_word(PSC_ENETWR_CTL);
737 if (status & 0x2000) {
738 mace_txdma_reset(dev);
739 } else if (status & 0x0100) {
740 psc_write_word(PSC_ENETWR_CMD + mp->tx_sloti, 0x0100);
741 mp->tx_sloti ^= 0x10;
742 mp->tx_count++;
744 return IRQ_HANDLED;
747 MODULE_LICENSE("GPL");
748 MODULE_DESCRIPTION("Macintosh MACE ethernet driver");
749 MODULE_ALIAS("platform:macmace");
751 static int __devexit mac_mace_device_remove (struct platform_device *pdev)
753 struct net_device *dev = platform_get_drvdata(pdev);
754 struct mace_data *mp = netdev_priv(dev);
756 unregister_netdev(dev);
758 free_irq(dev->irq, dev);
759 free_irq(IRQ_MAC_MACE_DMA, dev);
761 dma_free_coherent(mp->device, N_RX_RING * MACE_BUFF_SIZE,
762 mp->rx_ring, mp->rx_ring_phys);
763 dma_free_coherent(mp->device, N_TX_RING * MACE_BUFF_SIZE,
764 mp->tx_ring, mp->tx_ring_phys);
766 free_netdev(dev);
768 return 0;
771 static struct platform_driver mac_mace_driver = {
772 .probe = mace_probe,
773 .remove = __devexit_p(mac_mace_device_remove),
774 .driver = {
775 .name = mac_mace_string,
776 .owner = THIS_MODULE,
780 static int __init mac_mace_init_module(void)
782 if (!MACH_IS_MAC)
783 return -ENODEV;
785 return platform_driver_register(&mac_mace_driver);
788 static void __exit mac_mace_cleanup_module(void)
790 platform_driver_unregister(&mac_mace_driver);
793 module_init(mac_mace_init_module);
794 module_exit(mac_mace_cleanup_module);