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