blob: 2bb038b98cc4a1434516f717829d3c6415167ab1 [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 *
Andy Flemingb31a1d82008-12-16 15:29:15 -080028 * The driver is initialized through of_device. Configuration information
29 * is therefore conveyed through an OF-style device tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 * The Gianfar Ethernet Controller uses a ring of buffer
32 * descriptors. The beginning is indicated by a register
Kumar Gala0bbaf062005-06-20 10:54:21 -050033 * pointing to the physical address of the start of the ring.
34 * The end is determined by a "wrap" bit being set in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * last descriptor of the ring.
36 *
37 * When a packet is received, the RXF bit in the
Kumar Gala0bbaf062005-06-20 10:54:21 -050038 * IEVENT register is set, triggering an interrupt when the
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * corresponding bit in the IMASK register is also set (if
40 * interrupt coalescing is active, then the interrupt may not
41 * happen immediately, but will wait until either a set number
Andy Flemingbb40dcb2005-09-23 22:54:21 -040042 * of frames or amount of time have passed). In NAPI, the
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * interrupt handler will signal there is work to be done, and
Francois Romieu0aa15382008-07-11 00:33:52 +020044 * exit. This method will start at the last known empty
Kumar Gala0bbaf062005-06-20 10:54:21 -050045 * descriptor, and process every subsequent descriptor until there
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * are none left with data (NAPI will stop after a set number of
47 * packets to give time to other tasks, but will eventually
48 * process all the packets). The data arrives inside a
49 * pre-allocated skb, and so after the skb is passed up to the
50 * stack, a new skb must be allocated, and the address field in
51 * the buffer descriptor must be updated to indicate this new
52 * skb.
53 *
54 * When the kernel requests that a packet be transmitted, the
55 * driver starts where it left off last time, and points the
56 * descriptor at the buffer which was passed in. The driver
57 * then informs the DMA engine that there are packets ready to
58 * be transmitted. Once the controller is finished transmitting
59 * the packet, an interrupt may be triggered (under the same
60 * conditions as for reception, but depending on the TXF bit).
61 * The driver then cleans up the buffer.
62 */
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/string.h>
66#include <linux/errno.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040067#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/slab.h>
69#include <linux/interrupt.h>
70#include <linux/init.h>
71#include <linux/delay.h>
72#include <linux/netdevice.h>
73#include <linux/etherdevice.h>
74#include <linux/skbuff.h>
Kumar Gala0bbaf062005-06-20 10:54:21 -050075#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/spinlock.h>
77#include <linux/mm.h>
Grant Likelyfe192a42009-04-25 12:53:12 +000078#include <linux/of_mdio.h>
Andy Flemingb31a1d82008-12-16 15:29:15 -080079#include <linux/of_platform.h>
Kumar Gala0bbaf062005-06-20 10:54:21 -050080#include <linux/ip.h>
81#include <linux/tcp.h>
82#include <linux/udp.h>
Kumar Gala9c07b8842006-01-11 11:26:25 -080083#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85#include <asm/io.h>
86#include <asm/irq.h>
87#include <asm/uaccess.h>
88#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/dma-mapping.h>
90#include <linux/crc32.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040091#include <linux/mii.h>
92#include <linux/phy.h>
Andy Flemingb31a1d82008-12-16 15:29:15 -080093#include <linux/phy_fixed.h>
94#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#include "gianfar.h"
Andy Fleming1577ece2009-02-04 16:42:12 -080097#include "fsl_pq_mdio.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);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200108static void gfar_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static void gfar_timeout(struct net_device *dev);
110static int gfar_close(struct net_device *dev);
Andy Fleming815b97c2008-04-22 17:18:29 -0500111struct sk_buff *gfar_new_skb(struct net_device *dev);
112static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
113 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int gfar_set_mac_address(struct net_device *dev);
115static int gfar_change_mtu(struct net_device *dev, int new_mtu);
David Howells7d12e782006-10-05 14:55:46 +0100116static irqreturn_t gfar_error(int irq, void *dev_id);
117static irqreturn_t gfar_transmit(int irq, void *dev_id);
118static irqreturn_t gfar_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static void adjust_link(struct net_device *dev);
120static void init_registers(struct net_device *dev);
121static int init_phy(struct net_device *dev);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800122static int gfar_probe(struct of_device *ofdev,
123 const struct of_device_id *match);
124static int gfar_remove(struct of_device *ofdev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400125static void free_skb_resources(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static void gfar_set_multi(struct net_device *dev);
127static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr);
Kapil Junejad3c12872007-05-11 18:25:11 -0500128static void gfar_configure_serdes(struct net_device *dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700129static int gfar_poll(struct napi_struct *napi, int budget);
Vitaly Woolf2d71c22006-11-07 13:27:02 +0300130#ifdef CONFIG_NET_POLL_CONTROLLER
131static void gfar_netpoll(struct net_device *dev);
132#endif
Kumar Gala0bbaf062005-06-20 10:54:21 -0500133int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit);
Andy Flemingf162b9d2008-05-02 13:00:30 -0500134static int gfar_clean_tx_ring(struct net_device *dev);
Dai Haruki2c2db482008-12-16 15:31:15 -0800135static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
136 int amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500137static void gfar_vlan_rx_register(struct net_device *netdev,
138 struct vlan_group *grp);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600139void gfar_halt(struct net_device *dev);
Scott Woodd87eb122008-07-11 18:04:45 -0500140static void gfar_halt_nodisable(struct net_device *dev);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600141void gfar_start(struct net_device *dev);
142static void gfar_clear_exact_match(struct net_device *dev);
143static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr);
Andy Fleming26ccfc32009-03-10 12:58:28 +0000144static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146MODULE_AUTHOR("Freescale Semiconductor, Inc");
147MODULE_DESCRIPTION("Gianfar Ethernet Driver");
148MODULE_LICENSE("GPL");
149
Andy Fleming26ccfc32009-03-10 12:58:28 +0000150static const struct net_device_ops gfar_netdev_ops = {
151 .ndo_open = gfar_enet_open,
152 .ndo_start_xmit = gfar_start_xmit,
153 .ndo_stop = gfar_close,
154 .ndo_change_mtu = gfar_change_mtu,
155 .ndo_set_multicast_list = gfar_set_multi,
156 .ndo_tx_timeout = gfar_timeout,
157 .ndo_do_ioctl = gfar_ioctl,
158 .ndo_vlan_rx_register = gfar_vlan_rx_register,
159#ifdef CONFIG_NET_POLL_CONTROLLER
160 .ndo_poll_controller = gfar_netpoll,
161#endif
162};
163
Andy Fleming7f7f5312005-11-11 12:38:59 -0600164/* Returns 1 if incoming frames use an FCB */
165static inline int gfar_uses_fcb(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500166{
Dai Haruki77ecaf22008-12-16 15:30:48 -0800167 return priv->vlgrp || priv->rx_csum_enable;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500168}
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400169
Andy Flemingb31a1d82008-12-16 15:29:15 -0800170static int gfar_of_init(struct net_device *dev)
171{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800172 const char *model;
173 const char *ctype;
174 const void *mac_addr;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800175 u64 addr, size;
176 int err = 0;
177 struct gfar_private *priv = netdev_priv(dev);
178 struct device_node *np = priv->node;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800179 const u32 *stash;
180 const u32 *stash_len;
181 const u32 *stash_idx;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800182
183 if (!np || !of_device_is_available(np))
184 return -ENODEV;
185
186 /* get a pointer to the register memory */
187 addr = of_translate_address(np, of_get_address(np, 0, &size, NULL));
188 priv->regs = ioremap(addr, size);
189
190 if (priv->regs == NULL)
191 return -ENOMEM;
192
193 priv->interruptTransmit = irq_of_parse_and_map(np, 0);
194
195 model = of_get_property(np, "model", NULL);
196
197 /* If we aren't the FEC we have multiple interrupts */
198 if (model && strcasecmp(model, "FEC")) {
199 priv->interruptReceive = irq_of_parse_and_map(np, 1);
200
201 priv->interruptError = irq_of_parse_and_map(np, 2);
202
203 if (priv->interruptTransmit < 0 ||
204 priv->interruptReceive < 0 ||
205 priv->interruptError < 0) {
206 err = -EINVAL;
207 goto err_out;
208 }
209 }
210
Andy Fleming4d7902f2009-02-04 16:43:44 -0800211 stash = of_get_property(np, "bd-stash", NULL);
212
213 if(stash) {
214 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
215 priv->bd_stash_en = 1;
216 }
217
218 stash_len = of_get_property(np, "rx-stash-len", NULL);
219
220 if (stash_len)
221 priv->rx_stash_size = *stash_len;
222
223 stash_idx = of_get_property(np, "rx-stash-idx", NULL);
224
225 if (stash_idx)
226 priv->rx_stash_index = *stash_idx;
227
228 if (stash_len || stash_idx)
229 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
230
Andy Flemingb31a1d82008-12-16 15:29:15 -0800231 mac_addr = of_get_mac_address(np);
232 if (mac_addr)
233 memcpy(dev->dev_addr, mac_addr, MAC_ADDR_LEN);
234
235 if (model && !strcasecmp(model, "TSEC"))
236 priv->device_flags =
237 FSL_GIANFAR_DEV_HAS_GIGABIT |
238 FSL_GIANFAR_DEV_HAS_COALESCE |
239 FSL_GIANFAR_DEV_HAS_RMON |
240 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
241 if (model && !strcasecmp(model, "eTSEC"))
242 priv->device_flags =
243 FSL_GIANFAR_DEV_HAS_GIGABIT |
244 FSL_GIANFAR_DEV_HAS_COALESCE |
245 FSL_GIANFAR_DEV_HAS_RMON |
246 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Dai Haruki2c2db482008-12-16 15:31:15 -0800247 FSL_GIANFAR_DEV_HAS_PADDING |
Andy Flemingb31a1d82008-12-16 15:29:15 -0800248 FSL_GIANFAR_DEV_HAS_CSUM |
249 FSL_GIANFAR_DEV_HAS_VLAN |
250 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
251 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
252
253 ctype = of_get_property(np, "phy-connection-type", NULL);
254
255 /* We only care about rgmii-id. The rest are autodetected */
256 if (ctype && !strcmp(ctype, "rgmii-id"))
257 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
258 else
259 priv->interface = PHY_INTERFACE_MODE_MII;
260
261 if (of_get_property(np, "fsl,magic-packet", NULL))
262 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
263
Grant Likelyfe192a42009-04-25 12:53:12 +0000264 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
265 if (!priv->phy_node) {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800266 u32 *fixed_link;
267
268 fixed_link = (u32 *)of_get_property(np, "fixed-link", NULL);
269 if (!fixed_link) {
270 err = -ENODEV;
271 goto err_out;
272 }
Andy Flemingb31a1d82008-12-16 15:29:15 -0800273 }
274
275 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000276 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800277
278 return 0;
279
280err_out:
281 iounmap(priv->regs);
282 return err;
283}
284
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000285/* Ioctl MII Interface */
286static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
287{
288 struct gfar_private *priv = netdev_priv(dev);
289
290 if (!netif_running(dev))
291 return -EINVAL;
292
293 if (!priv->phydev)
294 return -ENODEV;
295
296 return phy_mii_ioctl(priv->phydev, if_mii(rq), cmd);
297}
298
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400299/* Set up the ethernet device structure, private data,
300 * and anything else we need before we start */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800301static int gfar_probe(struct of_device *ofdev,
302 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 u32 tempval;
305 struct net_device *dev = NULL;
306 struct gfar_private *priv = NULL;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800307 DECLARE_MAC_BUF(mac);
Dai Harukic50a5d92008-12-17 16:51:32 -0800308 int err = 0;
309 int len_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* Create an ethernet device instance */
312 dev = alloc_etherdev(sizeof (*priv));
313
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400314 if (NULL == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return -ENOMEM;
316
317 priv = netdev_priv(dev);
Kumar Gala48268572009-03-18 23:28:22 -0700318 priv->ndev = dev;
319 priv->ofdev = ofdev;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800320 priv->node = ofdev->node;
Kumar Gala48268572009-03-18 23:28:22 -0700321 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Andy Flemingb31a1d82008-12-16 15:29:15 -0800323 err = gfar_of_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Andy Flemingb31a1d82008-12-16 15:29:15 -0800325 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Andy Flemingfef61082006-04-20 16:44:29 -0500328 spin_lock_init(&priv->txlock);
329 spin_lock_init(&priv->rxlock);
Scott Woodd87eb122008-07-11 18:04:45 -0500330 spin_lock_init(&priv->bflock);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200331 INIT_WORK(&priv->reset_task, gfar_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Andy Flemingb31a1d82008-12-16 15:29:15 -0800333 dev_set_drvdata(&ofdev->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /* Stop the DMA engine now, in case it was running before */
336 /* (The firmware could have used it, and left it running). */
Andy Fleming257d9382008-12-16 15:25:45 -0800337 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* Reset MAC layer */
340 gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
341
Andy Flemingb98ac702009-02-04 16:38:05 -0800342 /* We need to delay at least 3 TX clocks */
343 udelay(2);
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
346 gfar_write(&priv->regs->maccfg1, tempval);
347
348 /* Initialize MACCFG2. */
349 gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS);
350
351 /* Initialize ECNTRL */
352 gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS);
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* Set the dev->base_addr to the gfar reg region */
355 dev->base_addr = (unsigned long) (priv->regs);
356
Andy Flemingb31a1d82008-12-16 15:29:15 -0800357 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* Fill in the dev structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700361 netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 dev->mtu = 1500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Andy Fleming26ccfc32009-03-10 12:58:28 +0000364 dev->netdev_ops = &gfar_netdev_ops;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500365 dev->ethtool_ops = &gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Andy Flemingb31a1d82008-12-16 15:29:15 -0800367 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500368 priv->rx_csum_enable = 1;
Dai Haruki4669bc92008-12-17 16:51:04 -0800369 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500370 } else
371 priv->rx_csum_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Kumar Gala0bbaf062005-06-20 10:54:21 -0500373 priv->vlgrp = NULL;
374
Andy Fleming26ccfc32009-03-10 12:58:28 +0000375 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500376 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500377
Andy Flemingb31a1d82008-12-16 15:29:15 -0800378 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500379 priv->extended_hash = 1;
380 priv->hash_width = 9;
381
382 priv->hash_regs[0] = &priv->regs->igaddr0;
383 priv->hash_regs[1] = &priv->regs->igaddr1;
384 priv->hash_regs[2] = &priv->regs->igaddr2;
385 priv->hash_regs[3] = &priv->regs->igaddr3;
386 priv->hash_regs[4] = &priv->regs->igaddr4;
387 priv->hash_regs[5] = &priv->regs->igaddr5;
388 priv->hash_regs[6] = &priv->regs->igaddr6;
389 priv->hash_regs[7] = &priv->regs->igaddr7;
390 priv->hash_regs[8] = &priv->regs->gaddr0;
391 priv->hash_regs[9] = &priv->regs->gaddr1;
392 priv->hash_regs[10] = &priv->regs->gaddr2;
393 priv->hash_regs[11] = &priv->regs->gaddr3;
394 priv->hash_regs[12] = &priv->regs->gaddr4;
395 priv->hash_regs[13] = &priv->regs->gaddr5;
396 priv->hash_regs[14] = &priv->regs->gaddr6;
397 priv->hash_regs[15] = &priv->regs->gaddr7;
398
399 } else {
400 priv->extended_hash = 0;
401 priv->hash_width = 8;
402
403 priv->hash_regs[0] = &priv->regs->gaddr0;
Andy Fleming1577ece2009-02-04 16:42:12 -0800404 priv->hash_regs[1] = &priv->regs->gaddr1;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500405 priv->hash_regs[2] = &priv->regs->gaddr2;
406 priv->hash_regs[3] = &priv->regs->gaddr3;
407 priv->hash_regs[4] = &priv->regs->gaddr4;
408 priv->hash_regs[5] = &priv->regs->gaddr5;
409 priv->hash_regs[6] = &priv->regs->gaddr6;
410 priv->hash_regs[7] = &priv->regs->gaddr7;
411 }
412
Andy Flemingb31a1d82008-12-16 15:29:15 -0800413 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500414 priv->padding = DEFAULT_PADDING;
415 else
416 priv->padding = 0;
417
Kumar Gala0bbaf062005-06-20 10:54:21 -0500418 if (dev->features & NETIF_F_IP_CSUM)
419 dev->hard_header_len += GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 priv->tx_ring_size = DEFAULT_TX_RING_SIZE;
423 priv->rx_ring_size = DEFAULT_RX_RING_SIZE;
Dai Haruki4669bc92008-12-17 16:51:04 -0800424 priv->num_txbdfree = DEFAULT_TX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 priv->txcoalescing = DEFAULT_TX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800427 priv->txic = DEFAULT_TXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 priv->rxcoalescing = DEFAULT_RX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800429 priv->rxic = DEFAULT_RXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Kumar Gala0bbaf062005-06-20 10:54:21 -0500431 /* Enable most messages by default */
432 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
433
Trent Piephod3eab822008-10-02 11:12:24 +0000434 /* Carrier starts down, phylib will bring it up */
435 netif_carrier_off(dev);
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 err = register_netdev(dev);
438
439 if (err) {
440 printk(KERN_ERR "%s: Cannot register net device, aborting.\n",
441 dev->name);
442 goto register_fail;
443 }
444
Anton Vorontsov2884e5c2009-02-01 00:52:34 -0800445 device_init_wakeup(&dev->dev,
446 priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
447
Dai Harukic50a5d92008-12-17 16:51:32 -0800448 /* fill out IRQ number and name fields */
449 len_devname = strlen(dev->name);
450 strncpy(&priv->int_name_tx[0], dev->name, len_devname);
451 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
452 strncpy(&priv->int_name_tx[len_devname],
453 "_tx", sizeof("_tx") + 1);
454
455 strncpy(&priv->int_name_rx[0], dev->name, len_devname);
456 strncpy(&priv->int_name_rx[len_devname],
457 "_rx", sizeof("_rx") + 1);
458
459 strncpy(&priv->int_name_er[0], dev->name, len_devname);
460 strncpy(&priv->int_name_er[len_devname],
461 "_er", sizeof("_er") + 1);
462 } else
463 priv->int_name_tx[len_devname] = '\0';
464
Andy Fleming7f7f5312005-11-11 12:38:59 -0600465 /* Create all the sysfs files */
466 gfar_init_sysfs(dev);
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /* Print out the device info */
Johannes Berge1749612008-10-27 15:59:26 -0700469 printk(KERN_INFO DEVICE_NAME "%pM\n", dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* Even more device info helps when determining which kernel */
Andy Fleming7f7f5312005-11-11 12:38:59 -0600472 /* provided which set of benchmarks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n",
475 dev->name, priv->rx_ring_size, priv->tx_ring_size);
476
477 return 0;
478
479register_fail:
Kumar Galacc8c6e32006-02-01 15:18:03 -0600480 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481regs_fail:
Grant Likelyfe192a42009-04-25 12:53:12 +0000482 if (priv->phy_node)
483 of_node_put(priv->phy_node);
484 if (priv->tbi_node)
485 of_node_put(priv->tbi_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 free_netdev(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400487 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Andy Flemingb31a1d82008-12-16 15:29:15 -0800490static int gfar_remove(struct of_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800492 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Grant Likelyfe192a42009-04-25 12:53:12 +0000494 if (priv->phy_node)
495 of_node_put(priv->phy_node);
496 if (priv->tbi_node)
497 of_node_put(priv->tbi_node);
498
Andy Flemingb31a1d82008-12-16 15:29:15 -0800499 dev_set_drvdata(&ofdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Kumar Galacc8c6e32006-02-01 15:18:03 -0600501 iounmap(priv->regs);
Kumar Gala48268572009-03-18 23:28:22 -0700502 free_netdev(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 return 0;
505}
506
Scott Woodd87eb122008-07-11 18:04:45 -0500507#ifdef CONFIG_PM
Andy Flemingb31a1d82008-12-16 15:29:15 -0800508static int gfar_suspend(struct of_device *ofdev, pm_message_t state)
Scott Woodd87eb122008-07-11 18:04:45 -0500509{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800510 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700511 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500512 unsigned long flags;
513 u32 tempval;
514
515 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800516 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500517
518 netif_device_detach(dev);
519
520 if (netif_running(dev)) {
521 spin_lock_irqsave(&priv->txlock, flags);
522 spin_lock(&priv->rxlock);
523
524 gfar_halt_nodisable(dev);
525
526 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
527 tempval = gfar_read(&priv->regs->maccfg1);
528
529 tempval &= ~MACCFG1_TX_EN;
530
531 if (!magic_packet)
532 tempval &= ~MACCFG1_RX_EN;
533
534 gfar_write(&priv->regs->maccfg1, tempval);
535
536 spin_unlock(&priv->rxlock);
537 spin_unlock_irqrestore(&priv->txlock, flags);
538
Scott Woodd87eb122008-07-11 18:04:45 -0500539 napi_disable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500540
541 if (magic_packet) {
542 /* Enable interrupt on Magic Packet */
543 gfar_write(&priv->regs->imask, IMASK_MAG);
544
545 /* Enable Magic Packet mode */
546 tempval = gfar_read(&priv->regs->maccfg2);
547 tempval |= MACCFG2_MPEN;
548 gfar_write(&priv->regs->maccfg2, tempval);
549 } else {
550 phy_stop(priv->phydev);
551 }
552 }
553
554 return 0;
555}
556
Andy Flemingb31a1d82008-12-16 15:29:15 -0800557static int gfar_resume(struct of_device *ofdev)
Scott Woodd87eb122008-07-11 18:04:45 -0500558{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800559 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700560 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500561 unsigned long flags;
562 u32 tempval;
563 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800564 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500565
566 if (!netif_running(dev)) {
567 netif_device_attach(dev);
568 return 0;
569 }
570
571 if (!magic_packet && priv->phydev)
572 phy_start(priv->phydev);
573
574 /* Disable Magic Packet mode, in case something
575 * else woke us up.
576 */
577
578 spin_lock_irqsave(&priv->txlock, flags);
579 spin_lock(&priv->rxlock);
580
581 tempval = gfar_read(&priv->regs->maccfg2);
582 tempval &= ~MACCFG2_MPEN;
583 gfar_write(&priv->regs->maccfg2, tempval);
584
585 gfar_start(dev);
586
587 spin_unlock(&priv->rxlock);
588 spin_unlock_irqrestore(&priv->txlock, flags);
589
590 netif_device_attach(dev);
591
Scott Woodd87eb122008-07-11 18:04:45 -0500592 napi_enable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500593
594 return 0;
595}
596#else
597#define gfar_suspend NULL
598#define gfar_resume NULL
599#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600601/* Reads the controller's registers to determine what interface
602 * connects it to the PHY.
603 */
604static phy_interface_t gfar_get_interface(struct net_device *dev)
605{
606 struct gfar_private *priv = netdev_priv(dev);
607 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
608
609 if (ecntrl & ECNTRL_SGMII_MODE)
610 return PHY_INTERFACE_MODE_SGMII;
611
612 if (ecntrl & ECNTRL_TBI_MODE) {
613 if (ecntrl & ECNTRL_REDUCED_MODE)
614 return PHY_INTERFACE_MODE_RTBI;
615 else
616 return PHY_INTERFACE_MODE_TBI;
617 }
618
619 if (ecntrl & ECNTRL_REDUCED_MODE) {
620 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
621 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500622 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800623 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -0500624
625 /*
626 * This isn't autodetected right now, so it must
627 * be set by the device tree or platform code.
628 */
629 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
630 return PHY_INTERFACE_MODE_RGMII_ID;
631
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600632 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500633 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600634 }
635
Andy Flemingb31a1d82008-12-16 15:29:15 -0800636 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600637 return PHY_INTERFACE_MODE_GMII;
638
639 return PHY_INTERFACE_MODE_MII;
640}
641
642
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400643/* Initializes driver's PHY state, and attaches to the PHY.
644 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
646static int init_phy(struct net_device *dev)
647{
648 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400649 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -0800650 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400651 SUPPORTED_1000baseT_Full : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600652 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 priv->oldlink = 0;
655 priv->oldspeed = 0;
656 priv->oldduplex = -1;
657
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600658 interface = gfar_get_interface(dev);
659
Grant Likelyfe192a42009-04-25 12:53:12 +0000660 if (priv->phy_node) {
661 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link,
662 0, interface);
663 if (!priv->phydev) {
664 dev_err(&dev->dev, "error: Could not attach to PHY\n");
665 return -ENODEV;
666 }
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Kapil Junejad3c12872007-05-11 18:25:11 -0500669 if (interface == PHY_INTERFACE_MODE_SGMII)
670 gfar_configure_serdes(dev);
671
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400672 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +0000673 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
674 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Paul Gortmakerd0313582008-04-17 00:08:10 -0400679/*
680 * Initialize TBI PHY interface for communicating with the
681 * SERDES lynx PHY on the chip. We communicate with this PHY
682 * through the MDIO bus on each controller, treating it as a
683 * "normal" PHY at the address found in the TBIPA register. We assume
684 * that the TBIPA register is valid. Either the MDIO bus code will set
685 * it to a value that doesn't conflict with other PHYs on the bus, or the
686 * value doesn't matter, as there are no other PHYs on the bus.
687 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500688static void gfar_configure_serdes(struct net_device *dev)
689{
690 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +0000691 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -0700692
Grant Likelyfe192a42009-04-25 12:53:12 +0000693 if (!priv->tbi_node) {
694 dev_warn(&dev->dev, "error: SGMII mode requires that the "
695 "device tree specify a tbi-handle\n");
696 return;
697 }
698
699 tbiphy = of_phy_find_device(priv->tbi_node);
700 if (!tbiphy) {
701 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -0800702 return;
703 }
Kapil Junejad3c12872007-05-11 18:25:11 -0500704
Andy Flemingb31a1d82008-12-16 15:29:15 -0800705 /*
706 * If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -0700707 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
708 * everything for us? Resetting it takes the link down and requires
709 * several seconds for it to come back.
710 */
Grant Likelyfe192a42009-04-25 12:53:12 +0000711 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800712 return;
Kapil Junejad3c12872007-05-11 18:25:11 -0500713
Paul Gortmakerd0313582008-04-17 00:08:10 -0400714 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +0000715 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500716
Grant Likelyfe192a42009-04-25 12:53:12 +0000717 phy_write(tbiphy, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500718 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
719 ADVERTISE_1000XPSE_ASYM);
720
Grant Likelyfe192a42009-04-25 12:53:12 +0000721 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500722 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725static void init_registers(struct net_device *dev)
726{
727 struct gfar_private *priv = netdev_priv(dev);
728
729 /* Clear IEVENT */
730 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
731
732 /* Initialize IMASK */
733 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
734
735 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500736 gfar_write(&priv->regs->igaddr0, 0);
737 gfar_write(&priv->regs->igaddr1, 0);
738 gfar_write(&priv->regs->igaddr2, 0);
739 gfar_write(&priv->regs->igaddr3, 0);
740 gfar_write(&priv->regs->igaddr4, 0);
741 gfar_write(&priv->regs->igaddr5, 0);
742 gfar_write(&priv->regs->igaddr6, 0);
743 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 gfar_write(&priv->regs->gaddr0, 0);
746 gfar_write(&priv->regs->gaddr1, 0);
747 gfar_write(&priv->regs->gaddr2, 0);
748 gfar_write(&priv->regs->gaddr3, 0);
749 gfar_write(&priv->regs->gaddr4, 0);
750 gfar_write(&priv->regs->gaddr5, 0);
751 gfar_write(&priv->regs->gaddr6, 0);
752 gfar_write(&priv->regs->gaddr7, 0);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* Zero out the rmon mib registers if it has them */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800755 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600756 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 /* Mask off the CAM interrupts */
759 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
760 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
761 }
762
763 /* Initialize the max receive buffer length */
764 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /* Initialize the Minimum Frame Length Register */
767 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Kumar Gala0bbaf062005-06-20 10:54:21 -0500770
771/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -0500772static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600775 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 u32 tempval;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* Mask all interrupts */
779 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
780
781 /* Clear all interrupts */
782 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
783
784 /* Stop the DMA, and wait for it to stop */
785 tempval = gfar_read(&priv->regs->dmactrl);
786 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
787 != (DMACTRL_GRS | DMACTRL_GTS)) {
788 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
789 gfar_write(&priv->regs->dmactrl, tempval);
790
791 while (!(gfar_read(&priv->regs->ievent) &
792 (IEVENT_GRSC | IEVENT_GTSC)))
793 cpu_relax();
794 }
Scott Woodd87eb122008-07-11 18:04:45 -0500795}
Scott Woodd87eb122008-07-11 18:04:45 -0500796
797/* Halt the receive and transmit queues */
798void gfar_halt(struct net_device *dev)
799{
800 struct gfar_private *priv = netdev_priv(dev);
801 struct gfar __iomem *regs = priv->regs;
802 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Scott Wood2a54adc2008-08-12 15:10:46 -0500804 gfar_halt_nodisable(dev);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Disable Rx and Tx */
807 tempval = gfar_read(&regs->maccfg1);
808 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
809 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500810}
811
812void stop_gfar(struct net_device *dev)
813{
814 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600815 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500816 unsigned long flags;
817
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400818 phy_stop(priv->phydev);
819
Kumar Gala0bbaf062005-06-20 10:54:21 -0500820 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -0500821 spin_lock_irqsave(&priv->txlock, flags);
822 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500823
Kumar Gala0bbaf062005-06-20 10:54:21 -0500824 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Andy Flemingfef61082006-04-20 16:44:29 -0500826 spin_unlock(&priv->rxlock);
827 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 /* Free the IRQs */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800830 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 free_irq(priv->interruptError, dev);
832 free_irq(priv->interruptTransmit, dev);
833 free_irq(priv->interruptReceive, dev);
834 } else {
Andy Fleming1577ece2009-02-04 16:42:12 -0800835 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
838 free_skb_resources(priv);
839
Kumar Gala48268572009-03-18 23:28:22 -0700840 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 sizeof(struct txbd8)*priv->tx_ring_size
842 + sizeof(struct rxbd8)*priv->rx_ring_size,
843 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -0500844 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
847/* If there are any tx skbs or rx skbs still around, free them.
848 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400849static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct rxbd8 *rxbdp;
852 struct txbd8 *txbdp;
Dai Haruki4669bc92008-12-17 16:51:04 -0800853 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* Go through all the buffer descriptors and free their data buffers */
856 txbdp = priv->tx_bd_base;
857
858 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki4669bc92008-12-17 16:51:04 -0800859 if (!priv->tx_skbuff[i])
860 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Kumar Gala48268572009-03-18 23:28:22 -0700862 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800863 txbdp->length, DMA_TO_DEVICE);
864 txbdp->lstatus = 0;
865 for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) {
866 txbdp++;
Kumar Gala48268572009-03-18 23:28:22 -0700867 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800868 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
Andy Flemingad5da7a2008-05-07 13:20:55 -0500870 txbdp++;
Dai Haruki4669bc92008-12-17 16:51:04 -0800871 dev_kfree_skb_any(priv->tx_skbuff[i]);
872 priv->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
875 kfree(priv->tx_skbuff);
876
877 rxbdp = priv->rx_bd_base;
878
879 /* rx_skbuff is not guaranteed to be allocated, so only
880 * free it and its contents if it is allocated */
881 if(priv->rx_skbuff != NULL) {
882 for (i = 0; i < priv->rx_ring_size; i++) {
883 if (priv->rx_skbuff[i]) {
Kumar Gala48268572009-03-18 23:28:22 -0700884 dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr,
Andy Fleming7f7f5312005-11-11 12:38:59 -0600885 priv->rx_buffer_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 DMA_FROM_DEVICE);
887
888 dev_kfree_skb_any(priv->rx_skbuff[i]);
889 priv->rx_skbuff[i] = NULL;
890 }
891
Dai Haruki5a5efed2008-12-16 15:34:50 -0800892 rxbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 rxbdp->bufPtr = 0;
894
895 rxbdp++;
896 }
897
898 kfree(priv->rx_skbuff);
899 }
900}
901
Kumar Gala0bbaf062005-06-20 10:54:21 -0500902void gfar_start(struct net_device *dev)
903{
904 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600905 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500906 u32 tempval;
907
908 /* Enable Rx and Tx in MACCFG1 */
909 tempval = gfar_read(&regs->maccfg1);
910 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
911 gfar_write(&regs->maccfg1, tempval);
912
913 /* Initialize DMACTRL to have WWR and WOP */
914 tempval = gfar_read(&priv->regs->dmactrl);
915 tempval |= DMACTRL_INIT_SETTINGS;
916 gfar_write(&priv->regs->dmactrl, tempval);
917
Kumar Gala0bbaf062005-06-20 10:54:21 -0500918 /* Make sure we aren't stopped */
919 tempval = gfar_read(&priv->regs->dmactrl);
920 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
921 gfar_write(&priv->regs->dmactrl, tempval);
922
Andy Flemingfef61082006-04-20 16:44:29 -0500923 /* Clear THLT/RHLT, so that the DMA starts polling now */
924 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
925 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
926
Kumar Gala0bbaf062005-06-20 10:54:21 -0500927 /* Unmask the interrupts we look for */
928 gfar_write(&regs->imask, IMASK_DEFAULT);
Dai Haruki12dea572008-12-16 15:30:20 -0800929
930 dev->trans_start = jiffies;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/* Bring the controller up and running */
934int startup_gfar(struct net_device *dev)
935{
936 struct txbd8 *txbdp;
937 struct rxbd8 *rxbdp;
Grant Likelyf9663ae2007-12-01 22:10:03 -0700938 dma_addr_t addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 unsigned long vaddr;
940 int i;
941 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600942 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 int err = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500944 u32 rctrl = 0;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600945 u32 attrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
948
949 /* Allocate memory for the buffer descriptors */
Kumar Gala48268572009-03-18 23:28:22 -0700950 vaddr = (unsigned long) dma_alloc_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 sizeof (struct txbd8) * priv->tx_ring_size +
952 sizeof (struct rxbd8) * priv->rx_ring_size,
953 &addr, GFP_KERNEL);
954
955 if (vaddr == 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500956 if (netif_msg_ifup(priv))
957 printk(KERN_ERR "%s: Could not allocate buffer descriptors!\n",
958 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return -ENOMEM;
960 }
961
962 priv->tx_bd_base = (struct txbd8 *) vaddr;
963
964 /* enet DMA only understands physical addresses */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500965 gfar_write(&regs->tbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /* Start the rx descriptor ring where the tx ring leaves off */
968 addr = addr + sizeof (struct txbd8) * priv->tx_ring_size;
969 vaddr = vaddr + sizeof (struct txbd8) * priv->tx_ring_size;
970 priv->rx_bd_base = (struct rxbd8 *) vaddr;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500971 gfar_write(&regs->rbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 /* Setup the skbuff rings */
974 priv->tx_skbuff =
975 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
976 priv->tx_ring_size, GFP_KERNEL);
977
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400978 if (NULL == priv->tx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500979 if (netif_msg_ifup(priv))
980 printk(KERN_ERR "%s: Could not allocate tx_skbuff\n",
981 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 err = -ENOMEM;
983 goto tx_skb_fail;
984 }
985
986 for (i = 0; i < priv->tx_ring_size; i++)
987 priv->tx_skbuff[i] = NULL;
988
989 priv->rx_skbuff =
990 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
991 priv->rx_ring_size, GFP_KERNEL);
992
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400993 if (NULL == priv->rx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500994 if (netif_msg_ifup(priv))
995 printk(KERN_ERR "%s: Could not allocate rx_skbuff\n",
996 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 err = -ENOMEM;
998 goto rx_skb_fail;
999 }
1000
1001 for (i = 0; i < priv->rx_ring_size; i++)
1002 priv->rx_skbuff[i] = NULL;
1003
1004 /* Initialize some variables in our dev structure */
Dai Haruki4669bc92008-12-17 16:51:04 -08001005 priv->num_txbdfree = priv->tx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
1007 priv->cur_rx = priv->rx_bd_base;
1008 priv->skb_curtx = priv->skb_dirtytx = 0;
1009 priv->skb_currx = 0;
1010
1011 /* Initialize Transmit Descriptor Ring */
1012 txbdp = priv->tx_bd_base;
1013 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki5a5efed2008-12-16 15:34:50 -08001014 txbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 txbdp->bufPtr = 0;
1016 txbdp++;
1017 }
1018
1019 /* Set the last descriptor in the ring to indicate wrap */
1020 txbdp--;
1021 txbdp->status |= TXBD_WRAP;
1022
1023 rxbdp = priv->rx_bd_base;
1024 for (i = 0; i < priv->rx_ring_size; i++) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001025 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Andy Fleming815b97c2008-04-22 17:18:29 -05001027 skb = gfar_new_skb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Andy Fleming815b97c2008-04-22 17:18:29 -05001029 if (!skb) {
1030 printk(KERN_ERR "%s: Can't allocate RX buffers\n",
1031 dev->name);
1032
1033 goto err_rxalloc_fail;
1034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 priv->rx_skbuff[i] = skb;
1037
Andy Fleming815b97c2008-04-22 17:18:29 -05001038 gfar_new_rxbdp(dev, rxbdp, skb);
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 rxbdp++;
1041 }
1042
1043 /* Set the last descriptor in the ring to wrap */
1044 rxbdp--;
1045 rxbdp->status |= RXBD_WRAP;
1046
1047 /* If the device has multiple interrupts, register for
1048 * them. Otherwise, only register for the one */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001049 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001050 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 * Transmit, and Receive */
1052 if (request_irq(priv->interruptError, gfar_error,
Dai Harukic50a5d92008-12-17 16:51:32 -08001053 0, priv->int_name_er, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001054 if (netif_msg_intr(priv))
1055 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1056 dev->name, priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 err = -1;
1059 goto err_irq_fail;
1060 }
1061
1062 if (request_irq(priv->interruptTransmit, gfar_transmit,
Dai Harukic50a5d92008-12-17 16:51:32 -08001063 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001064 if (netif_msg_intr(priv))
1065 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1066 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 err = -1;
1069
1070 goto tx_irq_fail;
1071 }
1072
1073 if (request_irq(priv->interruptReceive, gfar_receive,
Dai Harukic50a5d92008-12-17 16:51:32 -08001074 0, priv->int_name_rx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001075 if (netif_msg_intr(priv))
1076 printk(KERN_ERR "%s: Can't get IRQ %d (receive0)\n",
1077 dev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 err = -1;
1080 goto rx_irq_fail;
1081 }
1082 } else {
1083 if (request_irq(priv->interruptTransmit, gfar_interrupt,
Dai Harukic50a5d92008-12-17 16:51:32 -08001084 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001085 if (netif_msg_intr(priv))
1086 printk(KERN_ERR "%s: Can't get IRQ %d\n",
Dai Harukic50a5d92008-12-17 16:51:32 -08001087 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 err = -1;
1090 goto err_irq_fail;
1091 }
1092 }
1093
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001094 phy_start(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* Configure the coalescing support */
Dai Harukib46a8452008-12-16 15:29:52 -08001097 gfar_write(&regs->txic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (priv->txcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001099 gfar_write(&regs->txic, priv->txic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Dai Harukib46a8452008-12-16 15:29:52 -08001101 gfar_write(&regs->rxic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (priv->rxcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001103 gfar_write(&regs->rxic, priv->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Kumar Gala0bbaf062005-06-20 10:54:21 -05001105 if (priv->rx_csum_enable)
1106 rctrl |= RCTRL_CHECKSUMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Andy Fleming7f7f5312005-11-11 12:38:59 -06001108 if (priv->extended_hash) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001109 rctrl |= RCTRL_EXTHASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Andy Fleming7f7f5312005-11-11 12:38:59 -06001111 gfar_clear_exact_match(dev);
1112 rctrl |= RCTRL_EMEN;
1113 }
1114
Andy Fleming7f7f5312005-11-11 12:38:59 -06001115 if (priv->padding) {
1116 rctrl &= ~RCTRL_PAL_MASK;
1117 rctrl |= RCTRL_PADDING(priv->padding);
1118 }
1119
Kumar Gala0bbaf062005-06-20 10:54:21 -05001120 /* Init rctrl based on our settings */
1121 gfar_write(&priv->regs->rctrl, rctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Kumar Gala0bbaf062005-06-20 10:54:21 -05001123 if (dev->features & NETIF_F_IP_CSUM)
1124 gfar_write(&priv->regs->tctrl, TCTRL_INIT_CSUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Andy Fleming7f7f5312005-11-11 12:38:59 -06001126 /* Set the extraction length and index */
1127 attrs = ATTRELI_EL(priv->rx_stash_size) |
1128 ATTRELI_EI(priv->rx_stash_index);
1129
1130 gfar_write(&priv->regs->attreli, attrs);
1131
1132 /* Start with defaults, and add stashing or locking
1133 * depending on the approprate variables */
1134 attrs = ATTR_INIT_SETTINGS;
1135
1136 if (priv->bd_stash_en)
1137 attrs |= ATTR_BDSTASH;
1138
1139 if (priv->rx_stash_size != 0)
1140 attrs |= ATTR_BUFSTASH;
1141
1142 gfar_write(&priv->regs->attr, attrs);
1143
1144 gfar_write(&priv->regs->fifo_tx_thr, priv->fifo_threshold);
1145 gfar_write(&priv->regs->fifo_tx_starve, priv->fifo_starve);
1146 gfar_write(&priv->regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
1147
1148 /* Start the controller */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001149 gfar_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 return 0;
1152
1153rx_irq_fail:
1154 free_irq(priv->interruptTransmit, dev);
1155tx_irq_fail:
1156 free_irq(priv->interruptError, dev);
1157err_irq_fail:
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001158err_rxalloc_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159rx_skb_fail:
1160 free_skb_resources(priv);
1161tx_skb_fail:
Kumar Gala48268572009-03-18 23:28:22 -07001162 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 sizeof(struct txbd8)*priv->tx_ring_size
1164 + sizeof(struct rxbd8)*priv->rx_ring_size,
1165 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -05001166 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return err;
1169}
1170
1171/* Called when something needs to use the ethernet device */
1172/* Returns 0 for success. */
1173static int gfar_enet_open(struct net_device *dev)
1174{
Li Yang94e8cc32007-10-12 21:53:51 +08001175 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 int err;
1177
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001178 napi_enable(&priv->napi);
1179
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001180 skb_queue_head_init(&priv->rx_recycle);
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /* Initialize a bunch of registers */
1183 init_registers(dev);
1184
1185 gfar_set_mac_address(dev);
1186
1187 err = init_phy(dev);
1188
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001189 if(err) {
1190 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001195 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001196 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001197 return err;
1198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 netif_start_queue(dev);
1201
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001202 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return err;
1205}
1206
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001207static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001208{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001209 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07001210
1211 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001212
Kumar Gala0bbaf062005-06-20 10:54:21 -05001213 return fcb;
1214}
1215
1216static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1217{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001218 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001219
1220 /* If we're here, it's a IP packet with a TCP or UDP
1221 * payload. We set it to checksum, using a pseudo-header
1222 * we provide
1223 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001224 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001225
Andy Fleming7f7f5312005-11-11 12:38:59 -06001226 /* Tell the controller what the protocol is */
1227 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001228 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001229 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001230 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001231 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001232 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001233
1234 /* l3os is the distance between the start of the
1235 * frame (skb->data) and the start of the IP hdr.
1236 * l4os is the distance between the start of the
1237 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001238 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001239 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001240
Andy Fleming7f7f5312005-11-11 12:38:59 -06001241 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001242}
1243
Andy Fleming7f7f5312005-11-11 12:38:59 -06001244void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001245{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001246 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001247 fcb->vlctl = vlan_tx_tag_get(skb);
1248}
1249
Dai Haruki4669bc92008-12-17 16:51:04 -08001250static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
1251 struct txbd8 *base, int ring_size)
1252{
1253 struct txbd8 *new_bd = bdp + stride;
1254
1255 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
1256}
1257
1258static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
1259 int ring_size)
1260{
1261 return skip_txbd(bdp, 1, base, ring_size);
1262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264/* This is called by the kernel when a frame is ready for transmission. */
1265/* It is pointed to by the dev->hard_start_xmit function pointer */
1266static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1267{
1268 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001269 struct txfcb *fcb = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08001270 struct txbd8 *txbdp, *txbdp_start, *base;
Dai Haruki5a5efed2008-12-16 15:34:50 -08001271 u32 lstatus;
Dai Haruki4669bc92008-12-17 16:51:04 -08001272 int i;
1273 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05001274 unsigned long flags;
Dai Haruki4669bc92008-12-17 16:51:04 -08001275 unsigned int nr_frags, length;
1276
1277 base = priv->tx_bd_base;
1278
Li Yang5b28bea2009-03-27 15:54:30 -07001279 /* make space for additional header when fcb is needed */
1280 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
1281 (priv->vlgrp && vlan_tx_tag_present(skb))) &&
1282 (skb_headroom(skb) < GMAC_FCB_LEN)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001283 struct sk_buff *skb_new;
1284
1285 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
1286 if (!skb_new) {
1287 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07001288 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001289 return NETDEV_TX_OK;
1290 }
1291 kfree_skb(skb);
1292 skb = skb_new;
1293 }
1294
Dai Haruki4669bc92008-12-17 16:51:04 -08001295 /* total number of fragments in the SKB */
1296 nr_frags = skb_shinfo(skb)->nr_frags;
1297
1298 spin_lock_irqsave(&priv->txlock, flags);
1299
1300 /* check if there is space to queue this packet */
Rini van Zetten7958a452009-02-27 03:18:48 -08001301 if ((nr_frags+1) > priv->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001302 /* no space, stop the queue */
1303 netif_stop_queue(dev);
1304 dev->stats.tx_fifo_errors++;
1305 spin_unlock_irqrestore(&priv->txlock, flags);
1306 return NETDEV_TX_BUSY;
1307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001310 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Dai Haruki4669bc92008-12-17 16:51:04 -08001312 txbdp = txbdp_start = priv->cur_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Dai Haruki4669bc92008-12-17 16:51:04 -08001314 if (nr_frags == 0) {
1315 lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1316 } else {
1317 /* Place the fragment addresses and lengths into the TxBDs */
1318 for (i = 0; i < nr_frags; i++) {
1319 /* Point at the next BD, wrapping as needed */
1320 txbdp = next_txbd(txbdp, base, priv->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Dai Haruki4669bc92008-12-17 16:51:04 -08001322 length = skb_shinfo(skb)->frags[i].size;
1323
1324 lstatus = txbdp->lstatus | length |
1325 BD_LFLAG(TXBD_READY);
1326
1327 /* Handle the last BD specially */
1328 if (i == nr_frags - 1)
1329 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1330
Kumar Gala48268572009-03-18 23:28:22 -07001331 bufaddr = dma_map_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001332 skb_shinfo(skb)->frags[i].page,
1333 skb_shinfo(skb)->frags[i].page_offset,
1334 length,
1335 DMA_TO_DEVICE);
1336
1337 /* set the TxBD length and buffer pointer */
1338 txbdp->bufPtr = bufaddr;
1339 txbdp->lstatus = lstatus;
1340 }
1341
1342 lstatus = txbdp_start->lstatus;
1343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Kumar Gala0bbaf062005-06-20 10:54:21 -05001345 /* Set up checksumming */
Dai Haruki12dea572008-12-16 15:30:20 -08001346 if (CHECKSUM_PARTIAL == skb->ip_summed) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001347 fcb = gfar_add_fcb(skb);
1348 lstatus |= BD_LFLAG(TXBD_TOE);
1349 gfar_tx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001350 }
1351
Dai Haruki77ecaf22008-12-16 15:30:48 -08001352 if (priv->vlgrp && vlan_tx_tag_present(skb)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001353 if (unlikely(NULL == fcb)) {
1354 fcb = gfar_add_fcb(skb);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001355 lstatus |= BD_LFLAG(TXBD_TOE);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001356 }
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001357
1358 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001359 }
1360
Dai Haruki4669bc92008-12-17 16:51:04 -08001361 /* setup the TxBD length and buffer pointer for the first BD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 priv->tx_skbuff[priv->skb_curtx] = skb;
Kumar Gala48268572009-03-18 23:28:22 -07001363 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Dai Haruki4669bc92008-12-17 16:51:04 -08001364 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Dai Haruki4669bc92008-12-17 16:51:04 -08001366 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Dai Haruki4669bc92008-12-17 16:51:04 -08001368 /*
1369 * The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05001370 * semantics (it requires synchronization between cacheable and
1371 * uncacheable mappings, which eieio doesn't provide and which we
1372 * don't need), thus requiring a more expensive sync instruction. At
1373 * some point, the set of architecture-independent barrier functions
1374 * should be expanded to include weaker barriers.
1375 */
Scott Wood3b6330c2007-05-16 15:06:59 -05001376 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001377
Dai Haruki4669bc92008-12-17 16:51:04 -08001378 txbdp_start->lstatus = lstatus;
1379
1380 /* Update the current skb pointer to the next entry we will use
1381 * (wrapping if necessary) */
1382 priv->skb_curtx = (priv->skb_curtx + 1) &
1383 TX_RING_MOD_MASK(priv->tx_ring_size);
1384
1385 priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size);
1386
1387 /* reduce TxBD free count */
1388 priv->num_txbdfree -= (nr_frags + 1);
1389
1390 dev->trans_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /* If the next BD still needs to be cleaned up, then the bds
1393 are full. We need to tell the kernel to stop sending us stuff. */
Dai Haruki4669bc92008-12-17 16:51:04 -08001394 if (!priv->num_txbdfree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 netif_stop_queue(dev);
1396
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001397 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 /* Tell the DMA to go go go */
1401 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1402
1403 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001404 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001406 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409/* Stops the kernel queue, and halts the controller */
1410static int gfar_close(struct net_device *dev)
1411{
1412 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001413
1414 napi_disable(&priv->napi);
1415
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001416 skb_queue_purge(&priv->rx_recycle);
Sebastian Siewiorab939902008-08-19 21:12:45 +02001417 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 stop_gfar(dev);
1419
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001420 /* Disconnect from the PHY */
1421 phy_disconnect(priv->phydev);
1422 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 netif_stop_queue(dev);
1425
1426 return 0;
1427}
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001430static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001432 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 return 0;
1435}
1436
1437
Kumar Gala0bbaf062005-06-20 10:54:21 -05001438/* Enables and disables VLAN insertion/extraction */
1439static void gfar_vlan_rx_register(struct net_device *dev,
1440 struct vlan_group *grp)
1441{
1442 struct gfar_private *priv = netdev_priv(dev);
1443 unsigned long flags;
1444 u32 tempval;
1445
Andy Flemingfef61082006-04-20 16:44:29 -05001446 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001447
Anton Vorontsovcd1f55a2009-01-26 14:33:23 -08001448 priv->vlgrp = grp;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001449
1450 if (grp) {
1451 /* Enable VLAN tag insertion */
1452 tempval = gfar_read(&priv->regs->tctrl);
1453 tempval |= TCTRL_VLINS;
1454
1455 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001456
Kumar Gala0bbaf062005-06-20 10:54:21 -05001457 /* Enable VLAN tag extraction */
1458 tempval = gfar_read(&priv->regs->rctrl);
1459 tempval |= RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001460 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001461 gfar_write(&priv->regs->rctrl, tempval);
1462 } else {
1463 /* Disable VLAN tag insertion */
1464 tempval = gfar_read(&priv->regs->tctrl);
1465 tempval &= ~TCTRL_VLINS;
1466 gfar_write(&priv->regs->tctrl, tempval);
1467
1468 /* Disable VLAN tag extraction */
1469 tempval = gfar_read(&priv->regs->rctrl);
1470 tempval &= ~RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001471 /* If parse is no longer required, then disable parser */
1472 if (tempval & RCTRL_REQ_PARSER)
1473 tempval |= RCTRL_PRSDEP_INIT;
1474 else
1475 tempval &= ~RCTRL_PRSDEP_INIT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001476 gfar_write(&priv->regs->rctrl, tempval);
1477 }
1478
Dai Haruki77ecaf22008-12-16 15:30:48 -08001479 gfar_change_mtu(dev, dev->mtu);
1480
Andy Flemingfef61082006-04-20 16:44:29 -05001481 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001482}
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1485{
1486 int tempsize, tempval;
1487 struct gfar_private *priv = netdev_priv(dev);
1488 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001489 int frame_size = new_mtu + ETH_HLEN;
1490
Dai Haruki77ecaf22008-12-16 15:30:48 -08001491 if (priv->vlgrp)
Dai Harukifaa89572008-03-24 10:53:26 -05001492 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001495 if (netif_msg_drv(priv))
1496 printk(KERN_ERR "%s: Invalid MTU setting\n",
1497 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 return -EINVAL;
1499 }
1500
Dai Haruki77ecaf22008-12-16 15:30:48 -08001501 if (gfar_uses_fcb(priv))
1502 frame_size += GMAC_FCB_LEN;
1503
1504 frame_size += priv->padding;
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 tempsize =
1507 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1508 INCREMENTAL_BUFFER_SIZE;
1509
1510 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001511 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1513 stop_gfar(dev);
1514
1515 priv->rx_buffer_size = tempsize;
1516
1517 dev->mtu = new_mtu;
1518
1519 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1520 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1521
1522 /* If the mtu is larger than the max size for standard
1523 * ethernet frames (ie, a jumbo frame), then set maccfg2
1524 * to allow huge frames, and to check the length */
1525 tempval = gfar_read(&priv->regs->maccfg2);
1526
1527 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1528 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1529 else
1530 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1531
1532 gfar_write(&priv->regs->maccfg2, tempval);
1533
1534 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1535 startup_gfar(dev);
1536
1537 return 0;
1538}
1539
Sebastian Siewiorab939902008-08-19 21:12:45 +02001540/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 * transmitted after a set amount of time.
1542 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02001543 * starting over will fix the problem.
1544 */
1545static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Sebastian Siewiorab939902008-08-19 21:12:45 +02001547 struct gfar_private *priv = container_of(work, struct gfar_private,
1548 reset_task);
Kumar Gala48268572009-03-18 23:28:22 -07001549 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 if (dev->flags & IFF_UP) {
Markus Brunnercbea27072009-04-15 02:35:40 -07001552 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 stop_gfar(dev);
1554 startup_gfar(dev);
Markus Brunnercbea27072009-04-15 02:35:40 -07001555 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557
David S. Miller263ba322008-07-15 03:47:41 -07001558 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
Sebastian Siewiorab939902008-08-19 21:12:45 +02001561static void gfar_timeout(struct net_device *dev)
1562{
1563 struct gfar_private *priv = netdev_priv(dev);
1564
1565 dev->stats.tx_errors++;
1566 schedule_work(&priv->reset_task);
1567}
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001570static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Dai Harukid080cd62008-04-09 19:37:51 -05001572 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001573 struct txbd8 *bdp;
1574 struct txbd8 *lbdp = NULL;
1575 struct txbd8 *base = priv->tx_bd_base;
1576 struct sk_buff *skb;
1577 int skb_dirtytx;
1578 int tx_ring_size = priv->tx_ring_size;
1579 int frags = 0;
1580 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05001581 int howmany = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08001582 u32 lstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 bdp = priv->dirty_tx;
Dai Haruki4669bc92008-12-17 16:51:04 -08001585 skb_dirtytx = priv->skb_dirtytx;
1586
1587 while ((skb = priv->tx_skbuff[skb_dirtytx])) {
1588 frags = skb_shinfo(skb)->nr_frags;
1589 lbdp = skip_txbd(bdp, frags, base, tx_ring_size);
1590
1591 lstatus = lbdp->lstatus;
1592
1593 /* Only clean completed frames */
1594 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
1595 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 break;
1597
Kumar Gala48268572009-03-18 23:28:22 -07001598 dma_unmap_single(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001599 bdp->bufPtr,
1600 bdp->length,
1601 DMA_TO_DEVICE);
1602
1603 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1604 bdp = next_txbd(bdp, base, tx_ring_size);
1605
1606 for (i = 0; i < frags; i++) {
Kumar Gala48268572009-03-18 23:28:22 -07001607 dma_unmap_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001608 bdp->bufPtr,
1609 bdp->length,
1610 DMA_TO_DEVICE);
1611 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1612 bdp = next_txbd(bdp, base, tx_ring_size);
1613 }
1614
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001615 /*
1616 * If there's room in the queue (limit it to rx_buffer_size)
1617 * we add this skb back into the pool, if it's the right size
1618 */
1619 if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size &&
1620 skb_recycle_check(skb, priv->rx_buffer_size +
1621 RXBUF_ALIGNMENT))
1622 __skb_queue_head(&priv->rx_recycle, skb);
1623 else
1624 dev_kfree_skb_any(skb);
1625
Dai Haruki4669bc92008-12-17 16:51:04 -08001626 priv->tx_skbuff[skb_dirtytx] = NULL;
1627
1628 skb_dirtytx = (skb_dirtytx + 1) &
1629 TX_RING_MOD_MASK(tx_ring_size);
1630
Dai Harukid080cd62008-04-09 19:37:51 -05001631 howmany++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001632 priv->num_txbdfree += frags + 1;
1633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Dai Haruki4669bc92008-12-17 16:51:04 -08001635 /* If we freed a buffer, we can restart transmission, if necessary */
1636 if (netif_queue_stopped(dev) && priv->num_txbdfree)
1637 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Dai Haruki4669bc92008-12-17 16:51:04 -08001639 /* Update dirty indicators */
1640 priv->skb_dirtytx = skb_dirtytx;
1641 priv->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Dai Harukid080cd62008-04-09 19:37:51 -05001643 dev->stats.tx_packets += howmany;
1644
1645 return howmany;
1646}
1647
Dai Haruki8c7396a2008-12-17 16:52:00 -08001648static void gfar_schedule_cleanup(struct net_device *dev)
1649{
1650 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001651 unsigned long flags;
1652
1653 spin_lock_irqsave(&priv->txlock, flags);
1654 spin_lock(&priv->rxlock);
1655
Ben Hutchings288379f2009-01-19 16:43:59 -08001656 if (napi_schedule_prep(&priv->napi)) {
Dai Haruki8c7396a2008-12-17 16:52:00 -08001657 gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED);
Ben Hutchings288379f2009-01-19 16:43:59 -08001658 __napi_schedule(&priv->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08001659 } else {
1660 /*
1661 * Clear IEVENT, so interrupts aren't called again
1662 * because of the packets that have already arrived.
1663 */
1664 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001665 }
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001666
1667 spin_unlock(&priv->rxlock);
1668 spin_unlock_irqrestore(&priv->txlock, flags);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001669}
1670
Dai Harukid080cd62008-04-09 19:37:51 -05001671/* Interrupt Handler for Transmit complete */
1672static irqreturn_t gfar_transmit(int irq, void *dev_id)
1673{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001674 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return IRQ_HANDLED;
1676}
1677
Andy Fleming815b97c2008-04-22 17:18:29 -05001678static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1679 struct sk_buff *skb)
1680{
1681 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001682 u32 lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001683
Kumar Gala48268572009-03-18 23:28:22 -07001684 bdp->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Andy Fleming815b97c2008-04-22 17:18:29 -05001685 priv->rx_buffer_size, DMA_FROM_DEVICE);
1686
Dai Haruki5a5efed2008-12-16 15:34:50 -08001687 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Andy Fleming815b97c2008-04-22 17:18:29 -05001688
1689 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
Dai Haruki5a5efed2008-12-16 15:34:50 -08001690 lstatus |= BD_LFLAG(RXBD_WRAP);
Andy Fleming815b97c2008-04-22 17:18:29 -05001691
1692 eieio();
1693
Dai Haruki5a5efed2008-12-16 15:34:50 -08001694 bdp->lstatus = lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001695}
1696
1697
1698struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001700 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 struct gfar_private *priv = netdev_priv(dev);
1702 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001704 skb = __skb_dequeue(&priv->rx_recycle);
1705 if (!skb)
1706 skb = netdev_alloc_skb(dev,
1707 priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Andy Fleming815b97c2008-04-22 17:18:29 -05001709 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return NULL;
1711
Andy Fleming7f7f5312005-11-11 12:38:59 -06001712 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001713 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 /* We need the data buffer to be aligned properly. We will reserve
1716 * as many bytes as needed to align the data properly
1717 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001718 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return skb;
1721}
1722
Li Yang298e1a92007-10-16 14:18:13 +08001723static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Li Yang298e1a92007-10-16 14:18:13 +08001725 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001726 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 struct gfar_extra_stats *estats = &priv->extra_stats;
1728
1729 /* If the packet was truncated, none of the other errors
1730 * matter */
1731 if (status & RXBD_TRUNCATED) {
1732 stats->rx_length_errors++;
1733
1734 estats->rx_trunc++;
1735
1736 return;
1737 }
1738 /* Count the errors, if there were any */
1739 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1740 stats->rx_length_errors++;
1741
1742 if (status & RXBD_LARGE)
1743 estats->rx_large++;
1744 else
1745 estats->rx_short++;
1746 }
1747 if (status & RXBD_NONOCTET) {
1748 stats->rx_frame_errors++;
1749 estats->rx_nonoctet++;
1750 }
1751 if (status & RXBD_CRCERR) {
1752 estats->rx_crcerr++;
1753 stats->rx_crc_errors++;
1754 }
1755 if (status & RXBD_OVERRUN) {
1756 estats->rx_overrun++;
1757 stats->rx_crc_errors++;
1758 }
1759}
1760
David Howells7d12e782006-10-05 14:55:46 +01001761irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001763 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return IRQ_HANDLED;
1765}
1766
Kumar Gala0bbaf062005-06-20 10:54:21 -05001767static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1768{
1769 /* If valid headers were found, and valid sums
1770 * were verified, then we tell the kernel that no
1771 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001772 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001773 skb->ip_summed = CHECKSUM_UNNECESSARY;
1774 else
1775 skb->ip_summed = CHECKSUM_NONE;
1776}
1777
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779/* gfar_process_frame() -- handle one incoming packet if skb
1780 * isn't NULL. */
1781static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Dai Haruki2c2db482008-12-16 15:31:15 -08001782 int amount_pull)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
1784 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001785 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Dai Haruki2c2db482008-12-16 15:31:15 -08001787 int ret;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001788
Dai Haruki2c2db482008-12-16 15:31:15 -08001789 /* fcb is at the beginning if exists */
1790 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Dai Haruki2c2db482008-12-16 15:31:15 -08001792 /* Remove the FCB from the skb */
1793 /* Remove the padded bytes, if there are any */
1794 if (amount_pull)
1795 skb_pull(skb, amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001796
Dai Haruki2c2db482008-12-16 15:31:15 -08001797 if (priv->rx_csum_enable)
1798 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001799
Dai Haruki2c2db482008-12-16 15:31:15 -08001800 /* Tell the skb what kind of packet this is */
1801 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001802
Dai Haruki2c2db482008-12-16 15:31:15 -08001803 /* Send the packet up the stack */
1804 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN)))
1805 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl);
1806 else
1807 ret = netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Dai Haruki2c2db482008-12-16 15:31:15 -08001809 if (NET_RX_DROP == ret)
1810 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 return 0;
1813}
1814
1815/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001816 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 * of frames handled
1818 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001819int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Andy Fleming31de1982008-12-16 15:33:40 -08001821 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08001823 int pkt_len;
1824 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 int howmany = 0;
1826 struct gfar_private *priv = netdev_priv(dev);
1827
1828 /* Get the first full descriptor */
1829 bdp = priv->cur_rx;
Andy Fleming31de1982008-12-16 15:33:40 -08001830 base = priv->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Dai Haruki2c2db482008-12-16 15:31:15 -08001832 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) +
1833 priv->padding;
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001836 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001837 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001838
1839 /* Add another skb for the future */
1840 newskb = gfar_new_skb(dev);
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 skb = priv->rx_skbuff[priv->skb_currx];
1843
Kumar Gala48268572009-03-18 23:28:22 -07001844 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
Andy Fleming81183052008-11-12 10:07:11 -06001845 priv->rx_buffer_size, DMA_FROM_DEVICE);
1846
Andy Fleming815b97c2008-04-22 17:18:29 -05001847 /* We drop the frame if we failed to allocate a new buffer */
1848 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1849 bdp->status & RXBD_ERR)) {
1850 count_errors(bdp->status, dev);
1851
1852 if (unlikely(!newskb))
1853 newskb = skb;
Andy Fleming8882d9a2008-12-17 16:50:22 -08001854 else if (skb)
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001855 __skb_queue_head(&priv->rx_recycle, skb);
Andy Fleming815b97c2008-04-22 17:18:29 -05001856 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001858 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 howmany++;
1860
Dai Haruki2c2db482008-12-16 15:31:15 -08001861 if (likely(skb)) {
1862 pkt_len = bdp->length - ETH_FCS_LEN;
1863 /* Remove the FCS from the packet length */
1864 skb_put(skb, pkt_len);
1865 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Andy Fleming1577ece2009-02-04 16:42:12 -08001867 if (in_irq() || irqs_disabled())
1868 printk("Interrupt problem!\n");
Dai Haruki2c2db482008-12-16 15:31:15 -08001869 gfar_process_frame(dev, skb, amount_pull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Dai Haruki2c2db482008-12-16 15:31:15 -08001871 } else {
1872 if (netif_msg_rx_err(priv))
1873 printk(KERN_WARNING
1874 "%s: Missing skb!\n", dev->name);
1875 dev->stats.rx_dropped++;
1876 priv->extra_stats.rx_skbmissing++;
1877 }
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880
Andy Fleming815b97c2008-04-22 17:18:29 -05001881 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Andy Fleming815b97c2008-04-22 17:18:29 -05001883 /* Setup the new bdp */
1884 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 /* Update to the next pointer */
Andy Fleming31de1982008-12-16 15:33:40 -08001887 bdp = next_bd(bdp, base, priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 /* update to point at the next skb */
1890 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001891 (priv->skb_currx + 1) &
1892 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
1894
1895 /* Update the current rxbd pointer to be the next one */
1896 priv->cur_rx = bdp;
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return howmany;
1899}
1900
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001901static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001903 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
Kumar Gala48268572009-03-18 23:28:22 -07001904 struct net_device *dev = priv->ndev;
Andy Fleming42199882008-12-17 16:52:30 -08001905 int tx_cleaned = 0;
1906 int rx_cleaned = 0;
Dai Harukid080cd62008-04-09 19:37:51 -05001907 unsigned long flags;
1908
Dai Haruki8c7396a2008-12-17 16:52:00 -08001909 /* Clear IEVENT, so interrupts aren't called again
1910 * because of the packets that have already arrived */
1911 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1912
Dai Harukid080cd62008-04-09 19:37:51 -05001913 /* If we fail to get the lock, don't bother with the TX BDs */
1914 if (spin_trylock_irqsave(&priv->txlock, flags)) {
Andy Fleming42199882008-12-17 16:52:30 -08001915 tx_cleaned = gfar_clean_tx_ring(dev);
Dai Harukid080cd62008-04-09 19:37:51 -05001916 spin_unlock_irqrestore(&priv->txlock, flags);
1917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Andy Fleming42199882008-12-17 16:52:30 -08001919 rx_cleaned = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Andy Fleming42199882008-12-17 16:52:30 -08001921 if (tx_cleaned)
1922 return budget;
1923
1924 if (rx_cleaned < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001925 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 /* Clear the halt bit in RSTAT */
1928 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
1929
1930 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
1931
1932 /* If we are coalescing interrupts, update the timer */
1933 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001934 if (likely(priv->rxcoalescing)) {
1935 gfar_write(&priv->regs->rxic, 0);
Dai Harukib46a8452008-12-16 15:29:52 -08001936 gfar_write(&priv->regs->rxic, priv->rxic);
Andy Fleming2f448912008-03-24 10:53:28 -05001937 }
Dai Haruki8c7396a2008-12-17 16:52:00 -08001938 if (likely(priv->txcoalescing)) {
1939 gfar_write(&priv->regs->txic, 0);
1940 gfar_write(&priv->regs->txic, priv->txic);
1941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943
Andy Fleming42199882008-12-17 16:52:30 -08001944 return rx_cleaned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001947#ifdef CONFIG_NET_POLL_CONTROLLER
1948/*
1949 * Polling 'interrupt' - used by things like netconsole to send skbs
1950 * without having to re-enable interrupts. It's not called while
1951 * the interrupt routine is executing.
1952 */
1953static void gfar_netpoll(struct net_device *dev)
1954{
1955 struct gfar_private *priv = netdev_priv(dev);
1956
1957 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001958 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001959 disable_irq(priv->interruptTransmit);
1960 disable_irq(priv->interruptReceive);
1961 disable_irq(priv->interruptError);
1962 gfar_interrupt(priv->interruptTransmit, dev);
1963 enable_irq(priv->interruptError);
1964 enable_irq(priv->interruptReceive);
1965 enable_irq(priv->interruptTransmit);
1966 } else {
1967 disable_irq(priv->interruptTransmit);
1968 gfar_interrupt(priv->interruptTransmit, dev);
1969 enable_irq(priv->interruptTransmit);
1970 }
1971}
1972#endif
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01001975static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
1977 struct net_device *dev = dev_id;
1978 struct gfar_private *priv = netdev_priv(dev);
1979
1980 /* Save ievent for future reference */
1981 u32 events = gfar_read(&priv->regs->ievent);
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001984 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001985 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001988 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001989 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001991 /* Check for errors */
1992 if (events & IEVENT_ERR_MASK)
1993 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 return IRQ_HANDLED;
1996}
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998/* Called every time the controller might need to be made
1999 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002000 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 * function converts those variables into the appropriate
2002 * register values, and can bring down the device if needed.
2003 */
2004static void adjust_link(struct net_device *dev)
2005{
2006 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002007 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002008 unsigned long flags;
2009 struct phy_device *phydev = priv->phydev;
2010 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Andy Flemingfef61082006-04-20 16:44:29 -05002012 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002013 if (phydev->link) {
2014 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002015 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /* Now we make sure that we can be in full duplex mode.
2018 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002019 if (phydev->duplex != priv->oldduplex) {
2020 new_state = 1;
2021 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002023 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002026 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002029 if (phydev->speed != priv->oldspeed) {
2030 new_state = 1;
2031 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 tempval =
2034 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08002035
2036 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 break;
2038 case 100:
2039 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 tempval =
2041 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002042
2043 /* Reduced mode distinguishes
2044 * between 10 and 100 */
2045 if (phydev->speed == SPEED_100)
2046 ecntrl |= ECNTRL_R100;
2047 else
2048 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 break;
2050 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05002051 if (netif_msg_link(priv))
2052 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002053 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2054 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 break;
2056 }
2057
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002058 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002061 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002062 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002065 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002068 } else if (priv->oldlink) {
2069 new_state = 1;
2070 priv->oldlink = 0;
2071 priv->oldspeed = 0;
2072 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002075 if (new_state && netif_msg_link(priv))
2076 phy_print_status(phydev);
2077
Andy Flemingfef61082006-04-20 16:44:29 -05002078 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002079}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081/* Update the hash table based on the current list of multicast
2082 * addresses we subscribe to. Also, change the promiscuity of
2083 * the device based on the flags (this function is called
2084 * whenever dev->flags is changed */
2085static void gfar_set_multi(struct net_device *dev)
2086{
2087 struct dev_mc_list *mc_ptr;
2088 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002089 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 u32 tempval;
2091
2092 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 /* Set RCTRL to PROM */
2094 tempval = gfar_read(&regs->rctrl);
2095 tempval |= RCTRL_PROM;
2096 gfar_write(&regs->rctrl, tempval);
2097 } else {
2098 /* Set RCTRL to not PROM */
2099 tempval = gfar_read(&regs->rctrl);
2100 tempval &= ~(RCTRL_PROM);
2101 gfar_write(&regs->rctrl, tempval);
2102 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if(dev->flags & IFF_ALLMULTI) {
2105 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002106 gfar_write(&regs->igaddr0, 0xffffffff);
2107 gfar_write(&regs->igaddr1, 0xffffffff);
2108 gfar_write(&regs->igaddr2, 0xffffffff);
2109 gfar_write(&regs->igaddr3, 0xffffffff);
2110 gfar_write(&regs->igaddr4, 0xffffffff);
2111 gfar_write(&regs->igaddr5, 0xffffffff);
2112 gfar_write(&regs->igaddr6, 0xffffffff);
2113 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 gfar_write(&regs->gaddr0, 0xffffffff);
2115 gfar_write(&regs->gaddr1, 0xffffffff);
2116 gfar_write(&regs->gaddr2, 0xffffffff);
2117 gfar_write(&regs->gaddr3, 0xffffffff);
2118 gfar_write(&regs->gaddr4, 0xffffffff);
2119 gfar_write(&regs->gaddr5, 0xffffffff);
2120 gfar_write(&regs->gaddr6, 0xffffffff);
2121 gfar_write(&regs->gaddr7, 0xffffffff);
2122 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002123 int em_num;
2124 int idx;
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002127 gfar_write(&regs->igaddr0, 0x0);
2128 gfar_write(&regs->igaddr1, 0x0);
2129 gfar_write(&regs->igaddr2, 0x0);
2130 gfar_write(&regs->igaddr3, 0x0);
2131 gfar_write(&regs->igaddr4, 0x0);
2132 gfar_write(&regs->igaddr5, 0x0);
2133 gfar_write(&regs->igaddr6, 0x0);
2134 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 gfar_write(&regs->gaddr0, 0x0);
2136 gfar_write(&regs->gaddr1, 0x0);
2137 gfar_write(&regs->gaddr2, 0x0);
2138 gfar_write(&regs->gaddr3, 0x0);
2139 gfar_write(&regs->gaddr4, 0x0);
2140 gfar_write(&regs->gaddr5, 0x0);
2141 gfar_write(&regs->gaddr6, 0x0);
2142 gfar_write(&regs->gaddr7, 0x0);
2143
Andy Fleming7f7f5312005-11-11 12:38:59 -06002144 /* If we have extended hash tables, we need to
2145 * clear the exact match registers to prepare for
2146 * setting them */
2147 if (priv->extended_hash) {
2148 em_num = GFAR_EM_NUM + 1;
2149 gfar_clear_exact_match(dev);
2150 idx = 1;
2151 } else {
2152 idx = 0;
2153 em_num = 0;
2154 }
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if(dev->mc_count == 0)
2157 return;
2158
2159 /* Parse the list, and set the appropriate bits */
2160 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002161 if (idx < em_num) {
2162 gfar_set_mac_for_addr(dev, idx,
2163 mc_ptr->dmi_addr);
2164 idx++;
2165 } else
2166 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 }
2168 }
2169
2170 return;
2171}
2172
Andy Fleming7f7f5312005-11-11 12:38:59 -06002173
2174/* Clears each of the exact match registers to zero, so they
2175 * don't interfere with normal reception */
2176static void gfar_clear_exact_match(struct net_device *dev)
2177{
2178 int idx;
2179 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
2180
2181 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
2182 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
2183}
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185/* Set the appropriate hash bit for the given addr */
2186/* The algorithm works like so:
2187 * 1) Take the Destination Address (ie the multicast address), and
2188 * do a CRC on it (little endian), and reverse the bits of the
2189 * result.
2190 * 2) Use the 8 most significant bits as a hash into a 256-entry
2191 * table. The table is controlled through 8 32-bit registers:
2192 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
2193 * gaddr7. This means that the 3 most significant bits in the
2194 * hash index which gaddr register to use, and the 5 other bits
2195 * indicate which bit (assuming an IBM numbering scheme, which
2196 * for PowerPC (tm) is usually the case) in the register holds
2197 * the entry. */
2198static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
2199{
2200 u32 tempval;
2201 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002203 int width = priv->hash_width;
2204 u8 whichbit = (result >> (32 - width)) & 0x1f;
2205 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 u32 value = (1 << (31-whichbit));
2207
Kumar Gala0bbaf062005-06-20 10:54:21 -05002208 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002210 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 return;
2213}
2214
Andy Fleming7f7f5312005-11-11 12:38:59 -06002215
2216/* There are multiple MAC Address register pairs on some controllers
2217 * This function sets the numth pair to a given address
2218 */
2219static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
2220{
2221 struct gfar_private *priv = netdev_priv(dev);
2222 int idx;
2223 char tmpbuf[MAC_ADDR_LEN];
2224 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06002225 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002226
2227 macptr += num*2;
2228
2229 /* Now copy it into the mac registers backwards, cuz */
2230 /* little endian is silly */
2231 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2232 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2233
2234 gfar_write(macptr, *((u32 *) (tmpbuf)));
2235
2236 tempval = *((u32 *) (tmpbuf + 4));
2237
2238 gfar_write(macptr+1, tempval);
2239}
2240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002242static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 struct net_device *dev = dev_id;
2245 struct gfar_private *priv = netdev_priv(dev);
2246
2247 /* Save ievent for future reference */
2248 u32 events = gfar_read(&priv->regs->ievent);
2249
2250 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002251 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2252
2253 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002254 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05002255 (events & IEVENT_MAG))
2256 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002259 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2260 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002261 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 /* Update the error counters */
2264 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002265 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002268 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002270 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002272 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002273 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2274 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002275 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 priv->extra_stats.tx_underrun++;
2277
2278 /* Reactivate the Tx Queues */
2279 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2280 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002281 if (netif_msg_tx_err(priv))
2282 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
2284 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002285 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 priv->extra_stats.rx_bsy++;
2287
David Howells7d12e782006-10-05 14:55:46 +01002288 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Kumar Gala0bbaf062005-06-20 10:54:21 -05002290 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002291 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2292 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
2294 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002295 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 priv->extra_stats.rx_babr++;
2297
Kumar Gala0bbaf062005-06-20 10:54:21 -05002298 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002299 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301 if (events & IEVENT_EBERR) {
2302 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002303 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002304 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002306 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002307 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309 if (events & IEVENT_BABT) {
2310 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002311 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002312 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
2314 return IRQ_HANDLED;
2315}
2316
Kay Sievers72abb462008-04-18 13:50:44 -07002317/* work with hotplug and coldplug */
2318MODULE_ALIAS("platform:fsl-gianfar");
2319
Andy Flemingb31a1d82008-12-16 15:29:15 -08002320static struct of_device_id gfar_match[] =
2321{
2322 {
2323 .type = "network",
2324 .compatible = "gianfar",
2325 },
2326 {},
2327};
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329/* Structure for a device driver */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002330static struct of_platform_driver gfar_driver = {
2331 .name = "fsl-gianfar",
2332 .match_table = gfar_match,
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 .probe = gfar_probe,
2335 .remove = gfar_remove,
Scott Woodd87eb122008-07-11 18:04:45 -05002336 .suspend = gfar_suspend,
2337 .resume = gfar_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338};
2339
2340static int __init gfar_init(void)
2341{
Andy Fleming1577ece2009-02-04 16:42:12 -08002342 return of_register_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
2345static void __exit gfar_exit(void)
2346{
Andy Flemingb31a1d82008-12-16 15:29:15 -08002347 of_unregister_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348}
2349
2350module_init(gfar_init);
2351module_exit(gfar_exit);
2352