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