blob: c839e7628181fa4fab823965d27f0d2a559bd64f [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);
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300119static void gfar_alloc_rx_buffs(struct gfar_priv_rx_q *rx_queue,
120 int alloc_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int gfar_set_mac_address(struct net_device *dev);
122static int gfar_change_mtu(struct net_device *dev, int new_mtu);
David Howells7d12e782006-10-05 14:55:46 +0100123static irqreturn_t gfar_error(int irq, void *dev_id);
124static irqreturn_t gfar_transmit(int irq, void *dev_id);
125static irqreturn_t gfar_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static void adjust_link(struct net_device *dev);
Claudiu Manoil6ce29b02014-04-30 14:27:21 +0300127static noinline void gfar_update_link_state(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int init_phy(struct net_device *dev);
Grant Likely74888762011-02-22 21:05:51 -0700129static int gfar_probe(struct platform_device *ofdev);
Grant Likely2dc11582010-08-06 09:25:50 -0600130static int gfar_remove(struct platform_device *ofdev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400131static void free_skb_resources(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static void gfar_set_multi(struct net_device *dev);
133static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr);
Kapil Junejad3c12872007-05-11 18:25:11 -0500134static void gfar_configure_serdes(struct net_device *dev);
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200135static int gfar_poll_rx(struct napi_struct *napi, int budget);
136static int gfar_poll_tx(struct napi_struct *napi, int budget);
137static int gfar_poll_rx_sq(struct napi_struct *napi, int budget);
138static int gfar_poll_tx_sq(struct napi_struct *napi, int budget);
Vitaly Woolf2d71c22006-11-07 13:27:02 +0300139#ifdef CONFIG_NET_POLL_CONTROLLER
140static void gfar_netpoll(struct net_device *dev);
141#endif
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000142int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit);
Claudiu Manoilc233cf402013-03-19 07:40:02 +0000143static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue);
Claudiu Manoil61db26c2013-02-14 05:00:05 +0000144static void gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300145 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
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300172static void 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;
Kevin Hao03366a332014-12-24 14:05:45 +0800179 u32 __iomem *rfbptr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000180 int i, j;
Anton Vorontsov87283272009-10-12 06:00:39 +0000181
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000182 for (i = 0; i < priv->num_tx_queues; i++) {
183 tx_queue = priv->tx_queue[i];
184 /* Initialize some variables in our dev structure */
185 tx_queue->num_txbdfree = tx_queue->tx_ring_size;
186 tx_queue->dirty_tx = tx_queue->tx_bd_base;
187 tx_queue->cur_tx = tx_queue->tx_bd_base;
188 tx_queue->skb_curtx = 0;
189 tx_queue->skb_dirtytx = 0;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000190
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000191 /* Initialize Transmit Descriptor Ring */
192 txbdp = tx_queue->tx_bd_base;
193 for (j = 0; j < tx_queue->tx_ring_size; j++) {
194 txbdp->lstatus = 0;
195 txbdp->bufPtr = 0;
196 txbdp++;
Anton Vorontsov87283272009-10-12 06:00:39 +0000197 }
198
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000199 /* Set the last descriptor in the ring to indicate wrap */
200 txbdp--;
Claudiu Manoila7312d52015-03-13 10:36:28 +0200201 txbdp->status = cpu_to_be16(be16_to_cpu(txbdp->status) |
202 TXBD_WRAP);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000203 }
204
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200205 rfbptr = &regs->rfbptr0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000206 for (i = 0; i < priv->num_rx_queues; i++) {
207 rx_queue = priv->rx_queue[i];
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000208
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300209 rx_queue->next_to_clean = 0;
210 rx_queue->next_to_use = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000211
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300212 /* make sure next_to_clean != next_to_use after this
213 * by leaving at least 1 unused descriptor
214 */
215 gfar_alloc_rx_buffs(rx_queue, gfar_rxbd_unused(rx_queue));
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000216
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200217 rx_queue->rfbptr = rfbptr;
218 rfbptr += 2;
Anton Vorontsov87283272009-10-12 06:00:39 +0000219 }
Anton Vorontsov87283272009-10-12 06:00:39 +0000220}
221
222static int gfar_alloc_skb_resources(struct net_device *ndev)
223{
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000224 void *vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000225 dma_addr_t addr;
226 int i, j, k;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000227 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil369ec162013-02-14 05:00:02 +0000228 struct device *dev = priv->dev;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000229 struct gfar_priv_tx_q *tx_queue = NULL;
230 struct gfar_priv_rx_q *rx_queue = NULL;
231
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000232 priv->total_tx_ring_size = 0;
233 for (i = 0; i < priv->num_tx_queues; i++)
234 priv->total_tx_ring_size += priv->tx_queue[i]->tx_ring_size;
235
236 priv->total_rx_ring_size = 0;
237 for (i = 0; i < priv->num_rx_queues; i++)
238 priv->total_rx_ring_size += priv->rx_queue[i]->rx_ring_size;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000239
240 /* Allocate memory for the buffer descriptors */
Anton Vorontsov87283272009-10-12 06:00:39 +0000241 vaddr = dma_alloc_coherent(dev,
Joe Perchesd0320f72013-03-14 13:07:21 +0000242 (priv->total_tx_ring_size *
243 sizeof(struct txbd8)) +
244 (priv->total_rx_ring_size *
245 sizeof(struct rxbd8)),
246 &addr, GFP_KERNEL);
247 if (!vaddr)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000248 return -ENOMEM;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000249
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000250 for (i = 0; i < priv->num_tx_queues; i++) {
251 tx_queue = priv->tx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000252 tx_queue->tx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000253 tx_queue->tx_bd_dma_base = addr;
254 tx_queue->dev = ndev;
255 /* enet DMA only understands physical addresses */
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000256 addr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
257 vaddr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000258 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000259
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000260 /* Start the rx descriptor ring where the tx ring leaves off */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000261 for (i = 0; i < priv->num_rx_queues; i++) {
262 rx_queue = priv->rx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000263 rx_queue->rx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000264 rx_queue->rx_bd_dma_base = addr;
265 rx_queue->dev = ndev;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000266 addr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
267 vaddr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000268 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000269
270 /* Setup the skbuff rings */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000271 for (i = 0; i < priv->num_tx_queues; i++) {
272 tx_queue = priv->tx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000273 tx_queue->tx_skbuff =
274 kmalloc_array(tx_queue->tx_ring_size,
275 sizeof(*tx_queue->tx_skbuff),
276 GFP_KERNEL);
277 if (!tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000278 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000279
280 for (k = 0; k < tx_queue->tx_ring_size; k++)
281 tx_queue->tx_skbuff[k] = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000282 }
283
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000284 for (i = 0; i < priv->num_rx_queues; i++) {
285 rx_queue = priv->rx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000286 rx_queue->rx_skbuff =
287 kmalloc_array(rx_queue->rx_ring_size,
288 sizeof(*rx_queue->rx_skbuff),
289 GFP_KERNEL);
290 if (!rx_queue->rx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000291 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000292
293 for (j = 0; j < rx_queue->rx_ring_size; j++)
294 rx_queue->rx_skbuff[j] = NULL;
295 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000296
Claudiu Manoil76f31e82015-07-13 16:22:03 +0300297 gfar_init_bds(ndev);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000298
299 return 0;
300
301cleanup:
302 free_skb_resources(priv);
303 return -ENOMEM;
304}
305
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000306static void gfar_init_tx_rx_base(struct gfar_private *priv)
307{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000308 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov18294ad2009-11-04 12:53:00 +0000309 u32 __iomem *baddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000310 int i;
311
312 baddr = &regs->tbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000313 for (i = 0; i < priv->num_tx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000314 gfar_write(baddr, priv->tx_queue[i]->tx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000315 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000316 }
317
318 baddr = &regs->rbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000319 for (i = 0; i < priv->num_rx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000320 gfar_write(baddr, priv->rx_queue[i]->rx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000321 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000322 }
323}
324
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200325static void gfar_init_rqprm(struct gfar_private *priv)
326{
327 struct gfar __iomem *regs = priv->gfargrp[0].regs;
328 u32 __iomem *baddr;
329 int i;
330
331 baddr = &regs->rqprm0;
332 for (i = 0; i < priv->num_rx_queues; i++) {
333 gfar_write(baddr, priv->rx_queue[i]->rx_ring_size |
334 (DEFAULT_RX_LFC_THR << FBTHR_SHIFT));
335 baddr++;
336 }
337}
338
Claudiu Manoil88302642014-02-24 12:13:43 +0200339static void gfar_rx_buff_size_config(struct gfar_private *priv)
340{
Claudiu Manoilf5b720b2014-10-15 19:11:46 +0300341 int frame_size = priv->ndev->mtu + ETH_HLEN + ETH_FCS_LEN;
Claudiu Manoil88302642014-02-24 12:13:43 +0200342
343 /* set this when rx hw offload (TOE) functions are being used */
344 priv->uses_rxfcb = 0;
345
346 if (priv->ndev->features & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX))
347 priv->uses_rxfcb = 1;
348
349 if (priv->hwts_rx_en)
350 priv->uses_rxfcb = 1;
351
352 if (priv->uses_rxfcb)
353 frame_size += GMAC_FCB_LEN;
354
355 frame_size += priv->padding;
356
357 frame_size = (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
358 INCREMENTAL_BUFFER_SIZE;
359
360 priv->rx_buffer_size = frame_size;
361}
362
Claudiu Manoila328ac92014-02-24 12:13:42 +0200363static void gfar_mac_rx_config(struct gfar_private *priv)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000364{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000365 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000366 u32 rctrl = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000367
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000368 if (priv->rx_filer_enable) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000369 rctrl |= RCTRL_FILREN;
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000370 /* Program the RIR0 reg with the required distribution */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200371 if (priv->poll_mode == GFAR_SQ_POLLING)
372 gfar_write(&regs->rir0, DEFAULT_2RXQ_RIR0);
373 else /* GFAR_MQ_POLLING */
374 gfar_write(&regs->rir0, DEFAULT_8RXQ_RIR0);
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000375 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000376
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000377 /* Restore PROMISC mode */
Claudiu Manoila328ac92014-02-24 12:13:42 +0200378 if (priv->ndev->flags & IFF_PROMISC)
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000379 rctrl |= RCTRL_PROM;
380
Claudiu Manoil88302642014-02-24 12:13:43 +0200381 if (priv->ndev->features & NETIF_F_RXCSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000382 rctrl |= RCTRL_CHECKSUMMING;
383
Claudiu Manoil88302642014-02-24 12:13:43 +0200384 if (priv->extended_hash)
385 rctrl |= RCTRL_EXTHASH | RCTRL_EMEN;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000386
387 if (priv->padding) {
388 rctrl &= ~RCTRL_PAL_MASK;
389 rctrl |= RCTRL_PADDING(priv->padding);
390 }
391
Manfred Rudigier97553f72010-06-11 01:49:05 +0000392 /* Enable HW time stamping if requested from user space */
Claudiu Manoil88302642014-02-24 12:13:43 +0200393 if (priv->hwts_rx_en)
Manfred Rudigier97553f72010-06-11 01:49:05 +0000394 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE;
395
Claudiu Manoil88302642014-02-24 12:13:43 +0200396 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_RX)
Sebastian Pöhnb852b722011-07-26 00:03:13 +0000397 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000398
Matei Pavaluca45b679c92014-10-27 10:42:44 +0200399 /* Clear the LFC bit */
400 gfar_write(&regs->rctrl, rctrl);
401 /* Init flow control threshold values */
402 gfar_init_rqprm(priv);
403 gfar_write(&regs->ptv, DEFAULT_LFC_PTVVAL);
404 rctrl |= RCTRL_LFC;
405
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000406 /* Init rctrl based on our settings */
407 gfar_write(&regs->rctrl, rctrl);
Claudiu Manoila328ac92014-02-24 12:13:42 +0200408}
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000409
Claudiu Manoila328ac92014-02-24 12:13:42 +0200410static void gfar_mac_tx_config(struct gfar_private *priv)
411{
412 struct gfar __iomem *regs = priv->gfargrp[0].regs;
413 u32 tctrl = 0;
414
415 if (priv->ndev->features & NETIF_F_IP_CSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000416 tctrl |= TCTRL_INIT_CSUM;
417
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +0000418 if (priv->prio_sched_en)
419 tctrl |= TCTRL_TXSCHED_PRIO;
420 else {
421 tctrl |= TCTRL_TXSCHED_WRRS;
422 gfar_write(&regs->tr03wt, DEFAULT_WRRS_WEIGHT);
423 gfar_write(&regs->tr47wt, DEFAULT_WRRS_WEIGHT);
424 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000425
Claudiu Manoil88302642014-02-24 12:13:43 +0200426 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_TX)
427 tctrl |= TCTRL_VLINS;
428
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000429 gfar_write(&regs->tctrl, tctrl);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000430}
431
Claudiu Manoilf19015b2014-02-24 12:13:46 +0200432static void gfar_configure_coalescing(struct gfar_private *priv,
433 unsigned long tx_mask, unsigned long rx_mask)
434{
435 struct gfar __iomem *regs = priv->gfargrp[0].regs;
436 u32 __iomem *baddr;
437
438 if (priv->mode == MQ_MG_MODE) {
439 int i = 0;
440
441 baddr = &regs->txic0;
442 for_each_set_bit(i, &tx_mask, priv->num_tx_queues) {
443 gfar_write(baddr + i, 0);
444 if (likely(priv->tx_queue[i]->txcoalescing))
445 gfar_write(baddr + i, priv->tx_queue[i]->txic);
446 }
447
448 baddr = &regs->rxic0;
449 for_each_set_bit(i, &rx_mask, priv->num_rx_queues) {
450 gfar_write(baddr + i, 0);
451 if (likely(priv->rx_queue[i]->rxcoalescing))
452 gfar_write(baddr + i, priv->rx_queue[i]->rxic);
453 }
454 } else {
455 /* Backward compatible case -- even if we enable
456 * multiple queues, there's only single reg to program
457 */
458 gfar_write(&regs->txic, 0);
459 if (likely(priv->tx_queue[0]->txcoalescing))
460 gfar_write(&regs->txic, priv->tx_queue[0]->txic);
461
462 gfar_write(&regs->rxic, 0);
463 if (unlikely(priv->rx_queue[0]->rxcoalescing))
464 gfar_write(&regs->rxic, priv->rx_queue[0]->rxic);
465 }
466}
467
468void gfar_configure_coalescing_all(struct gfar_private *priv)
469{
470 gfar_configure_coalescing(priv, 0xFF, 0xFF);
471}
472
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000473static struct net_device_stats *gfar_get_stats(struct net_device *dev)
474{
475 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000476 unsigned long rx_packets = 0, rx_bytes = 0, rx_dropped = 0;
477 unsigned long tx_packets = 0, tx_bytes = 0;
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000478 int i;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000479
480 for (i = 0; i < priv->num_rx_queues; i++) {
481 rx_packets += priv->rx_queue[i]->stats.rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000482 rx_bytes += priv->rx_queue[i]->stats.rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000483 rx_dropped += priv->rx_queue[i]->stats.rx_dropped;
484 }
485
486 dev->stats.rx_packets = rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000487 dev->stats.rx_bytes = rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000488 dev->stats.rx_dropped = rx_dropped;
489
490 for (i = 0; i < priv->num_tx_queues; i++) {
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000491 tx_bytes += priv->tx_queue[i]->stats.tx_bytes;
492 tx_packets += priv->tx_queue[i]->stats.tx_packets;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000493 }
494
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000495 dev->stats.tx_bytes = tx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000496 dev->stats.tx_packets = tx_packets;
497
498 return &dev->stats;
499}
500
Claudiu Manoil3d23a052015-05-06 18:07:30 +0300501static int gfar_set_mac_addr(struct net_device *dev, void *p)
502{
503 eth_mac_addr(dev, p);
504
505 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
506
507 return 0;
508}
509
Andy Fleming26ccfc32009-03-10 12:58:28 +0000510static const struct net_device_ops gfar_netdev_ops = {
511 .ndo_open = gfar_enet_open,
512 .ndo_start_xmit = gfar_start_xmit,
513 .ndo_stop = gfar_close,
514 .ndo_change_mtu = gfar_change_mtu,
Michał Mirosław8b3afe92011-04-15 04:50:50 +0000515 .ndo_set_features = gfar_set_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000516 .ndo_set_rx_mode = gfar_set_multi,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000517 .ndo_tx_timeout = gfar_timeout,
518 .ndo_do_ioctl = gfar_ioctl,
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000519 .ndo_get_stats = gfar_get_stats,
Claudiu Manoil3d23a052015-05-06 18:07:30 +0300520 .ndo_set_mac_address = gfar_set_mac_addr,
Ben Hutchings240c1022009-07-09 17:54:35 +0000521 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000522#ifdef CONFIG_NET_POLL_CONTROLLER
523 .ndo_poll_controller = gfar_netpoll,
524#endif
525};
526
Claudiu Manoilefeddce2014-02-17 12:53:17 +0200527static void gfar_ints_disable(struct gfar_private *priv)
528{
529 int i;
530 for (i = 0; i < priv->num_grps; i++) {
531 struct gfar __iomem *regs = priv->gfargrp[i].regs;
532 /* Clear IEVENT */
533 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
534
535 /* Initialize IMASK */
536 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
537 }
538}
539
540static void gfar_ints_enable(struct gfar_private *priv)
541{
542 int i;
543 for (i = 0; i < priv->num_grps; i++) {
544 struct gfar __iomem *regs = priv->gfargrp[i].regs;
545 /* Unmask the interrupts we look for */
546 gfar_write(&regs->imask, IMASK_DEFAULT);
547 }
548}
549
Kevin Hao91c53f762014-12-24 14:05:44 +0800550static void lock_tx_qs(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000551{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000552 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000553
554 for (i = 0; i < priv->num_tx_queues; i++)
555 spin_lock(&priv->tx_queue[i]->txlock);
556}
557
Kevin Hao91c53f762014-12-24 14:05:44 +0800558static void unlock_tx_qs(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000559{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000560 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000561
562 for (i = 0; i < priv->num_tx_queues; i++)
563 spin_unlock(&priv->tx_queue[i]->txlock);
564}
565
Claudiu Manoil20862782014-02-17 12:53:14 +0200566static int gfar_alloc_tx_queues(struct gfar_private *priv)
567{
568 int i;
569
570 for (i = 0; i < priv->num_tx_queues; i++) {
571 priv->tx_queue[i] = kzalloc(sizeof(struct gfar_priv_tx_q),
572 GFP_KERNEL);
573 if (!priv->tx_queue[i])
574 return -ENOMEM;
575
576 priv->tx_queue[i]->tx_skbuff = NULL;
577 priv->tx_queue[i]->qindex = i;
578 priv->tx_queue[i]->dev = priv->ndev;
579 spin_lock_init(&(priv->tx_queue[i]->txlock));
580 }
581 return 0;
582}
583
584static int gfar_alloc_rx_queues(struct gfar_private *priv)
585{
586 int i;
587
588 for (i = 0; i < priv->num_rx_queues; i++) {
589 priv->rx_queue[i] = kzalloc(sizeof(struct gfar_priv_rx_q),
590 GFP_KERNEL);
591 if (!priv->rx_queue[i])
592 return -ENOMEM;
593
594 priv->rx_queue[i]->rx_skbuff = NULL;
595 priv->rx_queue[i]->qindex = i;
596 priv->rx_queue[i]->dev = priv->ndev;
Claudiu Manoil20862782014-02-17 12:53:14 +0200597 }
598 return 0;
599}
600
601static void gfar_free_tx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000602{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000603 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000604
605 for (i = 0; i < priv->num_tx_queues; i++)
606 kfree(priv->tx_queue[i]);
607}
608
Claudiu Manoil20862782014-02-17 12:53:14 +0200609static void gfar_free_rx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000610{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000611 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000612
613 for (i = 0; i < priv->num_rx_queues; i++)
614 kfree(priv->rx_queue[i]);
615}
616
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000617static void unmap_group_regs(struct gfar_private *priv)
618{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000619 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000620
621 for (i = 0; i < MAXGROUPS; i++)
622 if (priv->gfargrp[i].regs)
623 iounmap(priv->gfargrp[i].regs);
624}
625
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000626static void free_gfar_dev(struct gfar_private *priv)
627{
628 int i, j;
629
630 for (i = 0; i < priv->num_grps; i++)
631 for (j = 0; j < GFAR_NUM_IRQS; j++) {
632 kfree(priv->gfargrp[i].irqinfo[j]);
633 priv->gfargrp[i].irqinfo[j] = NULL;
634 }
635
636 free_netdev(priv->ndev);
637}
638
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000639static void disable_napi(struct gfar_private *priv)
640{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000641 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000642
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200643 for (i = 0; i < priv->num_grps; i++) {
644 napi_disable(&priv->gfargrp[i].napi_rx);
645 napi_disable(&priv->gfargrp[i].napi_tx);
646 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000647}
648
649static void enable_napi(struct gfar_private *priv)
650{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000651 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000652
Claudiu Manoilaeb12c52014-03-07 14:42:45 +0200653 for (i = 0; i < priv->num_grps; i++) {
654 napi_enable(&priv->gfargrp[i].napi_rx);
655 napi_enable(&priv->gfargrp[i].napi_tx);
656 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000657}
658
659static int gfar_parse_group(struct device_node *np,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000660 struct gfar_private *priv, const char *model)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000661{
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000662 struct gfar_priv_grp *grp = &priv->gfargrp[priv->num_grps];
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000663 int i;
664
Paul Gortmaker7c1e7e92013-02-04 09:49:42 +0000665 for (i = 0; i < GFAR_NUM_IRQS; i++) {
666 grp->irqinfo[i] = kzalloc(sizeof(struct gfar_irqinfo),
667 GFP_KERNEL);
668 if (!grp->irqinfo[i])
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000669 return -ENOMEM;
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000670 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000671
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000672 grp->regs = of_iomap(np, 0);
673 if (!grp->regs)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000674 return -ENOMEM;
675
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000676 gfar_irq(grp, TX)->irq = irq_of_parse_and_map(np, 0);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000677
678 /* If we aren't the FEC we have multiple interrupts */
679 if (model && strcasecmp(model, "FEC")) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000680 gfar_irq(grp, RX)->irq = irq_of_parse_and_map(np, 1);
681 gfar_irq(grp, ER)->irq = irq_of_parse_and_map(np, 2);
682 if (gfar_irq(grp, TX)->irq == NO_IRQ ||
683 gfar_irq(grp, RX)->irq == NO_IRQ ||
684 gfar_irq(grp, ER)->irq == NO_IRQ)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000685 return -EINVAL;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000686 }
687
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000688 grp->priv = priv;
689 spin_lock_init(&grp->grplock);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000690 if (priv->mode == MQ_MG_MODE) {
Jingchang Lu55917642015-03-13 10:52:32 +0200691 u32 rxq_mask, txq_mask;
692 int ret;
693
694 grp->rx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
695 grp->tx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
696
697 ret = of_property_read_u32(np, "fsl,rx-bit-map", &rxq_mask);
698 if (!ret) {
699 grp->rx_bit_map = rxq_mask ?
700 rxq_mask : (DEFAULT_MAPPING >> priv->num_grps);
701 }
702
703 ret = of_property_read_u32(np, "fsl,tx-bit-map", &txq_mask);
704 if (!ret) {
705 grp->tx_bit_map = txq_mask ?
706 txq_mask : (DEFAULT_MAPPING >> priv->num_grps);
707 }
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200708
709 if (priv->poll_mode == GFAR_SQ_POLLING) {
710 /* One Q per interrupt group: Q0 to G0, Q1 to G1 */
711 grp->rx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
712 grp->tx_bit_map = (DEFAULT_MAPPING >> priv->num_grps);
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200713 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000714 } else {
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000715 grp->rx_bit_map = 0xFF;
716 grp->tx_bit_map = 0xFF;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000717 }
Claudiu Manoil20862782014-02-17 12:53:14 +0200718
719 /* bit_map's MSB is q0 (from q0 to q7) but, for_each_set_bit parses
720 * right to left, so we need to revert the 8 bits to get the q index
721 */
722 grp->rx_bit_map = bitrev8(grp->rx_bit_map);
723 grp->tx_bit_map = bitrev8(grp->tx_bit_map);
724
725 /* Calculate RSTAT, TSTAT, RQUEUE and TQUEUE values,
726 * also assign queues to groups
727 */
728 for_each_set_bit(i, &grp->rx_bit_map, priv->num_rx_queues) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200729 if (!grp->rx_queue)
730 grp->rx_queue = priv->rx_queue[i];
Claudiu Manoil20862782014-02-17 12:53:14 +0200731 grp->num_rx_queues++;
732 grp->rstat |= (RSTAT_CLEAR_RHALT >> i);
733 priv->rqueue |= ((RQUEUE_EN0 | RQUEUE_EX0) >> i);
734 priv->rx_queue[i]->grp = grp;
735 }
736
737 for_each_set_bit(i, &grp->tx_bit_map, priv->num_tx_queues) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200738 if (!grp->tx_queue)
739 grp->tx_queue = priv->tx_queue[i];
Claudiu Manoil20862782014-02-17 12:53:14 +0200740 grp->num_tx_queues++;
741 grp->tstat |= (TSTAT_CLEAR_THALT >> i);
742 priv->tqueue |= (TQUEUE_EN0 >> i);
743 priv->tx_queue[i]->grp = grp;
744 }
745
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000746 priv->num_grps++;
747
748 return 0;
749}
750
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100751static int gfar_of_group_count(struct device_node *np)
752{
753 struct device_node *child;
754 int num = 0;
755
756 for_each_available_child_of_node(np, child)
757 if (!of_node_cmp(child->name, "queue-group"))
758 num++;
759
760 return num;
761}
762
Grant Likely2dc11582010-08-06 09:25:50 -0600763static int gfar_of_init(struct platform_device *ofdev, struct net_device **pdev)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800764{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800765 const char *model;
766 const char *ctype;
767 const void *mac_addr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000768 int err = 0, i;
769 struct net_device *dev = NULL;
770 struct gfar_private *priv = NULL;
Grant Likely61c7a082010-04-13 16:12:29 -0700771 struct device_node *np = ofdev->dev.of_node;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000772 struct device_node *child = NULL;
Jingchang Lu55917642015-03-13 10:52:32 +0200773 struct property *stash;
774 u32 stash_len = 0;
775 u32 stash_idx = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000776 unsigned int num_tx_qs, num_rx_qs;
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200777 unsigned short mode, poll_mode;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800778
Kevin Hao4b222ca2015-01-28 20:06:48 +0800779 if (!np)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800780 return -ENODEV;
781
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200782 if (of_device_is_compatible(np, "fsl,etsec2")) {
783 mode = MQ_MG_MODE;
784 poll_mode = GFAR_SQ_POLLING;
785 } else {
786 mode = SQ_SG_MODE;
787 poll_mode = GFAR_SQ_POLLING;
788 }
789
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200790 if (mode == SQ_SG_MODE) {
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200791 num_tx_qs = 1;
792 num_rx_qs = 1;
793 } else { /* MQ_MG_MODE */
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200794 /* get the actual number of supported groups */
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100795 unsigned int num_grps = gfar_of_group_count(np);
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200796
797 if (num_grps == 0 || num_grps > MAXGROUPS) {
798 dev_err(&ofdev->dev, "Invalid # of int groups(%d)\n",
799 num_grps);
800 pr_err("Cannot do alloc_etherdev, aborting\n");
801 return -EINVAL;
802 }
803
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200804 if (poll_mode == GFAR_SQ_POLLING) {
Claudiu Manoilc65d7532014-03-21 09:33:17 +0200805 num_tx_qs = num_grps; /* one txq per int group */
806 num_rx_qs = num_grps; /* one rxq per int group */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200807 } else { /* GFAR_MQ_POLLING */
Jingchang Lu55917642015-03-13 10:52:32 +0200808 u32 tx_queues, rx_queues;
809 int ret;
810
811 /* parse the num of HW tx and rx queues */
812 ret = of_property_read_u32(np, "fsl,num_tx_queues",
813 &tx_queues);
814 num_tx_qs = ret ? 1 : tx_queues;
815
816 ret = of_property_read_u32(np, "fsl,num_rx_queues",
817 &rx_queues);
818 num_rx_qs = ret ? 1 : rx_queues;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +0200819 }
820 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000821
822 if (num_tx_qs > MAX_TX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000823 pr_err("num_tx_qs(=%d) greater than MAX_TX_QS(=%d)\n",
824 num_tx_qs, MAX_TX_QS);
825 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000826 return -EINVAL;
827 }
828
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000829 if (num_rx_qs > MAX_RX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000830 pr_err("num_rx_qs(=%d) greater than MAX_RX_QS(=%d)\n",
831 num_rx_qs, MAX_RX_QS);
832 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000833 return -EINVAL;
834 }
835
836 *pdev = alloc_etherdev_mq(sizeof(*priv), num_tx_qs);
837 dev = *pdev;
838 if (NULL == dev)
839 return -ENOMEM;
840
841 priv = netdev_priv(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000842 priv->ndev = dev;
843
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200844 priv->mode = mode;
845 priv->poll_mode = poll_mode;
846
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000847 priv->num_tx_queues = num_tx_qs;
Ben Hutchingsfe069122010-09-27 08:27:37 +0000848 netif_set_real_num_rx_queues(dev, num_rx_qs);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000849 priv->num_rx_queues = num_rx_qs;
Claudiu Manoil20862782014-02-17 12:53:14 +0200850
851 err = gfar_alloc_tx_queues(priv);
852 if (err)
853 goto tx_alloc_failed;
854
855 err = gfar_alloc_rx_queues(priv);
856 if (err)
857 goto rx_alloc_failed;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800858
Jingchang Lu55917642015-03-13 10:52:32 +0200859 err = of_property_read_string(np, "model", &model);
860 if (err) {
861 pr_err("Device model property missing, aborting\n");
862 goto rx_alloc_failed;
863 }
864
Jan Ceuleers0977f812012-06-05 03:42:12 +0000865 /* Init Rx queue filer rule set linked list */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700866 INIT_LIST_HEAD(&priv->rx_list.list);
867 priv->rx_list.count = 0;
868 mutex_init(&priv->rx_queue_access);
869
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000870 for (i = 0; i < MAXGROUPS; i++)
871 priv->gfargrp[i].regs = NULL;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800872
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000873 /* Parse and initialize group specific information */
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200874 if (priv->mode == MQ_MG_MODE) {
Tobias Waldekranzf50724c2015-03-05 14:48:23 +0100875 for_each_available_child_of_node(np, child) {
876 if (of_node_cmp(child->name, "queue-group"))
877 continue;
878
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000879 err = gfar_parse_group(child, priv, model);
880 if (err)
881 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800882 }
Claudiu Manoilb338ce22014-03-11 18:01:24 +0200883 } else { /* SQ_SG_MODE */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000884 err = gfar_parse_group(np, priv, model);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000885 if (err)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000886 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800887 }
888
Jingchang Lu55917642015-03-13 10:52:32 +0200889 stash = of_find_property(np, "bd-stash", NULL);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800890
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000891 if (stash) {
Andy Fleming4d7902f2009-02-04 16:43:44 -0800892 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
893 priv->bd_stash_en = 1;
894 }
895
Jingchang Lu55917642015-03-13 10:52:32 +0200896 err = of_property_read_u32(np, "rx-stash-len", &stash_len);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800897
Jingchang Lu55917642015-03-13 10:52:32 +0200898 if (err == 0)
899 priv->rx_stash_size = stash_len;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800900
Jingchang Lu55917642015-03-13 10:52:32 +0200901 err = of_property_read_u32(np, "rx-stash-idx", &stash_idx);
Andy Fleming4d7902f2009-02-04 16:43:44 -0800902
Jingchang Lu55917642015-03-13 10:52:32 +0200903 if (err == 0)
904 priv->rx_stash_index = stash_idx;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800905
906 if (stash_len || stash_idx)
907 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
908
Andy Flemingb31a1d82008-12-16 15:29:15 -0800909 mac_addr = of_get_mac_address(np);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000910
Andy Flemingb31a1d82008-12-16 15:29:15 -0800911 if (mac_addr)
Joe Perches6a3c910c2011-11-16 09:38:02 +0000912 memcpy(dev->dev_addr, mac_addr, ETH_ALEN);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800913
914 if (model && !strcasecmp(model, "TSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200915 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000916 FSL_GIANFAR_DEV_HAS_COALESCE |
917 FSL_GIANFAR_DEV_HAS_RMON |
918 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
919
Andy Flemingb31a1d82008-12-16 15:29:15 -0800920 if (model && !strcasecmp(model, "eTSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200921 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000922 FSL_GIANFAR_DEV_HAS_COALESCE |
923 FSL_GIANFAR_DEV_HAS_RMON |
924 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000925 FSL_GIANFAR_DEV_HAS_CSUM |
926 FSL_GIANFAR_DEV_HAS_VLAN |
927 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
928 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH |
929 FSL_GIANFAR_DEV_HAS_TIMER;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800930
Jingchang Lu55917642015-03-13 10:52:32 +0200931 err = of_property_read_string(np, "phy-connection-type", &ctype);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800932
933 /* We only care about rgmii-id. The rest are autodetected */
Jingchang Lu55917642015-03-13 10:52:32 +0200934 if (err == 0 && !strcmp(ctype, "rgmii-id"))
Andy Flemingb31a1d82008-12-16 15:29:15 -0800935 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
936 else
937 priv->interface = PHY_INTERFACE_MODE_MII;
938
Jingchang Lu55917642015-03-13 10:52:32 +0200939 if (of_find_property(np, "fsl,magic-packet", NULL))
Andy Flemingb31a1d82008-12-16 15:29:15 -0800940 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
941
Grant Likelyfe192a42009-04-25 12:53:12 +0000942 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800943
Florian Fainellibe403642014-05-22 09:47:48 -0700944 /* In the case of a fixed PHY, the DT node associated
945 * to the PHY is the Ethernet MAC DT node.
946 */
Uwe Kleine-König6f2c9bd2014-08-07 22:17:07 +0200947 if (!priv->phy_node && of_phy_is_fixed_link(np)) {
Florian Fainellibe403642014-05-22 09:47:48 -0700948 err = of_phy_register_fixed_link(np);
949 if (err)
950 goto err_grp_init;
951
Uwe Kleine-König6f2c9bd2014-08-07 22:17:07 +0200952 priv->phy_node = of_node_get(np);
Florian Fainellibe403642014-05-22 09:47:48 -0700953 }
954
Andy Flemingb31a1d82008-12-16 15:29:15 -0800955 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000956 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800957
958 return 0;
959
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000960err_grp_init:
961 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +0200962rx_alloc_failed:
963 gfar_free_rx_queues(priv);
964tx_alloc_failed:
965 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000966 free_gfar_dev(priv);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800967 return err;
968}
969
Ben Hutchingsca0c88c2013-11-18 23:05:27 +0000970static int gfar_hwtstamp_set(struct net_device *netdev, struct ifreq *ifr)
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000971{
972 struct hwtstamp_config config;
973 struct gfar_private *priv = netdev_priv(netdev);
974
975 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
976 return -EFAULT;
977
978 /* reserved for future extensions */
979 if (config.flags)
980 return -EINVAL;
981
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000982 switch (config.tx_type) {
983 case HWTSTAMP_TX_OFF:
984 priv->hwts_tx_en = 0;
985 break;
986 case HWTSTAMP_TX_ON:
987 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
988 return -ERANGE;
989 priv->hwts_tx_en = 1;
990 break;
991 default:
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000992 return -ERANGE;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000993 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000994
995 switch (config.rx_filter) {
996 case HWTSTAMP_FILTER_NONE:
Manfred Rudigier97553f72010-06-11 01:49:05 +0000997 if (priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +0000998 priv->hwts_rx_en = 0;
Claudiu Manoil08511332014-02-24 12:13:45 +0200999 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +00001000 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001001 break;
1002 default:
1003 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
1004 return -ERANGE;
Manfred Rudigier97553f72010-06-11 01:49:05 +00001005 if (!priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +00001006 priv->hwts_rx_en = 1;
Claudiu Manoil08511332014-02-24 12:13:45 +02001007 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +00001008 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001009 config.rx_filter = HWTSTAMP_FILTER_ALL;
1010 break;
1011 }
1012
1013 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1014 -EFAULT : 0;
1015}
1016
Ben Hutchingsca0c88c2013-11-18 23:05:27 +00001017static int gfar_hwtstamp_get(struct net_device *netdev, struct ifreq *ifr)
1018{
1019 struct hwtstamp_config config;
1020 struct gfar_private *priv = netdev_priv(netdev);
1021
1022 config.flags = 0;
1023 config.tx_type = priv->hwts_tx_en ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1024 config.rx_filter = (priv->hwts_rx_en ?
1025 HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE);
1026
1027 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1028 -EFAULT : 0;
1029}
1030
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001031static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1032{
1033 struct gfar_private *priv = netdev_priv(dev);
1034
1035 if (!netif_running(dev))
1036 return -EINVAL;
1037
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001038 if (cmd == SIOCSHWTSTAMP)
Ben Hutchingsca0c88c2013-11-18 23:05:27 +00001039 return gfar_hwtstamp_set(dev, rq);
1040 if (cmd == SIOCGHWTSTAMP)
1041 return gfar_hwtstamp_get(dev, rq);
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001042
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001043 if (!priv->phydev)
1044 return -ENODEV;
1045
Richard Cochran28b04112010-07-17 08:48:55 +00001046 return phy_mii_ioctl(priv->phydev, rq, cmd);
Clifford Wolf0faac9f2009-01-09 10:23:11 +00001047}
1048
Anton Vorontsov18294ad2009-11-04 12:53:00 +00001049static u32 cluster_entry_per_class(struct gfar_private *priv, u32 rqfar,
1050 u32 class)
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001051{
1052 u32 rqfpr = FPR_FILER_MASK;
1053 u32 rqfcr = 0x0;
1054
1055 rqfar--;
1056 rqfcr = RQFCR_CLE | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001057 priv->ftp_rqfpr[rqfar] = rqfpr;
1058 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001059 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1060
1061 rqfar--;
1062 rqfcr = RQFCR_CMP_NOMATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001063 priv->ftp_rqfpr[rqfar] = rqfpr;
1064 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001065 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1066
1067 rqfar--;
1068 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND;
1069 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001070 priv->ftp_rqfcr[rqfar] = rqfcr;
1071 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001072 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1073
1074 rqfar--;
1075 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_MASK | RQFCR_AND;
1076 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001077 priv->ftp_rqfcr[rqfar] = rqfcr;
1078 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001079 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1080
1081 return rqfar;
1082}
1083
1084static void gfar_init_filer_table(struct gfar_private *priv)
1085{
1086 int i = 0x0;
1087 u32 rqfar = MAX_FILER_IDX;
1088 u32 rqfcr = 0x0;
1089 u32 rqfpr = FPR_FILER_MASK;
1090
1091 /* Default rule */
1092 rqfcr = RQFCR_CMP_MATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001093 priv->ftp_rqfcr[rqfar] = rqfcr;
1094 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001095 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
1096
1097 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6);
1098 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_UDP);
1099 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_TCP);
1100 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4);
1101 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_UDP);
1102 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_TCP);
1103
Uwe Kleine-König85dd08e2010-06-11 12:16:55 +02001104 /* cur_filer_idx indicated the first non-masked rule */
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001105 priv->cur_filer_idx = rqfar;
1106
1107 /* Rest are masked rules */
1108 rqfcr = RQFCR_CMP_NOMATCH;
1109 for (i = 0; i < rqfar; i++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +00001110 priv->ftp_rqfcr[i] = rqfcr;
1111 priv->ftp_rqfpr[i] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001112 gfar_write_filer(priv, i, rqfcr, rqfpr);
1113 }
1114}
1115
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001116#ifdef CONFIG_PPC
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001117static void __gfar_detect_errata_83xx(struct gfar_private *priv)
Anton Vorontsov7d350972010-06-30 06:39:12 +00001118{
Anton Vorontsov7d350972010-06-30 06:39:12 +00001119 unsigned int pvr = mfspr(SPRN_PVR);
1120 unsigned int svr = mfspr(SPRN_SVR);
1121 unsigned int mod = (svr >> 16) & 0xfff6; /* w/o E suffix */
1122 unsigned int rev = svr & 0xffff;
1123
1124 /* MPC8313 Rev 2.0 and higher; All MPC837x */
1125 if ((pvr == 0x80850010 && mod == 0x80b0 && rev >= 0x0020) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001126 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001127 priv->errata |= GFAR_ERRATA_74;
1128
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +00001129 /* MPC8313 and MPC837x all rev */
1130 if ((pvr == 0x80850010 && mod == 0x80b0) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001131 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +00001132 priv->errata |= GFAR_ERRATA_76;
1133
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001134 /* MPC8313 Rev < 2.0 */
1135 if (pvr == 0x80850010 && mod == 0x80b0 && rev < 0x0020)
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00001136 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001137}
1138
1139static void __gfar_detect_errata_85xx(struct gfar_private *priv)
1140{
1141 unsigned int svr = mfspr(SPRN_SVR);
1142
1143 if ((SVR_SOC_VER(svr) == SVR_8548) && (SVR_REV(svr) == 0x20))
1144 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil53fad772013-10-09 20:20:42 +03001145 if (((SVR_SOC_VER(svr) == SVR_P2020) && (SVR_REV(svr) < 0x20)) ||
1146 ((SVR_SOC_VER(svr) == SVR_P2010) && (SVR_REV(svr) < 0x20)))
1147 priv->errata |= GFAR_ERRATA_76; /* aka eTSEC 20 */
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001148}
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001149#endif
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001150
1151static void gfar_detect_errata(struct gfar_private *priv)
1152{
1153 struct device *dev = &priv->ofdev->dev;
1154
1155 /* no plans to fix */
1156 priv->errata |= GFAR_ERRATA_A002;
1157
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001158#ifdef CONFIG_PPC
Claudiu Manoil2969b1f2013-10-09 20:20:41 +03001159 if (pvr_version_is(PVR_VER_E500V1) || pvr_version_is(PVR_VER_E500V2))
1160 __gfar_detect_errata_85xx(priv);
1161 else /* non-mpc85xx parts, i.e. e300 core based */
1162 __gfar_detect_errata_83xx(priv);
Claudiu Manoild6ef0bc2014-10-07 10:44:32 +03001163#endif
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00001164
Anton Vorontsov7d350972010-06-30 06:39:12 +00001165 if (priv->errata)
1166 dev_info(dev, "enabled errata workarounds, flags: 0x%x\n",
1167 priv->errata);
1168}
1169
Claudiu Manoil08511332014-02-24 12:13:45 +02001170void gfar_mac_reset(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Claudiu Manoil20862782014-02-17 12:53:14 +02001172 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Claudiu Manoila328ac92014-02-24 12:13:42 +02001173 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 /* Reset MAC layer */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001176 gfar_write(&regs->maccfg1, MACCFG1_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Andy Flemingb98ac702009-02-04 16:38:05 -08001178 /* We need to delay at least 3 TX clocks */
Claudiu Manoila328ac92014-02-24 12:13:42 +02001179 udelay(3);
Andy Flemingb98ac702009-02-04 16:38:05 -08001180
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001181 /* the soft reset bit is not self-resetting, so we need to
1182 * clear it before resuming normal operation
1183 */
Claudiu Manoil20862782014-02-17 12:53:14 +02001184 gfar_write(&regs->maccfg1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Claudiu Manoila328ac92014-02-24 12:13:42 +02001186 udelay(3);
1187
Claudiu Manoil88302642014-02-24 12:13:43 +02001188 /* Compute rx_buff_size based on config flags */
1189 gfar_rx_buff_size_config(priv);
1190
1191 /* Initialize the max receive frame/buffer lengths */
1192 gfar_write(&regs->maxfrm, priv->rx_buffer_size);
Claudiu Manoila328ac92014-02-24 12:13:42 +02001193 gfar_write(&regs->mrblr, priv->rx_buffer_size);
1194
1195 /* Initialize the Minimum Frame Length Register */
1196 gfar_write(&regs->minflr, MINFLR_INIT_SETTINGS);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /* Initialize MACCFG2. */
Anton Vorontsov7d350972010-06-30 06:39:12 +00001199 tempval = MACCFG2_INIT_SETTINGS;
Claudiu Manoil88302642014-02-24 12:13:43 +02001200
1201 /* If the mtu is larger than the max size for standard
1202 * ethernet frames (ie, a jumbo frame), then set maccfg2
1203 * to allow huge frames, and to check the length
1204 */
1205 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE ||
1206 gfar_has_errata(priv, GFAR_ERRATA_74))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001207 tempval |= MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK;
Claudiu Manoil88302642014-02-24 12:13:43 +02001208
Anton Vorontsov7d350972010-06-30 06:39:12 +00001209 gfar_write(&regs->maccfg2, tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Claudiu Manoila328ac92014-02-24 12:13:42 +02001211 /* Clear mac addr hash registers */
1212 gfar_write(&regs->igaddr0, 0);
1213 gfar_write(&regs->igaddr1, 0);
1214 gfar_write(&regs->igaddr2, 0);
1215 gfar_write(&regs->igaddr3, 0);
1216 gfar_write(&regs->igaddr4, 0);
1217 gfar_write(&regs->igaddr5, 0);
1218 gfar_write(&regs->igaddr6, 0);
1219 gfar_write(&regs->igaddr7, 0);
1220
1221 gfar_write(&regs->gaddr0, 0);
1222 gfar_write(&regs->gaddr1, 0);
1223 gfar_write(&regs->gaddr2, 0);
1224 gfar_write(&regs->gaddr3, 0);
1225 gfar_write(&regs->gaddr4, 0);
1226 gfar_write(&regs->gaddr5, 0);
1227 gfar_write(&regs->gaddr6, 0);
1228 gfar_write(&regs->gaddr7, 0);
1229
1230 if (priv->extended_hash)
1231 gfar_clear_exact_match(priv->ndev);
1232
1233 gfar_mac_rx_config(priv);
1234
1235 gfar_mac_tx_config(priv);
1236
1237 gfar_set_mac_address(priv->ndev);
1238
1239 gfar_set_multi(priv->ndev);
1240
1241 /* clear ievent and imask before configuring coalescing */
1242 gfar_ints_disable(priv);
1243
1244 /* Configure the coalescing support */
1245 gfar_configure_coalescing_all(priv);
1246}
1247
1248static void gfar_hw_init(struct gfar_private *priv)
1249{
1250 struct gfar __iomem *regs = priv->gfargrp[0].regs;
1251 u32 attrs;
1252
1253 /* Stop the DMA engine now, in case it was running before
1254 * (The firmware could have used it, and left it running).
1255 */
1256 gfar_halt(priv);
1257
1258 gfar_mac_reset(priv);
1259
1260 /* Zero out the rmon mib registers if it has them */
1261 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
1262 memset_io(&(regs->rmon), 0, sizeof(struct rmon_mib));
1263
1264 /* Mask off the CAM interrupts */
1265 gfar_write(&regs->rmon.cam1, 0xffffffff);
1266 gfar_write(&regs->rmon.cam2, 0xffffffff);
1267 }
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /* Initialize ECNTRL */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001270 gfar_write(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Claudiu Manoil34018fd2014-02-17 12:53:15 +02001272 /* Set the extraction length and index */
1273 attrs = ATTRELI_EL(priv->rx_stash_size) |
1274 ATTRELI_EI(priv->rx_stash_index);
1275
1276 gfar_write(&regs->attreli, attrs);
1277
1278 /* Start with defaults, and add stashing
1279 * depending on driver parameters
1280 */
1281 attrs = ATTR_INIT_SETTINGS;
1282
1283 if (priv->bd_stash_en)
1284 attrs |= ATTR_BDSTASH;
1285
1286 if (priv->rx_stash_size != 0)
1287 attrs |= ATTR_BUFSTASH;
1288
1289 gfar_write(&regs->attr, attrs);
1290
1291 /* FIFO configs */
1292 gfar_write(&regs->fifo_tx_thr, DEFAULT_FIFO_TX_THR);
1293 gfar_write(&regs->fifo_tx_starve, DEFAULT_FIFO_TX_STARVE);
1294 gfar_write(&regs->fifo_tx_starve_shutoff, DEFAULT_FIFO_TX_STARVE_OFF);
1295
Claudiu Manoil20862782014-02-17 12:53:14 +02001296 /* Program the interrupt steering regs, only for MG devices */
1297 if (priv->num_grps > 1)
1298 gfar_write_isrg(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001299}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Xiubo Li898157e2014-06-04 16:49:16 +08001301static void gfar_init_addr_hash_table(struct gfar_private *priv)
Claudiu Manoil20862782014-02-17 12:53:14 +02001302{
1303 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001304
Andy Flemingb31a1d82008-12-16 15:29:15 -08001305 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001306 priv->extended_hash = 1;
1307 priv->hash_width = 9;
1308
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001309 priv->hash_regs[0] = &regs->igaddr0;
1310 priv->hash_regs[1] = &regs->igaddr1;
1311 priv->hash_regs[2] = &regs->igaddr2;
1312 priv->hash_regs[3] = &regs->igaddr3;
1313 priv->hash_regs[4] = &regs->igaddr4;
1314 priv->hash_regs[5] = &regs->igaddr5;
1315 priv->hash_regs[6] = &regs->igaddr6;
1316 priv->hash_regs[7] = &regs->igaddr7;
1317 priv->hash_regs[8] = &regs->gaddr0;
1318 priv->hash_regs[9] = &regs->gaddr1;
1319 priv->hash_regs[10] = &regs->gaddr2;
1320 priv->hash_regs[11] = &regs->gaddr3;
1321 priv->hash_regs[12] = &regs->gaddr4;
1322 priv->hash_regs[13] = &regs->gaddr5;
1323 priv->hash_regs[14] = &regs->gaddr6;
1324 priv->hash_regs[15] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001325
1326 } else {
1327 priv->extended_hash = 0;
1328 priv->hash_width = 8;
1329
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001330 priv->hash_regs[0] = &regs->gaddr0;
1331 priv->hash_regs[1] = &regs->gaddr1;
1332 priv->hash_regs[2] = &regs->gaddr2;
1333 priv->hash_regs[3] = &regs->gaddr3;
1334 priv->hash_regs[4] = &regs->gaddr4;
1335 priv->hash_regs[5] = &regs->gaddr5;
1336 priv->hash_regs[6] = &regs->gaddr6;
1337 priv->hash_regs[7] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001338 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001339}
1340
1341/* Set up the ethernet device structure, private data,
1342 * and anything else we need before we start
1343 */
1344static int gfar_probe(struct platform_device *ofdev)
1345{
1346 struct net_device *dev = NULL;
1347 struct gfar_private *priv = NULL;
1348 int err = 0, i;
1349
1350 err = gfar_of_init(ofdev, &dev);
1351
1352 if (err)
1353 return err;
1354
1355 priv = netdev_priv(dev);
1356 priv->ndev = dev;
1357 priv->ofdev = ofdev;
1358 priv->dev = &ofdev->dev;
1359 SET_NETDEV_DEV(dev, &ofdev->dev);
1360
1361 spin_lock_init(&priv->bflock);
1362 INIT_WORK(&priv->reset_task, gfar_reset_task);
1363
1364 platform_set_drvdata(ofdev, priv);
1365
1366 gfar_detect_errata(priv);
1367
Claudiu Manoil20862782014-02-17 12:53:14 +02001368 /* Set the dev->base_addr to the gfar reg region */
1369 dev->base_addr = (unsigned long) priv->gfargrp[0].regs;
1370
1371 /* Fill in the dev structure */
1372 dev->watchdog_timeo = TX_TIMEOUT;
1373 dev->mtu = 1500;
1374 dev->netdev_ops = &gfar_netdev_ops;
1375 dev->ethtool_ops = &gfar_ethtool_ops;
1376
1377 /* Register for napi ...We are registering NAPI for each grp */
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02001378 for (i = 0; i < priv->num_grps; i++) {
1379 if (priv->poll_mode == GFAR_SQ_POLLING) {
1380 netif_napi_add(dev, &priv->gfargrp[i].napi_rx,
1381 gfar_poll_rx_sq, GFAR_DEV_WEIGHT);
1382 netif_napi_add(dev, &priv->gfargrp[i].napi_tx,
1383 gfar_poll_tx_sq, 2);
1384 } else {
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02001385 netif_napi_add(dev, &priv->gfargrp[i].napi_rx,
1386 gfar_poll_rx, GFAR_DEV_WEIGHT);
1387 netif_napi_add(dev, &priv->gfargrp[i].napi_tx,
1388 gfar_poll_tx, 2);
1389 }
1390 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001391
1392 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
1393 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
1394 NETIF_F_RXCSUM;
1395 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG |
1396 NETIF_F_RXCSUM | NETIF_F_HIGHDMA;
1397 }
1398
1399 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) {
1400 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX |
1401 NETIF_F_HW_VLAN_CTAG_RX;
1402 dev->features |= NETIF_F_HW_VLAN_CTAG_RX;
1403 }
1404
Claudiu Manoil3d23a052015-05-06 18:07:30 +03001405 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1406
Claudiu Manoil20862782014-02-17 12:53:14 +02001407 gfar_init_addr_hash_table(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001408
Claudiu Manoil532c37b2014-02-17 12:53:16 +02001409 /* Insert receive time stamps into padding alignment bytes */
1410 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
1411 priv->padding = 8;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001412
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001413 if (dev->features & NETIF_F_IP_CSUM ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001414 priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
Wu Jiajun-B06378bee9e582012-05-21 23:00:48 +00001415 dev->needed_headroom = GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001419 /* Initializing some of the rx/tx queue level parameters */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001420 for (i = 0; i < priv->num_tx_queues; i++) {
1421 priv->tx_queue[i]->tx_ring_size = DEFAULT_TX_RING_SIZE;
1422 priv->tx_queue[i]->num_txbdfree = DEFAULT_TX_RING_SIZE;
1423 priv->tx_queue[i]->txcoalescing = DEFAULT_TX_COALESCE;
1424 priv->tx_queue[i]->txic = DEFAULT_TXIC;
1425 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001426
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001427 for (i = 0; i < priv->num_rx_queues; i++) {
1428 priv->rx_queue[i]->rx_ring_size = DEFAULT_RX_RING_SIZE;
1429 priv->rx_queue[i]->rxcoalescing = DEFAULT_RX_COALESCE;
1430 priv->rx_queue[i]->rxic = DEFAULT_RXIC;
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Jan Ceuleers0977f812012-06-05 03:42:12 +00001433 /* always enable rx filer */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001434 priv->rx_filer_enable = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001435 /* Enable most messages by default */
1436 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +00001437 /* use pritority h/w tx queue scheduling for single queue devices */
1438 if (priv->num_tx_queues == 1)
1439 priv->prio_sched_en = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001440
Claudiu Manoil08511332014-02-24 12:13:45 +02001441 set_bit(GFAR_DOWN, &priv->state);
1442
Claudiu Manoila328ac92014-02-24 12:13:42 +02001443 gfar_hw_init(priv);
Trent Piephod3eab822008-10-02 11:12:24 +00001444
Fabio Estevamd4c642e2014-06-03 19:55:38 -03001445 /* Carrier starts down, phylib will bring it up */
1446 netif_carrier_off(dev);
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 err = register_netdev(dev);
1449
1450 if (err) {
Joe Perches59deab22011-06-14 08:57:47 +00001451 pr_err("%s: Cannot register net device, aborting\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 goto register_fail;
1453 }
1454
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001455 device_init_wakeup(&dev->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001456 priv->device_flags &
1457 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001458
Dai Harukic50a5d92008-12-17 16:51:32 -08001459 /* fill out IRQ number and name fields */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001460 for (i = 0; i < priv->num_grps; i++) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001461 struct gfar_priv_grp *grp = &priv->gfargrp[i];
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001462 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001463 sprintf(gfar_irq(grp, TX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001464 dev->name, "_g", '0' + i, "_tx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001465 sprintf(gfar_irq(grp, RX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001466 dev->name, "_g", '0' + i, "_rx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001467 sprintf(gfar_irq(grp, ER)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001468 dev->name, "_g", '0' + i, "_er");
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001469 } else
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001470 strcpy(gfar_irq(grp, TX)->name, dev->name);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001471 }
Dai Harukic50a5d92008-12-17 16:51:32 -08001472
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001473 /* Initialize the filer table */
1474 gfar_init_filer_table(priv);
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 /* Print out the device info */
Joe Perches59deab22011-06-14 08:57:47 +00001477 netdev_info(dev, "mac: %pM\n", dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Jan Ceuleers0977f812012-06-05 03:42:12 +00001479 /* Even more device info helps when determining which kernel
1480 * provided which set of benchmarks.
1481 */
Joe Perches59deab22011-06-14 08:57:47 +00001482 netdev_info(dev, "Running with NAPI enabled\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001483 for (i = 0; i < priv->num_rx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001484 netdev_info(dev, "RX BD ring size for Q[%d]: %d\n",
1485 i, priv->rx_queue[i]->rx_ring_size);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001486 for (i = 0; i < priv->num_tx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001487 netdev_info(dev, "TX BD ring size for Q[%d]: %d\n",
1488 i, priv->tx_queue[i]->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 return 0;
1491
1492register_fail:
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001493 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001494 gfar_free_rx_queues(priv);
1495 gfar_free_tx_queues(priv);
Uwe Kleine-König888c88b2014-08-07 21:20:12 +02001496 of_node_put(priv->phy_node);
1497 of_node_put(priv->tbi_node);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001498 free_gfar_dev(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001499 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Grant Likely2dc11582010-08-06 09:25:50 -06001502static int gfar_remove(struct platform_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Jingoo Han8513fbd2013-05-23 00:52:31 +00001504 struct gfar_private *priv = platform_get_drvdata(ofdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Uwe Kleine-König888c88b2014-08-07 21:20:12 +02001506 of_node_put(priv->phy_node);
1507 of_node_put(priv->tbi_node);
Grant Likelyfe192a42009-04-25 12:53:12 +00001508
David S. Millerd9d8e042009-09-06 01:41:02 -07001509 unregister_netdev(priv->ndev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001510 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001511 gfar_free_rx_queues(priv);
1512 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001513 free_gfar_dev(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 return 0;
1516}
1517
Scott Woodd87eb122008-07-11 18:04:45 -05001518#ifdef CONFIG_PM
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001519
1520static int gfar_suspend(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001521{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001522 struct gfar_private *priv = dev_get_drvdata(dev);
1523 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001524 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001525 unsigned long flags;
1526 u32 tempval;
1527
1528 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
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001532 netif_device_detach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001533
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001534 if (netif_running(ndev)) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001535
1536 local_irq_save(flags);
1537 lock_tx_qs(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001538
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001539 gfar_halt_nodisable(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001540
1541 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001542 tempval = gfar_read(&regs->maccfg1);
Scott Woodd87eb122008-07-11 18:04:45 -05001543
1544 tempval &= ~MACCFG1_TX_EN;
1545
1546 if (!magic_packet)
1547 tempval &= ~MACCFG1_RX_EN;
1548
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001549 gfar_write(&regs->maccfg1, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001550
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001551 unlock_tx_qs(priv);
1552 local_irq_restore(flags);
Scott Woodd87eb122008-07-11 18:04:45 -05001553
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001554 disable_napi(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001555
1556 if (magic_packet) {
1557 /* Enable interrupt on Magic Packet */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001558 gfar_write(&regs->imask, IMASK_MAG);
Scott Woodd87eb122008-07-11 18:04:45 -05001559
1560 /* Enable Magic Packet mode */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001561 tempval = gfar_read(&regs->maccfg2);
Scott Woodd87eb122008-07-11 18:04:45 -05001562 tempval |= MACCFG2_MPEN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001563 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001564 } else {
1565 phy_stop(priv->phydev);
1566 }
1567 }
1568
1569 return 0;
1570}
1571
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001572static int gfar_resume(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001573{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001574 struct gfar_private *priv = dev_get_drvdata(dev);
1575 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001576 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001577 unsigned long flags;
1578 u32 tempval;
1579 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001580 (priv->device_flags &
1581 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001582
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001583 if (!netif_running(ndev)) {
1584 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001585 return 0;
1586 }
1587
1588 if (!magic_packet && priv->phydev)
1589 phy_start(priv->phydev);
1590
1591 /* Disable Magic Packet mode, in case something
1592 * else woke us up.
1593 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001594 local_irq_save(flags);
1595 lock_tx_qs(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001596
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001597 tempval = gfar_read(&regs->maccfg2);
Scott Woodd87eb122008-07-11 18:04:45 -05001598 tempval &= ~MACCFG2_MPEN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001599 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001600
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001601 gfar_start(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001602
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001603 unlock_tx_qs(priv);
1604 local_irq_restore(flags);
Scott Woodd87eb122008-07-11 18:04:45 -05001605
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001606 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001607
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001608 enable_napi(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001609
1610 return 0;
1611}
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001612
1613static int gfar_restore(struct device *dev)
1614{
1615 struct gfar_private *priv = dev_get_drvdata(dev);
1616 struct net_device *ndev = priv->ndev;
1617
Wang Dongsheng103cdd12012-11-09 04:43:51 +00001618 if (!netif_running(ndev)) {
1619 netif_device_attach(ndev);
1620
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001621 return 0;
Wang Dongsheng103cdd12012-11-09 04:43:51 +00001622 }
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001623
Claudiu Manoil76f31e82015-07-13 16:22:03 +03001624 gfar_init_bds(ndev);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001625
Claudiu Manoila328ac92014-02-24 12:13:42 +02001626 gfar_mac_reset(priv);
1627
1628 gfar_init_tx_rx_base(priv);
1629
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001630 gfar_start(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001631
1632 priv->oldlink = 0;
1633 priv->oldspeed = 0;
1634 priv->oldduplex = -1;
1635
1636 if (priv->phydev)
1637 phy_start(priv->phydev);
1638
1639 netif_device_attach(ndev);
Anton Vorontsov5ea681d2009-11-10 14:11:05 +00001640 enable_napi(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001641
1642 return 0;
1643}
1644
1645static struct dev_pm_ops gfar_pm_ops = {
1646 .suspend = gfar_suspend,
1647 .resume = gfar_resume,
1648 .freeze = gfar_suspend,
1649 .thaw = gfar_resume,
1650 .restore = gfar_restore,
1651};
1652
1653#define GFAR_PM_OPS (&gfar_pm_ops)
1654
Scott Woodd87eb122008-07-11 18:04:45 -05001655#else
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001656
1657#define GFAR_PM_OPS NULL
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001658
Scott Woodd87eb122008-07-11 18:04:45 -05001659#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001661/* Reads the controller's registers to determine what interface
1662 * connects it to the PHY.
1663 */
1664static phy_interface_t gfar_get_interface(struct net_device *dev)
1665{
1666 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001667 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001668 u32 ecntrl;
1669
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001670 ecntrl = gfar_read(&regs->ecntrl);
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001671
1672 if (ecntrl & ECNTRL_SGMII_MODE)
1673 return PHY_INTERFACE_MODE_SGMII;
1674
1675 if (ecntrl & ECNTRL_TBI_MODE) {
1676 if (ecntrl & ECNTRL_REDUCED_MODE)
1677 return PHY_INTERFACE_MODE_RTBI;
1678 else
1679 return PHY_INTERFACE_MODE_TBI;
1680 }
1681
1682 if (ecntrl & ECNTRL_REDUCED_MODE) {
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001683 if (ecntrl & ECNTRL_REDUCED_MII_MODE) {
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001684 return PHY_INTERFACE_MODE_RMII;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001685 }
Andy Fleming7132ab72007-07-11 11:43:07 -05001686 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -08001687 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -05001688
Jan Ceuleers0977f812012-06-05 03:42:12 +00001689 /* This isn't autodetected right now, so it must
Andy Fleming7132ab72007-07-11 11:43:07 -05001690 * be set by the device tree or platform code.
1691 */
1692 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
1693 return PHY_INTERFACE_MODE_RGMII_ID;
1694
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001695 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -05001696 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001697 }
1698
Andy Flemingb31a1d82008-12-16 15:29:15 -08001699 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001700 return PHY_INTERFACE_MODE_GMII;
1701
1702 return PHY_INTERFACE_MODE_MII;
1703}
1704
1705
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001706/* Initializes driver's PHY state, and attaches to the PHY.
1707 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 */
1709static int init_phy(struct net_device *dev)
1710{
1711 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001712 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -08001713 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001714 GFAR_SUPPORTED_GBIT : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001715 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 priv->oldlink = 0;
1718 priv->oldspeed = 0;
1719 priv->oldduplex = -1;
1720
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001721 interface = gfar_get_interface(dev);
1722
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001723 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
1724 interface);
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001725 if (!priv->phydev) {
1726 dev_err(&dev->dev, "could not attach to PHY\n");
1727 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +00001728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Kapil Junejad3c12872007-05-11 18:25:11 -05001730 if (interface == PHY_INTERFACE_MODE_SGMII)
1731 gfar_configure_serdes(dev);
1732
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001733 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +00001734 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
1735 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Pavaluca Matei-B46610cf987af2014-10-27 10:42:42 +02001737 /* Add support for flow control, but don't advertise it by default */
1738 priv->phydev->supported |= (SUPPORTED_Pause | SUPPORTED_Asym_Pause);
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Jan Ceuleers0977f812012-06-05 03:42:12 +00001743/* Initialize TBI PHY interface for communicating with the
Paul Gortmakerd0313582008-04-17 00:08:10 -04001744 * SERDES lynx PHY on the chip. We communicate with this PHY
1745 * through the MDIO bus on each controller, treating it as a
1746 * "normal" PHY at the address found in the TBIPA register. We assume
1747 * that the TBIPA register is valid. Either the MDIO bus code will set
1748 * it to a value that doesn't conflict with other PHYs on the bus, or the
1749 * value doesn't matter, as there are no other PHYs on the bus.
1750 */
Kapil Junejad3c12872007-05-11 18:25:11 -05001751static void gfar_configure_serdes(struct net_device *dev)
1752{
1753 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +00001754 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -07001755
Grant Likelyfe192a42009-04-25 12:53:12 +00001756 if (!priv->tbi_node) {
1757 dev_warn(&dev->dev, "error: SGMII mode requires that the "
1758 "device tree specify a tbi-handle\n");
1759 return;
1760 }
1761
1762 tbiphy = of_phy_find_device(priv->tbi_node);
1763 if (!tbiphy) {
1764 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -08001765 return;
1766 }
Kapil Junejad3c12872007-05-11 18:25:11 -05001767
Jan Ceuleers0977f812012-06-05 03:42:12 +00001768 /* If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -07001769 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1770 * everything for us? Resetting it takes the link down and requires
1771 * several seconds for it to come back.
1772 */
Grant Likelyfe192a42009-04-25 12:53:12 +00001773 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -08001774 return;
Kapil Junejad3c12872007-05-11 18:25:11 -05001775
Paul Gortmakerd0313582008-04-17 00:08:10 -04001776 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +00001777 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -05001778
Grant Likelyfe192a42009-04-25 12:53:12 +00001779 phy_write(tbiphy, MII_ADVERTISE,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001780 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1781 ADVERTISE_1000XPSE_ASYM);
Kapil Junejad3c12872007-05-11 18:25:11 -05001782
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001783 phy_write(tbiphy, MII_BMCR,
1784 BMCR_ANENABLE | BMCR_ANRESTART | BMCR_FULLDPLX |
1785 BMCR_SPEED1000);
Kapil Junejad3c12872007-05-11 18:25:11 -05001786}
1787
Anton Vorontsov511d9342010-06-30 06:39:15 +00001788static int __gfar_is_rx_idle(struct gfar_private *priv)
1789{
1790 u32 res;
1791
Jan Ceuleers0977f812012-06-05 03:42:12 +00001792 /* Normaly TSEC should not hang on GRS commands, so we should
Anton Vorontsov511d9342010-06-30 06:39:15 +00001793 * actually wait for IEVENT_GRSC flag.
1794 */
Claudiu Manoilad3660c2013-10-09 20:20:40 +03001795 if (!gfar_has_errata(priv, GFAR_ERRATA_A002))
Anton Vorontsov511d9342010-06-30 06:39:15 +00001796 return 0;
1797
Jan Ceuleers0977f812012-06-05 03:42:12 +00001798 /* Read the eTSEC register at offset 0xD1C. If bits 7-14 are
Anton Vorontsov511d9342010-06-30 06:39:15 +00001799 * the same as bits 23-30, the eTSEC Rx is assumed to be idle
1800 * and the Rx can be safely reset.
1801 */
1802 res = gfar_read((void __iomem *)priv->gfargrp[0].regs + 0xd1c);
1803 res &= 0x7f807f80;
1804 if ((res & 0xffff) == (res >> 16))
1805 return 1;
1806
1807 return 0;
1808}
Kumar Gala0bbaf062005-06-20 10:54:21 -05001809
1810/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001811static void gfar_halt_nodisable(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001813 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 u32 tempval;
Claudiu Manoila4feee82014-10-07 10:44:34 +03001815 unsigned int timeout;
1816 int stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001818 gfar_ints_disable(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Claudiu Manoila4feee82014-10-07 10:44:34 +03001820 if (gfar_is_dma_stopped(priv))
1821 return;
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 /* Stop the DMA, and wait for it to stop */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001824 tempval = gfar_read(&regs->dmactrl);
Claudiu Manoila4feee82014-10-07 10:44:34 +03001825 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
1826 gfar_write(&regs->dmactrl, tempval);
Anton Vorontsov511d9342010-06-30 06:39:15 +00001827
Claudiu Manoila4feee82014-10-07 10:44:34 +03001828retry:
1829 timeout = 1000;
1830 while (!(stopped = gfar_is_dma_stopped(priv)) && timeout) {
1831 cpu_relax();
1832 timeout--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
Claudiu Manoila4feee82014-10-07 10:44:34 +03001834
1835 if (!timeout)
1836 stopped = gfar_is_dma_stopped(priv);
1837
1838 if (!stopped && !gfar_is_rx_dma_stopped(priv) &&
1839 !__gfar_is_rx_idle(priv))
1840 goto retry;
Scott Woodd87eb122008-07-11 18:04:45 -05001841}
Scott Woodd87eb122008-07-11 18:04:45 -05001842
1843/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001844void gfar_halt(struct gfar_private *priv)
Scott Woodd87eb122008-07-11 18:04:45 -05001845{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001846 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001847 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001849 /* Dissable the Rx/Tx hw queues */
1850 gfar_write(&regs->rqueue, 0);
1851 gfar_write(&regs->tqueue, 0);
Scott Wood2a54adc2008-08-12 15:10:46 -05001852
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001853 mdelay(10);
1854
1855 gfar_halt_nodisable(priv);
1856
1857 /* Disable Rx/Tx DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 tempval = gfar_read(&regs->maccfg1);
1859 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
1860 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001861}
1862
1863void stop_gfar(struct net_device *dev)
1864{
1865 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001866
Claudiu Manoil08511332014-02-24 12:13:45 +02001867 netif_tx_stop_all_queues(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001868
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001869 smp_mb__before_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02001870 set_bit(GFAR_DOWN, &priv->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001871 smp_mb__after_atomic();
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001872
Claudiu Manoil08511332014-02-24 12:13:45 +02001873 disable_napi(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001874
Claudiu Manoil08511332014-02-24 12:13:45 +02001875 /* disable ints and gracefully shut down Rx/Tx DMA */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001876 gfar_halt(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Claudiu Manoil08511332014-02-24 12:13:45 +02001878 phy_stop(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001883static void free_skb_tx_queue(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 struct txbd8 *txbdp;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001886 struct gfar_private *priv = netdev_priv(tx_queue->dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001887 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001889 txbdp = tx_queue->tx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001891 for (i = 0; i < tx_queue->tx_ring_size; i++) {
1892 if (!tx_queue->tx_skbuff[i])
Dai Haruki4669bc92008-12-17 16:51:04 -08001893 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Claudiu Manoila7312d52015-03-13 10:36:28 +02001895 dma_unmap_single(priv->dev, be32_to_cpu(txbdp->bufPtr),
1896 be16_to_cpu(txbdp->length), DMA_TO_DEVICE);
Dai Haruki4669bc92008-12-17 16:51:04 -08001897 txbdp->lstatus = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001898 for (j = 0; j < skb_shinfo(tx_queue->tx_skbuff[i])->nr_frags;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001899 j++) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001900 txbdp++;
Claudiu Manoila7312d52015-03-13 10:36:28 +02001901 dma_unmap_page(priv->dev, be32_to_cpu(txbdp->bufPtr),
1902 be16_to_cpu(txbdp->length),
1903 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
Andy Flemingad5da7a2008-05-07 13:20:55 -05001905 txbdp++;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001906 dev_kfree_skb_any(tx_queue->tx_skbuff[i]);
1907 tx_queue->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001909 kfree(tx_queue->tx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001910 tx_queue->tx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001911}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001913static void free_skb_rx_queue(struct gfar_priv_rx_q *rx_queue)
1914{
1915 struct rxbd8 *rxbdp;
1916 struct gfar_private *priv = netdev_priv(rx_queue->dev);
1917 int i;
1918
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001919 rxbdp = rx_queue->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001921 for (i = 0; i < rx_queue->rx_ring_size; i++) {
1922 if (rx_queue->rx_skbuff[i]) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02001923 dma_unmap_single(priv->dev, be32_to_cpu(rxbdp->bufPtr),
Claudiu Manoil369ec162013-02-14 05:00:02 +00001924 priv->rx_buffer_size,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001925 DMA_FROM_DEVICE);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001926 dev_kfree_skb_any(rx_queue->rx_skbuff[i]);
1927 rx_queue->rx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
Anton Vorontsove69edd22009-10-12 06:00:30 +00001929 rxbdp->lstatus = 0;
1930 rxbdp->bufPtr = 0;
1931 rxbdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001933 kfree(rx_queue->rx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001934 rx_queue->rx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001935}
Anton Vorontsove69edd22009-10-12 06:00:30 +00001936
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001937/* If there are any tx skbs or rx skbs still around, free them.
Jan Ceuleers0977f812012-06-05 03:42:12 +00001938 * Then free tx_skbuff and rx_skbuff
1939 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001940static void free_skb_resources(struct gfar_private *priv)
1941{
1942 struct gfar_priv_tx_q *tx_queue = NULL;
1943 struct gfar_priv_rx_q *rx_queue = NULL;
1944 int i;
1945
1946 /* Go through all the buffer descriptors and free their data buffers */
1947 for (i = 0; i < priv->num_tx_queues; i++) {
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001948 struct netdev_queue *txq;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001949
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001950 tx_queue = priv->tx_queue[i];
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001951 txq = netdev_get_tx_queue(tx_queue->dev, tx_queue->qindex);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001952 if (tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001953 free_skb_tx_queue(tx_queue);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001954 netdev_tx_reset_queue(txq);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001955 }
1956
1957 for (i = 0; i < priv->num_rx_queues; i++) {
1958 rx_queue = priv->rx_queue[i];
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001959 if (rx_queue->rx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001960 free_skb_rx_queue(rx_queue);
1961 }
1962
Claudiu Manoil369ec162013-02-14 05:00:02 +00001963 dma_free_coherent(priv->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001964 sizeof(struct txbd8) * priv->total_tx_ring_size +
1965 sizeof(struct rxbd8) * priv->total_rx_ring_size,
1966 priv->tx_queue[0]->tx_bd_base,
1967 priv->tx_queue[0]->tx_bd_dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968}
1969
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001970void gfar_start(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001971{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001972 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001973 u32 tempval;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001974 int i = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001975
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001976 /* Enable Rx/Tx hw queues */
1977 gfar_write(&regs->rqueue, priv->rqueue);
1978 gfar_write(&regs->tqueue, priv->tqueue);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001979
1980 /* Initialize DMACTRL to have WWR and WOP */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001981 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001982 tempval |= DMACTRL_INIT_SETTINGS;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001983 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001984
Kumar Gala0bbaf062005-06-20 10:54:21 -05001985 /* Make sure we aren't stopped */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001986 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001987 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001988 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001989
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001990 for (i = 0; i < priv->num_grps; i++) {
1991 regs = priv->gfargrp[i].regs;
1992 /* Clear THLT/RHLT, so that the DMA starts polling now */
1993 gfar_write(&regs->tstat, priv->gfargrp[i].tstat);
1994 gfar_write(&regs->rstat, priv->gfargrp[i].rstat);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001995 }
Dai Haruki12dea572008-12-16 15:30:20 -08001996
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001997 /* Enable Rx/Tx DMA */
1998 tempval = gfar_read(&regs->maccfg1);
1999 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
2000 gfar_write(&regs->maccfg1, tempval);
2001
Claudiu Manoilefeddce2014-02-17 12:53:17 +02002002 gfar_ints_enable(priv);
2003
Claudiu Manoilc10650b2014-02-17 12:53:18 +02002004 priv->ndev->trans_start = jiffies; /* prevent tx timeout */
Kumar Gala0bbaf062005-06-20 10:54:21 -05002005}
2006
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002007static void free_grp_irqs(struct gfar_priv_grp *grp)
2008{
2009 free_irq(gfar_irq(grp, TX)->irq, grp);
2010 free_irq(gfar_irq(grp, RX)->irq, grp);
2011 free_irq(gfar_irq(grp, ER)->irq, grp);
2012}
2013
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002014static int register_grp_irqs(struct gfar_priv_grp *grp)
2015{
2016 struct gfar_private *priv = grp->priv;
2017 struct net_device *dev = priv->ndev;
Anton Vorontsovccc05c62009-10-12 06:00:26 +00002018 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 /* If the device has multiple interrupts, register for
Jan Ceuleers0977f812012-06-05 03:42:12 +00002021 * them. Otherwise, only register for the one
2022 */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002023 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05002024 /* Install our interrupt handlers for Error,
Jan Ceuleers0977f812012-06-05 03:42:12 +00002025 * Transmit, and Receive
2026 */
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002027 err = request_irq(gfar_irq(grp, ER)->irq, gfar_error, 0,
2028 gfar_irq(grp, ER)->name, grp);
2029 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002030 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002031 gfar_irq(grp, ER)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002032
Julia Lawall2145f1a2010-08-05 10:26:20 +00002033 goto err_irq_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002035 err = request_irq(gfar_irq(grp, TX)->irq, gfar_transmit, 0,
2036 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 tx_irq_fail;
2041 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002042 err = request_irq(gfar_irq(grp, RX)->irq, gfar_receive, 0,
2043 gfar_irq(grp, RX)->name, grp);
2044 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002045 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002046 gfar_irq(grp, RX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 goto rx_irq_fail;
2048 }
2049 } else {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002050 err = request_irq(gfar_irq(grp, TX)->irq, gfar_interrupt, 0,
2051 gfar_irq(grp, TX)->name, grp);
2052 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00002053 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002054 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 goto err_irq_fail;
2056 }
2057 }
2058
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002059 return 0;
2060
2061rx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002062 free_irq(gfar_irq(grp, TX)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002063tx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00002064 free_irq(gfar_irq(grp, ER)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002065err_irq_fail:
2066 return err;
2067
2068}
2069
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002070static void gfar_free_irq(struct gfar_private *priv)
2071{
2072 int i;
2073
2074 /* Free the IRQs */
2075 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
2076 for (i = 0; i < priv->num_grps; i++)
2077 free_grp_irqs(&priv->gfargrp[i]);
2078 } else {
2079 for (i = 0; i < priv->num_grps; i++)
2080 free_irq(gfar_irq(&priv->gfargrp[i], TX)->irq,
2081 &priv->gfargrp[i]);
2082 }
2083}
2084
2085static int gfar_request_irq(struct gfar_private *priv)
2086{
2087 int err, i, j;
2088
2089 for (i = 0; i < priv->num_grps; i++) {
2090 err = register_grp_irqs(&priv->gfargrp[i]);
2091 if (err) {
2092 for (j = 0; j < i; j++)
2093 free_grp_irqs(&priv->gfargrp[j]);
2094 return err;
2095 }
2096 }
2097
2098 return 0;
2099}
2100
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002101/* Bring the controller up and running */
2102int startup_gfar(struct net_device *ndev)
2103{
2104 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002105 int err;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002106
Claudiu Manoila328ac92014-02-24 12:13:42 +02002107 gfar_mac_reset(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002108
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002109 err = gfar_alloc_skb_resources(ndev);
2110 if (err)
2111 return err;
2112
Claudiu Manoila328ac92014-02-24 12:13:42 +02002113 gfar_init_tx_rx_base(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002114
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002115 smp_mb__before_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02002116 clear_bit(GFAR_DOWN, &priv->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002117 smp_mb__after_atomic();
Claudiu Manoil08511332014-02-24 12:13:45 +02002118
2119 /* Start Rx/Tx DMA and enable the interrupts */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02002120 gfar_start(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00002122 phy_start(priv->phydev);
2123
Claudiu Manoil08511332014-02-24 12:13:45 +02002124 enable_napi(priv);
2125
2126 netif_tx_wake_all_queues(ndev);
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
Jan Ceuleers0977f812012-06-05 03:42:12 +00002131/* Called when something needs to use the ethernet device
2132 * Returns 0 for success.
2133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134static int gfar_enet_open(struct net_device *dev)
2135{
Li Yang94e8cc32007-10-12 21:53:51 +08002136 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 int err;
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 err = init_phy(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002140 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return err;
2142
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002143 err = gfar_request_irq(priv);
2144 if (err)
2145 return err;
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 err = startup_gfar(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002148 if (err)
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04002149 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08002151 device_set_wakeup_enable(&dev->dev, priv->wol_en);
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return err;
2154}
2155
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002156static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002157{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002158 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07002159
2160 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002161
Kumar Gala0bbaf062005-06-20 10:54:21 -05002162 return fcb;
2163}
2164
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002165static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002166 int fcb_length)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002167{
Kumar Gala0bbaf062005-06-20 10:54:21 -05002168 /* If we're here, it's a IP packet with a TCP or UDP
2169 * payload. We set it to checksum, using a pseudo-header
2170 * we provide
2171 */
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00002172 u8 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002173
Jan Ceuleers0977f812012-06-05 03:42:12 +00002174 /* Tell the controller what the protocol is
2175 * And provide the already calculated phcs
2176 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002177 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002178 flags |= TXFCB_UDP;
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002179 fcb->phcs = (__force __be16)(udp_hdr(skb)->check);
Andy Fleming7f7f5312005-11-11 12:38:59 -06002180 } else
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002181 fcb->phcs = (__force __be16)(tcp_hdr(skb)->check);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002182
2183 /* l3os is the distance between the start of the
2184 * frame (skb->data) and the start of the IP hdr.
2185 * l4os is the distance between the start of the
Jan Ceuleers0977f812012-06-05 03:42:12 +00002186 * l3 hdr and the l4 hdr
2187 */
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002188 fcb->l3os = (u8)(skb_network_offset(skb) - fcb_length);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03002189 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002190
Andy Fleming7f7f5312005-11-11 12:38:59 -06002191 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002192}
2193
Andy Fleming7f7f5312005-11-11 12:38:59 -06002194void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002195{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002196 fcb->flags |= TXFCB_VLN;
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002197 fcb->vlctl = cpu_to_be16(skb_vlan_tag_get(skb));
Kumar Gala0bbaf062005-06-20 10:54:21 -05002198}
2199
Dai Haruki4669bc92008-12-17 16:51:04 -08002200static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002201 struct txbd8 *base, int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002202{
2203 struct txbd8 *new_bd = bdp + stride;
2204
2205 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
2206}
2207
2208static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002209 int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002210{
2211 return skip_txbd(bdp, 1, base, ring_size);
2212}
2213
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002214/* eTSEC12: csum generation not supported for some fcb offsets */
2215static inline bool gfar_csum_errata_12(struct gfar_private *priv,
2216 unsigned long fcb_addr)
2217{
2218 return (gfar_has_errata(priv, GFAR_ERRATA_12) &&
2219 (fcb_addr % 0x20) > 0x18);
2220}
2221
2222/* eTSEC76: csum generation for frames larger than 2500 may
2223 * cause excess delays before start of transmission
2224 */
2225static inline bool gfar_csum_errata_76(struct gfar_private *priv,
2226 unsigned int len)
2227{
2228 return (gfar_has_errata(priv, GFAR_ERRATA_76) &&
2229 (len > 2500));
2230}
2231
Jan Ceuleers0977f812012-06-05 03:42:12 +00002232/* This is called by the kernel when a frame is ready for transmission.
2233 * It is pointed to by the dev->hard_start_xmit function pointer
2234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
2236{
2237 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002238 struct gfar_priv_tx_q *tx_queue = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002239 struct netdev_queue *txq;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002240 struct gfar __iomem *regs = NULL;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002241 struct txfcb *fcb = NULL;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002242 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL;
Dai Haruki5a5efed2008-12-16 15:34:50 -08002243 u32 lstatus;
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002244 int i, rq = 0;
2245 int do_tstamp, do_csum, do_vlan;
Dai Haruki4669bc92008-12-17 16:51:04 -08002246 u32 bufaddr;
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002247 unsigned int nr_frags, nr_txbds, bytes_sent, fcb_len = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002248
2249 rq = skb->queue_mapping;
2250 tx_queue = priv->tx_queue[rq];
2251 txq = netdev_get_tx_queue(dev, rq);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002252 base = tx_queue->tx_bd_base;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002253 regs = tx_queue->grp->regs;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002254
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002255 do_csum = (CHECKSUM_PARTIAL == skb->ip_summed);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002256 do_vlan = skb_vlan_tag_present(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002257 do_tstamp = (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
2258 priv->hwts_tx_en;
2259
2260 if (do_csum || do_vlan)
2261 fcb_len = GMAC_FCB_LEN;
2262
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002263 /* check if time stamp should be generated */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002264 if (unlikely(do_tstamp))
2265 fcb_len = GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Dai Haruki4669bc92008-12-17 16:51:04 -08002266
Li Yang5b28bea2009-03-27 15:54:30 -07002267 /* make space for additional header when fcb is needed */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002268 if (fcb_len && unlikely(skb_headroom(skb) < fcb_len)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002269 struct sk_buff *skb_new;
2270
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002271 skb_new = skb_realloc_headroom(skb, fcb_len);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002272 if (!skb_new) {
2273 dev->stats.tx_errors++;
Eric W. Biedermanc9974ad2014-03-11 14:20:26 -07002274 dev_kfree_skb_any(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002275 return NETDEV_TX_OK;
2276 }
Manfred Rudigierdb83d132012-01-09 23:26:50 +00002277
Eric Dumazet313b0372012-07-05 11:45:13 +00002278 if (skb->sk)
2279 skb_set_owner_w(skb_new, skb->sk);
Eric W. Biedermanc9974ad2014-03-11 14:20:26 -07002280 dev_consume_skb_any(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002281 skb = skb_new;
2282 }
2283
Dai Haruki4669bc92008-12-17 16:51:04 -08002284 /* total number of fragments in the SKB */
2285 nr_frags = skb_shinfo(skb)->nr_frags;
2286
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002287 /* calculate the required number of TxBDs for this skb */
2288 if (unlikely(do_tstamp))
2289 nr_txbds = nr_frags + 2;
2290 else
2291 nr_txbds = nr_frags + 1;
2292
Dai Haruki4669bc92008-12-17 16:51:04 -08002293 /* check if there is space to queue this packet */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002294 if (nr_txbds > tx_queue->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08002295 /* no space, stop the queue */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002296 netif_tx_stop_queue(txq);
Dai Haruki4669bc92008-12-17 16:51:04 -08002297 dev->stats.tx_fifo_errors++;
Dai Haruki4669bc92008-12-17 16:51:04 -08002298 return NETDEV_TX_BUSY;
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 /* Update transmit stats */
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002302 bytes_sent = skb->len;
2303 tx_queue->stats.tx_bytes += bytes_sent;
2304 /* keep Tx bytes on wire for BQL accounting */
2305 GFAR_CB(skb)->bytes_sent = bytes_sent;
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00002306 tx_queue->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002308 txbdp = txbdp_start = tx_queue->cur_tx;
Claudiu Manoila7312d52015-03-13 10:36:28 +02002309 lstatus = be32_to_cpu(txbdp->lstatus);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002310
2311 /* Time stamp insertion requires one additional TxBD */
2312 if (unlikely(do_tstamp))
2313 txbdp_tstamp = txbdp = next_txbd(txbdp, base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002314 tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Dai Haruki4669bc92008-12-17 16:51:04 -08002316 if (nr_frags == 0) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002317 if (unlikely(do_tstamp)) {
2318 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus);
2319
2320 lstatus_ts |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2321 txbdp_tstamp->lstatus = cpu_to_be32(lstatus_ts);
2322 } else {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002323 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002324 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002325 } else {
2326 /* Place the fragment addresses and lengths into the TxBDs */
2327 for (i = 0; i < nr_frags; i++) {
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002328 unsigned int frag_len;
Dai Haruki4669bc92008-12-17 16:51:04 -08002329 /* Point at the next BD, wrapping as needed */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002330 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002332 frag_len = skb_shinfo(skb)->frags[i].size;
Dai Haruki4669bc92008-12-17 16:51:04 -08002333
Claudiu Manoila7312d52015-03-13 10:36:28 +02002334 lstatus = be32_to_cpu(txbdp->lstatus) | frag_len |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002335 BD_LFLAG(TXBD_READY);
Dai Haruki4669bc92008-12-17 16:51:04 -08002336
2337 /* Handle the last BD specially */
2338 if (i == nr_frags - 1)
2339 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2340
Claudiu Manoil369ec162013-02-14 05:00:02 +00002341 bufaddr = skb_frag_dma_map(priv->dev,
Ian Campbell2234a722011-08-29 23:18:29 +00002342 &skb_shinfo(skb)->frags[i],
2343 0,
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002344 frag_len,
Ian Campbell2234a722011-08-29 23:18:29 +00002345 DMA_TO_DEVICE);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002346 if (unlikely(dma_mapping_error(priv->dev, bufaddr)))
2347 goto dma_map_err;
Dai Haruki4669bc92008-12-17 16:51:04 -08002348
2349 /* set the TxBD length and buffer pointer */
Claudiu Manoila7312d52015-03-13 10:36:28 +02002350 txbdp->bufPtr = cpu_to_be32(bufaddr);
2351 txbdp->lstatus = cpu_to_be32(lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002352 }
2353
Claudiu Manoila7312d52015-03-13 10:36:28 +02002354 lstatus = be32_to_cpu(txbdp_start->lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002357 /* Add TxPAL between FCB and frame if required */
2358 if (unlikely(do_tstamp)) {
2359 skb_push(skb, GMAC_TXPAL_LEN);
2360 memset(skb->data, 0, GMAC_TXPAL_LEN);
2361 }
2362
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002363 /* Add TxFCB if required */
2364 if (fcb_len) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002365 fcb = gfar_add_fcb(skb);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002366 lstatus |= BD_LFLAG(TXBD_TOE);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002367 }
2368
2369 /* Set up checksumming */
2370 if (do_csum) {
2371 gfar_tx_checksum(skb, fcb, fcb_len);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002372
2373 if (unlikely(gfar_csum_errata_12(priv, (unsigned long)fcb)) ||
2374 unlikely(gfar_csum_errata_76(priv, skb->len))) {
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00002375 __skb_pull(skb, GMAC_FCB_LEN);
2376 skb_checksum_help(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002377 if (do_vlan || do_tstamp) {
2378 /* put back a new fcb for vlan/tstamp TOE */
2379 fcb = gfar_add_fcb(skb);
2380 } else {
2381 /* Tx TOE not used */
2382 lstatus &= ~(BD_LFLAG(TXBD_TOE));
2383 fcb = NULL;
2384 }
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00002385 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002386 }
2387
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002388 if (do_vlan)
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002389 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002390
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002391 /* Setup tx hardware time stamping if requested */
2392 if (unlikely(do_tstamp)) {
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002393 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002394 fcb->ptp = 1;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002395 }
2396
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002397 bufaddr = dma_map_single(priv->dev, skb->data, skb_headlen(skb),
2398 DMA_TO_DEVICE);
2399 if (unlikely(dma_mapping_error(priv->dev, bufaddr)))
2400 goto dma_map_err;
2401
Claudiu Manoila7312d52015-03-13 10:36:28 +02002402 txbdp_start->bufPtr = cpu_to_be32(bufaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Jan Ceuleers0977f812012-06-05 03:42:12 +00002404 /* If time stamping is requested one additional TxBD must be set up. The
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002405 * first TxBD points to the FCB and must have a data length of
2406 * GMAC_FCB_LEN. The second TxBD points to the actual frame data with
2407 * the full frame length.
2408 */
2409 if (unlikely(do_tstamp)) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002410 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus);
2411
2412 bufaddr = be32_to_cpu(txbdp_start->bufPtr);
2413 bufaddr += fcb_len;
2414 lstatus_ts |= BD_LFLAG(TXBD_READY) |
2415 (skb_headlen(skb) - fcb_len);
2416
2417 txbdp_tstamp->bufPtr = cpu_to_be32(bufaddr);
2418 txbdp_tstamp->lstatus = cpu_to_be32(lstatus_ts);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002419 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | GMAC_FCB_LEN;
2420 } else {
2421 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002424 netdev_tx_sent_queue(txq, bytes_sent);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002425
Claudiu Manoild55398b2014-10-07 10:44:35 +03002426 gfar_wmb();
Andy Fleming7f7f5312005-11-11 12:38:59 -06002427
Claudiu Manoila7312d52015-03-13 10:36:28 +02002428 txbdp_start->lstatus = cpu_to_be32(lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002429
Claudiu Manoild55398b2014-10-07 10:44:35 +03002430 gfar_wmb(); /* force lstatus write before tx_skbuff */
Anton Vorontsov0eddba52010-03-03 08:18:58 +00002431
2432 tx_queue->tx_skbuff[tx_queue->skb_curtx] = skb;
2433
Dai Haruki4669bc92008-12-17 16:51:04 -08002434 /* Update the current skb pointer to the next entry we will use
Jan Ceuleers0977f812012-06-05 03:42:12 +00002435 * (wrapping if necessary)
2436 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002437 tx_queue->skb_curtx = (tx_queue->skb_curtx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002438 TX_RING_MOD_MASK(tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002439
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002440 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002441
Claudiu Manoilbc602282015-05-06 18:07:29 +03002442 /* We can work in parallel with gfar_clean_tx_ring(), except
2443 * when modifying num_txbdfree. Note that we didn't grab the lock
2444 * when we were reading the num_txbdfree and checking for available
2445 * space, that's because outside of this function it can only grow.
2446 */
2447 spin_lock_bh(&tx_queue->txlock);
Dai Haruki4669bc92008-12-17 16:51:04 -08002448 /* reduce TxBD free count */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002449 tx_queue->num_txbdfree -= (nr_txbds);
Claudiu Manoilbc602282015-05-06 18:07:29 +03002450 spin_unlock_bh(&tx_queue->txlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 /* If the next BD still needs to be cleaned up, then the bds
Jan Ceuleers0977f812012-06-05 03:42:12 +00002453 * are full. We need to tell the kernel to stop sending us stuff.
2454 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002455 if (!tx_queue->num_txbdfree) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002456 netif_tx_stop_queue(txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002458 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
2460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 /* Tell the DMA to go go go */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002462 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT >> tx_queue->qindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002464 return NETDEV_TX_OK;
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002465
2466dma_map_err:
2467 txbdp = next_txbd(txbdp_start, base, tx_queue->tx_ring_size);
2468 if (do_tstamp)
2469 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
2470 for (i = 0; i < nr_frags; i++) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002471 lstatus = be32_to_cpu(txbdp->lstatus);
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002472 if (!(lstatus & BD_LFLAG(TXBD_READY)))
2473 break;
2474
Claudiu Manoila7312d52015-03-13 10:36:28 +02002475 lstatus &= ~BD_LFLAG(TXBD_READY);
2476 txbdp->lstatus = cpu_to_be32(lstatus);
2477 bufaddr = be32_to_cpu(txbdp->bufPtr);
2478 dma_unmap_page(priv->dev, bufaddr, be16_to_cpu(txbdp->length),
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002479 DMA_TO_DEVICE);
2480 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
2481 }
2482 gfar_wmb();
2483 dev_kfree_skb_any(skb);
2484 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486
2487/* Stops the kernel queue, and halts the controller */
2488static int gfar_close(struct net_device *dev)
2489{
2490 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002491
Sebastian Siewiorab939902008-08-19 21:12:45 +02002492 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 stop_gfar(dev);
2494
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002495 /* Disconnect from the PHY */
2496 phy_disconnect(priv->phydev);
2497 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002499 gfar_free_irq(priv);
2500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 return 0;
2502}
2503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05002505static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002507 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 return 0;
2510}
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512static int gfar_change_mtu(struct net_device *dev, int new_mtu)
2513{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002515 int frame_size = new_mtu + ETH_HLEN;
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Joe Perches59deab22011-06-14 08:57:47 +00002518 netif_err(priv, drv, dev, "Invalid MTU setting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return -EINVAL;
2520 }
2521
Claudiu Manoil08511332014-02-24 12:13:45 +02002522 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2523 cpu_relax();
2524
Claudiu Manoil88302642014-02-24 12:13:43 +02002525 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 stop_gfar(dev);
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 dev->mtu = new_mtu;
2529
Claudiu Manoil88302642014-02-24 12:13:43 +02002530 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 startup_gfar(dev);
2532
Claudiu Manoil08511332014-02-24 12:13:45 +02002533 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return 0;
2536}
2537
Claudiu Manoil08511332014-02-24 12:13:45 +02002538void reset_gfar(struct net_device *ndev)
2539{
2540 struct gfar_private *priv = netdev_priv(ndev);
2541
2542 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2543 cpu_relax();
2544
2545 stop_gfar(ndev);
2546 startup_gfar(ndev);
2547
2548 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2549}
2550
Sebastian Siewiorab939902008-08-19 21:12:45 +02002551/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 * transmitted after a set amount of time.
2553 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02002554 * starting over will fix the problem.
2555 */
2556static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Sebastian Siewiorab939902008-08-19 21:12:45 +02002558 struct gfar_private *priv = container_of(work, struct gfar_private,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002559 reset_task);
Claudiu Manoil08511332014-02-24 12:13:45 +02002560 reset_gfar(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
2562
Sebastian Siewiorab939902008-08-19 21:12:45 +02002563static void gfar_timeout(struct net_device *dev)
2564{
2565 struct gfar_private *priv = netdev_priv(dev);
2566
2567 dev->stats.tx_errors++;
2568 schedule_work(&priv->reset_task);
2569}
2570
Eran Libertyacbc0f02010-07-07 15:54:54 -07002571static void gfar_align_skb(struct sk_buff *skb)
2572{
2573 /* We need the data buffer to be aligned properly. We will reserve
2574 * as many bytes as needed to align the data properly
2575 */
2576 skb_reserve(skb, RXBUF_ALIGNMENT -
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002577 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1)));
Eran Libertyacbc0f02010-07-07 15:54:54 -07002578}
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580/* Interrupt Handler for Transmit complete */
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002581static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002583 struct net_device *dev = tx_queue->dev;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002584 struct netdev_queue *txq;
Dai Harukid080cd62008-04-09 19:37:51 -05002585 struct gfar_private *priv = netdev_priv(dev);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002586 struct txbd8 *bdp, *next = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002587 struct txbd8 *lbdp = NULL;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002588 struct txbd8 *base = tx_queue->tx_bd_base;
Dai Haruki4669bc92008-12-17 16:51:04 -08002589 struct sk_buff *skb;
2590 int skb_dirtytx;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002591 int tx_ring_size = tx_queue->tx_ring_size;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002592 int frags = 0, nr_txbds = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002593 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05002594 int howmany = 0;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002595 int tqi = tx_queue->qindex;
2596 unsigned int bytes_sent = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002597 u32 lstatus;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002598 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002600 txq = netdev_get_tx_queue(dev, tqi);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002601 bdp = tx_queue->dirty_tx;
2602 skb_dirtytx = tx_queue->skb_dirtytx;
Dai Haruki4669bc92008-12-17 16:51:04 -08002603
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002604 while ((skb = tx_queue->tx_skbuff[skb_dirtytx])) {
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002605
Dai Haruki4669bc92008-12-17 16:51:04 -08002606 frags = skb_shinfo(skb)->nr_frags;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002607
Jan Ceuleers0977f812012-06-05 03:42:12 +00002608 /* When time stamping, one additional TxBD must be freed.
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002609 * Also, we need to dma_unmap_single() the TxPAL.
2610 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002611 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS))
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002612 nr_txbds = frags + 2;
2613 else
2614 nr_txbds = frags + 1;
2615
2616 lbdp = skip_txbd(bdp, nr_txbds - 1, base, tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002617
Claudiu Manoila7312d52015-03-13 10:36:28 +02002618 lstatus = be32_to_cpu(lbdp->lstatus);
Dai Haruki4669bc92008-12-17 16:51:04 -08002619
2620 /* Only clean completed frames */
2621 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002622 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 break;
2624
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002625 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002626 next = next_txbd(bdp, base, tx_ring_size);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002627 buflen = be16_to_cpu(next->length) +
2628 GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002629 } else
Claudiu Manoila7312d52015-03-13 10:36:28 +02002630 buflen = be16_to_cpu(bdp->length);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002631
Claudiu Manoila7312d52015-03-13 10:36:28 +02002632 dma_unmap_single(priv->dev, be32_to_cpu(bdp->bufPtr),
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002633 buflen, DMA_TO_DEVICE);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002634
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002635 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002636 struct skb_shared_hwtstamps shhwtstamps;
2637 u64 *ns = (u64*) (((u32)skb->data + 0x10) & ~0x7);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002638
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002639 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
2640 shhwtstamps.hwtstamp = ns_to_ktime(*ns);
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002641 skb_pull(skb, GMAC_FCB_LEN + GMAC_TXPAL_LEN);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002642 skb_tstamp_tx(skb, &shhwtstamps);
Claudiu Manoila7312d52015-03-13 10:36:28 +02002643 gfar_clear_txbd_status(bdp);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002644 bdp = next;
2645 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002646
Claudiu Manoila7312d52015-03-13 10:36:28 +02002647 gfar_clear_txbd_status(bdp);
Dai Haruki4669bc92008-12-17 16:51:04 -08002648 bdp = next_txbd(bdp, base, tx_ring_size);
2649
2650 for (i = 0; i < frags; i++) {
Claudiu Manoila7312d52015-03-13 10:36:28 +02002651 dma_unmap_page(priv->dev, be32_to_cpu(bdp->bufPtr),
2652 be16_to_cpu(bdp->length),
2653 DMA_TO_DEVICE);
2654 gfar_clear_txbd_status(bdp);
Dai Haruki4669bc92008-12-17 16:51:04 -08002655 bdp = next_txbd(bdp, base, tx_ring_size);
2656 }
2657
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002658 bytes_sent += GFAR_CB(skb)->bytes_sent;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002659
Eric Dumazetacb600d2012-10-05 06:23:55 +00002660 dev_kfree_skb_any(skb);
Andy Fleming0fd56bb2009-02-04 16:43:16 -08002661
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002662 tx_queue->tx_skbuff[skb_dirtytx] = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002663
2664 skb_dirtytx = (skb_dirtytx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002665 TX_RING_MOD_MASK(tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002666
Dai Harukid080cd62008-04-09 19:37:51 -05002667 howmany++;
Claudiu Manoilbc602282015-05-06 18:07:29 +03002668 spin_lock(&tx_queue->txlock);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002669 tx_queue->num_txbdfree += nr_txbds;
Claudiu Manoilbc602282015-05-06 18:07:29 +03002670 spin_unlock(&tx_queue->txlock);
Dai Haruki4669bc92008-12-17 16:51:04 -08002671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Dai Haruki4669bc92008-12-17 16:51:04 -08002673 /* If we freed a buffer, we can restart transmission, if necessary */
Claudiu Manoil08511332014-02-24 12:13:45 +02002674 if (tx_queue->num_txbdfree &&
2675 netif_tx_queue_stopped(txq) &&
2676 !(test_bit(GFAR_DOWN, &priv->state)))
2677 netif_wake_subqueue(priv->ndev, tqi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Dai Haruki4669bc92008-12-17 16:51:04 -08002679 /* Update dirty indicators */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002680 tx_queue->skb_dirtytx = skb_dirtytx;
2681 tx_queue->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002683 netdev_tx_completed_queue(txq, howmany, bytes_sent);
Dai Harukid080cd62008-04-09 19:37:51 -05002684}
2685
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002686static struct sk_buff *gfar_new_skb(struct net_device *ndev,
2687 dma_addr_t *bufaddr)
Eran Libertyacbc0f02010-07-07 15:54:54 -07002688{
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002689 struct gfar_private *priv = netdev_priv(ndev);
Eric Dumazetacb600d2012-10-05 06:23:55 +00002690 struct sk_buff *skb;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002691 dma_addr_t addr;
Eran Libertyacbc0f02010-07-07 15:54:54 -07002692
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002693 skb = netdev_alloc_skb(ndev, priv->rx_buffer_size + RXBUF_ALIGNMENT);
Eran Libertyacbc0f02010-07-07 15:54:54 -07002694 if (!skb)
2695 return NULL;
2696
2697 gfar_align_skb(skb);
2698
Kevin Hao0a4b5a22014-12-11 14:08:41 +08002699 addr = dma_map_single(priv->dev, skb->data,
2700 priv->rx_buffer_size, DMA_FROM_DEVICE);
2701 if (unlikely(dma_mapping_error(priv->dev, addr))) {
2702 dev_kfree_skb_any(skb);
2703 return NULL;
2704 }
2705
2706 *bufaddr = addr;
2707 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002710static void gfar_rx_alloc_err(struct gfar_priv_rx_q *rx_queue)
2711{
2712 struct gfar_private *priv = netdev_priv(rx_queue->dev);
2713 struct gfar_extra_stats *estats = &priv->extra_stats;
2714
2715 netdev_err(rx_queue->dev, "Can't alloc RX buffers\n");
2716 atomic64_inc(&estats->rx_alloc_err);
2717}
2718
2719static void gfar_alloc_rx_buffs(struct gfar_priv_rx_q *rx_queue,
2720 int alloc_cnt)
2721{
2722 struct net_device *ndev = rx_queue->dev;
2723 struct rxbd8 *bdp, *base;
2724 dma_addr_t bufaddr;
2725 int i;
2726
2727 i = rx_queue->next_to_use;
2728 base = rx_queue->rx_bd_base;
2729 bdp = &rx_queue->rx_bd_base[i];
2730
2731 while (alloc_cnt--) {
2732 struct sk_buff *skb = rx_queue->rx_skbuff[i];
2733
2734 if (likely(!skb)) {
2735 skb = gfar_new_skb(ndev, &bufaddr);
2736 if (unlikely(!skb)) {
2737 gfar_rx_alloc_err(rx_queue);
2738 break;
2739 }
2740 } else { /* restore from sleep state */
2741 bufaddr = be32_to_cpu(bdp->bufPtr);
2742 }
2743
2744 rx_queue->rx_skbuff[i] = skb;
2745
2746 /* Setup the new RxBD */
2747 gfar_init_rxbdp(rx_queue, bdp, bufaddr);
2748
2749 /* Update to the next pointer */
2750 bdp = next_bd(bdp, base, rx_queue->rx_ring_size);
2751
2752 if (unlikely(++i == rx_queue->rx_ring_size))
2753 i = 0;
2754 }
2755
2756 rx_queue->next_to_use = i;
2757}
2758
Claudiu Manoilf9660822015-07-13 16:22:04 +03002759static void count_errors(u32 lstatus, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
Li Yang298e1a92007-10-16 14:18:13 +08002761 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002762 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 struct gfar_extra_stats *estats = &priv->extra_stats;
2764
Jan Ceuleers0977f812012-06-05 03:42:12 +00002765 /* If the packet was truncated, none of the other errors matter */
Claudiu Manoilf9660822015-07-13 16:22:04 +03002766 if (lstatus & BD_LFLAG(RXBD_TRUNCATED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 stats->rx_length_errors++;
2768
Paul Gortmaker212079d2013-02-12 15:38:19 -05002769 atomic64_inc(&estats->rx_trunc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 return;
2772 }
2773 /* Count the errors, if there were any */
Claudiu Manoilf9660822015-07-13 16:22:04 +03002774 if (lstatus & BD_LFLAG(RXBD_LARGE | RXBD_SHORT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 stats->rx_length_errors++;
2776
Claudiu Manoilf9660822015-07-13 16:22:04 +03002777 if (lstatus & BD_LFLAG(RXBD_LARGE))
Paul Gortmaker212079d2013-02-12 15:38:19 -05002778 atomic64_inc(&estats->rx_large);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 else
Paul Gortmaker212079d2013-02-12 15:38:19 -05002780 atomic64_inc(&estats->rx_short);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 }
Claudiu Manoilf9660822015-07-13 16:22:04 +03002782 if (lstatus & BD_LFLAG(RXBD_NONOCTET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 stats->rx_frame_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002784 atomic64_inc(&estats->rx_nonoctet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 }
Claudiu Manoilf9660822015-07-13 16:22:04 +03002786 if (lstatus & BD_LFLAG(RXBD_CRCERR)) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002787 atomic64_inc(&estats->rx_crcerr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 stats->rx_crc_errors++;
2789 }
Claudiu Manoilf9660822015-07-13 16:22:04 +03002790 if (lstatus & BD_LFLAG(RXBD_OVERRUN)) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002791 atomic64_inc(&estats->rx_overrun);
Claudiu Manoilf9660822015-07-13 16:22:04 +03002792 stats->rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 }
2794}
2795
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002796irqreturn_t gfar_receive(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797{
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002798 struct gfar_priv_grp *grp = (struct gfar_priv_grp *)grp_id;
2799 unsigned long flags;
2800 u32 imask;
2801
2802 if (likely(napi_schedule_prep(&grp->napi_rx))) {
2803 spin_lock_irqsave(&grp->grplock, flags);
2804 imask = gfar_read(&grp->regs->imask);
2805 imask &= IMASK_RX_DISABLED;
2806 gfar_write(&grp->regs->imask, imask);
2807 spin_unlock_irqrestore(&grp->grplock, flags);
2808 __napi_schedule(&grp->napi_rx);
2809 } else {
2810 /* Clear IEVENT, so interrupts aren't called again
2811 * because of the packets that have already arrived.
2812 */
2813 gfar_write(&grp->regs->ievent, IEVENT_RX_MASK);
2814 }
2815
2816 return IRQ_HANDLED;
2817}
2818
2819/* Interrupt Handler for Transmit complete */
2820static irqreturn_t gfar_transmit(int irq, void *grp_id)
2821{
2822 struct gfar_priv_grp *grp = (struct gfar_priv_grp *)grp_id;
2823 unsigned long flags;
2824 u32 imask;
2825
2826 if (likely(napi_schedule_prep(&grp->napi_tx))) {
2827 spin_lock_irqsave(&grp->grplock, flags);
2828 imask = gfar_read(&grp->regs->imask);
2829 imask &= IMASK_TX_DISABLED;
2830 gfar_write(&grp->regs->imask, imask);
2831 spin_unlock_irqrestore(&grp->grplock, flags);
2832 __napi_schedule(&grp->napi_tx);
2833 } else {
2834 /* Clear IEVENT, so interrupts aren't called again
2835 * because of the packets that have already arrived.
2836 */
2837 gfar_write(&grp->regs->ievent, IEVENT_TX_MASK);
2838 }
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return IRQ_HANDLED;
2841}
2842
Kumar Gala0bbaf062005-06-20 10:54:21 -05002843static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
2844{
2845 /* If valid headers were found, and valid sums
2846 * were verified, then we tell the kernel that no
Jan Ceuleers0977f812012-06-05 03:42:12 +00002847 * checksumming is necessary. Otherwise, it is [FIXME]
2848 */
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002849 if ((be16_to_cpu(fcb->flags) & RXFCB_CSUM_MASK) ==
2850 (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05002851 skb->ip_summed = CHECKSUM_UNNECESSARY;
2852 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07002853 skb_checksum_none_assert(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002854}
2855
Jan Ceuleers0977f812012-06-05 03:42:12 +00002856/* gfar_process_frame() -- handle one incoming packet if skb isn't NULL. */
Claudiu Manoil61db26c2013-02-14 05:00:05 +00002857static void gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002858 struct napi_struct *napi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
2860 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002861 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Dai Haruki2c2db482008-12-16 15:31:15 -08002863 /* fcb is at the beginning if exists */
2864 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Jan Ceuleers0977f812012-06-05 03:42:12 +00002866 /* Remove the FCB from the skb
2867 * Remove the padded bytes, if there are any
2868 */
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002869 if (priv->uses_rxfcb) {
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002870 skb_record_rx_queue(skb, fcb->rq);
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002871 skb_pull(skb, GMAC_FCB_LEN);
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002872 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002873
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002874 /* Get receive timestamp from the skb */
2875 if (priv->hwts_rx_en) {
2876 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
2877 u64 *ns = (u64 *) skb->data;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002878
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002879 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
2880 shhwtstamps->hwtstamp = ns_to_ktime(*ns);
2881 }
2882
2883 if (priv->padding)
2884 skb_pull(skb, priv->padding);
2885
Michał Mirosław8b3afe92011-04-15 04:50:50 +00002886 if (dev->features & NETIF_F_RXCSUM)
Dai Haruki2c2db482008-12-16 15:31:15 -08002887 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002888
Dai Haruki2c2db482008-12-16 15:31:15 -08002889 /* Tell the skb what kind of packet this is */
2890 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002891
Patrick McHardyf6469682013-04-19 02:04:27 +00002892 /* There's need to check for NETIF_F_HW_VLAN_CTAG_RX here.
David S. Miller823dcd22011-08-20 10:39:12 -07002893 * Even if vlan rx accel is disabled, on some chips
2894 * RXFCB_VLN is pseudo randomly set.
2895 */
Patrick McHardyf6469682013-04-19 02:04:27 +00002896 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX &&
Claudiu Manoil26eb9372015-03-13 10:36:29 +02002897 be16_to_cpu(fcb->flags) & RXFCB_VLN)
2898 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
2899 be16_to_cpu(fcb->vlctl));
Jiri Pirko87c288c2011-07-20 04:54:19 +00002900
Dai Haruki2c2db482008-12-16 15:31:15 -08002901 /* Send the packet up the stack */
Claudiu Manoil953d2762013-03-21 03:12:15 +00002902 napi_gro_receive(napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904}
2905
2906/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002907 * until the budget/quota has been reached. Returns the number
2908 * of frames handled
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002910int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002912 struct net_device *dev = rx_queue->dev;
Andy Fleming31de1982008-12-16 15:33:40 -08002913 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 struct sk_buff *skb;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002915 int i, howmany = 0;
2916 int cleaned_cnt = gfar_rxbd_unused(rx_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 struct gfar_private *priv = netdev_priv(dev);
2918
2919 /* Get the first full descriptor */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002920 base = rx_queue->rx_bd_base;
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002921 i = rx_queue->next_to_clean;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002923 while (rx_work_limit--) {
Claudiu Manoilf9660822015-07-13 16:22:04 +03002924 u32 lstatus;
Dai Haruki2c2db482008-12-16 15:31:15 -08002925
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002926 if (cleaned_cnt >= GFAR_RX_BUFF_ALLOC) {
2927 gfar_alloc_rx_buffs(rx_queue, cleaned_cnt);
2928 cleaned_cnt = 0;
2929 }
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002930
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002931 bdp = &rx_queue->rx_bd_base[i];
Claudiu Manoilf9660822015-07-13 16:22:04 +03002932 lstatus = be32_to_cpu(bdp->lstatus);
2933 if (lstatus & BD_LFLAG(RXBD_EMPTY))
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002934 break;
2935
2936 /* order rx buffer descriptor reads */
Scott Wood3b6330c2007-05-16 15:06:59 -05002937 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05002938
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002939 /* fetch next to clean buffer from the ring */
2940 skb = rx_queue->rx_skbuff[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Claudiu Manoila7312d52015-03-13 10:36:28 +02002942 dma_unmap_single(priv->dev, be32_to_cpu(bdp->bufPtr),
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002943 priv->rx_buffer_size, DMA_FROM_DEVICE);
Andy Fleming81183052008-11-12 10:07:11 -06002944
Claudiu Manoilf9660822015-07-13 16:22:04 +03002945 if (unlikely(!(lstatus & BD_LFLAG(RXBD_ERR)) &&
2946 (lstatus & BD_LENGTH_MASK) > priv->rx_buffer_size))
2947 lstatus |= BD_LFLAG(RXBD_LARGE);
Anton Vorontsov63b88b92010-06-11 10:51:03 +00002948
Claudiu Manoilf9660822015-07-13 16:22:04 +03002949 if (unlikely(!(lstatus & BD_LFLAG(RXBD_LAST)) ||
2950 (lstatus & BD_LFLAG(RXBD_ERR)))) {
2951 count_errors(lstatus, dev);
Andy Fleming815b97c2008-04-22 17:18:29 -05002952
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002953 /* discard faulty buffer */
2954 dev_kfree_skb(skb);
2955
Andy Fleming815b97c2008-04-22 17:18:29 -05002956 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 /* Increment the number of packets */
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002958 rx_queue->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 howmany++;
2960
Dai Haruki2c2db482008-12-16 15:31:15 -08002961 if (likely(skb)) {
Claudiu Manoilf9660822015-07-13 16:22:04 +03002962 int pkt_len = (lstatus & BD_LENGTH_MASK) -
Claudiu Manoila7312d52015-03-13 10:36:28 +02002963 ETH_FCS_LEN;
Dai Haruki2c2db482008-12-16 15:31:15 -08002964 /* Remove the FCS from the packet length */
2965 skb_put(skb, pkt_len);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002966 rx_queue->stats.rx_bytes += pkt_len;
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002967 skb_record_rx_queue(skb, rx_queue->qindex);
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002968 gfar_process_frame(dev, skb,
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002969 &rx_queue->grp->napi_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
Dai Haruki2c2db482008-12-16 15:31:15 -08002971 } else {
Joe Perches59deab22011-06-14 08:57:47 +00002972 netif_warn(priv, rx_err, dev, "Missing skb!\n");
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002973 rx_queue->stats.rx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002974 atomic64_inc(&priv->extra_stats.rx_skbmissing);
Dai Haruki2c2db482008-12-16 15:31:15 -08002975 }
2976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 }
2978
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002979 rx_queue->rx_skbuff[i] = NULL;
2980 cleaned_cnt++;
2981 if (unlikely(++i == rx_queue->rx_ring_size))
2982 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984
Claudiu Manoil76f31e82015-07-13 16:22:03 +03002985 rx_queue->next_to_clean = i;
2986
2987 if (cleaned_cnt)
2988 gfar_alloc_rx_buffs(rx_queue, cleaned_cnt);
2989
2990 /* Update Last Free RxBD pointer for LFC */
2991 if (unlikely(priv->tx_actual_en)) {
2992 bdp = gfar_rxbd_lastfree(rx_queue);
2993 gfar_write(rx_queue->rfbptr, (u32)bdp);
2994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 return howmany;
2997}
2998
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02002999static int gfar_poll_rx_sq(struct napi_struct *napi, int budget)
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003000{
3001 struct gfar_priv_grp *gfargrp =
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003002 container_of(napi, struct gfar_priv_grp, napi_rx);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003003 struct gfar __iomem *regs = gfargrp->regs;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02003004 struct gfar_priv_rx_q *rx_queue = gfargrp->rx_queue;
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003005 int work_done = 0;
3006
3007 /* Clear IEVENT, so interrupts aren't called again
3008 * because of the packets that have already arrived
3009 */
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003010 gfar_write(&regs->ievent, IEVENT_RX_MASK);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003011
3012 work_done = gfar_clean_rx_ring(rx_queue, budget);
3013
3014 if (work_done < budget) {
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003015 u32 imask;
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003016 napi_complete(napi);
3017 /* Clear the halt bit in RSTAT */
3018 gfar_write(&regs->rstat, gfargrp->rstat);
3019
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003020 spin_lock_irq(&gfargrp->grplock);
3021 imask = gfar_read(&regs->imask);
3022 imask |= IMASK_RX_DEFAULT;
3023 gfar_write(&regs->imask, imask);
3024 spin_unlock_irq(&gfargrp->grplock);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03003025 }
3026
3027 return work_done;
3028}
3029
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003030static int gfar_poll_tx_sq(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031{
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003032 struct gfar_priv_grp *gfargrp =
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003033 container_of(napi, struct gfar_priv_grp, napi_tx);
3034 struct gfar __iomem *regs = gfargrp->regs;
Claudiu Manoil71ff9e32014-03-07 14:42:46 +02003035 struct gfar_priv_tx_q *tx_queue = gfargrp->tx_queue;
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003036 u32 imask;
3037
3038 /* Clear IEVENT, so interrupts aren't called again
3039 * because of the packets that have already arrived
3040 */
3041 gfar_write(&regs->ievent, IEVENT_TX_MASK);
3042
3043 /* run Tx cleanup to completion */
3044 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx])
3045 gfar_clean_tx_ring(tx_queue);
3046
3047 napi_complete(napi);
3048
3049 spin_lock_irq(&gfargrp->grplock);
3050 imask = gfar_read(&regs->imask);
3051 imask |= IMASK_TX_DEFAULT;
3052 gfar_write(&regs->imask, imask);
3053 spin_unlock_irq(&gfargrp->grplock);
3054
3055 return 0;
3056}
3057
3058static int gfar_poll_rx(struct napi_struct *napi, int budget)
3059{
3060 struct gfar_priv_grp *gfargrp =
3061 container_of(napi, struct gfar_priv_grp, napi_rx);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003062 struct gfar_private *priv = gfargrp->priv;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003063 struct gfar __iomem *regs = gfargrp->regs;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003064 struct gfar_priv_rx_q *rx_queue = NULL;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003065 int work_done = 0, work_done_per_q = 0;
Claudiu Manoil39c0a0d2013-03-21 03:12:13 +00003066 int i, budget_per_q = 0;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003067 unsigned long rstat_rxf;
3068 int num_act_queues;
Dai Harukid080cd62008-04-09 19:37:51 -05003069
Dai Haruki8c7396a2008-12-17 16:52:00 -08003070 /* Clear IEVENT, so interrupts aren't called again
Jan Ceuleers0977f812012-06-05 03:42:12 +00003071 * because of the packets that have already arrived
3072 */
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003073 gfar_write(&regs->ievent, IEVENT_RX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08003074
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003075 rstat_rxf = gfar_read(&regs->rstat) & RSTAT_RXF_MASK;
3076
3077 num_act_queues = bitmap_weight(&rstat_rxf, MAX_RX_QS);
3078 if (num_act_queues)
3079 budget_per_q = budget/num_act_queues;
3080
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003081 for_each_set_bit(i, &gfargrp->rx_bit_map, priv->num_rx_queues) {
3082 /* skip queue if not active */
3083 if (!(rstat_rxf & (RSTAT_CLEAR_RXF0 >> i)))
3084 continue;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003085
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003086 rx_queue = priv->rx_queue[i];
3087 work_done_per_q =
3088 gfar_clean_rx_ring(rx_queue, budget_per_q);
3089 work_done += work_done_per_q;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003090
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003091 /* finished processing this queue */
3092 if (work_done_per_q < budget_per_q) {
3093 /* clear active queue hw indication */
3094 gfar_write(&regs->rstat,
3095 RSTAT_CLEAR_RXF0 >> i);
3096 num_act_queues--;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00003097
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003098 if (!num_act_queues)
3099 break;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003100 }
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003101 }
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003102
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003103 if (!num_act_queues) {
3104 u32 imask;
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003105 napi_complete(napi);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003106
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03003107 /* Clear the halt bit in RSTAT */
3108 gfar_write(&regs->rstat, gfargrp->rstat);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003109
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003110 spin_lock_irq(&gfargrp->grplock);
3111 imask = gfar_read(&regs->imask);
3112 imask |= IMASK_RX_DEFAULT;
3113 gfar_write(&regs->imask, imask);
3114 spin_unlock_irq(&gfargrp->grplock);
Dai Harukid080cd62008-04-09 19:37:51 -05003115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Claudiu Manoilc233cf402013-03-19 07:40:02 +00003117 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Claudiu Manoilaeb12c52014-03-07 14:42:45 +02003120static int gfar_poll_tx(struct napi_struct *napi, int budget)
3121{
3122 struct gfar_priv_grp *gfargrp =
3123 container_of(napi, struct gfar_priv_grp, napi_tx);
3124 struct gfar_private *priv = gfargrp->priv;
3125 struct gfar __iomem *regs = gfargrp->regs;
3126 struct gfar_priv_tx_q *tx_queue = NULL;
3127 int has_tx_work = 0;
3128 int i;
3129
3130 /* Clear IEVENT, so interrupts aren't called again
3131 * because of the packets that have already arrived
3132 */
3133 gfar_write(&regs->ievent, IEVENT_TX_MASK);
3134
3135 for_each_set_bit(i, &gfargrp->tx_bit_map, priv->num_tx_queues) {
3136 tx_queue = priv->tx_queue[i];
3137 /* run Tx cleanup to completion */
3138 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx]) {
3139 gfar_clean_tx_ring(tx_queue);
3140 has_tx_work = 1;
3141 }
3142 }
3143
3144 if (!has_tx_work) {
3145 u32 imask;
3146 napi_complete(napi);
3147
3148 spin_lock_irq(&gfargrp->grplock);
3149 imask = gfar_read(&regs->imask);
3150 imask |= IMASK_TX_DEFAULT;
3151 gfar_write(&regs->imask, imask);
3152 spin_unlock_irq(&gfargrp->grplock);
3153 }
3154
3155 return 0;
3156}
3157
3158
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003159#ifdef CONFIG_NET_POLL_CONTROLLER
Jan Ceuleers0977f812012-06-05 03:42:12 +00003160/* Polling 'interrupt' - used by things like netconsole to send skbs
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003161 * without having to re-enable interrupts. It's not called while
3162 * the interrupt routine is executing.
3163 */
3164static void gfar_netpoll(struct net_device *dev)
3165{
3166 struct gfar_private *priv = netdev_priv(dev);
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00003167 int i;
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003168
3169 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003170 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003171 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00003172 struct gfar_priv_grp *grp = &priv->gfargrp[i];
3173
3174 disable_irq(gfar_irq(grp, TX)->irq);
3175 disable_irq(gfar_irq(grp, RX)->irq);
3176 disable_irq(gfar_irq(grp, ER)->irq);
3177 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
3178 enable_irq(gfar_irq(grp, ER)->irq);
3179 enable_irq(gfar_irq(grp, RX)->irq);
3180 enable_irq(gfar_irq(grp, TX)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003181 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003182 } else {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003183 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00003184 struct gfar_priv_grp *grp = &priv->gfargrp[i];
3185
3186 disable_irq(gfar_irq(grp, TX)->irq);
3187 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
3188 enable_irq(gfar_irq(grp, TX)->irq);
Anton Vorontsov43de0042009-12-09 02:52:19 -08003189 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03003190 }
3191}
3192#endif
3193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194/* The interrupt handler for devices with one interrupt */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003195static irqreturn_t gfar_interrupt(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003197 struct gfar_priv_grp *gfargrp = grp_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
3199 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003200 u32 events = gfar_read(&gfargrp->regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003203 if (events & IEVENT_RX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003204 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003207 if (events & IEVENT_TX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003208 gfar_transmit(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04003210 /* Check for errors */
3211 if (events & IEVENT_ERR_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003212 gfar_error(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 return IRQ_HANDLED;
3215}
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217/* Called every time the controller might need to be made
3218 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003219 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 * function converts those variables into the appropriate
3221 * register values, and can bring down the device if needed.
3222 */
3223static void adjust_link(struct net_device *dev)
3224{
3225 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003226 struct phy_device *phydev = priv->phydev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003228 if (unlikely(phydev->link != priv->oldlink ||
Guenter Roeck0ae93b22015-03-02 12:03:27 -08003229 (phydev->link && (phydev->duplex != priv->oldduplex ||
3230 phydev->speed != priv->oldspeed))))
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003231 gfar_update_link_state(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003232}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234/* Update the hash table based on the current list of multicast
3235 * addresses we subscribe to. Also, change the promiscuity of
3236 * the device based on the flags (this function is called
Jan Ceuleers0977f812012-06-05 03:42:12 +00003237 * whenever dev->flags is changed
3238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239static void gfar_set_multi(struct net_device *dev)
3240{
Jiri Pirko22bedad32010-04-01 21:22:57 +00003241 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003243 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 u32 tempval;
3245
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003246 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 /* Set RCTRL to PROM */
3248 tempval = gfar_read(&regs->rctrl);
3249 tempval |= RCTRL_PROM;
3250 gfar_write(&regs->rctrl, tempval);
3251 } else {
3252 /* Set RCTRL to not PROM */
3253 tempval = gfar_read(&regs->rctrl);
3254 tempval &= ~(RCTRL_PROM);
3255 gfar_write(&regs->rctrl, tempval);
3256 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003257
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003258 if (dev->flags & IFF_ALLMULTI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003260 gfar_write(&regs->igaddr0, 0xffffffff);
3261 gfar_write(&regs->igaddr1, 0xffffffff);
3262 gfar_write(&regs->igaddr2, 0xffffffff);
3263 gfar_write(&regs->igaddr3, 0xffffffff);
3264 gfar_write(&regs->igaddr4, 0xffffffff);
3265 gfar_write(&regs->igaddr5, 0xffffffff);
3266 gfar_write(&regs->igaddr6, 0xffffffff);
3267 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 gfar_write(&regs->gaddr0, 0xffffffff);
3269 gfar_write(&regs->gaddr1, 0xffffffff);
3270 gfar_write(&regs->gaddr2, 0xffffffff);
3271 gfar_write(&regs->gaddr3, 0xffffffff);
3272 gfar_write(&regs->gaddr4, 0xffffffff);
3273 gfar_write(&regs->gaddr5, 0xffffffff);
3274 gfar_write(&regs->gaddr6, 0xffffffff);
3275 gfar_write(&regs->gaddr7, 0xffffffff);
3276 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003277 int em_num;
3278 int idx;
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003281 gfar_write(&regs->igaddr0, 0x0);
3282 gfar_write(&regs->igaddr1, 0x0);
3283 gfar_write(&regs->igaddr2, 0x0);
3284 gfar_write(&regs->igaddr3, 0x0);
3285 gfar_write(&regs->igaddr4, 0x0);
3286 gfar_write(&regs->igaddr5, 0x0);
3287 gfar_write(&regs->igaddr6, 0x0);
3288 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 gfar_write(&regs->gaddr0, 0x0);
3290 gfar_write(&regs->gaddr1, 0x0);
3291 gfar_write(&regs->gaddr2, 0x0);
3292 gfar_write(&regs->gaddr3, 0x0);
3293 gfar_write(&regs->gaddr4, 0x0);
3294 gfar_write(&regs->gaddr5, 0x0);
3295 gfar_write(&regs->gaddr6, 0x0);
3296 gfar_write(&regs->gaddr7, 0x0);
3297
Andy Fleming7f7f5312005-11-11 12:38:59 -06003298 /* If we have extended hash tables, we need to
3299 * clear the exact match registers to prepare for
Jan Ceuleers0977f812012-06-05 03:42:12 +00003300 * setting them
3301 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003302 if (priv->extended_hash) {
3303 em_num = GFAR_EM_NUM + 1;
3304 gfar_clear_exact_match(dev);
3305 idx = 1;
3306 } else {
3307 idx = 0;
3308 em_num = 0;
3309 }
3310
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00003311 if (netdev_mc_empty(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 return;
3313
3314 /* Parse the list, and set the appropriate bits */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003315 netdev_for_each_mc_addr(ha, dev) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003316 if (idx < em_num) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00003317 gfar_set_mac_for_addr(dev, idx, ha->addr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003318 idx++;
3319 } else
Jiri Pirko22bedad32010-04-01 21:22:57 +00003320 gfar_set_hash_for_addr(dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
3322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
Andy Fleming7f7f5312005-11-11 12:38:59 -06003325
3326/* Clears each of the exact match registers to zero, so they
Jan Ceuleers0977f812012-06-05 03:42:12 +00003327 * don't interfere with normal reception
3328 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003329static void gfar_clear_exact_match(struct net_device *dev)
3330{
3331 int idx;
Joe Perches6a3c910c2011-11-16 09:38:02 +00003332 static const u8 zero_arr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
Andy Fleming7f7f5312005-11-11 12:38:59 -06003333
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003334 for (idx = 1; idx < GFAR_EM_NUM + 1; idx++)
Joe Perchesb6bc7652010-12-21 02:16:08 -08003335 gfar_set_mac_for_addr(dev, idx, zero_arr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003336}
3337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338/* Set the appropriate hash bit for the given addr */
3339/* The algorithm works like so:
3340 * 1) Take the Destination Address (ie the multicast address), and
3341 * do a CRC on it (little endian), and reverse the bits of the
3342 * result.
3343 * 2) Use the 8 most significant bits as a hash into a 256-entry
3344 * table. The table is controlled through 8 32-bit registers:
3345 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
3346 * gaddr7. This means that the 3 most significant bits in the
3347 * hash index which gaddr register to use, and the 5 other bits
3348 * indicate which bit (assuming an IBM numbering scheme, which
3349 * for PowerPC (tm) is usually the case) in the register holds
Jan Ceuleers0977f812012-06-05 03:42:12 +00003350 * the entry.
3351 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
3353{
3354 u32 tempval;
3355 struct gfar_private *priv = netdev_priv(dev);
Joe Perches6a3c910c2011-11-16 09:38:02 +00003356 u32 result = ether_crc(ETH_ALEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05003357 int width = priv->hash_width;
3358 u8 whichbit = (result >> (32 - width)) & 0x1f;
3359 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 u32 value = (1 << (31-whichbit));
3361
Kumar Gala0bbaf062005-06-20 10:54:21 -05003362 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05003364 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
3366
Andy Fleming7f7f5312005-11-11 12:38:59 -06003367
3368/* There are multiple MAC Address register pairs on some controllers
3369 * This function sets the numth pair to a given address
3370 */
Joe Perchesb6bc7652010-12-21 02:16:08 -08003371static void gfar_set_mac_for_addr(struct net_device *dev, int num,
3372 const u8 *addr)
Andy Fleming7f7f5312005-11-11 12:38:59 -06003373{
3374 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003375 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003376 u32 tempval;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003377 u32 __iomem *macptr = &regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003378
3379 macptr += num*2;
3380
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003381 /* For a station address of 0x12345678ABCD in transmission
3382 * order (BE), MACnADDR1 is set to 0xCDAB7856 and
3383 * MACnADDR2 is set to 0x34120000.
Jan Ceuleers0977f812012-06-05 03:42:12 +00003384 */
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003385 tempval = (addr[5] << 24) | (addr[4] << 16) |
3386 (addr[3] << 8) | addr[2];
Andy Fleming7f7f5312005-11-11 12:38:59 -06003387
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003388 gfar_write(macptr, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003389
Claudiu Manoil83bfc3c2014-10-07 10:44:33 +03003390 tempval = (addr[1] << 24) | (addr[0] << 16);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003391
3392 gfar_write(macptr+1, tempval);
3393}
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395/* GFAR error interrupt handler */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003396static irqreturn_t gfar_error(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003398 struct gfar_priv_grp *gfargrp = grp_id;
3399 struct gfar __iomem *regs = gfargrp->regs;
3400 struct gfar_private *priv= gfargrp->priv;
3401 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
3403 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003404 u32 events = gfar_read(&regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
3406 /* Clear IEVENT */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003407 gfar_write(&regs->ievent, events & IEVENT_ERR_MASK);
Scott Woodd87eb122008-07-11 18:04:45 -05003408
3409 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003410 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05003411 (events & IEVENT_MAG))
3412 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
3414 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003415 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003416 netdev_dbg(dev,
3417 "error interrupt (ievent=0x%08x imask=0x%08x)\n",
Joe Perches59deab22011-06-14 08:57:47 +00003418 events, gfar_read(&regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
3420 /* Update the error counters */
3421 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003422 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
3424 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003425 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003427 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 if (events & IEVENT_XFUN) {
Joe Perches59deab22011-06-14 08:57:47 +00003429 netif_dbg(priv, tx_err, dev,
3430 "TX FIFO underrun, packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003431 dev->stats.tx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003432 atomic64_inc(&priv->extra_stats.tx_underrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Claudiu Manoilbc602282015-05-06 18:07:29 +03003434 schedule_work(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 }
Joe Perches59deab22011-06-14 08:57:47 +00003436 netif_dbg(priv, tx_err, dev, "Transmit Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 }
3438 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003439 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003440 atomic64_inc(&priv->extra_stats.rx_bsy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003442 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Joe Perches59deab22011-06-14 08:57:47 +00003444 netif_dbg(priv, rx_err, dev, "busy error (rstat: %x)\n",
3445 gfar_read(&regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 }
3447 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003448 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003449 atomic64_inc(&priv->extra_stats.rx_babr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Joe Perches59deab22011-06-14 08:57:47 +00003451 netif_dbg(priv, rx_err, dev, "babbling RX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 }
3453 if (events & IEVENT_EBERR) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003454 atomic64_inc(&priv->extra_stats.eberr);
Joe Perches59deab22011-06-14 08:57:47 +00003455 netif_dbg(priv, rx_err, dev, "bus error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 }
Joe Perches59deab22011-06-14 08:57:47 +00003457 if (events & IEVENT_RXC)
3458 netif_dbg(priv, rx_status, dev, "control frame\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
3460 if (events & IEVENT_BABT) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003461 atomic64_inc(&priv->extra_stats.tx_babt);
Joe Perches59deab22011-06-14 08:57:47 +00003462 netif_dbg(priv, tx_err, dev, "babbling TX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 }
3464 return IRQ_HANDLED;
3465}
3466
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003467static u32 gfar_get_flowctrl_cfg(struct gfar_private *priv)
3468{
3469 struct phy_device *phydev = priv->phydev;
3470 u32 val = 0;
3471
3472 if (!phydev->duplex)
3473 return val;
3474
3475 if (!priv->pause_aneg_en) {
3476 if (priv->tx_pause_en)
3477 val |= MACCFG1_TX_FLOW;
3478 if (priv->rx_pause_en)
3479 val |= MACCFG1_RX_FLOW;
3480 } else {
3481 u16 lcl_adv, rmt_adv;
3482 u8 flowctrl;
3483 /* get link partner capabilities */
3484 rmt_adv = 0;
3485 if (phydev->pause)
3486 rmt_adv = LPA_PAUSE_CAP;
3487 if (phydev->asym_pause)
3488 rmt_adv |= LPA_PAUSE_ASYM;
3489
Pavaluca Matei-B4661043ef8d22014-10-27 10:42:43 +02003490 lcl_adv = 0;
3491 if (phydev->advertising & ADVERTISED_Pause)
3492 lcl_adv |= ADVERTISE_PAUSE_CAP;
3493 if (phydev->advertising & ADVERTISED_Asym_Pause)
3494 lcl_adv |= ADVERTISE_PAUSE_ASYM;
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003495
3496 flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv);
3497 if (flowctrl & FLOW_CTRL_TX)
3498 val |= MACCFG1_TX_FLOW;
3499 if (flowctrl & FLOW_CTRL_RX)
3500 val |= MACCFG1_RX_FLOW;
3501 }
3502
3503 return val;
3504}
3505
3506static noinline void gfar_update_link_state(struct gfar_private *priv)
3507{
3508 struct gfar __iomem *regs = priv->gfargrp[0].regs;
3509 struct phy_device *phydev = priv->phydev;
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003510 struct gfar_priv_rx_q *rx_queue = NULL;
3511 int i;
3512 struct rxbd8 *bdp;
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003513
3514 if (unlikely(test_bit(GFAR_RESETTING, &priv->state)))
3515 return;
3516
3517 if (phydev->link) {
3518 u32 tempval1 = gfar_read(&regs->maccfg1);
3519 u32 tempval = gfar_read(&regs->maccfg2);
3520 u32 ecntrl = gfar_read(&regs->ecntrl);
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003521 u32 tx_flow_oldval = (tempval & MACCFG1_TX_FLOW);
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003522
3523 if (phydev->duplex != priv->oldduplex) {
3524 if (!(phydev->duplex))
3525 tempval &= ~(MACCFG2_FULL_DUPLEX);
3526 else
3527 tempval |= MACCFG2_FULL_DUPLEX;
3528
3529 priv->oldduplex = phydev->duplex;
3530 }
3531
3532 if (phydev->speed != priv->oldspeed) {
3533 switch (phydev->speed) {
3534 case 1000:
3535 tempval =
3536 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
3537
3538 ecntrl &= ~(ECNTRL_R100);
3539 break;
3540 case 100:
3541 case 10:
3542 tempval =
3543 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
3544
3545 /* Reduced mode distinguishes
3546 * between 10 and 100
3547 */
3548 if (phydev->speed == SPEED_100)
3549 ecntrl |= ECNTRL_R100;
3550 else
3551 ecntrl &= ~(ECNTRL_R100);
3552 break;
3553 default:
3554 netif_warn(priv, link, priv->ndev,
3555 "Ack! Speed (%d) is not 10/100/1000!\n",
3556 phydev->speed);
3557 break;
3558 }
3559
3560 priv->oldspeed = phydev->speed;
3561 }
3562
3563 tempval1 &= ~(MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
3564 tempval1 |= gfar_get_flowctrl_cfg(priv);
3565
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003566 /* Turn last free buffer recording on */
3567 if ((tempval1 & MACCFG1_TX_FLOW) && !tx_flow_oldval) {
3568 for (i = 0; i < priv->num_rx_queues; i++) {
3569 rx_queue = priv->rx_queue[i];
Claudiu Manoil76f31e82015-07-13 16:22:03 +03003570 bdp = gfar_rxbd_lastfree(rx_queue);
3571 gfar_write(rx_queue->rfbptr, (u32)bdp);
Matei Pavaluca45b679c92014-10-27 10:42:44 +02003572 }
3573
3574 priv->tx_actual_en = 1;
3575 }
3576
3577 if (unlikely(!(tempval1 & MACCFG1_TX_FLOW) && tx_flow_oldval))
3578 priv->tx_actual_en = 0;
3579
Claudiu Manoil6ce29b02014-04-30 14:27:21 +03003580 gfar_write(&regs->maccfg1, tempval1);
3581 gfar_write(&regs->maccfg2, tempval);
3582 gfar_write(&regs->ecntrl, ecntrl);
3583
3584 if (!priv->oldlink)
3585 priv->oldlink = 1;
3586
3587 } else if (priv->oldlink) {
3588 priv->oldlink = 0;
3589 priv->oldspeed = 0;
3590 priv->oldduplex = -1;
3591 }
3592
3593 if (netif_msg_link(priv))
3594 phy_print_status(phydev);
3595}
3596
Fabian Frederick94e5a2a2015-03-17 19:37:34 +01003597static const struct of_device_id gfar_match[] =
Andy Flemingb31a1d82008-12-16 15:29:15 -08003598{
3599 {
3600 .type = "network",
3601 .compatible = "gianfar",
3602 },
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003603 {
3604 .compatible = "fsl,etsec2",
3605 },
Andy Flemingb31a1d82008-12-16 15:29:15 -08003606 {},
3607};
Anton Vorontsove72701a2009-10-14 14:54:52 -07003608MODULE_DEVICE_TABLE(of, gfar_match);
Andy Flemingb31a1d82008-12-16 15:29:15 -08003609
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610/* Structure for a device driver */
Grant Likely74888762011-02-22 21:05:51 -07003611static struct platform_driver gfar_driver = {
Grant Likely40182942010-04-13 16:13:02 -07003612 .driver = {
3613 .name = "fsl-gianfar",
Grant Likely40182942010-04-13 16:13:02 -07003614 .pm = GFAR_PM_OPS,
3615 .of_match_table = gfar_match,
3616 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 .probe = gfar_probe,
3618 .remove = gfar_remove,
3619};
3620
Axel Lindb62f682011-11-27 16:44:17 +00003621module_platform_driver(gfar_driver);