blob: afa3ea7ccf765bfff29799b9f74a47fb0ff6bee1 [file] [log] [blame]
Jan Ceuleers0977f812012-06-05 03:42:12 +00001/* drivers/net/ethernet/freescale/gianfar.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Gianfar Ethernet Driver
Andy Fleming7f7f5312005-11-11 12:38:59 -06004 * This driver is designed for the non-CPM ethernet controllers
5 * on the 85xx and 83xx family of integrated processors
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Based on 8260_io/fcc_enet.c
7 *
8 * Author: Andy Fleming
Kumar Gala4c8d3d92005-11-13 16:06:30 -08009 * Maintainer: Kumar Gala
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +000010 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Claudiu Manoil20862782014-02-17 12:53:14 +020012 * Copyright 2002-2009, 2011-2013 Freescale Semiconductor, Inc.
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +000013 * Copyright 2007 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 *
20 * Gianfar: AKA Lambda Draconis, "Dragon"
21 * RA 11 31 24.2
22 * Dec +69 19 52
23 * V 3.84
24 * B-V +1.62
25 *
26 * Theory of operation
Kumar Gala0bbaf062005-06-20 10:54:21 -050027 *
Andy Flemingb31a1d82008-12-16 15:29:15 -080028 * The driver is initialized through of_device. Configuration information
29 * is therefore conveyed through an OF-style device tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 * The Gianfar Ethernet Controller uses a ring of buffer
32 * descriptors. The beginning is indicated by a register
Kumar Gala0bbaf062005-06-20 10:54:21 -050033 * pointing to the physical address of the start of the ring.
34 * The end is determined by a "wrap" bit being set in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * last descriptor of the ring.
36 *
37 * When a packet is received, the RXF bit in the
Kumar Gala0bbaf062005-06-20 10:54:21 -050038 * IEVENT register is set, triggering an interrupt when the
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * corresponding bit in the IMASK register is also set (if
40 * interrupt coalescing is active, then the interrupt may not
41 * happen immediately, but will wait until either a set number
Andy Flemingbb40dcb2005-09-23 22:54:21 -040042 * of frames or amount of time have passed). In NAPI, the
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * interrupt handler will signal there is work to be done, and
Francois Romieu0aa15382008-07-11 00:33:52 +020044 * exit. This method will start at the last known empty
Kumar Gala0bbaf062005-06-20 10:54:21 -050045 * descriptor, and process every subsequent descriptor until there
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * are none left with data (NAPI will stop after a set number of
47 * packets to give time to other tasks, but will eventually
48 * process all the packets). The data arrives inside a
49 * pre-allocated skb, and so after the skb is passed up to the
50 * stack, a new skb must be allocated, and the address field in
51 * the buffer descriptor must be updated to indicate this new
52 * skb.
53 *
54 * When the kernel requests that a packet be transmitted, the
55 * driver starts where it left off last time, and points the
56 * descriptor at the buffer which was passed in. The driver
57 * then informs the DMA engine that there are packets ready to
58 * be transmitted. Once the controller is finished transmitting
59 * the packet, an interrupt may be triggered (under the same
60 * conditions as for reception, but depending on the TXF bit).
61 * The driver then cleans up the buffer.
62 */
63
Joe Perches59deab22011-06-14 08:57:47 +000064#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
65#define DEBUG
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/string.h>
69#include <linux/errno.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040070#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/slab.h>
72#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/delay.h>
74#include <linux/netdevice.h>
75#include <linux/etherdevice.h>
76#include <linux/skbuff.h>
Kumar Gala0bbaf062005-06-20 10:54:21 -050077#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/spinlock.h>
79#include <linux/mm.h>
Rob Herring5af50732013-09-17 14:28:33 -050080#include <linux/of_address.h>
81#include <linux/of_irq.h>
Grant Likelyfe192a42009-04-25 12:53:12 +000082#include <linux/of_mdio.h>
Andy Flemingb31a1d82008-12-16 15:29:15 -080083#include <linux/of_platform.h>
Kumar Gala0bbaf062005-06-20 10:54:21 -050084#include <linux/ip.h>
85#include <linux/tcp.h>
86#include <linux/udp.h>
Kumar Gala9c07b8842006-01-11 11:26:25 -080087#include <linux/in.h>
Manfred Rudigiercc772ab2010-04-08 23:10:03 +000088#include <linux/net_tstamp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90#include <asm/io.h>
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +030091#ifdef CONFIG_PPC
Anton Vorontsov7d350972010-06-30 06:39:12 +000092#include <asm/reg.h>
Claudiu Manoil2969b1f2013-10-09 20:20:41 +030093#include <asm/mpc85xx.h>
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +030094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <asm/irq.h>
96#include <asm/uaccess.h>
97#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <linux/dma-mapping.h>
99#include <linux/crc32.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400100#include <linux/mii.h>
101#include <linux/phy.h>
Andy Flemingb31a1d82008-12-16 15:29:15 -0800102#include <linux/phy_fixed.h>
103#include <linux/of.h>
David Daney4b6ba8a2010-10-26 15:07:13 -0700104#include <linux/of_net.h>
Claudiu Manoilfd31a952014-10-07 10:44:31 +0300105#include <linux/of_address.h>
106#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#include "gianfar.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#define TX_TIMEOUT (1*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Claudiu Manoil75354142015-07-13 16:22:06 +0300112const char gfar_driver_version[] = "2.0";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static int gfar_enet_open(struct net_device *dev);
115static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200116static void gfar_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static void gfar_timeout(struct net_device *dev);
118static int gfar_close(struct net_device *dev);
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300119static void gfar_alloc_rx_buffs(struct gfar_priv_rx_q *rx_queue,
120 int alloc_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int gfar_set_mac_address(struct net_device *dev);
122static int gfar_change_mtu(struct net_device *dev, int new_mtu);
David Howells7d12e782006-10-05 14:55:46 +0100123static irqreturn_t gfar_error(int irq, void *dev_id);
124static irqreturn_t gfar_transmit(int irq, void *dev_id);
125static irqreturn_t gfar_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static void adjust_link(struct net_device *dev);
Claudiu Manoil6ce29b02014-04-30 14:27:21 +0300127static noinline void gfar_update_link_state(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int init_phy(struct net_device *dev);
Grant Likely74888762011-02-22 21:05:51 -0700129static int gfar_probe(struct platform_device *ofdev);
Grant Likely2dc11582010-08-06 09:25:50 -0600130static int gfar_remove(struct platform_device *ofdev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400131static void free_skb_resources(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static void gfar_set_multi(struct net_device *dev);
133static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr);
Kapil Junejad3c12872007-05-11 18:25:11 -0500134static void gfar_configure_serdes(struct net_device *dev);
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200135static int gfar_poll_rx(struct napi_struct *napi, int budget);
136static int gfar_poll_tx(struct napi_struct *napi, int budget);
137static int gfar_poll_rx_sq(struct napi_struct *napi, int budget);
138static int gfar_poll_tx_sq(struct napi_struct *napi, int budget);
Vitaly Woolf2d71c22006-11-07 13:27:02 +0300139#ifdef CONFIG_NET_POLL_CONTROLLER
140static void gfar_netpoll(struct net_device *dev);
141#endif
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000142int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit);
Claudiu Manoilc233cf402013-03-19 07:40:02 +0000143static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue);
Claudiu Manoilf23223f2015-07-13 16:22:05 +0300144static void gfar_process_frame(struct net_device *ndev, struct sk_buff *skb);
Claudiu Manoilc10650b2014-02-17 12:53:18 +0200145static void gfar_halt_nodisable(struct gfar_private *priv);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600146static void gfar_clear_exact_match(struct net_device *dev);
Joe Perchesb6bc7652010-12-21 02:16:08 -0800147static void gfar_set_mac_for_addr(struct net_device *dev, int num,
148 const u8 *addr);
Andy Fleming26ccfc32009-03-10 12:58:28 +0000149static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151MODULE_AUTHOR("Freescale Semiconductor, Inc");
152MODULE_DESCRIPTION("Gianfar Ethernet Driver");
153MODULE_LICENSE("GPL");
154
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000155static void gfar_init_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000156 dma_addr_t buf)
157{
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000158 u32 lstatus;
159
Claudiu Manoila7312d52015-03-13 10:36:28 +0200160 bdp->bufPtr = cpu_to_be32(buf);
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000161
162 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000163 if (bdp == rx_queue->rx_bd_base + rx_queue->rx_ring_size - 1)
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000164 lstatus |= BD_LFLAG(RXBD_WRAP);
165
Claudiu Manoild55398b2014-10-07 10:44:35 +0300166 gfar_wmb();
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000167
Claudiu Manoila7312d52015-03-13 10:36:28 +0200168 bdp->lstatus = cpu_to_be32(lstatus);
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000169}
170
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300171static void gfar_init_bds(struct net_device *ndev)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000172{
Anton Vorontsov87283272009-10-12 06:00:39 +0000173 struct gfar_private *priv = netdev_priv(ndev);
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200174 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000175 struct gfar_priv_tx_q *tx_queue = NULL;
176 struct gfar_priv_rx_q *rx_queue = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000177 struct txbd8 *txbdp;
Kevin Hao03366a332014-12-24 14:05:45 +0800178 u32 __iomem *rfbptr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000179 int i, j;
Anton Vorontsov87283272009-10-12 06:00:39 +0000180
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000181 for (i = 0; i < priv->num_tx_queues; i++) {
182 tx_queue = priv->tx_queue[i];
183 /* Initialize some variables in our dev structure */
184 tx_queue->num_txbdfree = tx_queue->tx_ring_size;
185 tx_queue->dirty_tx = tx_queue->tx_bd_base;
186 tx_queue->cur_tx = tx_queue->tx_bd_base;
187 tx_queue->skb_curtx = 0;
188 tx_queue->skb_dirtytx = 0;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000189
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000190 /* Initialize Transmit Descriptor Ring */
191 txbdp = tx_queue->tx_bd_base;
192 for (j = 0; j < tx_queue->tx_ring_size; j++) {
193 txbdp->lstatus = 0;
194 txbdp->bufPtr = 0;
195 txbdp++;
Anton Vorontsov87283272009-10-12 06:00:39 +0000196 }
197
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000198 /* Set the last descriptor in the ring to indicate wrap */
199 txbdp--;
Claudiu Manoila7312d52015-03-13 10:36:28 +0200200 txbdp->status = cpu_to_be16(be16_to_cpu(txbdp->status) |
201 TXBD_WRAP);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000202 }
203
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200204 rfbptr = &regs->rfbptr0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000205 for (i = 0; i < priv->num_rx_queues; i++) {
206 rx_queue = priv->rx_queue[i];
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000207
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300208 rx_queue->next_to_clean = 0;
209 rx_queue->next_to_use = 0;
Claudiu Manoil75354142015-07-13 16:22:06 +0300210 rx_queue->next_to_alloc = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000211
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300212 /* make sure next_to_clean != next_to_use after this
213 * by leaving at least 1 unused descriptor
214 */
215 gfar_alloc_rx_buffs(rx_queue, gfar_rxbd_unused(rx_queue));
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000216
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200217 rx_queue->rfbptr = rfbptr;
218 rfbptr += 2;
Anton Vorontsov87283272009-10-12 06:00:39 +0000219 }
Anton Vorontsov87283272009-10-12 06:00:39 +0000220}
221
222static int gfar_alloc_skb_resources(struct net_device *ndev)
223{
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000224 void *vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000225 dma_addr_t addr;
Claudiu Manoil75354142015-07-13 16:22:06 +0300226 int i, j;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000227 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil369ec162013-02-14 05:00:02 +0000228 struct device *dev = priv->dev;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000229 struct gfar_priv_tx_q *tx_queue = NULL;
230 struct gfar_priv_rx_q *rx_queue = NULL;
231
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000232 priv->total_tx_ring_size = 0;
233 for (i = 0; i < priv->num_tx_queues; i++)
234 priv->total_tx_ring_size += priv->tx_queue[i]->tx_ring_size;
235
236 priv->total_rx_ring_size = 0;
237 for (i = 0; i < priv->num_rx_queues; i++)
238 priv->total_rx_ring_size += priv->rx_queue[i]->rx_ring_size;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000239
240 /* Allocate memory for the buffer descriptors */
Anton Vorontsov87283272009-10-12 06:00:39 +0000241 vaddr = dma_alloc_coherent(dev,
Joe Perchesd0320f72013-03-14 13:07:21 +0000242 (priv->total_tx_ring_size *
243 sizeof(struct txbd8)) +
244 (priv->total_rx_ring_size *
245 sizeof(struct rxbd8)),
246 &addr, GFP_KERNEL);
247 if (!vaddr)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000248 return -ENOMEM;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000249
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000250 for (i = 0; i < priv->num_tx_queues; i++) {
251 tx_queue = priv->tx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000252 tx_queue->tx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000253 tx_queue->tx_bd_dma_base = addr;
254 tx_queue->dev = ndev;
255 /* enet DMA only understands physical addresses */
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000256 addr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
257 vaddr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000258 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000259
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000260 /* Start the rx descriptor ring where the tx ring leaves off */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000261 for (i = 0; i < priv->num_rx_queues; i++) {
262 rx_queue = priv->rx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000263 rx_queue->rx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000264 rx_queue->rx_bd_dma_base = addr;
Claudiu Manoilf23223f2015-07-13 16:22:05 +0300265 rx_queue->ndev = ndev;
Claudiu Manoil75354142015-07-13 16:22:06 +0300266 rx_queue->dev = dev;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000267 addr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
268 vaddr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000269 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000270
271 /* Setup the skbuff rings */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000272 for (i = 0; i < priv->num_tx_queues; i++) {
273 tx_queue = priv->tx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000274 tx_queue->tx_skbuff =
275 kmalloc_array(tx_queue->tx_ring_size,
276 sizeof(*tx_queue->tx_skbuff),
277 GFP_KERNEL);
278 if (!tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000279 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000280
Claudiu Manoil75354142015-07-13 16:22:06 +0300281 for (j = 0; j < tx_queue->tx_ring_size; j++)
282 tx_queue->tx_skbuff[j] = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000283 }
284
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000285 for (i = 0; i < priv->num_rx_queues; i++) {
286 rx_queue = priv->rx_queue[i];
Claudiu Manoil75354142015-07-13 16:22:06 +0300287 rx_queue->rx_buff = kcalloc(rx_queue->rx_ring_size,
288 sizeof(*rx_queue->rx_buff),
289 GFP_KERNEL);
290 if (!rx_queue->rx_buff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000291 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000292 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000293
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300294 gfar_init_bds(ndev);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000295
296 return 0;
297
298cleanup:
299 free_skb_resources(priv);
300 return -ENOMEM;
301}
302
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000303static void gfar_init_tx_rx_base(struct gfar_private *priv)
304{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000305 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov18294ad2009-11-04 12:53:00 +0000306 u32 __iomem *baddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000307 int i;
308
309 baddr = &regs->tbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000310 for (i = 0; i < priv->num_tx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000311 gfar_write(baddr, priv->tx_queue[i]->tx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000312 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000313 }
314
315 baddr = &regs->rbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000316 for (i = 0; i < priv->num_rx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000317 gfar_write(baddr, priv->rx_queue[i]->rx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000318 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000319 }
320}
321
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200322static void gfar_init_rqprm(struct gfar_private *priv)
323{
324 struct gfar __iomem *regs = priv->gfargrp[0].regs;
325 u32 __iomem *baddr;
326 int i;
327
328 baddr = &regs->rqprm0;
329 for (i = 0; i < priv->num_rx_queues; i++) {
330 gfar_write(baddr, priv->rx_queue[i]->rx_ring_size |
331 (DEFAULT_RX_LFC_THR << FBTHR_SHIFT));
332 baddr++;
333 }
334}
335
Claudiu Manoil75354142015-07-13 16:22:06 +0300336static void gfar_rx_offload_en(struct gfar_private *priv)
Claudiu Manoil88302642014-02-24 12:13:43 +0200337{
Claudiu Manoil88302642014-02-24 12:13:43 +0200338 /* set this when rx hw offload (TOE) functions are being used */
339 priv->uses_rxfcb = 0;
340
341 if (priv->ndev->features & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX))
342 priv->uses_rxfcb = 1;
343
344 if (priv->hwts_rx_en)
345 priv->uses_rxfcb = 1;
Claudiu Manoil88302642014-02-24 12:13:43 +0200346}
347
Claudiu Manoila328ac92014-02-24 12:13:42 +0200348static void gfar_mac_rx_config(struct gfar_private *priv)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000349{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000350 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000351 u32 rctrl = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000352
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000353 if (priv->rx_filer_enable) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000354 rctrl |= RCTRL_FILREN;
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000355 /* Program the RIR0 reg with the required distribution */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200356 if (priv->poll_mode == GFAR_SQ_POLLING)
357 gfar_write(&regs->rir0, DEFAULT_2RXQ_RIR0);
358 else /* GFAR_MQ_POLLING */
359 gfar_write(&regs->rir0, DEFAULT_8RXQ_RIR0);
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000360 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000361
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000362 /* Restore PROMISC mode */
Claudiu Manoila328ac92014-02-24 12:13:42 +0200363 if (priv->ndev->flags & IFF_PROMISC)
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000364 rctrl |= RCTRL_PROM;
365
Claudiu Manoil88302642014-02-24 12:13:43 +0200366 if (priv->ndev->features & NETIF_F_RXCSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000367 rctrl |= RCTRL_CHECKSUMMING;
368
Claudiu Manoil88302642014-02-24 12:13:43 +0200369 if (priv->extended_hash)
370 rctrl |= RCTRL_EXTHASH | RCTRL_EMEN;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000371
372 if (priv->padding) {
373 rctrl &= ~RCTRL_PAL_MASK;
374 rctrl |= RCTRL_PADDING(priv->padding);
375 }
376
Manfred Rudigier97553f72010-06-11 01:49:05 +0000377 /* Enable HW time stamping if requested from user space */
Claudiu Manoil88302642014-02-24 12:13:43 +0200378 if (priv->hwts_rx_en)
Manfred Rudigier97553f72010-06-11 01:49:05 +0000379 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE;
380
Claudiu Manoil88302642014-02-24 12:13:43 +0200381 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_RX)
Sebastian Pöhnb852b722011-07-26 00:03:13 +0000382 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000383
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200384 /* Clear the LFC bit */
385 gfar_write(&regs->rctrl, rctrl);
386 /* Init flow control threshold values */
387 gfar_init_rqprm(priv);
388 gfar_write(&regs->ptv, DEFAULT_LFC_PTVVAL);
389 rctrl |= RCTRL_LFC;
390
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000391 /* Init rctrl based on our settings */
392 gfar_write(&regs->rctrl, rctrl);
Claudiu Manoila328ac92014-02-24 12:13:42 +0200393}
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000394
Claudiu Manoila328ac92014-02-24 12:13:42 +0200395static void gfar_mac_tx_config(struct gfar_private *priv)
396{
397 struct gfar __iomem *regs = priv->gfargrp[0].regs;
398 u32 tctrl = 0;
399
400 if (priv->ndev->features & NETIF_F_IP_CSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000401 tctrl |= TCTRL_INIT_CSUM;
402
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +0000403 if (priv->prio_sched_en)
404 tctrl |= TCTRL_TXSCHED_PRIO;
405 else {
406 tctrl |= TCTRL_TXSCHED_WRRS;
407 gfar_write(&regs->tr03wt, DEFAULT_WRRS_WEIGHT);
408 gfar_write(&regs->tr47wt, DEFAULT_WRRS_WEIGHT);
409 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000410
Claudiu Manoil88302642014-02-24 12:13:43 +0200411 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_TX)
412 tctrl |= TCTRL_VLINS;
413
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000414 gfar_write(&regs->tctrl, tctrl);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000415}
416
Claudiu Manoilf19015b2014-02-24 12:13:46 +0200417static void gfar_configure_coalescing(struct gfar_private *priv,
418 unsigned long tx_mask, unsigned long rx_mask)
419{
420 struct gfar __iomem *regs = priv->gfargrp[0].regs;
421 u32 __iomem *baddr;
422
423 if (priv->mode == MQ_MG_MODE) {
424 int i = 0;
425
426 baddr = &regs->txic0;
427 for_each_set_bit(i, &tx_mask, priv->num_tx_queues) {
428 gfar_write(baddr + i, 0);
429 if (likely(priv->tx_queue[i]->txcoalescing))
430 gfar_write(baddr + i, priv->tx_queue[i]->txic);
431 }
432
433 baddr = &regs->rxic0;
434 for_each_set_bit(i, &rx_mask, priv->num_rx_queues) {
435 gfar_write(baddr + i, 0);
436 if (likely(priv->rx_queue[i]->rxcoalescing))
437 gfar_write(baddr + i, priv->rx_queue[i]->rxic);
438 }
439 } else {
440 /* Backward compatible case -- even if we enable
441 * multiple queues, there's only single reg to program
442 */
443 gfar_write(&regs->txic, 0);
444 if (likely(priv->tx_queue[0]->txcoalescing))
445 gfar_write(&regs->txic, priv->tx_queue[0]->txic);
446
447 gfar_write(&regs->rxic, 0);
448 if (unlikely(priv->rx_queue[0]->rxcoalescing))
449 gfar_write(&regs->rxic, priv->rx_queue[0]->rxic);
450 }
451}
452
453void gfar_configure_coalescing_all(struct gfar_private *priv)
454{
455 gfar_configure_coalescing(priv, 0xFF, 0xFF);
456}
457
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000458static struct net_device_stats *gfar_get_stats(struct net_device *dev)
459{
460 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000461 unsigned long rx_packets = 0, rx_bytes = 0, rx_dropped = 0;
462 unsigned long tx_packets = 0, tx_bytes = 0;
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000463 int i;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000464
465 for (i = 0; i < priv->num_rx_queues; i++) {
466 rx_packets += priv->rx_queue[i]->stats.rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000467 rx_bytes += priv->rx_queue[i]->stats.rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000468 rx_dropped += priv->rx_queue[i]->stats.rx_dropped;
469 }
470
471 dev->stats.rx_packets = rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000472 dev->stats.rx_bytes = rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000473 dev->stats.rx_dropped = rx_dropped;
474
475 for (i = 0; i < priv->num_tx_queues; i++) {
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000476 tx_bytes += priv->tx_queue[i]->stats.tx_bytes;
477 tx_packets += priv->tx_queue[i]->stats.tx_packets;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000478 }
479
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000480 dev->stats.tx_bytes = tx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000481 dev->stats.tx_packets = tx_packets;
482
483 return &dev->stats;
484}
485
Claudiu Manoil3d23a052015-05-06 18:07:30 +0300486static int gfar_set_mac_addr(struct net_device *dev, void *p)
487{
488 eth_mac_addr(dev, p);
489
490 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
491
492 return 0;
493}
494
Andy Fleming26ccfc32009-03-10 12:58:28 +0000495static const struct net_device_ops gfar_netdev_ops = {
496 .ndo_open = gfar_enet_open,
497 .ndo_start_xmit = gfar_start_xmit,
498 .ndo_stop = gfar_close,
499 .ndo_change_mtu = gfar_change_mtu,
Michał Mirosław8b3afe92011-04-15 04:50:50 +0000500 .ndo_set_features = gfar_set_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000501 .ndo_set_rx_mode = gfar_set_multi,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000502 .ndo_tx_timeout = gfar_timeout,
503 .ndo_do_ioctl = gfar_ioctl,
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000504 .ndo_get_stats = gfar_get_stats,
Claudiu Manoil3d23a052015-05-06 18:07:30 +0300505 .ndo_set_mac_address = gfar_set_mac_addr,
Ben Hutchings240c1022009-07-09 17:54:35 +0000506 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000507#ifdef CONFIG_NET_POLL_CONTROLLER
508 .ndo_poll_controller = gfar_netpoll,
509#endif
510};
511
Claudiu Manoilefeddce2014-02-17 12:53:17 +0200512static void gfar_ints_disable(struct gfar_private *priv)
513{
514 int i;
515 for (i = 0; i < priv->num_grps; i++) {
516 struct gfar __iomem *regs = priv->gfargrp[i].regs;
517 /* Clear IEVENT */
518 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
519
520 /* Initialize IMASK */
521 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
522 }
523}
524
525static void gfar_ints_enable(struct gfar_private *priv)
526{
527 int i;
528 for (i = 0; i < priv->num_grps; i++) {
529 struct gfar __iomem *regs = priv->gfargrp[i].regs;
530 /* Unmask the interrupts we look for */
531 gfar_write(&regs->imask, IMASK_DEFAULT);
532 }
533}
534
Kevin Hao91c53f762014-12-24 14:05:44 +0800535static void lock_tx_qs(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000536{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000537 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000538
539 for (i = 0; i < priv->num_tx_queues; i++)
540 spin_lock(&priv->tx_queue[i]->txlock);
541}
542
Kevin Hao91c53f762014-12-24 14:05:44 +0800543static void unlock_tx_qs(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000544{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000545 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000546
547 for (i = 0; i < priv->num_tx_queues; i++)
548 spin_unlock(&priv->tx_queue[i]->txlock);
549}
550
Claudiu Manoil20862782014-02-17 12:53:14 +0200551static int gfar_alloc_tx_queues(struct gfar_private *priv)
552{
553 int i;
554
555 for (i = 0; i < priv->num_tx_queues; i++) {
556 priv->tx_queue[i] = kzalloc(sizeof(struct gfar_priv_tx_q),
557 GFP_KERNEL);
558 if (!priv->tx_queue[i])
559 return -ENOMEM;
560
561 priv->tx_queue[i]->tx_skbuff = NULL;
562 priv->tx_queue[i]->qindex = i;
563 priv->tx_queue[i]->dev = priv->ndev;
564 spin_lock_init(&(priv->tx_queue[i]->txlock));
565 }
566 return 0;
567}
568
569static int gfar_alloc_rx_queues(struct gfar_private *priv)
570{
571 int i;
572
573 for (i = 0; i < priv->num_rx_queues; i++) {
574 priv->rx_queue[i] = kzalloc(sizeof(struct gfar_priv_rx_q),
575 GFP_KERNEL);
576 if (!priv->rx_queue[i])
577 return -ENOMEM;
578
Claudiu Manoil20862782014-02-17 12:53:14 +0200579 priv->rx_queue[i]->qindex = i;
Claudiu Manoilf23223f2015-07-13 16:22:05 +0300580 priv->rx_queue[i]->ndev = priv->ndev;
Claudiu Manoil20862782014-02-17 12:53:14 +0200581 }
582 return 0;
583}
584
585static void gfar_free_tx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000586{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000587 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000588
589 for (i = 0; i < priv->num_tx_queues; i++)
590 kfree(priv->tx_queue[i]);
591}
592
Claudiu Manoil20862782014-02-17 12:53:14 +0200593static void gfar_free_rx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000594{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000595 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000596
597 for (i = 0; i < priv->num_rx_queues; i++)
598 kfree(priv->rx_queue[i]);
599}
600
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000601static void unmap_group_regs(struct gfar_private *priv)
602{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000603 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000604
605 for (i = 0; i < MAXGROUPS; i++)
606 if (priv->gfargrp[i].regs)
607 iounmap(priv->gfargrp[i].regs);
608}
609
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000610static void free_gfar_dev(struct gfar_private *priv)
611{
612 int i, j;
613
614 for (i = 0; i < priv->num_grps; i++)
615 for (j = 0; j < GFAR_NUM_IRQS; j++) {
616 kfree(priv->gfargrp[i].irqinfo[j]);
617 priv->gfargrp[i].irqinfo[j] = NULL;
618 }
619
620 free_netdev(priv->ndev);
621}
622
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000623static void disable_napi(struct gfar_private *priv)
624{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000625 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000626
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200627 for (i = 0; i < priv->num_grps; i++) {
628 napi_disable(&priv->gfargrp[i].napi_rx);
629 napi_disable(&priv->gfargrp[i].napi_tx);
630 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000631}
632
633static void enable_napi(struct gfar_private *priv)
634{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000635 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000636
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200637 for (i = 0; i < priv->num_grps; i++) {
638 napi_enable(&priv->gfargrp[i].napi_rx);
639 napi_enable(&priv->gfargrp[i].napi_tx);
640 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000641}
642
643static int gfar_parse_group(struct device_node *np,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000644 struct gfar_private *priv, const char *model)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000645{
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000646 struct gfar_priv_grp *grp = &priv->gfargrp[priv->num_grps];
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000647 int i;
648
Paul Gortmaker7c1e7e92013-02-04 09:49:42 +0000649 for (i = 0; i < GFAR_NUM_IRQS; i++) {
650 grp->irqinfo[i] = kzalloc(sizeof(struct gfar_irqinfo),
651 GFP_KERNEL);
652 if (!grp->irqinfo[i])
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000653 return -ENOMEM;
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000654 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000655
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000656 grp->regs = of_iomap(np, 0);
657 if (!grp->regs)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000658 return -ENOMEM;
659
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000660 gfar_irq(grp, TX)->irq = irq_of_parse_and_map(np, 0);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000661
662 /* If we aren't the FEC we have multiple interrupts */
663 if (model && strcasecmp(model, "FEC")) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000664 gfar_irq(grp, RX)->irq = irq_of_parse_and_map(np, 1);
665 gfar_irq(grp, ER)->irq = irq_of_parse_and_map(np, 2);
666 if (gfar_irq(grp, TX)->irq == NO_IRQ ||
667 gfar_irq(grp, RX)->irq == NO_IRQ ||
668 gfar_irq(grp, ER)->irq == NO_IRQ)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000669 return -EINVAL;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000670 }
671
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000672 grp->priv = priv;
673 spin_lock_init(&grp->grplock);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000674 if (priv->mode == MQ_MG_MODE) {
Jingchang Lu55917642015-03-13 10:52:32 +0200675 u32 rxq_mask, txq_mask;
676 int ret;
677
678 grp->rx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
679 grp->tx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
680
681 ret = of_property_read_u32(np, "fsl,rx-bit-map", &rxq_mask);
682 if (!ret) {
683 grp->rx_bit_map = rxq_mask ?
684 rxq_mask : (DEFAULT_MAPPING >> priv->num_grps);
685 }
686
687 ret = of_property_read_u32(np, "fsl,tx-bit-map", &txq_mask);
688 if (!ret) {
689 grp->tx_bit_map = txq_mask ?
690 txq_mask : (DEFAULT_MAPPING >> priv->num_grps);
691 }
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200692
693 if (priv->poll_mode == GFAR_SQ_POLLING) {
694 /* One Q per interrupt group: Q0 to G0, Q1 to G1 */
695 grp->rx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
696 grp->tx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200697 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000698 } else {
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000699 grp->rx_bit_map = 0xFF;
700 grp->tx_bit_map = 0xFF;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000701 }
Claudiu Manoil20862782014-02-17 12:53:14 +0200702
703 /* bit_map's MSB is q0 (from q0 to q7) but, for_each_set_bit parses
704 * right to left, so we need to revert the 8 bits to get the q index
705 */
706 grp->rx_bit_map = bitrev8(grp->rx_bit_map);
707 grp->tx_bit_map = bitrev8(grp->tx_bit_map);
708
709 /* Calculate RSTAT, TSTAT, RQUEUE and TQUEUE values,
710 * also assign queues to groups
711 */
712 for_each_set_bit(i, &grp->rx_bit_map, priv->num_rx_queues) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200713 if (!grp->rx_queue)
714 grp->rx_queue = priv->rx_queue[i];
Claudiu Manoil20862782014-02-17 12:53:14 +0200715 grp->num_rx_queues++;
716 grp->rstat |= (RSTAT_CLEAR_RHALT >> i);
717 priv->rqueue |= ((RQUEUE_EN0 | RQUEUE_EX0) >> i);
718 priv->rx_queue[i]->grp = grp;
719 }
720
721 for_each_set_bit(i, &grp->tx_bit_map, priv->num_tx_queues) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200722 if (!grp->tx_queue)
723 grp->tx_queue = priv->tx_queue[i];
Claudiu Manoil20862782014-02-17 12:53:14 +0200724 grp->num_tx_queues++;
725 grp->tstat |= (TSTAT_CLEAR_THALT >> i);
726 priv->tqueue |= (TQUEUE_EN0 >> i);
727 priv->tx_queue[i]->grp = grp;
728 }
729
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000730 priv->num_grps++;
731
732 return 0;
733}
734
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100735static int gfar_of_group_count(struct device_node *np)
736{
737 struct device_node *child;
738 int num = 0;
739
740 for_each_available_child_of_node(np, child)
741 if (!of_node_cmp(child->name, "queue-group"))
742 num++;
743
744 return num;
745}
746
Grant Likely2dc11582010-08-06 09:25:50 -0600747static int gfar_of_init(struct platform_device *ofdev, struct net_device **pdev)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800748{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800749 const char *model;
750 const char *ctype;
751 const void *mac_addr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000752 int err = 0, i;
753 struct net_device *dev = NULL;
754 struct gfar_private *priv = NULL;
Grant Likely61c7a082010-04-13 16:12:29 -0700755 struct device_node *np = ofdev->dev.of_node;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000756 struct device_node *child = NULL;
Jingchang Lu55917642015-03-13 10:52:32 +0200757 struct property *stash;
758 u32 stash_len = 0;
759 u32 stash_idx = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000760 unsigned int num_tx_qs, num_rx_qs;
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200761 unsigned short mode, poll_mode;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800762
Kevin Hao4b222ca2015-01-28 20:06:48 +0800763 if (!np)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800764 return -ENODEV;
765
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200766 if (of_device_is_compatible(np, "fsl,etsec2")) {
767 mode = MQ_MG_MODE;
768 poll_mode = GFAR_SQ_POLLING;
769 } else {
770 mode = SQ_SG_MODE;
771 poll_mode = GFAR_SQ_POLLING;
772 }
773
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200774 if (mode == SQ_SG_MODE) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200775 num_tx_qs = 1;
776 num_rx_qs = 1;
777 } else { /* MQ_MG_MODE */
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200778 /* get the actual number of supported groups */
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100779 unsigned int num_grps = gfar_of_group_count(np);
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200780
781 if (num_grps == 0 || num_grps > MAXGROUPS) {
782 dev_err(&ofdev->dev, "Invalid # of int groups(%d)\n",
783 num_grps);
784 pr_err("Cannot do alloc_etherdev, aborting\n");
785 return -EINVAL;
786 }
787
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200788 if (poll_mode == GFAR_SQ_POLLING) {
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200789 num_tx_qs = num_grps; /* one txq per int group */
790 num_rx_qs = num_grps; /* one rxq per int group */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200791 } else { /* GFAR_MQ_POLLING */
Jingchang Lu55917642015-03-13 10:52:32 +0200792 u32 tx_queues, rx_queues;
793 int ret;
794
795 /* parse the num of HW tx and rx queues */
796 ret = of_property_read_u32(np, "fsl,num_tx_queues",
797 &tx_queues);
798 num_tx_qs = ret ? 1 : tx_queues;
799
800 ret = of_property_read_u32(np, "fsl,num_rx_queues",
801 &rx_queues);
802 num_rx_qs = ret ? 1 : rx_queues;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200803 }
804 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000805
806 if (num_tx_qs > MAX_TX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000807 pr_err("num_tx_qs(=%d) greater than MAX_TX_QS(=%d)\n",
808 num_tx_qs, MAX_TX_QS);
809 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000810 return -EINVAL;
811 }
812
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000813 if (num_rx_qs > MAX_RX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000814 pr_err("num_rx_qs(=%d) greater than MAX_RX_QS(=%d)\n",
815 num_rx_qs, MAX_RX_QS);
816 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000817 return -EINVAL;
818 }
819
820 *pdev = alloc_etherdev_mq(sizeof(*priv), num_tx_qs);
821 dev = *pdev;
822 if (NULL == dev)
823 return -ENOMEM;
824
825 priv = netdev_priv(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000826 priv->ndev = dev;
827
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200828 priv->mode = mode;
829 priv->poll_mode = poll_mode;
830
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000831 priv->num_tx_queues = num_tx_qs;
Ben Hutchingsfe069122010-09-27 08:27:37 +0000832 netif_set_real_num_rx_queues(dev, num_rx_qs);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000833 priv->num_rx_queues = num_rx_qs;
Claudiu Manoil20862782014-02-17 12:53:14 +0200834
835 err = gfar_alloc_tx_queues(priv);
836 if (err)
837 goto tx_alloc_failed;
838
839 err = gfar_alloc_rx_queues(priv);
840 if (err)
841 goto rx_alloc_failed;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800842
Jingchang Lu55917642015-03-13 10:52:32 +0200843 err = of_property_read_string(np, "model", &model);
844 if (err) {
845 pr_err("Device model property missing, aborting\n");
846 goto rx_alloc_failed;
847 }
848
Jan Ceuleers0977f812012-06-05 03:42:12 +0000849 /* Init Rx queue filer rule set linked list */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700850 INIT_LIST_HEAD(&priv->rx_list.list);
851 priv->rx_list.count = 0;
852 mutex_init(&priv->rx_queue_access);
853
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000854 for (i = 0; i < MAXGROUPS; i++)
855 priv->gfargrp[i].regs = NULL;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800856
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000857 /* Parse and initialize group specific information */
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200858 if (priv->mode == MQ_MG_MODE) {
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100859 for_each_available_child_of_node(np, child) {
860 if (of_node_cmp(child->name, "queue-group"))
861 continue;
862
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000863 err = gfar_parse_group(child, priv, model);
864 if (err)
865 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800866 }
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200867 } else { /* SQ_SG_MODE */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000868 err = gfar_parse_group(np, priv, model);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000869 if (err)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000870 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800871 }
872
Jingchang Lu55917642015-03-13 10:52:32 +0200873 stash = of_find_property(np, "bd-stash", NULL);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800874
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000875 if (stash) {
Andy Fleming4d7902f2009-02-04 16:43:44 -0800876 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
877 priv->bd_stash_en = 1;
878 }
879
Jingchang Lu55917642015-03-13 10:52:32 +0200880 err = of_property_read_u32(np, "rx-stash-len", &stash_len);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800881
Jingchang Lu55917642015-03-13 10:52:32 +0200882 if (err == 0)
883 priv->rx_stash_size = stash_len;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800884
Jingchang Lu55917642015-03-13 10:52:32 +0200885 err = of_property_read_u32(np, "rx-stash-idx", &stash_idx);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800886
Jingchang Lu55917642015-03-13 10:52:32 +0200887 if (err == 0)
888 priv->rx_stash_index = stash_idx;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800889
890 if (stash_len || stash_idx)
891 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
892
Andy Flemingb31a1d82008-12-16 15:29:15 -0800893 mac_addr = of_get_mac_address(np);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000894
Andy Flemingb31a1d82008-12-16 15:29:15 -0800895 if (mac_addr)
Joe Perches6a3c910c2011-11-16 09:38:02 +0000896 memcpy(dev->dev_addr, mac_addr, ETH_ALEN);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800897
898 if (model && !strcasecmp(model, "TSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200899 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000900 FSL_GIANFAR_DEV_HAS_COALESCE |
901 FSL_GIANFAR_DEV_HAS_RMON |
902 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
903
Andy Flemingb31a1d82008-12-16 15:29:15 -0800904 if (model && !strcasecmp(model, "eTSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200905 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000906 FSL_GIANFAR_DEV_HAS_COALESCE |
907 FSL_GIANFAR_DEV_HAS_RMON |
908 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000909 FSL_GIANFAR_DEV_HAS_CSUM |
910 FSL_GIANFAR_DEV_HAS_VLAN |
911 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
912 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH |
913 FSL_GIANFAR_DEV_HAS_TIMER;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800914
Jingchang Lu55917642015-03-13 10:52:32 +0200915 err = of_property_read_string(np, "phy-connection-type", &ctype);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800916
917 /* We only care about rgmii-id. The rest are autodetected */
Jingchang Lu55917642015-03-13 10:52:32 +0200918 if (err == 0 && !strcmp(ctype, "rgmii-id"))
Andy Flemingb31a1d82008-12-16 15:29:15 -0800919 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
920 else
921 priv->interface = PHY_INTERFACE_MODE_MII;
922
Jingchang Lu55917642015-03-13 10:52:32 +0200923 if (of_find_property(np, "fsl,magic-packet", NULL))
Andy Flemingb31a1d82008-12-16 15:29:15 -0800924 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
925
Grant Likelyfe192a42009-04-25 12:53:12 +0000926 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800927
Florian Fainellibe403642014-05-22 09:47:48 -0700928 /* In the case of a fixed PHY, the DT node associated
929 * to the PHY is the Ethernet MAC DT node.
930 */
Uwe Kleine-König6f2c9bd2014-08-07 22:17:07 +0200931 if (!priv->phy_node && of_phy_is_fixed_link(np)) {
Florian Fainellibe403642014-05-22 09:47:48 -0700932 err = of_phy_register_fixed_link(np);
933 if (err)
934 goto err_grp_init;
935
Uwe Kleine-König6f2c9bd2014-08-07 22:17:07 +0200936 priv->phy_node = of_node_get(np);
Florian Fainellibe403642014-05-22 09:47:48 -0700937 }
938
Andy Flemingb31a1d82008-12-16 15:29:15 -0800939 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000940 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800941
942 return 0;
943
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000944err_grp_init:
945 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +0200946rx_alloc_failed:
947 gfar_free_rx_queues(priv);
948tx_alloc_failed:
949 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000950 free_gfar_dev(priv);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800951 return err;
952}
953
Ben Hutchingsca0c88c2013-11-18 23:05:27 +0000954static int gfar_hwtstamp_set(struct net_device *netdev, struct ifreq *ifr)
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000955{
956 struct hwtstamp_config config;
957 struct gfar_private *priv = netdev_priv(netdev);
958
959 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
960 return -EFAULT;
961
962 /* reserved for future extensions */
963 if (config.flags)
964 return -EINVAL;
965
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000966 switch (config.tx_type) {
967 case HWTSTAMP_TX_OFF:
968 priv->hwts_tx_en = 0;
969 break;
970 case HWTSTAMP_TX_ON:
971 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
972 return -ERANGE;
973 priv->hwts_tx_en = 1;
974 break;
975 default:
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000976 return -ERANGE;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000977 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000978
979 switch (config.rx_filter) {
980 case HWTSTAMP_FILTER_NONE:
Manfred Rudigier97553f72010-06-11 01:49:05 +0000981 if (priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +0000982 priv->hwts_rx_en = 0;
Claudiu Manoil08511332014-02-24 12:13:45 +0200983 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +0000984 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000985 break;
986 default:
987 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
988 return -ERANGE;
Manfred Rudigier97553f72010-06-11 01:49:05 +0000989 if (!priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +0000990 priv->hwts_rx_en = 1;
Claudiu Manoil08511332014-02-24 12:13:45 +0200991 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +0000992 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000993 config.rx_filter = HWTSTAMP_FILTER_ALL;
994 break;
995 }
996
997 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
998 -EFAULT : 0;
999}
1000
Ben Hutchingsca0c88c2013-11-18 23:05:27 +00001001static int gfar_hwtstamp_get(struct net_device *netdev, struct ifreq *ifr)
1002{
1003 struct hwtstamp_config config;
1004 struct gfar_private *priv = netdev_priv(netdev);
1005
1006 config.flags = 0;
1007 config.tx_type = priv->hwts_tx_en ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1008 config.rx_filter = (priv->hwts_rx_en ?
1009 HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE);
1010
1011 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1012 -EFAULT : 0;
1013}
1014
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001015static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1016{
1017 struct gfar_private *priv = netdev_priv(dev);
1018
1019 if (!netif_running(dev))
1020 return -EINVAL;
1021
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001022 if (cmd == SIOCSHWTSTAMP)
Ben Hutchingsca0c88c2013-11-18 23:05:27 +00001023 return gfar_hwtstamp_set(dev, rq);
1024 if (cmd == SIOCGHWTSTAMP)
1025 return gfar_hwtstamp_get(dev, rq);
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001026
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001027 if (!priv->phydev)
1028 return -ENODEV;
1029
Richard Cochran28b04112010-07-17 08:48:55 +00001030 return phy_mii_ioctl(priv->phydev, rq, cmd);
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001031}
1032
Anton Vorontsov18294ad2009-11-04 12:53:00 +00001033static u32 cluster_entry_per_class(struct gfar_private *priv, u32 rqfar,
1034 u32 class)
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001035{
1036 u32 rqfpr = FPR_FILER_MASK;
1037 u32 rqfcr = 0x0;
1038
1039 rqfar--;
1040 rqfcr = RQFCR_CLE | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001041 priv->ftp_rqfpr[rqfar] = rqfpr;
1042 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001043 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1044
1045 rqfar--;
1046 rqfcr = RQFCR_CMP_NOMATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001047 priv->ftp_rqfpr[rqfar] = rqfpr;
1048 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001049 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1050
1051 rqfar--;
1052 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND;
1053 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001054 priv->ftp_rqfcr[rqfar] = rqfcr;
1055 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001056 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1057
1058 rqfar--;
1059 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_MASK | RQFCR_AND;
1060 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001061 priv->ftp_rqfcr[rqfar] = rqfcr;
1062 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001063 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1064
1065 return rqfar;
1066}
1067
1068static void gfar_init_filer_table(struct gfar_private *priv)
1069{
1070 int i = 0x0;
1071 u32 rqfar = MAX_FILER_IDX;
1072 u32 rqfcr = 0x0;
1073 u32 rqfpr = FPR_FILER_MASK;
1074
1075 /* Default rule */
1076 rqfcr = RQFCR_CMP_MATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001077 priv->ftp_rqfcr[rqfar] = rqfcr;
1078 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001079 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1080
1081 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6);
1082 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_UDP);
1083 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_TCP);
1084 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4);
1085 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_UDP);
1086 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_TCP);
1087
Uwe Kleine-König85dd08e2010-06-11 12:16:55 +02001088 /* cur_filer_idx indicated the first non-masked rule */
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001089 priv->cur_filer_idx = rqfar;
1090
1091 /* Rest are masked rules */
1092 rqfcr = RQFCR_CMP_NOMATCH;
1093 for (i = 0; i < rqfar; i++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001094 priv->ftp_rqfcr[i] = rqfcr;
1095 priv->ftp_rqfpr[i] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001096 gfar_write_filer(priv, i, rqfcr, rqfpr);
1097 }
1098}
1099
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001100#ifdef CONFIG_PPC
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001101static void __gfar_detect_errata_83xx(struct gfar_private *priv)
Anton Vorontsov7d350972010-06-30 06:39:12 +00001102{
Anton Vorontsov7d350972010-06-30 06:39:12 +00001103 unsigned int pvr = mfspr(SPRN_PVR);
1104 unsigned int svr = mfspr(SPRN_SVR);
1105 unsigned int mod = (svr >> 16) & 0xfff6; /* w/o E suffix */
1106 unsigned int rev = svr & 0xffff;
1107
1108 /* MPC8313 Rev 2.0 and higher; All MPC837x */
1109 if ((pvr == 0x80850010 && mod == 0x80b0 && rev >= 0x0020) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001110 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001111 priv->errata |= GFAR_ERRATA_74;
1112
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +00001113 /* MPC8313 and MPC837x all rev */
1114 if ((pvr == 0x80850010 && mod == 0x80b0) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001115 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +00001116 priv->errata |= GFAR_ERRATA_76;
1117
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001118 /* MPC8313 Rev < 2.0 */
1119 if (pvr == 0x80850010 && mod == 0x80b0 && rev < 0x0020)
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00001120 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001121}
1122
1123static void __gfar_detect_errata_85xx(struct gfar_private *priv)
1124{
1125 unsigned int svr = mfspr(SPRN_SVR);
1126
1127 if ((SVR_SOC_VER(svr) == SVR_8548) && (SVR_REV(svr) == 0x20))
1128 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil53fad772013-10-09 20:20:42 +03001129 if (((SVR_SOC_VER(svr) == SVR_P2020) && (SVR_REV(svr) < 0x20)) ||
1130 ((SVR_SOC_VER(svr) == SVR_P2010) && (SVR_REV(svr) < 0x20)))
1131 priv->errata |= GFAR_ERRATA_76; /* aka eTSEC 20 */
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001132}
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001133#endif
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001134
1135static void gfar_detect_errata(struct gfar_private *priv)
1136{
1137 struct device *dev = &priv->ofdev->dev;
1138
1139 /* no plans to fix */
1140 priv->errata |= GFAR_ERRATA_A002;
1141
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001142#ifdef CONFIG_PPC
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001143 if (pvr_version_is(PVR_VER_E500V1) || pvr_version_is(PVR_VER_E500V2))
1144 __gfar_detect_errata_85xx(priv);
1145 else /* non-mpc85xx parts, i.e. e300 core based */
1146 __gfar_detect_errata_83xx(priv);
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001147#endif
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00001148
Anton Vorontsov7d350972010-06-30 06:39:12 +00001149 if (priv->errata)
1150 dev_info(dev, "enabled errata workarounds, flags: 0x%x\n",
1151 priv->errata);
1152}
1153
Claudiu Manoil08511332014-02-24 12:13:45 +02001154void gfar_mac_reset(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Claudiu Manoil20862782014-02-17 12:53:14 +02001156 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Claudiu Manoila328ac92014-02-24 12:13:42 +02001157 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* Reset MAC layer */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001160 gfar_write(&regs->maccfg1, MACCFG1_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Andy Flemingb98ac702009-02-04 16:38:05 -08001162 /* We need to delay at least 3 TX clocks */
Claudiu Manoila328ac92014-02-24 12:13:42 +02001163 udelay(3);
Andy Flemingb98ac702009-02-04 16:38:05 -08001164
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001165 /* the soft reset bit is not self-resetting, so we need to
1166 * clear it before resuming normal operation
1167 */
Claudiu Manoil20862782014-02-17 12:53:14 +02001168 gfar_write(&regs->maccfg1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Claudiu Manoila328ac92014-02-24 12:13:42 +02001170 udelay(3);
1171
Claudiu Manoil75354142015-07-13 16:22:06 +03001172 gfar_rx_offload_en(priv);
Claudiu Manoil88302642014-02-24 12:13:43 +02001173
1174 /* Initialize the max receive frame/buffer lengths */
Claudiu Manoil75354142015-07-13 16:22:06 +03001175 gfar_write(&regs->maxfrm, GFAR_JUMBO_FRAME_SIZE);
1176 gfar_write(&regs->mrblr, GFAR_RXB_SIZE);
Claudiu Manoila328ac92014-02-24 12:13:42 +02001177
1178 /* Initialize the Minimum Frame Length Register */
1179 gfar_write(&regs->minflr, MINFLR_INIT_SETTINGS);
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /* Initialize MACCFG2. */
Anton Vorontsov7d350972010-06-30 06:39:12 +00001182 tempval = MACCFG2_INIT_SETTINGS;
Claudiu Manoil88302642014-02-24 12:13:43 +02001183
Claudiu Manoil75354142015-07-13 16:22:06 +03001184 /* eTSEC74 erratum: Rx frames of length MAXFRM or MAXFRM-1
1185 * are marked as truncated. Avoid this by MACCFG2[Huge Frame]=1,
1186 * and by checking RxBD[LG] and discarding larger than MAXFRM.
Claudiu Manoil88302642014-02-24 12:13:43 +02001187 */
Claudiu Manoil75354142015-07-13 16:22:06 +03001188 if (gfar_has_errata(priv, GFAR_ERRATA_74))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001189 tempval |= MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK;
Claudiu Manoil88302642014-02-24 12:13:43 +02001190
Anton Vorontsov7d350972010-06-30 06:39:12 +00001191 gfar_write(&regs->maccfg2, tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Claudiu Manoila328ac92014-02-24 12:13:42 +02001193 /* Clear mac addr hash registers */
1194 gfar_write(&regs->igaddr0, 0);
1195 gfar_write(&regs->igaddr1, 0);
1196 gfar_write(&regs->igaddr2, 0);
1197 gfar_write(&regs->igaddr3, 0);
1198 gfar_write(&regs->igaddr4, 0);
1199 gfar_write(&regs->igaddr5, 0);
1200 gfar_write(&regs->igaddr6, 0);
1201 gfar_write(&regs->igaddr7, 0);
1202
1203 gfar_write(&regs->gaddr0, 0);
1204 gfar_write(&regs->gaddr1, 0);
1205 gfar_write(&regs->gaddr2, 0);
1206 gfar_write(&regs->gaddr3, 0);
1207 gfar_write(&regs->gaddr4, 0);
1208 gfar_write(&regs->gaddr5, 0);
1209 gfar_write(&regs->gaddr6, 0);
1210 gfar_write(&regs->gaddr7, 0);
1211
1212 if (priv->extended_hash)
1213 gfar_clear_exact_match(priv->ndev);
1214
1215 gfar_mac_rx_config(priv);
1216
1217 gfar_mac_tx_config(priv);
1218
1219 gfar_set_mac_address(priv->ndev);
1220
1221 gfar_set_multi(priv->ndev);
1222
1223 /* clear ievent and imask before configuring coalescing */
1224 gfar_ints_disable(priv);
1225
1226 /* Configure the coalescing support */
1227 gfar_configure_coalescing_all(priv);
1228}
1229
1230static void gfar_hw_init(struct gfar_private *priv)
1231{
1232 struct gfar __iomem *regs = priv->gfargrp[0].regs;
1233 u32 attrs;
1234
1235 /* Stop the DMA engine now, in case it was running before
1236 * (The firmware could have used it, and left it running).
1237 */
1238 gfar_halt(priv);
1239
1240 gfar_mac_reset(priv);
1241
1242 /* Zero out the rmon mib registers if it has them */
1243 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
1244 memset_io(&(regs->rmon), 0, sizeof(struct rmon_mib));
1245
1246 /* Mask off the CAM interrupts */
1247 gfar_write(&regs->rmon.cam1, 0xffffffff);
1248 gfar_write(&regs->rmon.cam2, 0xffffffff);
1249 }
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 /* Initialize ECNTRL */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001252 gfar_write(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Claudiu Manoil34018fd2014-02-17 12:53:15 +02001254 /* Set the extraction length and index */
1255 attrs = ATTRELI_EL(priv->rx_stash_size) |
1256 ATTRELI_EI(priv->rx_stash_index);
1257
1258 gfar_write(&regs->attreli, attrs);
1259
1260 /* Start with defaults, and add stashing
1261 * depending on driver parameters
1262 */
1263 attrs = ATTR_INIT_SETTINGS;
1264
1265 if (priv->bd_stash_en)
1266 attrs |= ATTR_BDSTASH;
1267
1268 if (priv->rx_stash_size != 0)
1269 attrs |= ATTR_BUFSTASH;
1270
1271 gfar_write(&regs->attr, attrs);
1272
1273 /* FIFO configs */
1274 gfar_write(&regs->fifo_tx_thr, DEFAULT_FIFO_TX_THR);
1275 gfar_write(&regs->fifo_tx_starve, DEFAULT_FIFO_TX_STARVE);
1276 gfar_write(&regs->fifo_tx_starve_shutoff, DEFAULT_FIFO_TX_STARVE_OFF);
1277
Claudiu Manoil20862782014-02-17 12:53:14 +02001278 /* Program the interrupt steering regs, only for MG devices */
1279 if (priv->num_grps > 1)
1280 gfar_write_isrg(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001281}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Xiubo Li898157e2014-06-04 16:49:16 +08001283static void gfar_init_addr_hash_table(struct gfar_private *priv)
Claudiu Manoil20862782014-02-17 12:53:14 +02001284{
1285 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001286
Andy Flemingb31a1d82008-12-16 15:29:15 -08001287 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001288 priv->extended_hash = 1;
1289 priv->hash_width = 9;
1290
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001291 priv->hash_regs[0] = &regs->igaddr0;
1292 priv->hash_regs[1] = &regs->igaddr1;
1293 priv->hash_regs[2] = &regs->igaddr2;
1294 priv->hash_regs[3] = &regs->igaddr3;
1295 priv->hash_regs[4] = &regs->igaddr4;
1296 priv->hash_regs[5] = &regs->igaddr5;
1297 priv->hash_regs[6] = &regs->igaddr6;
1298 priv->hash_regs[7] = &regs->igaddr7;
1299 priv->hash_regs[8] = &regs->gaddr0;
1300 priv->hash_regs[9] = &regs->gaddr1;
1301 priv->hash_regs[10] = &regs->gaddr2;
1302 priv->hash_regs[11] = &regs->gaddr3;
1303 priv->hash_regs[12] = &regs->gaddr4;
1304 priv->hash_regs[13] = &regs->gaddr5;
1305 priv->hash_regs[14] = &regs->gaddr6;
1306 priv->hash_regs[15] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001307
1308 } else {
1309 priv->extended_hash = 0;
1310 priv->hash_width = 8;
1311
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001312 priv->hash_regs[0] = &regs->gaddr0;
1313 priv->hash_regs[1] = &regs->gaddr1;
1314 priv->hash_regs[2] = &regs->gaddr2;
1315 priv->hash_regs[3] = &regs->gaddr3;
1316 priv->hash_regs[4] = &regs->gaddr4;
1317 priv->hash_regs[5] = &regs->gaddr5;
1318 priv->hash_regs[6] = &regs->gaddr6;
1319 priv->hash_regs[7] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001320 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001321}
1322
1323/* Set up the ethernet device structure, private data,
1324 * and anything else we need before we start
1325 */
1326static int gfar_probe(struct platform_device *ofdev)
1327{
1328 struct net_device *dev = NULL;
1329 struct gfar_private *priv = NULL;
1330 int err = 0, i;
1331
1332 err = gfar_of_init(ofdev, &dev);
1333
1334 if (err)
1335 return err;
1336
1337 priv = netdev_priv(dev);
1338 priv->ndev = dev;
1339 priv->ofdev = ofdev;
1340 priv->dev = &ofdev->dev;
1341 SET_NETDEV_DEV(dev, &ofdev->dev);
1342
1343 spin_lock_init(&priv->bflock);
1344 INIT_WORK(&priv->reset_task, gfar_reset_task);
1345
1346 platform_set_drvdata(ofdev, priv);
1347
1348 gfar_detect_errata(priv);
1349
Claudiu Manoil20862782014-02-17 12:53:14 +02001350 /* Set the dev->base_addr to the gfar reg region */
1351 dev->base_addr = (unsigned long) priv->gfargrp[0].regs;
1352
1353 /* Fill in the dev structure */
1354 dev->watchdog_timeo = TX_TIMEOUT;
1355 dev->mtu = 1500;
1356 dev->netdev_ops = &gfar_netdev_ops;
1357 dev->ethtool_ops = &gfar_ethtool_ops;
1358
1359 /* Register for napi ...We are registering NAPI for each grp */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02001360 for (i = 0; i < priv->num_grps; i++) {
1361 if (priv->poll_mode == GFAR_SQ_POLLING) {
1362 netif_napi_add(dev, &priv->gfargrp[i].napi_rx,
1363 gfar_poll_rx_sq, GFAR_DEV_WEIGHT);
1364 netif_napi_add(dev, &priv->gfargrp[i].napi_tx,
1365 gfar_poll_tx_sq, 2);
1366 } else {
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02001367 netif_napi_add(dev, &priv->gfargrp[i].napi_rx,
1368 gfar_poll_rx, GFAR_DEV_WEIGHT);
1369 netif_napi_add(dev, &priv->gfargrp[i].napi_tx,
1370 gfar_poll_tx, 2);
1371 }
1372 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001373
1374 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
1375 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
1376 NETIF_F_RXCSUM;
1377 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG |
1378 NETIF_F_RXCSUM | NETIF_F_HIGHDMA;
1379 }
1380
1381 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) {
1382 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX |
1383 NETIF_F_HW_VLAN_CTAG_RX;
1384 dev->features |= NETIF_F_HW_VLAN_CTAG_RX;
1385 }
1386
Claudiu Manoil3d23a052015-05-06 18:07:30 +03001387 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1388
Claudiu Manoil20862782014-02-17 12:53:14 +02001389 gfar_init_addr_hash_table(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001390
Claudiu Manoil532c37b2014-02-17 12:53:16 +02001391 /* Insert receive time stamps into padding alignment bytes */
1392 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
1393 priv->padding = 8;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001394
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001395 if (dev->features & NETIF_F_IP_CSUM ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001396 priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
Wu Jiajun-B06378bee9e582012-05-21 23:00:48 +00001397 dev->needed_headroom = GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001399 /* Initializing some of the rx/tx queue level parameters */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001400 for (i = 0; i < priv->num_tx_queues; i++) {
1401 priv->tx_queue[i]->tx_ring_size = DEFAULT_TX_RING_SIZE;
1402 priv->tx_queue[i]->num_txbdfree = DEFAULT_TX_RING_SIZE;
1403 priv->tx_queue[i]->txcoalescing = DEFAULT_TX_COALESCE;
1404 priv->tx_queue[i]->txic = DEFAULT_TXIC;
1405 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001406
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001407 for (i = 0; i < priv->num_rx_queues; i++) {
1408 priv->rx_queue[i]->rx_ring_size = DEFAULT_RX_RING_SIZE;
1409 priv->rx_queue[i]->rxcoalescing = DEFAULT_RX_COALESCE;
1410 priv->rx_queue[i]->rxic = DEFAULT_RXIC;
1411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Jan Ceuleers0977f812012-06-05 03:42:12 +00001413 /* always enable rx filer */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001414 priv->rx_filer_enable = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001415 /* Enable most messages by default */
1416 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +00001417 /* use pritority h/w tx queue scheduling for single queue devices */
1418 if (priv->num_tx_queues == 1)
1419 priv->prio_sched_en = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001420
Claudiu Manoil08511332014-02-24 12:13:45 +02001421 set_bit(GFAR_DOWN, &priv->state);
1422
Claudiu Manoila328ac92014-02-24 12:13:42 +02001423 gfar_hw_init(priv);
Trent Piephod3eab822008-10-02 11:12:24 +00001424
Fabio Estevamd4c642e2014-06-03 19:55:38 -03001425 /* Carrier starts down, phylib will bring it up */
1426 netif_carrier_off(dev);
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 err = register_netdev(dev);
1429
1430 if (err) {
Joe Perches59deab22011-06-14 08:57:47 +00001431 pr_err("%s: Cannot register net device, aborting\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 goto register_fail;
1433 }
1434
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001435 device_init_wakeup(&dev->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001436 priv->device_flags &
1437 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001438
Dai Harukic50a5d92008-12-17 16:51:32 -08001439 /* fill out IRQ number and name fields */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001440 for (i = 0; i < priv->num_grps; i++) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001441 struct gfar_priv_grp *grp = &priv->gfargrp[i];
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001442 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001443 sprintf(gfar_irq(grp, TX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001444 dev->name, "_g", '0' + i, "_tx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001445 sprintf(gfar_irq(grp, RX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001446 dev->name, "_g", '0' + i, "_rx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001447 sprintf(gfar_irq(grp, ER)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001448 dev->name, "_g", '0' + i, "_er");
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001449 } else
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001450 strcpy(gfar_irq(grp, TX)->name, dev->name);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001451 }
Dai Harukic50a5d92008-12-17 16:51:32 -08001452
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001453 /* Initialize the filer table */
1454 gfar_init_filer_table(priv);
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 /* Print out the device info */
Joe Perches59deab22011-06-14 08:57:47 +00001457 netdev_info(dev, "mac: %pM\n", dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Jan Ceuleers0977f812012-06-05 03:42:12 +00001459 /* Even more device info helps when determining which kernel
1460 * provided which set of benchmarks.
1461 */
Joe Perches59deab22011-06-14 08:57:47 +00001462 netdev_info(dev, "Running with NAPI enabled\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001463 for (i = 0; i < priv->num_rx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001464 netdev_info(dev, "RX BD ring size for Q[%d]: %d\n",
1465 i, priv->rx_queue[i]->rx_ring_size);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001466 for (i = 0; i < priv->num_tx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001467 netdev_info(dev, "TX BD ring size for Q[%d]: %d\n",
1468 i, priv->tx_queue[i]->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 return 0;
1471
1472register_fail:
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001473 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001474 gfar_free_rx_queues(priv);
1475 gfar_free_tx_queues(priv);
Uwe Kleine-König888c88b2014-08-07 21:20:12 +02001476 of_node_put(priv->phy_node);
1477 of_node_put(priv->tbi_node);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001478 free_gfar_dev(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001479 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Grant Likely2dc11582010-08-06 09:25:50 -06001482static int gfar_remove(struct platform_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Jingoo Han8513fbd2013-05-23 00:52:31 +00001484 struct gfar_private *priv = platform_get_drvdata(ofdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Uwe Kleine-König888c88b2014-08-07 21:20:12 +02001486 of_node_put(priv->phy_node);
1487 of_node_put(priv->tbi_node);
Grant Likelyfe192a42009-04-25 12:53:12 +00001488
David S. Millerd9d8e042009-09-06 01:41:02 -07001489 unregister_netdev(priv->ndev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001490 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001491 gfar_free_rx_queues(priv);
1492 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001493 free_gfar_dev(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 return 0;
1496}
1497
Scott Woodd87eb122008-07-11 18:04:45 -05001498#ifdef CONFIG_PM
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001499
1500static int gfar_suspend(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001501{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001502 struct gfar_private *priv = dev_get_drvdata(dev);
1503 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001504 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001505 unsigned long flags;
1506 u32 tempval;
1507
1508 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001509 (priv->device_flags &
1510 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001511
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001512 netif_device_detach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001513
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001514 if (netif_running(ndev)) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001515
1516 local_irq_save(flags);
1517 lock_tx_qs(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001518
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001519 gfar_halt_nodisable(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001520
1521 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001522 tempval = gfar_read(&regs->maccfg1);
Scott Woodd87eb122008-07-11 18:04:45 -05001523
1524 tempval &= ~MACCFG1_TX_EN;
1525
1526 if (!magic_packet)
1527 tempval &= ~MACCFG1_RX_EN;
1528
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001529 gfar_write(&regs->maccfg1, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001530
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001531 unlock_tx_qs(priv);
1532 local_irq_restore(flags);
Scott Woodd87eb122008-07-11 18:04:45 -05001533
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001534 disable_napi(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001535
1536 if (magic_packet) {
1537 /* Enable interrupt on Magic Packet */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001538 gfar_write(&regs->imask, IMASK_MAG);
Scott Woodd87eb122008-07-11 18:04:45 -05001539
1540 /* Enable Magic Packet mode */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001541 tempval = gfar_read(&regs->maccfg2);
Scott Woodd87eb122008-07-11 18:04:45 -05001542 tempval |= MACCFG2_MPEN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001543 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001544 } else {
1545 phy_stop(priv->phydev);
1546 }
1547 }
1548
1549 return 0;
1550}
1551
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001552static int gfar_resume(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001553{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001554 struct gfar_private *priv = dev_get_drvdata(dev);
1555 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001556 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001557 unsigned long flags;
1558 u32 tempval;
1559 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001560 (priv->device_flags &
1561 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001562
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001563 if (!netif_running(ndev)) {
1564 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001565 return 0;
1566 }
1567
1568 if (!magic_packet && priv->phydev)
1569 phy_start(priv->phydev);
1570
1571 /* Disable Magic Packet mode, in case something
1572 * else woke us up.
1573 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001574 local_irq_save(flags);
1575 lock_tx_qs(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001576
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001577 tempval = gfar_read(&regs->maccfg2);
Scott Woodd87eb122008-07-11 18:04:45 -05001578 tempval &= ~MACCFG2_MPEN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001579 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001580
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001581 gfar_start(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001582
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001583 unlock_tx_qs(priv);
1584 local_irq_restore(flags);
Scott Woodd87eb122008-07-11 18:04:45 -05001585
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001586 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001587
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001588 enable_napi(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001589
1590 return 0;
1591}
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001592
1593static int gfar_restore(struct device *dev)
1594{
1595 struct gfar_private *priv = dev_get_drvdata(dev);
1596 struct net_device *ndev = priv->ndev;
1597
Wang Dongsheng103cdd12012-11-09 04:43:51 +00001598 if (!netif_running(ndev)) {
1599 netif_device_attach(ndev);
1600
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001601 return 0;
Wang Dongsheng103cdd12012-11-09 04:43:51 +00001602 }
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001603
Claudiu Manoil76f31e82015-07-13 16:22:03 +03001604 gfar_init_bds(ndev);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001605
Claudiu Manoila328ac92014-02-24 12:13:42 +02001606 gfar_mac_reset(priv);
1607
1608 gfar_init_tx_rx_base(priv);
1609
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001610 gfar_start(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001611
1612 priv->oldlink = 0;
1613 priv->oldspeed = 0;
1614 priv->oldduplex = -1;
1615
1616 if (priv->phydev)
1617 phy_start(priv->phydev);
1618
1619 netif_device_attach(ndev);
Anton Vorontsov5ea681d2009-11-10 14:11:05 +00001620 enable_napi(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001621
1622 return 0;
1623}
1624
1625static struct dev_pm_ops gfar_pm_ops = {
1626 .suspend = gfar_suspend,
1627 .resume = gfar_resume,
1628 .freeze = gfar_suspend,
1629 .thaw = gfar_resume,
1630 .restore = gfar_restore,
1631};
1632
1633#define GFAR_PM_OPS (&gfar_pm_ops)
1634
Scott Woodd87eb122008-07-11 18:04:45 -05001635#else
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001636
1637#define GFAR_PM_OPS NULL
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001638
Scott Woodd87eb122008-07-11 18:04:45 -05001639#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001641/* Reads the controller's registers to determine what interface
1642 * connects it to the PHY.
1643 */
1644static phy_interface_t gfar_get_interface(struct net_device *dev)
1645{
1646 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001647 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001648 u32 ecntrl;
1649
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001650 ecntrl = gfar_read(&regs->ecntrl);
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001651
1652 if (ecntrl & ECNTRL_SGMII_MODE)
1653 return PHY_INTERFACE_MODE_SGMII;
1654
1655 if (ecntrl & ECNTRL_TBI_MODE) {
1656 if (ecntrl & ECNTRL_REDUCED_MODE)
1657 return PHY_INTERFACE_MODE_RTBI;
1658 else
1659 return PHY_INTERFACE_MODE_TBI;
1660 }
1661
1662 if (ecntrl & ECNTRL_REDUCED_MODE) {
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001663 if (ecntrl & ECNTRL_REDUCED_MII_MODE) {
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001664 return PHY_INTERFACE_MODE_RMII;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001665 }
Andy Fleming7132ab72007-07-11 11:43:07 -05001666 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -08001667 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -05001668
Jan Ceuleers0977f812012-06-05 03:42:12 +00001669 /* This isn't autodetected right now, so it must
Andy Fleming7132ab72007-07-11 11:43:07 -05001670 * be set by the device tree or platform code.
1671 */
1672 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
1673 return PHY_INTERFACE_MODE_RGMII_ID;
1674
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001675 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -05001676 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001677 }
1678
Andy Flemingb31a1d82008-12-16 15:29:15 -08001679 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001680 return PHY_INTERFACE_MODE_GMII;
1681
1682 return PHY_INTERFACE_MODE_MII;
1683}
1684
1685
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001686/* Initializes driver's PHY state, and attaches to the PHY.
1687 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
1689static int init_phy(struct net_device *dev)
1690{
1691 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001692 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -08001693 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001694 GFAR_SUPPORTED_GBIT : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001695 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 priv->oldlink = 0;
1698 priv->oldspeed = 0;
1699 priv->oldduplex = -1;
1700
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001701 interface = gfar_get_interface(dev);
1702
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001703 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
1704 interface);
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001705 if (!priv->phydev) {
1706 dev_err(&dev->dev, "could not attach to PHY\n");
1707 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +00001708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Kapil Junejad3c12872007-05-11 18:25:11 -05001710 if (interface == PHY_INTERFACE_MODE_SGMII)
1711 gfar_configure_serdes(dev);
1712
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001713 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +00001714 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
1715 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Pavaluca Matei-B46610cf987af2014-10-27 10:42:42 +02001717 /* Add support for flow control, but don't advertise it by default */
1718 priv->phydev->supported |= (SUPPORTED_Pause | SUPPORTED_Asym_Pause);
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
Jan Ceuleers0977f812012-06-05 03:42:12 +00001723/* Initialize TBI PHY interface for communicating with the
Paul Gortmakerd0313582008-04-17 00:08:10 -04001724 * SERDES lynx PHY on the chip. We communicate with this PHY
1725 * through the MDIO bus on each controller, treating it as a
1726 * "normal" PHY at the address found in the TBIPA register. We assume
1727 * that the TBIPA register is valid. Either the MDIO bus code will set
1728 * it to a value that doesn't conflict with other PHYs on the bus, or the
1729 * value doesn't matter, as there are no other PHYs on the bus.
1730 */
Kapil Junejad3c12872007-05-11 18:25:11 -05001731static void gfar_configure_serdes(struct net_device *dev)
1732{
1733 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +00001734 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -07001735
Grant Likelyfe192a42009-04-25 12:53:12 +00001736 if (!priv->tbi_node) {
1737 dev_warn(&dev->dev, "error: SGMII mode requires that the "
1738 "device tree specify a tbi-handle\n");
1739 return;
1740 }
1741
1742 tbiphy = of_phy_find_device(priv->tbi_node);
1743 if (!tbiphy) {
1744 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -08001745 return;
1746 }
Kapil Junejad3c12872007-05-11 18:25:11 -05001747
Jan Ceuleers0977f812012-06-05 03:42:12 +00001748 /* If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -07001749 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1750 * everything for us? Resetting it takes the link down and requires
1751 * several seconds for it to come back.
1752 */
Grant Likelyfe192a42009-04-25 12:53:12 +00001753 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -08001754 return;
Kapil Junejad3c12872007-05-11 18:25:11 -05001755
Paul Gortmakerd0313582008-04-17 00:08:10 -04001756 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +00001757 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -05001758
Grant Likelyfe192a42009-04-25 12:53:12 +00001759 phy_write(tbiphy, MII_ADVERTISE,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001760 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1761 ADVERTISE_1000XPSE_ASYM);
Kapil Junejad3c12872007-05-11 18:25:11 -05001762
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001763 phy_write(tbiphy, MII_BMCR,
1764 BMCR_ANENABLE | BMCR_ANRESTART | BMCR_FULLDPLX |
1765 BMCR_SPEED1000);
Kapil Junejad3c12872007-05-11 18:25:11 -05001766}
1767
Anton Vorontsov511d9342010-06-30 06:39:15 +00001768static int __gfar_is_rx_idle(struct gfar_private *priv)
1769{
1770 u32 res;
1771
Jan Ceuleers0977f812012-06-05 03:42:12 +00001772 /* Normaly TSEC should not hang on GRS commands, so we should
Anton Vorontsov511d9342010-06-30 06:39:15 +00001773 * actually wait for IEVENT_GRSC flag.
1774 */
Claudiu Manoilad3660c2013-10-09 20:20:40 +03001775 if (!gfar_has_errata(priv, GFAR_ERRATA_A002))
Anton Vorontsov511d9342010-06-30 06:39:15 +00001776 return 0;
1777
Jan Ceuleers0977f812012-06-05 03:42:12 +00001778 /* Read the eTSEC register at offset 0xD1C. If bits 7-14 are
Anton Vorontsov511d9342010-06-30 06:39:15 +00001779 * the same as bits 23-30, the eTSEC Rx is assumed to be idle
1780 * and the Rx can be safely reset.
1781 */
1782 res = gfar_read((void __iomem *)priv->gfargrp[0].regs + 0xd1c);
1783 res &= 0x7f807f80;
1784 if ((res & 0xffff) == (res >> 16))
1785 return 1;
1786
1787 return 0;
1788}
Kumar Gala0bbaf062005-06-20 10:54:21 -05001789
1790/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001791static void gfar_halt_nodisable(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001793 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 u32 tempval;
Claudiu Manoila4feee82014-10-07 10:44:34 +03001795 unsigned int timeout;
1796 int stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001798 gfar_ints_disable(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Claudiu Manoila4feee82014-10-07 10:44:34 +03001800 if (gfar_is_dma_stopped(priv))
1801 return;
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 /* Stop the DMA, and wait for it to stop */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001804 tempval = gfar_read(&regs->dmactrl);
Claudiu Manoila4feee82014-10-07 10:44:34 +03001805 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
1806 gfar_write(&regs->dmactrl, tempval);
Anton Vorontsov511d9342010-06-30 06:39:15 +00001807
Claudiu Manoila4feee82014-10-07 10:44:34 +03001808retry:
1809 timeout = 1000;
1810 while (!(stopped = gfar_is_dma_stopped(priv)) && timeout) {
1811 cpu_relax();
1812 timeout--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
Claudiu Manoila4feee82014-10-07 10:44:34 +03001814
1815 if (!timeout)
1816 stopped = gfar_is_dma_stopped(priv);
1817
1818 if (!stopped && !gfar_is_rx_dma_stopped(priv) &&
1819 !__gfar_is_rx_idle(priv))
1820 goto retry;
Scott Woodd87eb122008-07-11 18:04:45 -05001821}
Scott Woodd87eb122008-07-11 18:04:45 -05001822
1823/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001824void gfar_halt(struct gfar_private *priv)
Scott Woodd87eb122008-07-11 18:04:45 -05001825{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001826 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001827 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001829 /* Dissable the Rx/Tx hw queues */
1830 gfar_write(&regs->rqueue, 0);
1831 gfar_write(&regs->tqueue, 0);
Scott Wood2a54adc2008-08-12 15:10:46 -05001832
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001833 mdelay(10);
1834
1835 gfar_halt_nodisable(priv);
1836
1837 /* Disable Rx/Tx DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 tempval = gfar_read(&regs->maccfg1);
1839 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
1840 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001841}
1842
1843void stop_gfar(struct net_device *dev)
1844{
1845 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001846
Claudiu Manoil08511332014-02-24 12:13:45 +02001847 netif_tx_stop_all_queues(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001848
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001849 smp_mb__before_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02001850 set_bit(GFAR_DOWN, &priv->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001851 smp_mb__after_atomic();
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001852
Claudiu Manoil08511332014-02-24 12:13:45 +02001853 disable_napi(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001854
Claudiu Manoil08511332014-02-24 12:13:45 +02001855 /* disable ints and gracefully shut down Rx/Tx DMA */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001856 gfar_halt(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Claudiu Manoil08511332014-02-24 12:13:45 +02001858 phy_stop(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001863static void free_skb_tx_queue(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 struct txbd8 *txbdp;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001866 struct gfar_private *priv = netdev_priv(tx_queue->dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001867 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001869 txbdp = tx_queue->tx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001871 for (i = 0; i < tx_queue->tx_ring_size; i++) {
1872 if (!tx_queue->tx_skbuff[i])
Dai Haruki4669bc92008-12-17 16:51:04 -08001873 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Claudiu Manoila7312d52015-03-13 10:36:28 +02001875 dma_unmap_single(priv->dev, be32_to_cpu(txbdp->bufPtr),
1876 be16_to_cpu(txbdp->length), DMA_TO_DEVICE);
Dai Haruki4669bc92008-12-17 16:51:04 -08001877 txbdp->lstatus = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001878 for (j = 0; j < skb_shinfo(tx_queue->tx_skbuff[i])->nr_frags;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001879 j++) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001880 txbdp++;
Claudiu Manoila7312d52015-03-13 10:36:28 +02001881 dma_unmap_page(priv->dev, be32_to_cpu(txbdp->bufPtr),
1882 be16_to_cpu(txbdp->length),
1883 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
Andy Flemingad5da7a2008-05-07 13:20:55 -05001885 txbdp++;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001886 dev_kfree_skb_any(tx_queue->tx_skbuff[i]);
1887 tx_queue->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001889 kfree(tx_queue->tx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001890 tx_queue->tx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001891}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001893static void free_skb_rx_queue(struct gfar_priv_rx_q *rx_queue)
1894{
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001895 int i;
1896
Claudiu Manoil75354142015-07-13 16:22:06 +03001897 struct rxbd8 *rxbdp = rx_queue->rx_bd_base;
1898
1899 if (rx_queue->skb)
1900 dev_kfree_skb(rx_queue->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001902 for (i = 0; i < rx_queue->rx_ring_size; i++) {
Claudiu Manoil75354142015-07-13 16:22:06 +03001903 struct gfar_rx_buff *rxb = &rx_queue->rx_buff[i];
1904
Anton Vorontsove69edd22009-10-12 06:00:30 +00001905 rxbdp->lstatus = 0;
1906 rxbdp->bufPtr = 0;
1907 rxbdp++;
Claudiu Manoil75354142015-07-13 16:22:06 +03001908
1909 if (!rxb->page)
1910 continue;
1911
1912 dma_unmap_single(rx_queue->dev, rxb->dma,
1913 PAGE_SIZE, DMA_FROM_DEVICE);
1914 __free_page(rxb->page);
1915
1916 rxb->page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
Claudiu Manoil75354142015-07-13 16:22:06 +03001918
1919 kfree(rx_queue->rx_buff);
1920 rx_queue->rx_buff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001921}
Anton Vorontsove69edd22009-10-12 06:00:30 +00001922
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001923/* If there are any tx skbs or rx skbs still around, free them.
Jan Ceuleers0977f812012-06-05 03:42:12 +00001924 * Then free tx_skbuff and rx_skbuff
1925 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001926static void free_skb_resources(struct gfar_private *priv)
1927{
1928 struct gfar_priv_tx_q *tx_queue = NULL;
1929 struct gfar_priv_rx_q *rx_queue = NULL;
1930 int i;
1931
1932 /* Go through all the buffer descriptors and free their data buffers */
1933 for (i = 0; i < priv->num_tx_queues; i++) {
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001934 struct netdev_queue *txq;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001935
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001936 tx_queue = priv->tx_queue[i];
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001937 txq = netdev_get_tx_queue(tx_queue->dev, tx_queue->qindex);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001938 if (tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001939 free_skb_tx_queue(tx_queue);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001940 netdev_tx_reset_queue(txq);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001941 }
1942
1943 for (i = 0; i < priv->num_rx_queues; i++) {
1944 rx_queue = priv->rx_queue[i];
Claudiu Manoil75354142015-07-13 16:22:06 +03001945 if (rx_queue->rx_buff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001946 free_skb_rx_queue(rx_queue);
1947 }
1948
Claudiu Manoil369ec162013-02-14 05:00:02 +00001949 dma_free_coherent(priv->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001950 sizeof(struct txbd8) * priv->total_tx_ring_size +
1951 sizeof(struct rxbd8) * priv->total_rx_ring_size,
1952 priv->tx_queue[0]->tx_bd_base,
1953 priv->tx_queue[0]->tx_bd_dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001956void gfar_start(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001957{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001958 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001959 u32 tempval;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001960 int i = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001961
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001962 /* Enable Rx/Tx hw queues */
1963 gfar_write(&regs->rqueue, priv->rqueue);
1964 gfar_write(&regs->tqueue, priv->tqueue);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001965
1966 /* Initialize DMACTRL to have WWR and WOP */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001967 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001968 tempval |= DMACTRL_INIT_SETTINGS;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001969 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001970
Kumar Gala0bbaf062005-06-20 10:54:21 -05001971 /* Make sure we aren't stopped */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001972 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001973 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001974 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001975
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001976 for (i = 0; i < priv->num_grps; i++) {
1977 regs = priv->gfargrp[i].regs;
1978 /* Clear THLT/RHLT, so that the DMA starts polling now */
1979 gfar_write(&regs->tstat, priv->gfargrp[i].tstat);
1980 gfar_write(&regs->rstat, priv->gfargrp[i].rstat);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001981 }
Dai Haruki12dea572008-12-16 15:30:20 -08001982
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001983 /* Enable Rx/Tx DMA */
1984 tempval = gfar_read(&regs->maccfg1);
1985 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
1986 gfar_write(&regs->maccfg1, tempval);
1987
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001988 gfar_ints_enable(priv);
1989
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001990 priv->ndev->trans_start = jiffies; /* prevent tx timeout */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001991}
1992
Claudiu Manoil80ec3962014-02-24 12:13:44 +02001993static void free_grp_irqs(struct gfar_priv_grp *grp)
1994{
1995 free_irq(gfar_irq(grp, TX)->irq, grp);
1996 free_irq(gfar_irq(grp, RX)->irq, grp);
1997 free_irq(gfar_irq(grp, ER)->irq, grp);
1998}
1999
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002000static int register_grp_irqs(struct gfar_priv_grp *grp)
2001{
2002 struct gfar_private *priv = grp->priv;
2003 struct net_device *dev = priv->ndev;
Anton Vorontsovccc05c62009-10-12 06:00:26 +00002004 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 /* If the device has multiple interrupts, register for
Jan Ceuleers0977f812012-06-05 03:42:12 +00002007 * them. Otherwise, only register for the one
2008 */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002009 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002010 /* Install our interrupt handlers for Error,
Jan Ceuleers0977f812012-06-05 03:42:12 +00002011 * Transmit, and Receive
2012 */
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002013 err = request_irq(gfar_irq(grp, ER)->irq, gfar_error, 0,
2014 gfar_irq(grp, ER)->name, grp);
2015 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002016 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002017 gfar_irq(grp, ER)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002018
Julia Lawall2145f1a2010-08-05 10:26:20 +00002019 goto err_irq_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002021 err = request_irq(gfar_irq(grp, TX)->irq, gfar_transmit, 0,
2022 gfar_irq(grp, TX)->name, grp);
2023 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002024 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002025 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 goto tx_irq_fail;
2027 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002028 err = request_irq(gfar_irq(grp, RX)->irq, gfar_receive, 0,
2029 gfar_irq(grp, RX)->name, grp);
2030 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002031 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002032 gfar_irq(grp, RX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 goto rx_irq_fail;
2034 }
2035 } else {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002036 err = request_irq(gfar_irq(grp, TX)->irq, gfar_interrupt, 0,
2037 gfar_irq(grp, TX)->name, grp);
2038 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002039 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002040 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 goto err_irq_fail;
2042 }
2043 }
2044
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002045 return 0;
2046
2047rx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002048 free_irq(gfar_irq(grp, TX)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002049tx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002050 free_irq(gfar_irq(grp, ER)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002051err_irq_fail:
2052 return err;
2053
2054}
2055
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002056static void gfar_free_irq(struct gfar_private *priv)
2057{
2058 int i;
2059
2060 /* Free the IRQs */
2061 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
2062 for (i = 0; i < priv->num_grps; i++)
2063 free_grp_irqs(&priv->gfargrp[i]);
2064 } else {
2065 for (i = 0; i < priv->num_grps; i++)
2066 free_irq(gfar_irq(&priv->gfargrp[i], TX)->irq,
2067 &priv->gfargrp[i]);
2068 }
2069}
2070
2071static int gfar_request_irq(struct gfar_private *priv)
2072{
2073 int err, i, j;
2074
2075 for (i = 0; i < priv->num_grps; i++) {
2076 err = register_grp_irqs(&priv->gfargrp[i]);
2077 if (err) {
2078 for (j = 0; j < i; j++)
2079 free_grp_irqs(&priv->gfargrp[j]);
2080 return err;
2081 }
2082 }
2083
2084 return 0;
2085}
2086
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002087/* Bring the controller up and running */
2088int startup_gfar(struct net_device *ndev)
2089{
2090 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002091 int err;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002092
Claudiu Manoila328ac92014-02-24 12:13:42 +02002093 gfar_mac_reset(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002094
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002095 err = gfar_alloc_skb_resources(ndev);
2096 if (err)
2097 return err;
2098
Claudiu Manoila328ac92014-02-24 12:13:42 +02002099 gfar_init_tx_rx_base(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002100
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002101 smp_mb__before_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02002102 clear_bit(GFAR_DOWN, &priv->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002103 smp_mb__after_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02002104
2105 /* Start Rx/Tx DMA and enable the interrupts */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02002106 gfar_start(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00002108 phy_start(priv->phydev);
2109
Claudiu Manoil08511332014-02-24 12:13:45 +02002110 enable_napi(priv);
2111
2112 netif_tx_wake_all_queues(ndev);
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
Jan Ceuleers0977f812012-06-05 03:42:12 +00002117/* Called when something needs to use the ethernet device
2118 * Returns 0 for success.
2119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120static int gfar_enet_open(struct net_device *dev)
2121{
Li Yang94e8cc32007-10-12 21:53:51 +08002122 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 int err;
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 err = init_phy(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002126 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return err;
2128
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002129 err = gfar_request_irq(priv);
2130 if (err)
2131 return err;
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 err = startup_gfar(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002134 if (err)
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04002135 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08002137 device_set_wakeup_enable(&dev->dev, priv->wol_en);
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 return err;
2140}
2141
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002142static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002143{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002144 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07002145
2146 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002147
Kumar Gala0bbaf062005-06-20 10:54:21 -05002148 return fcb;
2149}
2150
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002151static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002152 int fcb_length)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002153{
Kumar Gala0bbaf062005-06-20 10:54:21 -05002154 /* If we're here, it's a IP packet with a TCP or UDP
2155 * payload. We set it to checksum, using a pseudo-header
2156 * we provide
2157 */
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00002158 u8 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002159
Jan Ceuleers0977f812012-06-05 03:42:12 +00002160 /* Tell the controller what the protocol is
2161 * And provide the already calculated phcs
2162 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002163 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002164 flags |= TXFCB_UDP;
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002165 fcb->phcs = (__force __be16)(udp_hdr(skb)->check);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002166 } else
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002167 fcb->phcs = (__force __be16)(tcp_hdr(skb)->check);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002168
2169 /* l3os is the distance between the start of the
2170 * frame (skb->data) and the start of the IP hdr.
2171 * l4os is the distance between the start of the
Jan Ceuleers0977f812012-06-05 03:42:12 +00002172 * l3 hdr and the l4 hdr
2173 */
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002174 fcb->l3os = (u8)(skb_network_offset(skb) - fcb_length);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03002175 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002176
Andy Fleming7f7f5312005-11-11 12:38:59 -06002177 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002178}
2179
Andy Fleming7f7f5312005-11-11 12:38:59 -06002180void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002181{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002182 fcb->flags |= TXFCB_VLN;
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002183 fcb->vlctl = cpu_to_be16(skb_vlan_tag_get(skb));
Kumar Gala0bbaf062005-06-20 10:54:21 -05002184}
2185
Dai Haruki4669bc92008-12-17 16:51:04 -08002186static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002187 struct txbd8 *base, int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002188{
2189 struct txbd8 *new_bd = bdp + stride;
2190
2191 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
2192}
2193
2194static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002195 int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002196{
2197 return skip_txbd(bdp, 1, base, ring_size);
2198}
2199
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002200/* eTSEC12: csum generation not supported for some fcb offsets */
2201static inline bool gfar_csum_errata_12(struct gfar_private *priv,
2202 unsigned long fcb_addr)
2203{
2204 return (gfar_has_errata(priv, GFAR_ERRATA_12) &&
2205 (fcb_addr % 0x20) > 0x18);
2206}
2207
2208/* eTSEC76: csum generation for frames larger than 2500 may
2209 * cause excess delays before start of transmission
2210 */
2211static inline bool gfar_csum_errata_76(struct gfar_private *priv,
2212 unsigned int len)
2213{
2214 return (gfar_has_errata(priv, GFAR_ERRATA_76) &&
2215 (len > 2500));
2216}
2217
Jan Ceuleers0977f812012-06-05 03:42:12 +00002218/* This is called by the kernel when a frame is ready for transmission.
2219 * It is pointed to by the dev->hard_start_xmit function pointer
2220 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
2222{
2223 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002224 struct gfar_priv_tx_q *tx_queue = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002225 struct netdev_queue *txq;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002226 struct gfar __iomem *regs = NULL;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002227 struct txfcb *fcb = NULL;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002228 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL;
Dai Haruki5a5efed2008-12-16 15:34:50 -08002229 u32 lstatus;
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002230 int i, rq = 0;
2231 int do_tstamp, do_csum, do_vlan;
Dai Haruki4669bc92008-12-17 16:51:04 -08002232 u32 bufaddr;
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002233 unsigned int nr_frags, nr_txbds, bytes_sent, fcb_len = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002234
2235 rq = skb->queue_mapping;
2236 tx_queue = priv->tx_queue[rq];
2237 txq = netdev_get_tx_queue(dev, rq);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002238 base = tx_queue->tx_bd_base;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002239 regs = tx_queue->grp->regs;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002240
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002241 do_csum = (CHECKSUM_PARTIAL == skb->ip_summed);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002242 do_vlan = skb_vlan_tag_present(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002243 do_tstamp = (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
2244 priv->hwts_tx_en;
2245
2246 if (do_csum || do_vlan)
2247 fcb_len = GMAC_FCB_LEN;
2248
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002249 /* check if time stamp should be generated */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002250 if (unlikely(do_tstamp))
2251 fcb_len = GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Dai Haruki4669bc92008-12-17 16:51:04 -08002252
Li Yang5b28bea2009-03-27 15:54:30 -07002253 /* make space for additional header when fcb is needed */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002254 if (fcb_len && unlikely(skb_headroom(skb) < fcb_len)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002255 struct sk_buff *skb_new;
2256
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002257 skb_new = skb_realloc_headroom(skb, fcb_len);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002258 if (!skb_new) {
2259 dev->stats.tx_errors++;
Eric W. Biedermanc9974ad2014-03-11 14:20:26 -07002260 dev_kfree_skb_any(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002261 return NETDEV_TX_OK;
2262 }
Manfred Rudigierdb83d132012-01-09 23:26:50 +00002263
Eric Dumazet313b0372012-07-05 11:45:13 +00002264 if (skb->sk)
2265 skb_set_owner_w(skb_new, skb->sk);
Eric W. Biedermanc9974ad2014-03-11 14:20:26 -07002266 dev_consume_skb_any(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002267 skb = skb_new;
2268 }
2269
Dai Haruki4669bc92008-12-17 16:51:04 -08002270 /* total number of fragments in the SKB */
2271 nr_frags = skb_shinfo(skb)->nr_frags;
2272
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002273 /* calculate the required number of TxBDs for this skb */
2274 if (unlikely(do_tstamp))
2275 nr_txbds = nr_frags + 2;
2276 else
2277 nr_txbds = nr_frags + 1;
2278
Dai Haruki4669bc92008-12-17 16:51:04 -08002279 /* check if there is space to queue this packet */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002280 if (nr_txbds > tx_queue->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08002281 /* no space, stop the queue */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002282 netif_tx_stop_queue(txq);
Dai Haruki4669bc92008-12-17 16:51:04 -08002283 dev->stats.tx_fifo_errors++;
Dai Haruki4669bc92008-12-17 16:51:04 -08002284 return NETDEV_TX_BUSY;
2285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /* Update transmit stats */
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002288 bytes_sent = skb->len;
2289 tx_queue->stats.tx_bytes += bytes_sent;
2290 /* keep Tx bytes on wire for BQL accounting */
2291 GFAR_CB(skb)->bytes_sent = bytes_sent;
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00002292 tx_queue->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002294 txbdp = txbdp_start = tx_queue->cur_tx;
Claudiu Manoila7312d52015-03-13 10:36:28 +02002295 lstatus = be32_to_cpu(txbdp->lstatus);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002296
2297 /* Time stamp insertion requires one additional TxBD */
2298 if (unlikely(do_tstamp))
2299 txbdp_tstamp = txbdp = next_txbd(txbdp, base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002300 tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Dai Haruki4669bc92008-12-17 16:51:04 -08002302 if (nr_frags == 0) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002303 if (unlikely(do_tstamp)) {
2304 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus);
2305
2306 lstatus_ts |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2307 txbdp_tstamp->lstatus = cpu_to_be32(lstatus_ts);
2308 } else {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002309 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002310 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002311 } else {
2312 /* Place the fragment addresses and lengths into the TxBDs */
2313 for (i = 0; i < nr_frags; i++) {
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002314 unsigned int frag_len;
Dai Haruki4669bc92008-12-17 16:51:04 -08002315 /* Point at the next BD, wrapping as needed */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002316 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002318 frag_len = skb_shinfo(skb)->frags[i].size;
Dai Haruki4669bc92008-12-17 16:51:04 -08002319
Claudiu Manoila7312d52015-03-13 10:36:28 +02002320 lstatus = be32_to_cpu(txbdp->lstatus) | frag_len |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002321 BD_LFLAG(TXBD_READY);
Dai Haruki4669bc92008-12-17 16:51:04 -08002322
2323 /* Handle the last BD specially */
2324 if (i == nr_frags - 1)
2325 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2326
Claudiu Manoil369ec162013-02-14 05:00:02 +00002327 bufaddr = skb_frag_dma_map(priv->dev,
Ian Campbell2234a722011-08-29 23:18:29 +00002328 &skb_shinfo(skb)->frags[i],
2329 0,
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002330 frag_len,
Ian Campbell2234a722011-08-29 23:18:29 +00002331 DMA_TO_DEVICE);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002332 if (unlikely(dma_mapping_error(priv->dev, bufaddr)))
2333 goto dma_map_err;
Dai Haruki4669bc92008-12-17 16:51:04 -08002334
2335 /* set the TxBD length and buffer pointer */
Claudiu Manoila7312d52015-03-13 10:36:28 +02002336 txbdp->bufPtr = cpu_to_be32(bufaddr);
2337 txbdp->lstatus = cpu_to_be32(lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002338 }
2339
Claudiu Manoila7312d52015-03-13 10:36:28 +02002340 lstatus = be32_to_cpu(txbdp_start->lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002343 /* Add TxPAL between FCB and frame if required */
2344 if (unlikely(do_tstamp)) {
2345 skb_push(skb, GMAC_TXPAL_LEN);
2346 memset(skb->data, 0, GMAC_TXPAL_LEN);
2347 }
2348
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002349 /* Add TxFCB if required */
2350 if (fcb_len) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002351 fcb = gfar_add_fcb(skb);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002352 lstatus |= BD_LFLAG(TXBD_TOE);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002353 }
2354
2355 /* Set up checksumming */
2356 if (do_csum) {
2357 gfar_tx_checksum(skb, fcb, fcb_len);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002358
2359 if (unlikely(gfar_csum_errata_12(priv, (unsigned long)fcb)) ||
2360 unlikely(gfar_csum_errata_76(priv, skb->len))) {
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00002361 __skb_pull(skb, GMAC_FCB_LEN);
2362 skb_checksum_help(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002363 if (do_vlan || do_tstamp) {
2364 /* put back a new fcb for vlan/tstamp TOE */
2365 fcb = gfar_add_fcb(skb);
2366 } else {
2367 /* Tx TOE not used */
2368 lstatus &= ~(BD_LFLAG(TXBD_TOE));
2369 fcb = NULL;
2370 }
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00002371 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002372 }
2373
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002374 if (do_vlan)
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002375 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002376
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002377 /* Setup tx hardware time stamping if requested */
2378 if (unlikely(do_tstamp)) {
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002379 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002380 fcb->ptp = 1;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002381 }
2382
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002383 bufaddr = dma_map_single(priv->dev, skb->data, skb_headlen(skb),
2384 DMA_TO_DEVICE);
2385 if (unlikely(dma_mapping_error(priv->dev, bufaddr)))
2386 goto dma_map_err;
2387
Claudiu Manoila7312d52015-03-13 10:36:28 +02002388 txbdp_start->bufPtr = cpu_to_be32(bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Jan Ceuleers0977f812012-06-05 03:42:12 +00002390 /* If time stamping is requested one additional TxBD must be set up. The
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002391 * first TxBD points to the FCB and must have a data length of
2392 * GMAC_FCB_LEN. The second TxBD points to the actual frame data with
2393 * the full frame length.
2394 */
2395 if (unlikely(do_tstamp)) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002396 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus);
2397
2398 bufaddr = be32_to_cpu(txbdp_start->bufPtr);
2399 bufaddr += fcb_len;
2400 lstatus_ts |= BD_LFLAG(TXBD_READY) |
2401 (skb_headlen(skb) - fcb_len);
2402
2403 txbdp_tstamp->bufPtr = cpu_to_be32(bufaddr);
2404 txbdp_tstamp->lstatus = cpu_to_be32(lstatus_ts);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002405 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | GMAC_FCB_LEN;
2406 } else {
2407 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
2408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002410 netdev_tx_sent_queue(txq, bytes_sent);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002411
Claudiu Manoild55398b2014-10-07 10:44:35 +03002412 gfar_wmb();
Andy Fleming7f7f5312005-11-11 12:38:59 -06002413
Claudiu Manoila7312d52015-03-13 10:36:28 +02002414 txbdp_start->lstatus = cpu_to_be32(lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002415
Claudiu Manoild55398b2014-10-07 10:44:35 +03002416 gfar_wmb(); /* force lstatus write before tx_skbuff */
Anton Vorontsov0eddba52010-03-03 08:18:58 +00002417
2418 tx_queue->tx_skbuff[tx_queue->skb_curtx] = skb;
2419
Dai Haruki4669bc92008-12-17 16:51:04 -08002420 /* Update the current skb pointer to the next entry we will use
Jan Ceuleers0977f812012-06-05 03:42:12 +00002421 * (wrapping if necessary)
2422 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002423 tx_queue->skb_curtx = (tx_queue->skb_curtx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002424 TX_RING_MOD_MASK(tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002425
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002426 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002427
Claudiu Manoilbc602282015-05-06 18:07:29 +03002428 /* We can work in parallel with gfar_clean_tx_ring(), except
2429 * when modifying num_txbdfree. Note that we didn't grab the lock
2430 * when we were reading the num_txbdfree and checking for available
2431 * space, that's because outside of this function it can only grow.
2432 */
2433 spin_lock_bh(&tx_queue->txlock);
Dai Haruki4669bc92008-12-17 16:51:04 -08002434 /* reduce TxBD free count */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002435 tx_queue->num_txbdfree -= (nr_txbds);
Claudiu Manoilbc602282015-05-06 18:07:29 +03002436 spin_unlock_bh(&tx_queue->txlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 /* If the next BD still needs to be cleaned up, then the bds
Jan Ceuleers0977f812012-06-05 03:42:12 +00002439 * are full. We need to tell the kernel to stop sending us stuff.
2440 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002441 if (!tx_queue->num_txbdfree) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002442 netif_tx_stop_queue(txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002444 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 }
2446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 /* Tell the DMA to go go go */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002448 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT >> tx_queue->qindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002450 return NETDEV_TX_OK;
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002451
2452dma_map_err:
2453 txbdp = next_txbd(txbdp_start, base, tx_queue->tx_ring_size);
2454 if (do_tstamp)
2455 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
2456 for (i = 0; i < nr_frags; i++) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002457 lstatus = be32_to_cpu(txbdp->lstatus);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002458 if (!(lstatus & BD_LFLAG(TXBD_READY)))
2459 break;
2460
Claudiu Manoila7312d52015-03-13 10:36:28 +02002461 lstatus &= ~BD_LFLAG(TXBD_READY);
2462 txbdp->lstatus = cpu_to_be32(lstatus);
2463 bufaddr = be32_to_cpu(txbdp->bufPtr);
2464 dma_unmap_page(priv->dev, bufaddr, be16_to_cpu(txbdp->length),
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002465 DMA_TO_DEVICE);
2466 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
2467 }
2468 gfar_wmb();
2469 dev_kfree_skb_any(skb);
2470 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
2473/* Stops the kernel queue, and halts the controller */
2474static int gfar_close(struct net_device *dev)
2475{
2476 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002477
Sebastian Siewiorab939902008-08-19 21:12:45 +02002478 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 stop_gfar(dev);
2480
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002481 /* Disconnect from the PHY */
2482 phy_disconnect(priv->phydev);
2483 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002485 gfar_free_irq(priv);
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return 0;
2488}
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05002491static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002493 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495 return 0;
2496}
2497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498static int gfar_change_mtu(struct net_device *dev, int new_mtu)
2499{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002501 int frame_size = new_mtu + ETH_HLEN;
2502
Claudiu Manoil75354142015-07-13 16:22:06 +03002503 if ((frame_size < 64) || (frame_size > GFAR_JUMBO_FRAME_SIZE)) {
Joe Perches59deab22011-06-14 08:57:47 +00002504 netif_err(priv, drv, dev, "Invalid MTU setting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return -EINVAL;
2506 }
2507
Claudiu Manoil08511332014-02-24 12:13:45 +02002508 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2509 cpu_relax();
2510
Claudiu Manoil88302642014-02-24 12:13:43 +02002511 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 stop_gfar(dev);
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 dev->mtu = new_mtu;
2515
Claudiu Manoil88302642014-02-24 12:13:43 +02002516 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 startup_gfar(dev);
2518
Claudiu Manoil08511332014-02-24 12:13:45 +02002519 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 return 0;
2522}
2523
Claudiu Manoil08511332014-02-24 12:13:45 +02002524void reset_gfar(struct net_device *ndev)
2525{
2526 struct gfar_private *priv = netdev_priv(ndev);
2527
2528 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2529 cpu_relax();
2530
2531 stop_gfar(ndev);
2532 startup_gfar(ndev);
2533
2534 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2535}
2536
Sebastian Siewiorab939902008-08-19 21:12:45 +02002537/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 * transmitted after a set amount of time.
2539 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02002540 * starting over will fix the problem.
2541 */
2542static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
Sebastian Siewiorab939902008-08-19 21:12:45 +02002544 struct gfar_private *priv = container_of(work, struct gfar_private,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002545 reset_task);
Claudiu Manoil08511332014-02-24 12:13:45 +02002546 reset_gfar(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
2548
Sebastian Siewiorab939902008-08-19 21:12:45 +02002549static void gfar_timeout(struct net_device *dev)
2550{
2551 struct gfar_private *priv = netdev_priv(dev);
2552
2553 dev->stats.tx_errors++;
2554 schedule_work(&priv->reset_task);
2555}
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557/* Interrupt Handler for Transmit complete */
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002558static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002560 struct net_device *dev = tx_queue->dev;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002561 struct netdev_queue *txq;
Dai Harukid080cd62008-04-09 19:37:51 -05002562 struct gfar_private *priv = netdev_priv(dev);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002563 struct txbd8 *bdp, *next = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002564 struct txbd8 *lbdp = NULL;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002565 struct txbd8 *base = tx_queue->tx_bd_base;
Dai Haruki4669bc92008-12-17 16:51:04 -08002566 struct sk_buff *skb;
2567 int skb_dirtytx;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002568 int tx_ring_size = tx_queue->tx_ring_size;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002569 int frags = 0, nr_txbds = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002570 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05002571 int howmany = 0;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002572 int tqi = tx_queue->qindex;
2573 unsigned int bytes_sent = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002574 u32 lstatus;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002575 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002577 txq = netdev_get_tx_queue(dev, tqi);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002578 bdp = tx_queue->dirty_tx;
2579 skb_dirtytx = tx_queue->skb_dirtytx;
Dai Haruki4669bc92008-12-17 16:51:04 -08002580
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002581 while ((skb = tx_queue->tx_skbuff[skb_dirtytx])) {
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002582
Dai Haruki4669bc92008-12-17 16:51:04 -08002583 frags = skb_shinfo(skb)->nr_frags;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002584
Jan Ceuleers0977f812012-06-05 03:42:12 +00002585 /* When time stamping, one additional TxBD must be freed.
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002586 * Also, we need to dma_unmap_single() the TxPAL.
2587 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002588 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS))
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002589 nr_txbds = frags + 2;
2590 else
2591 nr_txbds = frags + 1;
2592
2593 lbdp = skip_txbd(bdp, nr_txbds - 1, base, tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002594
Claudiu Manoila7312d52015-03-13 10:36:28 +02002595 lstatus = be32_to_cpu(lbdp->lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002596
2597 /* Only clean completed frames */
2598 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002599 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 break;
2601
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002602 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002603 next = next_txbd(bdp, base, tx_ring_size);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002604 buflen = be16_to_cpu(next->length) +
2605 GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002606 } else
Claudiu Manoila7312d52015-03-13 10:36:28 +02002607 buflen = be16_to_cpu(bdp->length);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002608
Claudiu Manoila7312d52015-03-13 10:36:28 +02002609 dma_unmap_single(priv->dev, be32_to_cpu(bdp->bufPtr),
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002610 buflen, DMA_TO_DEVICE);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002611
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002612 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002613 struct skb_shared_hwtstamps shhwtstamps;
Scott Woodb4b67f22015-07-29 16:13:06 +03002614 u64 *ns = (u64 *)(((uintptr_t)skb->data + 0x10) &
2615 ~0x7UL);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002616
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002617 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
2618 shhwtstamps.hwtstamp = ns_to_ktime(*ns);
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002619 skb_pull(skb, GMAC_FCB_LEN + GMAC_TXPAL_LEN);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002620 skb_tstamp_tx(skb, &shhwtstamps);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002621 gfar_clear_txbd_status(bdp);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002622 bdp = next;
2623 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002624
Claudiu Manoila7312d52015-03-13 10:36:28 +02002625 gfar_clear_txbd_status(bdp);
Dai Haruki4669bc92008-12-17 16:51:04 -08002626 bdp = next_txbd(bdp, base, tx_ring_size);
2627
2628 for (i = 0; i < frags; i++) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002629 dma_unmap_page(priv->dev, be32_to_cpu(bdp->bufPtr),
2630 be16_to_cpu(bdp->length),
2631 DMA_TO_DEVICE);
2632 gfar_clear_txbd_status(bdp);
Dai Haruki4669bc92008-12-17 16:51:04 -08002633 bdp = next_txbd(bdp, base, tx_ring_size);
2634 }
2635
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002636 bytes_sent += GFAR_CB(skb)->bytes_sent;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002637
Eric Dumazetacb600d2012-10-05 06:23:55 +00002638 dev_kfree_skb_any(skb);
Andy Fleming0fd56bb2009-02-04 16:43:16 -08002639
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002640 tx_queue->tx_skbuff[skb_dirtytx] = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002641
2642 skb_dirtytx = (skb_dirtytx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002643 TX_RING_MOD_MASK(tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002644
Dai Harukid080cd62008-04-09 19:37:51 -05002645 howmany++;
Claudiu Manoilbc602282015-05-06 18:07:29 +03002646 spin_lock(&tx_queue->txlock);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002647 tx_queue->num_txbdfree += nr_txbds;
Claudiu Manoilbc602282015-05-06 18:07:29 +03002648 spin_unlock(&tx_queue->txlock);
Dai Haruki4669bc92008-12-17 16:51:04 -08002649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Dai Haruki4669bc92008-12-17 16:51:04 -08002651 /* If we freed a buffer, we can restart transmission, if necessary */
Claudiu Manoil08511332014-02-24 12:13:45 +02002652 if (tx_queue->num_txbdfree &&
2653 netif_tx_queue_stopped(txq) &&
2654 !(test_bit(GFAR_DOWN, &priv->state)))
2655 netif_wake_subqueue(priv->ndev, tqi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Dai Haruki4669bc92008-12-17 16:51:04 -08002657 /* Update dirty indicators */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002658 tx_queue->skb_dirtytx = skb_dirtytx;
2659 tx_queue->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002661 netdev_tx_completed_queue(txq, howmany, bytes_sent);
Dai Harukid080cd62008-04-09 19:37:51 -05002662}
2663
Claudiu Manoil75354142015-07-13 16:22:06 +03002664static bool gfar_new_page(struct gfar_priv_rx_q *rxq, struct gfar_rx_buff *rxb)
Eran Libertyacbc0f02010-07-07 15:54:54 -07002665{
Claudiu Manoil75354142015-07-13 16:22:06 +03002666 struct page *page;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002667 dma_addr_t addr;
Eran Libertyacbc0f02010-07-07 15:54:54 -07002668
Claudiu Manoil75354142015-07-13 16:22:06 +03002669 page = dev_alloc_page();
2670 if (unlikely(!page))
2671 return false;
Eran Libertyacbc0f02010-07-07 15:54:54 -07002672
Claudiu Manoil75354142015-07-13 16:22:06 +03002673 addr = dma_map_page(rxq->dev, page, 0, PAGE_SIZE, DMA_FROM_DEVICE);
2674 if (unlikely(dma_mapping_error(rxq->dev, addr))) {
2675 __free_page(page);
Eran Libertyacbc0f02010-07-07 15:54:54 -07002676
Claudiu Manoil75354142015-07-13 16:22:06 +03002677 return false;
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002678 }
2679
Claudiu Manoil75354142015-07-13 16:22:06 +03002680 rxb->dma = addr;
2681 rxb->page = page;
2682 rxb->page_offset = 0;
2683
2684 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685}
2686
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002687static void gfar_rx_alloc_err(struct gfar_priv_rx_q *rx_queue)
2688{
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002689 struct gfar_private *priv = netdev_priv(rx_queue->ndev);
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002690 struct gfar_extra_stats *estats = &priv->extra_stats;
2691
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002692 netdev_err(rx_queue->ndev, "Can't alloc RX buffers\n");
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002693 atomic64_inc(&estats->rx_alloc_err);
2694}
2695
2696static void gfar_alloc_rx_buffs(struct gfar_priv_rx_q *rx_queue,
2697 int alloc_cnt)
2698{
Claudiu Manoil75354142015-07-13 16:22:06 +03002699 struct rxbd8 *bdp;
2700 struct gfar_rx_buff *rxb;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002701 int i;
2702
2703 i = rx_queue->next_to_use;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002704 bdp = &rx_queue->rx_bd_base[i];
Claudiu Manoil75354142015-07-13 16:22:06 +03002705 rxb = &rx_queue->rx_buff[i];
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002706
2707 while (alloc_cnt--) {
Claudiu Manoil75354142015-07-13 16:22:06 +03002708 /* try reuse page */
2709 if (unlikely(!rxb->page)) {
2710 if (unlikely(!gfar_new_page(rx_queue, rxb))) {
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002711 gfar_rx_alloc_err(rx_queue);
2712 break;
2713 }
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002714 }
2715
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002716 /* Setup the new RxBD */
Claudiu Manoil75354142015-07-13 16:22:06 +03002717 gfar_init_rxbdp(rx_queue, bdp,
2718 rxb->dma + rxb->page_offset + RXBUF_ALIGNMENT);
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002719
2720 /* Update to the next pointer */
Claudiu Manoil75354142015-07-13 16:22:06 +03002721 bdp++;
2722 rxb++;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002723
Claudiu Manoil75354142015-07-13 16:22:06 +03002724 if (unlikely(++i == rx_queue->rx_ring_size)) {
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002725 i = 0;
Claudiu Manoil75354142015-07-13 16:22:06 +03002726 bdp = rx_queue->rx_bd_base;
2727 rxb = rx_queue->rx_buff;
2728 }
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002729 }
2730
2731 rx_queue->next_to_use = i;
Claudiu Manoil75354142015-07-13 16:22:06 +03002732 rx_queue->next_to_alloc = i;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002733}
2734
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002735static void count_errors(u32 lstatus, struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002737 struct gfar_private *priv = netdev_priv(ndev);
2738 struct net_device_stats *stats = &ndev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 struct gfar_extra_stats *estats = &priv->extra_stats;
2740
Jan Ceuleers0977f812012-06-05 03:42:12 +00002741 /* If the packet was truncated, none of the other errors matter */
Claudiu Manoilf9660822015-07-13 16:22:04 +03002742 if (lstatus & BD_LFLAG(RXBD_TRUNCATED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 stats->rx_length_errors++;
2744
Paul Gortmaker212079d2013-02-12 15:38:19 -05002745 atomic64_inc(&estats->rx_trunc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747 return;
2748 }
2749 /* Count the errors, if there were any */
Claudiu Manoilf9660822015-07-13 16:22:04 +03002750 if (lstatus & BD_LFLAG(RXBD_LARGE | RXBD_SHORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 stats->rx_length_errors++;
2752
Claudiu Manoilf9660822015-07-13 16:22:04 +03002753 if (lstatus & BD_LFLAG(RXBD_LARGE))
Paul Gortmaker212079d2013-02-12 15:38:19 -05002754 atomic64_inc(&estats->rx_large);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 else
Paul Gortmaker212079d2013-02-12 15:38:19 -05002756 atomic64_inc(&estats->rx_short);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 }
Claudiu Manoilf9660822015-07-13 16:22:04 +03002758 if (lstatus & BD_LFLAG(RXBD_NONOCTET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 stats->rx_frame_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002760 atomic64_inc(&estats->rx_nonoctet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 }
Claudiu Manoilf9660822015-07-13 16:22:04 +03002762 if (lstatus & BD_LFLAG(RXBD_CRCERR)) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002763 atomic64_inc(&estats->rx_crcerr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 stats->rx_crc_errors++;
2765 }
Claudiu Manoilf9660822015-07-13 16:22:04 +03002766 if (lstatus & BD_LFLAG(RXBD_OVERRUN)) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002767 atomic64_inc(&estats->rx_overrun);
Claudiu Manoilf9660822015-07-13 16:22:04 +03002768 stats->rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 }
2770}
2771
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002772irqreturn_t gfar_receive(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002774 struct gfar_priv_grp *grp = (struct gfar_priv_grp *)grp_id;
2775 unsigned long flags;
2776 u32 imask;
2777
2778 if (likely(napi_schedule_prep(&grp->napi_rx))) {
2779 spin_lock_irqsave(&grp->grplock, flags);
2780 imask = gfar_read(&grp->regs->imask);
2781 imask &= IMASK_RX_DISABLED;
2782 gfar_write(&grp->regs->imask, imask);
2783 spin_unlock_irqrestore(&grp->grplock, flags);
2784 __napi_schedule(&grp->napi_rx);
2785 } else {
2786 /* Clear IEVENT, so interrupts aren't called again
2787 * because of the packets that have already arrived.
2788 */
2789 gfar_write(&grp->regs->ievent, IEVENT_RX_MASK);
2790 }
2791
2792 return IRQ_HANDLED;
2793}
2794
2795/* Interrupt Handler for Transmit complete */
2796static irqreturn_t gfar_transmit(int irq, void *grp_id)
2797{
2798 struct gfar_priv_grp *grp = (struct gfar_priv_grp *)grp_id;
2799 unsigned long flags;
2800 u32 imask;
2801
2802 if (likely(napi_schedule_prep(&grp->napi_tx))) {
2803 spin_lock_irqsave(&grp->grplock, flags);
2804 imask = gfar_read(&grp->regs->imask);
2805 imask &= IMASK_TX_DISABLED;
2806 gfar_write(&grp->regs->imask, imask);
2807 spin_unlock_irqrestore(&grp->grplock, flags);
2808 __napi_schedule(&grp->napi_tx);
2809 } else {
2810 /* Clear IEVENT, so interrupts aren't called again
2811 * because of the packets that have already arrived.
2812 */
2813 gfar_write(&grp->regs->ievent, IEVENT_TX_MASK);
2814 }
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 return IRQ_HANDLED;
2817}
2818
Claudiu Manoil75354142015-07-13 16:22:06 +03002819static bool gfar_add_rx_frag(struct gfar_rx_buff *rxb, u32 lstatus,
2820 struct sk_buff *skb, bool first)
2821{
2822 unsigned int size = lstatus & BD_LENGTH_MASK;
2823 struct page *page = rxb->page;
2824
2825 /* Remove the FCS from the packet length */
2826 if (likely(lstatus & BD_LFLAG(RXBD_LAST)))
2827 size -= ETH_FCS_LEN;
2828
2829 if (likely(first))
2830 skb_put(skb, size);
2831 else
2832 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
2833 rxb->page_offset + RXBUF_ALIGNMENT,
2834 size, GFAR_RXB_TRUESIZE);
2835
2836 /* try reuse page */
2837 if (unlikely(page_count(page) != 1))
2838 return false;
2839
2840 /* change offset to the other half */
2841 rxb->page_offset ^= GFAR_RXB_TRUESIZE;
2842
2843 atomic_inc(&page->_count);
2844
2845 return true;
2846}
2847
2848static void gfar_reuse_rx_page(struct gfar_priv_rx_q *rxq,
2849 struct gfar_rx_buff *old_rxb)
2850{
2851 struct gfar_rx_buff *new_rxb;
2852 u16 nta = rxq->next_to_alloc;
2853
2854 new_rxb = &rxq->rx_buff[nta];
2855
2856 /* find next buf that can reuse a page */
2857 nta++;
2858 rxq->next_to_alloc = (nta < rxq->rx_ring_size) ? nta : 0;
2859
2860 /* copy page reference */
2861 *new_rxb = *old_rxb;
2862
2863 /* sync for use by the device */
2864 dma_sync_single_range_for_device(rxq->dev, old_rxb->dma,
2865 old_rxb->page_offset,
2866 GFAR_RXB_TRUESIZE, DMA_FROM_DEVICE);
2867}
2868
2869static struct sk_buff *gfar_get_next_rxbuff(struct gfar_priv_rx_q *rx_queue,
2870 u32 lstatus, struct sk_buff *skb)
2871{
2872 struct gfar_rx_buff *rxb = &rx_queue->rx_buff[rx_queue->next_to_clean];
2873 struct page *page = rxb->page;
2874 bool first = false;
2875
2876 if (likely(!skb)) {
2877 void *buff_addr = page_address(page) + rxb->page_offset;
2878
2879 skb = build_skb(buff_addr, GFAR_SKBFRAG_SIZE);
2880 if (unlikely(!skb)) {
2881 gfar_rx_alloc_err(rx_queue);
2882 return NULL;
2883 }
2884 skb_reserve(skb, RXBUF_ALIGNMENT);
2885 first = true;
2886 }
2887
2888 dma_sync_single_range_for_cpu(rx_queue->dev, rxb->dma, rxb->page_offset,
2889 GFAR_RXB_TRUESIZE, DMA_FROM_DEVICE);
2890
2891 if (gfar_add_rx_frag(rxb, lstatus, skb, first)) {
2892 /* reuse the free half of the page */
2893 gfar_reuse_rx_page(rx_queue, rxb);
2894 } else {
2895 /* page cannot be reused, unmap it */
2896 dma_unmap_page(rx_queue->dev, rxb->dma,
2897 PAGE_SIZE, DMA_FROM_DEVICE);
2898 }
2899
2900 /* clear rxb content */
2901 rxb->page = NULL;
2902
2903 return skb;
2904}
2905
Kumar Gala0bbaf062005-06-20 10:54:21 -05002906static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
2907{
2908 /* If valid headers were found, and valid sums
2909 * were verified, then we tell the kernel that no
Jan Ceuleers0977f812012-06-05 03:42:12 +00002910 * checksumming is necessary. Otherwise, it is [FIXME]
2911 */
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002912 if ((be16_to_cpu(fcb->flags) & RXFCB_CSUM_MASK) ==
2913 (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05002914 skb->ip_summed = CHECKSUM_UNNECESSARY;
2915 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07002916 skb_checksum_none_assert(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002917}
2918
Jan Ceuleers0977f812012-06-05 03:42:12 +00002919/* gfar_process_frame() -- handle one incoming packet if skb isn't NULL. */
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002920static void gfar_process_frame(struct net_device *ndev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921{
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002922 struct gfar_private *priv = netdev_priv(ndev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002923 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Dai Haruki2c2db482008-12-16 15:31:15 -08002925 /* fcb is at the beginning if exists */
2926 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
Jan Ceuleers0977f812012-06-05 03:42:12 +00002928 /* Remove the FCB from the skb
2929 * Remove the padded bytes, if there are any
2930 */
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002931 if (priv->uses_rxfcb)
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002932 skb_pull(skb, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002933
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002934 /* Get receive timestamp from the skb */
2935 if (priv->hwts_rx_en) {
2936 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
2937 u64 *ns = (u64 *) skb->data;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002938
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002939 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
2940 shhwtstamps->hwtstamp = ns_to_ktime(*ns);
2941 }
2942
2943 if (priv->padding)
2944 skb_pull(skb, priv->padding);
2945
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002946 if (ndev->features & NETIF_F_RXCSUM)
Dai Haruki2c2db482008-12-16 15:31:15 -08002947 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002948
Dai Haruki2c2db482008-12-16 15:31:15 -08002949 /* Tell the skb what kind of packet this is */
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002950 skb->protocol = eth_type_trans(skb, ndev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002951
Patrick McHardyf6469682013-04-19 02:04:27 +00002952 /* There's need to check for NETIF_F_HW_VLAN_CTAG_RX here.
David S. Miller823dcd22011-08-20 10:39:12 -07002953 * Even if vlan rx accel is disabled, on some chips
2954 * RXFCB_VLN is pseudo randomly set.
2955 */
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002956 if (ndev->features & NETIF_F_HW_VLAN_CTAG_RX &&
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002957 be16_to_cpu(fcb->flags) & RXFCB_VLN)
2958 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
2959 be16_to_cpu(fcb->vlctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
2962/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002963 * until the budget/quota has been reached. Returns the number
2964 * of frames handled
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002966int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002968 struct net_device *ndev = rx_queue->ndev;
Claudiu Manoilf23223f2015-07-13 16:22:05 +03002969 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil75354142015-07-13 16:22:06 +03002970 struct rxbd8 *bdp;
2971 int i, howmany = 0;
2972 struct sk_buff *skb = rx_queue->skb;
2973 int cleaned_cnt = gfar_rxbd_unused(rx_queue);
2974 unsigned int total_bytes = 0, total_pkts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 /* Get the first full descriptor */
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002977 i = rx_queue->next_to_clean;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002979 while (rx_work_limit--) {
Claudiu Manoilf9660822015-07-13 16:22:04 +03002980 u32 lstatus;
Dai Haruki2c2db482008-12-16 15:31:15 -08002981
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002982 if (cleaned_cnt >= GFAR_RX_BUFF_ALLOC) {
2983 gfar_alloc_rx_buffs(rx_queue, cleaned_cnt);
2984 cleaned_cnt = 0;
2985 }
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002986
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002987 bdp = &rx_queue->rx_bd_base[i];
Claudiu Manoilf9660822015-07-13 16:22:04 +03002988 lstatus = be32_to_cpu(bdp->lstatus);
2989 if (lstatus & BD_LFLAG(RXBD_EMPTY))
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002990 break;
2991
2992 /* order rx buffer descriptor reads */
Scott Wood3b6330c2007-05-16 15:06:59 -05002993 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05002994
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002995 /* fetch next to clean buffer from the ring */
Claudiu Manoil75354142015-07-13 16:22:06 +03002996 skb = gfar_get_next_rxbuff(rx_queue, lstatus, skb);
2997 if (unlikely(!skb))
2998 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Claudiu Manoil75354142015-07-13 16:22:06 +03003000 cleaned_cnt++;
3001 howmany++;
Andy Fleming81183052008-11-12 10:07:11 -06003002
Claudiu Manoil75354142015-07-13 16:22:06 +03003003 if (unlikely(++i == rx_queue->rx_ring_size))
3004 i = 0;
Anton Vorontsov63b88b92010-06-11 10:51:03 +00003005
Claudiu Manoil75354142015-07-13 16:22:06 +03003006 rx_queue->next_to_clean = i;
3007
3008 /* fetch next buffer if not the last in frame */
3009 if (!(lstatus & BD_LFLAG(RXBD_LAST)))
3010 continue;
3011
3012 if (unlikely(lstatus & BD_LFLAG(RXBD_ERR))) {
Claudiu Manoilf23223f2015-07-13 16:22:05 +03003013 count_errors(lstatus, ndev);
Andy Fleming815b97c2008-04-22 17:18:29 -05003014
Claudiu Manoil76f31e82015-07-13 16:22:03 +03003015 /* discard faulty buffer */
3016 dev_kfree_skb(skb);
Claudiu Manoil75354142015-07-13 16:22:06 +03003017 skb = NULL;
3018 rx_queue->stats.rx_dropped++;
3019 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 }
3021
Claudiu Manoil75354142015-07-13 16:22:06 +03003022 /* Increment the number of packets */
3023 total_pkts++;
3024 total_bytes += skb->len;
3025
3026 skb_record_rx_queue(skb, rx_queue->qindex);
3027
3028 gfar_process_frame(ndev, skb);
3029
3030 /* Send the packet up the stack */
3031 napi_gro_receive(&rx_queue->grp->napi_rx, skb);
3032
3033 skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 }
3035
Claudiu Manoil75354142015-07-13 16:22:06 +03003036 /* Store incomplete frames for completion */
3037 rx_queue->skb = skb;
3038
3039 rx_queue->stats.rx_packets += total_pkts;
3040 rx_queue->stats.rx_bytes += total_bytes;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03003041
3042 if (cleaned_cnt)
3043 gfar_alloc_rx_buffs(rx_queue, cleaned_cnt);
3044
3045 /* Update Last Free RxBD pointer for LFC */
3046 if (unlikely(priv->tx_actual_en)) {
Scott Woodb4b67f22015-07-29 16:13:06 +03003047 u32 bdp_dma = gfar_rxbd_dma_lastfree(rx_queue);
3048
3049 gfar_write(rx_queue->rfbptr, bdp_dma);
Claudiu Manoil76f31e82015-07-13 16:22:03 +03003050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 return howmany;
3053}
3054
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003055static int gfar_poll_rx_sq(struct napi_struct *napi, int budget)
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003056{
3057 struct gfar_priv_grp *gfargrp =
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003058 container_of(napi, struct gfar_priv_grp, napi_rx);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003059 struct gfar __iomem *regs = gfargrp->regs;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02003060 struct gfar_priv_rx_q *rx_queue = gfargrp->rx_queue;
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003061 int work_done = 0;
3062
3063 /* Clear IEVENT, so interrupts aren't called again
3064 * because of the packets that have already arrived
3065 */
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003066 gfar_write(&regs->ievent, IEVENT_RX_MASK);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003067
3068 work_done = gfar_clean_rx_ring(rx_queue, budget);
3069
3070 if (work_done < budget) {
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003071 u32 imask;
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003072 napi_complete(napi);
3073 /* Clear the halt bit in RSTAT */
3074 gfar_write(&regs->rstat, gfargrp->rstat);
3075
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003076 spin_lock_irq(&gfargrp->grplock);
3077 imask = gfar_read(&regs->imask);
3078 imask |= IMASK_RX_DEFAULT;
3079 gfar_write(&regs->imask, imask);
3080 spin_unlock_irq(&gfargrp->grplock);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003081 }
3082
3083 return work_done;
3084}
3085
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003086static int gfar_poll_tx_sq(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003088 struct gfar_priv_grp *gfargrp =
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003089 container_of(napi, struct gfar_priv_grp, napi_tx);
3090 struct gfar __iomem *regs = gfargrp->regs;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02003091 struct gfar_priv_tx_q *tx_queue = gfargrp->tx_queue;
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003092 u32 imask;
3093
3094 /* Clear IEVENT, so interrupts aren't called again
3095 * because of the packets that have already arrived
3096 */
3097 gfar_write(&regs->ievent, IEVENT_TX_MASK);
3098
3099 /* run Tx cleanup to completion */
3100 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx])
3101 gfar_clean_tx_ring(tx_queue);
3102
3103 napi_complete(napi);
3104
3105 spin_lock_irq(&gfargrp->grplock);
3106 imask = gfar_read(&regs->imask);
3107 imask |= IMASK_TX_DEFAULT;
3108 gfar_write(&regs->imask, imask);
3109 spin_unlock_irq(&gfargrp->grplock);
3110
3111 return 0;
3112}
3113
3114static int gfar_poll_rx(struct napi_struct *napi, int budget)
3115{
3116 struct gfar_priv_grp *gfargrp =
3117 container_of(napi, struct gfar_priv_grp, napi_rx);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003118 struct gfar_private *priv = gfargrp->priv;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003119 struct gfar __iomem *regs = gfargrp->regs;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003120 struct gfar_priv_rx_q *rx_queue = NULL;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003121 int work_done = 0, work_done_per_q = 0;
Claudiu Manoil39c0a0d2013-03-21 03:12:13 +00003122 int i, budget_per_q = 0;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003123 unsigned long rstat_rxf;
3124 int num_act_queues;
Dai Harukid080cd62008-04-09 19:37:51 -05003125
Dai Haruki8c7396a2008-12-17 16:52:00 -08003126 /* Clear IEVENT, so interrupts aren't called again
Jan Ceuleers0977f812012-06-05 03:42:12 +00003127 * because of the packets that have already arrived
3128 */
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003129 gfar_write(&regs->ievent, IEVENT_RX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08003130
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003131 rstat_rxf = gfar_read(&regs->rstat) & RSTAT_RXF_MASK;
3132
3133 num_act_queues = bitmap_weight(&rstat_rxf, MAX_RX_QS);
3134 if (num_act_queues)
3135 budget_per_q = budget/num_act_queues;
3136
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003137 for_each_set_bit(i, &gfargrp->rx_bit_map, priv->num_rx_queues) {
3138 /* skip queue if not active */
3139 if (!(rstat_rxf & (RSTAT_CLEAR_RXF0 >> i)))
3140 continue;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003141
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003142 rx_queue = priv->rx_queue[i];
3143 work_done_per_q =
3144 gfar_clean_rx_ring(rx_queue, budget_per_q);
3145 work_done += work_done_per_q;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003146
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003147 /* finished processing this queue */
3148 if (work_done_per_q < budget_per_q) {
3149 /* clear active queue hw indication */
3150 gfar_write(&regs->rstat,
3151 RSTAT_CLEAR_RXF0 >> i);
3152 num_act_queues--;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003153
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003154 if (!num_act_queues)
3155 break;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003156 }
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003157 }
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003158
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003159 if (!num_act_queues) {
3160 u32 imask;
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003161 napi_complete(napi);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003162
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003163 /* Clear the halt bit in RSTAT */
3164 gfar_write(&regs->rstat, gfargrp->rstat);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003165
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003166 spin_lock_irq(&gfargrp->grplock);
3167 imask = gfar_read(&regs->imask);
3168 imask |= IMASK_RX_DEFAULT;
3169 gfar_write(&regs->imask, imask);
3170 spin_unlock_irq(&gfargrp->grplock);
Dai Harukid080cd62008-04-09 19:37:51 -05003171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003173 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003176static int gfar_poll_tx(struct napi_struct *napi, int budget)
3177{
3178 struct gfar_priv_grp *gfargrp =
3179 container_of(napi, struct gfar_priv_grp, napi_tx);
3180 struct gfar_private *priv = gfargrp->priv;
3181 struct gfar __iomem *regs = gfargrp->regs;
3182 struct gfar_priv_tx_q *tx_queue = NULL;
3183 int has_tx_work = 0;
3184 int i;
3185
3186 /* Clear IEVENT, so interrupts aren't called again
3187 * because of the packets that have already arrived
3188 */
3189 gfar_write(&regs->ievent, IEVENT_TX_MASK);
3190
3191 for_each_set_bit(i, &gfargrp->tx_bit_map, priv->num_tx_queues) {
3192 tx_queue = priv->tx_queue[i];
3193 /* run Tx cleanup to completion */
3194 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx]) {
3195 gfar_clean_tx_ring(tx_queue);
3196 has_tx_work = 1;
3197 }
3198 }
3199
3200 if (!has_tx_work) {
3201 u32 imask;
3202 napi_complete(napi);
3203
3204 spin_lock_irq(&gfargrp->grplock);
3205 imask = gfar_read(&regs->imask);
3206 imask |= IMASK_TX_DEFAULT;
3207 gfar_write(&regs->imask, imask);
3208 spin_unlock_irq(&gfargrp->grplock);
3209 }
3210
3211 return 0;
3212}
3213
3214
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003215#ifdef CONFIG_NET_POLL_CONTROLLER
Jan Ceuleers0977f812012-06-05 03:42:12 +00003216/* Polling 'interrupt' - used by things like netconsole to send skbs
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003217 * without having to re-enable interrupts. It's not called while
3218 * the interrupt routine is executing.
3219 */
3220static void gfar_netpoll(struct net_device *dev)
3221{
3222 struct gfar_private *priv = netdev_priv(dev);
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00003223 int i;
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003224
3225 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003226 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003227 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00003228 struct gfar_priv_grp *grp = &priv->gfargrp[i];
3229
3230 disable_irq(gfar_irq(grp, TX)->irq);
3231 disable_irq(gfar_irq(grp, RX)->irq);
3232 disable_irq(gfar_irq(grp, ER)->irq);
3233 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
3234 enable_irq(gfar_irq(grp, ER)->irq);
3235 enable_irq(gfar_irq(grp, RX)->irq);
3236 enable_irq(gfar_irq(grp, TX)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003237 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003238 } else {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003239 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00003240 struct gfar_priv_grp *grp = &priv->gfargrp[i];
3241
3242 disable_irq(gfar_irq(grp, TX)->irq);
3243 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
3244 enable_irq(gfar_irq(grp, TX)->irq);
Anton Vorontsov43de0042009-12-09 02:52:19 -08003245 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003246 }
3247}
3248#endif
3249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250/* The interrupt handler for devices with one interrupt */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003251static irqreturn_t gfar_interrupt(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003253 struct gfar_priv_grp *gfargrp = grp_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003256 u32 events = gfar_read(&gfargrp->regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003259 if (events & IEVENT_RX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003260 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
3262 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003263 if (events & IEVENT_TX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003264 gfar_transmit(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003266 /* Check for errors */
3267 if (events & IEVENT_ERR_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003268 gfar_error(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
3270 return IRQ_HANDLED;
3271}
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273/* Called every time the controller might need to be made
3274 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003275 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 * function converts those variables into the appropriate
3277 * register values, and can bring down the device if needed.
3278 */
3279static void adjust_link(struct net_device *dev)
3280{
3281 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003282 struct phy_device *phydev = priv->phydev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003284 if (unlikely(phydev->link != priv->oldlink ||
Guenter Roeck0ae93b22015-03-02 12:03:27 -08003285 (phydev->link && (phydev->duplex != priv->oldduplex ||
3286 phydev->speed != priv->oldspeed))))
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003287 gfar_update_link_state(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003288}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
3290/* Update the hash table based on the current list of multicast
3291 * addresses we subscribe to. Also, change the promiscuity of
3292 * the device based on the flags (this function is called
Jan Ceuleers0977f812012-06-05 03:42:12 +00003293 * whenever dev->flags is changed
3294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295static void gfar_set_multi(struct net_device *dev)
3296{
Jiri Pirko22bedad32010-04-01 21:22:57 +00003297 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003299 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 u32 tempval;
3301
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003302 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 /* Set RCTRL to PROM */
3304 tempval = gfar_read(&regs->rctrl);
3305 tempval |= RCTRL_PROM;
3306 gfar_write(&regs->rctrl, tempval);
3307 } else {
3308 /* Set RCTRL to not PROM */
3309 tempval = gfar_read(&regs->rctrl);
3310 tempval &= ~(RCTRL_PROM);
3311 gfar_write(&regs->rctrl, tempval);
3312 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003313
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003314 if (dev->flags & IFF_ALLMULTI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003316 gfar_write(&regs->igaddr0, 0xffffffff);
3317 gfar_write(&regs->igaddr1, 0xffffffff);
3318 gfar_write(&regs->igaddr2, 0xffffffff);
3319 gfar_write(&regs->igaddr3, 0xffffffff);
3320 gfar_write(&regs->igaddr4, 0xffffffff);
3321 gfar_write(&regs->igaddr5, 0xffffffff);
3322 gfar_write(&regs->igaddr6, 0xffffffff);
3323 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 gfar_write(&regs->gaddr0, 0xffffffff);
3325 gfar_write(&regs->gaddr1, 0xffffffff);
3326 gfar_write(&regs->gaddr2, 0xffffffff);
3327 gfar_write(&regs->gaddr3, 0xffffffff);
3328 gfar_write(&regs->gaddr4, 0xffffffff);
3329 gfar_write(&regs->gaddr5, 0xffffffff);
3330 gfar_write(&regs->gaddr6, 0xffffffff);
3331 gfar_write(&regs->gaddr7, 0xffffffff);
3332 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003333 int em_num;
3334 int idx;
3335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003337 gfar_write(&regs->igaddr0, 0x0);
3338 gfar_write(&regs->igaddr1, 0x0);
3339 gfar_write(&regs->igaddr2, 0x0);
3340 gfar_write(&regs->igaddr3, 0x0);
3341 gfar_write(&regs->igaddr4, 0x0);
3342 gfar_write(&regs->igaddr5, 0x0);
3343 gfar_write(&regs->igaddr6, 0x0);
3344 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 gfar_write(&regs->gaddr0, 0x0);
3346 gfar_write(&regs->gaddr1, 0x0);
3347 gfar_write(&regs->gaddr2, 0x0);
3348 gfar_write(&regs->gaddr3, 0x0);
3349 gfar_write(&regs->gaddr4, 0x0);
3350 gfar_write(&regs->gaddr5, 0x0);
3351 gfar_write(&regs->gaddr6, 0x0);
3352 gfar_write(&regs->gaddr7, 0x0);
3353
Andy Fleming7f7f5312005-11-11 12:38:59 -06003354 /* If we have extended hash tables, we need to
3355 * clear the exact match registers to prepare for
Jan Ceuleers0977f812012-06-05 03:42:12 +00003356 * setting them
3357 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003358 if (priv->extended_hash) {
3359 em_num = GFAR_EM_NUM + 1;
3360 gfar_clear_exact_match(dev);
3361 idx = 1;
3362 } else {
3363 idx = 0;
3364 em_num = 0;
3365 }
3366
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00003367 if (netdev_mc_empty(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 return;
3369
3370 /* Parse the list, and set the appropriate bits */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003371 netdev_for_each_mc_addr(ha, dev) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003372 if (idx < em_num) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00003373 gfar_set_mac_for_addr(dev, idx, ha->addr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003374 idx++;
3375 } else
Jiri Pirko22bedad32010-04-01 21:22:57 +00003376 gfar_set_hash_for_addr(dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 }
3378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379}
3380
Andy Fleming7f7f5312005-11-11 12:38:59 -06003381
3382/* Clears each of the exact match registers to zero, so they
Jan Ceuleers0977f812012-06-05 03:42:12 +00003383 * don't interfere with normal reception
3384 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003385static void gfar_clear_exact_match(struct net_device *dev)
3386{
3387 int idx;
Joe Perches6a3c910c2011-11-16 09:38:02 +00003388 static const u8 zero_arr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
Andy Fleming7f7f5312005-11-11 12:38:59 -06003389
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003390 for (idx = 1; idx < GFAR_EM_NUM + 1; idx++)
Joe Perchesb6bc7652010-12-21 02:16:08 -08003391 gfar_set_mac_for_addr(dev, idx, zero_arr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003392}
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394/* Set the appropriate hash bit for the given addr */
3395/* The algorithm works like so:
3396 * 1) Take the Destination Address (ie the multicast address), and
3397 * do a CRC on it (little endian), and reverse the bits of the
3398 * result.
3399 * 2) Use the 8 most significant bits as a hash into a 256-entry
3400 * table. The table is controlled through 8 32-bit registers:
3401 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
3402 * gaddr7. This means that the 3 most significant bits in the
3403 * hash index which gaddr register to use, and the 5 other bits
3404 * indicate which bit (assuming an IBM numbering scheme, which
3405 * for PowerPC (tm) is usually the case) in the register holds
Jan Ceuleers0977f812012-06-05 03:42:12 +00003406 * the entry.
3407 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
3409{
3410 u32 tempval;
3411 struct gfar_private *priv = netdev_priv(dev);
Joe Perches6a3c910c2011-11-16 09:38:02 +00003412 u32 result = ether_crc(ETH_ALEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05003413 int width = priv->hash_width;
3414 u8 whichbit = (result >> (32 - width)) & 0x1f;
3415 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 u32 value = (1 << (31-whichbit));
3417
Kumar Gala0bbaf062005-06-20 10:54:21 -05003418 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05003420 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421}
3422
Andy Fleming7f7f5312005-11-11 12:38:59 -06003423
3424/* There are multiple MAC Address register pairs on some controllers
3425 * This function sets the numth pair to a given address
3426 */
Joe Perchesb6bc7652010-12-21 02:16:08 -08003427static void gfar_set_mac_for_addr(struct net_device *dev, int num,
3428 const u8 *addr)
Andy Fleming7f7f5312005-11-11 12:38:59 -06003429{
3430 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003431 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003432 u32 tempval;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003433 u32 __iomem *macptr = &regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003434
3435 macptr += num*2;
3436
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003437 /* For a station address of 0x12345678ABCD in transmission
3438 * order (BE), MACnADDR1 is set to 0xCDAB7856 and
3439 * MACnADDR2 is set to 0x34120000.
Jan Ceuleers0977f812012-06-05 03:42:12 +00003440 */
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003441 tempval = (addr[5] << 24) | (addr[4] << 16) |
3442 (addr[3] << 8) | addr[2];
Andy Fleming7f7f5312005-11-11 12:38:59 -06003443
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003444 gfar_write(macptr, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003445
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003446 tempval = (addr[1] << 24) | (addr[0] << 16);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003447
3448 gfar_write(macptr+1, tempval);
3449}
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451/* GFAR error interrupt handler */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003452static irqreturn_t gfar_error(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003454 struct gfar_priv_grp *gfargrp = grp_id;
3455 struct gfar __iomem *regs = gfargrp->regs;
3456 struct gfar_private *priv= gfargrp->priv;
3457 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003460 u32 events = gfar_read(&regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
3462 /* Clear IEVENT */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003463 gfar_write(&regs->ievent, events & IEVENT_ERR_MASK);
Scott Woodd87eb122008-07-11 18:04:45 -05003464
3465 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003466 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05003467 (events & IEVENT_MAG))
3468 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
3470 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003471 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003472 netdev_dbg(dev,
3473 "error interrupt (ievent=0x%08x imask=0x%08x)\n",
Joe Perches59deab22011-06-14 08:57:47 +00003474 events, gfar_read(&regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
3476 /* Update the error counters */
3477 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003478 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
3480 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003481 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003483 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 if (events & IEVENT_XFUN) {
Joe Perches59deab22011-06-14 08:57:47 +00003485 netif_dbg(priv, tx_err, dev,
3486 "TX FIFO underrun, packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003487 dev->stats.tx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003488 atomic64_inc(&priv->extra_stats.tx_underrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Claudiu Manoilbc602282015-05-06 18:07:29 +03003490 schedule_work(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 }
Joe Perches59deab22011-06-14 08:57:47 +00003492 netif_dbg(priv, tx_err, dev, "Transmit Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 }
3494 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003495 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003496 atomic64_inc(&priv->extra_stats.rx_bsy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003498 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
Joe Perches59deab22011-06-14 08:57:47 +00003500 netif_dbg(priv, rx_err, dev, "busy error (rstat: %x)\n",
3501 gfar_read(&regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 }
3503 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003504 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003505 atomic64_inc(&priv->extra_stats.rx_babr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Joe Perches59deab22011-06-14 08:57:47 +00003507 netif_dbg(priv, rx_err, dev, "babbling RX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 }
3509 if (events & IEVENT_EBERR) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003510 atomic64_inc(&priv->extra_stats.eberr);
Joe Perches59deab22011-06-14 08:57:47 +00003511 netif_dbg(priv, rx_err, dev, "bus error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 }
Joe Perches59deab22011-06-14 08:57:47 +00003513 if (events & IEVENT_RXC)
3514 netif_dbg(priv, rx_status, dev, "control frame\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
3516 if (events & IEVENT_BABT) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003517 atomic64_inc(&priv->extra_stats.tx_babt);
Joe Perches59deab22011-06-14 08:57:47 +00003518 netif_dbg(priv, tx_err, dev, "babbling TX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
3520 return IRQ_HANDLED;
3521}
3522
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003523static u32 gfar_get_flowctrl_cfg(struct gfar_private *priv)
3524{
3525 struct phy_device *phydev = priv->phydev;
3526 u32 val = 0;
3527
3528 if (!phydev->duplex)
3529 return val;
3530
3531 if (!priv->pause_aneg_en) {
3532 if (priv->tx_pause_en)
3533 val |= MACCFG1_TX_FLOW;
3534 if (priv->rx_pause_en)
3535 val |= MACCFG1_RX_FLOW;
3536 } else {
3537 u16 lcl_adv, rmt_adv;
3538 u8 flowctrl;
3539 /* get link partner capabilities */
3540 rmt_adv = 0;
3541 if (phydev->pause)
3542 rmt_adv = LPA_PAUSE_CAP;
3543 if (phydev->asym_pause)
3544 rmt_adv |= LPA_PAUSE_ASYM;
3545
Pavaluca Matei-B4661043ef8d22014-10-27 10:42:43 +02003546 lcl_adv = 0;
3547 if (phydev->advertising & ADVERTISED_Pause)
3548 lcl_adv |= ADVERTISE_PAUSE_CAP;
3549 if (phydev->advertising & ADVERTISED_Asym_Pause)
3550 lcl_adv |= ADVERTISE_PAUSE_ASYM;
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003551
3552 flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv);
3553 if (flowctrl & FLOW_CTRL_TX)
3554 val |= MACCFG1_TX_FLOW;
3555 if (flowctrl & FLOW_CTRL_RX)
3556 val |= MACCFG1_RX_FLOW;
3557 }
3558
3559 return val;
3560}
3561
3562static noinline void gfar_update_link_state(struct gfar_private *priv)
3563{
3564 struct gfar __iomem *regs = priv->gfargrp[0].regs;
3565 struct phy_device *phydev = priv->phydev;
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003566 struct gfar_priv_rx_q *rx_queue = NULL;
3567 int i;
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003568
3569 if (unlikely(test_bit(GFAR_RESETTING, &priv->state)))
3570 return;
3571
3572 if (phydev->link) {
3573 u32 tempval1 = gfar_read(&regs->maccfg1);
3574 u32 tempval = gfar_read(&regs->maccfg2);
3575 u32 ecntrl = gfar_read(&regs->ecntrl);
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003576 u32 tx_flow_oldval = (tempval & MACCFG1_TX_FLOW);
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003577
3578 if (phydev->duplex != priv->oldduplex) {
3579 if (!(phydev->duplex))
3580 tempval &= ~(MACCFG2_FULL_DUPLEX);
3581 else
3582 tempval |= MACCFG2_FULL_DUPLEX;
3583
3584 priv->oldduplex = phydev->duplex;
3585 }
3586
3587 if (phydev->speed != priv->oldspeed) {
3588 switch (phydev->speed) {
3589 case 1000:
3590 tempval =
3591 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
3592
3593 ecntrl &= ~(ECNTRL_R100);
3594 break;
3595 case 100:
3596 case 10:
3597 tempval =
3598 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
3599
3600 /* Reduced mode distinguishes
3601 * between 10 and 100
3602 */
3603 if (phydev->speed == SPEED_100)
3604 ecntrl |= ECNTRL_R100;
3605 else
3606 ecntrl &= ~(ECNTRL_R100);
3607 break;
3608 default:
3609 netif_warn(priv, link, priv->ndev,
3610 "Ack! Speed (%d) is not 10/100/1000!\n",
3611 phydev->speed);
3612 break;
3613 }
3614
3615 priv->oldspeed = phydev->speed;
3616 }
3617
3618 tempval1 &= ~(MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
3619 tempval1 |= gfar_get_flowctrl_cfg(priv);
3620
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003621 /* Turn last free buffer recording on */
3622 if ((tempval1 & MACCFG1_TX_FLOW) && !tx_flow_oldval) {
3623 for (i = 0; i < priv->num_rx_queues; i++) {
Scott Woodb4b67f22015-07-29 16:13:06 +03003624 u32 bdp_dma;
3625
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003626 rx_queue = priv->rx_queue[i];
Scott Woodb4b67f22015-07-29 16:13:06 +03003627 bdp_dma = gfar_rxbd_dma_lastfree(rx_queue);
3628 gfar_write(rx_queue->rfbptr, bdp_dma);
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003629 }
3630
3631 priv->tx_actual_en = 1;
3632 }
3633
3634 if (unlikely(!(tempval1 & MACCFG1_TX_FLOW) && tx_flow_oldval))
3635 priv->tx_actual_en = 0;
3636
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003637 gfar_write(&regs->maccfg1, tempval1);
3638 gfar_write(&regs->maccfg2, tempval);
3639 gfar_write(&regs->ecntrl, ecntrl);
3640
3641 if (!priv->oldlink)
3642 priv->oldlink = 1;
3643
3644 } else if (priv->oldlink) {
3645 priv->oldlink = 0;
3646 priv->oldspeed = 0;
3647 priv->oldduplex = -1;
3648 }
3649
3650 if (netif_msg_link(priv))
3651 phy_print_status(phydev);
3652}
3653
Fabian Frederick94e5a2a2015-03-17 19:37:34 +01003654static const struct of_device_id gfar_match[] =
Andy Flemingb31a1d82008-12-16 15:29:15 -08003655{
3656 {
3657 .type = "network",
3658 .compatible = "gianfar",
3659 },
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003660 {
3661 .compatible = "fsl,etsec2",
3662 },
Andy Flemingb31a1d82008-12-16 15:29:15 -08003663 {},
3664};
Anton Vorontsove72701a2009-10-14 14:54:52 -07003665MODULE_DEVICE_TABLE(of, gfar_match);
Andy Flemingb31a1d82008-12-16 15:29:15 -08003666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667/* Structure for a device driver */
Grant Likely74888762011-02-22 21:05:51 -07003668static struct platform_driver gfar_driver = {
Grant Likely40182942010-04-13 16:13:02 -07003669 .driver = {
3670 .name = "fsl-gianfar",
Grant Likely40182942010-04-13 16:13:02 -07003671 .pm = GFAR_PM_OPS,
3672 .of_match_table = gfar_match,
3673 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 .probe = gfar_probe,
3675 .remove = gfar_remove,
3676};
3677
Axel Lindb62f682011-11-27 16:44:17 +00003678module_platform_driver(gfar_driver);