]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/macmace.c
xps: Transmit Packet Steering
[net-next-2.6.git] / drivers / net / macmace.c
CommitLineData
1da177e4
LT
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.
5 *
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.
10 *
11 * Copyright (C) 1996 Paul Mackerras.
113aa838 12 * Copyright (C) 1998 Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
13 *
14 * Modified heavily by Joshua M. Thompson based on Dave Huang's NetBSD driver
8b6aaab8
FT
15 *
16 * Copyright (C) 2007 Finn Thain
17 *
18 * Converted to DMA API, converted to unified driver model,
19 * sync'd some routines with mace.c and fixed various bugs.
1da177e4
LT
20 */
21
22
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>
bc63eb9c 30#include <linux/bitrev.h>
8b6aaab8
FT
31#include <linux/dma-mapping.h>
32#include <linux/platform_device.h>
5a0e3ad6 33#include <linux/gfp.h>
1da177e4 34#include <asm/io.h>
1da177e4
LT
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"
41
8b6aaab8 42static char mac_mace_string[] = "macmace";
8b6aaab8
FT
43
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)
48
1da177e4
LT
49#define TX_TIMEOUT HZ
50
8b6aaab8
FT
51#define MACE_BUFF_SIZE 0x800
52
53/* Chip rev needs workaround on HW & multicast addr change */
54#define BROKEN_ADDRCHG_REV 0x0941
1da177e4
LT
55
56/* The MACE is simply wired down on a Mac68K box */
57
58#define MACE_BASE (void *)(0x50F1C000)
59#define MACE_PROM (void *)(0x50F08001)
60
61struct mace_data {
62 volatile struct mace *mace;
8b6aaab8
FT
63 unsigned char *tx_ring;
64 dma_addr_t tx_ring_phys;
65 unsigned char *rx_ring;
66 dma_addr_t rx_ring_phys;
1da177e4 67 int dma_intr;
1da177e4
LT
68 int rx_slot, rx_tail;
69 int tx_slot, tx_sloti, tx_count;
8b6aaab8
FT
70 int chipid;
71 struct device *device;
1da177e4
LT
72};
73
74struct mace_frame {
8b6aaab8
FT
75 u8 rcvcnt;
76 u8 pad1;
77 u8 rcvsts;
78 u8 pad2;
79 u8 rntpc;
80 u8 pad3;
81 u8 rcvcc;
82 u8 pad4;
83 u32 pad5;
84 u32 pad6;
6aa20a22 85 u8 data[1];
1da177e4
LT
86 /* And frame continues.. */
87};
88
89#define PRIV_BYTES sizeof(struct mace_data)
90
1da177e4
LT
91static int mace_open(struct net_device *dev);
92static int mace_close(struct net_device *dev);
93static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev);
1da177e4
LT
94static void mace_set_multicast(struct net_device *dev);
95static int mace_set_address(struct net_device *dev, void *addr);
8b6aaab8 96static void mace_reset(struct net_device *dev);
7d12e780
DH
97static irqreturn_t mace_interrupt(int irq, void *dev_id);
98static irqreturn_t mace_dma_intr(int irq, void *dev_id);
1da177e4 99static void mace_tx_timeout(struct net_device *dev);
8b6aaab8 100static void __mace_set_address(struct net_device *dev, void *addr);
1da177e4 101
1da177e4
LT
102/*
103 * Load a receive DMA channel with a base address and ring length
104 */
105
106static void mace_load_rxdma_base(struct net_device *dev, int set)
107{
8b6aaab8 108 struct mace_data *mp = netdev_priv(dev);
1da177e4
LT
109
110 psc_write_word(PSC_ENETRD_CMD + set, 0x0100);
111 psc_write_long(PSC_ENETRD_ADDR + set, (u32) mp->rx_ring_phys);
112 psc_write_long(PSC_ENETRD_LEN + set, N_RX_RING);
113 psc_write_word(PSC_ENETRD_CMD + set, 0x9800);
114 mp->rx_tail = 0;
115}
116
117/*
118 * Reset the receive DMA subsystem
119 */
120
121static void mace_rxdma_reset(struct net_device *dev)
122{
8b6aaab8 123 struct mace_data *mp = netdev_priv(dev);
1da177e4
LT
124 volatile struct mace *mace = mp->mace;
125 u8 maccc = mace->maccc;
6aa20a22 126
1da177e4 127 mace->maccc = maccc & ~ENRCV;
6aa20a22 128
1da177e4
LT
129 psc_write_word(PSC_ENETRD_CTL, 0x8800);
130 mace_load_rxdma_base(dev, 0x00);
131 psc_write_word(PSC_ENETRD_CTL, 0x0400);
6aa20a22 132
1da177e4
LT
133 psc_write_word(PSC_ENETRD_CTL, 0x8800);
134 mace_load_rxdma_base(dev, 0x10);
135 psc_write_word(PSC_ENETRD_CTL, 0x0400);
6aa20a22 136
1da177e4
LT
137 mace->maccc = maccc;
138 mp->rx_slot = 0;
139
140 psc_write_word(PSC_ENETRD_CMD + PSC_SET0, 0x9800);
141 psc_write_word(PSC_ENETRD_CMD + PSC_SET1, 0x9800);
142}
143
144/*
145 * Reset the transmit DMA subsystem
146 */
6aa20a22 147
1da177e4
LT
148static void mace_txdma_reset(struct net_device *dev)
149{
8b6aaab8 150 struct mace_data *mp = netdev_priv(dev);
1da177e4
LT
151 volatile struct mace *mace = mp->mace;
152 u8 maccc;
153
154 psc_write_word(PSC_ENETWR_CTL, 0x8800);
155
156 maccc = mace->maccc;
157 mace->maccc = maccc & ~ENXMT;
158
159 mp->tx_slot = mp->tx_sloti = 0;
160 mp->tx_count = N_TX_RING;
161
162 psc_write_word(PSC_ENETWR_CTL, 0x0400);
163 mace->maccc = maccc;
164}
165
166/*
167 * Disable DMA
168 */
6aa20a22 169
1da177e4
LT
170static void mace_dma_off(struct net_device *dev)
171{
172 psc_write_word(PSC_ENETRD_CTL, 0x8800);
173 psc_write_word(PSC_ENETRD_CTL, 0x1000);
174 psc_write_word(PSC_ENETRD_CMD + PSC_SET0, 0x1100);
175 psc_write_word(PSC_ENETRD_CMD + PSC_SET1, 0x1100);
176
177 psc_write_word(PSC_ENETWR_CTL, 0x8800);
178 psc_write_word(PSC_ENETWR_CTL, 0x1000);
179 psc_write_word(PSC_ENETWR_CMD + PSC_SET0, 0x1100);
180 psc_write_word(PSC_ENETWR_CMD + PSC_SET1, 0x1100);
181}
182
0d3936a8
AB
183static const struct net_device_ops mace_netdev_ops = {
184 .ndo_open = mace_open,
185 .ndo_stop = mace_close,
186 .ndo_start_xmit = mace_xmit_start,
187 .ndo_tx_timeout = mace_tx_timeout,
188 .ndo_set_multicast_list = mace_set_multicast,
189 .ndo_set_mac_address = mace_set_address,
190 .ndo_change_mtu = eth_change_mtu,
191 .ndo_validate_addr = eth_validate_addr,
192};
193
1da177e4
LT
194/*
195 * Not really much of a probe. The hardware table tells us if this
196 * model of Macintrash has a MACE (AV macintoshes)
197 */
6aa20a22 198
8b6aaab8 199static int __devinit mace_probe(struct platform_device *pdev)
1da177e4
LT
200{
201 int j;
202 struct mace_data *mp;
203 unsigned char *addr;
204 struct net_device *dev;
205 unsigned char checksum = 0;
206 static int found = 0;
207 int err;
6aa20a22 208
1da177e4 209 if (found || macintosh_config->ether_type != MAC_ETHER_MACE)
8b6aaab8 210 return -ENODEV;
1da177e4
LT
211
212 found = 1; /* prevent 'finding' one on every device probe */
213
214 dev = alloc_etherdev(PRIV_BYTES);
215 if (!dev)
8b6aaab8 216 return -ENOMEM;
1da177e4 217
8b6aaab8
FT
218 mp = netdev_priv(dev);
219
220 mp->device = &pdev->dev;
221 SET_NETDEV_DEV(dev, &pdev->dev);
1da177e4 222
1da177e4
LT
223 dev->base_addr = (u32)MACE_BASE;
224 mp->mace = (volatile struct mace *) MACE_BASE;
6aa20a22 225
1da177e4
LT
226 dev->irq = IRQ_MAC_MACE;
227 mp->dma_intr = IRQ_MAC_MACE_DMA;
228
8b6aaab8
FT
229 mp->chipid = mp->mace->chipid_hi << 8 | mp->mace->chipid_lo;
230
1da177e4
LT
231 /*
232 * The PROM contains 8 bytes which total 0xFF when XOR'd
233 * together. Due to the usual peculiar apple brain damage
234 * the bytes are spaced out in a strange boundary and the
235 * bits are reversed.
236 */
237
238 addr = (void *)MACE_PROM;
6aa20a22 239
1da177e4 240 for (j = 0; j < 6; ++j) {
bc63eb9c 241 u8 v = bitrev8(addr[j<<4]);
1da177e4
LT
242 checksum ^= v;
243 dev->dev_addr[j] = v;
244 }
245 for (; j < 8; ++j) {
bc63eb9c 246 checksum ^= bitrev8(addr[j<<4]);
1da177e4 247 }
6aa20a22 248
1da177e4
LT
249 if (checksum != 0xFF) {
250 free_netdev(dev);
8b6aaab8 251 return -ENODEV;
1da177e4
LT
252 }
253
0d3936a8 254 dev->netdev_ops = &mace_netdev_ops;
1da177e4 255 dev->watchdog_timeo = TX_TIMEOUT;
1da177e4 256
e174961c
JB
257 printk(KERN_INFO "%s: 68K MACE, hardware address %pM\n",
258 dev->name, dev->dev_addr);
1da177e4
LT
259
260 err = register_netdev(dev);
261 if (!err)
8b6aaab8 262 return 0;
1da177e4
LT
263
264 free_netdev(dev);
8b6aaab8
FT
265 return err;
266}
267
268/*
269 * Reset the chip.
270 */
271
272static void mace_reset(struct net_device *dev)
273{
274 struct mace_data *mp = netdev_priv(dev);
275 volatile struct mace *mb = mp->mace;
276 int i;
277
278 /* soft-reset the chip */
279 i = 200;
280 while (--i) {
281 mb->biucc = SWRST;
282 if (mb->biucc & SWRST) {
283 udelay(10);
284 continue;
285 }
286 break;
287 }
288 if (!i) {
289 printk(KERN_ERR "macmace: cannot reset chip!\n");
290 return;
291 }
292
293 mb->maccc = 0; /* turn off tx, rx */
294 mb->imr = 0xFF; /* disable all intrs for now */
295 i = mb->ir;
296
297 mb->biucc = XMTSP_64;
298 mb->utr = RTRD;
299 mb->fifocc = XMTFW_8 | RCVFW_64 | XMTFWU | RCVFWU;
300
301 mb->xmtfc = AUTO_PAD_XMIT; /* auto-pad short frames */
302 mb->rcvfc = 0;
303
304 /* load up the hardware address */
305 __mace_set_address(dev, dev->dev_addr);
306
307 /* clear the multicast filter */
308 if (mp->chipid == BROKEN_ADDRCHG_REV)
309 mb->iac = LOGADDR;
310 else {
311 mb->iac = ADDRCHG | LOGADDR;
312 while ((mb->iac & ADDRCHG) != 0)
313 ;
314 }
315 for (i = 0; i < 8; ++i)
316 mb->ladrf = 0;
317
318 /* done changing address */
319 if (mp->chipid != BROKEN_ADDRCHG_REV)
320 mb->iac = 0;
321
322 mb->plscc = PORTSEL_AUI;
1da177e4
LT
323}
324
325/*
326 * Load the address on a mace controller.
327 */
328
8b6aaab8 329static void __mace_set_address(struct net_device *dev, void *addr)
1da177e4 330{
8b6aaab8 331 struct mace_data *mp = netdev_priv(dev);
1da177e4 332 volatile struct mace *mb = mp->mace;
8b6aaab8 333 unsigned char *p = addr;
1da177e4 334 int i;
8b6aaab8
FT
335
336 /* load up the hardware address */
337 if (mp->chipid == BROKEN_ADDRCHG_REV)
338 mb->iac = PHYADDR;
339 else {
340 mb->iac = ADDRCHG | PHYADDR;
341 while ((mb->iac & ADDRCHG) != 0)
342 ;
343 }
344 for (i = 0; i < 6; ++i)
345 mb->padr = dev->dev_addr[i] = p[i];
346 if (mp->chipid != BROKEN_ADDRCHG_REV)
347 mb->iac = 0;
348}
349
350static int mace_set_address(struct net_device *dev, void *addr)
351{
352 struct mace_data *mp = netdev_priv(dev);
353 volatile struct mace *mb = mp->mace;
1da177e4
LT
354 unsigned long flags;
355 u8 maccc;
356
357 local_irq_save(flags);
358
359 maccc = mb->maccc;
360
8b6aaab8 361 __mace_set_address(dev, addr);
1da177e4
LT
362
363 mb->maccc = maccc;
8b6aaab8 364
1da177e4
LT
365 local_irq_restore(flags);
366
367 return 0;
368}
369
370/*
371 * Open the Macintosh MACE. Most of this is playing with the DMA
372 * engine. The ethernet chip is quite friendly.
373 */
6aa20a22 374
1da177e4
LT
375static int mace_open(struct net_device *dev)
376{
8b6aaab8 377 struct mace_data *mp = netdev_priv(dev);
1da177e4 378 volatile struct mace *mb = mp->mace;
1da177e4 379
8b6aaab8
FT
380 /* reset the chip */
381 mace_reset(dev);
1da177e4
LT
382
383 if (request_irq(dev->irq, mace_interrupt, 0, dev->name, dev)) {
384 printk(KERN_ERR "%s: can't get irq %d\n", dev->name, dev->irq);
385 return -EAGAIN;
386 }
387 if (request_irq(mp->dma_intr, mace_dma_intr, 0, dev->name, dev)) {
388 printk(KERN_ERR "%s: can't get irq %d\n", dev->name, mp->dma_intr);
389 free_irq(dev->irq, dev);
390 return -EAGAIN;
391 }
392
393 /* Allocate the DMA ring buffers */
394
8b6aaab8
FT
395 mp->tx_ring = dma_alloc_coherent(mp->device,
396 N_TX_RING * MACE_BUFF_SIZE,
397 &mp->tx_ring_phys, GFP_KERNEL);
398 if (mp->tx_ring == NULL) {
399 printk(KERN_ERR "%s: unable to allocate DMA tx buffers\n", dev->name);
400 goto out1;
1da177e4
LT
401 }
402
8b6aaab8
FT
403 mp->rx_ring = dma_alloc_coherent(mp->device,
404 N_RX_RING * MACE_BUFF_SIZE,
405 &mp->rx_ring_phys, GFP_KERNEL);
406 if (mp->rx_ring == NULL) {
407 printk(KERN_ERR "%s: unable to allocate DMA rx buffers\n", dev->name);
408 goto out2;
409 }
1da177e4
LT
410
411 mace_dma_off(dev);
412
413 /* Not sure what these do */
414
415 psc_write_word(PSC_ENETWR_CTL, 0x9000);
416 psc_write_word(PSC_ENETRD_CTL, 0x9000);
417 psc_write_word(PSC_ENETWR_CTL, 0x0400);
418 psc_write_word(PSC_ENETRD_CTL, 0x0400);
419
1da177e4
LT
420 mace_rxdma_reset(dev);
421 mace_txdma_reset(dev);
6aa20a22 422
8b6aaab8
FT
423 /* turn it on! */
424 mb->maccc = ENXMT | ENRCV;
425 /* enable all interrupts except receive interrupts */
426 mb->imr = RCVINT;
1da177e4 427 return 0;
8b6aaab8
FT
428
429out2:
430 dma_free_coherent(mp->device, N_TX_RING * MACE_BUFF_SIZE,
431 mp->tx_ring, mp->tx_ring_phys);
432out1:
433 free_irq(dev->irq, dev);
434 free_irq(mp->dma_intr, dev);
435 return -ENOMEM;
1da177e4
LT
436}
437
438/*
439 * Shut down the mace and its interrupt channel
440 */
6aa20a22 441
1da177e4
LT
442static int mace_close(struct net_device *dev)
443{
8b6aaab8 444 struct mace_data *mp = netdev_priv(dev);
1da177e4
LT
445 volatile struct mace *mb = mp->mace;
446
447 mb->maccc = 0; /* disable rx and tx */
448 mb->imr = 0xFF; /* disable all irqs */
449 mace_dma_off(dev); /* disable rx and tx dma */
450
1da177e4
LT
451 return 0;
452}
453
454/*
455 * Transmit a frame
456 */
6aa20a22 457
1da177e4
LT
458static int mace_xmit_start(struct sk_buff *skb, struct net_device *dev)
459{
8b6aaab8
FT
460 struct mace_data *mp = netdev_priv(dev);
461 unsigned long flags;
1da177e4 462
8b6aaab8 463 /* Stop the queue since there's only the one buffer */
1da177e4 464
8b6aaab8
FT
465 local_irq_save(flags);
466 netif_stop_queue(dev);
1da177e4 467 if (!mp->tx_count) {
8b6aaab8
FT
468 printk(KERN_ERR "macmace: tx queue running but no free buffers.\n");
469 local_irq_restore(flags);
470 return NETDEV_TX_BUSY;
1da177e4
LT
471 }
472 mp->tx_count--;
8b6aaab8 473 local_irq_restore(flags);
6aa20a22 474
09f75cd7
JG
475 dev->stats.tx_packets++;
476 dev->stats.tx_bytes += skb->len;
1da177e4
LT
477
478 /* We need to copy into our xmit buffer to take care of alignment and caching issues */
d626f62b 479 skb_copy_from_linear_data(skb, mp->tx_ring, skb->len);
1da177e4
LT
480
481 /* load the Tx DMA and fire it off */
482
483 psc_write_long(PSC_ENETWR_ADDR + mp->tx_slot, (u32) mp->tx_ring_phys);
484 psc_write_long(PSC_ENETWR_LEN + mp->tx_slot, skb->len);
485 psc_write_word(PSC_ENETWR_CMD + mp->tx_slot, 0x9800);
486
487 mp->tx_slot ^= 0x10;
488
489 dev_kfree_skb(skb);
490
8b6aaab8 491 return NETDEV_TX_OK;
1da177e4
LT
492}
493
1da177e4
LT
494static void mace_set_multicast(struct net_device *dev)
495{
8b6aaab8 496 struct mace_data *mp = netdev_priv(dev);
1da177e4 497 volatile struct mace *mb = mp->mace;
f9dcbcc9 498 int i;
1da177e4
LT
499 u32 crc;
500 u8 maccc;
8b6aaab8 501 unsigned long flags;
1da177e4 502
8b6aaab8 503 local_irq_save(flags);
1da177e4
LT
504 maccc = mb->maccc;
505 mb->maccc &= ~PROM;
506
507 if (dev->flags & IFF_PROMISC) {
508 mb->maccc |= PROM;
509 } else {
510 unsigned char multicast_filter[8];
22bedad3 511 struct netdev_hw_addr *ha;
1da177e4
LT
512
513 if (dev->flags & IFF_ALLMULTI) {
514 for (i = 0; i < 8; i++) {
515 multicast_filter[i] = 0xFF;
516 }
517 } else {
518 for (i = 0; i < 8; i++)
519 multicast_filter[i] = 0;
22bedad3
JP
520 netdev_for_each_mc_addr(ha, dev) {
521 crc = ether_crc_le(6, ha->addr);
f9dcbcc9
JP
522 /* bit number in multicast_filter */
523 i = crc >> 26;
524 multicast_filter[i >> 3] |= 1 << (i & 7);
1da177e4
LT
525 }
526 }
527
8b6aaab8
FT
528 if (mp->chipid == BROKEN_ADDRCHG_REV)
529 mb->iac = LOGADDR;
530 else {
531 mb->iac = ADDRCHG | LOGADDR;
532 while ((mb->iac & ADDRCHG) != 0)
533 ;
1da177e4 534 }
8b6aaab8
FT
535 for (i = 0; i < 8; ++i)
536 mb->ladrf = multicast_filter[i];
537 if (mp->chipid != BROKEN_ADDRCHG_REV)
538 mb->iac = 0;
1da177e4
LT
539 }
540
541 mb->maccc = maccc;
8b6aaab8 542 local_irq_restore(flags);
1da177e4
LT
543}
544
3649ba00 545static void mace_handle_misc_intrs(struct net_device *dev, int intr)
1da177e4 546{
3649ba00 547 struct mace_data *mp = netdev_priv(dev);
1da177e4
LT
548 volatile struct mace *mb = mp->mace;
549 static int mace_babbles, mace_jabbers;
550
8b6aaab8 551 if (intr & MPCO)
09f75cd7
JG
552 dev->stats.rx_missed_errors += 256;
553 dev->stats.rx_missed_errors += mb->mpc; /* reading clears it */
8b6aaab8 554 if (intr & RNTPCO)
09f75cd7
JG
555 dev->stats.rx_length_errors += 256;
556 dev->stats.rx_length_errors += mb->rntpc; /* reading clears it */
8b6aaab8 557 if (intr & CERR)
09f75cd7 558 ++dev->stats.tx_heartbeat_errors;
8b6aaab8
FT
559 if (intr & BABBLE)
560 if (mace_babbles++ < 4)
561 printk(KERN_DEBUG "macmace: babbling transmitter\n");
562 if (intr & JABBER)
563 if (mace_jabbers++ < 4)
564 printk(KERN_DEBUG "macmace: jabbering transceiver\n");
1da177e4
LT
565}
566
8b6aaab8 567static irqreturn_t mace_interrupt(int irq, void *dev_id)
1da177e4 568{
8b6aaab8
FT
569 struct net_device *dev = (struct net_device *) dev_id;
570 struct mace_data *mp = netdev_priv(dev);
1da177e4 571 volatile struct mace *mb = mp->mace;
8b6aaab8 572 int intr, fs;
099575b6 573 unsigned long flags;
6aa20a22 574
8b6aaab8
FT
575 /* don't want the dma interrupt handler to fire */
576 local_irq_save(flags);
6aa20a22 577
8b6aaab8 578 intr = mb->ir; /* read interrupt register */
3649ba00 579 mace_handle_misc_intrs(dev, intr);
8b6aaab8
FT
580
581 if (intr & XMTINT) {
582 fs = mb->xmtfs;
583 if ((fs & XMTSV) == 0) {
584 printk(KERN_ERR "macmace: xmtfs not valid! (fs=%x)\n", fs);
585 mace_reset(dev);
586 /*
587 * XXX mace likes to hang the machine after a xmtfs error.
588 * This is hard to reproduce, reseting *may* help
589 */
1da177e4 590 }
8b6aaab8
FT
591 /* dma should have finished */
592 if (!mp->tx_count) {
593 printk(KERN_DEBUG "macmace: tx ring ran out? (fs=%x)\n", fs);
594 }
595 /* Update stats */
596 if (fs & (UFLO|LCOL|LCAR|RTRY)) {
09f75cd7 597 ++dev->stats.tx_errors;
8b6aaab8 598 if (fs & LCAR)
09f75cd7 599 ++dev->stats.tx_carrier_errors;
8b6aaab8 600 else if (fs & (UFLO|LCOL|RTRY)) {
09f75cd7 601 ++dev->stats.tx_aborted_errors;
8b6aaab8
FT
602 if (mb->xmtfs & UFLO) {
603 printk(KERN_ERR "%s: DMA underrun.\n", dev->name);
09f75cd7 604 dev->stats.tx_fifo_errors++;
8b6aaab8
FT
605 mace_txdma_reset(dev);
606 }
607 }
1da177e4 608 }
6aa20a22 609 }
1da177e4 610
8b6aaab8
FT
611 if (mp->tx_count)
612 netif_wake_queue(dev);
6aa20a22 613
8b6aaab8 614 local_irq_restore(flags);
1da177e4 615
8b6aaab8
FT
616 return IRQ_HANDLED;
617}
6aa20a22 618
8b6aaab8 619static void mace_tx_timeout(struct net_device *dev)
1da177e4 620{
8b6aaab8 621 struct mace_data *mp = netdev_priv(dev);
1da177e4 622 volatile struct mace *mb = mp->mace;
8b6aaab8 623 unsigned long flags;
6aa20a22 624
8b6aaab8 625 local_irq_save(flags);
6aa20a22 626
8b6aaab8
FT
627 /* turn off both tx and rx and reset the chip */
628 mb->maccc = 0;
629 printk(KERN_ERR "macmace: transmit timeout - resetting\n");
630 mace_txdma_reset(dev);
631 mace_reset(dev);
1da177e4 632
8b6aaab8
FT
633 /* restart rx dma */
634 mace_rxdma_reset(dev);
635
636 mp->tx_count = N_TX_RING;
637 netif_wake_queue(dev);
638
639 /* turn it on! */
640 mb->maccc = ENXMT | ENRCV;
641 /* enable all interrupts except receive interrupts */
642 mb->imr = RCVINT;
643
644 local_irq_restore(flags);
1da177e4
LT
645}
646
647/*
648 * Handle a newly arrived frame
649 */
6aa20a22 650
1da177e4
LT
651static void mace_dma_rx_frame(struct net_device *dev, struct mace_frame *mf)
652{
1da177e4 653 struct sk_buff *skb;
8b6aaab8 654 unsigned int frame_status = mf->rcvsts;
1da177e4 655
8b6aaab8 656 if (frame_status & (RS_OFLO | RS_CLSN | RS_FRAMERR | RS_FCSERR)) {
09f75cd7 657 dev->stats.rx_errors++;
8b6aaab8
FT
658 if (frame_status & RS_OFLO) {
659 printk(KERN_DEBUG "%s: fifo overflow.\n", dev->name);
09f75cd7 660 dev->stats.rx_fifo_errors++;
8b6aaab8
FT
661 }
662 if (frame_status & RS_CLSN)
09f75cd7 663 dev->stats.collisions++;
8b6aaab8 664 if (frame_status & RS_FRAMERR)
09f75cd7 665 dev->stats.rx_frame_errors++;
8b6aaab8 666 if (frame_status & RS_FCSERR)
09f75cd7 667 dev->stats.rx_crc_errors++;
8b6aaab8
FT
668 } else {
669 unsigned int frame_length = mf->rcvcnt + ((frame_status & 0x0F) << 8 );
6aa20a22 670
8b6aaab8
FT
671 skb = dev_alloc_skb(frame_length + 2);
672 if (!skb) {
09f75cd7 673 dev->stats.rx_dropped++;
8b6aaab8
FT
674 return;
675 }
676 skb_reserve(skb, 2);
677 memcpy(skb_put(skb, frame_length), mf->data, frame_length);
678
679 skb->protocol = eth_type_trans(skb, dev);
680 netif_rx(skb);
09f75cd7
JG
681 dev->stats.rx_packets++;
682 dev->stats.rx_bytes += frame_length;
1da177e4 683 }
1da177e4
LT
684}
685
686/*
687 * The PSC has passed us a DMA interrupt event.
688 */
6aa20a22 689
7d12e780 690static irqreturn_t mace_dma_intr(int irq, void *dev_id)
1da177e4
LT
691{
692 struct net_device *dev = (struct net_device *) dev_id;
8b6aaab8 693 struct mace_data *mp = netdev_priv(dev);
1da177e4
LT
694 int left, head;
695 u16 status;
696 u32 baka;
697
698 /* Not sure what this does */
699
700 while ((baka = psc_read_long(PSC_MYSTERY)) != psc_read_long(PSC_MYSTERY));
701 if (!(baka & 0x60000000)) return IRQ_NONE;
702
703 /*
704 * Process the read queue
705 */
6aa20a22 706
1da177e4 707 status = psc_read_word(PSC_ENETRD_CTL);
6aa20a22 708
1da177e4
LT
709 if (status & 0x2000) {
710 mace_rxdma_reset(dev);
711 } else if (status & 0x0100) {
712 psc_write_word(PSC_ENETRD_CMD + mp->rx_slot, 0x1100);
713
714 left = psc_read_long(PSC_ENETRD_LEN + mp->rx_slot);
715 head = N_RX_RING - left;
716
717 /* Loop through the ring buffer and process new packages */
718
719 while (mp->rx_tail < head) {
8b6aaab8
FT
720 mace_dma_rx_frame(dev, (struct mace_frame*) (mp->rx_ring
721 + (mp->rx_tail * MACE_BUFF_SIZE)));
1da177e4
LT
722 mp->rx_tail++;
723 }
6aa20a22 724
1da177e4
LT
725 /* If we're out of buffers in this ring then switch to */
726 /* the other set, otherwise just reactivate this one. */
727
728 if (!left) {
729 mace_load_rxdma_base(dev, mp->rx_slot);
730 mp->rx_slot ^= 0x10;
731 } else {
732 psc_write_word(PSC_ENETRD_CMD + mp->rx_slot, 0x9800);
733 }
734 }
6aa20a22 735
1da177e4
LT
736 /*
737 * Process the write queue
738 */
739
740 status = psc_read_word(PSC_ENETWR_CTL);
741
742 if (status & 0x2000) {
743 mace_txdma_reset(dev);
744 } else if (status & 0x0100) {
745 psc_write_word(PSC_ENETWR_CMD + mp->tx_sloti, 0x0100);
746 mp->tx_sloti ^= 0x10;
747 mp->tx_count++;
1da177e4
LT
748 }
749 return IRQ_HANDLED;
750}
751
752MODULE_LICENSE("GPL");
8b6aaab8 753MODULE_DESCRIPTION("Macintosh MACE ethernet driver");
eeb9c182 754MODULE_ALIAS("platform:macmace");
8b6aaab8
FT
755
756static int __devexit mac_mace_device_remove (struct platform_device *pdev)
757{
758 struct net_device *dev = platform_get_drvdata(pdev);
759 struct mace_data *mp = netdev_priv(dev);
760
761 unregister_netdev(dev);
762
763 free_irq(dev->irq, dev);
764 free_irq(IRQ_MAC_MACE_DMA, dev);
765
766 dma_free_coherent(mp->device, N_RX_RING * MACE_BUFF_SIZE,
767 mp->rx_ring, mp->rx_ring_phys);
768 dma_free_coherent(mp->device, N_TX_RING * MACE_BUFF_SIZE,
769 mp->tx_ring, mp->tx_ring_phys);
770
771 free_netdev(dev);
772
773 return 0;
774}
775
776static struct platform_driver mac_mace_driver = {
777 .probe = mace_probe,
778 .remove = __devexit_p(mac_mace_device_remove),
779 .driver = {
eeb9c182
FT
780 .name = mac_mace_string,
781 .owner = THIS_MODULE,
8b6aaab8
FT
782 },
783};
784
785static int __init mac_mace_init_module(void)
786{
0f734484
GU
787 if (!MACH_IS_MAC)
788 return -ENODEV;
789
eeb9c182 790 return platform_driver_register(&mac_mace_driver);
8b6aaab8
FT
791}
792
793static void __exit mac_mace_cleanup_module(void)
794{
795 platform_driver_unregister(&mac_mace_driver);
8b6aaab8
FT
796}
797
798module_init(mac_mace_init_module);
799module_exit(mac_mace_cleanup_module);