blob: 262a28ff81fc7338e1408e27861f2c9b6a2bf9fb [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002/*
Jamie Ilesf75ba502011-11-08 10:12:32 +00003 * Cadence MACB/GEM Ethernet Controller driver
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004 *
5 * Copyright (C) 2004-2006 Atmel Corporation
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01006 */
7
Jamie Ilesc220f8c2011-03-08 20:27:08 +00008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01009#include <linux/clk.h>
Claudiu Beznea653e92a2018-08-07 12:25:14 +030010#include <linux/crc32.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010011#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/kernel.h>
14#include <linux/types.h>
Nicolas Ferre909a8582012-11-19 06:00:21 +000015#include <linux/circ_buf.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010016#include <linux/slab.h>
17#include <linux/init.h>
Soren Brinkmann60fe7162013-12-10 16:07:21 -080018#include <linux/io.h>
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +000019#include <linux/gpio.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010020#include <linux/gpio/consumer.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000021#include <linux/interrupt.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010022#include <linux/netdevice.h>
23#include <linux/etherdevice.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010024#include <linux/dma-mapping.h>
Jamie Iles84e0cdb2011-03-08 20:17:06 +000025#include <linux/platform_data/macb.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010026#include <linux/platform_device.h>
frederic RODO6c36a702007-07-12 19:07:24 +020027#include <linux/phy.h>
Olof Johanssonb17471f2011-12-20 13:13:07 -080028#include <linux/of.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010029#include <linux/of_device.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010030#include <linux/of_gpio.h>
Boris BREZILLON148cbb52013-08-22 17:57:28 +020031#include <linux/of_mdio.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010032#include <linux/of_net.h>
Rafal Ozieblo1629dd42016-11-16 10:02:34 +000033#include <linux/ip.h>
34#include <linux/udp.h>
35#include <linux/tcp.h>
Harini Katakam8beb79b2019-03-01 16:20:32 +053036#include <linux/iopoll.h>
Harini Katakamd54f89a2019-03-01 16:20:34 +053037#include <linux/pm_runtime.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
Harini Katakame5010702019-01-29 15:20:03 +053058#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(ISR_ROVR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000059#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
60 | MACB_BIT(ISR_RLE) \
61 | MACB_BIT(TXERR))
Claudiu Beznea42983882018-12-17 10:02:42 +000062#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP) \
63 | MACB_BIT(TXUBR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000064
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
Harini Katakamd54f89a2019-03-01 16:20:34 +053081#define MACB_PM_TIMEOUT 100 /* ms */
82
Harini Katakam8beb79b2019-03-01 16:20:32 +053083#define MACB_MDIO_TIMEOUT 1000000 /* in usecs */
84
Rafal Ozieblodc97a892017-01-27 15:08:20 +000085/* DMA buffer descriptor might be different size
Rafal Ozieblo7b429612017-06-29 07:12:51 +010086 * depends on hardware configuration:
87 *
88 * 1. dma address width 32 bits:
89 * word 1: 32 bit address of Data Buffer
90 * word 2: control
91 *
92 * 2. dma address width 64 bits:
93 * word 1: 32 bit address of Data Buffer
94 * word 2: control
95 * word 3: upper 32 bit address of Data Buffer
96 * word 4: unused
97 *
98 * 3. dma address width 32 bits with hardware timestamping:
99 * word 1: 32 bit address of Data Buffer
100 * word 2: control
101 * word 3: timestamp word 1
102 * word 4: timestamp word 2
103 *
104 * 4. dma address width 64 bits with hardware timestamping:
105 * word 1: 32 bit address of Data Buffer
106 * word 2: control
107 * word 3: upper 32 bit address of Data Buffer
108 * word 4: unused
109 * word 5: timestamp word 1
110 * word 6: timestamp word 2
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000111 */
112static unsigned int macb_dma_desc_get_size(struct macb *bp)
113{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100114#ifdef MACB_EXT_DESC
115 unsigned int desc_size;
116
117 switch (bp->hw_dma_cap) {
118 case HW_DMA_CAP_64B:
119 desc_size = sizeof(struct macb_dma_desc)
120 + sizeof(struct macb_dma_desc_64);
121 break;
122 case HW_DMA_CAP_PTP:
123 desc_size = sizeof(struct macb_dma_desc)
124 + sizeof(struct macb_dma_desc_ptp);
125 break;
126 case HW_DMA_CAP_64B_PTP:
127 desc_size = sizeof(struct macb_dma_desc)
128 + sizeof(struct macb_dma_desc_64)
129 + sizeof(struct macb_dma_desc_ptp);
130 break;
131 default:
132 desc_size = sizeof(struct macb_dma_desc);
133 }
134 return desc_size;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000135#endif
136 return sizeof(struct macb_dma_desc);
137}
138
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100139static unsigned int macb_adj_dma_desc_idx(struct macb *bp, unsigned int desc_idx)
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000140{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100141#ifdef MACB_EXT_DESC
142 switch (bp->hw_dma_cap) {
143 case HW_DMA_CAP_64B:
144 case HW_DMA_CAP_PTP:
145 desc_idx <<= 1;
146 break;
147 case HW_DMA_CAP_64B_PTP:
148 desc_idx *= 3;
149 break;
150 default:
151 break;
152 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000153#endif
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100154 return desc_idx;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000155}
156
157#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
158static struct macb_dma_desc_64 *macb_64b_desc(struct macb *bp, struct macb_dma_desc *desc)
159{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100160 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
161 return (struct macb_dma_desc_64 *)((void *)desc + sizeof(struct macb_dma_desc));
162 return NULL;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000163}
164#endif
165
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000166/* Ring buffer accessors */
Zach Brownb410d132016-10-19 09:56:57 -0500167static unsigned int macb_tx_ring_wrap(struct macb *bp, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000168{
Zach Brownb410d132016-10-19 09:56:57 -0500169 return index & (bp->tx_ring_size - 1);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000170}
171
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100172static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
173 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000174{
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000175 index = macb_tx_ring_wrap(queue->bp, index);
176 index = macb_adj_dma_desc_idx(queue->bp, index);
177 return &queue->tx_ring[index];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000178}
179
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100180static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
181 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000182{
Zach Brownb410d132016-10-19 09:56:57 -0500183 return &queue->tx_skb[macb_tx_ring_wrap(queue->bp, index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000184}
185
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100186static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000187{
188 dma_addr_t offset;
189
Zach Brownb410d132016-10-19 09:56:57 -0500190 offset = macb_tx_ring_wrap(queue->bp, index) *
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000191 macb_dma_desc_get_size(queue->bp);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000192
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100193 return queue->tx_ring_dma + offset;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000194}
195
Zach Brownb410d132016-10-19 09:56:57 -0500196static unsigned int macb_rx_ring_wrap(struct macb *bp, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000197{
Zach Brownb410d132016-10-19 09:56:57 -0500198 return index & (bp->rx_ring_size - 1);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000199}
200
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000201static struct macb_dma_desc *macb_rx_desc(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000202{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000203 index = macb_rx_ring_wrap(queue->bp, index);
204 index = macb_adj_dma_desc_idx(queue->bp, index);
205 return &queue->rx_ring[index];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000206}
207
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000208static void *macb_rx_buffer(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000209{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000210 return queue->rx_buffers + queue->bp->rx_buffer_size *
211 macb_rx_ring_wrap(queue->bp, index);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000212}
213
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +0300214/* I/O accessors */
215static u32 hw_readl_native(struct macb *bp, int offset)
216{
217 return __raw_readl(bp->regs + offset);
218}
219
220static void hw_writel_native(struct macb *bp, int offset, u32 value)
221{
222 __raw_writel(value, bp->regs + offset);
223}
224
225static u32 hw_readl(struct macb *bp, int offset)
226{
227 return readl_relaxed(bp->regs + offset);
228}
229
230static void hw_writel(struct macb *bp, int offset, u32 value)
231{
232 writel_relaxed(value, bp->regs + offset);
233}
234
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700235/* Find the CPU endianness by using the loopback bit of NCR register. When the
Moritz Fischer88023be2016-03-29 19:11:15 -0700236 * CPU is in big endian we need to program swapped mode for management
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +0300237 * descriptor access.
238 */
239static bool hw_is_native_io(void __iomem *addr)
240{
241 u32 value = MACB_BIT(LLB);
242
243 __raw_writel(value, addr + MACB_NCR);
244 value = __raw_readl(addr + MACB_NCR);
245
246 /* Write 0 back to disable everything */
247 __raw_writel(0, addr + MACB_NCR);
248
249 return value == MACB_BIT(LLB);
250}
251
252static bool hw_is_gem(void __iomem *addr, bool native_io)
253{
254 u32 id;
255
256 if (native_io)
257 id = __raw_readl(addr + MACB_MID);
258 else
259 id = readl_relaxed(addr + MACB_MID);
260
261 return MACB_BFEXT(IDNUM, id) >= 0x2;
262}
263
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100264static void macb_set_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100265{
266 u32 bottom;
267 u16 top;
268
269 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000270 macb_or_gem_writel(bp, SA1B, bottom);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100271 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000272 macb_or_gem_writel(bp, SA1T, top);
Joachim Eastwood3629a6c2012-11-11 13:56:28 +0000273
274 /* Clear unused address register sets */
275 macb_or_gem_writel(bp, SA2B, 0);
276 macb_or_gem_writel(bp, SA2T, 0);
277 macb_or_gem_writel(bp, SA3B, 0);
278 macb_or_gem_writel(bp, SA3T, 0);
279 macb_or_gem_writel(bp, SA4B, 0);
280 macb_or_gem_writel(bp, SA4T, 0);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100281}
282
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100283static void macb_get_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100284{
285 u32 bottom;
286 u16 top;
287 u8 addr[6];
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000288 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100289
Moritz Fischeraa50b552016-03-29 19:11:13 -0700290 /* Check all 4 address register for valid address */
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000291 for (i = 0; i < 4; i++) {
292 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
293 top = macb_or_gem_readl(bp, SA1T + i * 8);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100294
Nicolas Ferre8b952742019-05-03 12:36:58 +0200295 addr[0] = bottom & 0xff;
296 addr[1] = (bottom >> 8) & 0xff;
297 addr[2] = (bottom >> 16) & 0xff;
298 addr[3] = (bottom >> 24) & 0xff;
299 addr[4] = top & 0xff;
300 addr[5] = (top >> 8) & 0xff;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100301
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000302 if (is_valid_ether_addr(addr)) {
303 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
304 return;
305 }
Sven Schnelled1d57412008-06-09 16:33:57 -0700306 }
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000307
Andy Shevchenkoa35919e2015-07-24 21:24:01 +0300308 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000309 eth_hw_addr_random(bp->dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100310}
311
Harini Katakam8beb79b2019-03-01 16:20:32 +0530312static int macb_mdio_wait_for_idle(struct macb *bp)
313{
314 u32 val;
315
316 return readx_poll_timeout(MACB_READ_NSR, bp, val, val & MACB_BIT(IDLE),
317 1, MACB_MDIO_TIMEOUT);
318}
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;
Harini Katakamd54f89a2019-03-01 16:20:34 +0530323 int status;
Harini Katakam8beb79b2019-03-01 16:20:32 +0530324
Harini Katakamd54f89a2019-03-01 16:20:34 +0530325 status = pm_runtime_get_sync(&bp->pdev->dev);
326 if (status < 0)
327 goto mdio_pm_exit;
328
329 status = macb_mdio_wait_for_idle(bp);
330 if (status < 0)
331 goto mdio_read_exit;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100332
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100333 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
334 | MACB_BF(RW, MACB_MAN_READ)
frederic RODO6c36a702007-07-12 19:07:24 +0200335 | MACB_BF(PHYA, mii_id)
336 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100337 | MACB_BF(CODE, MACB_MAN_CODE)));
338
Harini Katakamd54f89a2019-03-01 16:20:34 +0530339 status = macb_mdio_wait_for_idle(bp);
340 if (status < 0)
341 goto mdio_read_exit;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100342
Harini Katakamd54f89a2019-03-01 16:20:34 +0530343 status = MACB_BFEXT(DATA, macb_readl(bp, MAN));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100344
Harini Katakamd54f89a2019-03-01 16:20:34 +0530345mdio_read_exit:
346 pm_runtime_mark_last_busy(&bp->pdev->dev);
347 pm_runtime_put_autosuspend(&bp->pdev->dev);
348mdio_pm_exit:
349 return status;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100350}
351
frederic RODO6c36a702007-07-12 19:07:24 +0200352static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
353 u16 value)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100354{
frederic RODO6c36a702007-07-12 19:07:24 +0200355 struct macb *bp = bus->priv;
Harini Katakamd54f89a2019-03-01 16:20:34 +0530356 int status;
Harini Katakam8beb79b2019-03-01 16:20:32 +0530357
Harini Katakamd54f89a2019-03-01 16:20:34 +0530358 status = pm_runtime_get_sync(&bp->pdev->dev);
359 if (status < 0)
360 goto mdio_pm_exit;
361
362 status = macb_mdio_wait_for_idle(bp);
363 if (status < 0)
364 goto mdio_write_exit;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100365
366 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
367 | MACB_BF(RW, MACB_MAN_WRITE)
frederic RODO6c36a702007-07-12 19:07:24 +0200368 | MACB_BF(PHYA, mii_id)
369 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100370 | MACB_BF(CODE, MACB_MAN_CODE)
frederic RODO6c36a702007-07-12 19:07:24 +0200371 | MACB_BF(DATA, value)));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100372
Harini Katakamd54f89a2019-03-01 16:20:34 +0530373 status = macb_mdio_wait_for_idle(bp);
374 if (status < 0)
375 goto mdio_write_exit;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100376
Harini Katakamd54f89a2019-03-01 16:20:34 +0530377mdio_write_exit:
378 pm_runtime_mark_last_busy(&bp->pdev->dev);
379 pm_runtime_put_autosuspend(&bp->pdev->dev);
380mdio_pm_exit:
381 return status;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100382}
383
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800384/**
385 * macb_set_tx_clk() - Set a clock to a new frequency
386 * @clk Pointer to the clock to change
387 * @rate New frequency in Hz
388 * @dev Pointer to the struct net_device
389 */
390static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
391{
392 long ferr, rate, rate_rounded;
393
Cyrille Pitchen93b31f42015-03-07 07:23:31 +0100394 if (!clk)
395 return;
396
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800397 switch (speed) {
398 case SPEED_10:
399 rate = 2500000;
400 break;
401 case SPEED_100:
402 rate = 25000000;
403 break;
404 case SPEED_1000:
405 rate = 125000000;
406 break;
407 default:
Soren Brinkmann9319e472013-12-10 20:57:57 -0800408 return;
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800409 }
410
411 rate_rounded = clk_round_rate(clk, rate);
412 if (rate_rounded < 0)
413 return;
414
415 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
416 * is not satisfied.
417 */
418 ferr = abs(rate_rounded - rate);
419 ferr = DIV_ROUND_UP(ferr, rate / 100000);
420 if (ferr > 5)
421 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700422 rate);
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800423
424 if (clk_set_rate(clk, rate_rounded))
425 netdev_err(dev, "adjusting tx_clk failed.\n");
426}
427
frederic RODO6c36a702007-07-12 19:07:24 +0200428static void macb_handle_link_change(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100429{
frederic RODO6c36a702007-07-12 19:07:24 +0200430 struct macb *bp = netdev_priv(dev);
Philippe Reynes0a912812016-06-22 00:32:35 +0200431 struct phy_device *phydev = dev->phydev;
frederic RODO6c36a702007-07-12 19:07:24 +0200432 unsigned long flags;
frederic RODO6c36a702007-07-12 19:07:24 +0200433 int status_change = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100434
frederic RODO6c36a702007-07-12 19:07:24 +0200435 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100436
frederic RODO6c36a702007-07-12 19:07:24 +0200437 if (phydev->link) {
438 if ((bp->speed != phydev->speed) ||
439 (bp->duplex != phydev->duplex)) {
440 u32 reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100441
frederic RODO6c36a702007-07-12 19:07:24 +0200442 reg = macb_readl(bp, NCFGR);
443 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
Patrice Vilchez140b7552012-10-31 06:04:50 +0000444 if (macb_is_gem(bp))
445 reg &= ~GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200446
447 if (phydev->duplex)
448 reg |= MACB_BIT(FD);
Atsushi Nemoto179956f2008-02-21 22:50:54 +0900449 if (phydev->speed == SPEED_100)
frederic RODO6c36a702007-07-12 19:07:24 +0200450 reg |= MACB_BIT(SPD);
Nicolas Ferree1755872014-07-24 13:50:58 +0200451 if (phydev->speed == SPEED_1000 &&
452 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000453 reg |= GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200454
Patrice Vilchez140b7552012-10-31 06:04:50 +0000455 macb_or_gem_writel(bp, NCFGR, reg);
frederic RODO6c36a702007-07-12 19:07:24 +0200456
457 bp->speed = phydev->speed;
458 bp->duplex = phydev->duplex;
459 status_change = 1;
460 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100461 }
462
frederic RODO6c36a702007-07-12 19:07:24 +0200463 if (phydev->link != bp->link) {
Anton Vorontsovc8f15682008-07-22 15:41:24 -0700464 if (!phydev->link) {
frederic RODO6c36a702007-07-12 19:07:24 +0200465 bp->speed = 0;
466 bp->duplex = -1;
467 }
468 bp->link = phydev->link;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100469
frederic RODO6c36a702007-07-12 19:07:24 +0200470 status_change = 1;
471 }
472
473 spin_unlock_irqrestore(&bp->lock, flags);
474
475 if (status_change) {
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000476 if (phydev->link) {
Jaeden Amero2c29b232015-03-12 18:07:54 -0500477 /* Update the TX clock rate if and only if the link is
478 * up and there has been a link change.
479 */
480 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
481
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000482 netif_carrier_on(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000483 netdev_info(dev, "link up (%d/%s)\n",
484 phydev->speed,
485 phydev->duplex == DUPLEX_FULL ?
486 "Full" : "Half");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000487 } else {
488 netif_carrier_off(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000489 netdev_info(dev, "link down\n");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000490 }
frederic RODO6c36a702007-07-12 19:07:24 +0200491 }
492}
493
494/* based on au1000_eth. c*/
495static int macb_mii_probe(struct net_device *dev)
496{
497 struct macb *bp = netdev_priv(dev);
Jiri Pirko7455a762010-02-08 05:12:08 +0000498 struct phy_device *phydev;
Brad Mouring739de9a2018-03-13 16:32:13 -0500499 struct device_node *np;
Nicolas Ferre8b952742019-05-03 12:36:58 +0200500 int ret, i;
Brad Mouring739de9a2018-03-13 16:32:13 -0500501
Brad Mouring739de9a2018-03-13 16:32:13 -0500502 np = bp->pdev->dev.of_node;
503 ret = 0;
504
505 if (np) {
506 if (of_phy_is_fixed_link(np)) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500507 bp->phy_node = of_node_get(np);
508 } else {
Brad Mouring2105a5d2018-03-13 16:32:15 -0500509 bp->phy_node = of_parse_phandle(np, "phy-handle", 0);
510 /* fallback to standard phy registration if no
511 * phy-handle was found nor any phy found during
512 * dt phy registration
Brad Mouring739de9a2018-03-13 16:32:13 -0500513 */
Brad Mouring2105a5d2018-03-13 16:32:15 -0500514 if (!bp->phy_node && !phy_find_first(bp->mii_bus)) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500515 for (i = 0; i < PHY_MAX_ADDR; i++) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500516 phydev = mdiobus_scan(bp->mii_bus, i);
517 if (IS_ERR(phydev) &&
518 PTR_ERR(phydev) != -ENODEV) {
519 ret = PTR_ERR(phydev);
520 break;
521 }
522 }
523
524 if (ret)
525 return -ENODEV;
526 }
527 }
528 }
frederic RODO6c36a702007-07-12 19:07:24 +0200529
Michael Grzeschikdacdbb42017-06-23 16:54:10 +0200530 if (bp->phy_node) {
531 phydev = of_phy_connect(dev, bp->phy_node,
532 &macb_handle_link_change, 0,
533 bp->phy_interface);
534 if (!phydev)
535 return -ENODEV;
536 } else {
537 phydev = phy_find_first(bp->mii_bus);
538 if (!phydev) {
539 netdev_err(dev, "no PHY found\n");
540 return -ENXIO;
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +0000541 }
frederic RODO6c36a702007-07-12 19:07:24 +0200542
Michael Grzeschikdacdbb42017-06-23 16:54:10 +0200543 /* attach the mac to the phy */
544 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
545 bp->phy_interface);
546 if (ret) {
547 netdev_err(dev, "Could not attach to PHY\n");
548 return ret;
549 }
frederic RODO6c36a702007-07-12 19:07:24 +0200550 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100551
frederic RODO6c36a702007-07-12 19:07:24 +0200552 /* mask with MAC supported features */
Nicolas Ferree1755872014-07-24 13:50:58 +0200553 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Andrew Lunn58056c12018-09-12 01:53:11 +0200554 phy_set_max_speed(phydev, SPEED_1000);
Patrice Vilchez140b7552012-10-31 06:04:50 +0000555 else
Andrew Lunn58056c12018-09-12 01:53:11 +0200556 phy_set_max_speed(phydev, SPEED_100);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100557
Nathan Sullivan222ca8e2015-05-22 09:22:10 -0500558 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
Andrew Lunn41124fa2018-09-12 01:53:14 +0200559 phy_remove_link_mode(phydev,
560 ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100561
frederic RODO6c36a702007-07-12 19:07:24 +0200562 bp->link = 0;
563 bp->speed = 0;
564 bp->duplex = -1;
frederic RODO6c36a702007-07-12 19:07:24 +0200565
566 return 0;
567}
568
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100569static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200570{
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200571 struct device_node *np;
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200572 int err = -ENXIO;
frederic RODO6c36a702007-07-12 19:07:24 +0200573
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200574 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200575 macb_writel(bp, NCR, MACB_BIT(MPE));
576
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700577 bp->mii_bus = mdiobus_alloc();
Moritz Fischeraa50b552016-03-29 19:11:13 -0700578 if (!bp->mii_bus) {
frederic RODO6c36a702007-07-12 19:07:24 +0200579 err = -ENOMEM;
580 goto err_out;
581 }
582
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700583 bp->mii_bus->name = "MACB_mii_bus";
584 bp->mii_bus->read = &macb_mdio_read;
585 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000586 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700587 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700588 bp->mii_bus->priv = bp;
Florian Fainellicf669662016-05-02 18:38:45 -0700589 bp->mii_bus->parent = &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;
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200594 if (np && of_phy_is_fixed_link(np)) {
595 if (of_phy_register_fixed_link(np) < 0) {
596 dev_err(&bp->pdev->dev,
597 "broken fixed-link specification %pOF\n", np);
598 goto err_out_free_mdiobus;
599 }
Brad Mouring739de9a2018-03-13 16:32:13 -0500600
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200601 err = mdiobus_register(bp->mii_bus);
602 } else {
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200603 err = of_mdiobus_register(bp->mii_bus, np);
604 }
605
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200606 if (err)
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200607 goto err_out_free_fixed_link;
frederic RODO6c36a702007-07-12 19:07:24 +0200608
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200609 err = macb_mii_probe(bp->dev);
610 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200611 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200612
613 return 0;
614
615err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700616 mdiobus_unregister(bp->mii_bus);
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200617err_out_free_fixed_link:
Michael Grzeschik9ce98142017-11-08 09:56:34 +0100618 if (np && of_phy_is_fixed_link(np))
619 of_phy_deregister_fixed_link(np);
Brad Mouring739de9a2018-03-13 16:32:13 -0500620err_out_free_mdiobus:
621 of_node_put(bp->phy_node);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700622 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200623err_out:
624 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100625}
626
627static void macb_update_stats(struct macb *bp)
628{
Jamie Ilesa494ed82011-03-09 16:26:35 +0000629 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
630 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +0300631 int offset = MACB_PFR;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100632
633 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
634
Moritz Fischer96ec6312016-03-29 19:11:11 -0700635 for (; p < end; p++, offset += 4)
David S. Miller7a6e0702015-07-27 14:24:48 -0700636 *p += bp->macb_reg_readl(bp, offset);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100637}
638
Nicolas Ferree86cd532012-10-31 06:04:57 +0000639static int macb_halt_tx(struct macb *bp)
640{
641 unsigned long halt_time, timeout;
642 u32 status;
643
644 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
645
646 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
647 do {
648 halt_time = jiffies;
649 status = macb_readl(bp, TSR);
650 if (!(status & MACB_BIT(TGO)))
651 return 0;
652
Jia-Ju Bai16fe10c2018-09-01 20:11:05 +0800653 udelay(250);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000654 } while (time_before(halt_time, timeout));
655
656 return -ETIMEDOUT;
657}
658
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200659static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
660{
661 if (tx_skb->mapping) {
662 if (tx_skb->mapped_as_page)
663 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
664 tx_skb->size, DMA_TO_DEVICE);
665 else
666 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
667 tx_skb->size, DMA_TO_DEVICE);
668 tx_skb->mapping = 0;
669 }
670
671 if (tx_skb->skb) {
672 dev_kfree_skb_any(tx_skb->skb);
673 tx_skb->skb = NULL;
674 }
675}
676
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000677static void macb_set_addr(struct macb *bp, struct macb_dma_desc *desc, dma_addr_t addr)
Harini Katakamfff80192016-08-09 13:15:53 +0530678{
Harini Katakamfff80192016-08-09 13:15:53 +0530679#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000680 struct macb_dma_desc_64 *desc_64;
681
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100682 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000683 desc_64 = macb_64b_desc(bp, desc);
684 desc_64->addrh = upper_32_bits(addr);
Anssi Hannulae100a892018-12-17 15:05:39 +0200685 /* The low bits of RX address contain the RX_USED bit, clearing
686 * of which allows packet RX. Make sure the high bits are also
687 * visible to HW at that point.
688 */
689 dma_wmb();
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000690 }
Harini Katakamfff80192016-08-09 13:15:53 +0530691#endif
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000692 desc->addr = lower_32_bits(addr);
693}
694
695static dma_addr_t macb_get_addr(struct macb *bp, struct macb_dma_desc *desc)
696{
697 dma_addr_t addr = 0;
698#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
699 struct macb_dma_desc_64 *desc_64;
700
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100701 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000702 desc_64 = macb_64b_desc(bp, desc);
703 addr = ((u64)(desc_64->addrh) << 32);
704 }
705#endif
706 addr |= MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
707 return addr;
Harini Katakamfff80192016-08-09 13:15:53 +0530708}
709
Nicolas Ferree86cd532012-10-31 06:04:57 +0000710static void macb_tx_error_task(struct work_struct *work)
711{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100712 struct macb_queue *queue = container_of(work, struct macb_queue,
713 tx_error_task);
714 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000715 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100716 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000717 struct sk_buff *skb;
718 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100719 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000720
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100721 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
722 (unsigned int)(queue - bp->queues),
723 queue->tx_tail, queue->tx_head);
724
725 /* Prevent the queue IRQ handlers from running: each of them may call
726 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
727 * As explained below, we have to halt the transmission before updating
728 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
729 * network engine about the macb/gem being halted.
730 */
731 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000732
733 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100734 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000735
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700736 /* Stop transmission now
Nicolas Ferree86cd532012-10-31 06:04:57 +0000737 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100738 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000739 */
740 if (macb_halt_tx(bp))
741 /* Just complain for now, reinitializing TX path can be good */
742 netdev_err(bp->dev, "BUG: halt tx timed out\n");
743
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700744 /* Treat frames in TX queue including the ones that caused the error.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000745 * Free transmit buffers in upper layer.
746 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100747 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
748 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000749
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100750 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000751 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100752 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000753 skb = tx_skb->skb;
754
755 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200756 /* skb is set for the last buffer of the frame */
757 while (!skb) {
758 macb_tx_unmap(bp, tx_skb);
759 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100760 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200761 skb = tx_skb->skb;
762 }
763
764 /* ctrl still refers to the first buffer descriptor
765 * since it's the only one written back by the hardware
766 */
767 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
768 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
Zach Brownb410d132016-10-19 09:56:57 -0500769 macb_tx_ring_wrap(bp, tail),
770 skb->data);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200771 bp->dev->stats.tx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000772 queue->stats.tx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200773 bp->dev->stats.tx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000774 queue->stats.tx_bytes += skb->len;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200775 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000776 } else {
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700777 /* "Buffers exhausted mid-frame" errors may only happen
778 * if the driver is buggy, so complain loudly about
779 * those. Statistics are updated by hardware.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000780 */
781 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
782 netdev_err(bp->dev,
783 "BUG: TX buffers exhausted mid-frame\n");
784
785 desc->ctrl = ctrl | MACB_BIT(TX_USED);
786 }
787
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200788 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000789 }
790
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100791 /* Set end of TX queue */
792 desc = macb_tx_desc(queue, 0);
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000793 macb_set_addr(bp, desc, 0);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100794 desc->ctrl = MACB_BIT(TX_USED);
795
Nicolas Ferree86cd532012-10-31 06:04:57 +0000796 /* Make descriptor updates visible to hardware */
797 wmb();
798
799 /* Reinitialize the TX desc queue */
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000800 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +0530801#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100802 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000803 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +0530804#endif
Nicolas Ferree86cd532012-10-31 06:04:57 +0000805 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100806 queue->tx_head = 0;
807 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000808
809 /* Housework before enabling TX IRQ */
810 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100811 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
812
813 /* Now we are ready to start transmission again */
814 netif_tx_start_all_queues(bp->dev);
815 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
816
817 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000818}
819
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100820static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100821{
822 unsigned int tail;
823 unsigned int head;
824 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100825 struct macb *bp = queue->bp;
826 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100827
828 status = macb_readl(bp, TSR);
829 macb_writel(bp, TSR, status);
830
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000831 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100832 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000833
Nicolas Ferree86cd532012-10-31 06:04:57 +0000834 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700835 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100836
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100837 head = queue->tx_head;
838 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000839 struct macb_tx_skb *tx_skb;
840 struct sk_buff *skb;
841 struct macb_dma_desc *desc;
842 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100843
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100844 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100845
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000846 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100847 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000848
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000849 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100850
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200851 /* TX_USED bit is only set by hardware on the very first buffer
852 * descriptor of the transmitted frame.
853 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000854 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100855 break;
856
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200857 /* Process all buffers of the current transmitted frame */
858 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100859 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200860 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000861
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200862 /* First, update TX stats if needed */
863 if (skb) {
Paul Thomasa6252042019-04-08 15:37:54 -0400864 if (unlikely(skb_shinfo(skb)->tx_flags &
865 SKBTX_HW_TSTAMP) &&
866 gem_ptp_do_txstamp(queue, skb, desc) == 0) {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +0100867 /* skb now belongs to timestamp buffer
868 * and will be removed later
869 */
870 tx_skb->skb = NULL;
871 }
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200872 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
Zach Brownb410d132016-10-19 09:56:57 -0500873 macb_tx_ring_wrap(bp, tail),
874 skb->data);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200875 bp->dev->stats.tx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000876 queue->stats.tx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200877 bp->dev->stats.tx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000878 queue->stats.tx_bytes += skb->len;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200879 }
880
881 /* Now we can safely release resources */
882 macb_tx_unmap(bp, tx_skb);
883
884 /* skb is set only for the last buffer of the frame.
885 * WARNING: at this point skb has been freed by
886 * macb_tx_unmap().
887 */
888 if (skb)
889 break;
890 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100891 }
892
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100893 queue->tx_tail = tail;
894 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
895 CIRC_CNT(queue->tx_head, queue->tx_tail,
Zach Brownb410d132016-10-19 09:56:57 -0500896 bp->tx_ring_size) <= MACB_TX_WAKEUP_THRESH(bp))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100897 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100898}
899
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000900static void gem_rx_refill(struct macb_queue *queue)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000901{
902 unsigned int entry;
903 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000904 dma_addr_t paddr;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000905 struct macb *bp = queue->bp;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000906 struct macb_dma_desc *desc;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000907
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000908 while (CIRC_SPACE(queue->rx_prepared_head, queue->rx_tail,
909 bp->rx_ring_size) > 0) {
910 entry = macb_rx_ring_wrap(bp, queue->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000911
912 /* Make hw descriptor updates visible to CPU */
913 rmb();
914
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000915 queue->rx_prepared_head++;
916 desc = macb_rx_desc(queue, entry);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000917
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000918 if (!queue->rx_skbuff[entry]) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000919 /* allocate sk_buff for this free entry in ring */
920 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
Moritz Fischeraa50b552016-03-29 19:11:13 -0700921 if (unlikely(!skb)) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000922 netdev_err(bp->dev,
923 "Unable to allocate sk_buff\n");
924 break;
925 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000926
927 /* now fill corresponding descriptor entry */
928 paddr = dma_map_single(&bp->pdev->dev, skb->data,
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700929 bp->rx_buffer_size,
930 DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800931 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
932 dev_kfree_skb(skb);
933 break;
934 }
935
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000936 queue->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000937
Zach Brownb410d132016-10-19 09:56:57 -0500938 if (entry == bp->rx_ring_size - 1)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000939 paddr |= MACB_BIT(RX_WRAP);
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000940 desc->ctrl = 0;
Anssi Hannula8159eca2018-12-17 15:05:40 +0200941 /* Setting addr clears RX_USED and allows reception,
942 * make sure ctrl is cleared first to avoid a race.
943 */
944 dma_wmb();
945 macb_set_addr(bp, desc, paddr);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000946
947 /* properly align Ethernet header */
948 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530949 } else {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000950 desc->ctrl = 0;
Anssi Hannula8159eca2018-12-17 15:05:40 +0200951 dma_wmb();
952 desc->addr &= ~MACB_BIT(RX_USED);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000953 }
954 }
955
956 /* Make descriptor updates visible to hardware */
957 wmb();
958
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000959 netdev_vdbg(bp->dev, "rx ring: queue: %p, prepared head %d, tail %d\n",
960 queue, queue->rx_prepared_head, queue->rx_tail);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000961}
962
963/* Mark DMA descriptors from begin up to and not including end as unused */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000964static void discard_partial_frame(struct macb_queue *queue, unsigned int begin,
Nicolas Ferre4df95132013-06-04 21:57:12 +0000965 unsigned int end)
966{
967 unsigned int frag;
968
969 for (frag = begin; frag != end; frag++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000970 struct macb_dma_desc *desc = macb_rx_desc(queue, frag);
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700971
Nicolas Ferre4df95132013-06-04 21:57:12 +0000972 desc->addr &= ~MACB_BIT(RX_USED);
973 }
974
975 /* Make descriptor updates visible to hardware */
976 wmb();
977
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700978 /* When this happens, the hardware stats registers for
Nicolas Ferre4df95132013-06-04 21:57:12 +0000979 * whatever caused this is updated, so we don't have to record
980 * anything.
981 */
982}
983
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000984static int gem_rx(struct macb_queue *queue, int budget)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000985{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000986 struct macb *bp = queue->bp;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000987 unsigned int len;
988 unsigned int entry;
989 struct sk_buff *skb;
990 struct macb_dma_desc *desc;
991 int count = 0;
992
993 while (count < budget) {
Harini Katakamfff80192016-08-09 13:15:53 +0530994 u32 ctrl;
995 dma_addr_t addr;
996 bool rxused;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000997
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000998 entry = macb_rx_ring_wrap(bp, queue->rx_tail);
999 desc = macb_rx_desc(queue, entry);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001000
1001 /* Make hw descriptor updates visible to CPU */
1002 rmb();
1003
Harini Katakamfff80192016-08-09 13:15:53 +05301004 rxused = (desc->addr & MACB_BIT(RX_USED)) ? true : false;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001005 addr = macb_get_addr(bp, desc);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001006
Harini Katakamfff80192016-08-09 13:15:53 +05301007 if (!rxused)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001008 break;
1009
Anssi Hannula6e0af292018-12-17 15:05:41 +02001010 /* Ensure ctrl is at least as up-to-date as rxused */
1011 dma_rmb();
1012
1013 ctrl = desc->ctrl;
1014
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001015 queue->rx_tail++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001016 count++;
1017
1018 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
1019 netdev_err(bp->dev,
1020 "not whole frame pointed by descriptor\n");
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001021 bp->dev->stats.rx_dropped++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001022 queue->stats.rx_dropped++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001023 break;
1024 }
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001025 skb = queue->rx_skbuff[entry];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001026 if (unlikely(!skb)) {
1027 netdev_err(bp->dev,
1028 "inconsistent Rx descriptor chain\n");
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001029 bp->dev->stats.rx_dropped++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001030 queue->stats.rx_dropped++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001031 break;
1032 }
1033 /* now everything is ready for receiving packet */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001034 queue->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301035 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001036
1037 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
1038
1039 skb_put(skb, len);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001040 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -08001041 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001042
1043 skb->protocol = eth_type_trans(skb, bp->dev);
1044 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001045 if (bp->dev->features & NETIF_F_RXCSUM &&
1046 !(bp->dev->flags & IFF_PROMISC) &&
1047 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
1048 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001049
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001050 bp->dev->stats.rx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001051 queue->stats.rx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001052 bp->dev->stats.rx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001053 queue->stats.rx_bytes += skb->len;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001054
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01001055 gem_ptp_do_rxstamp(bp, skb, desc);
1056
Nicolas Ferre4df95132013-06-04 21:57:12 +00001057#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1058 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1059 skb->len, skb->csum);
1060 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +01001061 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001062 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
1063 skb->data, 32, true);
1064#endif
1065
1066 netif_receive_skb(skb);
1067 }
1068
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001069 gem_rx_refill(queue);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001070
1071 return count;
1072}
1073
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001074static int macb_rx_frame(struct macb_queue *queue, unsigned int first_frag,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001075 unsigned int last_frag)
1076{
1077 unsigned int len;
1078 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001079 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001080 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001081 struct macb_dma_desc *desc;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001082 struct macb *bp = queue->bp;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001083
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001084 desc = macb_rx_desc(queue, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301085 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001086
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001087 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Zach Brownb410d132016-10-19 09:56:57 -05001088 macb_rx_ring_wrap(bp, first_frag),
1089 macb_rx_ring_wrap(bp, last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001090
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001091 /* The ethernet header starts NET_IP_ALIGN bytes into the
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001092 * first buffer. Since the header is 14 bytes, this makes the
1093 * payload word-aligned.
1094 *
1095 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1096 * the two padding bytes into the skb so that we avoid hitting
1097 * the slowpath in memcpy(), and pull them off afterwards.
1098 */
1099 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001100 if (!skb) {
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001101 bp->dev->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001102 for (frag = first_frag; ; frag++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001103 desc = macb_rx_desc(queue, frag);
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001104 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001105 if (frag == last_frag)
1106 break;
1107 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001108
1109 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001110 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001111
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001112 return 1;
1113 }
1114
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001115 offset = 0;
1116 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001117 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001118 skb_put(skb, len);
1119
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001120 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +00001121 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001122
1123 if (offset + frag_len > len) {
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001124 if (unlikely(frag != last_frag)) {
1125 dev_kfree_skb_any(skb);
1126 return -1;
1127 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001128 frag_len = len - offset;
1129 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001130 skb_copy_to_linear_data_offset(skb, offset,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001131 macb_rx_buffer(queue, frag),
Moritz Fischeraa50b552016-03-29 19:11:13 -07001132 frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001133 offset += bp->rx_buffer_size;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001134 desc = macb_rx_desc(queue, frag);
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001135 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001136
1137 if (frag == last_frag)
1138 break;
1139 }
1140
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001141 /* Make descriptor updates visible to hardware */
1142 wmb();
1143
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001144 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001145 skb->protocol = eth_type_trans(skb, bp->dev);
1146
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001147 bp->dev->stats.rx_packets++;
1148 bp->dev->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001149 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001150 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001151 netif_receive_skb(skb);
1152
1153 return 0;
1154}
1155
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001156static inline void macb_init_rx_ring(struct macb_queue *queue)
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001157{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001158 struct macb *bp = queue->bp;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001159 dma_addr_t addr;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001160 struct macb_dma_desc *desc = NULL;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001161 int i;
1162
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001163 addr = queue->rx_buffers_dma;
Zach Brownb410d132016-10-19 09:56:57 -05001164 for (i = 0; i < bp->rx_ring_size; i++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001165 desc = macb_rx_desc(queue, i);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001166 macb_set_addr(bp, desc, addr);
1167 desc->ctrl = 0;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001168 addr += bp->rx_buffer_size;
1169 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001170 desc->addr |= MACB_BIT(RX_WRAP);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001171 queue->rx_tail = 0;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001172}
1173
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001174static int macb_rx(struct macb_queue *queue, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001175{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001176 struct macb *bp = queue->bp;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001177 bool reset_rx_queue = false;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001178 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001179 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001180 int first_frag = -1;
1181
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001182 for (tail = queue->rx_tail; budget > 0; tail++) {
1183 struct macb_dma_desc *desc = macb_rx_desc(queue, tail);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001184 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001185
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001186 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001187 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001188
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001189 if (!(desc->addr & MACB_BIT(RX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001190 break;
1191
Anssi Hannula6e0af292018-12-17 15:05:41 +02001192 /* Ensure ctrl is at least as up-to-date as addr */
1193 dma_rmb();
1194
1195 ctrl = desc->ctrl;
1196
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001197 if (ctrl & MACB_BIT(RX_SOF)) {
1198 if (first_frag != -1)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001199 discard_partial_frame(queue, first_frag, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001200 first_frag = tail;
1201 }
1202
1203 if (ctrl & MACB_BIT(RX_EOF)) {
1204 int dropped;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001205
1206 if (unlikely(first_frag == -1)) {
1207 reset_rx_queue = true;
1208 continue;
1209 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001210
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001211 dropped = macb_rx_frame(queue, first_frag, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001212 first_frag = -1;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001213 if (unlikely(dropped < 0)) {
1214 reset_rx_queue = true;
1215 continue;
1216 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001217 if (!dropped) {
1218 received++;
1219 budget--;
1220 }
1221 }
1222 }
1223
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001224 if (unlikely(reset_rx_queue)) {
1225 unsigned long flags;
1226 u32 ctrl;
1227
1228 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1229
1230 spin_lock_irqsave(&bp->lock, flags);
1231
1232 ctrl = macb_readl(bp, NCR);
1233 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1234
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001235 macb_init_rx_ring(queue);
1236 queue_writel(queue, RBQP, queue->rx_ring_dma);
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001237
1238 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1239
1240 spin_unlock_irqrestore(&bp->lock, flags);
1241 return received;
1242 }
1243
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001244 if (first_frag != -1)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001245 queue->rx_tail = first_frag;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001246 else
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001247 queue->rx_tail = tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001248
1249 return received;
1250}
1251
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001252static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001253{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001254 struct macb_queue *queue = container_of(napi, struct macb_queue, napi);
1255 struct macb *bp = queue->bp;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001256 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001257 u32 status;
1258
1259 status = macb_readl(bp, RSR);
1260 macb_writel(bp, RSR, status);
1261
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001262 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001263 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001264
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001265 work_done = bp->macbgem_ops.mog_rx(queue, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +00001266 if (work_done < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001267 napi_complete_done(napi, work_done);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001268
Nicolas Ferre8770e912013-02-12 11:08:48 +01001269 /* Packets received while interrupts were disabled */
1270 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -07001271 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001272 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001273 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +01001274 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001275 } else {
Harini Katakame5010702019-01-29 15:20:03 +05301276 queue_writel(queue, IER, bp->rx_intr_mask);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001277 }
Joshua Hokeb3363692010-10-25 01:44:22 +00001278 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001279
1280 /* TODO: Handle errors */
1281
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001282 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001283}
1284
Harini Katakam032dc412018-01-27 12:09:01 +05301285static void macb_hresp_error_task(unsigned long data)
1286{
1287 struct macb *bp = (struct macb *)data;
1288 struct net_device *dev = bp->dev;
1289 struct macb_queue *queue = bp->queues;
1290 unsigned int q;
1291 u32 ctrl;
1292
1293 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Harini Katakame5010702019-01-29 15:20:03 +05301294 queue_writel(queue, IDR, bp->rx_intr_mask |
Harini Katakam032dc412018-01-27 12:09:01 +05301295 MACB_TX_INT_FLAGS |
1296 MACB_BIT(HRESP));
1297 }
1298 ctrl = macb_readl(bp, NCR);
1299 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
1300 macb_writel(bp, NCR, ctrl);
1301
1302 netif_tx_stop_all_queues(dev);
1303 netif_carrier_off(dev);
1304
1305 bp->macbgem_ops.mog_init_rings(bp);
1306
1307 /* Initialize TX and RX buffers */
1308 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1309 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
1310#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1311 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1312 queue_writel(queue, RBQPH,
1313 upper_32_bits(queue->rx_ring_dma));
1314#endif
1315 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
1316#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1317 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1318 queue_writel(queue, TBQPH,
1319 upper_32_bits(queue->tx_ring_dma));
1320#endif
1321
1322 /* Enable interrupts */
1323 queue_writel(queue, IER,
Harini Katakame5010702019-01-29 15:20:03 +05301324 bp->rx_intr_mask |
Harini Katakam032dc412018-01-27 12:09:01 +05301325 MACB_TX_INT_FLAGS |
1326 MACB_BIT(HRESP));
1327 }
1328
1329 ctrl |= MACB_BIT(RE) | MACB_BIT(TE);
1330 macb_writel(bp, NCR, ctrl);
1331
1332 netif_carrier_on(dev);
1333 netif_tx_start_all_queues(dev);
1334}
1335
Claudiu Beznea42983882018-12-17 10:02:42 +00001336static void macb_tx_restart(struct macb_queue *queue)
1337{
1338 unsigned int head = queue->tx_head;
1339 unsigned int tail = queue->tx_tail;
1340 struct macb *bp = queue->bp;
1341
1342 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1343 queue_writel(queue, ISR, MACB_BIT(TXUBR));
1344
1345 if (head == tail)
1346 return;
1347
1348 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1349}
1350
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001351static irqreturn_t macb_interrupt(int irq, void *dev_id)
1352{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001353 struct macb_queue *queue = dev_id;
1354 struct macb *bp = queue->bp;
1355 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001356 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001357
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001358 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001359
1360 if (unlikely(!status))
1361 return IRQ_NONE;
1362
1363 spin_lock(&bp->lock);
1364
1365 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001366 /* close possible race with dev_close */
1367 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001368 queue_writel(queue, IDR, -1);
Nathan Sullivan24468372016-01-14 13:27:27 -06001369 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1370 queue_writel(queue, ISR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001371 break;
1372 }
1373
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001374 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1375 (unsigned int)(queue - bp->queues),
1376 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001377
Harini Katakame5010702019-01-29 15:20:03 +05301378 if (status & bp->rx_intr_mask) {
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001379 /* There's no point taking any more interrupts
Joshua Hokeb3363692010-10-25 01:44:22 +00001380 * until we have processed the buffers. The
1381 * scheduling call may fail if the poll routine
1382 * is already scheduled, so disable interrupts
1383 * now.
1384 */
Harini Katakame5010702019-01-29 15:20:03 +05301385 queue_writel(queue, IDR, bp->rx_intr_mask);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001386 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001387 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001388
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001389 if (napi_schedule_prep(&queue->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001390 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001391 __napi_schedule(&queue->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001392 }
1393 }
1394
Nicolas Ferree86cd532012-10-31 06:04:57 +00001395 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001396 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1397 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001398
1399 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001400 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001401
Nicolas Ferree86cd532012-10-31 06:04:57 +00001402 break;
1403 }
1404
1405 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001406 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001407
Claudiu Beznea42983882018-12-17 10:02:42 +00001408 if (status & MACB_BIT(TXUBR))
1409 macb_tx_restart(queue);
1410
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001411 /* Link change detection isn't possible with RMII, so we'll
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001412 * add that if/when we get our hands on a full-blown MII PHY.
1413 */
1414
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001415 /* There is a hardware issue under heavy load where DMA can
1416 * stop, this causes endless "used buffer descriptor read"
1417 * interrupts but it can be cleared by re-enabling RX. See
Harini Katakame5010702019-01-29 15:20:03 +05301418 * the at91rm9200 manual, section 41.3.1 or the Zynq manual
1419 * section 16.7.4 for details. RXUBR is only enabled for
1420 * these two versions.
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001421 */
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001422 if (status & MACB_BIT(RXUBR)) {
1423 ctrl = macb_readl(bp, NCR);
1424 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
Zumeng Chenffac0e92016-11-28 21:55:00 +08001425 wmb();
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001426 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1427
1428 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchenba504992016-03-24 15:40:04 +01001429 queue_writel(queue, ISR, MACB_BIT(RXUBR));
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001430 }
1431
Alexander Steinb19f7f72011-04-13 05:03:24 +00001432 if (status & MACB_BIT(ISR_ROVR)) {
1433 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001434 if (macb_is_gem(bp))
1435 bp->hw_stats.gem.rx_overruns++;
1436 else
1437 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001438
1439 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001440 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001441 }
1442
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001443 if (status & MACB_BIT(HRESP)) {
Harini Katakam032dc412018-01-27 12:09:01 +05301444 tasklet_schedule(&bp->hresp_err_tasklet);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001445 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001446
1447 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001448 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001449 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001450 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001451 }
1452
1453 spin_unlock(&bp->lock);
1454
1455 return IRQ_HANDLED;
1456}
1457
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001458#ifdef CONFIG_NET_POLL_CONTROLLER
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001459/* Polling receive - used by netconsole and other diagnostic tools
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001460 * to allow network i/o with interrupts disabled.
1461 */
1462static void macb_poll_controller(struct net_device *dev)
1463{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001464 struct macb *bp = netdev_priv(dev);
1465 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001466 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001467 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001468
1469 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001470 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1471 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001472 local_irq_restore(flags);
1473}
1474#endif
1475
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001476static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001477 struct macb_queue *queue,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001478 struct sk_buff *skb,
1479 unsigned int hdrlen)
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001480{
1481 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001482 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001483 struct macb_tx_skb *tx_skb = NULL;
1484 struct macb_dma_desc *desc;
1485 unsigned int offset, size, count = 0;
1486 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001487 unsigned int eof = 1, mss_mfs = 0;
1488 u32 ctrl, lso_ctrl = 0, seq_ctrl = 0;
1489
1490 /* LSO */
1491 if (skb_shinfo(skb)->gso_size != 0) {
1492 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
1493 /* UDP - UFO */
1494 lso_ctrl = MACB_LSO_UFO_ENABLE;
1495 else
1496 /* TCP - TSO */
1497 lso_ctrl = MACB_LSO_TSO_ENABLE;
1498 }
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001499
1500 /* First, map non-paged data */
1501 len = skb_headlen(skb);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001502
1503 /* first buffer length */
1504 size = hdrlen;
1505
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001506 offset = 0;
1507 while (len) {
Zach Brownb410d132016-10-19 09:56:57 -05001508 entry = macb_tx_ring_wrap(bp, tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001509 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001510
1511 mapping = dma_map_single(&bp->pdev->dev,
1512 skb->data + offset,
1513 size, DMA_TO_DEVICE);
1514 if (dma_mapping_error(&bp->pdev->dev, mapping))
1515 goto dma_error;
1516
1517 /* Save info to properly release resources */
1518 tx_skb->skb = NULL;
1519 tx_skb->mapping = mapping;
1520 tx_skb->size = size;
1521 tx_skb->mapped_as_page = false;
1522
1523 len -= size;
1524 offset += size;
1525 count++;
1526 tx_head++;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001527
1528 size = min(len, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001529 }
1530
1531 /* Then, map paged data from fragments */
1532 for (f = 0; f < nr_frags; f++) {
1533 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1534
1535 len = skb_frag_size(frag);
1536 offset = 0;
1537 while (len) {
1538 size = min(len, bp->max_tx_length);
Zach Brownb410d132016-10-19 09:56:57 -05001539 entry = macb_tx_ring_wrap(bp, tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001540 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001541
1542 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1543 offset, size, DMA_TO_DEVICE);
1544 if (dma_mapping_error(&bp->pdev->dev, mapping))
1545 goto dma_error;
1546
1547 /* Save info to properly release resources */
1548 tx_skb->skb = NULL;
1549 tx_skb->mapping = mapping;
1550 tx_skb->size = size;
1551 tx_skb->mapped_as_page = true;
1552
1553 len -= size;
1554 offset += size;
1555 count++;
1556 tx_head++;
1557 }
1558 }
1559
1560 /* Should never happen */
Moritz Fischeraa50b552016-03-29 19:11:13 -07001561 if (unlikely(!tx_skb)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001562 netdev_err(bp->dev, "BUG! empty skb!\n");
1563 return 0;
1564 }
1565
1566 /* This is the last buffer of the frame: save socket buffer */
1567 tx_skb->skb = skb;
1568
1569 /* Update TX ring: update buffer descriptors in reverse order
1570 * to avoid race condition
1571 */
1572
1573 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1574 * to set the end of TX queue
1575 */
1576 i = tx_head;
Zach Brownb410d132016-10-19 09:56:57 -05001577 entry = macb_tx_ring_wrap(bp, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001578 ctrl = MACB_BIT(TX_USED);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001579 desc = macb_tx_desc(queue, entry);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001580 desc->ctrl = ctrl;
1581
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001582 if (lso_ctrl) {
1583 if (lso_ctrl == MACB_LSO_UFO_ENABLE)
1584 /* include header and FCS in value given to h/w */
1585 mss_mfs = skb_shinfo(skb)->gso_size +
1586 skb_transport_offset(skb) +
1587 ETH_FCS_LEN;
1588 else /* TSO */ {
1589 mss_mfs = skb_shinfo(skb)->gso_size;
1590 /* TCP Sequence Number Source Select
1591 * can be set only for TSO
1592 */
1593 seq_ctrl = 0;
1594 }
1595 }
1596
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001597 do {
1598 i--;
Zach Brownb410d132016-10-19 09:56:57 -05001599 entry = macb_tx_ring_wrap(bp, i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001600 tx_skb = &queue->tx_skb[entry];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001601 desc = macb_tx_desc(queue, entry);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001602
1603 ctrl = (u32)tx_skb->size;
1604 if (eof) {
1605 ctrl |= MACB_BIT(TX_LAST);
1606 eof = 0;
1607 }
Zach Brownb410d132016-10-19 09:56:57 -05001608 if (unlikely(entry == (bp->tx_ring_size - 1)))
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001609 ctrl |= MACB_BIT(TX_WRAP);
1610
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001611 /* First descriptor is header descriptor */
1612 if (i == queue->tx_head) {
1613 ctrl |= MACB_BF(TX_LSO, lso_ctrl);
1614 ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl);
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001615 if ((bp->dev->features & NETIF_F_HW_CSUM) &&
1616 skb->ip_summed != CHECKSUM_PARTIAL && !lso_ctrl)
1617 ctrl |= MACB_BIT(TX_NOCRC);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001618 } else
1619 /* Only set MSS/MFS on payload descriptors
1620 * (second or later descriptor)
1621 */
1622 ctrl |= MACB_BF(MSS_MFS, mss_mfs);
1623
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001624 /* Set TX buffer descriptor */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001625 macb_set_addr(bp, desc, tx_skb->mapping);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001626 /* desc->addr must be visible to hardware before clearing
1627 * 'TX_USED' bit in desc->ctrl.
1628 */
1629 wmb();
1630 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001631 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001632
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001633 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001634
1635 return count;
1636
1637dma_error:
1638 netdev_err(bp->dev, "TX DMA map failed\n");
1639
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001640 for (i = queue->tx_head; i != tx_head; i++) {
1641 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001642
1643 macb_tx_unmap(bp, tx_skb);
1644 }
1645
1646 return 0;
1647}
1648
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001649static netdev_features_t macb_features_check(struct sk_buff *skb,
1650 struct net_device *dev,
1651 netdev_features_t features)
1652{
1653 unsigned int nr_frags, f;
1654 unsigned int hdrlen;
1655
1656 /* Validate LSO compatibility */
1657
1658 /* there is only one buffer */
1659 if (!skb_is_nonlinear(skb))
1660 return features;
1661
1662 /* length of header */
1663 hdrlen = skb_transport_offset(skb);
1664 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
1665 hdrlen += tcp_hdrlen(skb);
1666
1667 /* For LSO:
1668 * When software supplies two or more payload buffers all payload buffers
1669 * apart from the last must be a multiple of 8 bytes in size.
1670 */
1671 if (!IS_ALIGNED(skb_headlen(skb) - hdrlen, MACB_TX_LEN_ALIGN))
1672 return features & ~MACB_NETIF_LSO;
1673
1674 nr_frags = skb_shinfo(skb)->nr_frags;
1675 /* No need to check last fragment */
1676 nr_frags--;
1677 for (f = 0; f < nr_frags; f++) {
1678 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1679
1680 if (!IS_ALIGNED(skb_frag_size(frag), MACB_TX_LEN_ALIGN))
1681 return features & ~MACB_NETIF_LSO;
1682 }
1683 return features;
1684}
1685
Helmut Buchsbaum007e4ba2016-09-04 18:09:47 +02001686static inline int macb_clear_csum(struct sk_buff *skb)
1687{
1688 /* no change for packets without checksum offloading */
1689 if (skb->ip_summed != CHECKSUM_PARTIAL)
1690 return 0;
1691
1692 /* make sure we can modify the header */
1693 if (unlikely(skb_cow_head(skb, 0)))
1694 return -1;
1695
1696 /* initialize checksum field
1697 * This is required - at least for Zynq, which otherwise calculates
1698 * wrong UDP header checksums for UDP packets with UDP data len <=2
1699 */
1700 *(__sum16 *)(skb_checksum_start(skb) + skb->csum_offset) = 0;
1701 return 0;
1702}
1703
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001704static int macb_pad_and_fcs(struct sk_buff **skb, struct net_device *ndev)
1705{
1706 bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb);
1707 int padlen = ETH_ZLEN - (*skb)->len;
1708 int headroom = skb_headroom(*skb);
1709 int tailroom = skb_tailroom(*skb);
1710 struct sk_buff *nskb;
1711 u32 fcs;
1712
1713 if (!(ndev->features & NETIF_F_HW_CSUM) ||
1714 !((*skb)->ip_summed != CHECKSUM_PARTIAL) ||
1715 skb_shinfo(*skb)->gso_size) /* Not available for GSO */
1716 return 0;
1717
1718 if (padlen <= 0) {
1719 /* FCS could be appeded to tailroom. */
1720 if (tailroom >= ETH_FCS_LEN)
1721 goto add_fcs;
1722 /* FCS could be appeded by moving data to headroom. */
1723 else if (!cloned && headroom + tailroom >= ETH_FCS_LEN)
1724 padlen = 0;
1725 /* No room for FCS, need to reallocate skb. */
1726 else
Tristram Ha899ecae2018-10-24 14:51:23 -07001727 padlen = ETH_FCS_LEN;
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001728 } else {
1729 /* Add room for FCS. */
1730 padlen += ETH_FCS_LEN;
1731 }
1732
1733 if (!cloned && headroom + tailroom >= padlen) {
1734 (*skb)->data = memmove((*skb)->head, (*skb)->data, (*skb)->len);
1735 skb_set_tail_pointer(*skb, (*skb)->len);
1736 } else {
1737 nskb = skb_copy_expand(*skb, 0, padlen, GFP_ATOMIC);
1738 if (!nskb)
1739 return -ENOMEM;
1740
Huang Zijiangf3e5c072019-02-14 14:41:18 +08001741 dev_consume_skb_any(*skb);
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001742 *skb = nskb;
1743 }
1744
Claudiu Bezneaba3e1842019-01-03 14:59:35 +00001745 if (padlen > ETH_FCS_LEN)
1746 skb_put_zero(*skb, padlen - ETH_FCS_LEN);
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001747
1748add_fcs:
1749 /* set FCS to packet */
1750 fcs = crc32_le(~0, (*skb)->data, (*skb)->len);
1751 fcs = ~fcs;
1752
1753 skb_put_u8(*skb, fcs & 0xff);
1754 skb_put_u8(*skb, (fcs >> 8) & 0xff);
1755 skb_put_u8(*skb, (fcs >> 16) & 0xff);
1756 skb_put_u8(*skb, (fcs >> 24) & 0xff);
1757
1758 return 0;
1759}
1760
Claudiu Beznead1c38952018-08-07 12:25:12 +03001761static netdev_tx_t macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001762{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001763 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001764 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001765 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001766 unsigned long flags;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001767 unsigned int desc_cnt, nr_frags, frag_size, f;
1768 unsigned int hdrlen;
1769 bool is_lso, is_udp = 0;
Claudiu Beznead1c38952018-08-07 12:25:12 +03001770 netdev_tx_t ret = NETDEV_TX_OK;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001771
Claudiu Beznea33729f22018-08-07 12:25:13 +03001772 if (macb_clear_csum(skb)) {
1773 dev_kfree_skb_any(skb);
1774 return ret;
1775 }
1776
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001777 if (macb_pad_and_fcs(&skb, dev)) {
1778 dev_kfree_skb_any(skb);
1779 return ret;
1780 }
1781
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001782 is_lso = (skb_shinfo(skb)->gso_size != 0);
1783
1784 if (is_lso) {
1785 is_udp = !!(ip_hdr(skb)->protocol == IPPROTO_UDP);
1786
1787 /* length of headers */
1788 if (is_udp)
1789 /* only queue eth + ip headers separately for UDP */
1790 hdrlen = skb_transport_offset(skb);
1791 else
1792 hdrlen = skb_transport_offset(skb) + tcp_hdrlen(skb);
1793 if (skb_headlen(skb) < hdrlen) {
1794 netdev_err(bp->dev, "Error - LSO headers fragmented!!!\n");
1795 /* if this is required, would need to copy to single buffer */
1796 return NETDEV_TX_BUSY;
1797 }
1798 } else
1799 hdrlen = min(skb_headlen(skb), bp->max_tx_length);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001800
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001801#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1802 netdev_vdbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001803 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1804 queue_index, skb->len, skb->head, skb->data,
1805 skb_tail_pointer(skb), skb_end_pointer(skb));
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001806 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1807 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001808#endif
1809
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001810 /* Count how many TX buffer descriptors are needed to send this
1811 * socket buffer: skb fragments of jumbo frames may need to be
Moritz Fischeraa50b552016-03-29 19:11:13 -07001812 * split into many buffer descriptors.
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001813 */
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001814 if (is_lso && (skb_headlen(skb) > hdrlen))
1815 /* extra header descriptor if also payload in first buffer */
1816 desc_cnt = DIV_ROUND_UP((skb_headlen(skb) - hdrlen), bp->max_tx_length) + 1;
1817 else
1818 desc_cnt = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001819 nr_frags = skb_shinfo(skb)->nr_frags;
1820 for (f = 0; f < nr_frags; f++) {
1821 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001822 desc_cnt += DIV_ROUND_UP(frag_size, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001823 }
1824
Dongdong Deng48719532009-08-23 19:49:07 -07001825 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001826
1827 /* This is a hard error, log it. */
Zach Brownb410d132016-10-19 09:56:57 -05001828 if (CIRC_SPACE(queue->tx_head, queue->tx_tail,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001829 bp->tx_ring_size) < desc_cnt) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001830 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001831 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001832 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001833 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001834 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001835 }
1836
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001837 /* Map socket buffer for DMA transfer */
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001838 if (!macb_tx_map(bp, queue, skb, hdrlen)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001839 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001840 goto unlock;
1841 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001842
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001843 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001844 wmb();
Richard Cochrane0720922011-06-19 21:51:28 +00001845 skb_tx_timestamp(skb);
1846
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001847 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1848
Zach Brownb410d132016-10-19 09:56:57 -05001849 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, bp->tx_ring_size) < 1)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001850 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001851
Soren Brinkmann92030902014-03-04 08:46:39 -08001852unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001853 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001854
Claudiu Beznead1c38952018-08-07 12:25:12 +03001855 return ret;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001856}
1857
Nicolas Ferre4df95132013-06-04 21:57:12 +00001858static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001859{
1860 if (!macb_is_gem(bp)) {
1861 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1862 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001863 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001864
Nicolas Ferre1b447912013-06-04 21:57:11 +00001865 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001866 netdev_dbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001867 "RX buffer must be multiple of %d bytes, expanding\n",
1868 RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001869 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001870 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001871 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001872 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001873
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001874 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%zu]\n",
Nicolas Ferre4df95132013-06-04 21:57:12 +00001875 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001876}
1877
Nicolas Ferre4df95132013-06-04 21:57:12 +00001878static void gem_free_rx_buffers(struct macb *bp)
1879{
1880 struct sk_buff *skb;
1881 struct macb_dma_desc *desc;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001882 struct macb_queue *queue;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001883 dma_addr_t addr;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001884 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001885 int i;
1886
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001887 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1888 if (!queue->rx_skbuff)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001889 continue;
1890
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001891 for (i = 0; i < bp->rx_ring_size; i++) {
1892 skb = queue->rx_skbuff[i];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001893
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001894 if (!skb)
1895 continue;
1896
1897 desc = macb_rx_desc(queue, i);
1898 addr = macb_get_addr(bp, desc);
1899
1900 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
1901 DMA_FROM_DEVICE);
1902 dev_kfree_skb_any(skb);
1903 skb = NULL;
1904 }
1905
1906 kfree(queue->rx_skbuff);
1907 queue->rx_skbuff = NULL;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001908 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001909}
1910
1911static void macb_free_rx_buffers(struct macb *bp)
1912{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001913 struct macb_queue *queue = &bp->queues[0];
1914
1915 if (queue->rx_buffers) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001916 dma_free_coherent(&bp->pdev->dev,
Zach Brownb410d132016-10-19 09:56:57 -05001917 bp->rx_ring_size * bp->rx_buffer_size,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001918 queue->rx_buffers, queue->rx_buffers_dma);
1919 queue->rx_buffers = NULL;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001920 }
1921}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001922
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001923static void macb_free_consistent(struct macb *bp)
1924{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001925 struct macb_queue *queue;
1926 unsigned int q;
Harini Katakam404cd082018-07-06 12:18:58 +05301927 int size;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001928
Nicolas Ferre4df95132013-06-04 21:57:12 +00001929 bp->macbgem_ops.mog_free_rx_buffers(bp);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001930
1931 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1932 kfree(queue->tx_skb);
1933 queue->tx_skb = NULL;
1934 if (queue->tx_ring) {
Harini Katakam404cd082018-07-06 12:18:58 +05301935 size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
1936 dma_free_coherent(&bp->pdev->dev, size,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001937 queue->tx_ring, queue->tx_ring_dma);
1938 queue->tx_ring = NULL;
1939 }
Harini Katakame50b7702018-07-06 12:18:57 +05301940 if (queue->rx_ring) {
Harini Katakam404cd082018-07-06 12:18:58 +05301941 size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
1942 dma_free_coherent(&bp->pdev->dev, size,
Harini Katakame50b7702018-07-06 12:18:57 +05301943 queue->rx_ring, queue->rx_ring_dma);
1944 queue->rx_ring = NULL;
1945 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001946 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001947}
1948
1949static int gem_alloc_rx_buffers(struct macb *bp)
1950{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001951 struct macb_queue *queue;
1952 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001953 int size;
1954
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001955 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1956 size = bp->rx_ring_size * sizeof(struct sk_buff *);
1957 queue->rx_skbuff = kzalloc(size, GFP_KERNEL);
1958 if (!queue->rx_skbuff)
1959 return -ENOMEM;
1960 else
1961 netdev_dbg(bp->dev,
1962 "Allocated %d RX struct sk_buff entries at %p\n",
1963 bp->rx_ring_size, queue->rx_skbuff);
1964 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001965 return 0;
1966}
1967
1968static int macb_alloc_rx_buffers(struct macb *bp)
1969{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001970 struct macb_queue *queue = &bp->queues[0];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001971 int size;
1972
Zach Brownb410d132016-10-19 09:56:57 -05001973 size = bp->rx_ring_size * bp->rx_buffer_size;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001974 queue->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1975 &queue->rx_buffers_dma, GFP_KERNEL);
1976 if (!queue->rx_buffers)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001977 return -ENOMEM;
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001978
1979 netdev_dbg(bp->dev,
1980 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001981 size, (unsigned long)queue->rx_buffers_dma, queue->rx_buffers);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001982 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001983}
1984
1985static int macb_alloc_consistent(struct macb *bp)
1986{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001987 struct macb_queue *queue;
1988 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001989 int size;
1990
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001991 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Harini Katakam404cd082018-07-06 12:18:58 +05301992 size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001993 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1994 &queue->tx_ring_dma,
1995 GFP_KERNEL);
1996 if (!queue->tx_ring)
1997 goto out_err;
1998 netdev_dbg(bp->dev,
1999 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
2000 q, size, (unsigned long)queue->tx_ring_dma,
2001 queue->tx_ring);
2002
Zach Brownb410d132016-10-19 09:56:57 -05002003 size = bp->tx_ring_size * sizeof(struct macb_tx_skb);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002004 queue->tx_skb = kmalloc(size, GFP_KERNEL);
2005 if (!queue->tx_skb)
2006 goto out_err;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002007
Harini Katakam404cd082018-07-06 12:18:58 +05302008 size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002009 queue->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
2010 &queue->rx_ring_dma, GFP_KERNEL);
2011 if (!queue->rx_ring)
2012 goto out_err;
2013 netdev_dbg(bp->dev,
2014 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
2015 size, (unsigned long)queue->rx_ring_dma, queue->rx_ring);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002016 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00002017 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002018 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002019
2020 return 0;
2021
2022out_err:
2023 macb_free_consistent(bp);
2024 return -ENOMEM;
2025}
2026
Nicolas Ferre4df95132013-06-04 21:57:12 +00002027static void gem_init_rings(struct macb *bp)
2028{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002029 struct macb_queue *queue;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002030 struct macb_dma_desc *desc = NULL;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002031 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002032 int i;
2033
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002034 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Zach Brownb410d132016-10-19 09:56:57 -05002035 for (i = 0; i < bp->tx_ring_size; i++) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002036 desc = macb_tx_desc(queue, i);
2037 macb_set_addr(bp, desc, 0);
2038 desc->ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002039 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002040 desc->ctrl |= MACB_BIT(TX_WRAP);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002041 queue->tx_head = 0;
2042 queue->tx_tail = 0;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002043
2044 queue->rx_tail = 0;
2045 queue->rx_prepared_head = 0;
2046
2047 gem_rx_refill(queue);
Nicolas Ferre4df95132013-06-04 21:57:12 +00002048 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00002049
Nicolas Ferre4df95132013-06-04 21:57:12 +00002050}
2051
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002052static void macb_init_rings(struct macb *bp)
2053{
2054 int i;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002055 struct macb_dma_desc *desc = NULL;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002056
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002057 macb_init_rx_ring(&bp->queues[0]);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002058
Zach Brownb410d132016-10-19 09:56:57 -05002059 for (i = 0; i < bp->tx_ring_size; i++) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002060 desc = macb_tx_desc(&bp->queues[0], i);
2061 macb_set_addr(bp, desc, 0);
2062 desc->ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002063 }
Ben Shelton21d35152015-04-22 17:28:54 -05002064 bp->queues[0].tx_head = 0;
2065 bp->queues[0].tx_tail = 0;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002066 desc->ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002067}
2068
2069static void macb_reset_hw(struct macb *bp)
2070{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002071 struct macb_queue *queue;
2072 unsigned int q;
Anssi Hannula0da70f82018-08-23 10:45:22 +03002073 u32 ctrl = macb_readl(bp, NCR);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002074
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002075 /* Disable RX and TX (XXX: Should we halt the transmission
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002076 * more gracefully?)
2077 */
Anssi Hannula0da70f82018-08-23 10:45:22 +03002078 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002079
2080 /* Clear the stats registers (XXX: Update stats first?) */
Anssi Hannula0da70f82018-08-23 10:45:22 +03002081 ctrl |= MACB_BIT(CLRSTAT);
2082
2083 macb_writel(bp, NCR, ctrl);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002084
2085 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00002086 macb_writel(bp, TSR, -1);
2087 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002088
2089 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002090 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2091 queue_writel(queue, IDR, -1);
2092 queue_readl(queue, ISR);
Nathan Sullivan24468372016-01-14 13:27:27 -06002093 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
2094 queue_writel(queue, ISR, -1);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002095 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002096}
2097
Jamie Iles70c9f3d2011-03-09 16:22:54 +00002098static u32 gem_mdc_clk_div(struct macb *bp)
2099{
2100 u32 config;
2101 unsigned long pclk_hz = clk_get_rate(bp->pclk);
2102
2103 if (pclk_hz <= 20000000)
2104 config = GEM_BF(CLK, GEM_CLK_DIV8);
2105 else if (pclk_hz <= 40000000)
2106 config = GEM_BF(CLK, GEM_CLK_DIV16);
2107 else if (pclk_hz <= 80000000)
2108 config = GEM_BF(CLK, GEM_CLK_DIV32);
2109 else if (pclk_hz <= 120000000)
2110 config = GEM_BF(CLK, GEM_CLK_DIV48);
2111 else if (pclk_hz <= 160000000)
2112 config = GEM_BF(CLK, GEM_CLK_DIV64);
2113 else
2114 config = GEM_BF(CLK, GEM_CLK_DIV96);
2115
2116 return config;
2117}
2118
2119static u32 macb_mdc_clk_div(struct macb *bp)
2120{
2121 u32 config;
2122 unsigned long pclk_hz;
2123
2124 if (macb_is_gem(bp))
2125 return gem_mdc_clk_div(bp);
2126
2127 pclk_hz = clk_get_rate(bp->pclk);
2128 if (pclk_hz <= 20000000)
2129 config = MACB_BF(CLK, MACB_CLK_DIV8);
2130 else if (pclk_hz <= 40000000)
2131 config = MACB_BF(CLK, MACB_CLK_DIV16);
2132 else if (pclk_hz <= 80000000)
2133 config = MACB_BF(CLK, MACB_CLK_DIV32);
2134 else
2135 config = MACB_BF(CLK, MACB_CLK_DIV64);
2136
2137 return config;
2138}
2139
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002140/* Get the DMA bus width field of the network configuration register that we
Jamie Iles757a03c2011-03-09 16:29:59 +00002141 * should program. We find the width from decoding the design configuration
2142 * register to find the maximum supported data bus width.
2143 */
2144static u32 macb_dbw(struct macb *bp)
2145{
2146 if (!macb_is_gem(bp))
2147 return 0;
2148
2149 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
2150 case 4:
2151 return GEM_BF(DBW, GEM_DBW128);
2152 case 2:
2153 return GEM_BF(DBW, GEM_DBW64);
2154 case 1:
2155 default:
2156 return GEM_BF(DBW, GEM_DBW32);
2157 }
2158}
2159
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002160/* Configure the receive DMA engine
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002161 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02002162 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002163 * (if not supported by FIFO, it will fallback to default)
2164 * - set both rx/tx packet buffers to full memory size
2165 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00002166 */
2167static void macb_configure_dma(struct macb *bp)
2168{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002169 struct macb_queue *queue;
2170 u32 buffer_size;
2171 unsigned int q;
Jamie Iles0116da42011-03-14 17:38:30 +00002172 u32 dmacfg;
2173
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002174 buffer_size = bp->rx_buffer_size / RX_BUFFER_MULTIPLE;
Jamie Iles0116da42011-03-14 17:38:30 +00002175 if (macb_is_gem(bp)) {
2176 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002177 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2178 if (q)
2179 queue_writel(queue, RBQS, buffer_size);
2180 else
2181 dmacfg |= GEM_BF(RXBS, buffer_size);
2182 }
Nicolas Ferree1755872014-07-24 13:50:58 +02002183 if (bp->dma_burst_length)
2184 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002185 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05302186 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05302187
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03002188 if (bp->native_io)
Arun Chandran62f69242015-03-01 11:38:02 +05302189 dmacfg &= ~GEM_BIT(ENDIA_DESC);
2190 else
2191 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
2192
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002193 if (bp->dev->features & NETIF_F_HW_CSUM)
2194 dmacfg |= GEM_BIT(TXCOEN);
2195 else
2196 dmacfg &= ~GEM_BIT(TXCOEN);
Harini Katakamfff80192016-08-09 13:15:53 +05302197
Michal Simekbd620722018-09-25 08:32:50 +02002198 dmacfg &= ~GEM_BIT(ADDR64);
Harini Katakamfff80192016-08-09 13:15:53 +05302199#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002200 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002201 dmacfg |= GEM_BIT(ADDR64);
Harini Katakamfff80192016-08-09 13:15:53 +05302202#endif
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002203#ifdef CONFIG_MACB_USE_HWSTAMP
2204 if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
2205 dmacfg |= GEM_BIT(RXEXT) | GEM_BIT(TXEXT);
2206#endif
Nicolas Ferree1755872014-07-24 13:50:58 +02002207 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
2208 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00002209 gem_writel(bp, DMACFG, dmacfg);
2210 }
2211}
2212
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002213static void macb_init_hw(struct macb *bp)
2214{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002215 struct macb_queue *queue;
2216 unsigned int q;
2217
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002218 u32 config;
2219
2220 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00002221 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002222
Jamie Iles70c9f3d2011-03-09 16:22:54 +00002223 config = macb_mdc_clk_div(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05302224 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
2225 config |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00002226 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002227 config |= MACB_BIT(PAE); /* PAuse Enable */
2228 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03002229 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302230 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
2231 else
2232 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002233 if (bp->dev->flags & IFF_PROMISC)
2234 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002235 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
2236 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002237 if (!(bp->dev->flags & IFF_BROADCAST))
2238 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00002239 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002240 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03002241 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302242 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00002243 bp->speed = SPEED_10;
2244 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302245 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03002246 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302247 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002248
Jamie Iles0116da42011-03-14 17:38:30 +00002249 macb_configure_dma(bp);
2250
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002251 /* Initialize TX and RX buffers */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002252 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002253 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
2254#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2255 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2256 queue_writel(queue, RBQPH, upper_32_bits(queue->rx_ring_dma));
2257#endif
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002258 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +05302259#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002260 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002261 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +05302262#endif
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002263
2264 /* Enable interrupts */
2265 queue_writel(queue, IER,
Harini Katakame5010702019-01-29 15:20:03 +05302266 bp->rx_intr_mask |
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002267 MACB_TX_INT_FLAGS |
2268 MACB_BIT(HRESP));
2269 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002270
2271 /* Enable TX and RX */
Anssi Hannula0da70f82018-08-23 10:45:22 +03002272 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(RE) | MACB_BIT(TE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002273}
2274
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002275/* The hash address register is 64 bits long and takes up two
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002276 * locations in the memory map. The least significant bits are stored
2277 * in EMAC_HSL and the most significant bits in EMAC_HSH.
2278 *
2279 * The unicast hash enable and the multicast hash enable bits in the
2280 * network configuration register enable the reception of hash matched
2281 * frames. The destination address is reduced to a 6 bit index into
2282 * the 64 bit hash register using the following hash function. The
2283 * hash function is an exclusive or of every sixth bit of the
2284 * destination address.
2285 *
2286 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2287 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2288 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2289 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2290 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2291 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2292 *
2293 * da[0] represents the least significant bit of the first byte
2294 * received, that is, the multicast/unicast indicator, and da[47]
2295 * represents the most significant bit of the last byte received. If
2296 * the hash index, hi[n], points to a bit that is set in the hash
2297 * register then the frame will be matched according to whether the
2298 * frame is multicast or unicast. A multicast match will be signalled
2299 * if the multicast hash enable bit is set, da[0] is 1 and the hash
2300 * index points to a bit set in the hash register. A unicast match
2301 * will be signalled if the unicast hash enable bit is set, da[0] is 0
2302 * and the hash index points to a bit set in the hash register. To
2303 * receive all multicast frames, the hash register should be set with
2304 * all ones and the multicast hash enable bit should be set in the
2305 * network configuration register.
2306 */
2307
2308static inline int hash_bit_value(int bitnr, __u8 *addr)
2309{
2310 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
2311 return 1;
2312 return 0;
2313}
2314
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002315/* Return the hash index value for the specified address. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002316static int hash_get_index(__u8 *addr)
2317{
2318 int i, j, bitval;
2319 int hash_index = 0;
2320
2321 for (j = 0; j < 6; j++) {
2322 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06002323 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002324
2325 hash_index |= (bitval << j);
2326 }
2327
2328 return hash_index;
2329}
2330
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002331/* Add multicast addresses to the internal multicast-hash table. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002332static void macb_sethashtable(struct net_device *dev)
2333{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002334 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002335 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00002336 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002337 struct macb *bp = netdev_priv(dev);
2338
Moritz Fischeraa50b552016-03-29 19:11:13 -07002339 mc_filter[0] = 0;
2340 mc_filter[1] = 0;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002341
Jiri Pirko22bedad32010-04-01 21:22:57 +00002342 netdev_for_each_mc_addr(ha, dev) {
2343 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002344 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
2345 }
2346
Jamie Ilesf75ba502011-11-08 10:12:32 +00002347 macb_or_gem_writel(bp, HRB, mc_filter[0]);
2348 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002349}
2350
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002351/* Enable/Disable promiscuous and multicast modes. */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002352static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002353{
2354 unsigned long cfg;
2355 struct macb *bp = netdev_priv(dev);
2356
2357 cfg = macb_readl(bp, NCFGR);
2358
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002359 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002360 /* Enable promiscuous mode */
2361 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002362
2363 /* Disable RX checksum offload */
2364 if (macb_is_gem(bp))
2365 cfg &= ~GEM_BIT(RXCOEN);
2366 } else {
2367 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002368 cfg &= ~MACB_BIT(CAF);
2369
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002370 /* Enable RX checksum offload only if requested */
2371 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
2372 cfg |= GEM_BIT(RXCOEN);
2373 }
2374
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002375 if (dev->flags & IFF_ALLMULTI) {
2376 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00002377 macb_or_gem_writel(bp, HRB, -1);
2378 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002379 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002380 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002381 /* Enable specific multicasts */
2382 macb_sethashtable(dev);
2383 cfg |= MACB_BIT(NCFGR_MTI);
2384 } else if (dev->flags & (~IFF_ALLMULTI)) {
2385 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00002386 macb_or_gem_writel(bp, HRB, 0);
2387 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002388 cfg &= ~MACB_BIT(NCFGR_MTI);
2389 }
2390
2391 macb_writel(bp, NCFGR, cfg);
2392}
2393
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002394static int macb_open(struct net_device *dev)
2395{
2396 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00002397 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002398 struct macb_queue *queue;
2399 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002400 int err;
2401
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002402 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002403
Harini Katakamd54f89a2019-03-01 16:20:34 +05302404 err = pm_runtime_get_sync(&bp->pdev->dev);
2405 if (err < 0)
2406 goto pm_exit;
2407
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002408 /* carrier starts down */
2409 netif_carrier_off(dev);
2410
frederic RODO6c36a702007-07-12 19:07:24 +02002411 /* if the phy is not yet register, retry later*/
Harini Katakamd54f89a2019-03-01 16:20:34 +05302412 if (!dev->phydev) {
2413 err = -EAGAIN;
2414 goto pm_exit;
2415 }
frederic RODO6c36a702007-07-12 19:07:24 +02002416
Nicolas Ferre1b447912013-06-04 21:57:11 +00002417 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00002418 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00002419
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002420 err = macb_alloc_consistent(bp);
2421 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002422 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
2423 err);
Harini Katakamd54f89a2019-03-01 16:20:34 +05302424 goto pm_exit;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002425 }
2426
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002427 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2428 napi_enable(&queue->napi);
2429
Harini Katakam05044532019-05-07 19:59:10 +05302430 bp->macbgem_ops.mog_init_rings(bp);
2431 macb_init_hw(bp);
2432
frederic RODO6c36a702007-07-12 19:07:24 +02002433 /* schedule a link state check */
Philippe Reynes0a912812016-06-22 00:32:35 +02002434 phy_start(dev->phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02002435
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002436 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002437
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002438 if (bp->ptp_info)
2439 bp->ptp_info->ptp_init(dev);
2440
Harini Katakamd54f89a2019-03-01 16:20:34 +05302441pm_exit:
2442 if (err) {
2443 pm_runtime_put_sync(&bp->pdev->dev);
2444 return err;
2445 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002446 return 0;
2447}
2448
2449static int macb_close(struct net_device *dev)
2450{
2451 struct macb *bp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002452 struct macb_queue *queue;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002453 unsigned long flags;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002454 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002455
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002456 netif_tx_stop_all_queues(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002457
2458 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2459 napi_disable(&queue->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002460
Philippe Reynes0a912812016-06-22 00:32:35 +02002461 if (dev->phydev)
2462 phy_stop(dev->phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02002463
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002464 spin_lock_irqsave(&bp->lock, flags);
2465 macb_reset_hw(bp);
2466 netif_carrier_off(dev);
2467 spin_unlock_irqrestore(&bp->lock, flags);
2468
2469 macb_free_consistent(bp);
2470
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002471 if (bp->ptp_info)
2472 bp->ptp_info->ptp_remove(dev);
2473
Harini Katakamd54f89a2019-03-01 16:20:34 +05302474 pm_runtime_put(&bp->pdev->dev);
2475
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002476 return 0;
2477}
2478
Harini Katakama5898ea2015-05-06 22:27:18 +05302479static int macb_change_mtu(struct net_device *dev, int new_mtu)
2480{
Harini Katakama5898ea2015-05-06 22:27:18 +05302481 if (netif_running(dev))
2482 return -EBUSY;
2483
Harini Katakama5898ea2015-05-06 22:27:18 +05302484 dev->mtu = new_mtu;
2485
2486 return 0;
2487}
2488
Jamie Ilesa494ed82011-03-09 16:26:35 +00002489static void gem_update_stats(struct macb *bp)
2490{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002491 struct macb_queue *queue;
2492 unsigned int i, q, idx;
2493 unsigned long *stat;
2494
Jamie Ilesa494ed82011-03-09 16:26:35 +00002495 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002496
Xander Huff3ff13f12015-01-13 16:15:51 -06002497 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
2498 u32 offset = gem_statistics[i].offset;
David S. Miller7a6e0702015-07-27 14:24:48 -07002499 u64 val = bp->macb_reg_readl(bp, offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06002500
2501 bp->ethtool_stats[i] += val;
2502 *p += val;
2503
2504 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
2505 /* Add GEM_OCTTXH, GEM_OCTRXH */
David S. Miller7a6e0702015-07-27 14:24:48 -07002506 val = bp->macb_reg_readl(bp, offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06002507 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06002508 *(++p) += val;
2509 }
2510 }
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002511
2512 idx = GEM_STATS_LEN;
2513 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2514 for (i = 0, stat = &queue->stats.first; i < QUEUE_STATS_LEN; ++i, ++stat)
2515 bp->ethtool_stats[idx++] = *stat;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002516}
2517
2518static struct net_device_stats *gem_get_stats(struct macb *bp)
2519{
2520 struct gem_stats *hwstat = &bp->hw_stats.gem;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02002521 struct net_device_stats *nstat = &bp->dev->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002522
2523 gem_update_stats(bp);
2524
2525 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
2526 hwstat->rx_alignment_errors +
2527 hwstat->rx_resource_errors +
2528 hwstat->rx_overruns +
2529 hwstat->rx_oversize_frames +
2530 hwstat->rx_jabbers +
2531 hwstat->rx_undersized_frames +
2532 hwstat->rx_length_field_frame_errors);
2533 nstat->tx_errors = (hwstat->tx_late_collisions +
2534 hwstat->tx_excessive_collisions +
2535 hwstat->tx_underrun +
2536 hwstat->tx_carrier_sense_errors);
2537 nstat->multicast = hwstat->rx_multicast_frames;
2538 nstat->collisions = (hwstat->tx_single_collision_frames +
2539 hwstat->tx_multiple_collision_frames +
2540 hwstat->tx_excessive_collisions);
2541 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2542 hwstat->rx_jabbers +
2543 hwstat->rx_undersized_frames +
2544 hwstat->rx_length_field_frame_errors);
2545 nstat->rx_over_errors = hwstat->rx_resource_errors;
2546 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2547 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2548 nstat->rx_fifo_errors = hwstat->rx_overruns;
2549 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2550 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2551 nstat->tx_fifo_errors = hwstat->tx_underrun;
2552
2553 return nstat;
2554}
2555
Xander Huff3ff13f12015-01-13 16:15:51 -06002556static void gem_get_ethtool_stats(struct net_device *dev,
2557 struct ethtool_stats *stats, u64 *data)
2558{
2559 struct macb *bp;
2560
2561 bp = netdev_priv(dev);
2562 gem_update_stats(bp);
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002563 memcpy(data, &bp->ethtool_stats, sizeof(u64)
2564 * (GEM_STATS_LEN + QUEUE_STATS_LEN * MACB_MAX_QUEUES));
Xander Huff3ff13f12015-01-13 16:15:51 -06002565}
2566
2567static int gem_get_sset_count(struct net_device *dev, int sset)
2568{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002569 struct macb *bp = netdev_priv(dev);
2570
Xander Huff3ff13f12015-01-13 16:15:51 -06002571 switch (sset) {
2572 case ETH_SS_STATS:
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002573 return GEM_STATS_LEN + bp->num_queues * QUEUE_STATS_LEN;
Xander Huff3ff13f12015-01-13 16:15:51 -06002574 default:
2575 return -EOPNOTSUPP;
2576 }
2577}
2578
2579static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2580{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002581 char stat_string[ETH_GSTRING_LEN];
2582 struct macb *bp = netdev_priv(dev);
2583 struct macb_queue *queue;
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03002584 unsigned int i;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002585 unsigned int q;
Xander Huff3ff13f12015-01-13 16:15:51 -06002586
2587 switch (sset) {
2588 case ETH_SS_STATS:
2589 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2590 memcpy(p, gem_statistics[i].stat_string,
2591 ETH_GSTRING_LEN);
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002592
2593 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2594 for (i = 0; i < QUEUE_STATS_LEN; i++, p += ETH_GSTRING_LEN) {
2595 snprintf(stat_string, ETH_GSTRING_LEN, "q%d_%s",
2596 q, queue_statistics[i].stat_string);
2597 memcpy(p, stat_string, ETH_GSTRING_LEN);
2598 }
2599 }
Xander Huff3ff13f12015-01-13 16:15:51 -06002600 break;
2601 }
2602}
2603
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002604static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002605{
2606 struct macb *bp = netdev_priv(dev);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02002607 struct net_device_stats *nstat = &bp->dev->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002608 struct macb_stats *hwstat = &bp->hw_stats.macb;
2609
2610 if (macb_is_gem(bp))
2611 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002612
frederic RODO6c36a702007-07-12 19:07:24 +02002613 /* read stats from hardware */
2614 macb_update_stats(bp);
2615
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002616 /* Convert HW stats into netdevice stats */
2617 nstat->rx_errors = (hwstat->rx_fcs_errors +
2618 hwstat->rx_align_errors +
2619 hwstat->rx_resource_errors +
2620 hwstat->rx_overruns +
2621 hwstat->rx_oversize_pkts +
2622 hwstat->rx_jabbers +
2623 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002624 hwstat->rx_length_mismatch);
2625 nstat->tx_errors = (hwstat->tx_late_cols +
2626 hwstat->tx_excessive_cols +
2627 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002628 hwstat->tx_carrier_errors +
2629 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002630 nstat->collisions = (hwstat->tx_single_cols +
2631 hwstat->tx_multiple_cols +
2632 hwstat->tx_excessive_cols);
2633 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2634 hwstat->rx_jabbers +
2635 hwstat->rx_undersize_pkts +
2636 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002637 nstat->rx_over_errors = hwstat->rx_resource_errors +
2638 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002639 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2640 nstat->rx_frame_errors = hwstat->rx_align_errors;
2641 nstat->rx_fifo_errors = hwstat->rx_overruns;
2642 /* XXX: What does "missed" mean? */
2643 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2644 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2645 nstat->tx_fifo_errors = hwstat->tx_underruns;
2646 /* Don't know about heartbeat or window errors... */
2647
2648 return nstat;
2649}
2650
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002651static int macb_get_regs_len(struct net_device *netdev)
2652{
2653 return MACB_GREGS_NBR * sizeof(u32);
2654}
2655
2656static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2657 void *p)
2658{
2659 struct macb *bp = netdev_priv(dev);
2660 unsigned int tail, head;
2661 u32 *regs_buff = p;
2662
2663 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2664 | MACB_GREGS_VERSION;
2665
Zach Brownb410d132016-10-19 09:56:57 -05002666 tail = macb_tx_ring_wrap(bp, bp->queues[0].tx_tail);
2667 head = macb_tx_ring_wrap(bp, bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002668
2669 regs_buff[0] = macb_readl(bp, NCR);
2670 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2671 regs_buff[2] = macb_readl(bp, NSR);
2672 regs_buff[3] = macb_readl(bp, TSR);
2673 regs_buff[4] = macb_readl(bp, RBQP);
2674 regs_buff[5] = macb_readl(bp, TBQP);
2675 regs_buff[6] = macb_readl(bp, RSR);
2676 regs_buff[7] = macb_readl(bp, IMR);
2677
2678 regs_buff[8] = tail;
2679 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002680 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2681 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002682
Neil Armstrongce721a72016-01-05 14:39:16 +01002683 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
2684 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002685 if (macb_is_gem(bp))
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002686 regs_buff[13] = gem_readl(bp, DMACFG);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002687}
2688
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002689static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2690{
2691 struct macb *bp = netdev_priv(netdev);
2692
2693 wol->supported = 0;
2694 wol->wolopts = 0;
2695
2696 if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
2697 wol->supported = WAKE_MAGIC;
2698
2699 if (bp->wol & MACB_WOL_ENABLED)
2700 wol->wolopts |= WAKE_MAGIC;
2701 }
2702}
2703
2704static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2705{
2706 struct macb *bp = netdev_priv(netdev);
2707
2708 if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
2709 (wol->wolopts & ~WAKE_MAGIC))
2710 return -EOPNOTSUPP;
2711
2712 if (wol->wolopts & WAKE_MAGIC)
2713 bp->wol |= MACB_WOL_ENABLED;
2714 else
2715 bp->wol &= ~MACB_WOL_ENABLED;
2716
2717 device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
2718
2719 return 0;
2720}
2721
Zach Brown8441bb32016-10-19 09:56:58 -05002722static void macb_get_ringparam(struct net_device *netdev,
2723 struct ethtool_ringparam *ring)
2724{
2725 struct macb *bp = netdev_priv(netdev);
2726
2727 ring->rx_max_pending = MAX_RX_RING_SIZE;
2728 ring->tx_max_pending = MAX_TX_RING_SIZE;
2729
2730 ring->rx_pending = bp->rx_ring_size;
2731 ring->tx_pending = bp->tx_ring_size;
2732}
2733
2734static int macb_set_ringparam(struct net_device *netdev,
2735 struct ethtool_ringparam *ring)
2736{
2737 struct macb *bp = netdev_priv(netdev);
2738 u32 new_rx_size, new_tx_size;
2739 unsigned int reset = 0;
2740
2741 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
2742 return -EINVAL;
2743
2744 new_rx_size = clamp_t(u32, ring->rx_pending,
2745 MIN_RX_RING_SIZE, MAX_RX_RING_SIZE);
2746 new_rx_size = roundup_pow_of_two(new_rx_size);
2747
2748 new_tx_size = clamp_t(u32, ring->tx_pending,
2749 MIN_TX_RING_SIZE, MAX_TX_RING_SIZE);
2750 new_tx_size = roundup_pow_of_two(new_tx_size);
2751
2752 if ((new_tx_size == bp->tx_ring_size) &&
2753 (new_rx_size == bp->rx_ring_size)) {
2754 /* nothing to do */
2755 return 0;
2756 }
2757
2758 if (netif_running(bp->dev)) {
2759 reset = 1;
2760 macb_close(bp->dev);
2761 }
2762
2763 bp->rx_ring_size = new_rx_size;
2764 bp->tx_ring_size = new_tx_size;
2765
2766 if (reset)
2767 macb_open(bp->dev);
2768
2769 return 0;
2770}
2771
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01002772#ifdef CONFIG_MACB_USE_HWSTAMP
2773static unsigned int gem_get_tsu_rate(struct macb *bp)
2774{
2775 struct clk *tsu_clk;
2776 unsigned int tsu_rate;
2777
2778 tsu_clk = devm_clk_get(&bp->pdev->dev, "tsu_clk");
2779 if (!IS_ERR(tsu_clk))
2780 tsu_rate = clk_get_rate(tsu_clk);
2781 /* try pclk instead */
2782 else if (!IS_ERR(bp->pclk)) {
2783 tsu_clk = bp->pclk;
2784 tsu_rate = clk_get_rate(tsu_clk);
2785 } else
2786 return -ENOTSUPP;
2787 return tsu_rate;
2788}
2789
2790static s32 gem_get_ptp_max_adj(void)
2791{
2792 return 64000000;
2793}
2794
2795static int gem_get_ts_info(struct net_device *dev,
2796 struct ethtool_ts_info *info)
2797{
2798 struct macb *bp = netdev_priv(dev);
2799
2800 if ((bp->hw_dma_cap & HW_DMA_CAP_PTP) == 0) {
2801 ethtool_op_get_ts_info(dev, info);
2802 return 0;
2803 }
2804
2805 info->so_timestamping =
2806 SOF_TIMESTAMPING_TX_SOFTWARE |
2807 SOF_TIMESTAMPING_RX_SOFTWARE |
2808 SOF_TIMESTAMPING_SOFTWARE |
2809 SOF_TIMESTAMPING_TX_HARDWARE |
2810 SOF_TIMESTAMPING_RX_HARDWARE |
2811 SOF_TIMESTAMPING_RAW_HARDWARE;
2812 info->tx_types =
2813 (1 << HWTSTAMP_TX_ONESTEP_SYNC) |
2814 (1 << HWTSTAMP_TX_OFF) |
2815 (1 << HWTSTAMP_TX_ON);
2816 info->rx_filters =
2817 (1 << HWTSTAMP_FILTER_NONE) |
2818 (1 << HWTSTAMP_FILTER_ALL);
2819
2820 info->phc_index = bp->ptp_clock ? ptp_clock_index(bp->ptp_clock) : -1;
2821
2822 return 0;
2823}
2824
2825static struct macb_ptp_info gem_ptp_info = {
2826 .ptp_init = gem_ptp_init,
2827 .ptp_remove = gem_ptp_remove,
2828 .get_ptp_max_adj = gem_get_ptp_max_adj,
2829 .get_tsu_rate = gem_get_tsu_rate,
2830 .get_ts_info = gem_get_ts_info,
2831 .get_hwtst = gem_get_hwtst,
2832 .set_hwtst = gem_set_hwtst,
2833};
2834#endif
2835
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002836static int macb_get_ts_info(struct net_device *netdev,
2837 struct ethtool_ts_info *info)
2838{
2839 struct macb *bp = netdev_priv(netdev);
2840
2841 if (bp->ptp_info)
2842 return bp->ptp_info->get_ts_info(netdev, info);
2843
2844 return ethtool_op_get_ts_info(netdev, info);
2845}
2846
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002847static void gem_enable_flow_filters(struct macb *bp, bool enable)
2848{
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00002849 struct net_device *netdev = bp->dev;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002850 struct ethtool_rx_fs_item *item;
2851 u32 t2_scr;
2852 int num_t2_scr;
2853
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00002854 if (!(netdev->features & NETIF_F_NTUPLE))
2855 return;
2856
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002857 num_t2_scr = GEM_BFEXT(T2SCR, gem_readl(bp, DCFG8));
2858
2859 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2860 struct ethtool_rx_flow_spec *fs = &item->fs;
2861 struct ethtool_tcpip4_spec *tp4sp_m;
2862
2863 if (fs->location >= num_t2_scr)
2864 continue;
2865
2866 t2_scr = gem_readl_n(bp, SCRT2, fs->location);
2867
2868 /* enable/disable screener regs for the flow entry */
2869 t2_scr = GEM_BFINS(ETHTEN, enable, t2_scr);
2870
2871 /* only enable fields with no masking */
2872 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2873
2874 if (enable && (tp4sp_m->ip4src == 0xFFFFFFFF))
2875 t2_scr = GEM_BFINS(CMPAEN, 1, t2_scr);
2876 else
2877 t2_scr = GEM_BFINS(CMPAEN, 0, t2_scr);
2878
2879 if (enable && (tp4sp_m->ip4dst == 0xFFFFFFFF))
2880 t2_scr = GEM_BFINS(CMPBEN, 1, t2_scr);
2881 else
2882 t2_scr = GEM_BFINS(CMPBEN, 0, t2_scr);
2883
2884 if (enable && ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)))
2885 t2_scr = GEM_BFINS(CMPCEN, 1, t2_scr);
2886 else
2887 t2_scr = GEM_BFINS(CMPCEN, 0, t2_scr);
2888
2889 gem_writel_n(bp, SCRT2, fs->location, t2_scr);
2890 }
2891}
2892
2893static void gem_prog_cmp_regs(struct macb *bp, struct ethtool_rx_flow_spec *fs)
2894{
2895 struct ethtool_tcpip4_spec *tp4sp_v, *tp4sp_m;
2896 uint16_t index = fs->location;
2897 u32 w0, w1, t2_scr;
2898 bool cmp_a = false;
2899 bool cmp_b = false;
2900 bool cmp_c = false;
2901
2902 tp4sp_v = &(fs->h_u.tcp_ip4_spec);
2903 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2904
2905 /* ignore field if any masking set */
2906 if (tp4sp_m->ip4src == 0xFFFFFFFF) {
2907 /* 1st compare reg - IP source address */
2908 w0 = 0;
2909 w1 = 0;
2910 w0 = tp4sp_v->ip4src;
2911 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2912 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2913 w1 = GEM_BFINS(T2OFST, ETYPE_SRCIP_OFFSET, w1);
2914 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w0);
2915 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w1);
2916 cmp_a = true;
2917 }
2918
2919 /* ignore field if any masking set */
2920 if (tp4sp_m->ip4dst == 0xFFFFFFFF) {
2921 /* 2nd compare reg - IP destination address */
2922 w0 = 0;
2923 w1 = 0;
2924 w0 = tp4sp_v->ip4dst;
2925 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2926 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2927 w1 = GEM_BFINS(T2OFST, ETYPE_DSTIP_OFFSET, w1);
2928 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4DST_CMP(index)), w0);
2929 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4DST_CMP(index)), w1);
2930 cmp_b = true;
2931 }
2932
2933 /* ignore both port fields if masking set in both */
2934 if ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)) {
2935 /* 3rd compare reg - source port, destination port */
2936 w0 = 0;
2937 w1 = 0;
2938 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_IPHDR, w1);
2939 if (tp4sp_m->psrc == tp4sp_m->pdst) {
2940 w0 = GEM_BFINS(T2MASK, tp4sp_v->psrc, w0);
2941 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2942 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2943 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2944 } else {
2945 /* only one port definition */
2946 w1 = GEM_BFINS(T2DISMSK, 0, w1); /* 16-bit compare */
2947 w0 = GEM_BFINS(T2MASK, 0xFFFF, w0);
2948 if (tp4sp_m->psrc == 0xFFFF) { /* src port */
2949 w0 = GEM_BFINS(T2CMP, tp4sp_v->psrc, w0);
2950 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2951 } else { /* dst port */
2952 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2953 w1 = GEM_BFINS(T2OFST, IPHDR_DSTPORT_OFFSET, w1);
2954 }
2955 }
2956 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_PORT_CMP(index)), w0);
2957 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_PORT_CMP(index)), w1);
2958 cmp_c = true;
2959 }
2960
2961 t2_scr = 0;
2962 t2_scr = GEM_BFINS(QUEUE, (fs->ring_cookie) & 0xFF, t2_scr);
2963 t2_scr = GEM_BFINS(ETHT2IDX, SCRT2_ETHT, t2_scr);
2964 if (cmp_a)
2965 t2_scr = GEM_BFINS(CMPA, GEM_IP4SRC_CMP(index), t2_scr);
2966 if (cmp_b)
2967 t2_scr = GEM_BFINS(CMPB, GEM_IP4DST_CMP(index), t2_scr);
2968 if (cmp_c)
2969 t2_scr = GEM_BFINS(CMPC, GEM_PORT_CMP(index), t2_scr);
2970 gem_writel_n(bp, SCRT2, index, t2_scr);
2971}
2972
2973static int gem_add_flow_filter(struct net_device *netdev,
2974 struct ethtool_rxnfc *cmd)
2975{
2976 struct macb *bp = netdev_priv(netdev);
2977 struct ethtool_rx_flow_spec *fs = &cmd->fs;
2978 struct ethtool_rx_fs_item *item, *newfs;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002979 unsigned long flags;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002980 int ret = -EINVAL;
2981 bool added = false;
2982
Julia Cartwrightcc1674e2017-12-05 18:02:50 -06002983 newfs = kmalloc(sizeof(*newfs), GFP_KERNEL);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002984 if (newfs == NULL)
2985 return -ENOMEM;
2986 memcpy(&newfs->fs, fs, sizeof(newfs->fs));
2987
2988 netdev_dbg(netdev,
2989 "Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
2990 fs->flow_type, (int)fs->ring_cookie, fs->location,
2991 htonl(fs->h_u.tcp_ip4_spec.ip4src),
2992 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
2993 htons(fs->h_u.tcp_ip4_spec.psrc), htons(fs->h_u.tcp_ip4_spec.pdst));
2994
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002995 spin_lock_irqsave(&bp->rx_fs_lock, flags);
2996
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002997 /* find correct place to add in list */
Julia Cartwrighta3da8ad2017-12-05 18:02:48 -06002998 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2999 if (item->fs.location > newfs->fs.location) {
3000 list_add_tail(&newfs->list, &item->list);
3001 added = true;
3002 break;
3003 } else if (item->fs.location == fs->location) {
3004 netdev_err(netdev, "Rule not added: location %d not free!\n",
3005 fs->location);
3006 ret = -EBUSY;
3007 goto err;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003008 }
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003009 }
Julia Cartwrighta3da8ad2017-12-05 18:02:48 -06003010 if (!added)
3011 list_add_tail(&newfs->list, &bp->rx_fs_list.list);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003012
3013 gem_prog_cmp_regs(bp, fs);
3014 bp->rx_fs_list.count++;
3015 /* enable filtering if NTUPLE on */
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00003016 gem_enable_flow_filters(bp, 1);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003017
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003018 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003019 return 0;
3020
3021err:
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003022 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003023 kfree(newfs);
3024 return ret;
3025}
3026
3027static int gem_del_flow_filter(struct net_device *netdev,
3028 struct ethtool_rxnfc *cmd)
3029{
3030 struct macb *bp = netdev_priv(netdev);
3031 struct ethtool_rx_fs_item *item;
3032 struct ethtool_rx_flow_spec *fs;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003033 unsigned long flags;
3034
3035 spin_lock_irqsave(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003036
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003037 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3038 if (item->fs.location == cmd->fs.location) {
3039 /* disable screener regs for the flow entry */
3040 fs = &(item->fs);
3041 netdev_dbg(netdev,
3042 "Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3043 fs->flow_type, (int)fs->ring_cookie, fs->location,
3044 htonl(fs->h_u.tcp_ip4_spec.ip4src),
3045 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
3046 htons(fs->h_u.tcp_ip4_spec.psrc),
3047 htons(fs->h_u.tcp_ip4_spec.pdst));
3048
3049 gem_writel_n(bp, SCRT2, fs->location, 0);
3050
3051 list_del(&item->list);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003052 bp->rx_fs_list.count--;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003053 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3054 kfree(item);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003055 return 0;
3056 }
3057 }
3058
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003059 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003060 return -EINVAL;
3061}
3062
3063static int gem_get_flow_entry(struct net_device *netdev,
3064 struct ethtool_rxnfc *cmd)
3065{
3066 struct macb *bp = netdev_priv(netdev);
3067 struct ethtool_rx_fs_item *item;
3068
3069 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3070 if (item->fs.location == cmd->fs.location) {
3071 memcpy(&cmd->fs, &item->fs, sizeof(cmd->fs));
3072 return 0;
3073 }
3074 }
3075 return -EINVAL;
3076}
3077
3078static int gem_get_all_flow_entries(struct net_device *netdev,
3079 struct ethtool_rxnfc *cmd, u32 *rule_locs)
3080{
3081 struct macb *bp = netdev_priv(netdev);
3082 struct ethtool_rx_fs_item *item;
3083 uint32_t cnt = 0;
3084
3085 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3086 if (cnt == cmd->rule_cnt)
3087 return -EMSGSIZE;
3088 rule_locs[cnt] = item->fs.location;
3089 cnt++;
3090 }
3091 cmd->data = bp->max_tuples;
3092 cmd->rule_cnt = cnt;
3093
3094 return 0;
3095}
3096
3097static int gem_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
3098 u32 *rule_locs)
3099{
3100 struct macb *bp = netdev_priv(netdev);
3101 int ret = 0;
3102
3103 switch (cmd->cmd) {
3104 case ETHTOOL_GRXRINGS:
3105 cmd->data = bp->num_queues;
3106 break;
3107 case ETHTOOL_GRXCLSRLCNT:
3108 cmd->rule_cnt = bp->rx_fs_list.count;
3109 break;
3110 case ETHTOOL_GRXCLSRULE:
3111 ret = gem_get_flow_entry(netdev, cmd);
3112 break;
3113 case ETHTOOL_GRXCLSRLALL:
3114 ret = gem_get_all_flow_entries(netdev, cmd, rule_locs);
3115 break;
3116 default:
3117 netdev_err(netdev,
3118 "Command parameter %d is not supported\n", cmd->cmd);
3119 ret = -EOPNOTSUPP;
3120 }
3121
3122 return ret;
3123}
3124
3125static int gem_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
3126{
3127 struct macb *bp = netdev_priv(netdev);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003128 int ret;
3129
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003130 switch (cmd->cmd) {
3131 case ETHTOOL_SRXCLSRLINS:
3132 if ((cmd->fs.location >= bp->max_tuples)
3133 || (cmd->fs.ring_cookie >= bp->num_queues)) {
3134 ret = -EINVAL;
3135 break;
3136 }
3137 ret = gem_add_flow_filter(netdev, cmd);
3138 break;
3139 case ETHTOOL_SRXCLSRLDEL:
3140 ret = gem_del_flow_filter(netdev, cmd);
3141 break;
3142 default:
3143 netdev_err(netdev,
3144 "Command parameter %d is not supported\n", cmd->cmd);
3145 ret = -EOPNOTSUPP;
3146 }
3147
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003148 return ret;
3149}
3150
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003151static const struct ethtool_ops macb_ethtool_ops = {
Nicolas Ferred1d1b532012-10-31 06:04:56 +00003152 .get_regs_len = macb_get_regs_len,
3153 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003154 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00003155 .get_ts_info = ethtool_op_get_ts_info,
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003156 .get_wol = macb_get_wol,
3157 .set_wol = macb_set_wol,
Philippe Reynes176275a2016-06-22 00:32:36 +02003158 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3159 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Zach Brown8441bb32016-10-19 09:56:58 -05003160 .get_ringparam = macb_get_ringparam,
3161 .set_ringparam = macb_set_ringparam,
Xander Huff8cd5a562015-01-15 15:55:20 -06003162};
Xander Huff8cd5a562015-01-15 15:55:20 -06003163
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00003164static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06003165 .get_regs_len = macb_get_regs_len,
3166 .get_regs = macb_get_regs,
3167 .get_link = ethtool_op_get_link,
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003168 .get_ts_info = macb_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06003169 .get_ethtool_stats = gem_get_ethtool_stats,
3170 .get_strings = gem_get_ethtool_strings,
3171 .get_sset_count = gem_get_sset_count,
Philippe Reynes176275a2016-06-22 00:32:36 +02003172 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3173 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Zach Brown8441bb32016-10-19 09:56:58 -05003174 .get_ringparam = macb_get_ringparam,
3175 .set_ringparam = macb_set_ringparam,
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003176 .get_rxnfc = gem_get_rxnfc,
3177 .set_rxnfc = gem_set_rxnfc,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003178};
3179
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003180static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003181{
Philippe Reynes0a912812016-06-22 00:32:35 +02003182 struct phy_device *phydev = dev->phydev;
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003183 struct macb *bp = netdev_priv(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003184
3185 if (!netif_running(dev))
3186 return -EINVAL;
3187
frederic RODO6c36a702007-07-12 19:07:24 +02003188 if (!phydev)
3189 return -ENODEV;
3190
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003191 if (!bp->ptp_info)
3192 return phy_mii_ioctl(phydev, rq, cmd);
3193
3194 switch (cmd) {
3195 case SIOCSHWTSTAMP:
3196 return bp->ptp_info->set_hwtst(dev, rq, cmd);
3197 case SIOCGHWTSTAMP:
3198 return bp->ptp_info->get_hwtst(dev, rq);
3199 default:
3200 return phy_mii_ioctl(phydev, rq, cmd);
3201 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003202}
3203
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00003204static inline void macb_set_txcsum_feature(struct macb *bp,
3205 netdev_features_t features)
3206{
3207 u32 val;
3208
3209 if (!macb_is_gem(bp))
3210 return;
3211
3212 val = gem_readl(bp, DMACFG);
3213 if (features & NETIF_F_HW_CSUM)
3214 val |= GEM_BIT(TXCOEN);
3215 else
3216 val &= ~GEM_BIT(TXCOEN);
3217
3218 gem_writel(bp, DMACFG, val);
3219}
3220
3221static inline void macb_set_rxcsum_feature(struct macb *bp,
3222 netdev_features_t features)
3223{
3224 struct net_device *netdev = bp->dev;
3225 u32 val;
3226
3227 if (!macb_is_gem(bp))
3228 return;
3229
3230 val = gem_readl(bp, NCFGR);
3231 if ((features & NETIF_F_RXCSUM) && !(netdev->flags & IFF_PROMISC))
3232 val |= GEM_BIT(RXCOEN);
3233 else
3234 val &= ~GEM_BIT(RXCOEN);
3235
3236 gem_writel(bp, NCFGR, val);
3237}
3238
3239static inline void macb_set_rxflow_feature(struct macb *bp,
3240 netdev_features_t features)
3241{
3242 if (!macb_is_gem(bp))
3243 return;
3244
3245 gem_enable_flow_filters(bp, !!(features & NETIF_F_NTUPLE));
3246}
3247
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003248static int macb_set_features(struct net_device *netdev,
3249 netdev_features_t features)
3250{
3251 struct macb *bp = netdev_priv(netdev);
3252 netdev_features_t changed = features ^ netdev->features;
3253
3254 /* TX checksum offload */
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00003255 if (changed & NETIF_F_HW_CSUM)
3256 macb_set_txcsum_feature(bp, features);
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003257
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003258 /* RX checksum offload */
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00003259 if (changed & NETIF_F_RXCSUM)
3260 macb_set_rxcsum_feature(bp, features);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003261
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003262 /* RX Flow Filters */
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00003263 if (changed & NETIF_F_NTUPLE)
3264 macb_set_rxflow_feature(bp, features);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003265
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003266 return 0;
3267}
3268
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00003269static void macb_restore_features(struct macb *bp)
3270{
3271 struct net_device *netdev = bp->dev;
3272 netdev_features_t features = netdev->features;
3273
3274 /* TX checksum offload */
3275 macb_set_txcsum_feature(bp, features);
3276
3277 /* RX checksum offload */
3278 macb_set_rxcsum_feature(bp, features);
3279
3280 /* RX Flow Filters */
3281 macb_set_rxflow_feature(bp, features);
3282}
3283
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003284static const struct net_device_ops macb_netdev_ops = {
3285 .ndo_open = macb_open,
3286 .ndo_stop = macb_close,
3287 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003288 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003289 .ndo_get_stats = macb_get_stats,
3290 .ndo_do_ioctl = macb_ioctl,
3291 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05303292 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003293 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07003294#ifdef CONFIG_NET_POLL_CONTROLLER
3295 .ndo_poll_controller = macb_poll_controller,
3296#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003297 .ndo_set_features = macb_set_features,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00003298 .ndo_features_check = macb_features_check,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003299};
3300
Moritz Fischer64ec42f2016-03-29 19:11:12 -07003301/* Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02003302 * and integration options used
3303 */
Moritz Fischer64ec42f2016-03-29 19:11:12 -07003304static void macb_configure_caps(struct macb *bp,
3305 const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02003306{
3307 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02003308
Nicolas Ferref6970502015-03-31 15:02:01 +02003309 if (dt_conf)
3310 bp->caps = dt_conf->caps;
3311
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003312 if (hw_is_gem(bp->regs, bp->native_io)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02003313 bp->caps |= MACB_CAPS_MACB_IS_GEM;
3314
Nicolas Ferree1755872014-07-24 13:50:58 +02003315 dcfg = gem_readl(bp, DCFG1);
3316 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
3317 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
3318 dcfg = gem_readl(bp, DCFG2);
3319 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
3320 bp->caps |= MACB_CAPS_FIFO_MODE;
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003321#ifdef CONFIG_MACB_USE_HWSTAMP
3322 if (gem_has_ptp(bp)) {
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003323 if (!GEM_BFEXT(TSU, gem_readl(bp, DCFG5)))
3324 pr_err("GEM doesn't support hardware ptp.\n");
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003325 else {
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003326 bp->hw_dma_cap |= HW_DMA_CAP_PTP;
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003327 bp->ptp_info = &gem_ptp_info;
3328 }
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003329 }
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003330#endif
Nicolas Ferree1755872014-07-24 13:50:58 +02003331 }
3332
Andy Shevchenkoa35919e2015-07-24 21:24:01 +03003333 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
Nicolas Ferree1755872014-07-24 13:50:58 +02003334}
3335
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003336static void macb_probe_queues(void __iomem *mem,
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003337 bool native_io,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003338 unsigned int *queue_mask,
3339 unsigned int *num_queues)
3340{
3341 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003342
3343 *queue_mask = 0x1;
3344 *num_queues = 1;
3345
Nicolas Ferreda120112015-03-31 15:02:00 +02003346 /* is it macb or gem ?
3347 *
3348 * We need to read directly from the hardware here because
3349 * we are early in the probe process and don't have the
3350 * MACB_CAPS_MACB_IS_GEM flag positioned
3351 */
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003352 if (!hw_is_gem(mem, native_io))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003353 return;
3354
3355 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05303356 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
3357
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003358 *queue_mask |= 0x1;
3359
3360 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
3361 if (*queue_mask & (1 << hw_q))
3362 (*num_queues)++;
3363}
3364
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003365static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303366 struct clk **hclk, struct clk **tx_clk,
Harini Katakamf5473d12019-03-01 16:20:33 +05303367 struct clk **rx_clk, struct clk **tsu_clk)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003368{
Bartosz Folta83a77e92016-12-14 06:39:15 +00003369 struct macb_platform_data *pdata;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003370 int err;
3371
Bartosz Folta83a77e92016-12-14 06:39:15 +00003372 pdata = dev_get_platdata(&pdev->dev);
3373 if (pdata) {
3374 *pclk = pdata->pclk;
3375 *hclk = pdata->hclk;
3376 } else {
3377 *pclk = devm_clk_get(&pdev->dev, "pclk");
3378 *hclk = devm_clk_get(&pdev->dev, "hclk");
3379 }
3380
Harini Katakamcd5afa92019-03-20 19:12:22 +05303381 if (IS_ERR_OR_NULL(*pclk)) {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003382 err = PTR_ERR(*pclk);
Harini Katakamcd5afa92019-03-20 19:12:22 +05303383 if (!err)
3384 err = -ENODEV;
3385
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003386 dev_err(&pdev->dev, "failed to get macb_clk (%d)\n", err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003387 return err;
3388 }
3389
Harini Katakamcd5afa92019-03-20 19:12:22 +05303390 if (IS_ERR_OR_NULL(*hclk)) {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003391 err = PTR_ERR(*hclk);
Harini Katakamcd5afa92019-03-20 19:12:22 +05303392 if (!err)
3393 err = -ENODEV;
3394
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003395 dev_err(&pdev->dev, "failed to get hclk (%d)\n", err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003396 return err;
3397 }
3398
3399 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
3400 if (IS_ERR(*tx_clk))
3401 *tx_clk = NULL;
3402
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303403 *rx_clk = devm_clk_get(&pdev->dev, "rx_clk");
3404 if (IS_ERR(*rx_clk))
3405 *rx_clk = NULL;
3406
Harini Katakamf5473d12019-03-01 16:20:33 +05303407 *tsu_clk = devm_clk_get(&pdev->dev, "tsu_clk");
3408 if (IS_ERR(*tsu_clk))
3409 *tsu_clk = NULL;
3410
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003411 err = clk_prepare_enable(*pclk);
3412 if (err) {
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003413 dev_err(&pdev->dev, "failed to enable pclk (%d)\n", err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003414 return err;
3415 }
3416
3417 err = clk_prepare_enable(*hclk);
3418 if (err) {
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003419 dev_err(&pdev->dev, "failed to enable hclk (%d)\n", err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003420 goto err_disable_pclk;
3421 }
3422
3423 err = clk_prepare_enable(*tx_clk);
3424 if (err) {
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003425 dev_err(&pdev->dev, "failed to enable tx_clk (%d)\n", err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003426 goto err_disable_hclk;
3427 }
3428
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303429 err = clk_prepare_enable(*rx_clk);
3430 if (err) {
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003431 dev_err(&pdev->dev, "failed to enable rx_clk (%d)\n", err);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303432 goto err_disable_txclk;
3433 }
3434
Harini Katakamf5473d12019-03-01 16:20:33 +05303435 err = clk_prepare_enable(*tsu_clk);
3436 if (err) {
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003437 dev_err(&pdev->dev, "failed to enable tsu_clk (%d)\n", err);
Harini Katakamf5473d12019-03-01 16:20:33 +05303438 goto err_disable_rxclk;
3439 }
3440
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003441 return 0;
3442
Harini Katakamf5473d12019-03-01 16:20:33 +05303443err_disable_rxclk:
3444 clk_disable_unprepare(*rx_clk);
3445
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303446err_disable_txclk:
3447 clk_disable_unprepare(*tx_clk);
3448
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003449err_disable_hclk:
3450 clk_disable_unprepare(*hclk);
3451
3452err_disable_pclk:
3453 clk_disable_unprepare(*pclk);
3454
3455 return err;
3456}
3457
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003458static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003459{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003460 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003461 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003462 struct macb *bp = netdev_priv(dev);
3463 struct macb_queue *queue;
3464 int err;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003465 u32 val, reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003466
Zach Brownb410d132016-10-19 09:56:57 -05003467 bp->tx_ring_size = DEFAULT_TX_RING_SIZE;
3468 bp->rx_ring_size = DEFAULT_RX_RING_SIZE;
3469
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003470 /* set the queue register mapping once for all: queue0 has a special
3471 * register mapping but we don't want to test the queue index then
3472 * compute the corresponding register offset at run time.
3473 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003474 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003475 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003476 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00003477
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003478 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003479 queue->bp = bp;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003480 netif_napi_add(dev, &queue->napi, macb_poll, 64);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003481 if (hw_q) {
3482 queue->ISR = GEM_ISR(hw_q - 1);
3483 queue->IER = GEM_IER(hw_q - 1);
3484 queue->IDR = GEM_IDR(hw_q - 1);
3485 queue->IMR = GEM_IMR(hw_q - 1);
3486 queue->TBQP = GEM_TBQP(hw_q - 1);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003487 queue->RBQP = GEM_RBQP(hw_q - 1);
3488 queue->RBQS = GEM_RBQS(hw_q - 1);
Harini Katakamfff80192016-08-09 13:15:53 +05303489#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003490 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003491 queue->TBQPH = GEM_TBQPH(hw_q - 1);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003492 queue->RBQPH = GEM_RBQPH(hw_q - 1);
3493 }
Harini Katakamfff80192016-08-09 13:15:53 +05303494#endif
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003495 } else {
3496 /* queue0 uses legacy registers */
3497 queue->ISR = MACB_ISR;
3498 queue->IER = MACB_IER;
3499 queue->IDR = MACB_IDR;
3500 queue->IMR = MACB_IMR;
3501 queue->TBQP = MACB_TBQP;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003502 queue->RBQP = MACB_RBQP;
Harini Katakamfff80192016-08-09 13:15:53 +05303503#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003504 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003505 queue->TBQPH = MACB_TBQPH;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003506 queue->RBQPH = MACB_RBQPH;
3507 }
Harini Katakamfff80192016-08-09 13:15:53 +05303508#endif
Soren Brinkmanne1824df2013-12-10 16:07:23 -08003509 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08003510
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003511 /* get irq: here we use the linux queue index, not the hardware
3512 * queue index. the queue irq definitions in the device tree
3513 * must remove the optional gaps that could exist in the
3514 * hardware queue mask.
3515 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003516 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003517 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01003518 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003519 if (err) {
3520 dev_err(&pdev->dev,
3521 "Unable to request IRQ %d (error %d)\n",
3522 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003523 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003524 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003525
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003526 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003527 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003528 }
3529
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003530 dev->netdev_ops = &macb_netdev_ops;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003531
Nicolas Ferre4df95132013-06-04 21:57:12 +00003532 /* setup appropriated routines according to adapter type */
3533 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003534 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003535 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
3536 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
3537 bp->macbgem_ops.mog_init_rings = gem_init_rings;
3538 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06003539 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003540 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003541 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003542 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
3543 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
3544 bp->macbgem_ops.mog_init_rings = macb_init_rings;
3545 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06003546 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003547 }
3548
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003549 /* Set features */
3550 dev->hw_features = NETIF_F_SG;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00003551
3552 /* Check LSO capability */
3553 if (GEM_BFEXT(PBUF_LSO, gem_readl(bp, DCFG6)))
3554 dev->hw_features |= MACB_NETIF_LSO;
3555
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003556 /* Checksum offload is only available on gem with packet buffer */
3557 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003558 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003559 if (bp->caps & MACB_CAPS_SG_DISABLED)
3560 dev->hw_features &= ~NETIF_F_SG;
3561 dev->features = dev->hw_features;
3562
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003563 /* Check RX Flow Filters support.
3564 * Max Rx flows set by availability of screeners & compare regs:
3565 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
3566 */
3567 reg = gem_readl(bp, DCFG8);
3568 bp->max_tuples = min((GEM_BFEXT(SCR2CMP, reg) / 3),
3569 GEM_BFEXT(T2SCR, reg));
3570 if (bp->max_tuples > 0) {
3571 /* also needs one ethtype match to check IPv4 */
3572 if (GEM_BFEXT(SCR2ETH, reg) > 0) {
3573 /* program this reg now */
3574 reg = 0;
3575 reg = GEM_BFINS(ETHTCMP, (uint16_t)ETH_P_IP, reg);
3576 gem_writel_n(bp, ETHT, SCRT2_ETHT, reg);
3577 /* Filtering is supported in hw but don't enable it in kernel now */
3578 dev->hw_features |= NETIF_F_NTUPLE;
3579 /* init Rx flow definitions */
3580 INIT_LIST_HEAD(&bp->rx_fs_list.list);
3581 bp->rx_fs_list.count = 0;
3582 spin_lock_init(&bp->rx_fs_lock);
3583 } else
3584 bp->max_tuples = 0;
3585 }
3586
Neil Armstrongce721a72016-01-05 14:39:16 +01003587 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
3588 val = 0;
3589 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
3590 val = GEM_BIT(RGMII);
3591 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003592 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01003593 val = MACB_BIT(RMII);
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003594 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01003595 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003596
Neil Armstrongce721a72016-01-05 14:39:16 +01003597 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
3598 val |= MACB_BIT(CLKEN);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003599
Neil Armstrongce721a72016-01-05 14:39:16 +01003600 macb_or_gem_writel(bp, USRIO, val);
3601 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003602
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003603 /* Set MII management clock divider */
3604 val = macb_mdc_clk_div(bp);
3605 val |= macb_dbw(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05303606 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
3607 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003608 macb_writel(bp, NCFGR, val);
3609
3610 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003611}
3612
3613#if defined(CONFIG_OF)
3614/* 1518 rounded up */
3615#define AT91ETHER_MAX_RBUFF_SZ 0x600
3616/* max number of receive buffers */
3617#define AT91ETHER_MAX_RX_DESCR 9
3618
3619/* Initialize and start the Receiver and Transmit subsystems */
3620static int at91ether_start(struct net_device *dev)
3621{
3622 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003623 struct macb_queue *q = &lp->queues[0];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003624 struct macb_dma_desc *desc;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003625 dma_addr_t addr;
3626 u32 ctl;
3627 int i;
3628
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003629 q->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003630 (AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003631 macb_dma_desc_get_size(lp)),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003632 &q->rx_ring_dma, GFP_KERNEL);
3633 if (!q->rx_ring)
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003634 return -ENOMEM;
3635
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003636 q->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003637 AT91ETHER_MAX_RX_DESCR *
3638 AT91ETHER_MAX_RBUFF_SZ,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003639 &q->rx_buffers_dma, GFP_KERNEL);
3640 if (!q->rx_buffers) {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003641 dma_free_coherent(&lp->pdev->dev,
3642 AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003643 macb_dma_desc_get_size(lp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003644 q->rx_ring, q->rx_ring_dma);
3645 q->rx_ring = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003646 return -ENOMEM;
3647 }
3648
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003649 addr = q->rx_buffers_dma;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003650 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003651 desc = macb_rx_desc(q, i);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003652 macb_set_addr(lp, desc, addr);
3653 desc->ctrl = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003654 addr += AT91ETHER_MAX_RBUFF_SZ;
3655 }
3656
3657 /* Set the Wrap bit on the last descriptor */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003658 desc->addr |= MACB_BIT(RX_WRAP);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003659
3660 /* Reset buffer index */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003661 q->rx_tail = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003662
3663 /* Program address of descriptor list in Rx Buffer Queue register */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003664 macb_writel(lp, RBQP, q->rx_ring_dma);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003665
3666 /* Enable Receive and Transmit */
3667 ctl = macb_readl(lp, NCR);
3668 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
3669
3670 return 0;
3671}
3672
3673/* Open the ethernet interface */
3674static int at91ether_open(struct net_device *dev)
3675{
3676 struct macb *lp = netdev_priv(dev);
3677 u32 ctl;
3678 int ret;
3679
3680 /* Clear internal statistics */
3681 ctl = macb_readl(lp, NCR);
3682 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
3683
3684 macb_set_hwaddr(lp);
3685
3686 ret = at91ether_start(dev);
3687 if (ret)
3688 return ret;
3689
3690 /* Enable MAC interrupts */
3691 macb_writel(lp, IER, MACB_BIT(RCOMP) |
3692 MACB_BIT(RXUBR) |
3693 MACB_BIT(ISR_TUND) |
3694 MACB_BIT(ISR_RLE) |
3695 MACB_BIT(TCOMP) |
3696 MACB_BIT(ISR_ROVR) |
3697 MACB_BIT(HRESP));
3698
3699 /* schedule a link state check */
Philippe Reynes0a912812016-06-22 00:32:35 +02003700 phy_start(dev->phydev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003701
3702 netif_start_queue(dev);
3703
3704 return 0;
3705}
3706
3707/* Close the interface */
3708static int at91ether_close(struct net_device *dev)
3709{
3710 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003711 struct macb_queue *q = &lp->queues[0];
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003712 u32 ctl;
3713
3714 /* Disable Receiver and Transmitter */
3715 ctl = macb_readl(lp, NCR);
3716 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
3717
3718 /* Disable MAC interrupts */
3719 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
3720 MACB_BIT(RXUBR) |
3721 MACB_BIT(ISR_TUND) |
3722 MACB_BIT(ISR_RLE) |
3723 MACB_BIT(TCOMP) |
3724 MACB_BIT(ISR_ROVR) |
3725 MACB_BIT(HRESP));
3726
3727 netif_stop_queue(dev);
3728
3729 dma_free_coherent(&lp->pdev->dev,
3730 AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003731 macb_dma_desc_get_size(lp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003732 q->rx_ring, q->rx_ring_dma);
3733 q->rx_ring = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003734
3735 dma_free_coherent(&lp->pdev->dev,
3736 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003737 q->rx_buffers, q->rx_buffers_dma);
3738 q->rx_buffers = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003739
3740 return 0;
3741}
3742
3743/* Transmit packet */
Claudiu Beznead1c38952018-08-07 12:25:12 +03003744static netdev_tx_t at91ether_start_xmit(struct sk_buff *skb,
3745 struct net_device *dev)
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003746{
3747 struct macb *lp = netdev_priv(dev);
3748
3749 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
3750 netif_stop_queue(dev);
3751
3752 /* Store packet information (to free when Tx completed) */
3753 lp->skb = skb;
3754 lp->skb_length = skb->len;
Christoph Hellwig564923e2019-02-11 14:19:59 +01003755 lp->skb_physaddr = dma_map_single(&lp->pdev->dev, skb->data,
3756 skb->len, DMA_TO_DEVICE);
3757 if (dma_mapping_error(&lp->pdev->dev, lp->skb_physaddr)) {
Alexey Khoroshilov178c7ae2016-11-19 01:40:10 +03003758 dev_kfree_skb_any(skb);
3759 dev->stats.tx_dropped++;
3760 netdev_err(dev, "%s: DMA mapping error\n", __func__);
3761 return NETDEV_TX_OK;
3762 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003763
3764 /* Set address of the data in the Transmit Address register */
3765 macb_writel(lp, TAR, lp->skb_physaddr);
3766 /* Set length of the packet in the Transmit Control register */
3767 macb_writel(lp, TCR, skb->len);
3768
3769 } else {
3770 netdev_err(dev, "%s called, but device is busy!\n", __func__);
3771 return NETDEV_TX_BUSY;
3772 }
3773
3774 return NETDEV_TX_OK;
3775}
3776
3777/* Extract received frame from buffer descriptors and sent to upper layers.
3778 * (Called from interrupt context)
3779 */
3780static void at91ether_rx(struct net_device *dev)
3781{
3782 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003783 struct macb_queue *q = &lp->queues[0];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003784 struct macb_dma_desc *desc;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003785 unsigned char *p_recv;
3786 struct sk_buff *skb;
3787 unsigned int pktlen;
3788
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003789 desc = macb_rx_desc(q, q->rx_tail);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003790 while (desc->addr & MACB_BIT(RX_USED)) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003791 p_recv = q->rx_buffers + q->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003792 pktlen = MACB_BF(RX_FRMLEN, desc->ctrl);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003793 skb = netdev_alloc_skb(dev, pktlen + 2);
3794 if (skb) {
3795 skb_reserve(skb, 2);
Johannes Berg59ae1d12017-06-16 14:29:20 +02003796 skb_put_data(skb, p_recv, pktlen);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003797
3798 skb->protocol = eth_type_trans(skb, dev);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003799 dev->stats.rx_packets++;
3800 dev->stats.rx_bytes += pktlen;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003801 netif_rx(skb);
3802 } else {
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003803 dev->stats.rx_dropped++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003804 }
3805
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003806 if (desc->ctrl & MACB_BIT(RX_MHASH_MATCH))
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003807 dev->stats.multicast++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003808
3809 /* reset ownership bit */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003810 desc->addr &= ~MACB_BIT(RX_USED);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003811
3812 /* wrap after last buffer */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003813 if (q->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
3814 q->rx_tail = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003815 else
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003816 q->rx_tail++;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003817
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003818 desc = macb_rx_desc(q, q->rx_tail);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003819 }
3820}
3821
3822/* MAC interrupt handler */
3823static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
3824{
3825 struct net_device *dev = dev_id;
3826 struct macb *lp = netdev_priv(dev);
3827 u32 intstatus, ctl;
3828
3829 /* MAC Interrupt Status register indicates what interrupts are pending.
3830 * It is automatically cleared once read.
3831 */
3832 intstatus = macb_readl(lp, ISR);
3833
3834 /* Receive complete */
3835 if (intstatus & MACB_BIT(RCOMP))
3836 at91ether_rx(dev);
3837
3838 /* Transmit complete */
3839 if (intstatus & MACB_BIT(TCOMP)) {
3840 /* The TCOM bit is set even if the transmission failed */
3841 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003842 dev->stats.tx_errors++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003843
3844 if (lp->skb) {
Yang Weib9560a22019-02-13 00:00:02 +08003845 dev_consume_skb_irq(lp->skb);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003846 lp->skb = NULL;
Christoph Hellwig564923e2019-02-11 14:19:59 +01003847 dma_unmap_single(&lp->pdev->dev, lp->skb_physaddr,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003848 lp->skb_length, DMA_TO_DEVICE);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003849 dev->stats.tx_packets++;
3850 dev->stats.tx_bytes += lp->skb_length;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003851 }
3852 netif_wake_queue(dev);
3853 }
3854
3855 /* Work-around for EMAC Errata section 41.3.1 */
3856 if (intstatus & MACB_BIT(RXUBR)) {
3857 ctl = macb_readl(lp, NCR);
3858 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
Zumeng Chenffac0e92016-11-28 21:55:00 +08003859 wmb();
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003860 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
3861 }
3862
3863 if (intstatus & MACB_BIT(ISR_ROVR))
3864 netdev_err(dev, "ROVR error\n");
3865
3866 return IRQ_HANDLED;
3867}
3868
3869#ifdef CONFIG_NET_POLL_CONTROLLER
3870static void at91ether_poll_controller(struct net_device *dev)
3871{
3872 unsigned long flags;
3873
3874 local_irq_save(flags);
3875 at91ether_interrupt(dev->irq, dev);
3876 local_irq_restore(flags);
3877}
3878#endif
3879
3880static const struct net_device_ops at91ether_netdev_ops = {
3881 .ndo_open = at91ether_open,
3882 .ndo_stop = at91ether_close,
3883 .ndo_start_xmit = at91ether_start_xmit,
3884 .ndo_get_stats = macb_get_stats,
3885 .ndo_set_rx_mode = macb_set_rx_mode,
3886 .ndo_set_mac_address = eth_mac_addr,
3887 .ndo_do_ioctl = macb_ioctl,
3888 .ndo_validate_addr = eth_validate_addr,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003889#ifdef CONFIG_NET_POLL_CONTROLLER
3890 .ndo_poll_controller = at91ether_poll_controller,
3891#endif
3892};
3893
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003894static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303895 struct clk **hclk, struct clk **tx_clk,
Harini Katakamf5473d12019-03-01 16:20:33 +05303896 struct clk **rx_clk, struct clk **tsu_clk)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003897{
3898 int err;
3899
3900 *hclk = NULL;
3901 *tx_clk = NULL;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303902 *rx_clk = NULL;
Harini Katakamf5473d12019-03-01 16:20:33 +05303903 *tsu_clk = NULL;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003904
3905 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
3906 if (IS_ERR(*pclk))
3907 return PTR_ERR(*pclk);
3908
3909 err = clk_prepare_enable(*pclk);
3910 if (err) {
Luca Ceresolif413cbb2019-05-14 15:23:07 +02003911 dev_err(&pdev->dev, "failed to enable pclk (%d)\n", err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003912 return err;
3913 }
3914
3915 return 0;
3916}
3917
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003918static int at91ether_init(struct platform_device *pdev)
3919{
3920 struct net_device *dev = platform_get_drvdata(pdev);
3921 struct macb *bp = netdev_priv(dev);
3922 int err;
3923 u32 reg;
3924
Alexandre Bellonifec9d3b2018-06-26 10:44:01 +02003925 bp->queues[0].bp = bp;
3926
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003927 dev->netdev_ops = &at91ether_netdev_ops;
3928 dev->ethtool_ops = &macb_ethtool_ops;
3929
3930 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
3931 0, dev->name, dev);
3932 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003933 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003934
3935 macb_writel(bp, NCR, 0);
3936
3937 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
3938 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
3939 reg |= MACB_BIT(RM9200_RMII);
3940
3941 macb_writel(bp, NCFGR, reg);
3942
3943 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003944}
3945
David S. Miller3cef5c52015-03-09 23:38:02 -04003946static const struct macb_config at91sam9260_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003947 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003948 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003949 .init = macb_init,
3950};
3951
Nicolas Ferreeb4ed8e2018-09-14 17:48:10 +02003952static const struct macb_config sama5d3macb_config = {
3953 .caps = MACB_CAPS_SG_DISABLED
3954 | MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
3955 .clk_init = macb_clk_init,
3956 .init = macb_init,
3957};
3958
David S. Miller3cef5c52015-03-09 23:38:02 -04003959static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003960 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
3961 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003962 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003963 .init = macb_init,
3964};
3965
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003966static const struct macb_config sama5d2_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003967 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003968 .dma_burst_length = 16,
3969 .clk_init = macb_clk_init,
3970 .init = macb_init,
3971};
3972
David S. Miller3cef5c52015-03-09 23:38:02 -04003973static const struct macb_config sama5d3_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003974 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
vishnuvardhan233a1582017-07-05 17:36:16 +02003975 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003976 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003977 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003978 .init = macb_init,
vishnuvardhan233a1582017-07-05 17:36:16 +02003979 .jumbo_max_len = 10240,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003980};
3981
David S. Miller3cef5c52015-03-09 23:38:02 -04003982static const struct macb_config sama5d4_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003983 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003984 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003985 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003986 .init = macb_init,
3987};
3988
David S. Miller3cef5c52015-03-09 23:38:02 -04003989static const struct macb_config emac_config = {
Harini Katakame5010702019-01-29 15:20:03 +05303990 .caps = MACB_CAPS_NEEDS_RSTONUBR,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003991 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003992 .init = at91ether_init,
3993};
3994
Neil Armstronge611b5b2016-01-05 14:39:17 +01003995static const struct macb_config np4_config = {
3996 .caps = MACB_CAPS_USRIO_DISABLED,
3997 .clk_init = macb_clk_init,
3998 .init = macb_init,
3999};
David S. Miller36583eb2015-05-23 01:22:35 -04004000
Harini Katakam7b61f9c2015-05-06 22:27:16 +05304001static const struct macb_config zynqmp_config = {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01004002 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4003 MACB_CAPS_JUMBO |
Harini Katakam404cd082018-07-06 12:18:58 +05304004 MACB_CAPS_GEM_HAS_PTP | MACB_CAPS_BD_RD_PREFETCH,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05304005 .dma_burst_length = 16,
4006 .clk_init = macb_clk_init,
4007 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05304008 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05304009};
4010
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05004011static const struct macb_config zynq_config = {
Harini Katakame5010702019-01-29 15:20:03 +05304012 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF |
4013 MACB_CAPS_NEEDS_RSTONUBR,
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05004014 .dma_burst_length = 16,
4015 .clk_init = macb_clk_init,
4016 .init = macb_init,
4017};
4018
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004019static const struct of_device_id macb_dt_ids[] = {
4020 { .compatible = "cdns,at32ap7000-macb" },
4021 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
4022 { .compatible = "cdns,macb" },
Neil Armstronge611b5b2016-01-05 14:39:17 +01004023 { .compatible = "cdns,np4-macb", .data = &np4_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004024 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
4025 { .compatible = "cdns,gem", .data = &pc302gem_config },
Nicolas Ferre3e3e0cd2019-02-06 18:56:10 +01004026 { .compatible = "cdns,sam9x60-macb", .data = &at91sam9260_config },
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02004027 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004028 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
Nicolas Ferreeb4ed8e2018-09-14 17:48:10 +02004029 { .compatible = "atmel,sama5d3-macb", .data = &sama5d3macb_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004030 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
4031 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
4032 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05304033 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05004034 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004035 { /* sentinel */ }
4036};
4037MODULE_DEVICE_TABLE(of, macb_dt_ids);
4038#endif /* CONFIG_OF */
4039
Bartosz Folta83a77e92016-12-14 06:39:15 +00004040static const struct macb_config default_gem_config = {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01004041 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4042 MACB_CAPS_JUMBO |
4043 MACB_CAPS_GEM_HAS_PTP,
Bartosz Folta83a77e92016-12-14 06:39:15 +00004044 .dma_burst_length = 16,
4045 .clk_init = macb_clk_init,
4046 .init = macb_init,
4047 .jumbo_max_len = 10240,
4048};
4049
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004050static int macb_probe(struct platform_device *pdev)
4051{
Bartosz Folta83a77e92016-12-14 06:39:15 +00004052 const struct macb_config *macb_config = &default_gem_config;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004053 int (*clk_init)(struct platform_device *, struct clk **,
Harini Katakamf5473d12019-03-01 16:20:33 +05304054 struct clk **, struct clk **, struct clk **,
4055 struct clk **) = macb_config->clk_init;
Bartosz Folta83a77e92016-12-14 06:39:15 +00004056 int (*init)(struct platform_device *) = macb_config->init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004057 struct device_node *np = pdev->dev.of_node;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304058 struct clk *pclk, *hclk = NULL, *tx_clk = NULL, *rx_clk = NULL;
Harini Katakamf5473d12019-03-01 16:20:33 +05304059 struct clk *tsu_clk = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004060 unsigned int queue_mask, num_queues;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004061 bool native_io;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004062 struct phy_device *phydev;
4063 struct net_device *dev;
4064 struct resource *regs;
4065 void __iomem *mem;
4066 const char *mac;
4067 struct macb *bp;
Harini Katakam404cd082018-07-06 12:18:58 +05304068 int err, val;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004069
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004070 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
4071 mem = devm_ioremap_resource(&pdev->dev, regs);
4072 if (IS_ERR(mem))
4073 return PTR_ERR(mem);
4074
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004075 if (np) {
4076 const struct of_device_id *match;
4077
4078 match = of_match_node(macb_dt_ids, np);
4079 if (match && match->data) {
4080 macb_config = match->data;
4081 clk_init = macb_config->clk_init;
4082 init = macb_config->init;
4083 }
4084 }
4085
Harini Katakamf5473d12019-03-01 16:20:33 +05304086 err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk, &tsu_clk);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004087 if (err)
4088 return err;
4089
Harini Katakamd54f89a2019-03-01 16:20:34 +05304090 pm_runtime_set_autosuspend_delay(&pdev->dev, MACB_PM_TIMEOUT);
4091 pm_runtime_use_autosuspend(&pdev->dev);
4092 pm_runtime_get_noresume(&pdev->dev);
4093 pm_runtime_set_active(&pdev->dev);
4094 pm_runtime_enable(&pdev->dev);
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004095 native_io = hw_is_native_io(mem);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004096
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004097 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004098 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004099 if (!dev) {
4100 err = -ENOMEM;
4101 goto err_disable_clocks;
4102 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004103
4104 dev->base_addr = regs->start;
4105
4106 SET_NETDEV_DEV(dev, &pdev->dev);
4107
4108 bp = netdev_priv(dev);
4109 bp->pdev = pdev;
4110 bp->dev = dev;
4111 bp->regs = mem;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004112 bp->native_io = native_io;
4113 if (native_io) {
David S. Miller7a6e0702015-07-27 14:24:48 -07004114 bp->macb_reg_readl = hw_readl_native;
4115 bp->macb_reg_writel = hw_writel_native;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004116 } else {
David S. Miller7a6e0702015-07-27 14:24:48 -07004117 bp->macb_reg_readl = hw_readl;
4118 bp->macb_reg_writel = hw_writel;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004119 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004120 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02004121 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004122 if (macb_config)
4123 bp->dma_burst_length = macb_config->dma_burst_length;
4124 bp->pclk = pclk;
4125 bp->hclk = hclk;
4126 bp->tx_clk = tx_clk;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304127 bp->rx_clk = rx_clk;
Harini Katakamf5473d12019-03-01 16:20:33 +05304128 bp->tsu_clk = tsu_clk;
Andy Shevchenkof36dbe62015-07-24 21:24:00 +03004129 if (macb_config)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05304130 bp->jumbo_max_len = macb_config->jumbo_max_len;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05304131
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004132 bp->wol = 0;
Sergio Prado7c4a1d02016-02-16 21:10:45 -02004133 if (of_get_property(np, "magic-packet", NULL))
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004134 bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
4135 device_init_wakeup(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
4136
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004137 spin_lock_init(&bp->lock);
4138
Nicolas Ferread783472015-03-31 15:02:02 +02004139 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02004140 macb_configure_caps(bp, macb_config);
4141
Rafal Ozieblo7b429612017-06-29 07:12:51 +01004142#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
4143 if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) {
4144 dma_set_mask(&pdev->dev, DMA_BIT_MASK(44));
4145 bp->hw_dma_cap |= HW_DMA_CAP_64B;
4146 }
4147#endif
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004148 platform_set_drvdata(pdev, dev);
4149
4150 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004151 if (dev->irq < 0) {
4152 err = dev->irq;
Wei Yongjunb22ae0b2016-08-12 15:43:54 +00004153 goto err_out_free_netdev;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004154 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004155
Jarod Wilson44770e12016-10-17 15:54:17 -04004156 /* MTU range: 68 - 1500 or 10240 */
4157 dev->min_mtu = GEM_MTU_MIN_SIZE;
4158 if (bp->caps & MACB_CAPS_JUMBO)
4159 dev->max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
4160 else
4161 dev->max_mtu = ETH_DATA_LEN;
4162
Harini Katakam404cd082018-07-06 12:18:58 +05304163 if (bp->caps & MACB_CAPS_BD_RD_PREFETCH) {
4164 val = GEM_BFEXT(RXBD_RDBUFF, gem_readl(bp, DCFG10));
4165 if (val)
4166 bp->rx_bd_rd_prefetch = (2 << (val - 1)) *
4167 macb_dma_desc_get_size(bp);
4168
4169 val = GEM_BFEXT(TXBD_RDBUFF, gem_readl(bp, DCFG10));
4170 if (val)
4171 bp->tx_bd_rd_prefetch = (2 << (val - 1)) *
4172 macb_dma_desc_get_size(bp);
4173 }
4174
Harini Katakame5010702019-01-29 15:20:03 +05304175 bp->rx_intr_mask = MACB_RX_INT_FLAGS;
4176 if (bp->caps & MACB_CAPS_NEEDS_RSTONUBR)
4177 bp->rx_intr_mask |= MACB_BIT(RXUBR);
4178
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004179 mac = of_get_mac_address(np);
Petr Å tetiar541ddc62019-05-03 16:27:08 +02004180 if (PTR_ERR(mac) == -EPROBE_DEFER) {
4181 err = -EPROBE_DEFER;
4182 goto err_out_free_netdev;
Antoine Tenart2bf4ecb2019-06-21 17:26:35 +02004183 } else if (!IS_ERR_OR_NULL(mac)) {
Moritz Fischereefb52d2016-03-29 19:11:14 -07004184 ether_addr_copy(bp->dev->dev_addr, mac);
Mike Looijmansaa076e32018-03-29 07:29:49 +02004185 } else {
Petr Å tetiar541ddc62019-05-03 16:27:08 +02004186 macb_get_hwaddr(bp);
Mike Looijmansaa076e32018-03-29 07:29:49 +02004187 }
frederic RODO6c36a702007-07-12 19:07:24 +02004188
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004189 err = of_get_phy_mode(np);
Nicolas Ferre8b952742019-05-03 12:36:58 +02004190 if (err < 0)
4191 /* not found in DT, MII by default */
4192 bp->phy_interface = PHY_INTERFACE_MODE_MII;
4193 else
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004194 bp->phy_interface = err;
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004195
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004196 /* IP specific init */
4197 err = init(pdev);
4198 if (err)
4199 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004200
Florian Fainellicf669662016-05-02 18:38:45 -07004201 err = macb_mii_init(bp);
4202 if (err)
4203 goto err_out_free_netdev;
4204
Philippe Reynes0a912812016-06-22 00:32:35 +02004205 phydev = dev->phydev;
Florian Fainellicf669662016-05-02 18:38:45 -07004206
4207 netif_carrier_off(dev);
4208
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004209 err = register_netdev(dev);
4210 if (err) {
4211 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Florian Fainellicf669662016-05-02 18:38:45 -07004212 goto err_out_unregister_mdio;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004213 }
4214
Harini Katakam032dc412018-01-27 12:09:01 +05304215 tasklet_init(&bp->hresp_err_tasklet, macb_hresp_error_task,
4216 (unsigned long)bp);
4217
Florian Fainellicf669662016-05-02 18:38:45 -07004218 phy_attached_info(phydev);
Nicolas Ferre03fc4722012-07-03 23:14:13 +00004219
Bo Shen58798232014-09-13 01:57:49 +02004220 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
4221 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
4222 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004223
Harini Katakamd54f89a2019-03-01 16:20:34 +05304224 pm_runtime_mark_last_busy(&bp->pdev->dev);
4225 pm_runtime_put_autosuspend(&bp->pdev->dev);
4226
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004227 return 0;
4228
Florian Fainellicf669662016-05-02 18:38:45 -07004229err_out_unregister_mdio:
Philippe Reynes0a912812016-06-22 00:32:35 +02004230 phy_disconnect(dev->phydev);
Florian Fainellicf669662016-05-02 18:38:45 -07004231 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik66ee6a02017-11-08 09:56:35 +01004232 of_node_put(bp->phy_node);
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004233 if (np && of_phy_is_fixed_link(np))
4234 of_phy_deregister_fixed_link(np);
Florian Fainellicf669662016-05-02 18:38:45 -07004235 mdiobus_free(bp->mii_bus);
4236
Cyrille Pitchencf250de2014-12-15 15:13:32 +01004237err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004238 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004239
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004240err_disable_clocks:
4241 clk_disable_unprepare(tx_clk);
4242 clk_disable_unprepare(hclk);
4243 clk_disable_unprepare(pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304244 clk_disable_unprepare(rx_clk);
Harini Katakamf5473d12019-03-01 16:20:33 +05304245 clk_disable_unprepare(tsu_clk);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304246 pm_runtime_disable(&pdev->dev);
4247 pm_runtime_set_suspended(&pdev->dev);
4248 pm_runtime_dont_use_autosuspend(&pdev->dev);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004249
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004250 return err;
4251}
4252
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00004253static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004254{
4255 struct net_device *dev;
4256 struct macb *bp;
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004257 struct device_node *np = pdev->dev.of_node;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004258
4259 dev = platform_get_drvdata(pdev);
4260
4261 if (dev) {
4262 bp = netdev_priv(dev);
Philippe Reynes0a912812016-06-22 00:32:35 +02004263 if (dev->phydev)
4264 phy_disconnect(dev->phydev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07004265 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004266 if (np && of_phy_is_fixed_link(np))
4267 of_phy_deregister_fixed_link(np);
Nathan Sullivanfa6114d2016-10-07 10:13:22 -05004268 dev->phydev = NULL;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07004269 mdiobus_free(bp->mii_bus);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01004270
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004271 unregister_netdev(dev);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304272 pm_runtime_disable(&pdev->dev);
4273 pm_runtime_dont_use_autosuspend(&pdev->dev);
4274 if (!pm_runtime_suspended(&pdev->dev)) {
4275 clk_disable_unprepare(bp->tx_clk);
4276 clk_disable_unprepare(bp->hclk);
4277 clk_disable_unprepare(bp->pclk);
4278 clk_disable_unprepare(bp->rx_clk);
4279 clk_disable_unprepare(bp->tsu_clk);
4280 pm_runtime_set_suspended(&pdev->dev);
4281 }
Michael Grzeschikdacdbb42017-06-23 16:54:10 +02004282 of_node_put(bp->phy_node);
Cyrille Pitchene965be72014-12-15 15:13:31 +01004283 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004284 }
4285
4286 return 0;
4287}
4288
Michal Simekd23823d2015-01-23 09:36:03 +01004289static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004290{
Wolfram Sangce886a42018-10-21 22:00:14 +02004291 struct net_device *netdev = dev_get_drvdata(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004292 struct macb *bp = netdev_priv(netdev);
Harini Katakamde991c52019-03-01 16:20:35 +05304293 struct macb_queue *queue = bp->queues;
4294 unsigned long flags;
4295 unsigned int q;
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004296
Harini Katakamde991c52019-03-01 16:20:35 +05304297 if (!netif_running(netdev))
4298 return 0;
4299
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004300
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004301 if (bp->wol & MACB_WOL_ENABLED) {
4302 macb_writel(bp, IER, MACB_BIT(WOL));
4303 macb_writel(bp, WOL, MACB_BIT(MAG));
4304 enable_irq_wake(bp->queues[0].irq);
Harini Katakamde991c52019-03-01 16:20:35 +05304305 netif_device_detach(netdev);
4306 } else {
4307 netif_device_detach(netdev);
4308 for (q = 0, queue = bp->queues; q < bp->num_queues;
4309 ++q, ++queue)
4310 napi_disable(&queue->napi);
4311 phy_stop(netdev->phydev);
4312 phy_suspend(netdev->phydev);
4313 spin_lock_irqsave(&bp->lock, flags);
4314 macb_reset_hw(bp);
4315 spin_unlock_irqrestore(&bp->lock, flags);
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00004316
4317 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
4318 bp->pm_data.usrio = macb_or_gem_readl(bp, USRIO);
4319
4320 if (netdev->hw_features & NETIF_F_NTUPLE)
4321 bp->pm_data.scrt2 = gem_readl_n(bp, ETHT, SCRT2_ETHT);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304322 }
4323
Harini Katakamde991c52019-03-01 16:20:35 +05304324 netif_carrier_off(netdev);
4325 if (bp->ptp_info)
4326 bp->ptp_info->ptp_remove(netdev);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304327 pm_runtime_force_suspend(dev);
4328
4329 return 0;
4330}
4331
4332static int __maybe_unused macb_resume(struct device *dev)
4333{
4334 struct net_device *netdev = dev_get_drvdata(dev);
4335 struct macb *bp = netdev_priv(netdev);
Harini Katakamde991c52019-03-01 16:20:35 +05304336 struct macb_queue *queue = bp->queues;
4337 unsigned int q;
4338
4339 if (!netif_running(netdev))
4340 return 0;
Harini Katakamd54f89a2019-03-01 16:20:34 +05304341
4342 pm_runtime_force_resume(dev);
4343
4344 if (bp->wol & MACB_WOL_ENABLED) {
4345 macb_writel(bp, IDR, MACB_BIT(WOL));
4346 macb_writel(bp, WOL, 0);
4347 disable_irq_wake(bp->queues[0].irq);
Harini Katakamde991c52019-03-01 16:20:35 +05304348 } else {
4349 macb_writel(bp, NCR, MACB_BIT(MPE));
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00004350
4351 if (netdev->hw_features & NETIF_F_NTUPLE)
4352 gem_writel_n(bp, ETHT, SCRT2_ETHT, bp->pm_data.scrt2);
4353
4354 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
4355 macb_or_gem_writel(bp, USRIO, bp->pm_data.usrio);
4356
Harini Katakamde991c52019-03-01 16:20:35 +05304357 for (q = 0, queue = bp->queues; q < bp->num_queues;
4358 ++q, ++queue)
4359 napi_enable(&queue->napi);
4360 phy_resume(netdev->phydev);
4361 phy_init_hw(netdev->phydev);
4362 phy_start(netdev->phydev);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304363 }
4364
Harini Katakamde991c52019-03-01 16:20:35 +05304365 bp->macbgem_ops.mog_init_rings(bp);
4366 macb_init_hw(bp);
4367 macb_set_rx_mode(netdev);
Claudiu Bezneac1e85c6c2019-05-22 08:24:43 +00004368 macb_restore_features(bp);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304369 netif_device_attach(netdev);
Harini Katakamde991c52019-03-01 16:20:35 +05304370 if (bp->ptp_info)
4371 bp->ptp_info->ptp_init(netdev);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304372
4373 return 0;
4374}
4375
4376static int __maybe_unused macb_runtime_suspend(struct device *dev)
4377{
Wolfram Sangf9cb7592019-03-19 17:36:34 +01004378 struct net_device *netdev = dev_get_drvdata(dev);
Harini Katakamd54f89a2019-03-01 16:20:34 +05304379 struct macb *bp = netdev_priv(netdev);
4380
4381 if (!(device_may_wakeup(&bp->dev->dev))) {
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004382 clk_disable_unprepare(bp->tx_clk);
4383 clk_disable_unprepare(bp->hclk);
4384 clk_disable_unprepare(bp->pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304385 clk_disable_unprepare(bp->rx_clk);
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004386 }
Harini Katakamf5473d12019-03-01 16:20:33 +05304387 clk_disable_unprepare(bp->tsu_clk);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004388
4389 return 0;
4390}
4391
Harini Katakamd54f89a2019-03-01 16:20:34 +05304392static int __maybe_unused macb_runtime_resume(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004393{
Wolfram Sangf9cb7592019-03-19 17:36:34 +01004394 struct net_device *netdev = dev_get_drvdata(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004395 struct macb *bp = netdev_priv(netdev);
4396
Harini Katakamd54f89a2019-03-01 16:20:34 +05304397 if (!(device_may_wakeup(&bp->dev->dev))) {
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004398 clk_prepare_enable(bp->pclk);
4399 clk_prepare_enable(bp->hclk);
4400 clk_prepare_enable(bp->tx_clk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304401 clk_prepare_enable(bp->rx_clk);
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004402 }
Harini Katakamf5473d12019-03-01 16:20:33 +05304403 clk_prepare_enable(bp->tsu_clk);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004404
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004405 return 0;
4406}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004407
Harini Katakamd54f89a2019-03-01 16:20:34 +05304408static const struct dev_pm_ops macb_pm_ops = {
4409 SET_SYSTEM_SLEEP_PM_OPS(macb_suspend, macb_resume)
4410 SET_RUNTIME_PM_OPS(macb_runtime_suspend, macb_runtime_resume, NULL)
4411};
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004412
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004413static struct platform_driver macb_driver = {
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00004414 .probe = macb_probe,
4415 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004416 .driver = {
4417 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004418 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004419 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004420 },
4421};
4422
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00004423module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004424
4425MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00004426MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02004427MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07004428MODULE_ALIAS("platform:macb");