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