blob: c8735540b1ecda277c043a35d98811a4bb86f33d [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
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000150static int gfar_alloc_skb_resources(struct net_device *ndev)
151{
152 struct txbd8 *txbdp;
153 struct rxbd8 *rxbdp;
154 dma_addr_t addr = 0;
155 void *vaddr;
156 int i;
157 struct gfar_private *priv = netdev_priv(ndev);
158 struct device *dev = &priv->ofdev->dev;
159 struct gfar __iomem *regs = priv->regs;
160
161 /* Allocate memory for the buffer descriptors */
162 vaddr = dma_alloc_coherent(dev, sizeof(*txbdp) * priv->tx_ring_size +
163 sizeof(*rxbdp) * priv->rx_ring_size,
164 &addr, GFP_KERNEL);
165 if (!vaddr) {
166 if (netif_msg_ifup(priv))
167 pr_err("%s: Could not allocate buffer descriptors!\n",
168 ndev->name);
169 return -ENOMEM;
170 }
171
172 priv->tx_bd_base = vaddr;
173
174 /* enet DMA only understands physical addresses */
175 gfar_write(&regs->tbase0, addr);
176
177 /* Start the rx descriptor ring where the tx ring leaves off */
178 addr = addr + sizeof(*txbdp) * priv->tx_ring_size;
179 vaddr = vaddr + sizeof(*txbdp) * priv->tx_ring_size;
180 priv->rx_bd_base = vaddr;
181 gfar_write(&regs->rbase0, addr);
182
183 /* Setup the skbuff rings */
184 priv->tx_skbuff = kmalloc(sizeof(*priv->tx_skbuff) *
185 priv->tx_ring_size, GFP_KERNEL);
186 if (!priv->tx_skbuff) {
187 if (netif_msg_ifup(priv))
188 pr_err("%s: Could not allocate tx_skbuff\n",
189 ndev->name);
190 goto cleanup;
191 }
192
193 for (i = 0; i < priv->tx_ring_size; i++)
194 priv->tx_skbuff[i] = NULL;
195
196 priv->rx_skbuff = kmalloc(sizeof(*priv->rx_skbuff) *
197 priv->rx_ring_size, GFP_KERNEL);
198 if (!priv->rx_skbuff) {
199 if (netif_msg_ifup(priv))
200 pr_err("%s: Could not allocate rx_skbuff\n",
201 ndev->name);
202 goto cleanup;
203 }
204
205 for (i = 0; i < priv->rx_ring_size; i++)
206 priv->rx_skbuff[i] = NULL;
207
208 /* Initialize some variables in our dev structure */
209 priv->num_txbdfree = priv->tx_ring_size;
210 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
211 priv->cur_rx = priv->rx_bd_base;
212 priv->skb_curtx = priv->skb_dirtytx = 0;
213 priv->skb_currx = 0;
214
215 /* Initialize Transmit Descriptor Ring */
216 txbdp = priv->tx_bd_base;
217 for (i = 0; i < priv->tx_ring_size; i++) {
218 txbdp->lstatus = 0;
219 txbdp->bufPtr = 0;
220 txbdp++;
221 }
222
223 /* Set the last descriptor in the ring to indicate wrap */
224 txbdp--;
225 txbdp->status |= TXBD_WRAP;
226
227 rxbdp = priv->rx_bd_base;
228 for (i = 0; i < priv->rx_ring_size; i++) {
229 struct sk_buff *skb;
230
231 skb = gfar_new_skb(ndev);
232 if (!skb) {
233 pr_err("%s: Can't allocate RX buffers\n", ndev->name);
234 goto cleanup;
235 }
236
237 priv->rx_skbuff[i] = skb;
238
239 gfar_new_rxbdp(ndev, rxbdp, skb);
240
241 rxbdp++;
242 }
243
244 return 0;
245
246cleanup:
247 free_skb_resources(priv);
248 return -ENOMEM;
249}
250
251static void gfar_init_mac(struct net_device *ndev)
252{
253 struct gfar_private *priv = netdev_priv(ndev);
254 struct gfar __iomem *regs = priv->regs;
255 u32 rctrl = 0;
256 u32 tctrl = 0;
257 u32 attrs = 0;
258
259 /* Configure the coalescing support */
260 gfar_write(&regs->txic, 0);
261 if (priv->txcoalescing)
262 gfar_write(&regs->txic, priv->txic);
263
264 gfar_write(&regs->rxic, 0);
265 if (priv->rxcoalescing)
266 gfar_write(&regs->rxic, priv->rxic);
267
268 if (priv->rx_csum_enable)
269 rctrl |= RCTRL_CHECKSUMMING;
270
271 if (priv->extended_hash) {
272 rctrl |= RCTRL_EXTHASH;
273
274 gfar_clear_exact_match(ndev);
275 rctrl |= RCTRL_EMEN;
276 }
277
278 if (priv->padding) {
279 rctrl &= ~RCTRL_PAL_MASK;
280 rctrl |= RCTRL_PADDING(priv->padding);
281 }
282
283 /* keep vlan related bits if it's enabled */
284 if (priv->vlgrp) {
285 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
286 tctrl |= TCTRL_VLINS;
287 }
288
289 /* Init rctrl based on our settings */
290 gfar_write(&regs->rctrl, rctrl);
291
292 if (ndev->features & NETIF_F_IP_CSUM)
293 tctrl |= TCTRL_INIT_CSUM;
294
295 gfar_write(&regs->tctrl, tctrl);
296
297 /* Set the extraction length and index */
298 attrs = ATTRELI_EL(priv->rx_stash_size) |
299 ATTRELI_EI(priv->rx_stash_index);
300
301 gfar_write(&regs->attreli, attrs);
302
303 /* Start with defaults, and add stashing or locking
304 * depending on the approprate variables */
305 attrs = ATTR_INIT_SETTINGS;
306
307 if (priv->bd_stash_en)
308 attrs |= ATTR_BDSTASH;
309
310 if (priv->rx_stash_size != 0)
311 attrs |= ATTR_BUFSTASH;
312
313 gfar_write(&regs->attr, attrs);
314
315 gfar_write(&regs->fifo_tx_thr, priv->fifo_threshold);
316 gfar_write(&regs->fifo_tx_starve, priv->fifo_starve);
317 gfar_write(&regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
318}
319
Andy Fleming26ccfc32009-03-10 12:58:28 +0000320static const struct net_device_ops gfar_netdev_ops = {
321 .ndo_open = gfar_enet_open,
322 .ndo_start_xmit = gfar_start_xmit,
323 .ndo_stop = gfar_close,
324 .ndo_change_mtu = gfar_change_mtu,
325 .ndo_set_multicast_list = gfar_set_multi,
326 .ndo_tx_timeout = gfar_timeout,
327 .ndo_do_ioctl = gfar_ioctl,
328 .ndo_vlan_rx_register = gfar_vlan_rx_register,
Ben Hutchings240c1022009-07-09 17:54:35 +0000329 .ndo_set_mac_address = eth_mac_addr,
330 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000331#ifdef CONFIG_NET_POLL_CONTROLLER
332 .ndo_poll_controller = gfar_netpoll,
333#endif
334};
335
Andy Fleming7f7f5312005-11-11 12:38:59 -0600336/* Returns 1 if incoming frames use an FCB */
337static inline int gfar_uses_fcb(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500338{
Dai Haruki77ecaf22008-12-16 15:30:48 -0800339 return priv->vlgrp || priv->rx_csum_enable;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500340}
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400341
Andy Flemingb31a1d82008-12-16 15:29:15 -0800342static int gfar_of_init(struct net_device *dev)
343{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800344 const char *model;
345 const char *ctype;
346 const void *mac_addr;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800347 u64 addr, size;
348 int err = 0;
349 struct gfar_private *priv = netdev_priv(dev);
350 struct device_node *np = priv->node;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800351 const u32 *stash;
352 const u32 *stash_len;
353 const u32 *stash_idx;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800354
355 if (!np || !of_device_is_available(np))
356 return -ENODEV;
357
358 /* get a pointer to the register memory */
359 addr = of_translate_address(np, of_get_address(np, 0, &size, NULL));
360 priv->regs = ioremap(addr, size);
361
362 if (priv->regs == NULL)
363 return -ENOMEM;
364
365 priv->interruptTransmit = irq_of_parse_and_map(np, 0);
366
367 model = of_get_property(np, "model", NULL);
368
369 /* If we aren't the FEC we have multiple interrupts */
370 if (model && strcasecmp(model, "FEC")) {
371 priv->interruptReceive = irq_of_parse_and_map(np, 1);
372
373 priv->interruptError = irq_of_parse_and_map(np, 2);
374
375 if (priv->interruptTransmit < 0 ||
376 priv->interruptReceive < 0 ||
377 priv->interruptError < 0) {
378 err = -EINVAL;
379 goto err_out;
380 }
381 }
382
Andy Fleming4d7902f2009-02-04 16:43:44 -0800383 stash = of_get_property(np, "bd-stash", NULL);
384
385 if(stash) {
386 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
387 priv->bd_stash_en = 1;
388 }
389
390 stash_len = of_get_property(np, "rx-stash-len", NULL);
391
392 if (stash_len)
393 priv->rx_stash_size = *stash_len;
394
395 stash_idx = of_get_property(np, "rx-stash-idx", NULL);
396
397 if (stash_idx)
398 priv->rx_stash_index = *stash_idx;
399
400 if (stash_len || stash_idx)
401 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
402
Andy Flemingb31a1d82008-12-16 15:29:15 -0800403 mac_addr = of_get_mac_address(np);
404 if (mac_addr)
405 memcpy(dev->dev_addr, mac_addr, MAC_ADDR_LEN);
406
407 if (model && !strcasecmp(model, "TSEC"))
408 priv->device_flags =
409 FSL_GIANFAR_DEV_HAS_GIGABIT |
410 FSL_GIANFAR_DEV_HAS_COALESCE |
411 FSL_GIANFAR_DEV_HAS_RMON |
412 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
413 if (model && !strcasecmp(model, "eTSEC"))
414 priv->device_flags =
415 FSL_GIANFAR_DEV_HAS_GIGABIT |
416 FSL_GIANFAR_DEV_HAS_COALESCE |
417 FSL_GIANFAR_DEV_HAS_RMON |
418 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Dai Haruki2c2db482008-12-16 15:31:15 -0800419 FSL_GIANFAR_DEV_HAS_PADDING |
Andy Flemingb31a1d82008-12-16 15:29:15 -0800420 FSL_GIANFAR_DEV_HAS_CSUM |
421 FSL_GIANFAR_DEV_HAS_VLAN |
422 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
423 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
424
425 ctype = of_get_property(np, "phy-connection-type", NULL);
426
427 /* We only care about rgmii-id. The rest are autodetected */
428 if (ctype && !strcmp(ctype, "rgmii-id"))
429 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
430 else
431 priv->interface = PHY_INTERFACE_MODE_MII;
432
433 if (of_get_property(np, "fsl,magic-packet", NULL))
434 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
435
Grant Likelyfe192a42009-04-25 12:53:12 +0000436 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800437
438 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000439 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800440
441 return 0;
442
443err_out:
444 iounmap(priv->regs);
445 return err;
446}
447
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000448/* Ioctl MII Interface */
449static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
450{
451 struct gfar_private *priv = netdev_priv(dev);
452
453 if (!netif_running(dev))
454 return -EINVAL;
455
456 if (!priv->phydev)
457 return -ENODEV;
458
459 return phy_mii_ioctl(priv->phydev, if_mii(rq), cmd);
460}
461
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400462/* Set up the ethernet device structure, private data,
463 * and anything else we need before we start */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800464static int gfar_probe(struct of_device *ofdev,
465 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 u32 tempval;
468 struct net_device *dev = NULL;
469 struct gfar_private *priv = NULL;
Dai Harukic50a5d92008-12-17 16:51:32 -0800470 int err = 0;
471 int len_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 /* Create an ethernet device instance */
474 dev = alloc_etherdev(sizeof (*priv));
475
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400476 if (NULL == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return -ENOMEM;
478
479 priv = netdev_priv(dev);
Kumar Gala48268572009-03-18 23:28:22 -0700480 priv->ndev = dev;
481 priv->ofdev = ofdev;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800482 priv->node = ofdev->node;
Kumar Gala48268572009-03-18 23:28:22 -0700483 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Andy Flemingb31a1d82008-12-16 15:29:15 -0800485 err = gfar_of_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Andy Flemingb31a1d82008-12-16 15:29:15 -0800487 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Andy Flemingfef61082006-04-20 16:44:29 -0500490 spin_lock_init(&priv->txlock);
491 spin_lock_init(&priv->rxlock);
Scott Woodd87eb122008-07-11 18:04:45 -0500492 spin_lock_init(&priv->bflock);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200493 INIT_WORK(&priv->reset_task, gfar_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Andy Flemingb31a1d82008-12-16 15:29:15 -0800495 dev_set_drvdata(&ofdev->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /* Stop the DMA engine now, in case it was running before */
498 /* (The firmware could have used it, and left it running). */
Andy Fleming257d9382008-12-16 15:25:45 -0800499 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* Reset MAC layer */
502 gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
503
Andy Flemingb98ac702009-02-04 16:38:05 -0800504 /* We need to delay at least 3 TX clocks */
505 udelay(2);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
508 gfar_write(&priv->regs->maccfg1, tempval);
509
510 /* Initialize MACCFG2. */
511 gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS);
512
513 /* Initialize ECNTRL */
514 gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS);
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* Set the dev->base_addr to the gfar reg region */
517 dev->base_addr = (unsigned long) (priv->regs);
518
Andy Flemingb31a1d82008-12-16 15:29:15 -0800519 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 /* Fill in the dev structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700523 netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 dev->mtu = 1500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Andy Fleming26ccfc32009-03-10 12:58:28 +0000526 dev->netdev_ops = &gfar_netdev_ops;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500527 dev->ethtool_ops = &gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Andy Flemingb31a1d82008-12-16 15:29:15 -0800529 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500530 priv->rx_csum_enable = 1;
Dai Haruki4669bc92008-12-17 16:51:04 -0800531 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500532 } else
533 priv->rx_csum_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Kumar Gala0bbaf062005-06-20 10:54:21 -0500535 priv->vlgrp = NULL;
536
Andy Fleming26ccfc32009-03-10 12:58:28 +0000537 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500538 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500539
Andy Flemingb31a1d82008-12-16 15:29:15 -0800540 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500541 priv->extended_hash = 1;
542 priv->hash_width = 9;
543
544 priv->hash_regs[0] = &priv->regs->igaddr0;
545 priv->hash_regs[1] = &priv->regs->igaddr1;
546 priv->hash_regs[2] = &priv->regs->igaddr2;
547 priv->hash_regs[3] = &priv->regs->igaddr3;
548 priv->hash_regs[4] = &priv->regs->igaddr4;
549 priv->hash_regs[5] = &priv->regs->igaddr5;
550 priv->hash_regs[6] = &priv->regs->igaddr6;
551 priv->hash_regs[7] = &priv->regs->igaddr7;
552 priv->hash_regs[8] = &priv->regs->gaddr0;
553 priv->hash_regs[9] = &priv->regs->gaddr1;
554 priv->hash_regs[10] = &priv->regs->gaddr2;
555 priv->hash_regs[11] = &priv->regs->gaddr3;
556 priv->hash_regs[12] = &priv->regs->gaddr4;
557 priv->hash_regs[13] = &priv->regs->gaddr5;
558 priv->hash_regs[14] = &priv->regs->gaddr6;
559 priv->hash_regs[15] = &priv->regs->gaddr7;
560
561 } else {
562 priv->extended_hash = 0;
563 priv->hash_width = 8;
564
565 priv->hash_regs[0] = &priv->regs->gaddr0;
Andy Fleming1577ece2009-02-04 16:42:12 -0800566 priv->hash_regs[1] = &priv->regs->gaddr1;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500567 priv->hash_regs[2] = &priv->regs->gaddr2;
568 priv->hash_regs[3] = &priv->regs->gaddr3;
569 priv->hash_regs[4] = &priv->regs->gaddr4;
570 priv->hash_regs[5] = &priv->regs->gaddr5;
571 priv->hash_regs[6] = &priv->regs->gaddr6;
572 priv->hash_regs[7] = &priv->regs->gaddr7;
573 }
574
Andy Flemingb31a1d82008-12-16 15:29:15 -0800575 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500576 priv->padding = DEFAULT_PADDING;
577 else
578 priv->padding = 0;
579
Kumar Gala0bbaf062005-06-20 10:54:21 -0500580 if (dev->features & NETIF_F_IP_CSUM)
581 dev->hard_header_len += GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 priv->tx_ring_size = DEFAULT_TX_RING_SIZE;
585 priv->rx_ring_size = DEFAULT_RX_RING_SIZE;
Dai Haruki4669bc92008-12-17 16:51:04 -0800586 priv->num_txbdfree = DEFAULT_TX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 priv->txcoalescing = DEFAULT_TX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800589 priv->txic = DEFAULT_TXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 priv->rxcoalescing = DEFAULT_RX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800591 priv->rxic = DEFAULT_RXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Kumar Gala0bbaf062005-06-20 10:54:21 -0500593 /* Enable most messages by default */
594 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
595
Trent Piephod3eab822008-10-02 11:12:24 +0000596 /* Carrier starts down, phylib will bring it up */
597 netif_carrier_off(dev);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 err = register_netdev(dev);
600
601 if (err) {
602 printk(KERN_ERR "%s: Cannot register net device, aborting.\n",
603 dev->name);
604 goto register_fail;
605 }
606
Anton Vorontsov2884e5c2009-02-01 00:52:34 -0800607 device_init_wakeup(&dev->dev,
608 priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
609
Dai Harukic50a5d92008-12-17 16:51:32 -0800610 /* fill out IRQ number and name fields */
611 len_devname = strlen(dev->name);
612 strncpy(&priv->int_name_tx[0], dev->name, len_devname);
613 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
614 strncpy(&priv->int_name_tx[len_devname],
615 "_tx", sizeof("_tx") + 1);
616
617 strncpy(&priv->int_name_rx[0], dev->name, len_devname);
618 strncpy(&priv->int_name_rx[len_devname],
619 "_rx", sizeof("_rx") + 1);
620
621 strncpy(&priv->int_name_er[0], dev->name, len_devname);
622 strncpy(&priv->int_name_er[len_devname],
623 "_er", sizeof("_er") + 1);
624 } else
625 priv->int_name_tx[len_devname] = '\0';
626
Andy Fleming7f7f5312005-11-11 12:38:59 -0600627 /* Create all the sysfs files */
628 gfar_init_sysfs(dev);
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Print out the device info */
Johannes Berge1749612008-10-27 15:59:26 -0700631 printk(KERN_INFO DEVICE_NAME "%pM\n", dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /* Even more device info helps when determining which kernel */
Andy Fleming7f7f5312005-11-11 12:38:59 -0600634 /* provided which set of benchmarks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n",
637 dev->name, priv->rx_ring_size, priv->tx_ring_size);
638
639 return 0;
640
641register_fail:
Kumar Galacc8c6e32006-02-01 15:18:03 -0600642 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643regs_fail:
Grant Likelyfe192a42009-04-25 12:53:12 +0000644 if (priv->phy_node)
645 of_node_put(priv->phy_node);
646 if (priv->tbi_node)
647 of_node_put(priv->tbi_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 free_netdev(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400649 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Andy Flemingb31a1d82008-12-16 15:29:15 -0800652static int gfar_remove(struct of_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800654 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Grant Likelyfe192a42009-04-25 12:53:12 +0000656 if (priv->phy_node)
657 of_node_put(priv->phy_node);
658 if (priv->tbi_node)
659 of_node_put(priv->tbi_node);
660
Andy Flemingb31a1d82008-12-16 15:29:15 -0800661 dev_set_drvdata(&ofdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
David S. Millerd9d8e042009-09-06 01:41:02 -0700663 unregister_netdev(priv->ndev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600664 iounmap(priv->regs);
Kumar Gala48268572009-03-18 23:28:22 -0700665 free_netdev(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 return 0;
668}
669
Scott Woodd87eb122008-07-11 18:04:45 -0500670#ifdef CONFIG_PM
Andy Flemingb31a1d82008-12-16 15:29:15 -0800671static int gfar_suspend(struct of_device *ofdev, pm_message_t state)
Scott Woodd87eb122008-07-11 18:04:45 -0500672{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800673 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700674 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500675 unsigned long flags;
676 u32 tempval;
677
678 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800679 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500680
681 netif_device_detach(dev);
682
683 if (netif_running(dev)) {
684 spin_lock_irqsave(&priv->txlock, flags);
685 spin_lock(&priv->rxlock);
686
687 gfar_halt_nodisable(dev);
688
689 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
690 tempval = gfar_read(&priv->regs->maccfg1);
691
692 tempval &= ~MACCFG1_TX_EN;
693
694 if (!magic_packet)
695 tempval &= ~MACCFG1_RX_EN;
696
697 gfar_write(&priv->regs->maccfg1, tempval);
698
699 spin_unlock(&priv->rxlock);
700 spin_unlock_irqrestore(&priv->txlock, flags);
701
Scott Woodd87eb122008-07-11 18:04:45 -0500702 napi_disable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500703
704 if (magic_packet) {
705 /* Enable interrupt on Magic Packet */
706 gfar_write(&priv->regs->imask, IMASK_MAG);
707
708 /* Enable Magic Packet mode */
709 tempval = gfar_read(&priv->regs->maccfg2);
710 tempval |= MACCFG2_MPEN;
711 gfar_write(&priv->regs->maccfg2, tempval);
712 } else {
713 phy_stop(priv->phydev);
714 }
715 }
716
717 return 0;
718}
719
Andy Flemingb31a1d82008-12-16 15:29:15 -0800720static int gfar_resume(struct of_device *ofdev)
Scott Woodd87eb122008-07-11 18:04:45 -0500721{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800722 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Anton Vorontsov29ded5f2009-03-21 13:27:55 -0700723 struct net_device *dev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500724 unsigned long flags;
725 u32 tempval;
726 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800727 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500728
729 if (!netif_running(dev)) {
730 netif_device_attach(dev);
731 return 0;
732 }
733
734 if (!magic_packet && priv->phydev)
735 phy_start(priv->phydev);
736
737 /* Disable Magic Packet mode, in case something
738 * else woke us up.
739 */
740
741 spin_lock_irqsave(&priv->txlock, flags);
742 spin_lock(&priv->rxlock);
743
744 tempval = gfar_read(&priv->regs->maccfg2);
745 tempval &= ~MACCFG2_MPEN;
746 gfar_write(&priv->regs->maccfg2, tempval);
747
748 gfar_start(dev);
749
750 spin_unlock(&priv->rxlock);
751 spin_unlock_irqrestore(&priv->txlock, flags);
752
753 netif_device_attach(dev);
754
Scott Woodd87eb122008-07-11 18:04:45 -0500755 napi_enable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500756
757 return 0;
758}
759#else
760#define gfar_suspend NULL
761#define gfar_resume NULL
762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600764/* Reads the controller's registers to determine what interface
765 * connects it to the PHY.
766 */
767static phy_interface_t gfar_get_interface(struct net_device *dev)
768{
769 struct gfar_private *priv = netdev_priv(dev);
770 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
771
772 if (ecntrl & ECNTRL_SGMII_MODE)
773 return PHY_INTERFACE_MODE_SGMII;
774
775 if (ecntrl & ECNTRL_TBI_MODE) {
776 if (ecntrl & ECNTRL_REDUCED_MODE)
777 return PHY_INTERFACE_MODE_RTBI;
778 else
779 return PHY_INTERFACE_MODE_TBI;
780 }
781
782 if (ecntrl & ECNTRL_REDUCED_MODE) {
783 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
784 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500785 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800786 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -0500787
788 /*
789 * This isn't autodetected right now, so it must
790 * be set by the device tree or platform code.
791 */
792 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
793 return PHY_INTERFACE_MODE_RGMII_ID;
794
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600795 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500796 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600797 }
798
Andy Flemingb31a1d82008-12-16 15:29:15 -0800799 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600800 return PHY_INTERFACE_MODE_GMII;
801
802 return PHY_INTERFACE_MODE_MII;
803}
804
805
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400806/* Initializes driver's PHY state, and attaches to the PHY.
807 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 */
809static int init_phy(struct net_device *dev)
810{
811 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400812 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -0800813 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400814 SUPPORTED_1000baseT_Full : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600815 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 priv->oldlink = 0;
818 priv->oldspeed = 0;
819 priv->oldduplex = -1;
820
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600821 interface = gfar_get_interface(dev);
822
Anton Vorontsov1db780f2009-07-16 21:31:42 +0000823 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
824 interface);
825 if (!priv->phydev)
826 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
827 interface);
828 if (!priv->phydev) {
829 dev_err(&dev->dev, "could not attach to PHY\n");
830 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +0000831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Kapil Junejad3c12872007-05-11 18:25:11 -0500833 if (interface == PHY_INTERFACE_MODE_SGMII)
834 gfar_configure_serdes(dev);
835
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400836 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +0000837 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
838 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Paul Gortmakerd0313582008-04-17 00:08:10 -0400843/*
844 * Initialize TBI PHY interface for communicating with the
845 * SERDES lynx PHY on the chip. We communicate with this PHY
846 * through the MDIO bus on each controller, treating it as a
847 * "normal" PHY at the address found in the TBIPA register. We assume
848 * that the TBIPA register is valid. Either the MDIO bus code will set
849 * it to a value that doesn't conflict with other PHYs on the bus, or the
850 * value doesn't matter, as there are no other PHYs on the bus.
851 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500852static void gfar_configure_serdes(struct net_device *dev)
853{
854 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +0000855 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -0700856
Grant Likelyfe192a42009-04-25 12:53:12 +0000857 if (!priv->tbi_node) {
858 dev_warn(&dev->dev, "error: SGMII mode requires that the "
859 "device tree specify a tbi-handle\n");
860 return;
861 }
862
863 tbiphy = of_phy_find_device(priv->tbi_node);
864 if (!tbiphy) {
865 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -0800866 return;
867 }
Kapil Junejad3c12872007-05-11 18:25:11 -0500868
Andy Flemingb31a1d82008-12-16 15:29:15 -0800869 /*
870 * If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -0700871 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
872 * everything for us? Resetting it takes the link down and requires
873 * several seconds for it to come back.
874 */
Grant Likelyfe192a42009-04-25 12:53:12 +0000875 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800876 return;
Kapil Junejad3c12872007-05-11 18:25:11 -0500877
Paul Gortmakerd0313582008-04-17 00:08:10 -0400878 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +0000879 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500880
Grant Likelyfe192a42009-04-25 12:53:12 +0000881 phy_write(tbiphy, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500882 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
883 ADVERTISE_1000XPSE_ASYM);
884
Grant Likelyfe192a42009-04-25 12:53:12 +0000885 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500886 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889static void init_registers(struct net_device *dev)
890{
891 struct gfar_private *priv = netdev_priv(dev);
892
893 /* Clear IEVENT */
894 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
895
896 /* Initialize IMASK */
897 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
898
899 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500900 gfar_write(&priv->regs->igaddr0, 0);
901 gfar_write(&priv->regs->igaddr1, 0);
902 gfar_write(&priv->regs->igaddr2, 0);
903 gfar_write(&priv->regs->igaddr3, 0);
904 gfar_write(&priv->regs->igaddr4, 0);
905 gfar_write(&priv->regs->igaddr5, 0);
906 gfar_write(&priv->regs->igaddr6, 0);
907 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 gfar_write(&priv->regs->gaddr0, 0);
910 gfar_write(&priv->regs->gaddr1, 0);
911 gfar_write(&priv->regs->gaddr2, 0);
912 gfar_write(&priv->regs->gaddr3, 0);
913 gfar_write(&priv->regs->gaddr4, 0);
914 gfar_write(&priv->regs->gaddr5, 0);
915 gfar_write(&priv->regs->gaddr6, 0);
916 gfar_write(&priv->regs->gaddr7, 0);
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 /* Zero out the rmon mib registers if it has them */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800919 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -0600920 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* Mask off the CAM interrupts */
923 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
924 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
925 }
926
927 /* Initialize the max receive buffer length */
928 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 /* Initialize the Minimum Frame Length Register */
931 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Kumar Gala0bbaf062005-06-20 10:54:21 -0500934
935/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -0500936static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600939 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 u32 tempval;
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* Mask all interrupts */
943 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
944
945 /* Clear all interrupts */
946 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
947
948 /* Stop the DMA, and wait for it to stop */
949 tempval = gfar_read(&priv->regs->dmactrl);
950 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
951 != (DMACTRL_GRS | DMACTRL_GTS)) {
952 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
953 gfar_write(&priv->regs->dmactrl, tempval);
954
955 while (!(gfar_read(&priv->regs->ievent) &
956 (IEVENT_GRSC | IEVENT_GTSC)))
957 cpu_relax();
958 }
Scott Woodd87eb122008-07-11 18:04:45 -0500959}
Scott Woodd87eb122008-07-11 18:04:45 -0500960
961/* Halt the receive and transmit queues */
962void gfar_halt(struct net_device *dev)
963{
964 struct gfar_private *priv = netdev_priv(dev);
965 struct gfar __iomem *regs = priv->regs;
966 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Scott Wood2a54adc2008-08-12 15:10:46 -0500968 gfar_halt_nodisable(dev);
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /* Disable Rx and Tx */
971 tempval = gfar_read(&regs->maccfg1);
972 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
973 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500974}
975
976void stop_gfar(struct net_device *dev)
977{
978 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500979 unsigned long flags;
980
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400981 phy_stop(priv->phydev);
982
Kumar Gala0bbaf062005-06-20 10:54:21 -0500983 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -0500984 spin_lock_irqsave(&priv->txlock, flags);
985 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -0500986
Kumar Gala0bbaf062005-06-20 10:54:21 -0500987 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Andy Flemingfef61082006-04-20 16:44:29 -0500989 spin_unlock(&priv->rxlock);
990 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* Free the IRQs */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800993 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 free_irq(priv->interruptError, dev);
995 free_irq(priv->interruptTransmit, dev);
996 free_irq(priv->interruptReceive, dev);
997 } else {
Andy Fleming1577ece2009-02-04 16:42:12 -0800998 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
1001 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
1004/* If there are any tx skbs or rx skbs still around, free them.
1005 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001006static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Anton Vorontsove69edd22009-10-12 06:00:30 +00001008 struct device *dev = &priv->ofdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 struct rxbd8 *rxbdp;
1010 struct txbd8 *txbdp;
Dai Haruki4669bc92008-12-17 16:51:04 -08001011 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /* Go through all the buffer descriptors and free their data buffers */
1014 txbdp = priv->tx_bd_base;
1015
Anton Vorontsove69edd22009-10-12 06:00:30 +00001016 if (!priv->tx_skbuff)
1017 goto skip_tx_skbuff;
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001020 if (!priv->tx_skbuff[i])
1021 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Kumar Gala48268572009-03-18 23:28:22 -07001023 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -08001024 txbdp->length, DMA_TO_DEVICE);
1025 txbdp->lstatus = 0;
1026 for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) {
1027 txbdp++;
Kumar Gala48268572009-03-18 23:28:22 -07001028 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -08001029 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Andy Flemingad5da7a2008-05-07 13:20:55 -05001031 txbdp++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001032 dev_kfree_skb_any(priv->tx_skbuff[i]);
1033 priv->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035
1036 kfree(priv->tx_skbuff);
Anton Vorontsove69edd22009-10-12 06:00:30 +00001037skip_tx_skbuff:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 rxbdp = priv->rx_bd_base;
1040
Anton Vorontsove69edd22009-10-12 06:00:30 +00001041 if (!priv->rx_skbuff)
1042 goto skip_rx_skbuff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Anton Vorontsove69edd22009-10-12 06:00:30 +00001044 for (i = 0; i < priv->rx_ring_size; i++) {
1045 if (priv->rx_skbuff[i]) {
1046 dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr,
1047 priv->rx_buffer_size,
1048 DMA_FROM_DEVICE);
1049 dev_kfree_skb_any(priv->rx_skbuff[i]);
1050 priv->rx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052
Anton Vorontsove69edd22009-10-12 06:00:30 +00001053 rxbdp->lstatus = 0;
1054 rxbdp->bufPtr = 0;
1055 rxbdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
Anton Vorontsove69edd22009-10-12 06:00:30 +00001057
1058 kfree(priv->rx_skbuff);
1059skip_rx_skbuff:
1060
1061 dma_free_coherent(dev, sizeof(*txbdp) * priv->tx_ring_size +
1062 sizeof(*rxbdp) * priv->rx_ring_size,
1063 priv->tx_bd_base, gfar_read(&priv->regs->tbase0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Kumar Gala0bbaf062005-06-20 10:54:21 -05001066void gfar_start(struct net_device *dev)
1067{
1068 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001069 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001070 u32 tempval;
1071
1072 /* Enable Rx and Tx in MACCFG1 */
1073 tempval = gfar_read(&regs->maccfg1);
1074 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
1075 gfar_write(&regs->maccfg1, tempval);
1076
1077 /* Initialize DMACTRL to have WWR and WOP */
1078 tempval = gfar_read(&priv->regs->dmactrl);
1079 tempval |= DMACTRL_INIT_SETTINGS;
1080 gfar_write(&priv->regs->dmactrl, tempval);
1081
Kumar Gala0bbaf062005-06-20 10:54:21 -05001082 /* Make sure we aren't stopped */
1083 tempval = gfar_read(&priv->regs->dmactrl);
1084 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
1085 gfar_write(&priv->regs->dmactrl, tempval);
1086
Andy Flemingfef61082006-04-20 16:44:29 -05001087 /* Clear THLT/RHLT, so that the DMA starts polling now */
1088 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
1089 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
1090
Kumar Gala0bbaf062005-06-20 10:54:21 -05001091 /* Unmask the interrupts we look for */
1092 gfar_write(&regs->imask, IMASK_DEFAULT);
Dai Haruki12dea572008-12-16 15:30:20 -08001093
1094 dev->trans_start = jiffies;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001095}
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097/* Bring the controller up and running */
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001098int startup_gfar(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001100 struct gfar_private *priv = netdev_priv(ndev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001101 struct gfar __iomem *regs = priv->regs;
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001102 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
1105
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001106 err = gfar_alloc_skb_resources(ndev);
1107 if (err)
1108 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001110 gfar_init_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /* If the device has multiple interrupts, register for
1113 * them. Otherwise, only register for the one */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001114 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001115 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 * Transmit, and Receive */
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001117 err = request_irq(priv->interruptError, gfar_error, 0,
1118 priv->int_name_er, ndev);
1119 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001120 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001121 pr_err("%s: Can't get IRQ %d\n", ndev->name,
1122 priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 goto err_irq_fail;
1124 }
1125
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001126 err = request_irq(priv->interruptTransmit, gfar_transmit, 0,
1127 priv->int_name_tx, ndev);
1128 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001129 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001130 pr_err("%s: Can't get IRQ %d\n", ndev->name,
1131 priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 goto tx_irq_fail;
1133 }
1134
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001135 err = request_irq(priv->interruptReceive, gfar_receive, 0,
1136 priv->int_name_rx, ndev);
1137 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001138 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001139 pr_err("%s: Can't get IRQ %d (receive0)\n",
1140 ndev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 goto rx_irq_fail;
1142 }
1143 } else {
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001144 err = request_irq(priv->interruptTransmit, gfar_interrupt,
1145 0, priv->int_name_tx, ndev);
1146 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001147 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001148 pr_err("%s: Can't get IRQ %d\n", ndev->name,
1149 priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 goto err_irq_fail;
1151 }
1152 }
1153
Andy Fleming7f7f5312005-11-11 12:38:59 -06001154 /* Start the controller */
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001155 gfar_start(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001157 phy_start(priv->phydev);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return 0;
1160
1161rx_irq_fail:
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001162 free_irq(priv->interruptTransmit, ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163tx_irq_fail:
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001164 free_irq(priv->interruptError, ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165err_irq_fail:
Anton Vorontsove69edd22009-10-12 06:00:30 +00001166 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return err;
1168}
1169
1170/* Called when something needs to use the ethernet device */
1171/* Returns 0 for success. */
1172static int gfar_enet_open(struct net_device *dev)
1173{
Li Yang94e8cc32007-10-12 21:53:51 +08001174 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int err;
1176
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001177 napi_enable(&priv->napi);
1178
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001179 skb_queue_head_init(&priv->rx_recycle);
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /* Initialize a bunch of registers */
1182 init_registers(dev);
1183
1184 gfar_set_mac_address(dev);
1185
1186 err = init_phy(dev);
1187
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001188 if(err) {
1189 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001194 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001195 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001196 return err;
1197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 netif_start_queue(dev);
1200
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001201 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return err;
1204}
1205
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001206static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001207{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001208 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07001209
1210 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001211
Kumar Gala0bbaf062005-06-20 10:54:21 -05001212 return fcb;
1213}
1214
1215static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1216{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001217 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001218
1219 /* If we're here, it's a IP packet with a TCP or UDP
1220 * payload. We set it to checksum, using a pseudo-header
1221 * we provide
1222 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001223 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001224
Andy Fleming7f7f5312005-11-11 12:38:59 -06001225 /* Tell the controller what the protocol is */
1226 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001227 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001228 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001229 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001230 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001231 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001232
1233 /* l3os is the distance between the start of the
1234 * frame (skb->data) and the start of the IP hdr.
1235 * l4os is the distance between the start of the
1236 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001237 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001238 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001239
Andy Fleming7f7f5312005-11-11 12:38:59 -06001240 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001241}
1242
Andy Fleming7f7f5312005-11-11 12:38:59 -06001243void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001244{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001245 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001246 fcb->vlctl = vlan_tx_tag_get(skb);
1247}
1248
Dai Haruki4669bc92008-12-17 16:51:04 -08001249static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
1250 struct txbd8 *base, int ring_size)
1251{
1252 struct txbd8 *new_bd = bdp + stride;
1253
1254 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
1255}
1256
1257static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
1258 int ring_size)
1259{
1260 return skip_txbd(bdp, 1, base, ring_size);
1261}
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263/* This is called by the kernel when a frame is ready for transmission. */
1264/* It is pointed to by the dev->hard_start_xmit function pointer */
1265static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1266{
1267 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001268 struct txfcb *fcb = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08001269 struct txbd8 *txbdp, *txbdp_start, *base;
Dai Haruki5a5efed2008-12-16 15:34:50 -08001270 u32 lstatus;
Dai Haruki4669bc92008-12-17 16:51:04 -08001271 int i;
1272 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05001273 unsigned long flags;
Dai Haruki4669bc92008-12-17 16:51:04 -08001274 unsigned int nr_frags, length;
1275
1276 base = priv->tx_bd_base;
1277
Li Yang5b28bea2009-03-27 15:54:30 -07001278 /* make space for additional header when fcb is needed */
1279 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
1280 (priv->vlgrp && vlan_tx_tag_present(skb))) &&
1281 (skb_headroom(skb) < GMAC_FCB_LEN)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001282 struct sk_buff *skb_new;
1283
1284 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
1285 if (!skb_new) {
1286 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07001287 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001288 return NETDEV_TX_OK;
1289 }
1290 kfree_skb(skb);
1291 skb = skb_new;
1292 }
1293
Dai Haruki4669bc92008-12-17 16:51:04 -08001294 /* total number of fragments in the SKB */
1295 nr_frags = skb_shinfo(skb)->nr_frags;
1296
1297 spin_lock_irqsave(&priv->txlock, flags);
1298
1299 /* check if there is space to queue this packet */
Rini van Zetten7958a452009-02-27 03:18:48 -08001300 if ((nr_frags+1) > priv->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001301 /* no space, stop the queue */
1302 netif_stop_queue(dev);
1303 dev->stats.tx_fifo_errors++;
1304 spin_unlock_irqrestore(&priv->txlock, flags);
1305 return NETDEV_TX_BUSY;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001309 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Dai Haruki4669bc92008-12-17 16:51:04 -08001311 txbdp = txbdp_start = priv->cur_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Dai Haruki4669bc92008-12-17 16:51:04 -08001313 if (nr_frags == 0) {
1314 lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1315 } else {
1316 /* Place the fragment addresses and lengths into the TxBDs */
1317 for (i = 0; i < nr_frags; i++) {
1318 /* Point at the next BD, wrapping as needed */
1319 txbdp = next_txbd(txbdp, base, priv->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Dai Haruki4669bc92008-12-17 16:51:04 -08001321 length = skb_shinfo(skb)->frags[i].size;
1322
1323 lstatus = txbdp->lstatus | length |
1324 BD_LFLAG(TXBD_READY);
1325
1326 /* Handle the last BD specially */
1327 if (i == nr_frags - 1)
1328 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1329
Kumar Gala48268572009-03-18 23:28:22 -07001330 bufaddr = dma_map_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001331 skb_shinfo(skb)->frags[i].page,
1332 skb_shinfo(skb)->frags[i].page_offset,
1333 length,
1334 DMA_TO_DEVICE);
1335
1336 /* set the TxBD length and buffer pointer */
1337 txbdp->bufPtr = bufaddr;
1338 txbdp->lstatus = lstatus;
1339 }
1340
1341 lstatus = txbdp_start->lstatus;
1342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Kumar Gala0bbaf062005-06-20 10:54:21 -05001344 /* Set up checksumming */
Dai Haruki12dea572008-12-16 15:30:20 -08001345 if (CHECKSUM_PARTIAL == skb->ip_summed) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001346 fcb = gfar_add_fcb(skb);
1347 lstatus |= BD_LFLAG(TXBD_TOE);
1348 gfar_tx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001349 }
1350
Dai Haruki77ecaf22008-12-16 15:30:48 -08001351 if (priv->vlgrp && vlan_tx_tag_present(skb)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001352 if (unlikely(NULL == fcb)) {
1353 fcb = gfar_add_fcb(skb);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001354 lstatus |= BD_LFLAG(TXBD_TOE);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001355 }
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001356
1357 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001358 }
1359
Dai Haruki4669bc92008-12-17 16:51:04 -08001360 /* setup the TxBD length and buffer pointer for the first BD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 priv->tx_skbuff[priv->skb_curtx] = skb;
Kumar Gala48268572009-03-18 23:28:22 -07001362 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Dai Haruki4669bc92008-12-17 16:51:04 -08001363 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Dai Haruki4669bc92008-12-17 16:51:04 -08001365 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Dai Haruki4669bc92008-12-17 16:51:04 -08001367 /*
1368 * The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05001369 * semantics (it requires synchronization between cacheable and
1370 * uncacheable mappings, which eieio doesn't provide and which we
1371 * don't need), thus requiring a more expensive sync instruction. At
1372 * some point, the set of architecture-independent barrier functions
1373 * should be expanded to include weaker barriers.
1374 */
Scott Wood3b6330c2007-05-16 15:06:59 -05001375 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001376
Dai Haruki4669bc92008-12-17 16:51:04 -08001377 txbdp_start->lstatus = lstatus;
1378
1379 /* Update the current skb pointer to the next entry we will use
1380 * (wrapping if necessary) */
1381 priv->skb_curtx = (priv->skb_curtx + 1) &
1382 TX_RING_MOD_MASK(priv->tx_ring_size);
1383
1384 priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size);
1385
1386 /* reduce TxBD free count */
1387 priv->num_txbdfree -= (nr_frags + 1);
1388
1389 dev->trans_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 /* If the next BD still needs to be cleaned up, then the bds
1392 are full. We need to tell the kernel to stop sending us stuff. */
Dai Haruki4669bc92008-12-17 16:51:04 -08001393 if (!priv->num_txbdfree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 netif_stop_queue(dev);
1395
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001396 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /* Tell the DMA to go go go */
1400 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1401
1402 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001403 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001405 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
1408/* Stops the kernel queue, and halts the controller */
1409static int gfar_close(struct net_device *dev)
1410{
1411 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001412
1413 napi_disable(&priv->napi);
1414
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001415 skb_queue_purge(&priv->rx_recycle);
Sebastian Siewiorab939902008-08-19 21:12:45 +02001416 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 stop_gfar(dev);
1418
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001419 /* Disconnect from the PHY */
1420 phy_disconnect(priv->phydev);
1421 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 netif_stop_queue(dev);
1424
1425 return 0;
1426}
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001429static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001431 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 return 0;
1434}
1435
1436
Kumar Gala0bbaf062005-06-20 10:54:21 -05001437/* Enables and disables VLAN insertion/extraction */
1438static void gfar_vlan_rx_register(struct net_device *dev,
1439 struct vlan_group *grp)
1440{
1441 struct gfar_private *priv = netdev_priv(dev);
1442 unsigned long flags;
1443 u32 tempval;
1444
Andy Flemingfef61082006-04-20 16:44:29 -05001445 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001446
Anton Vorontsovcd1f55a2009-01-26 14:33:23 -08001447 priv->vlgrp = grp;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001448
1449 if (grp) {
1450 /* Enable VLAN tag insertion */
1451 tempval = gfar_read(&priv->regs->tctrl);
1452 tempval |= TCTRL_VLINS;
1453
1454 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001455
Kumar Gala0bbaf062005-06-20 10:54:21 -05001456 /* Enable VLAN tag extraction */
1457 tempval = gfar_read(&priv->regs->rctrl);
Dai Haruki77ecaf22008-12-16 15:30:48 -08001458 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001459 gfar_write(&priv->regs->rctrl, tempval);
1460 } else {
1461 /* Disable VLAN tag insertion */
1462 tempval = gfar_read(&priv->regs->tctrl);
1463 tempval &= ~TCTRL_VLINS;
1464 gfar_write(&priv->regs->tctrl, tempval);
1465
1466 /* Disable VLAN tag extraction */
1467 tempval = gfar_read(&priv->regs->rctrl);
1468 tempval &= ~RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001469 /* If parse is no longer required, then disable parser */
1470 if (tempval & RCTRL_REQ_PARSER)
1471 tempval |= RCTRL_PRSDEP_INIT;
1472 else
1473 tempval &= ~RCTRL_PRSDEP_INIT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001474 gfar_write(&priv->regs->rctrl, tempval);
1475 }
1476
Dai Haruki77ecaf22008-12-16 15:30:48 -08001477 gfar_change_mtu(dev, dev->mtu);
1478
Andy Flemingfef61082006-04-20 16:44:29 -05001479 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001480}
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1483{
1484 int tempsize, tempval;
1485 struct gfar_private *priv = netdev_priv(dev);
1486 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001487 int frame_size = new_mtu + ETH_HLEN;
1488
Dai Haruki77ecaf22008-12-16 15:30:48 -08001489 if (priv->vlgrp)
Dai Harukifaa89572008-03-24 10:53:26 -05001490 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001493 if (netif_msg_drv(priv))
1494 printk(KERN_ERR "%s: Invalid MTU setting\n",
1495 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return -EINVAL;
1497 }
1498
Dai Haruki77ecaf22008-12-16 15:30:48 -08001499 if (gfar_uses_fcb(priv))
1500 frame_size += GMAC_FCB_LEN;
1501
1502 frame_size += priv->padding;
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 tempsize =
1505 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1506 INCREMENTAL_BUFFER_SIZE;
1507
1508 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001509 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1511 stop_gfar(dev);
1512
1513 priv->rx_buffer_size = tempsize;
1514
1515 dev->mtu = new_mtu;
1516
1517 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1518 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1519
1520 /* If the mtu is larger than the max size for standard
1521 * ethernet frames (ie, a jumbo frame), then set maccfg2
1522 * to allow huge frames, and to check the length */
1523 tempval = gfar_read(&priv->regs->maccfg2);
1524
1525 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1526 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1527 else
1528 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1529
1530 gfar_write(&priv->regs->maccfg2, tempval);
1531
1532 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1533 startup_gfar(dev);
1534
1535 return 0;
1536}
1537
Sebastian Siewiorab939902008-08-19 21:12:45 +02001538/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 * transmitted after a set amount of time.
1540 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02001541 * starting over will fix the problem.
1542 */
1543static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Sebastian Siewiorab939902008-08-19 21:12:45 +02001545 struct gfar_private *priv = container_of(work, struct gfar_private,
1546 reset_task);
Kumar Gala48268572009-03-18 23:28:22 -07001547 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 if (dev->flags & IFF_UP) {
Markus Brunnercbea27072009-04-15 02:35:40 -07001550 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 stop_gfar(dev);
1552 startup_gfar(dev);
Markus Brunnercbea27072009-04-15 02:35:40 -07001553 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555
David S. Miller263ba322008-07-15 03:47:41 -07001556 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
Sebastian Siewiorab939902008-08-19 21:12:45 +02001559static void gfar_timeout(struct net_device *dev)
1560{
1561 struct gfar_private *priv = netdev_priv(dev);
1562
1563 dev->stats.tx_errors++;
1564 schedule_work(&priv->reset_task);
1565}
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001568static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Dai Harukid080cd62008-04-09 19:37:51 -05001570 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001571 struct txbd8 *bdp;
1572 struct txbd8 *lbdp = NULL;
1573 struct txbd8 *base = priv->tx_bd_base;
1574 struct sk_buff *skb;
1575 int skb_dirtytx;
1576 int tx_ring_size = priv->tx_ring_size;
1577 int frags = 0;
1578 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05001579 int howmany = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08001580 u32 lstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 bdp = priv->dirty_tx;
Dai Haruki4669bc92008-12-17 16:51:04 -08001583 skb_dirtytx = priv->skb_dirtytx;
1584
1585 while ((skb = priv->tx_skbuff[skb_dirtytx])) {
1586 frags = skb_shinfo(skb)->nr_frags;
1587 lbdp = skip_txbd(bdp, frags, base, tx_ring_size);
1588
1589 lstatus = lbdp->lstatus;
1590
1591 /* Only clean completed frames */
1592 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
1593 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 break;
1595
Kumar Gala48268572009-03-18 23:28:22 -07001596 dma_unmap_single(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001597 bdp->bufPtr,
1598 bdp->length,
1599 DMA_TO_DEVICE);
1600
1601 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1602 bdp = next_txbd(bdp, base, tx_ring_size);
1603
1604 for (i = 0; i < frags; i++) {
Kumar Gala48268572009-03-18 23:28:22 -07001605 dma_unmap_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001606 bdp->bufPtr,
1607 bdp->length,
1608 DMA_TO_DEVICE);
1609 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1610 bdp = next_txbd(bdp, base, tx_ring_size);
1611 }
1612
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001613 /*
1614 * If there's room in the queue (limit it to rx_buffer_size)
1615 * we add this skb back into the pool, if it's the right size
1616 */
1617 if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size &&
1618 skb_recycle_check(skb, priv->rx_buffer_size +
1619 RXBUF_ALIGNMENT))
1620 __skb_queue_head(&priv->rx_recycle, skb);
1621 else
1622 dev_kfree_skb_any(skb);
1623
Dai Haruki4669bc92008-12-17 16:51:04 -08001624 priv->tx_skbuff[skb_dirtytx] = NULL;
1625
1626 skb_dirtytx = (skb_dirtytx + 1) &
1627 TX_RING_MOD_MASK(tx_ring_size);
1628
Dai Harukid080cd62008-04-09 19:37:51 -05001629 howmany++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001630 priv->num_txbdfree += frags + 1;
1631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Dai Haruki4669bc92008-12-17 16:51:04 -08001633 /* If we freed a buffer, we can restart transmission, if necessary */
1634 if (netif_queue_stopped(dev) && priv->num_txbdfree)
1635 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Dai Haruki4669bc92008-12-17 16:51:04 -08001637 /* Update dirty indicators */
1638 priv->skb_dirtytx = skb_dirtytx;
1639 priv->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Dai Harukid080cd62008-04-09 19:37:51 -05001641 dev->stats.tx_packets += howmany;
1642
1643 return howmany;
1644}
1645
Dai Haruki8c7396a2008-12-17 16:52:00 -08001646static void gfar_schedule_cleanup(struct net_device *dev)
1647{
1648 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001649 unsigned long flags;
1650
1651 spin_lock_irqsave(&priv->txlock, flags);
1652 spin_lock(&priv->rxlock);
1653
Ben Hutchings288379f2009-01-19 16:43:59 -08001654 if (napi_schedule_prep(&priv->napi)) {
Dai Haruki8c7396a2008-12-17 16:52:00 -08001655 gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED);
Ben Hutchings288379f2009-01-19 16:43:59 -08001656 __napi_schedule(&priv->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08001657 } else {
1658 /*
1659 * Clear IEVENT, so interrupts aren't called again
1660 * because of the packets that have already arrived.
1661 */
1662 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001663 }
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001664
1665 spin_unlock(&priv->rxlock);
1666 spin_unlock_irqrestore(&priv->txlock, flags);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001667}
1668
Dai Harukid080cd62008-04-09 19:37:51 -05001669/* Interrupt Handler for Transmit complete */
1670static irqreturn_t gfar_transmit(int irq, void *dev_id)
1671{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001672 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return IRQ_HANDLED;
1674}
1675
Andy Fleming815b97c2008-04-22 17:18:29 -05001676static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1677 struct sk_buff *skb)
1678{
1679 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001680 u32 lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001681
Kumar Gala48268572009-03-18 23:28:22 -07001682 bdp->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Andy Fleming815b97c2008-04-22 17:18:29 -05001683 priv->rx_buffer_size, DMA_FROM_DEVICE);
1684
Dai Haruki5a5efed2008-12-16 15:34:50 -08001685 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Andy Fleming815b97c2008-04-22 17:18:29 -05001686
1687 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
Dai Haruki5a5efed2008-12-16 15:34:50 -08001688 lstatus |= BD_LFLAG(RXBD_WRAP);
Andy Fleming815b97c2008-04-22 17:18:29 -05001689
1690 eieio();
1691
Dai Haruki5a5efed2008-12-16 15:34:50 -08001692 bdp->lstatus = lstatus;
Andy Fleming815b97c2008-04-22 17:18:29 -05001693}
1694
1695
1696struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001698 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 struct gfar_private *priv = netdev_priv(dev);
1700 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001702 skb = __skb_dequeue(&priv->rx_recycle);
1703 if (!skb)
1704 skb = netdev_alloc_skb(dev,
1705 priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Andy Fleming815b97c2008-04-22 17:18:29 -05001707 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return NULL;
1709
Andy Fleming7f7f5312005-11-11 12:38:59 -06001710 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001711 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 /* We need the data buffer to be aligned properly. We will reserve
1714 * as many bytes as needed to align the data properly
1715 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001716 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return skb;
1719}
1720
Li Yang298e1a92007-10-16 14:18:13 +08001721static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Li Yang298e1a92007-10-16 14:18:13 +08001723 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001724 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 struct gfar_extra_stats *estats = &priv->extra_stats;
1726
1727 /* If the packet was truncated, none of the other errors
1728 * matter */
1729 if (status & RXBD_TRUNCATED) {
1730 stats->rx_length_errors++;
1731
1732 estats->rx_trunc++;
1733
1734 return;
1735 }
1736 /* Count the errors, if there were any */
1737 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1738 stats->rx_length_errors++;
1739
1740 if (status & RXBD_LARGE)
1741 estats->rx_large++;
1742 else
1743 estats->rx_short++;
1744 }
1745 if (status & RXBD_NONOCTET) {
1746 stats->rx_frame_errors++;
1747 estats->rx_nonoctet++;
1748 }
1749 if (status & RXBD_CRCERR) {
1750 estats->rx_crcerr++;
1751 stats->rx_crc_errors++;
1752 }
1753 if (status & RXBD_OVERRUN) {
1754 estats->rx_overrun++;
1755 stats->rx_crc_errors++;
1756 }
1757}
1758
David Howells7d12e782006-10-05 14:55:46 +01001759irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001761 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return IRQ_HANDLED;
1763}
1764
Kumar Gala0bbaf062005-06-20 10:54:21 -05001765static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1766{
1767 /* If valid headers were found, and valid sums
1768 * were verified, then we tell the kernel that no
1769 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001770 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001771 skb->ip_summed = CHECKSUM_UNNECESSARY;
1772 else
1773 skb->ip_summed = CHECKSUM_NONE;
1774}
1775
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777/* gfar_process_frame() -- handle one incoming packet if skb
1778 * isn't NULL. */
1779static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Dai Haruki2c2db482008-12-16 15:31:15 -08001780 int amount_pull)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
1782 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001783 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Dai Haruki2c2db482008-12-16 15:31:15 -08001785 int ret;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001786
Dai Haruki2c2db482008-12-16 15:31:15 -08001787 /* fcb is at the beginning if exists */
1788 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Dai Haruki2c2db482008-12-16 15:31:15 -08001790 /* Remove the FCB from the skb */
1791 /* Remove the padded bytes, if there are any */
1792 if (amount_pull)
1793 skb_pull(skb, amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001794
Dai Haruki2c2db482008-12-16 15:31:15 -08001795 if (priv->rx_csum_enable)
1796 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001797
Dai Haruki2c2db482008-12-16 15:31:15 -08001798 /* Tell the skb what kind of packet this is */
1799 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001800
Dai Haruki2c2db482008-12-16 15:31:15 -08001801 /* Send the packet up the stack */
1802 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN)))
1803 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl);
1804 else
1805 ret = netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Dai Haruki2c2db482008-12-16 15:31:15 -08001807 if (NET_RX_DROP == ret)
1808 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810 return 0;
1811}
1812
1813/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001814 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 * of frames handled
1816 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001817int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
Andy Fleming31de1982008-12-16 15:33:40 -08001819 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08001821 int pkt_len;
1822 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 int howmany = 0;
1824 struct gfar_private *priv = netdev_priv(dev);
1825
1826 /* Get the first full descriptor */
1827 bdp = priv->cur_rx;
Andy Fleming31de1982008-12-16 15:33:40 -08001828 base = priv->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Dai Haruki2c2db482008-12-16 15:31:15 -08001830 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) +
1831 priv->padding;
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001834 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001835 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001836
1837 /* Add another skb for the future */
1838 newskb = gfar_new_skb(dev);
1839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 skb = priv->rx_skbuff[priv->skb_currx];
1841
Kumar Gala48268572009-03-18 23:28:22 -07001842 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
Andy Fleming81183052008-11-12 10:07:11 -06001843 priv->rx_buffer_size, DMA_FROM_DEVICE);
1844
Andy Fleming815b97c2008-04-22 17:18:29 -05001845 /* We drop the frame if we failed to allocate a new buffer */
1846 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1847 bdp->status & RXBD_ERR)) {
1848 count_errors(bdp->status, dev);
1849
1850 if (unlikely(!newskb))
1851 newskb = skb;
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001852 else if (skb) {
1853 /*
1854 * We need to reset ->data to what it
1855 * was before gfar_new_skb() re-aligned
1856 * it to an RXBUF_ALIGNMENT boundary
1857 * before we put the skb back on the
1858 * recycle list.
1859 */
1860 skb->data = skb->head + NET_SKB_PAD;
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001861 __skb_queue_head(&priv->rx_recycle, skb);
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001862 }
Andy Fleming815b97c2008-04-22 17:18:29 -05001863 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001865 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 howmany++;
1867
Dai Haruki2c2db482008-12-16 15:31:15 -08001868 if (likely(skb)) {
1869 pkt_len = bdp->length - ETH_FCS_LEN;
1870 /* Remove the FCS from the packet length */
1871 skb_put(skb, pkt_len);
1872 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Andy Fleming1577ece2009-02-04 16:42:12 -08001874 if (in_irq() || irqs_disabled())
1875 printk("Interrupt problem!\n");
Dai Haruki2c2db482008-12-16 15:31:15 -08001876 gfar_process_frame(dev, skb, amount_pull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Dai Haruki2c2db482008-12-16 15:31:15 -08001878 } else {
1879 if (netif_msg_rx_err(priv))
1880 printk(KERN_WARNING
1881 "%s: Missing skb!\n", dev->name);
1882 dev->stats.rx_dropped++;
1883 priv->extra_stats.rx_skbmissing++;
1884 }
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887
Andy Fleming815b97c2008-04-22 17:18:29 -05001888 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Andy Fleming815b97c2008-04-22 17:18:29 -05001890 /* Setup the new bdp */
1891 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 /* Update to the next pointer */
Andy Fleming31de1982008-12-16 15:33:40 -08001894 bdp = next_bd(bdp, base, priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 /* update to point at the next skb */
1897 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001898 (priv->skb_currx + 1) &
1899 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
1902 /* Update the current rxbd pointer to be the next one */
1903 priv->cur_rx = bdp;
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return howmany;
1906}
1907
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001908static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001910 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
Kumar Gala48268572009-03-18 23:28:22 -07001911 struct net_device *dev = priv->ndev;
Andy Fleming42199882008-12-17 16:52:30 -08001912 int tx_cleaned = 0;
1913 int rx_cleaned = 0;
Dai Harukid080cd62008-04-09 19:37:51 -05001914 unsigned long flags;
1915
Dai Haruki8c7396a2008-12-17 16:52:00 -08001916 /* Clear IEVENT, so interrupts aren't called again
1917 * because of the packets that have already arrived */
1918 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1919
Dai Harukid080cd62008-04-09 19:37:51 -05001920 /* If we fail to get the lock, don't bother with the TX BDs */
1921 if (spin_trylock_irqsave(&priv->txlock, flags)) {
Andy Fleming42199882008-12-17 16:52:30 -08001922 tx_cleaned = gfar_clean_tx_ring(dev);
Dai Harukid080cd62008-04-09 19:37:51 -05001923 spin_unlock_irqrestore(&priv->txlock, flags);
1924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Andy Fleming42199882008-12-17 16:52:30 -08001926 rx_cleaned = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Andy Fleming42199882008-12-17 16:52:30 -08001928 if (tx_cleaned)
1929 return budget;
1930
1931 if (rx_cleaned < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001932 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 /* Clear the halt bit in RSTAT */
1935 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
1936
1937 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
1938
1939 /* If we are coalescing interrupts, update the timer */
1940 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05001941 if (likely(priv->rxcoalescing)) {
1942 gfar_write(&priv->regs->rxic, 0);
Dai Harukib46a8452008-12-16 15:29:52 -08001943 gfar_write(&priv->regs->rxic, priv->rxic);
Andy Fleming2f448912008-03-24 10:53:28 -05001944 }
Dai Haruki8c7396a2008-12-17 16:52:00 -08001945 if (likely(priv->txcoalescing)) {
1946 gfar_write(&priv->regs->txic, 0);
1947 gfar_write(&priv->regs->txic, priv->txic);
1948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950
Andy Fleming42199882008-12-17 16:52:30 -08001951 return rx_cleaned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001954#ifdef CONFIG_NET_POLL_CONTROLLER
1955/*
1956 * Polling 'interrupt' - used by things like netconsole to send skbs
1957 * without having to re-enable interrupts. It's not called while
1958 * the interrupt routine is executing.
1959 */
1960static void gfar_netpoll(struct net_device *dev)
1961{
1962 struct gfar_private *priv = netdev_priv(dev);
1963
1964 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001965 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Vitaly Woolf2d71c22006-11-07 13:27:02 +03001966 disable_irq(priv->interruptTransmit);
1967 disable_irq(priv->interruptReceive);
1968 disable_irq(priv->interruptError);
1969 gfar_interrupt(priv->interruptTransmit, dev);
1970 enable_irq(priv->interruptError);
1971 enable_irq(priv->interruptReceive);
1972 enable_irq(priv->interruptTransmit);
1973 } else {
1974 disable_irq(priv->interruptTransmit);
1975 gfar_interrupt(priv->interruptTransmit, dev);
1976 enable_irq(priv->interruptTransmit);
1977 }
1978}
1979#endif
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01001982static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 struct net_device *dev = dev_id;
1985 struct gfar_private *priv = netdev_priv(dev);
1986
1987 /* Save ievent for future reference */
1988 u32 events = gfar_read(&priv->regs->ievent);
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001991 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001992 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001995 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01001996 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04001998 /* Check for errors */
1999 if (events & IEVENT_ERR_MASK)
2000 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 return IRQ_HANDLED;
2003}
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005/* Called every time the controller might need to be made
2006 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002007 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 * function converts those variables into the appropriate
2009 * register values, and can bring down the device if needed.
2010 */
2011static void adjust_link(struct net_device *dev)
2012{
2013 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002014 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002015 unsigned long flags;
2016 struct phy_device *phydev = priv->phydev;
2017 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Andy Flemingfef61082006-04-20 16:44:29 -05002019 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002020 if (phydev->link) {
2021 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002022 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /* Now we make sure that we can be in full duplex mode.
2025 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002026 if (phydev->duplex != priv->oldduplex) {
2027 new_state = 1;
2028 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002030 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002033 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002036 if (phydev->speed != priv->oldspeed) {
2037 new_state = 1;
2038 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 tempval =
2041 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08002042
2043 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
2045 case 100:
2046 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 tempval =
2048 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002049
2050 /* Reduced mode distinguishes
2051 * between 10 and 100 */
2052 if (phydev->speed == SPEED_100)
2053 ecntrl |= ECNTRL_R100;
2054 else
2055 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 break;
2057 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05002058 if (netif_msg_link(priv))
2059 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002060 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2061 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 break;
2063 }
2064
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002065 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
2067
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002068 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002069 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002072 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002075 } else if (priv->oldlink) {
2076 new_state = 1;
2077 priv->oldlink = 0;
2078 priv->oldspeed = 0;
2079 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002082 if (new_state && netif_msg_link(priv))
2083 phy_print_status(phydev);
2084
Andy Flemingfef61082006-04-20 16:44:29 -05002085 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002086}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088/* Update the hash table based on the current list of multicast
2089 * addresses we subscribe to. Also, change the promiscuity of
2090 * the device based on the flags (this function is called
2091 * whenever dev->flags is changed */
2092static void gfar_set_multi(struct net_device *dev)
2093{
2094 struct dev_mc_list *mc_ptr;
2095 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002096 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 u32 tempval;
2098
2099 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 /* Set RCTRL to PROM */
2101 tempval = gfar_read(&regs->rctrl);
2102 tempval |= RCTRL_PROM;
2103 gfar_write(&regs->rctrl, tempval);
2104 } else {
2105 /* Set RCTRL to not PROM */
2106 tempval = gfar_read(&regs->rctrl);
2107 tempval &= ~(RCTRL_PROM);
2108 gfar_write(&regs->rctrl, tempval);
2109 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 if(dev->flags & IFF_ALLMULTI) {
2112 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002113 gfar_write(&regs->igaddr0, 0xffffffff);
2114 gfar_write(&regs->igaddr1, 0xffffffff);
2115 gfar_write(&regs->igaddr2, 0xffffffff);
2116 gfar_write(&regs->igaddr3, 0xffffffff);
2117 gfar_write(&regs->igaddr4, 0xffffffff);
2118 gfar_write(&regs->igaddr5, 0xffffffff);
2119 gfar_write(&regs->igaddr6, 0xffffffff);
2120 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 gfar_write(&regs->gaddr0, 0xffffffff);
2122 gfar_write(&regs->gaddr1, 0xffffffff);
2123 gfar_write(&regs->gaddr2, 0xffffffff);
2124 gfar_write(&regs->gaddr3, 0xffffffff);
2125 gfar_write(&regs->gaddr4, 0xffffffff);
2126 gfar_write(&regs->gaddr5, 0xffffffff);
2127 gfar_write(&regs->gaddr6, 0xffffffff);
2128 gfar_write(&regs->gaddr7, 0xffffffff);
2129 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002130 int em_num;
2131 int idx;
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002134 gfar_write(&regs->igaddr0, 0x0);
2135 gfar_write(&regs->igaddr1, 0x0);
2136 gfar_write(&regs->igaddr2, 0x0);
2137 gfar_write(&regs->igaddr3, 0x0);
2138 gfar_write(&regs->igaddr4, 0x0);
2139 gfar_write(&regs->igaddr5, 0x0);
2140 gfar_write(&regs->igaddr6, 0x0);
2141 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 gfar_write(&regs->gaddr0, 0x0);
2143 gfar_write(&regs->gaddr1, 0x0);
2144 gfar_write(&regs->gaddr2, 0x0);
2145 gfar_write(&regs->gaddr3, 0x0);
2146 gfar_write(&regs->gaddr4, 0x0);
2147 gfar_write(&regs->gaddr5, 0x0);
2148 gfar_write(&regs->gaddr6, 0x0);
2149 gfar_write(&regs->gaddr7, 0x0);
2150
Andy Fleming7f7f5312005-11-11 12:38:59 -06002151 /* If we have extended hash tables, we need to
2152 * clear the exact match registers to prepare for
2153 * setting them */
2154 if (priv->extended_hash) {
2155 em_num = GFAR_EM_NUM + 1;
2156 gfar_clear_exact_match(dev);
2157 idx = 1;
2158 } else {
2159 idx = 0;
2160 em_num = 0;
2161 }
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if(dev->mc_count == 0)
2164 return;
2165
2166 /* Parse the list, and set the appropriate bits */
2167 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002168 if (idx < em_num) {
2169 gfar_set_mac_for_addr(dev, idx,
2170 mc_ptr->dmi_addr);
2171 idx++;
2172 } else
2173 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175 }
2176
2177 return;
2178}
2179
Andy Fleming7f7f5312005-11-11 12:38:59 -06002180
2181/* Clears each of the exact match registers to zero, so they
2182 * don't interfere with normal reception */
2183static void gfar_clear_exact_match(struct net_device *dev)
2184{
2185 int idx;
2186 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
2187
2188 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
2189 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
2190}
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192/* Set the appropriate hash bit for the given addr */
2193/* The algorithm works like so:
2194 * 1) Take the Destination Address (ie the multicast address), and
2195 * do a CRC on it (little endian), and reverse the bits of the
2196 * result.
2197 * 2) Use the 8 most significant bits as a hash into a 256-entry
2198 * table. The table is controlled through 8 32-bit registers:
2199 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
2200 * gaddr7. This means that the 3 most significant bits in the
2201 * hash index which gaddr register to use, and the 5 other bits
2202 * indicate which bit (assuming an IBM numbering scheme, which
2203 * for PowerPC (tm) is usually the case) in the register holds
2204 * the entry. */
2205static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
2206{
2207 u32 tempval;
2208 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002210 int width = priv->hash_width;
2211 u8 whichbit = (result >> (32 - width)) & 0x1f;
2212 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 u32 value = (1 << (31-whichbit));
2214
Kumar Gala0bbaf062005-06-20 10:54:21 -05002215 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002217 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219 return;
2220}
2221
Andy Fleming7f7f5312005-11-11 12:38:59 -06002222
2223/* There are multiple MAC Address register pairs on some controllers
2224 * This function sets the numth pair to a given address
2225 */
2226static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
2227{
2228 struct gfar_private *priv = netdev_priv(dev);
2229 int idx;
2230 char tmpbuf[MAC_ADDR_LEN];
2231 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06002232 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002233
2234 macptr += num*2;
2235
2236 /* Now copy it into the mac registers backwards, cuz */
2237 /* little endian is silly */
2238 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2239 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2240
2241 gfar_write(macptr, *((u32 *) (tmpbuf)));
2242
2243 tempval = *((u32 *) (tmpbuf + 4));
2244
2245 gfar_write(macptr+1, tempval);
2246}
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002249static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 struct net_device *dev = dev_id;
2252 struct gfar_private *priv = netdev_priv(dev);
2253
2254 /* Save ievent for future reference */
2255 u32 events = gfar_read(&priv->regs->ievent);
2256
2257 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002258 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2259
2260 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002261 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05002262 (events & IEVENT_MAG))
2263 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002266 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2267 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002268 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 /* Update the error counters */
2271 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002272 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002275 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002277 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002279 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002280 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2281 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002282 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 priv->extra_stats.tx_underrun++;
2284
2285 /* Reactivate the Tx Queues */
2286 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2287 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002288 if (netif_msg_tx_err(priv))
2289 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
2291 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002292 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 priv->extra_stats.rx_bsy++;
2294
David Howells7d12e782006-10-05 14:55:46 +01002295 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Kumar Gala0bbaf062005-06-20 10:54:21 -05002297 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002298 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2299 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002302 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 priv->extra_stats.rx_babr++;
2304
Kumar Gala0bbaf062005-06-20 10:54:21 -05002305 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002306 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308 if (events & IEVENT_EBERR) {
2309 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002310 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002311 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002313 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002314 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 if (events & IEVENT_BABT) {
2317 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002318 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002319 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 return IRQ_HANDLED;
2322}
2323
Kay Sievers72abb462008-04-18 13:50:44 -07002324/* work with hotplug and coldplug */
2325MODULE_ALIAS("platform:fsl-gianfar");
2326
Andy Flemingb31a1d82008-12-16 15:29:15 -08002327static struct of_device_id gfar_match[] =
2328{
2329 {
2330 .type = "network",
2331 .compatible = "gianfar",
2332 },
2333 {},
2334};
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336/* Structure for a device driver */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002337static struct of_platform_driver gfar_driver = {
2338 .name = "fsl-gianfar",
2339 .match_table = gfar_match,
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 .probe = gfar_probe,
2342 .remove = gfar_remove,
Scott Woodd87eb122008-07-11 18:04:45 -05002343 .suspend = gfar_suspend,
2344 .resume = gfar_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345};
2346
2347static int __init gfar_init(void)
2348{
Andy Fleming1577ece2009-02-04 16:42:12 -08002349 return of_register_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352static void __exit gfar_exit(void)
2353{
Andy Flemingb31a1d82008-12-16 15:29:15 -08002354 of_unregister_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355}
2356
2357module_init(gfar_init);
2358module_exit(gfar_exit);
2359