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