]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/gianfar.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs...
[mirror_ubuntu-bionic-kernel.git] / drivers / net / gianfar.c
CommitLineData
0bbaf069 1/*
1da177e4
LT
2 * drivers/net/gianfar.c
3 *
4 * Gianfar Ethernet Driver
7f7f5316
AF
5 * This driver is designed for the non-CPM ethernet controllers
6 * on the 85xx and 83xx family of integrated processors
1da177e4
LT
7 * Based on 8260_io/fcc_enet.c
8 *
9 * Author: Andy Fleming
4c8d3d99 10 * Maintainer: Kumar Gala
a12f801d 11 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
1da177e4 12 *
6c43e046 13 * Copyright 2002-2009, 2011 Freescale Semiconductor, Inc.
a12f801d 14 * Copyright 2007 MontaVista Software, Inc.
1da177e4
LT
15 *
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version.
20 *
21 * Gianfar: AKA Lambda Draconis, "Dragon"
22 * RA 11 31 24.2
23 * Dec +69 19 52
24 * V 3.84
25 * B-V +1.62
26 *
27 * Theory of operation
0bbaf069 28 *
b31a1d8b
AF
29 * The driver is initialized through of_device. Configuration information
30 * is therefore conveyed through an OF-style device tree.
1da177e4
LT
31 *
32 * The Gianfar Ethernet Controller uses a ring of buffer
33 * descriptors. The beginning is indicated by a register
0bbaf069
KG
34 * pointing to the physical address of the start of the ring.
35 * The end is determined by a "wrap" bit being set in the
1da177e4
LT
36 * last descriptor of the ring.
37 *
38 * When a packet is received, the RXF bit in the
0bbaf069 39 * IEVENT register is set, triggering an interrupt when the
1da177e4
LT
40 * corresponding bit in the IMASK register is also set (if
41 * interrupt coalescing is active, then the interrupt may not
42 * happen immediately, but will wait until either a set number
bb40dcbb 43 * of frames or amount of time have passed). In NAPI, the
1da177e4 44 * interrupt handler will signal there is work to be done, and
0aa1538f 45 * exit. This method will start at the last known empty
0bbaf069 46 * descriptor, and process every subsequent descriptor until there
1da177e4
LT
47 * are none left with data (NAPI will stop after a set number of
48 * packets to give time to other tasks, but will eventually
49 * process all the packets). The data arrives inside a
50 * pre-allocated skb, and so after the skb is passed up to the
51 * stack, a new skb must be allocated, and the address field in
52 * the buffer descriptor must be updated to indicate this new
53 * skb.
54 *
55 * When the kernel requests that a packet be transmitted, the
56 * driver starts where it left off last time, and points the
57 * descriptor at the buffer which was passed in. The driver
58 * then informs the DMA engine that there are packets ready to
59 * be transmitted. Once the controller is finished transmitting
60 * the packet, an interrupt may be triggered (under the same
61 * conditions as for reception, but depending on the TXF bit).
62 * The driver then cleans up the buffer.
63 */
64
59deab26
JP
65#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
66#define DEBUG
67
1da177e4 68#include <linux/kernel.h>
1da177e4
LT
69#include <linux/string.h>
70#include <linux/errno.h>
bb40dcbb 71#include <linux/unistd.h>
1da177e4
LT
72#include <linux/slab.h>
73#include <linux/interrupt.h>
74#include <linux/init.h>
75#include <linux/delay.h>
76#include <linux/netdevice.h>
77#include <linux/etherdevice.h>
78#include <linux/skbuff.h>
0bbaf069 79#include <linux/if_vlan.h>
1da177e4
LT
80#include <linux/spinlock.h>
81#include <linux/mm.h>
fe192a49 82#include <linux/of_mdio.h>
b31a1d8b 83#include <linux/of_platform.h>
0bbaf069
KG
84#include <linux/ip.h>
85#include <linux/tcp.h>
86#include <linux/udp.h>
9c07b884 87#include <linux/in.h>
cc772ab7 88#include <linux/net_tstamp.h>
1da177e4
LT
89
90#include <asm/io.h>
7d350977 91#include <asm/reg.h>
1da177e4
LT
92#include <asm/irq.h>
93#include <asm/uaccess.h>
94#include <linux/module.h>
1da177e4
LT
95#include <linux/dma-mapping.h>
96#include <linux/crc32.h>
bb40dcbb
AF
97#include <linux/mii.h>
98#include <linux/phy.h>
b31a1d8b
AF
99#include <linux/phy_fixed.h>
100#include <linux/of.h>
4b6ba8aa 101#include <linux/of_net.h>
1da177e4
LT
102
103#include "gianfar.h"
1577ecef 104#include "fsl_pq_mdio.h"
1da177e4
LT
105
106#define TX_TIMEOUT (1*HZ)
1da177e4
LT
107#undef BRIEF_GFAR_ERRORS
108#undef VERBOSE_GFAR_ERRORS
109
1da177e4 110const char gfar_driver_name[] = "Gianfar Ethernet";
7f7f5316 111const char gfar_driver_version[] = "1.3";
1da177e4 112
1da177e4
LT
113static int gfar_enet_open(struct net_device *dev);
114static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev);
ab939905 115static void gfar_reset_task(struct work_struct *work);
1da177e4
LT
116static void gfar_timeout(struct net_device *dev);
117static int gfar_close(struct net_device *dev);
815b97c6 118struct sk_buff *gfar_new_skb(struct net_device *dev);
a12f801d 119static void gfar_new_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
815b97c6 120 struct sk_buff *skb);
1da177e4
LT
121static int gfar_set_mac_address(struct net_device *dev);
122static int gfar_change_mtu(struct net_device *dev, int new_mtu);
7d12e780
DH
123static irqreturn_t gfar_error(int irq, void *dev_id);
124static irqreturn_t gfar_transmit(int irq, void *dev_id);
125static irqreturn_t gfar_interrupt(int irq, void *dev_id);
1da177e4
LT
126static void adjust_link(struct net_device *dev);
127static void init_registers(struct net_device *dev);
128static int init_phy(struct net_device *dev);
74888760 129static int gfar_probe(struct platform_device *ofdev);
2dc11581 130static int gfar_remove(struct platform_device *ofdev);
bb40dcbb 131static void free_skb_resources(struct gfar_private *priv);
1da177e4
LT
132static void gfar_set_multi(struct net_device *dev);
133static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr);
d3c12873 134static void gfar_configure_serdes(struct net_device *dev);
bea3348e 135static int gfar_poll(struct napi_struct *napi, int budget);
f2d71c2d
VW
136#ifdef CONFIG_NET_POLL_CONTROLLER
137static void gfar_netpoll(struct net_device *dev);
138#endif
a12f801d
SG
139int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit);
140static int gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue);
2c2db48a
DH
141static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
142 int amount_pull);
7f7f5316 143void gfar_halt(struct net_device *dev);
d87eb127 144static void gfar_halt_nodisable(struct net_device *dev);
7f7f5316
AF
145void gfar_start(struct net_device *dev);
146static void gfar_clear_exact_match(struct net_device *dev);
b6bc7650
JP
147static void gfar_set_mac_for_addr(struct net_device *dev, int num,
148 const u8 *addr);
26ccfc37 149static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
1da177e4 150
1da177e4
LT
151MODULE_AUTHOR("Freescale Semiconductor, Inc");
152MODULE_DESCRIPTION("Gianfar Ethernet Driver");
153MODULE_LICENSE("GPL");
154
a12f801d 155static void gfar_init_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
8a102fe0
AV
156 dma_addr_t buf)
157{
8a102fe0
AV
158 u32 lstatus;
159
160 bdp->bufPtr = buf;
161
162 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
a12f801d 163 if (bdp == rx_queue->rx_bd_base + rx_queue->rx_ring_size - 1)
8a102fe0
AV
164 lstatus |= BD_LFLAG(RXBD_WRAP);
165
166 eieio();
167
168 bdp->lstatus = lstatus;
169}
170
8728327e 171static int gfar_init_bds(struct net_device *ndev)
826aa4a0 172{
8728327e 173 struct gfar_private *priv = netdev_priv(ndev);
a12f801d
SG
174 struct gfar_priv_tx_q *tx_queue = NULL;
175 struct gfar_priv_rx_q *rx_queue = NULL;
826aa4a0
AV
176 struct txbd8 *txbdp;
177 struct rxbd8 *rxbdp;
fba4ed03 178 int i, j;
a12f801d 179
fba4ed03
SG
180 for (i = 0; i < priv->num_tx_queues; i++) {
181 tx_queue = priv->tx_queue[i];
182 /* Initialize some variables in our dev structure */
183 tx_queue->num_txbdfree = tx_queue->tx_ring_size;
184 tx_queue->dirty_tx = tx_queue->tx_bd_base;
185 tx_queue->cur_tx = tx_queue->tx_bd_base;
186 tx_queue->skb_curtx = 0;
187 tx_queue->skb_dirtytx = 0;
188
189 /* Initialize Transmit Descriptor Ring */
190 txbdp = tx_queue->tx_bd_base;
191 for (j = 0; j < tx_queue->tx_ring_size; j++) {
192 txbdp->lstatus = 0;
193 txbdp->bufPtr = 0;
194 txbdp++;
195 }
8728327e 196
fba4ed03
SG
197 /* Set the last descriptor in the ring to indicate wrap */
198 txbdp--;
199 txbdp->status |= TXBD_WRAP;
8728327e
AV
200 }
201
fba4ed03
SG
202 for (i = 0; i < priv->num_rx_queues; i++) {
203 rx_queue = priv->rx_queue[i];
204 rx_queue->cur_rx = rx_queue->rx_bd_base;
205 rx_queue->skb_currx = 0;
206 rxbdp = rx_queue->rx_bd_base;
8728327e 207
fba4ed03
SG
208 for (j = 0; j < rx_queue->rx_ring_size; j++) {
209 struct sk_buff *skb = rx_queue->rx_skbuff[j];
8728327e 210
fba4ed03
SG
211 if (skb) {
212 gfar_init_rxbdp(rx_queue, rxbdp,
213 rxbdp->bufPtr);
214 } else {
215 skb = gfar_new_skb(ndev);
216 if (!skb) {
59deab26 217 netdev_err(ndev, "Can't allocate RX buffers\n");
fba4ed03
SG
218 goto err_rxalloc_fail;
219 }
220 rx_queue->rx_skbuff[j] = skb;
221
222 gfar_new_rxbdp(rx_queue, rxbdp, skb);
8728327e 223 }
8728327e 224
fba4ed03 225 rxbdp++;
8728327e
AV
226 }
227
8728327e
AV
228 }
229
230 return 0;
fba4ed03
SG
231
232err_rxalloc_fail:
233 free_skb_resources(priv);
234 return -ENOMEM;
8728327e
AV
235}
236
237static int gfar_alloc_skb_resources(struct net_device *ndev)
238{
826aa4a0 239 void *vaddr;
fba4ed03
SG
240 dma_addr_t addr;
241 int i, j, k;
826aa4a0
AV
242 struct gfar_private *priv = netdev_priv(ndev);
243 struct device *dev = &priv->ofdev->dev;
a12f801d
SG
244 struct gfar_priv_tx_q *tx_queue = NULL;
245 struct gfar_priv_rx_q *rx_queue = NULL;
246
fba4ed03
SG
247 priv->total_tx_ring_size = 0;
248 for (i = 0; i < priv->num_tx_queues; i++)
249 priv->total_tx_ring_size += priv->tx_queue[i]->tx_ring_size;
250
251 priv->total_rx_ring_size = 0;
252 for (i = 0; i < priv->num_rx_queues; i++)
253 priv->total_rx_ring_size += priv->rx_queue[i]->rx_ring_size;
826aa4a0
AV
254
255 /* Allocate memory for the buffer descriptors */
8728327e 256 vaddr = dma_alloc_coherent(dev,
fba4ed03
SG
257 sizeof(struct txbd8) * priv->total_tx_ring_size +
258 sizeof(struct rxbd8) * priv->total_rx_ring_size,
259 &addr, GFP_KERNEL);
826aa4a0 260 if (!vaddr) {
59deab26
JP
261 netif_err(priv, ifup, ndev,
262 "Could not allocate buffer descriptors!\n");
826aa4a0
AV
263 return -ENOMEM;
264 }
265
fba4ed03
SG
266 for (i = 0; i < priv->num_tx_queues; i++) {
267 tx_queue = priv->tx_queue[i];
43d620c8 268 tx_queue->tx_bd_base = vaddr;
fba4ed03
SG
269 tx_queue->tx_bd_dma_base = addr;
270 tx_queue->dev = ndev;
271 /* enet DMA only understands physical addresses */
272 addr += sizeof(struct txbd8) *tx_queue->tx_ring_size;
273 vaddr += sizeof(struct txbd8) *tx_queue->tx_ring_size;
274 }
826aa4a0 275
826aa4a0 276 /* Start the rx descriptor ring where the tx ring leaves off */
fba4ed03
SG
277 for (i = 0; i < priv->num_rx_queues; i++) {
278 rx_queue = priv->rx_queue[i];
43d620c8 279 rx_queue->rx_bd_base = vaddr;
fba4ed03
SG
280 rx_queue->rx_bd_dma_base = addr;
281 rx_queue->dev = ndev;
282 addr += sizeof (struct rxbd8) * rx_queue->rx_ring_size;
283 vaddr += sizeof (struct rxbd8) * rx_queue->rx_ring_size;
284 }
826aa4a0
AV
285
286 /* Setup the skbuff rings */
fba4ed03
SG
287 for (i = 0; i < priv->num_tx_queues; i++) {
288 tx_queue = priv->tx_queue[i];
289 tx_queue->tx_skbuff = kmalloc(sizeof(*tx_queue->tx_skbuff) *
a12f801d 290 tx_queue->tx_ring_size, GFP_KERNEL);
fba4ed03 291 if (!tx_queue->tx_skbuff) {
59deab26
JP
292 netif_err(priv, ifup, ndev,
293 "Could not allocate tx_skbuff\n");
fba4ed03
SG
294 goto cleanup;
295 }
826aa4a0 296
fba4ed03
SG
297 for (k = 0; k < tx_queue->tx_ring_size; k++)
298 tx_queue->tx_skbuff[k] = NULL;
299 }
826aa4a0 300
fba4ed03
SG
301 for (i = 0; i < priv->num_rx_queues; i++) {
302 rx_queue = priv->rx_queue[i];
303 rx_queue->rx_skbuff = kmalloc(sizeof(*rx_queue->rx_skbuff) *
a12f801d 304 rx_queue->rx_ring_size, GFP_KERNEL);
826aa4a0 305
fba4ed03 306 if (!rx_queue->rx_skbuff) {
59deab26
JP
307 netif_err(priv, ifup, ndev,
308 "Could not allocate rx_skbuff\n");
fba4ed03
SG
309 goto cleanup;
310 }
311
312 for (j = 0; j < rx_queue->rx_ring_size; j++)
313 rx_queue->rx_skbuff[j] = NULL;
314 }
826aa4a0 315
8728327e
AV
316 if (gfar_init_bds(ndev))
317 goto cleanup;
826aa4a0
AV
318
319 return 0;
320
321cleanup:
322 free_skb_resources(priv);
323 return -ENOMEM;
324}
325
fba4ed03
SG
326static void gfar_init_tx_rx_base(struct gfar_private *priv)
327{
46ceb60c 328 struct gfar __iomem *regs = priv->gfargrp[0].regs;
18294ad1 329 u32 __iomem *baddr;
fba4ed03
SG
330 int i;
331
332 baddr = &regs->tbase0;
333 for(i = 0; i < priv->num_tx_queues; i++) {
334 gfar_write(baddr, priv->tx_queue[i]->tx_bd_dma_base);
335 baddr += 2;
336 }
337
338 baddr = &regs->rbase0;
339 for(i = 0; i < priv->num_rx_queues; i++) {
340 gfar_write(baddr, priv->rx_queue[i]->rx_bd_dma_base);
341 baddr += 2;
342 }
343}
344
826aa4a0
AV
345static void gfar_init_mac(struct net_device *ndev)
346{
347 struct gfar_private *priv = netdev_priv(ndev);
46ceb60c 348 struct gfar __iomem *regs = priv->gfargrp[0].regs;
826aa4a0
AV
349 u32 rctrl = 0;
350 u32 tctrl = 0;
351 u32 attrs = 0;
352
fba4ed03
SG
353 /* write the tx/rx base registers */
354 gfar_init_tx_rx_base(priv);
32c513bc 355
826aa4a0 356 /* Configure the coalescing support */
46ceb60c 357 gfar_configure_coalescing(priv, 0xFF, 0xFF);
fba4ed03 358
1ccb8389 359 if (priv->rx_filer_enable) {
fba4ed03 360 rctrl |= RCTRL_FILREN;
1ccb8389
SG
361 /* Program the RIR0 reg with the required distribution */
362 gfar_write(&regs->rir0, DEFAULT_RIR0);
363 }
826aa4a0 364
8b3afe95 365 if (ndev->features & NETIF_F_RXCSUM)
826aa4a0
AV
366 rctrl |= RCTRL_CHECKSUMMING;
367
368 if (priv->extended_hash) {
369 rctrl |= RCTRL_EXTHASH;
370
371 gfar_clear_exact_match(ndev);
372 rctrl |= RCTRL_EMEN;
373 }
374
375 if (priv->padding) {
376 rctrl &= ~RCTRL_PAL_MASK;
377 rctrl |= RCTRL_PADDING(priv->padding);
378 }
379
cc772ab7
MR
380 /* Insert receive time stamps into padding alignment bytes */
381 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER) {
382 rctrl &= ~RCTRL_PAL_MASK;
97553f7f 383 rctrl |= RCTRL_PADDING(8);
cc772ab7
MR
384 priv->padding = 8;
385 }
386
97553f7f
MR
387 /* Enable HW time stamping if requested from user space */
388 if (priv->hwts_rx_en)
389 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE;
390
826aa4a0 391 /* keep vlan related bits if it's enabled */
87c288c6 392 if (ndev->features & NETIF_F_HW_VLAN_TX)
826aa4a0 393 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
87c288c6
JP
394
395 if (ndev->features & NETIF_F_HW_VLAN_RX)
826aa4a0 396 tctrl |= TCTRL_VLINS;
826aa4a0
AV
397
398 /* Init rctrl based on our settings */
399 gfar_write(&regs->rctrl, rctrl);
400
401 if (ndev->features & NETIF_F_IP_CSUM)
402 tctrl |= TCTRL_INIT_CSUM;
403
fba4ed03
SG
404 tctrl |= TCTRL_TXSCHED_PRIO;
405
826aa4a0
AV
406 gfar_write(&regs->tctrl, tctrl);
407
408 /* Set the extraction length and index */
409 attrs = ATTRELI_EL(priv->rx_stash_size) |
410 ATTRELI_EI(priv->rx_stash_index);
411
412 gfar_write(&regs->attreli, attrs);
413
414 /* Start with defaults, and add stashing or locking
415 * depending on the approprate variables */
416 attrs = ATTR_INIT_SETTINGS;
417
418 if (priv->bd_stash_en)
419 attrs |= ATTR_BDSTASH;
420
421 if (priv->rx_stash_size != 0)
422 attrs |= ATTR_BUFSTASH;
423
424 gfar_write(&regs->attr, attrs);
425
426 gfar_write(&regs->fifo_tx_thr, priv->fifo_threshold);
427 gfar_write(&regs->fifo_tx_starve, priv->fifo_starve);
428 gfar_write(&regs->fifo_tx_starve_shutoff, priv->fifo_starve_off);
429}
430
a7f38041
SG
431static struct net_device_stats *gfar_get_stats(struct net_device *dev)
432{
433 struct gfar_private *priv = netdev_priv(dev);
a7f38041
SG
434 unsigned long rx_packets = 0, rx_bytes = 0, rx_dropped = 0;
435 unsigned long tx_packets = 0, tx_bytes = 0;
436 int i = 0;
437
438 for (i = 0; i < priv->num_rx_queues; i++) {
439 rx_packets += priv->rx_queue[i]->stats.rx_packets;
440 rx_bytes += priv->rx_queue[i]->stats.rx_bytes;
441 rx_dropped += priv->rx_queue[i]->stats.rx_dropped;
442 }
443
444 dev->stats.rx_packets = rx_packets;
445 dev->stats.rx_bytes = rx_bytes;
446 dev->stats.rx_dropped = rx_dropped;
447
448 for (i = 0; i < priv->num_tx_queues; i++) {
1ac9ad13
ED
449 tx_bytes += priv->tx_queue[i]->stats.tx_bytes;
450 tx_packets += priv->tx_queue[i]->stats.tx_packets;
a7f38041
SG
451 }
452
453 dev->stats.tx_bytes = tx_bytes;
454 dev->stats.tx_packets = tx_packets;
455
456 return &dev->stats;
457}
458
26ccfc37
AF
459static const struct net_device_ops gfar_netdev_ops = {
460 .ndo_open = gfar_enet_open,
461 .ndo_start_xmit = gfar_start_xmit,
462 .ndo_stop = gfar_close,
463 .ndo_change_mtu = gfar_change_mtu,
8b3afe95 464 .ndo_set_features = gfar_set_features,
26ccfc37
AF
465 .ndo_set_multicast_list = gfar_set_multi,
466 .ndo_tx_timeout = gfar_timeout,
467 .ndo_do_ioctl = gfar_ioctl,
a7f38041 468 .ndo_get_stats = gfar_get_stats,
240c102d
BH
469 .ndo_set_mac_address = eth_mac_addr,
470 .ndo_validate_addr = eth_validate_addr,
26ccfc37
AF
471#ifdef CONFIG_NET_POLL_CONTROLLER
472 .ndo_poll_controller = gfar_netpoll,
473#endif
474};
475
fba4ed03
SG
476void lock_rx_qs(struct gfar_private *priv)
477{
478 int i = 0x0;
479
480 for (i = 0; i < priv->num_rx_queues; i++)
481 spin_lock(&priv->rx_queue[i]->rxlock);
482}
483
484void lock_tx_qs(struct gfar_private *priv)
485{
486 int i = 0x0;
487
488 for (i = 0; i < priv->num_tx_queues; i++)
489 spin_lock(&priv->tx_queue[i]->txlock);
490}
491
492void unlock_rx_qs(struct gfar_private *priv)
493{
494 int i = 0x0;
495
496 for (i = 0; i < priv->num_rx_queues; i++)
497 spin_unlock(&priv->rx_queue[i]->rxlock);
498}
499
500void unlock_tx_qs(struct gfar_private *priv)
501{
502 int i = 0x0;
503
504 for (i = 0; i < priv->num_tx_queues; i++)
505 spin_unlock(&priv->tx_queue[i]->txlock);
506}
507
87c288c6
JP
508static bool gfar_is_vlan_on(struct gfar_private *priv)
509{
510 return (priv->ndev->features & NETIF_F_HW_VLAN_RX) ||
511 (priv->ndev->features & NETIF_F_HW_VLAN_TX);
512}
513
7f7f5316
AF
514/* Returns 1 if incoming frames use an FCB */
515static inline int gfar_uses_fcb(struct gfar_private *priv)
0bbaf069 516{
87c288c6
JP
517 return gfar_is_vlan_on(priv) ||
518 (priv->ndev->features & NETIF_F_RXCSUM) ||
cc772ab7 519 (priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER);
0bbaf069 520}
bb40dcbb 521
fba4ed03
SG
522static void free_tx_pointers(struct gfar_private *priv)
523{
524 int i = 0;
525
526 for (i = 0; i < priv->num_tx_queues; i++)
527 kfree(priv->tx_queue[i]);
528}
529
530static void free_rx_pointers(struct gfar_private *priv)
531{
532 int i = 0;
533
534 for (i = 0; i < priv->num_rx_queues; i++)
535 kfree(priv->rx_queue[i]);
536}
537
46ceb60c
SG
538static void unmap_group_regs(struct gfar_private *priv)
539{
540 int i = 0;
541
542 for (i = 0; i < MAXGROUPS; i++)
543 if (priv->gfargrp[i].regs)
544 iounmap(priv->gfargrp[i].regs);
545}
546
547static void disable_napi(struct gfar_private *priv)
548{
549 int i = 0;
550
551 for (i = 0; i < priv->num_grps; i++)
552 napi_disable(&priv->gfargrp[i].napi);
553}
554
555static void enable_napi(struct gfar_private *priv)
556{
557 int i = 0;
558
559 for (i = 0; i < priv->num_grps; i++)
560 napi_enable(&priv->gfargrp[i].napi);
561}
562
563static int gfar_parse_group(struct device_node *np,
564 struct gfar_private *priv, const char *model)
565{
566 u32 *queue_mask;
46ceb60c 567
7ce97d4f 568 priv->gfargrp[priv->num_grps].regs = of_iomap(np, 0);
46ceb60c
SG
569 if (!priv->gfargrp[priv->num_grps].regs)
570 return -ENOMEM;
571
572 priv->gfargrp[priv->num_grps].interruptTransmit =
573 irq_of_parse_and_map(np, 0);
574
575 /* If we aren't the FEC we have multiple interrupts */
576 if (model && strcasecmp(model, "FEC")) {
577 priv->gfargrp[priv->num_grps].interruptReceive =
578 irq_of_parse_and_map(np, 1);
579 priv->gfargrp[priv->num_grps].interruptError =
580 irq_of_parse_and_map(np,2);
28cb6ccd
NK
581 if (priv->gfargrp[priv->num_grps].interruptTransmit == NO_IRQ ||
582 priv->gfargrp[priv->num_grps].interruptReceive == NO_IRQ ||
583 priv->gfargrp[priv->num_grps].interruptError == NO_IRQ)
46ceb60c 584 return -EINVAL;
46ceb60c
SG
585 }
586
587 priv->gfargrp[priv->num_grps].grp_id = priv->num_grps;
588 priv->gfargrp[priv->num_grps].priv = priv;
589 spin_lock_init(&priv->gfargrp[priv->num_grps].grplock);
590 if(priv->mode == MQ_MG_MODE) {
591 queue_mask = (u32 *)of_get_property(np,
592 "fsl,rx-bit-map", NULL);
593 priv->gfargrp[priv->num_grps].rx_bit_map =
594 queue_mask ? *queue_mask :(DEFAULT_MAPPING >> priv->num_grps);
595 queue_mask = (u32 *)of_get_property(np,
596 "fsl,tx-bit-map", NULL);
597 priv->gfargrp[priv->num_grps].tx_bit_map =
598 queue_mask ? *queue_mask : (DEFAULT_MAPPING >> priv->num_grps);
599 } else {
600 priv->gfargrp[priv->num_grps].rx_bit_map = 0xFF;
601 priv->gfargrp[priv->num_grps].tx_bit_map = 0xFF;
602 }
603 priv->num_grps++;
604
605 return 0;
606}
607
2dc11581 608static int gfar_of_init(struct platform_device *ofdev, struct net_device **pdev)
b31a1d8b 609{
b31a1d8b
AF
610 const char *model;
611 const char *ctype;
612 const void *mac_addr;
fba4ed03
SG
613 int err = 0, i;
614 struct net_device *dev = NULL;
615 struct gfar_private *priv = NULL;
61c7a080 616 struct device_node *np = ofdev->dev.of_node;
46ceb60c 617 struct device_node *child = NULL;
4d7902f2
AF
618 const u32 *stash;
619 const u32 *stash_len;
620 const u32 *stash_idx;
fba4ed03
SG
621 unsigned int num_tx_qs, num_rx_qs;
622 u32 *tx_queues, *rx_queues;
b31a1d8b
AF
623
624 if (!np || !of_device_is_available(np))
625 return -ENODEV;
626
fba4ed03
SG
627 /* parse the num of tx and rx queues */
628 tx_queues = (u32 *)of_get_property(np, "fsl,num_tx_queues", NULL);
629 num_tx_qs = tx_queues ? *tx_queues : 1;
630
631 if (num_tx_qs > MAX_TX_QS) {
59deab26
JP
632 pr_err("num_tx_qs(=%d) greater than MAX_TX_QS(=%d)\n",
633 num_tx_qs, MAX_TX_QS);
634 pr_err("Cannot do alloc_etherdev, aborting\n");
fba4ed03
SG
635 return -EINVAL;
636 }
637
638 rx_queues = (u32 *)of_get_property(np, "fsl,num_rx_queues", NULL);
639 num_rx_qs = rx_queues ? *rx_queues : 1;
640
641 if (num_rx_qs > MAX_RX_QS) {
59deab26
JP
642 pr_err("num_rx_qs(=%d) greater than MAX_RX_QS(=%d)\n",
643 num_rx_qs, MAX_RX_QS);
644 pr_err("Cannot do alloc_etherdev, aborting\n");
fba4ed03
SG
645 return -EINVAL;
646 }
647
648 *pdev = alloc_etherdev_mq(sizeof(*priv), num_tx_qs);
649 dev = *pdev;
650 if (NULL == dev)
651 return -ENOMEM;
652
653 priv = netdev_priv(dev);
61c7a080 654 priv->node = ofdev->dev.of_node;
fba4ed03
SG
655 priv->ndev = dev;
656
fba4ed03 657 priv->num_tx_queues = num_tx_qs;
fe069123 658 netif_set_real_num_rx_queues(dev, num_rx_qs);
fba4ed03 659 priv->num_rx_queues = num_rx_qs;
46ceb60c 660 priv->num_grps = 0x0;
b31a1d8b 661
4aa3a715
SP
662 /* Init Rx queue filer rule set linked list*/
663 INIT_LIST_HEAD(&priv->rx_list.list);
664 priv->rx_list.count = 0;
665 mutex_init(&priv->rx_queue_access);
666
b31a1d8b
AF
667 model = of_get_property(np, "model", NULL);
668
46ceb60c
SG
669 for (i = 0; i < MAXGROUPS; i++)
670 priv->gfargrp[i].regs = NULL;
b31a1d8b 671
46ceb60c
SG
672 /* Parse and initialize group specific information */
673 if (of_device_is_compatible(np, "fsl,etsec2")) {
674 priv->mode = MQ_MG_MODE;
675 for_each_child_of_node(np, child) {
676 err = gfar_parse_group(child, priv, model);
677 if (err)
678 goto err_grp_init;
b31a1d8b 679 }
46ceb60c
SG
680 } else {
681 priv->mode = SQ_SG_MODE;
682 err = gfar_parse_group(np, priv, model);
683 if(err)
684 goto err_grp_init;
b31a1d8b
AF
685 }
686
fba4ed03
SG
687 for (i = 0; i < priv->num_tx_queues; i++)
688 priv->tx_queue[i] = NULL;
689 for (i = 0; i < priv->num_rx_queues; i++)
690 priv->rx_queue[i] = NULL;
691
692 for (i = 0; i < priv->num_tx_queues; i++) {
de47f072
JP
693 priv->tx_queue[i] = kzalloc(sizeof(struct gfar_priv_tx_q),
694 GFP_KERNEL);
fba4ed03
SG
695 if (!priv->tx_queue[i]) {
696 err = -ENOMEM;
697 goto tx_alloc_failed;
698 }
699 priv->tx_queue[i]->tx_skbuff = NULL;
700 priv->tx_queue[i]->qindex = i;
701 priv->tx_queue[i]->dev = dev;
702 spin_lock_init(&(priv->tx_queue[i]->txlock));
703 }
704
705 for (i = 0; i < priv->num_rx_queues; i++) {
de47f072
JP
706 priv->rx_queue[i] = kzalloc(sizeof(struct gfar_priv_rx_q),
707 GFP_KERNEL);
fba4ed03
SG
708 if (!priv->rx_queue[i]) {
709 err = -ENOMEM;
710 goto rx_alloc_failed;
711 }
712 priv->rx_queue[i]->rx_skbuff = NULL;
713 priv->rx_queue[i]->qindex = i;
714 priv->rx_queue[i]->dev = dev;
715 spin_lock_init(&(priv->rx_queue[i]->rxlock));
716 }
717
718
4d7902f2
AF
719 stash = of_get_property(np, "bd-stash", NULL);
720
a12f801d 721 if (stash) {
4d7902f2
AF
722 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
723 priv->bd_stash_en = 1;
724 }
725
726 stash_len = of_get_property(np, "rx-stash-len", NULL);
727
728 if (stash_len)
729 priv->rx_stash_size = *stash_len;
730
731 stash_idx = of_get_property(np, "rx-stash-idx", NULL);
732
733 if (stash_idx)
734 priv->rx_stash_index = *stash_idx;
735
736 if (stash_len || stash_idx)
737 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
738
b31a1d8b
AF
739 mac_addr = of_get_mac_address(np);
740 if (mac_addr)
741 memcpy(dev->dev_addr, mac_addr, MAC_ADDR_LEN);
742
743 if (model && !strcasecmp(model, "TSEC"))
744 priv->device_flags =
745 FSL_GIANFAR_DEV_HAS_GIGABIT |
746 FSL_GIANFAR_DEV_HAS_COALESCE |
747 FSL_GIANFAR_DEV_HAS_RMON |
748 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
749 if (model && !strcasecmp(model, "eTSEC"))
750 priv->device_flags =
751 FSL_GIANFAR_DEV_HAS_GIGABIT |
752 FSL_GIANFAR_DEV_HAS_COALESCE |
753 FSL_GIANFAR_DEV_HAS_RMON |
754 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
2c2db48a 755 FSL_GIANFAR_DEV_HAS_PADDING |
b31a1d8b
AF
756 FSL_GIANFAR_DEV_HAS_CSUM |
757 FSL_GIANFAR_DEV_HAS_VLAN |
758 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
97553f7f
MR
759 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH |
760 FSL_GIANFAR_DEV_HAS_TIMER;
b31a1d8b
AF
761
762 ctype = of_get_property(np, "phy-connection-type", NULL);
763
764 /* We only care about rgmii-id. The rest are autodetected */
765 if (ctype && !strcmp(ctype, "rgmii-id"))
766 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
767 else
768 priv->interface = PHY_INTERFACE_MODE_MII;
769
770 if (of_get_property(np, "fsl,magic-packet", NULL))
771 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
772
fe192a49 773 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
b31a1d8b
AF
774
775 /* Find the TBI PHY. If it's not there, we don't support SGMII */
fe192a49 776 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
b31a1d8b
AF
777
778 return 0;
779
fba4ed03
SG
780rx_alloc_failed:
781 free_rx_pointers(priv);
782tx_alloc_failed:
783 free_tx_pointers(priv);
46ceb60c
SG
784err_grp_init:
785 unmap_group_regs(priv);
fba4ed03 786 free_netdev(dev);
b31a1d8b
AF
787 return err;
788}
789
cc772ab7
MR
790static int gfar_hwtstamp_ioctl(struct net_device *netdev,
791 struct ifreq *ifr, int cmd)
792{
793 struct hwtstamp_config config;
794 struct gfar_private *priv = netdev_priv(netdev);
795
796 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
797 return -EFAULT;
798
799 /* reserved for future extensions */
800 if (config.flags)
801 return -EINVAL;
802
f0ee7acf
MR
803 switch (config.tx_type) {
804 case HWTSTAMP_TX_OFF:
805 priv->hwts_tx_en = 0;
806 break;
807 case HWTSTAMP_TX_ON:
808 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
809 return -ERANGE;
810 priv->hwts_tx_en = 1;
811 break;
812 default:
cc772ab7 813 return -ERANGE;
f0ee7acf 814 }
cc772ab7
MR
815
816 switch (config.rx_filter) {
817 case HWTSTAMP_FILTER_NONE:
97553f7f
MR
818 if (priv->hwts_rx_en) {
819 stop_gfar(netdev);
820 priv->hwts_rx_en = 0;
821 startup_gfar(netdev);
822 }
cc772ab7
MR
823 break;
824 default:
825 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
826 return -ERANGE;
97553f7f
MR
827 if (!priv->hwts_rx_en) {
828 stop_gfar(netdev);
829 priv->hwts_rx_en = 1;
830 startup_gfar(netdev);
831 }
cc772ab7
MR
832 config.rx_filter = HWTSTAMP_FILTER_ALL;
833 break;
834 }
835
836 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
837 -EFAULT : 0;
838}
839
0faac9f7
CW
840/* Ioctl MII Interface */
841static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
842{
843 struct gfar_private *priv = netdev_priv(dev);
844
845 if (!netif_running(dev))
846 return -EINVAL;
847
cc772ab7
MR
848 if (cmd == SIOCSHWTSTAMP)
849 return gfar_hwtstamp_ioctl(dev, rq, cmd);
850
0faac9f7
CW
851 if (!priv->phydev)
852 return -ENODEV;
853
28b04113 854 return phy_mii_ioctl(priv->phydev, rq, cmd);
0faac9f7
CW
855}
856
fba4ed03
SG
857static unsigned int reverse_bitmap(unsigned int bit_map, unsigned int max_qs)
858{
859 unsigned int new_bit_map = 0x0;
860 int mask = 0x1 << (max_qs - 1), i;
861 for (i = 0; i < max_qs; i++) {
862 if (bit_map & mask)
863 new_bit_map = new_bit_map + (1 << i);
864 mask = mask >> 0x1;
865 }
866 return new_bit_map;
867}
7a8b3372 868
18294ad1
AV
869static u32 cluster_entry_per_class(struct gfar_private *priv, u32 rqfar,
870 u32 class)
7a8b3372
SG
871{
872 u32 rqfpr = FPR_FILER_MASK;
873 u32 rqfcr = 0x0;
874
875 rqfar--;
876 rqfcr = RQFCR_CLE | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
6c43e046
WJB
877 priv->ftp_rqfpr[rqfar] = rqfpr;
878 priv->ftp_rqfcr[rqfar] = rqfcr;
7a8b3372
SG
879 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
880
881 rqfar--;
882 rqfcr = RQFCR_CMP_NOMATCH;
6c43e046
WJB
883 priv->ftp_rqfpr[rqfar] = rqfpr;
884 priv->ftp_rqfcr[rqfar] = rqfcr;
7a8b3372
SG
885 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
886
887 rqfar--;
888 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND;
889 rqfpr = class;
6c43e046
WJB
890 priv->ftp_rqfcr[rqfar] = rqfcr;
891 priv->ftp_rqfpr[rqfar] = rqfpr;
7a8b3372
SG
892 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
893
894 rqfar--;
895 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_MASK | RQFCR_AND;
896 rqfpr = class;
6c43e046
WJB
897 priv->ftp_rqfcr[rqfar] = rqfcr;
898 priv->ftp_rqfpr[rqfar] = rqfpr;
7a8b3372
SG
899 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
900
901 return rqfar;
902}
903
904static void gfar_init_filer_table(struct gfar_private *priv)
905{
906 int i = 0x0;
907 u32 rqfar = MAX_FILER_IDX;
908 u32 rqfcr = 0x0;
909 u32 rqfpr = FPR_FILER_MASK;
910
911 /* Default rule */
912 rqfcr = RQFCR_CMP_MATCH;
6c43e046
WJB
913 priv->ftp_rqfcr[rqfar] = rqfcr;
914 priv->ftp_rqfpr[rqfar] = rqfpr;
7a8b3372
SG
915 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
916
917 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6);
918 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_UDP);
919 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_TCP);
920 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4);
921 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_UDP);
922 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_TCP);
923
85dd08eb 924 /* cur_filer_idx indicated the first non-masked rule */
7a8b3372
SG
925 priv->cur_filer_idx = rqfar;
926
927 /* Rest are masked rules */
928 rqfcr = RQFCR_CMP_NOMATCH;
929 for (i = 0; i < rqfar; i++) {
6c43e046
WJB
930 priv->ftp_rqfcr[i] = rqfcr;
931 priv->ftp_rqfpr[i] = rqfpr;
7a8b3372
SG
932 gfar_write_filer(priv, i, rqfcr, rqfpr);
933 }
934}
935
7d350977
AV
936static void gfar_detect_errata(struct gfar_private *priv)
937{
938 struct device *dev = &priv->ofdev->dev;
939 unsigned int pvr = mfspr(SPRN_PVR);
940 unsigned int svr = mfspr(SPRN_SVR);
941 unsigned int mod = (svr >> 16) & 0xfff6; /* w/o E suffix */
942 unsigned int rev = svr & 0xffff;
943
944 /* MPC8313 Rev 2.0 and higher; All MPC837x */
945 if ((pvr == 0x80850010 && mod == 0x80b0 && rev >= 0x0020) ||
946 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
947 priv->errata |= GFAR_ERRATA_74;
948
deb90eac
AV
949 /* MPC8313 and MPC837x all rev */
950 if ((pvr == 0x80850010 && mod == 0x80b0) ||
951 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
952 priv->errata |= GFAR_ERRATA_76;
953
511d934f
AV
954 /* MPC8313 and MPC837x all rev */
955 if ((pvr == 0x80850010 && mod == 0x80b0) ||
956 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
957 priv->errata |= GFAR_ERRATA_A002;
958
4363c2fd
AD
959 /* MPC8313 Rev < 2.0, MPC8548 rev 2.0 */
960 if ((pvr == 0x80850010 && mod == 0x80b0 && rev < 0x0020) ||
961 (pvr == 0x80210020 && mod == 0x8030 && rev == 0x0020))
962 priv->errata |= GFAR_ERRATA_12;
963
7d350977
AV
964 if (priv->errata)
965 dev_info(dev, "enabled errata workarounds, flags: 0x%x\n",
966 priv->errata);
967}
968
bb40dcbb
AF
969/* Set up the ethernet device structure, private data,
970 * and anything else we need before we start */
74888760 971static int gfar_probe(struct platform_device *ofdev)
1da177e4
LT
972{
973 u32 tempval;
974 struct net_device *dev = NULL;
975 struct gfar_private *priv = NULL;
f4983704 976 struct gfar __iomem *regs = NULL;
46ceb60c 977 int err = 0, i, grp_idx = 0;
c50a5d9a 978 int len_devname;
fba4ed03 979 u32 rstat = 0, tstat = 0, rqueue = 0, tqueue = 0;
46ceb60c 980 u32 isrg = 0;
18294ad1 981 u32 __iomem *baddr;
1da177e4 982
fba4ed03 983 err = gfar_of_init(ofdev, &dev);
1da177e4 984
fba4ed03
SG
985 if (err)
986 return err;
1da177e4
LT
987
988 priv = netdev_priv(dev);
4826857f
KG
989 priv->ndev = dev;
990 priv->ofdev = ofdev;
61c7a080 991 priv->node = ofdev->dev.of_node;
4826857f 992 SET_NETDEV_DEV(dev, &ofdev->dev);
1da177e4 993
d87eb127 994 spin_lock_init(&priv->bflock);
ab939905 995 INIT_WORK(&priv->reset_task, gfar_reset_task);
1da177e4 996
b31a1d8b 997 dev_set_drvdata(&ofdev->dev, priv);
46ceb60c 998 regs = priv->gfargrp[0].regs;
1da177e4 999
7d350977
AV
1000 gfar_detect_errata(priv);
1001
1da177e4
LT
1002 /* Stop the DMA engine now, in case it was running before */
1003 /* (The firmware could have used it, and left it running). */
257d938a 1004 gfar_halt(dev);
1da177e4
LT
1005
1006 /* Reset MAC layer */
f4983704 1007 gfar_write(&regs->maccfg1, MACCFG1_SOFT_RESET);
1da177e4 1008
b98ac702
AF
1009 /* We need to delay at least 3 TX clocks */
1010 udelay(2);
1011
1da177e4 1012 tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
f4983704 1013 gfar_write(&regs->maccfg1, tempval);
1da177e4
LT
1014
1015 /* Initialize MACCFG2. */
7d350977
AV
1016 tempval = MACCFG2_INIT_SETTINGS;
1017 if (gfar_has_errata(priv, GFAR_ERRATA_74))
1018 tempval |= MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK;
1019 gfar_write(&regs->maccfg2, tempval);
1da177e4
LT
1020
1021 /* Initialize ECNTRL */
f4983704 1022 gfar_write(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
1da177e4 1023
1da177e4 1024 /* Set the dev->base_addr to the gfar reg region */
f4983704 1025 dev->base_addr = (unsigned long) regs;
1da177e4 1026
b31a1d8b 1027 SET_NETDEV_DEV(dev, &ofdev->dev);
1da177e4
LT
1028
1029 /* Fill in the dev structure */
1da177e4 1030 dev->watchdog_timeo = TX_TIMEOUT;
1da177e4 1031 dev->mtu = 1500;
26ccfc37 1032 dev->netdev_ops = &gfar_netdev_ops;
0bbaf069
KG
1033 dev->ethtool_ops = &gfar_ethtool_ops;
1034
fba4ed03 1035 /* Register for napi ...We are registering NAPI for each grp */
46ceb60c
SG
1036 for (i = 0; i < priv->num_grps; i++)
1037 netif_napi_add(dev, &priv->gfargrp[i].napi, gfar_poll, GFAR_DEV_WEIGHT);
a12f801d 1038
b31a1d8b 1039 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
8b3afe95
MM
1040 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
1041 NETIF_F_RXCSUM;
1042 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG |
1043 NETIF_F_RXCSUM | NETIF_F_HIGHDMA;
1044 }
0bbaf069 1045
87c288c6
JP
1046 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) {
1047 dev->hw_features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
0bbaf069 1048 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
87c288c6 1049 }
0bbaf069 1050
b31a1d8b 1051 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
0bbaf069
KG
1052 priv->extended_hash = 1;
1053 priv->hash_width = 9;
1054
f4983704
SG
1055 priv->hash_regs[0] = &regs->igaddr0;
1056 priv->hash_regs[1] = &regs->igaddr1;
1057 priv->hash_regs[2] = &regs->igaddr2;
1058 priv->hash_regs[3] = &regs->igaddr3;
1059 priv->hash_regs[4] = &regs->igaddr4;
1060 priv->hash_regs[5] = &regs->igaddr5;
1061 priv->hash_regs[6] = &regs->igaddr6;
1062 priv->hash_regs[7] = &regs->igaddr7;
1063 priv->hash_regs[8] = &regs->gaddr0;
1064 priv->hash_regs[9] = &regs->gaddr1;
1065 priv->hash_regs[10] = &regs->gaddr2;
1066 priv->hash_regs[11] = &regs->gaddr3;
1067 priv->hash_regs[12] = &regs->gaddr4;
1068 priv->hash_regs[13] = &regs->gaddr5;
1069 priv->hash_regs[14] = &regs->gaddr6;
1070 priv->hash_regs[15] = &regs->gaddr7;
0bbaf069
KG
1071
1072 } else {
1073 priv->extended_hash = 0;
1074 priv->hash_width = 8;
1075
f4983704
SG
1076 priv->hash_regs[0] = &regs->gaddr0;
1077 priv->hash_regs[1] = &regs->gaddr1;
1078 priv->hash_regs[2] = &regs->gaddr2;
1079 priv->hash_regs[3] = &regs->gaddr3;
1080 priv->hash_regs[4] = &regs->gaddr4;
1081 priv->hash_regs[5] = &regs->gaddr5;
1082 priv->hash_regs[6] = &regs->gaddr6;
1083 priv->hash_regs[7] = &regs->gaddr7;
0bbaf069
KG
1084 }
1085
b31a1d8b 1086 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_PADDING)
0bbaf069
KG
1087 priv->padding = DEFAULT_PADDING;
1088 else
1089 priv->padding = 0;
1090
cc772ab7
MR
1091 if (dev->features & NETIF_F_IP_CSUM ||
1092 priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
0bbaf069 1093 dev->hard_header_len += GMAC_FCB_LEN;
1da177e4 1094
46ceb60c
SG
1095 /* Program the isrg regs only if number of grps > 1 */
1096 if (priv->num_grps > 1) {
1097 baddr = &regs->isrg0;
1098 for (i = 0; i < priv->num_grps; i++) {
1099 isrg |= (priv->gfargrp[i].rx_bit_map << ISRG_SHIFT_RX);
1100 isrg |= (priv->gfargrp[i].tx_bit_map << ISRG_SHIFT_TX);
1101 gfar_write(baddr, isrg);
1102 baddr++;
1103 isrg = 0x0;
1104 }
1105 }
1106
fba4ed03 1107 /* Need to reverse the bit maps as bit_map's MSB is q0
984b3f57 1108 * but, for_each_set_bit parses from right to left, which
fba4ed03 1109 * basically reverses the queue numbers */
46ceb60c
SG
1110 for (i = 0; i< priv->num_grps; i++) {
1111 priv->gfargrp[i].tx_bit_map = reverse_bitmap(
1112 priv->gfargrp[i].tx_bit_map, MAX_TX_QS);
1113 priv->gfargrp[i].rx_bit_map = reverse_bitmap(
1114 priv->gfargrp[i].rx_bit_map, MAX_RX_QS);
1115 }
1116
1117 /* Calculate RSTAT, TSTAT, RQUEUE and TQUEUE values,
1118 * also assign queues to groups */
1119 for (grp_idx = 0; grp_idx < priv->num_grps; grp_idx++) {
1120 priv->gfargrp[grp_idx].num_rx_queues = 0x0;
984b3f57 1121 for_each_set_bit(i, &priv->gfargrp[grp_idx].rx_bit_map,
46ceb60c
SG
1122 priv->num_rx_queues) {
1123 priv->gfargrp[grp_idx].num_rx_queues++;
1124 priv->rx_queue[i]->grp = &priv->gfargrp[grp_idx];
1125 rstat = rstat | (RSTAT_CLEAR_RHALT >> i);
1126 rqueue = rqueue | ((RQUEUE_EN0 | RQUEUE_EX0) >> i);
1127 }
1128 priv->gfargrp[grp_idx].num_tx_queues = 0x0;
984b3f57 1129 for_each_set_bit(i, &priv->gfargrp[grp_idx].tx_bit_map,
46ceb60c
SG
1130 priv->num_tx_queues) {
1131 priv->gfargrp[grp_idx].num_tx_queues++;
1132 priv->tx_queue[i]->grp = &priv->gfargrp[grp_idx];
1133 tstat = tstat | (TSTAT_CLEAR_THALT >> i);
1134 tqueue = tqueue | (TQUEUE_EN0 >> i);
1135 }
1136 priv->gfargrp[grp_idx].rstat = rstat;
1137 priv->gfargrp[grp_idx].tstat = tstat;
1138 rstat = tstat =0;
fba4ed03 1139 }
fba4ed03
SG
1140
1141 gfar_write(&regs->rqueue, rqueue);
1142 gfar_write(&regs->tqueue, tqueue);
1143
1da177e4 1144 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
1da177e4 1145
a12f801d 1146 /* Initializing some of the rx/tx queue level parameters */
fba4ed03
SG
1147 for (i = 0; i < priv->num_tx_queues; i++) {
1148 priv->tx_queue[i]->tx_ring_size = DEFAULT_TX_RING_SIZE;
1149 priv->tx_queue[i]->num_txbdfree = DEFAULT_TX_RING_SIZE;
1150 priv->tx_queue[i]->txcoalescing = DEFAULT_TX_COALESCE;
1151 priv->tx_queue[i]->txic = DEFAULT_TXIC;
1152 }
a12f801d 1153
fba4ed03
SG
1154 for (i = 0; i < priv->num_rx_queues; i++) {
1155 priv->rx_queue[i]->rx_ring_size = DEFAULT_RX_RING_SIZE;
1156 priv->rx_queue[i]->rxcoalescing = DEFAULT_RX_COALESCE;
1157 priv->rx_queue[i]->rxic = DEFAULT_RXIC;
1158 }
1da177e4 1159
4aa3a715
SP
1160 /* always enable rx filer*/
1161 priv->rx_filer_enable = 1;
0bbaf069
KG
1162 /* Enable most messages by default */
1163 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
1164
d3eab82b
TP
1165 /* Carrier starts down, phylib will bring it up */
1166 netif_carrier_off(dev);
1167
1da177e4
LT
1168 err = register_netdev(dev);
1169
1170 if (err) {
59deab26 1171 pr_err("%s: Cannot register net device, aborting\n", dev->name);
1da177e4
LT
1172 goto register_fail;
1173 }
1174
2884e5cc
AV
1175 device_init_wakeup(&dev->dev,
1176 priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
1177
c50a5d9a
DH
1178 /* fill out IRQ number and name fields */
1179 len_devname = strlen(dev->name);
46ceb60c
SG
1180 for (i = 0; i < priv->num_grps; i++) {
1181 strncpy(&priv->gfargrp[i].int_name_tx[0], dev->name,
1182 len_devname);
1183 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
1184 strncpy(&priv->gfargrp[i].int_name_tx[len_devname],
1185 "_g", sizeof("_g"));
1186 priv->gfargrp[i].int_name_tx[
1187 strlen(priv->gfargrp[i].int_name_tx)] = i+48;
1188 strncpy(&priv->gfargrp[i].int_name_tx[strlen(
1189 priv->gfargrp[i].int_name_tx)],
1190 "_tx", sizeof("_tx") + 1);
1191
1192 strncpy(&priv->gfargrp[i].int_name_rx[0], dev->name,
1193 len_devname);
1194 strncpy(&priv->gfargrp[i].int_name_rx[len_devname],
1195 "_g", sizeof("_g"));
1196 priv->gfargrp[i].int_name_rx[
1197 strlen(priv->gfargrp[i].int_name_rx)] = i+48;
1198 strncpy(&priv->gfargrp[i].int_name_rx[strlen(
1199 priv->gfargrp[i].int_name_rx)],
1200 "_rx", sizeof("_rx") + 1);
1201
1202 strncpy(&priv->gfargrp[i].int_name_er[0], dev->name,
1203 len_devname);
1204 strncpy(&priv->gfargrp[i].int_name_er[len_devname],
1205 "_g", sizeof("_g"));
1206 priv->gfargrp[i].int_name_er[strlen(
1207 priv->gfargrp[i].int_name_er)] = i+48;
1208 strncpy(&priv->gfargrp[i].int_name_er[strlen(\
1209 priv->gfargrp[i].int_name_er)],
1210 "_er", sizeof("_er") + 1);
1211 } else
1212 priv->gfargrp[i].int_name_tx[len_devname] = '\0';
1213 }
c50a5d9a 1214
7a8b3372
SG
1215 /* Initialize the filer table */
1216 gfar_init_filer_table(priv);
1217
7f7f5316
AF
1218 /* Create all the sysfs files */
1219 gfar_init_sysfs(dev);
1220
1da177e4 1221 /* Print out the device info */
59deab26 1222 netdev_info(dev, "mac: %pM\n", dev->dev_addr);
1da177e4
LT
1223
1224 /* Even more device info helps when determining which kernel */
7f7f5316 1225 /* provided which set of benchmarks. */
59deab26 1226 netdev_info(dev, "Running with NAPI enabled\n");
fba4ed03 1227 for (i = 0; i < priv->num_rx_queues; i++)
59deab26
JP
1228 netdev_info(dev, "RX BD ring size for Q[%d]: %d\n",
1229 i, priv->rx_queue[i]->rx_ring_size);
fba4ed03 1230 for(i = 0; i < priv->num_tx_queues; i++)
59deab26
JP
1231 netdev_info(dev, "TX BD ring size for Q[%d]: %d\n",
1232 i, priv->tx_queue[i]->tx_ring_size);
1da177e4
LT
1233
1234 return 0;
1235
1236register_fail:
46ceb60c 1237 unmap_group_regs(priv);
fba4ed03
SG
1238 free_tx_pointers(priv);
1239 free_rx_pointers(priv);
fe192a49
GL
1240 if (priv->phy_node)
1241 of_node_put(priv->phy_node);
1242 if (priv->tbi_node)
1243 of_node_put(priv->tbi_node);
1da177e4 1244 free_netdev(dev);
bb40dcbb 1245 return err;
1da177e4
LT
1246}
1247
2dc11581 1248static int gfar_remove(struct platform_device *ofdev)
1da177e4 1249{
b31a1d8b 1250 struct gfar_private *priv = dev_get_drvdata(&ofdev->dev);
1da177e4 1251
fe192a49
GL
1252 if (priv->phy_node)
1253 of_node_put(priv->phy_node);
1254 if (priv->tbi_node)
1255 of_node_put(priv->tbi_node);
1256
b31a1d8b 1257 dev_set_drvdata(&ofdev->dev, NULL);
1da177e4 1258
d9d8e041 1259 unregister_netdev(priv->ndev);
46ceb60c 1260 unmap_group_regs(priv);
4826857f 1261 free_netdev(priv->ndev);
1da177e4
LT
1262
1263 return 0;
1264}
1265
d87eb127 1266#ifdef CONFIG_PM
be926fc4
AV
1267
1268static int gfar_suspend(struct device *dev)
d87eb127 1269{
be926fc4
AV
1270 struct gfar_private *priv = dev_get_drvdata(dev);
1271 struct net_device *ndev = priv->ndev;
46ceb60c 1272 struct gfar __iomem *regs = priv->gfargrp[0].regs;
d87eb127
SW
1273 unsigned long flags;
1274 u32 tempval;
1275
1276 int magic_packet = priv->wol_en &&
b31a1d8b 1277 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
d87eb127 1278
be926fc4 1279 netif_device_detach(ndev);
d87eb127 1280
be926fc4 1281 if (netif_running(ndev)) {
fba4ed03
SG
1282
1283 local_irq_save(flags);
1284 lock_tx_qs(priv);
1285 lock_rx_qs(priv);
d87eb127 1286
be926fc4 1287 gfar_halt_nodisable(ndev);
d87eb127
SW
1288
1289 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
f4983704 1290 tempval = gfar_read(&regs->maccfg1);
d87eb127
SW
1291
1292 tempval &= ~MACCFG1_TX_EN;
1293
1294 if (!magic_packet)
1295 tempval &= ~MACCFG1_RX_EN;
1296
f4983704 1297 gfar_write(&regs->maccfg1, tempval);
d87eb127 1298
fba4ed03
SG
1299 unlock_rx_qs(priv);
1300 unlock_tx_qs(priv);
1301 local_irq_restore(flags);
d87eb127 1302
46ceb60c 1303 disable_napi(priv);
d87eb127
SW
1304
1305 if (magic_packet) {
1306 /* Enable interrupt on Magic Packet */
f4983704 1307 gfar_write(&regs->imask, IMASK_MAG);
d87eb127
SW
1308
1309 /* Enable Magic Packet mode */
f4983704 1310 tempval = gfar_read(&regs->maccfg2);
d87eb127 1311 tempval |= MACCFG2_MPEN;
f4983704 1312 gfar_write(&regs->maccfg2, tempval);
d87eb127
SW
1313 } else {
1314 phy_stop(priv->phydev);
1315 }
1316 }
1317
1318 return 0;
1319}
1320
be926fc4 1321static int gfar_resume(struct device *dev)
d87eb127 1322{
be926fc4
AV
1323 struct gfar_private *priv = dev_get_drvdata(dev);
1324 struct net_device *ndev = priv->ndev;
46ceb60c 1325 struct gfar __iomem *regs = priv->gfargrp[0].regs;
d87eb127
SW
1326 unsigned long flags;
1327 u32 tempval;
1328 int magic_packet = priv->wol_en &&
b31a1d8b 1329 (priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
d87eb127 1330
be926fc4
AV
1331 if (!netif_running(ndev)) {
1332 netif_device_attach(ndev);
d87eb127
SW
1333 return 0;
1334 }
1335
1336 if (!magic_packet && priv->phydev)
1337 phy_start(priv->phydev);
1338
1339 /* Disable Magic Packet mode, in case something
1340 * else woke us up.
1341 */
fba4ed03
SG
1342 local_irq_save(flags);
1343 lock_tx_qs(priv);
1344 lock_rx_qs(priv);
d87eb127 1345
f4983704 1346 tempval = gfar_read(&regs->maccfg2);
d87eb127 1347 tempval &= ~MACCFG2_MPEN;
f4983704 1348 gfar_write(&regs->maccfg2, tempval);
d87eb127 1349
be926fc4 1350 gfar_start(ndev);
d87eb127 1351
fba4ed03
SG
1352 unlock_rx_qs(priv);
1353 unlock_tx_qs(priv);
1354 local_irq_restore(flags);
d87eb127 1355
be926fc4
AV
1356 netif_device_attach(ndev);
1357
46ceb60c 1358 enable_napi(priv);
be926fc4
AV
1359
1360 return 0;
1361}
1362
1363static int gfar_restore(struct device *dev)
1364{
1365 struct gfar_private *priv = dev_get_drvdata(dev);
1366 struct net_device *ndev = priv->ndev;
1367
1368 if (!netif_running(ndev))
1369 return 0;
1370
1371 gfar_init_bds(ndev);
1372 init_registers(ndev);
1373 gfar_set_mac_address(ndev);
1374 gfar_init_mac(ndev);
1375 gfar_start(ndev);
1376
1377 priv->oldlink = 0;
1378 priv->oldspeed = 0;
1379 priv->oldduplex = -1;
1380
1381 if (priv->phydev)
1382 phy_start(priv->phydev);
d87eb127 1383
be926fc4 1384 netif_device_attach(ndev);
5ea681d4 1385 enable_napi(priv);
d87eb127
SW
1386
1387 return 0;
1388}
be926fc4
AV
1389
1390static struct dev_pm_ops gfar_pm_ops = {
1391 .suspend = gfar_suspend,
1392 .resume = gfar_resume,
1393 .freeze = gfar_suspend,
1394 .thaw = gfar_resume,
1395 .restore = gfar_restore,
1396};
1397
1398#define GFAR_PM_OPS (&gfar_pm_ops)
1399
d87eb127 1400#else
be926fc4
AV
1401
1402#define GFAR_PM_OPS NULL
be926fc4 1403
d87eb127 1404#endif
1da177e4 1405
e8a2b6a4
AF
1406/* Reads the controller's registers to determine what interface
1407 * connects it to the PHY.
1408 */
1409static phy_interface_t gfar_get_interface(struct net_device *dev)
1410{
1411 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 1412 struct gfar __iomem *regs = priv->gfargrp[0].regs;
f4983704
SG
1413 u32 ecntrl;
1414
f4983704 1415 ecntrl = gfar_read(&regs->ecntrl);
e8a2b6a4
AF
1416
1417 if (ecntrl & ECNTRL_SGMII_MODE)
1418 return PHY_INTERFACE_MODE_SGMII;
1419
1420 if (ecntrl & ECNTRL_TBI_MODE) {
1421 if (ecntrl & ECNTRL_REDUCED_MODE)
1422 return PHY_INTERFACE_MODE_RTBI;
1423 else
1424 return PHY_INTERFACE_MODE_TBI;
1425 }
1426
1427 if (ecntrl & ECNTRL_REDUCED_MODE) {
1428 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
1429 return PHY_INTERFACE_MODE_RMII;
7132ab7f 1430 else {
b31a1d8b 1431 phy_interface_t interface = priv->interface;
7132ab7f
AF
1432
1433 /*
1434 * This isn't autodetected right now, so it must
1435 * be set by the device tree or platform code.
1436 */
1437 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
1438 return PHY_INTERFACE_MODE_RGMII_ID;
1439
e8a2b6a4 1440 return PHY_INTERFACE_MODE_RGMII;
7132ab7f 1441 }
e8a2b6a4
AF
1442 }
1443
b31a1d8b 1444 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
e8a2b6a4
AF
1445 return PHY_INTERFACE_MODE_GMII;
1446
1447 return PHY_INTERFACE_MODE_MII;
1448}
1449
1450
bb40dcbb
AF
1451/* Initializes driver's PHY state, and attaches to the PHY.
1452 * Returns 0 on success.
1da177e4
LT
1453 */
1454static int init_phy(struct net_device *dev)
1455{
1456 struct gfar_private *priv = netdev_priv(dev);
bb40dcbb 1457 uint gigabit_support =
b31a1d8b 1458 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
bb40dcbb 1459 SUPPORTED_1000baseT_Full : 0;
e8a2b6a4 1460 phy_interface_t interface;
1da177e4
LT
1461
1462 priv->oldlink = 0;
1463 priv->oldspeed = 0;
1464 priv->oldduplex = -1;
1465
e8a2b6a4
AF
1466 interface = gfar_get_interface(dev);
1467
1db780f8
AV
1468 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
1469 interface);
1470 if (!priv->phydev)
1471 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
1472 interface);
1473 if (!priv->phydev) {
1474 dev_err(&dev->dev, "could not attach to PHY\n");
1475 return -ENODEV;
fe192a49 1476 }
1da177e4 1477
d3c12873
KJ
1478 if (interface == PHY_INTERFACE_MODE_SGMII)
1479 gfar_configure_serdes(dev);
1480
bb40dcbb 1481 /* Remove any features not supported by the controller */
fe192a49
GL
1482 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
1483 priv->phydev->advertising = priv->phydev->supported;
1da177e4
LT
1484
1485 return 0;
1da177e4
LT
1486}
1487
d0313587
PG
1488/*
1489 * Initialize TBI PHY interface for communicating with the
1490 * SERDES lynx PHY on the chip. We communicate with this PHY
1491 * through the MDIO bus on each controller, treating it as a
1492 * "normal" PHY at the address found in the TBIPA register. We assume
1493 * that the TBIPA register is valid. Either the MDIO bus code will set
1494 * it to a value that doesn't conflict with other PHYs on the bus, or the
1495 * value doesn't matter, as there are no other PHYs on the bus.
1496 */
d3c12873
KJ
1497static void gfar_configure_serdes(struct net_device *dev)
1498{
1499 struct gfar_private *priv = netdev_priv(dev);
fe192a49
GL
1500 struct phy_device *tbiphy;
1501
1502 if (!priv->tbi_node) {
1503 dev_warn(&dev->dev, "error: SGMII mode requires that the "
1504 "device tree specify a tbi-handle\n");
1505 return;
1506 }
c132419e 1507
fe192a49
GL
1508 tbiphy = of_phy_find_device(priv->tbi_node);
1509 if (!tbiphy) {
1510 dev_err(&dev->dev, "error: Could not get TBI device\n");
b31a1d8b
AF
1511 return;
1512 }
d3c12873 1513
b31a1d8b
AF
1514 /*
1515 * If the link is already up, we must already be ok, and don't need to
bdb59f94
TP
1516 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1517 * everything for us? Resetting it takes the link down and requires
1518 * several seconds for it to come back.
1519 */
fe192a49 1520 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
b31a1d8b 1521 return;
d3c12873 1522
d0313587 1523 /* Single clk mode, mii mode off(for serdes communication) */
fe192a49 1524 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
d3c12873 1525
fe192a49 1526 phy_write(tbiphy, MII_ADVERTISE,
d3c12873
KJ
1527 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1528 ADVERTISE_1000XPSE_ASYM);
1529
fe192a49 1530 phy_write(tbiphy, MII_BMCR, BMCR_ANENABLE |
d3c12873
KJ
1531 BMCR_ANRESTART | BMCR_FULLDPLX | BMCR_SPEED1000);
1532}
1533
1da177e4
LT
1534static void init_registers(struct net_device *dev)
1535{
1536 struct gfar_private *priv = netdev_priv(dev);
f4983704 1537 struct gfar __iomem *regs = NULL;
46ceb60c 1538 int i = 0;
1da177e4 1539
46ceb60c
SG
1540 for (i = 0; i < priv->num_grps; i++) {
1541 regs = priv->gfargrp[i].regs;
1542 /* Clear IEVENT */
1543 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
1da177e4 1544
46ceb60c
SG
1545 /* Initialize IMASK */
1546 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
1547 }
1da177e4 1548
46ceb60c 1549 regs = priv->gfargrp[0].regs;
1da177e4 1550 /* Init hash registers to zero */
f4983704
SG
1551 gfar_write(&regs->igaddr0, 0);
1552 gfar_write(&regs->igaddr1, 0);
1553 gfar_write(&regs->igaddr2, 0);
1554 gfar_write(&regs->igaddr3, 0);
1555 gfar_write(&regs->igaddr4, 0);
1556 gfar_write(&regs->igaddr5, 0);
1557 gfar_write(&regs->igaddr6, 0);
1558 gfar_write(&regs->igaddr7, 0);
1559
1560 gfar_write(&regs->gaddr0, 0);
1561 gfar_write(&regs->gaddr1, 0);
1562 gfar_write(&regs->gaddr2, 0);
1563 gfar_write(&regs->gaddr3, 0);
1564 gfar_write(&regs->gaddr4, 0);
1565 gfar_write(&regs->gaddr5, 0);
1566 gfar_write(&regs->gaddr6, 0);
1567 gfar_write(&regs->gaddr7, 0);
1da177e4 1568
1da177e4 1569 /* Zero out the rmon mib registers if it has them */
b31a1d8b 1570 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
f4983704 1571 memset_io(&(regs->rmon), 0, sizeof (struct rmon_mib));
1da177e4
LT
1572
1573 /* Mask off the CAM interrupts */
f4983704
SG
1574 gfar_write(&regs->rmon.cam1, 0xffffffff);
1575 gfar_write(&regs->rmon.cam2, 0xffffffff);
1da177e4
LT
1576 }
1577
1578 /* Initialize the max receive buffer length */
f4983704 1579 gfar_write(&regs->mrblr, priv->rx_buffer_size);
1da177e4 1580
1da177e4 1581 /* Initialize the Minimum Frame Length Register */
f4983704 1582 gfar_write(&regs->minflr, MINFLR_INIT_SETTINGS);
1da177e4
LT
1583}
1584
511d934f
AV
1585static int __gfar_is_rx_idle(struct gfar_private *priv)
1586{
1587 u32 res;
1588
1589 /*
1590 * Normaly TSEC should not hang on GRS commands, so we should
1591 * actually wait for IEVENT_GRSC flag.
1592 */
1593 if (likely(!gfar_has_errata(priv, GFAR_ERRATA_A002)))
1594 return 0;
1595
1596 /*
1597 * Read the eTSEC register at offset 0xD1C. If bits 7-14 are
1598 * the same as bits 23-30, the eTSEC Rx is assumed to be idle
1599 * and the Rx can be safely reset.
1600 */
1601 res = gfar_read((void __iomem *)priv->gfargrp[0].regs + 0xd1c);
1602 res &= 0x7f807f80;
1603 if ((res & 0xffff) == (res >> 16))
1604 return 1;
1605
1606 return 0;
1607}
0bbaf069
KG
1608
1609/* Halt the receive and transmit queues */
d87eb127 1610static void gfar_halt_nodisable(struct net_device *dev)
1da177e4
LT
1611{
1612 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 1613 struct gfar __iomem *regs = NULL;
1da177e4 1614 u32 tempval;
46ceb60c 1615 int i = 0;
1da177e4 1616
46ceb60c
SG
1617 for (i = 0; i < priv->num_grps; i++) {
1618 regs = priv->gfargrp[i].regs;
1619 /* Mask all interrupts */
1620 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
1da177e4 1621
46ceb60c
SG
1622 /* Clear all interrupts */
1623 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
1624 }
1da177e4 1625
46ceb60c 1626 regs = priv->gfargrp[0].regs;
1da177e4 1627 /* Stop the DMA, and wait for it to stop */
f4983704 1628 tempval = gfar_read(&regs->dmactrl);
1da177e4
LT
1629 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS))
1630 != (DMACTRL_GRS | DMACTRL_GTS)) {
511d934f
AV
1631 int ret;
1632
1da177e4 1633 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
f4983704 1634 gfar_write(&regs->dmactrl, tempval);
1da177e4 1635
511d934f
AV
1636 do {
1637 ret = spin_event_timeout(((gfar_read(&regs->ievent) &
1638 (IEVENT_GRSC | IEVENT_GTSC)) ==
1639 (IEVENT_GRSC | IEVENT_GTSC)), 1000000, 0);
1640 if (!ret && !(gfar_read(&regs->ievent) & IEVENT_GRSC))
1641 ret = __gfar_is_rx_idle(priv);
1642 } while (!ret);
1da177e4 1643 }
d87eb127 1644}
d87eb127
SW
1645
1646/* Halt the receive and transmit queues */
1647void gfar_halt(struct net_device *dev)
1648{
1649 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 1650 struct gfar __iomem *regs = priv->gfargrp[0].regs;
d87eb127 1651 u32 tempval;
1da177e4 1652
2a54adc3
SW
1653 gfar_halt_nodisable(dev);
1654
1da177e4
LT
1655 /* Disable Rx and Tx */
1656 tempval = gfar_read(&regs->maccfg1);
1657 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
1658 gfar_write(&regs->maccfg1, tempval);
0bbaf069
KG
1659}
1660
46ceb60c
SG
1661static void free_grp_irqs(struct gfar_priv_grp *grp)
1662{
1663 free_irq(grp->interruptError, grp);
1664 free_irq(grp->interruptTransmit, grp);
1665 free_irq(grp->interruptReceive, grp);
1666}
1667
0bbaf069
KG
1668void stop_gfar(struct net_device *dev)
1669{
1670 struct gfar_private *priv = netdev_priv(dev);
0bbaf069 1671 unsigned long flags;
46ceb60c 1672 int i;
0bbaf069 1673
bb40dcbb
AF
1674 phy_stop(priv->phydev);
1675
a12f801d 1676
0bbaf069 1677 /* Lock it down */
fba4ed03
SG
1678 local_irq_save(flags);
1679 lock_tx_qs(priv);
1680 lock_rx_qs(priv);
0bbaf069 1681
0bbaf069 1682 gfar_halt(dev);
1da177e4 1683
fba4ed03
SG
1684 unlock_rx_qs(priv);
1685 unlock_tx_qs(priv);
1686 local_irq_restore(flags);
1da177e4
LT
1687
1688 /* Free the IRQs */
b31a1d8b 1689 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
46ceb60c
SG
1690 for (i = 0; i < priv->num_grps; i++)
1691 free_grp_irqs(&priv->gfargrp[i]);
1da177e4 1692 } else {
46ceb60c
SG
1693 for (i = 0; i < priv->num_grps; i++)
1694 free_irq(priv->gfargrp[i].interruptTransmit,
1695 &priv->gfargrp[i]);
1da177e4
LT
1696 }
1697
1698 free_skb_resources(priv);
1da177e4
LT
1699}
1700
fba4ed03 1701static void free_skb_tx_queue(struct gfar_priv_tx_q *tx_queue)
1da177e4 1702{
1da177e4 1703 struct txbd8 *txbdp;
fba4ed03 1704 struct gfar_private *priv = netdev_priv(tx_queue->dev);
4669bc90 1705 int i, j;
1da177e4 1706
a12f801d 1707 txbdp = tx_queue->tx_bd_base;
1da177e4 1708
a12f801d
SG
1709 for (i = 0; i < tx_queue->tx_ring_size; i++) {
1710 if (!tx_queue->tx_skbuff[i])
4669bc90 1711 continue;
1da177e4 1712
4826857f 1713 dma_unmap_single(&priv->ofdev->dev, txbdp->bufPtr,
4669bc90
DH
1714 txbdp->length, DMA_TO_DEVICE);
1715 txbdp->lstatus = 0;
fba4ed03
SG
1716 for (j = 0; j < skb_shinfo(tx_queue->tx_skbuff[i])->nr_frags;
1717 j++) {
4669bc90 1718 txbdp++;
4826857f 1719 dma_unmap_page(&priv->ofdev->dev, txbdp->bufPtr,
4669bc90 1720 txbdp->length, DMA_TO_DEVICE);
1da177e4 1721 }
ad5da7ab 1722 txbdp++;
a12f801d
SG
1723 dev_kfree_skb_any(tx_queue->tx_skbuff[i]);
1724 tx_queue->tx_skbuff[i] = NULL;
1da177e4 1725 }
a12f801d 1726 kfree(tx_queue->tx_skbuff);
fba4ed03 1727}
1da177e4 1728
fba4ed03
SG
1729static void free_skb_rx_queue(struct gfar_priv_rx_q *rx_queue)
1730{
1731 struct rxbd8 *rxbdp;
1732 struct gfar_private *priv = netdev_priv(rx_queue->dev);
1733 int i;
1da177e4 1734
fba4ed03 1735 rxbdp = rx_queue->rx_bd_base;
1da177e4 1736
a12f801d
SG
1737 for (i = 0; i < rx_queue->rx_ring_size; i++) {
1738 if (rx_queue->rx_skbuff[i]) {
fba4ed03
SG
1739 dma_unmap_single(&priv->ofdev->dev,
1740 rxbdp->bufPtr, priv->rx_buffer_size,
e69edd21 1741 DMA_FROM_DEVICE);
a12f801d
SG
1742 dev_kfree_skb_any(rx_queue->rx_skbuff[i]);
1743 rx_queue->rx_skbuff[i] = NULL;
1da177e4 1744 }
e69edd21
AV
1745 rxbdp->lstatus = 0;
1746 rxbdp->bufPtr = 0;
1747 rxbdp++;
1da177e4 1748 }
a12f801d 1749 kfree(rx_queue->rx_skbuff);
fba4ed03 1750}
e69edd21 1751
fba4ed03
SG
1752/* If there are any tx skbs or rx skbs still around, free them.
1753 * Then free tx_skbuff and rx_skbuff */
1754static void free_skb_resources(struct gfar_private *priv)
1755{
1756 struct gfar_priv_tx_q *tx_queue = NULL;
1757 struct gfar_priv_rx_q *rx_queue = NULL;
1758 int i;
1759
1760 /* Go through all the buffer descriptors and free their data buffers */
1761 for (i = 0; i < priv->num_tx_queues; i++) {
1762 tx_queue = priv->tx_queue[i];
7c0d10d3 1763 if(tx_queue->tx_skbuff)
fba4ed03
SG
1764 free_skb_tx_queue(tx_queue);
1765 }
1766
1767 for (i = 0; i < priv->num_rx_queues; i++) {
1768 rx_queue = priv->rx_queue[i];
7c0d10d3 1769 if(rx_queue->rx_skbuff)
fba4ed03
SG
1770 free_skb_rx_queue(rx_queue);
1771 }
1772
1773 dma_free_coherent(&priv->ofdev->dev,
1774 sizeof(struct txbd8) * priv->total_tx_ring_size +
1775 sizeof(struct rxbd8) * priv->total_rx_ring_size,
1776 priv->tx_queue[0]->tx_bd_base,
1777 priv->tx_queue[0]->tx_bd_dma_base);
7df9c43f 1778 skb_queue_purge(&priv->rx_recycle);
1da177e4
LT
1779}
1780
0bbaf069
KG
1781void gfar_start(struct net_device *dev)
1782{
1783 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 1784 struct gfar __iomem *regs = priv->gfargrp[0].regs;
0bbaf069 1785 u32 tempval;
46ceb60c 1786 int i = 0;
0bbaf069
KG
1787
1788 /* Enable Rx and Tx in MACCFG1 */
1789 tempval = gfar_read(&regs->maccfg1);
1790 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
1791 gfar_write(&regs->maccfg1, tempval);
1792
1793 /* Initialize DMACTRL to have WWR and WOP */
f4983704 1794 tempval = gfar_read(&regs->dmactrl);
0bbaf069 1795 tempval |= DMACTRL_INIT_SETTINGS;
f4983704 1796 gfar_write(&regs->dmactrl, tempval);
0bbaf069 1797
0bbaf069 1798 /* Make sure we aren't stopped */
f4983704 1799 tempval = gfar_read(&regs->dmactrl);
0bbaf069 1800 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
f4983704 1801 gfar_write(&regs->dmactrl, tempval);
0bbaf069 1802
46ceb60c
SG
1803 for (i = 0; i < priv->num_grps; i++) {
1804 regs = priv->gfargrp[i].regs;
1805 /* Clear THLT/RHLT, so that the DMA starts polling now */
1806 gfar_write(&regs->tstat, priv->gfargrp[i].tstat);
1807 gfar_write(&regs->rstat, priv->gfargrp[i].rstat);
1808 /* Unmask the interrupts we look for */
1809 gfar_write(&regs->imask, IMASK_DEFAULT);
1810 }
12dea57b 1811
1ae5dc34 1812 dev->trans_start = jiffies; /* prevent tx timeout */
0bbaf069
KG
1813}
1814
46ceb60c 1815void gfar_configure_coalescing(struct gfar_private *priv,
18294ad1 1816 unsigned long tx_mask, unsigned long rx_mask)
1da177e4 1817{
46ceb60c 1818 struct gfar __iomem *regs = priv->gfargrp[0].regs;
18294ad1 1819 u32 __iomem *baddr;
46ceb60c 1820 int i = 0;
1da177e4 1821
46ceb60c
SG
1822 /* Backward compatible case ---- even if we enable
1823 * multiple queues, there's only single reg to program
1824 */
1825 gfar_write(&regs->txic, 0);
1826 if(likely(priv->tx_queue[0]->txcoalescing))
1827 gfar_write(&regs->txic, priv->tx_queue[0]->txic);
1da177e4 1828
46ceb60c
SG
1829 gfar_write(&regs->rxic, 0);
1830 if(unlikely(priv->rx_queue[0]->rxcoalescing))
1831 gfar_write(&regs->rxic, priv->rx_queue[0]->rxic);
815b97c6 1832
46ceb60c
SG
1833 if (priv->mode == MQ_MG_MODE) {
1834 baddr = &regs->txic0;
984b3f57 1835 for_each_set_bit(i, &tx_mask, priv->num_tx_queues) {
46ceb60c
SG
1836 if (likely(priv->tx_queue[i]->txcoalescing)) {
1837 gfar_write(baddr + i, 0);
1838 gfar_write(baddr + i, priv->tx_queue[i]->txic);
1839 }
1840 }
1841
1842 baddr = &regs->rxic0;
984b3f57 1843 for_each_set_bit(i, &rx_mask, priv->num_rx_queues) {
46ceb60c
SG
1844 if (likely(priv->rx_queue[i]->rxcoalescing)) {
1845 gfar_write(baddr + i, 0);
1846 gfar_write(baddr + i, priv->rx_queue[i]->rxic);
1847 }
1848 }
1849 }
1850}
1851
1852static int register_grp_irqs(struct gfar_priv_grp *grp)
1853{
1854 struct gfar_private *priv = grp->priv;
1855 struct net_device *dev = priv->ndev;
1856 int err;
1da177e4 1857
1da177e4
LT
1858 /* If the device has multiple interrupts, register for
1859 * them. Otherwise, only register for the one */
b31a1d8b 1860 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
0bbaf069 1861 /* Install our interrupt handlers for Error,
1da177e4 1862 * Transmit, and Receive */
46ceb60c
SG
1863 if ((err = request_irq(grp->interruptError, gfar_error, 0,
1864 grp->int_name_er,grp)) < 0) {
59deab26
JP
1865 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
1866 grp->interruptError);
46ceb60c 1867
2145f1af 1868 goto err_irq_fail;
1da177e4
LT
1869 }
1870
46ceb60c
SG
1871 if ((err = request_irq(grp->interruptTransmit, gfar_transmit,
1872 0, grp->int_name_tx, grp)) < 0) {
59deab26
JP
1873 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
1874 grp->interruptTransmit);
1da177e4
LT
1875 goto tx_irq_fail;
1876 }
1877
46ceb60c
SG
1878 if ((err = request_irq(grp->interruptReceive, gfar_receive, 0,
1879 grp->int_name_rx, grp)) < 0) {
59deab26
JP
1880 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
1881 grp->interruptReceive);
1da177e4
LT
1882 goto rx_irq_fail;
1883 }
1884 } else {
46ceb60c
SG
1885 if ((err = request_irq(grp->interruptTransmit, gfar_interrupt, 0,
1886 grp->int_name_tx, grp)) < 0) {
59deab26
JP
1887 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
1888 grp->interruptTransmit);
1da177e4
LT
1889 goto err_irq_fail;
1890 }
1891 }
1892
46ceb60c
SG
1893 return 0;
1894
1895rx_irq_fail:
1896 free_irq(grp->interruptTransmit, grp);
1897tx_irq_fail:
1898 free_irq(grp->interruptError, grp);
1899err_irq_fail:
1900 return err;
1901
1902}
1903
1904/* Bring the controller up and running */
1905int startup_gfar(struct net_device *ndev)
1906{
1907 struct gfar_private *priv = netdev_priv(ndev);
1908 struct gfar __iomem *regs = NULL;
1909 int err, i, j;
1910
1911 for (i = 0; i < priv->num_grps; i++) {
1912 regs= priv->gfargrp[i].regs;
1913 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
1914 }
1915
1916 regs= priv->gfargrp[0].regs;
1917 err = gfar_alloc_skb_resources(ndev);
1918 if (err)
1919 return err;
1920
1921 gfar_init_mac(ndev);
1922
1923 for (i = 0; i < priv->num_grps; i++) {
1924 err = register_grp_irqs(&priv->gfargrp[i]);
1925 if (err) {
1926 for (j = 0; j < i; j++)
1927 free_grp_irqs(&priv->gfargrp[j]);
ff76015f 1928 goto irq_fail;
46ceb60c
SG
1929 }
1930 }
1931
7f7f5316 1932 /* Start the controller */
ccc05c6e 1933 gfar_start(ndev);
1da177e4 1934
826aa4a0
AV
1935 phy_start(priv->phydev);
1936
46ceb60c
SG
1937 gfar_configure_coalescing(priv, 0xFF, 0xFF);
1938
1da177e4
LT
1939 return 0;
1940
46ceb60c 1941irq_fail:
e69edd21 1942 free_skb_resources(priv);
1da177e4
LT
1943 return err;
1944}
1945
1946/* Called when something needs to use the ethernet device */
1947/* Returns 0 for success. */
1948static int gfar_enet_open(struct net_device *dev)
1949{
94e8cc35 1950 struct gfar_private *priv = netdev_priv(dev);
1da177e4
LT
1951 int err;
1952
46ceb60c 1953 enable_napi(priv);
bea3348e 1954
0fd56bb5
AF
1955 skb_queue_head_init(&priv->rx_recycle);
1956
1da177e4
LT
1957 /* Initialize a bunch of registers */
1958 init_registers(dev);
1959
1960 gfar_set_mac_address(dev);
1961
1962 err = init_phy(dev);
1963
a12f801d 1964 if (err) {
46ceb60c 1965 disable_napi(priv);
1da177e4 1966 return err;
bea3348e 1967 }
1da177e4
LT
1968
1969 err = startup_gfar(dev);
db0e8e3f 1970 if (err) {
46ceb60c 1971 disable_napi(priv);
db0e8e3f
AV
1972 return err;
1973 }
1da177e4 1974
fba4ed03 1975 netif_tx_start_all_queues(dev);
1da177e4 1976
2884e5cc
AV
1977 device_set_wakeup_enable(&dev->dev, priv->wol_en);
1978
1da177e4
LT
1979 return err;
1980}
1981
54dc79fe 1982static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
0bbaf069 1983{
54dc79fe 1984 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
6c31d55f
KG
1985
1986 memset(fcb, 0, GMAC_FCB_LEN);
0bbaf069 1987
0bbaf069
KG
1988 return fcb;
1989}
1990
1991static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb)
1992{
7f7f5316 1993 u8 flags = 0;
0bbaf069
KG
1994
1995 /* If we're here, it's a IP packet with a TCP or UDP
1996 * payload. We set it to checksum, using a pseudo-header
1997 * we provide
1998 */
7f7f5316 1999 flags = TXFCB_DEFAULT;
0bbaf069 2000
7f7f5316
AF
2001 /* Tell the controller what the protocol is */
2002 /* And provide the already calculated phcs */
eddc9ec5 2003 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
7f7f5316 2004 flags |= TXFCB_UDP;
4bedb452 2005 fcb->phcs = udp_hdr(skb)->check;
7f7f5316 2006 } else
8da32de5 2007 fcb->phcs = tcp_hdr(skb)->check;
0bbaf069
KG
2008
2009 /* l3os is the distance between the start of the
2010 * frame (skb->data) and the start of the IP hdr.
2011 * l4os is the distance between the start of the
2012 * l3 hdr and the l4 hdr */
bbe735e4 2013 fcb->l3os = (u16)(skb_network_offset(skb) - GMAC_FCB_LEN);
cfe1fc77 2014 fcb->l4os = skb_network_header_len(skb);
0bbaf069 2015
7f7f5316 2016 fcb->flags = flags;
0bbaf069
KG
2017}
2018
7f7f5316 2019void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
0bbaf069 2020{
7f7f5316 2021 fcb->flags |= TXFCB_VLN;
0bbaf069
KG
2022 fcb->vlctl = vlan_tx_tag_get(skb);
2023}
2024
4669bc90
DH
2025static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
2026 struct txbd8 *base, int ring_size)
2027{
2028 struct txbd8 *new_bd = bdp + stride;
2029
2030 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
2031}
2032
2033static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
2034 int ring_size)
2035{
2036 return skip_txbd(bdp, 1, base, ring_size);
2037}
2038
1da177e4
LT
2039/* This is called by the kernel when a frame is ready for transmission. */
2040/* It is pointed to by the dev->hard_start_xmit function pointer */
2041static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
2042{
2043 struct gfar_private *priv = netdev_priv(dev);
a12f801d 2044 struct gfar_priv_tx_q *tx_queue = NULL;
fba4ed03 2045 struct netdev_queue *txq;
f4983704 2046 struct gfar __iomem *regs = NULL;
0bbaf069 2047 struct txfcb *fcb = NULL;
f0ee7acf 2048 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL;
5a5efed4 2049 u32 lstatus;
f0ee7acf 2050 int i, rq = 0, do_tstamp = 0;
4669bc90 2051 u32 bufaddr;
fef6108d 2052 unsigned long flags;
f0ee7acf 2053 unsigned int nr_frags, nr_txbds, length;
fba4ed03 2054
deb90eac
AV
2055 /*
2056 * TOE=1 frames larger than 2500 bytes may see excess delays
2057 * before start of transmission.
2058 */
2059 if (unlikely(gfar_has_errata(priv, GFAR_ERRATA_76) &&
2060 skb->ip_summed == CHECKSUM_PARTIAL &&
2061 skb->len > 2500)) {
2062 int ret;
2063
2064 ret = skb_checksum_help(skb);
2065 if (ret)
2066 return ret;
2067 }
2068
fba4ed03
SG
2069 rq = skb->queue_mapping;
2070 tx_queue = priv->tx_queue[rq];
2071 txq = netdev_get_tx_queue(dev, rq);
a12f801d 2072 base = tx_queue->tx_bd_base;
46ceb60c 2073 regs = tx_queue->grp->regs;
f0ee7acf
MR
2074
2075 /* check if time stamp should be generated */
2244d07b
OH
2076 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
2077 priv->hwts_tx_en))
f0ee7acf 2078 do_tstamp = 1;
4669bc90 2079
5b28beaf
LY
2080 /* make space for additional header when fcb is needed */
2081 if (((skb->ip_summed == CHECKSUM_PARTIAL) ||
eab6d18d 2082 vlan_tx_tag_present(skb) ||
f0ee7acf 2083 unlikely(do_tstamp)) &&
5b28beaf 2084 (skb_headroom(skb) < GMAC_FCB_LEN)) {
54dc79fe
SH
2085 struct sk_buff *skb_new;
2086
2087 skb_new = skb_realloc_headroom(skb, GMAC_FCB_LEN);
2088 if (!skb_new) {
2089 dev->stats.tx_errors++;
bd14ba84 2090 kfree_skb(skb);
54dc79fe
SH
2091 return NETDEV_TX_OK;
2092 }
2093 kfree_skb(skb);
2094 skb = skb_new;
2095 }
2096
4669bc90
DH
2097 /* total number of fragments in the SKB */
2098 nr_frags = skb_shinfo(skb)->nr_frags;
2099
f0ee7acf
MR
2100 /* calculate the required number of TxBDs for this skb */
2101 if (unlikely(do_tstamp))
2102 nr_txbds = nr_frags + 2;
2103 else
2104 nr_txbds = nr_frags + 1;
2105
4669bc90 2106 /* check if there is space to queue this packet */
f0ee7acf 2107 if (nr_txbds > tx_queue->num_txbdfree) {
4669bc90 2108 /* no space, stop the queue */
fba4ed03 2109 netif_tx_stop_queue(txq);
4669bc90 2110 dev->stats.tx_fifo_errors++;
4669bc90
DH
2111 return NETDEV_TX_BUSY;
2112 }
1da177e4
LT
2113
2114 /* Update transmit stats */
1ac9ad13
ED
2115 tx_queue->stats.tx_bytes += skb->len;
2116 tx_queue->stats.tx_packets++;
1da177e4 2117
a12f801d 2118 txbdp = txbdp_start = tx_queue->cur_tx;
f0ee7acf
MR
2119 lstatus = txbdp->lstatus;
2120
2121 /* Time stamp insertion requires one additional TxBD */
2122 if (unlikely(do_tstamp))
2123 txbdp_tstamp = txbdp = next_txbd(txbdp, base,
2124 tx_queue->tx_ring_size);
1da177e4 2125
4669bc90 2126 if (nr_frags == 0) {
f0ee7acf
MR
2127 if (unlikely(do_tstamp))
2128 txbdp_tstamp->lstatus |= BD_LFLAG(TXBD_LAST |
2129 TXBD_INTERRUPT);
2130 else
2131 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
4669bc90
DH
2132 } else {
2133 /* Place the fragment addresses and lengths into the TxBDs */
2134 for (i = 0; i < nr_frags; i++) {
2135 /* Point at the next BD, wrapping as needed */
a12f801d 2136 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
4669bc90
DH
2137
2138 length = skb_shinfo(skb)->frags[i].size;
2139
2140 lstatus = txbdp->lstatus | length |
2141 BD_LFLAG(TXBD_READY);
2142
2143 /* Handle the last BD specially */
2144 if (i == nr_frags - 1)
2145 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
1da177e4 2146
4826857f 2147 bufaddr = dma_map_page(&priv->ofdev->dev,
4669bc90
DH
2148 skb_shinfo(skb)->frags[i].page,
2149 skb_shinfo(skb)->frags[i].page_offset,
2150 length,
2151 DMA_TO_DEVICE);
2152
2153 /* set the TxBD length and buffer pointer */
2154 txbdp->bufPtr = bufaddr;
2155 txbdp->lstatus = lstatus;
2156 }
2157
2158 lstatus = txbdp_start->lstatus;
2159 }
1da177e4 2160
0bbaf069 2161 /* Set up checksumming */
12dea57b 2162 if (CHECKSUM_PARTIAL == skb->ip_summed) {
54dc79fe 2163 fcb = gfar_add_fcb(skb);
4363c2fd
AD
2164 /* as specified by errata */
2165 if (unlikely(gfar_has_errata(priv, GFAR_ERRATA_12)
2166 && ((unsigned long)fcb % 0x20) > 0x18)) {
2167 __skb_pull(skb, GMAC_FCB_LEN);
2168 skb_checksum_help(skb);
2169 } else {
2170 lstatus |= BD_LFLAG(TXBD_TOE);
2171 gfar_tx_checksum(skb, fcb);
2172 }
0bbaf069
KG
2173 }
2174
eab6d18d 2175 if (vlan_tx_tag_present(skb)) {
54dc79fe
SH
2176 if (unlikely(NULL == fcb)) {
2177 fcb = gfar_add_fcb(skb);
5a5efed4 2178 lstatus |= BD_LFLAG(TXBD_TOE);
7f7f5316 2179 }
54dc79fe
SH
2180
2181 gfar_tx_vlan(skb, fcb);
0bbaf069
KG
2182 }
2183
f0ee7acf
MR
2184 /* Setup tx hardware time stamping if requested */
2185 if (unlikely(do_tstamp)) {
2244d07b 2186 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
f0ee7acf
MR
2187 if (fcb == NULL)
2188 fcb = gfar_add_fcb(skb);
2189 fcb->ptp = 1;
2190 lstatus |= BD_LFLAG(TXBD_TOE);
2191 }
2192
4826857f 2193 txbdp_start->bufPtr = dma_map_single(&priv->ofdev->dev, skb->data,
4669bc90 2194 skb_headlen(skb), DMA_TO_DEVICE);
1da177e4 2195
f0ee7acf
MR
2196 /*
2197 * If time stamping is requested one additional TxBD must be set up. The
2198 * first TxBD points to the FCB and must have a data length of
2199 * GMAC_FCB_LEN. The second TxBD points to the actual frame data with
2200 * the full frame length.
2201 */
2202 if (unlikely(do_tstamp)) {
2203 txbdp_tstamp->bufPtr = txbdp_start->bufPtr + GMAC_FCB_LEN;
2204 txbdp_tstamp->lstatus |= BD_LFLAG(TXBD_READY) |
2205 (skb_headlen(skb) - GMAC_FCB_LEN);
2206 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | GMAC_FCB_LEN;
2207 } else {
2208 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
2209 }
1da177e4 2210
a3bc1f11
AV
2211 /*
2212 * We can work in parallel with gfar_clean_tx_ring(), except
2213 * when modifying num_txbdfree. Note that we didn't grab the lock
2214 * when we were reading the num_txbdfree and checking for available
2215 * space, that's because outside of this function it can only grow,
2216 * and once we've got needed space, it cannot suddenly disappear.
2217 *
2218 * The lock also protects us from gfar_error(), which can modify
2219 * regs->tstat and thus retrigger the transfers, which is why we
2220 * also must grab the lock before setting ready bit for the first
2221 * to be transmitted BD.
2222 */
2223 spin_lock_irqsave(&tx_queue->txlock, flags);
2224
4669bc90
DH
2225 /*
2226 * The powerpc-specific eieio() is used, as wmb() has too strong
3b6330ce
SW
2227 * semantics (it requires synchronization between cacheable and
2228 * uncacheable mappings, which eieio doesn't provide and which we
2229 * don't need), thus requiring a more expensive sync instruction. At
2230 * some point, the set of architecture-independent barrier functions
2231 * should be expanded to include weaker barriers.
2232 */
3b6330ce 2233 eieio();
7f7f5316 2234
4669bc90
DH
2235 txbdp_start->lstatus = lstatus;
2236
0eddba52
AV
2237 eieio(); /* force lstatus write before tx_skbuff */
2238
2239 tx_queue->tx_skbuff[tx_queue->skb_curtx] = skb;
2240
4669bc90
DH
2241 /* Update the current skb pointer to the next entry we will use
2242 * (wrapping if necessary) */
a12f801d
SG
2243 tx_queue->skb_curtx = (tx_queue->skb_curtx + 1) &
2244 TX_RING_MOD_MASK(tx_queue->tx_ring_size);
4669bc90 2245
a12f801d 2246 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size);
4669bc90
DH
2247
2248 /* reduce TxBD free count */
f0ee7acf 2249 tx_queue->num_txbdfree -= (nr_txbds);
1da177e4
LT
2250
2251 /* If the next BD still needs to be cleaned up, then the bds
2252 are full. We need to tell the kernel to stop sending us stuff. */
a12f801d 2253 if (!tx_queue->num_txbdfree) {
fba4ed03 2254 netif_tx_stop_queue(txq);
1da177e4 2255
09f75cd7 2256 dev->stats.tx_fifo_errors++;
1da177e4
LT
2257 }
2258
1da177e4 2259 /* Tell the DMA to go go go */
fba4ed03 2260 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT >> tx_queue->qindex);
1da177e4
LT
2261
2262 /* Unlock priv */
a12f801d 2263 spin_unlock_irqrestore(&tx_queue->txlock, flags);
1da177e4 2264
54dc79fe 2265 return NETDEV_TX_OK;
1da177e4
LT
2266}
2267
2268/* Stops the kernel queue, and halts the controller */
2269static int gfar_close(struct net_device *dev)
2270{
2271 struct gfar_private *priv = netdev_priv(dev);
bea3348e 2272
46ceb60c 2273 disable_napi(priv);
bea3348e 2274
ab939905 2275 cancel_work_sync(&priv->reset_task);
1da177e4
LT
2276 stop_gfar(dev);
2277
bb40dcbb
AF
2278 /* Disconnect from the PHY */
2279 phy_disconnect(priv->phydev);
2280 priv->phydev = NULL;
1da177e4 2281
fba4ed03 2282 netif_tx_stop_all_queues(dev);
1da177e4
LT
2283
2284 return 0;
2285}
2286
1da177e4 2287/* Changes the mac address if the controller is not running. */
f162b9d5 2288static int gfar_set_mac_address(struct net_device *dev)
1da177e4 2289{
7f7f5316 2290 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
1da177e4
LT
2291
2292 return 0;
2293}
2294
f3dc1586
SP
2295/* Check if rx parser should be activated */
2296void gfar_check_rx_parser_mode(struct gfar_private *priv)
2297{
2298 struct gfar __iomem *regs;
2299 u32 tempval;
2300
2301 regs = priv->gfargrp[0].regs;
2302
2303 tempval = gfar_read(&regs->rctrl);
2304 /* If parse is no longer required, then disable parser */
2305 if (tempval & RCTRL_REQ_PARSER)
2306 tempval |= RCTRL_PRSDEP_INIT;
2307 else
2308 tempval &= ~RCTRL_PRSDEP_INIT;
2309 gfar_write(&regs->rctrl, tempval);
2310}
2311
0bbaf069 2312/* Enables and disables VLAN insertion/extraction */
87c288c6 2313void gfar_vlan_mode(struct net_device *dev, u32 features)
0bbaf069
KG
2314{
2315 struct gfar_private *priv = netdev_priv(dev);
f4983704 2316 struct gfar __iomem *regs = NULL;
0bbaf069
KG
2317 unsigned long flags;
2318 u32 tempval;
2319
46ceb60c 2320 regs = priv->gfargrp[0].regs;
fba4ed03
SG
2321 local_irq_save(flags);
2322 lock_rx_qs(priv);
0bbaf069 2323
87c288c6 2324 if (features & NETIF_F_HW_VLAN_TX) {
0bbaf069 2325 /* Enable VLAN tag insertion */
f4983704 2326 tempval = gfar_read(&regs->tctrl);
0bbaf069 2327 tempval |= TCTRL_VLINS;
f4983704 2328 gfar_write(&regs->tctrl, tempval);
0bbaf069
KG
2329 } else {
2330 /* Disable VLAN tag insertion */
f4983704 2331 tempval = gfar_read(&regs->tctrl);
0bbaf069 2332 tempval &= ~TCTRL_VLINS;
f4983704 2333 gfar_write(&regs->tctrl, tempval);
87c288c6 2334 }
0bbaf069 2335
87c288c6
JP
2336 if (features & NETIF_F_HW_VLAN_RX) {
2337 /* Enable VLAN tag extraction */
2338 tempval = gfar_read(&regs->rctrl);
2339 tempval |= (RCTRL_VLEX | RCTRL_PRSDEP_INIT);
2340 gfar_write(&regs->rctrl, tempval);
2341 } else {
0bbaf069 2342 /* Disable VLAN tag extraction */
f4983704 2343 tempval = gfar_read(&regs->rctrl);
0bbaf069 2344 tempval &= ~RCTRL_VLEX;
f4983704 2345 gfar_write(&regs->rctrl, tempval);
f3dc1586
SP
2346
2347 gfar_check_rx_parser_mode(priv);
0bbaf069
KG
2348 }
2349
77ecaf2d
DH
2350 gfar_change_mtu(dev, dev->mtu);
2351
fba4ed03
SG
2352 unlock_rx_qs(priv);
2353 local_irq_restore(flags);
0bbaf069
KG
2354}
2355
1da177e4
LT
2356static int gfar_change_mtu(struct net_device *dev, int new_mtu)
2357{
2358 int tempsize, tempval;
2359 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 2360 struct gfar __iomem *regs = priv->gfargrp[0].regs;
1da177e4 2361 int oldsize = priv->rx_buffer_size;
0bbaf069
KG
2362 int frame_size = new_mtu + ETH_HLEN;
2363
87c288c6 2364 if (gfar_is_vlan_on(priv))
faa89577 2365 frame_size += VLAN_HLEN;
0bbaf069 2366
1da177e4 2367 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
59deab26 2368 netif_err(priv, drv, dev, "Invalid MTU setting\n");
1da177e4
LT
2369 return -EINVAL;
2370 }
2371
77ecaf2d
DH
2372 if (gfar_uses_fcb(priv))
2373 frame_size += GMAC_FCB_LEN;
2374
2375 frame_size += priv->padding;
2376
1da177e4
LT
2377 tempsize =
2378 (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
2379 INCREMENTAL_BUFFER_SIZE;
2380
2381 /* Only stop and start the controller if it isn't already
7f7f5316 2382 * stopped, and we changed something */
1da177e4
LT
2383 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
2384 stop_gfar(dev);
2385
2386 priv->rx_buffer_size = tempsize;
2387
2388 dev->mtu = new_mtu;
2389
f4983704
SG
2390 gfar_write(&regs->mrblr, priv->rx_buffer_size);
2391 gfar_write(&regs->maxfrm, priv->rx_buffer_size);
1da177e4
LT
2392
2393 /* If the mtu is larger than the max size for standard
2394 * ethernet frames (ie, a jumbo frame), then set maccfg2
2395 * to allow huge frames, and to check the length */
f4983704 2396 tempval = gfar_read(&regs->maccfg2);
1da177e4 2397
7d350977
AV
2398 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE ||
2399 gfar_has_errata(priv, GFAR_ERRATA_74))
1da177e4
LT
2400 tempval |= (MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
2401 else
2402 tempval &= ~(MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK);
2403
f4983704 2404 gfar_write(&regs->maccfg2, tempval);
1da177e4
LT
2405
2406 if ((oldsize != tempsize) && (dev->flags & IFF_UP))
2407 startup_gfar(dev);
2408
2409 return 0;
2410}
2411
ab939905 2412/* gfar_reset_task gets scheduled when a packet has not been
1da177e4
LT
2413 * transmitted after a set amount of time.
2414 * For now, assume that clearing out all the structures, and
ab939905
SS
2415 * starting over will fix the problem.
2416 */
2417static void gfar_reset_task(struct work_struct *work)
1da177e4 2418{
ab939905
SS
2419 struct gfar_private *priv = container_of(work, struct gfar_private,
2420 reset_task);
4826857f 2421 struct net_device *dev = priv->ndev;
1da177e4
LT
2422
2423 if (dev->flags & IFF_UP) {
fba4ed03 2424 netif_tx_stop_all_queues(dev);
1da177e4
LT
2425 stop_gfar(dev);
2426 startup_gfar(dev);
fba4ed03 2427 netif_tx_start_all_queues(dev);
1da177e4
LT
2428 }
2429
263ba320 2430 netif_tx_schedule_all(dev);
1da177e4
LT
2431}
2432
ab939905
SS
2433static void gfar_timeout(struct net_device *dev)
2434{
2435 struct gfar_private *priv = netdev_priv(dev);
2436
2437 dev->stats.tx_errors++;
2438 schedule_work(&priv->reset_task);
2439}
2440
acbc0f03
EL
2441static void gfar_align_skb(struct sk_buff *skb)
2442{
2443 /* We need the data buffer to be aligned properly. We will reserve
2444 * as many bytes as needed to align the data properly
2445 */
2446 skb_reserve(skb, RXBUF_ALIGNMENT -
2447 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1)));
2448}
2449
1da177e4 2450/* Interrupt Handler for Transmit complete */
a12f801d 2451static int gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
1da177e4 2452{
a12f801d 2453 struct net_device *dev = tx_queue->dev;
d080cd63 2454 struct gfar_private *priv = netdev_priv(dev);
a12f801d 2455 struct gfar_priv_rx_q *rx_queue = NULL;
f0ee7acf 2456 struct txbd8 *bdp, *next = NULL;
4669bc90 2457 struct txbd8 *lbdp = NULL;
a12f801d 2458 struct txbd8 *base = tx_queue->tx_bd_base;
4669bc90
DH
2459 struct sk_buff *skb;
2460 int skb_dirtytx;
a12f801d 2461 int tx_ring_size = tx_queue->tx_ring_size;
f0ee7acf 2462 int frags = 0, nr_txbds = 0;
4669bc90 2463 int i;
d080cd63 2464 int howmany = 0;
4669bc90 2465 u32 lstatus;
f0ee7acf 2466 size_t buflen;
1da177e4 2467
fba4ed03 2468 rx_queue = priv->rx_queue[tx_queue->qindex];
a12f801d
SG
2469 bdp = tx_queue->dirty_tx;
2470 skb_dirtytx = tx_queue->skb_dirtytx;
1da177e4 2471
a12f801d 2472 while ((skb = tx_queue->tx_skbuff[skb_dirtytx])) {
a3bc1f11
AV
2473 unsigned long flags;
2474
4669bc90 2475 frags = skb_shinfo(skb)->nr_frags;
f0ee7acf
MR
2476
2477 /*
2478 * When time stamping, one additional TxBD must be freed.
2479 * Also, we need to dma_unmap_single() the TxPAL.
2480 */
2244d07b 2481 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS))
f0ee7acf
MR
2482 nr_txbds = frags + 2;
2483 else
2484 nr_txbds = frags + 1;
2485
2486 lbdp = skip_txbd(bdp, nr_txbds - 1, base, tx_ring_size);
1da177e4 2487
4669bc90 2488 lstatus = lbdp->lstatus;
1da177e4 2489
4669bc90
DH
2490 /* Only clean completed frames */
2491 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
2492 (lstatus & BD_LENGTH_MASK))
2493 break;
2494
2244d07b 2495 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
f0ee7acf
MR
2496 next = next_txbd(bdp, base, tx_ring_size);
2497 buflen = next->length + GMAC_FCB_LEN;
2498 } else
2499 buflen = bdp->length;
2500
2501 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
2502 buflen, DMA_TO_DEVICE);
2503
2244d07b 2504 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
f0ee7acf
MR
2505 struct skb_shared_hwtstamps shhwtstamps;
2506 u64 *ns = (u64*) (((u32)skb->data + 0x10) & ~0x7);
2507 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
2508 shhwtstamps.hwtstamp = ns_to_ktime(*ns);
2509 skb_tstamp_tx(skb, &shhwtstamps);
2510 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
2511 bdp = next;
2512 }
81183059 2513
4669bc90
DH
2514 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
2515 bdp = next_txbd(bdp, base, tx_ring_size);
d080cd63 2516
4669bc90 2517 for (i = 0; i < frags; i++) {
4826857f 2518 dma_unmap_page(&priv->ofdev->dev,
4669bc90
DH
2519 bdp->bufPtr,
2520 bdp->length,
2521 DMA_TO_DEVICE);
2522 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
2523 bdp = next_txbd(bdp, base, tx_ring_size);
2524 }
1da177e4 2525
0fd56bb5
AF
2526 /*
2527 * If there's room in the queue (limit it to rx_buffer_size)
2528 * we add this skb back into the pool, if it's the right size
2529 */
a12f801d 2530 if (skb_queue_len(&priv->rx_recycle) < rx_queue->rx_ring_size &&
0fd56bb5 2531 skb_recycle_check(skb, priv->rx_buffer_size +
acbc0f03
EL
2532 RXBUF_ALIGNMENT)) {
2533 gfar_align_skb(skb);
cd0ea241 2534 skb_queue_head(&priv->rx_recycle, skb);
acbc0f03 2535 } else
0fd56bb5
AF
2536 dev_kfree_skb_any(skb);
2537
a12f801d 2538 tx_queue->tx_skbuff[skb_dirtytx] = NULL;
d080cd63 2539
4669bc90
DH
2540 skb_dirtytx = (skb_dirtytx + 1) &
2541 TX_RING_MOD_MASK(tx_ring_size);
2542
2543 howmany++;
a3bc1f11 2544 spin_lock_irqsave(&tx_queue->txlock, flags);
f0ee7acf 2545 tx_queue->num_txbdfree += nr_txbds;
a3bc1f11 2546 spin_unlock_irqrestore(&tx_queue->txlock, flags);
4669bc90 2547 }
1da177e4 2548
4669bc90 2549 /* If we freed a buffer, we can restart transmission, if necessary */
fba4ed03
SG
2550 if (__netif_subqueue_stopped(dev, tx_queue->qindex) && tx_queue->num_txbdfree)
2551 netif_wake_subqueue(dev, tx_queue->qindex);
1da177e4 2552
4669bc90 2553 /* Update dirty indicators */
a12f801d
SG
2554 tx_queue->skb_dirtytx = skb_dirtytx;
2555 tx_queue->dirty_tx = bdp;
1da177e4 2556
d080cd63
DH
2557 return howmany;
2558}
2559
f4983704 2560static void gfar_schedule_cleanup(struct gfar_priv_grp *gfargrp)
d080cd63 2561{
a6d0b91a
AV
2562 unsigned long flags;
2563
fba4ed03
SG
2564 spin_lock_irqsave(&gfargrp->grplock, flags);
2565 if (napi_schedule_prep(&gfargrp->napi)) {
f4983704 2566 gfar_write(&gfargrp->regs->imask, IMASK_RTX_DISABLED);
fba4ed03 2567 __napi_schedule(&gfargrp->napi);
8707bdd4
JP
2568 } else {
2569 /*
2570 * Clear IEVENT, so interrupts aren't called again
2571 * because of the packets that have already arrived.
2572 */
f4983704 2573 gfar_write(&gfargrp->regs->ievent, IEVENT_RTX_MASK);
2f448911 2574 }
fba4ed03 2575 spin_unlock_irqrestore(&gfargrp->grplock, flags);
a6d0b91a 2576
8c7396ae 2577}
1da177e4 2578
8c7396ae 2579/* Interrupt Handler for Transmit complete */
f4983704 2580static irqreturn_t gfar_transmit(int irq, void *grp_id)
8c7396ae 2581{
f4983704 2582 gfar_schedule_cleanup((struct gfar_priv_grp *)grp_id);
1da177e4
LT
2583 return IRQ_HANDLED;
2584}
2585
a12f801d 2586static void gfar_new_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
815b97c6
AF
2587 struct sk_buff *skb)
2588{
a12f801d 2589 struct net_device *dev = rx_queue->dev;
815b97c6 2590 struct gfar_private *priv = netdev_priv(dev);
8a102fe0 2591 dma_addr_t buf;
815b97c6 2592
8a102fe0
AV
2593 buf = dma_map_single(&priv->ofdev->dev, skb->data,
2594 priv->rx_buffer_size, DMA_FROM_DEVICE);
a12f801d 2595 gfar_init_rxbdp(rx_queue, bdp, buf);
815b97c6
AF
2596}
2597
acbc0f03 2598static struct sk_buff * gfar_alloc_skb(struct net_device *dev)
1da177e4
LT
2599{
2600 struct gfar_private *priv = netdev_priv(dev);
2601 struct sk_buff *skb = NULL;
1da177e4 2602
acbc0f03 2603 skb = netdev_alloc_skb(dev, priv->rx_buffer_size + RXBUF_ALIGNMENT);
815b97c6 2604 if (!skb)
1da177e4
LT
2605 return NULL;
2606
acbc0f03 2607 gfar_align_skb(skb);
7f7f5316 2608
acbc0f03
EL
2609 return skb;
2610}
2611
2612struct sk_buff * gfar_new_skb(struct net_device *dev)
2613{
2614 struct gfar_private *priv = netdev_priv(dev);
2615 struct sk_buff *skb = NULL;
2616
cd0ea241 2617 skb = skb_dequeue(&priv->rx_recycle);
acbc0f03
EL
2618 if (!skb)
2619 skb = gfar_alloc_skb(dev);
1da177e4 2620
1da177e4
LT
2621 return skb;
2622}
2623
298e1a9e 2624static inline void count_errors(unsigned short status, struct net_device *dev)
1da177e4 2625{
298e1a9e 2626 struct gfar_private *priv = netdev_priv(dev);
09f75cd7 2627 struct net_device_stats *stats = &dev->stats;
1da177e4
LT
2628 struct gfar_extra_stats *estats = &priv->extra_stats;
2629
2630 /* If the packet was truncated, none of the other errors
2631 * matter */
2632 if (status & RXBD_TRUNCATED) {
2633 stats->rx_length_errors++;
2634
2635 estats->rx_trunc++;
2636
2637 return;
2638 }
2639 /* Count the errors, if there were any */
2640 if (status & (RXBD_LARGE | RXBD_SHORT)) {
2641 stats->rx_length_errors++;
2642
2643 if (status & RXBD_LARGE)
2644 estats->rx_large++;
2645 else
2646 estats->rx_short++;
2647 }
2648 if (status & RXBD_NONOCTET) {
2649 stats->rx_frame_errors++;
2650 estats->rx_nonoctet++;
2651 }
2652 if (status & RXBD_CRCERR) {
2653 estats->rx_crcerr++;
2654 stats->rx_crc_errors++;
2655 }
2656 if (status & RXBD_OVERRUN) {
2657 estats->rx_overrun++;
2658 stats->rx_crc_errors++;
2659 }
2660}
2661
f4983704 2662irqreturn_t gfar_receive(int irq, void *grp_id)
1da177e4 2663{
f4983704 2664 gfar_schedule_cleanup((struct gfar_priv_grp *)grp_id);
1da177e4
LT
2665 return IRQ_HANDLED;
2666}
2667
0bbaf069
KG
2668static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
2669{
2670 /* If valid headers were found, and valid sums
2671 * were verified, then we tell the kernel that no
2672 * checksumming is necessary. Otherwise, it is */
7f7f5316 2673 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
0bbaf069
KG
2674 skb->ip_summed = CHECKSUM_UNNECESSARY;
2675 else
bc8acf2c 2676 skb_checksum_none_assert(skb);
0bbaf069
KG
2677}
2678
2679
1da177e4
LT
2680/* gfar_process_frame() -- handle one incoming packet if skb
2681 * isn't NULL. */
2682static int gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
2c2db48a 2683 int amount_pull)
1da177e4
LT
2684{
2685 struct gfar_private *priv = netdev_priv(dev);
0bbaf069 2686 struct rxfcb *fcb = NULL;
1da177e4 2687
2c2db48a 2688 int ret;
1da177e4 2689
2c2db48a
DH
2690 /* fcb is at the beginning if exists */
2691 fcb = (struct rxfcb *)skb->data;
0bbaf069 2692
2c2db48a
DH
2693 /* Remove the FCB from the skb */
2694 /* Remove the padded bytes, if there are any */
f74dac08
SG
2695 if (amount_pull) {
2696 skb_record_rx_queue(skb, fcb->rq);
2c2db48a 2697 skb_pull(skb, amount_pull);
f74dac08 2698 }
0bbaf069 2699
cc772ab7
MR
2700 /* Get receive timestamp from the skb */
2701 if (priv->hwts_rx_en) {
2702 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
2703 u64 *ns = (u64 *) skb->data;
2704 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
2705 shhwtstamps->hwtstamp = ns_to_ktime(*ns);
2706 }
2707
2708 if (priv->padding)
2709 skb_pull(skb, priv->padding);
2710
8b3afe95 2711 if (dev->features & NETIF_F_RXCSUM)
2c2db48a 2712 gfar_rx_checksum(skb, fcb);
0bbaf069 2713
2c2db48a
DH
2714 /* Tell the skb what kind of packet this is */
2715 skb->protocol = eth_type_trans(skb, dev);
1da177e4 2716
87c288c6
JP
2717 /* Set vlan tag */
2718 if (fcb->flags & RXFCB_VLN)
2719 __vlan_hwaccel_put_tag(skb, fcb->vlctl);
2720
2c2db48a 2721 /* Send the packet up the stack */
87c288c6 2722 ret = netif_receive_skb(skb);
0bbaf069 2723
2c2db48a
DH
2724 if (NET_RX_DROP == ret)
2725 priv->extra_stats.kernel_dropped++;
1da177e4
LT
2726
2727 return 0;
2728}
2729
2730/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
0bbaf069 2731 * until the budget/quota has been reached. Returns the number
1da177e4
LT
2732 * of frames handled
2733 */
a12f801d 2734int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit)
1da177e4 2735{
a12f801d 2736 struct net_device *dev = rx_queue->dev;
31de198b 2737 struct rxbd8 *bdp, *base;
1da177e4 2738 struct sk_buff *skb;
2c2db48a
DH
2739 int pkt_len;
2740 int amount_pull;
1da177e4
LT
2741 int howmany = 0;
2742 struct gfar_private *priv = netdev_priv(dev);
2743
2744 /* Get the first full descriptor */
a12f801d
SG
2745 bdp = rx_queue->cur_rx;
2746 base = rx_queue->rx_bd_base;
1da177e4 2747
cc772ab7 2748 amount_pull = (gfar_uses_fcb(priv) ? GMAC_FCB_LEN : 0);
2c2db48a 2749
1da177e4 2750 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
815b97c6 2751 struct sk_buff *newskb;
3b6330ce 2752 rmb();
815b97c6
AF
2753
2754 /* Add another skb for the future */
2755 newskb = gfar_new_skb(dev);
2756
a12f801d 2757 skb = rx_queue->rx_skbuff[rx_queue->skb_currx];
1da177e4 2758
4826857f 2759 dma_unmap_single(&priv->ofdev->dev, bdp->bufPtr,
81183059
AF
2760 priv->rx_buffer_size, DMA_FROM_DEVICE);
2761
63b88b90
AV
2762 if (unlikely(!(bdp->status & RXBD_ERR) &&
2763 bdp->length > priv->rx_buffer_size))
2764 bdp->status = RXBD_LARGE;
2765
815b97c6
AF
2766 /* We drop the frame if we failed to allocate a new buffer */
2767 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
2768 bdp->status & RXBD_ERR)) {
2769 count_errors(bdp->status, dev);
2770
2771 if (unlikely(!newskb))
2772 newskb = skb;
acbc0f03 2773 else if (skb)
cd0ea241 2774 skb_queue_head(&priv->rx_recycle, skb);
815b97c6 2775 } else {
1da177e4 2776 /* Increment the number of packets */
a7f38041 2777 rx_queue->stats.rx_packets++;
1da177e4
LT
2778 howmany++;
2779
2c2db48a
DH
2780 if (likely(skb)) {
2781 pkt_len = bdp->length - ETH_FCS_LEN;
2782 /* Remove the FCS from the packet length */
2783 skb_put(skb, pkt_len);
a7f38041 2784 rx_queue->stats.rx_bytes += pkt_len;
f74dac08 2785 skb_record_rx_queue(skb, rx_queue->qindex);
2c2db48a
DH
2786 gfar_process_frame(dev, skb, amount_pull);
2787
2788 } else {
59deab26 2789 netif_warn(priv, rx_err, dev, "Missing skb!\n");
a7f38041 2790 rx_queue->stats.rx_dropped++;
2c2db48a
DH
2791 priv->extra_stats.rx_skbmissing++;
2792 }
1da177e4 2793
1da177e4
LT
2794 }
2795
a12f801d 2796 rx_queue->rx_skbuff[rx_queue->skb_currx] = newskb;
1da177e4 2797
815b97c6 2798 /* Setup the new bdp */
a12f801d 2799 gfar_new_rxbdp(rx_queue, bdp, newskb);
1da177e4
LT
2800
2801 /* Update to the next pointer */
a12f801d 2802 bdp = next_bd(bdp, base, rx_queue->rx_ring_size);
1da177e4
LT
2803
2804 /* update to point at the next skb */
a12f801d
SG
2805 rx_queue->skb_currx =
2806 (rx_queue->skb_currx + 1) &
2807 RX_RING_MOD_MASK(rx_queue->rx_ring_size);
1da177e4
LT
2808 }
2809
2810 /* Update the current rxbd pointer to be the next one */
a12f801d 2811 rx_queue->cur_rx = bdp;
1da177e4 2812
1da177e4
LT
2813 return howmany;
2814}
2815
bea3348e 2816static int gfar_poll(struct napi_struct *napi, int budget)
1da177e4 2817{
fba4ed03
SG
2818 struct gfar_priv_grp *gfargrp = container_of(napi,
2819 struct gfar_priv_grp, napi);
2820 struct gfar_private *priv = gfargrp->priv;
46ceb60c 2821 struct gfar __iomem *regs = gfargrp->regs;
a12f801d 2822 struct gfar_priv_tx_q *tx_queue = NULL;
fba4ed03
SG
2823 struct gfar_priv_rx_q *rx_queue = NULL;
2824 int rx_cleaned = 0, budget_per_queue = 0, rx_cleaned_per_queue = 0;
18294ad1
AV
2825 int tx_cleaned = 0, i, left_over_budget = budget;
2826 unsigned long serviced_queues = 0;
fba4ed03 2827 int num_queues = 0;
d080cd63 2828
fba4ed03
SG
2829 num_queues = gfargrp->num_rx_queues;
2830 budget_per_queue = budget/num_queues;
2831
8c7396ae
DH
2832 /* Clear IEVENT, so interrupts aren't called again
2833 * because of the packets that have already arrived */
f4983704 2834 gfar_write(&regs->ievent, IEVENT_RTX_MASK);
8c7396ae 2835
fba4ed03 2836 while (num_queues && left_over_budget) {
1da177e4 2837
fba4ed03
SG
2838 budget_per_queue = left_over_budget/num_queues;
2839 left_over_budget = 0;
2840
984b3f57 2841 for_each_set_bit(i, &gfargrp->rx_bit_map, priv->num_rx_queues) {
fba4ed03
SG
2842 if (test_bit(i, &serviced_queues))
2843 continue;
2844 rx_queue = priv->rx_queue[i];
2845 tx_queue = priv->tx_queue[rx_queue->qindex];
2846
a3bc1f11 2847 tx_cleaned += gfar_clean_tx_ring(tx_queue);
fba4ed03
SG
2848 rx_cleaned_per_queue = gfar_clean_rx_ring(rx_queue,
2849 budget_per_queue);
2850 rx_cleaned += rx_cleaned_per_queue;
2851 if(rx_cleaned_per_queue < budget_per_queue) {
2852 left_over_budget = left_over_budget +
2853 (budget_per_queue - rx_cleaned_per_queue);
2854 set_bit(i, &serviced_queues);
2855 num_queues--;
2856 }
2857 }
2858 }
1da177e4 2859
42199884
AF
2860 if (tx_cleaned)
2861 return budget;
2862
2863 if (rx_cleaned < budget) {
288379f0 2864 napi_complete(napi);
1da177e4
LT
2865
2866 /* Clear the halt bit in RSTAT */
fba4ed03 2867 gfar_write(&regs->rstat, gfargrp->rstat);
1da177e4 2868
f4983704 2869 gfar_write(&regs->imask, IMASK_DEFAULT);
1da177e4
LT
2870
2871 /* If we are coalescing interrupts, update the timer */
2872 /* Otherwise, clear it */
46ceb60c
SG
2873 gfar_configure_coalescing(priv,
2874 gfargrp->rx_bit_map, gfargrp->tx_bit_map);
1da177e4
LT
2875 }
2876
42199884 2877 return rx_cleaned;
1da177e4 2878}
1da177e4 2879
f2d71c2d
VW
2880#ifdef CONFIG_NET_POLL_CONTROLLER
2881/*
2882 * Polling 'interrupt' - used by things like netconsole to send skbs
2883 * without having to re-enable interrupts. It's not called while
2884 * the interrupt routine is executing.
2885 */
2886static void gfar_netpoll(struct net_device *dev)
2887{
2888 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 2889 int i = 0;
f2d71c2d
VW
2890
2891 /* If the device has multiple interrupts, run tx/rx */
b31a1d8b 2892 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
46ceb60c
SG
2893 for (i = 0; i < priv->num_grps; i++) {
2894 disable_irq(priv->gfargrp[i].interruptTransmit);
2895 disable_irq(priv->gfargrp[i].interruptReceive);
2896 disable_irq(priv->gfargrp[i].interruptError);
2897 gfar_interrupt(priv->gfargrp[i].interruptTransmit,
2898 &priv->gfargrp[i]);
2899 enable_irq(priv->gfargrp[i].interruptError);
2900 enable_irq(priv->gfargrp[i].interruptReceive);
2901 enable_irq(priv->gfargrp[i].interruptTransmit);
2902 }
f2d71c2d 2903 } else {
46ceb60c
SG
2904 for (i = 0; i < priv->num_grps; i++) {
2905 disable_irq(priv->gfargrp[i].interruptTransmit);
2906 gfar_interrupt(priv->gfargrp[i].interruptTransmit,
2907 &priv->gfargrp[i]);
2908 enable_irq(priv->gfargrp[i].interruptTransmit);
43de004b 2909 }
f2d71c2d
VW
2910 }
2911}
2912#endif
2913
1da177e4 2914/* The interrupt handler for devices with one interrupt */
f4983704 2915static irqreturn_t gfar_interrupt(int irq, void *grp_id)
1da177e4 2916{
f4983704 2917 struct gfar_priv_grp *gfargrp = grp_id;
1da177e4
LT
2918
2919 /* Save ievent for future reference */
f4983704 2920 u32 events = gfar_read(&gfargrp->regs->ievent);
1da177e4 2921
1da177e4 2922 /* Check for reception */
538cc7ee 2923 if (events & IEVENT_RX_MASK)
f4983704 2924 gfar_receive(irq, grp_id);
1da177e4
LT
2925
2926 /* Check for transmit completion */
538cc7ee 2927 if (events & IEVENT_TX_MASK)
f4983704 2928 gfar_transmit(irq, grp_id);
1da177e4 2929
538cc7ee
SS
2930 /* Check for errors */
2931 if (events & IEVENT_ERR_MASK)
f4983704 2932 gfar_error(irq, grp_id);
1da177e4
LT
2933
2934 return IRQ_HANDLED;
2935}
2936
1da177e4
LT
2937/* Called every time the controller might need to be made
2938 * aware of new link state. The PHY code conveys this
bb40dcbb 2939 * information through variables in the phydev structure, and this
1da177e4
LT
2940 * function converts those variables into the appropriate
2941 * register values, and can bring down the device if needed.
2942 */
2943static void adjust_link(struct net_device *dev)
2944{
2945 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 2946 struct gfar __iomem *regs = priv->gfargrp[0].regs;
bb40dcbb
AF
2947 unsigned long flags;
2948 struct phy_device *phydev = priv->phydev;
2949 int new_state = 0;
2950
fba4ed03
SG
2951 local_irq_save(flags);
2952 lock_tx_qs(priv);
2953
bb40dcbb
AF
2954 if (phydev->link) {
2955 u32 tempval = gfar_read(&regs->maccfg2);
7f7f5316 2956 u32 ecntrl = gfar_read(&regs->ecntrl);
1da177e4 2957
1da177e4
LT
2958 /* Now we make sure that we can be in full duplex mode.
2959 * If not, we operate in half-duplex mode. */
bb40dcbb
AF
2960 if (phydev->duplex != priv->oldduplex) {
2961 new_state = 1;
2962 if (!(phydev->duplex))
1da177e4 2963 tempval &= ~(MACCFG2_FULL_DUPLEX);
bb40dcbb 2964 else
1da177e4 2965 tempval |= MACCFG2_FULL_DUPLEX;
1da177e4 2966
bb40dcbb 2967 priv->oldduplex = phydev->duplex;
1da177e4
LT
2968 }
2969
bb40dcbb
AF
2970 if (phydev->speed != priv->oldspeed) {
2971 new_state = 1;
2972 switch (phydev->speed) {
1da177e4 2973 case 1000:
1da177e4
LT
2974 tempval =
2975 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
f430e49e
LY
2976
2977 ecntrl &= ~(ECNTRL_R100);
1da177e4
LT
2978 break;
2979 case 100:
2980 case 10:
1da177e4
LT
2981 tempval =
2982 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
7f7f5316
AF
2983
2984 /* Reduced mode distinguishes
2985 * between 10 and 100 */
2986 if (phydev->speed == SPEED_100)
2987 ecntrl |= ECNTRL_R100;
2988 else
2989 ecntrl &= ~(ECNTRL_R100);
1da177e4
LT
2990 break;
2991 default:
59deab26
JP
2992 netif_warn(priv, link, dev,
2993 "Ack! Speed (%d) is not 10/100/1000!\n",
2994 phydev->speed);
1da177e4
LT
2995 break;
2996 }
2997
bb40dcbb 2998 priv->oldspeed = phydev->speed;
1da177e4
LT
2999 }
3000
bb40dcbb 3001 gfar_write(&regs->maccfg2, tempval);
7f7f5316 3002 gfar_write(&regs->ecntrl, ecntrl);
bb40dcbb 3003
1da177e4 3004 if (!priv->oldlink) {
bb40dcbb 3005 new_state = 1;
1da177e4 3006 priv->oldlink = 1;
1da177e4 3007 }
bb40dcbb
AF
3008 } else if (priv->oldlink) {
3009 new_state = 1;
3010 priv->oldlink = 0;
3011 priv->oldspeed = 0;
3012 priv->oldduplex = -1;
1da177e4 3013 }
1da177e4 3014
bb40dcbb
AF
3015 if (new_state && netif_msg_link(priv))
3016 phy_print_status(phydev);
fba4ed03
SG
3017 unlock_tx_qs(priv);
3018 local_irq_restore(flags);
bb40dcbb 3019}
1da177e4
LT
3020
3021/* Update the hash table based on the current list of multicast
3022 * addresses we subscribe to. Also, change the promiscuity of
3023 * the device based on the flags (this function is called
3024 * whenever dev->flags is changed */
3025static void gfar_set_multi(struct net_device *dev)
3026{
22bedad3 3027 struct netdev_hw_addr *ha;
1da177e4 3028 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 3029 struct gfar __iomem *regs = priv->gfargrp[0].regs;
1da177e4
LT
3030 u32 tempval;
3031
a12f801d 3032 if (dev->flags & IFF_PROMISC) {
1da177e4
LT
3033 /* Set RCTRL to PROM */
3034 tempval = gfar_read(&regs->rctrl);
3035 tempval |= RCTRL_PROM;
3036 gfar_write(&regs->rctrl, tempval);
3037 } else {
3038 /* Set RCTRL to not PROM */
3039 tempval = gfar_read(&regs->rctrl);
3040 tempval &= ~(RCTRL_PROM);
3041 gfar_write(&regs->rctrl, tempval);
3042 }
6aa20a22 3043
a12f801d 3044 if (dev->flags & IFF_ALLMULTI) {
1da177e4 3045 /* Set the hash to rx all multicast frames */
0bbaf069
KG
3046 gfar_write(&regs->igaddr0, 0xffffffff);
3047 gfar_write(&regs->igaddr1, 0xffffffff);
3048 gfar_write(&regs->igaddr2, 0xffffffff);
3049 gfar_write(&regs->igaddr3, 0xffffffff);
3050 gfar_write(&regs->igaddr4, 0xffffffff);
3051 gfar_write(&regs->igaddr5, 0xffffffff);
3052 gfar_write(&regs->igaddr6, 0xffffffff);
3053 gfar_write(&regs->igaddr7, 0xffffffff);
1da177e4
LT
3054 gfar_write(&regs->gaddr0, 0xffffffff);
3055 gfar_write(&regs->gaddr1, 0xffffffff);
3056 gfar_write(&regs->gaddr2, 0xffffffff);
3057 gfar_write(&regs->gaddr3, 0xffffffff);
3058 gfar_write(&regs->gaddr4, 0xffffffff);
3059 gfar_write(&regs->gaddr5, 0xffffffff);
3060 gfar_write(&regs->gaddr6, 0xffffffff);
3061 gfar_write(&regs->gaddr7, 0xffffffff);
3062 } else {
7f7f5316
AF
3063 int em_num;
3064 int idx;
3065
1da177e4 3066 /* zero out the hash */
0bbaf069
KG
3067 gfar_write(&regs->igaddr0, 0x0);
3068 gfar_write(&regs->igaddr1, 0x0);
3069 gfar_write(&regs->igaddr2, 0x0);
3070 gfar_write(&regs->igaddr3, 0x0);
3071 gfar_write(&regs->igaddr4, 0x0);
3072 gfar_write(&regs->igaddr5, 0x0);
3073 gfar_write(&regs->igaddr6, 0x0);
3074 gfar_write(&regs->igaddr7, 0x0);
1da177e4
LT
3075 gfar_write(&regs->gaddr0, 0x0);
3076 gfar_write(&regs->gaddr1, 0x0);
3077 gfar_write(&regs->gaddr2, 0x0);
3078 gfar_write(&regs->gaddr3, 0x0);
3079 gfar_write(&regs->gaddr4, 0x0);
3080 gfar_write(&regs->gaddr5, 0x0);
3081 gfar_write(&regs->gaddr6, 0x0);
3082 gfar_write(&regs->gaddr7, 0x0);
3083
7f7f5316
AF
3084 /* If we have extended hash tables, we need to
3085 * clear the exact match registers to prepare for
3086 * setting them */
3087 if (priv->extended_hash) {
3088 em_num = GFAR_EM_NUM + 1;
3089 gfar_clear_exact_match(dev);
3090 idx = 1;
3091 } else {
3092 idx = 0;
3093 em_num = 0;
3094 }
3095
4cd24eaf 3096 if (netdev_mc_empty(dev))
1da177e4
LT
3097 return;
3098
3099 /* Parse the list, and set the appropriate bits */
22bedad3 3100 netdev_for_each_mc_addr(ha, dev) {
7f7f5316 3101 if (idx < em_num) {
22bedad3 3102 gfar_set_mac_for_addr(dev, idx, ha->addr);
7f7f5316
AF
3103 idx++;
3104 } else
22bedad3 3105 gfar_set_hash_for_addr(dev, ha->addr);
1da177e4
LT
3106 }
3107 }
1da177e4
LT
3108}
3109
7f7f5316
AF
3110
3111/* Clears each of the exact match registers to zero, so they
3112 * don't interfere with normal reception */
3113static void gfar_clear_exact_match(struct net_device *dev)
3114{
3115 int idx;
b6bc7650 3116 static const u8 zero_arr[MAC_ADDR_LEN] = {0, 0, 0, 0, 0, 0};
7f7f5316
AF
3117
3118 for(idx = 1;idx < GFAR_EM_NUM + 1;idx++)
b6bc7650 3119 gfar_set_mac_for_addr(dev, idx, zero_arr);
7f7f5316
AF
3120}
3121
1da177e4
LT
3122/* Set the appropriate hash bit for the given addr */
3123/* The algorithm works like so:
3124 * 1) Take the Destination Address (ie the multicast address), and
3125 * do a CRC on it (little endian), and reverse the bits of the
3126 * result.
3127 * 2) Use the 8 most significant bits as a hash into a 256-entry
3128 * table. The table is controlled through 8 32-bit registers:
3129 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
3130 * gaddr7. This means that the 3 most significant bits in the
3131 * hash index which gaddr register to use, and the 5 other bits
3132 * indicate which bit (assuming an IBM numbering scheme, which
3133 * for PowerPC (tm) is usually the case) in the register holds
3134 * the entry. */
3135static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
3136{
3137 u32 tempval;
3138 struct gfar_private *priv = netdev_priv(dev);
1da177e4 3139 u32 result = ether_crc(MAC_ADDR_LEN, addr);
0bbaf069
KG
3140 int width = priv->hash_width;
3141 u8 whichbit = (result >> (32 - width)) & 0x1f;
3142 u8 whichreg = result >> (32 - width + 5);
1da177e4
LT
3143 u32 value = (1 << (31-whichbit));
3144
0bbaf069 3145 tempval = gfar_read(priv->hash_regs[whichreg]);
1da177e4 3146 tempval |= value;
0bbaf069 3147 gfar_write(priv->hash_regs[whichreg], tempval);
1da177e4
LT
3148}
3149
7f7f5316
AF
3150
3151/* There are multiple MAC Address register pairs on some controllers
3152 * This function sets the numth pair to a given address
3153 */
b6bc7650
JP
3154static void gfar_set_mac_for_addr(struct net_device *dev, int num,
3155 const u8 *addr)
7f7f5316
AF
3156{
3157 struct gfar_private *priv = netdev_priv(dev);
46ceb60c 3158 struct gfar __iomem *regs = priv->gfargrp[0].regs;
7f7f5316
AF
3159 int idx;
3160 char tmpbuf[MAC_ADDR_LEN];
3161 u32 tempval;
f4983704 3162 u32 __iomem *macptr = &regs->macstnaddr1;
7f7f5316
AF
3163
3164 macptr += num*2;
3165
3166 /* Now copy it into the mac registers backwards, cuz */
3167 /* little endian is silly */
3168 for (idx = 0; idx < MAC_ADDR_LEN; idx++)
3169 tmpbuf[MAC_ADDR_LEN - 1 - idx] = addr[idx];
3170
3171 gfar_write(macptr, *((u32 *) (tmpbuf)));
3172
3173 tempval = *((u32 *) (tmpbuf + 4));
3174
3175 gfar_write(macptr+1, tempval);
3176}
3177
1da177e4 3178/* GFAR error interrupt handler */
f4983704 3179static irqreturn_t gfar_error(int irq, void *grp_id)
1da177e4 3180{
f4983704
SG
3181 struct gfar_priv_grp *gfargrp = grp_id;
3182 struct gfar __iomem *regs = gfargrp->regs;
3183 struct gfar_private *priv= gfargrp->priv;
3184 struct net_device *dev = priv->ndev;
1da177e4
LT
3185
3186 /* Save ievent for future reference */
f4983704 3187 u32 events = gfar_read(&regs->ievent);
1da177e4
LT
3188
3189 /* Clear IEVENT */
f4983704 3190 gfar_write(&regs->ievent, events & IEVENT_ERR_MASK);
d87eb127
SW
3191
3192 /* Magic Packet is not an error. */
b31a1d8b 3193 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
d87eb127
SW
3194 (events & IEVENT_MAG))
3195 events &= ~IEVENT_MAG;
1da177e4
LT
3196
3197 /* Hmm... */
0bbaf069 3198 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
59deab26
JP
3199 netdev_dbg(dev, "error interrupt (ievent=0x%08x imask=0x%08x)\n",
3200 events, gfar_read(&regs->imask));
1da177e4
LT
3201
3202 /* Update the error counters */
3203 if (events & IEVENT_TXE) {
09f75cd7 3204 dev->stats.tx_errors++;
1da177e4
LT
3205
3206 if (events & IEVENT_LC)
09f75cd7 3207 dev->stats.tx_window_errors++;
1da177e4 3208 if (events & IEVENT_CRL)
09f75cd7 3209 dev->stats.tx_aborted_errors++;
1da177e4 3210 if (events & IEVENT_XFUN) {
836cf7fa
AV
3211 unsigned long flags;
3212
59deab26
JP
3213 netif_dbg(priv, tx_err, dev,
3214 "TX FIFO underrun, packet dropped\n");
09f75cd7 3215 dev->stats.tx_dropped++;
1da177e4
LT
3216 priv->extra_stats.tx_underrun++;
3217
836cf7fa
AV
3218 local_irq_save(flags);
3219 lock_tx_qs(priv);
3220
1da177e4 3221 /* Reactivate the Tx Queues */
fba4ed03 3222 gfar_write(&regs->tstat, gfargrp->tstat);
836cf7fa
AV
3223
3224 unlock_tx_qs(priv);
3225 local_irq_restore(flags);
1da177e4 3226 }
59deab26 3227 netif_dbg(priv, tx_err, dev, "Transmit Error\n");
1da177e4
LT
3228 }
3229 if (events & IEVENT_BSY) {
09f75cd7 3230 dev->stats.rx_errors++;
1da177e4
LT
3231 priv->extra_stats.rx_bsy++;
3232
f4983704 3233 gfar_receive(irq, grp_id);
1da177e4 3234
59deab26
JP
3235 netif_dbg(priv, rx_err, dev, "busy error (rstat: %x)\n",
3236 gfar_read(&regs->rstat));
1da177e4
LT
3237 }
3238 if (events & IEVENT_BABR) {
09f75cd7 3239 dev->stats.rx_errors++;
1da177e4
LT
3240 priv->extra_stats.rx_babr++;
3241
59deab26 3242 netif_dbg(priv, rx_err, dev, "babbling RX error\n");
1da177e4
LT
3243 }
3244 if (events & IEVENT_EBERR) {
3245 priv->extra_stats.eberr++;
59deab26 3246 netif_dbg(priv, rx_err, dev, "bus error\n");
1da177e4 3247 }
59deab26
JP
3248 if (events & IEVENT_RXC)
3249 netif_dbg(priv, rx_status, dev, "control frame\n");
1da177e4
LT
3250
3251 if (events & IEVENT_BABT) {
3252 priv->extra_stats.tx_babt++;
59deab26 3253 netif_dbg(priv, tx_err, dev, "babbling TX error\n");
1da177e4
LT
3254 }
3255 return IRQ_HANDLED;
3256}
3257
b31a1d8b
AF
3258static struct of_device_id gfar_match[] =
3259{
3260 {
3261 .type = "network",
3262 .compatible = "gianfar",
3263 },
46ceb60c
SG
3264 {
3265 .compatible = "fsl,etsec2",
3266 },
b31a1d8b
AF
3267 {},
3268};
e72701ac 3269MODULE_DEVICE_TABLE(of, gfar_match);
b31a1d8b 3270
1da177e4 3271/* Structure for a device driver */
74888760 3272static struct platform_driver gfar_driver = {
4018294b
GL
3273 .driver = {
3274 .name = "fsl-gianfar",
3275 .owner = THIS_MODULE,
3276 .pm = GFAR_PM_OPS,
3277 .of_match_table = gfar_match,
3278 },
1da177e4
LT
3279 .probe = gfar_probe,
3280 .remove = gfar_remove,
3281};
3282
3283static int __init gfar_init(void)
3284{
74888760 3285 return platform_driver_register(&gfar_driver);
1da177e4
LT
3286}
3287
3288static void __exit gfar_exit(void)
3289{
74888760 3290 platform_driver_unregister(&gfar_driver);
1da177e4
LT
3291}
3292
3293module_init(gfar_init);
3294module_exit(gfar_exit);
3295