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