blob: 084c25d1467f2ef38d56eeca7df81eb668f71706 [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
Andy Fleming7f7f5312005-11-11 12:38:59 -0600112const char gfar_driver_version[] = "1.3";
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);
Kevin Hao91c53f762014-12-24 14:05:44 +0800119static struct sk_buff *gfar_new_skb(struct net_device *dev,
120 dma_addr_t *bufaddr);
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 Manoil61db26c2013-02-14 05:00:05 +0000144static void gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
145 int amount_pull, struct napi_struct *napi);
Claudiu Manoilc10650b2014-02-17 12:53:18 +0200146static void gfar_halt_nodisable(struct gfar_private *priv);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600147static void gfar_clear_exact_match(struct net_device *dev);
Joe Perchesb6bc7652010-12-21 02:16:08 -0800148static void gfar_set_mac_for_addr(struct net_device *dev, int num,
149 const u8 *addr);
Andy Fleming26ccfc32009-03-10 12:58:28 +0000150static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152MODULE_AUTHOR("Freescale Semiconductor, Inc");
153MODULE_DESCRIPTION("Gianfar Ethernet Driver");
154MODULE_LICENSE("GPL");
155
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000156static void gfar_init_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000157 dma_addr_t buf)
158{
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000159 u32 lstatus;
160
Claudiu Manoila7312d52015-03-13 10:36:28 +0200161 bdp->bufPtr = cpu_to_be32(buf);
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000162
163 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000164 if (bdp == rx_queue->rx_bd_base + rx_queue->rx_ring_size - 1)
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000165 lstatus |= BD_LFLAG(RXBD_WRAP);
166
Claudiu Manoild55398b2014-10-07 10:44:35 +0300167 gfar_wmb();
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000168
Claudiu Manoila7312d52015-03-13 10:36:28 +0200169 bdp->lstatus = cpu_to_be32(lstatus);
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000170}
171
Anton Vorontsov87283272009-10-12 06:00:39 +0000172static int gfar_init_bds(struct net_device *ndev)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000173{
Anton Vorontsov87283272009-10-12 06:00:39 +0000174 struct gfar_private *priv = netdev_priv(ndev);
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200175 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000176 struct gfar_priv_tx_q *tx_queue = NULL;
177 struct gfar_priv_rx_q *rx_queue = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000178 struct txbd8 *txbdp;
179 struct rxbd8 *rxbdp;
Kevin Hao03366a32014-12-24 14:05:45 +0800180 u32 __iomem *rfbptr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000181 int i, j;
Kevin Hao0a4b5a22014-12-11 14:08:41 +0800182 dma_addr_t bufaddr;
Anton Vorontsov87283272009-10-12 06:00:39 +0000183
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000184 for (i = 0; i < priv->num_tx_queues; i++) {
185 tx_queue = priv->tx_queue[i];
186 /* Initialize some variables in our dev structure */
187 tx_queue->num_txbdfree = tx_queue->tx_ring_size;
188 tx_queue->dirty_tx = tx_queue->tx_bd_base;
189 tx_queue->cur_tx = tx_queue->tx_bd_base;
190 tx_queue->skb_curtx = 0;
191 tx_queue->skb_dirtytx = 0;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000192
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000193 /* Initialize Transmit Descriptor Ring */
194 txbdp = tx_queue->tx_bd_base;
195 for (j = 0; j < tx_queue->tx_ring_size; j++) {
196 txbdp->lstatus = 0;
197 txbdp->bufPtr = 0;
198 txbdp++;
Anton Vorontsov87283272009-10-12 06:00:39 +0000199 }
200
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000201 /* Set the last descriptor in the ring to indicate wrap */
202 txbdp--;
Claudiu Manoila7312d52015-03-13 10:36:28 +0200203 txbdp->status = cpu_to_be16(be16_to_cpu(txbdp->status) |
204 TXBD_WRAP);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000205 }
206
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200207 rfbptr = &regs->rfbptr0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000208 for (i = 0; i < priv->num_rx_queues; i++) {
209 rx_queue = priv->rx_queue[i];
210 rx_queue->cur_rx = rx_queue->rx_bd_base;
211 rx_queue->skb_currx = 0;
212 rxbdp = rx_queue->rx_bd_base;
213
214 for (j = 0; j < rx_queue->rx_ring_size; j++) {
215 struct sk_buff *skb = rx_queue->rx_skbuff[j];
216
217 if (skb) {
Claudiu Manoila7312d52015-03-13 10:36:28 +0200218 bufaddr = be32_to_cpu(rxbdp->bufPtr);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000219 } else {
Kevin Hao0a4b5a22014-12-11 14:08:41 +0800220 skb = gfar_new_skb(ndev, &bufaddr);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000221 if (!skb) {
Joe Perches59deab22011-06-14 08:57:47 +0000222 netdev_err(ndev, "Can't allocate RX buffers\n");
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +0000223 return -ENOMEM;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000224 }
225 rx_queue->rx_skbuff[j] = skb;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000226 }
227
Kevin Hao0a4b5a22014-12-11 14:08:41 +0800228 gfar_init_rxbdp(rx_queue, rxbdp, bufaddr);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000229 rxbdp++;
230 }
231
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200232 rx_queue->rfbptr = rfbptr;
233 rfbptr += 2;
Anton Vorontsov87283272009-10-12 06:00:39 +0000234 }
235
236 return 0;
237}
238
239static int gfar_alloc_skb_resources(struct net_device *ndev)
240{
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000241 void *vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000242 dma_addr_t addr;
243 int i, j, k;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000244 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil369ec162013-02-14 05:00:02 +0000245 struct device *dev = priv->dev;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000246 struct gfar_priv_tx_q *tx_queue = NULL;
247 struct gfar_priv_rx_q *rx_queue = NULL;
248
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000249 priv->total_tx_ring_size = 0;
250 for (i = 0; i < priv->num_tx_queues; i++)
251 priv->total_tx_ring_size += priv->tx_queue[i]->tx_ring_size;
252
253 priv->total_rx_ring_size = 0;
254 for (i = 0; i < priv->num_rx_queues; i++)
255 priv->total_rx_ring_size += priv->rx_queue[i]->rx_ring_size;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000256
257 /* Allocate memory for the buffer descriptors */
Anton Vorontsov87283272009-10-12 06:00:39 +0000258 vaddr = dma_alloc_coherent(dev,
Joe Perchesd0320f72013-03-14 13:07:21 +0000259 (priv->total_tx_ring_size *
260 sizeof(struct txbd8)) +
261 (priv->total_rx_ring_size *
262 sizeof(struct rxbd8)),
263 &addr, GFP_KERNEL);
264 if (!vaddr)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000265 return -ENOMEM;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000266
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000267 for (i = 0; i < priv->num_tx_queues; i++) {
268 tx_queue = priv->tx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000269 tx_queue->tx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000270 tx_queue->tx_bd_dma_base = addr;
271 tx_queue->dev = ndev;
272 /* enet DMA only understands physical addresses */
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000273 addr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
274 vaddr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000275 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000276
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000277 /* Start the rx descriptor ring where the tx ring leaves off */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000278 for (i = 0; i < priv->num_rx_queues; i++) {
279 rx_queue = priv->rx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000280 rx_queue->rx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000281 rx_queue->rx_bd_dma_base = addr;
282 rx_queue->dev = ndev;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000283 addr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
284 vaddr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000285 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000286
287 /* Setup the skbuff rings */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000288 for (i = 0; i < priv->num_tx_queues; i++) {
289 tx_queue = priv->tx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000290 tx_queue->tx_skbuff =
291 kmalloc_array(tx_queue->tx_ring_size,
292 sizeof(*tx_queue->tx_skbuff),
293 GFP_KERNEL);
294 if (!tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000295 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000296
297 for (k = 0; k < tx_queue->tx_ring_size; k++)
298 tx_queue->tx_skbuff[k] = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000299 }
300
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000301 for (i = 0; i < priv->num_rx_queues; i++) {
302 rx_queue = priv->rx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000303 rx_queue->rx_skbuff =
304 kmalloc_array(rx_queue->rx_ring_size,
305 sizeof(*rx_queue->rx_skbuff),
306 GFP_KERNEL);
307 if (!rx_queue->rx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000308 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000309
310 for (j = 0; j < rx_queue->rx_ring_size; j++)
311 rx_queue->rx_skbuff[j] = NULL;
312 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000313
Anton Vorontsov87283272009-10-12 06:00:39 +0000314 if (gfar_init_bds(ndev))
315 goto cleanup;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000316
317 return 0;
318
319cleanup:
320 free_skb_resources(priv);
321 return -ENOMEM;
322}
323
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000324static void gfar_init_tx_rx_base(struct gfar_private *priv)
325{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000326 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov18294ad2009-11-04 12:53:00 +0000327 u32 __iomem *baddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000328 int i;
329
330 baddr = &regs->tbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000331 for (i = 0; i < priv->num_tx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000332 gfar_write(baddr, priv->tx_queue[i]->tx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000333 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000334 }
335
336 baddr = &regs->rbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000337 for (i = 0; i < priv->num_rx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000338 gfar_write(baddr, priv->rx_queue[i]->rx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000339 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000340 }
341}
342
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200343static void gfar_init_rqprm(struct gfar_private *priv)
344{
345 struct gfar __iomem *regs = priv->gfargrp[0].regs;
346 u32 __iomem *baddr;
347 int i;
348
349 baddr = &regs->rqprm0;
350 for (i = 0; i < priv->num_rx_queues; i++) {
351 gfar_write(baddr, priv->rx_queue[i]->rx_ring_size |
352 (DEFAULT_RX_LFC_THR << FBTHR_SHIFT));
353 baddr++;
354 }
355}
356
Claudiu Manoil88302642014-02-24 12:13:43 +0200357static void gfar_rx_buff_size_config(struct gfar_private *priv)
358{
Claudiu Manoilf5b720b2014-10-15 19:11:46 +0300359 int frame_size = priv->ndev->mtu + ETH_HLEN + ETH_FCS_LEN;
Claudiu Manoil88302642014-02-24 12:13:43 +0200360
361 /* set this when rx hw offload (TOE) functions are being used */
362 priv->uses_rxfcb = 0;
363
364 if (priv->ndev->features & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX))
365 priv->uses_rxfcb = 1;
366
367 if (priv->hwts_rx_en)
368 priv->uses_rxfcb = 1;
369
370 if (priv->uses_rxfcb)
371 frame_size += GMAC_FCB_LEN;
372
373 frame_size += priv->padding;
374
375 frame_size = (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
376 INCREMENTAL_BUFFER_SIZE;
377
378 priv->rx_buffer_size = frame_size;
379}
380
Claudiu Manoila328ac92014-02-24 12:13:42 +0200381static void gfar_mac_rx_config(struct gfar_private *priv)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000382{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000383 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000384 u32 rctrl = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000385
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000386 if (priv->rx_filer_enable) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000387 rctrl |= RCTRL_FILREN;
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000388 /* Program the RIR0 reg with the required distribution */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200389 if (priv->poll_mode == GFAR_SQ_POLLING)
390 gfar_write(&regs->rir0, DEFAULT_2RXQ_RIR0);
391 else /* GFAR_MQ_POLLING */
392 gfar_write(&regs->rir0, DEFAULT_8RXQ_RIR0);
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000393 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000394
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000395 /* Restore PROMISC mode */
Claudiu Manoila328ac92014-02-24 12:13:42 +0200396 if (priv->ndev->flags & IFF_PROMISC)
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000397 rctrl |= RCTRL_PROM;
398
Claudiu Manoil88302642014-02-24 12:13:43 +0200399 if (priv->ndev->features & NETIF_F_RXCSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000400 rctrl |= RCTRL_CHECKSUMMING;
401
Claudiu Manoil88302642014-02-24 12:13:43 +0200402 if (priv->extended_hash)
403 rctrl |= RCTRL_EXTHASH | RCTRL_EMEN;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000404
405 if (priv->padding) {
406 rctrl &= ~RCTRL_PAL_MASK;
407 rctrl |= RCTRL_PADDING(priv->padding);
408 }
409
Manfred Rudigier97553f72010-06-11 01:49:05 +0000410 /* Enable HW time stamping if requested from user space */
Claudiu Manoil88302642014-02-24 12:13:43 +0200411 if (priv->hwts_rx_en)
Manfred Rudigier97553f72010-06-11 01:49:05 +0000412 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE;
413
Claudiu Manoil88302642014-02-24 12:13:43 +0200414 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_RX)
Sebastian Pöhnb852b722011-07-26 00:03:13 +0000415 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000416
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200417 /* Clear the LFC bit */
418 gfar_write(&regs->rctrl, rctrl);
419 /* Init flow control threshold values */
420 gfar_init_rqprm(priv);
421 gfar_write(&regs->ptv, DEFAULT_LFC_PTVVAL);
422 rctrl |= RCTRL_LFC;
423
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000424 /* Init rctrl based on our settings */
425 gfar_write(&regs->rctrl, rctrl);
Claudiu Manoila328ac92014-02-24 12:13:42 +0200426}
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000427
Claudiu Manoila328ac92014-02-24 12:13:42 +0200428static void gfar_mac_tx_config(struct gfar_private *priv)
429{
430 struct gfar __iomem *regs = priv->gfargrp[0].regs;
431 u32 tctrl = 0;
432
433 if (priv->ndev->features & NETIF_F_IP_CSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000434 tctrl |= TCTRL_INIT_CSUM;
435
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +0000436 if (priv->prio_sched_en)
437 tctrl |= TCTRL_TXSCHED_PRIO;
438 else {
439 tctrl |= TCTRL_TXSCHED_WRRS;
440 gfar_write(&regs->tr03wt, DEFAULT_WRRS_WEIGHT);
441 gfar_write(&regs->tr47wt, DEFAULT_WRRS_WEIGHT);
442 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000443
Claudiu Manoil88302642014-02-24 12:13:43 +0200444 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_TX)
445 tctrl |= TCTRL_VLINS;
446
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000447 gfar_write(&regs->tctrl, tctrl);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000448}
449
Claudiu Manoilf19015b2014-02-24 12:13:46 +0200450static void gfar_configure_coalescing(struct gfar_private *priv,
451 unsigned long tx_mask, unsigned long rx_mask)
452{
453 struct gfar __iomem *regs = priv->gfargrp[0].regs;
454 u32 __iomem *baddr;
455
456 if (priv->mode == MQ_MG_MODE) {
457 int i = 0;
458
459 baddr = &regs->txic0;
460 for_each_set_bit(i, &tx_mask, priv->num_tx_queues) {
461 gfar_write(baddr + i, 0);
462 if (likely(priv->tx_queue[i]->txcoalescing))
463 gfar_write(baddr + i, priv->tx_queue[i]->txic);
464 }
465
466 baddr = &regs->rxic0;
467 for_each_set_bit(i, &rx_mask, priv->num_rx_queues) {
468 gfar_write(baddr + i, 0);
469 if (likely(priv->rx_queue[i]->rxcoalescing))
470 gfar_write(baddr + i, priv->rx_queue[i]->rxic);
471 }
472 } else {
473 /* Backward compatible case -- even if we enable
474 * multiple queues, there's only single reg to program
475 */
476 gfar_write(&regs->txic, 0);
477 if (likely(priv->tx_queue[0]->txcoalescing))
478 gfar_write(&regs->txic, priv->tx_queue[0]->txic);
479
480 gfar_write(&regs->rxic, 0);
481 if (unlikely(priv->rx_queue[0]->rxcoalescing))
482 gfar_write(&regs->rxic, priv->rx_queue[0]->rxic);
483 }
484}
485
486void gfar_configure_coalescing_all(struct gfar_private *priv)
487{
488 gfar_configure_coalescing(priv, 0xFF, 0xFF);
489}
490
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000491static struct net_device_stats *gfar_get_stats(struct net_device *dev)
492{
493 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000494 unsigned long rx_packets = 0, rx_bytes = 0, rx_dropped = 0;
495 unsigned long tx_packets = 0, tx_bytes = 0;
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000496 int i;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000497
498 for (i = 0; i < priv->num_rx_queues; i++) {
499 rx_packets += priv->rx_queue[i]->stats.rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000500 rx_bytes += priv->rx_queue[i]->stats.rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000501 rx_dropped += priv->rx_queue[i]->stats.rx_dropped;
502 }
503
504 dev->stats.rx_packets = rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000505 dev->stats.rx_bytes = rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000506 dev->stats.rx_dropped = rx_dropped;
507
508 for (i = 0; i < priv->num_tx_queues; i++) {
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000509 tx_bytes += priv->tx_queue[i]->stats.tx_bytes;
510 tx_packets += priv->tx_queue[i]->stats.tx_packets;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000511 }
512
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000513 dev->stats.tx_bytes = tx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000514 dev->stats.tx_packets = tx_packets;
515
516 return &dev->stats;
517}
518
Claudiu Manoil3d23a052015-05-06 18:07:30 +0300519static int gfar_set_mac_addr(struct net_device *dev, void *p)
520{
521 eth_mac_addr(dev, p);
522
523 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
524
525 return 0;
526}
527
Andy Fleming26ccfc32009-03-10 12:58:28 +0000528static const struct net_device_ops gfar_netdev_ops = {
529 .ndo_open = gfar_enet_open,
530 .ndo_start_xmit = gfar_start_xmit,
531 .ndo_stop = gfar_close,
532 .ndo_change_mtu = gfar_change_mtu,
Michał Mirosław8b3afe92011-04-15 04:50:50 +0000533 .ndo_set_features = gfar_set_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000534 .ndo_set_rx_mode = gfar_set_multi,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000535 .ndo_tx_timeout = gfar_timeout,
536 .ndo_do_ioctl = gfar_ioctl,
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000537 .ndo_get_stats = gfar_get_stats,
Claudiu Manoil3d23a052015-05-06 18:07:30 +0300538 .ndo_set_mac_address = gfar_set_mac_addr,
Ben Hutchings240c1022009-07-09 17:54:35 +0000539 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000540#ifdef CONFIG_NET_POLL_CONTROLLER
541 .ndo_poll_controller = gfar_netpoll,
542#endif
543};
544
Claudiu Manoilefeddce2014-02-17 12:53:17 +0200545static void gfar_ints_disable(struct gfar_private *priv)
546{
547 int i;
548 for (i = 0; i < priv->num_grps; i++) {
549 struct gfar __iomem *regs = priv->gfargrp[i].regs;
550 /* Clear IEVENT */
551 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
552
553 /* Initialize IMASK */
554 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
555 }
556}
557
558static void gfar_ints_enable(struct gfar_private *priv)
559{
560 int i;
561 for (i = 0; i < priv->num_grps; i++) {
562 struct gfar __iomem *regs = priv->gfargrp[i].regs;
563 /* Unmask the interrupts we look for */
564 gfar_write(&regs->imask, IMASK_DEFAULT);
565 }
566}
567
Claudiu Manoil20862782014-02-17 12:53:14 +0200568static int gfar_alloc_tx_queues(struct gfar_private *priv)
569{
570 int i;
571
572 for (i = 0; i < priv->num_tx_queues; i++) {
573 priv->tx_queue[i] = kzalloc(sizeof(struct gfar_priv_tx_q),
574 GFP_KERNEL);
575 if (!priv->tx_queue[i])
576 return -ENOMEM;
577
578 priv->tx_queue[i]->tx_skbuff = NULL;
579 priv->tx_queue[i]->qindex = i;
580 priv->tx_queue[i]->dev = priv->ndev;
581 spin_lock_init(&(priv->tx_queue[i]->txlock));
582 }
583 return 0;
584}
585
586static int gfar_alloc_rx_queues(struct gfar_private *priv)
587{
588 int i;
589
590 for (i = 0; i < priv->num_rx_queues; i++) {
591 priv->rx_queue[i] = kzalloc(sizeof(struct gfar_priv_rx_q),
592 GFP_KERNEL);
593 if (!priv->rx_queue[i])
594 return -ENOMEM;
595
596 priv->rx_queue[i]->rx_skbuff = NULL;
597 priv->rx_queue[i]->qindex = i;
598 priv->rx_queue[i]->dev = priv->ndev;
Claudiu Manoil20862782014-02-17 12:53:14 +0200599 }
600 return 0;
601}
602
603static void gfar_free_tx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000604{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000605 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000606
607 for (i = 0; i < priv->num_tx_queues; i++)
608 kfree(priv->tx_queue[i]);
609}
610
Claudiu Manoil20862782014-02-17 12:53:14 +0200611static void gfar_free_rx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000612{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000613 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000614
615 for (i = 0; i < priv->num_rx_queues; i++)
616 kfree(priv->rx_queue[i]);
617}
618
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000619static void unmap_group_regs(struct gfar_private *priv)
620{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000621 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000622
623 for (i = 0; i < MAXGROUPS; i++)
624 if (priv->gfargrp[i].regs)
625 iounmap(priv->gfargrp[i].regs);
626}
627
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000628static void free_gfar_dev(struct gfar_private *priv)
629{
630 int i, j;
631
632 for (i = 0; i < priv->num_grps; i++)
633 for (j = 0; j < GFAR_NUM_IRQS; j++) {
634 kfree(priv->gfargrp[i].irqinfo[j]);
635 priv->gfargrp[i].irqinfo[j] = NULL;
636 }
637
638 free_netdev(priv->ndev);
639}
640
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000641static void disable_napi(struct gfar_private *priv)
642{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000643 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000644
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200645 for (i = 0; i < priv->num_grps; i++) {
646 napi_disable(&priv->gfargrp[i].napi_rx);
647 napi_disable(&priv->gfargrp[i].napi_tx);
648 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000649}
650
651static void enable_napi(struct gfar_private *priv)
652{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000653 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000654
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200655 for (i = 0; i < priv->num_grps; i++) {
656 napi_enable(&priv->gfargrp[i].napi_rx);
657 napi_enable(&priv->gfargrp[i].napi_tx);
658 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000659}
660
661static int gfar_parse_group(struct device_node *np,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000662 struct gfar_private *priv, const char *model)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000663{
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000664 struct gfar_priv_grp *grp = &priv->gfargrp[priv->num_grps];
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000665 int i;
666
Paul Gortmaker7c1e7e92013-02-04 09:49:42 +0000667 for (i = 0; i < GFAR_NUM_IRQS; i++) {
668 grp->irqinfo[i] = kzalloc(sizeof(struct gfar_irqinfo),
669 GFP_KERNEL);
670 if (!grp->irqinfo[i])
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000671 return -ENOMEM;
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000672 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000673
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000674 grp->regs = of_iomap(np, 0);
675 if (!grp->regs)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000676 return -ENOMEM;
677
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000678 gfar_irq(grp, TX)->irq = irq_of_parse_and_map(np, 0);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000679
680 /* If we aren't the FEC we have multiple interrupts */
681 if (model && strcasecmp(model, "FEC")) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000682 gfar_irq(grp, RX)->irq = irq_of_parse_and_map(np, 1);
683 gfar_irq(grp, ER)->irq = irq_of_parse_and_map(np, 2);
684 if (gfar_irq(grp, TX)->irq == NO_IRQ ||
685 gfar_irq(grp, RX)->irq == NO_IRQ ||
686 gfar_irq(grp, ER)->irq == NO_IRQ)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000687 return -EINVAL;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000688 }
689
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000690 grp->priv = priv;
691 spin_lock_init(&grp->grplock);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000692 if (priv->mode == MQ_MG_MODE) {
Jingchang Lu55917642015-03-13 10:52:32 +0200693 u32 rxq_mask, txq_mask;
694 int ret;
695
696 grp->rx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
697 grp->tx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
698
699 ret = of_property_read_u32(np, "fsl,rx-bit-map", &rxq_mask);
700 if (!ret) {
701 grp->rx_bit_map = rxq_mask ?
702 rxq_mask : (DEFAULT_MAPPING >> priv->num_grps);
703 }
704
705 ret = of_property_read_u32(np, "fsl,tx-bit-map", &txq_mask);
706 if (!ret) {
707 grp->tx_bit_map = txq_mask ?
708 txq_mask : (DEFAULT_MAPPING >> priv->num_grps);
709 }
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200710
711 if (priv->poll_mode == GFAR_SQ_POLLING) {
712 /* One Q per interrupt group: Q0 to G0, Q1 to G1 */
713 grp->rx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
714 grp->tx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200715 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000716 } else {
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000717 grp->rx_bit_map = 0xFF;
718 grp->tx_bit_map = 0xFF;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000719 }
Claudiu Manoil20862782014-02-17 12:53:14 +0200720
721 /* bit_map's MSB is q0 (from q0 to q7) but, for_each_set_bit parses
722 * right to left, so we need to revert the 8 bits to get the q index
723 */
724 grp->rx_bit_map = bitrev8(grp->rx_bit_map);
725 grp->tx_bit_map = bitrev8(grp->tx_bit_map);
726
727 /* Calculate RSTAT, TSTAT, RQUEUE and TQUEUE values,
728 * also assign queues to groups
729 */
730 for_each_set_bit(i, &grp->rx_bit_map, priv->num_rx_queues) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200731 if (!grp->rx_queue)
732 grp->rx_queue = priv->rx_queue[i];
Claudiu Manoil20862782014-02-17 12:53:14 +0200733 grp->num_rx_queues++;
734 grp->rstat |= (RSTAT_CLEAR_RHALT >> i);
735 priv->rqueue |= ((RQUEUE_EN0 | RQUEUE_EX0) >> i);
736 priv->rx_queue[i]->grp = grp;
737 }
738
739 for_each_set_bit(i, &grp->tx_bit_map, priv->num_tx_queues) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200740 if (!grp->tx_queue)
741 grp->tx_queue = priv->tx_queue[i];
Claudiu Manoil20862782014-02-17 12:53:14 +0200742 grp->num_tx_queues++;
743 grp->tstat |= (TSTAT_CLEAR_THALT >> i);
744 priv->tqueue |= (TQUEUE_EN0 >> i);
745 priv->tx_queue[i]->grp = grp;
746 }
747
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000748 priv->num_grps++;
749
750 return 0;
751}
752
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100753static int gfar_of_group_count(struct device_node *np)
754{
755 struct device_node *child;
756 int num = 0;
757
758 for_each_available_child_of_node(np, child)
759 if (!of_node_cmp(child->name, "queue-group"))
760 num++;
761
762 return num;
763}
764
Grant Likely2dc11582010-08-06 09:25:50 -0600765static int gfar_of_init(struct platform_device *ofdev, struct net_device **pdev)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800766{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800767 const char *model;
768 const char *ctype;
769 const void *mac_addr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000770 int err = 0, i;
771 struct net_device *dev = NULL;
772 struct gfar_private *priv = NULL;
Grant Likely61c7a082010-04-13 16:12:29 -0700773 struct device_node *np = ofdev->dev.of_node;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000774 struct device_node *child = NULL;
Jingchang Lu55917642015-03-13 10:52:32 +0200775 struct property *stash;
776 u32 stash_len = 0;
777 u32 stash_idx = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000778 unsigned int num_tx_qs, num_rx_qs;
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200779 unsigned short mode, poll_mode;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800780
Kevin Hao4b222ca2015-01-28 20:06:48 +0800781 if (!np)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800782 return -ENODEV;
783
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200784 if (of_device_is_compatible(np, "fsl,etsec2")) {
785 mode = MQ_MG_MODE;
786 poll_mode = GFAR_SQ_POLLING;
787 } else {
788 mode = SQ_SG_MODE;
789 poll_mode = GFAR_SQ_POLLING;
790 }
791
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200792 if (mode == SQ_SG_MODE) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200793 num_tx_qs = 1;
794 num_rx_qs = 1;
795 } else { /* MQ_MG_MODE */
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200796 /* get the actual number of supported groups */
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100797 unsigned int num_grps = gfar_of_group_count(np);
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200798
799 if (num_grps == 0 || num_grps > MAXGROUPS) {
800 dev_err(&ofdev->dev, "Invalid # of int groups(%d)\n",
801 num_grps);
802 pr_err("Cannot do alloc_etherdev, aborting\n");
803 return -EINVAL;
804 }
805
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200806 if (poll_mode == GFAR_SQ_POLLING) {
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200807 num_tx_qs = num_grps; /* one txq per int group */
808 num_rx_qs = num_grps; /* one rxq per int group */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200809 } else { /* GFAR_MQ_POLLING */
Jingchang Lu55917642015-03-13 10:52:32 +0200810 u32 tx_queues, rx_queues;
811 int ret;
812
813 /* parse the num of HW tx and rx queues */
814 ret = of_property_read_u32(np, "fsl,num_tx_queues",
815 &tx_queues);
816 num_tx_qs = ret ? 1 : tx_queues;
817
818 ret = of_property_read_u32(np, "fsl,num_rx_queues",
819 &rx_queues);
820 num_rx_qs = ret ? 1 : rx_queues;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200821 }
822 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000823
824 if (num_tx_qs > MAX_TX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000825 pr_err("num_tx_qs(=%d) greater than MAX_TX_QS(=%d)\n",
826 num_tx_qs, MAX_TX_QS);
827 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000828 return -EINVAL;
829 }
830
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000831 if (num_rx_qs > MAX_RX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000832 pr_err("num_rx_qs(=%d) greater than MAX_RX_QS(=%d)\n",
833 num_rx_qs, MAX_RX_QS);
834 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000835 return -EINVAL;
836 }
837
838 *pdev = alloc_etherdev_mq(sizeof(*priv), num_tx_qs);
839 dev = *pdev;
840 if (NULL == dev)
841 return -ENOMEM;
842
843 priv = netdev_priv(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000844 priv->ndev = dev;
845
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200846 priv->mode = mode;
847 priv->poll_mode = poll_mode;
848
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000849 priv->num_tx_queues = num_tx_qs;
Ben Hutchingsfe069122010-09-27 08:27:37 +0000850 netif_set_real_num_rx_queues(dev, num_rx_qs);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000851 priv->num_rx_queues = num_rx_qs;
Claudiu Manoil20862782014-02-17 12:53:14 +0200852
853 err = gfar_alloc_tx_queues(priv);
854 if (err)
855 goto tx_alloc_failed;
856
857 err = gfar_alloc_rx_queues(priv);
858 if (err)
859 goto rx_alloc_failed;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800860
Jingchang Lu55917642015-03-13 10:52:32 +0200861 err = of_property_read_string(np, "model", &model);
862 if (err) {
863 pr_err("Device model property missing, aborting\n");
864 goto rx_alloc_failed;
865 }
866
Jan Ceuleers0977f812012-06-05 03:42:12 +0000867 /* Init Rx queue filer rule set linked list */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700868 INIT_LIST_HEAD(&priv->rx_list.list);
869 priv->rx_list.count = 0;
870 mutex_init(&priv->rx_queue_access);
871
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000872 for (i = 0; i < MAXGROUPS; i++)
873 priv->gfargrp[i].regs = NULL;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800874
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000875 /* Parse and initialize group specific information */
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200876 if (priv->mode == MQ_MG_MODE) {
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100877 for_each_available_child_of_node(np, child) {
878 if (of_node_cmp(child->name, "queue-group"))
879 continue;
880
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000881 err = gfar_parse_group(child, priv, model);
882 if (err)
883 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800884 }
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200885 } else { /* SQ_SG_MODE */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000886 err = gfar_parse_group(np, priv, model);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000887 if (err)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000888 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800889 }
890
Jingchang Lu55917642015-03-13 10:52:32 +0200891 stash = of_find_property(np, "bd-stash", NULL);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800892
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000893 if (stash) {
Andy Fleming4d7902f2009-02-04 16:43:44 -0800894 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
895 priv->bd_stash_en = 1;
896 }
897
Jingchang Lu55917642015-03-13 10:52:32 +0200898 err = of_property_read_u32(np, "rx-stash-len", &stash_len);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800899
Jingchang Lu55917642015-03-13 10:52:32 +0200900 if (err == 0)
901 priv->rx_stash_size = stash_len;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800902
Jingchang Lu55917642015-03-13 10:52:32 +0200903 err = of_property_read_u32(np, "rx-stash-idx", &stash_idx);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800904
Jingchang Lu55917642015-03-13 10:52:32 +0200905 if (err == 0)
906 priv->rx_stash_index = stash_idx;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800907
908 if (stash_len || stash_idx)
909 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
910
Andy Flemingb31a1d82008-12-16 15:29:15 -0800911 mac_addr = of_get_mac_address(np);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000912
Andy Flemingb31a1d82008-12-16 15:29:15 -0800913 if (mac_addr)
Joe Perches6a3c9102011-11-16 09:38:02 +0000914 memcpy(dev->dev_addr, mac_addr, ETH_ALEN);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800915
916 if (model && !strcasecmp(model, "TSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200917 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000918 FSL_GIANFAR_DEV_HAS_COALESCE |
919 FSL_GIANFAR_DEV_HAS_RMON |
920 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
921
Andy Flemingb31a1d82008-12-16 15:29:15 -0800922 if (model && !strcasecmp(model, "eTSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200923 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000924 FSL_GIANFAR_DEV_HAS_COALESCE |
925 FSL_GIANFAR_DEV_HAS_RMON |
926 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000927 FSL_GIANFAR_DEV_HAS_CSUM |
928 FSL_GIANFAR_DEV_HAS_VLAN |
929 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
930 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH |
931 FSL_GIANFAR_DEV_HAS_TIMER;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800932
Jingchang Lu55917642015-03-13 10:52:32 +0200933 err = of_property_read_string(np, "phy-connection-type", &ctype);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800934
935 /* We only care about rgmii-id. The rest are autodetected */
Jingchang Lu55917642015-03-13 10:52:32 +0200936 if (err == 0 && !strcmp(ctype, "rgmii-id"))
Andy Flemingb31a1d82008-12-16 15:29:15 -0800937 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
938 else
939 priv->interface = PHY_INTERFACE_MODE_MII;
940
Jingchang Lu55917642015-03-13 10:52:32 +0200941 if (of_find_property(np, "fsl,magic-packet", NULL))
Andy Flemingb31a1d82008-12-16 15:29:15 -0800942 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
943
Grant Likelyfe192a42009-04-25 12:53:12 +0000944 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800945
Florian Fainellibe403642014-05-22 09:47:48 -0700946 /* In the case of a fixed PHY, the DT node associated
947 * to the PHY is the Ethernet MAC DT node.
948 */
Uwe Kleine-König6f2c9bd2014-08-07 22:17:07 +0200949 if (!priv->phy_node && of_phy_is_fixed_link(np)) {
Florian Fainellibe403642014-05-22 09:47:48 -0700950 err = of_phy_register_fixed_link(np);
951 if (err)
952 goto err_grp_init;
953
Uwe Kleine-König6f2c9bd2014-08-07 22:17:07 +0200954 priv->phy_node = of_node_get(np);
Florian Fainellibe403642014-05-22 09:47:48 -0700955 }
956
Andy Flemingb31a1d82008-12-16 15:29:15 -0800957 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000958 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800959
960 return 0;
961
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000962err_grp_init:
963 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +0200964rx_alloc_failed:
965 gfar_free_rx_queues(priv);
966tx_alloc_failed:
967 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000968 free_gfar_dev(priv);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800969 return err;
970}
971
Ben Hutchingsca0c88c2013-11-18 23:05:27 +0000972static int gfar_hwtstamp_set(struct net_device *netdev, struct ifreq *ifr)
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000973{
974 struct hwtstamp_config config;
975 struct gfar_private *priv = netdev_priv(netdev);
976
977 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
978 return -EFAULT;
979
980 /* reserved for future extensions */
981 if (config.flags)
982 return -EINVAL;
983
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000984 switch (config.tx_type) {
985 case HWTSTAMP_TX_OFF:
986 priv->hwts_tx_en = 0;
987 break;
988 case HWTSTAMP_TX_ON:
989 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
990 return -ERANGE;
991 priv->hwts_tx_en = 1;
992 break;
993 default:
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000994 return -ERANGE;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000995 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000996
997 switch (config.rx_filter) {
998 case HWTSTAMP_FILTER_NONE:
Manfred Rudigier97553f72010-06-11 01:49:05 +0000999 if (priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +00001000 priv->hwts_rx_en = 0;
Claudiu Manoil08511332014-02-24 12:13:45 +02001001 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +00001002 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001003 break;
1004 default:
1005 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
1006 return -ERANGE;
Manfred Rudigier97553f72010-06-11 01:49:05 +00001007 if (!priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +00001008 priv->hwts_rx_en = 1;
Claudiu Manoil08511332014-02-24 12:13:45 +02001009 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +00001010 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001011 config.rx_filter = HWTSTAMP_FILTER_ALL;
1012 break;
1013 }
1014
1015 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1016 -EFAULT : 0;
1017}
1018
Ben Hutchingsca0c88c2013-11-18 23:05:27 +00001019static int gfar_hwtstamp_get(struct net_device *netdev, struct ifreq *ifr)
1020{
1021 struct hwtstamp_config config;
1022 struct gfar_private *priv = netdev_priv(netdev);
1023
1024 config.flags = 0;
1025 config.tx_type = priv->hwts_tx_en ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1026 config.rx_filter = (priv->hwts_rx_en ?
1027 HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE);
1028
1029 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1030 -EFAULT : 0;
1031}
1032
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001033static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1034{
1035 struct gfar_private *priv = netdev_priv(dev);
1036
1037 if (!netif_running(dev))
1038 return -EINVAL;
1039
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001040 if (cmd == SIOCSHWTSTAMP)
Ben Hutchingsca0c88c2013-11-18 23:05:27 +00001041 return gfar_hwtstamp_set(dev, rq);
1042 if (cmd == SIOCGHWTSTAMP)
1043 return gfar_hwtstamp_get(dev, rq);
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001044
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001045 if (!priv->phydev)
1046 return -ENODEV;
1047
Richard Cochran28b04112010-07-17 08:48:55 +00001048 return phy_mii_ioctl(priv->phydev, rq, cmd);
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001049}
1050
Anton Vorontsov18294ad2009-11-04 12:53:00 +00001051static u32 cluster_entry_per_class(struct gfar_private *priv, u32 rqfar,
1052 u32 class)
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001053{
1054 u32 rqfpr = FPR_FILER_MASK;
1055 u32 rqfcr = 0x0;
1056
1057 rqfar--;
1058 rqfcr = RQFCR_CLE | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001059 priv->ftp_rqfpr[rqfar] = rqfpr;
1060 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001061 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1062
1063 rqfar--;
1064 rqfcr = RQFCR_CMP_NOMATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001065 priv->ftp_rqfpr[rqfar] = rqfpr;
1066 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001067 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1068
1069 rqfar--;
1070 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND;
1071 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001072 priv->ftp_rqfcr[rqfar] = rqfcr;
1073 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001074 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1075
1076 rqfar--;
1077 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_MASK | RQFCR_AND;
1078 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001079 priv->ftp_rqfcr[rqfar] = rqfcr;
1080 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001081 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1082
1083 return rqfar;
1084}
1085
1086static void gfar_init_filer_table(struct gfar_private *priv)
1087{
1088 int i = 0x0;
1089 u32 rqfar = MAX_FILER_IDX;
1090 u32 rqfcr = 0x0;
1091 u32 rqfpr = FPR_FILER_MASK;
1092
1093 /* Default rule */
1094 rqfcr = RQFCR_CMP_MATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001095 priv->ftp_rqfcr[rqfar] = rqfcr;
1096 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001097 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1098
1099 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6);
1100 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_UDP);
1101 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_TCP);
1102 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4);
1103 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_UDP);
1104 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_TCP);
1105
Uwe Kleine-König85dd08e2010-06-11 12:16:55 +02001106 /* cur_filer_idx indicated the first non-masked rule */
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001107 priv->cur_filer_idx = rqfar;
1108
1109 /* Rest are masked rules */
1110 rqfcr = RQFCR_CMP_NOMATCH;
1111 for (i = 0; i < rqfar; i++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001112 priv->ftp_rqfcr[i] = rqfcr;
1113 priv->ftp_rqfpr[i] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001114 gfar_write_filer(priv, i, rqfcr, rqfpr);
1115 }
1116}
1117
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001118#ifdef CONFIG_PPC
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001119static void __gfar_detect_errata_83xx(struct gfar_private *priv)
Anton Vorontsov7d350972010-06-30 06:39:12 +00001120{
Anton Vorontsov7d350972010-06-30 06:39:12 +00001121 unsigned int pvr = mfspr(SPRN_PVR);
1122 unsigned int svr = mfspr(SPRN_SVR);
1123 unsigned int mod = (svr >> 16) & 0xfff6; /* w/o E suffix */
1124 unsigned int rev = svr & 0xffff;
1125
1126 /* MPC8313 Rev 2.0 and higher; All MPC837x */
1127 if ((pvr == 0x80850010 && mod == 0x80b0 && rev >= 0x0020) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001128 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001129 priv->errata |= GFAR_ERRATA_74;
1130
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +00001131 /* MPC8313 and MPC837x all rev */
1132 if ((pvr == 0x80850010 && mod == 0x80b0) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001133 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +00001134 priv->errata |= GFAR_ERRATA_76;
1135
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001136 /* MPC8313 Rev < 2.0 */
1137 if (pvr == 0x80850010 && mod == 0x80b0 && rev < 0x0020)
Alex Dubov4363c2f2011-03-16 17:57:13 +00001138 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001139}
1140
1141static void __gfar_detect_errata_85xx(struct gfar_private *priv)
1142{
1143 unsigned int svr = mfspr(SPRN_SVR);
1144
1145 if ((SVR_SOC_VER(svr) == SVR_8548) && (SVR_REV(svr) == 0x20))
1146 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil53fad772013-10-09 20:20:42 +03001147 if (((SVR_SOC_VER(svr) == SVR_P2020) && (SVR_REV(svr) < 0x20)) ||
1148 ((SVR_SOC_VER(svr) == SVR_P2010) && (SVR_REV(svr) < 0x20)))
1149 priv->errata |= GFAR_ERRATA_76; /* aka eTSEC 20 */
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001150}
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001151#endif
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001152
1153static void gfar_detect_errata(struct gfar_private *priv)
1154{
1155 struct device *dev = &priv->ofdev->dev;
1156
1157 /* no plans to fix */
1158 priv->errata |= GFAR_ERRATA_A002;
1159
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001160#ifdef CONFIG_PPC
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001161 if (pvr_version_is(PVR_VER_E500V1) || pvr_version_is(PVR_VER_E500V2))
1162 __gfar_detect_errata_85xx(priv);
1163 else /* non-mpc85xx parts, i.e. e300 core based */
1164 __gfar_detect_errata_83xx(priv);
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001165#endif
Alex Dubov4363c2f2011-03-16 17:57:13 +00001166
Anton Vorontsov7d350972010-06-30 06:39:12 +00001167 if (priv->errata)
1168 dev_info(dev, "enabled errata workarounds, flags: 0x%x\n",
1169 priv->errata);
1170}
1171
Claudiu Manoil08511332014-02-24 12:13:45 +02001172void gfar_mac_reset(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Claudiu Manoil20862782014-02-17 12:53:14 +02001174 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Claudiu Manoila328ac92014-02-24 12:13:42 +02001175 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 /* Reset MAC layer */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001178 gfar_write(&regs->maccfg1, MACCFG1_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Andy Flemingb98ac702009-02-04 16:38:05 -08001180 /* We need to delay at least 3 TX clocks */
Claudiu Manoila328ac92014-02-24 12:13:42 +02001181 udelay(3);
Andy Flemingb98ac702009-02-04 16:38:05 -08001182
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001183 /* the soft reset bit is not self-resetting, so we need to
1184 * clear it before resuming normal operation
1185 */
Claudiu Manoil20862782014-02-17 12:53:14 +02001186 gfar_write(&regs->maccfg1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Claudiu Manoila328ac92014-02-24 12:13:42 +02001188 udelay(3);
1189
Claudiu Manoil88302642014-02-24 12:13:43 +02001190 /* Compute rx_buff_size based on config flags */
1191 gfar_rx_buff_size_config(priv);
1192
1193 /* Initialize the max receive frame/buffer lengths */
1194 gfar_write(&regs->maxfrm, priv->rx_buffer_size);
Claudiu Manoila328ac92014-02-24 12:13:42 +02001195 gfar_write(&regs->mrblr, priv->rx_buffer_size);
1196
1197 /* Initialize the Minimum Frame Length Register */
1198 gfar_write(&regs->minflr, MINFLR_INIT_SETTINGS);
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /* Initialize MACCFG2. */
Anton Vorontsov7d350972010-06-30 06:39:12 +00001201 tempval = MACCFG2_INIT_SETTINGS;
Claudiu Manoil88302642014-02-24 12:13:43 +02001202
1203 /* If the mtu is larger than the max size for standard
1204 * ethernet frames (ie, a jumbo frame), then set maccfg2
1205 * to allow huge frames, and to check the length
1206 */
1207 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE ||
1208 gfar_has_errata(priv, GFAR_ERRATA_74))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001209 tempval |= MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK;
Claudiu Manoil88302642014-02-24 12:13:43 +02001210
Anton Vorontsov7d350972010-06-30 06:39:12 +00001211 gfar_write(&regs->maccfg2, tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Claudiu Manoila328ac92014-02-24 12:13:42 +02001213 /* Clear mac addr hash registers */
1214 gfar_write(&regs->igaddr0, 0);
1215 gfar_write(&regs->igaddr1, 0);
1216 gfar_write(&regs->igaddr2, 0);
1217 gfar_write(&regs->igaddr3, 0);
1218 gfar_write(&regs->igaddr4, 0);
1219 gfar_write(&regs->igaddr5, 0);
1220 gfar_write(&regs->igaddr6, 0);
1221 gfar_write(&regs->igaddr7, 0);
1222
1223 gfar_write(&regs->gaddr0, 0);
1224 gfar_write(&regs->gaddr1, 0);
1225 gfar_write(&regs->gaddr2, 0);
1226 gfar_write(&regs->gaddr3, 0);
1227 gfar_write(&regs->gaddr4, 0);
1228 gfar_write(&regs->gaddr5, 0);
1229 gfar_write(&regs->gaddr6, 0);
1230 gfar_write(&regs->gaddr7, 0);
1231
1232 if (priv->extended_hash)
1233 gfar_clear_exact_match(priv->ndev);
1234
1235 gfar_mac_rx_config(priv);
1236
1237 gfar_mac_tx_config(priv);
1238
1239 gfar_set_mac_address(priv->ndev);
1240
1241 gfar_set_multi(priv->ndev);
1242
1243 /* clear ievent and imask before configuring coalescing */
1244 gfar_ints_disable(priv);
1245
1246 /* Configure the coalescing support */
1247 gfar_configure_coalescing_all(priv);
1248}
1249
1250static void gfar_hw_init(struct gfar_private *priv)
1251{
1252 struct gfar __iomem *regs = priv->gfargrp[0].regs;
1253 u32 attrs;
1254
1255 /* Stop the DMA engine now, in case it was running before
1256 * (The firmware could have used it, and left it running).
1257 */
1258 gfar_halt(priv);
1259
1260 gfar_mac_reset(priv);
1261
1262 /* Zero out the rmon mib registers if it has them */
1263 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
1264 memset_io(&(regs->rmon), 0, sizeof(struct rmon_mib));
1265
1266 /* Mask off the CAM interrupts */
1267 gfar_write(&regs->rmon.cam1, 0xffffffff);
1268 gfar_write(&regs->rmon.cam2, 0xffffffff);
1269 }
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 /* Initialize ECNTRL */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001272 gfar_write(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Claudiu Manoil34018fd2014-02-17 12:53:15 +02001274 /* Set the extraction length and index */
1275 attrs = ATTRELI_EL(priv->rx_stash_size) |
1276 ATTRELI_EI(priv->rx_stash_index);
1277
1278 gfar_write(&regs->attreli, attrs);
1279
1280 /* Start with defaults, and add stashing
1281 * depending on driver parameters
1282 */
1283 attrs = ATTR_INIT_SETTINGS;
1284
1285 if (priv->bd_stash_en)
1286 attrs |= ATTR_BDSTASH;
1287
1288 if (priv->rx_stash_size != 0)
1289 attrs |= ATTR_BUFSTASH;
1290
1291 gfar_write(&regs->attr, attrs);
1292
1293 /* FIFO configs */
1294 gfar_write(&regs->fifo_tx_thr, DEFAULT_FIFO_TX_THR);
1295 gfar_write(&regs->fifo_tx_starve, DEFAULT_FIFO_TX_STARVE);
1296 gfar_write(&regs->fifo_tx_starve_shutoff, DEFAULT_FIFO_TX_STARVE_OFF);
1297
Claudiu Manoil20862782014-02-17 12:53:14 +02001298 /* Program the interrupt steering regs, only for MG devices */
1299 if (priv->num_grps > 1)
1300 gfar_write_isrg(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Xiubo Li898157e2014-06-04 16:49:16 +08001303static void gfar_init_addr_hash_table(struct gfar_private *priv)
Claudiu Manoil20862782014-02-17 12:53:14 +02001304{
1305 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001306
Andy Flemingb31a1d82008-12-16 15:29:15 -08001307 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001308 priv->extended_hash = 1;
1309 priv->hash_width = 9;
1310
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001311 priv->hash_regs[0] = &regs->igaddr0;
1312 priv->hash_regs[1] = &regs->igaddr1;
1313 priv->hash_regs[2] = &regs->igaddr2;
1314 priv->hash_regs[3] = &regs->igaddr3;
1315 priv->hash_regs[4] = &regs->igaddr4;
1316 priv->hash_regs[5] = &regs->igaddr5;
1317 priv->hash_regs[6] = &regs->igaddr6;
1318 priv->hash_regs[7] = &regs->igaddr7;
1319 priv->hash_regs[8] = &regs->gaddr0;
1320 priv->hash_regs[9] = &regs->gaddr1;
1321 priv->hash_regs[10] = &regs->gaddr2;
1322 priv->hash_regs[11] = &regs->gaddr3;
1323 priv->hash_regs[12] = &regs->gaddr4;
1324 priv->hash_regs[13] = &regs->gaddr5;
1325 priv->hash_regs[14] = &regs->gaddr6;
1326 priv->hash_regs[15] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001327
1328 } else {
1329 priv->extended_hash = 0;
1330 priv->hash_width = 8;
1331
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001332 priv->hash_regs[0] = &regs->gaddr0;
1333 priv->hash_regs[1] = &regs->gaddr1;
1334 priv->hash_regs[2] = &regs->gaddr2;
1335 priv->hash_regs[3] = &regs->gaddr3;
1336 priv->hash_regs[4] = &regs->gaddr4;
1337 priv->hash_regs[5] = &regs->gaddr5;
1338 priv->hash_regs[6] = &regs->gaddr6;
1339 priv->hash_regs[7] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001340 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001341}
1342
1343/* Set up the ethernet device structure, private data,
1344 * and anything else we need before we start
1345 */
1346static int gfar_probe(struct platform_device *ofdev)
1347{
1348 struct net_device *dev = NULL;
1349 struct gfar_private *priv = NULL;
1350 int err = 0, i;
1351
1352 err = gfar_of_init(ofdev, &dev);
1353
1354 if (err)
1355 return err;
1356
1357 priv = netdev_priv(dev);
1358 priv->ndev = dev;
1359 priv->ofdev = ofdev;
1360 priv->dev = &ofdev->dev;
1361 SET_NETDEV_DEV(dev, &ofdev->dev);
1362
1363 spin_lock_init(&priv->bflock);
1364 INIT_WORK(&priv->reset_task, gfar_reset_task);
1365
1366 platform_set_drvdata(ofdev, priv);
1367
1368 gfar_detect_errata(priv);
1369
Claudiu Manoil20862782014-02-17 12:53:14 +02001370 /* Set the dev->base_addr to the gfar reg region */
1371 dev->base_addr = (unsigned long) priv->gfargrp[0].regs;
1372
1373 /* Fill in the dev structure */
1374 dev->watchdog_timeo = TX_TIMEOUT;
1375 dev->mtu = 1500;
1376 dev->netdev_ops = &gfar_netdev_ops;
1377 dev->ethtool_ops = &gfar_ethtool_ops;
1378
1379 /* Register for napi ...We are registering NAPI for each grp */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02001380 for (i = 0; i < priv->num_grps; i++) {
1381 if (priv->poll_mode == GFAR_SQ_POLLING) {
1382 netif_napi_add(dev, &priv->gfargrp[i].napi_rx,
1383 gfar_poll_rx_sq, GFAR_DEV_WEIGHT);
1384 netif_napi_add(dev, &priv->gfargrp[i].napi_tx,
1385 gfar_poll_tx_sq, 2);
1386 } else {
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02001387 netif_napi_add(dev, &priv->gfargrp[i].napi_rx,
1388 gfar_poll_rx, GFAR_DEV_WEIGHT);
1389 netif_napi_add(dev, &priv->gfargrp[i].napi_tx,
1390 gfar_poll_tx, 2);
1391 }
1392 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001393
1394 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
1395 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
1396 NETIF_F_RXCSUM;
1397 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG |
1398 NETIF_F_RXCSUM | NETIF_F_HIGHDMA;
1399 }
1400
1401 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) {
1402 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX |
1403 NETIF_F_HW_VLAN_CTAG_RX;
1404 dev->features |= NETIF_F_HW_VLAN_CTAG_RX;
1405 }
1406
Claudiu Manoil3d23a052015-05-06 18:07:30 +03001407 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1408
Claudiu Manoil20862782014-02-17 12:53:14 +02001409 gfar_init_addr_hash_table(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001410
Claudiu Manoil532c37b2014-02-17 12:53:16 +02001411 /* Insert receive time stamps into padding alignment bytes */
1412 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
1413 priv->padding = 8;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001414
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001415 if (dev->features & NETIF_F_IP_CSUM ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001416 priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
Wu Jiajun-B06378bee9e582012-05-21 23:00:48 +00001417 dev->needed_headroom = GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001421 /* Initializing some of the rx/tx queue level parameters */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001422 for (i = 0; i < priv->num_tx_queues; i++) {
1423 priv->tx_queue[i]->tx_ring_size = DEFAULT_TX_RING_SIZE;
1424 priv->tx_queue[i]->num_txbdfree = DEFAULT_TX_RING_SIZE;
1425 priv->tx_queue[i]->txcoalescing = DEFAULT_TX_COALESCE;
1426 priv->tx_queue[i]->txic = DEFAULT_TXIC;
1427 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001428
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001429 for (i = 0; i < priv->num_rx_queues; i++) {
1430 priv->rx_queue[i]->rx_ring_size = DEFAULT_RX_RING_SIZE;
1431 priv->rx_queue[i]->rxcoalescing = DEFAULT_RX_COALESCE;
1432 priv->rx_queue[i]->rxic = DEFAULT_RXIC;
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Jan Ceuleers0977f812012-06-05 03:42:12 +00001435 /* always enable rx filer */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001436 priv->rx_filer_enable = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001437 /* Enable most messages by default */
1438 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +00001439 /* use pritority h/w tx queue scheduling for single queue devices */
1440 if (priv->num_tx_queues == 1)
1441 priv->prio_sched_en = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001442
Claudiu Manoil08511332014-02-24 12:13:45 +02001443 set_bit(GFAR_DOWN, &priv->state);
1444
Claudiu Manoila328ac92014-02-24 12:13:42 +02001445 gfar_hw_init(priv);
Trent Piephod3eab822008-10-02 11:12:24 +00001446
Fabio Estevamd4c642e2014-06-03 19:55:38 -03001447 /* Carrier starts down, phylib will bring it up */
1448 netif_carrier_off(dev);
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 err = register_netdev(dev);
1451
1452 if (err) {
Joe Perches59deab22011-06-14 08:57:47 +00001453 pr_err("%s: Cannot register net device, aborting\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 goto register_fail;
1455 }
1456
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001457 device_init_wakeup(&dev->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001458 priv->device_flags &
1459 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001460
Dai Harukic50a5d92008-12-17 16:51:32 -08001461 /* fill out IRQ number and name fields */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001462 for (i = 0; i < priv->num_grps; i++) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001463 struct gfar_priv_grp *grp = &priv->gfargrp[i];
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001464 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001465 sprintf(gfar_irq(grp, TX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001466 dev->name, "_g", '0' + i, "_tx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001467 sprintf(gfar_irq(grp, RX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001468 dev->name, "_g", '0' + i, "_rx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001469 sprintf(gfar_irq(grp, ER)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001470 dev->name, "_g", '0' + i, "_er");
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001471 } else
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001472 strcpy(gfar_irq(grp, TX)->name, dev->name);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001473 }
Dai Harukic50a5d92008-12-17 16:51:32 -08001474
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001475 /* Initialize the filer table */
1476 gfar_init_filer_table(priv);
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 /* Print out the device info */
Joe Perches59deab22011-06-14 08:57:47 +00001479 netdev_info(dev, "mac: %pM\n", dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Jan Ceuleers0977f812012-06-05 03:42:12 +00001481 /* Even more device info helps when determining which kernel
1482 * provided which set of benchmarks.
1483 */
Joe Perches59deab22011-06-14 08:57:47 +00001484 netdev_info(dev, "Running with NAPI enabled\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001485 for (i = 0; i < priv->num_rx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001486 netdev_info(dev, "RX BD ring size for Q[%d]: %d\n",
1487 i, priv->rx_queue[i]->rx_ring_size);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001488 for (i = 0; i < priv->num_tx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001489 netdev_info(dev, "TX BD ring size for Q[%d]: %d\n",
1490 i, priv->tx_queue[i]->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 return 0;
1493
1494register_fail:
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001495 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001496 gfar_free_rx_queues(priv);
1497 gfar_free_tx_queues(priv);
Uwe Kleine-König888c88b2014-08-07 21:20:12 +02001498 of_node_put(priv->phy_node);
1499 of_node_put(priv->tbi_node);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001500 free_gfar_dev(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001501 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Grant Likely2dc11582010-08-06 09:25:50 -06001504static int gfar_remove(struct platform_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Jingoo Han8513fbd2013-05-23 00:52:31 +00001506 struct gfar_private *priv = platform_get_drvdata(ofdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Uwe Kleine-König888c88b2014-08-07 21:20:12 +02001508 of_node_put(priv->phy_node);
1509 of_node_put(priv->tbi_node);
Grant Likelyfe192a42009-04-25 12:53:12 +00001510
David S. Millerd9d8e042009-09-06 01:41:02 -07001511 unregister_netdev(priv->ndev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001512 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001513 gfar_free_rx_queues(priv);
1514 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001515 free_gfar_dev(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 return 0;
1518}
1519
Scott Woodd87eb122008-07-11 18:04:45 -05001520#ifdef CONFIG_PM
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001521
1522static int gfar_suspend(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001523{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001524 struct gfar_private *priv = dev_get_drvdata(dev);
1525 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001526 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001527 u32 tempval;
Scott Woodd87eb122008-07-11 18:04:45 -05001528 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001529 (priv->device_flags &
1530 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001531
Claudiu Manoil614b4242015-07-31 18:38:32 +03001532 if (!netif_running(ndev))
1533 return 0;
1534
1535 disable_napi(priv);
1536 netif_tx_lock(ndev);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001537 netif_device_detach(ndev);
Claudiu Manoil614b4242015-07-31 18:38:32 +03001538 netif_tx_unlock(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001539
Claudiu Manoil614b4242015-07-31 18:38:32 +03001540 gfar_halt(priv);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001541
Claudiu Manoil614b4242015-07-31 18:38:32 +03001542 if (magic_packet) {
1543 /* Enable interrupt on Magic Packet */
1544 gfar_write(&regs->imask, IMASK_MAG);
Scott Woodd87eb122008-07-11 18:04:45 -05001545
Claudiu Manoil614b4242015-07-31 18:38:32 +03001546 /* Enable Magic Packet mode */
1547 tempval = gfar_read(&regs->maccfg2);
1548 tempval |= MACCFG2_MPEN;
1549 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001550
Claudiu Manoil614b4242015-07-31 18:38:32 +03001551 /* re-enable the Rx block */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001552 tempval = gfar_read(&regs->maccfg1);
Claudiu Manoil614b4242015-07-31 18:38:32 +03001553 tempval |= MACCFG1_RX_EN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001554 gfar_write(&regs->maccfg1, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001555
Claudiu Manoil614b4242015-07-31 18:38:32 +03001556 } else {
1557 phy_stop(priv->phydev);
Scott Woodd87eb122008-07-11 18:04:45 -05001558 }
1559
1560 return 0;
1561}
1562
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001563static int gfar_resume(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001564{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001565 struct gfar_private *priv = dev_get_drvdata(dev);
1566 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001567 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001568 u32 tempval;
1569 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001570 (priv->device_flags &
1571 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001572
Claudiu Manoil614b4242015-07-31 18:38:32 +03001573 if (!netif_running(ndev))
Scott Woodd87eb122008-07-11 18:04:45 -05001574 return 0;
Scott Woodd87eb122008-07-11 18:04:45 -05001575
Claudiu Manoil614b4242015-07-31 18:38:32 +03001576 if (magic_packet) {
1577 /* Disable Magic Packet mode */
1578 tempval = gfar_read(&regs->maccfg2);
1579 tempval &= ~MACCFG2_MPEN;
1580 gfar_write(&regs->maccfg2, tempval);
1581 } else {
Scott Woodd87eb122008-07-11 18:04:45 -05001582 phy_start(priv->phydev);
Claudiu Manoil614b4242015-07-31 18:38:32 +03001583 }
Scott Woodd87eb122008-07-11 18:04:45 -05001584
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001585 gfar_start(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001586
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001587 netif_device_attach(ndev);
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 Manoil1eb8f7a2012-11-08 22:11:41 +00001604 if (gfar_init_bds(ndev)) {
1605 free_skb_resources(priv);
1606 return -ENOMEM;
1607 }
1608
Claudiu Manoila328ac92014-02-24 12:13:42 +02001609 gfar_mac_reset(priv);
1610
1611 gfar_init_tx_rx_base(priv);
1612
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001613 gfar_start(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001614
1615 priv->oldlink = 0;
1616 priv->oldspeed = 0;
1617 priv->oldduplex = -1;
1618
1619 if (priv->phydev)
1620 phy_start(priv->phydev);
1621
1622 netif_device_attach(ndev);
Anton Vorontsov5ea681d2009-11-10 14:11:05 +00001623 enable_napi(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001624
1625 return 0;
1626}
1627
1628static struct dev_pm_ops gfar_pm_ops = {
1629 .suspend = gfar_suspend,
1630 .resume = gfar_resume,
1631 .freeze = gfar_suspend,
1632 .thaw = gfar_resume,
1633 .restore = gfar_restore,
1634};
1635
1636#define GFAR_PM_OPS (&gfar_pm_ops)
1637
Scott Woodd87eb122008-07-11 18:04:45 -05001638#else
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001639
1640#define GFAR_PM_OPS NULL
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001641
Scott Woodd87eb122008-07-11 18:04:45 -05001642#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001644/* Reads the controller's registers to determine what interface
1645 * connects it to the PHY.
1646 */
1647static phy_interface_t gfar_get_interface(struct net_device *dev)
1648{
1649 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001650 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001651 u32 ecntrl;
1652
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001653 ecntrl = gfar_read(&regs->ecntrl);
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001654
1655 if (ecntrl & ECNTRL_SGMII_MODE)
1656 return PHY_INTERFACE_MODE_SGMII;
1657
1658 if (ecntrl & ECNTRL_TBI_MODE) {
1659 if (ecntrl & ECNTRL_REDUCED_MODE)
1660 return PHY_INTERFACE_MODE_RTBI;
1661 else
1662 return PHY_INTERFACE_MODE_TBI;
1663 }
1664
1665 if (ecntrl & ECNTRL_REDUCED_MODE) {
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001666 if (ecntrl & ECNTRL_REDUCED_MII_MODE) {
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001667 return PHY_INTERFACE_MODE_RMII;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001668 }
Andy Fleming7132ab72007-07-11 11:43:07 -05001669 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -08001670 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -05001671
Jan Ceuleers0977f812012-06-05 03:42:12 +00001672 /* This isn't autodetected right now, so it must
Andy Fleming7132ab72007-07-11 11:43:07 -05001673 * be set by the device tree or platform code.
1674 */
1675 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
1676 return PHY_INTERFACE_MODE_RGMII_ID;
1677
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001678 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -05001679 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001680 }
1681
Andy Flemingb31a1d82008-12-16 15:29:15 -08001682 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001683 return PHY_INTERFACE_MODE_GMII;
1684
1685 return PHY_INTERFACE_MODE_MII;
1686}
1687
1688
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001689/* Initializes driver's PHY state, and attaches to the PHY.
1690 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 */
1692static int init_phy(struct net_device *dev)
1693{
1694 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001695 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -08001696 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001697 GFAR_SUPPORTED_GBIT : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001698 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 priv->oldlink = 0;
1701 priv->oldspeed = 0;
1702 priv->oldduplex = -1;
1703
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001704 interface = gfar_get_interface(dev);
1705
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001706 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
1707 interface);
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001708 if (!priv->phydev) {
1709 dev_err(&dev->dev, "could not attach to PHY\n");
1710 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +00001711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Kapil Junejad3c12872007-05-11 18:25:11 -05001713 if (interface == PHY_INTERFACE_MODE_SGMII)
1714 gfar_configure_serdes(dev);
1715
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001716 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +00001717 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
1718 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Pavaluca Matei-B46610cf987af2014-10-27 10:42:42 +02001720 /* Add support for flow control, but don't advertise it by default */
1721 priv->phydev->supported |= (SUPPORTED_Pause | SUPPORTED_Asym_Pause);
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
Jan Ceuleers0977f812012-06-05 03:42:12 +00001726/* Initialize TBI PHY interface for communicating with the
Paul Gortmakerd0313582008-04-17 00:08:10 -04001727 * SERDES lynx PHY on the chip. We communicate with this PHY
1728 * through the MDIO bus on each controller, treating it as a
1729 * "normal" PHY at the address found in the TBIPA register. We assume
1730 * that the TBIPA register is valid. Either the MDIO bus code will set
1731 * it to a value that doesn't conflict with other PHYs on the bus, or the
1732 * value doesn't matter, as there are no other PHYs on the bus.
1733 */
Kapil Junejad3c12872007-05-11 18:25:11 -05001734static void gfar_configure_serdes(struct net_device *dev)
1735{
1736 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +00001737 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -07001738
Grant Likelyfe192a42009-04-25 12:53:12 +00001739 if (!priv->tbi_node) {
1740 dev_warn(&dev->dev, "error: SGMII mode requires that the "
1741 "device tree specify a tbi-handle\n");
1742 return;
1743 }
1744
1745 tbiphy = of_phy_find_device(priv->tbi_node);
1746 if (!tbiphy) {
1747 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -08001748 return;
1749 }
Kapil Junejad3c12872007-05-11 18:25:11 -05001750
Jan Ceuleers0977f812012-06-05 03:42:12 +00001751 /* If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -07001752 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1753 * everything for us? Resetting it takes the link down and requires
1754 * several seconds for it to come back.
1755 */
Grant Likelyfe192a42009-04-25 12:53:12 +00001756 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -08001757 return;
Kapil Junejad3c12872007-05-11 18:25:11 -05001758
Paul Gortmakerd0313582008-04-17 00:08:10 -04001759 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +00001760 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -05001761
Grant Likelyfe192a42009-04-25 12:53:12 +00001762 phy_write(tbiphy, MII_ADVERTISE,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001763 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1764 ADVERTISE_1000XPSE_ASYM);
Kapil Junejad3c12872007-05-11 18:25:11 -05001765
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001766 phy_write(tbiphy, MII_BMCR,
1767 BMCR_ANENABLE | BMCR_ANRESTART | BMCR_FULLDPLX |
1768 BMCR_SPEED1000);
Kapil Junejad3c12872007-05-11 18:25:11 -05001769}
1770
Anton Vorontsov511d9342010-06-30 06:39:15 +00001771static int __gfar_is_rx_idle(struct gfar_private *priv)
1772{
1773 u32 res;
1774
Jan Ceuleers0977f812012-06-05 03:42:12 +00001775 /* Normaly TSEC should not hang on GRS commands, so we should
Anton Vorontsov511d9342010-06-30 06:39:15 +00001776 * actually wait for IEVENT_GRSC flag.
1777 */
Claudiu Manoilad3660c2013-10-09 20:20:40 +03001778 if (!gfar_has_errata(priv, GFAR_ERRATA_A002))
Anton Vorontsov511d9342010-06-30 06:39:15 +00001779 return 0;
1780
Jan Ceuleers0977f812012-06-05 03:42:12 +00001781 /* Read the eTSEC register at offset 0xD1C. If bits 7-14 are
Anton Vorontsov511d9342010-06-30 06:39:15 +00001782 * the same as bits 23-30, the eTSEC Rx is assumed to be idle
1783 * and the Rx can be safely reset.
1784 */
1785 res = gfar_read((void __iomem *)priv->gfargrp[0].regs + 0xd1c);
1786 res &= 0x7f807f80;
1787 if ((res & 0xffff) == (res >> 16))
1788 return 1;
1789
1790 return 0;
1791}
Kumar Gala0bbaf062005-06-20 10:54:21 -05001792
1793/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001794static void gfar_halt_nodisable(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001796 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 u32 tempval;
Claudiu Manoila4feee82014-10-07 10:44:34 +03001798 unsigned int timeout;
1799 int stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001801 gfar_ints_disable(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Claudiu Manoila4feee82014-10-07 10:44:34 +03001803 if (gfar_is_dma_stopped(priv))
1804 return;
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /* Stop the DMA, and wait for it to stop */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001807 tempval = gfar_read(&regs->dmactrl);
Claudiu Manoila4feee82014-10-07 10:44:34 +03001808 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
1809 gfar_write(&regs->dmactrl, tempval);
Anton Vorontsov511d9342010-06-30 06:39:15 +00001810
Claudiu Manoila4feee82014-10-07 10:44:34 +03001811retry:
1812 timeout = 1000;
1813 while (!(stopped = gfar_is_dma_stopped(priv)) && timeout) {
1814 cpu_relax();
1815 timeout--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
Claudiu Manoila4feee82014-10-07 10:44:34 +03001817
1818 if (!timeout)
1819 stopped = gfar_is_dma_stopped(priv);
1820
1821 if (!stopped && !gfar_is_rx_dma_stopped(priv) &&
1822 !__gfar_is_rx_idle(priv))
1823 goto retry;
Scott Woodd87eb122008-07-11 18:04:45 -05001824}
Scott Woodd87eb122008-07-11 18:04:45 -05001825
1826/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001827void gfar_halt(struct gfar_private *priv)
Scott Woodd87eb122008-07-11 18:04:45 -05001828{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001829 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001830 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001832 /* Dissable the Rx/Tx hw queues */
1833 gfar_write(&regs->rqueue, 0);
1834 gfar_write(&regs->tqueue, 0);
Scott Wood2a54adc2008-08-12 15:10:46 -05001835
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001836 mdelay(10);
1837
1838 gfar_halt_nodisable(priv);
1839
1840 /* Disable Rx/Tx DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 tempval = gfar_read(&regs->maccfg1);
1842 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
1843 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001844}
1845
1846void stop_gfar(struct net_device *dev)
1847{
1848 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001849
Claudiu Manoil08511332014-02-24 12:13:45 +02001850 netif_tx_stop_all_queues(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001851
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001852 smp_mb__before_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02001853 set_bit(GFAR_DOWN, &priv->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001854 smp_mb__after_atomic();
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001855
Claudiu Manoil08511332014-02-24 12:13:45 +02001856 disable_napi(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001857
Claudiu Manoil08511332014-02-24 12:13:45 +02001858 /* disable ints and gracefully shut down Rx/Tx DMA */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001859 gfar_halt(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Claudiu Manoil08511332014-02-24 12:13:45 +02001861 phy_stop(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001866static void free_skb_tx_queue(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 struct txbd8 *txbdp;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001869 struct gfar_private *priv = netdev_priv(tx_queue->dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001870 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001872 txbdp = tx_queue->tx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001874 for (i = 0; i < tx_queue->tx_ring_size; i++) {
1875 if (!tx_queue->tx_skbuff[i])
Dai Haruki4669bc92008-12-17 16:51:04 -08001876 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Claudiu Manoila7312d52015-03-13 10:36:28 +02001878 dma_unmap_single(priv->dev, be32_to_cpu(txbdp->bufPtr),
1879 be16_to_cpu(txbdp->length), DMA_TO_DEVICE);
Dai Haruki4669bc92008-12-17 16:51:04 -08001880 txbdp->lstatus = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001881 for (j = 0; j < skb_shinfo(tx_queue->tx_skbuff[i])->nr_frags;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001882 j++) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001883 txbdp++;
Claudiu Manoila7312d52015-03-13 10:36:28 +02001884 dma_unmap_page(priv->dev, be32_to_cpu(txbdp->bufPtr),
1885 be16_to_cpu(txbdp->length),
1886 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
Andy Flemingad5da7a2008-05-07 13:20:55 -05001888 txbdp++;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001889 dev_kfree_skb_any(tx_queue->tx_skbuff[i]);
1890 tx_queue->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001892 kfree(tx_queue->tx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001893 tx_queue->tx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001894}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001896static void free_skb_rx_queue(struct gfar_priv_rx_q *rx_queue)
1897{
1898 struct rxbd8 *rxbdp;
1899 struct gfar_private *priv = netdev_priv(rx_queue->dev);
1900 int i;
1901
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001902 rxbdp = rx_queue->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001904 for (i = 0; i < rx_queue->rx_ring_size; i++) {
1905 if (rx_queue->rx_skbuff[i]) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02001906 dma_unmap_single(priv->dev, be32_to_cpu(rxbdp->bufPtr),
Claudiu Manoil369ec162013-02-14 05:00:02 +00001907 priv->rx_buffer_size,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001908 DMA_FROM_DEVICE);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001909 dev_kfree_skb_any(rx_queue->rx_skbuff[i]);
1910 rx_queue->rx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
Anton Vorontsove69edd22009-10-12 06:00:30 +00001912 rxbdp->lstatus = 0;
1913 rxbdp->bufPtr = 0;
1914 rxbdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001916 kfree(rx_queue->rx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001917 rx_queue->rx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001918}
Anton Vorontsove69edd22009-10-12 06:00:30 +00001919
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001920/* If there are any tx skbs or rx skbs still around, free them.
Jan Ceuleers0977f812012-06-05 03:42:12 +00001921 * Then free tx_skbuff and rx_skbuff
1922 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001923static void free_skb_resources(struct gfar_private *priv)
1924{
1925 struct gfar_priv_tx_q *tx_queue = NULL;
1926 struct gfar_priv_rx_q *rx_queue = NULL;
1927 int i;
1928
1929 /* Go through all the buffer descriptors and free their data buffers */
1930 for (i = 0; i < priv->num_tx_queues; i++) {
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001931 struct netdev_queue *txq;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001932
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001933 tx_queue = priv->tx_queue[i];
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001934 txq = netdev_get_tx_queue(tx_queue->dev, tx_queue->qindex);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001935 if (tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001936 free_skb_tx_queue(tx_queue);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001937 netdev_tx_reset_queue(txq);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001938 }
1939
1940 for (i = 0; i < priv->num_rx_queues; i++) {
1941 rx_queue = priv->rx_queue[i];
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001942 if (rx_queue->rx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001943 free_skb_rx_queue(rx_queue);
1944 }
1945
Claudiu Manoil369ec162013-02-14 05:00:02 +00001946 dma_free_coherent(priv->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001947 sizeof(struct txbd8) * priv->total_tx_ring_size +
1948 sizeof(struct rxbd8) * priv->total_rx_ring_size,
1949 priv->tx_queue[0]->tx_bd_base,
1950 priv->tx_queue[0]->tx_bd_dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001953void gfar_start(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001954{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001955 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001956 u32 tempval;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001957 int i = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001958
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001959 /* Enable Rx/Tx hw queues */
1960 gfar_write(&regs->rqueue, priv->rqueue);
1961 gfar_write(&regs->tqueue, priv->tqueue);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001962
1963 /* Initialize DMACTRL to have WWR and WOP */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001964 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001965 tempval |= DMACTRL_INIT_SETTINGS;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001966 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001967
Kumar Gala0bbaf062005-06-20 10:54:21 -05001968 /* Make sure we aren't stopped */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001969 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001970 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001971 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001972
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001973 for (i = 0; i < priv->num_grps; i++) {
1974 regs = priv->gfargrp[i].regs;
1975 /* Clear THLT/RHLT, so that the DMA starts polling now */
1976 gfar_write(&regs->tstat, priv->gfargrp[i].tstat);
1977 gfar_write(&regs->rstat, priv->gfargrp[i].rstat);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001978 }
Dai Haruki12dea572008-12-16 15:30:20 -08001979
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001980 /* Enable Rx/Tx DMA */
1981 tempval = gfar_read(&regs->maccfg1);
1982 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
1983 gfar_write(&regs->maccfg1, tempval);
1984
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001985 gfar_ints_enable(priv);
1986
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001987 priv->ndev->trans_start = jiffies; /* prevent tx timeout */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001988}
1989
Claudiu Manoil80ec3962014-02-24 12:13:44 +02001990static void free_grp_irqs(struct gfar_priv_grp *grp)
1991{
1992 free_irq(gfar_irq(grp, TX)->irq, grp);
1993 free_irq(gfar_irq(grp, RX)->irq, grp);
1994 free_irq(gfar_irq(grp, ER)->irq, grp);
1995}
1996
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001997static int register_grp_irqs(struct gfar_priv_grp *grp)
1998{
1999 struct gfar_private *priv = grp->priv;
2000 struct net_device *dev = priv->ndev;
Anton Vorontsovccc05c62009-10-12 06:00:26 +00002001 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /* If the device has multiple interrupts, register for
Jan Ceuleers0977f812012-06-05 03:42:12 +00002004 * them. Otherwise, only register for the one
2005 */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002006 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002007 /* Install our interrupt handlers for Error,
Jan Ceuleers0977f812012-06-05 03:42:12 +00002008 * Transmit, and Receive
2009 */
Claudiu Manoil614b4242015-07-31 18:38:32 +03002010 err = request_irq(gfar_irq(grp, ER)->irq, gfar_error,
2011 IRQF_NO_SUSPEND,
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002012 gfar_irq(grp, ER)->name, grp);
2013 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002014 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002015 gfar_irq(grp, ER)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002016
Julia Lawall2145f1a2010-08-05 10:26:20 +00002017 goto err_irq_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002019 err = request_irq(gfar_irq(grp, TX)->irq, gfar_transmit, 0,
2020 gfar_irq(grp, TX)->name, grp);
2021 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002022 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002023 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto tx_irq_fail;
2025 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002026 err = request_irq(gfar_irq(grp, RX)->irq, gfar_receive, 0,
2027 gfar_irq(grp, RX)->name, grp);
2028 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002029 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002030 gfar_irq(grp, RX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 goto rx_irq_fail;
2032 }
2033 } else {
Claudiu Manoil614b4242015-07-31 18:38:32 +03002034 err = request_irq(gfar_irq(grp, TX)->irq, gfar_interrupt,
2035 IRQF_NO_SUSPEND,
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002036 gfar_irq(grp, TX)->name, grp);
2037 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002038 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002039 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 goto err_irq_fail;
2041 }
2042 }
2043
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002044 return 0;
2045
2046rx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002047 free_irq(gfar_irq(grp, TX)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002048tx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002049 free_irq(gfar_irq(grp, ER)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002050err_irq_fail:
2051 return err;
2052
2053}
2054
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002055static void gfar_free_irq(struct gfar_private *priv)
2056{
2057 int i;
2058
2059 /* Free the IRQs */
2060 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
2061 for (i = 0; i < priv->num_grps; i++)
2062 free_grp_irqs(&priv->gfargrp[i]);
2063 } else {
2064 for (i = 0; i < priv->num_grps; i++)
2065 free_irq(gfar_irq(&priv->gfargrp[i], TX)->irq,
2066 &priv->gfargrp[i]);
2067 }
2068}
2069
2070static int gfar_request_irq(struct gfar_private *priv)
2071{
2072 int err, i, j;
2073
2074 for (i = 0; i < priv->num_grps; i++) {
2075 err = register_grp_irqs(&priv->gfargrp[i]);
2076 if (err) {
2077 for (j = 0; j < i; j++)
2078 free_grp_irqs(&priv->gfargrp[j]);
2079 return err;
2080 }
2081 }
2082
2083 return 0;
2084}
2085
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002086/* Bring the controller up and running */
2087int startup_gfar(struct net_device *ndev)
2088{
2089 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002090 int err;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002091
Claudiu Manoila328ac92014-02-24 12:13:42 +02002092 gfar_mac_reset(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002093
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002094 err = gfar_alloc_skb_resources(ndev);
2095 if (err)
2096 return err;
2097
Claudiu Manoila328ac92014-02-24 12:13:42 +02002098 gfar_init_tx_rx_base(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002099
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002100 smp_mb__before_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02002101 clear_bit(GFAR_DOWN, &priv->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002102 smp_mb__after_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02002103
2104 /* Start Rx/Tx DMA and enable the interrupts */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02002105 gfar_start(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00002107 phy_start(priv->phydev);
2108
Claudiu Manoil08511332014-02-24 12:13:45 +02002109 enable_napi(priv);
2110
2111 netif_tx_wake_all_queues(ndev);
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
Jan Ceuleers0977f812012-06-05 03:42:12 +00002116/* Called when something needs to use the ethernet device
2117 * Returns 0 for success.
2118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119static int gfar_enet_open(struct net_device *dev)
2120{
Li Yang94e8cc32007-10-12 21:53:51 +08002121 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 int err;
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 err = init_phy(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002125 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return err;
2127
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002128 err = gfar_request_irq(priv);
2129 if (err)
2130 return err;
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 err = startup_gfar(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002133 if (err)
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04002134 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08002136 device_set_wakeup_enable(&dev->dev, priv->wol_en);
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return err;
2139}
2140
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002141static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002142{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002143 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07002144
2145 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002146
Kumar Gala0bbaf062005-06-20 10:54:21 -05002147 return fcb;
2148}
2149
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002150static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002151 int fcb_length)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002152{
Kumar Gala0bbaf062005-06-20 10:54:21 -05002153 /* If we're here, it's a IP packet with a TCP or UDP
2154 * payload. We set it to checksum, using a pseudo-header
2155 * we provide
2156 */
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00002157 u8 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002158
Jan Ceuleers0977f812012-06-05 03:42:12 +00002159 /* Tell the controller what the protocol is
2160 * And provide the already calculated phcs
2161 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002162 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002163 flags |= TXFCB_UDP;
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002164 fcb->phcs = (__force __be16)(udp_hdr(skb)->check);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002165 } else
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002166 fcb->phcs = (__force __be16)(tcp_hdr(skb)->check);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002167
2168 /* l3os is the distance between the start of the
2169 * frame (skb->data) and the start of the IP hdr.
2170 * l4os is the distance between the start of the
Jan Ceuleers0977f812012-06-05 03:42:12 +00002171 * l3 hdr and the l4 hdr
2172 */
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002173 fcb->l3os = (u8)(skb_network_offset(skb) - fcb_length);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03002174 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002175
Andy Fleming7f7f5312005-11-11 12:38:59 -06002176 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002177}
2178
Andy Fleming7f7f5312005-11-11 12:38:59 -06002179void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002180{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002181 fcb->flags |= TXFCB_VLN;
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002182 fcb->vlctl = cpu_to_be16(skb_vlan_tag_get(skb));
Kumar Gala0bbaf062005-06-20 10:54:21 -05002183}
2184
Dai Haruki4669bc92008-12-17 16:51:04 -08002185static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002186 struct txbd8 *base, int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002187{
2188 struct txbd8 *new_bd = bdp + stride;
2189
2190 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
2191}
2192
2193static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002194 int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002195{
2196 return skip_txbd(bdp, 1, base, ring_size);
2197}
2198
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002199/* eTSEC12: csum generation not supported for some fcb offsets */
2200static inline bool gfar_csum_errata_12(struct gfar_private *priv,
2201 unsigned long fcb_addr)
2202{
2203 return (gfar_has_errata(priv, GFAR_ERRATA_12) &&
2204 (fcb_addr % 0x20) > 0x18);
2205}
2206
2207/* eTSEC76: csum generation for frames larger than 2500 may
2208 * cause excess delays before start of transmission
2209 */
2210static inline bool gfar_csum_errata_76(struct gfar_private *priv,
2211 unsigned int len)
2212{
2213 return (gfar_has_errata(priv, GFAR_ERRATA_76) &&
2214 (len > 2500));
2215}
2216
Jan Ceuleers0977f812012-06-05 03:42:12 +00002217/* This is called by the kernel when a frame is ready for transmission.
2218 * It is pointed to by the dev->hard_start_xmit function pointer
2219 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
2221{
2222 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002223 struct gfar_priv_tx_q *tx_queue = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002224 struct netdev_queue *txq;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002225 struct gfar __iomem *regs = NULL;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002226 struct txfcb *fcb = NULL;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002227 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL;
Dai Haruki5a5efed2008-12-16 15:34:50 -08002228 u32 lstatus;
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002229 int i, rq = 0;
2230 int do_tstamp, do_csum, do_vlan;
Dai Haruki4669bc92008-12-17 16:51:04 -08002231 u32 bufaddr;
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002232 unsigned int nr_frags, nr_txbds, bytes_sent, fcb_len = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002233
2234 rq = skb->queue_mapping;
2235 tx_queue = priv->tx_queue[rq];
2236 txq = netdev_get_tx_queue(dev, rq);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002237 base = tx_queue->tx_bd_base;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002238 regs = tx_queue->grp->regs;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002239
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002240 do_csum = (CHECKSUM_PARTIAL == skb->ip_summed);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002241 do_vlan = skb_vlan_tag_present(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002242 do_tstamp = (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
2243 priv->hwts_tx_en;
2244
2245 if (do_csum || do_vlan)
2246 fcb_len = GMAC_FCB_LEN;
2247
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002248 /* check if time stamp should be generated */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002249 if (unlikely(do_tstamp))
2250 fcb_len = GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Dai Haruki4669bc92008-12-17 16:51:04 -08002251
Li Yang5b28bea2009-03-27 15:54:30 -07002252 /* make space for additional header when fcb is needed */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002253 if (fcb_len && unlikely(skb_headroom(skb) < fcb_len)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002254 struct sk_buff *skb_new;
2255
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002256 skb_new = skb_realloc_headroom(skb, fcb_len);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002257 if (!skb_new) {
2258 dev->stats.tx_errors++;
Eric W. Biedermanc9974ad2014-03-11 14:20:26 -07002259 dev_kfree_skb_any(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002260 return NETDEV_TX_OK;
2261 }
Manfred Rudigierdb83d132012-01-09 23:26:50 +00002262
Eric Dumazet313b0372012-07-05 11:45:13 +00002263 if (skb->sk)
2264 skb_set_owner_w(skb_new, skb->sk);
Eric W. Biedermanc9974ad2014-03-11 14:20:26 -07002265 dev_consume_skb_any(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002266 skb = skb_new;
2267 }
2268
Dai Haruki4669bc92008-12-17 16:51:04 -08002269 /* total number of fragments in the SKB */
2270 nr_frags = skb_shinfo(skb)->nr_frags;
2271
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002272 /* calculate the required number of TxBDs for this skb */
2273 if (unlikely(do_tstamp))
2274 nr_txbds = nr_frags + 2;
2275 else
2276 nr_txbds = nr_frags + 1;
2277
Dai Haruki4669bc92008-12-17 16:51:04 -08002278 /* check if there is space to queue this packet */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002279 if (nr_txbds > tx_queue->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08002280 /* no space, stop the queue */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002281 netif_tx_stop_queue(txq);
Dai Haruki4669bc92008-12-17 16:51:04 -08002282 dev->stats.tx_fifo_errors++;
Dai Haruki4669bc92008-12-17 16:51:04 -08002283 return NETDEV_TX_BUSY;
2284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 /* Update transmit stats */
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002287 bytes_sent = skb->len;
2288 tx_queue->stats.tx_bytes += bytes_sent;
2289 /* keep Tx bytes on wire for BQL accounting */
2290 GFAR_CB(skb)->bytes_sent = bytes_sent;
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00002291 tx_queue->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002293 txbdp = txbdp_start = tx_queue->cur_tx;
Claudiu Manoila7312d52015-03-13 10:36:28 +02002294 lstatus = be32_to_cpu(txbdp->lstatus);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002295
2296 /* Time stamp insertion requires one additional TxBD */
2297 if (unlikely(do_tstamp))
2298 txbdp_tstamp = txbdp = next_txbd(txbdp, base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002299 tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Dai Haruki4669bc92008-12-17 16:51:04 -08002301 if (nr_frags == 0) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002302 if (unlikely(do_tstamp)) {
2303 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus);
2304
2305 lstatus_ts |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2306 txbdp_tstamp->lstatus = cpu_to_be32(lstatus_ts);
2307 } else {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002308 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002309 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002310 } else {
2311 /* Place the fragment addresses and lengths into the TxBDs */
2312 for (i = 0; i < nr_frags; i++) {
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002313 unsigned int frag_len;
Dai Haruki4669bc92008-12-17 16:51:04 -08002314 /* Point at the next BD, wrapping as needed */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002315 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002317 frag_len = skb_shinfo(skb)->frags[i].size;
Dai Haruki4669bc92008-12-17 16:51:04 -08002318
Claudiu Manoila7312d52015-03-13 10:36:28 +02002319 lstatus = be32_to_cpu(txbdp->lstatus) | frag_len |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002320 BD_LFLAG(TXBD_READY);
Dai Haruki4669bc92008-12-17 16:51:04 -08002321
2322 /* Handle the last BD specially */
2323 if (i == nr_frags - 1)
2324 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2325
Claudiu Manoil369ec162013-02-14 05:00:02 +00002326 bufaddr = skb_frag_dma_map(priv->dev,
Ian Campbell2234a722011-08-29 23:18:29 +00002327 &skb_shinfo(skb)->frags[i],
2328 0,
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002329 frag_len,
Ian Campbell2234a722011-08-29 23:18:29 +00002330 DMA_TO_DEVICE);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002331 if (unlikely(dma_mapping_error(priv->dev, bufaddr)))
2332 goto dma_map_err;
Dai Haruki4669bc92008-12-17 16:51:04 -08002333
2334 /* set the TxBD length and buffer pointer */
Claudiu Manoila7312d52015-03-13 10:36:28 +02002335 txbdp->bufPtr = cpu_to_be32(bufaddr);
2336 txbdp->lstatus = cpu_to_be32(lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002337 }
2338
Claudiu Manoila7312d52015-03-13 10:36:28 +02002339 lstatus = be32_to_cpu(txbdp_start->lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002342 /* Add TxPAL between FCB and frame if required */
2343 if (unlikely(do_tstamp)) {
2344 skb_push(skb, GMAC_TXPAL_LEN);
2345 memset(skb->data, 0, GMAC_TXPAL_LEN);
2346 }
2347
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002348 /* Add TxFCB if required */
2349 if (fcb_len) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002350 fcb = gfar_add_fcb(skb);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002351 lstatus |= BD_LFLAG(TXBD_TOE);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002352 }
2353
2354 /* Set up checksumming */
2355 if (do_csum) {
2356 gfar_tx_checksum(skb, fcb, fcb_len);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002357
2358 if (unlikely(gfar_csum_errata_12(priv, (unsigned long)fcb)) ||
2359 unlikely(gfar_csum_errata_76(priv, skb->len))) {
Alex Dubov4363c2f2011-03-16 17:57:13 +00002360 __skb_pull(skb, GMAC_FCB_LEN);
2361 skb_checksum_help(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002362 if (do_vlan || do_tstamp) {
2363 /* put back a new fcb for vlan/tstamp TOE */
2364 fcb = gfar_add_fcb(skb);
2365 } else {
2366 /* Tx TOE not used */
2367 lstatus &= ~(BD_LFLAG(TXBD_TOE));
2368 fcb = NULL;
2369 }
Alex Dubov4363c2f2011-03-16 17:57:13 +00002370 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002371 }
2372
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002373 if (do_vlan)
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002374 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002375
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002376 /* Setup tx hardware time stamping if requested */
2377 if (unlikely(do_tstamp)) {
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002378 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002379 fcb->ptp = 1;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002380 }
2381
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002382 bufaddr = dma_map_single(priv->dev, skb->data, skb_headlen(skb),
2383 DMA_TO_DEVICE);
2384 if (unlikely(dma_mapping_error(priv->dev, bufaddr)))
2385 goto dma_map_err;
2386
Claudiu Manoila7312d52015-03-13 10:36:28 +02002387 txbdp_start->bufPtr = cpu_to_be32(bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Jan Ceuleers0977f812012-06-05 03:42:12 +00002389 /* If time stamping is requested one additional TxBD must be set up. The
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002390 * first TxBD points to the FCB and must have a data length of
2391 * GMAC_FCB_LEN. The second TxBD points to the actual frame data with
2392 * the full frame length.
2393 */
2394 if (unlikely(do_tstamp)) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002395 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus);
2396
2397 bufaddr = be32_to_cpu(txbdp_start->bufPtr);
2398 bufaddr += fcb_len;
2399 lstatus_ts |= BD_LFLAG(TXBD_READY) |
2400 (skb_headlen(skb) - fcb_len);
2401
2402 txbdp_tstamp->bufPtr = cpu_to_be32(bufaddr);
2403 txbdp_tstamp->lstatus = cpu_to_be32(lstatus_ts);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002404 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | GMAC_FCB_LEN;
2405 } else {
2406 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
2407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002409 netdev_tx_sent_queue(txq, bytes_sent);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002410
Claudiu Manoild55398b2014-10-07 10:44:35 +03002411 gfar_wmb();
Andy Fleming7f7f5312005-11-11 12:38:59 -06002412
Claudiu Manoila7312d52015-03-13 10:36:28 +02002413 txbdp_start->lstatus = cpu_to_be32(lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002414
Claudiu Manoild55398b2014-10-07 10:44:35 +03002415 gfar_wmb(); /* force lstatus write before tx_skbuff */
Anton Vorontsov0eddba52010-03-03 08:18:58 +00002416
2417 tx_queue->tx_skbuff[tx_queue->skb_curtx] = skb;
2418
Dai Haruki4669bc92008-12-17 16:51:04 -08002419 /* Update the current skb pointer to the next entry we will use
Jan Ceuleers0977f812012-06-05 03:42:12 +00002420 * (wrapping if necessary)
2421 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002422 tx_queue->skb_curtx = (tx_queue->skb_curtx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002423 TX_RING_MOD_MASK(tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002424
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002425 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002426
Claudiu Manoilbc602282015-05-06 18:07:29 +03002427 /* We can work in parallel with gfar_clean_tx_ring(), except
2428 * when modifying num_txbdfree. Note that we didn't grab the lock
2429 * when we were reading the num_txbdfree and checking for available
2430 * space, that's because outside of this function it can only grow.
2431 */
2432 spin_lock_bh(&tx_queue->txlock);
Dai Haruki4669bc92008-12-17 16:51:04 -08002433 /* reduce TxBD free count */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002434 tx_queue->num_txbdfree -= (nr_txbds);
Claudiu Manoilbc602282015-05-06 18:07:29 +03002435 spin_unlock_bh(&tx_queue->txlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 /* If the next BD still needs to be cleaned up, then the bds
Jan Ceuleers0977f812012-06-05 03:42:12 +00002438 * are full. We need to tell the kernel to stop sending us stuff.
2439 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002440 if (!tx_queue->num_txbdfree) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002441 netif_tx_stop_queue(txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002443 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 }
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 /* Tell the DMA to go go go */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002447 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT >> tx_queue->qindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002449 return NETDEV_TX_OK;
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002450
2451dma_map_err:
2452 txbdp = next_txbd(txbdp_start, base, tx_queue->tx_ring_size);
2453 if (do_tstamp)
2454 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
2455 for (i = 0; i < nr_frags; i++) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002456 lstatus = be32_to_cpu(txbdp->lstatus);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002457 if (!(lstatus & BD_LFLAG(TXBD_READY)))
2458 break;
2459
Claudiu Manoila7312d52015-03-13 10:36:28 +02002460 lstatus &= ~BD_LFLAG(TXBD_READY);
2461 txbdp->lstatus = cpu_to_be32(lstatus);
2462 bufaddr = be32_to_cpu(txbdp->bufPtr);
2463 dma_unmap_page(priv->dev, bufaddr, be16_to_cpu(txbdp->length),
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002464 DMA_TO_DEVICE);
2465 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
2466 }
2467 gfar_wmb();
2468 dev_kfree_skb_any(skb);
2469 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
2472/* Stops the kernel queue, and halts the controller */
2473static int gfar_close(struct net_device *dev)
2474{
2475 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002476
Sebastian Siewiorab939902008-08-19 21:12:45 +02002477 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 stop_gfar(dev);
2479
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002480 /* Disconnect from the PHY */
2481 phy_disconnect(priv->phydev);
2482 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002484 gfar_free_irq(priv);
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 return 0;
2487}
2488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05002490static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002492 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 return 0;
2495}
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497static int gfar_change_mtu(struct net_device *dev, int new_mtu)
2498{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002500 int frame_size = new_mtu + ETH_HLEN;
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Joe Perches59deab22011-06-14 08:57:47 +00002503 netif_err(priv, drv, dev, "Invalid MTU setting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 return -EINVAL;
2505 }
2506
Claudiu Manoil08511332014-02-24 12:13:45 +02002507 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2508 cpu_relax();
2509
Claudiu Manoil88302642014-02-24 12:13:43 +02002510 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 stop_gfar(dev);
2512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 dev->mtu = new_mtu;
2514
Claudiu Manoil88302642014-02-24 12:13:43 +02002515 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 startup_gfar(dev);
2517
Claudiu Manoil08511332014-02-24 12:13:45 +02002518 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 return 0;
2521}
2522
Claudiu Manoil08511332014-02-24 12:13:45 +02002523void reset_gfar(struct net_device *ndev)
2524{
2525 struct gfar_private *priv = netdev_priv(ndev);
2526
2527 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2528 cpu_relax();
2529
2530 stop_gfar(ndev);
2531 startup_gfar(ndev);
2532
2533 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2534}
2535
Sebastian Siewiorab939902008-08-19 21:12:45 +02002536/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 * transmitted after a set amount of time.
2538 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02002539 * starting over will fix the problem.
2540 */
2541static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
Sebastian Siewiorab939902008-08-19 21:12:45 +02002543 struct gfar_private *priv = container_of(work, struct gfar_private,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002544 reset_task);
Claudiu Manoil08511332014-02-24 12:13:45 +02002545 reset_gfar(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
2547
Sebastian Siewiorab939902008-08-19 21:12:45 +02002548static void gfar_timeout(struct net_device *dev)
2549{
2550 struct gfar_private *priv = netdev_priv(dev);
2551
2552 dev->stats.tx_errors++;
2553 schedule_work(&priv->reset_task);
2554}
2555
Eran Libertyacbc0f02010-07-07 15:54:54 -07002556static void gfar_align_skb(struct sk_buff *skb)
2557{
2558 /* We need the data buffer to be aligned properly. We will reserve
2559 * as many bytes as needed to align the data properly
2560 */
2561 skb_reserve(skb, RXBUF_ALIGNMENT -
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002562 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1)));
Eran Libertyacbc0f02010-07-07 15:54:54 -07002563}
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565/* Interrupt Handler for Transmit complete */
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002566static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002568 struct net_device *dev = tx_queue->dev;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002569 struct netdev_queue *txq;
Dai Harukid080cd62008-04-09 19:37:51 -05002570 struct gfar_private *priv = netdev_priv(dev);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002571 struct txbd8 *bdp, *next = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002572 struct txbd8 *lbdp = NULL;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002573 struct txbd8 *base = tx_queue->tx_bd_base;
Dai Haruki4669bc92008-12-17 16:51:04 -08002574 struct sk_buff *skb;
2575 int skb_dirtytx;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002576 int tx_ring_size = tx_queue->tx_ring_size;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002577 int frags = 0, nr_txbds = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002578 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05002579 int howmany = 0;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002580 int tqi = tx_queue->qindex;
2581 unsigned int bytes_sent = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002582 u32 lstatus;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002583 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002585 txq = netdev_get_tx_queue(dev, tqi);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002586 bdp = tx_queue->dirty_tx;
2587 skb_dirtytx = tx_queue->skb_dirtytx;
Dai Haruki4669bc92008-12-17 16:51:04 -08002588
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002589 while ((skb = tx_queue->tx_skbuff[skb_dirtytx])) {
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002590
Dai Haruki4669bc92008-12-17 16:51:04 -08002591 frags = skb_shinfo(skb)->nr_frags;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002592
Jan Ceuleers0977f812012-06-05 03:42:12 +00002593 /* When time stamping, one additional TxBD must be freed.
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002594 * Also, we need to dma_unmap_single() the TxPAL.
2595 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002596 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS))
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002597 nr_txbds = frags + 2;
2598 else
2599 nr_txbds = frags + 1;
2600
2601 lbdp = skip_txbd(bdp, nr_txbds - 1, base, tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002602
Claudiu Manoila7312d52015-03-13 10:36:28 +02002603 lstatus = be32_to_cpu(lbdp->lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002604
2605 /* Only clean completed frames */
2606 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002607 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 break;
2609
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002610 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002611 next = next_txbd(bdp, base, tx_ring_size);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002612 buflen = be16_to_cpu(next->length) +
2613 GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002614 } else
Claudiu Manoila7312d52015-03-13 10:36:28 +02002615 buflen = be16_to_cpu(bdp->length);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002616
Claudiu Manoila7312d52015-03-13 10:36:28 +02002617 dma_unmap_single(priv->dev, be32_to_cpu(bdp->bufPtr),
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002618 buflen, DMA_TO_DEVICE);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002619
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002620 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002621 struct skb_shared_hwtstamps shhwtstamps;
2622 u64 *ns = (u64*) (((u32)skb->data + 0x10) & ~0x7);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002623
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002624 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
2625 shhwtstamps.hwtstamp = ns_to_ktime(*ns);
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002626 skb_pull(skb, GMAC_FCB_LEN + GMAC_TXPAL_LEN);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002627 skb_tstamp_tx(skb, &shhwtstamps);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002628 gfar_clear_txbd_status(bdp);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002629 bdp = next;
2630 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002631
Claudiu Manoila7312d52015-03-13 10:36:28 +02002632 gfar_clear_txbd_status(bdp);
Dai Haruki4669bc92008-12-17 16:51:04 -08002633 bdp = next_txbd(bdp, base, tx_ring_size);
2634
2635 for (i = 0; i < frags; i++) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002636 dma_unmap_page(priv->dev, be32_to_cpu(bdp->bufPtr),
2637 be16_to_cpu(bdp->length),
2638 DMA_TO_DEVICE);
2639 gfar_clear_txbd_status(bdp);
Dai Haruki4669bc92008-12-17 16:51:04 -08002640 bdp = next_txbd(bdp, base, tx_ring_size);
2641 }
2642
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002643 bytes_sent += GFAR_CB(skb)->bytes_sent;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002644
Eric Dumazetacb600d2012-10-05 06:23:55 +00002645 dev_kfree_skb_any(skb);
Andy Fleming0fd56bb2009-02-04 16:43:16 -08002646
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002647 tx_queue->tx_skbuff[skb_dirtytx] = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002648
2649 skb_dirtytx = (skb_dirtytx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002650 TX_RING_MOD_MASK(tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002651
Dai Harukid080cd62008-04-09 19:37:51 -05002652 howmany++;
Claudiu Manoilbc602282015-05-06 18:07:29 +03002653 spin_lock(&tx_queue->txlock);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002654 tx_queue->num_txbdfree += nr_txbds;
Claudiu Manoilbc602282015-05-06 18:07:29 +03002655 spin_unlock(&tx_queue->txlock);
Dai Haruki4669bc92008-12-17 16:51:04 -08002656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Dai Haruki4669bc92008-12-17 16:51:04 -08002658 /* If we freed a buffer, we can restart transmission, if necessary */
Claudiu Manoil08511332014-02-24 12:13:45 +02002659 if (tx_queue->num_txbdfree &&
2660 netif_tx_queue_stopped(txq) &&
2661 !(test_bit(GFAR_DOWN, &priv->state)))
2662 netif_wake_subqueue(priv->ndev, tqi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Dai Haruki4669bc92008-12-17 16:51:04 -08002664 /* Update dirty indicators */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002665 tx_queue->skb_dirtytx = skb_dirtytx;
2666 tx_queue->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002668 netdev_tx_completed_queue(txq, howmany, bytes_sent);
Dai Harukid080cd62008-04-09 19:37:51 -05002669}
2670
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002671static struct sk_buff *gfar_alloc_skb(struct net_device *dev)
Eran Libertyacbc0f02010-07-07 15:54:54 -07002672{
2673 struct gfar_private *priv = netdev_priv(dev);
Eric Dumazetacb600d2012-10-05 06:23:55 +00002674 struct sk_buff *skb;
Eran Libertyacbc0f02010-07-07 15:54:54 -07002675
2676 skb = netdev_alloc_skb(dev, priv->rx_buffer_size + RXBUF_ALIGNMENT);
2677 if (!skb)
2678 return NULL;
2679
2680 gfar_align_skb(skb);
2681
2682 return skb;
2683}
Andy Fleming815b97c2008-04-22 17:18:29 -05002684
Kevin Hao91c53f762014-12-24 14:05:44 +08002685static struct sk_buff *gfar_new_skb(struct net_device *dev, dma_addr_t *bufaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002687 struct gfar_private *priv = netdev_priv(dev);
2688 struct sk_buff *skb;
2689 dma_addr_t addr;
2690
2691 skb = gfar_alloc_skb(dev);
2692 if (!skb)
2693 return NULL;
2694
2695 addr = dma_map_single(priv->dev, skb->data,
2696 priv->rx_buffer_size, DMA_FROM_DEVICE);
2697 if (unlikely(dma_mapping_error(priv->dev, addr))) {
2698 dev_kfree_skb_any(skb);
2699 return NULL;
2700 }
2701
2702 *bufaddr = addr;
2703 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704}
2705
Li Yang298e1a92007-10-16 14:18:13 +08002706static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
Li Yang298e1a92007-10-16 14:18:13 +08002708 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002709 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 struct gfar_extra_stats *estats = &priv->extra_stats;
2711
Jan Ceuleers0977f812012-06-05 03:42:12 +00002712 /* If the packet was truncated, none of the other errors matter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 if (status & RXBD_TRUNCATED) {
2714 stats->rx_length_errors++;
2715
Paul Gortmaker212079d2013-02-12 15:38:19 -05002716 atomic64_inc(&estats->rx_trunc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 return;
2719 }
2720 /* Count the errors, if there were any */
2721 if (status & (RXBD_LARGE | RXBD_SHORT)) {
2722 stats->rx_length_errors++;
2723
2724 if (status & RXBD_LARGE)
Paul Gortmaker212079d2013-02-12 15:38:19 -05002725 atomic64_inc(&estats->rx_large);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 else
Paul Gortmaker212079d2013-02-12 15:38:19 -05002727 atomic64_inc(&estats->rx_short);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 }
2729 if (status & RXBD_NONOCTET) {
2730 stats->rx_frame_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002731 atomic64_inc(&estats->rx_nonoctet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 }
2733 if (status & RXBD_CRCERR) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002734 atomic64_inc(&estats->rx_crcerr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 stats->rx_crc_errors++;
2736 }
2737 if (status & RXBD_OVERRUN) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002738 atomic64_inc(&estats->rx_overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 stats->rx_crc_errors++;
2740 }
2741}
2742
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002743irqreturn_t gfar_receive(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002745 struct gfar_priv_grp *grp = (struct gfar_priv_grp *)grp_id;
2746 unsigned long flags;
2747 u32 imask;
2748
2749 if (likely(napi_schedule_prep(&grp->napi_rx))) {
2750 spin_lock_irqsave(&grp->grplock, flags);
2751 imask = gfar_read(&grp->regs->imask);
2752 imask &= IMASK_RX_DISABLED;
2753 gfar_write(&grp->regs->imask, imask);
2754 spin_unlock_irqrestore(&grp->grplock, flags);
2755 __napi_schedule(&grp->napi_rx);
2756 } else {
2757 /* Clear IEVENT, so interrupts aren't called again
2758 * because of the packets that have already arrived.
2759 */
2760 gfar_write(&grp->regs->ievent, IEVENT_RX_MASK);
2761 }
2762
2763 return IRQ_HANDLED;
2764}
2765
2766/* Interrupt Handler for Transmit complete */
2767static irqreturn_t gfar_transmit(int irq, void *grp_id)
2768{
2769 struct gfar_priv_grp *grp = (struct gfar_priv_grp *)grp_id;
2770 unsigned long flags;
2771 u32 imask;
2772
2773 if (likely(napi_schedule_prep(&grp->napi_tx))) {
2774 spin_lock_irqsave(&grp->grplock, flags);
2775 imask = gfar_read(&grp->regs->imask);
2776 imask &= IMASK_TX_DISABLED;
2777 gfar_write(&grp->regs->imask, imask);
2778 spin_unlock_irqrestore(&grp->grplock, flags);
2779 __napi_schedule(&grp->napi_tx);
2780 } else {
2781 /* Clear IEVENT, so interrupts aren't called again
2782 * because of the packets that have already arrived.
2783 */
2784 gfar_write(&grp->regs->ievent, IEVENT_TX_MASK);
2785 }
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 return IRQ_HANDLED;
2788}
2789
Kumar Gala0bbaf062005-06-20 10:54:21 -05002790static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
2791{
2792 /* If valid headers were found, and valid sums
2793 * were verified, then we tell the kernel that no
Jan Ceuleers0977f812012-06-05 03:42:12 +00002794 * checksumming is necessary. Otherwise, it is [FIXME]
2795 */
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002796 if ((be16_to_cpu(fcb->flags) & RXFCB_CSUM_MASK) ==
2797 (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05002798 skb->ip_summed = CHECKSUM_UNNECESSARY;
2799 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07002800 skb_checksum_none_assert(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002801}
2802
Jan Ceuleers0977f812012-06-05 03:42:12 +00002803/* gfar_process_frame() -- handle one incoming packet if skb isn't NULL. */
Claudiu Manoil61db26c2013-02-14 05:00:05 +00002804static void gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
2805 int amount_pull, struct napi_struct *napi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
2807 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002808 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Dai Haruki2c2db482008-12-16 15:31:15 -08002810 /* fcb is at the beginning if exists */
2811 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Jan Ceuleers0977f812012-06-05 03:42:12 +00002813 /* Remove the FCB from the skb
2814 * Remove the padded bytes, if there are any
2815 */
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002816 if (amount_pull) {
2817 skb_record_rx_queue(skb, fcb->rq);
Dai Haruki2c2db482008-12-16 15:31:15 -08002818 skb_pull(skb, amount_pull);
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002819 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002820
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002821 /* Get receive timestamp from the skb */
2822 if (priv->hwts_rx_en) {
2823 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
2824 u64 *ns = (u64 *) skb->data;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002825
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002826 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
2827 shhwtstamps->hwtstamp = ns_to_ktime(*ns);
2828 }
2829
2830 if (priv->padding)
2831 skb_pull(skb, priv->padding);
2832
Michał Mirosław8b3afe92011-04-15 04:50:50 +00002833 if (dev->features & NETIF_F_RXCSUM)
Dai Haruki2c2db482008-12-16 15:31:15 -08002834 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002835
Dai Haruki2c2db482008-12-16 15:31:15 -08002836 /* Tell the skb what kind of packet this is */
2837 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002838
Patrick McHardyf6469682013-04-19 02:04:27 +00002839 /* There's need to check for NETIF_F_HW_VLAN_CTAG_RX here.
David S. Miller823dcd22011-08-20 10:39:12 -07002840 * Even if vlan rx accel is disabled, on some chips
2841 * RXFCB_VLN is pseudo randomly set.
2842 */
Patrick McHardyf6469682013-04-19 02:04:27 +00002843 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX &&
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002844 be16_to_cpu(fcb->flags) & RXFCB_VLN)
2845 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
2846 be16_to_cpu(fcb->vlctl));
Jiri Pirko87c288c2011-07-20 04:54:19 +00002847
Dai Haruki2c2db482008-12-16 15:31:15 -08002848 /* Send the packet up the stack */
Claudiu Manoil953d2762013-03-21 03:12:15 +00002849 napi_gro_receive(napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
2853/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002854 * until the budget/quota has been reached. Returns the number
2855 * of frames handled
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002857int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002859 struct net_device *dev = rx_queue->dev;
Andy Fleming31de1982008-12-16 15:33:40 -08002860 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08002862 int pkt_len;
2863 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 int howmany = 0;
2865 struct gfar_private *priv = netdev_priv(dev);
2866
2867 /* Get the first full descriptor */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002868 bdp = rx_queue->cur_rx;
2869 base = rx_queue->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Claudiu Manoilba779712013-02-14 05:00:07 +00002871 amount_pull = priv->uses_rxfcb ? GMAC_FCB_LEN : 0;
Dai Haruki2c2db482008-12-16 15:31:15 -08002872
Claudiu Manoila7312d52015-03-13 10:36:28 +02002873 while (!(be16_to_cpu(bdp->status) & RXBD_EMPTY) && rx_work_limit--) {
Andy Fleming815b97c2008-04-22 17:18:29 -05002874 struct sk_buff *newskb;
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002875 dma_addr_t bufaddr;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002876
Scott Wood3b6330c2007-05-16 15:06:59 -05002877 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05002878
2879 /* Add another skb for the future */
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002880 newskb = gfar_new_skb(dev, &bufaddr);
Andy Fleming815b97c2008-04-22 17:18:29 -05002881
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002882 skb = rx_queue->rx_skbuff[rx_queue->skb_currx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Claudiu Manoila7312d52015-03-13 10:36:28 +02002884 dma_unmap_single(priv->dev, be32_to_cpu(bdp->bufPtr),
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002885 priv->rx_buffer_size, DMA_FROM_DEVICE);
Andy Fleming81183052008-11-12 10:07:11 -06002886
Claudiu Manoila7312d52015-03-13 10:36:28 +02002887 if (unlikely(!(be16_to_cpu(bdp->status) & RXBD_ERR) &&
2888 be16_to_cpu(bdp->length) > priv->rx_buffer_size))
2889 bdp->status = cpu_to_be16(RXBD_LARGE);
Anton Vorontsov63b88b92010-06-11 10:51:03 +00002890
Andy Fleming815b97c2008-04-22 17:18:29 -05002891 /* We drop the frame if we failed to allocate a new buffer */
Claudiu Manoila7312d52015-03-13 10:36:28 +02002892 if (unlikely(!newskb ||
2893 !(be16_to_cpu(bdp->status) & RXBD_LAST) ||
2894 be16_to_cpu(bdp->status) & RXBD_ERR)) {
2895 count_errors(be16_to_cpu(bdp->status), dev);
Andy Fleming815b97c2008-04-22 17:18:29 -05002896
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002897 if (unlikely(!newskb)) {
Andy Fleming815b97c2008-04-22 17:18:29 -05002898 newskb = skb;
Claudiu Manoila7312d52015-03-13 10:36:28 +02002899 bufaddr = be32_to_cpu(bdp->bufPtr);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002900 } else if (skb)
Eric Dumazetacb600d2012-10-05 06:23:55 +00002901 dev_kfree_skb(skb);
Andy Fleming815b97c2008-04-22 17:18:29 -05002902 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 /* Increment the number of packets */
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002904 rx_queue->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 howmany++;
2906
Dai Haruki2c2db482008-12-16 15:31:15 -08002907 if (likely(skb)) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002908 pkt_len = be16_to_cpu(bdp->length) -
2909 ETH_FCS_LEN;
Dai Haruki2c2db482008-12-16 15:31:15 -08002910 /* Remove the FCS from the packet length */
2911 skb_put(skb, pkt_len);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002912 rx_queue->stats.rx_bytes += pkt_len;
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002913 skb_record_rx_queue(skb, rx_queue->qindex);
Wu Jiajun-B06378cd754a52012-04-19 22:54:35 +00002914 gfar_process_frame(dev, skb, amount_pull,
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002915 &rx_queue->grp->napi_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Dai Haruki2c2db482008-12-16 15:31:15 -08002917 } else {
Joe Perches59deab22011-06-14 08:57:47 +00002918 netif_warn(priv, rx_err, dev, "Missing skb!\n");
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002919 rx_queue->stats.rx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002920 atomic64_inc(&priv->extra_stats.rx_skbmissing);
Dai Haruki2c2db482008-12-16 15:31:15 -08002921 }
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 }
2924
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002925 rx_queue->rx_skbuff[rx_queue->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Andy Fleming815b97c2008-04-22 17:18:29 -05002927 /* Setup the new bdp */
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002928 gfar_init_rxbdp(rx_queue, bdp, bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Matei Pavaluca45b679c92014-10-27 10:42:44 +02002930 /* Update Last Free RxBD pointer for LFC */
2931 if (unlikely(rx_queue->rfbptr && priv->tx_actual_en))
2932 gfar_write(rx_queue->rfbptr, (u32)bdp);
2933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 /* Update to the next pointer */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002935 bdp = next_bd(bdp, base, rx_queue->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
2937 /* update to point at the next skb */
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002938 rx_queue->skb_currx = (rx_queue->skb_currx + 1) &
2939 RX_RING_MOD_MASK(rx_queue->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 }
2941
2942 /* Update the current rxbd pointer to be the next one */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002943 rx_queue->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 return howmany;
2946}
2947
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002948static int gfar_poll_rx_sq(struct napi_struct *napi, int budget)
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002949{
2950 struct gfar_priv_grp *gfargrp =
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002951 container_of(napi, struct gfar_priv_grp, napi_rx);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002952 struct gfar __iomem *regs = gfargrp->regs;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02002953 struct gfar_priv_rx_q *rx_queue = gfargrp->rx_queue;
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002954 int work_done = 0;
2955
2956 /* Clear IEVENT, so interrupts aren't called again
2957 * because of the packets that have already arrived
2958 */
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002959 gfar_write(&regs->ievent, IEVENT_RX_MASK);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002960
2961 work_done = gfar_clean_rx_ring(rx_queue, budget);
2962
2963 if (work_done < budget) {
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002964 u32 imask;
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002965 napi_complete(napi);
2966 /* Clear the halt bit in RSTAT */
2967 gfar_write(&regs->rstat, gfargrp->rstat);
2968
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002969 spin_lock_irq(&gfargrp->grplock);
2970 imask = gfar_read(&regs->imask);
2971 imask |= IMASK_RX_DEFAULT;
2972 gfar_write(&regs->imask, imask);
2973 spin_unlock_irq(&gfargrp->grplock);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002974 }
2975
2976 return work_done;
2977}
2978
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002979static int gfar_poll_tx_sq(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002981 struct gfar_priv_grp *gfargrp =
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002982 container_of(napi, struct gfar_priv_grp, napi_tx);
2983 struct gfar __iomem *regs = gfargrp->regs;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02002984 struct gfar_priv_tx_q *tx_queue = gfargrp->tx_queue;
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002985 u32 imask;
2986
2987 /* Clear IEVENT, so interrupts aren't called again
2988 * because of the packets that have already arrived
2989 */
2990 gfar_write(&regs->ievent, IEVENT_TX_MASK);
2991
2992 /* run Tx cleanup to completion */
2993 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx])
2994 gfar_clean_tx_ring(tx_queue);
2995
2996 napi_complete(napi);
2997
2998 spin_lock_irq(&gfargrp->grplock);
2999 imask = gfar_read(&regs->imask);
3000 imask |= IMASK_TX_DEFAULT;
3001 gfar_write(&regs->imask, imask);
3002 spin_unlock_irq(&gfargrp->grplock);
3003
3004 return 0;
3005}
3006
3007static int gfar_poll_rx(struct napi_struct *napi, int budget)
3008{
3009 struct gfar_priv_grp *gfargrp =
3010 container_of(napi, struct gfar_priv_grp, napi_rx);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003011 struct gfar_private *priv = gfargrp->priv;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003012 struct gfar __iomem *regs = gfargrp->regs;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003013 struct gfar_priv_rx_q *rx_queue = NULL;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003014 int work_done = 0, work_done_per_q = 0;
Claudiu Manoil39c0a0d2013-03-21 03:12:13 +00003015 int i, budget_per_q = 0;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003016 unsigned long rstat_rxf;
3017 int num_act_queues;
Dai Harukid080cd62008-04-09 19:37:51 -05003018
Dai Haruki8c7396a2008-12-17 16:52:00 -08003019 /* Clear IEVENT, so interrupts aren't called again
Jan Ceuleers0977f812012-06-05 03:42:12 +00003020 * because of the packets that have already arrived
3021 */
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003022 gfar_write(&regs->ievent, IEVENT_RX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08003023
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003024 rstat_rxf = gfar_read(&regs->rstat) & RSTAT_RXF_MASK;
3025
3026 num_act_queues = bitmap_weight(&rstat_rxf, MAX_RX_QS);
3027 if (num_act_queues)
3028 budget_per_q = budget/num_act_queues;
3029
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003030 for_each_set_bit(i, &gfargrp->rx_bit_map, priv->num_rx_queues) {
3031 /* skip queue if not active */
3032 if (!(rstat_rxf & (RSTAT_CLEAR_RXF0 >> i)))
3033 continue;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003034
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003035 rx_queue = priv->rx_queue[i];
3036 work_done_per_q =
3037 gfar_clean_rx_ring(rx_queue, budget_per_q);
3038 work_done += work_done_per_q;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003039
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003040 /* finished processing this queue */
3041 if (work_done_per_q < budget_per_q) {
3042 /* clear active queue hw indication */
3043 gfar_write(&regs->rstat,
3044 RSTAT_CLEAR_RXF0 >> i);
3045 num_act_queues--;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003046
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003047 if (!num_act_queues)
3048 break;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003049 }
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003050 }
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003051
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003052 if (!num_act_queues) {
3053 u32 imask;
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003054 napi_complete(napi);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003055
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003056 /* Clear the halt bit in RSTAT */
3057 gfar_write(&regs->rstat, gfargrp->rstat);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003058
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003059 spin_lock_irq(&gfargrp->grplock);
3060 imask = gfar_read(&regs->imask);
3061 imask |= IMASK_RX_DEFAULT;
3062 gfar_write(&regs->imask, imask);
3063 spin_unlock_irq(&gfargrp->grplock);
Dai Harukid080cd62008-04-09 19:37:51 -05003064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003066 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003069static int gfar_poll_tx(struct napi_struct *napi, int budget)
3070{
3071 struct gfar_priv_grp *gfargrp =
3072 container_of(napi, struct gfar_priv_grp, napi_tx);
3073 struct gfar_private *priv = gfargrp->priv;
3074 struct gfar __iomem *regs = gfargrp->regs;
3075 struct gfar_priv_tx_q *tx_queue = NULL;
3076 int has_tx_work = 0;
3077 int i;
3078
3079 /* Clear IEVENT, so interrupts aren't called again
3080 * because of the packets that have already arrived
3081 */
3082 gfar_write(&regs->ievent, IEVENT_TX_MASK);
3083
3084 for_each_set_bit(i, &gfargrp->tx_bit_map, priv->num_tx_queues) {
3085 tx_queue = priv->tx_queue[i];
3086 /* run Tx cleanup to completion */
3087 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx]) {
3088 gfar_clean_tx_ring(tx_queue);
3089 has_tx_work = 1;
3090 }
3091 }
3092
3093 if (!has_tx_work) {
3094 u32 imask;
3095 napi_complete(napi);
3096
3097 spin_lock_irq(&gfargrp->grplock);
3098 imask = gfar_read(&regs->imask);
3099 imask |= IMASK_TX_DEFAULT;
3100 gfar_write(&regs->imask, imask);
3101 spin_unlock_irq(&gfargrp->grplock);
3102 }
3103
3104 return 0;
3105}
3106
3107
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003108#ifdef CONFIG_NET_POLL_CONTROLLER
Jan Ceuleers0977f812012-06-05 03:42:12 +00003109/* Polling 'interrupt' - used by things like netconsole to send skbs
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003110 * without having to re-enable interrupts. It's not called while
3111 * the interrupt routine is executing.
3112 */
3113static void gfar_netpoll(struct net_device *dev)
3114{
3115 struct gfar_private *priv = netdev_priv(dev);
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00003116 int i;
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003117
3118 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003119 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003120 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00003121 struct gfar_priv_grp *grp = &priv->gfargrp[i];
3122
3123 disable_irq(gfar_irq(grp, TX)->irq);
3124 disable_irq(gfar_irq(grp, RX)->irq);
3125 disable_irq(gfar_irq(grp, ER)->irq);
3126 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
3127 enable_irq(gfar_irq(grp, ER)->irq);
3128 enable_irq(gfar_irq(grp, RX)->irq);
3129 enable_irq(gfar_irq(grp, TX)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003130 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003131 } else {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003132 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00003133 struct gfar_priv_grp *grp = &priv->gfargrp[i];
3134
3135 disable_irq(gfar_irq(grp, TX)->irq);
3136 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
3137 enable_irq(gfar_irq(grp, TX)->irq);
Anton Vorontsov43de0042009-12-09 02:52:19 -08003138 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003139 }
3140}
3141#endif
3142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143/* The interrupt handler for devices with one interrupt */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003144static irqreturn_t gfar_interrupt(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003146 struct gfar_priv_grp *gfargrp = grp_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
3148 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003149 u32 events = gfar_read(&gfargrp->regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003152 if (events & IEVENT_RX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003153 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
3155 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003156 if (events & IEVENT_TX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003157 gfar_transmit(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003159 /* Check for errors */
3160 if (events & IEVENT_ERR_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003161 gfar_error(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
3163 return IRQ_HANDLED;
3164}
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166/* Called every time the controller might need to be made
3167 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003168 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 * function converts those variables into the appropriate
3170 * register values, and can bring down the device if needed.
3171 */
3172static void adjust_link(struct net_device *dev)
3173{
3174 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003175 struct phy_device *phydev = priv->phydev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003177 if (unlikely(phydev->link != priv->oldlink ||
Guenter Roeck0ae93b22015-03-02 12:03:27 -08003178 (phydev->link && (phydev->duplex != priv->oldduplex ||
3179 phydev->speed != priv->oldspeed))))
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003180 gfar_update_link_state(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003181}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183/* Update the hash table based on the current list of multicast
3184 * addresses we subscribe to. Also, change the promiscuity of
3185 * the device based on the flags (this function is called
Jan Ceuleers0977f812012-06-05 03:42:12 +00003186 * whenever dev->flags is changed
3187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188static void gfar_set_multi(struct net_device *dev)
3189{
Jiri Pirko22bedad32010-04-01 21:22:57 +00003190 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003192 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 u32 tempval;
3194
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003195 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 /* Set RCTRL to PROM */
3197 tempval = gfar_read(&regs->rctrl);
3198 tempval |= RCTRL_PROM;
3199 gfar_write(&regs->rctrl, tempval);
3200 } else {
3201 /* Set RCTRL to not PROM */
3202 tempval = gfar_read(&regs->rctrl);
3203 tempval &= ~(RCTRL_PROM);
3204 gfar_write(&regs->rctrl, tempval);
3205 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003206
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003207 if (dev->flags & IFF_ALLMULTI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003209 gfar_write(&regs->igaddr0, 0xffffffff);
3210 gfar_write(&regs->igaddr1, 0xffffffff);
3211 gfar_write(&regs->igaddr2, 0xffffffff);
3212 gfar_write(&regs->igaddr3, 0xffffffff);
3213 gfar_write(&regs->igaddr4, 0xffffffff);
3214 gfar_write(&regs->igaddr5, 0xffffffff);
3215 gfar_write(&regs->igaddr6, 0xffffffff);
3216 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 gfar_write(&regs->gaddr0, 0xffffffff);
3218 gfar_write(&regs->gaddr1, 0xffffffff);
3219 gfar_write(&regs->gaddr2, 0xffffffff);
3220 gfar_write(&regs->gaddr3, 0xffffffff);
3221 gfar_write(&regs->gaddr4, 0xffffffff);
3222 gfar_write(&regs->gaddr5, 0xffffffff);
3223 gfar_write(&regs->gaddr6, 0xffffffff);
3224 gfar_write(&regs->gaddr7, 0xffffffff);
3225 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003226 int em_num;
3227 int idx;
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003230 gfar_write(&regs->igaddr0, 0x0);
3231 gfar_write(&regs->igaddr1, 0x0);
3232 gfar_write(&regs->igaddr2, 0x0);
3233 gfar_write(&regs->igaddr3, 0x0);
3234 gfar_write(&regs->igaddr4, 0x0);
3235 gfar_write(&regs->igaddr5, 0x0);
3236 gfar_write(&regs->igaddr6, 0x0);
3237 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 gfar_write(&regs->gaddr0, 0x0);
3239 gfar_write(&regs->gaddr1, 0x0);
3240 gfar_write(&regs->gaddr2, 0x0);
3241 gfar_write(&regs->gaddr3, 0x0);
3242 gfar_write(&regs->gaddr4, 0x0);
3243 gfar_write(&regs->gaddr5, 0x0);
3244 gfar_write(&regs->gaddr6, 0x0);
3245 gfar_write(&regs->gaddr7, 0x0);
3246
Andy Fleming7f7f5312005-11-11 12:38:59 -06003247 /* If we have extended hash tables, we need to
3248 * clear the exact match registers to prepare for
Jan Ceuleers0977f812012-06-05 03:42:12 +00003249 * setting them
3250 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003251 if (priv->extended_hash) {
3252 em_num = GFAR_EM_NUM + 1;
3253 gfar_clear_exact_match(dev);
3254 idx = 1;
3255 } else {
3256 idx = 0;
3257 em_num = 0;
3258 }
3259
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00003260 if (netdev_mc_empty(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 return;
3262
3263 /* Parse the list, and set the appropriate bits */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003264 netdev_for_each_mc_addr(ha, dev) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003265 if (idx < em_num) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00003266 gfar_set_mac_for_addr(dev, idx, ha->addr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003267 idx++;
3268 } else
Jiri Pirko22bedad32010-04-01 21:22:57 +00003269 gfar_set_hash_for_addr(dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 }
3271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272}
3273
Andy Fleming7f7f5312005-11-11 12:38:59 -06003274
3275/* Clears each of the exact match registers to zero, so they
Jan Ceuleers0977f812012-06-05 03:42:12 +00003276 * don't interfere with normal reception
3277 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003278static void gfar_clear_exact_match(struct net_device *dev)
3279{
3280 int idx;
Joe Perches6a3c9102011-11-16 09:38:02 +00003281 static const u8 zero_arr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
Andy Fleming7f7f5312005-11-11 12:38:59 -06003282
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003283 for (idx = 1; idx < GFAR_EM_NUM + 1; idx++)
Joe Perchesb6bc7652010-12-21 02:16:08 -08003284 gfar_set_mac_for_addr(dev, idx, zero_arr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003285}
3286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287/* Set the appropriate hash bit for the given addr */
3288/* The algorithm works like so:
3289 * 1) Take the Destination Address (ie the multicast address), and
3290 * do a CRC on it (little endian), and reverse the bits of the
3291 * result.
3292 * 2) Use the 8 most significant bits as a hash into a 256-entry
3293 * table. The table is controlled through 8 32-bit registers:
3294 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
3295 * gaddr7. This means that the 3 most significant bits in the
3296 * hash index which gaddr register to use, and the 5 other bits
3297 * indicate which bit (assuming an IBM numbering scheme, which
3298 * for PowerPC (tm) is usually the case) in the register holds
Jan Ceuleers0977f812012-06-05 03:42:12 +00003299 * the entry.
3300 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
3302{
3303 u32 tempval;
3304 struct gfar_private *priv = netdev_priv(dev);
Joe Perches6a3c9102011-11-16 09:38:02 +00003305 u32 result = ether_crc(ETH_ALEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05003306 int width = priv->hash_width;
3307 u8 whichbit = (result >> (32 - width)) & 0x1f;
3308 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 u32 value = (1 << (31-whichbit));
3310
Kumar Gala0bbaf062005-06-20 10:54:21 -05003311 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05003313 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
Andy Fleming7f7f5312005-11-11 12:38:59 -06003316
3317/* There are multiple MAC Address register pairs on some controllers
3318 * This function sets the numth pair to a given address
3319 */
Joe Perchesb6bc7652010-12-21 02:16:08 -08003320static void gfar_set_mac_for_addr(struct net_device *dev, int num,
3321 const u8 *addr)
Andy Fleming7f7f5312005-11-11 12:38:59 -06003322{
3323 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003324 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003325 u32 tempval;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003326 u32 __iomem *macptr = &regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003327
3328 macptr += num*2;
3329
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003330 /* For a station address of 0x12345678ABCD in transmission
3331 * order (BE), MACnADDR1 is set to 0xCDAB7856 and
3332 * MACnADDR2 is set to 0x34120000.
Jan Ceuleers0977f812012-06-05 03:42:12 +00003333 */
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003334 tempval = (addr[5] << 24) | (addr[4] << 16) |
3335 (addr[3] << 8) | addr[2];
Andy Fleming7f7f5312005-11-11 12:38:59 -06003336
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003337 gfar_write(macptr, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003338
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003339 tempval = (addr[1] << 24) | (addr[0] << 16);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003340
3341 gfar_write(macptr+1, tempval);
3342}
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344/* GFAR error interrupt handler */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003345static irqreturn_t gfar_error(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003347 struct gfar_priv_grp *gfargrp = grp_id;
3348 struct gfar __iomem *regs = gfargrp->regs;
3349 struct gfar_private *priv= gfargrp->priv;
3350 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
3352 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003353 u32 events = gfar_read(&regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
3355 /* Clear IEVENT */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003356 gfar_write(&regs->ievent, events & IEVENT_ERR_MASK);
Scott Woodd87eb122008-07-11 18:04:45 -05003357
3358 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003359 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05003360 (events & IEVENT_MAG))
3361 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
3363 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003364 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003365 netdev_dbg(dev,
3366 "error interrupt (ievent=0x%08x imask=0x%08x)\n",
Joe Perches59deab22011-06-14 08:57:47 +00003367 events, gfar_read(&regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
3369 /* Update the error counters */
3370 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003371 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
3373 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003374 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003376 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 if (events & IEVENT_XFUN) {
Joe Perches59deab22011-06-14 08:57:47 +00003378 netif_dbg(priv, tx_err, dev,
3379 "TX FIFO underrun, packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003380 dev->stats.tx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003381 atomic64_inc(&priv->extra_stats.tx_underrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Claudiu Manoilbc602282015-05-06 18:07:29 +03003383 schedule_work(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 }
Joe Perches59deab22011-06-14 08:57:47 +00003385 netif_dbg(priv, tx_err, dev, "Transmit Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 }
3387 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003388 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003389 atomic64_inc(&priv->extra_stats.rx_bsy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003391 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Joe Perches59deab22011-06-14 08:57:47 +00003393 netif_dbg(priv, rx_err, dev, "busy error (rstat: %x)\n",
3394 gfar_read(&regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 }
3396 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003397 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003398 atomic64_inc(&priv->extra_stats.rx_babr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Joe Perches59deab22011-06-14 08:57:47 +00003400 netif_dbg(priv, rx_err, dev, "babbling RX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 }
3402 if (events & IEVENT_EBERR) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003403 atomic64_inc(&priv->extra_stats.eberr);
Joe Perches59deab22011-06-14 08:57:47 +00003404 netif_dbg(priv, rx_err, dev, "bus error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
Joe Perches59deab22011-06-14 08:57:47 +00003406 if (events & IEVENT_RXC)
3407 netif_dbg(priv, rx_status, dev, "control frame\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
3409 if (events & IEVENT_BABT) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003410 atomic64_inc(&priv->extra_stats.tx_babt);
Joe Perches59deab22011-06-14 08:57:47 +00003411 netif_dbg(priv, tx_err, dev, "babbling TX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
3413 return IRQ_HANDLED;
3414}
3415
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003416static u32 gfar_get_flowctrl_cfg(struct gfar_private *priv)
3417{
3418 struct phy_device *phydev = priv->phydev;
3419 u32 val = 0;
3420
3421 if (!phydev->duplex)
3422 return val;
3423
3424 if (!priv->pause_aneg_en) {
3425 if (priv->tx_pause_en)
3426 val |= MACCFG1_TX_FLOW;
3427 if (priv->rx_pause_en)
3428 val |= MACCFG1_RX_FLOW;
3429 } else {
3430 u16 lcl_adv, rmt_adv;
3431 u8 flowctrl;
3432 /* get link partner capabilities */
3433 rmt_adv = 0;
3434 if (phydev->pause)
3435 rmt_adv = LPA_PAUSE_CAP;
3436 if (phydev->asym_pause)
3437 rmt_adv |= LPA_PAUSE_ASYM;
3438
Pavaluca Matei-B4661043ef8d22014-10-27 10:42:43 +02003439 lcl_adv = 0;
3440 if (phydev->advertising & ADVERTISED_Pause)
3441 lcl_adv |= ADVERTISE_PAUSE_CAP;
3442 if (phydev->advertising & ADVERTISED_Asym_Pause)
3443 lcl_adv |= ADVERTISE_PAUSE_ASYM;
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003444
3445 flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv);
3446 if (flowctrl & FLOW_CTRL_TX)
3447 val |= MACCFG1_TX_FLOW;
3448 if (flowctrl & FLOW_CTRL_RX)
3449 val |= MACCFG1_RX_FLOW;
3450 }
3451
3452 return val;
3453}
3454
3455static noinline void gfar_update_link_state(struct gfar_private *priv)
3456{
3457 struct gfar __iomem *regs = priv->gfargrp[0].regs;
3458 struct phy_device *phydev = priv->phydev;
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003459 struct gfar_priv_rx_q *rx_queue = NULL;
3460 int i;
3461 struct rxbd8 *bdp;
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003462
3463 if (unlikely(test_bit(GFAR_RESETTING, &priv->state)))
3464 return;
3465
3466 if (phydev->link) {
3467 u32 tempval1 = gfar_read(&regs->maccfg1);
3468 u32 tempval = gfar_read(&regs->maccfg2);
3469 u32 ecntrl = gfar_read(&regs->ecntrl);
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003470 u32 tx_flow_oldval = (tempval & MACCFG1_TX_FLOW);
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003471
3472 if (phydev->duplex != priv->oldduplex) {
3473 if (!(phydev->duplex))
3474 tempval &= ~(MACCFG2_FULL_DUPLEX);
3475 else
3476 tempval |= MACCFG2_FULL_DUPLEX;
3477
3478 priv->oldduplex = phydev->duplex;
3479 }
3480
3481 if (phydev->speed != priv->oldspeed) {
3482 switch (phydev->speed) {
3483 case 1000:
3484 tempval =
3485 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
3486
3487 ecntrl &= ~(ECNTRL_R100);
3488 break;
3489 case 100:
3490 case 10:
3491 tempval =
3492 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
3493
3494 /* Reduced mode distinguishes
3495 * between 10 and 100
3496 */
3497 if (phydev->speed == SPEED_100)
3498 ecntrl |= ECNTRL_R100;
3499 else
3500 ecntrl &= ~(ECNTRL_R100);
3501 break;
3502 default:
3503 netif_warn(priv, link, priv->ndev,
3504 "Ack! Speed (%d) is not 10/100/1000!\n",
3505 phydev->speed);
3506 break;
3507 }
3508
3509 priv->oldspeed = phydev->speed;
3510 }
3511
3512 tempval1 &= ~(MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
3513 tempval1 |= gfar_get_flowctrl_cfg(priv);
3514
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003515 /* Turn last free buffer recording on */
3516 if ((tempval1 & MACCFG1_TX_FLOW) && !tx_flow_oldval) {
3517 for (i = 0; i < priv->num_rx_queues; i++) {
3518 rx_queue = priv->rx_queue[i];
3519 bdp = rx_queue->cur_rx;
3520 /* skip to previous bd */
3521 bdp = skip_bd(bdp, rx_queue->rx_ring_size - 1,
3522 rx_queue->rx_bd_base,
3523 rx_queue->rx_ring_size);
3524
3525 if (rx_queue->rfbptr)
3526 gfar_write(rx_queue->rfbptr, (u32)bdp);
3527 }
3528
3529 priv->tx_actual_en = 1;
3530 }
3531
3532 if (unlikely(!(tempval1 & MACCFG1_TX_FLOW) && tx_flow_oldval))
3533 priv->tx_actual_en = 0;
3534
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003535 gfar_write(&regs->maccfg1, tempval1);
3536 gfar_write(&regs->maccfg2, tempval);
3537 gfar_write(&regs->ecntrl, ecntrl);
3538
3539 if (!priv->oldlink)
3540 priv->oldlink = 1;
3541
3542 } else if (priv->oldlink) {
3543 priv->oldlink = 0;
3544 priv->oldspeed = 0;
3545 priv->oldduplex = -1;
3546 }
3547
3548 if (netif_msg_link(priv))
3549 phy_print_status(phydev);
3550}
3551
Fabian Frederick94e5a2a2015-03-17 19:37:34 +01003552static const struct of_device_id gfar_match[] =
Andy Flemingb31a1d82008-12-16 15:29:15 -08003553{
3554 {
3555 .type = "network",
3556 .compatible = "gianfar",
3557 },
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003558 {
3559 .compatible = "fsl,etsec2",
3560 },
Andy Flemingb31a1d82008-12-16 15:29:15 -08003561 {},
3562};
Anton Vorontsove72701a2009-10-14 14:54:52 -07003563MODULE_DEVICE_TABLE(of, gfar_match);
Andy Flemingb31a1d82008-12-16 15:29:15 -08003564
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565/* Structure for a device driver */
Grant Likely74888762011-02-22 21:05:51 -07003566static struct platform_driver gfar_driver = {
Grant Likely40182942010-04-13 16:13:02 -07003567 .driver = {
3568 .name = "fsl-gianfar",
Grant Likely40182942010-04-13 16:13:02 -07003569 .pm = GFAR_PM_OPS,
3570 .of_match_table = gfar_match,
3571 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 .probe = gfar_probe,
3573 .remove = gfar_remove,
3574};
3575
Axel Lindb62f682011-11-27 16:44:17 +00003576module_platform_driver(gfar_driver);