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