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