blob: f8ffcbf0bc39551eac65f4f8cb969edf61908ee8 [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
Kumar Galacc8c6e32006-02-01 15:18:03 -0600494 iounmap(priv->regs);
Kumar Gala48268572009-03-18 23:28:22 -0700495 free_netdev(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 return 0;
498}
499
Scott Woodd87eb122008-07-11 18:04:45 -0500500#ifdef CONFIG_PM
Andy Flemingb31a1d82008-12-16 15:29:15 -0800501static int gfar_suspend(struct of_device *ofdev, pm_message_t state)
Scott Woodd87eb122008-07-11 18:04:45 -0500502{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800503 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700504 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500505 unsigned long flags;
506 u32 tempval;
507
508 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800509 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500510
511 netif_device_detach(dev);
512
513 if (netif_running(dev)) {
514 spin_lock_irqsave(&priv->txlock, flags);
515 spin_lock(&priv->rxlock);
516
517 gfar_halt_nodisable(dev);
518
519 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
520 tempval = gfar_read(&priv->regs->maccfg1);
521
522 tempval &= ~MACCFG1_TX_EN;
523
524 if (!magic_packet)
525 tempval &= ~MACCFG1_RX_EN;
526
527 gfar_write(&priv->regs->maccfg1, tempval);
528
529 spin_unlock(&priv->rxlock);
530 spin_unlock_irqrestore(&priv->txlock, flags);
531
Scott Woodd87eb122008-07-11 18:04:45 -0500532 napi_disable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500533
534 if (magic_packet) {
535 /* Enable interrupt on Magic Packet */
536 gfar_write(&priv->regs->imask, IMASK_MAG);
537
538 /* Enable Magic Packet mode */
539 tempval = gfar_read(&priv->regs->maccfg2);
540 tempval |= MACCFG2_MPEN;
541 gfar_write(&priv->regs->maccfg2, tempval);
542 } else {
543 phy_stop(priv->phydev);
544 }
545 }
546
547 return 0;
548}
549
Andy Flemingb31a1d82008-12-16 15:29:15 -0800550static int gfar_resume(struct of_device *ofdev)
Scott Woodd87eb122008-07-11 18:04:45 -0500551{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800552 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700553 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500554 unsigned long flags;
555 u32 tempval;
556 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800557 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500558
559 if (!netif_running(dev)) {
560 netif_device_attach(dev);
561 return 0;
562 }
563
564 if (!magic_packet && priv->phydev)
565 phy_start(priv->phydev);
566
567 /* Disable Magic Packet mode, in case something
568 * else woke us up.
569 */
570
571 spin_lock_irqsave(&priv->txlock, flags);
572 spin_lock(&priv->rxlock);
573
574 tempval = gfar_read(&priv->regs->maccfg2);
575 tempval &= ~MACCFG2_MPEN;
576 gfar_write(&priv->regs->maccfg2, tempval);
577
578 gfar_start(dev);
579
580 spin_unlock(&priv->rxlock);
581 spin_unlock_irqrestore(&priv->txlock, flags);
582
583 netif_device_attach(dev);
584
Scott Woodd87eb122008-07-11 18:04:45 -0500585 napi_enable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500586
587 return 0;
588}
589#else
590#define gfar_suspend NULL
591#define gfar_resume NULL
592#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600594/* Reads the controller's registers to determine what interface
595 * connects it to the PHY.
596 */
597static phy_interface_t gfar_get_interface(struct net_device *dev)
598{
599 struct gfar_private *priv = netdev_priv(dev);
600 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
601
602 if (ecntrl & ECNTRL_SGMII_MODE)
603 return PHY_INTERFACE_MODE_SGMII;
604
605 if (ecntrl & ECNTRL_TBI_MODE) {
606 if (ecntrl & ECNTRL_REDUCED_MODE)
607 return PHY_INTERFACE_MODE_RTBI;
608 else
609 return PHY_INTERFACE_MODE_TBI;
610 }
611
612 if (ecntrl & ECNTRL_REDUCED_MODE) {
613 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
614 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500615 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800616 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -0500617
618 /*
619 * This isn't autodetected right now, so it must
620 * be set by the device tree or platform code.
621 */
622 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
623 return PHY_INTERFACE_MODE_RGMII_ID;
624
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600625 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500626 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600627 }
628
Andy Flemingb31a1d82008-12-16 15:29:15 -0800629 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600630 return PHY_INTERFACE_MODE_GMII;
631
632 return PHY_INTERFACE_MODE_MII;
633}
634
635
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400636/* Initializes driver's PHY state, and attaches to the PHY.
637 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
639static int init_phy(struct net_device *dev)
640{
641 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400642 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -0800643 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400644 SUPPORTED_1000baseT_Full : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600645 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 priv->oldlink = 0;
648 priv->oldspeed = 0;
649 priv->oldduplex = -1;
650
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600651 interface = gfar_get_interface(dev);
652
Anton Vorontsov1db780f2009-07-16 21:31:42 +0000653 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
654 interface);
655 if (!priv->phydev)
656 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
657 interface);
658 if (!priv->phydev) {
659 dev_err(&dev->dev, "could not attach to PHY\n");
660 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +0000661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Kapil Junejad3c12872007-05-11 18:25:11 -0500663 if (interface == PHY_INTERFACE_MODE_SGMII)
664 gfar_configure_serdes(dev);
665
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400666 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +0000667 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
668 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Paul Gortmakerd0313582008-04-17 00:08:10 -0400673/*
674 * Initialize TBI PHY interface for communicating with the
675 * SERDES lynx PHY on the chip. We communicate with this PHY
676 * through the MDIO bus on each controller, treating it as a
677 * "normal" PHY at the address found in the TBIPA register. We assume
678 * that the TBIPA register is valid. Either the MDIO bus code will set
679 * it to a value that doesn't conflict with other PHYs on the bus, or the
680 * value doesn't matter, as there are no other PHYs on the bus.
681 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500682static void gfar_configure_serdes(struct net_device *dev)
683{
684 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +0000685 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -0700686
Grant Likelyfe192a42009-04-25 12:53:12 +0000687 if (!priv->tbi_node) {
688 dev_warn(&dev->dev, "error: SGMII mode requires that the "
689 "device tree specify a tbi-handle\n");
690 return;
691 }
692
693 tbiphy = of_phy_find_device(priv->tbi_node);
694 if (!tbiphy) {
695 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -0800696 return;
697 }
Kapil Junejad3c12872007-05-11 18:25:11 -0500698
Andy Flemingb31a1d82008-12-16 15:29:15 -0800699 /*
700 * If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -0700701 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
702 * everything for us? Resetting it takes the link down and requires
703 * several seconds for it to come back.
704 */
Grant Likelyfe192a42009-04-25 12:53:12 +0000705 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800706 return;
Kapil Junejad3c12872007-05-11 18:25:11 -0500707
Paul Gortmakerd0313582008-04-17 00:08:10 -0400708 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +0000709 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500710
Grant Likelyfe192a42009-04-25 12:53:12 +0000711 phy_write(tbiphy, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500712 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
713 ADVERTISE_1000XPSE_ASYM);
714
Grant Likelyfe192a42009-04-25 12:53:12 +0000715 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500716 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
717}
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719static void init_registers(struct net_device *dev)
720{
721 struct gfar_private *priv = netdev_priv(dev);
722
723 /* Clear IEVENT */
724 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
725
726 /* Initialize IMASK */
727 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
728
729 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500730 gfar_write(&priv->regs->igaddr0, 0);
731 gfar_write(&priv->regs->igaddr1, 0);
732 gfar_write(&priv->regs->igaddr2, 0);
733 gfar_write(&priv->regs->igaddr3, 0);
734 gfar_write(&priv->regs->igaddr4, 0);
735 gfar_write(&priv->regs->igaddr5, 0);
736 gfar_write(&priv->regs->igaddr6, 0);
737 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 gfar_write(&priv->regs->gaddr0, 0);
740 gfar_write(&priv->regs->gaddr1, 0);
741 gfar_write(&priv->regs->gaddr2, 0);
742 gfar_write(&priv->regs->gaddr3, 0);
743 gfar_write(&priv->regs->gaddr4, 0);
744 gfar_write(&priv->regs->gaddr5, 0);
745 gfar_write(&priv->regs->gaddr6, 0);
746 gfar_write(&priv->regs->gaddr7, 0);
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Zero out the rmon mib registers if it has them */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800749 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600750 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /* Mask off the CAM interrupts */
753 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
754 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
755 }
756
757 /* Initialize the max receive buffer length */
758 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* Initialize the Minimum Frame Length Register */
761 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Kumar Gala0bbaf062005-06-20 10:54:21 -0500764
765/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -0500766static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600769 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 u32 tempval;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* Mask all interrupts */
773 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
774
775 /* Clear all interrupts */
776 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
777
778 /* Stop the DMA, and wait for it to stop */
779 tempval = gfar_read(&priv->regs->dmactrl);
780 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
781 != (DMACTRL_GRS | DMACTRL_GTS)) {
782 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
783 gfar_write(&priv->regs->dmactrl, tempval);
784
785 while (!(gfar_read(&priv->regs->ievent) &
786 (IEVENT_GRSC | IEVENT_GTSC)))
787 cpu_relax();
788 }
Scott Woodd87eb122008-07-11 18:04:45 -0500789}
Scott Woodd87eb122008-07-11 18:04:45 -0500790
791/* Halt the receive and transmit queues */
792void gfar_halt(struct net_device *dev)
793{
794 struct gfar_private *priv = netdev_priv(dev);
795 struct gfar __iomem *regs = priv->regs;
796 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Scott Wood2a54adc2008-08-12 15:10:46 -0500798 gfar_halt_nodisable(dev);
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* Disable Rx and Tx */
801 tempval = gfar_read(&regs->maccfg1);
802 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
803 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500804}
805
806void stop_gfar(struct net_device *dev)
807{
808 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600809 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500810 unsigned long flags;
811
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400812 phy_stop(priv->phydev);
813
Kumar Gala0bbaf062005-06-20 10:54:21 -0500814 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -0500815 spin_lock_irqsave(&priv->txlock, flags);
816 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500817
Kumar Gala0bbaf062005-06-20 10:54:21 -0500818 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Andy Flemingfef61082006-04-20 16:44:29 -0500820 spin_unlock(&priv->rxlock);
821 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Free the IRQs */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800824 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 free_irq(priv->interruptError, dev);
826 free_irq(priv->interruptTransmit, dev);
827 free_irq(priv->interruptReceive, dev);
828 } else {
Andy Fleming1577ece2009-02-04 16:42:12 -0800829 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831
832 free_skb_resources(priv);
833
Kumar Gala48268572009-03-18 23:28:22 -0700834 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 sizeof(struct txbd8)*priv->tx_ring_size
836 + sizeof(struct rxbd8)*priv->rx_ring_size,
837 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -0500838 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
841/* If there are any tx skbs or rx skbs still around, free them.
842 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400843static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 struct rxbd8 *rxbdp;
846 struct txbd8 *txbdp;
Dai Haruki4669bc92008-12-17 16:51:04 -0800847 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /* Go through all the buffer descriptors and free their data buffers */
850 txbdp = priv->tx_bd_base;
851
852 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki4669bc92008-12-17 16:51:04 -0800853 if (!priv->tx_skbuff[i])
854 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Kumar Gala48268572009-03-18 23:28:22 -0700856 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800857 txbdp->length, DMA_TO_DEVICE);
858 txbdp->lstatus = 0;
859 for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) {
860 txbdp++;
Kumar Gala48268572009-03-18 23:28:22 -0700861 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -0800862 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Andy Flemingad5da7a2008-05-07 13:20:55 -0500864 txbdp++;
Dai Haruki4669bc92008-12-17 16:51:04 -0800865 dev_kfree_skb_any(priv->tx_skbuff[i]);
866 priv->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
869 kfree(priv->tx_skbuff);
870
871 rxbdp = priv->rx_bd_base;
872
873 /* rx_skbuff is not guaranteed to be allocated, so only
874 * free it and its contents if it is allocated */
875 if(priv->rx_skbuff != NULL) {
876 for (i = 0; i < priv->rx_ring_size; i++) {
877 if (priv->rx_skbuff[i]) {
Kumar Gala48268572009-03-18 23:28:22 -0700878 dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr,
Andy Fleming7f7f5312005-11-11 12:38:59 -0600879 priv->rx_buffer_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 DMA_FROM_DEVICE);
881
882 dev_kfree_skb_any(priv->rx_skbuff[i]);
883 priv->rx_skbuff[i] = NULL;
884 }
885
Dai Haruki5a5efed2008-12-16 15:34:50 -0800886 rxbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 rxbdp->bufPtr = 0;
888
889 rxbdp++;
890 }
891
892 kfree(priv->rx_skbuff);
893 }
894}
895
Kumar Gala0bbaf062005-06-20 10:54:21 -0500896void gfar_start(struct net_device *dev)
897{
898 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600899 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500900 u32 tempval;
901
902 /* Enable Rx and Tx in MACCFG1 */
903 tempval = gfar_read(&regs->maccfg1);
904 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
905 gfar_write(&regs->maccfg1, tempval);
906
907 /* Initialize DMACTRL to have WWR and WOP */
908 tempval = gfar_read(&priv->regs->dmactrl);
909 tempval |= DMACTRL_INIT_SETTINGS;
910 gfar_write(&priv->regs->dmactrl, tempval);
911
Kumar Gala0bbaf062005-06-20 10:54:21 -0500912 /* Make sure we aren't stopped */
913 tempval = gfar_read(&priv->regs->dmactrl);
914 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
915 gfar_write(&priv->regs->dmactrl, tempval);
916
Andy Flemingfef61082006-04-20 16:44:29 -0500917 /* Clear THLT/RHLT, so that the DMA starts polling now */
918 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
919 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
920
Kumar Gala0bbaf062005-06-20 10:54:21 -0500921 /* Unmask the interrupts we look for */
922 gfar_write(&regs->imask, IMASK_DEFAULT);
Dai Haruki12dea572008-12-16 15:30:20 -0800923
924 dev->trans_start = jiffies;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500925}
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927/* Bring the controller up and running */
928int startup_gfar(struct net_device *dev)
929{
930 struct txbd8 *txbdp;
931 struct rxbd8 *rxbdp;
Grant Likelyf9663ae2007-12-01 22:10:03 -0700932 dma_addr_t addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 unsigned long vaddr;
934 int i;
935 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600936 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int err = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500938 u32 rctrl = 0;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600939 u32 attrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
942
943 /* Allocate memory for the buffer descriptors */
Kumar Gala48268572009-03-18 23:28:22 -0700944 vaddr = (unsigned long) dma_alloc_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 sizeof (struct txbd8) * priv->tx_ring_size +
946 sizeof (struct rxbd8) * priv->rx_ring_size,
947 &addr, GFP_KERNEL);
948
949 if (vaddr == 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500950 if (netif_msg_ifup(priv))
951 printk(KERN_ERR "%s: Could not allocate buffer descriptors!\n",
952 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return -ENOMEM;
954 }
955
956 priv->tx_bd_base = (struct txbd8 *) vaddr;
957
958 /* enet DMA only understands physical addresses */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500959 gfar_write(&regs->tbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 /* Start the rx descriptor ring where the tx ring leaves off */
962 addr = addr + sizeof (struct txbd8) * priv->tx_ring_size;
963 vaddr = vaddr + sizeof (struct txbd8) * priv->tx_ring_size;
964 priv->rx_bd_base = (struct rxbd8 *) vaddr;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500965 gfar_write(&regs->rbase0, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /* Setup the skbuff rings */
968 priv->tx_skbuff =
969 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
970 priv->tx_ring_size, GFP_KERNEL);
971
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400972 if (NULL == priv->tx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500973 if (netif_msg_ifup(priv))
974 printk(KERN_ERR "%s: Could not allocate tx_skbuff\n",
975 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 err = -ENOMEM;
977 goto tx_skb_fail;
978 }
979
980 for (i = 0; i < priv->tx_ring_size; i++)
981 priv->tx_skbuff[i] = NULL;
982
983 priv->rx_skbuff =
984 (struct sk_buff **) kmalloc(sizeof (struct sk_buff *) *
985 priv->rx_ring_size, GFP_KERNEL);
986
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400987 if (NULL == priv->rx_skbuff) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500988 if (netif_msg_ifup(priv))
989 printk(KERN_ERR "%s: Could not allocate rx_skbuff\n",
990 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 err = -ENOMEM;
992 goto rx_skb_fail;
993 }
994
995 for (i = 0; i < priv->rx_ring_size; i++)
996 priv->rx_skbuff[i] = NULL;
997
998 /* Initialize some variables in our dev structure */
Dai Haruki4669bc92008-12-17 16:51:04 -0800999 priv->num_txbdfree = priv->tx_ring_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
1001 priv->cur_rx = priv->rx_bd_base;
1002 priv->skb_curtx = priv->skb_dirtytx = 0;
1003 priv->skb_currx = 0;
1004
1005 /* Initialize Transmit Descriptor Ring */
1006 txbdp = priv->tx_bd_base;
1007 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki5a5efed2008-12-16 15:34:50 -08001008 txbdp->lstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 txbdp->bufPtr = 0;
1010 txbdp++;
1011 }
1012
1013 /* Set the last descriptor in the ring to indicate wrap */
1014 txbdp--;
1015 txbdp->status |= TXBD_WRAP;
1016
1017 rxbdp = priv->rx_bd_base;
1018 for (i = 0; i < priv->rx_ring_size; i++) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001019 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Andy Fleming815b97c2008-04-22 17:18:29 -05001021 skb = gfar_new_skb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Andy Fleming815b97c2008-04-22 17:18:29 -05001023 if (!skb) {
1024 printk(KERN_ERR "%s: Can't allocate RX buffers\n",
1025 dev->name);
1026
1027 goto err_rxalloc_fail;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 priv->rx_skbuff[i] = skb;
1031
Andy Fleming815b97c2008-04-22 17:18:29 -05001032 gfar_new_rxbdp(dev, rxbdp, skb);
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 rxbdp++;
1035 }
1036
1037 /* Set the last descriptor in the ring to wrap */
1038 rxbdp--;
1039 rxbdp->status |= RXBD_WRAP;
1040
1041 /* If the device has multiple interrupts, register for
1042 * them. Otherwise, only register for the one */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001043 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001044 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 * Transmit, and Receive */
1046 if (request_irq(priv->interruptError, gfar_error,
Dai Harukic50a5d92008-12-17 16:51:32 -08001047 0, priv->int_name_er, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001048 if (netif_msg_intr(priv))
1049 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1050 dev->name, priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 err = -1;
1053 goto err_irq_fail;
1054 }
1055
1056 if (request_irq(priv->interruptTransmit, gfar_transmit,
Dai Harukic50a5d92008-12-17 16:51:32 -08001057 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001058 if (netif_msg_intr(priv))
1059 printk(KERN_ERR "%s: Can't get IRQ %d\n",
1060 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 err = -1;
1063
1064 goto tx_irq_fail;
1065 }
1066
1067 if (request_irq(priv->interruptReceive, gfar_receive,
Dai Harukic50a5d92008-12-17 16:51:32 -08001068 0, priv->int_name_rx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001069 if (netif_msg_intr(priv))
1070 printk(KERN_ERR "%s: Can't get IRQ %d (receive0)\n",
1071 dev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 err = -1;
1074 goto rx_irq_fail;
1075 }
1076 } else {
1077 if (request_irq(priv->interruptTransmit, gfar_interrupt,
Dai Harukic50a5d92008-12-17 16:51:32 -08001078 0, priv->int_name_tx, dev) < 0) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001079 if (netif_msg_intr(priv))
1080 printk(KERN_ERR "%s: Can't get IRQ %d\n",
Dai Harukic50a5d92008-12-17 16:51:32 -08001081 dev->name, priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 err = -1;
1084 goto err_irq_fail;
1085 }
1086 }
1087
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001088 phy_start(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /* Configure the coalescing support */
Dai Harukib46a8452008-12-16 15:29:52 -08001091 gfar_write(&regs->txic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (priv->txcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001093 gfar_write(&regs->txic, priv->txic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Dai Harukib46a8452008-12-16 15:29:52 -08001095 gfar_write(&regs->rxic, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (priv->rxcoalescing)
Dai Harukib46a8452008-12-16 15:29:52 -08001097 gfar_write(&regs->rxic, priv->rxic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Kumar Gala0bbaf062005-06-20 10:54:21 -05001099 if (priv->rx_csum_enable)
1100 rctrl |= RCTRL_CHECKSUMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Andy Fleming7f7f5312005-11-11 12:38:59 -06001102 if (priv->extended_hash) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001103 rctrl |= RCTRL_EXTHASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Andy Fleming7f7f5312005-11-11 12:38:59 -06001105 gfar_clear_exact_match(dev);
1106 rctrl |= RCTRL_EMEN;
1107 }
1108
Andy Fleming7f7f5312005-11-11 12:38:59 -06001109 if (priv->padding) {
1110 rctrl &= ~RCTRL_PAL_MASK;
1111 rctrl |= RCTRL_PADDING(priv->padding);
1112 }
1113
Kumar Gala0bbaf062005-06-20 10:54:21 -05001114 /* Init rctrl based on our settings */
1115 gfar_write(&priv->regs->rctrl, rctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Kumar Gala0bbaf062005-06-20 10:54:21 -05001117 if (dev->features & NETIF_F_IP_CSUM)
1118 gfar_write(&priv->regs->tctrl, TCTRL_INIT_CSUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Andy Fleming7f7f5312005-11-11 12:38:59 -06001120 /* Set the extraction length and index */
1121 attrs = ATTRELI_EL(priv->rx_stash_size) |
1122 ATTRELI_EI(priv->rx_stash_index);
1123
1124 gfar_write(&priv->regs->attreli, attrs);
1125
1126 /* Start with defaults, and add stashing or locking
1127 * depending on the approprate variables */
1128 attrs = ATTR_INIT_SETTINGS;
1129
1130 if (priv->bd_stash_en)
1131 attrs |= ATTR_BDSTASH;
1132
1133 if (priv->rx_stash_size != 0)
1134 attrs |= ATTR_BUFSTASH;
1135
1136 gfar_write(&priv->regs->attr, attrs);
1137
1138 gfar_write(&priv->regs->fifo_tx_thr, priv->fifo_threshold);
1139 gfar_write(&priv->regs->fifo_tx_starve, priv->fifo_starve);
1140 gfar_write(&priv->regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
1141
1142 /* Start the controller */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001143 gfar_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 return 0;
1146
1147rx_irq_fail:
1148 free_irq(priv->interruptTransmit, dev);
1149tx_irq_fail:
1150 free_irq(priv->interruptError, dev);
1151err_irq_fail:
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001152err_rxalloc_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153rx_skb_fail:
1154 free_skb_resources(priv);
1155tx_skb_fail:
Kumar Gala48268572009-03-18 23:28:22 -07001156 dma_free_coherent(&priv->ofdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 sizeof(struct txbd8)*priv->tx_ring_size
1158 + sizeof(struct rxbd8)*priv->rx_ring_size,
1159 priv->tx_bd_base,
Kumar Gala0bbaf062005-06-20 10:54:21 -05001160 gfar_read(&regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return err;
1163}
1164
1165/* Called when something needs to use the ethernet device */
1166/* Returns 0 for success. */
1167static int gfar_enet_open(struct net_device *dev)
1168{
Li Yang94e8cc32007-10-12 21:53:51 +08001169 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int err;
1171
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001172 napi_enable(&priv->napi);
1173
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001174 skb_queue_head_init(&priv->rx_recycle);
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* Initialize a bunch of registers */
1177 init_registers(dev);
1178
1179 gfar_set_mac_address(dev);
1180
1181 err = init_phy(dev);
1182
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001183 if(err) {
1184 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001189 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001190 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001191 return err;
1192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 netif_start_queue(dev);
1195
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001196 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return err;
1199}
1200
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001201static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001202{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001203 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07001204
1205 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001206
Kumar Gala0bbaf062005-06-20 10:54:21 -05001207 return fcb;
1208}
1209
1210static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1211{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001212 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001213
1214 /* If we're here, it's a IP packet with a TCP or UDP
1215 * payload. We set it to checksum, using a pseudo-header
1216 * we provide
1217 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001218 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001219
Andy Fleming7f7f5312005-11-11 12:38:59 -06001220 /* Tell the controller what the protocol is */
1221 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001222 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001223 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001224 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001225 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001226 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001227
1228 /* l3os is the distance between the start of the
1229 * frame (skb->data) and the start of the IP hdr.
1230 * l4os is the distance between the start of the
1231 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001232 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001233 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001234
Andy Fleming7f7f5312005-11-11 12:38:59 -06001235 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001236}
1237
Andy Fleming7f7f5312005-11-11 12:38:59 -06001238void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001239{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001240 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001241 fcb->vlctl = vlan_tx_tag_get(skb);
1242}
1243
Dai Haruki4669bc92008-12-17 16:51:04 -08001244static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
1245 struct txbd8 *base, int ring_size)
1246{
1247 struct txbd8 *new_bd = bdp + stride;
1248
1249 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
1250}
1251
1252static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
1253 int ring_size)
1254{
1255 return skip_txbd(bdp, 1, base, ring_size);
1256}
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258/* This is called by the kernel when a frame is ready for transmission. */
1259/* It is pointed to by the dev->hard_start_xmit function pointer */
1260static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1261{
1262 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001263 struct txfcb *fcb = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08001264 struct txbd8 *txbdp, *txbdp_start, *base;
Dai Haruki5a5efed2008-12-16 15:34:50 -08001265 u32 lstatus;
Dai Haruki4669bc92008-12-17 16:51:04 -08001266 int i;
1267 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05001268 unsigned long flags;
Dai Haruki4669bc92008-12-17 16:51:04 -08001269 unsigned int nr_frags, length;
1270
1271 base = priv->tx_bd_base;
1272
Li Yang5b28bea2009-03-27 15:54:30 -07001273 /* make space for additional header when fcb is needed */
1274 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
1275 (priv->vlgrp && vlan_tx_tag_present(skb))) &&
1276 (skb_headroom(skb) < GMAC_FCB_LEN)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001277 struct sk_buff *skb_new;
1278
1279 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
1280 if (!skb_new) {
1281 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07001282 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001283 return NETDEV_TX_OK;
1284 }
1285 kfree_skb(skb);
1286 skb = skb_new;
1287 }
1288
Dai Haruki4669bc92008-12-17 16:51:04 -08001289 /* total number of fragments in the SKB */
1290 nr_frags = skb_shinfo(skb)->nr_frags;
1291
1292 spin_lock_irqsave(&priv->txlock, flags);
1293
1294 /* check if there is space to queue this packet */
Rini van Zetten7958a452009-02-27 03:18:48 -08001295 if ((nr_frags+1) > priv->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001296 /* no space, stop the queue */
1297 netif_stop_queue(dev);
1298 dev->stats.tx_fifo_errors++;
1299 spin_unlock_irqrestore(&priv->txlock, flags);
1300 return NETDEV_TX_BUSY;
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001304 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Dai Haruki4669bc92008-12-17 16:51:04 -08001306 txbdp = txbdp_start = priv->cur_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Dai Haruki4669bc92008-12-17 16:51:04 -08001308 if (nr_frags == 0) {
1309 lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1310 } else {
1311 /* Place the fragment addresses and lengths into the TxBDs */
1312 for (i = 0; i < nr_frags; i++) {
1313 /* Point at the next BD, wrapping as needed */
1314 txbdp = next_txbd(txbdp, base, priv->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Dai Haruki4669bc92008-12-17 16:51:04 -08001316 length = skb_shinfo(skb)->frags[i].size;
1317
1318 lstatus = txbdp->lstatus | length |
1319 BD_LFLAG(TXBD_READY);
1320
1321 /* Handle the last BD specially */
1322 if (i == nr_frags - 1)
1323 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1324
Kumar Gala48268572009-03-18 23:28:22 -07001325 bufaddr = dma_map_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001326 skb_shinfo(skb)->frags[i].page,
1327 skb_shinfo(skb)->frags[i].page_offset,
1328 length,
1329 DMA_TO_DEVICE);
1330
1331 /* set the TxBD length and buffer pointer */
1332 txbdp->bufPtr = bufaddr;
1333 txbdp->lstatus = lstatus;
1334 }
1335
1336 lstatus = txbdp_start->lstatus;
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Kumar Gala0bbaf062005-06-20 10:54:21 -05001339 /* Set up checksumming */
Dai Haruki12dea572008-12-16 15:30:20 -08001340 if (CHECKSUM_PARTIAL == skb->ip_summed) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001341 fcb = gfar_add_fcb(skb);
1342 lstatus |= BD_LFLAG(TXBD_TOE);
1343 gfar_tx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001344 }
1345
Dai Haruki77ecaf22008-12-16 15:30:48 -08001346 if (priv->vlgrp && vlan_tx_tag_present(skb)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001347 if (unlikely(NULL == fcb)) {
1348 fcb = gfar_add_fcb(skb);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001349 lstatus |= BD_LFLAG(TXBD_TOE);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001350 }
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001351
1352 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001353 }
1354
Dai Haruki4669bc92008-12-17 16:51:04 -08001355 /* setup the TxBD length and buffer pointer for the first BD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 priv->tx_skbuff[priv->skb_curtx] = skb;
Kumar Gala48268572009-03-18 23:28:22 -07001357 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Dai Haruki4669bc92008-12-17 16:51:04 -08001358 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Dai Haruki4669bc92008-12-17 16:51:04 -08001360 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Dai Haruki4669bc92008-12-17 16:51:04 -08001362 /*
1363 * The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05001364 * semantics (it requires synchronization between cacheable and
1365 * uncacheable mappings, which eieio doesn't provide and which we
1366 * don't need), thus requiring a more expensive sync instruction. At
1367 * some point, the set of architecture-independent barrier functions
1368 * should be expanded to include weaker barriers.
1369 */
Scott Wood3b6330c2007-05-16 15:06:59 -05001370 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001371
Dai Haruki4669bc92008-12-17 16:51:04 -08001372 txbdp_start->lstatus = lstatus;
1373
1374 /* Update the current skb pointer to the next entry we will use
1375 * (wrapping if necessary) */
1376 priv->skb_curtx = (priv->skb_curtx + 1) &
1377 TX_RING_MOD_MASK(priv->tx_ring_size);
1378
1379 priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size);
1380
1381 /* reduce TxBD free count */
1382 priv->num_txbdfree -= (nr_frags + 1);
1383
1384 dev->trans_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /* If the next BD still needs to be cleaned up, then the bds
1387 are full. We need to tell the kernel to stop sending us stuff. */
Dai Haruki4669bc92008-12-17 16:51:04 -08001388 if (!priv->num_txbdfree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 netif_stop_queue(dev);
1390
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001391 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 /* Tell the DMA to go go go */
1395 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1396
1397 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001398 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001400 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
1403/* Stops the kernel queue, and halts the controller */
1404static int gfar_close(struct net_device *dev)
1405{
1406 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001407
1408 napi_disable(&priv->napi);
1409
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001410 skb_queue_purge(&priv->rx_recycle);
Sebastian Siewiorab939902008-08-19 21:12:45 +02001411 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 stop_gfar(dev);
1413
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001414 /* Disconnect from the PHY */
1415 phy_disconnect(priv->phydev);
1416 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 netif_stop_queue(dev);
1419
1420 return 0;
1421}
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001424static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001426 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 return 0;
1429}
1430
1431
Kumar Gala0bbaf062005-06-20 10:54:21 -05001432/* Enables and disables VLAN insertion/extraction */
1433static void gfar_vlan_rx_register(struct net_device *dev,
1434 struct vlan_group *grp)
1435{
1436 struct gfar_private *priv = netdev_priv(dev);
1437 unsigned long flags;
1438 u32 tempval;
1439
Andy Flemingfef61082006-04-20 16:44:29 -05001440 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001441
Anton Vorontsovcd1f55a2009-01-26 14:33:23 -08001442 priv->vlgrp = grp;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001443
1444 if (grp) {
1445 /* Enable VLAN tag insertion */
1446 tempval = gfar_read(&priv->regs->tctrl);
1447 tempval |= TCTRL_VLINS;
1448
1449 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001450
Kumar Gala0bbaf062005-06-20 10:54:21 -05001451 /* Enable VLAN tag extraction */
1452 tempval = gfar_read(&priv->regs->rctrl);
1453 tempval |= RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001454 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001455 gfar_write(&priv->regs->rctrl, tempval);
1456 } else {
1457 /* Disable VLAN tag insertion */
1458 tempval = gfar_read(&priv->regs->tctrl);
1459 tempval &= ~TCTRL_VLINS;
1460 gfar_write(&priv->regs->tctrl, tempval);
1461
1462 /* Disable VLAN tag extraction */
1463 tempval = gfar_read(&priv->regs->rctrl);
1464 tempval &= ~RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001465 /* If parse is no longer required, then disable parser */
1466 if (tempval & RCTRL_REQ_PARSER)
1467 tempval |= RCTRL_PRSDEP_INIT;
1468 else
1469 tempval &= ~RCTRL_PRSDEP_INIT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001470 gfar_write(&priv->regs->rctrl, tempval);
1471 }
1472
Dai Haruki77ecaf22008-12-16 15:30:48 -08001473 gfar_change_mtu(dev, dev->mtu);
1474
Andy Flemingfef61082006-04-20 16:44:29 -05001475 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001476}
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1479{
1480 int tempsize, tempval;
1481 struct gfar_private *priv = netdev_priv(dev);
1482 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001483 int frame_size = new_mtu + ETH_HLEN;
1484
Dai Haruki77ecaf22008-12-16 15:30:48 -08001485 if (priv->vlgrp)
Dai Harukifaa89572008-03-24 10:53:26 -05001486 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001489 if (netif_msg_drv(priv))
1490 printk(KERN_ERR "%s: Invalid MTU setting\n",
1491 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return -EINVAL;
1493 }
1494
Dai Haruki77ecaf22008-12-16 15:30:48 -08001495 if (gfar_uses_fcb(priv))
1496 frame_size += GMAC_FCB_LEN;
1497
1498 frame_size += priv->padding;
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 tempsize =
1501 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1502 INCREMENTAL_BUFFER_SIZE;
1503
1504 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001505 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1507 stop_gfar(dev);
1508
1509 priv->rx_buffer_size = tempsize;
1510
1511 dev->mtu = new_mtu;
1512
1513 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1514 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1515
1516 /* If the mtu is larger than the max size for standard
1517 * ethernet frames (ie, a jumbo frame), then set maccfg2
1518 * to allow huge frames, and to check the length */
1519 tempval = gfar_read(&priv->regs->maccfg2);
1520
1521 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1522 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1523 else
1524 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1525
1526 gfar_write(&priv->regs->maccfg2, tempval);
1527
1528 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1529 startup_gfar(dev);
1530
1531 return 0;
1532}
1533
Sebastian Siewiorab939902008-08-19 21:12:45 +02001534/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 * transmitted after a set amount of time.
1536 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02001537 * starting over will fix the problem.
1538 */
1539static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Sebastian Siewiorab939902008-08-19 21:12:45 +02001541 struct gfar_private *priv = container_of(work, struct gfar_private,
1542 reset_task);
Kumar Gala48268572009-03-18 23:28:22 -07001543 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 if (dev->flags & IFF_UP) {
Markus Brunnercbea27072009-04-15 02:35:40 -07001546 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 stop_gfar(dev);
1548 startup_gfar(dev);
Markus Brunnercbea27072009-04-15 02:35:40 -07001549 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
1551
David S. Miller263ba322008-07-15 03:47:41 -07001552 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Sebastian Siewiorab939902008-08-19 21:12:45 +02001555static void gfar_timeout(struct net_device *dev)
1556{
1557 struct gfar_private *priv = netdev_priv(dev);
1558
1559 dev->stats.tx_errors++;
1560 schedule_work(&priv->reset_task);
1561}
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001564static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Dai Harukid080cd62008-04-09 19:37:51 -05001566 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001567 struct txbd8 *bdp;
1568 struct txbd8 *lbdp = NULL;
1569 struct txbd8 *base = priv->tx_bd_base;
1570 struct sk_buff *skb;
1571 int skb_dirtytx;
1572 int tx_ring_size = priv->tx_ring_size;
1573 int frags = 0;
1574 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05001575 int howmany = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08001576 u32 lstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 bdp = priv->dirty_tx;
Dai Haruki4669bc92008-12-17 16:51:04 -08001579 skb_dirtytx = priv->skb_dirtytx;
1580
1581 while ((skb = priv->tx_skbuff[skb_dirtytx])) {
1582 frags = skb_shinfo(skb)->nr_frags;
1583 lbdp = skip_txbd(bdp, frags, base, tx_ring_size);
1584
1585 lstatus = lbdp->lstatus;
1586
1587 /* Only clean completed frames */
1588 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
1589 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 break;
1591
Kumar Gala48268572009-03-18 23:28:22 -07001592 dma_unmap_single(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001593 bdp->bufPtr,
1594 bdp->length,
1595 DMA_TO_DEVICE);
1596
1597 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1598 bdp = next_txbd(bdp, base, tx_ring_size);
1599
1600 for (i = 0; i < frags; i++) {
Kumar Gala48268572009-03-18 23:28:22 -07001601 dma_unmap_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001602 bdp->bufPtr,
1603 bdp->length,
1604 DMA_TO_DEVICE);
1605 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1606 bdp = next_txbd(bdp, base, tx_ring_size);
1607 }
1608
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001609 /*
1610 * If there's room in the queue (limit it to rx_buffer_size)
1611 * we add this skb back into the pool, if it's the right size
1612 */
1613 if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size &&
1614 skb_recycle_check(skb, priv->rx_buffer_size +
1615 RXBUF_ALIGNMENT))
1616 __skb_queue_head(&priv->rx_recycle, skb);
1617 else
1618 dev_kfree_skb_any(skb);
1619
Dai Haruki4669bc92008-12-17 16:51:04 -08001620 priv->tx_skbuff[skb_dirtytx] = NULL;
1621
1622 skb_dirtytx = (skb_dirtytx + 1) &
1623 TX_RING_MOD_MASK(tx_ring_size);
1624
Dai Harukid080cd62008-04-09 19:37:51 -05001625 howmany++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001626 priv->num_txbdfree += frags + 1;
1627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Dai Haruki4669bc92008-12-17 16:51:04 -08001629 /* If we freed a buffer, we can restart transmission, if necessary */
1630 if (netif_queue_stopped(dev) && priv->num_txbdfree)
1631 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Dai Haruki4669bc92008-12-17 16:51:04 -08001633 /* Update dirty indicators */
1634 priv->skb_dirtytx = skb_dirtytx;
1635 priv->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Dai Harukid080cd62008-04-09 19:37:51 -05001637 dev->stats.tx_packets += howmany;
1638
1639 return howmany;
1640}
1641
Dai Haruki8c7396a2008-12-17 16:52:00 -08001642static void gfar_schedule_cleanup(struct net_device *dev)
1643{
1644 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001645 unsigned long flags;
1646
1647 spin_lock_irqsave(&priv->txlock, flags);
1648 spin_lock(&priv->rxlock);
1649
Ben Hutchings288379f2009-01-19 16:43:59 -08001650 if (napi_schedule_prep(&priv->napi)) {
Dai Haruki8c7396a2008-12-17 16:52:00 -08001651 gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED);
Ben Hutchings288379f2009-01-19 16:43:59 -08001652 __napi_schedule(&priv->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08001653 } else {
1654 /*
1655 * Clear IEVENT, so interrupts aren't called again
1656 * because of the packets that have already arrived.
1657 */
1658 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001659 }
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001660
1661 spin_unlock(&priv->rxlock);
1662 spin_unlock_irqrestore(&priv->txlock, flags);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001663}
1664
Dai Harukid080cd62008-04-09 19:37:51 -05001665/* Interrupt Handler for Transmit complete */
1666static irqreturn_t gfar_transmit(int irq, void *dev_id)
1667{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001668 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return IRQ_HANDLED;
1670}
1671
Andy Fleming815b97c2008-04-22 17:18:29 -05001672static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1673 struct sk_buff *skb)
1674{
1675 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001676 u32 lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001677
Kumar Gala48268572009-03-18 23:28:22 -07001678 bdp->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Andy Fleming815b97c2008-04-22 17:18:29 -05001679 priv->rx_buffer_size, DMA_FROM_DEVICE);
1680
Dai Haruki5a5efed2008-12-16 15:34:50 -08001681 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Andy Fleming815b97c2008-04-22 17:18:29 -05001682
1683 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
Dai Haruki5a5efed2008-12-16 15:34:50 -08001684 lstatus |= BD_LFLAG(RXBD_WRAP);
Andy Fleming815b97c2008-04-22 17:18:29 -05001685
1686 eieio();
1687
Dai Haruki5a5efed2008-12-16 15:34:50 -08001688 bdp->lstatus = lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001689}
1690
1691
1692struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001694 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 struct gfar_private *priv = netdev_priv(dev);
1696 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001698 skb = __skb_dequeue(&priv->rx_recycle);
1699 if (!skb)
1700 skb = netdev_alloc_skb(dev,
1701 priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Andy Fleming815b97c2008-04-22 17:18:29 -05001703 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 return NULL;
1705
Andy Fleming7f7f5312005-11-11 12:38:59 -06001706 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001707 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 /* We need the data buffer to be aligned properly. We will reserve
1710 * as many bytes as needed to align the data properly
1711 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001712 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return skb;
1715}
1716
Li Yang298e1a92007-10-16 14:18:13 +08001717static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Li Yang298e1a92007-10-16 14:18:13 +08001719 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001720 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 struct gfar_extra_stats *estats = &priv->extra_stats;
1722
1723 /* If the packet was truncated, none of the other errors
1724 * matter */
1725 if (status & RXBD_TRUNCATED) {
1726 stats->rx_length_errors++;
1727
1728 estats->rx_trunc++;
1729
1730 return;
1731 }
1732 /* Count the errors, if there were any */
1733 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1734 stats->rx_length_errors++;
1735
1736 if (status & RXBD_LARGE)
1737 estats->rx_large++;
1738 else
1739 estats->rx_short++;
1740 }
1741 if (status & RXBD_NONOCTET) {
1742 stats->rx_frame_errors++;
1743 estats->rx_nonoctet++;
1744 }
1745 if (status & RXBD_CRCERR) {
1746 estats->rx_crcerr++;
1747 stats->rx_crc_errors++;
1748 }
1749 if (status & RXBD_OVERRUN) {
1750 estats->rx_overrun++;
1751 stats->rx_crc_errors++;
1752 }
1753}
1754
David Howells7d12e782006-10-05 14:55:46 +01001755irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001757 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return IRQ_HANDLED;
1759}
1760
Kumar Gala0bbaf062005-06-20 10:54:21 -05001761static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1762{
1763 /* If valid headers were found, and valid sums
1764 * were verified, then we tell the kernel that no
1765 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001766 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001767 skb->ip_summed = CHECKSUM_UNNECESSARY;
1768 else
1769 skb->ip_summed = CHECKSUM_NONE;
1770}
1771
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773/* gfar_process_frame() -- handle one incoming packet if skb
1774 * isn't NULL. */
1775static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Dai Haruki2c2db482008-12-16 15:31:15 -08001776 int amount_pull)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
1778 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001779 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Dai Haruki2c2db482008-12-16 15:31:15 -08001781 int ret;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001782
Dai Haruki2c2db482008-12-16 15:31:15 -08001783 /* fcb is at the beginning if exists */
1784 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Dai Haruki2c2db482008-12-16 15:31:15 -08001786 /* Remove the FCB from the skb */
1787 /* Remove the padded bytes, if there are any */
1788 if (amount_pull)
1789 skb_pull(skb, amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001790
Dai Haruki2c2db482008-12-16 15:31:15 -08001791 if (priv->rx_csum_enable)
1792 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001793
Dai Haruki2c2db482008-12-16 15:31:15 -08001794 /* Tell the skb what kind of packet this is */
1795 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001796
Dai Haruki2c2db482008-12-16 15:31:15 -08001797 /* Send the packet up the stack */
1798 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN)))
1799 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl);
1800 else
1801 ret = netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Dai Haruki2c2db482008-12-16 15:31:15 -08001803 if (NET_RX_DROP == ret)
1804 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 return 0;
1807}
1808
1809/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001810 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 * of frames handled
1812 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001813int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Andy Fleming31de1982008-12-16 15:33:40 -08001815 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08001817 int pkt_len;
1818 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 int howmany = 0;
1820 struct gfar_private *priv = netdev_priv(dev);
1821
1822 /* Get the first full descriptor */
1823 bdp = priv->cur_rx;
Andy Fleming31de1982008-12-16 15:33:40 -08001824 base = priv->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Dai Haruki2c2db482008-12-16 15:31:15 -08001826 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) +
1827 priv->padding;
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001830 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001831 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001832
1833 /* Add another skb for the future */
1834 newskb = gfar_new_skb(dev);
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 skb = priv->rx_skbuff[priv->skb_currx];
1837
Kumar Gala48268572009-03-18 23:28:22 -07001838 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
Andy Fleming81183052008-11-12 10:07:11 -06001839 priv->rx_buffer_size, DMA_FROM_DEVICE);
1840
Andy Fleming815b97c2008-04-22 17:18:29 -05001841 /* We drop the frame if we failed to allocate a new buffer */
1842 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1843 bdp->status & RXBD_ERR)) {
1844 count_errors(bdp->status, dev);
1845
1846 if (unlikely(!newskb))
1847 newskb = skb;
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001848 else if (skb) {
1849 /*
1850 * We need to reset ->data to what it
1851 * was before gfar_new_skb() re-aligned
1852 * it to an RXBUF_ALIGNMENT boundary
1853 * before we put the skb back on the
1854 * recycle list.
1855 */
1856 skb->data = skb->head + NET_SKB_PAD;
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001857 __skb_queue_head(&priv->rx_recycle, skb);
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001858 }
Andy Fleming815b97c2008-04-22 17:18:29 -05001859 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001861 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 howmany++;
1863
Dai Haruki2c2db482008-12-16 15:31:15 -08001864 if (likely(skb)) {
1865 pkt_len = bdp->length - ETH_FCS_LEN;
1866 /* Remove the FCS from the packet length */
1867 skb_put(skb, pkt_len);
1868 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Andy Fleming1577ece2009-02-04 16:42:12 -08001870 if (in_irq() || irqs_disabled())
1871 printk("Interrupt problem!\n");
Dai Haruki2c2db482008-12-16 15:31:15 -08001872 gfar_process_frame(dev, skb, amount_pull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Dai Haruki2c2db482008-12-16 15:31:15 -08001874 } else {
1875 if (netif_msg_rx_err(priv))
1876 printk(KERN_WARNING
1877 "%s: Missing skb!\n", dev->name);
1878 dev->stats.rx_dropped++;
1879 priv->extra_stats.rx_skbmissing++;
1880 }
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
1883
Andy Fleming815b97c2008-04-22 17:18:29 -05001884 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Andy Fleming815b97c2008-04-22 17:18:29 -05001886 /* Setup the new bdp */
1887 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 /* Update to the next pointer */
Andy Fleming31de1982008-12-16 15:33:40 -08001890 bdp = next_bd(bdp, base, priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 /* update to point at the next skb */
1893 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001894 (priv->skb_currx + 1) &
1895 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
1898 /* Update the current rxbd pointer to be the next one */
1899 priv->cur_rx = bdp;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return howmany;
1902}
1903
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001904static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001906 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
Kumar Gala48268572009-03-18 23:28:22 -07001907 struct net_device *dev = priv->ndev;
Andy Fleming42199882008-12-17 16:52:30 -08001908 int tx_cleaned = 0;
1909 int rx_cleaned = 0;
Dai Harukid080cd62008-04-09 19:37:51 -05001910 unsigned long flags;
1911
Dai Haruki8c7396a2008-12-17 16:52:00 -08001912 /* Clear IEVENT, so interrupts aren't called again
1913 * because of the packets that have already arrived */
1914 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1915
Dai Harukid080cd62008-04-09 19:37:51 -05001916 /* If we fail to get the lock, don't bother with the TX BDs */
1917 if (spin_trylock_irqsave(&priv->txlock, flags)) {
Andy Fleming42199882008-12-17 16:52:30 -08001918 tx_cleaned = gfar_clean_tx_ring(dev);
Dai Harukid080cd62008-04-09 19:37:51 -05001919 spin_unlock_irqrestore(&priv->txlock, flags);
1920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Andy Fleming42199882008-12-17 16:52:30 -08001922 rx_cleaned = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Andy Fleming42199882008-12-17 16:52:30 -08001924 if (tx_cleaned)
1925 return budget;
1926
1927 if (rx_cleaned < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001928 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 /* Clear the halt bit in RSTAT */
1931 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
1932
1933 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
1934
1935 /* If we are coalescing interrupts, update the timer */
1936 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001937 if (likely(priv->rxcoalescing)) {
1938 gfar_write(&priv->regs->rxic, 0);
Dai Harukib46a8452008-12-16 15:29:52 -08001939 gfar_write(&priv->regs->rxic, priv->rxic);
Andy Fleming2f448912008-03-24 10:53:28 -05001940 }
Dai Haruki8c7396a2008-12-17 16:52:00 -08001941 if (likely(priv->txcoalescing)) {
1942 gfar_write(&priv->regs->txic, 0);
1943 gfar_write(&priv->regs->txic, priv->txic);
1944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 }
1946
Andy Fleming42199882008-12-17 16:52:30 -08001947 return rx_cleaned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001950#ifdef CONFIG_NET_POLL_CONTROLLER
1951/*
1952 * Polling 'interrupt' - used by things like netconsole to send skbs
1953 * without having to re-enable interrupts. It's not called while
1954 * the interrupt routine is executing.
1955 */
1956static void gfar_netpoll(struct net_device *dev)
1957{
1958 struct gfar_private *priv = netdev_priv(dev);
1959
1960 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001961 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001962 disable_irq(priv->interruptTransmit);
1963 disable_irq(priv->interruptReceive);
1964 disable_irq(priv->interruptError);
1965 gfar_interrupt(priv->interruptTransmit, dev);
1966 enable_irq(priv->interruptError);
1967 enable_irq(priv->interruptReceive);
1968 enable_irq(priv->interruptTransmit);
1969 } else {
1970 disable_irq(priv->interruptTransmit);
1971 gfar_interrupt(priv->interruptTransmit, dev);
1972 enable_irq(priv->interruptTransmit);
1973 }
1974}
1975#endif
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01001978static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 struct net_device *dev = dev_id;
1981 struct gfar_private *priv = netdev_priv(dev);
1982
1983 /* Save ievent for future reference */
1984 u32 events = gfar_read(&priv->regs->ievent);
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001987 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001988 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001991 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001992 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001994 /* Check for errors */
1995 if (events & IEVENT_ERR_MASK)
1996 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 return IRQ_HANDLED;
1999}
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001/* Called every time the controller might need to be made
2002 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002003 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 * function converts those variables into the appropriate
2005 * register values, and can bring down the device if needed.
2006 */
2007static void adjust_link(struct net_device *dev)
2008{
2009 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002010 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002011 unsigned long flags;
2012 struct phy_device *phydev = priv->phydev;
2013 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Andy Flemingfef61082006-04-20 16:44:29 -05002015 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002016 if (phydev->link) {
2017 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002018 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 /* Now we make sure that we can be in full duplex mode.
2021 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002022 if (phydev->duplex != priv->oldduplex) {
2023 new_state = 1;
2024 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002026 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002029 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002032 if (phydev->speed != priv->oldspeed) {
2033 new_state = 1;
2034 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 tempval =
2037 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08002038
2039 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 break;
2041 case 100:
2042 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 tempval =
2044 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002045
2046 /* Reduced mode distinguishes
2047 * between 10 and 100 */
2048 if (phydev->speed == SPEED_100)
2049 ecntrl |= ECNTRL_R100;
2050 else
2051 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 break;
2053 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05002054 if (netif_msg_link(priv))
2055 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002056 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2057 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 break;
2059 }
2060
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002061 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 }
2063
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002064 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002065 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002068 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002071 } else if (priv->oldlink) {
2072 new_state = 1;
2073 priv->oldlink = 0;
2074 priv->oldspeed = 0;
2075 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002078 if (new_state && netif_msg_link(priv))
2079 phy_print_status(phydev);
2080
Andy Flemingfef61082006-04-20 16:44:29 -05002081 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084/* Update the hash table based on the current list of multicast
2085 * addresses we subscribe to. Also, change the promiscuity of
2086 * the device based on the flags (this function is called
2087 * whenever dev->flags is changed */
2088static void gfar_set_multi(struct net_device *dev)
2089{
2090 struct dev_mc_list *mc_ptr;
2091 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002092 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 u32 tempval;
2094
2095 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 /* Set RCTRL to PROM */
2097 tempval = gfar_read(&regs->rctrl);
2098 tempval |= RCTRL_PROM;
2099 gfar_write(&regs->rctrl, tempval);
2100 } else {
2101 /* Set RCTRL to not PROM */
2102 tempval = gfar_read(&regs->rctrl);
2103 tempval &= ~(RCTRL_PROM);
2104 gfar_write(&regs->rctrl, tempval);
2105 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if(dev->flags & IFF_ALLMULTI) {
2108 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002109 gfar_write(&regs->igaddr0, 0xffffffff);
2110 gfar_write(&regs->igaddr1, 0xffffffff);
2111 gfar_write(&regs->igaddr2, 0xffffffff);
2112 gfar_write(&regs->igaddr3, 0xffffffff);
2113 gfar_write(&regs->igaddr4, 0xffffffff);
2114 gfar_write(&regs->igaddr5, 0xffffffff);
2115 gfar_write(&regs->igaddr6, 0xffffffff);
2116 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 gfar_write(&regs->gaddr0, 0xffffffff);
2118 gfar_write(&regs->gaddr1, 0xffffffff);
2119 gfar_write(&regs->gaddr2, 0xffffffff);
2120 gfar_write(&regs->gaddr3, 0xffffffff);
2121 gfar_write(&regs->gaddr4, 0xffffffff);
2122 gfar_write(&regs->gaddr5, 0xffffffff);
2123 gfar_write(&regs->gaddr6, 0xffffffff);
2124 gfar_write(&regs->gaddr7, 0xffffffff);
2125 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002126 int em_num;
2127 int idx;
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002130 gfar_write(&regs->igaddr0, 0x0);
2131 gfar_write(&regs->igaddr1, 0x0);
2132 gfar_write(&regs->igaddr2, 0x0);
2133 gfar_write(&regs->igaddr3, 0x0);
2134 gfar_write(&regs->igaddr4, 0x0);
2135 gfar_write(&regs->igaddr5, 0x0);
2136 gfar_write(&regs->igaddr6, 0x0);
2137 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 gfar_write(&regs->gaddr0, 0x0);
2139 gfar_write(&regs->gaddr1, 0x0);
2140 gfar_write(&regs->gaddr2, 0x0);
2141 gfar_write(&regs->gaddr3, 0x0);
2142 gfar_write(&regs->gaddr4, 0x0);
2143 gfar_write(&regs->gaddr5, 0x0);
2144 gfar_write(&regs->gaddr6, 0x0);
2145 gfar_write(&regs->gaddr7, 0x0);
2146
Andy Fleming7f7f5312005-11-11 12:38:59 -06002147 /* If we have extended hash tables, we need to
2148 * clear the exact match registers to prepare for
2149 * setting them */
2150 if (priv->extended_hash) {
2151 em_num = GFAR_EM_NUM + 1;
2152 gfar_clear_exact_match(dev);
2153 idx = 1;
2154 } else {
2155 idx = 0;
2156 em_num = 0;
2157 }
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if(dev->mc_count == 0)
2160 return;
2161
2162 /* Parse the list, and set the appropriate bits */
2163 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002164 if (idx < em_num) {
2165 gfar_set_mac_for_addr(dev, idx,
2166 mc_ptr->dmi_addr);
2167 idx++;
2168 } else
2169 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
2171 }
2172
2173 return;
2174}
2175
Andy Fleming7f7f5312005-11-11 12:38:59 -06002176
2177/* Clears each of the exact match registers to zero, so they
2178 * don't interfere with normal reception */
2179static void gfar_clear_exact_match(struct net_device *dev)
2180{
2181 int idx;
2182 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
2183
2184 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
2185 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
2186}
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188/* Set the appropriate hash bit for the given addr */
2189/* The algorithm works like so:
2190 * 1) Take the Destination Address (ie the multicast address), and
2191 * do a CRC on it (little endian), and reverse the bits of the
2192 * result.
2193 * 2) Use the 8 most significant bits as a hash into a 256-entry
2194 * table. The table is controlled through 8 32-bit registers:
2195 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
2196 * gaddr7. This means that the 3 most significant bits in the
2197 * hash index which gaddr register to use, and the 5 other bits
2198 * indicate which bit (assuming an IBM numbering scheme, which
2199 * for PowerPC (tm) is usually the case) in the register holds
2200 * the entry. */
2201static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
2202{
2203 u32 tempval;
2204 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002206 int width = priv->hash_width;
2207 u8 whichbit = (result >> (32 - width)) & 0x1f;
2208 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 u32 value = (1 << (31-whichbit));
2210
Kumar Gala0bbaf062005-06-20 10:54:21 -05002211 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002213 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 return;
2216}
2217
Andy Fleming7f7f5312005-11-11 12:38:59 -06002218
2219/* There are multiple MAC Address register pairs on some controllers
2220 * This function sets the numth pair to a given address
2221 */
2222static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
2223{
2224 struct gfar_private *priv = netdev_priv(dev);
2225 int idx;
2226 char tmpbuf[MAC_ADDR_LEN];
2227 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06002228 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002229
2230 macptr += num*2;
2231
2232 /* Now copy it into the mac registers backwards, cuz */
2233 /* little endian is silly */
2234 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2235 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2236
2237 gfar_write(macptr, *((u32 *) (tmpbuf)));
2238
2239 tempval = *((u32 *) (tmpbuf + 4));
2240
2241 gfar_write(macptr+1, tempval);
2242}
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002245static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
2247 struct net_device *dev = dev_id;
2248 struct gfar_private *priv = netdev_priv(dev);
2249
2250 /* Save ievent for future reference */
2251 u32 events = gfar_read(&priv->regs->ievent);
2252
2253 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002254 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2255
2256 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002257 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05002258 (events & IEVENT_MAG))
2259 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002262 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2263 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002264 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 /* Update the error counters */
2267 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002268 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002271 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002273 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002275 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002276 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2277 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002278 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 priv->extra_stats.tx_underrun++;
2280
2281 /* Reactivate the Tx Queues */
2282 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2283 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002284 if (netif_msg_tx_err(priv))
2285 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002288 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 priv->extra_stats.rx_bsy++;
2290
David Howells7d12e782006-10-05 14:55:46 +01002291 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Kumar Gala0bbaf062005-06-20 10:54:21 -05002293 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002294 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2295 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002298 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 priv->extra_stats.rx_babr++;
2300
Kumar Gala0bbaf062005-06-20 10:54:21 -05002301 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002302 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 }
2304 if (events & IEVENT_EBERR) {
2305 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002306 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002307 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002309 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002310 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 if (events & IEVENT_BABT) {
2313 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002314 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002315 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 }
2317 return IRQ_HANDLED;
2318}
2319
Kay Sievers72abb462008-04-18 13:50:44 -07002320/* work with hotplug and coldplug */
2321MODULE_ALIAS("platform:fsl-gianfar");
2322
Andy Flemingb31a1d82008-12-16 15:29:15 -08002323static struct of_device_id gfar_match[] =
2324{
2325 {
2326 .type = "network",
2327 .compatible = "gianfar",
2328 },
2329 {},
2330};
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332/* Structure for a device driver */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002333static struct of_platform_driver gfar_driver = {
2334 .name = "fsl-gianfar",
2335 .match_table = gfar_match,
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 .probe = gfar_probe,
2338 .remove = gfar_remove,
Scott Woodd87eb122008-07-11 18:04:45 -05002339 .suspend = gfar_suspend,
2340 .resume = gfar_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341};
2342
2343static int __init gfar_init(void)
2344{
Andy Fleming1577ece2009-02-04 16:42:12 -08002345 return of_register_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346}
2347
2348static void __exit gfar_exit(void)
2349{
Andy Flemingb31a1d82008-12-16 15:29:15 -08002350 of_unregister_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
2353module_init(gfar_init);
2354module_exit(gfar_exit);
2355