blob: 4eac25f66605fecd24408a71f6411516b0f115fc [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>
Anton Vorontsov7d350972010-06-30 06:39:12 +000091#include <asm/reg.h>
Claudiu Manoil2969b1f2013-10-09 20:20:41 +030092#include <asm/mpc85xx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <asm/irq.h>
94#include <asm/uaccess.h>
95#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <linux/dma-mapping.h>
97#include <linux/crc32.h>
Andy Flemingbb40dcb2005-09-23 22:54:21 -040098#include <linux/mii.h>
99#include <linux/phy.h>
Andy Flemingb31a1d82008-12-16 15:29:15 -0800100#include <linux/phy_fixed.h>
101#include <linux/of.h>
David Daney4b6ba8a2010-10-26 15:07:13 -0700102#include <linux/of_net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104#include "gianfar.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106#define TX_TIMEOUT (1*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Andy Fleming7f7f5312005-11-11 12:38:59 -0600108const char gfar_driver_version[] = "1.3";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static int gfar_enet_open(struct net_device *dev);
111static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev);
Sebastian Siewiorab939902008-08-19 21:12:45 +0200112static void gfar_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static void gfar_timeout(struct net_device *dev);
114static int gfar_close(struct net_device *dev);
Andy Fleming815b97c2008-04-22 17:18:29 -0500115struct sk_buff *gfar_new_skb(struct net_device *dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000116static void gfar_new_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000117 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static int gfar_set_mac_address(struct net_device *dev);
119static int gfar_change_mtu(struct net_device *dev, int new_mtu);
David Howells7d12e782006-10-05 14:55:46 +0100120static irqreturn_t gfar_error(int irq, void *dev_id);
121static irqreturn_t gfar_transmit(int irq, void *dev_id);
122static irqreturn_t gfar_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static void adjust_link(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static int init_phy(struct net_device *dev);
Grant Likely74888762011-02-22 21:05:51 -0700125static int gfar_probe(struct platform_device *ofdev);
Grant Likely2dc11582010-08-06 09:25:50 -0600126static int gfar_remove(struct platform_device *ofdev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -0400127static void free_skb_resources(struct gfar_private *priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static void gfar_set_multi(struct net_device *dev);
129static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr);
Kapil Junejad3c12872007-05-11 18:25:11 -0500130static void gfar_configure_serdes(struct net_device *dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700131static int gfar_poll(struct napi_struct *napi, int budget);
Claudiu Manoil5eaedf32013-06-10 20:19:48 +0300132static int gfar_poll_sq(struct napi_struct *napi, int budget);
Vitaly Woolf2d71c22006-11-07 13:27:02 +0300133#ifdef CONFIG_NET_POLL_CONTROLLER
134static void gfar_netpoll(struct net_device *dev);
135#endif
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000136int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit);
Claudiu Manoilc233cf402013-03-19 07:40:02 +0000137static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue);
Claudiu Manoil61db26c2013-02-14 05:00:05 +0000138static void gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
139 int amount_pull, struct napi_struct *napi);
Claudiu Manoilc10650b2014-02-17 12:53:18 +0200140static void gfar_halt_nodisable(struct gfar_private *priv);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600141static void gfar_clear_exact_match(struct net_device *dev);
Joe Perchesb6bc7652010-12-21 02:16:08 -0800142static void gfar_set_mac_for_addr(struct net_device *dev, int num,
143 const u8 *addr);
Andy Fleming26ccfc32009-03-10 12:58:28 +0000144static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146MODULE_AUTHOR("Freescale Semiconductor, Inc");
147MODULE_DESCRIPTION("Gianfar Ethernet Driver");
148MODULE_LICENSE("GPL");
149
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000150static void gfar_init_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000151 dma_addr_t buf)
152{
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000153 u32 lstatus;
154
155 bdp->bufPtr = buf;
156
157 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000158 if (bdp == rx_queue->rx_bd_base + rx_queue->rx_ring_size - 1)
Anton Vorontsov8a102fe2009-10-12 06:00:37 +0000159 lstatus |= BD_LFLAG(RXBD_WRAP);
160
161 eieio();
162
163 bdp->lstatus = lstatus;
164}
165
Anton Vorontsov87283272009-10-12 06:00:39 +0000166static int gfar_init_bds(struct net_device *ndev)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000167{
Anton Vorontsov87283272009-10-12 06:00:39 +0000168 struct gfar_private *priv = netdev_priv(ndev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000169 struct gfar_priv_tx_q *tx_queue = NULL;
170 struct gfar_priv_rx_q *rx_queue = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000171 struct txbd8 *txbdp;
172 struct rxbd8 *rxbdp;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000173 int i, j;
Anton Vorontsov87283272009-10-12 06:00:39 +0000174
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000175 for (i = 0; i < priv->num_tx_queues; i++) {
176 tx_queue = priv->tx_queue[i];
177 /* Initialize some variables in our dev structure */
178 tx_queue->num_txbdfree = tx_queue->tx_ring_size;
179 tx_queue->dirty_tx = tx_queue->tx_bd_base;
180 tx_queue->cur_tx = tx_queue->tx_bd_base;
181 tx_queue->skb_curtx = 0;
182 tx_queue->skb_dirtytx = 0;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000183
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000184 /* Initialize Transmit Descriptor Ring */
185 txbdp = tx_queue->tx_bd_base;
186 for (j = 0; j < tx_queue->tx_ring_size; j++) {
187 txbdp->lstatus = 0;
188 txbdp->bufPtr = 0;
189 txbdp++;
Anton Vorontsov87283272009-10-12 06:00:39 +0000190 }
191
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000192 /* Set the last descriptor in the ring to indicate wrap */
193 txbdp--;
194 txbdp->status |= TXBD_WRAP;
195 }
196
197 for (i = 0; i < priv->num_rx_queues; i++) {
198 rx_queue = priv->rx_queue[i];
199 rx_queue->cur_rx = rx_queue->rx_bd_base;
200 rx_queue->skb_currx = 0;
201 rxbdp = rx_queue->rx_bd_base;
202
203 for (j = 0; j < rx_queue->rx_ring_size; j++) {
204 struct sk_buff *skb = rx_queue->rx_skbuff[j];
205
206 if (skb) {
207 gfar_init_rxbdp(rx_queue, rxbdp,
208 rxbdp->bufPtr);
209 } else {
210 skb = gfar_new_skb(ndev);
211 if (!skb) {
Joe Perches59deab22011-06-14 08:57:47 +0000212 netdev_err(ndev, "Can't allocate RX buffers\n");
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +0000213 return -ENOMEM;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000214 }
215 rx_queue->rx_skbuff[j] = skb;
216
217 gfar_new_rxbdp(rx_queue, rxbdp, skb);
218 }
219
220 rxbdp++;
221 }
222
Anton Vorontsov87283272009-10-12 06:00:39 +0000223 }
224
225 return 0;
226}
227
228static int gfar_alloc_skb_resources(struct net_device *ndev)
229{
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000230 void *vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000231 dma_addr_t addr;
232 int i, j, k;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000233 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil369ec162013-02-14 05:00:02 +0000234 struct device *dev = priv->dev;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000235 struct gfar_priv_tx_q *tx_queue = NULL;
236 struct gfar_priv_rx_q *rx_queue = NULL;
237
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000238 priv->total_tx_ring_size = 0;
239 for (i = 0; i < priv->num_tx_queues; i++)
240 priv->total_tx_ring_size += priv->tx_queue[i]->tx_ring_size;
241
242 priv->total_rx_ring_size = 0;
243 for (i = 0; i < priv->num_rx_queues; i++)
244 priv->total_rx_ring_size += priv->rx_queue[i]->rx_ring_size;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000245
246 /* Allocate memory for the buffer descriptors */
Anton Vorontsov87283272009-10-12 06:00:39 +0000247 vaddr = dma_alloc_coherent(dev,
Joe Perchesd0320f72013-03-14 13:07:21 +0000248 (priv->total_tx_ring_size *
249 sizeof(struct txbd8)) +
250 (priv->total_rx_ring_size *
251 sizeof(struct rxbd8)),
252 &addr, GFP_KERNEL);
253 if (!vaddr)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000254 return -ENOMEM;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000255
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000256 for (i = 0; i < priv->num_tx_queues; i++) {
257 tx_queue = priv->tx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000258 tx_queue->tx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000259 tx_queue->tx_bd_dma_base = addr;
260 tx_queue->dev = ndev;
261 /* enet DMA only understands physical addresses */
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000262 addr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
263 vaddr += sizeof(struct txbd8) * tx_queue->tx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000264 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000265
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000266 /* Start the rx descriptor ring where the tx ring leaves off */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000267 for (i = 0; i < priv->num_rx_queues; i++) {
268 rx_queue = priv->rx_queue[i];
Joe Perches43d620c2011-06-16 19:08:06 +0000269 rx_queue->rx_bd_base = vaddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000270 rx_queue->rx_bd_dma_base = addr;
271 rx_queue->dev = ndev;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000272 addr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
273 vaddr += sizeof(struct rxbd8) * rx_queue->rx_ring_size;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000274 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000275
276 /* Setup the skbuff rings */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000277 for (i = 0; i < priv->num_tx_queues; i++) {
278 tx_queue = priv->tx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000279 tx_queue->tx_skbuff =
280 kmalloc_array(tx_queue->tx_ring_size,
281 sizeof(*tx_queue->tx_skbuff),
282 GFP_KERNEL);
283 if (!tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000284 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000285
286 for (k = 0; k < tx_queue->tx_ring_size; k++)
287 tx_queue->tx_skbuff[k] = NULL;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000288 }
289
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000290 for (i = 0; i < priv->num_rx_queues; i++) {
291 rx_queue = priv->rx_queue[i];
Joe Perches14f8dc42013-02-07 11:46:27 +0000292 rx_queue->rx_skbuff =
293 kmalloc_array(rx_queue->rx_ring_size,
294 sizeof(*rx_queue->rx_skbuff),
295 GFP_KERNEL);
296 if (!rx_queue->rx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000297 goto cleanup;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000298
299 for (j = 0; j < rx_queue->rx_ring_size; j++)
300 rx_queue->rx_skbuff[j] = NULL;
301 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000302
Anton Vorontsov87283272009-10-12 06:00:39 +0000303 if (gfar_init_bds(ndev))
304 goto cleanup;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000305
306 return 0;
307
308cleanup:
309 free_skb_resources(priv);
310 return -ENOMEM;
311}
312
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000313static void gfar_init_tx_rx_base(struct gfar_private *priv)
314{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000315 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov18294ad2009-11-04 12:53:00 +0000316 u32 __iomem *baddr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000317 int i;
318
319 baddr = &regs->tbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000320 for (i = 0; i < priv->num_tx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000321 gfar_write(baddr, priv->tx_queue[i]->tx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000322 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000323 }
324
325 baddr = &regs->rbase0;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000326 for (i = 0; i < priv->num_rx_queues; i++) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000327 gfar_write(baddr, priv->rx_queue[i]->rx_bd_dma_base);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000328 baddr += 2;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000329 }
330}
331
Claudiu Manoil88302642014-02-24 12:13:43 +0200332static void gfar_rx_buff_size_config(struct gfar_private *priv)
333{
334 int frame_size = priv->ndev->mtu + ETH_HLEN;
335
336 /* set this when rx hw offload (TOE) functions are being used */
337 priv->uses_rxfcb = 0;
338
339 if (priv->ndev->features & (NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_RX))
340 priv->uses_rxfcb = 1;
341
342 if (priv->hwts_rx_en)
343 priv->uses_rxfcb = 1;
344
345 if (priv->uses_rxfcb)
346 frame_size += GMAC_FCB_LEN;
347
348 frame_size += priv->padding;
349
350 frame_size = (frame_size & ~(INCREMENTAL_BUFFER_SIZE - 1)) +
351 INCREMENTAL_BUFFER_SIZE;
352
353 priv->rx_buffer_size = frame_size;
354}
355
Claudiu Manoila328ac92014-02-24 12:13:42 +0200356static void gfar_mac_rx_config(struct gfar_private *priv)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000357{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000358 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000359 u32 rctrl = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000360
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000361 if (priv->rx_filer_enable) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000362 rctrl |= RCTRL_FILREN;
Sandeep Gopalpet1ccb8382009-12-16 01:14:58 +0000363 /* Program the RIR0 reg with the required distribution */
364 gfar_write(&regs->rir0, DEFAULT_RIR0);
365 }
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000366
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000367 /* Restore PROMISC mode */
Claudiu Manoila328ac92014-02-24 12:13:42 +0200368 if (priv->ndev->flags & IFF_PROMISC)
Claudiu Manoilf5ae6272013-01-23 00:18:36 +0000369 rctrl |= RCTRL_PROM;
370
Claudiu Manoil88302642014-02-24 12:13:43 +0200371 if (priv->ndev->features & NETIF_F_RXCSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000372 rctrl |= RCTRL_CHECKSUMMING;
373
Claudiu Manoil88302642014-02-24 12:13:43 +0200374 if (priv->extended_hash)
375 rctrl |= RCTRL_EXTHASH | RCTRL_EMEN;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000376
377 if (priv->padding) {
378 rctrl &= ~RCTRL_PAL_MASK;
379 rctrl |= RCTRL_PADDING(priv->padding);
380 }
381
Manfred Rudigier97553f72010-06-11 01:49:05 +0000382 /* Enable HW time stamping if requested from user space */
Claudiu Manoil88302642014-02-24 12:13:43 +0200383 if (priv->hwts_rx_en)
Manfred Rudigier97553f72010-06-11 01:49:05 +0000384 rctrl |= RCTRL_PRSDEP_INIT | RCTRL_TS_ENABLE;
385
Claudiu Manoil88302642014-02-24 12:13:43 +0200386 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_RX)
Sebastian Pöhnb852b722011-07-26 00:03:13 +0000387 rctrl |= RCTRL_VLEX | RCTRL_PRSDEP_INIT;
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000388
389 /* Init rctrl based on our settings */
390 gfar_write(&regs->rctrl, rctrl);
Claudiu Manoila328ac92014-02-24 12:13:42 +0200391}
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000392
Claudiu Manoila328ac92014-02-24 12:13:42 +0200393static void gfar_mac_tx_config(struct gfar_private *priv)
394{
395 struct gfar __iomem *regs = priv->gfargrp[0].regs;
396 u32 tctrl = 0;
397
398 if (priv->ndev->features & NETIF_F_IP_CSUM)
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000399 tctrl |= TCTRL_INIT_CSUM;
400
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +0000401 if (priv->prio_sched_en)
402 tctrl |= TCTRL_TXSCHED_PRIO;
403 else {
404 tctrl |= TCTRL_TXSCHED_WRRS;
405 gfar_write(&regs->tr03wt, DEFAULT_WRRS_WEIGHT);
406 gfar_write(&regs->tr47wt, DEFAULT_WRRS_WEIGHT);
407 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000408
Claudiu Manoil88302642014-02-24 12:13:43 +0200409 if (priv->ndev->features & NETIF_F_HW_VLAN_CTAG_TX)
410 tctrl |= TCTRL_VLINS;
411
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000412 gfar_write(&regs->tctrl, tctrl);
Anton Vorontsov826aa4a2009-10-12 06:00:34 +0000413}
414
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000415static struct net_device_stats *gfar_get_stats(struct net_device *dev)
416{
417 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000418 unsigned long rx_packets = 0, rx_bytes = 0, rx_dropped = 0;
419 unsigned long tx_packets = 0, tx_bytes = 0;
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000420 int i;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000421
422 for (i = 0; i < priv->num_rx_queues; i++) {
423 rx_packets += priv->rx_queue[i]->stats.rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000424 rx_bytes += priv->rx_queue[i]->stats.rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000425 rx_dropped += priv->rx_queue[i]->stats.rx_dropped;
426 }
427
428 dev->stats.rx_packets = rx_packets;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000429 dev->stats.rx_bytes = rx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000430 dev->stats.rx_dropped = rx_dropped;
431
432 for (i = 0; i < priv->num_tx_queues; i++) {
Eric Dumazet1ac9ad12011-01-12 12:13:14 +0000433 tx_bytes += priv->tx_queue[i]->stats.tx_bytes;
434 tx_packets += priv->tx_queue[i]->stats.tx_packets;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000435 }
436
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000437 dev->stats.tx_bytes = tx_bytes;
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000438 dev->stats.tx_packets = tx_packets;
439
440 return &dev->stats;
441}
442
Andy Fleming26ccfc32009-03-10 12:58:28 +0000443static const struct net_device_ops gfar_netdev_ops = {
444 .ndo_open = gfar_enet_open,
445 .ndo_start_xmit = gfar_start_xmit,
446 .ndo_stop = gfar_close,
447 .ndo_change_mtu = gfar_change_mtu,
Michał Mirosław8b3afe92011-04-15 04:50:50 +0000448 .ndo_set_features = gfar_set_features,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000449 .ndo_set_rx_mode = gfar_set_multi,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000450 .ndo_tx_timeout = gfar_timeout,
451 .ndo_do_ioctl = gfar_ioctl,
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +0000452 .ndo_get_stats = gfar_get_stats,
Ben Hutchings240c1022009-07-09 17:54:35 +0000453 .ndo_set_mac_address = eth_mac_addr,
454 .ndo_validate_addr = eth_validate_addr,
Andy Fleming26ccfc32009-03-10 12:58:28 +0000455#ifdef CONFIG_NET_POLL_CONTROLLER
456 .ndo_poll_controller = gfar_netpoll,
457#endif
458};
459
Claudiu Manoilefeddce2014-02-17 12:53:17 +0200460static void gfar_ints_disable(struct gfar_private *priv)
461{
462 int i;
463 for (i = 0; i < priv->num_grps; i++) {
464 struct gfar __iomem *regs = priv->gfargrp[i].regs;
465 /* Clear IEVENT */
466 gfar_write(&regs->ievent, IEVENT_INIT_CLEAR);
467
468 /* Initialize IMASK */
469 gfar_write(&regs->imask, IMASK_INIT_CLEAR);
470 }
471}
472
473static void gfar_ints_enable(struct gfar_private *priv)
474{
475 int i;
476 for (i = 0; i < priv->num_grps; i++) {
477 struct gfar __iomem *regs = priv->gfargrp[i].regs;
478 /* Unmask the interrupts we look for */
479 gfar_write(&regs->imask, IMASK_DEFAULT);
480 }
481}
482
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000483void lock_tx_qs(struct gfar_private *priv)
484{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000485 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000486
487 for (i = 0; i < priv->num_tx_queues; i++)
488 spin_lock(&priv->tx_queue[i]->txlock);
489}
490
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000491void unlock_tx_qs(struct gfar_private *priv)
492{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000493 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000494
495 for (i = 0; i < priv->num_tx_queues; i++)
496 spin_unlock(&priv->tx_queue[i]->txlock);
497}
498
Claudiu Manoil20862782014-02-17 12:53:14 +0200499static int gfar_alloc_tx_queues(struct gfar_private *priv)
500{
501 int i;
502
503 for (i = 0; i < priv->num_tx_queues; i++) {
504 priv->tx_queue[i] = kzalloc(sizeof(struct gfar_priv_tx_q),
505 GFP_KERNEL);
506 if (!priv->tx_queue[i])
507 return -ENOMEM;
508
509 priv->tx_queue[i]->tx_skbuff = NULL;
510 priv->tx_queue[i]->qindex = i;
511 priv->tx_queue[i]->dev = priv->ndev;
512 spin_lock_init(&(priv->tx_queue[i]->txlock));
513 }
514 return 0;
515}
516
517static int gfar_alloc_rx_queues(struct gfar_private *priv)
518{
519 int i;
520
521 for (i = 0; i < priv->num_rx_queues; i++) {
522 priv->rx_queue[i] = kzalloc(sizeof(struct gfar_priv_rx_q),
523 GFP_KERNEL);
524 if (!priv->rx_queue[i])
525 return -ENOMEM;
526
527 priv->rx_queue[i]->rx_skbuff = NULL;
528 priv->rx_queue[i]->qindex = i;
529 priv->rx_queue[i]->dev = priv->ndev;
Claudiu Manoil20862782014-02-17 12:53:14 +0200530 }
531 return 0;
532}
533
534static void gfar_free_tx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000535{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000536 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000537
538 for (i = 0; i < priv->num_tx_queues; i++)
539 kfree(priv->tx_queue[i]);
540}
541
Claudiu Manoil20862782014-02-17 12:53:14 +0200542static void gfar_free_rx_queues(struct gfar_private *priv)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000543{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000544 int i;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000545
546 for (i = 0; i < priv->num_rx_queues; i++)
547 kfree(priv->rx_queue[i]);
548}
549
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000550static void unmap_group_regs(struct gfar_private *priv)
551{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000552 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000553
554 for (i = 0; i < MAXGROUPS; i++)
555 if (priv->gfargrp[i].regs)
556 iounmap(priv->gfargrp[i].regs);
557}
558
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000559static void free_gfar_dev(struct gfar_private *priv)
560{
561 int i, j;
562
563 for (i = 0; i < priv->num_grps; i++)
564 for (j = 0; j < GFAR_NUM_IRQS; j++) {
565 kfree(priv->gfargrp[i].irqinfo[j]);
566 priv->gfargrp[i].irqinfo[j] = NULL;
567 }
568
569 free_netdev(priv->ndev);
570}
571
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000572static void disable_napi(struct gfar_private *priv)
573{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000574 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000575
576 for (i = 0; i < priv->num_grps; i++)
577 napi_disable(&priv->gfargrp[i].napi);
578}
579
580static void enable_napi(struct gfar_private *priv)
581{
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +0000582 int i;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000583
584 for (i = 0; i < priv->num_grps; i++)
585 napi_enable(&priv->gfargrp[i].napi);
586}
587
588static int gfar_parse_group(struct device_node *np,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000589 struct gfar_private *priv, const char *model)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000590{
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000591 struct gfar_priv_grp *grp = &priv->gfargrp[priv->num_grps];
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000592 u32 *queue_mask;
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000593 int i;
594
Paul Gortmaker7c1e7e92013-02-04 09:49:42 +0000595 for (i = 0; i < GFAR_NUM_IRQS; i++) {
596 grp->irqinfo[i] = kzalloc(sizeof(struct gfar_irqinfo),
597 GFP_KERNEL);
598 if (!grp->irqinfo[i])
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000599 return -ENOMEM;
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000600 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000601
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000602 grp->regs = of_iomap(np, 0);
603 if (!grp->regs)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000604 return -ENOMEM;
605
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000606 gfar_irq(grp, TX)->irq = irq_of_parse_and_map(np, 0);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000607
608 /* If we aren't the FEC we have multiple interrupts */
609 if (model && strcasecmp(model, "FEC")) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000610 gfar_irq(grp, RX)->irq = irq_of_parse_and_map(np, 1);
611 gfar_irq(grp, ER)->irq = irq_of_parse_and_map(np, 2);
612 if (gfar_irq(grp, TX)->irq == NO_IRQ ||
613 gfar_irq(grp, RX)->irq == NO_IRQ ||
614 gfar_irq(grp, ER)->irq == NO_IRQ)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000615 return -EINVAL;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000616 }
617
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000618 grp->priv = priv;
619 spin_lock_init(&grp->grplock);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000620 if (priv->mode == MQ_MG_MODE) {
621 queue_mask = (u32 *)of_get_property(np, "fsl,rx-bit-map", NULL);
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000622 grp->rx_bit_map = queue_mask ?
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000623 *queue_mask : (DEFAULT_MAPPING >> priv->num_grps);
624 queue_mask = (u32 *)of_get_property(np, "fsl,tx-bit-map", NULL);
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000625 grp->tx_bit_map = queue_mask ?
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000626 *queue_mask : (DEFAULT_MAPPING >> priv->num_grps);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000627 } else {
Claudiu Manoil5fedcc12013-01-29 03:55:11 +0000628 grp->rx_bit_map = 0xFF;
629 grp->tx_bit_map = 0xFF;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000630 }
Claudiu Manoil20862782014-02-17 12:53:14 +0200631
632 /* bit_map's MSB is q0 (from q0 to q7) but, for_each_set_bit parses
633 * right to left, so we need to revert the 8 bits to get the q index
634 */
635 grp->rx_bit_map = bitrev8(grp->rx_bit_map);
636 grp->tx_bit_map = bitrev8(grp->tx_bit_map);
637
638 /* Calculate RSTAT, TSTAT, RQUEUE and TQUEUE values,
639 * also assign queues to groups
640 */
641 for_each_set_bit(i, &grp->rx_bit_map, priv->num_rx_queues) {
642 grp->num_rx_queues++;
643 grp->rstat |= (RSTAT_CLEAR_RHALT >> i);
644 priv->rqueue |= ((RQUEUE_EN0 | RQUEUE_EX0) >> i);
645 priv->rx_queue[i]->grp = grp;
646 }
647
648 for_each_set_bit(i, &grp->tx_bit_map, priv->num_tx_queues) {
649 grp->num_tx_queues++;
650 grp->tstat |= (TSTAT_CLEAR_THALT >> i);
651 priv->tqueue |= (TQUEUE_EN0 >> i);
652 priv->tx_queue[i]->grp = grp;
653 }
654
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000655 priv->num_grps++;
656
657 return 0;
658}
659
Grant Likely2dc11582010-08-06 09:25:50 -0600660static int gfar_of_init(struct platform_device *ofdev, struct net_device **pdev)
Andy Flemingb31a1d82008-12-16 15:29:15 -0800661{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800662 const char *model;
663 const char *ctype;
664 const void *mac_addr;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000665 int err = 0, i;
666 struct net_device *dev = NULL;
667 struct gfar_private *priv = NULL;
Grant Likely61c7a082010-04-13 16:12:29 -0700668 struct device_node *np = ofdev->dev.of_node;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000669 struct device_node *child = NULL;
Andy Fleming4d7902f2009-02-04 16:43:44 -0800670 const u32 *stash;
671 const u32 *stash_len;
672 const u32 *stash_idx;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000673 unsigned int num_tx_qs, num_rx_qs;
674 u32 *tx_queues, *rx_queues;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800675
676 if (!np || !of_device_is_available(np))
677 return -ENODEV;
678
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000679 /* parse the num of tx and rx queues */
680 tx_queues = (u32 *)of_get_property(np, "fsl,num_tx_queues", NULL);
681 num_tx_qs = tx_queues ? *tx_queues : 1;
682
683 if (num_tx_qs > MAX_TX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000684 pr_err("num_tx_qs(=%d) greater than MAX_TX_QS(=%d)\n",
685 num_tx_qs, MAX_TX_QS);
686 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000687 return -EINVAL;
688 }
689
690 rx_queues = (u32 *)of_get_property(np, "fsl,num_rx_queues", NULL);
691 num_rx_qs = rx_queues ? *rx_queues : 1;
692
693 if (num_rx_qs > MAX_RX_QS) {
Joe Perches59deab22011-06-14 08:57:47 +0000694 pr_err("num_rx_qs(=%d) greater than MAX_RX_QS(=%d)\n",
695 num_rx_qs, MAX_RX_QS);
696 pr_err("Cannot do alloc_etherdev, aborting\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000697 return -EINVAL;
698 }
699
700 *pdev = alloc_etherdev_mq(sizeof(*priv), num_tx_qs);
701 dev = *pdev;
702 if (NULL == dev)
703 return -ENOMEM;
704
705 priv = netdev_priv(dev);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000706 priv->ndev = dev;
707
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000708 priv->num_tx_queues = num_tx_qs;
Ben Hutchingsfe069122010-09-27 08:27:37 +0000709 netif_set_real_num_rx_queues(dev, num_rx_qs);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +0000710 priv->num_rx_queues = num_rx_qs;
Claudiu Manoil20862782014-02-17 12:53:14 +0200711
712 err = gfar_alloc_tx_queues(priv);
713 if (err)
714 goto tx_alloc_failed;
715
716 err = gfar_alloc_rx_queues(priv);
717 if (err)
718 goto rx_alloc_failed;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800719
Jan Ceuleers0977f812012-06-05 03:42:12 +0000720 /* Init Rx queue filer rule set linked list */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -0700721 INIT_LIST_HEAD(&priv->rx_list.list);
722 priv->rx_list.count = 0;
723 mutex_init(&priv->rx_queue_access);
724
Andy Flemingb31a1d82008-12-16 15:29:15 -0800725 model = of_get_property(np, "model", NULL);
726
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000727 for (i = 0; i < MAXGROUPS; i++)
728 priv->gfargrp[i].regs = NULL;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800729
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000730 /* Parse and initialize group specific information */
731 if (of_device_is_compatible(np, "fsl,etsec2")) {
732 priv->mode = MQ_MG_MODE;
733 for_each_child_of_node(np, child) {
734 err = gfar_parse_group(child, priv, model);
735 if (err)
736 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800737 }
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000738 } else {
739 priv->mode = SQ_SG_MODE;
740 err = gfar_parse_group(np, priv, model);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000741 if (err)
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000742 goto err_grp_init;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800743 }
744
Andy Fleming4d7902f2009-02-04 16:43:44 -0800745 stash = of_get_property(np, "bd-stash", NULL);
746
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +0000747 if (stash) {
Andy Fleming4d7902f2009-02-04 16:43:44 -0800748 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BD_STASHING;
749 priv->bd_stash_en = 1;
750 }
751
752 stash_len = of_get_property(np, "rx-stash-len", NULL);
753
754 if (stash_len)
755 priv->rx_stash_size = *stash_len;
756
757 stash_idx = of_get_property(np, "rx-stash-idx", NULL);
758
759 if (stash_idx)
760 priv->rx_stash_index = *stash_idx;
761
762 if (stash_len || stash_idx)
763 priv->device_flags |= FSL_GIANFAR_DEV_HAS_BUF_STASHING;
764
Andy Flemingb31a1d82008-12-16 15:29:15 -0800765 mac_addr = of_get_mac_address(np);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000766
Andy Flemingb31a1d82008-12-16 15:29:15 -0800767 if (mac_addr)
Joe Perches6a3c910c2011-11-16 09:38:02 +0000768 memcpy(dev->dev_addr, mac_addr, ETH_ALEN);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800769
770 if (model && !strcasecmp(model, "TSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200771 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000772 FSL_GIANFAR_DEV_HAS_COALESCE |
773 FSL_GIANFAR_DEV_HAS_RMON |
774 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
775
Andy Flemingb31a1d82008-12-16 15:29:15 -0800776 if (model && !strcasecmp(model, "eTSEC"))
Claudiu Manoil34018fd2014-02-17 12:53:15 +0200777 priv->device_flags |= FSL_GIANFAR_DEV_HAS_GIGABIT |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000778 FSL_GIANFAR_DEV_HAS_COALESCE |
779 FSL_GIANFAR_DEV_HAS_RMON |
780 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000781 FSL_GIANFAR_DEV_HAS_CSUM |
782 FSL_GIANFAR_DEV_HAS_VLAN |
783 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET |
784 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH |
785 FSL_GIANFAR_DEV_HAS_TIMER;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800786
787 ctype = of_get_property(np, "phy-connection-type", NULL);
788
789 /* We only care about rgmii-id. The rest are autodetected */
790 if (ctype && !strcmp(ctype, "rgmii-id"))
791 priv->interface = PHY_INTERFACE_MODE_RGMII_ID;
792 else
793 priv->interface = PHY_INTERFACE_MODE_MII;
794
795 if (of_get_property(np, "fsl,magic-packet", NULL))
796 priv->device_flags |= FSL_GIANFAR_DEV_HAS_MAGIC_PACKET;
797
Grant Likelyfe192a42009-04-25 12:53:12 +0000798 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800799
800 /* Find the TBI PHY. If it's not there, we don't support SGMII */
Grant Likelyfe192a42009-04-25 12:53:12 +0000801 priv->tbi_node = of_parse_phandle(np, "tbi-handle", 0);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800802
803 return 0;
804
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +0000805err_grp_init:
806 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +0200807rx_alloc_failed:
808 gfar_free_rx_queues(priv);
809tx_alloc_failed:
810 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +0000811 free_gfar_dev(priv);
Andy Flemingb31a1d82008-12-16 15:29:15 -0800812 return err;
813}
814
Ben Hutchingsca0c88c2013-11-18 23:05:27 +0000815static int gfar_hwtstamp_set(struct net_device *netdev, struct ifreq *ifr)
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000816{
817 struct hwtstamp_config config;
818 struct gfar_private *priv = netdev_priv(netdev);
819
820 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
821 return -EFAULT;
822
823 /* reserved for future extensions */
824 if (config.flags)
825 return -EINVAL;
826
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000827 switch (config.tx_type) {
828 case HWTSTAMP_TX_OFF:
829 priv->hwts_tx_en = 0;
830 break;
831 case HWTSTAMP_TX_ON:
832 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
833 return -ERANGE;
834 priv->hwts_tx_en = 1;
835 break;
836 default:
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000837 return -ERANGE;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +0000838 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000839
840 switch (config.rx_filter) {
841 case HWTSTAMP_FILTER_NONE:
Manfred Rudigier97553f72010-06-11 01:49:05 +0000842 if (priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +0000843 priv->hwts_rx_en = 0;
Claudiu Manoil08511332014-02-24 12:13:45 +0200844 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +0000845 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000846 break;
847 default:
848 if (!(priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER))
849 return -ERANGE;
Manfred Rudigier97553f72010-06-11 01:49:05 +0000850 if (!priv->hwts_rx_en) {
Manfred Rudigier97553f72010-06-11 01:49:05 +0000851 priv->hwts_rx_en = 1;
Claudiu Manoil08511332014-02-24 12:13:45 +0200852 reset_gfar(netdev);
Manfred Rudigier97553f72010-06-11 01:49:05 +0000853 }
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000854 config.rx_filter = HWTSTAMP_FILTER_ALL;
855 break;
856 }
857
858 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
859 -EFAULT : 0;
860}
861
Ben Hutchingsca0c88c2013-11-18 23:05:27 +0000862static int gfar_hwtstamp_get(struct net_device *netdev, struct ifreq *ifr)
863{
864 struct hwtstamp_config config;
865 struct gfar_private *priv = netdev_priv(netdev);
866
867 config.flags = 0;
868 config.tx_type = priv->hwts_tx_en ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
869 config.rx_filter = (priv->hwts_rx_en ?
870 HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE);
871
872 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
873 -EFAULT : 0;
874}
875
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000876static int gfar_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
877{
878 struct gfar_private *priv = netdev_priv(dev);
879
880 if (!netif_running(dev))
881 return -EINVAL;
882
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000883 if (cmd == SIOCSHWTSTAMP)
Ben Hutchingsca0c88c2013-11-18 23:05:27 +0000884 return gfar_hwtstamp_set(dev, rq);
885 if (cmd == SIOCGHWTSTAMP)
886 return gfar_hwtstamp_get(dev, rq);
Manfred Rudigiercc772ab2010-04-08 23:10:03 +0000887
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000888 if (!priv->phydev)
889 return -ENODEV;
890
Richard Cochran28b04112010-07-17 08:48:55 +0000891 return phy_mii_ioctl(priv->phydev, rq, cmd);
Clifford Wolf0faac9f2009-01-09 10:23:11 +0000892}
893
Anton Vorontsov18294ad2009-11-04 12:53:00 +0000894static u32 cluster_entry_per_class(struct gfar_private *priv, u32 rqfar,
895 u32 class)
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000896{
897 u32 rqfpr = FPR_FILER_MASK;
898 u32 rqfcr = 0x0;
899
900 rqfar--;
901 rqfcr = RQFCR_CLE | RQFCR_PID_MASK | RQFCR_CMP_EXACT;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000902 priv->ftp_rqfpr[rqfar] = rqfpr;
903 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000904 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
905
906 rqfar--;
907 rqfcr = RQFCR_CMP_NOMATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000908 priv->ftp_rqfpr[rqfar] = rqfpr;
909 priv->ftp_rqfcr[rqfar] = rqfcr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000910 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
911
912 rqfar--;
913 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | RQFCR_CLE | RQFCR_AND;
914 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000915 priv->ftp_rqfcr[rqfar] = rqfcr;
916 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000917 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
918
919 rqfar--;
920 rqfcr = RQFCR_CMP_EXACT | RQFCR_PID_MASK | RQFCR_AND;
921 rqfpr = class;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000922 priv->ftp_rqfcr[rqfar] = rqfcr;
923 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000924 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
925
926 return rqfar;
927}
928
929static void gfar_init_filer_table(struct gfar_private *priv)
930{
931 int i = 0x0;
932 u32 rqfar = MAX_FILER_IDX;
933 u32 rqfcr = 0x0;
934 u32 rqfpr = FPR_FILER_MASK;
935
936 /* Default rule */
937 rqfcr = RQFCR_CMP_MATCH;
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000938 priv->ftp_rqfcr[rqfar] = rqfcr;
939 priv->ftp_rqfpr[rqfar] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000940 gfar_write_filer(priv, rqfar, rqfcr, rqfpr);
941
942 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6);
943 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_UDP);
944 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV6 | RQFPR_TCP);
945 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4);
946 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_UDP);
947 rqfar = cluster_entry_per_class(priv, rqfar, RQFPR_IPV4 | RQFPR_TCP);
948
Uwe Kleine-König85dd08e2010-06-11 12:16:55 +0200949 /* cur_filer_idx indicated the first non-masked rule */
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000950 priv->cur_filer_idx = rqfar;
951
952 /* Rest are masked rules */
953 rqfcr = RQFCR_CMP_NOMATCH;
954 for (i = 0; i < rqfar; i++) {
Wu Jiajun-B063786c43e042011-06-07 21:46:51 +0000955 priv->ftp_rqfcr[i] = rqfcr;
956 priv->ftp_rqfpr[i] = rqfpr;
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +0000957 gfar_write_filer(priv, i, rqfcr, rqfpr);
958 }
959}
960
Claudiu Manoil2969b1f2013-10-09 20:20:41 +0300961static void __gfar_detect_errata_83xx(struct gfar_private *priv)
Anton Vorontsov7d350972010-06-30 06:39:12 +0000962{
Anton Vorontsov7d350972010-06-30 06:39:12 +0000963 unsigned int pvr = mfspr(SPRN_PVR);
964 unsigned int svr = mfspr(SPRN_SVR);
965 unsigned int mod = (svr >> 16) & 0xfff6; /* w/o E suffix */
966 unsigned int rev = svr & 0xffff;
967
968 /* MPC8313 Rev 2.0 and higher; All MPC837x */
969 if ((pvr == 0x80850010 && mod == 0x80b0 && rev >= 0x0020) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000970 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsov7d350972010-06-30 06:39:12 +0000971 priv->errata |= GFAR_ERRATA_74;
972
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +0000973 /* MPC8313 and MPC837x all rev */
974 if ((pvr == 0x80850010 && mod == 0x80b0) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +0000975 (pvr == 0x80861010 && (mod & 0xfff9) == 0x80c0))
Anton Vorontsovdeb90ea2010-06-30 06:39:13 +0000976 priv->errata |= GFAR_ERRATA_76;
977
Claudiu Manoil2969b1f2013-10-09 20:20:41 +0300978 /* MPC8313 Rev < 2.0 */
979 if (pvr == 0x80850010 && mod == 0x80b0 && rev < 0x0020)
Alex Dubov4363c2fdd2011-03-16 17:57:13 +0000980 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil2969b1f2013-10-09 20:20:41 +0300981}
982
983static void __gfar_detect_errata_85xx(struct gfar_private *priv)
984{
985 unsigned int svr = mfspr(SPRN_SVR);
986
987 if ((SVR_SOC_VER(svr) == SVR_8548) && (SVR_REV(svr) == 0x20))
988 priv->errata |= GFAR_ERRATA_12;
Claudiu Manoil53fad772013-10-09 20:20:42 +0300989 if (((SVR_SOC_VER(svr) == SVR_P2020) && (SVR_REV(svr) < 0x20)) ||
990 ((SVR_SOC_VER(svr) == SVR_P2010) && (SVR_REV(svr) < 0x20)))
991 priv->errata |= GFAR_ERRATA_76; /* aka eTSEC 20 */
Claudiu Manoil2969b1f2013-10-09 20:20:41 +0300992}
993
994static void gfar_detect_errata(struct gfar_private *priv)
995{
996 struct device *dev = &priv->ofdev->dev;
997
998 /* no plans to fix */
999 priv->errata |= GFAR_ERRATA_A002;
1000
1001 if (pvr_version_is(PVR_VER_E500V1) || pvr_version_is(PVR_VER_E500V2))
1002 __gfar_detect_errata_85xx(priv);
1003 else /* non-mpc85xx parts, i.e. e300 core based */
1004 __gfar_detect_errata_83xx(priv);
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00001005
Anton Vorontsov7d350972010-06-30 06:39:12 +00001006 if (priv->errata)
1007 dev_info(dev, "enabled errata workarounds, flags: 0x%x\n",
1008 priv->errata);
1009}
1010
Claudiu Manoil08511332014-02-24 12:13:45 +02001011void gfar_mac_reset(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Claudiu Manoil20862782014-02-17 12:53:14 +02001013 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Claudiu Manoila328ac92014-02-24 12:13:42 +02001014 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /* Reset MAC layer */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001017 gfar_write(&regs->maccfg1, MACCFG1_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Andy Flemingb98ac702009-02-04 16:38:05 -08001019 /* We need to delay at least 3 TX clocks */
Claudiu Manoila328ac92014-02-24 12:13:42 +02001020 udelay(3);
Andy Flemingb98ac702009-02-04 16:38:05 -08001021
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001022 /* the soft reset bit is not self-resetting, so we need to
1023 * clear it before resuming normal operation
1024 */
Claudiu Manoil20862782014-02-17 12:53:14 +02001025 gfar_write(&regs->maccfg1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Claudiu Manoila328ac92014-02-24 12:13:42 +02001027 udelay(3);
1028
Claudiu Manoil88302642014-02-24 12:13:43 +02001029 /* Compute rx_buff_size based on config flags */
1030 gfar_rx_buff_size_config(priv);
1031
1032 /* Initialize the max receive frame/buffer lengths */
1033 gfar_write(&regs->maxfrm, priv->rx_buffer_size);
Claudiu Manoila328ac92014-02-24 12:13:42 +02001034 gfar_write(&regs->mrblr, priv->rx_buffer_size);
1035
1036 /* Initialize the Minimum Frame Length Register */
1037 gfar_write(&regs->minflr, MINFLR_INIT_SETTINGS);
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* Initialize MACCFG2. */
Anton Vorontsov7d350972010-06-30 06:39:12 +00001040 tempval = MACCFG2_INIT_SETTINGS;
Claudiu Manoil88302642014-02-24 12:13:43 +02001041
1042 /* If the mtu is larger than the max size for standard
1043 * ethernet frames (ie, a jumbo frame), then set maccfg2
1044 * to allow huge frames, and to check the length
1045 */
1046 if (priv->rx_buffer_size > DEFAULT_RX_BUFFER_SIZE ||
1047 gfar_has_errata(priv, GFAR_ERRATA_74))
Anton Vorontsov7d350972010-06-30 06:39:12 +00001048 tempval |= MACCFG2_HUGEFRAME | MACCFG2_LENGTHCHECK;
Claudiu Manoil88302642014-02-24 12:13:43 +02001049
Anton Vorontsov7d350972010-06-30 06:39:12 +00001050 gfar_write(&regs->maccfg2, tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Claudiu Manoila328ac92014-02-24 12:13:42 +02001052 /* Clear mac addr hash registers */
1053 gfar_write(&regs->igaddr0, 0);
1054 gfar_write(&regs->igaddr1, 0);
1055 gfar_write(&regs->igaddr2, 0);
1056 gfar_write(&regs->igaddr3, 0);
1057 gfar_write(&regs->igaddr4, 0);
1058 gfar_write(&regs->igaddr5, 0);
1059 gfar_write(&regs->igaddr6, 0);
1060 gfar_write(&regs->igaddr7, 0);
1061
1062 gfar_write(&regs->gaddr0, 0);
1063 gfar_write(&regs->gaddr1, 0);
1064 gfar_write(&regs->gaddr2, 0);
1065 gfar_write(&regs->gaddr3, 0);
1066 gfar_write(&regs->gaddr4, 0);
1067 gfar_write(&regs->gaddr5, 0);
1068 gfar_write(&regs->gaddr6, 0);
1069 gfar_write(&regs->gaddr7, 0);
1070
1071 if (priv->extended_hash)
1072 gfar_clear_exact_match(priv->ndev);
1073
1074 gfar_mac_rx_config(priv);
1075
1076 gfar_mac_tx_config(priv);
1077
1078 gfar_set_mac_address(priv->ndev);
1079
1080 gfar_set_multi(priv->ndev);
1081
1082 /* clear ievent and imask before configuring coalescing */
1083 gfar_ints_disable(priv);
1084
1085 /* Configure the coalescing support */
1086 gfar_configure_coalescing_all(priv);
1087}
1088
1089static void gfar_hw_init(struct gfar_private *priv)
1090{
1091 struct gfar __iomem *regs = priv->gfargrp[0].regs;
1092 u32 attrs;
1093
1094 /* Stop the DMA engine now, in case it was running before
1095 * (The firmware could have used it, and left it running).
1096 */
1097 gfar_halt(priv);
1098
1099 gfar_mac_reset(priv);
1100
1101 /* Zero out the rmon mib registers if it has them */
1102 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_RMON) {
1103 memset_io(&(regs->rmon), 0, sizeof(struct rmon_mib));
1104
1105 /* Mask off the CAM interrupts */
1106 gfar_write(&regs->rmon.cam1, 0xffffffff);
1107 gfar_write(&regs->rmon.cam2, 0xffffffff);
1108 }
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* Initialize ECNTRL */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001111 gfar_write(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Claudiu Manoil34018fd2014-02-17 12:53:15 +02001113 /* Set the extraction length and index */
1114 attrs = ATTRELI_EL(priv->rx_stash_size) |
1115 ATTRELI_EI(priv->rx_stash_index);
1116
1117 gfar_write(&regs->attreli, attrs);
1118
1119 /* Start with defaults, and add stashing
1120 * depending on driver parameters
1121 */
1122 attrs = ATTR_INIT_SETTINGS;
1123
1124 if (priv->bd_stash_en)
1125 attrs |= ATTR_BDSTASH;
1126
1127 if (priv->rx_stash_size != 0)
1128 attrs |= ATTR_BUFSTASH;
1129
1130 gfar_write(&regs->attr, attrs);
1131
1132 /* FIFO configs */
1133 gfar_write(&regs->fifo_tx_thr, DEFAULT_FIFO_TX_THR);
1134 gfar_write(&regs->fifo_tx_starve, DEFAULT_FIFO_TX_STARVE);
1135 gfar_write(&regs->fifo_tx_starve_shutoff, DEFAULT_FIFO_TX_STARVE_OFF);
1136
Claudiu Manoil20862782014-02-17 12:53:14 +02001137 /* Program the interrupt steering regs, only for MG devices */
1138 if (priv->num_grps > 1)
1139 gfar_write_isrg(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001140}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Claudiu Manoil20862782014-02-17 12:53:14 +02001142static void __init gfar_init_addr_hash_table(struct gfar_private *priv)
1143{
1144 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001145
Andy Flemingb31a1d82008-12-16 15:29:15 -08001146 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_EXTENDED_HASH) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001147 priv->extended_hash = 1;
1148 priv->hash_width = 9;
1149
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001150 priv->hash_regs[0] = &regs->igaddr0;
1151 priv->hash_regs[1] = &regs->igaddr1;
1152 priv->hash_regs[2] = &regs->igaddr2;
1153 priv->hash_regs[3] = &regs->igaddr3;
1154 priv->hash_regs[4] = &regs->igaddr4;
1155 priv->hash_regs[5] = &regs->igaddr5;
1156 priv->hash_regs[6] = &regs->igaddr6;
1157 priv->hash_regs[7] = &regs->igaddr7;
1158 priv->hash_regs[8] = &regs->gaddr0;
1159 priv->hash_regs[9] = &regs->gaddr1;
1160 priv->hash_regs[10] = &regs->gaddr2;
1161 priv->hash_regs[11] = &regs->gaddr3;
1162 priv->hash_regs[12] = &regs->gaddr4;
1163 priv->hash_regs[13] = &regs->gaddr5;
1164 priv->hash_regs[14] = &regs->gaddr6;
1165 priv->hash_regs[15] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001166
1167 } else {
1168 priv->extended_hash = 0;
1169 priv->hash_width = 8;
1170
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001171 priv->hash_regs[0] = &regs->gaddr0;
1172 priv->hash_regs[1] = &regs->gaddr1;
1173 priv->hash_regs[2] = &regs->gaddr2;
1174 priv->hash_regs[3] = &regs->gaddr3;
1175 priv->hash_regs[4] = &regs->gaddr4;
1176 priv->hash_regs[5] = &regs->gaddr5;
1177 priv->hash_regs[6] = &regs->gaddr6;
1178 priv->hash_regs[7] = &regs->gaddr7;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001179 }
Claudiu Manoil20862782014-02-17 12:53:14 +02001180}
1181
1182/* Set up the ethernet device structure, private data,
1183 * and anything else we need before we start
1184 */
1185static int gfar_probe(struct platform_device *ofdev)
1186{
1187 struct net_device *dev = NULL;
1188 struct gfar_private *priv = NULL;
1189 int err = 0, i;
1190
1191 err = gfar_of_init(ofdev, &dev);
1192
1193 if (err)
1194 return err;
1195
1196 priv = netdev_priv(dev);
1197 priv->ndev = dev;
1198 priv->ofdev = ofdev;
1199 priv->dev = &ofdev->dev;
1200 SET_NETDEV_DEV(dev, &ofdev->dev);
1201
1202 spin_lock_init(&priv->bflock);
1203 INIT_WORK(&priv->reset_task, gfar_reset_task);
1204
1205 platform_set_drvdata(ofdev, priv);
1206
1207 gfar_detect_errata(priv);
1208
Claudiu Manoil20862782014-02-17 12:53:14 +02001209 /* Set the dev->base_addr to the gfar reg region */
1210 dev->base_addr = (unsigned long) priv->gfargrp[0].regs;
1211
1212 /* Fill in the dev structure */
1213 dev->watchdog_timeo = TX_TIMEOUT;
1214 dev->mtu = 1500;
1215 dev->netdev_ops = &gfar_netdev_ops;
1216 dev->ethtool_ops = &gfar_ethtool_ops;
1217
1218 /* Register for napi ...We are registering NAPI for each grp */
1219 if (priv->mode == SQ_SG_MODE)
1220 netif_napi_add(dev, &priv->gfargrp[0].napi, gfar_poll_sq,
1221 GFAR_DEV_WEIGHT);
1222 else
1223 for (i = 0; i < priv->num_grps; i++)
1224 netif_napi_add(dev, &priv->gfargrp[i].napi, gfar_poll,
1225 GFAR_DEV_WEIGHT);
1226
1227 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_CSUM) {
1228 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG |
1229 NETIF_F_RXCSUM;
1230 dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG |
1231 NETIF_F_RXCSUM | NETIF_F_HIGHDMA;
1232 }
1233
1234 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_VLAN) {
1235 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX |
1236 NETIF_F_HW_VLAN_CTAG_RX;
1237 dev->features |= NETIF_F_HW_VLAN_CTAG_RX;
1238 }
1239
1240 gfar_init_addr_hash_table(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001241
Claudiu Manoil532c37b2014-02-17 12:53:16 +02001242 /* Insert receive time stamps into padding alignment bytes */
1243 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
1244 priv->padding = 8;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001245
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00001246 if (dev->features & NETIF_F_IP_CSUM ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001247 priv->device_flags & FSL_GIANFAR_DEV_HAS_TIMER)
Wu Jiajun-B06378bee9e582012-05-21 23:00:48 +00001248 dev->needed_headroom = GMAC_FCB_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 priv->rx_buffer_size = DEFAULT_RX_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001252 /* Initializing some of the rx/tx queue level parameters */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001253 for (i = 0; i < priv->num_tx_queues; i++) {
1254 priv->tx_queue[i]->tx_ring_size = DEFAULT_TX_RING_SIZE;
1255 priv->tx_queue[i]->num_txbdfree = DEFAULT_TX_RING_SIZE;
1256 priv->tx_queue[i]->txcoalescing = DEFAULT_TX_COALESCE;
1257 priv->tx_queue[i]->txic = DEFAULT_TXIC;
1258 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001259
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001260 for (i = 0; i < priv->num_rx_queues; i++) {
1261 priv->rx_queue[i]->rx_ring_size = DEFAULT_RX_RING_SIZE;
1262 priv->rx_queue[i]->rxcoalescing = DEFAULT_RX_COALESCE;
1263 priv->rx_queue[i]->rxic = DEFAULT_RXIC;
1264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Jan Ceuleers0977f812012-06-05 03:42:12 +00001266 /* always enable rx filer */
Sebastian Poehn4aa3a712011-06-20 13:57:59 -07001267 priv->rx_filer_enable = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001268 /* Enable most messages by default */
1269 priv->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
Claudiu Manoilb98b8ba2012-09-23 22:39:08 +00001270 /* use pritority h/w tx queue scheduling for single queue devices */
1271 if (priv->num_tx_queues == 1)
1272 priv->prio_sched_en = 1;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001273
Claudiu Manoil08511332014-02-24 12:13:45 +02001274 set_bit(GFAR_DOWN, &priv->state);
1275
Claudiu Manoila328ac92014-02-24 12:13:42 +02001276 gfar_hw_init(priv);
Trent Piephod3eab822008-10-02 11:12:24 +00001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 err = register_netdev(dev);
1279
1280 if (err) {
Joe Perches59deab22011-06-14 08:57:47 +00001281 pr_err("%s: Cannot register net device, aborting\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 goto register_fail;
1283 }
1284
Claudiu Manoila328ac92014-02-24 12:13:42 +02001285 /* Carrier starts down, phylib will bring it up */
1286 netif_carrier_off(dev);
1287
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001288 device_init_wakeup(&dev->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001289 priv->device_flags &
1290 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08001291
Dai Harukic50a5d92008-12-17 16:51:32 -08001292 /* fill out IRQ number and name fields */
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001293 for (i = 0; i < priv->num_grps; i++) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001294 struct gfar_priv_grp *grp = &priv->gfargrp[i];
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001295 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001296 sprintf(gfar_irq(grp, TX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001297 dev->name, "_g", '0' + i, "_tx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001298 sprintf(gfar_irq(grp, RX)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001299 dev->name, "_g", '0' + i, "_rx");
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001300 sprintf(gfar_irq(grp, ER)->name, "%s%s%c%s",
Joe Perches0015e552012-03-25 07:10:07 +00001301 dev->name, "_g", '0' + i, "_er");
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001302 } else
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001303 strcpy(gfar_irq(grp, TX)->name, dev->name);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001304 }
Dai Harukic50a5d92008-12-17 16:51:32 -08001305
Sandeep Gopalpet7a8b3372009-11-02 07:03:40 +00001306 /* Initialize the filer table */
1307 gfar_init_filer_table(priv);
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 /* Print out the device info */
Joe Perches59deab22011-06-14 08:57:47 +00001310 netdev_info(dev, "mac: %pM\n", dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Jan Ceuleers0977f812012-06-05 03:42:12 +00001312 /* Even more device info helps when determining which kernel
1313 * provided which set of benchmarks.
1314 */
Joe Perches59deab22011-06-14 08:57:47 +00001315 netdev_info(dev, "Running with NAPI enabled\n");
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001316 for (i = 0; i < priv->num_rx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001317 netdev_info(dev, "RX BD ring size for Q[%d]: %d\n",
1318 i, priv->rx_queue[i]->rx_ring_size);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001319 for (i = 0; i < priv->num_tx_queues; i++)
Joe Perches59deab22011-06-14 08:57:47 +00001320 netdev_info(dev, "TX BD ring size for Q[%d]: %d\n",
1321 i, priv->tx_queue[i]->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 return 0;
1324
1325register_fail:
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001326 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001327 gfar_free_rx_queues(priv);
1328 gfar_free_tx_queues(priv);
Grant Likelyfe192a42009-04-25 12:53:12 +00001329 if (priv->phy_node)
1330 of_node_put(priv->phy_node);
1331 if (priv->tbi_node)
1332 of_node_put(priv->tbi_node);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001333 free_gfar_dev(priv);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001334 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Grant Likely2dc11582010-08-06 09:25:50 -06001337static int gfar_remove(struct platform_device *ofdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Jingoo Han8513fbd2013-05-23 00:52:31 +00001339 struct gfar_private *priv = platform_get_drvdata(ofdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Grant Likelyfe192a42009-04-25 12:53:12 +00001341 if (priv->phy_node)
1342 of_node_put(priv->phy_node);
1343 if (priv->tbi_node)
1344 of_node_put(priv->tbi_node);
1345
David S. Millerd9d8e042009-09-06 01:41:02 -07001346 unregister_netdev(priv->ndev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001347 unmap_group_regs(priv);
Claudiu Manoil20862782014-02-17 12:53:14 +02001348 gfar_free_rx_queues(priv);
1349 gfar_free_tx_queues(priv);
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001350 free_gfar_dev(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 return 0;
1353}
1354
Scott Woodd87eb122008-07-11 18:04:45 -05001355#ifdef CONFIG_PM
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001356
1357static int gfar_suspend(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001358{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001359 struct gfar_private *priv = dev_get_drvdata(dev);
1360 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001361 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001362 unsigned long flags;
1363 u32 tempval;
1364
1365 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001366 (priv->device_flags &
1367 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001368
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001369 netif_device_detach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001370
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001371 if (netif_running(ndev)) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001372
1373 local_irq_save(flags);
1374 lock_tx_qs(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001375
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001376 gfar_halt_nodisable(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001377
1378 /* Disable Tx, and Rx if wake-on-LAN is disabled. */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001379 tempval = gfar_read(&regs->maccfg1);
Scott Woodd87eb122008-07-11 18:04:45 -05001380
1381 tempval &= ~MACCFG1_TX_EN;
1382
1383 if (!magic_packet)
1384 tempval &= ~MACCFG1_RX_EN;
1385
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001386 gfar_write(&regs->maccfg1, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001387
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001388 unlock_tx_qs(priv);
1389 local_irq_restore(flags);
Scott Woodd87eb122008-07-11 18:04:45 -05001390
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001391 disable_napi(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001392
1393 if (magic_packet) {
1394 /* Enable interrupt on Magic Packet */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001395 gfar_write(&regs->imask, IMASK_MAG);
Scott Woodd87eb122008-07-11 18:04:45 -05001396
1397 /* Enable Magic Packet mode */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001398 tempval = gfar_read(&regs->maccfg2);
Scott Woodd87eb122008-07-11 18:04:45 -05001399 tempval |= MACCFG2_MPEN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001400 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001401 } else {
1402 phy_stop(priv->phydev);
1403 }
1404 }
1405
1406 return 0;
1407}
1408
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001409static int gfar_resume(struct device *dev)
Scott Woodd87eb122008-07-11 18:04:45 -05001410{
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001411 struct gfar_private *priv = dev_get_drvdata(dev);
1412 struct net_device *ndev = priv->ndev;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001413 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001414 unsigned long flags;
1415 u32 tempval;
1416 int magic_packet = priv->wol_en &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001417 (priv->device_flags &
1418 FSL_GIANFAR_DEV_HAS_MAGIC_PACKET);
Scott Woodd87eb122008-07-11 18:04:45 -05001419
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001420 if (!netif_running(ndev)) {
1421 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001422 return 0;
1423 }
1424
1425 if (!magic_packet && priv->phydev)
1426 phy_start(priv->phydev);
1427
1428 /* Disable Magic Packet mode, in case something
1429 * else woke us up.
1430 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001431 local_irq_save(flags);
1432 lock_tx_qs(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001433
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001434 tempval = gfar_read(&regs->maccfg2);
Scott Woodd87eb122008-07-11 18:04:45 -05001435 tempval &= ~MACCFG2_MPEN;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001436 gfar_write(&regs->maccfg2, tempval);
Scott Woodd87eb122008-07-11 18:04:45 -05001437
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001438 gfar_start(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001439
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001440 unlock_tx_qs(priv);
1441 local_irq_restore(flags);
Scott Woodd87eb122008-07-11 18:04:45 -05001442
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001443 netif_device_attach(ndev);
Scott Woodd87eb122008-07-11 18:04:45 -05001444
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001445 enable_napi(priv);
Scott Woodd87eb122008-07-11 18:04:45 -05001446
1447 return 0;
1448}
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001449
1450static int gfar_restore(struct device *dev)
1451{
1452 struct gfar_private *priv = dev_get_drvdata(dev);
1453 struct net_device *ndev = priv->ndev;
1454
Wang Dongsheng103cdd12012-11-09 04:43:51 +00001455 if (!netif_running(ndev)) {
1456 netif_device_attach(ndev);
1457
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001458 return 0;
Wang Dongsheng103cdd12012-11-09 04:43:51 +00001459 }
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001460
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001461 if (gfar_init_bds(ndev)) {
1462 free_skb_resources(priv);
1463 return -ENOMEM;
1464 }
1465
Claudiu Manoila328ac92014-02-24 12:13:42 +02001466 gfar_mac_reset(priv);
1467
1468 gfar_init_tx_rx_base(priv);
1469
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001470 gfar_start(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001471
1472 priv->oldlink = 0;
1473 priv->oldspeed = 0;
1474 priv->oldduplex = -1;
1475
1476 if (priv->phydev)
1477 phy_start(priv->phydev);
1478
1479 netif_device_attach(ndev);
Anton Vorontsov5ea681d2009-11-10 14:11:05 +00001480 enable_napi(priv);
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001481
1482 return 0;
1483}
1484
1485static struct dev_pm_ops gfar_pm_ops = {
1486 .suspend = gfar_suspend,
1487 .resume = gfar_resume,
1488 .freeze = gfar_suspend,
1489 .thaw = gfar_resume,
1490 .restore = gfar_restore,
1491};
1492
1493#define GFAR_PM_OPS (&gfar_pm_ops)
1494
Scott Woodd87eb122008-07-11 18:04:45 -05001495#else
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001496
1497#define GFAR_PM_OPS NULL
Anton Vorontsovbe926fc2009-10-12 06:00:42 +00001498
Scott Woodd87eb122008-07-11 18:04:45 -05001499#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001501/* Reads the controller's registers to determine what interface
1502 * connects it to the PHY.
1503 */
1504static phy_interface_t gfar_get_interface(struct net_device *dev)
1505{
1506 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001507 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001508 u32 ecntrl;
1509
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001510 ecntrl = gfar_read(&regs->ecntrl);
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001511
1512 if (ecntrl & ECNTRL_SGMII_MODE)
1513 return PHY_INTERFACE_MODE_SGMII;
1514
1515 if (ecntrl & ECNTRL_TBI_MODE) {
1516 if (ecntrl & ECNTRL_REDUCED_MODE)
1517 return PHY_INTERFACE_MODE_RTBI;
1518 else
1519 return PHY_INTERFACE_MODE_TBI;
1520 }
1521
1522 if (ecntrl & ECNTRL_REDUCED_MODE) {
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001523 if (ecntrl & ECNTRL_REDUCED_MII_MODE) {
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001524 return PHY_INTERFACE_MODE_RMII;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001525 }
Andy Fleming7132ab72007-07-11 11:43:07 -05001526 else {
Andy Flemingb31a1d82008-12-16 15:29:15 -08001527 phy_interface_t interface = priv->interface;
Andy Fleming7132ab72007-07-11 11:43:07 -05001528
Jan Ceuleers0977f812012-06-05 03:42:12 +00001529 /* This isn't autodetected right now, so it must
Andy Fleming7132ab72007-07-11 11:43:07 -05001530 * be set by the device tree or platform code.
1531 */
1532 if (interface == PHY_INTERFACE_MODE_RGMII_ID)
1533 return PHY_INTERFACE_MODE_RGMII_ID;
1534
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001535 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming7132ab72007-07-11 11:43:07 -05001536 }
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001537 }
1538
Andy Flemingb31a1d82008-12-16 15:29:15 -08001539 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT)
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001540 return PHY_INTERFACE_MODE_GMII;
1541
1542 return PHY_INTERFACE_MODE_MII;
1543}
1544
1545
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001546/* Initializes driver's PHY state, and attaches to the PHY.
1547 * Returns 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
1549static int init_phy(struct net_device *dev)
1550{
1551 struct gfar_private *priv = netdev_priv(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001552 uint gigabit_support =
Andy Flemingb31a1d82008-12-16 15:29:15 -08001553 priv->device_flags & FSL_GIANFAR_DEV_HAS_GIGABIT ?
Claudiu Manoil23402bd2013-08-12 13:53:26 +03001554 GFAR_SUPPORTED_GBIT : 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001555 phy_interface_t interface;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 priv->oldlink = 0;
1558 priv->oldspeed = 0;
1559 priv->oldduplex = -1;
1560
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001561 interface = gfar_get_interface(dev);
1562
Anton Vorontsov1db780f2009-07-16 21:31:42 +00001563 priv->phydev = of_phy_connect(dev, priv->phy_node, &adjust_link, 0,
1564 interface);
1565 if (!priv->phydev)
1566 priv->phydev = of_phy_connect_fixed_link(dev, &adjust_link,
1567 interface);
1568 if (!priv->phydev) {
1569 dev_err(&dev->dev, "could not attach to PHY\n");
1570 return -ENODEV;
Grant Likelyfe192a42009-04-25 12:53:12 +00001571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Kapil Junejad3c12872007-05-11 18:25:11 -05001573 if (interface == PHY_INTERFACE_MODE_SGMII)
1574 gfar_configure_serdes(dev);
1575
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001576 /* Remove any features not supported by the controller */
Grant Likelyfe192a42009-04-25 12:53:12 +00001577 priv->phydev->supported &= (GFAR_SUPPORTED | gigabit_support);
1578 priv->phydev->advertising = priv->phydev->supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Jan Ceuleers0977f812012-06-05 03:42:12 +00001583/* Initialize TBI PHY interface for communicating with the
Paul Gortmakerd0313582008-04-17 00:08:10 -04001584 * SERDES lynx PHY on the chip. We communicate with this PHY
1585 * through the MDIO bus on each controller, treating it as a
1586 * "normal" PHY at the address found in the TBIPA register. We assume
1587 * that the TBIPA register is valid. Either the MDIO bus code will set
1588 * it to a value that doesn't conflict with other PHYs on the bus, or the
1589 * value doesn't matter, as there are no other PHYs on the bus.
1590 */
Kapil Junejad3c12872007-05-11 18:25:11 -05001591static void gfar_configure_serdes(struct net_device *dev)
1592{
1593 struct gfar_private *priv = netdev_priv(dev);
Grant Likelyfe192a42009-04-25 12:53:12 +00001594 struct phy_device *tbiphy;
Trent Piephoc1324192008-10-30 18:17:06 -07001595
Grant Likelyfe192a42009-04-25 12:53:12 +00001596 if (!priv->tbi_node) {
1597 dev_warn(&dev->dev, "error: SGMII mode requires that the "
1598 "device tree specify a tbi-handle\n");
1599 return;
1600 }
1601
1602 tbiphy = of_phy_find_device(priv->tbi_node);
1603 if (!tbiphy) {
1604 dev_err(&dev->dev, "error: Could not get TBI device\n");
Andy Flemingb31a1d82008-12-16 15:29:15 -08001605 return;
1606 }
Kapil Junejad3c12872007-05-11 18:25:11 -05001607
Jan Ceuleers0977f812012-06-05 03:42:12 +00001608 /* If the link is already up, we must already be ok, and don't need to
Trent Piephobdb59f92008-10-30 18:17:07 -07001609 * configure and reset the TBI<->SerDes link. Maybe U-Boot configured
1610 * everything for us? Resetting it takes the link down and requires
1611 * several seconds for it to come back.
1612 */
Grant Likelyfe192a42009-04-25 12:53:12 +00001613 if (phy_read(tbiphy, MII_BMSR) & BMSR_LSTATUS)
Andy Flemingb31a1d82008-12-16 15:29:15 -08001614 return;
Kapil Junejad3c12872007-05-11 18:25:11 -05001615
Paul Gortmakerd0313582008-04-17 00:08:10 -04001616 /* Single clk mode, mii mode off(for serdes communication) */
Grant Likelyfe192a42009-04-25 12:53:12 +00001617 phy_write(tbiphy, MII_TBICON, TBICON_CLK_SELECT);
Kapil Junejad3c12872007-05-11 18:25:11 -05001618
Grant Likelyfe192a42009-04-25 12:53:12 +00001619 phy_write(tbiphy, MII_ADVERTISE,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001620 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1621 ADVERTISE_1000XPSE_ASYM);
Kapil Junejad3c12872007-05-11 18:25:11 -05001622
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001623 phy_write(tbiphy, MII_BMCR,
1624 BMCR_ANENABLE | BMCR_ANRESTART | BMCR_FULLDPLX |
1625 BMCR_SPEED1000);
Kapil Junejad3c12872007-05-11 18:25:11 -05001626}
1627
Anton Vorontsov511d9342010-06-30 06:39:15 +00001628static int __gfar_is_rx_idle(struct gfar_private *priv)
1629{
1630 u32 res;
1631
Jan Ceuleers0977f812012-06-05 03:42:12 +00001632 /* Normaly TSEC should not hang on GRS commands, so we should
Anton Vorontsov511d9342010-06-30 06:39:15 +00001633 * actually wait for IEVENT_GRSC flag.
1634 */
Claudiu Manoilad3660c2013-10-09 20:20:40 +03001635 if (!gfar_has_errata(priv, GFAR_ERRATA_A002))
Anton Vorontsov511d9342010-06-30 06:39:15 +00001636 return 0;
1637
Jan Ceuleers0977f812012-06-05 03:42:12 +00001638 /* Read the eTSEC register at offset 0xD1C. If bits 7-14 are
Anton Vorontsov511d9342010-06-30 06:39:15 +00001639 * the same as bits 23-30, the eTSEC Rx is assumed to be idle
1640 * and the Rx can be safely reset.
1641 */
1642 res = gfar_read((void __iomem *)priv->gfargrp[0].regs + 0xd1c);
1643 res &= 0x7f807f80;
1644 if ((res & 0xffff) == (res >> 16))
1645 return 1;
1646
1647 return 0;
1648}
Kumar Gala0bbaf062005-06-20 10:54:21 -05001649
1650/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001651static void gfar_halt_nodisable(struct gfar_private *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001653 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 u32 tempval;
1655
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001656 gfar_ints_disable(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 /* Stop the DMA, and wait for it to stop */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001659 tempval = gfar_read(&regs->dmactrl);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001660 if ((tempval & (DMACTRL_GRS | DMACTRL_GTS)) !=
1661 (DMACTRL_GRS | DMACTRL_GTS)) {
Anton Vorontsov511d9342010-06-30 06:39:15 +00001662 int ret;
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 tempval |= (DMACTRL_GRS | DMACTRL_GTS);
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001665 gfar_write(&regs->dmactrl, tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Anton Vorontsov511d9342010-06-30 06:39:15 +00001667 do {
1668 ret = spin_event_timeout(((gfar_read(&regs->ievent) &
1669 (IEVENT_GRSC | IEVENT_GTSC)) ==
1670 (IEVENT_GRSC | IEVENT_GTSC)), 1000000, 0);
1671 if (!ret && !(gfar_read(&regs->ievent) & IEVENT_GRSC))
1672 ret = __gfar_is_rx_idle(priv);
1673 } while (!ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
Scott Woodd87eb122008-07-11 18:04:45 -05001675}
Scott Woodd87eb122008-07-11 18:04:45 -05001676
1677/* Halt the receive and transmit queues */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001678void gfar_halt(struct gfar_private *priv)
Scott Woodd87eb122008-07-11 18:04:45 -05001679{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001680 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Scott Woodd87eb122008-07-11 18:04:45 -05001681 u32 tempval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001683 /* Dissable the Rx/Tx hw queues */
1684 gfar_write(&regs->rqueue, 0);
1685 gfar_write(&regs->tqueue, 0);
Scott Wood2a54adc2008-08-12 15:10:46 -05001686
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001687 mdelay(10);
1688
1689 gfar_halt_nodisable(priv);
1690
1691 /* Disable Rx/Tx DMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 tempval = gfar_read(&regs->maccfg1);
1693 tempval &= ~(MACCFG1_RX_EN | MACCFG1_TX_EN);
1694 gfar_write(&regs->maccfg1, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001695}
1696
1697void stop_gfar(struct net_device *dev)
1698{
1699 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001700
Claudiu Manoil08511332014-02-24 12:13:45 +02001701 netif_tx_stop_all_queues(dev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04001702
Claudiu Manoil08511332014-02-24 12:13:45 +02001703 smp_mb__before_clear_bit();
1704 set_bit(GFAR_DOWN, &priv->state);
1705 smp_mb__after_clear_bit();
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001706
Claudiu Manoil08511332014-02-24 12:13:45 +02001707 disable_napi(priv);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001708
Claudiu Manoil08511332014-02-24 12:13:45 +02001709 /* disable ints and gracefully shut down Rx/Tx DMA */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001710 gfar_halt(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Claudiu Manoil08511332014-02-24 12:13:45 +02001712 phy_stop(priv->phydev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 free_skb_resources(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001717static void free_skb_tx_queue(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct txbd8 *txbdp;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001720 struct gfar_private *priv = netdev_priv(tx_queue->dev);
Dai Haruki4669bc92008-12-17 16:51:04 -08001721 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001723 txbdp = tx_queue->tx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001725 for (i = 0; i < tx_queue->tx_ring_size; i++) {
1726 if (!tx_queue->tx_skbuff[i])
Dai Haruki4669bc92008-12-17 16:51:04 -08001727 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Claudiu Manoil369ec162013-02-14 05:00:02 +00001729 dma_unmap_single(priv->dev, txbdp->bufPtr,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001730 txbdp->length, DMA_TO_DEVICE);
Dai Haruki4669bc92008-12-17 16:51:04 -08001731 txbdp->lstatus = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001732 for (j = 0; j < skb_shinfo(tx_queue->tx_skbuff[i])->nr_frags;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001733 j++) {
Dai Haruki4669bc92008-12-17 16:51:04 -08001734 txbdp++;
Claudiu Manoil369ec162013-02-14 05:00:02 +00001735 dma_unmap_page(priv->dev, txbdp->bufPtr,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001736 txbdp->length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Andy Flemingad5da7a2008-05-07 13:20:55 -05001738 txbdp++;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001739 dev_kfree_skb_any(tx_queue->tx_skbuff[i]);
1740 tx_queue->tx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001742 kfree(tx_queue->tx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001743 tx_queue->tx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001744}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001746static void free_skb_rx_queue(struct gfar_priv_rx_q *rx_queue)
1747{
1748 struct rxbd8 *rxbdp;
1749 struct gfar_private *priv = netdev_priv(rx_queue->dev);
1750 int i;
1751
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001752 rxbdp = rx_queue->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001754 for (i = 0; i < rx_queue->rx_ring_size; i++) {
1755 if (rx_queue->rx_skbuff[i]) {
Claudiu Manoil369ec162013-02-14 05:00:02 +00001756 dma_unmap_single(priv->dev, rxbdp->bufPtr,
1757 priv->rx_buffer_size,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001758 DMA_FROM_DEVICE);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001759 dev_kfree_skb_any(rx_queue->rx_skbuff[i]);
1760 rx_queue->rx_skbuff[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
Anton Vorontsove69edd22009-10-12 06:00:30 +00001762 rxbdp->lstatus = 0;
1763 rxbdp->bufPtr = 0;
1764 rxbdp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00001766 kfree(rx_queue->rx_skbuff);
Claudiu Manoil1eb8f7a2012-11-08 22:11:41 +00001767 rx_queue->rx_skbuff = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001768}
Anton Vorontsove69edd22009-10-12 06:00:30 +00001769
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001770/* If there are any tx skbs or rx skbs still around, free them.
Jan Ceuleers0977f812012-06-05 03:42:12 +00001771 * Then free tx_skbuff and rx_skbuff
1772 */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001773static void free_skb_resources(struct gfar_private *priv)
1774{
1775 struct gfar_priv_tx_q *tx_queue = NULL;
1776 struct gfar_priv_rx_q *rx_queue = NULL;
1777 int i;
1778
1779 /* Go through all the buffer descriptors and free their data buffers */
1780 for (i = 0; i < priv->num_tx_queues; i++) {
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001781 struct netdev_queue *txq;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001782
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001783 tx_queue = priv->tx_queue[i];
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001784 txq = netdev_get_tx_queue(tx_queue->dev, tx_queue->qindex);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001785 if (tx_queue->tx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001786 free_skb_tx_queue(tx_queue);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05001787 netdev_tx_reset_queue(txq);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001788 }
1789
1790 for (i = 0; i < priv->num_rx_queues; i++) {
1791 rx_queue = priv->rx_queue[i];
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001792 if (rx_queue->rx_skbuff)
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00001793 free_skb_rx_queue(rx_queue);
1794 }
1795
Claudiu Manoil369ec162013-02-14 05:00:02 +00001796 dma_free_coherent(priv->dev,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001797 sizeof(struct txbd8) * priv->total_tx_ring_size +
1798 sizeof(struct rxbd8) * priv->total_rx_ring_size,
1799 priv->tx_queue[0]->tx_bd_base,
1800 priv->tx_queue[0]->tx_bd_dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001803void gfar_start(struct gfar_private *priv)
Kumar Gala0bbaf062005-06-20 10:54:21 -05001804{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001805 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001806 u32 tempval;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001807 int i = 0;
Kumar Gala0bbaf062005-06-20 10:54:21 -05001808
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001809 /* Enable Rx/Tx hw queues */
1810 gfar_write(&regs->rqueue, priv->rqueue);
1811 gfar_write(&regs->tqueue, priv->tqueue);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001812
1813 /* Initialize DMACTRL to have WWR and WOP */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001814 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001815 tempval |= DMACTRL_INIT_SETTINGS;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001816 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001817
Kumar Gala0bbaf062005-06-20 10:54:21 -05001818 /* Make sure we aren't stopped */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001819 tempval = gfar_read(&regs->dmactrl);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001820 tempval &= ~(DMACTRL_GRS | DMACTRL_GTS);
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00001821 gfar_write(&regs->dmactrl, tempval);
Kumar Gala0bbaf062005-06-20 10:54:21 -05001822
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001823 for (i = 0; i < priv->num_grps; i++) {
1824 regs = priv->gfargrp[i].regs;
1825 /* Clear THLT/RHLT, so that the DMA starts polling now */
1826 gfar_write(&regs->tstat, priv->gfargrp[i].tstat);
1827 gfar_write(&regs->rstat, priv->gfargrp[i].rstat);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001828 }
Dai Haruki12dea572008-12-16 15:30:20 -08001829
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001830 /* Enable Rx/Tx DMA */
1831 tempval = gfar_read(&regs->maccfg1);
1832 tempval |= (MACCFG1_RX_EN | MACCFG1_TX_EN);
1833 gfar_write(&regs->maccfg1, tempval);
1834
Claudiu Manoilefeddce2014-02-17 12:53:17 +02001835 gfar_ints_enable(priv);
1836
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001837 priv->ndev->trans_start = jiffies; /* prevent tx timeout */
Kumar Gala0bbaf062005-06-20 10:54:21 -05001838}
1839
Claudiu Manoil800c6442013-03-19 07:40:05 +00001840static void gfar_configure_coalescing(struct gfar_private *priv,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00001841 unsigned long tx_mask, unsigned long rx_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001843 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Anton Vorontsov18294ad2009-11-04 12:53:00 +00001844 u32 __iomem *baddr;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001845
1846 if (priv->mode == MQ_MG_MODE) {
Claudiu Manoil5d9657d2013-03-19 07:40:04 +00001847 int i = 0;
Claudiu Manoilc6e11602013-03-21 03:12:14 +00001848
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001849 baddr = &regs->txic0;
Akinobu Mita984b3f52010-03-05 13:41:37 -08001850 for_each_set_bit(i, &tx_mask, priv->num_tx_queues) {
Claudiu Manoil9740e002012-06-28 04:40:53 +00001851 gfar_write(baddr + i, 0);
1852 if (likely(priv->tx_queue[i]->txcoalescing))
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001853 gfar_write(baddr + i, priv->tx_queue[i]->txic);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001854 }
1855
1856 baddr = &regs->rxic0;
Akinobu Mita984b3f52010-03-05 13:41:37 -08001857 for_each_set_bit(i, &rx_mask, priv->num_rx_queues) {
Claudiu Manoil9740e002012-06-28 04:40:53 +00001858 gfar_write(baddr + i, 0);
1859 if (likely(priv->rx_queue[i]->rxcoalescing))
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001860 gfar_write(baddr + i, priv->rx_queue[i]->rxic);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001861 }
Claudiu Manoil5d9657d2013-03-19 07:40:04 +00001862 } else {
Claudiu Manoilc6e11602013-03-21 03:12:14 +00001863 /* Backward compatible case -- even if we enable
Claudiu Manoil5d9657d2013-03-19 07:40:04 +00001864 * multiple queues, there's only single reg to program
1865 */
1866 gfar_write(&regs->txic, 0);
1867 if (likely(priv->tx_queue[0]->txcoalescing))
1868 gfar_write(&regs->txic, priv->tx_queue[0]->txic);
1869
1870 gfar_write(&regs->rxic, 0);
1871 if (unlikely(priv->rx_queue[0]->rxcoalescing))
1872 gfar_write(&regs->rxic, priv->rx_queue[0]->rxic);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001873 }
1874}
1875
Claudiu Manoil800c6442013-03-19 07:40:05 +00001876void gfar_configure_coalescing_all(struct gfar_private *priv)
1877{
1878 gfar_configure_coalescing(priv, 0xFF, 0xFF);
1879}
1880
Claudiu Manoil80ec3962014-02-24 12:13:44 +02001881static void free_grp_irqs(struct gfar_priv_grp *grp)
1882{
1883 free_irq(gfar_irq(grp, TX)->irq, grp);
1884 free_irq(gfar_irq(grp, RX)->irq, grp);
1885 free_irq(gfar_irq(grp, ER)->irq, grp);
1886}
1887
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001888static int register_grp_irqs(struct gfar_priv_grp *grp)
1889{
1890 struct gfar_private *priv = grp->priv;
1891 struct net_device *dev = priv->ndev;
Anton Vorontsovccc05c62009-10-12 06:00:26 +00001892 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* If the device has multiple interrupts, register for
Jan Ceuleers0977f812012-06-05 03:42:12 +00001895 * them. Otherwise, only register for the one
1896 */
Andy Flemingb31a1d82008-12-16 15:29:15 -08001897 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Kumar Gala0bbaf062005-06-20 10:54:21 -05001898 /* Install our interrupt handlers for Error,
Jan Ceuleers0977f812012-06-05 03:42:12 +00001899 * Transmit, and Receive
1900 */
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001901 err = request_irq(gfar_irq(grp, ER)->irq, gfar_error, 0,
1902 gfar_irq(grp, ER)->name, grp);
1903 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00001904 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001905 gfar_irq(grp, ER)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001906
Julia Lawall2145f1a2010-08-05 10:26:20 +00001907 goto err_irq_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001909 err = request_irq(gfar_irq(grp, TX)->irq, gfar_transmit, 0,
1910 gfar_irq(grp, TX)->name, grp);
1911 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00001912 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001913 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 goto tx_irq_fail;
1915 }
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001916 err = request_irq(gfar_irq(grp, RX)->irq, gfar_receive, 0,
1917 gfar_irq(grp, RX)->name, grp);
1918 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00001919 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001920 gfar_irq(grp, RX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 goto rx_irq_fail;
1922 }
1923 } else {
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001924 err = request_irq(gfar_irq(grp, TX)->irq, gfar_interrupt, 0,
1925 gfar_irq(grp, TX)->name, grp);
1926 if (err < 0) {
Joe Perches59deab22011-06-14 08:57:47 +00001927 netif_err(priv, intr, dev, "Can't get IRQ %d\n",
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001928 gfar_irq(grp, TX)->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 goto err_irq_fail;
1930 }
1931 }
1932
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001933 return 0;
1934
1935rx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001936 free_irq(gfar_irq(grp, TX)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001937tx_irq_fail:
Claudiu Manoilee873fd2013-01-29 03:55:12 +00001938 free_irq(gfar_irq(grp, ER)->irq, grp);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001939err_irq_fail:
1940 return err;
1941
1942}
1943
Claudiu Manoil80ec3962014-02-24 12:13:44 +02001944static void gfar_free_irq(struct gfar_private *priv)
1945{
1946 int i;
1947
1948 /* Free the IRQs */
1949 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
1950 for (i = 0; i < priv->num_grps; i++)
1951 free_grp_irqs(&priv->gfargrp[i]);
1952 } else {
1953 for (i = 0; i < priv->num_grps; i++)
1954 free_irq(gfar_irq(&priv->gfargrp[i], TX)->irq,
1955 &priv->gfargrp[i]);
1956 }
1957}
1958
1959static int gfar_request_irq(struct gfar_private *priv)
1960{
1961 int err, i, j;
1962
1963 for (i = 0; i < priv->num_grps; i++) {
1964 err = register_grp_irqs(&priv->gfargrp[i]);
1965 if (err) {
1966 for (j = 0; j < i; j++)
1967 free_grp_irqs(&priv->gfargrp[j]);
1968 return err;
1969 }
1970 }
1971
1972 return 0;
1973}
1974
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001975/* Bring the controller up and running */
1976int startup_gfar(struct net_device *ndev)
1977{
1978 struct gfar_private *priv = netdev_priv(ndev);
Claudiu Manoil80ec3962014-02-24 12:13:44 +02001979 int err;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001980
Claudiu Manoila328ac92014-02-24 12:13:42 +02001981 gfar_mac_reset(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001982
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001983 err = gfar_alloc_skb_resources(ndev);
1984 if (err)
1985 return err;
1986
Claudiu Manoila328ac92014-02-24 12:13:42 +02001987 gfar_init_tx_rx_base(priv);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00001988
Claudiu Manoil08511332014-02-24 12:13:45 +02001989 smp_mb__before_clear_bit();
1990 clear_bit(GFAR_DOWN, &priv->state);
1991 smp_mb__after_clear_bit();
1992
1993 /* Start Rx/Tx DMA and enable the interrupts */
Claudiu Manoilc10650b2014-02-17 12:53:18 +02001994 gfar_start(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Anton Vorontsov826aa4a2009-10-12 06:00:34 +00001996 phy_start(priv->phydev);
1997
Claudiu Manoil08511332014-02-24 12:13:45 +02001998 enable_napi(priv);
1999
2000 netif_tx_wake_all_queues(ndev);
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Jan Ceuleers0977f812012-06-05 03:42:12 +00002005/* Called when something needs to use the ethernet device
2006 * Returns 0 for success.
2007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008static int gfar_enet_open(struct net_device *dev)
2009{
Li Yang94e8cc32007-10-12 21:53:51 +08002010 struct gfar_private *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 int err;
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 err = init_phy(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002014 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return err;
2016
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002017 err = gfar_request_irq(priv);
2018 if (err)
2019 return err;
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 err = startup_gfar(dev);
Claudiu Manoil08511332014-02-24 12:13:45 +02002022 if (err)
Anton Vorontsovdb0e8e32007-10-17 23:57:46 +04002023 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Anton Vorontsov2884e5c2009-02-01 00:52:34 -08002025 device_set_wakeup_enable(&dev->dev, priv->wol_en);
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return err;
2028}
2029
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002030static inline struct txfcb *gfar_add_fcb(struct sk_buff *skb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002031{
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002032 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN);
Kumar Gala6c31d552009-04-28 08:04:10 -07002033
2034 memset(fcb, 0, GMAC_FCB_LEN);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002035
Kumar Gala0bbaf062005-06-20 10:54:21 -05002036 return fcb;
2037}
2038
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002039static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002040 int fcb_length)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002041{
Kumar Gala0bbaf062005-06-20 10:54:21 -05002042 /* If we're here, it's a IP packet with a TCP or UDP
2043 * payload. We set it to checksum, using a pseudo-header
2044 * we provide
2045 */
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00002046 u8 flags = TXFCB_DEFAULT;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002047
Jan Ceuleers0977f812012-06-05 03:42:12 +00002048 /* Tell the controller what the protocol is
2049 * And provide the already calculated phcs
2050 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002051 if (ip_hdr(skb)->protocol == IPPROTO_UDP) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06002052 flags |= TXFCB_UDP;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03002053 fcb->phcs = udp_hdr(skb)->check;
Andy Fleming7f7f5312005-11-11 12:38:59 -06002054 } else
Kumar Gala8da32de2007-06-29 00:12:04 -05002055 fcb->phcs = tcp_hdr(skb)->check;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002056
2057 /* l3os is the distance between the start of the
2058 * frame (skb->data) and the start of the IP hdr.
2059 * l4os is the distance between the start of the
Jan Ceuleers0977f812012-06-05 03:42:12 +00002060 * l3 hdr and the l4 hdr
2061 */
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002062 fcb->l3os = (u16)(skb_network_offset(skb) - fcb_length);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -03002063 fcb->l4os = skb_network_header_len(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002064
Andy Fleming7f7f5312005-11-11 12:38:59 -06002065 fcb->flags = flags;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002066}
2067
Andy Fleming7f7f5312005-11-11 12:38:59 -06002068void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb)
Kumar Gala0bbaf062005-06-20 10:54:21 -05002069{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002070 fcb->flags |= TXFCB_VLN;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002071 fcb->vlctl = vlan_tx_tag_get(skb);
2072}
2073
Dai Haruki4669bc92008-12-17 16:51:04 -08002074static inline struct txbd8 *skip_txbd(struct txbd8 *bdp, int stride,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002075 struct txbd8 *base, int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002076{
2077 struct txbd8 *new_bd = bdp + stride;
2078
2079 return (new_bd >= (base + ring_size)) ? (new_bd - ring_size) : new_bd;
2080}
2081
2082static inline struct txbd8 *next_txbd(struct txbd8 *bdp, struct txbd8 *base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002083 int ring_size)
Dai Haruki4669bc92008-12-17 16:51:04 -08002084{
2085 return skip_txbd(bdp, 1, base, ring_size);
2086}
2087
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002088/* eTSEC12: csum generation not supported for some fcb offsets */
2089static inline bool gfar_csum_errata_12(struct gfar_private *priv,
2090 unsigned long fcb_addr)
2091{
2092 return (gfar_has_errata(priv, GFAR_ERRATA_12) &&
2093 (fcb_addr % 0x20) > 0x18);
2094}
2095
2096/* eTSEC76: csum generation for frames larger than 2500 may
2097 * cause excess delays before start of transmission
2098 */
2099static inline bool gfar_csum_errata_76(struct gfar_private *priv,
2100 unsigned int len)
2101{
2102 return (gfar_has_errata(priv, GFAR_ERRATA_76) &&
2103 (len > 2500));
2104}
2105
Jan Ceuleers0977f812012-06-05 03:42:12 +00002106/* This is called by the kernel when a frame is ready for transmission.
2107 * It is pointed to by the dev->hard_start_xmit function pointer
2108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
2110{
2111 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002112 struct gfar_priv_tx_q *tx_queue = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002113 struct netdev_queue *txq;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002114 struct gfar __iomem *regs = NULL;
Kumar Gala0bbaf062005-06-20 10:54:21 -05002115 struct txfcb *fcb = NULL;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002116 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL;
Dai Haruki5a5efed2008-12-16 15:34:50 -08002117 u32 lstatus;
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002118 int i, rq = 0;
2119 int do_tstamp, do_csum, do_vlan;
Dai Haruki4669bc92008-12-17 16:51:04 -08002120 u32 bufaddr;
Andy Flemingfef61082006-04-20 16:44:29 -05002121 unsigned long flags;
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002122 unsigned int nr_frags, nr_txbds, bytes_sent, fcb_len = 0;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002123
2124 rq = skb->queue_mapping;
2125 tx_queue = priv->tx_queue[rq];
2126 txq = netdev_get_tx_queue(dev, rq);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002127 base = tx_queue->tx_bd_base;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002128 regs = tx_queue->grp->regs;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002129
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002130 do_csum = (CHECKSUM_PARTIAL == skb->ip_summed);
2131 do_vlan = vlan_tx_tag_present(skb);
2132 do_tstamp = (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
2133 priv->hwts_tx_en;
2134
2135 if (do_csum || do_vlan)
2136 fcb_len = GMAC_FCB_LEN;
2137
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002138 /* check if time stamp should be generated */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002139 if (unlikely(do_tstamp))
2140 fcb_len = GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Dai Haruki4669bc92008-12-17 16:51:04 -08002141
Li Yang5b28bea2009-03-27 15:54:30 -07002142 /* make space for additional header when fcb is needed */
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002143 if (fcb_len && unlikely(skb_headroom(skb) < fcb_len)) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002144 struct sk_buff *skb_new;
2145
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002146 skb_new = skb_realloc_headroom(skb, fcb_len);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002147 if (!skb_new) {
2148 dev->stats.tx_errors++;
David S. Millerbd14ba82009-03-27 01:10:58 -07002149 kfree_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002150 return NETDEV_TX_OK;
2151 }
Manfred Rudigierdb83d132012-01-09 23:26:50 +00002152
Eric Dumazet313b0372012-07-05 11:45:13 +00002153 if (skb->sk)
2154 skb_set_owner_w(skb_new, skb->sk);
2155 consume_skb(skb);
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002156 skb = skb_new;
2157 }
2158
Dai Haruki4669bc92008-12-17 16:51:04 -08002159 /* total number of fragments in the SKB */
2160 nr_frags = skb_shinfo(skb)->nr_frags;
2161
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002162 /* calculate the required number of TxBDs for this skb */
2163 if (unlikely(do_tstamp))
2164 nr_txbds = nr_frags + 2;
2165 else
2166 nr_txbds = nr_frags + 1;
2167
Dai Haruki4669bc92008-12-17 16:51:04 -08002168 /* check if there is space to queue this packet */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002169 if (nr_txbds > tx_queue->num_txbdfree) {
Dai Haruki4669bc92008-12-17 16:51:04 -08002170 /* no space, stop the queue */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002171 netif_tx_stop_queue(txq);
Dai Haruki4669bc92008-12-17 16:51:04 -08002172 dev->stats.tx_fifo_errors++;
Dai Haruki4669bc92008-12-17 16:51:04 -08002173 return NETDEV_TX_BUSY;
2174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 /* Update transmit stats */
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002177 bytes_sent = skb->len;
2178 tx_queue->stats.tx_bytes += bytes_sent;
2179 /* keep Tx bytes on wire for BQL accounting */
2180 GFAR_CB(skb)->bytes_sent = bytes_sent;
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00002181 tx_queue->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002183 txbdp = txbdp_start = tx_queue->cur_tx;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002184 lstatus = txbdp->lstatus;
2185
2186 /* Time stamp insertion requires one additional TxBD */
2187 if (unlikely(do_tstamp))
2188 txbdp_tstamp = txbdp = next_txbd(txbdp, base,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002189 tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Dai Haruki4669bc92008-12-17 16:51:04 -08002191 if (nr_frags == 0) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002192 if (unlikely(do_tstamp))
2193 txbdp_tstamp->lstatus |= BD_LFLAG(TXBD_LAST |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002194 TXBD_INTERRUPT);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002195 else
2196 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
Dai Haruki4669bc92008-12-17 16:51:04 -08002197 } else {
2198 /* Place the fragment addresses and lengths into the TxBDs */
2199 for (i = 0; i < nr_frags; i++) {
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002200 unsigned int frag_len;
Dai Haruki4669bc92008-12-17 16:51:04 -08002201 /* Point at the next BD, wrapping as needed */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002202 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002204 frag_len = skb_shinfo(skb)->frags[i].size;
Dai Haruki4669bc92008-12-17 16:51:04 -08002205
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002206 lstatus = txbdp->lstatus | frag_len |
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002207 BD_LFLAG(TXBD_READY);
Dai Haruki4669bc92008-12-17 16:51:04 -08002208
2209 /* Handle the last BD specially */
2210 if (i == nr_frags - 1)
2211 lstatus |= BD_LFLAG(TXBD_LAST | TXBD_INTERRUPT);
2212
Claudiu Manoil369ec162013-02-14 05:00:02 +00002213 bufaddr = skb_frag_dma_map(priv->dev,
Ian Campbell2234a722011-08-29 23:18:29 +00002214 &skb_shinfo(skb)->frags[i],
2215 0,
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002216 frag_len,
Ian Campbell2234a722011-08-29 23:18:29 +00002217 DMA_TO_DEVICE);
Dai Haruki4669bc92008-12-17 16:51:04 -08002218
2219 /* set the TxBD length and buffer pointer */
2220 txbdp->bufPtr = bufaddr;
2221 txbdp->lstatus = lstatus;
2222 }
2223
2224 lstatus = txbdp_start->lstatus;
2225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002227 /* Add TxPAL between FCB and frame if required */
2228 if (unlikely(do_tstamp)) {
2229 skb_push(skb, GMAC_TXPAL_LEN);
2230 memset(skb->data, 0, GMAC_TXPAL_LEN);
2231 }
2232
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002233 /* Add TxFCB if required */
2234 if (fcb_len) {
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002235 fcb = gfar_add_fcb(skb);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002236 lstatus |= BD_LFLAG(TXBD_TOE);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002237 }
2238
2239 /* Set up checksumming */
2240 if (do_csum) {
2241 gfar_tx_checksum(skb, fcb, fcb_len);
Claudiu Manoil02d88fb2013-08-05 17:20:09 +03002242
2243 if (unlikely(gfar_csum_errata_12(priv, (unsigned long)fcb)) ||
2244 unlikely(gfar_csum_errata_76(priv, skb->len))) {
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00002245 __skb_pull(skb, GMAC_FCB_LEN);
2246 skb_checksum_help(skb);
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002247 if (do_vlan || do_tstamp) {
2248 /* put back a new fcb for vlan/tstamp TOE */
2249 fcb = gfar_add_fcb(skb);
2250 } else {
2251 /* Tx TOE not used */
2252 lstatus &= ~(BD_LFLAG(TXBD_TOE));
2253 fcb = NULL;
2254 }
Alex Dubov4363c2fdd2011-03-16 17:57:13 +00002255 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002256 }
2257
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002258 if (do_vlan)
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002259 gfar_tx_vlan(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002260
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002261 /* Setup tx hardware time stamping if requested */
2262 if (unlikely(do_tstamp)) {
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002263 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002264 fcb->ptp = 1;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002265 }
2266
Claudiu Manoil369ec162013-02-14 05:00:02 +00002267 txbdp_start->bufPtr = dma_map_single(priv->dev, skb->data,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002268 skb_headlen(skb), DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Jan Ceuleers0977f812012-06-05 03:42:12 +00002270 /* If time stamping is requested one additional TxBD must be set up. The
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002271 * first TxBD points to the FCB and must have a data length of
2272 * GMAC_FCB_LEN. The second TxBD points to the actual frame data with
2273 * the full frame length.
2274 */
2275 if (unlikely(do_tstamp)) {
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002276 txbdp_tstamp->bufPtr = txbdp_start->bufPtr + fcb_len;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002277 txbdp_tstamp->lstatus |= BD_LFLAG(TXBD_READY) |
Claudiu Manoil0d0cffd2013-08-05 17:20:10 +03002278 (skb_headlen(skb) - fcb_len);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002279 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | GMAC_FCB_LEN;
2280 } else {
2281 lstatus |= BD_LFLAG(TXBD_CRC | TXBD_READY) | skb_headlen(skb);
2282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002284 netdev_tx_sent_queue(txq, bytes_sent);
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002285
Jan Ceuleers0977f812012-06-05 03:42:12 +00002286 /* We can work in parallel with gfar_clean_tx_ring(), except
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002287 * when modifying num_txbdfree. Note that we didn't grab the lock
2288 * when we were reading the num_txbdfree and checking for available
2289 * space, that's because outside of this function it can only grow,
2290 * and once we've got needed space, it cannot suddenly disappear.
2291 *
2292 * The lock also protects us from gfar_error(), which can modify
2293 * regs->tstat and thus retrigger the transfers, which is why we
2294 * also must grab the lock before setting ready bit for the first
2295 * to be transmitted BD.
2296 */
2297 spin_lock_irqsave(&tx_queue->txlock, flags);
2298
Jan Ceuleers0977f812012-06-05 03:42:12 +00002299 /* The powerpc-specific eieio() is used, as wmb() has too strong
Scott Wood3b6330c2007-05-16 15:06:59 -05002300 * semantics (it requires synchronization between cacheable and
2301 * uncacheable mappings, which eieio doesn't provide and which we
2302 * don't need), thus requiring a more expensive sync instruction. At
2303 * some point, the set of architecture-independent barrier functions
2304 * should be expanded to include weaker barriers.
2305 */
Scott Wood3b6330c2007-05-16 15:06:59 -05002306 eieio();
Andy Fleming7f7f5312005-11-11 12:38:59 -06002307
Dai Haruki4669bc92008-12-17 16:51:04 -08002308 txbdp_start->lstatus = lstatus;
2309
Anton Vorontsov0eddba52010-03-03 08:18:58 +00002310 eieio(); /* force lstatus write before tx_skbuff */
2311
2312 tx_queue->tx_skbuff[tx_queue->skb_curtx] = skb;
2313
Dai Haruki4669bc92008-12-17 16:51:04 -08002314 /* Update the current skb pointer to the next entry we will use
Jan Ceuleers0977f812012-06-05 03:42:12 +00002315 * (wrapping if necessary)
2316 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002317 tx_queue->skb_curtx = (tx_queue->skb_curtx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002318 TX_RING_MOD_MASK(tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002319
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002320 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002321
2322 /* reduce TxBD free count */
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002323 tx_queue->num_txbdfree -= (nr_txbds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 /* If the next BD still needs to be cleaned up, then the bds
Jan Ceuleers0977f812012-06-05 03:42:12 +00002326 * are full. We need to tell the kernel to stop sending us stuff.
2327 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002328 if (!tx_queue->num_txbdfree) {
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002329 netif_tx_stop_queue(txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002331 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 /* Tell the DMA to go go go */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002335 gfar_write(&regs->tstat, TSTAT_CLEAR_THALT >> tx_queue->qindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 /* Unlock priv */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002338 spin_unlock_irqrestore(&tx_queue->txlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Stephen Hemminger54dc79f2009-03-27 00:38:45 -07002340 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
2343/* Stops the kernel queue, and halts the controller */
2344static int gfar_close(struct net_device *dev)
2345{
2346 struct gfar_private *priv = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002347
Sebastian Siewiorab939902008-08-19 21:12:45 +02002348 cancel_work_sync(&priv->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 stop_gfar(dev);
2350
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002351 /* Disconnect from the PHY */
2352 phy_disconnect(priv->phydev);
2353 priv->phydev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Claudiu Manoil80ec3962014-02-24 12:13:44 +02002355 gfar_free_irq(priv);
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return 0;
2358}
2359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360/* Changes the mac address if the controller is not running. */
Andy Flemingf162b9d2008-05-02 13:00:30 -05002361static int gfar_set_mac_address(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Andy Fleming7f7f5312005-11-11 12:38:59 -06002363 gfar_set_mac_for_addr(dev, 0, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 return 0;
2366}
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368static int gfar_change_mtu(struct net_device *dev, int new_mtu)
2369{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002371 int frame_size = new_mtu + ETH_HLEN;
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if ((frame_size < 64) || (frame_size > JUMBO_FRAME_SIZE)) {
Joe Perches59deab22011-06-14 08:57:47 +00002374 netif_err(priv, drv, dev, "Invalid MTU setting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return -EINVAL;
2376 }
2377
Claudiu Manoil08511332014-02-24 12:13:45 +02002378 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2379 cpu_relax();
2380
Claudiu Manoil88302642014-02-24 12:13:43 +02002381 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 stop_gfar(dev);
2383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 dev->mtu = new_mtu;
2385
Claudiu Manoil88302642014-02-24 12:13:43 +02002386 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 startup_gfar(dev);
2388
Claudiu Manoil08511332014-02-24 12:13:45 +02002389 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 return 0;
2392}
2393
Claudiu Manoil08511332014-02-24 12:13:45 +02002394void reset_gfar(struct net_device *ndev)
2395{
2396 struct gfar_private *priv = netdev_priv(ndev);
2397
2398 while (test_and_set_bit_lock(GFAR_RESETTING, &priv->state))
2399 cpu_relax();
2400
2401 stop_gfar(ndev);
2402 startup_gfar(ndev);
2403
2404 clear_bit_unlock(GFAR_RESETTING, &priv->state);
2405}
2406
Sebastian Siewiorab939902008-08-19 21:12:45 +02002407/* gfar_reset_task gets scheduled when a packet has not been
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 * transmitted after a set amount of time.
2409 * For now, assume that clearing out all the structures, and
Sebastian Siewiorab939902008-08-19 21:12:45 +02002410 * starting over will fix the problem.
2411 */
2412static void gfar_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
Sebastian Siewiorab939902008-08-19 21:12:45 +02002414 struct gfar_private *priv = container_of(work, struct gfar_private,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002415 reset_task);
Claudiu Manoil08511332014-02-24 12:13:45 +02002416 reset_gfar(priv->ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417}
2418
Sebastian Siewiorab939902008-08-19 21:12:45 +02002419static void gfar_timeout(struct net_device *dev)
2420{
2421 struct gfar_private *priv = netdev_priv(dev);
2422
2423 dev->stats.tx_errors++;
2424 schedule_work(&priv->reset_task);
2425}
2426
Eran Libertyacbc0f02010-07-07 15:54:54 -07002427static void gfar_align_skb(struct sk_buff *skb)
2428{
2429 /* We need the data buffer to be aligned properly. We will reserve
2430 * as many bytes as needed to align the data properly
2431 */
2432 skb_reserve(skb, RXBUF_ALIGNMENT -
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002433 (((unsigned long) skb->data) & (RXBUF_ALIGNMENT - 1)));
Eran Libertyacbc0f02010-07-07 15:54:54 -07002434}
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436/* Interrupt Handler for Transmit complete */
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002437static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002439 struct net_device *dev = tx_queue->dev;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002440 struct netdev_queue *txq;
Dai Harukid080cd62008-04-09 19:37:51 -05002441 struct gfar_private *priv = netdev_priv(dev);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002442 struct txbd8 *bdp, *next = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002443 struct txbd8 *lbdp = NULL;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002444 struct txbd8 *base = tx_queue->tx_bd_base;
Dai Haruki4669bc92008-12-17 16:51:04 -08002445 struct sk_buff *skb;
2446 int skb_dirtytx;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002447 int tx_ring_size = tx_queue->tx_ring_size;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002448 int frags = 0, nr_txbds = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002449 int i;
Dai Harukid080cd62008-04-09 19:37:51 -05002450 int howmany = 0;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002451 int tqi = tx_queue->qindex;
2452 unsigned int bytes_sent = 0;
Dai Haruki4669bc92008-12-17 16:51:04 -08002453 u32 lstatus;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002454 size_t buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002456 txq = netdev_get_tx_queue(dev, tqi);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002457 bdp = tx_queue->dirty_tx;
2458 skb_dirtytx = tx_queue->skb_dirtytx;
Dai Haruki4669bc92008-12-17 16:51:04 -08002459
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002460 while ((skb = tx_queue->tx_skbuff[skb_dirtytx])) {
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002461 unsigned long flags;
2462
Dai Haruki4669bc92008-12-17 16:51:04 -08002463 frags = skb_shinfo(skb)->nr_frags;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002464
Jan Ceuleers0977f812012-06-05 03:42:12 +00002465 /* When time stamping, one additional TxBD must be freed.
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002466 * Also, we need to dma_unmap_single() the TxPAL.
2467 */
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002468 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS))
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002469 nr_txbds = frags + 2;
2470 else
2471 nr_txbds = frags + 1;
2472
2473 lbdp = skip_txbd(bdp, nr_txbds - 1, base, tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002474
2475 lstatus = lbdp->lstatus;
2476
2477 /* Only clean completed frames */
2478 if ((lstatus & BD_LFLAG(TXBD_READY)) &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002479 (lstatus & BD_LENGTH_MASK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 break;
2481
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002482 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002483 next = next_txbd(bdp, base, tx_ring_size);
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002484 buflen = next->length + GMAC_FCB_LEN + GMAC_TXPAL_LEN;
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002485 } else
2486 buflen = bdp->length;
2487
Claudiu Manoil369ec162013-02-14 05:00:02 +00002488 dma_unmap_single(priv->dev, bdp->bufPtr,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002489 buflen, DMA_TO_DEVICE);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002490
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002491 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) {
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002492 struct skb_shared_hwtstamps shhwtstamps;
2493 u64 *ns = (u64*) (((u32)skb->data + 0x10) & ~0x7);
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002494
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002495 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
2496 shhwtstamps.hwtstamp = ns_to_ktime(*ns);
Manfred Rudigier9c4886e2012-01-09 23:26:51 +00002497 skb_pull(skb, GMAC_FCB_LEN + GMAC_TXPAL_LEN);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002498 skb_tstamp_tx(skb, &shhwtstamps);
2499 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
2500 bdp = next;
2501 }
Dai Haruki4669bc92008-12-17 16:51:04 -08002502
2503 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
2504 bdp = next_txbd(bdp, base, tx_ring_size);
2505
2506 for (i = 0; i < frags; i++) {
Claudiu Manoil369ec162013-02-14 05:00:02 +00002507 dma_unmap_page(priv->dev, bdp->bufPtr,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002508 bdp->length, DMA_TO_DEVICE);
Dai Haruki4669bc92008-12-17 16:51:04 -08002509 bdp->lstatus &= BD_LFLAG(TXBD_WRAP);
2510 bdp = next_txbd(bdp, base, tx_ring_size);
2511 }
2512
Claudiu Manoil50ad0762013-08-30 15:01:15 +03002513 bytes_sent += GFAR_CB(skb)->bytes_sent;
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002514
Eric Dumazetacb600d2012-10-05 06:23:55 +00002515 dev_kfree_skb_any(skb);
Andy Fleming0fd56bb2009-02-04 16:43:16 -08002516
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002517 tx_queue->tx_skbuff[skb_dirtytx] = NULL;
Dai Haruki4669bc92008-12-17 16:51:04 -08002518
2519 skb_dirtytx = (skb_dirtytx + 1) &
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002520 TX_RING_MOD_MASK(tx_ring_size);
Dai Haruki4669bc92008-12-17 16:51:04 -08002521
Dai Harukid080cd62008-04-09 19:37:51 -05002522 howmany++;
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002523 spin_lock_irqsave(&tx_queue->txlock, flags);
Manfred Rudigierf0ee7ac2010-04-08 23:10:35 +00002524 tx_queue->num_txbdfree += nr_txbds;
Anton Vorontsova3bc1f12009-11-10 14:11:10 +00002525 spin_unlock_irqrestore(&tx_queue->txlock, flags);
Dai Haruki4669bc92008-12-17 16:51:04 -08002526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Dai Haruki4669bc92008-12-17 16:51:04 -08002528 /* If we freed a buffer, we can restart transmission, if necessary */
Claudiu Manoil08511332014-02-24 12:13:45 +02002529 if (tx_queue->num_txbdfree &&
2530 netif_tx_queue_stopped(txq) &&
2531 !(test_bit(GFAR_DOWN, &priv->state)))
2532 netif_wake_subqueue(priv->ndev, tqi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Dai Haruki4669bc92008-12-17 16:51:04 -08002534 /* Update dirty indicators */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002535 tx_queue->skb_dirtytx = skb_dirtytx;
2536 tx_queue->dirty_tx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Paul Gortmakerd8a0f1b2012-01-06 13:51:03 -05002538 netdev_tx_completed_queue(txq, howmany, bytes_sent);
Dai Harukid080cd62008-04-09 19:37:51 -05002539}
2540
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002541static void gfar_schedule_cleanup(struct gfar_priv_grp *gfargrp)
Dai Haruki8c7396a2008-12-17 16:52:00 -08002542{
Anton Vorontsova6d0b912009-01-12 21:57:34 -08002543 unsigned long flags;
2544
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002545 spin_lock_irqsave(&gfargrp->grplock, flags);
2546 if (napi_schedule_prep(&gfargrp->napi)) {
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002547 gfar_write(&gfargrp->regs->imask, IMASK_RTX_DISABLED);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002548 __napi_schedule(&gfargrp->napi);
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08002549 } else {
Jan Ceuleers0977f812012-06-05 03:42:12 +00002550 /* Clear IEVENT, so interrupts aren't called again
Jarek Poplawski8707bdd2009-02-09 14:59:30 -08002551 * because of the packets that have already arrived.
2552 */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002553 gfar_write(&gfargrp->regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08002554 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002555 spin_unlock_irqrestore(&gfargrp->grplock, flags);
Anton Vorontsova6d0b912009-01-12 21:57:34 -08002556
Dai Haruki8c7396a2008-12-17 16:52:00 -08002557}
2558
Dai Harukid080cd62008-04-09 19:37:51 -05002559/* Interrupt Handler for Transmit complete */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002560static irqreturn_t gfar_transmit(int irq, void *grp_id)
Dai Harukid080cd62008-04-09 19:37:51 -05002561{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002562 gfar_schedule_cleanup((struct gfar_priv_grp *)grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return IRQ_HANDLED;
2564}
2565
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002566static void gfar_new_rxbdp(struct gfar_priv_rx_q *rx_queue, struct rxbd8 *bdp,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002567 struct sk_buff *skb)
Andy Fleming815b97c2008-04-22 17:18:29 -05002568{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002569 struct net_device *dev = rx_queue->dev;
Andy Fleming815b97c2008-04-22 17:18:29 -05002570 struct gfar_private *priv = netdev_priv(dev);
Anton Vorontsov8a102fe2009-10-12 06:00:37 +00002571 dma_addr_t buf;
Andy Fleming815b97c2008-04-22 17:18:29 -05002572
Claudiu Manoil369ec162013-02-14 05:00:02 +00002573 buf = dma_map_single(priv->dev, skb->data,
Anton Vorontsov8a102fe2009-10-12 06:00:37 +00002574 priv->rx_buffer_size, DMA_FROM_DEVICE);
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002575 gfar_init_rxbdp(rx_queue, bdp, buf);
Andy Fleming815b97c2008-04-22 17:18:29 -05002576}
2577
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002578static struct sk_buff *gfar_alloc_skb(struct net_device *dev)
Eran Libertyacbc0f02010-07-07 15:54:54 -07002579{
2580 struct gfar_private *priv = netdev_priv(dev);
Eric Dumazetacb600d2012-10-05 06:23:55 +00002581 struct sk_buff *skb;
Eran Libertyacbc0f02010-07-07 15:54:54 -07002582
2583 skb = netdev_alloc_skb(dev, priv->rx_buffer_size + RXBUF_ALIGNMENT);
2584 if (!skb)
2585 return NULL;
2586
2587 gfar_align_skb(skb);
2588
2589 return skb;
2590}
Andy Fleming815b97c2008-04-22 17:18:29 -05002591
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002592struct sk_buff *gfar_new_skb(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
Eric Dumazetacb600d2012-10-05 06:23:55 +00002594 return gfar_alloc_skb(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595}
2596
Li Yang298e1a92007-10-16 14:18:13 +08002597static inline void count_errors(unsigned short status, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598{
Li Yang298e1a92007-10-16 14:18:13 +08002599 struct gfar_private *priv = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07002600 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 struct gfar_extra_stats *estats = &priv->extra_stats;
2602
Jan Ceuleers0977f812012-06-05 03:42:12 +00002603 /* If the packet was truncated, none of the other errors matter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (status & RXBD_TRUNCATED) {
2605 stats->rx_length_errors++;
2606
Paul Gortmaker212079d2013-02-12 15:38:19 -05002607 atomic64_inc(&estats->rx_trunc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609 return;
2610 }
2611 /* Count the errors, if there were any */
2612 if (status & (RXBD_LARGE | RXBD_SHORT)) {
2613 stats->rx_length_errors++;
2614
2615 if (status & RXBD_LARGE)
Paul Gortmaker212079d2013-02-12 15:38:19 -05002616 atomic64_inc(&estats->rx_large);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 else
Paul Gortmaker212079d2013-02-12 15:38:19 -05002618 atomic64_inc(&estats->rx_short);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 }
2620 if (status & RXBD_NONOCTET) {
2621 stats->rx_frame_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002622 atomic64_inc(&estats->rx_nonoctet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 }
2624 if (status & RXBD_CRCERR) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002625 atomic64_inc(&estats->rx_crcerr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 stats->rx_crc_errors++;
2627 }
2628 if (status & RXBD_OVERRUN) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05002629 atomic64_inc(&estats->rx_overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 stats->rx_crc_errors++;
2631 }
2632}
2633
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002634irqreturn_t gfar_receive(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002636 gfar_schedule_cleanup((struct gfar_priv_grp *)grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 return IRQ_HANDLED;
2638}
2639
Kumar Gala0bbaf062005-06-20 10:54:21 -05002640static inline void gfar_rx_checksum(struct sk_buff *skb, struct rxfcb *fcb)
2641{
2642 /* If valid headers were found, and valid sums
2643 * were verified, then we tell the kernel that no
Jan Ceuleers0977f812012-06-05 03:42:12 +00002644 * checksumming is necessary. Otherwise, it is [FIXME]
2645 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06002646 if ((fcb->flags & RXFCB_CSUM_MASK) == (RXFCB_CIP | RXFCB_CTU))
Kumar Gala0bbaf062005-06-20 10:54:21 -05002647 skb->ip_summed = CHECKSUM_UNNECESSARY;
2648 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07002649 skb_checksum_none_assert(skb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002650}
2651
2652
Jan Ceuleers0977f812012-06-05 03:42:12 +00002653/* gfar_process_frame() -- handle one incoming packet if skb isn't NULL. */
Claudiu Manoil61db26c2013-02-14 05:00:05 +00002654static void gfar_process_frame(struct net_device *dev, struct sk_buff *skb,
2655 int amount_pull, struct napi_struct *napi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 struct gfar_private *priv = netdev_priv(dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002658 struct rxfcb *fcb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Dai Haruki2c2db482008-12-16 15:31:15 -08002660 /* fcb is at the beginning if exists */
2661 fcb = (struct rxfcb *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Jan Ceuleers0977f812012-06-05 03:42:12 +00002663 /* Remove the FCB from the skb
2664 * Remove the padded bytes, if there are any
2665 */
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002666 if (amount_pull) {
2667 skb_record_rx_queue(skb, fcb->rq);
Dai Haruki2c2db482008-12-16 15:31:15 -08002668 skb_pull(skb, amount_pull);
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002669 }
Kumar Gala0bbaf062005-06-20 10:54:21 -05002670
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002671 /* Get receive timestamp from the skb */
2672 if (priv->hwts_rx_en) {
2673 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
2674 u64 *ns = (u64 *) skb->data;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002675
Manfred Rudigiercc772ab2010-04-08 23:10:03 +00002676 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
2677 shhwtstamps->hwtstamp = ns_to_ktime(*ns);
2678 }
2679
2680 if (priv->padding)
2681 skb_pull(skb, priv->padding);
2682
Michał Mirosław8b3afe92011-04-15 04:50:50 +00002683 if (dev->features & NETIF_F_RXCSUM)
Dai Haruki2c2db482008-12-16 15:31:15 -08002684 gfar_rx_checksum(skb, fcb);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002685
Dai Haruki2c2db482008-12-16 15:31:15 -08002686 /* Tell the skb what kind of packet this is */
2687 skb->protocol = eth_type_trans(skb, dev);
Kumar Gala0bbaf062005-06-20 10:54:21 -05002688
Patrick McHardyf6469682013-04-19 02:04:27 +00002689 /* There's need to check for NETIF_F_HW_VLAN_CTAG_RX here.
David S. Miller823dcd22011-08-20 10:39:12 -07002690 * Even if vlan rx accel is disabled, on some chips
2691 * RXFCB_VLN is pseudo randomly set.
2692 */
Patrick McHardyf6469682013-04-19 02:04:27 +00002693 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX &&
David S. Miller823dcd22011-08-20 10:39:12 -07002694 fcb->flags & RXFCB_VLN)
David S. Millere5905c82013-04-22 19:24:19 -04002695 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), fcb->vlctl);
Jiri Pirko87c288c2011-07-20 04:54:19 +00002696
Dai Haruki2c2db482008-12-16 15:31:15 -08002697 /* Send the packet up the stack */
Claudiu Manoil953d2762013-03-21 03:12:15 +00002698 napi_gro_receive(napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
2701
2702/* gfar_clean_rx_ring() -- Processes each frame in the rx ring
Jan Ceuleers2281a0f2012-06-05 03:42:11 +00002703 * until the budget/quota has been reached. Returns the number
2704 * of frames handled
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002706int gfar_clean_rx_ring(struct gfar_priv_rx_q *rx_queue, int rx_work_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002708 struct net_device *dev = rx_queue->dev;
Andy Fleming31de1982008-12-16 15:33:40 -08002709 struct rxbd8 *bdp, *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 struct sk_buff *skb;
Dai Haruki2c2db482008-12-16 15:31:15 -08002711 int pkt_len;
2712 int amount_pull;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 int howmany = 0;
2714 struct gfar_private *priv = netdev_priv(dev);
2715
2716 /* Get the first full descriptor */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002717 bdp = rx_queue->cur_rx;
2718 base = rx_queue->rx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Claudiu Manoilba779712013-02-14 05:00:07 +00002720 amount_pull = priv->uses_rxfcb ? GMAC_FCB_LEN : 0;
Dai Haruki2c2db482008-12-16 15:31:15 -08002721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 while (!((bdp->status & RXBD_EMPTY) || (--rx_work_limit < 0))) {
Andy Fleming815b97c2008-04-22 17:18:29 -05002723 struct sk_buff *newskb;
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002724
Scott Wood3b6330c2007-05-16 15:06:59 -05002725 rmb();
Andy Fleming815b97c2008-04-22 17:18:29 -05002726
2727 /* Add another skb for the future */
2728 newskb = gfar_new_skb(dev);
2729
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002730 skb = rx_queue->rx_skbuff[rx_queue->skb_currx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Claudiu Manoil369ec162013-02-14 05:00:02 +00002732 dma_unmap_single(priv->dev, bdp->bufPtr,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002733 priv->rx_buffer_size, DMA_FROM_DEVICE);
Andy Fleming81183052008-11-12 10:07:11 -06002734
Anton Vorontsov63b88b92010-06-11 10:51:03 +00002735 if (unlikely(!(bdp->status & RXBD_ERR) &&
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002736 bdp->length > priv->rx_buffer_size))
Anton Vorontsov63b88b92010-06-11 10:51:03 +00002737 bdp->status = RXBD_LARGE;
2738
Andy Fleming815b97c2008-04-22 17:18:29 -05002739 /* We drop the frame if we failed to allocate a new buffer */
2740 if (unlikely(!newskb || !(bdp->status & RXBD_LAST) ||
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002741 bdp->status & RXBD_ERR)) {
Andy Fleming815b97c2008-04-22 17:18:29 -05002742 count_errors(bdp->status, dev);
2743
2744 if (unlikely(!newskb))
2745 newskb = skb;
Eran Libertyacbc0f02010-07-07 15:54:54 -07002746 else if (skb)
Eric Dumazetacb600d2012-10-05 06:23:55 +00002747 dev_kfree_skb(skb);
Andy Fleming815b97c2008-04-22 17:18:29 -05002748 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 /* Increment the number of packets */
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002750 rx_queue->stats.rx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 howmany++;
2752
Dai Haruki2c2db482008-12-16 15:31:15 -08002753 if (likely(skb)) {
2754 pkt_len = bdp->length - ETH_FCS_LEN;
2755 /* Remove the FCS from the packet length */
2756 skb_put(skb, pkt_len);
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002757 rx_queue->stats.rx_bytes += pkt_len;
Sandeep Gopalpetf74dac02009-12-24 03:13:06 +00002758 skb_record_rx_queue(skb, rx_queue->qindex);
Wu Jiajun-B06378cd754a52012-04-19 22:54:35 +00002759 gfar_process_frame(dev, skb, amount_pull,
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002760 &rx_queue->grp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Dai Haruki2c2db482008-12-16 15:31:15 -08002762 } else {
Joe Perches59deab22011-06-14 08:57:47 +00002763 netif_warn(priv, rx_err, dev, "Missing skb!\n");
Sandeep Gopalpeta7f38042009-12-16 01:15:07 +00002764 rx_queue->stats.rx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05002765 atomic64_inc(&priv->extra_stats.rx_skbmissing);
Dai Haruki2c2db482008-12-16 15:31:15 -08002766 }
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 }
2769
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002770 rx_queue->rx_skbuff[rx_queue->skb_currx] = newskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Andy Fleming815b97c2008-04-22 17:18:29 -05002772 /* Setup the new bdp */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002773 gfar_new_rxbdp(rx_queue, bdp, newskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 /* Update to the next pointer */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002776 bdp = next_bd(bdp, base, rx_queue->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 /* update to point at the next skb */
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002779 rx_queue->skb_currx = (rx_queue->skb_currx + 1) &
2780 RX_RING_MOD_MASK(rx_queue->rx_ring_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 }
2782
2783 /* Update the current rxbd pointer to be the next one */
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002784 rx_queue->cur_rx = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 return howmany;
2787}
2788
Claudiu Manoil5eaedf32013-06-10 20:19:48 +03002789static int gfar_poll_sq(struct napi_struct *napi, int budget)
2790{
2791 struct gfar_priv_grp *gfargrp =
2792 container_of(napi, struct gfar_priv_grp, napi);
2793 struct gfar __iomem *regs = gfargrp->regs;
2794 struct gfar_priv_tx_q *tx_queue = gfargrp->priv->tx_queue[0];
2795 struct gfar_priv_rx_q *rx_queue = gfargrp->priv->rx_queue[0];
2796 int work_done = 0;
2797
2798 /* Clear IEVENT, so interrupts aren't called again
2799 * because of the packets that have already arrived
2800 */
2801 gfar_write(&regs->ievent, IEVENT_RTX_MASK);
2802
2803 /* run Tx cleanup to completion */
2804 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx])
2805 gfar_clean_tx_ring(tx_queue);
2806
2807 work_done = gfar_clean_rx_ring(rx_queue, budget);
2808
2809 if (work_done < budget) {
2810 napi_complete(napi);
2811 /* Clear the halt bit in RSTAT */
2812 gfar_write(&regs->rstat, gfargrp->rstat);
2813
2814 gfar_write(&regs->imask, IMASK_DEFAULT);
2815
2816 /* If we are coalescing interrupts, update the timer
2817 * Otherwise, clear it
2818 */
2819 gfar_write(&regs->txic, 0);
2820 if (likely(tx_queue->txcoalescing))
2821 gfar_write(&regs->txic, tx_queue->txic);
2822
2823 gfar_write(&regs->rxic, 0);
2824 if (unlikely(rx_queue->rxcoalescing))
2825 gfar_write(&regs->rxic, rx_queue->rxic);
2826 }
2827
2828 return work_done;
2829}
2830
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002831static int gfar_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00002833 struct gfar_priv_grp *gfargrp =
2834 container_of(napi, struct gfar_priv_grp, napi);
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002835 struct gfar_private *priv = gfargrp->priv;
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002836 struct gfar __iomem *regs = gfargrp->regs;
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00002837 struct gfar_priv_tx_q *tx_queue = NULL;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002838 struct gfar_priv_rx_q *rx_queue = NULL;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002839 int work_done = 0, work_done_per_q = 0;
Claudiu Manoil39c0a0d2013-03-21 03:12:13 +00002840 int i, budget_per_q = 0;
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002841 int has_tx_work = 0;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00002842 unsigned long rstat_rxf;
2843 int num_act_queues;
Dai Harukid080cd62008-04-09 19:37:51 -05002844
Dai Haruki8c7396a2008-12-17 16:52:00 -08002845 /* Clear IEVENT, so interrupts aren't called again
Jan Ceuleers0977f812012-06-05 03:42:12 +00002846 * because of the packets that have already arrived
2847 */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002848 gfar_write(&regs->ievent, IEVENT_RTX_MASK);
Dai Haruki8c7396a2008-12-17 16:52:00 -08002849
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00002850 rstat_rxf = gfar_read(&regs->rstat) & RSTAT_RXF_MASK;
2851
2852 num_act_queues = bitmap_weight(&rstat_rxf, MAX_RX_QS);
2853 if (num_act_queues)
2854 budget_per_q = budget/num_act_queues;
2855
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002856 for_each_set_bit(i, &gfargrp->tx_bit_map, priv->num_tx_queues) {
2857 tx_queue = priv->tx_queue[i];
2858 /* run Tx cleanup to completion */
2859 if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx]) {
2860 gfar_clean_tx_ring(tx_queue);
2861 has_tx_work = 1;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002862 }
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002863 }
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002864
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002865 for_each_set_bit(i, &gfargrp->rx_bit_map, priv->num_rx_queues) {
2866 /* skip queue if not active */
2867 if (!(rstat_rxf & (RSTAT_CLEAR_RXF0 >> i)))
2868 continue;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002869
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002870 rx_queue = priv->rx_queue[i];
2871 work_done_per_q =
2872 gfar_clean_rx_ring(rx_queue, budget_per_q);
2873 work_done += work_done_per_q;
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002874
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002875 /* finished processing this queue */
2876 if (work_done_per_q < budget_per_q) {
2877 /* clear active queue hw indication */
2878 gfar_write(&regs->rstat,
2879 RSTAT_CLEAR_RXF0 >> i);
2880 num_act_queues--;
Claudiu Manoil6be5ed32013-03-19 07:40:03 +00002881
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002882 if (!num_act_queues)
2883 break;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00002884 }
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002885 }
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002886
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002887 if (!num_act_queues && !has_tx_work) {
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002888
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002889 napi_complete(napi);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002890
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002891 /* Clear the halt bit in RSTAT */
2892 gfar_write(&regs->rstat, gfargrp->rstat);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002893
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002894 gfar_write(&regs->imask, IMASK_DEFAULT);
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002895
Claudiu Manoil3ba405d2013-10-14 17:05:09 +03002896 /* If we are coalescing interrupts, update the timer
2897 * Otherwise, clear it
2898 */
2899 gfar_configure_coalescing(priv, gfargrp->rx_bit_map,
2900 gfargrp->tx_bit_map);
Dai Harukid080cd62008-04-09 19:37:51 -05002901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Claudiu Manoilc233cf402013-03-19 07:40:02 +00002903 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002906#ifdef CONFIG_NET_POLL_CONTROLLER
Jan Ceuleers0977f812012-06-05 03:42:12 +00002907/* Polling 'interrupt' - used by things like netconsole to send skbs
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002908 * without having to re-enable interrupts. It's not called while
2909 * the interrupt routine is executing.
2910 */
2911static void gfar_netpoll(struct net_device *dev)
2912{
2913 struct gfar_private *priv = netdev_priv(dev);
Jan Ceuleers3a2e16c2012-06-05 03:42:14 +00002914 int i;
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002915
2916 /* If the device has multiple interrupts, run tx/rx */
Andy Flemingb31a1d82008-12-16 15:29:15 -08002917 if (priv->device_flags & FSL_GIANFAR_DEV_HAS_MULTI_INTR) {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002918 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00002919 struct gfar_priv_grp *grp = &priv->gfargrp[i];
2920
2921 disable_irq(gfar_irq(grp, TX)->irq);
2922 disable_irq(gfar_irq(grp, RX)->irq);
2923 disable_irq(gfar_irq(grp, ER)->irq);
2924 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
2925 enable_irq(gfar_irq(grp, ER)->irq);
2926 enable_irq(gfar_irq(grp, RX)->irq);
2927 enable_irq(gfar_irq(grp, TX)->irq);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002928 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002929 } else {
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00002930 for (i = 0; i < priv->num_grps; i++) {
Paul Gortmaker62ed8392013-02-24 05:38:31 +00002931 struct gfar_priv_grp *grp = &priv->gfargrp[i];
2932
2933 disable_irq(gfar_irq(grp, TX)->irq);
2934 gfar_interrupt(gfar_irq(grp, TX)->irq, grp);
2935 enable_irq(gfar_irq(grp, TX)->irq);
Anton Vorontsov43de0042009-12-09 02:52:19 -08002936 }
Vitaly Woolf2d71c22006-11-07 13:27:02 +03002937 }
2938}
2939#endif
2940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941/* The interrupt handler for devices with one interrupt */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002942static irqreturn_t gfar_interrupt(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002944 struct gfar_priv_grp *gfargrp = grp_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002947 u32 events = gfar_read(&gfargrp->regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 /* Check for reception */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002950 if (events & IEVENT_RX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002951 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 /* Check for transmit completion */
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002954 if (events & IEVENT_TX_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002955 gfar_transmit(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Sergei Shtylyov538cc7e2007-02-15 17:56:01 +04002957 /* Check for errors */
2958 if (events & IEVENT_ERR_MASK)
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00002959 gfar_error(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 return IRQ_HANDLED;
2962}
2963
Claudiu Manoil23402bd2013-08-12 13:53:26 +03002964static u32 gfar_get_flowctrl_cfg(struct gfar_private *priv)
2965{
2966 struct phy_device *phydev = priv->phydev;
2967 u32 val = 0;
2968
2969 if (!phydev->duplex)
2970 return val;
2971
2972 if (!priv->pause_aneg_en) {
2973 if (priv->tx_pause_en)
2974 val |= MACCFG1_TX_FLOW;
2975 if (priv->rx_pause_en)
2976 val |= MACCFG1_RX_FLOW;
2977 } else {
2978 u16 lcl_adv, rmt_adv;
2979 u8 flowctrl;
2980 /* get link partner capabilities */
2981 rmt_adv = 0;
2982 if (phydev->pause)
2983 rmt_adv = LPA_PAUSE_CAP;
2984 if (phydev->asym_pause)
2985 rmt_adv |= LPA_PAUSE_ASYM;
2986
2987 lcl_adv = mii_advertise_flowctrl(phydev->advertising);
2988
2989 flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv);
2990 if (flowctrl & FLOW_CTRL_TX)
2991 val |= MACCFG1_TX_FLOW;
2992 if (flowctrl & FLOW_CTRL_RX)
2993 val |= MACCFG1_RX_FLOW;
2994 }
2995
2996 return val;
2997}
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999/* Called every time the controller might need to be made
3000 * aware of new link state. The PHY code conveys this
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003001 * information through variables in the phydev structure, and this
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 * function converts those variables into the appropriate
3003 * register values, and can bring down the device if needed.
3004 */
3005static void adjust_link(struct net_device *dev)
3006{
3007 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003008 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003009 struct phy_device *phydev = priv->phydev;
3010 int new_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Claudiu Manoil08511332014-02-24 12:13:45 +02003012 if (test_bit(GFAR_RESETTING, &priv->state))
3013 return;
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003014
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003015 if (phydev->link) {
Claudiu Manoil23402bd2013-08-12 13:53:26 +03003016 u32 tempval1 = gfar_read(&regs->maccfg1);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003017 u32 tempval = gfar_read(&regs->maccfg2);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003018 u32 ecntrl = gfar_read(&regs->ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 /* Now we make sure that we can be in full duplex mode.
Jan Ceuleers0977f812012-06-05 03:42:12 +00003021 * If not, we operate in half-duplex mode.
3022 */
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003023 if (phydev->duplex != priv->oldduplex) {
3024 new_state = 1;
3025 if (!(phydev->duplex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 tempval &= ~(MACCFG2_FULL_DUPLEX);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003027 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 tempval |= MACCFG2_FULL_DUPLEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003030 priv->oldduplex = phydev->duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 }
3032
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003033 if (phydev->speed != priv->oldspeed) {
3034 new_state = 1;
3035 switch (phydev->speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 case 1000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 tempval =
3038 ((tempval & ~(MACCFG2_IF)) | MACCFG2_GMII);
Li Yangf430e492009-01-06 14:08:10 -08003039
3040 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 break;
3042 case 100:
3043 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 tempval =
3045 ((tempval & ~(MACCFG2_IF)) | MACCFG2_MII);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003046
3047 /* Reduced mode distinguishes
Jan Ceuleers0977f812012-06-05 03:42:12 +00003048 * between 10 and 100
3049 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003050 if (phydev->speed == SPEED_100)
3051 ecntrl |= ECNTRL_R100;
3052 else
3053 ecntrl &= ~(ECNTRL_R100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 break;
3055 default:
Joe Perches59deab22011-06-14 08:57:47 +00003056 netif_warn(priv, link, dev,
3057 "Ack! Speed (%d) is not 10/100/1000!\n",
3058 phydev->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 break;
3060 }
3061
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003062 priv->oldspeed = phydev->speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 }
3064
Claudiu Manoil23402bd2013-08-12 13:53:26 +03003065 tempval1 &= ~(MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
3066 tempval1 |= gfar_get_flowctrl_cfg(priv);
3067
3068 gfar_write(&regs->maccfg1, tempval1);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003069 gfar_write(&regs->maccfg2, tempval);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003070 gfar_write(&regs->ecntrl, ecntrl);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 if (!priv->oldlink) {
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003073 new_state = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 priv->oldlink = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003076 } else if (priv->oldlink) {
3077 new_state = 1;
3078 priv->oldlink = 0;
3079 priv->oldspeed = 0;
3080 priv->oldduplex = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003083 if (new_state && netif_msg_link(priv))
3084 phy_print_status(phydev);
Andy Flemingbb40dcb2005-09-23 22:54:21 -04003085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087/* Update the hash table based on the current list of multicast
3088 * addresses we subscribe to. Also, change the promiscuity of
3089 * the device based on the flags (this function is called
Jan Ceuleers0977f812012-06-05 03:42:12 +00003090 * whenever dev->flags is changed
3091 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092static void gfar_set_multi(struct net_device *dev)
3093{
Jiri Pirko22bedad32010-04-01 21:22:57 +00003094 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003096 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 u32 tempval;
3098
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003099 if (dev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 /* Set RCTRL to PROM */
3101 tempval = gfar_read(&regs->rctrl);
3102 tempval |= RCTRL_PROM;
3103 gfar_write(&regs->rctrl, tempval);
3104 } else {
3105 /* Set RCTRL to not PROM */
3106 tempval = gfar_read(&regs->rctrl);
3107 tempval &= ~(RCTRL_PROM);
3108 gfar_write(&regs->rctrl, tempval);
3109 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003110
Sandeep Gopalpeta12f8012009-11-02 07:03:00 +00003111 if (dev->flags & IFF_ALLMULTI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 /* Set the hash to rx all multicast frames */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003113 gfar_write(&regs->igaddr0, 0xffffffff);
3114 gfar_write(&regs->igaddr1, 0xffffffff);
3115 gfar_write(&regs->igaddr2, 0xffffffff);
3116 gfar_write(&regs->igaddr3, 0xffffffff);
3117 gfar_write(&regs->igaddr4, 0xffffffff);
3118 gfar_write(&regs->igaddr5, 0xffffffff);
3119 gfar_write(&regs->igaddr6, 0xffffffff);
3120 gfar_write(&regs->igaddr7, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 gfar_write(&regs->gaddr0, 0xffffffff);
3122 gfar_write(&regs->gaddr1, 0xffffffff);
3123 gfar_write(&regs->gaddr2, 0xffffffff);
3124 gfar_write(&regs->gaddr3, 0xffffffff);
3125 gfar_write(&regs->gaddr4, 0xffffffff);
3126 gfar_write(&regs->gaddr5, 0xffffffff);
3127 gfar_write(&regs->gaddr6, 0xffffffff);
3128 gfar_write(&regs->gaddr7, 0xffffffff);
3129 } else {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003130 int em_num;
3131 int idx;
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 /* zero out the hash */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003134 gfar_write(&regs->igaddr0, 0x0);
3135 gfar_write(&regs->igaddr1, 0x0);
3136 gfar_write(&regs->igaddr2, 0x0);
3137 gfar_write(&regs->igaddr3, 0x0);
3138 gfar_write(&regs->igaddr4, 0x0);
3139 gfar_write(&regs->igaddr5, 0x0);
3140 gfar_write(&regs->igaddr6, 0x0);
3141 gfar_write(&regs->igaddr7, 0x0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 gfar_write(&regs->gaddr0, 0x0);
3143 gfar_write(&regs->gaddr1, 0x0);
3144 gfar_write(&regs->gaddr2, 0x0);
3145 gfar_write(&regs->gaddr3, 0x0);
3146 gfar_write(&regs->gaddr4, 0x0);
3147 gfar_write(&regs->gaddr5, 0x0);
3148 gfar_write(&regs->gaddr6, 0x0);
3149 gfar_write(&regs->gaddr7, 0x0);
3150
Andy Fleming7f7f5312005-11-11 12:38:59 -06003151 /* If we have extended hash tables, we need to
3152 * clear the exact match registers to prepare for
Jan Ceuleers0977f812012-06-05 03:42:12 +00003153 * setting them
3154 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003155 if (priv->extended_hash) {
3156 em_num = GFAR_EM_NUM + 1;
3157 gfar_clear_exact_match(dev);
3158 idx = 1;
3159 } else {
3160 idx = 0;
3161 em_num = 0;
3162 }
3163
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00003164 if (netdev_mc_empty(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 return;
3166
3167 /* Parse the list, and set the appropriate bits */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003168 netdev_for_each_mc_addr(ha, dev) {
Andy Fleming7f7f5312005-11-11 12:38:59 -06003169 if (idx < em_num) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00003170 gfar_set_mac_for_addr(dev, idx, ha->addr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003171 idx++;
3172 } else
Jiri Pirko22bedad32010-04-01 21:22:57 +00003173 gfar_set_hash_for_addr(dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 }
3175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176}
3177
Andy Fleming7f7f5312005-11-11 12:38:59 -06003178
3179/* Clears each of the exact match registers to zero, so they
Jan Ceuleers0977f812012-06-05 03:42:12 +00003180 * don't interfere with normal reception
3181 */
Andy Fleming7f7f5312005-11-11 12:38:59 -06003182static void gfar_clear_exact_match(struct net_device *dev)
3183{
3184 int idx;
Joe Perches6a3c910c2011-11-16 09:38:02 +00003185 static const u8 zero_arr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
Andy Fleming7f7f5312005-11-11 12:38:59 -06003186
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003187 for (idx = 1; idx < GFAR_EM_NUM + 1; idx++)
Joe Perchesb6bc7652010-12-21 02:16:08 -08003188 gfar_set_mac_for_addr(dev, idx, zero_arr);
Andy Fleming7f7f5312005-11-11 12:38:59 -06003189}
3190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191/* Set the appropriate hash bit for the given addr */
3192/* The algorithm works like so:
3193 * 1) Take the Destination Address (ie the multicast address), and
3194 * do a CRC on it (little endian), and reverse the bits of the
3195 * result.
3196 * 2) Use the 8 most significant bits as a hash into a 256-entry
3197 * table. The table is controlled through 8 32-bit registers:
3198 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is
3199 * gaddr7. This means that the 3 most significant bits in the
3200 * hash index which gaddr register to use, and the 5 other bits
3201 * indicate which bit (assuming an IBM numbering scheme, which
3202 * for PowerPC (tm) is usually the case) in the register holds
Jan Ceuleers0977f812012-06-05 03:42:12 +00003203 * the entry.
3204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205static void gfar_set_hash_for_addr(struct net_device *dev, u8 *addr)
3206{
3207 u32 tempval;
3208 struct gfar_private *priv = netdev_priv(dev);
Joe Perches6a3c910c2011-11-16 09:38:02 +00003209 u32 result = ether_crc(ETH_ALEN, addr);
Kumar Gala0bbaf062005-06-20 10:54:21 -05003210 int width = priv->hash_width;
3211 u8 whichbit = (result >> (32 - width)) & 0x1f;
3212 u8 whichreg = result >> (32 - width + 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 u32 value = (1 << (31-whichbit));
3214
Kumar Gala0bbaf062005-06-20 10:54:21 -05003215 tempval = gfar_read(priv->hash_regs[whichreg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 tempval |= value;
Kumar Gala0bbaf062005-06-20 10:54:21 -05003217 gfar_write(priv->hash_regs[whichreg], tempval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218}
3219
Andy Fleming7f7f5312005-11-11 12:38:59 -06003220
3221/* There are multiple MAC Address register pairs on some controllers
3222 * This function sets the numth pair to a given address
3223 */
Joe Perchesb6bc7652010-12-21 02:16:08 -08003224static void gfar_set_mac_for_addr(struct net_device *dev, int num,
3225 const u8 *addr)
Andy Fleming7f7f5312005-11-11 12:38:59 -06003226{
3227 struct gfar_private *priv = netdev_priv(dev);
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003228 struct gfar __iomem *regs = priv->gfargrp[0].regs;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003229 int idx;
Joe Perches6a3c910c2011-11-16 09:38:02 +00003230 char tmpbuf[ETH_ALEN];
Andy Fleming7f7f5312005-11-11 12:38:59 -06003231 u32 tempval;
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003232 u32 __iomem *macptr = &regs->macstnaddr1;
Andy Fleming7f7f5312005-11-11 12:38:59 -06003233
3234 macptr += num*2;
3235
Jan Ceuleers0977f812012-06-05 03:42:12 +00003236 /* Now copy it into the mac registers backwards, cuz
3237 * little endian is silly
3238 */
Joe Perches6a3c910c2011-11-16 09:38:02 +00003239 for (idx = 0; idx < ETH_ALEN; idx++)
3240 tmpbuf[ETH_ALEN - 1 - idx] = addr[idx];
Andy Fleming7f7f5312005-11-11 12:38:59 -06003241
3242 gfar_write(macptr, *((u32 *) (tmpbuf)));
3243
3244 tempval = *((u32 *) (tmpbuf + 4));
3245
3246 gfar_write(macptr+1, tempval);
3247}
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249/* GFAR error interrupt handler */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003250static irqreturn_t gfar_error(int irq, void *grp_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251{
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003252 struct gfar_priv_grp *gfargrp = grp_id;
3253 struct gfar __iomem *regs = gfargrp->regs;
3254 struct gfar_private *priv= gfargrp->priv;
3255 struct net_device *dev = priv->ndev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
3257 /* Save ievent for future reference */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003258 u32 events = gfar_read(&regs->ievent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 /* Clear IEVENT */
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003261 gfar_write(&regs->ievent, events & IEVENT_ERR_MASK);
Scott Woodd87eb122008-07-11 18:04:45 -05003262
3263 /* Magic Packet is not an error. */
Andy Flemingb31a1d82008-12-16 15:29:15 -08003264 if ((priv->device_flags & FSL_GIANFAR_DEV_HAS_MAGIC_PACKET) &&
Scott Woodd87eb122008-07-11 18:04:45 -05003265 (events & IEVENT_MAG))
3266 events &= ~IEVENT_MAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 /* Hmm... */
Kumar Gala0bbaf062005-06-20 10:54:21 -05003269 if (netif_msg_rx_err(priv) || netif_msg_tx_err(priv))
Jan Ceuleersbc4598b2012-06-05 03:42:13 +00003270 netdev_dbg(dev,
3271 "error interrupt (ievent=0x%08x imask=0x%08x)\n",
Joe Perches59deab22011-06-14 08:57:47 +00003272 events, gfar_read(&regs->imask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274 /* Update the error counters */
3275 if (events & IEVENT_TXE) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003276 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 if (events & IEVENT_LC)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003279 dev->stats.tx_window_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 if (events & IEVENT_CRL)
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003281 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 if (events & IEVENT_XFUN) {
Anton Vorontsov836cf7f2009-11-10 14:11:08 +00003283 unsigned long flags;
3284
Joe Perches59deab22011-06-14 08:57:47 +00003285 netif_dbg(priv, tx_err, dev,
3286 "TX FIFO underrun, packet dropped\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003287 dev->stats.tx_dropped++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003288 atomic64_inc(&priv->extra_stats.tx_underrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Anton Vorontsov836cf7f2009-11-10 14:11:08 +00003290 local_irq_save(flags);
3291 lock_tx_qs(priv);
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 /* Reactivate the Tx Queues */
Sandeep Gopalpetfba4ed02009-11-02 07:03:15 +00003294 gfar_write(&regs->tstat, gfargrp->tstat);
Anton Vorontsov836cf7f2009-11-10 14:11:08 +00003295
3296 unlock_tx_qs(priv);
3297 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
Joe Perches59deab22011-06-14 08:57:47 +00003299 netif_dbg(priv, tx_err, dev, "Transmit Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
3301 if (events & IEVENT_BSY) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003302 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003303 atomic64_inc(&priv->extra_stats.rx_bsy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Sandeep Gopalpetf4983702009-11-02 07:03:09 +00003305 gfar_receive(irq, grp_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Joe Perches59deab22011-06-14 08:57:47 +00003307 netif_dbg(priv, rx_err, dev, "busy error (rstat: %x)\n",
3308 gfar_read(&regs->rstat));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 }
3310 if (events & IEVENT_BABR) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07003311 dev->stats.rx_errors++;
Paul Gortmaker212079d2013-02-12 15:38:19 -05003312 atomic64_inc(&priv->extra_stats.rx_babr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
Joe Perches59deab22011-06-14 08:57:47 +00003314 netif_dbg(priv, rx_err, dev, "babbling RX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 }
3316 if (events & IEVENT_EBERR) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003317 atomic64_inc(&priv->extra_stats.eberr);
Joe Perches59deab22011-06-14 08:57:47 +00003318 netif_dbg(priv, rx_err, dev, "bus error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 }
Joe Perches59deab22011-06-14 08:57:47 +00003320 if (events & IEVENT_RXC)
3321 netif_dbg(priv, rx_status, dev, "control frame\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
3323 if (events & IEVENT_BABT) {
Paul Gortmaker212079d2013-02-12 15:38:19 -05003324 atomic64_inc(&priv->extra_stats.tx_babt);
Joe Perches59deab22011-06-14 08:57:47 +00003325 netif_dbg(priv, tx_err, dev, "babbling TX error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 }
3327 return IRQ_HANDLED;
3328}
3329
Andy Flemingb31a1d82008-12-16 15:29:15 -08003330static struct of_device_id gfar_match[] =
3331{
3332 {
3333 .type = "network",
3334 .compatible = "gianfar",
3335 },
Sandeep Gopalpet46ceb602009-11-02 07:03:34 +00003336 {
3337 .compatible = "fsl,etsec2",
3338 },
Andy Flemingb31a1d82008-12-16 15:29:15 -08003339 {},
3340};
Anton Vorontsove72701a2009-10-14 14:54:52 -07003341MODULE_DEVICE_TABLE(of, gfar_match);
Andy Flemingb31a1d82008-12-16 15:29:15 -08003342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343/* Structure for a device driver */
Grant Likely74888762011-02-22 21:05:51 -07003344static struct platform_driver gfar_driver = {
Grant Likely40182942010-04-13 16:13:02 -07003345 .driver = {
3346 .name = "fsl-gianfar",
3347 .owner = THIS_MODULE,
3348 .pm = GFAR_PM_OPS,
3349 .of_match_table = gfar_match,
3350 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 .probe = gfar_probe,
3352 .remove = gfar_remove,
3353};
3354
Axel Lindb62f682011-11-27 16:44:17 +00003355module_platform_driver(gfar_driver);