blob: b8394cf134e8a458ee24169d53e2da58ba142efe [file] [log] [blame]
Kumar Gala0bbaf062005-06-20 10:54:21 -05001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * drivers/net/gianfar.c
3 *
4 * Gianfar Ethernet Driver
Andy Fleming7f7f5312005-11-11 12:38:59 -06005 * This driver is designed for the non-CPM ethernet controllers
6 * on the 85xx and 83xx family of integrated processors
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Based on 8260_io/fcc_enet.c
8 *
9 * Author: Andy Fleming
Kumar Gala4c8d3d92005-11-13 16:06:30 -080010 * Maintainer: Kumar Gala
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Andy Fleminge8a2b6a2006-12-01 12:01:06 -060012 * Copyright (c) 2002-2006 Freescale Semiconductor, Inc.
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +040013 * Copyright (c) 2007 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 *
20 * Gianfar: AKA Lambda Draconis, "Dragon"
21 * RA 11 31 24.2
22 * Dec +69 19 52
23 * V 3.84
24 * B-V +1.62
25 *
26 * Theory of operation
Kumar Gala0bbaf062005-06-20 10:54:21 -050027 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * The driver is initialized through platform_device. Structures which
29 * define the configuration needed by the board are defined in a
30 * board structure in arch/ppc/platforms (though I do not
31 * discount the possibility that other architectures could one
Andy Flemingbb40dcb2005-09-23 22:54:21 -040032 * day be supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * The Gianfar Ethernet Controller uses a ring of buffer
35 * descriptors. The beginning is indicated by a register
Kumar Gala0bbaf062005-06-20 10:54:21 -050036 * pointing to the physical address of the start of the ring.
37 * The end is determined by a "wrap" bit being set in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * last descriptor of the ring.
39 *
40 * When a packet is received, the RXF bit in the
Kumar Gala0bbaf062005-06-20 10:54:21 -050041 * IEVENT register is set, triggering an interrupt when the
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * corresponding bit in the IMASK register is also set (if
43 * interrupt coalescing is active, then the interrupt may not
44 * happen immediately, but will wait until either a set number
Andy Flemingbb40dcb2005-09-23 22:54:21 -040045 * of frames or amount of time have passed). In NAPI, the
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * interrupt handler will signal there is work to be done, and
Francois Romieu0aa15382008-07-11 00:33:52 +020047 * exit. This method will start at the last known empty
Kumar Gala0bbaf062005-06-20 10:54:21 -050048 * descriptor, and process every subsequent descriptor until there
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * are none left with data (NAPI will stop after a set number of
50 * packets to give time to other tasks, but will eventually
51 * process all the packets). The data arrives inside a
52 * pre-allocated skb, and so after the skb is passed up to the
53 * stack, a new skb must be allocated, and the address field in
54 * the buffer descriptor must be updated to indicate this new
55 * skb.
56 *
57 * When the kernel requests that a packet be transmitted, the
58 * driver starts where it left off last time, and points the
59 * descriptor at the buffer which was passed in. The driver
60 * then informs the DMA engine that there are packets ready to
61 * be transmitted. Once the controller is finished transmitting
62 * the packet, an interrupt may be triggered (under the same
63 * conditions as for reception, but depending on the TXF bit).
64 * The driver then cleans up the buffer.
65 */
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/string.h>
69#include <linux/errno.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040070#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/slab.h>
72#include <linux/interrupt.h>
73#include <linux/init.h>
74#include <linux/delay.h>
75#include <linux/netdevice.h>
76#include <linux/etherdevice.h>
77#include <linux/skbuff.h>
Kumar Gala0bbaf062005-06-20 10:54:21 -050078#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/spinlock.h>
80#include <linux/mm.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010081#include <linux/platform_device.h>
Kumar Gala0bbaf062005-06-20 10:54:21 -050082#include <linux/ip.h>
83#include <linux/tcp.h>
84#include <linux/udp.h>
Kumar Gala9c07b8842006-01-11 11:26:25 -080085#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#include <asm/io.h>
88#include <asm/irq.h>
89#include <asm/uaccess.h>
90#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#include <linux/dma-mapping.h>
92#include <linux/crc32.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040093#include <linux/mii.h>
94#include <linux/phy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#include "gianfar.h"
Andy Flemingbb40dcb2005-09-23 22:54:21 -040097#include "gianfar_mii.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#define TX_TIMEOUT (1*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#undef BRIEF_GFAR_ERRORS
101#undef VERBOSE_GFAR_ERRORS
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103const char gfar_driver_name[] = "Gianfar Ethernet";
Andy Fleming7f7f5312005-11-11 12:38:59 -0600104const char gfar_driver_version[] = "1.3";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static int gfar_enet_open(struct net_device *dev);
107static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev);
108static void gfar_timeout(struct net_device *dev);
109static int gfar_close(struct net_device *dev);
Andy Fleming815b97c2008-04-22 17:18:29 -0500110struct sk_buff *gfar_new_skb(struct net_device *dev);
111static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
112 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static int gfar_set_mac_address(struct net_device *dev);
114static int gfar_change_mtu(struct net_device *dev, int new_mtu);
David Howells7d12e782006-10-05 14:55:46 +0100115static irqreturn_t gfar_error(int irq, void *dev_id);
116static irqreturn_t gfar_transmit(int irq, void *dev_id);
117static irqreturn_t gfar_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static void adjust_link(struct net_device *dev);
119static void init_registers(struct net_device *dev);
120static int init_phy(struct net_device *dev);
Russell King3ae5eae2005-11-09 22:32:44 +0000121static int gfar_probe(struct platform_device *pdev);
122static int gfar_remove(struct platform_device *pdev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400123static void free_skb_resources(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static void gfar_set_multi(struct net_device *dev);
125static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr);
Kapil Junejad3c12872007-05-11 18:25:11 -0500126static void gfar_configure_serdes(struct net_device *dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700127static int gfar_poll(struct napi_struct *napi, int budget);
Vitaly Woolf2d71c22006-11-07 13:27:02 +0300128#ifdef CONFIG_NET_POLL_CONTROLLER
129static void gfar_netpoll(struct net_device *dev);
130#endif
Kumar Gala0bbaf062005-06-20 10:54:21 -0500131int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit);
Andy Flemingf162b9d2008-05-02 13:00:30 -0500132static int gfar_clean_tx_ring(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb, int length);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500134static void gfar_vlan_rx_register(struct net_device *netdev,
135 struct vlan_group *grp);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600136void gfar_halt(struct net_device *dev);
Scott Woodd87eb122008-07-11 18:04:45 -0500137#ifdef CONFIG_PM
138static void gfar_halt_nodisable(struct net_device *dev);
139#endif
Andy Fleming7f7f5312005-11-11 12:38:59 -0600140void gfar_start(struct net_device *dev);
141static void gfar_clear_exact_match(struct net_device *dev);
142static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Jeff Garzik7282d492006-09-13 14:30:00 -0400144extern const struct ethtool_ops gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146MODULE_AUTHOR("Freescale Semiconductor, Inc");
147MODULE_DESCRIPTION("Gianfar Ethernet Driver");
148MODULE_LICENSE("GPL");
149
Andy Fleming7f7f5312005-11-11 12:38:59 -0600150/* Returns 1 if incoming frames use an FCB */
151static inline int gfar_uses_fcb(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500152{
Andy Fleming7f7f5312005-11-11 12:38:59 -0600153 return (priv->vlan_enable || priv->rx_csum_enable);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500154}
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400155
156/* Set up the ethernet device structure, private data,
157 * and anything else we need before we start */
Russell King3ae5eae2005-11-09 22:32:44 +0000158static int gfar_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 u32 tempval;
161 struct net_device *dev = NULL;
162 struct gfar_private *priv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct gianfar_platform_data *einfo;
164 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int err = 0;
Joe Perches0795af52007-10-03 17:59:30 -0700166 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 einfo = (struct gianfar_platform_data *) pdev->dev.platform_data;
169
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400170 if (NULL == einfo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 printk(KERN_ERR "gfar %d: Missing additional data!\n",
172 pdev->id);
173
174 return -ENODEV;
175 }
176
177 /* Create an ethernet device instance */
178 dev = alloc_etherdev(sizeof (*priv));
179
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400180 if (NULL == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -ENOMEM;
182
183 priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700184 priv->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* Set the info in the priv to the current info */
187 priv->einfo = einfo;
188
189 /* fill out IRQ fields */
190 if (einfo->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
191 priv->interruptTransmit = platform_get_irq_byname(pdev, "tx");
192 priv->interruptReceive = platform_get_irq_byname(pdev, "rx");
193 priv->interruptError = platform_get_irq_byname(pdev, "error");
David Vrabel48944732006-01-19 17:56:29 +0000194 if (priv->interruptTransmit < 0 || priv->interruptReceive < 0 || priv->interruptError < 0)
195 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 } else {
197 priv->interruptTransmit = platform_get_irq(pdev, 0);
David Vrabel48944732006-01-19 17:56:29 +0000198 if (priv->interruptTransmit < 0)
199 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 /* get a pointer to the register memory */
203 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600204 priv->regs = ioremap(r->start, sizeof (struct gfar));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400206 if (NULL == priv->regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 err = -ENOMEM;
208 goto regs_fail;
209 }
210
Andy Flemingfef61082006-04-20 16:44:29 -0500211 spin_lock_init(&priv->txlock);
212 spin_lock_init(&priv->rxlock);
Scott Woodd87eb122008-07-11 18:04:45 -0500213 spin_lock_init(&priv->bflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Russell King3ae5eae2005-11-09 22:32:44 +0000215 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Stop the DMA engine now, in case it was running before */
218 /* (The firmware could have used it, and left it running). */
219 /* To do this, we write Graceful Receive Stop and Graceful */
220 /* Transmit Stop, and then wait until the corresponding bits */
221 /* in IEVENT indicate the stops have completed. */
222 tempval = gfar_read(&priv->regs->dmactrl);
223 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
224 gfar_write(&priv->regs->dmactrl, tempval);
225
226 tempval = gfar_read(&priv->regs->dmactrl);
227 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
228 gfar_write(&priv->regs->dmactrl, tempval);
229
230 while (!(gfar_read(&priv->regs->ievent) & (IEVENT_GRSC | IEVENT_GTSC)))
231 cpu_relax();
232
233 /* Reset MAC layer */
234 gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
235
236 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
237 gfar_write(&priv->regs->maccfg1, tempval);
238
239 /* Initialize MACCFG2. */
240 gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS);
241
242 /* Initialize ECNTRL */
243 gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS);
244
245 /* Copy the station address into the dev structure, */
246 memcpy(dev->dev_addr, einfo->mac_addr, MAC_ADDR_LEN);
247
248 /* Set the dev->base_addr to the gfar reg region */
249 dev->base_addr = (unsigned long) (priv->regs);
250
Russell King3ae5eae2005-11-09 22:32:44 +0000251 SET_NETDEV_DEV(dev, &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* Fill in the dev structure */
254 dev->open = gfar_enet_open;
255 dev->hard_start_xmit = gfar_start_xmit;
256 dev->tx_timeout = gfar_timeout;
257 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700258 netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT);
Vitaly Woolf2d71c22006-11-07 13:27:02 +0300259#ifdef CONFIG_NET_POLL_CONTROLLER
260 dev->poll_controller = gfar_netpoll;
261#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 dev->stop = gfar_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 dev->change_mtu = gfar_change_mtu;
264 dev->mtu = 1500;
265 dev->set_multicast_list = gfar_set_multi;
266
Kumar Gala0bbaf062005-06-20 10:54:21 -0500267 dev->ethtool_ops = &gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Kumar Gala0bbaf062005-06-20 10:54:21 -0500269 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
270 priv->rx_csum_enable = 1;
271 dev->features |= NETIF_F_IP_CSUM;
272 } else
273 priv->rx_csum_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Kumar Gala0bbaf062005-06-20 10:54:21 -0500275 priv->vlgrp = NULL;
276
277 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) {
278 dev->vlan_rx_register = gfar_vlan_rx_register;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500279
280 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
281
282 priv->vlan_enable = 1;
283 }
284
285 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
286 priv->extended_hash = 1;
287 priv->hash_width = 9;
288
289 priv->hash_regs[0] = &priv->regs->igaddr0;
290 priv->hash_regs[1] = &priv->regs->igaddr1;
291 priv->hash_regs[2] = &priv->regs->igaddr2;
292 priv->hash_regs[3] = &priv->regs->igaddr3;
293 priv->hash_regs[4] = &priv->regs->igaddr4;
294 priv->hash_regs[5] = &priv->regs->igaddr5;
295 priv->hash_regs[6] = &priv->regs->igaddr6;
296 priv->hash_regs[7] = &priv->regs->igaddr7;
297 priv->hash_regs[8] = &priv->regs->gaddr0;
298 priv->hash_regs[9] = &priv->regs->gaddr1;
299 priv->hash_regs[10] = &priv->regs->gaddr2;
300 priv->hash_regs[11] = &priv->regs->gaddr3;
301 priv->hash_regs[12] = &priv->regs->gaddr4;
302 priv->hash_regs[13] = &priv->regs->gaddr5;
303 priv->hash_regs[14] = &priv->regs->gaddr6;
304 priv->hash_regs[15] = &priv->regs->gaddr7;
305
306 } else {
307 priv->extended_hash = 0;
308 priv->hash_width = 8;
309
310 priv->hash_regs[0] = &priv->regs->gaddr0;
311 priv->hash_regs[1] = &priv->regs->gaddr1;
312 priv->hash_regs[2] = &priv->regs->gaddr2;
313 priv->hash_regs[3] = &priv->regs->gaddr3;
314 priv->hash_regs[4] = &priv->regs->gaddr4;
315 priv->hash_regs[5] = &priv->regs->gaddr5;
316 priv->hash_regs[6] = &priv->regs->gaddr6;
317 priv->hash_regs[7] = &priv->regs->gaddr7;
318 }
319
320 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
321 priv->padding = DEFAULT_PADDING;
322 else
323 priv->padding = 0;
324
Kumar Gala0bbaf062005-06-20 10:54:21 -0500325 if (dev->features & NETIF_F_IP_CSUM)
326 dev->hard_header_len += GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 priv->tx_ring_size = DEFAULT_TX_RING_SIZE;
330 priv->rx_ring_size = DEFAULT_RX_RING_SIZE;
331
332 priv->txcoalescing = DEFAULT_TX_COALESCE;
333 priv->txcount = DEFAULT_TXCOUNT;
334 priv->txtime = DEFAULT_TXTIME;
335 priv->rxcoalescing = DEFAULT_RX_COALESCE;
336 priv->rxcount = DEFAULT_RXCOUNT;
337 priv->rxtime = DEFAULT_RXTIME;
338
Kumar Gala0bbaf062005-06-20 10:54:21 -0500339 /* Enable most messages by default */
340 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 err = register_netdev(dev);
343
344 if (err) {
345 printk(KERN_ERR "%s: Cannot register net device, aborting.\n",
346 dev->name);
347 goto register_fail;
348 }
349
Andy Fleming7f7f5312005-11-11 12:38:59 -0600350 /* Create all the sysfs files */
351 gfar_init_sysfs(dev);
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /* Print out the device info */
Joe Perches0795af52007-10-03 17:59:30 -0700354 printk(KERN_INFO DEVICE_NAME "%s\n",
355 dev->name, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Even more device info helps when determining which kernel */
Andy Fleming7f7f5312005-11-11 12:38:59 -0600358 /* provided which set of benchmarks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n",
361 dev->name, priv->rx_ring_size, priv->tx_ring_size);
362
363 return 0;
364
365register_fail:
Kumar Galacc8c6e32006-02-01 15:18:03 -0600366 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367regs_fail:
368 free_netdev(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400369 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Russell King3ae5eae2005-11-09 22:32:44 +0000372static int gfar_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Russell King3ae5eae2005-11-09 22:32:44 +0000374 struct net_device *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct gfar_private *priv = netdev_priv(dev);
376
Russell King3ae5eae2005-11-09 22:32:44 +0000377 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Kumar Galacc8c6e32006-02-01 15:18:03 -0600379 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 free_netdev(dev);
381
382 return 0;
383}
384
Scott Woodd87eb122008-07-11 18:04:45 -0500385#ifdef CONFIG_PM
386static int gfar_suspend(struct platform_device *pdev, pm_message_t state)
387{
388 struct net_device *dev = platform_get_drvdata(pdev);
389 struct gfar_private *priv = netdev_priv(dev);
390 unsigned long flags;
391 u32 tempval;
392
393 int magic_packet = priv->wol_en &&
394 (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
395
396 netif_device_detach(dev);
397
398 if (netif_running(dev)) {
399 spin_lock_irqsave(&priv->txlock, flags);
400 spin_lock(&priv->rxlock);
401
402 gfar_halt_nodisable(dev);
403
404 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
405 tempval = gfar_read(&priv->regs->maccfg1);
406
407 tempval &= ~MACCFG1_TX_EN;
408
409 if (!magic_packet)
410 tempval &= ~MACCFG1_RX_EN;
411
412 gfar_write(&priv->regs->maccfg1, tempval);
413
414 spin_unlock(&priv->rxlock);
415 spin_unlock_irqrestore(&priv->txlock, flags);
416
417#ifdef CONFIG_GFAR_NAPI
418 napi_disable(&priv->napi);
419#endif
420
421 if (magic_packet) {
422 /* Enable interrupt on Magic Packet */
423 gfar_write(&priv->regs->imask, IMASK_MAG);
424
425 /* Enable Magic Packet mode */
426 tempval = gfar_read(&priv->regs->maccfg2);
427 tempval |= MACCFG2_MPEN;
428 gfar_write(&priv->regs->maccfg2, tempval);
429 } else {
430 phy_stop(priv->phydev);
431 }
432 }
433
434 return 0;
435}
436
437static int gfar_resume(struct platform_device *pdev)
438{
439 struct net_device *dev = platform_get_drvdata(pdev);
440 struct gfar_private *priv = netdev_priv(dev);
441 unsigned long flags;
442 u32 tempval;
443 int magic_packet = priv->wol_en &&
444 (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
445
446 if (!netif_running(dev)) {
447 netif_device_attach(dev);
448 return 0;
449 }
450
451 if (!magic_packet && priv->phydev)
452 phy_start(priv->phydev);
453
454 /* Disable Magic Packet mode, in case something
455 * else woke us up.
456 */
457
458 spin_lock_irqsave(&priv->txlock, flags);
459 spin_lock(&priv->rxlock);
460
461 tempval = gfar_read(&priv->regs->maccfg2);
462 tempval &= ~MACCFG2_MPEN;
463 gfar_write(&priv->regs->maccfg2, tempval);
464
465 gfar_start(dev);
466
467 spin_unlock(&priv->rxlock);
468 spin_unlock_irqrestore(&priv->txlock, flags);
469
470 netif_device_attach(dev);
471
472#ifdef CONFIG_GFAR_NAPI
473 napi_enable(&priv->napi);
474#endif
475
476 return 0;
477}
478#else
479#define gfar_suspend NULL
480#define gfar_resume NULL
481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600483/* Reads the controller's registers to determine what interface
484 * connects it to the PHY.
485 */
486static phy_interface_t gfar_get_interface(struct net_device *dev)
487{
488 struct gfar_private *priv = netdev_priv(dev);
489 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
490
491 if (ecntrl & ECNTRL_SGMII_MODE)
492 return PHY_INTERFACE_MODE_SGMII;
493
494 if (ecntrl & ECNTRL_TBI_MODE) {
495 if (ecntrl & ECNTRL_REDUCED_MODE)
496 return PHY_INTERFACE_MODE_RTBI;
497 else
498 return PHY_INTERFACE_MODE_TBI;
499 }
500
501 if (ecntrl & ECNTRL_REDUCED_MODE) {
502 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
503 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500504 else {
505 phy_interface_t interface = priv->einfo->interface;
506
507 /*
508 * This isn't autodetected right now, so it must
509 * be set by the device tree or platform code.
510 */
511 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
512 return PHY_INTERFACE_MODE_RGMII_ID;
513
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600514 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500515 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600516 }
517
518 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
519 return PHY_INTERFACE_MODE_GMII;
520
521 return PHY_INTERFACE_MODE_MII;
522}
523
524
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400525/* Initializes driver's PHY state, and attaches to the PHY.
526 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528static int init_phy(struct net_device *dev)
529{
530 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400531 uint gigabit_support =
532 priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
533 SUPPORTED_1000baseT_Full : 0;
534 struct phy_device *phydev;
Kumar Gala4d3248a2006-01-11 11:27:33 -0800535 char phy_id[BUS_ID_SIZE];
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600536 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 priv->oldlink = 0;
539 priv->oldspeed = 0;
540 priv->oldduplex = -1;
541
Kumar Gala4d3248a2006-01-11 11:27:33 -0800542 snprintf(phy_id, BUS_ID_SIZE, PHY_ID_FMT, priv->einfo->bus_id, priv->einfo->phy_id);
543
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600544 interface = gfar_get_interface(dev);
545
546 phydev = phy_connect(dev, phy_id, &adjust_link, 0, interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Kapil Junejad3c12872007-05-11 18:25:11 -0500548 if (interface == PHY_INTERFACE_MODE_SGMII)
549 gfar_configure_serdes(dev);
550
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400551 if (IS_ERR(phydev)) {
552 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
553 return PTR_ERR(phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400556 /* Remove any features not supported by the controller */
557 phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
558 phydev->advertising = phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400560 priv->phydev = phydev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Paul Gortmakerd0313582008-04-17 00:08:10 -0400565/*
566 * Initialize TBI PHY interface for communicating with the
567 * SERDES lynx PHY on the chip. We communicate with this PHY
568 * through the MDIO bus on each controller, treating it as a
569 * "normal" PHY at the address found in the TBIPA register. We assume
570 * that the TBIPA register is valid. Either the MDIO bus code will set
571 * it to a value that doesn't conflict with other PHYs on the bus, or the
572 * value doesn't matter, as there are no other PHYs on the bus.
573 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500574static void gfar_configure_serdes(struct net_device *dev)
575{
576 struct gfar_private *priv = netdev_priv(dev);
577 struct gfar_mii __iomem *regs =
578 (void __iomem *)&priv->regs->gfar_mii_regs;
Paul Gortmakerd0313582008-04-17 00:08:10 -0400579 int tbipa = gfar_read(&priv->regs->tbipa);
Kapil Junejad3c12872007-05-11 18:25:11 -0500580
Paul Gortmakerd0313582008-04-17 00:08:10 -0400581 /* Single clk mode, mii mode off(for serdes communication) */
582 gfar_local_mdio_write(regs, tbipa, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500583
Paul Gortmakerd0313582008-04-17 00:08:10 -0400584 gfar_local_mdio_write(regs, tbipa, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500585 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
586 ADVERTISE_1000XPSE_ASYM);
587
Paul Gortmakerd0313582008-04-17 00:08:10 -0400588 gfar_local_mdio_write(regs, tbipa, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500589 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
590}
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592static void init_registers(struct net_device *dev)
593{
594 struct gfar_private *priv = netdev_priv(dev);
595
596 /* Clear IEVENT */
597 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
598
599 /* Initialize IMASK */
600 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
601
602 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500603 gfar_write(&priv->regs->igaddr0, 0);
604 gfar_write(&priv->regs->igaddr1, 0);
605 gfar_write(&priv->regs->igaddr2, 0);
606 gfar_write(&priv->regs->igaddr3, 0);
607 gfar_write(&priv->regs->igaddr4, 0);
608 gfar_write(&priv->regs->igaddr5, 0);
609 gfar_write(&priv->regs->igaddr6, 0);
610 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 gfar_write(&priv->regs->gaddr0, 0);
613 gfar_write(&priv->regs->gaddr1, 0);
614 gfar_write(&priv->regs->gaddr2, 0);
615 gfar_write(&priv->regs->gaddr3, 0);
616 gfar_write(&priv->regs->gaddr4, 0);
617 gfar_write(&priv->regs->gaddr5, 0);
618 gfar_write(&priv->regs->gaddr6, 0);
619 gfar_write(&priv->regs->gaddr7, 0);
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* Zero out the rmon mib registers if it has them */
622 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600623 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /* Mask off the CAM interrupts */
626 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
627 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
628 }
629
630 /* Initialize the max receive buffer length */
631 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* Initialize the Minimum Frame Length Register */
634 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Kumar Gala0bbaf062005-06-20 10:54:21 -0500637
Scott Woodd87eb122008-07-11 18:04:45 -0500638#ifdef CONFIG_PM
Kumar Gala0bbaf062005-06-20 10:54:21 -0500639/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -0500640static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600643 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 u32 tempval;
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /* Mask all interrupts */
647 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
648
649 /* Clear all interrupts */
650 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
651
652 /* Stop the DMA, and wait for it to stop */
653 tempval = gfar_read(&priv->regs->dmactrl);
654 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
655 != (DMACTRL_GRS | DMACTRL_GTS)) {
656 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
657 gfar_write(&priv->regs->dmactrl, tempval);
658
659 while (!(gfar_read(&priv->regs->ievent) &
660 (IEVENT_GRSC | IEVENT_GTSC)))
661 cpu_relax();
662 }
Scott Woodd87eb122008-07-11 18:04:45 -0500663}
664#endif
665
666/* Halt the receive and transmit queues */
667void gfar_halt(struct net_device *dev)
668{
669 struct gfar_private *priv = netdev_priv(dev);
670 struct gfar __iomem *regs = priv->regs;
671 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 /* Disable Rx and Tx */
674 tempval = gfar_read(&regs->maccfg1);
675 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
676 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500677}
678
679void stop_gfar(struct net_device *dev)
680{
681 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600682 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500683 unsigned long flags;
684
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400685 phy_stop(priv->phydev);
686
Kumar Gala0bbaf062005-06-20 10:54:21 -0500687 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -0500688 spin_lock_irqsave(&priv->txlock, flags);
689 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500690
Kumar Gala0bbaf062005-06-20 10:54:21 -0500691 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Andy Flemingfef61082006-04-20 16:44:29 -0500693 spin_unlock(&priv->rxlock);
694 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 /* Free the IRQs */
697 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
698 free_irq(priv->interruptError, dev);
699 free_irq(priv->interruptTransmit, dev);
700 free_irq(priv->interruptReceive, dev);
701 } else {
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400702 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 free_skb_resources(priv);
706
Becky Brucecf782292008-02-18 17:24:30 -0600707 dma_free_coherent(&dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 sizeof(struct txbd8)*priv->tx_ring_size
709 + sizeof(struct rxbd8)*priv->rx_ring_size,
710 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -0500711 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/* If there are any tx skbs or rx skbs still around, free them.
715 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400716static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 struct rxbd8 *rxbdp;
719 struct txbd8 *txbdp;
720 int i;
721
722 /* Go through all the buffer descriptors and free their data buffers */
723 txbdp = priv->tx_bd_base;
724
725 for (i = 0; i < priv->tx_ring_size; i++) {
726
727 if (priv->tx_skbuff[i]) {
Becky Brucecf782292008-02-18 17:24:30 -0600728 dma_unmap_single(&priv->dev->dev, txbdp->bufPtr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 txbdp->length,
730 DMA_TO_DEVICE);
731 dev_kfree_skb_any(priv->tx_skbuff[i]);
732 priv->tx_skbuff[i] = NULL;
733 }
Andy Flemingad5da7a2008-05-07 13:20:55 -0500734
735 txbdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
738 kfree(priv->tx_skbuff);
739
740 rxbdp = priv->rx_bd_base;
741
742 /* rx_skbuff is not guaranteed to be allocated, so only
743 * free it and its contents if it is allocated */
744 if(priv->rx_skbuff != NULL) {
745 for (i = 0; i < priv->rx_ring_size; i++) {
746 if (priv->rx_skbuff[i]) {
Becky Brucecf782292008-02-18 17:24:30 -0600747 dma_unmap_single(&priv->dev->dev, rxbdp->bufPtr,
Andy Fleming7f7f5312005-11-11 12:38:59 -0600748 priv->rx_buffer_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 DMA_FROM_DEVICE);
750
751 dev_kfree_skb_any(priv->rx_skbuff[i]);
752 priv->rx_skbuff[i] = NULL;
753 }
754
755 rxbdp->status = 0;
756 rxbdp->length = 0;
757 rxbdp->bufPtr = 0;
758
759 rxbdp++;
760 }
761
762 kfree(priv->rx_skbuff);
763 }
764}
765
Kumar Gala0bbaf062005-06-20 10:54:21 -0500766void gfar_start(struct net_device *dev)
767{
768 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600769 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500770 u32 tempval;
771
772 /* Enable Rx and Tx in MACCFG1 */
773 tempval = gfar_read(&regs->maccfg1);
774 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
775 gfar_write(&regs->maccfg1, tempval);
776
777 /* Initialize DMACTRL to have WWR and WOP */
778 tempval = gfar_read(&priv->regs->dmactrl);
779 tempval |= DMACTRL_INIT_SETTINGS;
780 gfar_write(&priv->regs->dmactrl, tempval);
781
Kumar Gala0bbaf062005-06-20 10:54:21 -0500782 /* Make sure we aren't stopped */
783 tempval = gfar_read(&priv->regs->dmactrl);
784 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
785 gfar_write(&priv->regs->dmactrl, tempval);
786
Andy Flemingfef61082006-04-20 16:44:29 -0500787 /* Clear THLT/RHLT, so that the DMA starts polling now */
788 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
789 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
790
Kumar Gala0bbaf062005-06-20 10:54:21 -0500791 /* Unmask the interrupts we look for */
792 gfar_write(&regs->imask, IMASK_DEFAULT);
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/* Bring the controller up and running */
796int startup_gfar(struct net_device *dev)
797{
798 struct txbd8 *txbdp;
799 struct rxbd8 *rxbdp;
Grant Likelyf9663ae2007-12-01 22:10:03 -0700800 dma_addr_t addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 unsigned long vaddr;
802 int i;
803 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600804 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int err = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500806 u32 rctrl = 0;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600807 u32 attrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
810
811 /* Allocate memory for the buffer descriptors */
Becky Brucecf782292008-02-18 17:24:30 -0600812 vaddr = (unsigned long) dma_alloc_coherent(&dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 sizeof (struct txbd8) * priv->tx_ring_size +
814 sizeof (struct rxbd8) * priv->rx_ring_size,
815 &addr, GFP_KERNEL);
816
817 if (vaddr == 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500818 if (netif_msg_ifup(priv))
819 printk(KERN_ERR "%s: Could not allocate buffer descriptors!\n",
820 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return -ENOMEM;
822 }
823
824 priv->tx_bd_base = (struct txbd8 *) vaddr;
825
826 /* enet DMA only understands physical addresses */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500827 gfar_write(&regs->tbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 /* Start the rx descriptor ring where the tx ring leaves off */
830 addr = addr + sizeof (struct txbd8) * priv->tx_ring_size;
831 vaddr = vaddr + sizeof (struct txbd8) * priv->tx_ring_size;
832 priv->rx_bd_base = (struct rxbd8 *) vaddr;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500833 gfar_write(&regs->rbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /* Setup the skbuff rings */
836 priv->tx_skbuff =
837 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
838 priv->tx_ring_size, GFP_KERNEL);
839
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400840 if (NULL == priv->tx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500841 if (netif_msg_ifup(priv))
842 printk(KERN_ERR "%s: Could not allocate tx_skbuff\n",
843 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 err = -ENOMEM;
845 goto tx_skb_fail;
846 }
847
848 for (i = 0; i < priv->tx_ring_size; i++)
849 priv->tx_skbuff[i] = NULL;
850
851 priv->rx_skbuff =
852 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
853 priv->rx_ring_size, GFP_KERNEL);
854
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400855 if (NULL == priv->rx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500856 if (netif_msg_ifup(priv))
857 printk(KERN_ERR "%s: Could not allocate rx_skbuff\n",
858 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 err = -ENOMEM;
860 goto rx_skb_fail;
861 }
862
863 for (i = 0; i < priv->rx_ring_size; i++)
864 priv->rx_skbuff[i] = NULL;
865
866 /* Initialize some variables in our dev structure */
867 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
868 priv->cur_rx = priv->rx_bd_base;
869 priv->skb_curtx = priv->skb_dirtytx = 0;
870 priv->skb_currx = 0;
871
872 /* Initialize Transmit Descriptor Ring */
873 txbdp = priv->tx_bd_base;
874 for (i = 0; i < priv->tx_ring_size; i++) {
875 txbdp->status = 0;
876 txbdp->length = 0;
877 txbdp->bufPtr = 0;
878 txbdp++;
879 }
880
881 /* Set the last descriptor in the ring to indicate wrap */
882 txbdp--;
883 txbdp->status |= TXBD_WRAP;
884
885 rxbdp = priv->rx_bd_base;
886 for (i = 0; i < priv->rx_ring_size; i++) {
Andy Fleming815b97c2008-04-22 17:18:29 -0500887 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Andy Fleming815b97c2008-04-22 17:18:29 -0500889 skb = gfar_new_skb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Andy Fleming815b97c2008-04-22 17:18:29 -0500891 if (!skb) {
892 printk(KERN_ERR "%s: Can't allocate RX buffers\n",
893 dev->name);
894
895 goto err_rxalloc_fail;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 priv->rx_skbuff[i] = skb;
899
Andy Fleming815b97c2008-04-22 17:18:29 -0500900 gfar_new_rxbdp(dev, rxbdp, skb);
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 rxbdp++;
903 }
904
905 /* Set the last descriptor in the ring to wrap */
906 rxbdp--;
907 rxbdp->status |= RXBD_WRAP;
908
909 /* If the device has multiple interrupts, register for
910 * them. Otherwise, only register for the one */
911 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500912 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * Transmit, and Receive */
914 if (request_irq(priv->interruptError, gfar_error,
915 0, "enet_error", dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500916 if (netif_msg_intr(priv))
917 printk(KERN_ERR "%s: Can't get IRQ %d\n",
918 dev->name, priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 err = -1;
921 goto err_irq_fail;
922 }
923
924 if (request_irq(priv->interruptTransmit, gfar_transmit,
925 0, "enet_tx", dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500926 if (netif_msg_intr(priv))
927 printk(KERN_ERR "%s: Can't get IRQ %d\n",
928 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 err = -1;
931
932 goto tx_irq_fail;
933 }
934
935 if (request_irq(priv->interruptReceive, gfar_receive,
936 0, "enet_rx", dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500937 if (netif_msg_intr(priv))
938 printk(KERN_ERR "%s: Can't get IRQ %d (receive0)\n",
939 dev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 err = -1;
942 goto rx_irq_fail;
943 }
944 } else {
945 if (request_irq(priv->interruptTransmit, gfar_interrupt,
946 0, "gfar_interrupt", dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500947 if (netif_msg_intr(priv))
948 printk(KERN_ERR "%s: Can't get IRQ %d\n",
949 dev->name, priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 err = -1;
952 goto err_irq_fail;
953 }
954 }
955
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400956 phy_start(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 /* Configure the coalescing support */
959 if (priv->txcoalescing)
960 gfar_write(&regs->txic,
961 mk_ic_value(priv->txcount, priv->txtime));
962 else
963 gfar_write(&regs->txic, 0);
964
965 if (priv->rxcoalescing)
966 gfar_write(&regs->rxic,
967 mk_ic_value(priv->rxcount, priv->rxtime));
968 else
969 gfar_write(&regs->rxic, 0);
970
Kumar Gala0bbaf062005-06-20 10:54:21 -0500971 if (priv->rx_csum_enable)
972 rctrl |= RCTRL_CHECKSUMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Andy Fleming7f7f5312005-11-11 12:38:59 -0600974 if (priv->extended_hash) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500975 rctrl |= RCTRL_EXTHASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Andy Fleming7f7f5312005-11-11 12:38:59 -0600977 gfar_clear_exact_match(dev);
978 rctrl |= RCTRL_EMEN;
979 }
980
Kumar Gala0bbaf062005-06-20 10:54:21 -0500981 if (priv->vlan_enable)
982 rctrl |= RCTRL_VLAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Andy Fleming7f7f5312005-11-11 12:38:59 -0600984 if (priv->padding) {
985 rctrl &= ~RCTRL_PAL_MASK;
986 rctrl |= RCTRL_PADDING(priv->padding);
987 }
988
Kumar Gala0bbaf062005-06-20 10:54:21 -0500989 /* Init rctrl based on our settings */
990 gfar_write(&priv->regs->rctrl, rctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Kumar Gala0bbaf062005-06-20 10:54:21 -0500992 if (dev->features & NETIF_F_IP_CSUM)
993 gfar_write(&priv->regs->tctrl, TCTRL_INIT_CSUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Andy Fleming7f7f5312005-11-11 12:38:59 -0600995 /* Set the extraction length and index */
996 attrs = ATTRELI_EL(priv->rx_stash_size) |
997 ATTRELI_EI(priv->rx_stash_index);
998
999 gfar_write(&priv->regs->attreli, attrs);
1000
1001 /* Start with defaults, and add stashing or locking
1002 * depending on the approprate variables */
1003 attrs = ATTR_INIT_SETTINGS;
1004
1005 if (priv->bd_stash_en)
1006 attrs |= ATTR_BDSTASH;
1007
1008 if (priv->rx_stash_size != 0)
1009 attrs |= ATTR_BUFSTASH;
1010
1011 gfar_write(&priv->regs->attr, attrs);
1012
1013 gfar_write(&priv->regs->fifo_tx_thr, priv->fifo_threshold);
1014 gfar_write(&priv->regs->fifo_tx_starve, priv->fifo_starve);
1015 gfar_write(&priv->regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
1016
1017 /* Start the controller */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001018 gfar_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 return 0;
1021
1022rx_irq_fail:
1023 free_irq(priv->interruptTransmit, dev);
1024tx_irq_fail:
1025 free_irq(priv->interruptError, dev);
1026err_irq_fail:
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001027err_rxalloc_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028rx_skb_fail:
1029 free_skb_resources(priv);
1030tx_skb_fail:
Becky Brucecf782292008-02-18 17:24:30 -06001031 dma_free_coherent(&dev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 sizeof(struct txbd8)*priv->tx_ring_size
1033 + sizeof(struct rxbd8)*priv->rx_ring_size,
1034 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -05001035 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return err;
1038}
1039
1040/* Called when something needs to use the ethernet device */
1041/* Returns 0 for success. */
1042static int gfar_enet_open(struct net_device *dev)
1043{
Li Yang94e8cc32007-10-12 21:53:51 +08001044 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 int err;
1046
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001047 napi_enable(&priv->napi);
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /* Initialize a bunch of registers */
1050 init_registers(dev);
1051
1052 gfar_set_mac_address(dev);
1053
1054 err = init_phy(dev);
1055
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001056 if(err) {
1057 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001062 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001063 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001064 return err;
1065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 netif_start_queue(dev);
1068
1069 return err;
1070}
1071
Andy Fleming7f7f5312005-11-11 12:38:59 -06001072static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb, struct txbd8 *bdp)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001073{
1074 struct txfcb *fcb = (struct txfcb *)skb_push (skb, GMAC_FCB_LEN);
1075
1076 memset(fcb, 0, GMAC_FCB_LEN);
1077
Kumar Gala0bbaf062005-06-20 10:54:21 -05001078 return fcb;
1079}
1080
1081static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1082{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001083 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001084
1085 /* If we're here, it's a IP packet with a TCP or UDP
1086 * payload. We set it to checksum, using a pseudo-header
1087 * we provide
1088 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001089 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001090
Andy Fleming7f7f5312005-11-11 12:38:59 -06001091 /* Tell the controller what the protocol is */
1092 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001093 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001094 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001095 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001096 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001097 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001098
1099 /* l3os is the distance between the start of the
1100 * frame (skb->data) and the start of the IP hdr.
1101 * l4os is the distance between the start of the
1102 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001103 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001104 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001105
Andy Fleming7f7f5312005-11-11 12:38:59 -06001106 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001107}
1108
Andy Fleming7f7f5312005-11-11 12:38:59 -06001109void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001110{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001111 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001112 fcb->vlctl = vlan_tx_tag_get(skb);
1113}
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115/* This is called by the kernel when a frame is ready for transmission. */
1116/* It is pointed to by the dev->hard_start_xmit function pointer */
1117static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1118{
1119 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001120 struct txfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct txbd8 *txbdp;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001122 u16 status;
Andy Flemingfef61082006-04-20 16:44:29 -05001123 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001126 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 /* Lock priv now */
Andy Flemingfef61082006-04-20 16:44:29 -05001129 spin_lock_irqsave(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 /* Point at the first free tx descriptor */
1132 txbdp = priv->cur_tx;
1133
1134 /* Clear all but the WRAP status flags */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001135 status = txbdp->status & TXBD_WRAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Kumar Gala0bbaf062005-06-20 10:54:21 -05001137 /* Set up checksumming */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001138 if (likely((dev->features & NETIF_F_IP_CSUM)
Patrick McHardy84fa7932006-08-29 16:44:56 -07001139 && (CHECKSUM_PARTIAL == skb->ip_summed))) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001140 fcb = gfar_add_fcb(skb, txbdp);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001141 status |= TXBD_TOE;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001142 gfar_tx_checksum(skb, fcb);
1143 }
1144
1145 if (priv->vlan_enable &&
1146 unlikely(priv->vlgrp && vlan_tx_tag_present(skb))) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001147 if (unlikely(NULL == fcb)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001148 fcb = gfar_add_fcb(skb, txbdp);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001149 status |= TXBD_TOE;
1150 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05001151
1152 gfar_tx_vlan(skb, fcb);
1153 }
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /* Set buffer length and pointer */
1156 txbdp->length = skb->len;
Becky Brucecf782292008-02-18 17:24:30 -06001157 txbdp->bufPtr = dma_map_single(&dev->dev, skb->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 skb->len, DMA_TO_DEVICE);
1159
1160 /* Save the skb pointer so we can free it later */
1161 priv->tx_skbuff[priv->skb_curtx] = skb;
1162
1163 /* Update the current skb pointer (wrapping if this was the last) */
1164 priv->skb_curtx =
1165 (priv->skb_curtx + 1) & TX_RING_MOD_MASK(priv->tx_ring_size);
1166
1167 /* Flag the BD as interrupt-causing */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001168 status |= TXBD_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 /* Flag the BD as ready to go, last in frame, and */
1171 /* in need of CRC */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001172 status |= (TXBD_READY | TXBD_LAST | TXBD_CRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 dev->trans_start = jiffies;
1175
Scott Wood3b6330c2007-05-16 15:06:59 -05001176 /* The powerpc-specific eieio() is used, as wmb() has too strong
1177 * semantics (it requires synchronization between cacheable and
1178 * uncacheable mappings, which eieio doesn't provide and which we
1179 * don't need), thus requiring a more expensive sync instruction. At
1180 * some point, the set of architecture-independent barrier functions
1181 * should be expanded to include weaker barriers.
1182 */
1183
1184 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001185 txbdp->status = status;
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /* If this was the last BD in the ring, the next one */
1188 /* is at the beginning of the ring */
1189 if (txbdp->status & TXBD_WRAP)
1190 txbdp = priv->tx_bd_base;
1191 else
1192 txbdp++;
1193
1194 /* If the next BD still needs to be cleaned up, then the bds
1195 are full. We need to tell the kernel to stop sending us stuff. */
1196 if (txbdp == priv->dirty_tx) {
1197 netif_stop_queue(dev);
1198
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001199 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201
1202 /* Update the current txbd to the next one */
1203 priv->cur_tx = txbdp;
1204
1205 /* Tell the DMA to go go go */
1206 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1207
1208 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001209 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 return 0;
1212}
1213
1214/* Stops the kernel queue, and halts the controller */
1215static int gfar_close(struct net_device *dev)
1216{
1217 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001218
1219 napi_disable(&priv->napi);
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 stop_gfar(dev);
1222
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001223 /* Disconnect from the PHY */
1224 phy_disconnect(priv->phydev);
1225 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 netif_stop_queue(dev);
1228
1229 return 0;
1230}
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001233static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001235 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 return 0;
1238}
1239
1240
Kumar Gala0bbaf062005-06-20 10:54:21 -05001241/* Enables and disables VLAN insertion/extraction */
1242static void gfar_vlan_rx_register(struct net_device *dev,
1243 struct vlan_group *grp)
1244{
1245 struct gfar_private *priv = netdev_priv(dev);
1246 unsigned long flags;
1247 u32 tempval;
1248
Andy Flemingfef61082006-04-20 16:44:29 -05001249 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001250
1251 priv->vlgrp = grp;
1252
1253 if (grp) {
1254 /* Enable VLAN tag insertion */
1255 tempval = gfar_read(&priv->regs->tctrl);
1256 tempval |= TCTRL_VLINS;
1257
1258 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001259
Kumar Gala0bbaf062005-06-20 10:54:21 -05001260 /* Enable VLAN tag extraction */
1261 tempval = gfar_read(&priv->regs->rctrl);
1262 tempval |= RCTRL_VLEX;
1263 gfar_write(&priv->regs->rctrl, tempval);
1264 } else {
1265 /* Disable VLAN tag insertion */
1266 tempval = gfar_read(&priv->regs->tctrl);
1267 tempval &= ~TCTRL_VLINS;
1268 gfar_write(&priv->regs->tctrl, tempval);
1269
1270 /* Disable VLAN tag extraction */
1271 tempval = gfar_read(&priv->regs->rctrl);
1272 tempval &= ~RCTRL_VLEX;
1273 gfar_write(&priv->regs->rctrl, tempval);
1274 }
1275
Andy Flemingfef61082006-04-20 16:44:29 -05001276 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001277}
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1280{
1281 int tempsize, tempval;
1282 struct gfar_private *priv = netdev_priv(dev);
1283 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001284 int frame_size = new_mtu + ETH_HLEN;
1285
1286 if (priv->vlan_enable)
Dai Harukifaa89572008-03-24 10:53:26 -05001287 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001288
1289 if (gfar_uses_fcb(priv))
1290 frame_size += GMAC_FCB_LEN;
1291
1292 frame_size += priv->padding;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001295 if (netif_msg_drv(priv))
1296 printk(KERN_ERR "%s: Invalid MTU setting\n",
1297 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return -EINVAL;
1299 }
1300
1301 tempsize =
1302 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1303 INCREMENTAL_BUFFER_SIZE;
1304
1305 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001306 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1308 stop_gfar(dev);
1309
1310 priv->rx_buffer_size = tempsize;
1311
1312 dev->mtu = new_mtu;
1313
1314 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1315 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1316
1317 /* If the mtu is larger than the max size for standard
1318 * ethernet frames (ie, a jumbo frame), then set maccfg2
1319 * to allow huge frames, and to check the length */
1320 tempval = gfar_read(&priv->regs->maccfg2);
1321
1322 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1323 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1324 else
1325 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1326
1327 gfar_write(&priv->regs->maccfg2, tempval);
1328
1329 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1330 startup_gfar(dev);
1331
1332 return 0;
1333}
1334
1335/* gfar_timeout gets called when a packet has not been
1336 * transmitted after a set amount of time.
1337 * For now, assume that clearing out all the structures, and
1338 * starting over will fix the problem. */
1339static void gfar_timeout(struct net_device *dev)
1340{
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001341 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 if (dev->flags & IFF_UP) {
1344 stop_gfar(dev);
1345 startup_gfar(dev);
1346 }
1347
David S. Miller263ba322008-07-15 03:47:41 -07001348 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
1351/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001352static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 struct txbd8 *bdp;
Dai Harukid080cd62008-04-09 19:37:51 -05001355 struct gfar_private *priv = netdev_priv(dev);
1356 int howmany = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 bdp = priv->dirty_tx;
1359 while ((bdp->status & TXBD_READY) == 0) {
1360 /* If dirty_tx and cur_tx are the same, then either the */
1361 /* ring is empty or full now (it could only be full in the beginning, */
1362 /* obviously). If it is empty, we are done. */
1363 if ((bdp == priv->cur_tx) && (netif_queue_stopped(dev) == 0))
1364 break;
1365
Dai Harukid080cd62008-04-09 19:37:51 -05001366 howmany++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /* Deferred means some collisions occurred during transmit, */
1369 /* but we eventually sent the packet. */
1370 if (bdp->status & TXBD_DEF)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001371 dev->stats.collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 /* Free the sk buffer associated with this TxBD */
1374 dev_kfree_skb_irq(priv->tx_skbuff[priv->skb_dirtytx]);
Dai Harukid080cd62008-04-09 19:37:51 -05001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 priv->tx_skbuff[priv->skb_dirtytx] = NULL;
1377 priv->skb_dirtytx =
1378 (priv->skb_dirtytx +
1379 1) & TX_RING_MOD_MASK(priv->tx_ring_size);
1380
Dai Harukid080cd62008-04-09 19:37:51 -05001381 /* Clean BD length for empty detection */
1382 bdp->length = 0;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 /* update bdp to point at next bd in the ring (wrapping if necessary) */
1385 if (bdp->status & TXBD_WRAP)
1386 bdp = priv->tx_bd_base;
1387 else
1388 bdp++;
1389
1390 /* Move dirty_tx to be the next bd */
1391 priv->dirty_tx = bdp;
1392
1393 /* We freed a buffer, so now we can restart transmission */
1394 if (netif_queue_stopped(dev))
1395 netif_wake_queue(dev);
1396 } /* while ((bdp->status & TXBD_READY) == 0) */
1397
Dai Harukid080cd62008-04-09 19:37:51 -05001398 dev->stats.tx_packets += howmany;
1399
1400 return howmany;
1401}
1402
1403/* Interrupt Handler for Transmit complete */
1404static irqreturn_t gfar_transmit(int irq, void *dev_id)
1405{
1406 struct net_device *dev = (struct net_device *) dev_id;
1407 struct gfar_private *priv = netdev_priv(dev);
1408
1409 /* Clear IEVENT */
1410 gfar_write(&priv->regs->ievent, IEVENT_TX_MASK);
1411
1412 /* Lock priv */
1413 spin_lock(&priv->txlock);
1414
1415 gfar_clean_tx_ring(dev);
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /* If we are coalescing the interrupts, reset the timer */
1418 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001419 if (likely(priv->txcoalescing)) {
1420 gfar_write(&priv->regs->txic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 gfar_write(&priv->regs->txic,
1422 mk_ic_value(priv->txcount, priv->txtime));
Andy Fleming2f448912008-03-24 10:53:28 -05001423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Andy Flemingfef61082006-04-20 16:44:29 -05001425 spin_unlock(&priv->txlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 return IRQ_HANDLED;
1428}
1429
Andy Fleming815b97c2008-04-22 17:18:29 -05001430static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1431 struct sk_buff *skb)
1432{
1433 struct gfar_private *priv = netdev_priv(dev);
1434 u32 * status_len = (u32 *)bdp;
1435 u16 flags;
1436
1437 bdp->bufPtr = dma_map_single(&dev->dev, skb->data,
1438 priv->rx_buffer_size, DMA_FROM_DEVICE);
1439
1440 flags = RXBD_EMPTY | RXBD_INTERRUPT;
1441
1442 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
1443 flags |= RXBD_WRAP;
1444
1445 eieio();
1446
1447 *status_len = (u32)flags << 16;
1448}
1449
1450
1451struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001453 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct gfar_private *priv = netdev_priv(dev);
1455 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 /* We have to allocate the skb, so keep trying till we succeed */
Andy Fleming815b97c2008-04-22 17:18:29 -05001458 skb = netdev_alloc_skb(dev, priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Andy Fleming815b97c2008-04-22 17:18:29 -05001460 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return NULL;
1462
Andy Fleming7f7f5312005-11-11 12:38:59 -06001463 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001464 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /* We need the data buffer to be aligned properly. We will reserve
1467 * as many bytes as needed to align the data properly
1468 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001469 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return skb;
1472}
1473
Li Yang298e1a92007-10-16 14:18:13 +08001474static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Li Yang298e1a92007-10-16 14:18:13 +08001476 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001477 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 struct gfar_extra_stats *estats = &priv->extra_stats;
1479
1480 /* If the packet was truncated, none of the other errors
1481 * matter */
1482 if (status & RXBD_TRUNCATED) {
1483 stats->rx_length_errors++;
1484
1485 estats->rx_trunc++;
1486
1487 return;
1488 }
1489 /* Count the errors, if there were any */
1490 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1491 stats->rx_length_errors++;
1492
1493 if (status & RXBD_LARGE)
1494 estats->rx_large++;
1495 else
1496 estats->rx_short++;
1497 }
1498 if (status & RXBD_NONOCTET) {
1499 stats->rx_frame_errors++;
1500 estats->rx_nonoctet++;
1501 }
1502 if (status & RXBD_CRCERR) {
1503 estats->rx_crcerr++;
1504 stats->rx_crc_errors++;
1505 }
1506 if (status & RXBD_OVERRUN) {
1507 estats->rx_overrun++;
1508 stats->rx_crc_errors++;
1509 }
1510}
1511
David Howells7d12e782006-10-05 14:55:46 +01001512irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 struct net_device *dev = (struct net_device *) dev_id;
1515 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* support NAPI */
Dai Harukid080cd62008-04-09 19:37:51 -05001519 /* Clear IEVENT, so interrupts aren't called again
1520 * because of the packets that have already arrived */
1521 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1522
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001523 if (netif_rx_schedule_prep(dev, &priv->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 tempval = gfar_read(&priv->regs->imask);
Dai Harukid080cd62008-04-09 19:37:51 -05001525 tempval &= IMASK_RTX_DISABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 gfar_write(&priv->regs->imask, tempval);
1527
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001528 __netif_rx_schedule(dev, &priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 } else {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001530 if (netif_msg_rx_err(priv))
1531 printk(KERN_DEBUG "%s: receive called twice (%x)[%x]\n",
1532 dev->name, gfar_read(&priv->regs->ievent),
1533 gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 return IRQ_HANDLED;
1537}
1538
Kumar Gala0bbaf062005-06-20 10:54:21 -05001539static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1540{
1541 /* If valid headers were found, and valid sums
1542 * were verified, then we tell the kernel that no
1543 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001544 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001545 skb->ip_summed = CHECKSUM_UNNECESSARY;
1546 else
1547 skb->ip_summed = CHECKSUM_NONE;
1548}
1549
1550
1551static inline struct rxfcb *gfar_get_fcb(struct sk_buff *skb)
1552{
1553 struct rxfcb *fcb = (struct rxfcb *)skb->data;
1554
1555 /* Remove the FCB from the skb */
1556 skb_pull(skb, GMAC_FCB_LEN);
1557
1558 return fcb;
1559}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561/* gfar_process_frame() -- handle one incoming packet if skb
1562 * isn't NULL. */
1563static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
1564 int length)
1565{
1566 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001567 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001569 if (NULL == skb) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001570 if (netif_msg_rx_err(priv))
1571 printk(KERN_WARNING "%s: Missing skb!!.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001572 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 priv->extra_stats.rx_skbmissing++;
1574 } else {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001575 int ret;
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 /* Prep the skb for the packet */
1578 skb_put(skb, length);
1579
Kumar Gala0bbaf062005-06-20 10:54:21 -05001580 /* Grab the FCB if there is one */
1581 if (gfar_uses_fcb(priv))
1582 fcb = gfar_get_fcb(skb);
1583
1584 /* Remove the padded bytes, if there are any */
1585 if (priv->padding)
1586 skb_pull(skb, priv->padding);
1587
1588 if (priv->rx_csum_enable)
1589 gfar_rx_checksum(skb, fcb);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 /* Tell the skb what kind of packet this is */
1592 skb->protocol = eth_type_trans(skb, dev);
1593
1594 /* Send the packet up the stack */
Francois Romieu0aa15382008-07-11 00:33:52 +02001595 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN))) {
1596 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp,
1597 fcb->vlctl);
1598 } else
1599 ret = netif_receive_skb(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001600
1601 if (NET_RX_DROP == ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
1604
1605 return 0;
1606}
1607
1608/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001609 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * of frames handled
1611 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001612int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
1614 struct rxbd8 *bdp;
1615 struct sk_buff *skb;
1616 u16 pkt_len;
1617 int howmany = 0;
1618 struct gfar_private *priv = netdev_priv(dev);
1619
1620 /* Get the first full descriptor */
1621 bdp = priv->cur_rx;
1622
1623 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001624 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001625 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001626
1627 /* Add another skb for the future */
1628 newskb = gfar_new_skb(dev);
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 skb = priv->rx_skbuff[priv->skb_currx];
1631
Andy Fleming815b97c2008-04-22 17:18:29 -05001632 /* We drop the frame if we failed to allocate a new buffer */
1633 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1634 bdp->status & RXBD_ERR)) {
1635 count_errors(bdp->status, dev);
1636
1637 if (unlikely(!newskb))
1638 newskb = skb;
1639
1640 if (skb) {
1641 dma_unmap_single(&priv->dev->dev,
1642 bdp->bufPtr,
1643 priv->rx_buffer_size,
1644 DMA_FROM_DEVICE);
1645
1646 dev_kfree_skb_any(skb);
1647 }
1648 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001650 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 howmany++;
1652
1653 /* Remove the FCS from the packet length */
1654 pkt_len = bdp->length - 4;
1655
1656 gfar_process_frame(dev, skb, pkt_len);
1657
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001658 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
1661 dev->last_rx = jiffies;
1662
Andy Fleming815b97c2008-04-22 17:18:29 -05001663 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Andy Fleming815b97c2008-04-22 17:18:29 -05001665 /* Setup the new bdp */
1666 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 /* Update to the next pointer */
1669 if (bdp->status & RXBD_WRAP)
1670 bdp = priv->rx_bd_base;
1671 else
1672 bdp++;
1673
1674 /* update to point at the next skb */
1675 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001676 (priv->skb_currx + 1) &
1677 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679
1680 /* Update the current rxbd pointer to be the next one */
1681 priv->cur_rx = bdp;
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return howmany;
1684}
1685
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001686static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001688 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
1689 struct net_device *dev = priv->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 int howmany;
Dai Harukid080cd62008-04-09 19:37:51 -05001691 unsigned long flags;
1692
1693 /* If we fail to get the lock, don't bother with the TX BDs */
1694 if (spin_trylock_irqsave(&priv->txlock, flags)) {
1695 gfar_clean_tx_ring(dev);
1696 spin_unlock_irqrestore(&priv->txlock, flags);
1697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001699 howmany = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001701 if (howmany < budget) {
1702 netif_rx_complete(dev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 /* Clear the halt bit in RSTAT */
1705 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
1706
1707 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
1708
1709 /* If we are coalescing interrupts, update the timer */
1710 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001711 if (likely(priv->rxcoalescing)) {
1712 gfar_write(&priv->regs->rxic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 gfar_write(&priv->regs->rxic,
1714 mk_ic_value(priv->rxcount, priv->rxtime));
Andy Fleming2f448912008-03-24 10:53:28 -05001715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001718 return howmany;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001721#ifdef CONFIG_NET_POLL_CONTROLLER
1722/*
1723 * Polling 'interrupt' - used by things like netconsole to send skbs
1724 * without having to re-enable interrupts. It's not called while
1725 * the interrupt routine is executing.
1726 */
1727static void gfar_netpoll(struct net_device *dev)
1728{
1729 struct gfar_private *priv = netdev_priv(dev);
1730
1731 /* If the device has multiple interrupts, run tx/rx */
1732 if (priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
1733 disable_irq(priv->interruptTransmit);
1734 disable_irq(priv->interruptReceive);
1735 disable_irq(priv->interruptError);
1736 gfar_interrupt(priv->interruptTransmit, dev);
1737 enable_irq(priv->interruptError);
1738 enable_irq(priv->interruptReceive);
1739 enable_irq(priv->interruptTransmit);
1740 } else {
1741 disable_irq(priv->interruptTransmit);
1742 gfar_interrupt(priv->interruptTransmit, dev);
1743 enable_irq(priv->interruptTransmit);
1744 }
1745}
1746#endif
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01001749static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 struct net_device *dev = dev_id;
1752 struct gfar_private *priv = netdev_priv(dev);
1753
1754 /* Save ievent for future reference */
1755 u32 events = gfar_read(&priv->regs->ievent);
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001758 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001759 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001762 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001763 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001765 /* Check for errors */
1766 if (events & IEVENT_ERR_MASK)
1767 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 return IRQ_HANDLED;
1770}
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772/* Called every time the controller might need to be made
1773 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001774 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 * function converts those variables into the appropriate
1776 * register values, and can bring down the device if needed.
1777 */
1778static void adjust_link(struct net_device *dev)
1779{
1780 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001781 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001782 unsigned long flags;
1783 struct phy_device *phydev = priv->phydev;
1784 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Andy Flemingfef61082006-04-20 16:44:29 -05001786 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001787 if (phydev->link) {
1788 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001789 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 /* Now we make sure that we can be in full duplex mode.
1792 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001793 if (phydev->duplex != priv->oldduplex) {
1794 new_state = 1;
1795 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001797 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001800 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001803 if (phydev->speed != priv->oldspeed) {
1804 new_state = 1;
1805 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 tempval =
1808 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 break;
1810 case 100:
1811 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 tempval =
1813 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001814
1815 /* Reduced mode distinguishes
1816 * between 10 and 100 */
1817 if (phydev->speed == SPEED_100)
1818 ecntrl |= ECNTRL_R100;
1819 else
1820 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 break;
1822 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05001823 if (netif_msg_link(priv))
1824 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001825 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
1826 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 break;
1828 }
1829
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001830 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001833 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001834 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001837 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001840 } else if (priv->oldlink) {
1841 new_state = 1;
1842 priv->oldlink = 0;
1843 priv->oldspeed = 0;
1844 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001847 if (new_state && netif_msg_link(priv))
1848 phy_print_status(phydev);
1849
Andy Flemingfef61082006-04-20 16:44:29 -05001850 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853/* Update the hash table based on the current list of multicast
1854 * addresses we subscribe to. Also, change the promiscuity of
1855 * the device based on the flags (this function is called
1856 * whenever dev->flags is changed */
1857static void gfar_set_multi(struct net_device *dev)
1858{
1859 struct dev_mc_list *mc_ptr;
1860 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001861 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 u32 tempval;
1863
1864 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /* Set RCTRL to PROM */
1866 tempval = gfar_read(&regs->rctrl);
1867 tempval |= RCTRL_PROM;
1868 gfar_write(&regs->rctrl, tempval);
1869 } else {
1870 /* Set RCTRL to not PROM */
1871 tempval = gfar_read(&regs->rctrl);
1872 tempval &= ~(RCTRL_PROM);
1873 gfar_write(&regs->rctrl, tempval);
1874 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if(dev->flags & IFF_ALLMULTI) {
1877 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001878 gfar_write(&regs->igaddr0, 0xffffffff);
1879 gfar_write(&regs->igaddr1, 0xffffffff);
1880 gfar_write(&regs->igaddr2, 0xffffffff);
1881 gfar_write(&regs->igaddr3, 0xffffffff);
1882 gfar_write(&regs->igaddr4, 0xffffffff);
1883 gfar_write(&regs->igaddr5, 0xffffffff);
1884 gfar_write(&regs->igaddr6, 0xffffffff);
1885 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 gfar_write(&regs->gaddr0, 0xffffffff);
1887 gfar_write(&regs->gaddr1, 0xffffffff);
1888 gfar_write(&regs->gaddr2, 0xffffffff);
1889 gfar_write(&regs->gaddr3, 0xffffffff);
1890 gfar_write(&regs->gaddr4, 0xffffffff);
1891 gfar_write(&regs->gaddr5, 0xffffffff);
1892 gfar_write(&regs->gaddr6, 0xffffffff);
1893 gfar_write(&regs->gaddr7, 0xffffffff);
1894 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001895 int em_num;
1896 int idx;
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001899 gfar_write(&regs->igaddr0, 0x0);
1900 gfar_write(&regs->igaddr1, 0x0);
1901 gfar_write(&regs->igaddr2, 0x0);
1902 gfar_write(&regs->igaddr3, 0x0);
1903 gfar_write(&regs->igaddr4, 0x0);
1904 gfar_write(&regs->igaddr5, 0x0);
1905 gfar_write(&regs->igaddr6, 0x0);
1906 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 gfar_write(&regs->gaddr0, 0x0);
1908 gfar_write(&regs->gaddr1, 0x0);
1909 gfar_write(&regs->gaddr2, 0x0);
1910 gfar_write(&regs->gaddr3, 0x0);
1911 gfar_write(&regs->gaddr4, 0x0);
1912 gfar_write(&regs->gaddr5, 0x0);
1913 gfar_write(&regs->gaddr6, 0x0);
1914 gfar_write(&regs->gaddr7, 0x0);
1915
Andy Fleming7f7f5312005-11-11 12:38:59 -06001916 /* If we have extended hash tables, we need to
1917 * clear the exact match registers to prepare for
1918 * setting them */
1919 if (priv->extended_hash) {
1920 em_num = GFAR_EM_NUM + 1;
1921 gfar_clear_exact_match(dev);
1922 idx = 1;
1923 } else {
1924 idx = 0;
1925 em_num = 0;
1926 }
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if(dev->mc_count == 0)
1929 return;
1930
1931 /* Parse the list, and set the appropriate bits */
1932 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001933 if (idx < em_num) {
1934 gfar_set_mac_for_addr(dev, idx,
1935 mc_ptr->dmi_addr);
1936 idx++;
1937 } else
1938 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 }
1940 }
1941
1942 return;
1943}
1944
Andy Fleming7f7f5312005-11-11 12:38:59 -06001945
1946/* Clears each of the exact match registers to zero, so they
1947 * don't interfere with normal reception */
1948static void gfar_clear_exact_match(struct net_device *dev)
1949{
1950 int idx;
1951 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
1952
1953 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
1954 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
1955}
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957/* Set the appropriate hash bit for the given addr */
1958/* The algorithm works like so:
1959 * 1) Take the Destination Address (ie the multicast address), and
1960 * do a CRC on it (little endian), and reverse the bits of the
1961 * result.
1962 * 2) Use the 8 most significant bits as a hash into a 256-entry
1963 * table. The table is controlled through 8 32-bit registers:
1964 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
1965 * gaddr7. This means that the 3 most significant bits in the
1966 * hash index which gaddr register to use, and the 5 other bits
1967 * indicate which bit (assuming an IBM numbering scheme, which
1968 * for PowerPC (tm) is usually the case) in the register holds
1969 * the entry. */
1970static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
1971{
1972 u32 tempval;
1973 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001975 int width = priv->hash_width;
1976 u8 whichbit = (result >> (32 - width)) & 0x1f;
1977 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 u32 value = (1 << (31-whichbit));
1979
Kumar Gala0bbaf062005-06-20 10:54:21 -05001980 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001982 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 return;
1985}
1986
Andy Fleming7f7f5312005-11-11 12:38:59 -06001987
1988/* There are multiple MAC Address register pairs on some controllers
1989 * This function sets the numth pair to a given address
1990 */
1991static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
1992{
1993 struct gfar_private *priv = netdev_priv(dev);
1994 int idx;
1995 char tmpbuf[MAC_ADDR_LEN];
1996 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06001997 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001998
1999 macptr += num*2;
2000
2001 /* Now copy it into the mac registers backwards, cuz */
2002 /* little endian is silly */
2003 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2004 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2005
2006 gfar_write(macptr, *((u32 *) (tmpbuf)));
2007
2008 tempval = *((u32 *) (tmpbuf + 4));
2009
2010 gfar_write(macptr+1, tempval);
2011}
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002014static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 struct net_device *dev = dev_id;
2017 struct gfar_private *priv = netdev_priv(dev);
2018
2019 /* Save ievent for future reference */
2020 u32 events = gfar_read(&priv->regs->ievent);
2021
2022 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002023 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2024
2025 /* Magic Packet is not an error. */
2026 if ((priv->einfo->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
2027 (events & IEVENT_MAG))
2028 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002031 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2032 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002033 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 /* Update the error counters */
2036 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002037 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002040 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002042 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002044 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002045 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2046 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002047 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 priv->extra_stats.tx_underrun++;
2049
2050 /* Reactivate the Tx Queues */
2051 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2052 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002053 if (netif_msg_tx_err(priv))
2054 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 }
2056 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002057 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 priv->extra_stats.rx_bsy++;
2059
David Howells7d12e782006-10-05 14:55:46 +01002060 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Kumar Gala0bbaf062005-06-20 10:54:21 -05002062 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002063 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2064 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002067 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 priv->extra_stats.rx_babr++;
2069
Kumar Gala0bbaf062005-06-20 10:54:21 -05002070 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002071 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073 if (events & IEVENT_EBERR) {
2074 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002075 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002076 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002078 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002079 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 if (events & IEVENT_BABT) {
2082 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002083 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002084 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
2086 return IRQ_HANDLED;
2087}
2088
Kay Sievers72abb462008-04-18 13:50:44 -07002089/* work with hotplug and coldplug */
2090MODULE_ALIAS("platform:fsl-gianfar");
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092/* Structure for a device driver */
Russell King3ae5eae2005-11-09 22:32:44 +00002093static struct platform_driver gfar_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 .probe = gfar_probe,
2095 .remove = gfar_remove,
Scott Woodd87eb122008-07-11 18:04:45 -05002096 .suspend = gfar_suspend,
2097 .resume = gfar_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002098 .driver = {
2099 .name = "fsl-gianfar",
Kay Sievers72abb462008-04-18 13:50:44 -07002100 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002101 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102};
2103
2104static int __init gfar_init(void)
2105{
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002106 int err = gfar_mdio_init();
2107
2108 if (err)
2109 return err;
2110
Russell King3ae5eae2005-11-09 22:32:44 +00002111 err = platform_driver_register(&gfar_driver);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002112
2113 if (err)
2114 gfar_mdio_exit();
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002115
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002116 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
2119static void __exit gfar_exit(void)
2120{
Russell King3ae5eae2005-11-09 22:32:44 +00002121 platform_driver_unregister(&gfar_driver);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002122 gfar_mdio_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
2125module_init(gfar_init);
2126module_exit(gfar_exit);
2127