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