blob: 4544da4cf3ce1a406ea186de8dcea9bd669b1d96 [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,
Ben Hutchings240c1022009-07-09 17:54:35 +0000159 .ndo_set_mac_address = eth_mac_addr,
160 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000161#ifdef CONFIG_NET_POLL_CONTROLLER
162 .ndo_poll_controller = gfar_netpoll,
163#endif
164};
165
Andy Fleming7f7f5312005-11-11 12:38:59 -0600166/* Returns 1 if incoming frames use an FCB */
167static inline int gfar_uses_fcb(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500168{
Dai Haruki77ecaf22008-12-16 15:30:48 -0800169 return priv->vlgrp || priv->rx_csum_enable;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500170}
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400171
Andy Flemingb31a1d82008-12-16 15:29:15 -0800172static int gfar_of_init(struct net_device *dev)
173{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800174 const char *model;
175 const char *ctype;
176 const void *mac_addr;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800177 u64 addr, size;
178 int err = 0;
179 struct gfar_private *priv = netdev_priv(dev);
180 struct device_node *np = priv->node;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800181 const u32 *stash;
182 const u32 *stash_len;
183 const u32 *stash_idx;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800184
185 if (!np || !of_device_is_available(np))
186 return -ENODEV;
187
188 /* get a pointer to the register memory */
189 addr = of_translate_address(np, of_get_address(np, 0, &size, NULL));
190 priv->regs = ioremap(addr, size);
191
192 if (priv->regs == NULL)
193 return -ENOMEM;
194
195 priv->interruptTransmit = irq_of_parse_and_map(np, 0);
196
197 model = of_get_property(np, "model", NULL);
198
199 /* If we aren't the FEC we have multiple interrupts */
200 if (model && strcasecmp(model, "FEC")) {
201 priv->interruptReceive = irq_of_parse_and_map(np, 1);
202
203 priv->interruptError = irq_of_parse_and_map(np, 2);
204
205 if (priv->interruptTransmit < 0 ||
206 priv->interruptReceive < 0 ||
207 priv->interruptError < 0) {
208 err = -EINVAL;
209 goto err_out;
210 }
211 }
212
Andy Fleming4d7902f2009-02-04 16:43:44 -0800213 stash = of_get_property(np, "bd-stash", NULL);
214
215 if(stash) {
216 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
217 priv->bd_stash_en = 1;
218 }
219
220 stash_len = of_get_property(np, "rx-stash-len", NULL);
221
222 if (stash_len)
223 priv->rx_stash_size = *stash_len;
224
225 stash_idx = of_get_property(np, "rx-stash-idx", NULL);
226
227 if (stash_idx)
228 priv->rx_stash_index = *stash_idx;
229
230 if (stash_len || stash_idx)
231 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
232
Andy Flemingb31a1d82008-12-16 15:29:15 -0800233 mac_addr = of_get_mac_address(np);
234 if (mac_addr)
235 memcpy(dev->dev_addr, mac_addr, MAC_ADDR_LEN);
236
237 if (model && !strcasecmp(model, "TSEC"))
238 priv->device_flags =
239 FSL_GIANFAR_DEV_HAS_GIGABIT |
240 FSL_GIANFAR_DEV_HAS_COALESCE |
241 FSL_GIANFAR_DEV_HAS_RMON |
242 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
243 if (model && !strcasecmp(model, "eTSEC"))
244 priv->device_flags =
245 FSL_GIANFAR_DEV_HAS_GIGABIT |
246 FSL_GIANFAR_DEV_HAS_COALESCE |
247 FSL_GIANFAR_DEV_HAS_RMON |
248 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Dai Haruki2c2db482008-12-16 15:31:15 -0800249 FSL_GIANFAR_DEV_HAS_PADDING |
Andy Flemingb31a1d82008-12-16 15:29:15 -0800250 FSL_GIANFAR_DEV_HAS_CSUM |
251 FSL_GIANFAR_DEV_HAS_VLAN |
252 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
253 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
254
255 ctype = of_get_property(np, "phy-connection-type", NULL);
256
257 /* We only care about rgmii-id. The rest are autodetected */
258 if (ctype && !strcmp(ctype, "rgmii-id"))
259 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
260 else
261 priv->interface = PHY_INTERFACE_MODE_MII;
262
263 if (of_get_property(np, "fsl,magic-packet", NULL))
264 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
265
Grant Likelyfe192a42009-04-25 12:53:12 +0000266 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800267
268 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000269 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800270
271 return 0;
272
273err_out:
274 iounmap(priv->regs);
275 return err;
276}
277
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000278/* Ioctl MII Interface */
279static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
280{
281 struct gfar_private *priv = netdev_priv(dev);
282
283 if (!netif_running(dev))
284 return -EINVAL;
285
286 if (!priv->phydev)
287 return -ENODEV;
288
289 return phy_mii_ioctl(priv->phydev, if_mii(rq), cmd);
290}
291
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400292/* Set up the ethernet device structure, private data,
293 * and anything else we need before we start */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800294static int gfar_probe(struct of_device *ofdev,
295 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 u32 tempval;
298 struct net_device *dev = NULL;
299 struct gfar_private *priv = NULL;
Dai Harukic50a5d92008-12-17 16:51:32 -0800300 int err = 0;
301 int len_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* Create an ethernet device instance */
304 dev = alloc_etherdev(sizeof (*priv));
305
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400306 if (NULL == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return -ENOMEM;
308
309 priv = netdev_priv(dev);
Kumar Gala48268572009-03-18 23:28:22 -0700310 priv->ndev = dev;
311 priv->ofdev = ofdev;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800312 priv->node = ofdev->node;
Kumar Gala48268572009-03-18 23:28:22 -0700313 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Andy Flemingb31a1d82008-12-16 15:29:15 -0800315 err = gfar_of_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Andy Flemingb31a1d82008-12-16 15:29:15 -0800317 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Andy Flemingfef61082006-04-20 16:44:29 -0500320 spin_lock_init(&priv->txlock);
321 spin_lock_init(&priv->rxlock);
Scott Woodd87eb122008-07-11 18:04:45 -0500322 spin_lock_init(&priv->bflock);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200323 INIT_WORK(&priv->reset_task, gfar_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Andy Flemingb31a1d82008-12-16 15:29:15 -0800325 dev_set_drvdata(&ofdev->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* Stop the DMA engine now, in case it was running before */
328 /* (The firmware could have used it, and left it running). */
Andy Fleming257d9382008-12-16 15:25:45 -0800329 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 /* Reset MAC layer */
332 gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
333
Andy Flemingb98ac702009-02-04 16:38:05 -0800334 /* We need to delay at least 3 TX clocks */
335 udelay(2);
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
338 gfar_write(&priv->regs->maccfg1, tempval);
339
340 /* Initialize MACCFG2. */
341 gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS);
342
343 /* Initialize ECNTRL */
344 gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS);
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /* Set the dev->base_addr to the gfar reg region */
347 dev->base_addr = (unsigned long) (priv->regs);
348
Andy Flemingb31a1d82008-12-16 15:29:15 -0800349 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* Fill in the dev structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700353 netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 dev->mtu = 1500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Andy Fleming26ccfc32009-03-10 12:58:28 +0000356 dev->netdev_ops = &gfar_netdev_ops;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500357 dev->ethtool_ops = &gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Andy Flemingb31a1d82008-12-16 15:29:15 -0800359 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500360 priv->rx_csum_enable = 1;
Dai Haruki4669bc92008-12-17 16:51:04 -0800361 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500362 } else
363 priv->rx_csum_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Kumar Gala0bbaf062005-06-20 10:54:21 -0500365 priv->vlgrp = NULL;
366
Andy Fleming26ccfc32009-03-10 12:58:28 +0000367 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500368 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500369
Andy Flemingb31a1d82008-12-16 15:29:15 -0800370 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500371 priv->extended_hash = 1;
372 priv->hash_width = 9;
373
374 priv->hash_regs[0] = &priv->regs->igaddr0;
375 priv->hash_regs[1] = &priv->regs->igaddr1;
376 priv->hash_regs[2] = &priv->regs->igaddr2;
377 priv->hash_regs[3] = &priv->regs->igaddr3;
378 priv->hash_regs[4] = &priv->regs->igaddr4;
379 priv->hash_regs[5] = &priv->regs->igaddr5;
380 priv->hash_regs[6] = &priv->regs->igaddr6;
381 priv->hash_regs[7] = &priv->regs->igaddr7;
382 priv->hash_regs[8] = &priv->regs->gaddr0;
383 priv->hash_regs[9] = &priv->regs->gaddr1;
384 priv->hash_regs[10] = &priv->regs->gaddr2;
385 priv->hash_regs[11] = &priv->regs->gaddr3;
386 priv->hash_regs[12] = &priv->regs->gaddr4;
387 priv->hash_regs[13] = &priv->regs->gaddr5;
388 priv->hash_regs[14] = &priv->regs->gaddr6;
389 priv->hash_regs[15] = &priv->regs->gaddr7;
390
391 } else {
392 priv->extended_hash = 0;
393 priv->hash_width = 8;
394
395 priv->hash_regs[0] = &priv->regs->gaddr0;
Andy Fleming1577ece2009-02-04 16:42:12 -0800396 priv->hash_regs[1] = &priv->regs->gaddr1;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500397 priv->hash_regs[2] = &priv->regs->gaddr2;
398 priv->hash_regs[3] = &priv->regs->gaddr3;
399 priv->hash_regs[4] = &priv->regs->gaddr4;
400 priv->hash_regs[5] = &priv->regs->gaddr5;
401 priv->hash_regs[6] = &priv->regs->gaddr6;
402 priv->hash_regs[7] = &priv->regs->gaddr7;
403 }
404
Andy Flemingb31a1d82008-12-16 15:29:15 -0800405 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500406 priv->padding = DEFAULT_PADDING;
407 else
408 priv->padding = 0;
409
Kumar Gala0bbaf062005-06-20 10:54:21 -0500410 if (dev->features & NETIF_F_IP_CSUM)
411 dev->hard_header_len += GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 priv->tx_ring_size = DEFAULT_TX_RING_SIZE;
415 priv->rx_ring_size = DEFAULT_RX_RING_SIZE;
Dai Haruki4669bc92008-12-17 16:51:04 -0800416 priv->num_txbdfree = DEFAULT_TX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 priv->txcoalescing = DEFAULT_TX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800419 priv->txic = DEFAULT_TXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 priv->rxcoalescing = DEFAULT_RX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800421 priv->rxic = DEFAULT_RXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Kumar Gala0bbaf062005-06-20 10:54:21 -0500423 /* Enable most messages by default */
424 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
425
Trent Piephod3eab822008-10-02 11:12:24 +0000426 /* Carrier starts down, phylib will bring it up */
427 netif_carrier_off(dev);
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 err = register_netdev(dev);
430
431 if (err) {
432 printk(KERN_ERR "%s: Cannot register net device, aborting.\n",
433 dev->name);
434 goto register_fail;
435 }
436
Anton Vorontsov2884e5c2009-02-01 00:52:34 -0800437 device_init_wakeup(&dev->dev,
438 priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
439
Dai Harukic50a5d92008-12-17 16:51:32 -0800440 /* fill out IRQ number and name fields */
441 len_devname = strlen(dev->name);
442 strncpy(&priv->int_name_tx[0], dev->name, len_devname);
443 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
444 strncpy(&priv->int_name_tx[len_devname],
445 "_tx", sizeof("_tx") + 1);
446
447 strncpy(&priv->int_name_rx[0], dev->name, len_devname);
448 strncpy(&priv->int_name_rx[len_devname],
449 "_rx", sizeof("_rx") + 1);
450
451 strncpy(&priv->int_name_er[0], dev->name, len_devname);
452 strncpy(&priv->int_name_er[len_devname],
453 "_er", sizeof("_er") + 1);
454 } else
455 priv->int_name_tx[len_devname] = '\0';
456
Andy Fleming7f7f5312005-11-11 12:38:59 -0600457 /* Create all the sysfs files */
458 gfar_init_sysfs(dev);
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* Print out the device info */
Johannes Berge1749612008-10-27 15:59:26 -0700461 printk(KERN_INFO DEVICE_NAME "%pM\n", dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Even more device info helps when determining which kernel */
Andy Fleming7f7f5312005-11-11 12:38:59 -0600464 /* provided which set of benchmarks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n",
467 dev->name, priv->rx_ring_size, priv->tx_ring_size);
468
469 return 0;
470
471register_fail:
Kumar Galacc8c6e32006-02-01 15:18:03 -0600472 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473regs_fail:
Grant Likelyfe192a42009-04-25 12:53:12 +0000474 if (priv->phy_node)
475 of_node_put(priv->phy_node);
476 if (priv->tbi_node)
477 of_node_put(priv->tbi_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 free_netdev(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400479 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Andy Flemingb31a1d82008-12-16 15:29:15 -0800482static int gfar_remove(struct of_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800484 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Grant Likelyfe192a42009-04-25 12:53:12 +0000486 if (priv->phy_node)
487 of_node_put(priv->phy_node);
488 if (priv->tbi_node)
489 of_node_put(priv->tbi_node);
490
Andy Flemingb31a1d82008-12-16 15:29:15 -0800491 dev_set_drvdata(&ofdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Kumar Galacc8c6e32006-02-01 15:18:03 -0600493 iounmap(priv->regs);
Kumar Gala48268572009-03-18 23:28:22 -0700494 free_netdev(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 return 0;
497}
498
Scott Woodd87eb122008-07-11 18:04:45 -0500499#ifdef CONFIG_PM
Andy Flemingb31a1d82008-12-16 15:29:15 -0800500static int gfar_suspend(struct of_device *ofdev, pm_message_t state)
Scott Woodd87eb122008-07-11 18:04:45 -0500501{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800502 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700503 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500504 unsigned long flags;
505 u32 tempval;
506
507 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800508 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500509
510 netif_device_detach(dev);
511
512 if (netif_running(dev)) {
513 spin_lock_irqsave(&priv->txlock, flags);
514 spin_lock(&priv->rxlock);
515
516 gfar_halt_nodisable(dev);
517
518 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
519 tempval = gfar_read(&priv->regs->maccfg1);
520
521 tempval &= ~MACCFG1_TX_EN;
522
523 if (!magic_packet)
524 tempval &= ~MACCFG1_RX_EN;
525
526 gfar_write(&priv->regs->maccfg1, tempval);
527
528 spin_unlock(&priv->rxlock);
529 spin_unlock_irqrestore(&priv->txlock, flags);
530
Scott Woodd87eb122008-07-11 18:04:45 -0500531 napi_disable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500532
533 if (magic_packet) {
534 /* Enable interrupt on Magic Packet */
535 gfar_write(&priv->regs->imask, IMASK_MAG);
536
537 /* Enable Magic Packet mode */
538 tempval = gfar_read(&priv->regs->maccfg2);
539 tempval |= MACCFG2_MPEN;
540 gfar_write(&priv->regs->maccfg2, tempval);
541 } else {
542 phy_stop(priv->phydev);
543 }
544 }
545
546 return 0;
547}
548
Andy Flemingb31a1d82008-12-16 15:29:15 -0800549static int gfar_resume(struct of_device *ofdev)
Scott Woodd87eb122008-07-11 18:04:45 -0500550{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800551 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700552 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500553 unsigned long flags;
554 u32 tempval;
555 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800556 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500557
558 if (!netif_running(dev)) {
559 netif_device_attach(dev);
560 return 0;
561 }
562
563 if (!magic_packet && priv->phydev)
564 phy_start(priv->phydev);
565
566 /* Disable Magic Packet mode, in case something
567 * else woke us up.
568 */
569
570 spin_lock_irqsave(&priv->txlock, flags);
571 spin_lock(&priv->rxlock);
572
573 tempval = gfar_read(&priv->regs->maccfg2);
574 tempval &= ~MACCFG2_MPEN;
575 gfar_write(&priv->regs->maccfg2, tempval);
576
577 gfar_start(dev);
578
579 spin_unlock(&priv->rxlock);
580 spin_unlock_irqrestore(&priv->txlock, flags);
581
582 netif_device_attach(dev);
583
Scott Woodd87eb122008-07-11 18:04:45 -0500584 napi_enable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500585
586 return 0;
587}
588#else
589#define gfar_suspend NULL
590#define gfar_resume NULL
591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600593/* Reads the controller's registers to determine what interface
594 * connects it to the PHY.
595 */
596static phy_interface_t gfar_get_interface(struct net_device *dev)
597{
598 struct gfar_private *priv = netdev_priv(dev);
599 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
600
601 if (ecntrl & ECNTRL_SGMII_MODE)
602 return PHY_INTERFACE_MODE_SGMII;
603
604 if (ecntrl & ECNTRL_TBI_MODE) {
605 if (ecntrl & ECNTRL_REDUCED_MODE)
606 return PHY_INTERFACE_MODE_RTBI;
607 else
608 return PHY_INTERFACE_MODE_TBI;
609 }
610
611 if (ecntrl & ECNTRL_REDUCED_MODE) {
612 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
613 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500614 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800615 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -0500616
617 /*
618 * This isn't autodetected right now, so it must
619 * be set by the device tree or platform code.
620 */
621 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
622 return PHY_INTERFACE_MODE_RGMII_ID;
623
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600624 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500625 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600626 }
627
Andy Flemingb31a1d82008-12-16 15:29:15 -0800628 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600629 return PHY_INTERFACE_MODE_GMII;
630
631 return PHY_INTERFACE_MODE_MII;
632}
633
634
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400635/* Initializes driver's PHY state, and attaches to the PHY.
636 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
638static int init_phy(struct net_device *dev)
639{
640 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400641 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -0800642 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400643 SUPPORTED_1000baseT_Full : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600644 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 priv->oldlink = 0;
647 priv->oldspeed = 0;
648 priv->oldduplex = -1;
649
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600650 interface = gfar_get_interface(dev);
651
Anton Vorontsov1db780f2009-07-16 21:31:42 +0000652 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
653 interface);
654 if (!priv->phydev)
655 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
656 interface);
657 if (!priv->phydev) {
658 dev_err(&dev->dev, "could not attach to PHY\n");
659 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +0000660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Kapil Junejad3c12872007-05-11 18:25:11 -0500662 if (interface == PHY_INTERFACE_MODE_SGMII)
663 gfar_configure_serdes(dev);
664
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400665 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +0000666 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
667 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Paul Gortmakerd0313582008-04-17 00:08:10 -0400672/*
673 * Initialize TBI PHY interface for communicating with the
674 * SERDES lynx PHY on the chip. We communicate with this PHY
675 * through the MDIO bus on each controller, treating it as a
676 * "normal" PHY at the address found in the TBIPA register. We assume
677 * that the TBIPA register is valid. Either the MDIO bus code will set
678 * it to a value that doesn't conflict with other PHYs on the bus, or the
679 * value doesn't matter, as there are no other PHYs on the bus.
680 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500681static void gfar_configure_serdes(struct net_device *dev)
682{
683 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +0000684 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -0700685
Grant Likelyfe192a42009-04-25 12:53:12 +0000686 if (!priv->tbi_node) {
687 dev_warn(&dev->dev, "error: SGMII mode requires that the "
688 "device tree specify a tbi-handle\n");
689 return;
690 }
691
692 tbiphy = of_phy_find_device(priv->tbi_node);
693 if (!tbiphy) {
694 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -0800695 return;
696 }
Kapil Junejad3c12872007-05-11 18:25:11 -0500697
Andy Flemingb31a1d82008-12-16 15:29:15 -0800698 /*
699 * If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -0700700 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
701 * everything for us? Resetting it takes the link down and requires
702 * several seconds for it to come back.
703 */
Grant Likelyfe192a42009-04-25 12:53:12 +0000704 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800705 return;
Kapil Junejad3c12872007-05-11 18:25:11 -0500706
Paul Gortmakerd0313582008-04-17 00:08:10 -0400707 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +0000708 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500709
Grant Likelyfe192a42009-04-25 12:53:12 +0000710 phy_write(tbiphy, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500711 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
712 ADVERTISE_1000XPSE_ASYM);
713
Grant Likelyfe192a42009-04-25 12:53:12 +0000714 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500715 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
716}
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718static void init_registers(struct net_device *dev)
719{
720 struct gfar_private *priv = netdev_priv(dev);
721
722 /* Clear IEVENT */
723 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
724
725 /* Initialize IMASK */
726 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
727
728 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500729 gfar_write(&priv->regs->igaddr0, 0);
730 gfar_write(&priv->regs->igaddr1, 0);
731 gfar_write(&priv->regs->igaddr2, 0);
732 gfar_write(&priv->regs->igaddr3, 0);
733 gfar_write(&priv->regs->igaddr4, 0);
734 gfar_write(&priv->regs->igaddr5, 0);
735 gfar_write(&priv->regs->igaddr6, 0);
736 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 gfar_write(&priv->regs->gaddr0, 0);
739 gfar_write(&priv->regs->gaddr1, 0);
740 gfar_write(&priv->regs->gaddr2, 0);
741 gfar_write(&priv->regs->gaddr3, 0);
742 gfar_write(&priv->regs->gaddr4, 0);
743 gfar_write(&priv->regs->gaddr5, 0);
744 gfar_write(&priv->regs->gaddr6, 0);
745 gfar_write(&priv->regs->gaddr7, 0);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /* Zero out the rmon mib registers if it has them */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800748 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600749 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /* Mask off the CAM interrupts */
752 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
753 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
754 }
755
756 /* Initialize the max receive buffer length */
757 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /* Initialize the Minimum Frame Length Register */
760 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Kumar Gala0bbaf062005-06-20 10:54:21 -0500763
764/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -0500765static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600768 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 u32 tempval;
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /* Mask all interrupts */
772 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
773
774 /* Clear all interrupts */
775 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
776
777 /* Stop the DMA, and wait for it to stop */
778 tempval = gfar_read(&priv->regs->dmactrl);
779 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
780 != (DMACTRL_GRS | DMACTRL_GTS)) {
781 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
782 gfar_write(&priv->regs->dmactrl, tempval);
783
784 while (!(gfar_read(&priv->regs->ievent) &
785 (IEVENT_GRSC | IEVENT_GTSC)))
786 cpu_relax();
787 }
Scott Woodd87eb122008-07-11 18:04:45 -0500788}
Scott Woodd87eb122008-07-11 18:04:45 -0500789
790/* Halt the receive and transmit queues */
791void gfar_halt(struct net_device *dev)
792{
793 struct gfar_private *priv = netdev_priv(dev);
794 struct gfar __iomem *regs = priv->regs;
795 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Scott Wood2a54adc2008-08-12 15:10:46 -0500797 gfar_halt_nodisable(dev);
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* Disable Rx and Tx */
800 tempval = gfar_read(&regs->maccfg1);
801 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
802 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500803}
804
805void stop_gfar(struct net_device *dev)
806{
807 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600808 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500809 unsigned long flags;
810
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400811 phy_stop(priv->phydev);
812
Kumar Gala0bbaf062005-06-20 10:54:21 -0500813 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -0500814 spin_lock_irqsave(&priv->txlock, flags);
815 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500816
Kumar Gala0bbaf062005-06-20 10:54:21 -0500817 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Andy Flemingfef61082006-04-20 16:44:29 -0500819 spin_unlock(&priv->rxlock);
820 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* Free the IRQs */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800823 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 free_irq(priv->interruptError, dev);
825 free_irq(priv->interruptTransmit, dev);
826 free_irq(priv->interruptReceive, dev);
827 } else {
Andy Fleming1577ece2009-02-04 16:42:12 -0800828 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
831 free_skb_resources(priv);
832
Kumar Gala48268572009-03-18 23:28:22 -0700833 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 sizeof(struct txbd8)*priv->tx_ring_size
835 + sizeof(struct rxbd8)*priv->rx_ring_size,
836 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -0500837 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840/* If there are any tx skbs or rx skbs still around, free them.
841 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400842static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct rxbd8 *rxbdp;
845 struct txbd8 *txbdp;
Dai Haruki4669bc92008-12-17 16:51:04 -0800846 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Go through all the buffer descriptors and free their data buffers */
849 txbdp = priv->tx_bd_base;
850
851 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki4669bc92008-12-17 16:51:04 -0800852 if (!priv->tx_skbuff[i])
853 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Kumar Gala48268572009-03-18 23:28:22 -0700855 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800856 txbdp->length, DMA_TO_DEVICE);
857 txbdp->lstatus = 0;
858 for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) {
859 txbdp++;
Kumar Gala48268572009-03-18 23:28:22 -0700860 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800861 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
Andy Flemingad5da7a2008-05-07 13:20:55 -0500863 txbdp++;
Dai Haruki4669bc92008-12-17 16:51:04 -0800864 dev_kfree_skb_any(priv->tx_skbuff[i]);
865 priv->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867
868 kfree(priv->tx_skbuff);
869
870 rxbdp = priv->rx_bd_base;
871
872 /* rx_skbuff is not guaranteed to be allocated, so only
873 * free it and its contents if it is allocated */
874 if(priv->rx_skbuff != NULL) {
875 for (i = 0; i < priv->rx_ring_size; i++) {
876 if (priv->rx_skbuff[i]) {
Kumar Gala48268572009-03-18 23:28:22 -0700877 dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr,
Andy Fleming7f7f5312005-11-11 12:38:59 -0600878 priv->rx_buffer_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 DMA_FROM_DEVICE);
880
881 dev_kfree_skb_any(priv->rx_skbuff[i]);
882 priv->rx_skbuff[i] = NULL;
883 }
884
Dai Haruki5a5efed2008-12-16 15:34:50 -0800885 rxbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 rxbdp->bufPtr = 0;
887
888 rxbdp++;
889 }
890
891 kfree(priv->rx_skbuff);
892 }
893}
894
Kumar Gala0bbaf062005-06-20 10:54:21 -0500895void gfar_start(struct net_device *dev)
896{
897 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600898 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500899 u32 tempval;
900
901 /* Enable Rx and Tx in MACCFG1 */
902 tempval = gfar_read(&regs->maccfg1);
903 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
904 gfar_write(&regs->maccfg1, tempval);
905
906 /* Initialize DMACTRL to have WWR and WOP */
907 tempval = gfar_read(&priv->regs->dmactrl);
908 tempval |= DMACTRL_INIT_SETTINGS;
909 gfar_write(&priv->regs->dmactrl, tempval);
910
Kumar Gala0bbaf062005-06-20 10:54:21 -0500911 /* Make sure we aren't stopped */
912 tempval = gfar_read(&priv->regs->dmactrl);
913 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
914 gfar_write(&priv->regs->dmactrl, tempval);
915
Andy Flemingfef61082006-04-20 16:44:29 -0500916 /* Clear THLT/RHLT, so that the DMA starts polling now */
917 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
918 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
919
Kumar Gala0bbaf062005-06-20 10:54:21 -0500920 /* Unmask the interrupts we look for */
921 gfar_write(&regs->imask, IMASK_DEFAULT);
Dai Haruki12dea572008-12-16 15:30:20 -0800922
923 dev->trans_start = jiffies;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/* Bring the controller up and running */
927int startup_gfar(struct net_device *dev)
928{
929 struct txbd8 *txbdp;
930 struct rxbd8 *rxbdp;
Grant Likelyf9663ae2007-12-01 22:10:03 -0700931 dma_addr_t addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 unsigned long vaddr;
933 int i;
934 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600935 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 int err = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500937 u32 rctrl = 0;
Yong Zhang75c48852009-08-07 16:36:52 +0000938 u32 tctrl = 0;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600939 u32 attrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
942
943 /* Allocate memory for the buffer descriptors */
Kumar Gala48268572009-03-18 23:28:22 -0700944 vaddr = (unsigned long) dma_alloc_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 sizeof (struct txbd8) * priv->tx_ring_size +
946 sizeof (struct rxbd8) * priv->rx_ring_size,
947 &addr, GFP_KERNEL);
948
949 if (vaddr == 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500950 if (netif_msg_ifup(priv))
951 printk(KERN_ERR "%s: Could not allocate buffer descriptors!\n",
952 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return -ENOMEM;
954 }
955
956 priv->tx_bd_base = (struct txbd8 *) vaddr;
957
958 /* enet DMA only understands physical addresses */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500959 gfar_write(&regs->tbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 /* Start the rx descriptor ring where the tx ring leaves off */
962 addr = addr + sizeof (struct txbd8) * priv->tx_ring_size;
963 vaddr = vaddr + sizeof (struct txbd8) * priv->tx_ring_size;
964 priv->rx_bd_base = (struct rxbd8 *) vaddr;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500965 gfar_write(&regs->rbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /* Setup the skbuff rings */
968 priv->tx_skbuff =
969 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
970 priv->tx_ring_size, GFP_KERNEL);
971
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400972 if (NULL == priv->tx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500973 if (netif_msg_ifup(priv))
974 printk(KERN_ERR "%s: Could not allocate tx_skbuff\n",
975 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 err = -ENOMEM;
977 goto tx_skb_fail;
978 }
979
980 for (i = 0; i < priv->tx_ring_size; i++)
981 priv->tx_skbuff[i] = NULL;
982
983 priv->rx_skbuff =
984 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
985 priv->rx_ring_size, GFP_KERNEL);
986
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400987 if (NULL == priv->rx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500988 if (netif_msg_ifup(priv))
989 printk(KERN_ERR "%s: Could not allocate rx_skbuff\n",
990 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 err = -ENOMEM;
992 goto rx_skb_fail;
993 }
994
995 for (i = 0; i < priv->rx_ring_size; i++)
996 priv->rx_skbuff[i] = NULL;
997
998 /* Initialize some variables in our dev structure */
Dai Haruki4669bc92008-12-17 16:51:04 -0800999 priv->num_txbdfree = priv->tx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
1001 priv->cur_rx = priv->rx_bd_base;
1002 priv->skb_curtx = priv->skb_dirtytx = 0;
1003 priv->skb_currx = 0;
1004
1005 /* Initialize Transmit Descriptor Ring */
1006 txbdp = priv->tx_bd_base;
1007 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki5a5efed2008-12-16 15:34:50 -08001008 txbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 txbdp->bufPtr = 0;
1010 txbdp++;
1011 }
1012
1013 /* Set the last descriptor in the ring to indicate wrap */
1014 txbdp--;
1015 txbdp->status |= TXBD_WRAP;
1016
1017 rxbdp = priv->rx_bd_base;
1018 for (i = 0; i < priv->rx_ring_size; i++) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001019 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Andy Fleming815b97c2008-04-22 17:18:29 -05001021 skb = gfar_new_skb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Andy Fleming815b97c2008-04-22 17:18:29 -05001023 if (!skb) {
1024 printk(KERN_ERR "%s: Can't allocate RX buffers\n",
1025 dev->name);
1026
1027 goto err_rxalloc_fail;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 priv->rx_skbuff[i] = skb;
1031
Andy Fleming815b97c2008-04-22 17:18:29 -05001032 gfar_new_rxbdp(dev, rxbdp, skb);
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 rxbdp++;
1035 }
1036
1037 /* Set the last descriptor in the ring to wrap */
1038 rxbdp--;
1039 rxbdp->status |= RXBD_WRAP;
1040
1041 /* If the device has multiple interrupts, register for
1042 * them. Otherwise, only register for the one */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001043 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001044 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 * Transmit, and Receive */
1046 if (request_irq(priv->interruptError, gfar_error,
Dai Harukic50a5d92008-12-17 16:51:32 -08001047 0, priv->int_name_er, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001048 if (netif_msg_intr(priv))
1049 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1050 dev->name, priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 err = -1;
1053 goto err_irq_fail;
1054 }
1055
1056 if (request_irq(priv->interruptTransmit, gfar_transmit,
Dai Harukic50a5d92008-12-17 16:51:32 -08001057 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001058 if (netif_msg_intr(priv))
1059 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1060 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 err = -1;
1063
1064 goto tx_irq_fail;
1065 }
1066
1067 if (request_irq(priv->interruptReceive, gfar_receive,
Dai Harukic50a5d92008-12-17 16:51:32 -08001068 0, priv->int_name_rx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001069 if (netif_msg_intr(priv))
1070 printk(KERN_ERR "%s: Can't get IRQ %d (receive0)\n",
1071 dev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 err = -1;
1074 goto rx_irq_fail;
1075 }
1076 } else {
1077 if (request_irq(priv->interruptTransmit, gfar_interrupt,
Dai Harukic50a5d92008-12-17 16:51:32 -08001078 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001079 if (netif_msg_intr(priv))
1080 printk(KERN_ERR "%s: Can't get IRQ %d\n",
Dai Harukic50a5d92008-12-17 16:51:32 -08001081 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 err = -1;
1084 goto err_irq_fail;
1085 }
1086 }
1087
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001088 phy_start(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /* Configure the coalescing support */
Dai Harukib46a8452008-12-16 15:29:52 -08001091 gfar_write(&regs->txic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (priv->txcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001093 gfar_write(&regs->txic, priv->txic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Dai Harukib46a8452008-12-16 15:29:52 -08001095 gfar_write(&regs->rxic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (priv->rxcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001097 gfar_write(&regs->rxic, priv->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Kumar Gala0bbaf062005-06-20 10:54:21 -05001099 if (priv->rx_csum_enable)
1100 rctrl |= RCTRL_CHECKSUMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Andy Fleming7f7f5312005-11-11 12:38:59 -06001102 if (priv->extended_hash) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001103 rctrl |= RCTRL_EXTHASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Andy Fleming7f7f5312005-11-11 12:38:59 -06001105 gfar_clear_exact_match(dev);
1106 rctrl |= RCTRL_EMEN;
1107 }
1108
Andy Fleming7f7f5312005-11-11 12:38:59 -06001109 if (priv->padding) {
1110 rctrl &= ~RCTRL_PAL_MASK;
1111 rctrl |= RCTRL_PADDING(priv->padding);
1112 }
1113
Yong Zhang75c48852009-08-07 16:36:52 +00001114 /* keep vlan related bits if it's enabled */
1115 if (priv->vlgrp) {
1116 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
1117 tctrl |= TCTRL_VLINS;
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)
Yong Zhang75c48852009-08-07 16:36:52 +00001124 tctrl |= TCTRL_INIT_CSUM;
1125
1126 gfar_write(&priv->regs->tctrl, tctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Andy Fleming7f7f5312005-11-11 12:38:59 -06001128 /* Set the extraction length and index */
1129 attrs = ATTRELI_EL(priv->rx_stash_size) |
1130 ATTRELI_EI(priv->rx_stash_index);
1131
1132 gfar_write(&priv->regs->attreli, attrs);
1133
1134 /* Start with defaults, and add stashing or locking
1135 * depending on the approprate variables */
1136 attrs = ATTR_INIT_SETTINGS;
1137
1138 if (priv->bd_stash_en)
1139 attrs |= ATTR_BDSTASH;
1140
1141 if (priv->rx_stash_size != 0)
1142 attrs |= ATTR_BUFSTASH;
1143
1144 gfar_write(&priv->regs->attr, attrs);
1145
1146 gfar_write(&priv->regs->fifo_tx_thr, priv->fifo_threshold);
1147 gfar_write(&priv->regs->fifo_tx_starve, priv->fifo_starve);
1148 gfar_write(&priv->regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
1149
1150 /* Start the controller */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001151 gfar_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 return 0;
1154
1155rx_irq_fail:
1156 free_irq(priv->interruptTransmit, dev);
1157tx_irq_fail:
1158 free_irq(priv->interruptError, dev);
1159err_irq_fail:
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001160err_rxalloc_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161rx_skb_fail:
1162 free_skb_resources(priv);
1163tx_skb_fail:
Kumar Gala48268572009-03-18 23:28:22 -07001164 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 sizeof(struct txbd8)*priv->tx_ring_size
1166 + sizeof(struct rxbd8)*priv->rx_ring_size,
1167 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -05001168 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return err;
1171}
1172
1173/* Called when something needs to use the ethernet device */
1174/* Returns 0 for success. */
1175static int gfar_enet_open(struct net_device *dev)
1176{
Li Yang94e8cc32007-10-12 21:53:51 +08001177 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 int err;
1179
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001180 napi_enable(&priv->napi);
1181
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001182 skb_queue_head_init(&priv->rx_recycle);
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /* Initialize a bunch of registers */
1185 init_registers(dev);
1186
1187 gfar_set_mac_address(dev);
1188
1189 err = init_phy(dev);
1190
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001191 if(err) {
1192 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001197 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001198 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001199 return err;
1200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 netif_start_queue(dev);
1203
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001204 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return err;
1207}
1208
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001209static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001210{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001211 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07001212
1213 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001214
Kumar Gala0bbaf062005-06-20 10:54:21 -05001215 return fcb;
1216}
1217
1218static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1219{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001220 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001221
1222 /* If we're here, it's a IP packet with a TCP or UDP
1223 * payload. We set it to checksum, using a pseudo-header
1224 * we provide
1225 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001226 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001227
Andy Fleming7f7f5312005-11-11 12:38:59 -06001228 /* Tell the controller what the protocol is */
1229 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001230 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001231 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001232 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001233 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001234 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001235
1236 /* l3os is the distance between the start of the
1237 * frame (skb->data) and the start of the IP hdr.
1238 * l4os is the distance between the start of the
1239 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001240 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001241 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001242
Andy Fleming7f7f5312005-11-11 12:38:59 -06001243 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001244}
1245
Andy Fleming7f7f5312005-11-11 12:38:59 -06001246void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001247{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001248 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001249 fcb->vlctl = vlan_tx_tag_get(skb);
1250}
1251
Dai Haruki4669bc92008-12-17 16:51:04 -08001252static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
1253 struct txbd8 *base, int ring_size)
1254{
1255 struct txbd8 *new_bd = bdp + stride;
1256
1257 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
1258}
1259
1260static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
1261 int ring_size)
1262{
1263 return skip_txbd(bdp, 1, base, ring_size);
1264}
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266/* This is called by the kernel when a frame is ready for transmission. */
1267/* It is pointed to by the dev->hard_start_xmit function pointer */
1268static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1269{
1270 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001271 struct txfcb *fcb = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08001272 struct txbd8 *txbdp, *txbdp_start, *base;
Dai Haruki5a5efed2008-12-16 15:34:50 -08001273 u32 lstatus;
Dai Haruki4669bc92008-12-17 16:51:04 -08001274 int i;
1275 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05001276 unsigned long flags;
Dai Haruki4669bc92008-12-17 16:51:04 -08001277 unsigned int nr_frags, length;
1278
1279 base = priv->tx_bd_base;
1280
Li Yang5b28bea2009-03-27 15:54:30 -07001281 /* make space for additional header when fcb is needed */
1282 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
1283 (priv->vlgrp && vlan_tx_tag_present(skb))) &&
1284 (skb_headroom(skb) < GMAC_FCB_LEN)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001285 struct sk_buff *skb_new;
1286
1287 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
1288 if (!skb_new) {
1289 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07001290 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001291 return NETDEV_TX_OK;
1292 }
1293 kfree_skb(skb);
1294 skb = skb_new;
1295 }
1296
Dai Haruki4669bc92008-12-17 16:51:04 -08001297 /* total number of fragments in the SKB */
1298 nr_frags = skb_shinfo(skb)->nr_frags;
1299
1300 spin_lock_irqsave(&priv->txlock, flags);
1301
1302 /* check if there is space to queue this packet */
Rini van Zetten7958a452009-02-27 03:18:48 -08001303 if ((nr_frags+1) > priv->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001304 /* no space, stop the queue */
1305 netif_stop_queue(dev);
1306 dev->stats.tx_fifo_errors++;
1307 spin_unlock_irqrestore(&priv->txlock, flags);
1308 return NETDEV_TX_BUSY;
1309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001312 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Dai Haruki4669bc92008-12-17 16:51:04 -08001314 txbdp = txbdp_start = priv->cur_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Dai Haruki4669bc92008-12-17 16:51:04 -08001316 if (nr_frags == 0) {
1317 lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1318 } else {
1319 /* Place the fragment addresses and lengths into the TxBDs */
1320 for (i = 0; i < nr_frags; i++) {
1321 /* Point at the next BD, wrapping as needed */
1322 txbdp = next_txbd(txbdp, base, priv->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Dai Haruki4669bc92008-12-17 16:51:04 -08001324 length = skb_shinfo(skb)->frags[i].size;
1325
1326 lstatus = txbdp->lstatus | length |
1327 BD_LFLAG(TXBD_READY);
1328
1329 /* Handle the last BD specially */
1330 if (i == nr_frags - 1)
1331 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1332
Kumar Gala48268572009-03-18 23:28:22 -07001333 bufaddr = dma_map_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001334 skb_shinfo(skb)->frags[i].page,
1335 skb_shinfo(skb)->frags[i].page_offset,
1336 length,
1337 DMA_TO_DEVICE);
1338
1339 /* set the TxBD length and buffer pointer */
1340 txbdp->bufPtr = bufaddr;
1341 txbdp->lstatus = lstatus;
1342 }
1343
1344 lstatus = txbdp_start->lstatus;
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Kumar Gala0bbaf062005-06-20 10:54:21 -05001347 /* Set up checksumming */
Dai Haruki12dea572008-12-16 15:30:20 -08001348 if (CHECKSUM_PARTIAL == skb->ip_summed) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001349 fcb = gfar_add_fcb(skb);
1350 lstatus |= BD_LFLAG(TXBD_TOE);
1351 gfar_tx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001352 }
1353
Dai Haruki77ecaf22008-12-16 15:30:48 -08001354 if (priv->vlgrp && vlan_tx_tag_present(skb)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001355 if (unlikely(NULL == fcb)) {
1356 fcb = gfar_add_fcb(skb);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001357 lstatus |= BD_LFLAG(TXBD_TOE);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001358 }
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001359
1360 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001361 }
1362
Dai Haruki4669bc92008-12-17 16:51:04 -08001363 /* setup the TxBD length and buffer pointer for the first BD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 priv->tx_skbuff[priv->skb_curtx] = skb;
Kumar Gala48268572009-03-18 23:28:22 -07001365 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Dai Haruki4669bc92008-12-17 16:51:04 -08001366 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Dai Haruki4669bc92008-12-17 16:51:04 -08001368 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Dai Haruki4669bc92008-12-17 16:51:04 -08001370 /*
1371 * The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05001372 * semantics (it requires synchronization between cacheable and
1373 * uncacheable mappings, which eieio doesn't provide and which we
1374 * don't need), thus requiring a more expensive sync instruction. At
1375 * some point, the set of architecture-independent barrier functions
1376 * should be expanded to include weaker barriers.
1377 */
Scott Wood3b6330c2007-05-16 15:06:59 -05001378 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001379
Dai Haruki4669bc92008-12-17 16:51:04 -08001380 txbdp_start->lstatus = lstatus;
1381
1382 /* Update the current skb pointer to the next entry we will use
1383 * (wrapping if necessary) */
1384 priv->skb_curtx = (priv->skb_curtx + 1) &
1385 TX_RING_MOD_MASK(priv->tx_ring_size);
1386
1387 priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size);
1388
1389 /* reduce TxBD free count */
1390 priv->num_txbdfree -= (nr_frags + 1);
1391
1392 dev->trans_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 /* If the next BD still needs to be cleaned up, then the bds
1395 are full. We need to tell the kernel to stop sending us stuff. */
Dai Haruki4669bc92008-12-17 16:51:04 -08001396 if (!priv->num_txbdfree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 netif_stop_queue(dev);
1398
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001399 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /* Tell the DMA to go go go */
1403 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1404
1405 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001406 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001408 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
1411/* Stops the kernel queue, and halts the controller */
1412static int gfar_close(struct net_device *dev)
1413{
1414 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001415
1416 napi_disable(&priv->napi);
1417
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001418 skb_queue_purge(&priv->rx_recycle);
Sebastian Siewiorab939902008-08-19 21:12:45 +02001419 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 stop_gfar(dev);
1421
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001422 /* Disconnect from the PHY */
1423 phy_disconnect(priv->phydev);
1424 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 netif_stop_queue(dev);
1427
1428 return 0;
1429}
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001432static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001434 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 return 0;
1437}
1438
1439
Kumar Gala0bbaf062005-06-20 10:54:21 -05001440/* Enables and disables VLAN insertion/extraction */
1441static void gfar_vlan_rx_register(struct net_device *dev,
1442 struct vlan_group *grp)
1443{
1444 struct gfar_private *priv = netdev_priv(dev);
1445 unsigned long flags;
1446 u32 tempval;
1447
Andy Flemingfef61082006-04-20 16:44:29 -05001448 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001449
Anton Vorontsovcd1f55a2009-01-26 14:33:23 -08001450 priv->vlgrp = grp;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001451
1452 if (grp) {
1453 /* Enable VLAN tag insertion */
1454 tempval = gfar_read(&priv->regs->tctrl);
1455 tempval |= TCTRL_VLINS;
1456
1457 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001458
Kumar Gala0bbaf062005-06-20 10:54:21 -05001459 /* Enable VLAN tag extraction */
1460 tempval = gfar_read(&priv->regs->rctrl);
Dai Haruki77ecaf22008-12-16 15:30:48 -08001461 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001462 gfar_write(&priv->regs->rctrl, tempval);
1463 } else {
1464 /* Disable VLAN tag insertion */
1465 tempval = gfar_read(&priv->regs->tctrl);
1466 tempval &= ~TCTRL_VLINS;
1467 gfar_write(&priv->regs->tctrl, tempval);
1468
1469 /* Disable VLAN tag extraction */
1470 tempval = gfar_read(&priv->regs->rctrl);
1471 tempval &= ~RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001472 /* If parse is no longer required, then disable parser */
1473 if (tempval & RCTRL_REQ_PARSER)
1474 tempval |= RCTRL_PRSDEP_INIT;
1475 else
1476 tempval &= ~RCTRL_PRSDEP_INIT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001477 gfar_write(&priv->regs->rctrl, tempval);
1478 }
1479
Dai Haruki77ecaf22008-12-16 15:30:48 -08001480 gfar_change_mtu(dev, dev->mtu);
1481
Andy Flemingfef61082006-04-20 16:44:29 -05001482 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001483}
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1486{
1487 int tempsize, tempval;
1488 struct gfar_private *priv = netdev_priv(dev);
1489 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001490 int frame_size = new_mtu + ETH_HLEN;
1491
Dai Haruki77ecaf22008-12-16 15:30:48 -08001492 if (priv->vlgrp)
Dai Harukifaa89572008-03-24 10:53:26 -05001493 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001496 if (netif_msg_drv(priv))
1497 printk(KERN_ERR "%s: Invalid MTU setting\n",
1498 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return -EINVAL;
1500 }
1501
Dai Haruki77ecaf22008-12-16 15:30:48 -08001502 if (gfar_uses_fcb(priv))
1503 frame_size += GMAC_FCB_LEN;
1504
1505 frame_size += priv->padding;
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 tempsize =
1508 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1509 INCREMENTAL_BUFFER_SIZE;
1510
1511 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001512 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1514 stop_gfar(dev);
1515
1516 priv->rx_buffer_size = tempsize;
1517
1518 dev->mtu = new_mtu;
1519
1520 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1521 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1522
1523 /* If the mtu is larger than the max size for standard
1524 * ethernet frames (ie, a jumbo frame), then set maccfg2
1525 * to allow huge frames, and to check the length */
1526 tempval = gfar_read(&priv->regs->maccfg2);
1527
1528 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1529 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1530 else
1531 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1532
1533 gfar_write(&priv->regs->maccfg2, tempval);
1534
1535 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1536 startup_gfar(dev);
1537
1538 return 0;
1539}
1540
Sebastian Siewiorab939902008-08-19 21:12:45 +02001541/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 * transmitted after a set amount of time.
1543 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02001544 * starting over will fix the problem.
1545 */
1546static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Sebastian Siewiorab939902008-08-19 21:12:45 +02001548 struct gfar_private *priv = container_of(work, struct gfar_private,
1549 reset_task);
Kumar Gala48268572009-03-18 23:28:22 -07001550 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 if (dev->flags & IFF_UP) {
Markus Brunnercbea27072009-04-15 02:35:40 -07001553 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 stop_gfar(dev);
1555 startup_gfar(dev);
Markus Brunnercbea27072009-04-15 02:35:40 -07001556 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558
David S. Miller263ba322008-07-15 03:47:41 -07001559 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Sebastian Siewiorab939902008-08-19 21:12:45 +02001562static void gfar_timeout(struct net_device *dev)
1563{
1564 struct gfar_private *priv = netdev_priv(dev);
1565
1566 dev->stats.tx_errors++;
1567 schedule_work(&priv->reset_task);
1568}
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001571static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Dai Harukid080cd62008-04-09 19:37:51 -05001573 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001574 struct txbd8 *bdp;
1575 struct txbd8 *lbdp = NULL;
1576 struct txbd8 *base = priv->tx_bd_base;
1577 struct sk_buff *skb;
1578 int skb_dirtytx;
1579 int tx_ring_size = priv->tx_ring_size;
1580 int frags = 0;
1581 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05001582 int howmany = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08001583 u32 lstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 bdp = priv->dirty_tx;
Dai Haruki4669bc92008-12-17 16:51:04 -08001586 skb_dirtytx = priv->skb_dirtytx;
1587
1588 while ((skb = priv->tx_skbuff[skb_dirtytx])) {
1589 frags = skb_shinfo(skb)->nr_frags;
1590 lbdp = skip_txbd(bdp, frags, base, tx_ring_size);
1591
1592 lstatus = lbdp->lstatus;
1593
1594 /* Only clean completed frames */
1595 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
1596 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 break;
1598
Kumar Gala48268572009-03-18 23:28:22 -07001599 dma_unmap_single(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001600 bdp->bufPtr,
1601 bdp->length,
1602 DMA_TO_DEVICE);
1603
1604 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1605 bdp = next_txbd(bdp, base, tx_ring_size);
1606
1607 for (i = 0; i < frags; i++) {
Kumar Gala48268572009-03-18 23:28:22 -07001608 dma_unmap_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001609 bdp->bufPtr,
1610 bdp->length,
1611 DMA_TO_DEVICE);
1612 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1613 bdp = next_txbd(bdp, base, tx_ring_size);
1614 }
1615
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001616 /*
1617 * If there's room in the queue (limit it to rx_buffer_size)
1618 * we add this skb back into the pool, if it's the right size
1619 */
1620 if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size &&
1621 skb_recycle_check(skb, priv->rx_buffer_size +
1622 RXBUF_ALIGNMENT))
1623 __skb_queue_head(&priv->rx_recycle, skb);
1624 else
1625 dev_kfree_skb_any(skb);
1626
Dai Haruki4669bc92008-12-17 16:51:04 -08001627 priv->tx_skbuff[skb_dirtytx] = NULL;
1628
1629 skb_dirtytx = (skb_dirtytx + 1) &
1630 TX_RING_MOD_MASK(tx_ring_size);
1631
Dai Harukid080cd62008-04-09 19:37:51 -05001632 howmany++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001633 priv->num_txbdfree += frags + 1;
1634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Dai Haruki4669bc92008-12-17 16:51:04 -08001636 /* If we freed a buffer, we can restart transmission, if necessary */
1637 if (netif_queue_stopped(dev) && priv->num_txbdfree)
1638 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Dai Haruki4669bc92008-12-17 16:51:04 -08001640 /* Update dirty indicators */
1641 priv->skb_dirtytx = skb_dirtytx;
1642 priv->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Dai Harukid080cd62008-04-09 19:37:51 -05001644 dev->stats.tx_packets += howmany;
1645
1646 return howmany;
1647}
1648
Dai Haruki8c7396a2008-12-17 16:52:00 -08001649static void gfar_schedule_cleanup(struct net_device *dev)
1650{
1651 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001652 unsigned long flags;
1653
1654 spin_lock_irqsave(&priv->txlock, flags);
1655 spin_lock(&priv->rxlock);
1656
Ben Hutchings288379f2009-01-19 16:43:59 -08001657 if (napi_schedule_prep(&priv->napi)) {
Dai Haruki8c7396a2008-12-17 16:52:00 -08001658 gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED);
Ben Hutchings288379f2009-01-19 16:43:59 -08001659 __napi_schedule(&priv->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08001660 } else {
1661 /*
1662 * Clear IEVENT, so interrupts aren't called again
1663 * because of the packets that have already arrived.
1664 */
1665 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001666 }
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001667
1668 spin_unlock(&priv->rxlock);
1669 spin_unlock_irqrestore(&priv->txlock, flags);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001670}
1671
Dai Harukid080cd62008-04-09 19:37:51 -05001672/* Interrupt Handler for Transmit complete */
1673static irqreturn_t gfar_transmit(int irq, void *dev_id)
1674{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001675 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return IRQ_HANDLED;
1677}
1678
Andy Fleming815b97c2008-04-22 17:18:29 -05001679static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1680 struct sk_buff *skb)
1681{
1682 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001683 u32 lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001684
Kumar Gala48268572009-03-18 23:28:22 -07001685 bdp->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Andy Fleming815b97c2008-04-22 17:18:29 -05001686 priv->rx_buffer_size, DMA_FROM_DEVICE);
1687
Dai Haruki5a5efed2008-12-16 15:34:50 -08001688 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Andy Fleming815b97c2008-04-22 17:18:29 -05001689
1690 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
Dai Haruki5a5efed2008-12-16 15:34:50 -08001691 lstatus |= BD_LFLAG(RXBD_WRAP);
Andy Fleming815b97c2008-04-22 17:18:29 -05001692
1693 eieio();
1694
Dai Haruki5a5efed2008-12-16 15:34:50 -08001695 bdp->lstatus = lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001696}
1697
1698
1699struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001701 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 struct gfar_private *priv = netdev_priv(dev);
1703 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001705 skb = __skb_dequeue(&priv->rx_recycle);
1706 if (!skb)
1707 skb = netdev_alloc_skb(dev,
1708 priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Andy Fleming815b97c2008-04-22 17:18:29 -05001710 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return NULL;
1712
Andy Fleming7f7f5312005-11-11 12:38:59 -06001713 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001714 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 /* We need the data buffer to be aligned properly. We will reserve
1717 * as many bytes as needed to align the data properly
1718 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001719 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return skb;
1722}
1723
Li Yang298e1a92007-10-16 14:18:13 +08001724static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Li Yang298e1a92007-10-16 14:18:13 +08001726 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001727 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 struct gfar_extra_stats *estats = &priv->extra_stats;
1729
1730 /* If the packet was truncated, none of the other errors
1731 * matter */
1732 if (status & RXBD_TRUNCATED) {
1733 stats->rx_length_errors++;
1734
1735 estats->rx_trunc++;
1736
1737 return;
1738 }
1739 /* Count the errors, if there were any */
1740 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1741 stats->rx_length_errors++;
1742
1743 if (status & RXBD_LARGE)
1744 estats->rx_large++;
1745 else
1746 estats->rx_short++;
1747 }
1748 if (status & RXBD_NONOCTET) {
1749 stats->rx_frame_errors++;
1750 estats->rx_nonoctet++;
1751 }
1752 if (status & RXBD_CRCERR) {
1753 estats->rx_crcerr++;
1754 stats->rx_crc_errors++;
1755 }
1756 if (status & RXBD_OVERRUN) {
1757 estats->rx_overrun++;
1758 stats->rx_crc_errors++;
1759 }
1760}
1761
David Howells7d12e782006-10-05 14:55:46 +01001762irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001764 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return IRQ_HANDLED;
1766}
1767
Kumar Gala0bbaf062005-06-20 10:54:21 -05001768static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1769{
1770 /* If valid headers were found, and valid sums
1771 * were verified, then we tell the kernel that no
1772 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001773 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001774 skb->ip_summed = CHECKSUM_UNNECESSARY;
1775 else
1776 skb->ip_summed = CHECKSUM_NONE;
1777}
1778
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780/* gfar_process_frame() -- handle one incoming packet if skb
1781 * isn't NULL. */
1782static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Dai Haruki2c2db482008-12-16 15:31:15 -08001783 int amount_pull)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
1785 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001786 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Dai Haruki2c2db482008-12-16 15:31:15 -08001788 int ret;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001789
Dai Haruki2c2db482008-12-16 15:31:15 -08001790 /* fcb is at the beginning if exists */
1791 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Dai Haruki2c2db482008-12-16 15:31:15 -08001793 /* Remove the FCB from the skb */
1794 /* Remove the padded bytes, if there are any */
1795 if (amount_pull)
1796 skb_pull(skb, amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001797
Dai Haruki2c2db482008-12-16 15:31:15 -08001798 if (priv->rx_csum_enable)
1799 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001800
Dai Haruki2c2db482008-12-16 15:31:15 -08001801 /* Tell the skb what kind of packet this is */
1802 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001803
Dai Haruki2c2db482008-12-16 15:31:15 -08001804 /* Send the packet up the stack */
1805 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN)))
1806 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl);
1807 else
1808 ret = netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Dai Haruki2c2db482008-12-16 15:31:15 -08001810 if (NET_RX_DROP == ret)
1811 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 return 0;
1814}
1815
1816/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001817 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 * of frames handled
1819 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001820int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Andy Fleming31de1982008-12-16 15:33:40 -08001822 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08001824 int pkt_len;
1825 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 int howmany = 0;
1827 struct gfar_private *priv = netdev_priv(dev);
1828
1829 /* Get the first full descriptor */
1830 bdp = priv->cur_rx;
Andy Fleming31de1982008-12-16 15:33:40 -08001831 base = priv->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Dai Haruki2c2db482008-12-16 15:31:15 -08001833 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) +
1834 priv->padding;
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001837 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001838 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001839
1840 /* Add another skb for the future */
1841 newskb = gfar_new_skb(dev);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 skb = priv->rx_skbuff[priv->skb_currx];
1844
Kumar Gala48268572009-03-18 23:28:22 -07001845 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
Andy Fleming81183052008-11-12 10:07:11 -06001846 priv->rx_buffer_size, DMA_FROM_DEVICE);
1847
Andy Fleming815b97c2008-04-22 17:18:29 -05001848 /* We drop the frame if we failed to allocate a new buffer */
1849 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1850 bdp->status & RXBD_ERR)) {
1851 count_errors(bdp->status, dev);
1852
1853 if (unlikely(!newskb))
1854 newskb = skb;
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001855 else if (skb) {
1856 /*
1857 * We need to reset ->data to what it
1858 * was before gfar_new_skb() re-aligned
1859 * it to an RXBUF_ALIGNMENT boundary
1860 * before we put the skb back on the
1861 * recycle list.
1862 */
1863 skb->data = skb->head + NET_SKB_PAD;
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001864 __skb_queue_head(&priv->rx_recycle, skb);
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001865 }
Andy Fleming815b97c2008-04-22 17:18:29 -05001866 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001868 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 howmany++;
1870
Dai Haruki2c2db482008-12-16 15:31:15 -08001871 if (likely(skb)) {
1872 pkt_len = bdp->length - ETH_FCS_LEN;
1873 /* Remove the FCS from the packet length */
1874 skb_put(skb, pkt_len);
1875 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Andy Fleming1577ece2009-02-04 16:42:12 -08001877 if (in_irq() || irqs_disabled())
1878 printk("Interrupt problem!\n");
Dai Haruki2c2db482008-12-16 15:31:15 -08001879 gfar_process_frame(dev, skb, amount_pull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Dai Haruki2c2db482008-12-16 15:31:15 -08001881 } else {
1882 if (netif_msg_rx_err(priv))
1883 printk(KERN_WARNING
1884 "%s: Missing skb!\n", dev->name);
1885 dev->stats.rx_dropped++;
1886 priv->extra_stats.rx_skbmissing++;
1887 }
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
1890
Andy Fleming815b97c2008-04-22 17:18:29 -05001891 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Andy Fleming815b97c2008-04-22 17:18:29 -05001893 /* Setup the new bdp */
1894 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 /* Update to the next pointer */
Andy Fleming31de1982008-12-16 15:33:40 -08001897 bdp = next_bd(bdp, base, priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 /* update to point at the next skb */
1900 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001901 (priv->skb_currx + 1) &
1902 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904
1905 /* Update the current rxbd pointer to be the next one */
1906 priv->cur_rx = bdp;
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return howmany;
1909}
1910
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001911static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001913 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
Kumar Gala48268572009-03-18 23:28:22 -07001914 struct net_device *dev = priv->ndev;
Andy Fleming42199882008-12-17 16:52:30 -08001915 int tx_cleaned = 0;
1916 int rx_cleaned = 0;
Dai Harukid080cd62008-04-09 19:37:51 -05001917 unsigned long flags;
1918
Dai Haruki8c7396a2008-12-17 16:52:00 -08001919 /* Clear IEVENT, so interrupts aren't called again
1920 * because of the packets that have already arrived */
1921 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1922
Dai Harukid080cd62008-04-09 19:37:51 -05001923 /* If we fail to get the lock, don't bother with the TX BDs */
1924 if (spin_trylock_irqsave(&priv->txlock, flags)) {
Andy Fleming42199882008-12-17 16:52:30 -08001925 tx_cleaned = gfar_clean_tx_ring(dev);
Dai Harukid080cd62008-04-09 19:37:51 -05001926 spin_unlock_irqrestore(&priv->txlock, flags);
1927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Andy Fleming42199882008-12-17 16:52:30 -08001929 rx_cleaned = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Andy Fleming42199882008-12-17 16:52:30 -08001931 if (tx_cleaned)
1932 return budget;
1933
1934 if (rx_cleaned < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001935 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 /* Clear the halt bit in RSTAT */
1938 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
1939
1940 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
1941
1942 /* If we are coalescing interrupts, update the timer */
1943 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001944 if (likely(priv->rxcoalescing)) {
1945 gfar_write(&priv->regs->rxic, 0);
Dai Harukib46a8452008-12-16 15:29:52 -08001946 gfar_write(&priv->regs->rxic, priv->rxic);
Andy Fleming2f448912008-03-24 10:53:28 -05001947 }
Dai Haruki8c7396a2008-12-17 16:52:00 -08001948 if (likely(priv->txcoalescing)) {
1949 gfar_write(&priv->regs->txic, 0);
1950 gfar_write(&priv->regs->txic, priv->txic);
1951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953
Andy Fleming42199882008-12-17 16:52:30 -08001954 return rx_cleaned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001957#ifdef CONFIG_NET_POLL_CONTROLLER
1958/*
1959 * Polling 'interrupt' - used by things like netconsole to send skbs
1960 * without having to re-enable interrupts. It's not called while
1961 * the interrupt routine is executing.
1962 */
1963static void gfar_netpoll(struct net_device *dev)
1964{
1965 struct gfar_private *priv = netdev_priv(dev);
1966
1967 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001968 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001969 disable_irq(priv->interruptTransmit);
1970 disable_irq(priv->interruptReceive);
1971 disable_irq(priv->interruptError);
1972 gfar_interrupt(priv->interruptTransmit, dev);
1973 enable_irq(priv->interruptError);
1974 enable_irq(priv->interruptReceive);
1975 enable_irq(priv->interruptTransmit);
1976 } else {
1977 disable_irq(priv->interruptTransmit);
1978 gfar_interrupt(priv->interruptTransmit, dev);
1979 enable_irq(priv->interruptTransmit);
1980 }
1981}
1982#endif
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01001985static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 struct net_device *dev = dev_id;
1988 struct gfar_private *priv = netdev_priv(dev);
1989
1990 /* Save ievent for future reference */
1991 u32 events = gfar_read(&priv->regs->ievent);
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001994 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001995 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001998 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001999 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002001 /* Check for errors */
2002 if (events & IEVENT_ERR_MASK)
2003 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 return IRQ_HANDLED;
2006}
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008/* Called every time the controller might need to be made
2009 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002010 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 * function converts those variables into the appropriate
2012 * register values, and can bring down the device if needed.
2013 */
2014static void adjust_link(struct net_device *dev)
2015{
2016 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002017 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002018 unsigned long flags;
2019 struct phy_device *phydev = priv->phydev;
2020 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Andy Flemingfef61082006-04-20 16:44:29 -05002022 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002023 if (phydev->link) {
2024 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002025 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 /* Now we make sure that we can be in full duplex mode.
2028 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002029 if (phydev->duplex != priv->oldduplex) {
2030 new_state = 1;
2031 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002033 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002036 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002039 if (phydev->speed != priv->oldspeed) {
2040 new_state = 1;
2041 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 tempval =
2044 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08002045
2046 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 break;
2048 case 100:
2049 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 tempval =
2051 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002052
2053 /* Reduced mode distinguishes
2054 * between 10 and 100 */
2055 if (phydev->speed == SPEED_100)
2056 ecntrl |= ECNTRL_R100;
2057 else
2058 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 break;
2060 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05002061 if (netif_msg_link(priv))
2062 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002063 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2064 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 break;
2066 }
2067
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002068 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002071 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002072 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002075 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002078 } else if (priv->oldlink) {
2079 new_state = 1;
2080 priv->oldlink = 0;
2081 priv->oldspeed = 0;
2082 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002085 if (new_state && netif_msg_link(priv))
2086 phy_print_status(phydev);
2087
Andy Flemingfef61082006-04-20 16:44:29 -05002088 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002089}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091/* Update the hash table based on the current list of multicast
2092 * addresses we subscribe to. Also, change the promiscuity of
2093 * the device based on the flags (this function is called
2094 * whenever dev->flags is changed */
2095static void gfar_set_multi(struct net_device *dev)
2096{
2097 struct dev_mc_list *mc_ptr;
2098 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002099 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 u32 tempval;
2101
2102 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 /* Set RCTRL to PROM */
2104 tempval = gfar_read(&regs->rctrl);
2105 tempval |= RCTRL_PROM;
2106 gfar_write(&regs->rctrl, tempval);
2107 } else {
2108 /* Set RCTRL to not PROM */
2109 tempval = gfar_read(&regs->rctrl);
2110 tempval &= ~(RCTRL_PROM);
2111 gfar_write(&regs->rctrl, tempval);
2112 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if(dev->flags & IFF_ALLMULTI) {
2115 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002116 gfar_write(&regs->igaddr0, 0xffffffff);
2117 gfar_write(&regs->igaddr1, 0xffffffff);
2118 gfar_write(&regs->igaddr2, 0xffffffff);
2119 gfar_write(&regs->igaddr3, 0xffffffff);
2120 gfar_write(&regs->igaddr4, 0xffffffff);
2121 gfar_write(&regs->igaddr5, 0xffffffff);
2122 gfar_write(&regs->igaddr6, 0xffffffff);
2123 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 gfar_write(&regs->gaddr0, 0xffffffff);
2125 gfar_write(&regs->gaddr1, 0xffffffff);
2126 gfar_write(&regs->gaddr2, 0xffffffff);
2127 gfar_write(&regs->gaddr3, 0xffffffff);
2128 gfar_write(&regs->gaddr4, 0xffffffff);
2129 gfar_write(&regs->gaddr5, 0xffffffff);
2130 gfar_write(&regs->gaddr6, 0xffffffff);
2131 gfar_write(&regs->gaddr7, 0xffffffff);
2132 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002133 int em_num;
2134 int idx;
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002137 gfar_write(&regs->igaddr0, 0x0);
2138 gfar_write(&regs->igaddr1, 0x0);
2139 gfar_write(&regs->igaddr2, 0x0);
2140 gfar_write(&regs->igaddr3, 0x0);
2141 gfar_write(&regs->igaddr4, 0x0);
2142 gfar_write(&regs->igaddr5, 0x0);
2143 gfar_write(&regs->igaddr6, 0x0);
2144 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 gfar_write(&regs->gaddr0, 0x0);
2146 gfar_write(&regs->gaddr1, 0x0);
2147 gfar_write(&regs->gaddr2, 0x0);
2148 gfar_write(&regs->gaddr3, 0x0);
2149 gfar_write(&regs->gaddr4, 0x0);
2150 gfar_write(&regs->gaddr5, 0x0);
2151 gfar_write(&regs->gaddr6, 0x0);
2152 gfar_write(&regs->gaddr7, 0x0);
2153
Andy Fleming7f7f5312005-11-11 12:38:59 -06002154 /* If we have extended hash tables, we need to
2155 * clear the exact match registers to prepare for
2156 * setting them */
2157 if (priv->extended_hash) {
2158 em_num = GFAR_EM_NUM + 1;
2159 gfar_clear_exact_match(dev);
2160 idx = 1;
2161 } else {
2162 idx = 0;
2163 em_num = 0;
2164 }
2165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if(dev->mc_count == 0)
2167 return;
2168
2169 /* Parse the list, and set the appropriate bits */
2170 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002171 if (idx < em_num) {
2172 gfar_set_mac_for_addr(dev, idx,
2173 mc_ptr->dmi_addr);
2174 idx++;
2175 } else
2176 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
2178 }
2179
2180 return;
2181}
2182
Andy Fleming7f7f5312005-11-11 12:38:59 -06002183
2184/* Clears each of the exact match registers to zero, so they
2185 * don't interfere with normal reception */
2186static void gfar_clear_exact_match(struct net_device *dev)
2187{
2188 int idx;
2189 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
2190
2191 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
2192 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
2193}
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195/* Set the appropriate hash bit for the given addr */
2196/* The algorithm works like so:
2197 * 1) Take the Destination Address (ie the multicast address), and
2198 * do a CRC on it (little endian), and reverse the bits of the
2199 * result.
2200 * 2) Use the 8 most significant bits as a hash into a 256-entry
2201 * table. The table is controlled through 8 32-bit registers:
2202 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
2203 * gaddr7. This means that the 3 most significant bits in the
2204 * hash index which gaddr register to use, and the 5 other bits
2205 * indicate which bit (assuming an IBM numbering scheme, which
2206 * for PowerPC (tm) is usually the case) in the register holds
2207 * the entry. */
2208static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
2209{
2210 u32 tempval;
2211 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002213 int width = priv->hash_width;
2214 u8 whichbit = (result >> (32 - width)) & 0x1f;
2215 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 u32 value = (1 << (31-whichbit));
2217
Kumar Gala0bbaf062005-06-20 10:54:21 -05002218 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002220 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 return;
2223}
2224
Andy Fleming7f7f5312005-11-11 12:38:59 -06002225
2226/* There are multiple MAC Address register pairs on some controllers
2227 * This function sets the numth pair to a given address
2228 */
2229static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
2230{
2231 struct gfar_private *priv = netdev_priv(dev);
2232 int idx;
2233 char tmpbuf[MAC_ADDR_LEN];
2234 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06002235 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002236
2237 macptr += num*2;
2238
2239 /* Now copy it into the mac registers backwards, cuz */
2240 /* little endian is silly */
2241 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2242 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2243
2244 gfar_write(macptr, *((u32 *) (tmpbuf)));
2245
2246 tempval = *((u32 *) (tmpbuf + 4));
2247
2248 gfar_write(macptr+1, tempval);
2249}
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002252static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 struct net_device *dev = dev_id;
2255 struct gfar_private *priv = netdev_priv(dev);
2256
2257 /* Save ievent for future reference */
2258 u32 events = gfar_read(&priv->regs->ievent);
2259
2260 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002261 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2262
2263 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002264 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05002265 (events & IEVENT_MAG))
2266 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002269 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2270 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002271 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
2273 /* Update the error counters */
2274 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002275 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002278 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002280 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002282 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002283 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2284 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002285 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 priv->extra_stats.tx_underrun++;
2287
2288 /* Reactivate the Tx Queues */
2289 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2290 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002291 if (netif_msg_tx_err(priv))
2292 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
2294 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002295 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 priv->extra_stats.rx_bsy++;
2297
David Howells7d12e782006-10-05 14:55:46 +01002298 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Kumar Gala0bbaf062005-06-20 10:54:21 -05002300 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002301 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2302 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 }
2304 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002305 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 priv->extra_stats.rx_babr++;
2307
Kumar Gala0bbaf062005-06-20 10:54:21 -05002308 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002309 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 if (events & IEVENT_EBERR) {
2312 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002313 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002314 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002316 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002317 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 if (events & IEVENT_BABT) {
2320 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002321 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002322 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324 return IRQ_HANDLED;
2325}
2326
Kay Sievers72abb462008-04-18 13:50:44 -07002327/* work with hotplug and coldplug */
2328MODULE_ALIAS("platform:fsl-gianfar");
2329
Andy Flemingb31a1d82008-12-16 15:29:15 -08002330static struct of_device_id gfar_match[] =
2331{
2332 {
2333 .type = "network",
2334 .compatible = "gianfar",
2335 },
2336 {},
2337};
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339/* Structure for a device driver */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002340static struct of_platform_driver gfar_driver = {
2341 .name = "fsl-gianfar",
2342 .match_table = gfar_match,
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 .probe = gfar_probe,
2345 .remove = gfar_remove,
Scott Woodd87eb122008-07-11 18:04:45 -05002346 .suspend = gfar_suspend,
2347 .resume = gfar_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348};
2349
2350static int __init gfar_init(void)
2351{
Andy Fleming1577ece2009-02-04 16:42:12 -08002352 return of_register_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
2355static void __exit gfar_exit(void)
2356{
Andy Flemingb31a1d82008-12-16 15:29:15 -08002357 of_unregister_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
2360module_init(gfar_init);
2361module_exit(gfar_exit);
2362