blob: b4c9268100bbc7ffd1b294dcfa2adc1902768ec5 [file] [log] [blame]
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001/*
Jamie Ilesf75ba502011-11-08 10:12:32 +00002 * Cadence MACB/GEM Ethernet Controller driver
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003 *
4 * Copyright (C) 2004-2006 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
Jamie Ilesc220f8c2011-03-08 20:27:08 +000011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010012#include <linux/clk.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
Nicolas Ferre909a8582012-11-19 06:00:21 +000017#include <linux/circ_buf.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010018#include <linux/slab.h>
19#include <linux/init.h>
Soren Brinkmann60fe7162013-12-10 16:07:21 -080020#include <linux/io.h>
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +000021#include <linux/gpio.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010022#include <linux/gpio/consumer.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000023#include <linux/interrupt.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010024#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010026#include <linux/dma-mapping.h>
Jamie Iles84e0cdb2011-03-08 20:17:06 +000027#include <linux/platform_data/macb.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010028#include <linux/platform_device.h>
frederic RODO6c36a702007-07-12 19:07:24 +020029#include <linux/phy.h>
Olof Johanssonb17471f2011-12-20 13:13:07 -080030#include <linux/of.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010031#include <linux/of_device.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010032#include <linux/of_gpio.h>
Boris BREZILLON148cbb52013-08-22 17:57:28 +020033#include <linux/of_mdio.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010034#include <linux/of_net.h>
Rafal Ozieblo1629dd42016-11-16 10:02:34 +000035#include <linux/ip.h>
36#include <linux/udp.h>
37#include <linux/tcp.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010038#include "macb.h"
39
Nicolas Ferre1b447912013-06-04 21:57:11 +000040#define MACB_RX_BUFFER_SIZE 128
Nicolas Ferre1b447912013-06-04 21:57:11 +000041#define RX_BUFFER_MULTIPLE 64 /* bytes */
Zach Brown8441bb32016-10-19 09:56:58 -050042
Zach Brownb410d132016-10-19 09:56:57 -050043#define DEFAULT_RX_RING_SIZE 512 /* must be power of 2 */
Zach Brown8441bb32016-10-19 09:56:58 -050044#define MIN_RX_RING_SIZE 64
45#define MAX_RX_RING_SIZE 8192
Rafal Ozieblodc97a892017-01-27 15:08:20 +000046#define RX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
Zach Brownb410d132016-10-19 09:56:57 -050047 * (bp)->rx_ring_size)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010048
Zach Brownb410d132016-10-19 09:56:57 -050049#define DEFAULT_TX_RING_SIZE 512 /* must be power of 2 */
Zach Brown8441bb32016-10-19 09:56:58 -050050#define MIN_TX_RING_SIZE 64
51#define MAX_TX_RING_SIZE 4096
Rafal Ozieblodc97a892017-01-27 15:08:20 +000052#define TX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
Zach Brownb410d132016-10-19 09:56:57 -050053 * (bp)->tx_ring_size)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010054
Nicolas Ferre909a8582012-11-19 06:00:21 +000055/* level of occupied TX descriptors under which we wake up TX process */
Zach Brownb410d132016-10-19 09:56:57 -050056#define MACB_TX_WAKEUP_THRESH(bp) (3 * (bp)->tx_ring_size / 4)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010057
58#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
59 | MACB_BIT(ISR_ROVR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000060#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
61 | MACB_BIT(ISR_RLE) \
62 | MACB_BIT(TXERR))
63#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP))
64
Rafal Ozieblo1629dd42016-11-16 10:02:34 +000065/* Max length of transmit frame must be a multiple of 8 bytes */
66#define MACB_TX_LEN_ALIGN 8
67#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
68#define GEM_MAX_TX_LEN ((unsigned int)((1 << GEM_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +020069
Jarod Wilson44770e12016-10-17 15:54:17 -040070#define GEM_MTU_MIN_SIZE ETH_MIN_MTU
David S. Millerf9c45ae2017-07-03 06:31:05 -070071#define MACB_NETIF_LSO NETIF_F_TSO
Harini Katakama5898ea2015-05-06 22:27:18 +053072
Sergio Prado3e2a5e12016-02-09 12:07:16 -020073#define MACB_WOL_HAS_MAGIC_PACKET (0x1 << 0)
74#define MACB_WOL_ENABLED (0x1 << 1)
75
Moritz Fischer64ec42f2016-03-29 19:11:12 -070076/* Graceful stop timeouts in us. We should allow up to
Nicolas Ferree86cd532012-10-31 06:04:57 +000077 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
78 */
79#define MACB_HALT_TIMEOUT 1230
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010080
Rafal Ozieblodc97a892017-01-27 15:08:20 +000081/* DMA buffer descriptor might be different size
Rafal Ozieblo7b429612017-06-29 07:12:51 +010082 * depends on hardware configuration:
83 *
84 * 1. dma address width 32 bits:
85 * word 1: 32 bit address of Data Buffer
86 * word 2: control
87 *
88 * 2. dma address width 64 bits:
89 * word 1: 32 bit address of Data Buffer
90 * word 2: control
91 * word 3: upper 32 bit address of Data Buffer
92 * word 4: unused
93 *
94 * 3. dma address width 32 bits with hardware timestamping:
95 * word 1: 32 bit address of Data Buffer
96 * word 2: control
97 * word 3: timestamp word 1
98 * word 4: timestamp word 2
99 *
100 * 4. dma address width 64 bits with hardware timestamping:
101 * word 1: 32 bit address of Data Buffer
102 * word 2: control
103 * word 3: upper 32 bit address of Data Buffer
104 * word 4: unused
105 * word 5: timestamp word 1
106 * word 6: timestamp word 2
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000107 */
108static unsigned int macb_dma_desc_get_size(struct macb *bp)
109{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100110#ifdef MACB_EXT_DESC
111 unsigned int desc_size;
112
113 switch (bp->hw_dma_cap) {
114 case HW_DMA_CAP_64B:
115 desc_size = sizeof(struct macb_dma_desc)
116 + sizeof(struct macb_dma_desc_64);
117 break;
118 case HW_DMA_CAP_PTP:
119 desc_size = sizeof(struct macb_dma_desc)
120 + sizeof(struct macb_dma_desc_ptp);
121 break;
122 case HW_DMA_CAP_64B_PTP:
123 desc_size = sizeof(struct macb_dma_desc)
124 + sizeof(struct macb_dma_desc_64)
125 + sizeof(struct macb_dma_desc_ptp);
126 break;
127 default:
128 desc_size = sizeof(struct macb_dma_desc);
129 }
130 return desc_size;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000131#endif
132 return sizeof(struct macb_dma_desc);
133}
134
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100135static unsigned int macb_adj_dma_desc_idx(struct macb *bp, unsigned int desc_idx)
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000136{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100137#ifdef MACB_EXT_DESC
138 switch (bp->hw_dma_cap) {
139 case HW_DMA_CAP_64B:
140 case HW_DMA_CAP_PTP:
141 desc_idx <<= 1;
142 break;
143 case HW_DMA_CAP_64B_PTP:
144 desc_idx *= 3;
145 break;
146 default:
147 break;
148 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000149#endif
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100150 return desc_idx;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000151}
152
153#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
154static struct macb_dma_desc_64 *macb_64b_desc(struct macb *bp, struct macb_dma_desc *desc)
155{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100156 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
157 return (struct macb_dma_desc_64 *)((void *)desc + sizeof(struct macb_dma_desc));
158 return NULL;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000159}
160#endif
161
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000162/* Ring buffer accessors */
Zach Brownb410d132016-10-19 09:56:57 -0500163static unsigned int macb_tx_ring_wrap(struct macb *bp, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000164{
Zach Brownb410d132016-10-19 09:56:57 -0500165 return index & (bp->tx_ring_size - 1);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000166}
167
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100168static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
169 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000170{
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000171 index = macb_tx_ring_wrap(queue->bp, index);
172 index = macb_adj_dma_desc_idx(queue->bp, index);
173 return &queue->tx_ring[index];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000174}
175
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100176static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
177 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000178{
Zach Brownb410d132016-10-19 09:56:57 -0500179 return &queue->tx_skb[macb_tx_ring_wrap(queue->bp, index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000180}
181
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100182static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000183{
184 dma_addr_t offset;
185
Zach Brownb410d132016-10-19 09:56:57 -0500186 offset = macb_tx_ring_wrap(queue->bp, index) *
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000187 macb_dma_desc_get_size(queue->bp);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000188
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100189 return queue->tx_ring_dma + offset;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000190}
191
Zach Brownb410d132016-10-19 09:56:57 -0500192static unsigned int macb_rx_ring_wrap(struct macb *bp, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000193{
Zach Brownb410d132016-10-19 09:56:57 -0500194 return index & (bp->rx_ring_size - 1);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000195}
196
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000197static struct macb_dma_desc *macb_rx_desc(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000198{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000199 index = macb_rx_ring_wrap(queue->bp, index);
200 index = macb_adj_dma_desc_idx(queue->bp, index);
201 return &queue->rx_ring[index];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000202}
203
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000204static void *macb_rx_buffer(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000205{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000206 return queue->rx_buffers + queue->bp->rx_buffer_size *
207 macb_rx_ring_wrap(queue->bp, index);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000208}
209
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300210/* I/O accessors */
211static u32 hw_readl_native(struct macb *bp, int offset)
212{
213 return __raw_readl(bp->regs + offset);
214}
215
216static void hw_writel_native(struct macb *bp, int offset, u32 value)
217{
218 __raw_writel(value, bp->regs + offset);
219}
220
221static u32 hw_readl(struct macb *bp, int offset)
222{
223 return readl_relaxed(bp->regs + offset);
224}
225
226static void hw_writel(struct macb *bp, int offset, u32 value)
227{
228 writel_relaxed(value, bp->regs + offset);
229}
230
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700231/* Find the CPU endianness by using the loopback bit of NCR register. When the
Moritz Fischer88023be2016-03-29 19:11:15 -0700232 * CPU is in big endian we need to program swapped mode for management
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300233 * descriptor access.
234 */
235static bool hw_is_native_io(void __iomem *addr)
236{
237 u32 value = MACB_BIT(LLB);
238
239 __raw_writel(value, addr + MACB_NCR);
240 value = __raw_readl(addr + MACB_NCR);
241
242 /* Write 0 back to disable everything */
243 __raw_writel(0, addr + MACB_NCR);
244
245 return value == MACB_BIT(LLB);
246}
247
248static bool hw_is_gem(void __iomem *addr, bool native_io)
249{
250 u32 id;
251
252 if (native_io)
253 id = __raw_readl(addr + MACB_MID);
254 else
255 id = readl_relaxed(addr + MACB_MID);
256
257 return MACB_BFEXT(IDNUM, id) >= 0x2;
258}
259
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100260static void macb_set_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100261{
262 u32 bottom;
263 u16 top;
264
265 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000266 macb_or_gem_writel(bp, SA1B, bottom);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100267 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000268 macb_or_gem_writel(bp, SA1T, top);
Joachim Eastwood3629a6c2012-11-11 13:56:28 +0000269
270 /* Clear unused address register sets */
271 macb_or_gem_writel(bp, SA2B, 0);
272 macb_or_gem_writel(bp, SA2T, 0);
273 macb_or_gem_writel(bp, SA3B, 0);
274 macb_or_gem_writel(bp, SA3T, 0);
275 macb_or_gem_writel(bp, SA4B, 0);
276 macb_or_gem_writel(bp, SA4T, 0);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100277}
278
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100279static void macb_get_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100280{
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000281 struct macb_platform_data *pdata;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100282 u32 bottom;
283 u16 top;
284 u8 addr[6];
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000285 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100286
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900287 pdata = dev_get_platdata(&bp->pdev->dev);
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000288
Moritz Fischeraa50b552016-03-29 19:11:13 -0700289 /* Check all 4 address register for valid address */
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000290 for (i = 0; i < 4; i++) {
291 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
292 top = macb_or_gem_readl(bp, SA1T + i * 8);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100293
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000294 if (pdata && pdata->rev_eth_addr) {
295 addr[5] = bottom & 0xff;
296 addr[4] = (bottom >> 8) & 0xff;
297 addr[3] = (bottom >> 16) & 0xff;
298 addr[2] = (bottom >> 24) & 0xff;
299 addr[1] = top & 0xff;
300 addr[0] = (top & 0xff00) >> 8;
301 } else {
302 addr[0] = bottom & 0xff;
303 addr[1] = (bottom >> 8) & 0xff;
304 addr[2] = (bottom >> 16) & 0xff;
305 addr[3] = (bottom >> 24) & 0xff;
306 addr[4] = top & 0xff;
307 addr[5] = (top >> 8) & 0xff;
308 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100309
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000310 if (is_valid_ether_addr(addr)) {
311 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
312 return;
313 }
Sven Schnelled1d57412008-06-09 16:33:57 -0700314 }
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000315
Andy Shevchenkoa35919e2015-07-24 21:24:01 +0300316 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000317 eth_hw_addr_random(bp->dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100318}
319
frederic RODO6c36a702007-07-12 19:07:24 +0200320static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100321{
frederic RODO6c36a702007-07-12 19:07:24 +0200322 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100323 int value;
324
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100325 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
326 | MACB_BF(RW, MACB_MAN_READ)
frederic RODO6c36a702007-07-12 19:07:24 +0200327 | MACB_BF(PHYA, mii_id)
328 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100329 | MACB_BF(CODE, MACB_MAN_CODE)));
330
frederic RODO6c36a702007-07-12 19:07:24 +0200331 /* wait for end of transfer */
332 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
333 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100334
335 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100336
337 return value;
338}
339
frederic RODO6c36a702007-07-12 19:07:24 +0200340static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
341 u16 value)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100342{
frederic RODO6c36a702007-07-12 19:07:24 +0200343 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100344
345 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
346 | MACB_BF(RW, MACB_MAN_WRITE)
frederic RODO6c36a702007-07-12 19:07:24 +0200347 | MACB_BF(PHYA, mii_id)
348 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100349 | MACB_BF(CODE, MACB_MAN_CODE)
frederic RODO6c36a702007-07-12 19:07:24 +0200350 | MACB_BF(DATA, value)));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100351
frederic RODO6c36a702007-07-12 19:07:24 +0200352 /* wait for end of transfer */
353 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
354 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100355
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100356 return 0;
357}
358
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800359/**
360 * macb_set_tx_clk() - Set a clock to a new frequency
361 * @clk Pointer to the clock to change
362 * @rate New frequency in Hz
363 * @dev Pointer to the struct net_device
364 */
365static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
366{
367 long ferr, rate, rate_rounded;
368
Cyrille Pitchen93b31f42015-03-07 07:23:31 +0100369 if (!clk)
370 return;
371
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800372 switch (speed) {
373 case SPEED_10:
374 rate = 2500000;
375 break;
376 case SPEED_100:
377 rate = 25000000;
378 break;
379 case SPEED_1000:
380 rate = 125000000;
381 break;
382 default:
Soren Brinkmann9319e472013-12-10 20:57:57 -0800383 return;
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800384 }
385
386 rate_rounded = clk_round_rate(clk, rate);
387 if (rate_rounded < 0)
388 return;
389
390 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
391 * is not satisfied.
392 */
393 ferr = abs(rate_rounded - rate);
394 ferr = DIV_ROUND_UP(ferr, rate / 100000);
395 if (ferr > 5)
396 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700397 rate);
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800398
399 if (clk_set_rate(clk, rate_rounded))
400 netdev_err(dev, "adjusting tx_clk failed.\n");
401}
402
frederic RODO6c36a702007-07-12 19:07:24 +0200403static void macb_handle_link_change(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100404{
frederic RODO6c36a702007-07-12 19:07:24 +0200405 struct macb *bp = netdev_priv(dev);
Philippe Reynes0a912812016-06-22 00:32:35 +0200406 struct phy_device *phydev = dev->phydev;
frederic RODO6c36a702007-07-12 19:07:24 +0200407 unsigned long flags;
frederic RODO6c36a702007-07-12 19:07:24 +0200408 int status_change = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100409
frederic RODO6c36a702007-07-12 19:07:24 +0200410 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100411
frederic RODO6c36a702007-07-12 19:07:24 +0200412 if (phydev->link) {
413 if ((bp->speed != phydev->speed) ||
414 (bp->duplex != phydev->duplex)) {
415 u32 reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100416
frederic RODO6c36a702007-07-12 19:07:24 +0200417 reg = macb_readl(bp, NCFGR);
418 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
Patrice Vilchez140b7552012-10-31 06:04:50 +0000419 if (macb_is_gem(bp))
420 reg &= ~GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200421
422 if (phydev->duplex)
423 reg |= MACB_BIT(FD);
Atsushi Nemoto179956f2008-02-21 22:50:54 +0900424 if (phydev->speed == SPEED_100)
frederic RODO6c36a702007-07-12 19:07:24 +0200425 reg |= MACB_BIT(SPD);
Nicolas Ferree1755872014-07-24 13:50:58 +0200426 if (phydev->speed == SPEED_1000 &&
427 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000428 reg |= GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200429
Patrice Vilchez140b7552012-10-31 06:04:50 +0000430 macb_or_gem_writel(bp, NCFGR, reg);
frederic RODO6c36a702007-07-12 19:07:24 +0200431
432 bp->speed = phydev->speed;
433 bp->duplex = phydev->duplex;
434 status_change = 1;
435 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100436 }
437
frederic RODO6c36a702007-07-12 19:07:24 +0200438 if (phydev->link != bp->link) {
Anton Vorontsovc8f15682008-07-22 15:41:24 -0700439 if (!phydev->link) {
frederic RODO6c36a702007-07-12 19:07:24 +0200440 bp->speed = 0;
441 bp->duplex = -1;
442 }
443 bp->link = phydev->link;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100444
frederic RODO6c36a702007-07-12 19:07:24 +0200445 status_change = 1;
446 }
447
448 spin_unlock_irqrestore(&bp->lock, flags);
449
450 if (status_change) {
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000451 if (phydev->link) {
Jaeden Amero2c29b232015-03-12 18:07:54 -0500452 /* Update the TX clock rate if and only if the link is
453 * up and there has been a link change.
454 */
455 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
456
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000457 netif_carrier_on(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000458 netdev_info(dev, "link up (%d/%s)\n",
459 phydev->speed,
460 phydev->duplex == DUPLEX_FULL ?
461 "Full" : "Half");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000462 } else {
463 netif_carrier_off(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000464 netdev_info(dev, "link down\n");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000465 }
frederic RODO6c36a702007-07-12 19:07:24 +0200466 }
467}
468
469/* based on au1000_eth. c*/
470static int macb_mii_probe(struct net_device *dev)
471{
472 struct macb *bp = netdev_priv(dev);
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000473 struct macb_platform_data *pdata;
Jiri Pirko7455a762010-02-08 05:12:08 +0000474 struct phy_device *phydev;
Brad Mouring739de9a2018-03-13 16:32:13 -0500475 struct device_node *np;
476 int phy_irq, ret, i;
477
478 pdata = dev_get_platdata(&bp->pdev->dev);
479 np = bp->pdev->dev.of_node;
480 ret = 0;
481
482 if (np) {
483 if (of_phy_is_fixed_link(np)) {
484 if (of_phy_register_fixed_link(np) < 0) {
485 dev_err(&bp->pdev->dev,
486 "broken fixed-link specification\n");
487 return -ENODEV;
488 }
489 bp->phy_node = of_node_get(np);
490 } else {
Brad Mouring2105a5d2018-03-13 16:32:15 -0500491 bp->phy_node = of_parse_phandle(np, "phy-handle", 0);
492 /* fallback to standard phy registration if no
493 * phy-handle was found nor any phy found during
494 * dt phy registration
Brad Mouring739de9a2018-03-13 16:32:13 -0500495 */
Brad Mouring2105a5d2018-03-13 16:32:15 -0500496 if (!bp->phy_node && !phy_find_first(bp->mii_bus)) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500497 for (i = 0; i < PHY_MAX_ADDR; i++) {
498 struct phy_device *phydev;
499
500 phydev = mdiobus_scan(bp->mii_bus, i);
501 if (IS_ERR(phydev) &&
502 PTR_ERR(phydev) != -ENODEV) {
503 ret = PTR_ERR(phydev);
504 break;
505 }
506 }
507
508 if (ret)
509 return -ENODEV;
510 }
511 }
512 }
frederic RODO6c36a702007-07-12 19:07:24 +0200513
Michael Grzeschikdacdbb42017-06-23 16:54:10 +0200514 if (bp->phy_node) {
515 phydev = of_phy_connect(dev, bp->phy_node,
516 &macb_handle_link_change, 0,
517 bp->phy_interface);
518 if (!phydev)
519 return -ENODEV;
520 } else {
521 phydev = phy_find_first(bp->mii_bus);
522 if (!phydev) {
523 netdev_err(dev, "no PHY found\n");
524 return -ENXIO;
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000525 }
frederic RODO6c36a702007-07-12 19:07:24 +0200526
Michael Grzeschikdacdbb42017-06-23 16:54:10 +0200527 if (pdata) {
528 if (gpio_is_valid(pdata->phy_irq_pin)) {
529 ret = devm_gpio_request(&bp->pdev->dev,
530 pdata->phy_irq_pin, "phy int");
531 if (!ret) {
532 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
533 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
534 }
535 } else {
536 phydev->irq = PHY_POLL;
537 }
538 }
539
540 /* attach the mac to the phy */
541 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
542 bp->phy_interface);
543 if (ret) {
544 netdev_err(dev, "Could not attach to PHY\n");
545 return ret;
546 }
frederic RODO6c36a702007-07-12 19:07:24 +0200547 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100548
frederic RODO6c36a702007-07-12 19:07:24 +0200549 /* mask with MAC supported features */
Nicolas Ferree1755872014-07-24 13:50:58 +0200550 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000551 phydev->supported &= PHY_GBIT_FEATURES;
552 else
553 phydev->supported &= PHY_BASIC_FEATURES;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100554
Nathan Sullivan222ca8e2015-05-22 09:22:10 -0500555 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
556 phydev->supported &= ~SUPPORTED_1000baseT_Half;
557
frederic RODO6c36a702007-07-12 19:07:24 +0200558 phydev->advertising = phydev->supported;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100559
frederic RODO6c36a702007-07-12 19:07:24 +0200560 bp->link = 0;
561 bp->speed = 0;
562 bp->duplex = -1;
frederic RODO6c36a702007-07-12 19:07:24 +0200563
564 return 0;
565}
566
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100567static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200568{
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000569 struct macb_platform_data *pdata;
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200570 struct device_node *np;
Brad Mouringcb732e92018-03-13 16:32:14 -0500571 int err;
frederic RODO6c36a702007-07-12 19:07:24 +0200572
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200573 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200574 macb_writel(bp, NCR, MACB_BIT(MPE));
575
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700576 bp->mii_bus = mdiobus_alloc();
Moritz Fischeraa50b552016-03-29 19:11:13 -0700577 if (!bp->mii_bus) {
frederic RODO6c36a702007-07-12 19:07:24 +0200578 err = -ENOMEM;
579 goto err_out;
580 }
581
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700582 bp->mii_bus->name = "MACB_mii_bus";
583 bp->mii_bus->read = &macb_mdio_read;
584 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000585 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700586 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700587 bp->mii_bus->priv = bp;
Florian Fainellicf669662016-05-02 18:38:45 -0700588 bp->mii_bus->parent = &bp->pdev->dev;
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900589 pdata = dev_get_platdata(&bp->pdev->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700590
Jamie Iles91523942011-02-28 04:05:25 +0000591 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200592
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200593 np = bp->pdev->dev.of_node;
Brad Mouring739de9a2018-03-13 16:32:13 -0500594
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200595 if (np) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500596 err = of_mdiobus_register(bp->mii_bus, np);
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200597 } else {
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200598 if (pdata)
599 bp->mii_bus->phy_mask = pdata->phy_mask;
600
601 err = mdiobus_register(bp->mii_bus);
602 }
603
604 if (err)
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100605 goto err_out_free_mdiobus;
frederic RODO6c36a702007-07-12 19:07:24 +0200606
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200607 err = macb_mii_probe(bp->dev);
608 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200609 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200610
611 return 0;
612
613err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700614 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik9ce98142017-11-08 09:56:34 +0100615 if (np && of_phy_is_fixed_link(np))
616 of_phy_deregister_fixed_link(np);
Brad Mouring739de9a2018-03-13 16:32:13 -0500617err_out_free_mdiobus:
618 of_node_put(bp->phy_node);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700619 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200620err_out:
621 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100622}
623
624static void macb_update_stats(struct macb *bp)
625{
Jamie Ilesa494ed82011-03-09 16:26:35 +0000626 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
627 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300628 int offset = MACB_PFR;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100629
630 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
631
Moritz Fischer96ec6312016-03-29 19:11:11 -0700632 for (; p < end; p++, offset += 4)
David S. Miller7a6e0702015-07-27 14:24:48 -0700633 *p += bp->macb_reg_readl(bp, offset);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100634}
635
Nicolas Ferree86cd532012-10-31 06:04:57 +0000636static int macb_halt_tx(struct macb *bp)
637{
638 unsigned long halt_time, timeout;
639 u32 status;
640
641 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
642
643 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
644 do {
645 halt_time = jiffies;
646 status = macb_readl(bp, TSR);
647 if (!(status & MACB_BIT(TGO)))
648 return 0;
649
650 usleep_range(10, 250);
651 } while (time_before(halt_time, timeout));
652
653 return -ETIMEDOUT;
654}
655
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200656static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
657{
658 if (tx_skb->mapping) {
659 if (tx_skb->mapped_as_page)
660 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
661 tx_skb->size, DMA_TO_DEVICE);
662 else
663 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
664 tx_skb->size, DMA_TO_DEVICE);
665 tx_skb->mapping = 0;
666 }
667
668 if (tx_skb->skb) {
669 dev_kfree_skb_any(tx_skb->skb);
670 tx_skb->skb = NULL;
671 }
672}
673
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000674static void macb_set_addr(struct macb *bp, struct macb_dma_desc *desc, dma_addr_t addr)
Harini Katakamfff80192016-08-09 13:15:53 +0530675{
Harini Katakamfff80192016-08-09 13:15:53 +0530676#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000677 struct macb_dma_desc_64 *desc_64;
678
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100679 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000680 desc_64 = macb_64b_desc(bp, desc);
681 desc_64->addrh = upper_32_bits(addr);
682 }
Harini Katakamfff80192016-08-09 13:15:53 +0530683#endif
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000684 desc->addr = lower_32_bits(addr);
685}
686
687static dma_addr_t macb_get_addr(struct macb *bp, struct macb_dma_desc *desc)
688{
689 dma_addr_t addr = 0;
690#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
691 struct macb_dma_desc_64 *desc_64;
692
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100693 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000694 desc_64 = macb_64b_desc(bp, desc);
695 addr = ((u64)(desc_64->addrh) << 32);
696 }
697#endif
698 addr |= MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
699 return addr;
Harini Katakamfff80192016-08-09 13:15:53 +0530700}
701
Nicolas Ferree86cd532012-10-31 06:04:57 +0000702static void macb_tx_error_task(struct work_struct *work)
703{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100704 struct macb_queue *queue = container_of(work, struct macb_queue,
705 tx_error_task);
706 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000707 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100708 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000709 struct sk_buff *skb;
710 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100711 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000712
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100713 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
714 (unsigned int)(queue - bp->queues),
715 queue->tx_tail, queue->tx_head);
716
717 /* Prevent the queue IRQ handlers from running: each of them may call
718 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
719 * As explained below, we have to halt the transmission before updating
720 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
721 * network engine about the macb/gem being halted.
722 */
723 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000724
725 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100726 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000727
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700728 /* Stop transmission now
Nicolas Ferree86cd532012-10-31 06:04:57 +0000729 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100730 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000731 */
732 if (macb_halt_tx(bp))
733 /* Just complain for now, reinitializing TX path can be good */
734 netdev_err(bp->dev, "BUG: halt tx timed out\n");
735
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700736 /* Treat frames in TX queue including the ones that caused the error.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000737 * Free transmit buffers in upper layer.
738 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100739 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
740 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000741
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100742 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000743 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100744 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000745 skb = tx_skb->skb;
746
747 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200748 /* skb is set for the last buffer of the frame */
749 while (!skb) {
750 macb_tx_unmap(bp, tx_skb);
751 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100752 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200753 skb = tx_skb->skb;
754 }
755
756 /* ctrl still refers to the first buffer descriptor
757 * since it's the only one written back by the hardware
758 */
759 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
760 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
Zach Brownb410d132016-10-19 09:56:57 -0500761 macb_tx_ring_wrap(bp, tail),
762 skb->data);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200763 bp->dev->stats.tx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000764 queue->stats.tx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200765 bp->dev->stats.tx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000766 queue->stats.tx_bytes += skb->len;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200767 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000768 } else {
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700769 /* "Buffers exhausted mid-frame" errors may only happen
770 * if the driver is buggy, so complain loudly about
771 * those. Statistics are updated by hardware.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000772 */
773 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
774 netdev_err(bp->dev,
775 "BUG: TX buffers exhausted mid-frame\n");
776
777 desc->ctrl = ctrl | MACB_BIT(TX_USED);
778 }
779
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200780 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000781 }
782
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100783 /* Set end of TX queue */
784 desc = macb_tx_desc(queue, 0);
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000785 macb_set_addr(bp, desc, 0);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100786 desc->ctrl = MACB_BIT(TX_USED);
787
Nicolas Ferree86cd532012-10-31 06:04:57 +0000788 /* Make descriptor updates visible to hardware */
789 wmb();
790
791 /* Reinitialize the TX desc queue */
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000792 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +0530793#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100794 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000795 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +0530796#endif
Nicolas Ferree86cd532012-10-31 06:04:57 +0000797 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100798 queue->tx_head = 0;
799 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000800
801 /* Housework before enabling TX IRQ */
802 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100803 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
804
805 /* Now we are ready to start transmission again */
806 netif_tx_start_all_queues(bp->dev);
807 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
808
809 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000810}
811
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100812static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100813{
814 unsigned int tail;
815 unsigned int head;
816 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100817 struct macb *bp = queue->bp;
818 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100819
820 status = macb_readl(bp, TSR);
821 macb_writel(bp, TSR, status);
822
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000823 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100824 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000825
Nicolas Ferree86cd532012-10-31 06:04:57 +0000826 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700827 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100828
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100829 head = queue->tx_head;
830 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000831 struct macb_tx_skb *tx_skb;
832 struct sk_buff *skb;
833 struct macb_dma_desc *desc;
834 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100835
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100836 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100837
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000838 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100839 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000840
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000841 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100842
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200843 /* TX_USED bit is only set by hardware on the very first buffer
844 * descriptor of the transmitted frame.
845 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000846 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100847 break;
848
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200849 /* Process all buffers of the current transmitted frame */
850 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100851 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200852 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000853
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200854 /* First, update TX stats if needed */
855 if (skb) {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +0100856 if (gem_ptp_do_txstamp(queue, skb, desc) == 0) {
857 /* skb now belongs to timestamp buffer
858 * and will be removed later
859 */
860 tx_skb->skb = NULL;
861 }
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200862 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
Zach Brownb410d132016-10-19 09:56:57 -0500863 macb_tx_ring_wrap(bp, tail),
864 skb->data);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200865 bp->dev->stats.tx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000866 queue->stats.tx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200867 bp->dev->stats.tx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000868 queue->stats.tx_bytes += skb->len;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200869 }
870
871 /* Now we can safely release resources */
872 macb_tx_unmap(bp, tx_skb);
873
874 /* skb is set only for the last buffer of the frame.
875 * WARNING: at this point skb has been freed by
876 * macb_tx_unmap().
877 */
878 if (skb)
879 break;
880 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100881 }
882
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100883 queue->tx_tail = tail;
884 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
885 CIRC_CNT(queue->tx_head, queue->tx_tail,
Zach Brownb410d132016-10-19 09:56:57 -0500886 bp->tx_ring_size) <= MACB_TX_WAKEUP_THRESH(bp))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100887 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100888}
889
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000890static void gem_rx_refill(struct macb_queue *queue)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000891{
892 unsigned int entry;
893 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000894 dma_addr_t paddr;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000895 struct macb *bp = queue->bp;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000896 struct macb_dma_desc *desc;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000897
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000898 while (CIRC_SPACE(queue->rx_prepared_head, queue->rx_tail,
899 bp->rx_ring_size) > 0) {
900 entry = macb_rx_ring_wrap(bp, queue->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000901
902 /* Make hw descriptor updates visible to CPU */
903 rmb();
904
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000905 queue->rx_prepared_head++;
906 desc = macb_rx_desc(queue, entry);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000907
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000908 if (!queue->rx_skbuff[entry]) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000909 /* allocate sk_buff for this free entry in ring */
910 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
Moritz Fischeraa50b552016-03-29 19:11:13 -0700911 if (unlikely(!skb)) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000912 netdev_err(bp->dev,
913 "Unable to allocate sk_buff\n");
914 break;
915 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000916
917 /* now fill corresponding descriptor entry */
918 paddr = dma_map_single(&bp->pdev->dev, skb->data,
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700919 bp->rx_buffer_size,
920 DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800921 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
922 dev_kfree_skb(skb);
923 break;
924 }
925
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000926 queue->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000927
Zach Brownb410d132016-10-19 09:56:57 -0500928 if (entry == bp->rx_ring_size - 1)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000929 paddr |= MACB_BIT(RX_WRAP);
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000930 macb_set_addr(bp, desc, paddr);
931 desc->ctrl = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000932
933 /* properly align Ethernet header */
934 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530935 } else {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000936 desc->addr &= ~MACB_BIT(RX_USED);
937 desc->ctrl = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000938 }
939 }
940
941 /* Make descriptor updates visible to hardware */
942 wmb();
943
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000944 netdev_vdbg(bp->dev, "rx ring: queue: %p, prepared head %d, tail %d\n",
945 queue, queue->rx_prepared_head, queue->rx_tail);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000946}
947
948/* Mark DMA descriptors from begin up to and not including end as unused */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000949static void discard_partial_frame(struct macb_queue *queue, unsigned int begin,
Nicolas Ferre4df95132013-06-04 21:57:12 +0000950 unsigned int end)
951{
952 unsigned int frag;
953
954 for (frag = begin; frag != end; frag++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000955 struct macb_dma_desc *desc = macb_rx_desc(queue, frag);
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700956
Nicolas Ferre4df95132013-06-04 21:57:12 +0000957 desc->addr &= ~MACB_BIT(RX_USED);
958 }
959
960 /* Make descriptor updates visible to hardware */
961 wmb();
962
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700963 /* When this happens, the hardware stats registers for
Nicolas Ferre4df95132013-06-04 21:57:12 +0000964 * whatever caused this is updated, so we don't have to record
965 * anything.
966 */
967}
968
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000969static int gem_rx(struct macb_queue *queue, int budget)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000970{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000971 struct macb *bp = queue->bp;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000972 unsigned int len;
973 unsigned int entry;
974 struct sk_buff *skb;
975 struct macb_dma_desc *desc;
976 int count = 0;
977
978 while (count < budget) {
Harini Katakamfff80192016-08-09 13:15:53 +0530979 u32 ctrl;
980 dma_addr_t addr;
981 bool rxused;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000982
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000983 entry = macb_rx_ring_wrap(bp, queue->rx_tail);
984 desc = macb_rx_desc(queue, entry);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000985
986 /* Make hw descriptor updates visible to CPU */
987 rmb();
988
Harini Katakamfff80192016-08-09 13:15:53 +0530989 rxused = (desc->addr & MACB_BIT(RX_USED)) ? true : false;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000990 addr = macb_get_addr(bp, desc);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000991 ctrl = desc->ctrl;
992
Harini Katakamfff80192016-08-09 13:15:53 +0530993 if (!rxused)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000994 break;
995
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000996 queue->rx_tail++;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000997 count++;
998
999 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
1000 netdev_err(bp->dev,
1001 "not whole frame pointed by descriptor\n");
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001002 bp->dev->stats.rx_dropped++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001003 queue->stats.rx_dropped++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001004 break;
1005 }
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001006 skb = queue->rx_skbuff[entry];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001007 if (unlikely(!skb)) {
1008 netdev_err(bp->dev,
1009 "inconsistent Rx descriptor chain\n");
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001010 bp->dev->stats.rx_dropped++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001011 queue->stats.rx_dropped++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001012 break;
1013 }
1014 /* now everything is ready for receiving packet */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001015 queue->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301016 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001017
1018 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
1019
1020 skb_put(skb, len);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001021 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -08001022 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001023
1024 skb->protocol = eth_type_trans(skb, bp->dev);
1025 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001026 if (bp->dev->features & NETIF_F_RXCSUM &&
1027 !(bp->dev->flags & IFF_PROMISC) &&
1028 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
1029 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001030
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001031 bp->dev->stats.rx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001032 queue->stats.rx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001033 bp->dev->stats.rx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001034 queue->stats.rx_bytes += skb->len;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001035
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01001036 gem_ptp_do_rxstamp(bp, skb, desc);
1037
Nicolas Ferre4df95132013-06-04 21:57:12 +00001038#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1039 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1040 skb->len, skb->csum);
1041 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +01001042 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001043 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
1044 skb->data, 32, true);
1045#endif
1046
1047 netif_receive_skb(skb);
1048 }
1049
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001050 gem_rx_refill(queue);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001051
1052 return count;
1053}
1054
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001055static int macb_rx_frame(struct macb_queue *queue, unsigned int first_frag,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001056 unsigned int last_frag)
1057{
1058 unsigned int len;
1059 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001060 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001061 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001062 struct macb_dma_desc *desc;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001063 struct macb *bp = queue->bp;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001064
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001065 desc = macb_rx_desc(queue, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301066 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001067
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001068 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Zach Brownb410d132016-10-19 09:56:57 -05001069 macb_rx_ring_wrap(bp, first_frag),
1070 macb_rx_ring_wrap(bp, last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001071
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001072 /* The ethernet header starts NET_IP_ALIGN bytes into the
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001073 * first buffer. Since the header is 14 bytes, this makes the
1074 * payload word-aligned.
1075 *
1076 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1077 * the two padding bytes into the skb so that we avoid hitting
1078 * the slowpath in memcpy(), and pull them off afterwards.
1079 */
1080 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001081 if (!skb) {
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001082 bp->dev->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001083 for (frag = first_frag; ; frag++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001084 desc = macb_rx_desc(queue, frag);
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001085 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001086 if (frag == last_frag)
1087 break;
1088 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001089
1090 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001091 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001092
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001093 return 1;
1094 }
1095
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001096 offset = 0;
1097 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001098 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001099 skb_put(skb, len);
1100
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001101 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +00001102 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001103
1104 if (offset + frag_len > len) {
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001105 if (unlikely(frag != last_frag)) {
1106 dev_kfree_skb_any(skb);
1107 return -1;
1108 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001109 frag_len = len - offset;
1110 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001111 skb_copy_to_linear_data_offset(skb, offset,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001112 macb_rx_buffer(queue, frag),
Moritz Fischeraa50b552016-03-29 19:11:13 -07001113 frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001114 offset += bp->rx_buffer_size;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001115 desc = macb_rx_desc(queue, frag);
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001116 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001117
1118 if (frag == last_frag)
1119 break;
1120 }
1121
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001122 /* Make descriptor updates visible to hardware */
1123 wmb();
1124
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001125 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001126 skb->protocol = eth_type_trans(skb, bp->dev);
1127
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001128 bp->dev->stats.rx_packets++;
1129 bp->dev->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001130 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001131 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001132 netif_receive_skb(skb);
1133
1134 return 0;
1135}
1136
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001137static inline void macb_init_rx_ring(struct macb_queue *queue)
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001138{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001139 struct macb *bp = queue->bp;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001140 dma_addr_t addr;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001141 struct macb_dma_desc *desc = NULL;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001142 int i;
1143
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001144 addr = queue->rx_buffers_dma;
Zach Brownb410d132016-10-19 09:56:57 -05001145 for (i = 0; i < bp->rx_ring_size; i++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001146 desc = macb_rx_desc(queue, i);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001147 macb_set_addr(bp, desc, addr);
1148 desc->ctrl = 0;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001149 addr += bp->rx_buffer_size;
1150 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001151 desc->addr |= MACB_BIT(RX_WRAP);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001152 queue->rx_tail = 0;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001153}
1154
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001155static int macb_rx(struct macb_queue *queue, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001156{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001157 struct macb *bp = queue->bp;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001158 bool reset_rx_queue = false;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001159 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001160 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001161 int first_frag = -1;
1162
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001163 for (tail = queue->rx_tail; budget > 0; tail++) {
1164 struct macb_dma_desc *desc = macb_rx_desc(queue, tail);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001165 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001166
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001167 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001168 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001169
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001170 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001171
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001172 if (!(desc->addr & MACB_BIT(RX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001173 break;
1174
1175 if (ctrl & MACB_BIT(RX_SOF)) {
1176 if (first_frag != -1)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001177 discard_partial_frame(queue, first_frag, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001178 first_frag = tail;
1179 }
1180
1181 if (ctrl & MACB_BIT(RX_EOF)) {
1182 int dropped;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001183
1184 if (unlikely(first_frag == -1)) {
1185 reset_rx_queue = true;
1186 continue;
1187 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001188
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001189 dropped = macb_rx_frame(queue, first_frag, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001190 first_frag = -1;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001191 if (unlikely(dropped < 0)) {
1192 reset_rx_queue = true;
1193 continue;
1194 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001195 if (!dropped) {
1196 received++;
1197 budget--;
1198 }
1199 }
1200 }
1201
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001202 if (unlikely(reset_rx_queue)) {
1203 unsigned long flags;
1204 u32 ctrl;
1205
1206 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1207
1208 spin_lock_irqsave(&bp->lock, flags);
1209
1210 ctrl = macb_readl(bp, NCR);
1211 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1212
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001213 macb_init_rx_ring(queue);
1214 queue_writel(queue, RBQP, queue->rx_ring_dma);
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001215
1216 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1217
1218 spin_unlock_irqrestore(&bp->lock, flags);
1219 return received;
1220 }
1221
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001222 if (first_frag != -1)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001223 queue->rx_tail = first_frag;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001224 else
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001225 queue->rx_tail = tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001226
1227 return received;
1228}
1229
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001230static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001231{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001232 struct macb_queue *queue = container_of(napi, struct macb_queue, napi);
1233 struct macb *bp = queue->bp;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001234 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001235 u32 status;
1236
1237 status = macb_readl(bp, RSR);
1238 macb_writel(bp, RSR, status);
1239
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001240 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001241 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001242
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001243 work_done = bp->macbgem_ops.mog_rx(queue, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +00001244 if (work_done < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001245 napi_complete_done(napi, work_done);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001246
Nicolas Ferre8770e912013-02-12 11:08:48 +01001247 /* Packets received while interrupts were disabled */
1248 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -07001249 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001250 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001251 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +01001252 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001253 } else {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001254 queue_writel(queue, IER, MACB_RX_INT_FLAGS);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001255 }
Joshua Hokeb3363692010-10-25 01:44:22 +00001256 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001257
1258 /* TODO: Handle errors */
1259
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001260 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001261}
1262
Harini Katakam032dc412018-01-27 12:09:01 +05301263static void macb_hresp_error_task(unsigned long data)
1264{
1265 struct macb *bp = (struct macb *)data;
1266 struct net_device *dev = bp->dev;
1267 struct macb_queue *queue = bp->queues;
1268 unsigned int q;
1269 u32 ctrl;
1270
1271 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1272 queue_writel(queue, IDR, MACB_RX_INT_FLAGS |
1273 MACB_TX_INT_FLAGS |
1274 MACB_BIT(HRESP));
1275 }
1276 ctrl = macb_readl(bp, NCR);
1277 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
1278 macb_writel(bp, NCR, ctrl);
1279
1280 netif_tx_stop_all_queues(dev);
1281 netif_carrier_off(dev);
1282
1283 bp->macbgem_ops.mog_init_rings(bp);
1284
1285 /* Initialize TX and RX buffers */
1286 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1287 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
1288#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1289 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1290 queue_writel(queue, RBQPH,
1291 upper_32_bits(queue->rx_ring_dma));
1292#endif
1293 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
1294#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1295 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1296 queue_writel(queue, TBQPH,
1297 upper_32_bits(queue->tx_ring_dma));
1298#endif
1299
1300 /* Enable interrupts */
1301 queue_writel(queue, IER,
1302 MACB_RX_INT_FLAGS |
1303 MACB_TX_INT_FLAGS |
1304 MACB_BIT(HRESP));
1305 }
1306
1307 ctrl |= MACB_BIT(RE) | MACB_BIT(TE);
1308 macb_writel(bp, NCR, ctrl);
1309
1310 netif_carrier_on(dev);
1311 netif_tx_start_all_queues(dev);
1312}
1313
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001314static irqreturn_t macb_interrupt(int irq, void *dev_id)
1315{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001316 struct macb_queue *queue = dev_id;
1317 struct macb *bp = queue->bp;
1318 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001319 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001320
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001321 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001322
1323 if (unlikely(!status))
1324 return IRQ_NONE;
1325
1326 spin_lock(&bp->lock);
1327
1328 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001329 /* close possible race with dev_close */
1330 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001331 queue_writel(queue, IDR, -1);
Nathan Sullivan24468372016-01-14 13:27:27 -06001332 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1333 queue_writel(queue, ISR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001334 break;
1335 }
1336
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001337 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1338 (unsigned int)(queue - bp->queues),
1339 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001340
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001341 if (status & MACB_RX_INT_FLAGS) {
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001342 /* There's no point taking any more interrupts
Joshua Hokeb3363692010-10-25 01:44:22 +00001343 * until we have processed the buffers. The
1344 * scheduling call may fail if the poll routine
1345 * is already scheduled, so disable interrupts
1346 * now.
1347 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001348 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001349 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001350 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001351
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001352 if (napi_schedule_prep(&queue->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001353 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001354 __napi_schedule(&queue->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001355 }
1356 }
1357
Nicolas Ferree86cd532012-10-31 06:04:57 +00001358 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001359 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1360 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001361
1362 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001363 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001364
Nicolas Ferree86cd532012-10-31 06:04:57 +00001365 break;
1366 }
1367
1368 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001369 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001370
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001371 /* Link change detection isn't possible with RMII, so we'll
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001372 * add that if/when we get our hands on a full-blown MII PHY.
1373 */
1374
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001375 /* There is a hardware issue under heavy load where DMA can
1376 * stop, this causes endless "used buffer descriptor read"
1377 * interrupts but it can be cleared by re-enabling RX. See
1378 * the at91 manual, section 41.3.1 or the Zynq manual
1379 * section 16.7.4 for details.
1380 */
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001381 if (status & MACB_BIT(RXUBR)) {
1382 ctrl = macb_readl(bp, NCR);
1383 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
Zumeng Chenffac0e92016-11-28 21:55:00 +08001384 wmb();
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001385 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1386
1387 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchenba504992016-03-24 15:40:04 +01001388 queue_writel(queue, ISR, MACB_BIT(RXUBR));
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001389 }
1390
Alexander Steinb19f7f72011-04-13 05:03:24 +00001391 if (status & MACB_BIT(ISR_ROVR)) {
1392 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001393 if (macb_is_gem(bp))
1394 bp->hw_stats.gem.rx_overruns++;
1395 else
1396 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001397
1398 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001399 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001400 }
1401
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001402 if (status & MACB_BIT(HRESP)) {
Harini Katakam032dc412018-01-27 12:09:01 +05301403 tasklet_schedule(&bp->hresp_err_tasklet);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001404 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001405
1406 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001407 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001408 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001409 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001410 }
1411
1412 spin_unlock(&bp->lock);
1413
1414 return IRQ_HANDLED;
1415}
1416
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001417#ifdef CONFIG_NET_POLL_CONTROLLER
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001418/* Polling receive - used by netconsole and other diagnostic tools
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001419 * to allow network i/o with interrupts disabled.
1420 */
1421static void macb_poll_controller(struct net_device *dev)
1422{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001423 struct macb *bp = netdev_priv(dev);
1424 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001425 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001426 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001427
1428 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001429 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1430 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001431 local_irq_restore(flags);
1432}
1433#endif
1434
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001435static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001436 struct macb_queue *queue,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001437 struct sk_buff *skb,
1438 unsigned int hdrlen)
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001439{
1440 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001441 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001442 struct macb_tx_skb *tx_skb = NULL;
1443 struct macb_dma_desc *desc;
1444 unsigned int offset, size, count = 0;
1445 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001446 unsigned int eof = 1, mss_mfs = 0;
1447 u32 ctrl, lso_ctrl = 0, seq_ctrl = 0;
1448
1449 /* LSO */
1450 if (skb_shinfo(skb)->gso_size != 0) {
1451 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
1452 /* UDP - UFO */
1453 lso_ctrl = MACB_LSO_UFO_ENABLE;
1454 else
1455 /* TCP - TSO */
1456 lso_ctrl = MACB_LSO_TSO_ENABLE;
1457 }
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001458
1459 /* First, map non-paged data */
1460 len = skb_headlen(skb);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001461
1462 /* first buffer length */
1463 size = hdrlen;
1464
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001465 offset = 0;
1466 while (len) {
Zach Brownb410d132016-10-19 09:56:57 -05001467 entry = macb_tx_ring_wrap(bp, tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001468 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001469
1470 mapping = dma_map_single(&bp->pdev->dev,
1471 skb->data + offset,
1472 size, DMA_TO_DEVICE);
1473 if (dma_mapping_error(&bp->pdev->dev, mapping))
1474 goto dma_error;
1475
1476 /* Save info to properly release resources */
1477 tx_skb->skb = NULL;
1478 tx_skb->mapping = mapping;
1479 tx_skb->size = size;
1480 tx_skb->mapped_as_page = false;
1481
1482 len -= size;
1483 offset += size;
1484 count++;
1485 tx_head++;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001486
1487 size = min(len, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001488 }
1489
1490 /* Then, map paged data from fragments */
1491 for (f = 0; f < nr_frags; f++) {
1492 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1493
1494 len = skb_frag_size(frag);
1495 offset = 0;
1496 while (len) {
1497 size = min(len, bp->max_tx_length);
Zach Brownb410d132016-10-19 09:56:57 -05001498 entry = macb_tx_ring_wrap(bp, tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001499 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001500
1501 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1502 offset, size, DMA_TO_DEVICE);
1503 if (dma_mapping_error(&bp->pdev->dev, mapping))
1504 goto dma_error;
1505
1506 /* Save info to properly release resources */
1507 tx_skb->skb = NULL;
1508 tx_skb->mapping = mapping;
1509 tx_skb->size = size;
1510 tx_skb->mapped_as_page = true;
1511
1512 len -= size;
1513 offset += size;
1514 count++;
1515 tx_head++;
1516 }
1517 }
1518
1519 /* Should never happen */
Moritz Fischeraa50b552016-03-29 19:11:13 -07001520 if (unlikely(!tx_skb)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001521 netdev_err(bp->dev, "BUG! empty skb!\n");
1522 return 0;
1523 }
1524
1525 /* This is the last buffer of the frame: save socket buffer */
1526 tx_skb->skb = skb;
1527
1528 /* Update TX ring: update buffer descriptors in reverse order
1529 * to avoid race condition
1530 */
1531
1532 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1533 * to set the end of TX queue
1534 */
1535 i = tx_head;
Zach Brownb410d132016-10-19 09:56:57 -05001536 entry = macb_tx_ring_wrap(bp, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001537 ctrl = MACB_BIT(TX_USED);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001538 desc = macb_tx_desc(queue, entry);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001539 desc->ctrl = ctrl;
1540
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001541 if (lso_ctrl) {
1542 if (lso_ctrl == MACB_LSO_UFO_ENABLE)
1543 /* include header and FCS in value given to h/w */
1544 mss_mfs = skb_shinfo(skb)->gso_size +
1545 skb_transport_offset(skb) +
1546 ETH_FCS_LEN;
1547 else /* TSO */ {
1548 mss_mfs = skb_shinfo(skb)->gso_size;
1549 /* TCP Sequence Number Source Select
1550 * can be set only for TSO
1551 */
1552 seq_ctrl = 0;
1553 }
1554 }
1555
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001556 do {
1557 i--;
Zach Brownb410d132016-10-19 09:56:57 -05001558 entry = macb_tx_ring_wrap(bp, i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001559 tx_skb = &queue->tx_skb[entry];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001560 desc = macb_tx_desc(queue, entry);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001561
1562 ctrl = (u32)tx_skb->size;
1563 if (eof) {
1564 ctrl |= MACB_BIT(TX_LAST);
1565 eof = 0;
1566 }
Zach Brownb410d132016-10-19 09:56:57 -05001567 if (unlikely(entry == (bp->tx_ring_size - 1)))
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001568 ctrl |= MACB_BIT(TX_WRAP);
1569
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001570 /* First descriptor is header descriptor */
1571 if (i == queue->tx_head) {
1572 ctrl |= MACB_BF(TX_LSO, lso_ctrl);
1573 ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl);
1574 } else
1575 /* Only set MSS/MFS on payload descriptors
1576 * (second or later descriptor)
1577 */
1578 ctrl |= MACB_BF(MSS_MFS, mss_mfs);
1579
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001580 /* Set TX buffer descriptor */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001581 macb_set_addr(bp, desc, tx_skb->mapping);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001582 /* desc->addr must be visible to hardware before clearing
1583 * 'TX_USED' bit in desc->ctrl.
1584 */
1585 wmb();
1586 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001587 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001588
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001589 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001590
1591 return count;
1592
1593dma_error:
1594 netdev_err(bp->dev, "TX DMA map failed\n");
1595
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001596 for (i = queue->tx_head; i != tx_head; i++) {
1597 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001598
1599 macb_tx_unmap(bp, tx_skb);
1600 }
1601
1602 return 0;
1603}
1604
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001605static netdev_features_t macb_features_check(struct sk_buff *skb,
1606 struct net_device *dev,
1607 netdev_features_t features)
1608{
1609 unsigned int nr_frags, f;
1610 unsigned int hdrlen;
1611
1612 /* Validate LSO compatibility */
1613
1614 /* there is only one buffer */
1615 if (!skb_is_nonlinear(skb))
1616 return features;
1617
1618 /* length of header */
1619 hdrlen = skb_transport_offset(skb);
1620 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
1621 hdrlen += tcp_hdrlen(skb);
1622
1623 /* For LSO:
1624 * When software supplies two or more payload buffers all payload buffers
1625 * apart from the last must be a multiple of 8 bytes in size.
1626 */
1627 if (!IS_ALIGNED(skb_headlen(skb) - hdrlen, MACB_TX_LEN_ALIGN))
1628 return features & ~MACB_NETIF_LSO;
1629
1630 nr_frags = skb_shinfo(skb)->nr_frags;
1631 /* No need to check last fragment */
1632 nr_frags--;
1633 for (f = 0; f < nr_frags; f++) {
1634 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1635
1636 if (!IS_ALIGNED(skb_frag_size(frag), MACB_TX_LEN_ALIGN))
1637 return features & ~MACB_NETIF_LSO;
1638 }
1639 return features;
1640}
1641
Helmut Buchsbaum007e4ba2016-09-04 18:09:47 +02001642static inline int macb_clear_csum(struct sk_buff *skb)
1643{
1644 /* no change for packets without checksum offloading */
1645 if (skb->ip_summed != CHECKSUM_PARTIAL)
1646 return 0;
1647
1648 /* make sure we can modify the header */
1649 if (unlikely(skb_cow_head(skb, 0)))
1650 return -1;
1651
1652 /* initialize checksum field
1653 * This is required - at least for Zynq, which otherwise calculates
1654 * wrong UDP header checksums for UDP packets with UDP data len <=2
1655 */
1656 *(__sum16 *)(skb_checksum_start(skb) + skb->csum_offset) = 0;
1657 return 0;
1658}
1659
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001660static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1661{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001662 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001663 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001664 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001665 unsigned long flags;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001666 unsigned int desc_cnt, nr_frags, frag_size, f;
1667 unsigned int hdrlen;
1668 bool is_lso, is_udp = 0;
1669
1670 is_lso = (skb_shinfo(skb)->gso_size != 0);
1671
1672 if (is_lso) {
1673 is_udp = !!(ip_hdr(skb)->protocol == IPPROTO_UDP);
1674
1675 /* length of headers */
1676 if (is_udp)
1677 /* only queue eth + ip headers separately for UDP */
1678 hdrlen = skb_transport_offset(skb);
1679 else
1680 hdrlen = skb_transport_offset(skb) + tcp_hdrlen(skb);
1681 if (skb_headlen(skb) < hdrlen) {
1682 netdev_err(bp->dev, "Error - LSO headers fragmented!!!\n");
1683 /* if this is required, would need to copy to single buffer */
1684 return NETDEV_TX_BUSY;
1685 }
1686 } else
1687 hdrlen = min(skb_headlen(skb), bp->max_tx_length);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001688
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001689#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1690 netdev_vdbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001691 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1692 queue_index, skb->len, skb->head, skb->data,
1693 skb_tail_pointer(skb), skb_end_pointer(skb));
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001694 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1695 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001696#endif
1697
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001698 /* Count how many TX buffer descriptors are needed to send this
1699 * socket buffer: skb fragments of jumbo frames may need to be
Moritz Fischeraa50b552016-03-29 19:11:13 -07001700 * split into many buffer descriptors.
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001701 */
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001702 if (is_lso && (skb_headlen(skb) > hdrlen))
1703 /* extra header descriptor if also payload in first buffer */
1704 desc_cnt = DIV_ROUND_UP((skb_headlen(skb) - hdrlen), bp->max_tx_length) + 1;
1705 else
1706 desc_cnt = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001707 nr_frags = skb_shinfo(skb)->nr_frags;
1708 for (f = 0; f < nr_frags; f++) {
1709 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001710 desc_cnt += DIV_ROUND_UP(frag_size, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001711 }
1712
Dongdong Deng48719532009-08-23 19:49:07 -07001713 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001714
1715 /* This is a hard error, log it. */
Zach Brownb410d132016-10-19 09:56:57 -05001716 if (CIRC_SPACE(queue->tx_head, queue->tx_tail,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001717 bp->tx_ring_size) < desc_cnt) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001718 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001719 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001720 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001721 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001722 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001723 }
1724
Helmut Buchsbaum007e4ba2016-09-04 18:09:47 +02001725 if (macb_clear_csum(skb)) {
1726 dev_kfree_skb_any(skb);
Wei Yongjuna7c22bd2016-09-10 11:17:57 +00001727 goto unlock;
Helmut Buchsbaum007e4ba2016-09-04 18:09:47 +02001728 }
1729
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001730 /* Map socket buffer for DMA transfer */
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001731 if (!macb_tx_map(bp, queue, skb, hdrlen)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001732 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001733 goto unlock;
1734 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001735
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001736 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001737 wmb();
Richard Cochrane0720922011-06-19 21:51:28 +00001738 skb_tx_timestamp(skb);
1739
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001740 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1741
Zach Brownb410d132016-10-19 09:56:57 -05001742 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, bp->tx_ring_size) < 1)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001743 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001744
Soren Brinkmann92030902014-03-04 08:46:39 -08001745unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001746 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001747
Patrick McHardy6ed10652009-06-23 06:03:08 +00001748 return NETDEV_TX_OK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001749}
1750
Nicolas Ferre4df95132013-06-04 21:57:12 +00001751static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001752{
1753 if (!macb_is_gem(bp)) {
1754 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1755 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001756 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001757
Nicolas Ferre1b447912013-06-04 21:57:11 +00001758 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001759 netdev_dbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001760 "RX buffer must be multiple of %d bytes, expanding\n",
1761 RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001762 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001763 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001764 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001765 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001766
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001767 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%zu]\n",
Nicolas Ferre4df95132013-06-04 21:57:12 +00001768 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001769}
1770
Nicolas Ferre4df95132013-06-04 21:57:12 +00001771static void gem_free_rx_buffers(struct macb *bp)
1772{
1773 struct sk_buff *skb;
1774 struct macb_dma_desc *desc;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001775 struct macb_queue *queue;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001776 dma_addr_t addr;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001777 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001778 int i;
1779
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001780 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1781 if (!queue->rx_skbuff)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001782 continue;
1783
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001784 for (i = 0; i < bp->rx_ring_size; i++) {
1785 skb = queue->rx_skbuff[i];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001786
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001787 if (!skb)
1788 continue;
1789
1790 desc = macb_rx_desc(queue, i);
1791 addr = macb_get_addr(bp, desc);
1792
1793 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
1794 DMA_FROM_DEVICE);
1795 dev_kfree_skb_any(skb);
1796 skb = NULL;
1797 }
1798
1799 kfree(queue->rx_skbuff);
1800 queue->rx_skbuff = NULL;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001801 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001802}
1803
1804static void macb_free_rx_buffers(struct macb *bp)
1805{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001806 struct macb_queue *queue = &bp->queues[0];
1807
1808 if (queue->rx_buffers) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001809 dma_free_coherent(&bp->pdev->dev,
Zach Brownb410d132016-10-19 09:56:57 -05001810 bp->rx_ring_size * bp->rx_buffer_size,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001811 queue->rx_buffers, queue->rx_buffers_dma);
1812 queue->rx_buffers = NULL;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001813 }
1814}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001815
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001816static void macb_free_consistent(struct macb *bp)
1817{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001818 struct macb_queue *queue;
1819 unsigned int q;
1820
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001821 queue = &bp->queues[0];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001822 bp->macbgem_ops.mog_free_rx_buffers(bp);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001823 if (queue->rx_ring) {
Zach Brownb410d132016-10-19 09:56:57 -05001824 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES(bp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001825 queue->rx_ring, queue->rx_ring_dma);
1826 queue->rx_ring = NULL;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001827 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001828
1829 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1830 kfree(queue->tx_skb);
1831 queue->tx_skb = NULL;
1832 if (queue->tx_ring) {
Zach Brownb410d132016-10-19 09:56:57 -05001833 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES(bp),
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001834 queue->tx_ring, queue->tx_ring_dma);
1835 queue->tx_ring = NULL;
1836 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001837 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001838}
1839
1840static int gem_alloc_rx_buffers(struct macb *bp)
1841{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001842 struct macb_queue *queue;
1843 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001844 int size;
1845
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001846 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1847 size = bp->rx_ring_size * sizeof(struct sk_buff *);
1848 queue->rx_skbuff = kzalloc(size, GFP_KERNEL);
1849 if (!queue->rx_skbuff)
1850 return -ENOMEM;
1851 else
1852 netdev_dbg(bp->dev,
1853 "Allocated %d RX struct sk_buff entries at %p\n",
1854 bp->rx_ring_size, queue->rx_skbuff);
1855 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001856 return 0;
1857}
1858
1859static int macb_alloc_rx_buffers(struct macb *bp)
1860{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001861 struct macb_queue *queue = &bp->queues[0];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001862 int size;
1863
Zach Brownb410d132016-10-19 09:56:57 -05001864 size = bp->rx_ring_size * bp->rx_buffer_size;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001865 queue->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1866 &queue->rx_buffers_dma, GFP_KERNEL);
1867 if (!queue->rx_buffers)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001868 return -ENOMEM;
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001869
1870 netdev_dbg(bp->dev,
1871 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001872 size, (unsigned long)queue->rx_buffers_dma, queue->rx_buffers);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001873 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001874}
1875
1876static int macb_alloc_consistent(struct macb *bp)
1877{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001878 struct macb_queue *queue;
1879 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001880 int size;
1881
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001882 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Zach Brownb410d132016-10-19 09:56:57 -05001883 size = TX_RING_BYTES(bp);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001884 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1885 &queue->tx_ring_dma,
1886 GFP_KERNEL);
1887 if (!queue->tx_ring)
1888 goto out_err;
1889 netdev_dbg(bp->dev,
1890 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1891 q, size, (unsigned long)queue->tx_ring_dma,
1892 queue->tx_ring);
1893
Zach Brownb410d132016-10-19 09:56:57 -05001894 size = bp->tx_ring_size * sizeof(struct macb_tx_skb);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001895 queue->tx_skb = kmalloc(size, GFP_KERNEL);
1896 if (!queue->tx_skb)
1897 goto out_err;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001898
1899 size = RX_RING_BYTES(bp);
1900 queue->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1901 &queue->rx_ring_dma, GFP_KERNEL);
1902 if (!queue->rx_ring)
1903 goto out_err;
1904 netdev_dbg(bp->dev,
1905 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1906 size, (unsigned long)queue->rx_ring_dma, queue->rx_ring);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001907 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001908 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001909 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001910
1911 return 0;
1912
1913out_err:
1914 macb_free_consistent(bp);
1915 return -ENOMEM;
1916}
1917
Nicolas Ferre4df95132013-06-04 21:57:12 +00001918static void gem_init_rings(struct macb *bp)
1919{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001920 struct macb_queue *queue;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001921 struct macb_dma_desc *desc = NULL;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001922 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001923 int i;
1924
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001925 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Zach Brownb410d132016-10-19 09:56:57 -05001926 for (i = 0; i < bp->tx_ring_size; i++) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001927 desc = macb_tx_desc(queue, i);
1928 macb_set_addr(bp, desc, 0);
1929 desc->ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001930 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001931 desc->ctrl |= MACB_BIT(TX_WRAP);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001932 queue->tx_head = 0;
1933 queue->tx_tail = 0;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001934
1935 queue->rx_tail = 0;
1936 queue->rx_prepared_head = 0;
1937
1938 gem_rx_refill(queue);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001939 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001940
Nicolas Ferre4df95132013-06-04 21:57:12 +00001941}
1942
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001943static void macb_init_rings(struct macb *bp)
1944{
1945 int i;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001946 struct macb_dma_desc *desc = NULL;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001947
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001948 macb_init_rx_ring(&bp->queues[0]);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001949
Zach Brownb410d132016-10-19 09:56:57 -05001950 for (i = 0; i < bp->tx_ring_size; i++) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001951 desc = macb_tx_desc(&bp->queues[0], i);
1952 macb_set_addr(bp, desc, 0);
1953 desc->ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001954 }
Ben Shelton21d35152015-04-22 17:28:54 -05001955 bp->queues[0].tx_head = 0;
1956 bp->queues[0].tx_tail = 0;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001957 desc->ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001958}
1959
1960static void macb_reset_hw(struct macb *bp)
1961{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001962 struct macb_queue *queue;
1963 unsigned int q;
1964
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001965 /* Disable RX and TX (XXX: Should we halt the transmission
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001966 * more gracefully?)
1967 */
1968 macb_writel(bp, NCR, 0);
1969
1970 /* Clear the stats registers (XXX: Update stats first?) */
1971 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1972
1973 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00001974 macb_writel(bp, TSR, -1);
1975 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001976
1977 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001978 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1979 queue_writel(queue, IDR, -1);
1980 queue_readl(queue, ISR);
Nathan Sullivan24468372016-01-14 13:27:27 -06001981 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1982 queue_writel(queue, ISR, -1);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001983 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001984}
1985
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001986static u32 gem_mdc_clk_div(struct macb *bp)
1987{
1988 u32 config;
1989 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1990
1991 if (pclk_hz <= 20000000)
1992 config = GEM_BF(CLK, GEM_CLK_DIV8);
1993 else if (pclk_hz <= 40000000)
1994 config = GEM_BF(CLK, GEM_CLK_DIV16);
1995 else if (pclk_hz <= 80000000)
1996 config = GEM_BF(CLK, GEM_CLK_DIV32);
1997 else if (pclk_hz <= 120000000)
1998 config = GEM_BF(CLK, GEM_CLK_DIV48);
1999 else if (pclk_hz <= 160000000)
2000 config = GEM_BF(CLK, GEM_CLK_DIV64);
2001 else
2002 config = GEM_BF(CLK, GEM_CLK_DIV96);
2003
2004 return config;
2005}
2006
2007static u32 macb_mdc_clk_div(struct macb *bp)
2008{
2009 u32 config;
2010 unsigned long pclk_hz;
2011
2012 if (macb_is_gem(bp))
2013 return gem_mdc_clk_div(bp);
2014
2015 pclk_hz = clk_get_rate(bp->pclk);
2016 if (pclk_hz <= 20000000)
2017 config = MACB_BF(CLK, MACB_CLK_DIV8);
2018 else if (pclk_hz <= 40000000)
2019 config = MACB_BF(CLK, MACB_CLK_DIV16);
2020 else if (pclk_hz <= 80000000)
2021 config = MACB_BF(CLK, MACB_CLK_DIV32);
2022 else
2023 config = MACB_BF(CLK, MACB_CLK_DIV64);
2024
2025 return config;
2026}
2027
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002028/* Get the DMA bus width field of the network configuration register that we
Jamie Iles757a03c2011-03-09 16:29:59 +00002029 * should program. We find the width from decoding the design configuration
2030 * register to find the maximum supported data bus width.
2031 */
2032static u32 macb_dbw(struct macb *bp)
2033{
2034 if (!macb_is_gem(bp))
2035 return 0;
2036
2037 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
2038 case 4:
2039 return GEM_BF(DBW, GEM_DBW128);
2040 case 2:
2041 return GEM_BF(DBW, GEM_DBW64);
2042 case 1:
2043 default:
2044 return GEM_BF(DBW, GEM_DBW32);
2045 }
2046}
2047
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002048/* Configure the receive DMA engine
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002049 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02002050 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002051 * (if not supported by FIFO, it will fallback to default)
2052 * - set both rx/tx packet buffers to full memory size
2053 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00002054 */
2055static void macb_configure_dma(struct macb *bp)
2056{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002057 struct macb_queue *queue;
2058 u32 buffer_size;
2059 unsigned int q;
Jamie Iles0116da42011-03-14 17:38:30 +00002060 u32 dmacfg;
2061
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002062 buffer_size = bp->rx_buffer_size / RX_BUFFER_MULTIPLE;
Jamie Iles0116da42011-03-14 17:38:30 +00002063 if (macb_is_gem(bp)) {
2064 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002065 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2066 if (q)
2067 queue_writel(queue, RBQS, buffer_size);
2068 else
2069 dmacfg |= GEM_BF(RXBS, buffer_size);
2070 }
Nicolas Ferree1755872014-07-24 13:50:58 +02002071 if (bp->dma_burst_length)
2072 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002073 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05302074 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05302075
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002076 if (bp->native_io)
Arun Chandran62f69242015-03-01 11:38:02 +05302077 dmacfg &= ~GEM_BIT(ENDIA_DESC);
2078 else
2079 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
2080
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002081 if (bp->dev->features & NETIF_F_HW_CSUM)
2082 dmacfg |= GEM_BIT(TXCOEN);
2083 else
2084 dmacfg &= ~GEM_BIT(TXCOEN);
Harini Katakamfff80192016-08-09 13:15:53 +05302085
2086#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002087 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002088 dmacfg |= GEM_BIT(ADDR64);
Harini Katakamfff80192016-08-09 13:15:53 +05302089#endif
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002090#ifdef CONFIG_MACB_USE_HWSTAMP
2091 if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
2092 dmacfg |= GEM_BIT(RXEXT) | GEM_BIT(TXEXT);
2093#endif
Nicolas Ferree1755872014-07-24 13:50:58 +02002094 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
2095 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00002096 gem_writel(bp, DMACFG, dmacfg);
2097 }
2098}
2099
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002100static void macb_init_hw(struct macb *bp)
2101{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002102 struct macb_queue *queue;
2103 unsigned int q;
2104
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002105 u32 config;
2106
2107 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00002108 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002109
Jamie Iles70c9f3d2011-03-09 16:22:54 +00002110 config = macb_mdc_clk_div(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05302111 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
2112 config |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00002113 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002114 config |= MACB_BIT(PAE); /* PAuse Enable */
2115 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03002116 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302117 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
2118 else
2119 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002120 if (bp->dev->flags & IFF_PROMISC)
2121 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002122 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
2123 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002124 if (!(bp->dev->flags & IFF_BROADCAST))
2125 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00002126 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002127 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03002128 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302129 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00002130 bp->speed = SPEED_10;
2131 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302132 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03002133 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302134 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002135
Jamie Iles0116da42011-03-14 17:38:30 +00002136 macb_configure_dma(bp);
2137
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002138 /* Initialize TX and RX buffers */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002139 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002140 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
2141#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2142 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2143 queue_writel(queue, RBQPH, upper_32_bits(queue->rx_ring_dma));
2144#endif
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002145 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +05302146#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002147 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002148 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +05302149#endif
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002150
2151 /* Enable interrupts */
2152 queue_writel(queue, IER,
2153 MACB_RX_INT_FLAGS |
2154 MACB_TX_INT_FLAGS |
2155 MACB_BIT(HRESP));
2156 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002157
2158 /* Enable TX and RX */
frederic RODO6c36a702007-07-12 19:07:24 +02002159 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002160}
2161
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002162/* The hash address register is 64 bits long and takes up two
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002163 * locations in the memory map. The least significant bits are stored
2164 * in EMAC_HSL and the most significant bits in EMAC_HSH.
2165 *
2166 * The unicast hash enable and the multicast hash enable bits in the
2167 * network configuration register enable the reception of hash matched
2168 * frames. The destination address is reduced to a 6 bit index into
2169 * the 64 bit hash register using the following hash function. The
2170 * hash function is an exclusive or of every sixth bit of the
2171 * destination address.
2172 *
2173 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2174 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2175 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2176 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2177 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2178 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2179 *
2180 * da[0] represents the least significant bit of the first byte
2181 * received, that is, the multicast/unicast indicator, and da[47]
2182 * represents the most significant bit of the last byte received. If
2183 * the hash index, hi[n], points to a bit that is set in the hash
2184 * register then the frame will be matched according to whether the
2185 * frame is multicast or unicast. A multicast match will be signalled
2186 * if the multicast hash enable bit is set, da[0] is 1 and the hash
2187 * index points to a bit set in the hash register. A unicast match
2188 * will be signalled if the unicast hash enable bit is set, da[0] is 0
2189 * and the hash index points to a bit set in the hash register. To
2190 * receive all multicast frames, the hash register should be set with
2191 * all ones and the multicast hash enable bit should be set in the
2192 * network configuration register.
2193 */
2194
2195static inline int hash_bit_value(int bitnr, __u8 *addr)
2196{
2197 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
2198 return 1;
2199 return 0;
2200}
2201
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002202/* Return the hash index value for the specified address. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002203static int hash_get_index(__u8 *addr)
2204{
2205 int i, j, bitval;
2206 int hash_index = 0;
2207
2208 for (j = 0; j < 6; j++) {
2209 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06002210 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002211
2212 hash_index |= (bitval << j);
2213 }
2214
2215 return hash_index;
2216}
2217
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002218/* Add multicast addresses to the internal multicast-hash table. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002219static void macb_sethashtable(struct net_device *dev)
2220{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002221 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002222 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00002223 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002224 struct macb *bp = netdev_priv(dev);
2225
Moritz Fischeraa50b552016-03-29 19:11:13 -07002226 mc_filter[0] = 0;
2227 mc_filter[1] = 0;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002228
Jiri Pirko22bedad32010-04-01 21:22:57 +00002229 netdev_for_each_mc_addr(ha, dev) {
2230 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002231 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
2232 }
2233
Jamie Ilesf75ba502011-11-08 10:12:32 +00002234 macb_or_gem_writel(bp, HRB, mc_filter[0]);
2235 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002236}
2237
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002238/* Enable/Disable promiscuous and multicast modes. */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002239static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002240{
2241 unsigned long cfg;
2242 struct macb *bp = netdev_priv(dev);
2243
2244 cfg = macb_readl(bp, NCFGR);
2245
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002246 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002247 /* Enable promiscuous mode */
2248 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002249
2250 /* Disable RX checksum offload */
2251 if (macb_is_gem(bp))
2252 cfg &= ~GEM_BIT(RXCOEN);
2253 } else {
2254 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002255 cfg &= ~MACB_BIT(CAF);
2256
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002257 /* Enable RX checksum offload only if requested */
2258 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
2259 cfg |= GEM_BIT(RXCOEN);
2260 }
2261
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002262 if (dev->flags & IFF_ALLMULTI) {
2263 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00002264 macb_or_gem_writel(bp, HRB, -1);
2265 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002266 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002267 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002268 /* Enable specific multicasts */
2269 macb_sethashtable(dev);
2270 cfg |= MACB_BIT(NCFGR_MTI);
2271 } else if (dev->flags & (~IFF_ALLMULTI)) {
2272 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00002273 macb_or_gem_writel(bp, HRB, 0);
2274 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002275 cfg &= ~MACB_BIT(NCFGR_MTI);
2276 }
2277
2278 macb_writel(bp, NCFGR, cfg);
2279}
2280
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002281static int macb_open(struct net_device *dev)
2282{
2283 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00002284 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002285 struct macb_queue *queue;
2286 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002287 int err;
2288
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002289 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002290
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002291 /* carrier starts down */
2292 netif_carrier_off(dev);
2293
frederic RODO6c36a702007-07-12 19:07:24 +02002294 /* if the phy is not yet register, retry later*/
Philippe Reynes0a912812016-06-22 00:32:35 +02002295 if (!dev->phydev)
frederic RODO6c36a702007-07-12 19:07:24 +02002296 return -EAGAIN;
2297
Nicolas Ferre1b447912013-06-04 21:57:11 +00002298 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00002299 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00002300
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002301 err = macb_alloc_consistent(bp);
2302 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002303 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
2304 err);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002305 return err;
2306 }
2307
Nicolas Ferre4df95132013-06-04 21:57:12 +00002308 bp->macbgem_ops.mog_init_rings(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002309 macb_init_hw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002310
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002311 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2312 napi_enable(&queue->napi);
2313
frederic RODO6c36a702007-07-12 19:07:24 +02002314 /* schedule a link state check */
Philippe Reynes0a912812016-06-22 00:32:35 +02002315 phy_start(dev->phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02002316
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002317 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002318
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002319 if (bp->ptp_info)
2320 bp->ptp_info->ptp_init(dev);
2321
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002322 return 0;
2323}
2324
2325static int macb_close(struct net_device *dev)
2326{
2327 struct macb *bp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002328 struct macb_queue *queue;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002329 unsigned long flags;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002330 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002331
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002332 netif_tx_stop_all_queues(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002333
2334 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2335 napi_disable(&queue->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002336
Philippe Reynes0a912812016-06-22 00:32:35 +02002337 if (dev->phydev)
2338 phy_stop(dev->phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02002339
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002340 spin_lock_irqsave(&bp->lock, flags);
2341 macb_reset_hw(bp);
2342 netif_carrier_off(dev);
2343 spin_unlock_irqrestore(&bp->lock, flags);
2344
2345 macb_free_consistent(bp);
2346
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002347 if (bp->ptp_info)
2348 bp->ptp_info->ptp_remove(dev);
2349
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002350 return 0;
2351}
2352
Harini Katakama5898ea2015-05-06 22:27:18 +05302353static int macb_change_mtu(struct net_device *dev, int new_mtu)
2354{
Harini Katakama5898ea2015-05-06 22:27:18 +05302355 if (netif_running(dev))
2356 return -EBUSY;
2357
Harini Katakama5898ea2015-05-06 22:27:18 +05302358 dev->mtu = new_mtu;
2359
2360 return 0;
2361}
2362
Jamie Ilesa494ed82011-03-09 16:26:35 +00002363static void gem_update_stats(struct macb *bp)
2364{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002365 struct macb_queue *queue;
2366 unsigned int i, q, idx;
2367 unsigned long *stat;
2368
Jamie Ilesa494ed82011-03-09 16:26:35 +00002369 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002370
Xander Huff3ff13f12015-01-13 16:15:51 -06002371 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
2372 u32 offset = gem_statistics[i].offset;
David S. Miller7a6e0702015-07-27 14:24:48 -07002373 u64 val = bp->macb_reg_readl(bp, offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06002374
2375 bp->ethtool_stats[i] += val;
2376 *p += val;
2377
2378 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
2379 /* Add GEM_OCTTXH, GEM_OCTRXH */
David S. Miller7a6e0702015-07-27 14:24:48 -07002380 val = bp->macb_reg_readl(bp, offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06002381 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06002382 *(++p) += val;
2383 }
2384 }
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002385
2386 idx = GEM_STATS_LEN;
2387 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2388 for (i = 0, stat = &queue->stats.first; i < QUEUE_STATS_LEN; ++i, ++stat)
2389 bp->ethtool_stats[idx++] = *stat;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002390}
2391
2392static struct net_device_stats *gem_get_stats(struct macb *bp)
2393{
2394 struct gem_stats *hwstat = &bp->hw_stats.gem;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02002395 struct net_device_stats *nstat = &bp->dev->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002396
2397 gem_update_stats(bp);
2398
2399 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
2400 hwstat->rx_alignment_errors +
2401 hwstat->rx_resource_errors +
2402 hwstat->rx_overruns +
2403 hwstat->rx_oversize_frames +
2404 hwstat->rx_jabbers +
2405 hwstat->rx_undersized_frames +
2406 hwstat->rx_length_field_frame_errors);
2407 nstat->tx_errors = (hwstat->tx_late_collisions +
2408 hwstat->tx_excessive_collisions +
2409 hwstat->tx_underrun +
2410 hwstat->tx_carrier_sense_errors);
2411 nstat->multicast = hwstat->rx_multicast_frames;
2412 nstat->collisions = (hwstat->tx_single_collision_frames +
2413 hwstat->tx_multiple_collision_frames +
2414 hwstat->tx_excessive_collisions);
2415 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2416 hwstat->rx_jabbers +
2417 hwstat->rx_undersized_frames +
2418 hwstat->rx_length_field_frame_errors);
2419 nstat->rx_over_errors = hwstat->rx_resource_errors;
2420 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2421 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2422 nstat->rx_fifo_errors = hwstat->rx_overruns;
2423 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2424 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2425 nstat->tx_fifo_errors = hwstat->tx_underrun;
2426
2427 return nstat;
2428}
2429
Xander Huff3ff13f12015-01-13 16:15:51 -06002430static void gem_get_ethtool_stats(struct net_device *dev,
2431 struct ethtool_stats *stats, u64 *data)
2432{
2433 struct macb *bp;
2434
2435 bp = netdev_priv(dev);
2436 gem_update_stats(bp);
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002437 memcpy(data, &bp->ethtool_stats, sizeof(u64)
2438 * (GEM_STATS_LEN + QUEUE_STATS_LEN * MACB_MAX_QUEUES));
Xander Huff3ff13f12015-01-13 16:15:51 -06002439}
2440
2441static int gem_get_sset_count(struct net_device *dev, int sset)
2442{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002443 struct macb *bp = netdev_priv(dev);
2444
Xander Huff3ff13f12015-01-13 16:15:51 -06002445 switch (sset) {
2446 case ETH_SS_STATS:
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002447 return GEM_STATS_LEN + bp->num_queues * QUEUE_STATS_LEN;
Xander Huff3ff13f12015-01-13 16:15:51 -06002448 default:
2449 return -EOPNOTSUPP;
2450 }
2451}
2452
2453static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2454{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002455 char stat_string[ETH_GSTRING_LEN];
2456 struct macb *bp = netdev_priv(dev);
2457 struct macb_queue *queue;
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03002458 unsigned int i;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002459 unsigned int q;
Xander Huff3ff13f12015-01-13 16:15:51 -06002460
2461 switch (sset) {
2462 case ETH_SS_STATS:
2463 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2464 memcpy(p, gem_statistics[i].stat_string,
2465 ETH_GSTRING_LEN);
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002466
2467 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2468 for (i = 0; i < QUEUE_STATS_LEN; i++, p += ETH_GSTRING_LEN) {
2469 snprintf(stat_string, ETH_GSTRING_LEN, "q%d_%s",
2470 q, queue_statistics[i].stat_string);
2471 memcpy(p, stat_string, ETH_GSTRING_LEN);
2472 }
2473 }
Xander Huff3ff13f12015-01-13 16:15:51 -06002474 break;
2475 }
2476}
2477
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002478static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002479{
2480 struct macb *bp = netdev_priv(dev);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02002481 struct net_device_stats *nstat = &bp->dev->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002482 struct macb_stats *hwstat = &bp->hw_stats.macb;
2483
2484 if (macb_is_gem(bp))
2485 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002486
frederic RODO6c36a702007-07-12 19:07:24 +02002487 /* read stats from hardware */
2488 macb_update_stats(bp);
2489
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002490 /* Convert HW stats into netdevice stats */
2491 nstat->rx_errors = (hwstat->rx_fcs_errors +
2492 hwstat->rx_align_errors +
2493 hwstat->rx_resource_errors +
2494 hwstat->rx_overruns +
2495 hwstat->rx_oversize_pkts +
2496 hwstat->rx_jabbers +
2497 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002498 hwstat->rx_length_mismatch);
2499 nstat->tx_errors = (hwstat->tx_late_cols +
2500 hwstat->tx_excessive_cols +
2501 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002502 hwstat->tx_carrier_errors +
2503 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002504 nstat->collisions = (hwstat->tx_single_cols +
2505 hwstat->tx_multiple_cols +
2506 hwstat->tx_excessive_cols);
2507 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2508 hwstat->rx_jabbers +
2509 hwstat->rx_undersize_pkts +
2510 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002511 nstat->rx_over_errors = hwstat->rx_resource_errors +
2512 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002513 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2514 nstat->rx_frame_errors = hwstat->rx_align_errors;
2515 nstat->rx_fifo_errors = hwstat->rx_overruns;
2516 /* XXX: What does "missed" mean? */
2517 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2518 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2519 nstat->tx_fifo_errors = hwstat->tx_underruns;
2520 /* Don't know about heartbeat or window errors... */
2521
2522 return nstat;
2523}
2524
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002525static int macb_get_regs_len(struct net_device *netdev)
2526{
2527 return MACB_GREGS_NBR * sizeof(u32);
2528}
2529
2530static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2531 void *p)
2532{
2533 struct macb *bp = netdev_priv(dev);
2534 unsigned int tail, head;
2535 u32 *regs_buff = p;
2536
2537 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2538 | MACB_GREGS_VERSION;
2539
Zach Brownb410d132016-10-19 09:56:57 -05002540 tail = macb_tx_ring_wrap(bp, bp->queues[0].tx_tail);
2541 head = macb_tx_ring_wrap(bp, bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002542
2543 regs_buff[0] = macb_readl(bp, NCR);
2544 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2545 regs_buff[2] = macb_readl(bp, NSR);
2546 regs_buff[3] = macb_readl(bp, TSR);
2547 regs_buff[4] = macb_readl(bp, RBQP);
2548 regs_buff[5] = macb_readl(bp, TBQP);
2549 regs_buff[6] = macb_readl(bp, RSR);
2550 regs_buff[7] = macb_readl(bp, IMR);
2551
2552 regs_buff[8] = tail;
2553 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002554 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2555 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002556
Neil Armstrongce721a72016-01-05 14:39:16 +01002557 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
2558 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002559 if (macb_is_gem(bp))
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002560 regs_buff[13] = gem_readl(bp, DMACFG);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002561}
2562
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002563static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2564{
2565 struct macb *bp = netdev_priv(netdev);
2566
2567 wol->supported = 0;
2568 wol->wolopts = 0;
2569
2570 if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
2571 wol->supported = WAKE_MAGIC;
2572
2573 if (bp->wol & MACB_WOL_ENABLED)
2574 wol->wolopts |= WAKE_MAGIC;
2575 }
2576}
2577
2578static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2579{
2580 struct macb *bp = netdev_priv(netdev);
2581
2582 if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
2583 (wol->wolopts & ~WAKE_MAGIC))
2584 return -EOPNOTSUPP;
2585
2586 if (wol->wolopts & WAKE_MAGIC)
2587 bp->wol |= MACB_WOL_ENABLED;
2588 else
2589 bp->wol &= ~MACB_WOL_ENABLED;
2590
2591 device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
2592
2593 return 0;
2594}
2595
Zach Brown8441bb32016-10-19 09:56:58 -05002596static void macb_get_ringparam(struct net_device *netdev,
2597 struct ethtool_ringparam *ring)
2598{
2599 struct macb *bp = netdev_priv(netdev);
2600
2601 ring->rx_max_pending = MAX_RX_RING_SIZE;
2602 ring->tx_max_pending = MAX_TX_RING_SIZE;
2603
2604 ring->rx_pending = bp->rx_ring_size;
2605 ring->tx_pending = bp->tx_ring_size;
2606}
2607
2608static int macb_set_ringparam(struct net_device *netdev,
2609 struct ethtool_ringparam *ring)
2610{
2611 struct macb *bp = netdev_priv(netdev);
2612 u32 new_rx_size, new_tx_size;
2613 unsigned int reset = 0;
2614
2615 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
2616 return -EINVAL;
2617
2618 new_rx_size = clamp_t(u32, ring->rx_pending,
2619 MIN_RX_RING_SIZE, MAX_RX_RING_SIZE);
2620 new_rx_size = roundup_pow_of_two(new_rx_size);
2621
2622 new_tx_size = clamp_t(u32, ring->tx_pending,
2623 MIN_TX_RING_SIZE, MAX_TX_RING_SIZE);
2624 new_tx_size = roundup_pow_of_two(new_tx_size);
2625
2626 if ((new_tx_size == bp->tx_ring_size) &&
2627 (new_rx_size == bp->rx_ring_size)) {
2628 /* nothing to do */
2629 return 0;
2630 }
2631
2632 if (netif_running(bp->dev)) {
2633 reset = 1;
2634 macb_close(bp->dev);
2635 }
2636
2637 bp->rx_ring_size = new_rx_size;
2638 bp->tx_ring_size = new_tx_size;
2639
2640 if (reset)
2641 macb_open(bp->dev);
2642
2643 return 0;
2644}
2645
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01002646#ifdef CONFIG_MACB_USE_HWSTAMP
2647static unsigned int gem_get_tsu_rate(struct macb *bp)
2648{
2649 struct clk *tsu_clk;
2650 unsigned int tsu_rate;
2651
2652 tsu_clk = devm_clk_get(&bp->pdev->dev, "tsu_clk");
2653 if (!IS_ERR(tsu_clk))
2654 tsu_rate = clk_get_rate(tsu_clk);
2655 /* try pclk instead */
2656 else if (!IS_ERR(bp->pclk)) {
2657 tsu_clk = bp->pclk;
2658 tsu_rate = clk_get_rate(tsu_clk);
2659 } else
2660 return -ENOTSUPP;
2661 return tsu_rate;
2662}
2663
2664static s32 gem_get_ptp_max_adj(void)
2665{
2666 return 64000000;
2667}
2668
2669static int gem_get_ts_info(struct net_device *dev,
2670 struct ethtool_ts_info *info)
2671{
2672 struct macb *bp = netdev_priv(dev);
2673
2674 if ((bp->hw_dma_cap & HW_DMA_CAP_PTP) == 0) {
2675 ethtool_op_get_ts_info(dev, info);
2676 return 0;
2677 }
2678
2679 info->so_timestamping =
2680 SOF_TIMESTAMPING_TX_SOFTWARE |
2681 SOF_TIMESTAMPING_RX_SOFTWARE |
2682 SOF_TIMESTAMPING_SOFTWARE |
2683 SOF_TIMESTAMPING_TX_HARDWARE |
2684 SOF_TIMESTAMPING_RX_HARDWARE |
2685 SOF_TIMESTAMPING_RAW_HARDWARE;
2686 info->tx_types =
2687 (1 << HWTSTAMP_TX_ONESTEP_SYNC) |
2688 (1 << HWTSTAMP_TX_OFF) |
2689 (1 << HWTSTAMP_TX_ON);
2690 info->rx_filters =
2691 (1 << HWTSTAMP_FILTER_NONE) |
2692 (1 << HWTSTAMP_FILTER_ALL);
2693
2694 info->phc_index = bp->ptp_clock ? ptp_clock_index(bp->ptp_clock) : -1;
2695
2696 return 0;
2697}
2698
2699static struct macb_ptp_info gem_ptp_info = {
2700 .ptp_init = gem_ptp_init,
2701 .ptp_remove = gem_ptp_remove,
2702 .get_ptp_max_adj = gem_get_ptp_max_adj,
2703 .get_tsu_rate = gem_get_tsu_rate,
2704 .get_ts_info = gem_get_ts_info,
2705 .get_hwtst = gem_get_hwtst,
2706 .set_hwtst = gem_set_hwtst,
2707};
2708#endif
2709
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002710static int macb_get_ts_info(struct net_device *netdev,
2711 struct ethtool_ts_info *info)
2712{
2713 struct macb *bp = netdev_priv(netdev);
2714
2715 if (bp->ptp_info)
2716 return bp->ptp_info->get_ts_info(netdev, info);
2717
2718 return ethtool_op_get_ts_info(netdev, info);
2719}
2720
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002721static void gem_enable_flow_filters(struct macb *bp, bool enable)
2722{
2723 struct ethtool_rx_fs_item *item;
2724 u32 t2_scr;
2725 int num_t2_scr;
2726
2727 num_t2_scr = GEM_BFEXT(T2SCR, gem_readl(bp, DCFG8));
2728
2729 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2730 struct ethtool_rx_flow_spec *fs = &item->fs;
2731 struct ethtool_tcpip4_spec *tp4sp_m;
2732
2733 if (fs->location >= num_t2_scr)
2734 continue;
2735
2736 t2_scr = gem_readl_n(bp, SCRT2, fs->location);
2737
2738 /* enable/disable screener regs for the flow entry */
2739 t2_scr = GEM_BFINS(ETHTEN, enable, t2_scr);
2740
2741 /* only enable fields with no masking */
2742 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2743
2744 if (enable && (tp4sp_m->ip4src == 0xFFFFFFFF))
2745 t2_scr = GEM_BFINS(CMPAEN, 1, t2_scr);
2746 else
2747 t2_scr = GEM_BFINS(CMPAEN, 0, t2_scr);
2748
2749 if (enable && (tp4sp_m->ip4dst == 0xFFFFFFFF))
2750 t2_scr = GEM_BFINS(CMPBEN, 1, t2_scr);
2751 else
2752 t2_scr = GEM_BFINS(CMPBEN, 0, t2_scr);
2753
2754 if (enable && ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)))
2755 t2_scr = GEM_BFINS(CMPCEN, 1, t2_scr);
2756 else
2757 t2_scr = GEM_BFINS(CMPCEN, 0, t2_scr);
2758
2759 gem_writel_n(bp, SCRT2, fs->location, t2_scr);
2760 }
2761}
2762
2763static void gem_prog_cmp_regs(struct macb *bp, struct ethtool_rx_flow_spec *fs)
2764{
2765 struct ethtool_tcpip4_spec *tp4sp_v, *tp4sp_m;
2766 uint16_t index = fs->location;
2767 u32 w0, w1, t2_scr;
2768 bool cmp_a = false;
2769 bool cmp_b = false;
2770 bool cmp_c = false;
2771
2772 tp4sp_v = &(fs->h_u.tcp_ip4_spec);
2773 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2774
2775 /* ignore field if any masking set */
2776 if (tp4sp_m->ip4src == 0xFFFFFFFF) {
2777 /* 1st compare reg - IP source address */
2778 w0 = 0;
2779 w1 = 0;
2780 w0 = tp4sp_v->ip4src;
2781 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2782 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2783 w1 = GEM_BFINS(T2OFST, ETYPE_SRCIP_OFFSET, w1);
2784 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w0);
2785 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w1);
2786 cmp_a = true;
2787 }
2788
2789 /* ignore field if any masking set */
2790 if (tp4sp_m->ip4dst == 0xFFFFFFFF) {
2791 /* 2nd compare reg - IP destination address */
2792 w0 = 0;
2793 w1 = 0;
2794 w0 = tp4sp_v->ip4dst;
2795 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2796 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2797 w1 = GEM_BFINS(T2OFST, ETYPE_DSTIP_OFFSET, w1);
2798 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4DST_CMP(index)), w0);
2799 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4DST_CMP(index)), w1);
2800 cmp_b = true;
2801 }
2802
2803 /* ignore both port fields if masking set in both */
2804 if ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)) {
2805 /* 3rd compare reg - source port, destination port */
2806 w0 = 0;
2807 w1 = 0;
2808 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_IPHDR, w1);
2809 if (tp4sp_m->psrc == tp4sp_m->pdst) {
2810 w0 = GEM_BFINS(T2MASK, tp4sp_v->psrc, w0);
2811 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2812 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2813 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2814 } else {
2815 /* only one port definition */
2816 w1 = GEM_BFINS(T2DISMSK, 0, w1); /* 16-bit compare */
2817 w0 = GEM_BFINS(T2MASK, 0xFFFF, w0);
2818 if (tp4sp_m->psrc == 0xFFFF) { /* src port */
2819 w0 = GEM_BFINS(T2CMP, tp4sp_v->psrc, w0);
2820 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2821 } else { /* dst port */
2822 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2823 w1 = GEM_BFINS(T2OFST, IPHDR_DSTPORT_OFFSET, w1);
2824 }
2825 }
2826 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_PORT_CMP(index)), w0);
2827 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_PORT_CMP(index)), w1);
2828 cmp_c = true;
2829 }
2830
2831 t2_scr = 0;
2832 t2_scr = GEM_BFINS(QUEUE, (fs->ring_cookie) & 0xFF, t2_scr);
2833 t2_scr = GEM_BFINS(ETHT2IDX, SCRT2_ETHT, t2_scr);
2834 if (cmp_a)
2835 t2_scr = GEM_BFINS(CMPA, GEM_IP4SRC_CMP(index), t2_scr);
2836 if (cmp_b)
2837 t2_scr = GEM_BFINS(CMPB, GEM_IP4DST_CMP(index), t2_scr);
2838 if (cmp_c)
2839 t2_scr = GEM_BFINS(CMPC, GEM_PORT_CMP(index), t2_scr);
2840 gem_writel_n(bp, SCRT2, index, t2_scr);
2841}
2842
2843static int gem_add_flow_filter(struct net_device *netdev,
2844 struct ethtool_rxnfc *cmd)
2845{
2846 struct macb *bp = netdev_priv(netdev);
2847 struct ethtool_rx_flow_spec *fs = &cmd->fs;
2848 struct ethtool_rx_fs_item *item, *newfs;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002849 unsigned long flags;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002850 int ret = -EINVAL;
2851 bool added = false;
2852
Julia Cartwrightcc1674e2017-12-05 18:02:50 -06002853 newfs = kmalloc(sizeof(*newfs), GFP_KERNEL);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002854 if (newfs == NULL)
2855 return -ENOMEM;
2856 memcpy(&newfs->fs, fs, sizeof(newfs->fs));
2857
2858 netdev_dbg(netdev,
2859 "Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
2860 fs->flow_type, (int)fs->ring_cookie, fs->location,
2861 htonl(fs->h_u.tcp_ip4_spec.ip4src),
2862 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
2863 htons(fs->h_u.tcp_ip4_spec.psrc), htons(fs->h_u.tcp_ip4_spec.pdst));
2864
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002865 spin_lock_irqsave(&bp->rx_fs_lock, flags);
2866
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002867 /* find correct place to add in list */
Julia Cartwrighta3da8ad2017-12-05 18:02:48 -06002868 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2869 if (item->fs.location > newfs->fs.location) {
2870 list_add_tail(&newfs->list, &item->list);
2871 added = true;
2872 break;
2873 } else if (item->fs.location == fs->location) {
2874 netdev_err(netdev, "Rule not added: location %d not free!\n",
2875 fs->location);
2876 ret = -EBUSY;
2877 goto err;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002878 }
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002879 }
Julia Cartwrighta3da8ad2017-12-05 18:02:48 -06002880 if (!added)
2881 list_add_tail(&newfs->list, &bp->rx_fs_list.list);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002882
2883 gem_prog_cmp_regs(bp, fs);
2884 bp->rx_fs_list.count++;
2885 /* enable filtering if NTUPLE on */
2886 if (netdev->features & NETIF_F_NTUPLE)
2887 gem_enable_flow_filters(bp, 1);
2888
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002889 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002890 return 0;
2891
2892err:
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002893 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002894 kfree(newfs);
2895 return ret;
2896}
2897
2898static int gem_del_flow_filter(struct net_device *netdev,
2899 struct ethtool_rxnfc *cmd)
2900{
2901 struct macb *bp = netdev_priv(netdev);
2902 struct ethtool_rx_fs_item *item;
2903 struct ethtool_rx_flow_spec *fs;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002904 unsigned long flags;
2905
2906 spin_lock_irqsave(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002907
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002908 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2909 if (item->fs.location == cmd->fs.location) {
2910 /* disable screener regs for the flow entry */
2911 fs = &(item->fs);
2912 netdev_dbg(netdev,
2913 "Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
2914 fs->flow_type, (int)fs->ring_cookie, fs->location,
2915 htonl(fs->h_u.tcp_ip4_spec.ip4src),
2916 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
2917 htons(fs->h_u.tcp_ip4_spec.psrc),
2918 htons(fs->h_u.tcp_ip4_spec.pdst));
2919
2920 gem_writel_n(bp, SCRT2, fs->location, 0);
2921
2922 list_del(&item->list);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002923 bp->rx_fs_list.count--;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002924 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
2925 kfree(item);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002926 return 0;
2927 }
2928 }
2929
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002930 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002931 return -EINVAL;
2932}
2933
2934static int gem_get_flow_entry(struct net_device *netdev,
2935 struct ethtool_rxnfc *cmd)
2936{
2937 struct macb *bp = netdev_priv(netdev);
2938 struct ethtool_rx_fs_item *item;
2939
2940 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2941 if (item->fs.location == cmd->fs.location) {
2942 memcpy(&cmd->fs, &item->fs, sizeof(cmd->fs));
2943 return 0;
2944 }
2945 }
2946 return -EINVAL;
2947}
2948
2949static int gem_get_all_flow_entries(struct net_device *netdev,
2950 struct ethtool_rxnfc *cmd, u32 *rule_locs)
2951{
2952 struct macb *bp = netdev_priv(netdev);
2953 struct ethtool_rx_fs_item *item;
2954 uint32_t cnt = 0;
2955
2956 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2957 if (cnt == cmd->rule_cnt)
2958 return -EMSGSIZE;
2959 rule_locs[cnt] = item->fs.location;
2960 cnt++;
2961 }
2962 cmd->data = bp->max_tuples;
2963 cmd->rule_cnt = cnt;
2964
2965 return 0;
2966}
2967
2968static int gem_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
2969 u32 *rule_locs)
2970{
2971 struct macb *bp = netdev_priv(netdev);
2972 int ret = 0;
2973
2974 switch (cmd->cmd) {
2975 case ETHTOOL_GRXRINGS:
2976 cmd->data = bp->num_queues;
2977 break;
2978 case ETHTOOL_GRXCLSRLCNT:
2979 cmd->rule_cnt = bp->rx_fs_list.count;
2980 break;
2981 case ETHTOOL_GRXCLSRULE:
2982 ret = gem_get_flow_entry(netdev, cmd);
2983 break;
2984 case ETHTOOL_GRXCLSRLALL:
2985 ret = gem_get_all_flow_entries(netdev, cmd, rule_locs);
2986 break;
2987 default:
2988 netdev_err(netdev,
2989 "Command parameter %d is not supported\n", cmd->cmd);
2990 ret = -EOPNOTSUPP;
2991 }
2992
2993 return ret;
2994}
2995
2996static int gem_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
2997{
2998 struct macb *bp = netdev_priv(netdev);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002999 int ret;
3000
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003001 switch (cmd->cmd) {
3002 case ETHTOOL_SRXCLSRLINS:
3003 if ((cmd->fs.location >= bp->max_tuples)
3004 || (cmd->fs.ring_cookie >= bp->num_queues)) {
3005 ret = -EINVAL;
3006 break;
3007 }
3008 ret = gem_add_flow_filter(netdev, cmd);
3009 break;
3010 case ETHTOOL_SRXCLSRLDEL:
3011 ret = gem_del_flow_filter(netdev, cmd);
3012 break;
3013 default:
3014 netdev_err(netdev,
3015 "Command parameter %d is not supported\n", cmd->cmd);
3016 ret = -EOPNOTSUPP;
3017 }
3018
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003019 return ret;
3020}
3021
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003022static const struct ethtool_ops macb_ethtool_ops = {
Nicolas Ferred1d1b532012-10-31 06:04:56 +00003023 .get_regs_len = macb_get_regs_len,
3024 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003025 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00003026 .get_ts_info = ethtool_op_get_ts_info,
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003027 .get_wol = macb_get_wol,
3028 .set_wol = macb_set_wol,
Philippe Reynes176275a2016-06-22 00:32:36 +02003029 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3030 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Zach Brown8441bb32016-10-19 09:56:58 -05003031 .get_ringparam = macb_get_ringparam,
3032 .set_ringparam = macb_set_ringparam,
Xander Huff8cd5a562015-01-15 15:55:20 -06003033};
Xander Huff8cd5a562015-01-15 15:55:20 -06003034
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00003035static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06003036 .get_regs_len = macb_get_regs_len,
3037 .get_regs = macb_get_regs,
3038 .get_link = ethtool_op_get_link,
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003039 .get_ts_info = macb_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06003040 .get_ethtool_stats = gem_get_ethtool_stats,
3041 .get_strings = gem_get_ethtool_strings,
3042 .get_sset_count = gem_get_sset_count,
Philippe Reynes176275a2016-06-22 00:32:36 +02003043 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3044 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Zach Brown8441bb32016-10-19 09:56:58 -05003045 .get_ringparam = macb_get_ringparam,
3046 .set_ringparam = macb_set_ringparam,
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003047 .get_rxnfc = gem_get_rxnfc,
3048 .set_rxnfc = gem_set_rxnfc,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003049};
3050
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003051static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003052{
Philippe Reynes0a912812016-06-22 00:32:35 +02003053 struct phy_device *phydev = dev->phydev;
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003054 struct macb *bp = netdev_priv(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003055
3056 if (!netif_running(dev))
3057 return -EINVAL;
3058
frederic RODO6c36a702007-07-12 19:07:24 +02003059 if (!phydev)
3060 return -ENODEV;
3061
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003062 if (!bp->ptp_info)
3063 return phy_mii_ioctl(phydev, rq, cmd);
3064
3065 switch (cmd) {
3066 case SIOCSHWTSTAMP:
3067 return bp->ptp_info->set_hwtst(dev, rq, cmd);
3068 case SIOCGHWTSTAMP:
3069 return bp->ptp_info->get_hwtst(dev, rq);
3070 default:
3071 return phy_mii_ioctl(phydev, rq, cmd);
3072 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003073}
3074
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003075static int macb_set_features(struct net_device *netdev,
3076 netdev_features_t features)
3077{
3078 struct macb *bp = netdev_priv(netdev);
3079 netdev_features_t changed = features ^ netdev->features;
3080
3081 /* TX checksum offload */
3082 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
3083 u32 dmacfg;
3084
3085 dmacfg = gem_readl(bp, DMACFG);
3086 if (features & NETIF_F_HW_CSUM)
3087 dmacfg |= GEM_BIT(TXCOEN);
3088 else
3089 dmacfg &= ~GEM_BIT(TXCOEN);
3090 gem_writel(bp, DMACFG, dmacfg);
3091 }
3092
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003093 /* RX checksum offload */
3094 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
3095 u32 netcfg;
3096
3097 netcfg = gem_readl(bp, NCFGR);
3098 if (features & NETIF_F_RXCSUM &&
3099 !(netdev->flags & IFF_PROMISC))
3100 netcfg |= GEM_BIT(RXCOEN);
3101 else
3102 netcfg &= ~GEM_BIT(RXCOEN);
3103 gem_writel(bp, NCFGR, netcfg);
3104 }
3105
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003106 /* RX Flow Filters */
3107 if ((changed & NETIF_F_NTUPLE) && macb_is_gem(bp)) {
3108 bool turn_on = features & NETIF_F_NTUPLE;
3109
3110 gem_enable_flow_filters(bp, turn_on);
3111 }
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003112 return 0;
3113}
3114
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003115static const struct net_device_ops macb_netdev_ops = {
3116 .ndo_open = macb_open,
3117 .ndo_stop = macb_close,
3118 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003119 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003120 .ndo_get_stats = macb_get_stats,
3121 .ndo_do_ioctl = macb_ioctl,
3122 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05303123 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003124 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07003125#ifdef CONFIG_NET_POLL_CONTROLLER
3126 .ndo_poll_controller = macb_poll_controller,
3127#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003128 .ndo_set_features = macb_set_features,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00003129 .ndo_features_check = macb_features_check,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003130};
3131
Moritz Fischer64ec42f2016-03-29 19:11:12 -07003132/* Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02003133 * and integration options used
3134 */
Moritz Fischer64ec42f2016-03-29 19:11:12 -07003135static void macb_configure_caps(struct macb *bp,
3136 const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02003137{
3138 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02003139
Nicolas Ferref6970502015-03-31 15:02:01 +02003140 if (dt_conf)
3141 bp->caps = dt_conf->caps;
3142
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003143 if (hw_is_gem(bp->regs, bp->native_io)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02003144 bp->caps |= MACB_CAPS_MACB_IS_GEM;
3145
Nicolas Ferree1755872014-07-24 13:50:58 +02003146 dcfg = gem_readl(bp, DCFG1);
3147 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
3148 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
3149 dcfg = gem_readl(bp, DCFG2);
3150 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
3151 bp->caps |= MACB_CAPS_FIFO_MODE;
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003152#ifdef CONFIG_MACB_USE_HWSTAMP
3153 if (gem_has_ptp(bp)) {
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003154 if (!GEM_BFEXT(TSU, gem_readl(bp, DCFG5)))
3155 pr_err("GEM doesn't support hardware ptp.\n");
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003156 else {
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003157 bp->hw_dma_cap |= HW_DMA_CAP_PTP;
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003158 bp->ptp_info = &gem_ptp_info;
3159 }
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003160 }
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003161#endif
Nicolas Ferree1755872014-07-24 13:50:58 +02003162 }
3163
Andy Shevchenkoa35919e2015-07-24 21:24:01 +03003164 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
Nicolas Ferree1755872014-07-24 13:50:58 +02003165}
3166
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003167static void macb_probe_queues(void __iomem *mem,
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003168 bool native_io,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003169 unsigned int *queue_mask,
3170 unsigned int *num_queues)
3171{
3172 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003173
3174 *queue_mask = 0x1;
3175 *num_queues = 1;
3176
Nicolas Ferreda120112015-03-31 15:02:00 +02003177 /* is it macb or gem ?
3178 *
3179 * We need to read directly from the hardware here because
3180 * we are early in the probe process and don't have the
3181 * MACB_CAPS_MACB_IS_GEM flag positioned
3182 */
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003183 if (!hw_is_gem(mem, native_io))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003184 return;
3185
3186 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05303187 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
3188
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003189 *queue_mask |= 0x1;
3190
3191 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
3192 if (*queue_mask & (1 << hw_q))
3193 (*num_queues)++;
3194}
3195
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003196static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303197 struct clk **hclk, struct clk **tx_clk,
3198 struct clk **rx_clk)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003199{
Bartosz Folta83a77e92016-12-14 06:39:15 +00003200 struct macb_platform_data *pdata;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003201 int err;
3202
Bartosz Folta83a77e92016-12-14 06:39:15 +00003203 pdata = dev_get_platdata(&pdev->dev);
3204 if (pdata) {
3205 *pclk = pdata->pclk;
3206 *hclk = pdata->hclk;
3207 } else {
3208 *pclk = devm_clk_get(&pdev->dev, "pclk");
3209 *hclk = devm_clk_get(&pdev->dev, "hclk");
3210 }
3211
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003212 if (IS_ERR(*pclk)) {
3213 err = PTR_ERR(*pclk);
3214 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
3215 return err;
3216 }
3217
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003218 if (IS_ERR(*hclk)) {
3219 err = PTR_ERR(*hclk);
3220 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
3221 return err;
3222 }
3223
3224 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
3225 if (IS_ERR(*tx_clk))
3226 *tx_clk = NULL;
3227
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303228 *rx_clk = devm_clk_get(&pdev->dev, "rx_clk");
3229 if (IS_ERR(*rx_clk))
3230 *rx_clk = NULL;
3231
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003232 err = clk_prepare_enable(*pclk);
3233 if (err) {
3234 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
3235 return err;
3236 }
3237
3238 err = clk_prepare_enable(*hclk);
3239 if (err) {
3240 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
3241 goto err_disable_pclk;
3242 }
3243
3244 err = clk_prepare_enable(*tx_clk);
3245 if (err) {
3246 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
3247 goto err_disable_hclk;
3248 }
3249
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303250 err = clk_prepare_enable(*rx_clk);
3251 if (err) {
3252 dev_err(&pdev->dev, "failed to enable rx_clk (%u)\n", err);
3253 goto err_disable_txclk;
3254 }
3255
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003256 return 0;
3257
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303258err_disable_txclk:
3259 clk_disable_unprepare(*tx_clk);
3260
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003261err_disable_hclk:
3262 clk_disable_unprepare(*hclk);
3263
3264err_disable_pclk:
3265 clk_disable_unprepare(*pclk);
3266
3267 return err;
3268}
3269
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003270static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003271{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003272 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003273 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003274 struct macb *bp = netdev_priv(dev);
3275 struct macb_queue *queue;
3276 int err;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003277 u32 val, reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003278
Zach Brownb410d132016-10-19 09:56:57 -05003279 bp->tx_ring_size = DEFAULT_TX_RING_SIZE;
3280 bp->rx_ring_size = DEFAULT_RX_RING_SIZE;
3281
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003282 /* set the queue register mapping once for all: queue0 has a special
3283 * register mapping but we don't want to test the queue index then
3284 * compute the corresponding register offset at run time.
3285 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003286 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003287 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003288 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00003289
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003290 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003291 queue->bp = bp;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003292 netif_napi_add(dev, &queue->napi, macb_poll, 64);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003293 if (hw_q) {
3294 queue->ISR = GEM_ISR(hw_q - 1);
3295 queue->IER = GEM_IER(hw_q - 1);
3296 queue->IDR = GEM_IDR(hw_q - 1);
3297 queue->IMR = GEM_IMR(hw_q - 1);
3298 queue->TBQP = GEM_TBQP(hw_q - 1);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003299 queue->RBQP = GEM_RBQP(hw_q - 1);
3300 queue->RBQS = GEM_RBQS(hw_q - 1);
Harini Katakamfff80192016-08-09 13:15:53 +05303301#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003302 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003303 queue->TBQPH = GEM_TBQPH(hw_q - 1);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003304 queue->RBQPH = GEM_RBQPH(hw_q - 1);
3305 }
Harini Katakamfff80192016-08-09 13:15:53 +05303306#endif
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003307 } else {
3308 /* queue0 uses legacy registers */
3309 queue->ISR = MACB_ISR;
3310 queue->IER = MACB_IER;
3311 queue->IDR = MACB_IDR;
3312 queue->IMR = MACB_IMR;
3313 queue->TBQP = MACB_TBQP;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003314 queue->RBQP = MACB_RBQP;
Harini Katakamfff80192016-08-09 13:15:53 +05303315#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003316 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003317 queue->TBQPH = MACB_TBQPH;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003318 queue->RBQPH = MACB_RBQPH;
3319 }
Harini Katakamfff80192016-08-09 13:15:53 +05303320#endif
Soren Brinkmanne1824df2013-12-10 16:07:23 -08003321 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08003322
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003323 /* get irq: here we use the linux queue index, not the hardware
3324 * queue index. the queue irq definitions in the device tree
3325 * must remove the optional gaps that could exist in the
3326 * hardware queue mask.
3327 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003328 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003329 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01003330 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003331 if (err) {
3332 dev_err(&pdev->dev,
3333 "Unable to request IRQ %d (error %d)\n",
3334 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003335 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003336 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003337
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003338 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003339 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003340 }
3341
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003342 dev->netdev_ops = &macb_netdev_ops;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003343
Nicolas Ferre4df95132013-06-04 21:57:12 +00003344 /* setup appropriated routines according to adapter type */
3345 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003346 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003347 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
3348 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
3349 bp->macbgem_ops.mog_init_rings = gem_init_rings;
3350 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06003351 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003352 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003353 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003354 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
3355 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
3356 bp->macbgem_ops.mog_init_rings = macb_init_rings;
3357 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06003358 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003359 }
3360
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003361 /* Set features */
3362 dev->hw_features = NETIF_F_SG;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00003363
3364 /* Check LSO capability */
3365 if (GEM_BFEXT(PBUF_LSO, gem_readl(bp, DCFG6)))
3366 dev->hw_features |= MACB_NETIF_LSO;
3367
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003368 /* Checksum offload is only available on gem with packet buffer */
3369 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003370 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003371 if (bp->caps & MACB_CAPS_SG_DISABLED)
3372 dev->hw_features &= ~NETIF_F_SG;
3373 dev->features = dev->hw_features;
3374
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003375 /* Check RX Flow Filters support.
3376 * Max Rx flows set by availability of screeners & compare regs:
3377 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
3378 */
3379 reg = gem_readl(bp, DCFG8);
3380 bp->max_tuples = min((GEM_BFEXT(SCR2CMP, reg) / 3),
3381 GEM_BFEXT(T2SCR, reg));
3382 if (bp->max_tuples > 0) {
3383 /* also needs one ethtype match to check IPv4 */
3384 if (GEM_BFEXT(SCR2ETH, reg) > 0) {
3385 /* program this reg now */
3386 reg = 0;
3387 reg = GEM_BFINS(ETHTCMP, (uint16_t)ETH_P_IP, reg);
3388 gem_writel_n(bp, ETHT, SCRT2_ETHT, reg);
3389 /* Filtering is supported in hw but don't enable it in kernel now */
3390 dev->hw_features |= NETIF_F_NTUPLE;
3391 /* init Rx flow definitions */
3392 INIT_LIST_HEAD(&bp->rx_fs_list.list);
3393 bp->rx_fs_list.count = 0;
3394 spin_lock_init(&bp->rx_fs_lock);
3395 } else
3396 bp->max_tuples = 0;
3397 }
3398
Neil Armstrongce721a72016-01-05 14:39:16 +01003399 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
3400 val = 0;
3401 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
3402 val = GEM_BIT(RGMII);
3403 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003404 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01003405 val = MACB_BIT(RMII);
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003406 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01003407 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003408
Neil Armstrongce721a72016-01-05 14:39:16 +01003409 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
3410 val |= MACB_BIT(CLKEN);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003411
Neil Armstrongce721a72016-01-05 14:39:16 +01003412 macb_or_gem_writel(bp, USRIO, val);
3413 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003414
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003415 /* Set MII management clock divider */
3416 val = macb_mdc_clk_div(bp);
3417 val |= macb_dbw(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05303418 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
3419 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003420 macb_writel(bp, NCFGR, val);
3421
3422 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003423}
3424
3425#if defined(CONFIG_OF)
3426/* 1518 rounded up */
3427#define AT91ETHER_MAX_RBUFF_SZ 0x600
3428/* max number of receive buffers */
3429#define AT91ETHER_MAX_RX_DESCR 9
3430
3431/* Initialize and start the Receiver and Transmit subsystems */
3432static int at91ether_start(struct net_device *dev)
3433{
3434 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003435 struct macb_queue *q = &lp->queues[0];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003436 struct macb_dma_desc *desc;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003437 dma_addr_t addr;
3438 u32 ctl;
3439 int i;
3440
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003441 q->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003442 (AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003443 macb_dma_desc_get_size(lp)),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003444 &q->rx_ring_dma, GFP_KERNEL);
3445 if (!q->rx_ring)
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003446 return -ENOMEM;
3447
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003448 q->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003449 AT91ETHER_MAX_RX_DESCR *
3450 AT91ETHER_MAX_RBUFF_SZ,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003451 &q->rx_buffers_dma, GFP_KERNEL);
3452 if (!q->rx_buffers) {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003453 dma_free_coherent(&lp->pdev->dev,
3454 AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003455 macb_dma_desc_get_size(lp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003456 q->rx_ring, q->rx_ring_dma);
3457 q->rx_ring = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003458 return -ENOMEM;
3459 }
3460
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003461 addr = q->rx_buffers_dma;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003462 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003463 desc = macb_rx_desc(q, i);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003464 macb_set_addr(lp, desc, addr);
3465 desc->ctrl = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003466 addr += AT91ETHER_MAX_RBUFF_SZ;
3467 }
3468
3469 /* Set the Wrap bit on the last descriptor */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003470 desc->addr |= MACB_BIT(RX_WRAP);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003471
3472 /* Reset buffer index */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003473 q->rx_tail = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003474
3475 /* Program address of descriptor list in Rx Buffer Queue register */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003476 macb_writel(lp, RBQP, q->rx_ring_dma);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003477
3478 /* Enable Receive and Transmit */
3479 ctl = macb_readl(lp, NCR);
3480 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
3481
3482 return 0;
3483}
3484
3485/* Open the ethernet interface */
3486static int at91ether_open(struct net_device *dev)
3487{
3488 struct macb *lp = netdev_priv(dev);
3489 u32 ctl;
3490 int ret;
3491
3492 /* Clear internal statistics */
3493 ctl = macb_readl(lp, NCR);
3494 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
3495
3496 macb_set_hwaddr(lp);
3497
3498 ret = at91ether_start(dev);
3499 if (ret)
3500 return ret;
3501
3502 /* Enable MAC interrupts */
3503 macb_writel(lp, IER, MACB_BIT(RCOMP) |
3504 MACB_BIT(RXUBR) |
3505 MACB_BIT(ISR_TUND) |
3506 MACB_BIT(ISR_RLE) |
3507 MACB_BIT(TCOMP) |
3508 MACB_BIT(ISR_ROVR) |
3509 MACB_BIT(HRESP));
3510
3511 /* schedule a link state check */
Philippe Reynes0a912812016-06-22 00:32:35 +02003512 phy_start(dev->phydev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003513
3514 netif_start_queue(dev);
3515
3516 return 0;
3517}
3518
3519/* Close the interface */
3520static int at91ether_close(struct net_device *dev)
3521{
3522 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003523 struct macb_queue *q = &lp->queues[0];
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003524 u32 ctl;
3525
3526 /* Disable Receiver and Transmitter */
3527 ctl = macb_readl(lp, NCR);
3528 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
3529
3530 /* Disable MAC interrupts */
3531 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
3532 MACB_BIT(RXUBR) |
3533 MACB_BIT(ISR_TUND) |
3534 MACB_BIT(ISR_RLE) |
3535 MACB_BIT(TCOMP) |
3536 MACB_BIT(ISR_ROVR) |
3537 MACB_BIT(HRESP));
3538
3539 netif_stop_queue(dev);
3540
3541 dma_free_coherent(&lp->pdev->dev,
3542 AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003543 macb_dma_desc_get_size(lp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003544 q->rx_ring, q->rx_ring_dma);
3545 q->rx_ring = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003546
3547 dma_free_coherent(&lp->pdev->dev,
3548 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003549 q->rx_buffers, q->rx_buffers_dma);
3550 q->rx_buffers = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003551
3552 return 0;
3553}
3554
3555/* Transmit packet */
3556static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
3557{
3558 struct macb *lp = netdev_priv(dev);
3559
3560 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
3561 netif_stop_queue(dev);
3562
3563 /* Store packet information (to free when Tx completed) */
3564 lp->skb = skb;
3565 lp->skb_length = skb->len;
3566 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
3567 DMA_TO_DEVICE);
Alexey Khoroshilov178c7ae2016-11-19 01:40:10 +03003568 if (dma_mapping_error(NULL, lp->skb_physaddr)) {
3569 dev_kfree_skb_any(skb);
3570 dev->stats.tx_dropped++;
3571 netdev_err(dev, "%s: DMA mapping error\n", __func__);
3572 return NETDEV_TX_OK;
3573 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003574
3575 /* Set address of the data in the Transmit Address register */
3576 macb_writel(lp, TAR, lp->skb_physaddr);
3577 /* Set length of the packet in the Transmit Control register */
3578 macb_writel(lp, TCR, skb->len);
3579
3580 } else {
3581 netdev_err(dev, "%s called, but device is busy!\n", __func__);
3582 return NETDEV_TX_BUSY;
3583 }
3584
3585 return NETDEV_TX_OK;
3586}
3587
3588/* Extract received frame from buffer descriptors and sent to upper layers.
3589 * (Called from interrupt context)
3590 */
3591static void at91ether_rx(struct net_device *dev)
3592{
3593 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003594 struct macb_queue *q = &lp->queues[0];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003595 struct macb_dma_desc *desc;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003596 unsigned char *p_recv;
3597 struct sk_buff *skb;
3598 unsigned int pktlen;
3599
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003600 desc = macb_rx_desc(q, q->rx_tail);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003601 while (desc->addr & MACB_BIT(RX_USED)) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003602 p_recv = q->rx_buffers + q->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003603 pktlen = MACB_BF(RX_FRMLEN, desc->ctrl);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003604 skb = netdev_alloc_skb(dev, pktlen + 2);
3605 if (skb) {
3606 skb_reserve(skb, 2);
Johannes Berg59ae1d12017-06-16 14:29:20 +02003607 skb_put_data(skb, p_recv, pktlen);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003608
3609 skb->protocol = eth_type_trans(skb, dev);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003610 dev->stats.rx_packets++;
3611 dev->stats.rx_bytes += pktlen;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003612 netif_rx(skb);
3613 } else {
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003614 dev->stats.rx_dropped++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003615 }
3616
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003617 if (desc->ctrl & MACB_BIT(RX_MHASH_MATCH))
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003618 dev->stats.multicast++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003619
3620 /* reset ownership bit */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003621 desc->addr &= ~MACB_BIT(RX_USED);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003622
3623 /* wrap after last buffer */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003624 if (q->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
3625 q->rx_tail = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003626 else
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003627 q->rx_tail++;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003628
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003629 desc = macb_rx_desc(q, q->rx_tail);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003630 }
3631}
3632
3633/* MAC interrupt handler */
3634static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
3635{
3636 struct net_device *dev = dev_id;
3637 struct macb *lp = netdev_priv(dev);
3638 u32 intstatus, ctl;
3639
3640 /* MAC Interrupt Status register indicates what interrupts are pending.
3641 * It is automatically cleared once read.
3642 */
3643 intstatus = macb_readl(lp, ISR);
3644
3645 /* Receive complete */
3646 if (intstatus & MACB_BIT(RCOMP))
3647 at91ether_rx(dev);
3648
3649 /* Transmit complete */
3650 if (intstatus & MACB_BIT(TCOMP)) {
3651 /* The TCOM bit is set even if the transmission failed */
3652 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003653 dev->stats.tx_errors++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003654
3655 if (lp->skb) {
3656 dev_kfree_skb_irq(lp->skb);
3657 lp->skb = NULL;
3658 dma_unmap_single(NULL, lp->skb_physaddr,
3659 lp->skb_length, DMA_TO_DEVICE);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003660 dev->stats.tx_packets++;
3661 dev->stats.tx_bytes += lp->skb_length;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003662 }
3663 netif_wake_queue(dev);
3664 }
3665
3666 /* Work-around for EMAC Errata section 41.3.1 */
3667 if (intstatus & MACB_BIT(RXUBR)) {
3668 ctl = macb_readl(lp, NCR);
3669 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
Zumeng Chenffac0e92016-11-28 21:55:00 +08003670 wmb();
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003671 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
3672 }
3673
3674 if (intstatus & MACB_BIT(ISR_ROVR))
3675 netdev_err(dev, "ROVR error\n");
3676
3677 return IRQ_HANDLED;
3678}
3679
3680#ifdef CONFIG_NET_POLL_CONTROLLER
3681static void at91ether_poll_controller(struct net_device *dev)
3682{
3683 unsigned long flags;
3684
3685 local_irq_save(flags);
3686 at91ether_interrupt(dev->irq, dev);
3687 local_irq_restore(flags);
3688}
3689#endif
3690
3691static const struct net_device_ops at91ether_netdev_ops = {
3692 .ndo_open = at91ether_open,
3693 .ndo_stop = at91ether_close,
3694 .ndo_start_xmit = at91ether_start_xmit,
3695 .ndo_get_stats = macb_get_stats,
3696 .ndo_set_rx_mode = macb_set_rx_mode,
3697 .ndo_set_mac_address = eth_mac_addr,
3698 .ndo_do_ioctl = macb_ioctl,
3699 .ndo_validate_addr = eth_validate_addr,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003700#ifdef CONFIG_NET_POLL_CONTROLLER
3701 .ndo_poll_controller = at91ether_poll_controller,
3702#endif
3703};
3704
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003705static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303706 struct clk **hclk, struct clk **tx_clk,
3707 struct clk **rx_clk)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003708{
3709 int err;
3710
3711 *hclk = NULL;
3712 *tx_clk = NULL;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303713 *rx_clk = NULL;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003714
3715 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
3716 if (IS_ERR(*pclk))
3717 return PTR_ERR(*pclk);
3718
3719 err = clk_prepare_enable(*pclk);
3720 if (err) {
3721 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
3722 return err;
3723 }
3724
3725 return 0;
3726}
3727
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003728static int at91ether_init(struct platform_device *pdev)
3729{
3730 struct net_device *dev = platform_get_drvdata(pdev);
3731 struct macb *bp = netdev_priv(dev);
3732 int err;
3733 u32 reg;
3734
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003735 dev->netdev_ops = &at91ether_netdev_ops;
3736 dev->ethtool_ops = &macb_ethtool_ops;
3737
3738 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
3739 0, dev->name, dev);
3740 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003741 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003742
3743 macb_writel(bp, NCR, 0);
3744
3745 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
3746 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
3747 reg |= MACB_BIT(RM9200_RMII);
3748
3749 macb_writel(bp, NCFGR, reg);
3750
3751 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003752}
3753
David S. Miller3cef5c52015-03-09 23:38:02 -04003754static const struct macb_config at91sam9260_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003755 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003756 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003757 .init = macb_init,
3758};
3759
David S. Miller3cef5c52015-03-09 23:38:02 -04003760static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003761 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
3762 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003763 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003764 .init = macb_init,
3765};
3766
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003767static const struct macb_config sama5d2_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003768 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003769 .dma_burst_length = 16,
3770 .clk_init = macb_clk_init,
3771 .init = macb_init,
3772};
3773
David S. Miller3cef5c52015-03-09 23:38:02 -04003774static const struct macb_config sama5d3_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003775 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
vishnuvardhan233a1582017-07-05 17:36:16 +02003776 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003777 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003778 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003779 .init = macb_init,
vishnuvardhan233a1582017-07-05 17:36:16 +02003780 .jumbo_max_len = 10240,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003781};
3782
David S. Miller3cef5c52015-03-09 23:38:02 -04003783static const struct macb_config sama5d4_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003784 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003785 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003786 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003787 .init = macb_init,
3788};
3789
David S. Miller3cef5c52015-03-09 23:38:02 -04003790static const struct macb_config emac_config = {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003791 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003792 .init = at91ether_init,
3793};
3794
Neil Armstronge611b5b2016-01-05 14:39:17 +01003795static const struct macb_config np4_config = {
3796 .caps = MACB_CAPS_USRIO_DISABLED,
3797 .clk_init = macb_clk_init,
3798 .init = macb_init,
3799};
David S. Miller36583eb2015-05-23 01:22:35 -04003800
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303801static const struct macb_config zynqmp_config = {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003802 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
3803 MACB_CAPS_JUMBO |
3804 MACB_CAPS_GEM_HAS_PTP,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303805 .dma_burst_length = 16,
3806 .clk_init = macb_clk_init,
3807 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05303808 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303809};
3810
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05003811static const struct macb_config zynq_config = {
Punnaiah Choudary Kalluri7baaa902015-07-06 10:02:53 +05303812 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF,
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05003813 .dma_burst_length = 16,
3814 .clk_init = macb_clk_init,
3815 .init = macb_init,
3816};
3817
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003818static const struct of_device_id macb_dt_ids[] = {
3819 { .compatible = "cdns,at32ap7000-macb" },
3820 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
3821 { .compatible = "cdns,macb" },
Neil Armstronge611b5b2016-01-05 14:39:17 +01003822 { .compatible = "cdns,np4-macb", .data = &np4_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003823 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
3824 { .compatible = "cdns,gem", .data = &pc302gem_config },
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003825 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003826 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
3827 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
3828 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
3829 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303830 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05003831 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003832 { /* sentinel */ }
3833};
3834MODULE_DEVICE_TABLE(of, macb_dt_ids);
3835#endif /* CONFIG_OF */
3836
Bartosz Folta83a77e92016-12-14 06:39:15 +00003837static const struct macb_config default_gem_config = {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003838 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
3839 MACB_CAPS_JUMBO |
3840 MACB_CAPS_GEM_HAS_PTP,
Bartosz Folta83a77e92016-12-14 06:39:15 +00003841 .dma_burst_length = 16,
3842 .clk_init = macb_clk_init,
3843 .init = macb_init,
3844 .jumbo_max_len = 10240,
3845};
3846
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003847static int macb_probe(struct platform_device *pdev)
3848{
Bartosz Folta83a77e92016-12-14 06:39:15 +00003849 const struct macb_config *macb_config = &default_gem_config;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003850 int (*clk_init)(struct platform_device *, struct clk **,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303851 struct clk **, struct clk **, struct clk **)
Bartosz Folta83a77e92016-12-14 06:39:15 +00003852 = macb_config->clk_init;
3853 int (*init)(struct platform_device *) = macb_config->init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003854 struct device_node *np = pdev->dev.of_node;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303855 struct clk *pclk, *hclk = NULL, *tx_clk = NULL, *rx_clk = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003856 unsigned int queue_mask, num_queues;
3857 struct macb_platform_data *pdata;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003858 bool native_io;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003859 struct phy_device *phydev;
3860 struct net_device *dev;
3861 struct resource *regs;
3862 void __iomem *mem;
3863 const char *mac;
3864 struct macb *bp;
3865 int err;
3866
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003867 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3868 mem = devm_ioremap_resource(&pdev->dev, regs);
3869 if (IS_ERR(mem))
3870 return PTR_ERR(mem);
3871
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003872 if (np) {
3873 const struct of_device_id *match;
3874
3875 match = of_match_node(macb_dt_ids, np);
3876 if (match && match->data) {
3877 macb_config = match->data;
3878 clk_init = macb_config->clk_init;
3879 init = macb_config->init;
3880 }
3881 }
3882
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303883 err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003884 if (err)
3885 return err;
3886
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003887 native_io = hw_is_native_io(mem);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003888
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003889 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003890 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003891 if (!dev) {
3892 err = -ENOMEM;
3893 goto err_disable_clocks;
3894 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003895
3896 dev->base_addr = regs->start;
3897
3898 SET_NETDEV_DEV(dev, &pdev->dev);
3899
3900 bp = netdev_priv(dev);
3901 bp->pdev = pdev;
3902 bp->dev = dev;
3903 bp->regs = mem;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003904 bp->native_io = native_io;
3905 if (native_io) {
David S. Miller7a6e0702015-07-27 14:24:48 -07003906 bp->macb_reg_readl = hw_readl_native;
3907 bp->macb_reg_writel = hw_writel_native;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003908 } else {
David S. Miller7a6e0702015-07-27 14:24:48 -07003909 bp->macb_reg_readl = hw_readl;
3910 bp->macb_reg_writel = hw_writel;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03003911 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003912 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003913 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003914 if (macb_config)
3915 bp->dma_burst_length = macb_config->dma_burst_length;
3916 bp->pclk = pclk;
3917 bp->hclk = hclk;
3918 bp->tx_clk = tx_clk;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303919 bp->rx_clk = rx_clk;
Andy Shevchenkof36dbe62015-07-24 21:24:00 +03003920 if (macb_config)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05303921 bp->jumbo_max_len = macb_config->jumbo_max_len;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05303922
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003923 bp->wol = 0;
Sergio Prado7c4a1d02016-02-16 21:10:45 -02003924 if (of_get_property(np, "magic-packet", NULL))
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003925 bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
3926 device_init_wakeup(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
3927
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003928 spin_lock_init(&bp->lock);
3929
Nicolas Ferread783472015-03-31 15:02:02 +02003930 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02003931 macb_configure_caps(bp, macb_config);
3932
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003933#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3934 if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) {
3935 dma_set_mask(&pdev->dev, DMA_BIT_MASK(44));
3936 bp->hw_dma_cap |= HW_DMA_CAP_64B;
3937 }
3938#endif
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003939 platform_set_drvdata(pdev, dev);
3940
3941 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003942 if (dev->irq < 0) {
3943 err = dev->irq;
Wei Yongjunb22ae0b2016-08-12 15:43:54 +00003944 goto err_out_free_netdev;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003945 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003946
Jarod Wilson44770e12016-10-17 15:54:17 -04003947 /* MTU range: 68 - 1500 or 10240 */
3948 dev->min_mtu = GEM_MTU_MIN_SIZE;
3949 if (bp->caps & MACB_CAPS_JUMBO)
3950 dev->max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
3951 else
3952 dev->max_mtu = ETH_DATA_LEN;
3953
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003954 mac = of_get_mac_address(np);
Mike Looijmansaa076e32018-03-29 07:29:49 +02003955 if (mac) {
Moritz Fischereefb52d2016-03-29 19:11:14 -07003956 ether_addr_copy(bp->dev->dev_addr, mac);
Mike Looijmansaa076e32018-03-29 07:29:49 +02003957 } else {
3958 err = of_get_nvmem_mac_address(np, bp->dev->dev_addr);
3959 if (err) {
3960 if (err == -EPROBE_DEFER)
3961 goto err_out_free_netdev;
3962 macb_get_hwaddr(bp);
3963 }
3964 }
frederic RODO6c36a702007-07-12 19:07:24 +02003965
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003966 err = of_get_phy_mode(np);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01003967 if (err < 0) {
Jingoo Hanc607a0d2013-08-30 14:12:21 +09003968 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01003969 if (pdata && pdata->is_rmii)
3970 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
3971 else
3972 bp->phy_interface = PHY_INTERFACE_MODE_MII;
3973 } else {
3974 bp->phy_interface = err;
3975 }
3976
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003977 /* IP specific init */
3978 err = init(pdev);
3979 if (err)
3980 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003981
Florian Fainellicf669662016-05-02 18:38:45 -07003982 err = macb_mii_init(bp);
3983 if (err)
3984 goto err_out_free_netdev;
3985
Philippe Reynes0a912812016-06-22 00:32:35 +02003986 phydev = dev->phydev;
Florian Fainellicf669662016-05-02 18:38:45 -07003987
3988 netif_carrier_off(dev);
3989
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003990 err = register_netdev(dev);
3991 if (err) {
3992 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Florian Fainellicf669662016-05-02 18:38:45 -07003993 goto err_out_unregister_mdio;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003994 }
3995
Harini Katakam032dc412018-01-27 12:09:01 +05303996 tasklet_init(&bp->hresp_err_tasklet, macb_hresp_error_task,
3997 (unsigned long)bp);
3998
Florian Fainellicf669662016-05-02 18:38:45 -07003999 phy_attached_info(phydev);
Nicolas Ferre03fc4722012-07-03 23:14:13 +00004000
Bo Shen58798232014-09-13 01:57:49 +02004001 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
4002 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
4003 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004004
4005 return 0;
4006
Florian Fainellicf669662016-05-02 18:38:45 -07004007err_out_unregister_mdio:
Philippe Reynes0a912812016-06-22 00:32:35 +02004008 phy_disconnect(dev->phydev);
Florian Fainellicf669662016-05-02 18:38:45 -07004009 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik66ee6a02017-11-08 09:56:35 +01004010 of_node_put(bp->phy_node);
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004011 if (np && of_phy_is_fixed_link(np))
4012 of_phy_deregister_fixed_link(np);
Florian Fainellicf669662016-05-02 18:38:45 -07004013 mdiobus_free(bp->mii_bus);
4014
Cyrille Pitchencf250de2014-12-15 15:13:32 +01004015err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004016 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004017
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004018err_disable_clocks:
4019 clk_disable_unprepare(tx_clk);
4020 clk_disable_unprepare(hclk);
4021 clk_disable_unprepare(pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304022 clk_disable_unprepare(rx_clk);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004023
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004024 return err;
4025}
4026
Nicolae Rosia9e86d762015-01-22 17:31:05 +00004027static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004028{
4029 struct net_device *dev;
4030 struct macb *bp;
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004031 struct device_node *np = pdev->dev.of_node;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004032
4033 dev = platform_get_drvdata(pdev);
4034
4035 if (dev) {
4036 bp = netdev_priv(dev);
Philippe Reynes0a912812016-06-22 00:32:35 +02004037 if (dev->phydev)
4038 phy_disconnect(dev->phydev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07004039 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004040 if (np && of_phy_is_fixed_link(np))
4041 of_phy_deregister_fixed_link(np);
Nathan Sullivanfa6114d2016-10-07 10:13:22 -05004042 dev->phydev = NULL;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07004043 mdiobus_free(bp->mii_bus);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01004044
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004045 unregister_netdev(dev);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01004046 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00004047 clk_disable_unprepare(bp->hclk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00004048 clk_disable_unprepare(bp->pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304049 clk_disable_unprepare(bp->rx_clk);
Michael Grzeschikdacdbb42017-06-23 16:54:10 +02004050 of_node_put(bp->phy_node);
Cyrille Pitchene965be72014-12-15 15:13:31 +01004051 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004052 }
4053
4054 return 0;
4055}
4056
Michal Simekd23823d2015-01-23 09:36:03 +01004057static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004058{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004059 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004060 struct net_device *netdev = platform_get_drvdata(pdev);
4061 struct macb *bp = netdev_priv(netdev);
4062
Nicolas Ferre03fc4722012-07-03 23:14:13 +00004063 netif_carrier_off(netdev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004064 netif_device_detach(netdev);
4065
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004066 if (bp->wol & MACB_WOL_ENABLED) {
4067 macb_writel(bp, IER, MACB_BIT(WOL));
4068 macb_writel(bp, WOL, MACB_BIT(MAG));
4069 enable_irq_wake(bp->queues[0].irq);
4070 } else {
4071 clk_disable_unprepare(bp->tx_clk);
4072 clk_disable_unprepare(bp->hclk);
4073 clk_disable_unprepare(bp->pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304074 clk_disable_unprepare(bp->rx_clk);
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004075 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004076
4077 return 0;
4078}
4079
Michal Simekd23823d2015-01-23 09:36:03 +01004080static int __maybe_unused macb_resume(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004081{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004082 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004083 struct net_device *netdev = platform_get_drvdata(pdev);
4084 struct macb *bp = netdev_priv(netdev);
4085
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004086 if (bp->wol & MACB_WOL_ENABLED) {
4087 macb_writel(bp, IDR, MACB_BIT(WOL));
4088 macb_writel(bp, WOL, 0);
4089 disable_irq_wake(bp->queues[0].irq);
4090 } else {
4091 clk_prepare_enable(bp->pclk);
4092 clk_prepare_enable(bp->hclk);
4093 clk_prepare_enable(bp->tx_clk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304094 clk_prepare_enable(bp->rx_clk);
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004095 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004096
4097 netif_device_attach(netdev);
4098
4099 return 0;
4100}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004101
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004102static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
4103
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004104static struct platform_driver macb_driver = {
Nicolae Rosia9e86d762015-01-22 17:31:05 +00004105 .probe = macb_probe,
4106 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004107 .driver = {
4108 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004109 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004110 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004111 },
4112};
4113
Nicolae Rosia9e86d762015-01-22 17:31:05 +00004114module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004115
4116MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00004117MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02004118MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07004119MODULE_ALIAS("platform:macb");