blob: a00ec639c38039ad56f17706a5441cabe2c3fc20 [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;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800300 DECLARE_MAC_BUF(mac);
Dai Harukic50a5d92008-12-17 16:51:32 -0800301 int err = 0;
302 int len_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* Create an ethernet device instance */
305 dev = alloc_etherdev(sizeof (*priv));
306
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400307 if (NULL == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -ENOMEM;
309
310 priv = netdev_priv(dev);
Kumar Gala48268572009-03-18 23:28:22 -0700311 priv->ndev = dev;
312 priv->ofdev = ofdev;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800313 priv->node = ofdev->node;
Kumar Gala48268572009-03-18 23:28:22 -0700314 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Andy Flemingb31a1d82008-12-16 15:29:15 -0800316 err = gfar_of_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Andy Flemingb31a1d82008-12-16 15:29:15 -0800318 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Andy Flemingfef61082006-04-20 16:44:29 -0500321 spin_lock_init(&priv->txlock);
322 spin_lock_init(&priv->rxlock);
Scott Woodd87eb122008-07-11 18:04:45 -0500323 spin_lock_init(&priv->bflock);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200324 INIT_WORK(&priv->reset_task, gfar_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Andy Flemingb31a1d82008-12-16 15:29:15 -0800326 dev_set_drvdata(&ofdev->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* Stop the DMA engine now, in case it was running before */
329 /* (The firmware could have used it, and left it running). */
Andy Fleming257d9382008-12-16 15:25:45 -0800330 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* Reset MAC layer */
333 gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
334
Andy Flemingb98ac702009-02-04 16:38:05 -0800335 /* We need to delay at least 3 TX clocks */
336 udelay(2);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
339 gfar_write(&priv->regs->maccfg1, tempval);
340
341 /* Initialize MACCFG2. */
342 gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS);
343
344 /* Initialize ECNTRL */
345 gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /* Set the dev->base_addr to the gfar reg region */
348 dev->base_addr = (unsigned long) (priv->regs);
349
Andy Flemingb31a1d82008-12-16 15:29:15 -0800350 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 /* Fill in the dev structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700354 netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 dev->mtu = 1500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Andy Fleming26ccfc32009-03-10 12:58:28 +0000357 dev->netdev_ops = &gfar_netdev_ops;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500358 dev->ethtool_ops = &gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Andy Flemingb31a1d82008-12-16 15:29:15 -0800360 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500361 priv->rx_csum_enable = 1;
Dai Haruki4669bc92008-12-17 16:51:04 -0800362 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500363 } else
364 priv->rx_csum_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Kumar Gala0bbaf062005-06-20 10:54:21 -0500366 priv->vlgrp = NULL;
367
Andy Fleming26ccfc32009-03-10 12:58:28 +0000368 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500369 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500370
Andy Flemingb31a1d82008-12-16 15:29:15 -0800371 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500372 priv->extended_hash = 1;
373 priv->hash_width = 9;
374
375 priv->hash_regs[0] = &priv->regs->igaddr0;
376 priv->hash_regs[1] = &priv->regs->igaddr1;
377 priv->hash_regs[2] = &priv->regs->igaddr2;
378 priv->hash_regs[3] = &priv->regs->igaddr3;
379 priv->hash_regs[4] = &priv->regs->igaddr4;
380 priv->hash_regs[5] = &priv->regs->igaddr5;
381 priv->hash_regs[6] = &priv->regs->igaddr6;
382 priv->hash_regs[7] = &priv->regs->igaddr7;
383 priv->hash_regs[8] = &priv->regs->gaddr0;
384 priv->hash_regs[9] = &priv->regs->gaddr1;
385 priv->hash_regs[10] = &priv->regs->gaddr2;
386 priv->hash_regs[11] = &priv->regs->gaddr3;
387 priv->hash_regs[12] = &priv->regs->gaddr4;
388 priv->hash_regs[13] = &priv->regs->gaddr5;
389 priv->hash_regs[14] = &priv->regs->gaddr6;
390 priv->hash_regs[15] = &priv->regs->gaddr7;
391
392 } else {
393 priv->extended_hash = 0;
394 priv->hash_width = 8;
395
396 priv->hash_regs[0] = &priv->regs->gaddr0;
Andy Fleming1577ece2009-02-04 16:42:12 -0800397 priv->hash_regs[1] = &priv->regs->gaddr1;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500398 priv->hash_regs[2] = &priv->regs->gaddr2;
399 priv->hash_regs[3] = &priv->regs->gaddr3;
400 priv->hash_regs[4] = &priv->regs->gaddr4;
401 priv->hash_regs[5] = &priv->regs->gaddr5;
402 priv->hash_regs[6] = &priv->regs->gaddr6;
403 priv->hash_regs[7] = &priv->regs->gaddr7;
404 }
405
Andy Flemingb31a1d82008-12-16 15:29:15 -0800406 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500407 priv->padding = DEFAULT_PADDING;
408 else
409 priv->padding = 0;
410
Kumar Gala0bbaf062005-06-20 10:54:21 -0500411 if (dev->features & NETIF_F_IP_CSUM)
412 dev->hard_header_len += GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 priv->tx_ring_size = DEFAULT_TX_RING_SIZE;
416 priv->rx_ring_size = DEFAULT_RX_RING_SIZE;
Dai Haruki4669bc92008-12-17 16:51:04 -0800417 priv->num_txbdfree = DEFAULT_TX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 priv->txcoalescing = DEFAULT_TX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800420 priv->txic = DEFAULT_TXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 priv->rxcoalescing = DEFAULT_RX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800422 priv->rxic = DEFAULT_RXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Kumar Gala0bbaf062005-06-20 10:54:21 -0500424 /* Enable most messages by default */
425 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
426
Trent Piephod3eab822008-10-02 11:12:24 +0000427 /* Carrier starts down, phylib will bring it up */
428 netif_carrier_off(dev);
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 err = register_netdev(dev);
431
432 if (err) {
433 printk(KERN_ERR "%s: Cannot register net device, aborting.\n",
434 dev->name);
435 goto register_fail;
436 }
437
Anton Vorontsov2884e5c2009-02-01 00:52:34 -0800438 device_init_wakeup(&dev->dev,
439 priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
440
Dai Harukic50a5d92008-12-17 16:51:32 -0800441 /* fill out IRQ number and name fields */
442 len_devname = strlen(dev->name);
443 strncpy(&priv->int_name_tx[0], dev->name, len_devname);
444 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
445 strncpy(&priv->int_name_tx[len_devname],
446 "_tx", sizeof("_tx") + 1);
447
448 strncpy(&priv->int_name_rx[0], dev->name, len_devname);
449 strncpy(&priv->int_name_rx[len_devname],
450 "_rx", sizeof("_rx") + 1);
451
452 strncpy(&priv->int_name_er[0], dev->name, len_devname);
453 strncpy(&priv->int_name_er[len_devname],
454 "_er", sizeof("_er") + 1);
455 } else
456 priv->int_name_tx[len_devname] = '\0';
457
Andy Fleming7f7f5312005-11-11 12:38:59 -0600458 /* Create all the sysfs files */
459 gfar_init_sysfs(dev);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* Print out the device info */
Johannes Berge1749612008-10-27 15:59:26 -0700462 printk(KERN_INFO DEVICE_NAME "%pM\n", dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /* Even more device info helps when determining which kernel */
Andy Fleming7f7f5312005-11-11 12:38:59 -0600465 /* provided which set of benchmarks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n",
468 dev->name, priv->rx_ring_size, priv->tx_ring_size);
469
470 return 0;
471
472register_fail:
Kumar Galacc8c6e32006-02-01 15:18:03 -0600473 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474regs_fail:
Grant Likelyfe192a42009-04-25 12:53:12 +0000475 if (priv->phy_node)
476 of_node_put(priv->phy_node);
477 if (priv->tbi_node)
478 of_node_put(priv->tbi_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 free_netdev(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400480 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Andy Flemingb31a1d82008-12-16 15:29:15 -0800483static int gfar_remove(struct of_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800485 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Grant Likelyfe192a42009-04-25 12:53:12 +0000487 if (priv->phy_node)
488 of_node_put(priv->phy_node);
489 if (priv->tbi_node)
490 of_node_put(priv->tbi_node);
491
Andy Flemingb31a1d82008-12-16 15:29:15 -0800492 dev_set_drvdata(&ofdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
David S. Millerd9d8e042009-09-06 01:41:02 -0700494 unregister_netdev(priv->ndev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600495 iounmap(priv->regs);
Kumar Gala48268572009-03-18 23:28:22 -0700496 free_netdev(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 return 0;
499}
500
Scott Woodd87eb122008-07-11 18:04:45 -0500501#ifdef CONFIG_PM
Andy Flemingb31a1d82008-12-16 15:29:15 -0800502static int gfar_suspend(struct of_device *ofdev, pm_message_t state)
Scott Woodd87eb122008-07-11 18:04:45 -0500503{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800504 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700505 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500506 unsigned long flags;
507 u32 tempval;
508
509 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800510 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500511
512 netif_device_detach(dev);
513
514 if (netif_running(dev)) {
515 spin_lock_irqsave(&priv->txlock, flags);
516 spin_lock(&priv->rxlock);
517
518 gfar_halt_nodisable(dev);
519
520 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
521 tempval = gfar_read(&priv->regs->maccfg1);
522
523 tempval &= ~MACCFG1_TX_EN;
524
525 if (!magic_packet)
526 tempval &= ~MACCFG1_RX_EN;
527
528 gfar_write(&priv->regs->maccfg1, tempval);
529
530 spin_unlock(&priv->rxlock);
531 spin_unlock_irqrestore(&priv->txlock, flags);
532
Scott Woodd87eb122008-07-11 18:04:45 -0500533 napi_disable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500534
535 if (magic_packet) {
536 /* Enable interrupt on Magic Packet */
537 gfar_write(&priv->regs->imask, IMASK_MAG);
538
539 /* Enable Magic Packet mode */
540 tempval = gfar_read(&priv->regs->maccfg2);
541 tempval |= MACCFG2_MPEN;
542 gfar_write(&priv->regs->maccfg2, tempval);
543 } else {
544 phy_stop(priv->phydev);
545 }
546 }
547
548 return 0;
549}
550
Andy Flemingb31a1d82008-12-16 15:29:15 -0800551static int gfar_resume(struct of_device *ofdev)
Scott Woodd87eb122008-07-11 18:04:45 -0500552{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800553 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700554 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500555 unsigned long flags;
556 u32 tempval;
557 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800558 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500559
560 if (!netif_running(dev)) {
561 netif_device_attach(dev);
562 return 0;
563 }
564
565 if (!magic_packet && priv->phydev)
566 phy_start(priv->phydev);
567
568 /* Disable Magic Packet mode, in case something
569 * else woke us up.
570 */
571
572 spin_lock_irqsave(&priv->txlock, flags);
573 spin_lock(&priv->rxlock);
574
575 tempval = gfar_read(&priv->regs->maccfg2);
576 tempval &= ~MACCFG2_MPEN;
577 gfar_write(&priv->regs->maccfg2, tempval);
578
579 gfar_start(dev);
580
581 spin_unlock(&priv->rxlock);
582 spin_unlock_irqrestore(&priv->txlock, flags);
583
584 netif_device_attach(dev);
585
Scott Woodd87eb122008-07-11 18:04:45 -0500586 napi_enable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500587
588 return 0;
589}
590#else
591#define gfar_suspend NULL
592#define gfar_resume NULL
593#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600595/* Reads the controller's registers to determine what interface
596 * connects it to the PHY.
597 */
598static phy_interface_t gfar_get_interface(struct net_device *dev)
599{
600 struct gfar_private *priv = netdev_priv(dev);
601 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
602
603 if (ecntrl & ECNTRL_SGMII_MODE)
604 return PHY_INTERFACE_MODE_SGMII;
605
606 if (ecntrl & ECNTRL_TBI_MODE) {
607 if (ecntrl & ECNTRL_REDUCED_MODE)
608 return PHY_INTERFACE_MODE_RTBI;
609 else
610 return PHY_INTERFACE_MODE_TBI;
611 }
612
613 if (ecntrl & ECNTRL_REDUCED_MODE) {
614 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
615 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500616 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800617 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -0500618
619 /*
620 * This isn't autodetected right now, so it must
621 * be set by the device tree or platform code.
622 */
623 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
624 return PHY_INTERFACE_MODE_RGMII_ID;
625
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600626 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500627 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600628 }
629
Andy Flemingb31a1d82008-12-16 15:29:15 -0800630 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600631 return PHY_INTERFACE_MODE_GMII;
632
633 return PHY_INTERFACE_MODE_MII;
634}
635
636
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400637/* Initializes driver's PHY state, and attaches to the PHY.
638 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
640static int init_phy(struct net_device *dev)
641{
642 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400643 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -0800644 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400645 SUPPORTED_1000baseT_Full : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600646 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 priv->oldlink = 0;
649 priv->oldspeed = 0;
650 priv->oldduplex = -1;
651
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600652 interface = gfar_get_interface(dev);
653
Anton Vorontsov1db780f2009-07-16 21:31:42 +0000654 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
655 interface);
656 if (!priv->phydev)
657 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
658 interface);
659 if (!priv->phydev) {
660 dev_err(&dev->dev, "could not attach to PHY\n");
661 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +0000662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Kapil Junejad3c12872007-05-11 18:25:11 -0500664 if (interface == PHY_INTERFACE_MODE_SGMII)
665 gfar_configure_serdes(dev);
666
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400667 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +0000668 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
669 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
Paul Gortmakerd0313582008-04-17 00:08:10 -0400674/*
675 * Initialize TBI PHY interface for communicating with the
676 * SERDES lynx PHY on the chip. We communicate with this PHY
677 * through the MDIO bus on each controller, treating it as a
678 * "normal" PHY at the address found in the TBIPA register. We assume
679 * that the TBIPA register is valid. Either the MDIO bus code will set
680 * it to a value that doesn't conflict with other PHYs on the bus, or the
681 * value doesn't matter, as there are no other PHYs on the bus.
682 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500683static void gfar_configure_serdes(struct net_device *dev)
684{
685 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +0000686 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -0700687
Grant Likelyfe192a42009-04-25 12:53:12 +0000688 if (!priv->tbi_node) {
689 dev_warn(&dev->dev, "error: SGMII mode requires that the "
690 "device tree specify a tbi-handle\n");
691 return;
692 }
693
694 tbiphy = of_phy_find_device(priv->tbi_node);
695 if (!tbiphy) {
696 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -0800697 return;
698 }
Kapil Junejad3c12872007-05-11 18:25:11 -0500699
Andy Flemingb31a1d82008-12-16 15:29:15 -0800700 /*
701 * If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -0700702 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
703 * everything for us? Resetting it takes the link down and requires
704 * several seconds for it to come back.
705 */
Grant Likelyfe192a42009-04-25 12:53:12 +0000706 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800707 return;
Kapil Junejad3c12872007-05-11 18:25:11 -0500708
Paul Gortmakerd0313582008-04-17 00:08:10 -0400709 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +0000710 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500711
Grant Likelyfe192a42009-04-25 12:53:12 +0000712 phy_write(tbiphy, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500713 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
714 ADVERTISE_1000XPSE_ASYM);
715
Grant Likelyfe192a42009-04-25 12:53:12 +0000716 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500717 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
718}
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static void init_registers(struct net_device *dev)
721{
722 struct gfar_private *priv = netdev_priv(dev);
723
724 /* Clear IEVENT */
725 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
726
727 /* Initialize IMASK */
728 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
729
730 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500731 gfar_write(&priv->regs->igaddr0, 0);
732 gfar_write(&priv->regs->igaddr1, 0);
733 gfar_write(&priv->regs->igaddr2, 0);
734 gfar_write(&priv->regs->igaddr3, 0);
735 gfar_write(&priv->regs->igaddr4, 0);
736 gfar_write(&priv->regs->igaddr5, 0);
737 gfar_write(&priv->regs->igaddr6, 0);
738 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 gfar_write(&priv->regs->gaddr0, 0);
741 gfar_write(&priv->regs->gaddr1, 0);
742 gfar_write(&priv->regs->gaddr2, 0);
743 gfar_write(&priv->regs->gaddr3, 0);
744 gfar_write(&priv->regs->gaddr4, 0);
745 gfar_write(&priv->regs->gaddr5, 0);
746 gfar_write(&priv->regs->gaddr6, 0);
747 gfar_write(&priv->regs->gaddr7, 0);
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* Zero out the rmon mib registers if it has them */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800750 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600751 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 /* Mask off the CAM interrupts */
754 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
755 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
756 }
757
758 /* Initialize the max receive buffer length */
759 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* Initialize the Minimum Frame Length Register */
762 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Kumar Gala0bbaf062005-06-20 10:54:21 -0500765
766/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -0500767static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600770 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 u32 tempval;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 /* Mask all interrupts */
774 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
775
776 /* Clear all interrupts */
777 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
778
779 /* Stop the DMA, and wait for it to stop */
780 tempval = gfar_read(&priv->regs->dmactrl);
781 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
782 != (DMACTRL_GRS | DMACTRL_GTS)) {
783 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
784 gfar_write(&priv->regs->dmactrl, tempval);
785
786 while (!(gfar_read(&priv->regs->ievent) &
787 (IEVENT_GRSC | IEVENT_GTSC)))
788 cpu_relax();
789 }
Scott Woodd87eb122008-07-11 18:04:45 -0500790}
Scott Woodd87eb122008-07-11 18:04:45 -0500791
792/* Halt the receive and transmit queues */
793void gfar_halt(struct net_device *dev)
794{
795 struct gfar_private *priv = netdev_priv(dev);
796 struct gfar __iomem *regs = priv->regs;
797 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Scott Wood2a54adc2008-08-12 15:10:46 -0500799 gfar_halt_nodisable(dev);
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 /* Disable Rx and Tx */
802 tempval = gfar_read(&regs->maccfg1);
803 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
804 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500805}
806
807void stop_gfar(struct net_device *dev)
808{
809 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600810 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500811 unsigned long flags;
812
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400813 phy_stop(priv->phydev);
814
Kumar Gala0bbaf062005-06-20 10:54:21 -0500815 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -0500816 spin_lock_irqsave(&priv->txlock, flags);
817 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500818
Kumar Gala0bbaf062005-06-20 10:54:21 -0500819 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Andy Flemingfef61082006-04-20 16:44:29 -0500821 spin_unlock(&priv->rxlock);
822 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* Free the IRQs */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800825 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 free_irq(priv->interruptError, dev);
827 free_irq(priv->interruptTransmit, dev);
828 free_irq(priv->interruptReceive, dev);
829 } else {
Andy Fleming1577ece2009-02-04 16:42:12 -0800830 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832
833 free_skb_resources(priv);
834
Kumar Gala48268572009-03-18 23:28:22 -0700835 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 sizeof(struct txbd8)*priv->tx_ring_size
837 + sizeof(struct rxbd8)*priv->rx_ring_size,
838 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -0500839 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842/* If there are any tx skbs or rx skbs still around, free them.
843 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400844static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct rxbd8 *rxbdp;
847 struct txbd8 *txbdp;
Dai Haruki4669bc92008-12-17 16:51:04 -0800848 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /* Go through all the buffer descriptors and free their data buffers */
851 txbdp = priv->tx_bd_base;
852
853 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki4669bc92008-12-17 16:51:04 -0800854 if (!priv->tx_skbuff[i])
855 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Kumar Gala48268572009-03-18 23:28:22 -0700857 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800858 txbdp->length, DMA_TO_DEVICE);
859 txbdp->lstatus = 0;
860 for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) {
861 txbdp++;
Kumar Gala48268572009-03-18 23:28:22 -0700862 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800863 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Andy Flemingad5da7a2008-05-07 13:20:55 -0500865 txbdp++;
Dai Haruki4669bc92008-12-17 16:51:04 -0800866 dev_kfree_skb_any(priv->tx_skbuff[i]);
867 priv->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869
870 kfree(priv->tx_skbuff);
871
872 rxbdp = priv->rx_bd_base;
873
874 /* rx_skbuff is not guaranteed to be allocated, so only
875 * free it and its contents if it is allocated */
876 if(priv->rx_skbuff != NULL) {
877 for (i = 0; i < priv->rx_ring_size; i++) {
878 if (priv->rx_skbuff[i]) {
Kumar Gala48268572009-03-18 23:28:22 -0700879 dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr,
Andy Fleming7f7f5312005-11-11 12:38:59 -0600880 priv->rx_buffer_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 DMA_FROM_DEVICE);
882
883 dev_kfree_skb_any(priv->rx_skbuff[i]);
884 priv->rx_skbuff[i] = NULL;
885 }
886
Dai Haruki5a5efed2008-12-16 15:34:50 -0800887 rxbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 rxbdp->bufPtr = 0;
889
890 rxbdp++;
891 }
892
893 kfree(priv->rx_skbuff);
894 }
895}
896
Kumar Gala0bbaf062005-06-20 10:54:21 -0500897void gfar_start(struct net_device *dev)
898{
899 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600900 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500901 u32 tempval;
902
903 /* Enable Rx and Tx in MACCFG1 */
904 tempval = gfar_read(&regs->maccfg1);
905 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
906 gfar_write(&regs->maccfg1, tempval);
907
908 /* Initialize DMACTRL to have WWR and WOP */
909 tempval = gfar_read(&priv->regs->dmactrl);
910 tempval |= DMACTRL_INIT_SETTINGS;
911 gfar_write(&priv->regs->dmactrl, tempval);
912
Kumar Gala0bbaf062005-06-20 10:54:21 -0500913 /* Make sure we aren't stopped */
914 tempval = gfar_read(&priv->regs->dmactrl);
915 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
916 gfar_write(&priv->regs->dmactrl, tempval);
917
Andy Flemingfef61082006-04-20 16:44:29 -0500918 /* Clear THLT/RHLT, so that the DMA starts polling now */
919 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
920 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
921
Kumar Gala0bbaf062005-06-20 10:54:21 -0500922 /* Unmask the interrupts we look for */
923 gfar_write(&regs->imask, IMASK_DEFAULT);
Dai Haruki12dea572008-12-16 15:30:20 -0800924
925 dev->trans_start = jiffies;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500926}
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928/* Bring the controller up and running */
929int startup_gfar(struct net_device *dev)
930{
931 struct txbd8 *txbdp;
932 struct rxbd8 *rxbdp;
Grant Likelyf9663ae2007-12-01 22:10:03 -0700933 dma_addr_t addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 unsigned long vaddr;
935 int i;
936 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600937 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 int err = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500939 u32 rctrl = 0;
Yong Zhang75c48852009-08-07 16:36:52 +0000940 u32 tctrl = 0;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600941 u32 attrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
944
945 /* Allocate memory for the buffer descriptors */
Kumar Gala48268572009-03-18 23:28:22 -0700946 vaddr = (unsigned long) dma_alloc_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 sizeof (struct txbd8) * priv->tx_ring_size +
948 sizeof (struct rxbd8) * priv->rx_ring_size,
949 &addr, GFP_KERNEL);
950
951 if (vaddr == 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500952 if (netif_msg_ifup(priv))
953 printk(KERN_ERR "%s: Could not allocate buffer descriptors!\n",
954 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return -ENOMEM;
956 }
957
958 priv->tx_bd_base = (struct txbd8 *) vaddr;
959
960 /* enet DMA only understands physical addresses */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500961 gfar_write(&regs->tbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /* Start the rx descriptor ring where the tx ring leaves off */
964 addr = addr + sizeof (struct txbd8) * priv->tx_ring_size;
965 vaddr = vaddr + sizeof (struct txbd8) * priv->tx_ring_size;
966 priv->rx_bd_base = (struct rxbd8 *) vaddr;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500967 gfar_write(&regs->rbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 /* Setup the skbuff rings */
970 priv->tx_skbuff =
971 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
972 priv->tx_ring_size, GFP_KERNEL);
973
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400974 if (NULL == priv->tx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500975 if (netif_msg_ifup(priv))
976 printk(KERN_ERR "%s: Could not allocate tx_skbuff\n",
977 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 err = -ENOMEM;
979 goto tx_skb_fail;
980 }
981
982 for (i = 0; i < priv->tx_ring_size; i++)
983 priv->tx_skbuff[i] = NULL;
984
985 priv->rx_skbuff =
986 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
987 priv->rx_ring_size, GFP_KERNEL);
988
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400989 if (NULL == priv->rx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500990 if (netif_msg_ifup(priv))
991 printk(KERN_ERR "%s: Could not allocate rx_skbuff\n",
992 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 err = -ENOMEM;
994 goto rx_skb_fail;
995 }
996
997 for (i = 0; i < priv->rx_ring_size; i++)
998 priv->rx_skbuff[i] = NULL;
999
1000 /* Initialize some variables in our dev structure */
Dai Haruki4669bc92008-12-17 16:51:04 -08001001 priv->num_txbdfree = priv->tx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
1003 priv->cur_rx = priv->rx_bd_base;
1004 priv->skb_curtx = priv->skb_dirtytx = 0;
1005 priv->skb_currx = 0;
1006
1007 /* Initialize Transmit Descriptor Ring */
1008 txbdp = priv->tx_bd_base;
1009 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki5a5efed2008-12-16 15:34:50 -08001010 txbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 txbdp->bufPtr = 0;
1012 txbdp++;
1013 }
1014
1015 /* Set the last descriptor in the ring to indicate wrap */
1016 txbdp--;
1017 txbdp->status |= TXBD_WRAP;
1018
1019 rxbdp = priv->rx_bd_base;
1020 for (i = 0; i < priv->rx_ring_size; i++) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001021 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Andy Fleming815b97c2008-04-22 17:18:29 -05001023 skb = gfar_new_skb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Andy Fleming815b97c2008-04-22 17:18:29 -05001025 if (!skb) {
1026 printk(KERN_ERR "%s: Can't allocate RX buffers\n",
1027 dev->name);
1028
1029 goto err_rxalloc_fail;
1030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 priv->rx_skbuff[i] = skb;
1033
Andy Fleming815b97c2008-04-22 17:18:29 -05001034 gfar_new_rxbdp(dev, rxbdp, skb);
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 rxbdp++;
1037 }
1038
1039 /* Set the last descriptor in the ring to wrap */
1040 rxbdp--;
1041 rxbdp->status |= RXBD_WRAP;
1042
1043 /* If the device has multiple interrupts, register for
1044 * them. Otherwise, only register for the one */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001045 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001046 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 * Transmit, and Receive */
1048 if (request_irq(priv->interruptError, gfar_error,
Dai Harukic50a5d92008-12-17 16:51:32 -08001049 0, priv->int_name_er, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001050 if (netif_msg_intr(priv))
1051 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1052 dev->name, priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 err = -1;
1055 goto err_irq_fail;
1056 }
1057
1058 if (request_irq(priv->interruptTransmit, gfar_transmit,
Dai Harukic50a5d92008-12-17 16:51:32 -08001059 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001060 if (netif_msg_intr(priv))
1061 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1062 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 err = -1;
1065
1066 goto tx_irq_fail;
1067 }
1068
1069 if (request_irq(priv->interruptReceive, gfar_receive,
Dai Harukic50a5d92008-12-17 16:51:32 -08001070 0, priv->int_name_rx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001071 if (netif_msg_intr(priv))
1072 printk(KERN_ERR "%s: Can't get IRQ %d (receive0)\n",
1073 dev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 err = -1;
1076 goto rx_irq_fail;
1077 }
1078 } else {
1079 if (request_irq(priv->interruptTransmit, gfar_interrupt,
Dai Harukic50a5d92008-12-17 16:51:32 -08001080 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001081 if (netif_msg_intr(priv))
1082 printk(KERN_ERR "%s: Can't get IRQ %d\n",
Dai Harukic50a5d92008-12-17 16:51:32 -08001083 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 err = -1;
1086 goto err_irq_fail;
1087 }
1088 }
1089
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001090 phy_start(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 /* Configure the coalescing support */
Dai Harukib46a8452008-12-16 15:29:52 -08001093 gfar_write(&regs->txic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (priv->txcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001095 gfar_write(&regs->txic, priv->txic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Dai Harukib46a8452008-12-16 15:29:52 -08001097 gfar_write(&regs->rxic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (priv->rxcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001099 gfar_write(&regs->rxic, priv->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Kumar Gala0bbaf062005-06-20 10:54:21 -05001101 if (priv->rx_csum_enable)
1102 rctrl |= RCTRL_CHECKSUMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Andy Fleming7f7f5312005-11-11 12:38:59 -06001104 if (priv->extended_hash) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001105 rctrl |= RCTRL_EXTHASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Andy Fleming7f7f5312005-11-11 12:38:59 -06001107 gfar_clear_exact_match(dev);
1108 rctrl |= RCTRL_EMEN;
1109 }
1110
Andy Fleming7f7f5312005-11-11 12:38:59 -06001111 if (priv->padding) {
1112 rctrl &= ~RCTRL_PAL_MASK;
1113 rctrl |= RCTRL_PADDING(priv->padding);
1114 }
1115
Yong Zhang75c48852009-08-07 16:36:52 +00001116 /* keep vlan related bits if it's enabled */
1117 if (priv->vlgrp) {
1118 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
1119 tctrl |= TCTRL_VLINS;
1120 }
1121
Kumar Gala0bbaf062005-06-20 10:54:21 -05001122 /* Init rctrl based on our settings */
1123 gfar_write(&priv->regs->rctrl, rctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Kumar Gala0bbaf062005-06-20 10:54:21 -05001125 if (dev->features & NETIF_F_IP_CSUM)
Yong Zhang75c48852009-08-07 16:36:52 +00001126 tctrl |= TCTRL_INIT_CSUM;
1127
1128 gfar_write(&priv->regs->tctrl, tctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Andy Fleming7f7f5312005-11-11 12:38:59 -06001130 /* Set the extraction length and index */
1131 attrs = ATTRELI_EL(priv->rx_stash_size) |
1132 ATTRELI_EI(priv->rx_stash_index);
1133
1134 gfar_write(&priv->regs->attreli, attrs);
1135
1136 /* Start with defaults, and add stashing or locking
1137 * depending on the approprate variables */
1138 attrs = ATTR_INIT_SETTINGS;
1139
1140 if (priv->bd_stash_en)
1141 attrs |= ATTR_BDSTASH;
1142
1143 if (priv->rx_stash_size != 0)
1144 attrs |= ATTR_BUFSTASH;
1145
1146 gfar_write(&priv->regs->attr, attrs);
1147
1148 gfar_write(&priv->regs->fifo_tx_thr, priv->fifo_threshold);
1149 gfar_write(&priv->regs->fifo_tx_starve, priv->fifo_starve);
1150 gfar_write(&priv->regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
1151
1152 /* Start the controller */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001153 gfar_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 return 0;
1156
1157rx_irq_fail:
1158 free_irq(priv->interruptTransmit, dev);
1159tx_irq_fail:
1160 free_irq(priv->interruptError, dev);
1161err_irq_fail:
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001162err_rxalloc_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163rx_skb_fail:
1164 free_skb_resources(priv);
1165tx_skb_fail:
Kumar Gala48268572009-03-18 23:28:22 -07001166 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 sizeof(struct txbd8)*priv->tx_ring_size
1168 + sizeof(struct rxbd8)*priv->rx_ring_size,
1169 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -05001170 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return err;
1173}
1174
1175/* Called when something needs to use the ethernet device */
1176/* Returns 0 for success. */
1177static int gfar_enet_open(struct net_device *dev)
1178{
Li Yang94e8cc32007-10-12 21:53:51 +08001179 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 int err;
1181
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001182 napi_enable(&priv->napi);
1183
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001184 skb_queue_head_init(&priv->rx_recycle);
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* Initialize a bunch of registers */
1187 init_registers(dev);
1188
1189 gfar_set_mac_address(dev);
1190
1191 err = init_phy(dev);
1192
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001193 if(err) {
1194 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001199 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001200 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001201 return err;
1202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 netif_start_queue(dev);
1205
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001206 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return err;
1209}
1210
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001211static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001212{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001213 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07001214
1215 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001216
Kumar Gala0bbaf062005-06-20 10:54:21 -05001217 return fcb;
1218}
1219
1220static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1221{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001222 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001223
1224 /* If we're here, it's a IP packet with a TCP or UDP
1225 * payload. We set it to checksum, using a pseudo-header
1226 * we provide
1227 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001228 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001229
Andy Fleming7f7f5312005-11-11 12:38:59 -06001230 /* Tell the controller what the protocol is */
1231 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001232 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001233 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001234 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001235 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001236 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001237
1238 /* l3os is the distance between the start of the
1239 * frame (skb->data) and the start of the IP hdr.
1240 * l4os is the distance between the start of the
1241 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001242 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001243 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001244
Andy Fleming7f7f5312005-11-11 12:38:59 -06001245 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001246}
1247
Andy Fleming7f7f5312005-11-11 12:38:59 -06001248void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001249{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001250 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001251 fcb->vlctl = vlan_tx_tag_get(skb);
1252}
1253
Dai Haruki4669bc92008-12-17 16:51:04 -08001254static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
1255 struct txbd8 *base, int ring_size)
1256{
1257 struct txbd8 *new_bd = bdp + stride;
1258
1259 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
1260}
1261
1262static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
1263 int ring_size)
1264{
1265 return skip_txbd(bdp, 1, base, ring_size);
1266}
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268/* This is called by the kernel when a frame is ready for transmission. */
1269/* It is pointed to by the dev->hard_start_xmit function pointer */
1270static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1271{
1272 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001273 struct txfcb *fcb = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08001274 struct txbd8 *txbdp, *txbdp_start, *base;
Dai Haruki5a5efed2008-12-16 15:34:50 -08001275 u32 lstatus;
Dai Haruki4669bc92008-12-17 16:51:04 -08001276 int i;
1277 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05001278 unsigned long flags;
Dai Haruki4669bc92008-12-17 16:51:04 -08001279 unsigned int nr_frags, length;
1280
1281 base = priv->tx_bd_base;
1282
Li Yang5b28bea2009-03-27 15:54:30 -07001283 /* make space for additional header when fcb is needed */
1284 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
1285 (priv->vlgrp && vlan_tx_tag_present(skb))) &&
1286 (skb_headroom(skb) < GMAC_FCB_LEN)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001287 struct sk_buff *skb_new;
1288
1289 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
1290 if (!skb_new) {
1291 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07001292 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001293 return NETDEV_TX_OK;
1294 }
1295 kfree_skb(skb);
1296 skb = skb_new;
1297 }
1298
Dai Haruki4669bc92008-12-17 16:51:04 -08001299 /* total number of fragments in the SKB */
1300 nr_frags = skb_shinfo(skb)->nr_frags;
1301
1302 spin_lock_irqsave(&priv->txlock, flags);
1303
1304 /* check if there is space to queue this packet */
Rini van Zetten7958a452009-02-27 03:18:48 -08001305 if ((nr_frags+1) > priv->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001306 /* no space, stop the queue */
1307 netif_stop_queue(dev);
1308 dev->stats.tx_fifo_errors++;
1309 spin_unlock_irqrestore(&priv->txlock, flags);
1310 return NETDEV_TX_BUSY;
1311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001314 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Dai Haruki4669bc92008-12-17 16:51:04 -08001316 txbdp = txbdp_start = priv->cur_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Dai Haruki4669bc92008-12-17 16:51:04 -08001318 if (nr_frags == 0) {
1319 lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1320 } else {
1321 /* Place the fragment addresses and lengths into the TxBDs */
1322 for (i = 0; i < nr_frags; i++) {
1323 /* Point at the next BD, wrapping as needed */
1324 txbdp = next_txbd(txbdp, base, priv->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Dai Haruki4669bc92008-12-17 16:51:04 -08001326 length = skb_shinfo(skb)->frags[i].size;
1327
1328 lstatus = txbdp->lstatus | length |
1329 BD_LFLAG(TXBD_READY);
1330
1331 /* Handle the last BD specially */
1332 if (i == nr_frags - 1)
1333 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1334
Kumar Gala48268572009-03-18 23:28:22 -07001335 bufaddr = dma_map_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001336 skb_shinfo(skb)->frags[i].page,
1337 skb_shinfo(skb)->frags[i].page_offset,
1338 length,
1339 DMA_TO_DEVICE);
1340
1341 /* set the TxBD length and buffer pointer */
1342 txbdp->bufPtr = bufaddr;
1343 txbdp->lstatus = lstatus;
1344 }
1345
1346 lstatus = txbdp_start->lstatus;
1347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Kumar Gala0bbaf062005-06-20 10:54:21 -05001349 /* Set up checksumming */
Dai Haruki12dea572008-12-16 15:30:20 -08001350 if (CHECKSUM_PARTIAL == skb->ip_summed) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001351 fcb = gfar_add_fcb(skb);
1352 lstatus |= BD_LFLAG(TXBD_TOE);
1353 gfar_tx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001354 }
1355
Dai Haruki77ecaf22008-12-16 15:30:48 -08001356 if (priv->vlgrp && vlan_tx_tag_present(skb)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001357 if (unlikely(NULL == fcb)) {
1358 fcb = gfar_add_fcb(skb);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001359 lstatus |= BD_LFLAG(TXBD_TOE);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001360 }
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001361
1362 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001363 }
1364
Dai Haruki4669bc92008-12-17 16:51:04 -08001365 /* setup the TxBD length and buffer pointer for the first BD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 priv->tx_skbuff[priv->skb_curtx] = skb;
Kumar Gala48268572009-03-18 23:28:22 -07001367 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Dai Haruki4669bc92008-12-17 16:51:04 -08001368 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Dai Haruki4669bc92008-12-17 16:51:04 -08001370 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Dai Haruki4669bc92008-12-17 16:51:04 -08001372 /*
1373 * The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05001374 * semantics (it requires synchronization between cacheable and
1375 * uncacheable mappings, which eieio doesn't provide and which we
1376 * don't need), thus requiring a more expensive sync instruction. At
1377 * some point, the set of architecture-independent barrier functions
1378 * should be expanded to include weaker barriers.
1379 */
Scott Wood3b6330c2007-05-16 15:06:59 -05001380 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001381
Dai Haruki4669bc92008-12-17 16:51:04 -08001382 txbdp_start->lstatus = lstatus;
1383
1384 /* Update the current skb pointer to the next entry we will use
1385 * (wrapping if necessary) */
1386 priv->skb_curtx = (priv->skb_curtx + 1) &
1387 TX_RING_MOD_MASK(priv->tx_ring_size);
1388
1389 priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size);
1390
1391 /* reduce TxBD free count */
1392 priv->num_txbdfree -= (nr_frags + 1);
1393
1394 dev->trans_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /* If the next BD still needs to be cleaned up, then the bds
1397 are full. We need to tell the kernel to stop sending us stuff. */
Dai Haruki4669bc92008-12-17 16:51:04 -08001398 if (!priv->num_txbdfree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 netif_stop_queue(dev);
1400
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001401 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* Tell the DMA to go go go */
1405 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1406
1407 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001408 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001410 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413/* Stops the kernel queue, and halts the controller */
1414static int gfar_close(struct net_device *dev)
1415{
1416 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001417
1418 napi_disable(&priv->napi);
1419
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001420 skb_queue_purge(&priv->rx_recycle);
Sebastian Siewiorab939902008-08-19 21:12:45 +02001421 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 stop_gfar(dev);
1423
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001424 /* Disconnect from the PHY */
1425 phy_disconnect(priv->phydev);
1426 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 netif_stop_queue(dev);
1429
1430 return 0;
1431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001434static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001436 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 return 0;
1439}
1440
1441
Kumar Gala0bbaf062005-06-20 10:54:21 -05001442/* Enables and disables VLAN insertion/extraction */
1443static void gfar_vlan_rx_register(struct net_device *dev,
1444 struct vlan_group *grp)
1445{
1446 struct gfar_private *priv = netdev_priv(dev);
1447 unsigned long flags;
1448 u32 tempval;
1449
Andy Flemingfef61082006-04-20 16:44:29 -05001450 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001451
Anton Vorontsovcd1f55a2009-01-26 14:33:23 -08001452 priv->vlgrp = grp;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001453
1454 if (grp) {
1455 /* Enable VLAN tag insertion */
1456 tempval = gfar_read(&priv->regs->tctrl);
1457 tempval |= TCTRL_VLINS;
1458
1459 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001460
Kumar Gala0bbaf062005-06-20 10:54:21 -05001461 /* Enable VLAN tag extraction */
1462 tempval = gfar_read(&priv->regs->rctrl);
Dai Haruki77ecaf22008-12-16 15:30:48 -08001463 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001464 gfar_write(&priv->regs->rctrl, tempval);
1465 } else {
1466 /* Disable VLAN tag insertion */
1467 tempval = gfar_read(&priv->regs->tctrl);
1468 tempval &= ~TCTRL_VLINS;
1469 gfar_write(&priv->regs->tctrl, tempval);
1470
1471 /* Disable VLAN tag extraction */
1472 tempval = gfar_read(&priv->regs->rctrl);
1473 tempval &= ~RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001474 /* If parse is no longer required, then disable parser */
1475 if (tempval & RCTRL_REQ_PARSER)
1476 tempval |= RCTRL_PRSDEP_INIT;
1477 else
1478 tempval &= ~RCTRL_PRSDEP_INIT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001479 gfar_write(&priv->regs->rctrl, tempval);
1480 }
1481
Dai Haruki77ecaf22008-12-16 15:30:48 -08001482 gfar_change_mtu(dev, dev->mtu);
1483
Andy Flemingfef61082006-04-20 16:44:29 -05001484 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001485}
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1488{
1489 int tempsize, tempval;
1490 struct gfar_private *priv = netdev_priv(dev);
1491 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001492 int frame_size = new_mtu + ETH_HLEN;
1493
Dai Haruki77ecaf22008-12-16 15:30:48 -08001494 if (priv->vlgrp)
Dai Harukifaa89572008-03-24 10:53:26 -05001495 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001498 if (netif_msg_drv(priv))
1499 printk(KERN_ERR "%s: Invalid MTU setting\n",
1500 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return -EINVAL;
1502 }
1503
Dai Haruki77ecaf22008-12-16 15:30:48 -08001504 if (gfar_uses_fcb(priv))
1505 frame_size += GMAC_FCB_LEN;
1506
1507 frame_size += priv->padding;
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 tempsize =
1510 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1511 INCREMENTAL_BUFFER_SIZE;
1512
1513 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001514 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1516 stop_gfar(dev);
1517
1518 priv->rx_buffer_size = tempsize;
1519
1520 dev->mtu = new_mtu;
1521
1522 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1523 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1524
1525 /* If the mtu is larger than the max size for standard
1526 * ethernet frames (ie, a jumbo frame), then set maccfg2
1527 * to allow huge frames, and to check the length */
1528 tempval = gfar_read(&priv->regs->maccfg2);
1529
1530 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1531 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1532 else
1533 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1534
1535 gfar_write(&priv->regs->maccfg2, tempval);
1536
1537 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1538 startup_gfar(dev);
1539
1540 return 0;
1541}
1542
Sebastian Siewiorab939902008-08-19 21:12:45 +02001543/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 * transmitted after a set amount of time.
1545 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02001546 * starting over will fix the problem.
1547 */
1548static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Sebastian Siewiorab939902008-08-19 21:12:45 +02001550 struct gfar_private *priv = container_of(work, struct gfar_private,
1551 reset_task);
Kumar Gala48268572009-03-18 23:28:22 -07001552 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 if (dev->flags & IFF_UP) {
Markus Brunnercbea27072009-04-15 02:35:40 -07001555 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 stop_gfar(dev);
1557 startup_gfar(dev);
Markus Brunnercbea27072009-04-15 02:35:40 -07001558 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560
David S. Miller263ba322008-07-15 03:47:41 -07001561 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
Sebastian Siewiorab939902008-08-19 21:12:45 +02001564static void gfar_timeout(struct net_device *dev)
1565{
1566 struct gfar_private *priv = netdev_priv(dev);
1567
1568 dev->stats.tx_errors++;
1569 schedule_work(&priv->reset_task);
1570}
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001573static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Dai Harukid080cd62008-04-09 19:37:51 -05001575 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001576 struct txbd8 *bdp;
1577 struct txbd8 *lbdp = NULL;
1578 struct txbd8 *base = priv->tx_bd_base;
1579 struct sk_buff *skb;
1580 int skb_dirtytx;
1581 int tx_ring_size = priv->tx_ring_size;
1582 int frags = 0;
1583 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05001584 int howmany = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08001585 u32 lstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 bdp = priv->dirty_tx;
Dai Haruki4669bc92008-12-17 16:51:04 -08001588 skb_dirtytx = priv->skb_dirtytx;
1589
1590 while ((skb = priv->tx_skbuff[skb_dirtytx])) {
1591 frags = skb_shinfo(skb)->nr_frags;
1592 lbdp = skip_txbd(bdp, frags, base, tx_ring_size);
1593
1594 lstatus = lbdp->lstatus;
1595
1596 /* Only clean completed frames */
1597 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
1598 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 break;
1600
Kumar Gala48268572009-03-18 23:28:22 -07001601 dma_unmap_single(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001602 bdp->bufPtr,
1603 bdp->length,
1604 DMA_TO_DEVICE);
1605
1606 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1607 bdp = next_txbd(bdp, base, tx_ring_size);
1608
1609 for (i = 0; i < frags; i++) {
Kumar Gala48268572009-03-18 23:28:22 -07001610 dma_unmap_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001611 bdp->bufPtr,
1612 bdp->length,
1613 DMA_TO_DEVICE);
1614 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1615 bdp = next_txbd(bdp, base, tx_ring_size);
1616 }
1617
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001618 /*
1619 * If there's room in the queue (limit it to rx_buffer_size)
1620 * we add this skb back into the pool, if it's the right size
1621 */
1622 if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size &&
1623 skb_recycle_check(skb, priv->rx_buffer_size +
1624 RXBUF_ALIGNMENT))
1625 __skb_queue_head(&priv->rx_recycle, skb);
1626 else
1627 dev_kfree_skb_any(skb);
1628
Dai Haruki4669bc92008-12-17 16:51:04 -08001629 priv->tx_skbuff[skb_dirtytx] = NULL;
1630
1631 skb_dirtytx = (skb_dirtytx + 1) &
1632 TX_RING_MOD_MASK(tx_ring_size);
1633
Dai Harukid080cd62008-04-09 19:37:51 -05001634 howmany++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001635 priv->num_txbdfree += frags + 1;
1636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Dai Haruki4669bc92008-12-17 16:51:04 -08001638 /* If we freed a buffer, we can restart transmission, if necessary */
1639 if (netif_queue_stopped(dev) && priv->num_txbdfree)
1640 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Dai Haruki4669bc92008-12-17 16:51:04 -08001642 /* Update dirty indicators */
1643 priv->skb_dirtytx = skb_dirtytx;
1644 priv->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Dai Harukid080cd62008-04-09 19:37:51 -05001646 dev->stats.tx_packets += howmany;
1647
1648 return howmany;
1649}
1650
Dai Haruki8c7396a2008-12-17 16:52:00 -08001651static void gfar_schedule_cleanup(struct net_device *dev)
1652{
1653 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001654 unsigned long flags;
1655
1656 spin_lock_irqsave(&priv->txlock, flags);
1657 spin_lock(&priv->rxlock);
1658
Ben Hutchings288379f2009-01-19 16:43:59 -08001659 if (napi_schedule_prep(&priv->napi)) {
Dai Haruki8c7396a2008-12-17 16:52:00 -08001660 gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED);
Ben Hutchings288379f2009-01-19 16:43:59 -08001661 __napi_schedule(&priv->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08001662 } else {
1663 /*
1664 * Clear IEVENT, so interrupts aren't called again
1665 * because of the packets that have already arrived.
1666 */
1667 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001668 }
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001669
1670 spin_unlock(&priv->rxlock);
1671 spin_unlock_irqrestore(&priv->txlock, flags);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001672}
1673
Dai Harukid080cd62008-04-09 19:37:51 -05001674/* Interrupt Handler for Transmit complete */
1675static irqreturn_t gfar_transmit(int irq, void *dev_id)
1676{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001677 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return IRQ_HANDLED;
1679}
1680
Andy Fleming815b97c2008-04-22 17:18:29 -05001681static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1682 struct sk_buff *skb)
1683{
1684 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001685 u32 lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001686
Kumar Gala48268572009-03-18 23:28:22 -07001687 bdp->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Andy Fleming815b97c2008-04-22 17:18:29 -05001688 priv->rx_buffer_size, DMA_FROM_DEVICE);
1689
Dai Haruki5a5efed2008-12-16 15:34:50 -08001690 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Andy Fleming815b97c2008-04-22 17:18:29 -05001691
1692 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
Dai Haruki5a5efed2008-12-16 15:34:50 -08001693 lstatus |= BD_LFLAG(RXBD_WRAP);
Andy Fleming815b97c2008-04-22 17:18:29 -05001694
1695 eieio();
1696
Dai Haruki5a5efed2008-12-16 15:34:50 -08001697 bdp->lstatus = lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001698}
1699
1700
1701struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001703 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 struct gfar_private *priv = netdev_priv(dev);
1705 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001707 skb = __skb_dequeue(&priv->rx_recycle);
1708 if (!skb)
1709 skb = netdev_alloc_skb(dev,
1710 priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Andy Fleming815b97c2008-04-22 17:18:29 -05001712 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return NULL;
1714
Andy Fleming7f7f5312005-11-11 12:38:59 -06001715 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001716 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 /* We need the data buffer to be aligned properly. We will reserve
1719 * as many bytes as needed to align the data properly
1720 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001721 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return skb;
1724}
1725
Li Yang298e1a92007-10-16 14:18:13 +08001726static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Li Yang298e1a92007-10-16 14:18:13 +08001728 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001729 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 struct gfar_extra_stats *estats = &priv->extra_stats;
1731
1732 /* If the packet was truncated, none of the other errors
1733 * matter */
1734 if (status & RXBD_TRUNCATED) {
1735 stats->rx_length_errors++;
1736
1737 estats->rx_trunc++;
1738
1739 return;
1740 }
1741 /* Count the errors, if there were any */
1742 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1743 stats->rx_length_errors++;
1744
1745 if (status & RXBD_LARGE)
1746 estats->rx_large++;
1747 else
1748 estats->rx_short++;
1749 }
1750 if (status & RXBD_NONOCTET) {
1751 stats->rx_frame_errors++;
1752 estats->rx_nonoctet++;
1753 }
1754 if (status & RXBD_CRCERR) {
1755 estats->rx_crcerr++;
1756 stats->rx_crc_errors++;
1757 }
1758 if (status & RXBD_OVERRUN) {
1759 estats->rx_overrun++;
1760 stats->rx_crc_errors++;
1761 }
1762}
1763
David Howells7d12e782006-10-05 14:55:46 +01001764irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001766 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return IRQ_HANDLED;
1768}
1769
Kumar Gala0bbaf062005-06-20 10:54:21 -05001770static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1771{
1772 /* If valid headers were found, and valid sums
1773 * were verified, then we tell the kernel that no
1774 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001775 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001776 skb->ip_summed = CHECKSUM_UNNECESSARY;
1777 else
1778 skb->ip_summed = CHECKSUM_NONE;
1779}
1780
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782/* gfar_process_frame() -- handle one incoming packet if skb
1783 * isn't NULL. */
1784static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Dai Haruki2c2db482008-12-16 15:31:15 -08001785 int amount_pull)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
1787 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001788 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Dai Haruki2c2db482008-12-16 15:31:15 -08001790 int ret;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001791
Dai Haruki2c2db482008-12-16 15:31:15 -08001792 /* fcb is at the beginning if exists */
1793 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Dai Haruki2c2db482008-12-16 15:31:15 -08001795 /* Remove the FCB from the skb */
1796 /* Remove the padded bytes, if there are any */
1797 if (amount_pull)
1798 skb_pull(skb, amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001799
Dai Haruki2c2db482008-12-16 15:31:15 -08001800 if (priv->rx_csum_enable)
1801 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001802
Dai Haruki2c2db482008-12-16 15:31:15 -08001803 /* Tell the skb what kind of packet this is */
1804 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001805
Dai Haruki2c2db482008-12-16 15:31:15 -08001806 /* Send the packet up the stack */
1807 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN)))
1808 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl);
1809 else
1810 ret = netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Dai Haruki2c2db482008-12-16 15:31:15 -08001812 if (NET_RX_DROP == ret)
1813 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 return 0;
1816}
1817
1818/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001819 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 * of frames handled
1821 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001822int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Andy Fleming31de1982008-12-16 15:33:40 -08001824 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08001826 int pkt_len;
1827 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 int howmany = 0;
1829 struct gfar_private *priv = netdev_priv(dev);
1830
1831 /* Get the first full descriptor */
1832 bdp = priv->cur_rx;
Andy Fleming31de1982008-12-16 15:33:40 -08001833 base = priv->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Dai Haruki2c2db482008-12-16 15:31:15 -08001835 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) +
1836 priv->padding;
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001839 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001840 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001841
1842 /* Add another skb for the future */
1843 newskb = gfar_new_skb(dev);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 skb = priv->rx_skbuff[priv->skb_currx];
1846
Kumar Gala48268572009-03-18 23:28:22 -07001847 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
Andy Fleming81183052008-11-12 10:07:11 -06001848 priv->rx_buffer_size, DMA_FROM_DEVICE);
1849
Andy Fleming815b97c2008-04-22 17:18:29 -05001850 /* We drop the frame if we failed to allocate a new buffer */
1851 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1852 bdp->status & RXBD_ERR)) {
1853 count_errors(bdp->status, dev);
1854
1855 if (unlikely(!newskb))
1856 newskb = skb;
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001857 else if (skb) {
1858 /*
1859 * We need to reset ->data to what it
1860 * was before gfar_new_skb() re-aligned
1861 * it to an RXBUF_ALIGNMENT boundary
1862 * before we put the skb back on the
1863 * recycle list.
1864 */
1865 skb->data = skb->head + NET_SKB_PAD;
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001866 __skb_queue_head(&priv->rx_recycle, skb);
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001867 }
Andy Fleming815b97c2008-04-22 17:18:29 -05001868 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001870 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 howmany++;
1872
Dai Haruki2c2db482008-12-16 15:31:15 -08001873 if (likely(skb)) {
1874 pkt_len = bdp->length - ETH_FCS_LEN;
1875 /* Remove the FCS from the packet length */
1876 skb_put(skb, pkt_len);
1877 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Andy Fleming1577ece2009-02-04 16:42:12 -08001879 if (in_irq() || irqs_disabled())
1880 printk("Interrupt problem!\n");
Dai Haruki2c2db482008-12-16 15:31:15 -08001881 gfar_process_frame(dev, skb, amount_pull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Dai Haruki2c2db482008-12-16 15:31:15 -08001883 } else {
1884 if (netif_msg_rx_err(priv))
1885 printk(KERN_WARNING
1886 "%s: Missing skb!\n", dev->name);
1887 dev->stats.rx_dropped++;
1888 priv->extra_stats.rx_skbmissing++;
1889 }
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892
Andy Fleming815b97c2008-04-22 17:18:29 -05001893 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Andy Fleming815b97c2008-04-22 17:18:29 -05001895 /* Setup the new bdp */
1896 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 /* Update to the next pointer */
Andy Fleming31de1982008-12-16 15:33:40 -08001899 bdp = next_bd(bdp, base, priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /* update to point at the next skb */
1902 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001903 (priv->skb_currx + 1) &
1904 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906
1907 /* Update the current rxbd pointer to be the next one */
1908 priv->cur_rx = bdp;
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 return howmany;
1911}
1912
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001913static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001915 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
Kumar Gala48268572009-03-18 23:28:22 -07001916 struct net_device *dev = priv->ndev;
Andy Fleming42199882008-12-17 16:52:30 -08001917 int tx_cleaned = 0;
1918 int rx_cleaned = 0;
Dai Harukid080cd62008-04-09 19:37:51 -05001919 unsigned long flags;
1920
Dai Haruki8c7396a2008-12-17 16:52:00 -08001921 /* Clear IEVENT, so interrupts aren't called again
1922 * because of the packets that have already arrived */
1923 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1924
Dai Harukid080cd62008-04-09 19:37:51 -05001925 /* If we fail to get the lock, don't bother with the TX BDs */
1926 if (spin_trylock_irqsave(&priv->txlock, flags)) {
Andy Fleming42199882008-12-17 16:52:30 -08001927 tx_cleaned = gfar_clean_tx_ring(dev);
Dai Harukid080cd62008-04-09 19:37:51 -05001928 spin_unlock_irqrestore(&priv->txlock, flags);
1929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Andy Fleming42199882008-12-17 16:52:30 -08001931 rx_cleaned = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Andy Fleming42199882008-12-17 16:52:30 -08001933 if (tx_cleaned)
1934 return budget;
1935
1936 if (rx_cleaned < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001937 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 /* Clear the halt bit in RSTAT */
1940 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
1941
1942 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
1943
1944 /* If we are coalescing interrupts, update the timer */
1945 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001946 if (likely(priv->rxcoalescing)) {
1947 gfar_write(&priv->regs->rxic, 0);
Dai Harukib46a8452008-12-16 15:29:52 -08001948 gfar_write(&priv->regs->rxic, priv->rxic);
Andy Fleming2f448912008-03-24 10:53:28 -05001949 }
Dai Haruki8c7396a2008-12-17 16:52:00 -08001950 if (likely(priv->txcoalescing)) {
1951 gfar_write(&priv->regs->txic, 0);
1952 gfar_write(&priv->regs->txic, priv->txic);
1953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955
Andy Fleming42199882008-12-17 16:52:30 -08001956 return rx_cleaned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001959#ifdef CONFIG_NET_POLL_CONTROLLER
1960/*
1961 * Polling 'interrupt' - used by things like netconsole to send skbs
1962 * without having to re-enable interrupts. It's not called while
1963 * the interrupt routine is executing.
1964 */
1965static void gfar_netpoll(struct net_device *dev)
1966{
1967 struct gfar_private *priv = netdev_priv(dev);
1968
1969 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001970 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001971 disable_irq(priv->interruptTransmit);
1972 disable_irq(priv->interruptReceive);
1973 disable_irq(priv->interruptError);
1974 gfar_interrupt(priv->interruptTransmit, dev);
1975 enable_irq(priv->interruptError);
1976 enable_irq(priv->interruptReceive);
1977 enable_irq(priv->interruptTransmit);
1978 } else {
1979 disable_irq(priv->interruptTransmit);
1980 gfar_interrupt(priv->interruptTransmit, dev);
1981 enable_irq(priv->interruptTransmit);
1982 }
1983}
1984#endif
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01001987static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
1989 struct net_device *dev = dev_id;
1990 struct gfar_private *priv = netdev_priv(dev);
1991
1992 /* Save ievent for future reference */
1993 u32 events = gfar_read(&priv->regs->ievent);
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001996 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001997 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002000 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01002001 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002003 /* Check for errors */
2004 if (events & IEVENT_ERR_MASK)
2005 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 return IRQ_HANDLED;
2008}
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010/* Called every time the controller might need to be made
2011 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002012 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 * function converts those variables into the appropriate
2014 * register values, and can bring down the device if needed.
2015 */
2016static void adjust_link(struct net_device *dev)
2017{
2018 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002019 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002020 unsigned long flags;
2021 struct phy_device *phydev = priv->phydev;
2022 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Andy Flemingfef61082006-04-20 16:44:29 -05002024 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002025 if (phydev->link) {
2026 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002027 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 /* Now we make sure that we can be in full duplex mode.
2030 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002031 if (phydev->duplex != priv->oldduplex) {
2032 new_state = 1;
2033 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002035 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002038 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 }
2040
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002041 if (phydev->speed != priv->oldspeed) {
2042 new_state = 1;
2043 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 tempval =
2046 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08002047
2048 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 break;
2050 case 100:
2051 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 tempval =
2053 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002054
2055 /* Reduced mode distinguishes
2056 * between 10 and 100 */
2057 if (phydev->speed == SPEED_100)
2058 ecntrl |= ECNTRL_R100;
2059 else
2060 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 break;
2062 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05002063 if (netif_msg_link(priv))
2064 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002065 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2066 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 break;
2068 }
2069
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002070 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
2072
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002073 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002074 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002077 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002080 } else if (priv->oldlink) {
2081 new_state = 1;
2082 priv->oldlink = 0;
2083 priv->oldspeed = 0;
2084 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002087 if (new_state && netif_msg_link(priv))
2088 phy_print_status(phydev);
2089
Andy Flemingfef61082006-04-20 16:44:29 -05002090 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002091}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093/* Update the hash table based on the current list of multicast
2094 * addresses we subscribe to. Also, change the promiscuity of
2095 * the device based on the flags (this function is called
2096 * whenever dev->flags is changed */
2097static void gfar_set_multi(struct net_device *dev)
2098{
2099 struct dev_mc_list *mc_ptr;
2100 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002101 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 u32 tempval;
2103
2104 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 /* Set RCTRL to PROM */
2106 tempval = gfar_read(&regs->rctrl);
2107 tempval |= RCTRL_PROM;
2108 gfar_write(&regs->rctrl, tempval);
2109 } else {
2110 /* Set RCTRL to not PROM */
2111 tempval = gfar_read(&regs->rctrl);
2112 tempval &= ~(RCTRL_PROM);
2113 gfar_write(&regs->rctrl, tempval);
2114 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if(dev->flags & IFF_ALLMULTI) {
2117 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002118 gfar_write(&regs->igaddr0, 0xffffffff);
2119 gfar_write(&regs->igaddr1, 0xffffffff);
2120 gfar_write(&regs->igaddr2, 0xffffffff);
2121 gfar_write(&regs->igaddr3, 0xffffffff);
2122 gfar_write(&regs->igaddr4, 0xffffffff);
2123 gfar_write(&regs->igaddr5, 0xffffffff);
2124 gfar_write(&regs->igaddr6, 0xffffffff);
2125 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 gfar_write(&regs->gaddr0, 0xffffffff);
2127 gfar_write(&regs->gaddr1, 0xffffffff);
2128 gfar_write(&regs->gaddr2, 0xffffffff);
2129 gfar_write(&regs->gaddr3, 0xffffffff);
2130 gfar_write(&regs->gaddr4, 0xffffffff);
2131 gfar_write(&regs->gaddr5, 0xffffffff);
2132 gfar_write(&regs->gaddr6, 0xffffffff);
2133 gfar_write(&regs->gaddr7, 0xffffffff);
2134 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002135 int em_num;
2136 int idx;
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002139 gfar_write(&regs->igaddr0, 0x0);
2140 gfar_write(&regs->igaddr1, 0x0);
2141 gfar_write(&regs->igaddr2, 0x0);
2142 gfar_write(&regs->igaddr3, 0x0);
2143 gfar_write(&regs->igaddr4, 0x0);
2144 gfar_write(&regs->igaddr5, 0x0);
2145 gfar_write(&regs->igaddr6, 0x0);
2146 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 gfar_write(&regs->gaddr0, 0x0);
2148 gfar_write(&regs->gaddr1, 0x0);
2149 gfar_write(&regs->gaddr2, 0x0);
2150 gfar_write(&regs->gaddr3, 0x0);
2151 gfar_write(&regs->gaddr4, 0x0);
2152 gfar_write(&regs->gaddr5, 0x0);
2153 gfar_write(&regs->gaddr6, 0x0);
2154 gfar_write(&regs->gaddr7, 0x0);
2155
Andy Fleming7f7f5312005-11-11 12:38:59 -06002156 /* If we have extended hash tables, we need to
2157 * clear the exact match registers to prepare for
2158 * setting them */
2159 if (priv->extended_hash) {
2160 em_num = GFAR_EM_NUM + 1;
2161 gfar_clear_exact_match(dev);
2162 idx = 1;
2163 } else {
2164 idx = 0;
2165 em_num = 0;
2166 }
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if(dev->mc_count == 0)
2169 return;
2170
2171 /* Parse the list, and set the appropriate bits */
2172 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002173 if (idx < em_num) {
2174 gfar_set_mac_for_addr(dev, idx,
2175 mc_ptr->dmi_addr);
2176 idx++;
2177 } else
2178 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
2180 }
2181
2182 return;
2183}
2184
Andy Fleming7f7f5312005-11-11 12:38:59 -06002185
2186/* Clears each of the exact match registers to zero, so they
2187 * don't interfere with normal reception */
2188static void gfar_clear_exact_match(struct net_device *dev)
2189{
2190 int idx;
2191 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
2192
2193 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
2194 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
2195}
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197/* Set the appropriate hash bit for the given addr */
2198/* The algorithm works like so:
2199 * 1) Take the Destination Address (ie the multicast address), and
2200 * do a CRC on it (little endian), and reverse the bits of the
2201 * result.
2202 * 2) Use the 8 most significant bits as a hash into a 256-entry
2203 * table. The table is controlled through 8 32-bit registers:
2204 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
2205 * gaddr7. This means that the 3 most significant bits in the
2206 * hash index which gaddr register to use, and the 5 other bits
2207 * indicate which bit (assuming an IBM numbering scheme, which
2208 * for PowerPC (tm) is usually the case) in the register holds
2209 * the entry. */
2210static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
2211{
2212 u32 tempval;
2213 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002215 int width = priv->hash_width;
2216 u8 whichbit = (result >> (32 - width)) & 0x1f;
2217 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 u32 value = (1 << (31-whichbit));
2219
Kumar Gala0bbaf062005-06-20 10:54:21 -05002220 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002222 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 return;
2225}
2226
Andy Fleming7f7f5312005-11-11 12:38:59 -06002227
2228/* There are multiple MAC Address register pairs on some controllers
2229 * This function sets the numth pair to a given address
2230 */
2231static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
2232{
2233 struct gfar_private *priv = netdev_priv(dev);
2234 int idx;
2235 char tmpbuf[MAC_ADDR_LEN];
2236 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06002237 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002238
2239 macptr += num*2;
2240
2241 /* Now copy it into the mac registers backwards, cuz */
2242 /* little endian is silly */
2243 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2244 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2245
2246 gfar_write(macptr, *((u32 *) (tmpbuf)));
2247
2248 tempval = *((u32 *) (tmpbuf + 4));
2249
2250 gfar_write(macptr+1, tempval);
2251}
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002254static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
2256 struct net_device *dev = dev_id;
2257 struct gfar_private *priv = netdev_priv(dev);
2258
2259 /* Save ievent for future reference */
2260 u32 events = gfar_read(&priv->regs->ievent);
2261
2262 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002263 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2264
2265 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002266 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05002267 (events & IEVENT_MAG))
2268 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002271 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2272 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002273 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 /* Update the error counters */
2276 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002277 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002280 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002282 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002284 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002285 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2286 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002287 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 priv->extra_stats.tx_underrun++;
2289
2290 /* Reactivate the Tx Queues */
2291 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2292 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002293 if (netif_msg_tx_err(priv))
2294 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002297 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 priv->extra_stats.rx_bsy++;
2299
David Howells7d12e782006-10-05 14:55:46 +01002300 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Kumar Gala0bbaf062005-06-20 10:54:21 -05002302 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002303 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2304 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 }
2306 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002307 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 priv->extra_stats.rx_babr++;
2309
Kumar Gala0bbaf062005-06-20 10:54:21 -05002310 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002311 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313 if (events & IEVENT_EBERR) {
2314 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002315 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002316 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002318 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002319 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 if (events & IEVENT_BABT) {
2322 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002323 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002324 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 }
2326 return IRQ_HANDLED;
2327}
2328
Kay Sievers72abb462008-04-18 13:50:44 -07002329/* work with hotplug and coldplug */
2330MODULE_ALIAS("platform:fsl-gianfar");
2331
Andy Flemingb31a1d82008-12-16 15:29:15 -08002332static struct of_device_id gfar_match[] =
2333{
2334 {
2335 .type = "network",
2336 .compatible = "gianfar",
2337 },
2338 {},
2339};
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341/* Structure for a device driver */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002342static struct of_platform_driver gfar_driver = {
2343 .name = "fsl-gianfar",
2344 .match_table = gfar_match,
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 .probe = gfar_probe,
2347 .remove = gfar_remove,
Scott Woodd87eb122008-07-11 18:04:45 -05002348 .suspend = gfar_suspend,
2349 .resume = gfar_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350};
2351
2352static int __init gfar_init(void)
2353{
Andy Fleming1577ece2009-02-04 16:42:12 -08002354 return of_register_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355}
2356
2357static void __exit gfar_exit(void)
2358{
Andy Flemingb31a1d82008-12-16 15:29:15 -08002359 of_unregister_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360}
2361
2362module_init(gfar_init);
2363module_exit(gfar_exit);
2364