blob: c6f6d3b7f4df8a328bf5bc92fa3a3609c6250698 [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 Vorontsov8a102fe2009-10-12 06:00:37 +0000150static void gfar_init_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
151 dma_addr_t buf)
152{
153 struct gfar_private *priv = netdev_priv(dev);
154 u32 lstatus;
155
156 bdp->bufPtr = buf;
157
158 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
159 if (bdp == priv->rx_bd_base + priv->rx_ring_size - 1)
160 lstatus |= BD_LFLAG(RXBD_WRAP);
161
162 eieio();
163
164 bdp->lstatus = lstatus;
165}
166
Anton Vorontsov87283272009-10-12 06:00:39 +0000167static int gfar_init_bds(struct net_device *ndev)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000168{
Anton Vorontsov87283272009-10-12 06:00:39 +0000169 struct gfar_private *priv = netdev_priv(ndev);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000170 struct txbd8 *txbdp;
171 struct rxbd8 *rxbdp;
Anton Vorontsov87283272009-10-12 06:00:39 +0000172 int i;
173
174 /* Initialize some variables in our dev structure */
175 priv->num_txbdfree = priv->tx_ring_size;
176 priv->dirty_tx = priv->cur_tx = priv->tx_bd_base;
177 priv->cur_rx = priv->rx_bd_base;
178 priv->skb_curtx = priv->skb_dirtytx = 0;
179 priv->skb_currx = 0;
180
181 /* Initialize Transmit Descriptor Ring */
182 txbdp = priv->tx_bd_base;
183 for (i = 0; i < priv->tx_ring_size; i++) {
184 txbdp->lstatus = 0;
185 txbdp->bufPtr = 0;
186 txbdp++;
187 }
188
189 /* Set the last descriptor in the ring to indicate wrap */
190 txbdp--;
191 txbdp->status |= TXBD_WRAP;
192
193 rxbdp = priv->rx_bd_base;
194 for (i = 0; i < priv->rx_ring_size; i++) {
195 struct sk_buff *skb = priv->rx_skbuff[i];
196
197 if (skb) {
198 gfar_init_rxbdp(ndev, rxbdp, rxbdp->bufPtr);
199 } else {
200 skb = gfar_new_skb(ndev);
201 if (!skb) {
202 pr_err("%s: Can't allocate RX buffers\n",
203 ndev->name);
204 return -ENOMEM;
205 }
206 priv->rx_skbuff[i] = skb;
207
208 gfar_new_rxbdp(ndev, rxbdp, skb);
209 }
210
211 rxbdp++;
212 }
213
214 return 0;
215}
216
217static int gfar_alloc_skb_resources(struct net_device *ndev)
218{
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000219 void *vaddr;
220 int i;
221 struct gfar_private *priv = netdev_priv(ndev);
222 struct device *dev = &priv->ofdev->dev;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000223
224 /* Allocate memory for the buffer descriptors */
Anton Vorontsov87283272009-10-12 06:00:39 +0000225 vaddr = dma_alloc_coherent(dev,
226 sizeof(*priv->tx_bd_base) * priv->tx_ring_size +
227 sizeof(*priv->rx_bd_base) * priv->rx_ring_size,
228 &priv->tx_bd_dma_base, GFP_KERNEL);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000229 if (!vaddr) {
230 if (netif_msg_ifup(priv))
231 pr_err("%s: Could not allocate buffer descriptors!\n",
232 ndev->name);
233 return -ENOMEM;
234 }
235
236 priv->tx_bd_base = vaddr;
237
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000238 /* Start the rx descriptor ring where the tx ring leaves off */
Anton Vorontsov87283272009-10-12 06:00:39 +0000239 vaddr = vaddr + sizeof(*priv->tx_bd_base) * priv->tx_ring_size;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000240 priv->rx_bd_base = vaddr;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000241
242 /* Setup the skbuff rings */
243 priv->tx_skbuff = kmalloc(sizeof(*priv->tx_skbuff) *
244 priv->tx_ring_size, GFP_KERNEL);
245 if (!priv->tx_skbuff) {
246 if (netif_msg_ifup(priv))
247 pr_err("%s: Could not allocate tx_skbuff\n",
248 ndev->name);
249 goto cleanup;
250 }
251
252 for (i = 0; i < priv->tx_ring_size; i++)
253 priv->tx_skbuff[i] = NULL;
254
255 priv->rx_skbuff = kmalloc(sizeof(*priv->rx_skbuff) *
256 priv->rx_ring_size, GFP_KERNEL);
257 if (!priv->rx_skbuff) {
258 if (netif_msg_ifup(priv))
259 pr_err("%s: Could not allocate rx_skbuff\n",
260 ndev->name);
261 goto cleanup;
262 }
263
264 for (i = 0; i < priv->rx_ring_size; i++)
265 priv->rx_skbuff[i] = NULL;
266
Anton Vorontsov87283272009-10-12 06:00:39 +0000267 if (gfar_init_bds(ndev))
268 goto cleanup;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000269
270 return 0;
271
272cleanup:
273 free_skb_resources(priv);
274 return -ENOMEM;
275}
276
277static void gfar_init_mac(struct net_device *ndev)
278{
279 struct gfar_private *priv = netdev_priv(ndev);
280 struct gfar __iomem *regs = priv->regs;
281 u32 rctrl = 0;
282 u32 tctrl = 0;
283 u32 attrs = 0;
284
Anton Vorontsov32c513b2009-10-12 06:00:36 +0000285 /* enet DMA only understands physical addresses */
286 gfar_write(&regs->tbase0, priv->tx_bd_dma_base);
287 gfar_write(&regs->rbase0, priv->tx_bd_dma_base +
288 sizeof(*priv->tx_bd_base) *
289 priv->tx_ring_size);
290
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000291 /* Configure the coalescing support */
292 gfar_write(&regs->txic, 0);
293 if (priv->txcoalescing)
294 gfar_write(&regs->txic, priv->txic);
295
296 gfar_write(&regs->rxic, 0);
297 if (priv->rxcoalescing)
298 gfar_write(&regs->rxic, priv->rxic);
299
300 if (priv->rx_csum_enable)
301 rctrl |= RCTRL_CHECKSUMMING;
302
303 if (priv->extended_hash) {
304 rctrl |= RCTRL_EXTHASH;
305
306 gfar_clear_exact_match(ndev);
307 rctrl |= RCTRL_EMEN;
308 }
309
310 if (priv->padding) {
311 rctrl &= ~RCTRL_PAL_MASK;
312 rctrl |= RCTRL_PADDING(priv->padding);
313 }
314
315 /* keep vlan related bits if it's enabled */
316 if (priv->vlgrp) {
317 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
318 tctrl |= TCTRL_VLINS;
319 }
320
321 /* Init rctrl based on our settings */
322 gfar_write(&regs->rctrl, rctrl);
323
324 if (ndev->features & NETIF_F_IP_CSUM)
325 tctrl |= TCTRL_INIT_CSUM;
326
327 gfar_write(&regs->tctrl, tctrl);
328
329 /* Set the extraction length and index */
330 attrs = ATTRELI_EL(priv->rx_stash_size) |
331 ATTRELI_EI(priv->rx_stash_index);
332
333 gfar_write(&regs->attreli, attrs);
334
335 /* Start with defaults, and add stashing or locking
336 * depending on the approprate variables */
337 attrs = ATTR_INIT_SETTINGS;
338
339 if (priv->bd_stash_en)
340 attrs |= ATTR_BDSTASH;
341
342 if (priv->rx_stash_size != 0)
343 attrs |= ATTR_BUFSTASH;
344
345 gfar_write(&regs->attr, attrs);
346
347 gfar_write(&regs->fifo_tx_thr, priv->fifo_threshold);
348 gfar_write(&regs->fifo_tx_starve, priv->fifo_starve);
349 gfar_write(&regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
350}
351
Andy Fleming26ccfc32009-03-10 12:58:28 +0000352static const struct net_device_ops gfar_netdev_ops = {
353 .ndo_open = gfar_enet_open,
354 .ndo_start_xmit = gfar_start_xmit,
355 .ndo_stop = gfar_close,
356 .ndo_change_mtu = gfar_change_mtu,
357 .ndo_set_multicast_list = gfar_set_multi,
358 .ndo_tx_timeout = gfar_timeout,
359 .ndo_do_ioctl = gfar_ioctl,
360 .ndo_vlan_rx_register = gfar_vlan_rx_register,
Ben Hutchings240c1022009-07-09 17:54:35 +0000361 .ndo_set_mac_address = eth_mac_addr,
362 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000363#ifdef CONFIG_NET_POLL_CONTROLLER
364 .ndo_poll_controller = gfar_netpoll,
365#endif
366};
367
Andy Fleming7f7f5312005-11-11 12:38:59 -0600368/* Returns 1 if incoming frames use an FCB */
369static inline int gfar_uses_fcb(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500370{
Dai Haruki77ecaf22008-12-16 15:30:48 -0800371 return priv->vlgrp || priv->rx_csum_enable;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500372}
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400373
Andy Flemingb31a1d82008-12-16 15:29:15 -0800374static int gfar_of_init(struct net_device *dev)
375{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800376 const char *model;
377 const char *ctype;
378 const void *mac_addr;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800379 u64 addr, size;
380 int err = 0;
381 struct gfar_private *priv = netdev_priv(dev);
382 struct device_node *np = priv->node;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800383 const u32 *stash;
384 const u32 *stash_len;
385 const u32 *stash_idx;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800386
387 if (!np || !of_device_is_available(np))
388 return -ENODEV;
389
390 /* get a pointer to the register memory */
391 addr = of_translate_address(np, of_get_address(np, 0, &size, NULL));
392 priv->regs = ioremap(addr, size);
393
394 if (priv->regs == NULL)
395 return -ENOMEM;
396
397 priv->interruptTransmit = irq_of_parse_and_map(np, 0);
398
399 model = of_get_property(np, "model", NULL);
400
401 /* If we aren't the FEC we have multiple interrupts */
402 if (model && strcasecmp(model, "FEC")) {
403 priv->interruptReceive = irq_of_parse_and_map(np, 1);
404
405 priv->interruptError = irq_of_parse_and_map(np, 2);
406
407 if (priv->interruptTransmit < 0 ||
408 priv->interruptReceive < 0 ||
409 priv->interruptError < 0) {
410 err = -EINVAL;
411 goto err_out;
412 }
413 }
414
Andy Fleming4d7902f2009-02-04 16:43:44 -0800415 stash = of_get_property(np, "bd-stash", NULL);
416
417 if(stash) {
418 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
419 priv->bd_stash_en = 1;
420 }
421
422 stash_len = of_get_property(np, "rx-stash-len", NULL);
423
424 if (stash_len)
425 priv->rx_stash_size = *stash_len;
426
427 stash_idx = of_get_property(np, "rx-stash-idx", NULL);
428
429 if (stash_idx)
430 priv->rx_stash_index = *stash_idx;
431
432 if (stash_len || stash_idx)
433 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
434
Andy Flemingb31a1d82008-12-16 15:29:15 -0800435 mac_addr = of_get_mac_address(np);
436 if (mac_addr)
437 memcpy(dev->dev_addr, mac_addr, MAC_ADDR_LEN);
438
439 if (model && !strcasecmp(model, "TSEC"))
440 priv->device_flags =
441 FSL_GIANFAR_DEV_HAS_GIGABIT |
442 FSL_GIANFAR_DEV_HAS_COALESCE |
443 FSL_GIANFAR_DEV_HAS_RMON |
444 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
445 if (model && !strcasecmp(model, "eTSEC"))
446 priv->device_flags =
447 FSL_GIANFAR_DEV_HAS_GIGABIT |
448 FSL_GIANFAR_DEV_HAS_COALESCE |
449 FSL_GIANFAR_DEV_HAS_RMON |
450 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Dai Haruki2c2db482008-12-16 15:31:15 -0800451 FSL_GIANFAR_DEV_HAS_PADDING |
Andy Flemingb31a1d82008-12-16 15:29:15 -0800452 FSL_GIANFAR_DEV_HAS_CSUM |
453 FSL_GIANFAR_DEV_HAS_VLAN |
454 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
455 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
456
457 ctype = of_get_property(np, "phy-connection-type", NULL);
458
459 /* We only care about rgmii-id. The rest are autodetected */
460 if (ctype && !strcmp(ctype, "rgmii-id"))
461 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
462 else
463 priv->interface = PHY_INTERFACE_MODE_MII;
464
465 if (of_get_property(np, "fsl,magic-packet", NULL))
466 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
467
Grant Likelyfe192a42009-04-25 12:53:12 +0000468 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800469
470 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000471 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800472
473 return 0;
474
475err_out:
476 iounmap(priv->regs);
477 return err;
478}
479
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000480/* Ioctl MII Interface */
481static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
482{
483 struct gfar_private *priv = netdev_priv(dev);
484
485 if (!netif_running(dev))
486 return -EINVAL;
487
488 if (!priv->phydev)
489 return -ENODEV;
490
491 return phy_mii_ioctl(priv->phydev, if_mii(rq), cmd);
492}
493
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400494/* Set up the ethernet device structure, private data,
495 * and anything else we need before we start */
Andy Flemingb31a1d82008-12-16 15:29:15 -0800496static int gfar_probe(struct of_device *ofdev,
497 const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 u32 tempval;
500 struct net_device *dev = NULL;
501 struct gfar_private *priv = NULL;
Dai Harukic50a5d92008-12-17 16:51:32 -0800502 int err = 0;
503 int len_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* Create an ethernet device instance */
506 dev = alloc_etherdev(sizeof (*priv));
507
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400508 if (NULL == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return -ENOMEM;
510
511 priv = netdev_priv(dev);
Kumar Gala48268572009-03-18 23:28:22 -0700512 priv->ndev = dev;
513 priv->ofdev = ofdev;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800514 priv->node = ofdev->node;
Kumar Gala48268572009-03-18 23:28:22 -0700515 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Andy Flemingb31a1d82008-12-16 15:29:15 -0800517 err = gfar_of_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Andy Flemingb31a1d82008-12-16 15:29:15 -0800519 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 goto regs_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Andy Flemingfef61082006-04-20 16:44:29 -0500522 spin_lock_init(&priv->txlock);
523 spin_lock_init(&priv->rxlock);
Scott Woodd87eb122008-07-11 18:04:45 -0500524 spin_lock_init(&priv->bflock);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200525 INIT_WORK(&priv->reset_task, gfar_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Andy Flemingb31a1d82008-12-16 15:29:15 -0800527 dev_set_drvdata(&ofdev->dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* Stop the DMA engine now, in case it was running before */
530 /* (The firmware could have used it, and left it running). */
Andy Fleming257d9382008-12-16 15:25:45 -0800531 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 /* Reset MAC layer */
534 gfar_write(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
535
Andy Flemingb98ac702009-02-04 16:38:05 -0800536 /* We need to delay at least 3 TX clocks */
537 udelay(2);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
540 gfar_write(&priv->regs->maccfg1, tempval);
541
542 /* Initialize MACCFG2. */
543 gfar_write(&priv->regs->maccfg2, MACCFG2_INIT_SETTINGS);
544
545 /* Initialize ECNTRL */
546 gfar_write(&priv->regs->ecntrl, ECNTRL_INIT_SETTINGS);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /* Set the dev->base_addr to the gfar reg region */
549 dev->base_addr = (unsigned long) (priv->regs);
550
Andy Flemingb31a1d82008-12-16 15:29:15 -0800551 SET_NETDEV_DEV(dev, &ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 /* Fill in the dev structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 dev->watchdog_timeo = TX_TIMEOUT;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700555 netif_napi_add(dev, &priv->napi, gfar_poll, GFAR_DEV_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 dev->mtu = 1500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Andy Fleming26ccfc32009-03-10 12:58:28 +0000558 dev->netdev_ops = &gfar_netdev_ops;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500559 dev->ethtool_ops = &gfar_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Andy Flemingb31a1d82008-12-16 15:29:15 -0800561 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500562 priv->rx_csum_enable = 1;
Dai Haruki4669bc92008-12-17 16:51:04 -0800563 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500564 } else
565 priv->rx_csum_enable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Kumar Gala0bbaf062005-06-20 10:54:21 -0500567 priv->vlgrp = NULL;
568
Andy Fleming26ccfc32009-03-10 12:58:28 +0000569 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500570 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500571
Andy Flemingb31a1d82008-12-16 15:29:15 -0800572 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -0500573 priv->extended_hash = 1;
574 priv->hash_width = 9;
575
576 priv->hash_regs[0] = &priv->regs->igaddr0;
577 priv->hash_regs[1] = &priv->regs->igaddr1;
578 priv->hash_regs[2] = &priv->regs->igaddr2;
579 priv->hash_regs[3] = &priv->regs->igaddr3;
580 priv->hash_regs[4] = &priv->regs->igaddr4;
581 priv->hash_regs[5] = &priv->regs->igaddr5;
582 priv->hash_regs[6] = &priv->regs->igaddr6;
583 priv->hash_regs[7] = &priv->regs->igaddr7;
584 priv->hash_regs[8] = &priv->regs->gaddr0;
585 priv->hash_regs[9] = &priv->regs->gaddr1;
586 priv->hash_regs[10] = &priv->regs->gaddr2;
587 priv->hash_regs[11] = &priv->regs->gaddr3;
588 priv->hash_regs[12] = &priv->regs->gaddr4;
589 priv->hash_regs[13] = &priv->regs->gaddr5;
590 priv->hash_regs[14] = &priv->regs->gaddr6;
591 priv->hash_regs[15] = &priv->regs->gaddr7;
592
593 } else {
594 priv->extended_hash = 0;
595 priv->hash_width = 8;
596
597 priv->hash_regs[0] = &priv->regs->gaddr0;
Andy Fleming1577ece2009-02-04 16:42:12 -0800598 priv->hash_regs[1] = &priv->regs->gaddr1;
Kumar Gala0bbaf062005-06-20 10:54:21 -0500599 priv->hash_regs[2] = &priv->regs->gaddr2;
600 priv->hash_regs[3] = &priv->regs->gaddr3;
601 priv->hash_regs[4] = &priv->regs->gaddr4;
602 priv->hash_regs[5] = &priv->regs->gaddr5;
603 priv->hash_regs[6] = &priv->regs->gaddr6;
604 priv->hash_regs[7] = &priv->regs->gaddr7;
605 }
606
Andy Flemingb31a1d82008-12-16 15:29:15 -0800607 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
Kumar Gala0bbaf062005-06-20 10:54:21 -0500608 priv->padding = DEFAULT_PADDING;
609 else
610 priv->padding = 0;
611
Kumar Gala0bbaf062005-06-20 10:54:21 -0500612 if (dev->features & NETIF_F_IP_CSUM)
613 dev->hard_header_len += GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 priv->tx_ring_size = DEFAULT_TX_RING_SIZE;
617 priv->rx_ring_size = DEFAULT_RX_RING_SIZE;
Dai Haruki4669bc92008-12-17 16:51:04 -0800618 priv->num_txbdfree = DEFAULT_TX_RING_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 priv->txcoalescing = DEFAULT_TX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800621 priv->txic = DEFAULT_TXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 priv->rxcoalescing = DEFAULT_RX_COALESCE;
Dai Harukib46a8452008-12-16 15:29:52 -0800623 priv->rxic = DEFAULT_RXIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Kumar Gala0bbaf062005-06-20 10:54:21 -0500625 /* Enable most messages by default */
626 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
627
Trent Piephod3eab822008-10-02 11:12:24 +0000628 /* Carrier starts down, phylib will bring it up */
629 netif_carrier_off(dev);
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 err = register_netdev(dev);
632
633 if (err) {
634 printk(KERN_ERR "%s: Cannot register net device, aborting.\n",
635 dev->name);
636 goto register_fail;
637 }
638
Anton Vorontsov2884e5c2009-02-01 00:52:34 -0800639 device_init_wakeup(&dev->dev,
640 priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
641
Dai Harukic50a5d92008-12-17 16:51:32 -0800642 /* fill out IRQ number and name fields */
643 len_devname = strlen(dev->name);
644 strncpy(&priv->int_name_tx[0], dev->name, len_devname);
645 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
646 strncpy(&priv->int_name_tx[len_devname],
647 "_tx", sizeof("_tx") + 1);
648
649 strncpy(&priv->int_name_rx[0], dev->name, len_devname);
650 strncpy(&priv->int_name_rx[len_devname],
651 "_rx", sizeof("_rx") + 1);
652
653 strncpy(&priv->int_name_er[0], dev->name, len_devname);
654 strncpy(&priv->int_name_er[len_devname],
655 "_er", sizeof("_er") + 1);
656 } else
657 priv->int_name_tx[len_devname] = '\0';
658
Andy Fleming7f7f5312005-11-11 12:38:59 -0600659 /* Create all the sysfs files */
660 gfar_init_sysfs(dev);
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* Print out the device info */
Johannes Berge1749612008-10-27 15:59:26 -0700663 printk(KERN_INFO DEVICE_NAME "%pM\n", dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 /* Even more device info helps when determining which kernel */
Andy Fleming7f7f5312005-11-11 12:38:59 -0600666 /* provided which set of benchmarks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 printk(KERN_INFO "%s: Running with NAPI enabled\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 printk(KERN_INFO "%s: %d/%d RX/TX BD ring size\n",
669 dev->name, priv->rx_ring_size, priv->tx_ring_size);
670
671 return 0;
672
673register_fail:
Kumar Galacc8c6e32006-02-01 15:18:03 -0600674 iounmap(priv->regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675regs_fail:
Grant Likelyfe192a42009-04-25 12:53:12 +0000676 if (priv->phy_node)
677 of_node_put(priv->phy_node);
678 if (priv->tbi_node)
679 of_node_put(priv->tbi_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 free_netdev(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400681 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Andy Flemingb31a1d82008-12-16 15:29:15 -0800684static int gfar_remove(struct of_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800686 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Grant Likelyfe192a42009-04-25 12:53:12 +0000688 if (priv->phy_node)
689 of_node_put(priv->phy_node);
690 if (priv->tbi_node)
691 of_node_put(priv->tbi_node);
692
Andy Flemingb31a1d82008-12-16 15:29:15 -0800693 dev_set_drvdata(&ofdev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
David S. Millerd9d8e042009-09-06 01:41:02 -0700695 unregister_netdev(priv->ndev);
Kumar Galacc8c6e32006-02-01 15:18:03 -0600696 iounmap(priv->regs);
Kumar Gala48268572009-03-18 23:28:22 -0700697 free_netdev(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 return 0;
700}
701
Scott Woodd87eb122008-07-11 18:04:45 -0500702#ifdef CONFIG_PM
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000703
704static int gfar_suspend(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -0500705{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000706 struct gfar_private *priv = dev_get_drvdata(dev);
707 struct net_device *ndev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500708 unsigned long flags;
709 u32 tempval;
710
711 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800712 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500713
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000714 netif_device_detach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -0500715
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000716 if (netif_running(ndev)) {
Scott Woodd87eb122008-07-11 18:04:45 -0500717 spin_lock_irqsave(&priv->txlock, flags);
718 spin_lock(&priv->rxlock);
719
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000720 gfar_halt_nodisable(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -0500721
722 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
723 tempval = gfar_read(&priv->regs->maccfg1);
724
725 tempval &= ~MACCFG1_TX_EN;
726
727 if (!magic_packet)
728 tempval &= ~MACCFG1_RX_EN;
729
730 gfar_write(&priv->regs->maccfg1, tempval);
731
732 spin_unlock(&priv->rxlock);
733 spin_unlock_irqrestore(&priv->txlock, flags);
734
Scott Woodd87eb122008-07-11 18:04:45 -0500735 napi_disable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500736
737 if (magic_packet) {
738 /* Enable interrupt on Magic Packet */
739 gfar_write(&priv->regs->imask, IMASK_MAG);
740
741 /* Enable Magic Packet mode */
742 tempval = gfar_read(&priv->regs->maccfg2);
743 tempval |= MACCFG2_MPEN;
744 gfar_write(&priv->regs->maccfg2, tempval);
745 } else {
746 phy_stop(priv->phydev);
747 }
748 }
749
750 return 0;
751}
752
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000753static int gfar_resume(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -0500754{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000755 struct gfar_private *priv = dev_get_drvdata(dev);
756 struct net_device *ndev = priv->ndev;
Scott Woodd87eb122008-07-11 18:04:45 -0500757 unsigned long flags;
758 u32 tempval;
759 int magic_packet = priv->wol_en &&
Andy Flemingb31a1d82008-12-16 15:29:15 -0800760 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -0500761
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000762 if (!netif_running(ndev)) {
763 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -0500764 return 0;
765 }
766
767 if (!magic_packet && priv->phydev)
768 phy_start(priv->phydev);
769
770 /* Disable Magic Packet mode, in case something
771 * else woke us up.
772 */
773
774 spin_lock_irqsave(&priv->txlock, flags);
775 spin_lock(&priv->rxlock);
776
777 tempval = gfar_read(&priv->regs->maccfg2);
778 tempval &= ~MACCFG2_MPEN;
779 gfar_write(&priv->regs->maccfg2, tempval);
780
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000781 gfar_start(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -0500782
783 spin_unlock(&priv->rxlock);
784 spin_unlock_irqrestore(&priv->txlock, flags);
785
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000786 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -0500787
Scott Woodd87eb122008-07-11 18:04:45 -0500788 napi_enable(&priv->napi);
Scott Woodd87eb122008-07-11 18:04:45 -0500789
790 return 0;
791}
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000792
793static int gfar_restore(struct device *dev)
794{
795 struct gfar_private *priv = dev_get_drvdata(dev);
796 struct net_device *ndev = priv->ndev;
797
798 if (!netif_running(ndev))
799 return 0;
800
801 gfar_init_bds(ndev);
802 init_registers(ndev);
803 gfar_set_mac_address(ndev);
804 gfar_init_mac(ndev);
805 gfar_start(ndev);
806
807 priv->oldlink = 0;
808 priv->oldspeed = 0;
809 priv->oldduplex = -1;
810
811 if (priv->phydev)
812 phy_start(priv->phydev);
813
814 netif_device_attach(ndev);
815 napi_enable(&priv->napi);
816
817 return 0;
818}
819
820static struct dev_pm_ops gfar_pm_ops = {
821 .suspend = gfar_suspend,
822 .resume = gfar_resume,
823 .freeze = gfar_suspend,
824 .thaw = gfar_resume,
825 .restore = gfar_restore,
826};
827
828#define GFAR_PM_OPS (&gfar_pm_ops)
829
830static int gfar_legacy_suspend(struct of_device *ofdev, pm_message_t state)
831{
832 return gfar_suspend(&ofdev->dev);
833}
834
835static int gfar_legacy_resume(struct of_device *ofdev)
836{
837 return gfar_resume(&ofdev->dev);
838}
839
Scott Woodd87eb122008-07-11 18:04:45 -0500840#else
Anton Vorontsovbe926fc2009-10-12 06:00:42 +0000841
842#define GFAR_PM_OPS NULL
843#define gfar_legacy_suspend NULL
844#define gfar_legacy_resume NULL
845
Scott Woodd87eb122008-07-11 18:04:45 -0500846#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600848/* Reads the controller's registers to determine what interface
849 * connects it to the PHY.
850 */
851static phy_interface_t gfar_get_interface(struct net_device *dev)
852{
853 struct gfar_private *priv = netdev_priv(dev);
854 u32 ecntrl = gfar_read(&priv->regs->ecntrl);
855
856 if (ecntrl & ECNTRL_SGMII_MODE)
857 return PHY_INTERFACE_MODE_SGMII;
858
859 if (ecntrl & ECNTRL_TBI_MODE) {
860 if (ecntrl & ECNTRL_REDUCED_MODE)
861 return PHY_INTERFACE_MODE_RTBI;
862 else
863 return PHY_INTERFACE_MODE_TBI;
864 }
865
866 if (ecntrl & ECNTRL_REDUCED_MODE) {
867 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
868 return PHY_INTERFACE_MODE_RMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500869 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -0800870 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -0500871
872 /*
873 * This isn't autodetected right now, so it must
874 * be set by the device tree or platform code.
875 */
876 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
877 return PHY_INTERFACE_MODE_RGMII_ID;
878
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600879 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -0500880 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600881 }
882
Andy Flemingb31a1d82008-12-16 15:29:15 -0800883 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600884 return PHY_INTERFACE_MODE_GMII;
885
886 return PHY_INTERFACE_MODE_MII;
887}
888
889
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400890/* Initializes driver's PHY state, and attaches to the PHY.
891 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 */
893static int init_phy(struct net_device *dev)
894{
895 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400896 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -0800897 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400898 SUPPORTED_1000baseT_Full : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600899 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 priv->oldlink = 0;
902 priv->oldspeed = 0;
903 priv->oldduplex = -1;
904
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600905 interface = gfar_get_interface(dev);
906
Anton Vorontsov1db780f2009-07-16 21:31:42 +0000907 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
908 interface);
909 if (!priv->phydev)
910 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
911 interface);
912 if (!priv->phydev) {
913 dev_err(&dev->dev, "could not attach to PHY\n");
914 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +0000915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Kapil Junejad3c12872007-05-11 18:25:11 -0500917 if (interface == PHY_INTERFACE_MODE_SGMII)
918 gfar_configure_serdes(dev);
919
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400920 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +0000921 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
922 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Paul Gortmakerd0313582008-04-17 00:08:10 -0400927/*
928 * Initialize TBI PHY interface for communicating with the
929 * SERDES lynx PHY on the chip. We communicate with this PHY
930 * through the MDIO bus on each controller, treating it as a
931 * "normal" PHY at the address found in the TBIPA register. We assume
932 * that the TBIPA register is valid. Either the MDIO bus code will set
933 * it to a value that doesn't conflict with other PHYs on the bus, or the
934 * value doesn't matter, as there are no other PHYs on the bus.
935 */
Kapil Junejad3c12872007-05-11 18:25:11 -0500936static void gfar_configure_serdes(struct net_device *dev)
937{
938 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +0000939 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -0700940
Grant Likelyfe192a42009-04-25 12:53:12 +0000941 if (!priv->tbi_node) {
942 dev_warn(&dev->dev, "error: SGMII mode requires that the "
943 "device tree specify a tbi-handle\n");
944 return;
945 }
946
947 tbiphy = of_phy_find_device(priv->tbi_node);
948 if (!tbiphy) {
949 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -0800950 return;
951 }
Kapil Junejad3c12872007-05-11 18:25:11 -0500952
Andy Flemingb31a1d82008-12-16 15:29:15 -0800953 /*
954 * If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -0700955 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
956 * everything for us? Resetting it takes the link down and requires
957 * several seconds for it to come back.
958 */
Grant Likelyfe192a42009-04-25 12:53:12 +0000959 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800960 return;
Kapil Junejad3c12872007-05-11 18:25:11 -0500961
Paul Gortmakerd0313582008-04-17 00:08:10 -0400962 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +0000963 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -0500964
Grant Likelyfe192a42009-04-25 12:53:12 +0000965 phy_write(tbiphy, MII_ADVERTISE,
Kapil Junejad3c12872007-05-11 18:25:11 -0500966 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
967 ADVERTISE_1000XPSE_ASYM);
968
Grant Likelyfe192a42009-04-25 12:53:12 +0000969 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
Kapil Junejad3c12872007-05-11 18:25:11 -0500970 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
971}
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973static void init_registers(struct net_device *dev)
974{
975 struct gfar_private *priv = netdev_priv(dev);
976
977 /* Clear IEVENT */
978 gfar_write(&priv->regs->ievent, IEVENT_INIT_CLEAR);
979
980 /* Initialize IMASK */
981 gfar_write(&priv->regs->imask, IMASK_INIT_CLEAR);
982
983 /* Init hash registers to zero */
Kumar Gala0bbaf062005-06-20 10:54:21 -0500984 gfar_write(&priv->regs->igaddr0, 0);
985 gfar_write(&priv->regs->igaddr1, 0);
986 gfar_write(&priv->regs->igaddr2, 0);
987 gfar_write(&priv->regs->igaddr3, 0);
988 gfar_write(&priv->regs->igaddr4, 0);
989 gfar_write(&priv->regs->igaddr5, 0);
990 gfar_write(&priv->regs->igaddr6, 0);
991 gfar_write(&priv->regs->igaddr7, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 gfar_write(&priv->regs->gaddr0, 0);
994 gfar_write(&priv->regs->gaddr1, 0);
995 gfar_write(&priv->regs->gaddr2, 0);
996 gfar_write(&priv->regs->gaddr3, 0);
997 gfar_write(&priv->regs->gaddr4, 0);
998 gfar_write(&priv->regs->gaddr5, 0);
999 gfar_write(&priv->regs->gaddr6, 0);
1000 gfar_write(&priv->regs->gaddr7, 0);
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* Zero out the rmon mib registers if it has them */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001003 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
Kumar Galacc8c6e32006-02-01 15:18:03 -06001004 memset_io(&(priv->regs->rmon), 0, sizeof (struct rmon_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 /* Mask off the CAM interrupts */
1007 gfar_write(&priv->regs->rmon.cam1, 0xffffffff);
1008 gfar_write(&priv->regs->rmon.cam2, 0xffffffff);
1009 }
1010
1011 /* Initialize the max receive buffer length */
1012 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* Initialize the Minimum Frame Length Register */
1015 gfar_write(&priv->regs->minflr, MINFLR_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Kumar Gala0bbaf062005-06-20 10:54:21 -05001018
1019/* Halt the receive and transmit queues */
Scott Woodd87eb122008-07-11 18:04:45 -05001020static void gfar_halt_nodisable(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001023 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 u32 tempval;
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /* Mask all interrupts */
1027 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
1028
1029 /* Clear all interrupts */
1030 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
1031
1032 /* Stop the DMA, and wait for it to stop */
1033 tempval = gfar_read(&priv->regs->dmactrl);
1034 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
1035 != (DMACTRL_GRS | DMACTRL_GTS)) {
1036 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
1037 gfar_write(&priv->regs->dmactrl, tempval);
1038
1039 while (!(gfar_read(&priv->regs->ievent) &
1040 (IEVENT_GRSC | IEVENT_GTSC)))
1041 cpu_relax();
1042 }
Scott Woodd87eb122008-07-11 18:04:45 -05001043}
Scott Woodd87eb122008-07-11 18:04:45 -05001044
1045/* Halt the receive and transmit queues */
1046void gfar_halt(struct net_device *dev)
1047{
1048 struct gfar_private *priv = netdev_priv(dev);
1049 struct gfar __iomem *regs = priv->regs;
1050 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Scott Wood2a54adc2008-08-12 15:10:46 -05001052 gfar_halt_nodisable(dev);
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /* Disable Rx and Tx */
1055 tempval = gfar_read(&regs->maccfg1);
1056 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
1057 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001058}
1059
1060void stop_gfar(struct net_device *dev)
1061{
1062 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001063 unsigned long flags;
1064
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001065 phy_stop(priv->phydev);
1066
Kumar Gala0bbaf062005-06-20 10:54:21 -05001067 /* Lock it down */
Andy Flemingfef61082006-04-20 16:44:29 -05001068 spin_lock_irqsave(&priv->txlock, flags);
1069 spin_lock(&priv->rxlock);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001070
Kumar Gala0bbaf062005-06-20 10:54:21 -05001071 gfar_halt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Andy Flemingfef61082006-04-20 16:44:29 -05001073 spin_unlock(&priv->rxlock);
1074 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 /* Free the IRQs */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001077 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 free_irq(priv->interruptError, dev);
1079 free_irq(priv->interruptTransmit, dev);
1080 free_irq(priv->interruptReceive, dev);
1081 } else {
Andy Fleming1577ece2009-02-04 16:42:12 -08001082 free_irq(priv->interruptTransmit, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084
1085 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
1088/* If there are any tx skbs or rx skbs still around, free them.
1089 * Then free tx_skbuff and rx_skbuff */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001090static void free_skb_resources(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Anton Vorontsove69edd22009-10-12 06:00:30 +00001092 struct device *dev = &priv->ofdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct rxbd8 *rxbdp;
1094 struct txbd8 *txbdp;
Dai Haruki4669bc92008-12-17 16:51:04 -08001095 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /* Go through all the buffer descriptors and free their data buffers */
1098 txbdp = priv->tx_bd_base;
1099
Anton Vorontsove69edd22009-10-12 06:00:30 +00001100 if (!priv->tx_skbuff)
1101 goto skip_tx_skbuff;
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 for (i = 0; i < priv->tx_ring_size; i++) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001104 if (!priv->tx_skbuff[i])
1105 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Kumar Gala48268572009-03-18 23:28:22 -07001107 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -08001108 txbdp->length, DMA_TO_DEVICE);
1109 txbdp->lstatus = 0;
1110 for (j = 0; j < skb_shinfo(priv->tx_skbuff[i])->nr_frags; j++) {
1111 txbdp++;
Kumar Gala48268572009-03-18 23:28:22 -07001112 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
Dai Haruki4669bc92008-12-17 16:51:04 -08001113 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Andy Flemingad5da7a2008-05-07 13:20:55 -05001115 txbdp++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001116 dev_kfree_skb_any(priv->tx_skbuff[i]);
1117 priv->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119
1120 kfree(priv->tx_skbuff);
Anton Vorontsove69edd22009-10-12 06:00:30 +00001121skip_tx_skbuff:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 rxbdp = priv->rx_bd_base;
1124
Anton Vorontsove69edd22009-10-12 06:00:30 +00001125 if (!priv->rx_skbuff)
1126 goto skip_rx_skbuff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Anton Vorontsove69edd22009-10-12 06:00:30 +00001128 for (i = 0; i < priv->rx_ring_size; i++) {
1129 if (priv->rx_skbuff[i]) {
1130 dma_unmap_single(&priv->ofdev->dev, rxbdp->bufPtr,
1131 priv->rx_buffer_size,
1132 DMA_FROM_DEVICE);
1133 dev_kfree_skb_any(priv->rx_skbuff[i]);
1134 priv->rx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
Anton Vorontsove69edd22009-10-12 06:00:30 +00001137 rxbdp->lstatus = 0;
1138 rxbdp->bufPtr = 0;
1139 rxbdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
Anton Vorontsove69edd22009-10-12 06:00:30 +00001141
1142 kfree(priv->rx_skbuff);
1143skip_rx_skbuff:
1144
1145 dma_free_coherent(dev, sizeof(*txbdp) * priv->tx_ring_size +
1146 sizeof(*rxbdp) * priv->rx_ring_size,
Anton Vorontsov32c513b2009-10-12 06:00:36 +00001147 priv->tx_bd_base, priv->tx_bd_dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
Kumar Gala0bbaf062005-06-20 10:54:21 -05001150void gfar_start(struct net_device *dev)
1151{
1152 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001153 struct gfar __iomem *regs = priv->regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001154 u32 tempval;
1155
1156 /* Enable Rx and Tx in MACCFG1 */
1157 tempval = gfar_read(&regs->maccfg1);
1158 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
1159 gfar_write(&regs->maccfg1, tempval);
1160
1161 /* Initialize DMACTRL to have WWR and WOP */
1162 tempval = gfar_read(&priv->regs->dmactrl);
1163 tempval |= DMACTRL_INIT_SETTINGS;
1164 gfar_write(&priv->regs->dmactrl, tempval);
1165
Kumar Gala0bbaf062005-06-20 10:54:21 -05001166 /* Make sure we aren't stopped */
1167 tempval = gfar_read(&priv->regs->dmactrl);
1168 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
1169 gfar_write(&priv->regs->dmactrl, tempval);
1170
Andy Flemingfef61082006-04-20 16:44:29 -05001171 /* Clear THLT/RHLT, so that the DMA starts polling now */
1172 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT);
1173 gfar_write(&regs->rstat, RSTAT_CLEAR_RHALT);
1174
Kumar Gala0bbaf062005-06-20 10:54:21 -05001175 /* Unmask the interrupts we look for */
1176 gfar_write(&regs->imask, IMASK_DEFAULT);
Dai Haruki12dea572008-12-16 15:30:20 -08001177
1178 dev->trans_start = jiffies;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001179}
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181/* Bring the controller up and running */
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001182int startup_gfar(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001184 struct gfar_private *priv = netdev_priv(ndev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06001185 struct gfar __iomem *regs = priv->regs;
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001186 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
1189
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001190 err = gfar_alloc_skb_resources(ndev);
1191 if (err)
1192 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001194 gfar_init_mac(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /* If the device has multiple interrupts, register for
1197 * them. Otherwise, only register for the one */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001198 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001199 /* Install our interrupt handlers for Error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * Transmit, and Receive */
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001201 err = request_irq(priv->interruptError, gfar_error, 0,
1202 priv->int_name_er, ndev);
1203 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001204 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001205 pr_err("%s: Can't get IRQ %d\n", ndev->name,
1206 priv->interruptError);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 goto err_irq_fail;
1208 }
1209
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001210 err = request_irq(priv->interruptTransmit, gfar_transmit, 0,
1211 priv->int_name_tx, ndev);
1212 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001213 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001214 pr_err("%s: Can't get IRQ %d\n", ndev->name,
1215 priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 goto tx_irq_fail;
1217 }
1218
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001219 err = request_irq(priv->interruptReceive, gfar_receive, 0,
1220 priv->int_name_rx, ndev);
1221 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001222 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001223 pr_err("%s: Can't get IRQ %d (receive0)\n",
1224 ndev->name, priv->interruptReceive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 goto rx_irq_fail;
1226 }
1227 } else {
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001228 err = request_irq(priv->interruptTransmit, gfar_interrupt,
1229 0, priv->int_name_tx, ndev);
1230 if (err) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001231 if (netif_msg_intr(priv))
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001232 pr_err("%s: Can't get IRQ %d\n", ndev->name,
1233 priv->interruptTransmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 goto err_irq_fail;
1235 }
1236 }
1237
Andy Fleming7f7f5312005-11-11 12:38:59 -06001238 /* Start the controller */
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001239 gfar_start(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001241 phy_start(priv->phydev);
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return 0;
1244
1245rx_irq_fail:
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001246 free_irq(priv->interruptTransmit, ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247tx_irq_fail:
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001248 free_irq(priv->interruptError, ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249err_irq_fail:
Anton Vorontsove69edd22009-10-12 06:00:30 +00001250 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return err;
1252}
1253
1254/* Called when something needs to use the ethernet device */
1255/* Returns 0 for success. */
1256static int gfar_enet_open(struct net_device *dev)
1257{
Li Yang94e8cc32007-10-12 21:53:51 +08001258 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 int err;
1260
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001261 napi_enable(&priv->napi);
1262
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001263 skb_queue_head_init(&priv->rx_recycle);
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* Initialize a bunch of registers */
1266 init_registers(dev);
1267
1268 gfar_set_mac_address(dev);
1269
1270 err = init_phy(dev);
1271
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001272 if(err) {
1273 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return err;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 err = startup_gfar(dev);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001278 if (err) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001279 napi_disable(&priv->napi);
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04001280 return err;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 netif_start_queue(dev);
1284
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001285 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return err;
1288}
1289
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001290static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001291{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001292 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07001293
1294 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001295
Kumar Gala0bbaf062005-06-20 10:54:21 -05001296 return fcb;
1297}
1298
1299static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1300{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001301 u8 flags = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001302
1303 /* If we're here, it's a IP packet with a TCP or UDP
1304 * payload. We set it to checksum, using a pseudo-header
1305 * we provide
1306 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001307 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001308
Andy Fleming7f7f5312005-11-11 12:38:59 -06001309 /* Tell the controller what the protocol is */
1310 /* And provide the already calculated phcs */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001311 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06001312 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001313 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06001314 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05001315 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001316
1317 /* l3os is the distance between the start of the
1318 * frame (skb->data) and the start of the IP hdr.
1319 * l4os is the distance between the start of the
1320 * l3 hdr and the l4 hdr */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001321 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03001322 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001323
Andy Fleming7f7f5312005-11-11 12:38:59 -06001324 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001325}
1326
Andy Fleming7f7f5312005-11-11 12:38:59 -06001327void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001328{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001329 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001330 fcb->vlctl = vlan_tx_tag_get(skb);
1331}
1332
Dai Haruki4669bc92008-12-17 16:51:04 -08001333static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
1334 struct txbd8 *base, int ring_size)
1335{
1336 struct txbd8 *new_bd = bdp + stride;
1337
1338 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
1339}
1340
1341static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
1342 int ring_size)
1343{
1344 return skip_txbd(bdp, 1, base, ring_size);
1345}
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347/* This is called by the kernel when a frame is ready for transmission. */
1348/* It is pointed to by the dev->hard_start_xmit function pointer */
1349static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
1350{
1351 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001352 struct txfcb *fcb = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08001353 struct txbd8 *txbdp, *txbdp_start, *base;
Dai Haruki5a5efed2008-12-16 15:34:50 -08001354 u32 lstatus;
Dai Haruki4669bc92008-12-17 16:51:04 -08001355 int i;
1356 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05001357 unsigned long flags;
Dai Haruki4669bc92008-12-17 16:51:04 -08001358 unsigned int nr_frags, length;
1359
1360 base = priv->tx_bd_base;
1361
Li Yang5b28bea2009-03-27 15:54:30 -07001362 /* make space for additional header when fcb is needed */
1363 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
1364 (priv->vlgrp && vlan_tx_tag_present(skb))) &&
1365 (skb_headroom(skb) < GMAC_FCB_LEN)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001366 struct sk_buff *skb_new;
1367
1368 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
1369 if (!skb_new) {
1370 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07001371 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001372 return NETDEV_TX_OK;
1373 }
1374 kfree_skb(skb);
1375 skb = skb_new;
1376 }
1377
Dai Haruki4669bc92008-12-17 16:51:04 -08001378 /* total number of fragments in the SKB */
1379 nr_frags = skb_shinfo(skb)->nr_frags;
1380
1381 spin_lock_irqsave(&priv->txlock, flags);
1382
1383 /* check if there is space to queue this packet */
Rini van Zetten7958a452009-02-27 03:18:48 -08001384 if ((nr_frags+1) > priv->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001385 /* no space, stop the queue */
1386 netif_stop_queue(dev);
1387 dev->stats.tx_fifo_errors++;
1388 spin_unlock_irqrestore(&priv->txlock, flags);
1389 return NETDEV_TX_BUSY;
1390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /* Update transmit stats */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001393 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Dai Haruki4669bc92008-12-17 16:51:04 -08001395 txbdp = txbdp_start = priv->cur_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Dai Haruki4669bc92008-12-17 16:51:04 -08001397 if (nr_frags == 0) {
1398 lstatus = txbdp->lstatus | BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1399 } else {
1400 /* Place the fragment addresses and lengths into the TxBDs */
1401 for (i = 0; i < nr_frags; i++) {
1402 /* Point at the next BD, wrapping as needed */
1403 txbdp = next_txbd(txbdp, base, priv->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Dai Haruki4669bc92008-12-17 16:51:04 -08001405 length = skb_shinfo(skb)->frags[i].size;
1406
1407 lstatus = txbdp->lstatus | length |
1408 BD_LFLAG(TXBD_READY);
1409
1410 /* Handle the last BD specially */
1411 if (i == nr_frags - 1)
1412 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1413
Kumar Gala48268572009-03-18 23:28:22 -07001414 bufaddr = dma_map_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001415 skb_shinfo(skb)->frags[i].page,
1416 skb_shinfo(skb)->frags[i].page_offset,
1417 length,
1418 DMA_TO_DEVICE);
1419
1420 /* set the TxBD length and buffer pointer */
1421 txbdp->bufPtr = bufaddr;
1422 txbdp->lstatus = lstatus;
1423 }
1424
1425 lstatus = txbdp_start->lstatus;
1426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Kumar Gala0bbaf062005-06-20 10:54:21 -05001428 /* Set up checksumming */
Dai Haruki12dea572008-12-16 15:30:20 -08001429 if (CHECKSUM_PARTIAL == skb->ip_summed) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001430 fcb = gfar_add_fcb(skb);
1431 lstatus |= BD_LFLAG(TXBD_TOE);
1432 gfar_tx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001433 }
1434
Dai Haruki77ecaf22008-12-16 15:30:48 -08001435 if (priv->vlgrp && vlan_tx_tag_present(skb)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001436 if (unlikely(NULL == fcb)) {
1437 fcb = gfar_add_fcb(skb);
Dai Haruki5a5efed2008-12-16 15:34:50 -08001438 lstatus |= BD_LFLAG(TXBD_TOE);
Andy Fleming7f7f5312005-11-11 12:38:59 -06001439 }
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001440
1441 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001442 }
1443
Dai Haruki4669bc92008-12-17 16:51:04 -08001444 /* setup the TxBD length and buffer pointer for the first BD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 priv->tx_skbuff[priv->skb_curtx] = skb;
Kumar Gala48268572009-03-18 23:28:22 -07001446 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
Dai Haruki4669bc92008-12-17 16:51:04 -08001447 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Dai Haruki4669bc92008-12-17 16:51:04 -08001449 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Dai Haruki4669bc92008-12-17 16:51:04 -08001451 /*
1452 * The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05001453 * semantics (it requires synchronization between cacheable and
1454 * uncacheable mappings, which eieio doesn't provide and which we
1455 * don't need), thus requiring a more expensive sync instruction. At
1456 * some point, the set of architecture-independent barrier functions
1457 * should be expanded to include weaker barriers.
1458 */
Scott Wood3b6330c2007-05-16 15:06:59 -05001459 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06001460
Dai Haruki4669bc92008-12-17 16:51:04 -08001461 txbdp_start->lstatus = lstatus;
1462
1463 /* Update the current skb pointer to the next entry we will use
1464 * (wrapping if necessary) */
1465 priv->skb_curtx = (priv->skb_curtx + 1) &
1466 TX_RING_MOD_MASK(priv->tx_ring_size);
1467
1468 priv->cur_tx = next_txbd(txbdp, base, priv->tx_ring_size);
1469
1470 /* reduce TxBD free count */
1471 priv->num_txbdfree -= (nr_frags + 1);
1472
1473 dev->trans_start = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* If the next BD still needs to be cleaned up, then the bds
1476 are full. We need to tell the kernel to stop sending us stuff. */
Dai Haruki4669bc92008-12-17 16:51:04 -08001477 if (!priv->num_txbdfree) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 netif_stop_queue(dev);
1479
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001480 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* Tell the DMA to go go go */
1484 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
1485
1486 /* Unlock priv */
Andy Flemingfef61082006-04-20 16:44:29 -05001487 spin_unlock_irqrestore(&priv->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07001489 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
1492/* Stops the kernel queue, and halts the controller */
1493static int gfar_close(struct net_device *dev)
1494{
1495 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001496
1497 napi_disable(&priv->napi);
1498
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001499 skb_queue_purge(&priv->rx_recycle);
Sebastian Siewiorab939902008-08-19 21:12:45 +02001500 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 stop_gfar(dev);
1502
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001503 /* Disconnect from the PHY */
1504 phy_disconnect(priv->phydev);
1505 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 netif_stop_queue(dev);
1508
1509 return 0;
1510}
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001513static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001515 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 return 0;
1518}
1519
1520
Kumar Gala0bbaf062005-06-20 10:54:21 -05001521/* Enables and disables VLAN insertion/extraction */
1522static void gfar_vlan_rx_register(struct net_device *dev,
1523 struct vlan_group *grp)
1524{
1525 struct gfar_private *priv = netdev_priv(dev);
1526 unsigned long flags;
1527 u32 tempval;
1528
Andy Flemingfef61082006-04-20 16:44:29 -05001529 spin_lock_irqsave(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001530
Anton Vorontsovcd1f55a2009-01-26 14:33:23 -08001531 priv->vlgrp = grp;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001532
1533 if (grp) {
1534 /* Enable VLAN tag insertion */
1535 tempval = gfar_read(&priv->regs->tctrl);
1536 tempval |= TCTRL_VLINS;
1537
1538 gfar_write(&priv->regs->tctrl, tempval);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001539
Kumar Gala0bbaf062005-06-20 10:54:21 -05001540 /* Enable VLAN tag extraction */
1541 tempval = gfar_read(&priv->regs->rctrl);
Dai Haruki77ecaf22008-12-16 15:30:48 -08001542 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001543 gfar_write(&priv->regs->rctrl, tempval);
1544 } else {
1545 /* Disable VLAN tag insertion */
1546 tempval = gfar_read(&priv->regs->tctrl);
1547 tempval &= ~TCTRL_VLINS;
1548 gfar_write(&priv->regs->tctrl, tempval);
1549
1550 /* Disable VLAN tag extraction */
1551 tempval = gfar_read(&priv->regs->rctrl);
1552 tempval &= ~RCTRL_VLEX;
Dai Haruki77ecaf22008-12-16 15:30:48 -08001553 /* If parse is no longer required, then disable parser */
1554 if (tempval & RCTRL_REQ_PARSER)
1555 tempval |= RCTRL_PRSDEP_INIT;
1556 else
1557 tempval &= ~RCTRL_PRSDEP_INIT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001558 gfar_write(&priv->regs->rctrl, tempval);
1559 }
1560
Dai Haruki77ecaf22008-12-16 15:30:48 -08001561 gfar_change_mtu(dev, dev->mtu);
1562
Andy Flemingfef61082006-04-20 16:44:29 -05001563 spin_unlock_irqrestore(&priv->rxlock, flags);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001564}
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566static int gfar_change_mtu(struct net_device *dev, int new_mtu)
1567{
1568 int tempsize, tempval;
1569 struct gfar_private *priv = netdev_priv(dev);
1570 int oldsize = priv->rx_buffer_size;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001571 int frame_size = new_mtu + ETH_HLEN;
1572
Dai Haruki77ecaf22008-12-16 15:30:48 -08001573 if (priv->vlgrp)
Dai Harukifaa89572008-03-24 10:53:26 -05001574 frame_size += VLAN_HLEN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001577 if (netif_msg_drv(priv))
1578 printk(KERN_ERR "%s: Invalid MTU setting\n",
1579 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return -EINVAL;
1581 }
1582
Dai Haruki77ecaf22008-12-16 15:30:48 -08001583 if (gfar_uses_fcb(priv))
1584 frame_size += GMAC_FCB_LEN;
1585
1586 frame_size += priv->padding;
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 tempsize =
1589 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
1590 INCREMENTAL_BUFFER_SIZE;
1591
1592 /* Only stop and start the controller if it isn't already
Andy Fleming7f7f5312005-11-11 12:38:59 -06001593 * stopped, and we changed something */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1595 stop_gfar(dev);
1596
1597 priv->rx_buffer_size = tempsize;
1598
1599 dev->mtu = new_mtu;
1600
1601 gfar_write(&priv->regs->mrblr, priv->rx_buffer_size);
1602 gfar_write(&priv->regs->maxfrm, priv->rx_buffer_size);
1603
1604 /* If the mtu is larger than the max size for standard
1605 * ethernet frames (ie, a jumbo frame), then set maccfg2
1606 * to allow huge frames, and to check the length */
1607 tempval = gfar_read(&priv->regs->maccfg2);
1608
1609 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE)
1610 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1611 else
1612 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
1613
1614 gfar_write(&priv->regs->maccfg2, tempval);
1615
1616 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
1617 startup_gfar(dev);
1618
1619 return 0;
1620}
1621
Sebastian Siewiorab939902008-08-19 21:12:45 +02001622/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 * transmitted after a set amount of time.
1624 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02001625 * starting over will fix the problem.
1626 */
1627static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Sebastian Siewiorab939902008-08-19 21:12:45 +02001629 struct gfar_private *priv = container_of(work, struct gfar_private,
1630 reset_task);
Kumar Gala48268572009-03-18 23:28:22 -07001631 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 if (dev->flags & IFF_UP) {
Markus Brunnercbea27072009-04-15 02:35:40 -07001634 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 stop_gfar(dev);
1636 startup_gfar(dev);
Markus Brunnercbea27072009-04-15 02:35:40 -07001637 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
David S. Miller263ba322008-07-15 03:47:41 -07001640 netif_tx_schedule_all(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Sebastian Siewiorab939902008-08-19 21:12:45 +02001643static void gfar_timeout(struct net_device *dev)
1644{
1645 struct gfar_private *priv = netdev_priv(dev);
1646
1647 dev->stats.tx_errors++;
1648 schedule_work(&priv->reset_task);
1649}
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651/* Interrupt Handler for Transmit complete */
Andy Flemingf162b9d2008-05-02 13:00:30 -05001652static int gfar_clean_tx_ring(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Dai Harukid080cd62008-04-09 19:37:51 -05001654 struct gfar_private *priv = netdev_priv(dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001655 struct txbd8 *bdp;
1656 struct txbd8 *lbdp = NULL;
1657 struct txbd8 *base = priv->tx_bd_base;
1658 struct sk_buff *skb;
1659 int skb_dirtytx;
1660 int tx_ring_size = priv->tx_ring_size;
1661 int frags = 0;
1662 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05001663 int howmany = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08001664 u32 lstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 bdp = priv->dirty_tx;
Dai Haruki4669bc92008-12-17 16:51:04 -08001667 skb_dirtytx = priv->skb_dirtytx;
1668
1669 while ((skb = priv->tx_skbuff[skb_dirtytx])) {
1670 frags = skb_shinfo(skb)->nr_frags;
1671 lbdp = skip_txbd(bdp, frags, base, tx_ring_size);
1672
1673 lstatus = lbdp->lstatus;
1674
1675 /* Only clean completed frames */
1676 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
1677 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 break;
1679
Kumar Gala48268572009-03-18 23:28:22 -07001680 dma_unmap_single(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001681 bdp->bufPtr,
1682 bdp->length,
1683 DMA_TO_DEVICE);
1684
1685 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1686 bdp = next_txbd(bdp, base, tx_ring_size);
1687
1688 for (i = 0; i < frags; i++) {
Kumar Gala48268572009-03-18 23:28:22 -07001689 dma_unmap_page(&priv->ofdev->dev,
Dai Haruki4669bc92008-12-17 16:51:04 -08001690 bdp->bufPtr,
1691 bdp->length,
1692 DMA_TO_DEVICE);
1693 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
1694 bdp = next_txbd(bdp, base, tx_ring_size);
1695 }
1696
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001697 /*
1698 * If there's room in the queue (limit it to rx_buffer_size)
1699 * we add this skb back into the pool, if it's the right size
1700 */
1701 if (skb_queue_len(&priv->rx_recycle) < priv->rx_ring_size &&
1702 skb_recycle_check(skb, priv->rx_buffer_size +
1703 RXBUF_ALIGNMENT))
1704 __skb_queue_head(&priv->rx_recycle, skb);
1705 else
1706 dev_kfree_skb_any(skb);
1707
Dai Haruki4669bc92008-12-17 16:51:04 -08001708 priv->tx_skbuff[skb_dirtytx] = NULL;
1709
1710 skb_dirtytx = (skb_dirtytx + 1) &
1711 TX_RING_MOD_MASK(tx_ring_size);
1712
Dai Harukid080cd62008-04-09 19:37:51 -05001713 howmany++;
Dai Haruki4669bc92008-12-17 16:51:04 -08001714 priv->num_txbdfree += frags + 1;
1715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Dai Haruki4669bc92008-12-17 16:51:04 -08001717 /* If we freed a buffer, we can restart transmission, if necessary */
1718 if (netif_queue_stopped(dev) && priv->num_txbdfree)
1719 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Dai Haruki4669bc92008-12-17 16:51:04 -08001721 /* Update dirty indicators */
1722 priv->skb_dirtytx = skb_dirtytx;
1723 priv->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Dai Harukid080cd62008-04-09 19:37:51 -05001725 dev->stats.tx_packets += howmany;
1726
1727 return howmany;
1728}
1729
Dai Haruki8c7396a2008-12-17 16:52:00 -08001730static void gfar_schedule_cleanup(struct net_device *dev)
1731{
1732 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001733 unsigned long flags;
1734
1735 spin_lock_irqsave(&priv->txlock, flags);
1736 spin_lock(&priv->rxlock);
1737
Ben Hutchings288379f2009-01-19 16:43:59 -08001738 if (napi_schedule_prep(&priv->napi)) {
Dai Haruki8c7396a2008-12-17 16:52:00 -08001739 gfar_write(&priv->regs->imask, IMASK_RTX_DISABLED);
Ben Hutchings288379f2009-01-19 16:43:59 -08001740 __napi_schedule(&priv->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08001741 } else {
1742 /*
1743 * Clear IEVENT, so interrupts aren't called again
1744 * because of the packets that have already arrived.
1745 */
1746 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001747 }
Anton Vorontsova6d0b912009-01-12 21:57:34 -08001748
1749 spin_unlock(&priv->rxlock);
1750 spin_unlock_irqrestore(&priv->txlock, flags);
Dai Haruki8c7396a2008-12-17 16:52:00 -08001751}
1752
Dai Harukid080cd62008-04-09 19:37:51 -05001753/* Interrupt Handler for Transmit complete */
1754static irqreturn_t gfar_transmit(int irq, void *dev_id)
1755{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001756 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return IRQ_HANDLED;
1758}
1759
Andy Fleming815b97c2008-04-22 17:18:29 -05001760static void gfar_new_rxbdp(struct net_device *dev, struct rxbd8 *bdp,
1761 struct sk_buff *skb)
1762{
1763 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsov8a102fe2009-10-12 06:00:37 +00001764 dma_addr_t buf;
Andy Fleming815b97c2008-04-22 17:18:29 -05001765
Anton Vorontsov8a102fe2009-10-12 06:00:37 +00001766 buf = dma_map_single(&priv->ofdev->dev, skb->data,
1767 priv->rx_buffer_size, DMA_FROM_DEVICE);
1768 gfar_init_rxbdp(dev, bdp, buf);
Andy Fleming815b97c2008-04-22 17:18:29 -05001769}
1770
1771
1772struct sk_buff * gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Andy Fleming7f7f5312005-11-11 12:38:59 -06001774 unsigned int alignamount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct gfar_private *priv = netdev_priv(dev);
1776 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001778 skb = __skb_dequeue(&priv->rx_recycle);
1779 if (!skb)
1780 skb = netdev_alloc_skb(dev,
1781 priv->rx_buffer_size + RXBUF_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Andy Fleming815b97c2008-04-22 17:18:29 -05001783 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return NULL;
1785
Andy Fleming7f7f5312005-11-11 12:38:59 -06001786 alignamount = RXBUF_ALIGNMENT -
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001787 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1));
Andy Fleming7f7f5312005-11-11 12:38:59 -06001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 /* We need the data buffer to be aligned properly. We will reserve
1790 * as many bytes as needed to align the data properly
1791 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001792 skb_reserve(skb, alignamount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return skb;
1795}
1796
Li Yang298e1a92007-10-16 14:18:13 +08001797static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Li Yang298e1a92007-10-16 14:18:13 +08001799 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001800 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 struct gfar_extra_stats *estats = &priv->extra_stats;
1802
1803 /* If the packet was truncated, none of the other errors
1804 * matter */
1805 if (status & RXBD_TRUNCATED) {
1806 stats->rx_length_errors++;
1807
1808 estats->rx_trunc++;
1809
1810 return;
1811 }
1812 /* Count the errors, if there were any */
1813 if (status & (RXBD_LARGE | RXBD_SHORT)) {
1814 stats->rx_length_errors++;
1815
1816 if (status & RXBD_LARGE)
1817 estats->rx_large++;
1818 else
1819 estats->rx_short++;
1820 }
1821 if (status & RXBD_NONOCTET) {
1822 stats->rx_frame_errors++;
1823 estats->rx_nonoctet++;
1824 }
1825 if (status & RXBD_CRCERR) {
1826 estats->rx_crcerr++;
1827 stats->rx_crc_errors++;
1828 }
1829 if (status & RXBD_OVERRUN) {
1830 estats->rx_overrun++;
1831 stats->rx_crc_errors++;
1832 }
1833}
1834
David Howells7d12e782006-10-05 14:55:46 +01001835irqreturn_t gfar_receive(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Dai Haruki8c7396a2008-12-17 16:52:00 -08001837 gfar_schedule_cleanup((struct net_device *)dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return IRQ_HANDLED;
1839}
1840
Kumar Gala0bbaf062005-06-20 10:54:21 -05001841static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
1842{
1843 /* If valid headers were found, and valid sums
1844 * were verified, then we tell the kernel that no
1845 * checksumming is necessary. Otherwise, it is */
Andy Fleming7f7f5312005-11-11 12:38:59 -06001846 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05001847 skb->ip_summed = CHECKSUM_UNNECESSARY;
1848 else
1849 skb->ip_summed = CHECKSUM_NONE;
1850}
1851
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853/* gfar_process_frame() -- handle one incoming packet if skb
1854 * isn't NULL. */
1855static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Dai Haruki2c2db482008-12-16 15:31:15 -08001856 int amount_pull)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001859 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Dai Haruki2c2db482008-12-16 15:31:15 -08001861 int ret;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001862
Dai Haruki2c2db482008-12-16 15:31:15 -08001863 /* fcb is at the beginning if exists */
1864 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Dai Haruki2c2db482008-12-16 15:31:15 -08001866 /* Remove the FCB from the skb */
1867 /* Remove the padded bytes, if there are any */
1868 if (amount_pull)
1869 skb_pull(skb, amount_pull);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001870
Dai Haruki2c2db482008-12-16 15:31:15 -08001871 if (priv->rx_csum_enable)
1872 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001873
Dai Haruki2c2db482008-12-16 15:31:15 -08001874 /* Tell the skb what kind of packet this is */
1875 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001876
Dai Haruki2c2db482008-12-16 15:31:15 -08001877 /* Send the packet up the stack */
1878 if (unlikely(priv->vlgrp && (fcb->flags & RXFCB_VLN)))
1879 ret = vlan_hwaccel_receive_skb(skb, priv->vlgrp, fcb->vlctl);
1880 else
1881 ret = netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Dai Haruki2c2db482008-12-16 15:31:15 -08001883 if (NET_RX_DROP == ret)
1884 priv->extra_stats.kernel_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 return 0;
1887}
1888
1889/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Kumar Gala0bbaf062005-06-20 10:54:21 -05001890 * until the budget/quota has been reached. Returns the number
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 * of frames handled
1892 */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001893int gfar_clean_rx_ring(struct net_device *dev, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Andy Fleming31de1982008-12-16 15:33:40 -08001895 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08001897 int pkt_len;
1898 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 int howmany = 0;
1900 struct gfar_private *priv = netdev_priv(dev);
1901
1902 /* Get the first full descriptor */
1903 bdp = priv->cur_rx;
Andy Fleming31de1982008-12-16 15:33:40 -08001904 base = priv->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Dai Haruki2c2db482008-12-16 15:31:15 -08001906 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0) +
1907 priv->padding;
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05001910 struct sk_buff *newskb;
Scott Wood3b6330c2007-05-16 15:06:59 -05001911 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05001912
1913 /* Add another skb for the future */
1914 newskb = gfar_new_skb(dev);
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 skb = priv->rx_skbuff[priv->skb_currx];
1917
Kumar Gala48268572009-03-18 23:28:22 -07001918 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
Andy Fleming81183052008-11-12 10:07:11 -06001919 priv->rx_buffer_size, DMA_FROM_DEVICE);
1920
Andy Fleming815b97c2008-04-22 17:18:29 -05001921 /* We drop the frame if we failed to allocate a new buffer */
1922 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
1923 bdp->status & RXBD_ERR)) {
1924 count_errors(bdp->status, dev);
1925
1926 if (unlikely(!newskb))
1927 newskb = skb;
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001928 else if (skb) {
1929 /*
1930 * We need to reset ->data to what it
1931 * was before gfar_new_skb() re-aligned
1932 * it to an RXBUF_ALIGNMENT boundary
1933 * before we put the skb back on the
1934 * recycle list.
1935 */
1936 skb->data = skb->head + NET_SKB_PAD;
Andy Fleming0fd56bb2009-02-04 16:43:16 -08001937 __skb_queue_head(&priv->rx_recycle, skb);
Lennert Buytenhek4e2fd552009-05-25 00:42:34 -07001938 }
Andy Fleming815b97c2008-04-22 17:18:29 -05001939 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 /* Increment the number of packets */
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001941 dev->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 howmany++;
1943
Dai Haruki2c2db482008-12-16 15:31:15 -08001944 if (likely(skb)) {
1945 pkt_len = bdp->length - ETH_FCS_LEN;
1946 /* Remove the FCS from the packet length */
1947 skb_put(skb, pkt_len);
1948 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Andy Fleming1577ece2009-02-04 16:42:12 -08001950 if (in_irq() || irqs_disabled())
1951 printk("Interrupt problem!\n");
Dai Haruki2c2db482008-12-16 15:31:15 -08001952 gfar_process_frame(dev, skb, amount_pull);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Dai Haruki2c2db482008-12-16 15:31:15 -08001954 } else {
1955 if (netif_msg_rx_err(priv))
1956 printk(KERN_WARNING
1957 "%s: Missing skb!\n", dev->name);
1958 dev->stats.rx_dropped++;
1959 priv->extra_stats.rx_skbmissing++;
1960 }
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963
Andy Fleming815b97c2008-04-22 17:18:29 -05001964 priv->rx_skbuff[priv->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Andy Fleming815b97c2008-04-22 17:18:29 -05001966 /* Setup the new bdp */
1967 gfar_new_rxbdp(dev, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 /* Update to the next pointer */
Andy Fleming31de1982008-12-16 15:33:40 -08001970 bdp = next_bd(bdp, base, priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 /* update to point at the next skb */
1973 priv->skb_currx =
Andy Fleming815b97c2008-04-22 17:18:29 -05001974 (priv->skb_currx + 1) &
1975 RX_RING_MOD_MASK(priv->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977
1978 /* Update the current rxbd pointer to be the next one */
1979 priv->cur_rx = bdp;
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return howmany;
1982}
1983
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001984static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001986 struct gfar_private *priv = container_of(napi, struct gfar_private, napi);
Kumar Gala48268572009-03-18 23:28:22 -07001987 struct net_device *dev = priv->ndev;
Andy Fleming42199882008-12-17 16:52:30 -08001988 int tx_cleaned = 0;
1989 int rx_cleaned = 0;
Dai Harukid080cd62008-04-09 19:37:51 -05001990 unsigned long flags;
1991
Dai Haruki8c7396a2008-12-17 16:52:00 -08001992 /* Clear IEVENT, so interrupts aren't called again
1993 * because of the packets that have already arrived */
1994 gfar_write(&priv->regs->ievent, IEVENT_RTX_MASK);
1995
Dai Harukid080cd62008-04-09 19:37:51 -05001996 /* If we fail to get the lock, don't bother with the TX BDs */
1997 if (spin_trylock_irqsave(&priv->txlock, flags)) {
Andy Fleming42199882008-12-17 16:52:30 -08001998 tx_cleaned = gfar_clean_tx_ring(dev);
Dai Harukid080cd62008-04-09 19:37:51 -05001999 spin_unlock_irqrestore(&priv->txlock, flags);
2000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Andy Fleming42199882008-12-17 16:52:30 -08002002 rx_cleaned = gfar_clean_rx_ring(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Andy Fleming42199882008-12-17 16:52:30 -08002004 if (tx_cleaned)
2005 return budget;
2006
2007 if (rx_cleaned < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002008 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 /* Clear the halt bit in RSTAT */
2011 gfar_write(&priv->regs->rstat, RSTAT_CLEAR_RHALT);
2012
2013 gfar_write(&priv->regs->imask, IMASK_DEFAULT);
2014
2015 /* If we are coalescing interrupts, update the timer */
2016 /* Otherwise, clear it */
Andy Fleming2f448912008-03-24 10:53:28 -05002017 if (likely(priv->rxcoalescing)) {
2018 gfar_write(&priv->regs->rxic, 0);
Dai Harukib46a8452008-12-16 15:29:52 -08002019 gfar_write(&priv->regs->rxic, priv->rxic);
Andy Fleming2f448912008-03-24 10:53:28 -05002020 }
Dai Haruki8c7396a2008-12-17 16:52:00 -08002021 if (likely(priv->txcoalescing)) {
2022 gfar_write(&priv->regs->txic, 0);
2023 gfar_write(&priv->regs->txic, priv->txic);
2024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026
Andy Fleming42199882008-12-17 16:52:30 -08002027 return rx_cleaned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002030#ifdef CONFIG_NET_POLL_CONTROLLER
2031/*
2032 * Polling 'interrupt' - used by things like netconsole to send skbs
2033 * without having to re-enable interrupts. It's not called while
2034 * the interrupt routine is executing.
2035 */
2036static void gfar_netpoll(struct net_device *dev)
2037{
2038 struct gfar_private *priv = netdev_priv(dev);
2039
2040 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002041 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002042 disable_irq(priv->interruptTransmit);
2043 disable_irq(priv->interruptReceive);
2044 disable_irq(priv->interruptError);
2045 gfar_interrupt(priv->interruptTransmit, dev);
2046 enable_irq(priv->interruptError);
2047 enable_irq(priv->interruptReceive);
2048 enable_irq(priv->interruptTransmit);
2049 } else {
2050 disable_irq(priv->interruptTransmit);
2051 gfar_interrupt(priv->interruptTransmit, dev);
2052 enable_irq(priv->interruptTransmit);
2053 }
2054}
2055#endif
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057/* The interrupt handler for devices with one interrupt */
David Howells7d12e782006-10-05 14:55:46 +01002058static irqreturn_t gfar_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 struct net_device *dev = dev_id;
2061 struct gfar_private *priv = netdev_priv(dev);
2062
2063 /* Save ievent for future reference */
2064 u32 events = gfar_read(&priv->regs->ievent);
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002067 if (events & IEVENT_RX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01002068 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002071 if (events & IEVENT_TX_MASK)
David Howells7d12e782006-10-05 14:55:46 +01002072 gfar_transmit(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002074 /* Check for errors */
2075 if (events & IEVENT_ERR_MASK)
2076 gfar_error(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 return IRQ_HANDLED;
2079}
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081/* Called every time the controller might need to be made
2082 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002083 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * function converts those variables into the appropriate
2085 * register values, and can bring down the device if needed.
2086 */
2087static void adjust_link(struct net_device *dev)
2088{
2089 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002090 struct gfar __iomem *regs = priv->regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002091 unsigned long flags;
2092 struct phy_device *phydev = priv->phydev;
2093 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Andy Flemingfef61082006-04-20 16:44:29 -05002095 spin_lock_irqsave(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002096 if (phydev->link) {
2097 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002098 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 /* Now we make sure that we can be in full duplex mode.
2101 * If not, we operate in half-duplex mode. */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002102 if (phydev->duplex != priv->oldduplex) {
2103 new_state = 1;
2104 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002106 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002109 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
2111
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002112 if (phydev->speed != priv->oldspeed) {
2113 new_state = 1;
2114 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 tempval =
2117 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08002118
2119 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 break;
2121 case 100:
2122 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 tempval =
2124 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002125
2126 /* Reduced mode distinguishes
2127 * between 10 and 100 */
2128 if (phydev->speed == SPEED_100)
2129 ecntrl |= ECNTRL_R100;
2130 else
2131 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 break;
2133 default:
Kumar Gala0bbaf062005-06-20 10:54:21 -05002134 if (netif_msg_link(priv))
2135 printk(KERN_WARNING
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002136 "%s: Ack! Speed (%d) is not 10/100/1000!\n",
2137 dev->name, phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 break;
2139 }
2140
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002141 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002144 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002145 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002148 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002151 } else if (priv->oldlink) {
2152 new_state = 1;
2153 priv->oldlink = 0;
2154 priv->oldspeed = 0;
2155 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002158 if (new_state && netif_msg_link(priv))
2159 phy_print_status(phydev);
2160
Andy Flemingfef61082006-04-20 16:44:29 -05002161 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002162}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164/* Update the hash table based on the current list of multicast
2165 * addresses we subscribe to. Also, change the promiscuity of
2166 * the device based on the flags (this function is called
2167 * whenever dev->flags is changed */
2168static void gfar_set_multi(struct net_device *dev)
2169{
2170 struct dev_mc_list *mc_ptr;
2171 struct gfar_private *priv = netdev_priv(dev);
Kumar Galacc8c6e32006-02-01 15:18:03 -06002172 struct gfar __iomem *regs = priv->regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 u32 tempval;
2174
2175 if(dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 /* Set RCTRL to PROM */
2177 tempval = gfar_read(&regs->rctrl);
2178 tempval |= RCTRL_PROM;
2179 gfar_write(&regs->rctrl, tempval);
2180 } else {
2181 /* Set RCTRL to not PROM */
2182 tempval = gfar_read(&regs->rctrl);
2183 tempval &= ~(RCTRL_PROM);
2184 gfar_write(&regs->rctrl, tempval);
2185 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 if(dev->flags & IFF_ALLMULTI) {
2188 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002189 gfar_write(&regs->igaddr0, 0xffffffff);
2190 gfar_write(&regs->igaddr1, 0xffffffff);
2191 gfar_write(&regs->igaddr2, 0xffffffff);
2192 gfar_write(&regs->igaddr3, 0xffffffff);
2193 gfar_write(&regs->igaddr4, 0xffffffff);
2194 gfar_write(&regs->igaddr5, 0xffffffff);
2195 gfar_write(&regs->igaddr6, 0xffffffff);
2196 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 gfar_write(&regs->gaddr0, 0xffffffff);
2198 gfar_write(&regs->gaddr1, 0xffffffff);
2199 gfar_write(&regs->gaddr2, 0xffffffff);
2200 gfar_write(&regs->gaddr3, 0xffffffff);
2201 gfar_write(&regs->gaddr4, 0xffffffff);
2202 gfar_write(&regs->gaddr5, 0xffffffff);
2203 gfar_write(&regs->gaddr6, 0xffffffff);
2204 gfar_write(&regs->gaddr7, 0xffffffff);
2205 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002206 int em_num;
2207 int idx;
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002210 gfar_write(&regs->igaddr0, 0x0);
2211 gfar_write(&regs->igaddr1, 0x0);
2212 gfar_write(&regs->igaddr2, 0x0);
2213 gfar_write(&regs->igaddr3, 0x0);
2214 gfar_write(&regs->igaddr4, 0x0);
2215 gfar_write(&regs->igaddr5, 0x0);
2216 gfar_write(&regs->igaddr6, 0x0);
2217 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 gfar_write(&regs->gaddr0, 0x0);
2219 gfar_write(&regs->gaddr1, 0x0);
2220 gfar_write(&regs->gaddr2, 0x0);
2221 gfar_write(&regs->gaddr3, 0x0);
2222 gfar_write(&regs->gaddr4, 0x0);
2223 gfar_write(&regs->gaddr5, 0x0);
2224 gfar_write(&regs->gaddr6, 0x0);
2225 gfar_write(&regs->gaddr7, 0x0);
2226
Andy Fleming7f7f5312005-11-11 12:38:59 -06002227 /* If we have extended hash tables, we need to
2228 * clear the exact match registers to prepare for
2229 * setting them */
2230 if (priv->extended_hash) {
2231 em_num = GFAR_EM_NUM + 1;
2232 gfar_clear_exact_match(dev);
2233 idx = 1;
2234 } else {
2235 idx = 0;
2236 em_num = 0;
2237 }
2238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 if(dev->mc_count == 0)
2240 return;
2241
2242 /* Parse the list, and set the appropriate bits */
2243 for(mc_ptr = dev->mc_list; mc_ptr; mc_ptr = mc_ptr->next) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002244 if (idx < em_num) {
2245 gfar_set_mac_for_addr(dev, idx,
2246 mc_ptr->dmi_addr);
2247 idx++;
2248 } else
2249 gfar_set_hash_for_addr(dev, mc_ptr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251 }
2252
2253 return;
2254}
2255
Andy Fleming7f7f5312005-11-11 12:38:59 -06002256
2257/* Clears each of the exact match registers to zero, so they
2258 * don't interfere with normal reception */
2259static void gfar_clear_exact_match(struct net_device *dev)
2260{
2261 int idx;
2262 u8 zero_arr[MAC_ADDR_LEN] = {0,0,0,0,0,0};
2263
2264 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
2265 gfar_set_mac_for_addr(dev, idx, (u8 *)zero_arr);
2266}
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268/* Set the appropriate hash bit for the given addr */
2269/* The algorithm works like so:
2270 * 1) Take the Destination Address (ie the multicast address), and
2271 * do a CRC on it (little endian), and reverse the bits of the
2272 * result.
2273 * 2) Use the 8 most significant bits as a hash into a 256-entry
2274 * table. The table is controlled through 8 32-bit registers:
2275 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
2276 * gaddr7. This means that the 3 most significant bits in the
2277 * hash index which gaddr register to use, and the 5 other bits
2278 * indicate which bit (assuming an IBM numbering scheme, which
2279 * for PowerPC (tm) is usually the case) in the register holds
2280 * the entry. */
2281static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
2282{
2283 u32 tempval;
2284 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 u32 result = ether_crc(MAC_ADDR_LEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002286 int width = priv->hash_width;
2287 u8 whichbit = (result >> (32 - width)) & 0x1f;
2288 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 u32 value = (1 << (31-whichbit));
2290
Kumar Gala0bbaf062005-06-20 10:54:21 -05002291 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002293 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 return;
2296}
2297
Andy Fleming7f7f5312005-11-11 12:38:59 -06002298
2299/* There are multiple MAC Address register pairs on some controllers
2300 * This function sets the numth pair to a given address
2301 */
2302static void gfar_set_mac_for_addr(struct net_device *dev, int num, u8 *addr)
2303{
2304 struct gfar_private *priv = netdev_priv(dev);
2305 int idx;
2306 char tmpbuf[MAC_ADDR_LEN];
2307 u32 tempval;
Kumar Galacc8c6e32006-02-01 15:18:03 -06002308 u32 __iomem *macptr = &priv->regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002309
2310 macptr += num*2;
2311
2312 /* Now copy it into the mac registers backwards, cuz */
2313 /* little endian is silly */
2314 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
2315 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
2316
2317 gfar_write(macptr, *((u32 *) (tmpbuf)));
2318
2319 tempval = *((u32 *) (tmpbuf + 4));
2320
2321 gfar_write(macptr+1, tempval);
2322}
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324/* GFAR error interrupt handler */
David Howells7d12e782006-10-05 14:55:46 +01002325static irqreturn_t gfar_error(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326{
2327 struct net_device *dev = dev_id;
2328 struct gfar_private *priv = netdev_priv(dev);
2329
2330 /* Save ievent for future reference */
2331 u32 events = gfar_read(&priv->regs->ievent);
2332
2333 /* Clear IEVENT */
Scott Woodd87eb122008-07-11 18:04:45 -05002334 gfar_write(&priv->regs->ievent, events & IEVENT_ERR_MASK);
2335
2336 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002337 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05002338 (events & IEVENT_MAG))
2339 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
2341 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002342 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
2343 printk(KERN_DEBUG "%s: error interrupt (ievent=0x%08x imask=0x%08x)\n",
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002344 dev->name, events, gfar_read(&priv->regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 /* Update the error counters */
2347 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002348 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002351 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002353 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (events & IEVENT_XFUN) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002355 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002356 printk(KERN_DEBUG "%s: TX FIFO underrun, "
2357 "packet dropped.\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002358 dev->stats.tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 priv->extra_stats.tx_underrun++;
2360
2361 /* Reactivate the Tx Queues */
2362 gfar_write(&priv->regs->tstat, TSTAT_CLEAR_THALT);
2363 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002364 if (netif_msg_tx_err(priv))
2365 printk(KERN_DEBUG "%s: Transmit Error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002368 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 priv->extra_stats.rx_bsy++;
2370
David Howells7d12e782006-10-05 14:55:46 +01002371 gfar_receive(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Kumar Gala0bbaf062005-06-20 10:54:21 -05002373 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002374 printk(KERN_DEBUG "%s: busy error (rstat: %x)\n",
2375 dev->name, gfar_read(&priv->regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002378 dev->stats.rx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 priv->extra_stats.rx_babr++;
2380
Kumar Gala0bbaf062005-06-20 10:54:21 -05002381 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002382 printk(KERN_DEBUG "%s: babbling RX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
2384 if (events & IEVENT_EBERR) {
2385 priv->extra_stats.eberr++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002386 if (netif_msg_rx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002387 printk(KERN_DEBUG "%s: bus error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002389 if ((events & IEVENT_RXC) && netif_msg_rx_status(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002390 printk(KERN_DEBUG "%s: control frame\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 if (events & IEVENT_BABT) {
2393 priv->extra_stats.tx_babt++;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002394 if (netif_msg_tx_err(priv))
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002395 printk(KERN_DEBUG "%s: babbling TX error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 }
2397 return IRQ_HANDLED;
2398}
2399
Kay Sievers72abb462008-04-18 13:50:44 -07002400/* work with hotplug and coldplug */
2401MODULE_ALIAS("platform:fsl-gianfar");
2402
Andy Flemingb31a1d82008-12-16 15:29:15 -08002403static struct of_device_id gfar_match[] =
2404{
2405 {
2406 .type = "network",
2407 .compatible = "gianfar",
2408 },
2409 {},
2410};
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412/* Structure for a device driver */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002413static struct of_platform_driver gfar_driver = {
2414 .name = "fsl-gianfar",
2415 .match_table = gfar_match,
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 .probe = gfar_probe,
2418 .remove = gfar_remove,
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00002419 .suspend = gfar_legacy_suspend,
2420 .resume = gfar_legacy_resume,
2421 .driver.pm = GFAR_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422};
2423
2424static int __init gfar_init(void)
2425{
Andy Fleming1577ece2009-02-04 16:42:12 -08002426 return of_register_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
2429static void __exit gfar_exit(void)
2430{
Andy Flemingb31a1d82008-12-16 15:29:15 -08002431 of_unregister_platform_driver(&gfar_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
2434module_init(gfar_init);
2435module_exit(gfar_exit);
2436