blob: 66cc7927061acd94cb75c9e6fd7cc96793bfec3b [file] [log] [blame]
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001/*
Jamie Ilesf75ba502011-11-08 10:12:32 +00002 * Cadence MACB/GEM Ethernet Controller driver
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003 *
4 * Copyright (C) 2004-2006 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
Jamie Ilesc220f8c2011-03-08 20:27:08 +000011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010012#include <linux/clk.h>
Claudiu Beznea653e92a2018-08-07 12:25:14 +030013#include <linux/crc32.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010014#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/kernel.h>
17#include <linux/types.h>
Nicolas Ferre909a8582012-11-19 06:00:21 +000018#include <linux/circ_buf.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010019#include <linux/slab.h>
20#include <linux/init.h>
Soren Brinkmann60fe7162013-12-10 16:07:21 -080021#include <linux/io.h>
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +000022#include <linux/gpio.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010023#include <linux/gpio/consumer.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000024#include <linux/interrupt.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010025#include <linux/netdevice.h>
26#include <linux/etherdevice.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010027#include <linux/dma-mapping.h>
Jamie Iles84e0cdb2011-03-08 20:17:06 +000028#include <linux/platform_data/macb.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010029#include <linux/platform_device.h>
frederic RODO6c36a702007-07-12 19:07:24 +020030#include <linux/phy.h>
Olof Johanssonb17471f2011-12-20 13:13:07 -080031#include <linux/of.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010032#include <linux/of_device.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010033#include <linux/of_gpio.h>
Boris BREZILLON148cbb52013-08-22 17:57:28 +020034#include <linux/of_mdio.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010035#include <linux/of_net.h>
Rafal Ozieblo1629dd42016-11-16 10:02:34 +000036#include <linux/ip.h>
37#include <linux/udp.h>
38#include <linux/tcp.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010039#include "macb.h"
40
Nicolas Ferre1b447912013-06-04 21:57:11 +000041#define MACB_RX_BUFFER_SIZE 128
Nicolas Ferre1b447912013-06-04 21:57:11 +000042#define RX_BUFFER_MULTIPLE 64 /* bytes */
Zach Brown8441bb32016-10-19 09:56:58 -050043
Zach Brownb410d132016-10-19 09:56:57 -050044#define DEFAULT_RX_RING_SIZE 512 /* must be power of 2 */
Zach Brown8441bb32016-10-19 09:56:58 -050045#define MIN_RX_RING_SIZE 64
46#define MAX_RX_RING_SIZE 8192
Rafal Ozieblodc97a892017-01-27 15:08:20 +000047#define RX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
Zach Brownb410d132016-10-19 09:56:57 -050048 * (bp)->rx_ring_size)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010049
Zach Brownb410d132016-10-19 09:56:57 -050050#define DEFAULT_TX_RING_SIZE 512 /* must be power of 2 */
Zach Brown8441bb32016-10-19 09:56:58 -050051#define MIN_TX_RING_SIZE 64
52#define MAX_TX_RING_SIZE 4096
Rafal Ozieblodc97a892017-01-27 15:08:20 +000053#define TX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
Zach Brownb410d132016-10-19 09:56:57 -050054 * (bp)->tx_ring_size)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010055
Nicolas Ferre909a8582012-11-19 06:00:21 +000056/* level of occupied TX descriptors under which we wake up TX process */
Zach Brownb410d132016-10-19 09:56:57 -050057#define MACB_TX_WAKEUP_THRESH(bp) (3 * (bp)->tx_ring_size / 4)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010058
59#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
60 | MACB_BIT(ISR_ROVR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000061#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
62 | MACB_BIT(ISR_RLE) \
63 | MACB_BIT(TXERR))
Claudiu Beznea42983882018-12-17 10:02:42 +000064#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP) \
65 | MACB_BIT(TXUBR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000066
Rafal Ozieblo1629dd42016-11-16 10:02:34 +000067/* Max length of transmit frame must be a multiple of 8 bytes */
68#define MACB_TX_LEN_ALIGN 8
69#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
70#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 +020071
Jarod Wilson44770e12016-10-17 15:54:17 -040072#define GEM_MTU_MIN_SIZE ETH_MIN_MTU
David S. Millerf9c45ae2017-07-03 06:31:05 -070073#define MACB_NETIF_LSO NETIF_F_TSO
Harini Katakama5898ea2015-05-06 22:27:18 +053074
Sergio Prado3e2a5e12016-02-09 12:07:16 -020075#define MACB_WOL_HAS_MAGIC_PACKET (0x1 << 0)
76#define MACB_WOL_ENABLED (0x1 << 1)
77
Moritz Fischer64ec42f2016-03-29 19:11:12 -070078/* Graceful stop timeouts in us. We should allow up to
Nicolas Ferree86cd532012-10-31 06:04:57 +000079 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
80 */
81#define MACB_HALT_TIMEOUT 1230
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010082
Rafal Ozieblodc97a892017-01-27 15:08:20 +000083/* DMA buffer descriptor might be different size
Rafal Ozieblo7b429612017-06-29 07:12:51 +010084 * depends on hardware configuration:
85 *
86 * 1. dma address width 32 bits:
87 * word 1: 32 bit address of Data Buffer
88 * word 2: control
89 *
90 * 2. dma address width 64 bits:
91 * word 1: 32 bit address of Data Buffer
92 * word 2: control
93 * word 3: upper 32 bit address of Data Buffer
94 * word 4: unused
95 *
96 * 3. dma address width 32 bits with hardware timestamping:
97 * word 1: 32 bit address of Data Buffer
98 * word 2: control
99 * word 3: timestamp word 1
100 * word 4: timestamp word 2
101 *
102 * 4. dma address width 64 bits with hardware timestamping:
103 * word 1: 32 bit address of Data Buffer
104 * word 2: control
105 * word 3: upper 32 bit address of Data Buffer
106 * word 4: unused
107 * word 5: timestamp word 1
108 * word 6: timestamp word 2
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000109 */
110static unsigned int macb_dma_desc_get_size(struct macb *bp)
111{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100112#ifdef MACB_EXT_DESC
113 unsigned int desc_size;
114
115 switch (bp->hw_dma_cap) {
116 case HW_DMA_CAP_64B:
117 desc_size = sizeof(struct macb_dma_desc)
118 + sizeof(struct macb_dma_desc_64);
119 break;
120 case HW_DMA_CAP_PTP:
121 desc_size = sizeof(struct macb_dma_desc)
122 + sizeof(struct macb_dma_desc_ptp);
123 break;
124 case HW_DMA_CAP_64B_PTP:
125 desc_size = sizeof(struct macb_dma_desc)
126 + sizeof(struct macb_dma_desc_64)
127 + sizeof(struct macb_dma_desc_ptp);
128 break;
129 default:
130 desc_size = sizeof(struct macb_dma_desc);
131 }
132 return desc_size;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000133#endif
134 return sizeof(struct macb_dma_desc);
135}
136
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100137static unsigned int macb_adj_dma_desc_idx(struct macb *bp, unsigned int desc_idx)
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000138{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100139#ifdef MACB_EXT_DESC
140 switch (bp->hw_dma_cap) {
141 case HW_DMA_CAP_64B:
142 case HW_DMA_CAP_PTP:
143 desc_idx <<= 1;
144 break;
145 case HW_DMA_CAP_64B_PTP:
146 desc_idx *= 3;
147 break;
148 default:
149 break;
150 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000151#endif
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100152 return desc_idx;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000153}
154
155#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
156static struct macb_dma_desc_64 *macb_64b_desc(struct macb *bp, struct macb_dma_desc *desc)
157{
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100158 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
159 return (struct macb_dma_desc_64 *)((void *)desc + sizeof(struct macb_dma_desc));
160 return NULL;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000161}
162#endif
163
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000164/* Ring buffer accessors */
Zach Brownb410d132016-10-19 09:56:57 -0500165static unsigned int macb_tx_ring_wrap(struct macb *bp, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000166{
Zach Brownb410d132016-10-19 09:56:57 -0500167 return index & (bp->tx_ring_size - 1);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000168}
169
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100170static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
171 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000172{
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000173 index = macb_tx_ring_wrap(queue->bp, index);
174 index = macb_adj_dma_desc_idx(queue->bp, index);
175 return &queue->tx_ring[index];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000176}
177
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100178static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
179 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000180{
Zach Brownb410d132016-10-19 09:56:57 -0500181 return &queue->tx_skb[macb_tx_ring_wrap(queue->bp, index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000182}
183
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100184static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000185{
186 dma_addr_t offset;
187
Zach Brownb410d132016-10-19 09:56:57 -0500188 offset = macb_tx_ring_wrap(queue->bp, index) *
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000189 macb_dma_desc_get_size(queue->bp);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000190
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100191 return queue->tx_ring_dma + offset;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000192}
193
Zach Brownb410d132016-10-19 09:56:57 -0500194static unsigned int macb_rx_ring_wrap(struct macb *bp, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000195{
Zach Brownb410d132016-10-19 09:56:57 -0500196 return index & (bp->rx_ring_size - 1);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000197}
198
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000199static struct macb_dma_desc *macb_rx_desc(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000200{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000201 index = macb_rx_ring_wrap(queue->bp, index);
202 index = macb_adj_dma_desc_idx(queue->bp, index);
203 return &queue->rx_ring[index];
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000204}
205
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000206static void *macb_rx_buffer(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000207{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000208 return queue->rx_buffers + queue->bp->rx_buffer_size *
209 macb_rx_ring_wrap(queue->bp, index);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000210}
211
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +0300212/* I/O accessors */
213static u32 hw_readl_native(struct macb *bp, int offset)
214{
215 return __raw_readl(bp->regs + offset);
216}
217
218static void hw_writel_native(struct macb *bp, int offset, u32 value)
219{
220 __raw_writel(value, bp->regs + offset);
221}
222
223static u32 hw_readl(struct macb *bp, int offset)
224{
225 return readl_relaxed(bp->regs + offset);
226}
227
228static void hw_writel(struct macb *bp, int offset, u32 value)
229{
230 writel_relaxed(value, bp->regs + offset);
231}
232
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700233/* Find the CPU endianness by using the loopback bit of NCR register. When the
Moritz Fischer88023be2016-03-29 19:11:15 -0700234 * CPU is in big endian we need to program swapped mode for management
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +0300235 * descriptor access.
236 */
237static bool hw_is_native_io(void __iomem *addr)
238{
239 u32 value = MACB_BIT(LLB);
240
241 __raw_writel(value, addr + MACB_NCR);
242 value = __raw_readl(addr + MACB_NCR);
243
244 /* Write 0 back to disable everything */
245 __raw_writel(0, addr + MACB_NCR);
246
247 return value == MACB_BIT(LLB);
248}
249
250static bool hw_is_gem(void __iomem *addr, bool native_io)
251{
252 u32 id;
253
254 if (native_io)
255 id = __raw_readl(addr + MACB_MID);
256 else
257 id = readl_relaxed(addr + MACB_MID);
258
259 return MACB_BFEXT(IDNUM, id) >= 0x2;
260}
261
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100262static void macb_set_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100263{
264 u32 bottom;
265 u16 top;
266
267 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000268 macb_or_gem_writel(bp, SA1B, bottom);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100269 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000270 macb_or_gem_writel(bp, SA1T, top);
Joachim Eastwood3629a6c2012-11-11 13:56:28 +0000271
272 /* Clear unused address register sets */
273 macb_or_gem_writel(bp, SA2B, 0);
274 macb_or_gem_writel(bp, SA2T, 0);
275 macb_or_gem_writel(bp, SA3B, 0);
276 macb_or_gem_writel(bp, SA3T, 0);
277 macb_or_gem_writel(bp, SA4B, 0);
278 macb_or_gem_writel(bp, SA4T, 0);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100279}
280
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100281static void macb_get_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100282{
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000283 struct macb_platform_data *pdata;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100284 u32 bottom;
285 u16 top;
286 u8 addr[6];
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000287 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100288
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900289 pdata = dev_get_platdata(&bp->pdev->dev);
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000290
Moritz Fischeraa50b552016-03-29 19:11:13 -0700291 /* Check all 4 address register for valid address */
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000292 for (i = 0; i < 4; i++) {
293 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
294 top = macb_or_gem_readl(bp, SA1T + i * 8);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100295
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000296 if (pdata && pdata->rev_eth_addr) {
297 addr[5] = bottom & 0xff;
298 addr[4] = (bottom >> 8) & 0xff;
299 addr[3] = (bottom >> 16) & 0xff;
300 addr[2] = (bottom >> 24) & 0xff;
301 addr[1] = top & 0xff;
302 addr[0] = (top & 0xff00) >> 8;
303 } else {
304 addr[0] = bottom & 0xff;
305 addr[1] = (bottom >> 8) & 0xff;
306 addr[2] = (bottom >> 16) & 0xff;
307 addr[3] = (bottom >> 24) & 0xff;
308 addr[4] = top & 0xff;
309 addr[5] = (top >> 8) & 0xff;
310 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100311
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000312 if (is_valid_ether_addr(addr)) {
313 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
314 return;
315 }
Sven Schnelled1d57412008-06-09 16:33:57 -0700316 }
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000317
Andy Shevchenkoa35919e2015-07-24 21:24:01 +0300318 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000319 eth_hw_addr_random(bp->dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100320}
321
frederic RODO6c36a702007-07-12 19:07:24 +0200322static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100323{
frederic RODO6c36a702007-07-12 19:07:24 +0200324 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100325 int value;
326
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100327 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
328 | MACB_BF(RW, MACB_MAN_READ)
frederic RODO6c36a702007-07-12 19:07:24 +0200329 | MACB_BF(PHYA, mii_id)
330 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100331 | MACB_BF(CODE, MACB_MAN_CODE)));
332
frederic RODO6c36a702007-07-12 19:07:24 +0200333 /* wait for end of transfer */
334 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
335 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100336
337 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100338
339 return value;
340}
341
frederic RODO6c36a702007-07-12 19:07:24 +0200342static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
343 u16 value)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100344{
frederic RODO6c36a702007-07-12 19:07:24 +0200345 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100346
347 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
348 | MACB_BF(RW, MACB_MAN_WRITE)
frederic RODO6c36a702007-07-12 19:07:24 +0200349 | MACB_BF(PHYA, mii_id)
350 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100351 | MACB_BF(CODE, MACB_MAN_CODE)
frederic RODO6c36a702007-07-12 19:07:24 +0200352 | MACB_BF(DATA, value)));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100353
frederic RODO6c36a702007-07-12 19:07:24 +0200354 /* wait for end of transfer */
355 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
356 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100357
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100358 return 0;
359}
360
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800361/**
362 * macb_set_tx_clk() - Set a clock to a new frequency
363 * @clk Pointer to the clock to change
364 * @rate New frequency in Hz
365 * @dev Pointer to the struct net_device
366 */
367static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
368{
369 long ferr, rate, rate_rounded;
370
Cyrille Pitchen93b31f42015-03-07 07:23:31 +0100371 if (!clk)
372 return;
373
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800374 switch (speed) {
375 case SPEED_10:
376 rate = 2500000;
377 break;
378 case SPEED_100:
379 rate = 25000000;
380 break;
381 case SPEED_1000:
382 rate = 125000000;
383 break;
384 default:
Soren Brinkmann9319e472013-12-10 20:57:57 -0800385 return;
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800386 }
387
388 rate_rounded = clk_round_rate(clk, rate);
389 if (rate_rounded < 0)
390 return;
391
392 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
393 * is not satisfied.
394 */
395 ferr = abs(rate_rounded - rate);
396 ferr = DIV_ROUND_UP(ferr, rate / 100000);
397 if (ferr > 5)
398 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700399 rate);
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800400
401 if (clk_set_rate(clk, rate_rounded))
402 netdev_err(dev, "adjusting tx_clk failed.\n");
403}
404
frederic RODO6c36a702007-07-12 19:07:24 +0200405static void macb_handle_link_change(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100406{
frederic RODO6c36a702007-07-12 19:07:24 +0200407 struct macb *bp = netdev_priv(dev);
Philippe Reynes0a912812016-06-22 00:32:35 +0200408 struct phy_device *phydev = dev->phydev;
frederic RODO6c36a702007-07-12 19:07:24 +0200409 unsigned long flags;
frederic RODO6c36a702007-07-12 19:07:24 +0200410 int status_change = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100411
frederic RODO6c36a702007-07-12 19:07:24 +0200412 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100413
frederic RODO6c36a702007-07-12 19:07:24 +0200414 if (phydev->link) {
415 if ((bp->speed != phydev->speed) ||
416 (bp->duplex != phydev->duplex)) {
417 u32 reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100418
frederic RODO6c36a702007-07-12 19:07:24 +0200419 reg = macb_readl(bp, NCFGR);
420 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
Patrice Vilchez140b7552012-10-31 06:04:50 +0000421 if (macb_is_gem(bp))
422 reg &= ~GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200423
424 if (phydev->duplex)
425 reg |= MACB_BIT(FD);
Atsushi Nemoto179956f2008-02-21 22:50:54 +0900426 if (phydev->speed == SPEED_100)
frederic RODO6c36a702007-07-12 19:07:24 +0200427 reg |= MACB_BIT(SPD);
Nicolas Ferree1755872014-07-24 13:50:58 +0200428 if (phydev->speed == SPEED_1000 &&
429 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000430 reg |= GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200431
Patrice Vilchez140b7552012-10-31 06:04:50 +0000432 macb_or_gem_writel(bp, NCFGR, reg);
frederic RODO6c36a702007-07-12 19:07:24 +0200433
434 bp->speed = phydev->speed;
435 bp->duplex = phydev->duplex;
436 status_change = 1;
437 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100438 }
439
frederic RODO6c36a702007-07-12 19:07:24 +0200440 if (phydev->link != bp->link) {
Anton Vorontsovc8f15682008-07-22 15:41:24 -0700441 if (!phydev->link) {
frederic RODO6c36a702007-07-12 19:07:24 +0200442 bp->speed = 0;
443 bp->duplex = -1;
444 }
445 bp->link = phydev->link;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100446
frederic RODO6c36a702007-07-12 19:07:24 +0200447 status_change = 1;
448 }
449
450 spin_unlock_irqrestore(&bp->lock, flags);
451
452 if (status_change) {
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000453 if (phydev->link) {
Jaeden Amero2c29b232015-03-12 18:07:54 -0500454 /* Update the TX clock rate if and only if the link is
455 * up and there has been a link change.
456 */
457 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
458
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000459 netif_carrier_on(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000460 netdev_info(dev, "link up (%d/%s)\n",
461 phydev->speed,
462 phydev->duplex == DUPLEX_FULL ?
463 "Full" : "Half");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000464 } else {
465 netif_carrier_off(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000466 netdev_info(dev, "link down\n");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000467 }
frederic RODO6c36a702007-07-12 19:07:24 +0200468 }
469}
470
471/* based on au1000_eth. c*/
472static int macb_mii_probe(struct net_device *dev)
473{
474 struct macb *bp = netdev_priv(dev);
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +0000475 struct macb_platform_data *pdata;
Jiri Pirko7455a762010-02-08 05:12:08 +0000476 struct phy_device *phydev;
Brad Mouring739de9a2018-03-13 16:32:13 -0500477 struct device_node *np;
478 int phy_irq, ret, i;
479
480 pdata = dev_get_platdata(&bp->pdev->dev);
481 np = bp->pdev->dev.of_node;
482 ret = 0;
483
484 if (np) {
485 if (of_phy_is_fixed_link(np)) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500486 bp->phy_node = of_node_get(np);
487 } else {
Brad Mouring2105a5d2018-03-13 16:32:15 -0500488 bp->phy_node = of_parse_phandle(np, "phy-handle", 0);
489 /* fallback to standard phy registration if no
490 * phy-handle was found nor any phy found during
491 * dt phy registration
Brad Mouring739de9a2018-03-13 16:32:13 -0500492 */
Brad Mouring2105a5d2018-03-13 16:32:15 -0500493 if (!bp->phy_node && !phy_find_first(bp->mii_bus)) {
Brad Mouring739de9a2018-03-13 16:32:13 -0500494 for (i = 0; i < PHY_MAX_ADDR; i++) {
495 struct phy_device *phydev;
496
497 phydev = mdiobus_scan(bp->mii_bus, i);
498 if (IS_ERR(phydev) &&
499 PTR_ERR(phydev) != -ENODEV) {
500 ret = PTR_ERR(phydev);
501 break;
502 }
503 }
504
505 if (ret)
506 return -ENODEV;
507 }
508 }
509 }
frederic RODO6c36a702007-07-12 19:07:24 +0200510
Michael Grzeschikdacdbb42017-06-23 16:54:10 +0200511 if (bp->phy_node) {
512 phydev = of_phy_connect(dev, bp->phy_node,
513 &macb_handle_link_change, 0,
514 bp->phy_interface);
515 if (!phydev)
516 return -ENODEV;
517 } else {
518 phydev = phy_find_first(bp->mii_bus);
519 if (!phydev) {
520 netdev_err(dev, "no PHY found\n");
521 return -ENXIO;
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +0000522 }
frederic RODO6c36a702007-07-12 19:07:24 +0200523
Michael Grzeschikdacdbb42017-06-23 16:54:10 +0200524 if (pdata) {
525 if (gpio_is_valid(pdata->phy_irq_pin)) {
526 ret = devm_gpio_request(&bp->pdev->dev,
527 pdata->phy_irq_pin, "phy int");
528 if (!ret) {
529 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
530 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
531 }
532 } else {
533 phydev->irq = PHY_POLL;
534 }
535 }
536
537 /* attach the mac to the phy */
538 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
539 bp->phy_interface);
540 if (ret) {
541 netdev_err(dev, "Could not attach to PHY\n");
542 return ret;
543 }
frederic RODO6c36a702007-07-12 19:07:24 +0200544 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100545
frederic RODO6c36a702007-07-12 19:07:24 +0200546 /* mask with MAC supported features */
Nicolas Ferree1755872014-07-24 13:50:58 +0200547 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Andrew Lunn58056c12018-09-12 01:53:11 +0200548 phy_set_max_speed(phydev, SPEED_1000);
Patrice Vilchez140b7552012-10-31 06:04:50 +0000549 else
Andrew Lunn58056c12018-09-12 01:53:11 +0200550 phy_set_max_speed(phydev, SPEED_100);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100551
Nathan Sullivan222ca8e2015-05-22 09:22:10 -0500552 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
Andrew Lunn41124fa2018-09-12 01:53:14 +0200553 phy_remove_link_mode(phydev,
554 ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100555
frederic RODO6c36a702007-07-12 19:07:24 +0200556 bp->link = 0;
557 bp->speed = 0;
558 bp->duplex = -1;
frederic RODO6c36a702007-07-12 19:07:24 +0200559
560 return 0;
561}
562
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100563static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200564{
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000565 struct macb_platform_data *pdata;
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200566 struct device_node *np;
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200567 int err = -ENXIO;
frederic RODO6c36a702007-07-12 19:07:24 +0200568
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200569 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200570 macb_writel(bp, NCR, MACB_BIT(MPE));
571
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700572 bp->mii_bus = mdiobus_alloc();
Moritz Fischeraa50b552016-03-29 19:11:13 -0700573 if (!bp->mii_bus) {
frederic RODO6c36a702007-07-12 19:07:24 +0200574 err = -ENOMEM;
575 goto err_out;
576 }
577
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700578 bp->mii_bus->name = "MACB_mii_bus";
579 bp->mii_bus->read = &macb_mdio_read;
580 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000581 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700582 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700583 bp->mii_bus->priv = bp;
Florian Fainellicf669662016-05-02 18:38:45 -0700584 bp->mii_bus->parent = &bp->pdev->dev;
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900585 pdata = dev_get_platdata(&bp->pdev->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700586
Jamie Iles91523942011-02-28 04:05:25 +0000587 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200588
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200589 np = bp->pdev->dev.of_node;
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200590 if (np && of_phy_is_fixed_link(np)) {
591 if (of_phy_register_fixed_link(np) < 0) {
592 dev_err(&bp->pdev->dev,
593 "broken fixed-link specification %pOF\n", np);
594 goto err_out_free_mdiobus;
595 }
Brad Mouring739de9a2018-03-13 16:32:13 -0500596
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200597 err = mdiobus_register(bp->mii_bus);
598 } else {
599 if (pdata)
600 bp->mii_bus->phy_mask = pdata->phy_mask;
601
602 err = of_mdiobus_register(bp->mii_bus, np);
603 }
604
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200605 if (err)
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200606 goto err_out_free_fixed_link;
frederic RODO6c36a702007-07-12 19:07:24 +0200607
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200608 err = macb_mii_probe(bp->dev);
609 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200610 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200611
612 return 0;
613
614err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700615 mdiobus_unregister(bp->mii_bus);
Ahmad Fatoumab5f1102018-08-21 17:35:48 +0200616err_out_free_fixed_link:
Michael Grzeschik9ce98142017-11-08 09:56:34 +0100617 if (np && of_phy_is_fixed_link(np))
618 of_phy_deregister_fixed_link(np);
Brad Mouring739de9a2018-03-13 16:32:13 -0500619err_out_free_mdiobus:
620 of_node_put(bp->phy_node);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700621 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200622err_out:
623 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100624}
625
626static void macb_update_stats(struct macb *bp)
627{
Jamie Ilesa494ed82011-03-09 16:26:35 +0000628 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
629 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +0300630 int offset = MACB_PFR;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100631
632 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
633
Moritz Fischer96ec6312016-03-29 19:11:11 -0700634 for (; p < end; p++, offset += 4)
David S. Miller7a6e0702015-07-27 14:24:48 -0700635 *p += bp->macb_reg_readl(bp, offset);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100636}
637
Nicolas Ferree86cd532012-10-31 06:04:57 +0000638static int macb_halt_tx(struct macb *bp)
639{
640 unsigned long halt_time, timeout;
641 u32 status;
642
643 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
644
645 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
646 do {
647 halt_time = jiffies;
648 status = macb_readl(bp, TSR);
649 if (!(status & MACB_BIT(TGO)))
650 return 0;
651
Jia-Ju Bai16fe10c2018-09-01 20:11:05 +0800652 udelay(250);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000653 } while (time_before(halt_time, timeout));
654
655 return -ETIMEDOUT;
656}
657
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200658static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
659{
660 if (tx_skb->mapping) {
661 if (tx_skb->mapped_as_page)
662 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
663 tx_skb->size, DMA_TO_DEVICE);
664 else
665 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
666 tx_skb->size, DMA_TO_DEVICE);
667 tx_skb->mapping = 0;
668 }
669
670 if (tx_skb->skb) {
671 dev_kfree_skb_any(tx_skb->skb);
672 tx_skb->skb = NULL;
673 }
674}
675
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000676static void macb_set_addr(struct macb *bp, struct macb_dma_desc *desc, dma_addr_t addr)
Harini Katakamfff80192016-08-09 13:15:53 +0530677{
Harini Katakamfff80192016-08-09 13:15:53 +0530678#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000679 struct macb_dma_desc_64 *desc_64;
680
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100681 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000682 desc_64 = macb_64b_desc(bp, desc);
683 desc_64->addrh = upper_32_bits(addr);
Anssi Hannulae100a892018-12-17 15:05:39 +0200684 /* The low bits of RX address contain the RX_USED bit, clearing
685 * of which allows packet RX. Make sure the high bits are also
686 * visible to HW at that point.
687 */
688 dma_wmb();
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000689 }
Harini Katakamfff80192016-08-09 13:15:53 +0530690#endif
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000691 desc->addr = lower_32_bits(addr);
692}
693
694static dma_addr_t macb_get_addr(struct macb *bp, struct macb_dma_desc *desc)
695{
696 dma_addr_t addr = 0;
697#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
698 struct macb_dma_desc_64 *desc_64;
699
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100700 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000701 desc_64 = macb_64b_desc(bp, desc);
702 addr = ((u64)(desc_64->addrh) << 32);
703 }
704#endif
705 addr |= MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
706 return addr;
Harini Katakamfff80192016-08-09 13:15:53 +0530707}
708
Nicolas Ferree86cd532012-10-31 06:04:57 +0000709static void macb_tx_error_task(struct work_struct *work)
710{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100711 struct macb_queue *queue = container_of(work, struct macb_queue,
712 tx_error_task);
713 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000714 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100715 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000716 struct sk_buff *skb;
717 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100718 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000719
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100720 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
721 (unsigned int)(queue - bp->queues),
722 queue->tx_tail, queue->tx_head);
723
724 /* Prevent the queue IRQ handlers from running: each of them may call
725 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
726 * As explained below, we have to halt the transmission before updating
727 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
728 * network engine about the macb/gem being halted.
729 */
730 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000731
732 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100733 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000734
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700735 /* Stop transmission now
Nicolas Ferree86cd532012-10-31 06:04:57 +0000736 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100737 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000738 */
739 if (macb_halt_tx(bp))
740 /* Just complain for now, reinitializing TX path can be good */
741 netdev_err(bp->dev, "BUG: halt tx timed out\n");
742
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700743 /* Treat frames in TX queue including the ones that caused the error.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000744 * Free transmit buffers in upper layer.
745 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100746 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
747 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000748
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100749 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000750 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100751 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000752 skb = tx_skb->skb;
753
754 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200755 /* skb is set for the last buffer of the frame */
756 while (!skb) {
757 macb_tx_unmap(bp, tx_skb);
758 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100759 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200760 skb = tx_skb->skb;
761 }
762
763 /* ctrl still refers to the first buffer descriptor
764 * since it's the only one written back by the hardware
765 */
766 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
767 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
Zach Brownb410d132016-10-19 09:56:57 -0500768 macb_tx_ring_wrap(bp, tail),
769 skb->data);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200770 bp->dev->stats.tx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000771 queue->stats.tx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200772 bp->dev->stats.tx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000773 queue->stats.tx_bytes += skb->len;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200774 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000775 } else {
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700776 /* "Buffers exhausted mid-frame" errors may only happen
777 * if the driver is buggy, so complain loudly about
778 * those. Statistics are updated by hardware.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000779 */
780 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
781 netdev_err(bp->dev,
782 "BUG: TX buffers exhausted mid-frame\n");
783
784 desc->ctrl = ctrl | MACB_BIT(TX_USED);
785 }
786
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200787 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000788 }
789
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100790 /* Set end of TX queue */
791 desc = macb_tx_desc(queue, 0);
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000792 macb_set_addr(bp, desc, 0);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100793 desc->ctrl = MACB_BIT(TX_USED);
794
Nicolas Ferree86cd532012-10-31 06:04:57 +0000795 /* Make descriptor updates visible to hardware */
796 wmb();
797
798 /* Reinitialize the TX desc queue */
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000799 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +0530800#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +0100801 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000802 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +0530803#endif
Nicolas Ferree86cd532012-10-31 06:04:57 +0000804 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100805 queue->tx_head = 0;
806 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000807
808 /* Housework before enabling TX IRQ */
809 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100810 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
811
812 /* Now we are ready to start transmission again */
813 netif_tx_start_all_queues(bp->dev);
814 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
815
816 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000817}
818
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100819static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100820{
821 unsigned int tail;
822 unsigned int head;
823 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100824 struct macb *bp = queue->bp;
825 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100826
827 status = macb_readl(bp, TSR);
828 macb_writel(bp, TSR, status);
829
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000830 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100831 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000832
Nicolas Ferree86cd532012-10-31 06:04:57 +0000833 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700834 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100835
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100836 head = queue->tx_head;
837 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000838 struct macb_tx_skb *tx_skb;
839 struct sk_buff *skb;
840 struct macb_dma_desc *desc;
841 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100842
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100843 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100844
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000845 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100846 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000847
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000848 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100849
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200850 /* TX_USED bit is only set by hardware on the very first buffer
851 * descriptor of the transmitted frame.
852 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000853 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100854 break;
855
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200856 /* Process all buffers of the current transmitted frame */
857 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100858 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200859 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000860
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200861 /* First, update TX stats if needed */
862 if (skb) {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +0100863 if (gem_ptp_do_txstamp(queue, skb, desc) == 0) {
864 /* skb now belongs to timestamp buffer
865 * and will be removed later
866 */
867 tx_skb->skb = NULL;
868 }
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200869 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
Zach Brownb410d132016-10-19 09:56:57 -0500870 macb_tx_ring_wrap(bp, tail),
871 skb->data);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200872 bp->dev->stats.tx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000873 queue->stats.tx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +0200874 bp->dev->stats.tx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +0000875 queue->stats.tx_bytes += skb->len;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200876 }
877
878 /* Now we can safely release resources */
879 macb_tx_unmap(bp, tx_skb);
880
881 /* skb is set only for the last buffer of the frame.
882 * WARNING: at this point skb has been freed by
883 * macb_tx_unmap().
884 */
885 if (skb)
886 break;
887 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100888 }
889
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100890 queue->tx_tail = tail;
891 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
892 CIRC_CNT(queue->tx_head, queue->tx_tail,
Zach Brownb410d132016-10-19 09:56:57 -0500893 bp->tx_ring_size) <= MACB_TX_WAKEUP_THRESH(bp))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100894 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100895}
896
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000897static void gem_rx_refill(struct macb_queue *queue)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000898{
899 unsigned int entry;
900 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000901 dma_addr_t paddr;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000902 struct macb *bp = queue->bp;
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000903 struct macb_dma_desc *desc;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000904
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000905 while (CIRC_SPACE(queue->rx_prepared_head, queue->rx_tail,
906 bp->rx_ring_size) > 0) {
907 entry = macb_rx_ring_wrap(bp, queue->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000908
909 /* Make hw descriptor updates visible to CPU */
910 rmb();
911
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000912 queue->rx_prepared_head++;
913 desc = macb_rx_desc(queue, entry);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000914
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000915 if (!queue->rx_skbuff[entry]) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000916 /* allocate sk_buff for this free entry in ring */
917 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
Moritz Fischeraa50b552016-03-29 19:11:13 -0700918 if (unlikely(!skb)) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000919 netdev_err(bp->dev,
920 "Unable to allocate sk_buff\n");
921 break;
922 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000923
924 /* now fill corresponding descriptor entry */
925 paddr = dma_map_single(&bp->pdev->dev, skb->data,
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700926 bp->rx_buffer_size,
927 DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800928 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
929 dev_kfree_skb(skb);
930 break;
931 }
932
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000933 queue->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000934
Zach Brownb410d132016-10-19 09:56:57 -0500935 if (entry == bp->rx_ring_size - 1)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000936 paddr |= MACB_BIT(RX_WRAP);
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000937 desc->ctrl = 0;
Anssi Hannula8159eca2018-12-17 15:05:40 +0200938 /* Setting addr clears RX_USED and allows reception,
939 * make sure ctrl is cleared first to avoid a race.
940 */
941 dma_wmb();
942 macb_set_addr(bp, desc, paddr);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000943
944 /* properly align Ethernet header */
945 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530946 } else {
Rafal Ozieblodc97a892017-01-27 15:08:20 +0000947 desc->ctrl = 0;
Anssi Hannula8159eca2018-12-17 15:05:40 +0200948 dma_wmb();
949 desc->addr &= ~MACB_BIT(RX_USED);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000950 }
951 }
952
953 /* Make descriptor updates visible to hardware */
954 wmb();
955
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000956 netdev_vdbg(bp->dev, "rx ring: queue: %p, prepared head %d, tail %d\n",
957 queue, queue->rx_prepared_head, queue->rx_tail);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000958}
959
960/* Mark DMA descriptors from begin up to and not including end as unused */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000961static void discard_partial_frame(struct macb_queue *queue, unsigned int begin,
Nicolas Ferre4df95132013-06-04 21:57:12 +0000962 unsigned int end)
963{
964 unsigned int frag;
965
966 for (frag = begin; frag != end; frag++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000967 struct macb_dma_desc *desc = macb_rx_desc(queue, frag);
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700968
Nicolas Ferre4df95132013-06-04 21:57:12 +0000969 desc->addr &= ~MACB_BIT(RX_USED);
970 }
971
972 /* Make descriptor updates visible to hardware */
973 wmb();
974
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700975 /* When this happens, the hardware stats registers for
Nicolas Ferre4df95132013-06-04 21:57:12 +0000976 * whatever caused this is updated, so we don't have to record
977 * anything.
978 */
979}
980
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000981static int gem_rx(struct macb_queue *queue, int budget)
Nicolas Ferre4df95132013-06-04 21:57:12 +0000982{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000983 struct macb *bp = queue->bp;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000984 unsigned int len;
985 unsigned int entry;
986 struct sk_buff *skb;
987 struct macb_dma_desc *desc;
988 int count = 0;
989
990 while (count < budget) {
Harini Katakamfff80192016-08-09 13:15:53 +0530991 u32 ctrl;
992 dma_addr_t addr;
993 bool rxused;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000994
Rafal Oziebloae1f2a52017-11-30 18:19:15 +0000995 entry = macb_rx_ring_wrap(bp, queue->rx_tail);
996 desc = macb_rx_desc(queue, entry);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000997
998 /* Make hw descriptor updates visible to CPU */
999 rmb();
1000
Harini Katakamfff80192016-08-09 13:15:53 +05301001 rxused = (desc->addr & MACB_BIT(RX_USED)) ? true : false;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001002 addr = macb_get_addr(bp, desc);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001003
Harini Katakamfff80192016-08-09 13:15:53 +05301004 if (!rxused)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001005 break;
1006
Anssi Hannula6e0af292018-12-17 15:05:41 +02001007 /* Ensure ctrl is at least as up-to-date as rxused */
1008 dma_rmb();
1009
1010 ctrl = desc->ctrl;
1011
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001012 queue->rx_tail++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001013 count++;
1014
1015 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
1016 netdev_err(bp->dev,
1017 "not whole frame pointed by descriptor\n");
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001018 bp->dev->stats.rx_dropped++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001019 queue->stats.rx_dropped++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001020 break;
1021 }
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001022 skb = queue->rx_skbuff[entry];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001023 if (unlikely(!skb)) {
1024 netdev_err(bp->dev,
1025 "inconsistent Rx descriptor chain\n");
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001026 bp->dev->stats.rx_dropped++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001027 queue->stats.rx_dropped++;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001028 break;
1029 }
1030 /* now everything is ready for receiving packet */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001031 queue->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301032 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001033
1034 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
1035
1036 skb_put(skb, len);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001037 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -08001038 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001039
1040 skb->protocol = eth_type_trans(skb, bp->dev);
1041 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001042 if (bp->dev->features & NETIF_F_RXCSUM &&
1043 !(bp->dev->flags & IFF_PROMISC) &&
1044 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
1045 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001046
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001047 bp->dev->stats.rx_packets++;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001048 queue->stats.rx_packets++;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001049 bp->dev->stats.rx_bytes += skb->len;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00001050 queue->stats.rx_bytes += skb->len;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001051
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01001052 gem_ptp_do_rxstamp(bp, skb, desc);
1053
Nicolas Ferre4df95132013-06-04 21:57:12 +00001054#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1055 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1056 skb->len, skb->csum);
1057 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +01001058 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001059 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
1060 skb->data, 32, true);
1061#endif
1062
1063 netif_receive_skb(skb);
1064 }
1065
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001066 gem_rx_refill(queue);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001067
1068 return count;
1069}
1070
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001071static int macb_rx_frame(struct macb_queue *queue, unsigned int first_frag,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001072 unsigned int last_frag)
1073{
1074 unsigned int len;
1075 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001076 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001077 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001078 struct macb_dma_desc *desc;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001079 struct macb *bp = queue->bp;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001080
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001081 desc = macb_rx_desc(queue, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301082 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001083
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001084 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Zach Brownb410d132016-10-19 09:56:57 -05001085 macb_rx_ring_wrap(bp, first_frag),
1086 macb_rx_ring_wrap(bp, last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001087
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001088 /* The ethernet header starts NET_IP_ALIGN bytes into the
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001089 * first buffer. Since the header is 14 bytes, this makes the
1090 * payload word-aligned.
1091 *
1092 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1093 * the two padding bytes into the skb so that we avoid hitting
1094 * the slowpath in memcpy(), and pull them off afterwards.
1095 */
1096 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001097 if (!skb) {
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001098 bp->dev->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001099 for (frag = first_frag; ; frag++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001100 desc = macb_rx_desc(queue, frag);
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001101 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001102 if (frag == last_frag)
1103 break;
1104 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001105
1106 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001107 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001108
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001109 return 1;
1110 }
1111
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001112 offset = 0;
1113 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001114 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001115 skb_put(skb, len);
1116
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001117 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +00001118 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001119
1120 if (offset + frag_len > len) {
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001121 if (unlikely(frag != last_frag)) {
1122 dev_kfree_skb_any(skb);
1123 return -1;
1124 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001125 frag_len = len - offset;
1126 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001127 skb_copy_to_linear_data_offset(skb, offset,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001128 macb_rx_buffer(queue, frag),
Moritz Fischeraa50b552016-03-29 19:11:13 -07001129 frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001130 offset += bp->rx_buffer_size;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001131 desc = macb_rx_desc(queue, frag);
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001132 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001133
1134 if (frag == last_frag)
1135 break;
1136 }
1137
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001138 /* Make descriptor updates visible to hardware */
1139 wmb();
1140
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001141 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001142 skb->protocol = eth_type_trans(skb, bp->dev);
1143
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02001144 bp->dev->stats.rx_packets++;
1145 bp->dev->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001146 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001147 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001148 netif_receive_skb(skb);
1149
1150 return 0;
1151}
1152
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001153static inline void macb_init_rx_ring(struct macb_queue *queue)
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001154{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001155 struct macb *bp = queue->bp;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001156 dma_addr_t addr;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001157 struct macb_dma_desc *desc = NULL;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001158 int i;
1159
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001160 addr = queue->rx_buffers_dma;
Zach Brownb410d132016-10-19 09:56:57 -05001161 for (i = 0; i < bp->rx_ring_size; i++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001162 desc = macb_rx_desc(queue, i);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001163 macb_set_addr(bp, desc, addr);
1164 desc->ctrl = 0;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001165 addr += bp->rx_buffer_size;
1166 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001167 desc->addr |= MACB_BIT(RX_WRAP);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001168 queue->rx_tail = 0;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001169}
1170
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001171static int macb_rx(struct macb_queue *queue, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001172{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001173 struct macb *bp = queue->bp;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001174 bool reset_rx_queue = false;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001175 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001176 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001177 int first_frag = -1;
1178
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001179 for (tail = queue->rx_tail; budget > 0; tail++) {
1180 struct macb_dma_desc *desc = macb_rx_desc(queue, tail);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001181 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001182
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001183 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001184 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001185
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001186 if (!(desc->addr & MACB_BIT(RX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001187 break;
1188
Anssi Hannula6e0af292018-12-17 15:05:41 +02001189 /* Ensure ctrl is at least as up-to-date as addr */
1190 dma_rmb();
1191
1192 ctrl = desc->ctrl;
1193
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001194 if (ctrl & MACB_BIT(RX_SOF)) {
1195 if (first_frag != -1)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001196 discard_partial_frame(queue, first_frag, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001197 first_frag = tail;
1198 }
1199
1200 if (ctrl & MACB_BIT(RX_EOF)) {
1201 int dropped;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001202
1203 if (unlikely(first_frag == -1)) {
1204 reset_rx_queue = true;
1205 continue;
1206 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001207
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001208 dropped = macb_rx_frame(queue, first_frag, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001209 first_frag = -1;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001210 if (unlikely(dropped < 0)) {
1211 reset_rx_queue = true;
1212 continue;
1213 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001214 if (!dropped) {
1215 received++;
1216 budget--;
1217 }
1218 }
1219 }
1220
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001221 if (unlikely(reset_rx_queue)) {
1222 unsigned long flags;
1223 u32 ctrl;
1224
1225 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1226
1227 spin_lock_irqsave(&bp->lock, flags);
1228
1229 ctrl = macb_readl(bp, NCR);
1230 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1231
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001232 macb_init_rx_ring(queue);
1233 queue_writel(queue, RBQP, queue->rx_ring_dma);
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001234
1235 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1236
1237 spin_unlock_irqrestore(&bp->lock, flags);
1238 return received;
1239 }
1240
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001241 if (first_frag != -1)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001242 queue->rx_tail = first_frag;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001243 else
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001244 queue->rx_tail = tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001245
1246 return received;
1247}
1248
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001249static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001250{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001251 struct macb_queue *queue = container_of(napi, struct macb_queue, napi);
1252 struct macb *bp = queue->bp;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001253 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001254 u32 status;
1255
1256 status = macb_readl(bp, RSR);
1257 macb_writel(bp, RSR, status);
1258
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001259 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001260 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001261
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001262 work_done = bp->macbgem_ops.mog_rx(queue, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +00001263 if (work_done < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001264 napi_complete_done(napi, work_done);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001265
Nicolas Ferre8770e912013-02-12 11:08:48 +01001266 /* Packets received while interrupts were disabled */
1267 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -07001268 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001269 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001270 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +01001271 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001272 } else {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001273 queue_writel(queue, IER, MACB_RX_INT_FLAGS);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001274 }
Joshua Hokeb3363692010-10-25 01:44:22 +00001275 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001276
1277 /* TODO: Handle errors */
1278
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001279 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001280}
1281
Harini Katakam032dc412018-01-27 12:09:01 +05301282static void macb_hresp_error_task(unsigned long data)
1283{
1284 struct macb *bp = (struct macb *)data;
1285 struct net_device *dev = bp->dev;
1286 struct macb_queue *queue = bp->queues;
1287 unsigned int q;
1288 u32 ctrl;
1289
1290 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1291 queue_writel(queue, IDR, MACB_RX_INT_FLAGS |
1292 MACB_TX_INT_FLAGS |
1293 MACB_BIT(HRESP));
1294 }
1295 ctrl = macb_readl(bp, NCR);
1296 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
1297 macb_writel(bp, NCR, ctrl);
1298
1299 netif_tx_stop_all_queues(dev);
1300 netif_carrier_off(dev);
1301
1302 bp->macbgem_ops.mog_init_rings(bp);
1303
1304 /* Initialize TX and RX buffers */
1305 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1306 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
1307#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1308 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1309 queue_writel(queue, RBQPH,
1310 upper_32_bits(queue->rx_ring_dma));
1311#endif
1312 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
1313#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1314 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1315 queue_writel(queue, TBQPH,
1316 upper_32_bits(queue->tx_ring_dma));
1317#endif
1318
1319 /* Enable interrupts */
1320 queue_writel(queue, IER,
1321 MACB_RX_INT_FLAGS |
1322 MACB_TX_INT_FLAGS |
1323 MACB_BIT(HRESP));
1324 }
1325
1326 ctrl |= MACB_BIT(RE) | MACB_BIT(TE);
1327 macb_writel(bp, NCR, ctrl);
1328
1329 netif_carrier_on(dev);
1330 netif_tx_start_all_queues(dev);
1331}
1332
Claudiu Beznea42983882018-12-17 10:02:42 +00001333static void macb_tx_restart(struct macb_queue *queue)
1334{
1335 unsigned int head = queue->tx_head;
1336 unsigned int tail = queue->tx_tail;
1337 struct macb *bp = queue->bp;
1338
1339 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1340 queue_writel(queue, ISR, MACB_BIT(TXUBR));
1341
1342 if (head == tail)
1343 return;
1344
1345 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1346}
1347
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001348static irqreturn_t macb_interrupt(int irq, void *dev_id)
1349{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001350 struct macb_queue *queue = dev_id;
1351 struct macb *bp = queue->bp;
1352 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001353 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001354
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001355 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001356
1357 if (unlikely(!status))
1358 return IRQ_NONE;
1359
1360 spin_lock(&bp->lock);
1361
1362 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001363 /* close possible race with dev_close */
1364 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001365 queue_writel(queue, IDR, -1);
Nathan Sullivan24468372016-01-14 13:27:27 -06001366 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1367 queue_writel(queue, ISR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001368 break;
1369 }
1370
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001371 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1372 (unsigned int)(queue - bp->queues),
1373 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001374
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001375 if (status & MACB_RX_INT_FLAGS) {
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001376 /* There's no point taking any more interrupts
Joshua Hokeb3363692010-10-25 01:44:22 +00001377 * until we have processed the buffers. The
1378 * scheduling call may fail if the poll routine
1379 * is already scheduled, so disable interrupts
1380 * now.
1381 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001382 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001383 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001384 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001385
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001386 if (napi_schedule_prep(&queue->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001387 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001388 __napi_schedule(&queue->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001389 }
1390 }
1391
Nicolas Ferree86cd532012-10-31 06:04:57 +00001392 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001393 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1394 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001395
1396 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001397 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001398
Nicolas Ferree86cd532012-10-31 06:04:57 +00001399 break;
1400 }
1401
1402 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001403 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001404
Claudiu Beznea42983882018-12-17 10:02:42 +00001405 if (status & MACB_BIT(TXUBR))
1406 macb_tx_restart(queue);
1407
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001408 /* Link change detection isn't possible with RMII, so we'll
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001409 * add that if/when we get our hands on a full-blown MII PHY.
1410 */
1411
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001412 /* There is a hardware issue under heavy load where DMA can
1413 * stop, this causes endless "used buffer descriptor read"
1414 * interrupts but it can be cleared by re-enabling RX. See
1415 * the at91 manual, section 41.3.1 or the Zynq manual
1416 * section 16.7.4 for details.
1417 */
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001418 if (status & MACB_BIT(RXUBR)) {
1419 ctrl = macb_readl(bp, NCR);
1420 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
Zumeng Chenffac0e92016-11-28 21:55:00 +08001421 wmb();
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001422 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1423
1424 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchenba504992016-03-24 15:40:04 +01001425 queue_writel(queue, ISR, MACB_BIT(RXUBR));
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001426 }
1427
Alexander Steinb19f7f72011-04-13 05:03:24 +00001428 if (status & MACB_BIT(ISR_ROVR)) {
1429 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001430 if (macb_is_gem(bp))
1431 bp->hw_stats.gem.rx_overruns++;
1432 else
1433 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001434
1435 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001436 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001437 }
1438
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001439 if (status & MACB_BIT(HRESP)) {
Harini Katakam032dc412018-01-27 12:09:01 +05301440 tasklet_schedule(&bp->hresp_err_tasklet);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001441 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001442
1443 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001444 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001445 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001446 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001447 }
1448
1449 spin_unlock(&bp->lock);
1450
1451 return IRQ_HANDLED;
1452}
1453
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001454#ifdef CONFIG_NET_POLL_CONTROLLER
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001455/* Polling receive - used by netconsole and other diagnostic tools
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001456 * to allow network i/o with interrupts disabled.
1457 */
1458static void macb_poll_controller(struct net_device *dev)
1459{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001460 struct macb *bp = netdev_priv(dev);
1461 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001462 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001463 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001464
1465 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001466 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1467 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001468 local_irq_restore(flags);
1469}
1470#endif
1471
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001472static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001473 struct macb_queue *queue,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001474 struct sk_buff *skb,
1475 unsigned int hdrlen)
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001476{
1477 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001478 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001479 struct macb_tx_skb *tx_skb = NULL;
1480 struct macb_dma_desc *desc;
1481 unsigned int offset, size, count = 0;
1482 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001483 unsigned int eof = 1, mss_mfs = 0;
1484 u32 ctrl, lso_ctrl = 0, seq_ctrl = 0;
1485
1486 /* LSO */
1487 if (skb_shinfo(skb)->gso_size != 0) {
1488 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
1489 /* UDP - UFO */
1490 lso_ctrl = MACB_LSO_UFO_ENABLE;
1491 else
1492 /* TCP - TSO */
1493 lso_ctrl = MACB_LSO_TSO_ENABLE;
1494 }
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001495
1496 /* First, map non-paged data */
1497 len = skb_headlen(skb);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001498
1499 /* first buffer length */
1500 size = hdrlen;
1501
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001502 offset = 0;
1503 while (len) {
Zach Brownb410d132016-10-19 09:56:57 -05001504 entry = macb_tx_ring_wrap(bp, tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001505 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001506
1507 mapping = dma_map_single(&bp->pdev->dev,
1508 skb->data + offset,
1509 size, DMA_TO_DEVICE);
1510 if (dma_mapping_error(&bp->pdev->dev, mapping))
1511 goto dma_error;
1512
1513 /* Save info to properly release resources */
1514 tx_skb->skb = NULL;
1515 tx_skb->mapping = mapping;
1516 tx_skb->size = size;
1517 tx_skb->mapped_as_page = false;
1518
1519 len -= size;
1520 offset += size;
1521 count++;
1522 tx_head++;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001523
1524 size = min(len, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001525 }
1526
1527 /* Then, map paged data from fragments */
1528 for (f = 0; f < nr_frags; f++) {
1529 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1530
1531 len = skb_frag_size(frag);
1532 offset = 0;
1533 while (len) {
1534 size = min(len, bp->max_tx_length);
Zach Brownb410d132016-10-19 09:56:57 -05001535 entry = macb_tx_ring_wrap(bp, tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001536 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001537
1538 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1539 offset, size, DMA_TO_DEVICE);
1540 if (dma_mapping_error(&bp->pdev->dev, mapping))
1541 goto dma_error;
1542
1543 /* Save info to properly release resources */
1544 tx_skb->skb = NULL;
1545 tx_skb->mapping = mapping;
1546 tx_skb->size = size;
1547 tx_skb->mapped_as_page = true;
1548
1549 len -= size;
1550 offset += size;
1551 count++;
1552 tx_head++;
1553 }
1554 }
1555
1556 /* Should never happen */
Moritz Fischeraa50b552016-03-29 19:11:13 -07001557 if (unlikely(!tx_skb)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001558 netdev_err(bp->dev, "BUG! empty skb!\n");
1559 return 0;
1560 }
1561
1562 /* This is the last buffer of the frame: save socket buffer */
1563 tx_skb->skb = skb;
1564
1565 /* Update TX ring: update buffer descriptors in reverse order
1566 * to avoid race condition
1567 */
1568
1569 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1570 * to set the end of TX queue
1571 */
1572 i = tx_head;
Zach Brownb410d132016-10-19 09:56:57 -05001573 entry = macb_tx_ring_wrap(bp, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001574 ctrl = MACB_BIT(TX_USED);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001575 desc = macb_tx_desc(queue, entry);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001576 desc->ctrl = ctrl;
1577
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001578 if (lso_ctrl) {
1579 if (lso_ctrl == MACB_LSO_UFO_ENABLE)
1580 /* include header and FCS in value given to h/w */
1581 mss_mfs = skb_shinfo(skb)->gso_size +
1582 skb_transport_offset(skb) +
1583 ETH_FCS_LEN;
1584 else /* TSO */ {
1585 mss_mfs = skb_shinfo(skb)->gso_size;
1586 /* TCP Sequence Number Source Select
1587 * can be set only for TSO
1588 */
1589 seq_ctrl = 0;
1590 }
1591 }
1592
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001593 do {
1594 i--;
Zach Brownb410d132016-10-19 09:56:57 -05001595 entry = macb_tx_ring_wrap(bp, i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001596 tx_skb = &queue->tx_skb[entry];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001597 desc = macb_tx_desc(queue, entry);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001598
1599 ctrl = (u32)tx_skb->size;
1600 if (eof) {
1601 ctrl |= MACB_BIT(TX_LAST);
1602 eof = 0;
1603 }
Zach Brownb410d132016-10-19 09:56:57 -05001604 if (unlikely(entry == (bp->tx_ring_size - 1)))
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001605 ctrl |= MACB_BIT(TX_WRAP);
1606
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001607 /* First descriptor is header descriptor */
1608 if (i == queue->tx_head) {
1609 ctrl |= MACB_BF(TX_LSO, lso_ctrl);
1610 ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl);
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001611 if ((bp->dev->features & NETIF_F_HW_CSUM) &&
1612 skb->ip_summed != CHECKSUM_PARTIAL && !lso_ctrl)
1613 ctrl |= MACB_BIT(TX_NOCRC);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001614 } else
1615 /* Only set MSS/MFS on payload descriptors
1616 * (second or later descriptor)
1617 */
1618 ctrl |= MACB_BF(MSS_MFS, mss_mfs);
1619
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001620 /* Set TX buffer descriptor */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001621 macb_set_addr(bp, desc, tx_skb->mapping);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001622 /* desc->addr must be visible to hardware before clearing
1623 * 'TX_USED' bit in desc->ctrl.
1624 */
1625 wmb();
1626 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001627 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001628
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001629 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001630
1631 return count;
1632
1633dma_error:
1634 netdev_err(bp->dev, "TX DMA map failed\n");
1635
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001636 for (i = queue->tx_head; i != tx_head; i++) {
1637 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001638
1639 macb_tx_unmap(bp, tx_skb);
1640 }
1641
1642 return 0;
1643}
1644
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001645static netdev_features_t macb_features_check(struct sk_buff *skb,
1646 struct net_device *dev,
1647 netdev_features_t features)
1648{
1649 unsigned int nr_frags, f;
1650 unsigned int hdrlen;
1651
1652 /* Validate LSO compatibility */
1653
1654 /* there is only one buffer */
1655 if (!skb_is_nonlinear(skb))
1656 return features;
1657
1658 /* length of header */
1659 hdrlen = skb_transport_offset(skb);
1660 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
1661 hdrlen += tcp_hdrlen(skb);
1662
1663 /* For LSO:
1664 * When software supplies two or more payload buffers all payload buffers
1665 * apart from the last must be a multiple of 8 bytes in size.
1666 */
1667 if (!IS_ALIGNED(skb_headlen(skb) - hdrlen, MACB_TX_LEN_ALIGN))
1668 return features & ~MACB_NETIF_LSO;
1669
1670 nr_frags = skb_shinfo(skb)->nr_frags;
1671 /* No need to check last fragment */
1672 nr_frags--;
1673 for (f = 0; f < nr_frags; f++) {
1674 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1675
1676 if (!IS_ALIGNED(skb_frag_size(frag), MACB_TX_LEN_ALIGN))
1677 return features & ~MACB_NETIF_LSO;
1678 }
1679 return features;
1680}
1681
Helmut Buchsbaum007e4ba2016-09-04 18:09:47 +02001682static inline int macb_clear_csum(struct sk_buff *skb)
1683{
1684 /* no change for packets without checksum offloading */
1685 if (skb->ip_summed != CHECKSUM_PARTIAL)
1686 return 0;
1687
1688 /* make sure we can modify the header */
1689 if (unlikely(skb_cow_head(skb, 0)))
1690 return -1;
1691
1692 /* initialize checksum field
1693 * This is required - at least for Zynq, which otherwise calculates
1694 * wrong UDP header checksums for UDP packets with UDP data len <=2
1695 */
1696 *(__sum16 *)(skb_checksum_start(skb) + skb->csum_offset) = 0;
1697 return 0;
1698}
1699
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001700static int macb_pad_and_fcs(struct sk_buff **skb, struct net_device *ndev)
1701{
1702 bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb);
1703 int padlen = ETH_ZLEN - (*skb)->len;
1704 int headroom = skb_headroom(*skb);
1705 int tailroom = skb_tailroom(*skb);
1706 struct sk_buff *nskb;
1707 u32 fcs;
1708
1709 if (!(ndev->features & NETIF_F_HW_CSUM) ||
1710 !((*skb)->ip_summed != CHECKSUM_PARTIAL) ||
1711 skb_shinfo(*skb)->gso_size) /* Not available for GSO */
1712 return 0;
1713
1714 if (padlen <= 0) {
1715 /* FCS could be appeded to tailroom. */
1716 if (tailroom >= ETH_FCS_LEN)
1717 goto add_fcs;
1718 /* FCS could be appeded by moving data to headroom. */
1719 else if (!cloned && headroom + tailroom >= ETH_FCS_LEN)
1720 padlen = 0;
1721 /* No room for FCS, need to reallocate skb. */
1722 else
Tristram Ha899ecae2018-10-24 14:51:23 -07001723 padlen = ETH_FCS_LEN;
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001724 } else {
1725 /* Add room for FCS. */
1726 padlen += ETH_FCS_LEN;
1727 }
1728
1729 if (!cloned && headroom + tailroom >= padlen) {
1730 (*skb)->data = memmove((*skb)->head, (*skb)->data, (*skb)->len);
1731 skb_set_tail_pointer(*skb, (*skb)->len);
1732 } else {
1733 nskb = skb_copy_expand(*skb, 0, padlen, GFP_ATOMIC);
1734 if (!nskb)
1735 return -ENOMEM;
1736
1737 dev_kfree_skb_any(*skb);
1738 *skb = nskb;
1739 }
1740
Claudiu Bezneaba3e1842019-01-03 14:59:35 +00001741 if (padlen > ETH_FCS_LEN)
1742 skb_put_zero(*skb, padlen - ETH_FCS_LEN);
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001743
1744add_fcs:
1745 /* set FCS to packet */
1746 fcs = crc32_le(~0, (*skb)->data, (*skb)->len);
1747 fcs = ~fcs;
1748
1749 skb_put_u8(*skb, fcs & 0xff);
1750 skb_put_u8(*skb, (fcs >> 8) & 0xff);
1751 skb_put_u8(*skb, (fcs >> 16) & 0xff);
1752 skb_put_u8(*skb, (fcs >> 24) & 0xff);
1753
1754 return 0;
1755}
1756
Claudiu Beznead1c38952018-08-07 12:25:12 +03001757static netdev_tx_t macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001758{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001759 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001760 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001761 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001762 unsigned long flags;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001763 unsigned int desc_cnt, nr_frags, frag_size, f;
1764 unsigned int hdrlen;
1765 bool is_lso, is_udp = 0;
Claudiu Beznead1c38952018-08-07 12:25:12 +03001766 netdev_tx_t ret = NETDEV_TX_OK;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001767
Claudiu Beznea33729f22018-08-07 12:25:13 +03001768 if (macb_clear_csum(skb)) {
1769 dev_kfree_skb_any(skb);
1770 return ret;
1771 }
1772
Claudiu Beznea653e92a2018-08-07 12:25:14 +03001773 if (macb_pad_and_fcs(&skb, dev)) {
1774 dev_kfree_skb_any(skb);
1775 return ret;
1776 }
1777
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001778 is_lso = (skb_shinfo(skb)->gso_size != 0);
1779
1780 if (is_lso) {
1781 is_udp = !!(ip_hdr(skb)->protocol == IPPROTO_UDP);
1782
1783 /* length of headers */
1784 if (is_udp)
1785 /* only queue eth + ip headers separately for UDP */
1786 hdrlen = skb_transport_offset(skb);
1787 else
1788 hdrlen = skb_transport_offset(skb) + tcp_hdrlen(skb);
1789 if (skb_headlen(skb) < hdrlen) {
1790 netdev_err(bp->dev, "Error - LSO headers fragmented!!!\n");
1791 /* if this is required, would need to copy to single buffer */
1792 return NETDEV_TX_BUSY;
1793 }
1794 } else
1795 hdrlen = min(skb_headlen(skb), bp->max_tx_length);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001796
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001797#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1798 netdev_vdbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001799 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1800 queue_index, skb->len, skb->head, skb->data,
1801 skb_tail_pointer(skb), skb_end_pointer(skb));
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001802 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1803 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001804#endif
1805
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001806 /* Count how many TX buffer descriptors are needed to send this
1807 * socket buffer: skb fragments of jumbo frames may need to be
Moritz Fischeraa50b552016-03-29 19:11:13 -07001808 * split into many buffer descriptors.
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001809 */
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001810 if (is_lso && (skb_headlen(skb) > hdrlen))
1811 /* extra header descriptor if also payload in first buffer */
1812 desc_cnt = DIV_ROUND_UP((skb_headlen(skb) - hdrlen), bp->max_tx_length) + 1;
1813 else
1814 desc_cnt = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001815 nr_frags = skb_shinfo(skb)->nr_frags;
1816 for (f = 0; f < nr_frags; f++) {
1817 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001818 desc_cnt += DIV_ROUND_UP(frag_size, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001819 }
1820
Dongdong Deng48719532009-08-23 19:49:07 -07001821 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001822
1823 /* This is a hard error, log it. */
Zach Brownb410d132016-10-19 09:56:57 -05001824 if (CIRC_SPACE(queue->tx_head, queue->tx_tail,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001825 bp->tx_ring_size) < desc_cnt) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001826 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001827 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001828 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001829 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001830 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001831 }
1832
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001833 /* Map socket buffer for DMA transfer */
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00001834 if (!macb_tx_map(bp, queue, skb, hdrlen)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001835 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001836 goto unlock;
1837 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001838
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001839 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001840 wmb();
Richard Cochrane0720922011-06-19 21:51:28 +00001841 skb_tx_timestamp(skb);
1842
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001843 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1844
Zach Brownb410d132016-10-19 09:56:57 -05001845 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, bp->tx_ring_size) < 1)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001846 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001847
Soren Brinkmann92030902014-03-04 08:46:39 -08001848unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001849 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001850
Claudiu Beznead1c38952018-08-07 12:25:12 +03001851 return ret;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001852}
1853
Nicolas Ferre4df95132013-06-04 21:57:12 +00001854static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001855{
1856 if (!macb_is_gem(bp)) {
1857 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1858 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001859 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001860
Nicolas Ferre1b447912013-06-04 21:57:11 +00001861 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001862 netdev_dbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001863 "RX buffer must be multiple of %d bytes, expanding\n",
1864 RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001865 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001866 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001867 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001868 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001869
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001870 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%zu]\n",
Nicolas Ferre4df95132013-06-04 21:57:12 +00001871 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001872}
1873
Nicolas Ferre4df95132013-06-04 21:57:12 +00001874static void gem_free_rx_buffers(struct macb *bp)
1875{
1876 struct sk_buff *skb;
1877 struct macb_dma_desc *desc;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001878 struct macb_queue *queue;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001879 dma_addr_t addr;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001880 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001881 int i;
1882
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001883 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1884 if (!queue->rx_skbuff)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001885 continue;
1886
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001887 for (i = 0; i < bp->rx_ring_size; i++) {
1888 skb = queue->rx_skbuff[i];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00001889
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001890 if (!skb)
1891 continue;
1892
1893 desc = macb_rx_desc(queue, i);
1894 addr = macb_get_addr(bp, desc);
1895
1896 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
1897 DMA_FROM_DEVICE);
1898 dev_kfree_skb_any(skb);
1899 skb = NULL;
1900 }
1901
1902 kfree(queue->rx_skbuff);
1903 queue->rx_skbuff = NULL;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001904 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001905}
1906
1907static void macb_free_rx_buffers(struct macb *bp)
1908{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001909 struct macb_queue *queue = &bp->queues[0];
1910
1911 if (queue->rx_buffers) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001912 dma_free_coherent(&bp->pdev->dev,
Zach Brownb410d132016-10-19 09:56:57 -05001913 bp->rx_ring_size * bp->rx_buffer_size,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001914 queue->rx_buffers, queue->rx_buffers_dma);
1915 queue->rx_buffers = NULL;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001916 }
1917}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001918
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001919static void macb_free_consistent(struct macb *bp)
1920{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001921 struct macb_queue *queue;
1922 unsigned int q;
Harini Katakam404cd082018-07-06 12:18:58 +05301923 int size;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001924
Nicolas Ferre4df95132013-06-04 21:57:12 +00001925 bp->macbgem_ops.mog_free_rx_buffers(bp);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001926
1927 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1928 kfree(queue->tx_skb);
1929 queue->tx_skb = NULL;
1930 if (queue->tx_ring) {
Harini Katakam404cd082018-07-06 12:18:58 +05301931 size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
1932 dma_free_coherent(&bp->pdev->dev, size,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001933 queue->tx_ring, queue->tx_ring_dma);
1934 queue->tx_ring = NULL;
1935 }
Harini Katakame50b7702018-07-06 12:18:57 +05301936 if (queue->rx_ring) {
Harini Katakam404cd082018-07-06 12:18:58 +05301937 size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
1938 dma_free_coherent(&bp->pdev->dev, size,
Harini Katakame50b7702018-07-06 12:18:57 +05301939 queue->rx_ring, queue->rx_ring_dma);
1940 queue->rx_ring = NULL;
1941 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001942 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001943}
1944
1945static int gem_alloc_rx_buffers(struct macb *bp)
1946{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001947 struct macb_queue *queue;
1948 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001949 int size;
1950
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001951 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1952 size = bp->rx_ring_size * sizeof(struct sk_buff *);
1953 queue->rx_skbuff = kzalloc(size, GFP_KERNEL);
1954 if (!queue->rx_skbuff)
1955 return -ENOMEM;
1956 else
1957 netdev_dbg(bp->dev,
1958 "Allocated %d RX struct sk_buff entries at %p\n",
1959 bp->rx_ring_size, queue->rx_skbuff);
1960 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001961 return 0;
1962}
1963
1964static int macb_alloc_rx_buffers(struct macb *bp)
1965{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001966 struct macb_queue *queue = &bp->queues[0];
Nicolas Ferre4df95132013-06-04 21:57:12 +00001967 int size;
1968
Zach Brownb410d132016-10-19 09:56:57 -05001969 size = bp->rx_ring_size * bp->rx_buffer_size;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001970 queue->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1971 &queue->rx_buffers_dma, GFP_KERNEL);
1972 if (!queue->rx_buffers)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001973 return -ENOMEM;
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001974
1975 netdev_dbg(bp->dev,
1976 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00001977 size, (unsigned long)queue->rx_buffers_dma, queue->rx_buffers);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001978 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001979}
1980
1981static int macb_alloc_consistent(struct macb *bp)
1982{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001983 struct macb_queue *queue;
1984 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001985 int size;
1986
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001987 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Harini Katakam404cd082018-07-06 12:18:58 +05301988 size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001989 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1990 &queue->tx_ring_dma,
1991 GFP_KERNEL);
1992 if (!queue->tx_ring)
1993 goto out_err;
1994 netdev_dbg(bp->dev,
1995 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1996 q, size, (unsigned long)queue->tx_ring_dma,
1997 queue->tx_ring);
1998
Zach Brownb410d132016-10-19 09:56:57 -05001999 size = bp->tx_ring_size * sizeof(struct macb_tx_skb);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002000 queue->tx_skb = kmalloc(size, GFP_KERNEL);
2001 if (!queue->tx_skb)
2002 goto out_err;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002003
Harini Katakam404cd082018-07-06 12:18:58 +05302004 size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002005 queue->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
2006 &queue->rx_ring_dma, GFP_KERNEL);
2007 if (!queue->rx_ring)
2008 goto out_err;
2009 netdev_dbg(bp->dev,
2010 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
2011 size, (unsigned long)queue->rx_ring_dma, queue->rx_ring);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002012 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00002013 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002014 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002015
2016 return 0;
2017
2018out_err:
2019 macb_free_consistent(bp);
2020 return -ENOMEM;
2021}
2022
Nicolas Ferre4df95132013-06-04 21:57:12 +00002023static void gem_init_rings(struct macb *bp)
2024{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002025 struct macb_queue *queue;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002026 struct macb_dma_desc *desc = NULL;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002027 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002028 int i;
2029
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002030 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Zach Brownb410d132016-10-19 09:56:57 -05002031 for (i = 0; i < bp->tx_ring_size; i++) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002032 desc = macb_tx_desc(queue, i);
2033 macb_set_addr(bp, desc, 0);
2034 desc->ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002035 }
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002036 desc->ctrl |= MACB_BIT(TX_WRAP);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002037 queue->tx_head = 0;
2038 queue->tx_tail = 0;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002039
2040 queue->rx_tail = 0;
2041 queue->rx_prepared_head = 0;
2042
2043 gem_rx_refill(queue);
Nicolas Ferre4df95132013-06-04 21:57:12 +00002044 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00002045
Nicolas Ferre4df95132013-06-04 21:57:12 +00002046}
2047
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002048static void macb_init_rings(struct macb *bp)
2049{
2050 int i;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002051 struct macb_dma_desc *desc = NULL;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002052
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002053 macb_init_rx_ring(&bp->queues[0]);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002054
Zach Brownb410d132016-10-19 09:56:57 -05002055 for (i = 0; i < bp->tx_ring_size; i++) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002056 desc = macb_tx_desc(&bp->queues[0], i);
2057 macb_set_addr(bp, desc, 0);
2058 desc->ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002059 }
Ben Shelton21d35152015-04-22 17:28:54 -05002060 bp->queues[0].tx_head = 0;
2061 bp->queues[0].tx_tail = 0;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002062 desc->ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002063}
2064
2065static void macb_reset_hw(struct macb *bp)
2066{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002067 struct macb_queue *queue;
2068 unsigned int q;
Anssi Hannula0da70f82018-08-23 10:45:22 +03002069 u32 ctrl = macb_readl(bp, NCR);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002070
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002071 /* Disable RX and TX (XXX: Should we halt the transmission
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002072 * more gracefully?)
2073 */
Anssi Hannula0da70f82018-08-23 10:45:22 +03002074 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002075
2076 /* Clear the stats registers (XXX: Update stats first?) */
Anssi Hannula0da70f82018-08-23 10:45:22 +03002077 ctrl |= MACB_BIT(CLRSTAT);
2078
2079 macb_writel(bp, NCR, ctrl);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002080
2081 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00002082 macb_writel(bp, TSR, -1);
2083 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002084
2085 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002086 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2087 queue_writel(queue, IDR, -1);
2088 queue_readl(queue, ISR);
Nathan Sullivan24468372016-01-14 13:27:27 -06002089 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
2090 queue_writel(queue, ISR, -1);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002091 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002092}
2093
Jamie Iles70c9f3d2011-03-09 16:22:54 +00002094static u32 gem_mdc_clk_div(struct macb *bp)
2095{
2096 u32 config;
2097 unsigned long pclk_hz = clk_get_rate(bp->pclk);
2098
2099 if (pclk_hz <= 20000000)
2100 config = GEM_BF(CLK, GEM_CLK_DIV8);
2101 else if (pclk_hz <= 40000000)
2102 config = GEM_BF(CLK, GEM_CLK_DIV16);
2103 else if (pclk_hz <= 80000000)
2104 config = GEM_BF(CLK, GEM_CLK_DIV32);
2105 else if (pclk_hz <= 120000000)
2106 config = GEM_BF(CLK, GEM_CLK_DIV48);
2107 else if (pclk_hz <= 160000000)
2108 config = GEM_BF(CLK, GEM_CLK_DIV64);
2109 else
2110 config = GEM_BF(CLK, GEM_CLK_DIV96);
2111
2112 return config;
2113}
2114
2115static u32 macb_mdc_clk_div(struct macb *bp)
2116{
2117 u32 config;
2118 unsigned long pclk_hz;
2119
2120 if (macb_is_gem(bp))
2121 return gem_mdc_clk_div(bp);
2122
2123 pclk_hz = clk_get_rate(bp->pclk);
2124 if (pclk_hz <= 20000000)
2125 config = MACB_BF(CLK, MACB_CLK_DIV8);
2126 else if (pclk_hz <= 40000000)
2127 config = MACB_BF(CLK, MACB_CLK_DIV16);
2128 else if (pclk_hz <= 80000000)
2129 config = MACB_BF(CLK, MACB_CLK_DIV32);
2130 else
2131 config = MACB_BF(CLK, MACB_CLK_DIV64);
2132
2133 return config;
2134}
2135
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002136/* Get the DMA bus width field of the network configuration register that we
Jamie Iles757a03c2011-03-09 16:29:59 +00002137 * should program. We find the width from decoding the design configuration
2138 * register to find the maximum supported data bus width.
2139 */
2140static u32 macb_dbw(struct macb *bp)
2141{
2142 if (!macb_is_gem(bp))
2143 return 0;
2144
2145 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
2146 case 4:
2147 return GEM_BF(DBW, GEM_DBW128);
2148 case 2:
2149 return GEM_BF(DBW, GEM_DBW64);
2150 case 1:
2151 default:
2152 return GEM_BF(DBW, GEM_DBW32);
2153 }
2154}
2155
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002156/* Configure the receive DMA engine
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002157 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02002158 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002159 * (if not supported by FIFO, it will fallback to default)
2160 * - set both rx/tx packet buffers to full memory size
2161 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00002162 */
2163static void macb_configure_dma(struct macb *bp)
2164{
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002165 struct macb_queue *queue;
2166 u32 buffer_size;
2167 unsigned int q;
Jamie Iles0116da42011-03-14 17:38:30 +00002168 u32 dmacfg;
2169
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002170 buffer_size = bp->rx_buffer_size / RX_BUFFER_MULTIPLE;
Jamie Iles0116da42011-03-14 17:38:30 +00002171 if (macb_is_gem(bp)) {
2172 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002173 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2174 if (q)
2175 queue_writel(queue, RBQS, buffer_size);
2176 else
2177 dmacfg |= GEM_BF(RXBS, buffer_size);
2178 }
Nicolas Ferree1755872014-07-24 13:50:58 +02002179 if (bp->dma_burst_length)
2180 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00002181 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05302182 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05302183
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03002184 if (bp->native_io)
Arun Chandran62f69242015-03-01 11:38:02 +05302185 dmacfg &= ~GEM_BIT(ENDIA_DESC);
2186 else
2187 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
2188
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002189 if (bp->dev->features & NETIF_F_HW_CSUM)
2190 dmacfg |= GEM_BIT(TXCOEN);
2191 else
2192 dmacfg &= ~GEM_BIT(TXCOEN);
Harini Katakamfff80192016-08-09 13:15:53 +05302193
Michal Simekbd620722018-09-25 08:32:50 +02002194 dmacfg &= ~GEM_BIT(ADDR64);
Harini Katakamfff80192016-08-09 13:15:53 +05302195#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002196 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002197 dmacfg |= GEM_BIT(ADDR64);
Harini Katakamfff80192016-08-09 13:15:53 +05302198#endif
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002199#ifdef CONFIG_MACB_USE_HWSTAMP
2200 if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
2201 dmacfg |= GEM_BIT(RXEXT) | GEM_BIT(TXEXT);
2202#endif
Nicolas Ferree1755872014-07-24 13:50:58 +02002203 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
2204 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00002205 gem_writel(bp, DMACFG, dmacfg);
2206 }
2207}
2208
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002209static void macb_init_hw(struct macb *bp)
2210{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002211 struct macb_queue *queue;
2212 unsigned int q;
2213
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002214 u32 config;
2215
2216 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00002217 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002218
Jamie Iles70c9f3d2011-03-09 16:22:54 +00002219 config = macb_mdc_clk_div(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05302220 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
2221 config |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00002222 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002223 config |= MACB_BIT(PAE); /* PAuse Enable */
2224 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03002225 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302226 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
2227 else
2228 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002229 if (bp->dev->flags & IFF_PROMISC)
2230 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002231 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
2232 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002233 if (!(bp->dev->flags & IFF_BROADCAST))
2234 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00002235 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002236 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03002237 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302238 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00002239 bp->speed = SPEED_10;
2240 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302241 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03002242 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302243 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002244
Jamie Iles0116da42011-03-14 17:38:30 +00002245 macb_configure_dma(bp);
2246
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002247 /* Initialize TX and RX buffers */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002248 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002249 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
2250#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2251 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2252 queue_writel(queue, RBQPH, upper_32_bits(queue->rx_ring_dma));
2253#endif
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002254 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +05302255#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Ozieblo7b429612017-06-29 07:12:51 +01002256 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
Rafal Ozieblodc97a892017-01-27 15:08:20 +00002257 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
Harini Katakamfff80192016-08-09 13:15:53 +05302258#endif
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002259
2260 /* Enable interrupts */
2261 queue_writel(queue, IER,
2262 MACB_RX_INT_FLAGS |
2263 MACB_TX_INT_FLAGS |
2264 MACB_BIT(HRESP));
2265 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002266
2267 /* Enable TX and RX */
Anssi Hannula0da70f82018-08-23 10:45:22 +03002268 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(RE) | MACB_BIT(TE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002269}
2270
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002271/* The hash address register is 64 bits long and takes up two
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002272 * locations in the memory map. The least significant bits are stored
2273 * in EMAC_HSL and the most significant bits in EMAC_HSH.
2274 *
2275 * The unicast hash enable and the multicast hash enable bits in the
2276 * network configuration register enable the reception of hash matched
2277 * frames. The destination address is reduced to a 6 bit index into
2278 * the 64 bit hash register using the following hash function. The
2279 * hash function is an exclusive or of every sixth bit of the
2280 * destination address.
2281 *
2282 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2283 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2284 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2285 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2286 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2287 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2288 *
2289 * da[0] represents the least significant bit of the first byte
2290 * received, that is, the multicast/unicast indicator, and da[47]
2291 * represents the most significant bit of the last byte received. If
2292 * the hash index, hi[n], points to a bit that is set in the hash
2293 * register then the frame will be matched according to whether the
2294 * frame is multicast or unicast. A multicast match will be signalled
2295 * if the multicast hash enable bit is set, da[0] is 1 and the hash
2296 * index points to a bit set in the hash register. A unicast match
2297 * will be signalled if the unicast hash enable bit is set, da[0] is 0
2298 * and the hash index points to a bit set in the hash register. To
2299 * receive all multicast frames, the hash register should be set with
2300 * all ones and the multicast hash enable bit should be set in the
2301 * network configuration register.
2302 */
2303
2304static inline int hash_bit_value(int bitnr, __u8 *addr)
2305{
2306 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
2307 return 1;
2308 return 0;
2309}
2310
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002311/* Return the hash index value for the specified address. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002312static int hash_get_index(__u8 *addr)
2313{
2314 int i, j, bitval;
2315 int hash_index = 0;
2316
2317 for (j = 0; j < 6; j++) {
2318 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06002319 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002320
2321 hash_index |= (bitval << j);
2322 }
2323
2324 return hash_index;
2325}
2326
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002327/* Add multicast addresses to the internal multicast-hash table. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002328static void macb_sethashtable(struct net_device *dev)
2329{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002330 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002331 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00002332 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002333 struct macb *bp = netdev_priv(dev);
2334
Moritz Fischeraa50b552016-03-29 19:11:13 -07002335 mc_filter[0] = 0;
2336 mc_filter[1] = 0;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002337
Jiri Pirko22bedad32010-04-01 21:22:57 +00002338 netdev_for_each_mc_addr(ha, dev) {
2339 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002340 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
2341 }
2342
Jamie Ilesf75ba502011-11-08 10:12:32 +00002343 macb_or_gem_writel(bp, HRB, mc_filter[0]);
2344 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002345}
2346
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002347/* Enable/Disable promiscuous and multicast modes. */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002348static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002349{
2350 unsigned long cfg;
2351 struct macb *bp = netdev_priv(dev);
2352
2353 cfg = macb_readl(bp, NCFGR);
2354
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002355 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002356 /* Enable promiscuous mode */
2357 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002358
2359 /* Disable RX checksum offload */
2360 if (macb_is_gem(bp))
2361 cfg &= ~GEM_BIT(RXCOEN);
2362 } else {
2363 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002364 cfg &= ~MACB_BIT(CAF);
2365
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002366 /* Enable RX checksum offload only if requested */
2367 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
2368 cfg |= GEM_BIT(RXCOEN);
2369 }
2370
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002371 if (dev->flags & IFF_ALLMULTI) {
2372 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00002373 macb_or_gem_writel(bp, HRB, -1);
2374 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002375 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002376 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002377 /* Enable specific multicasts */
2378 macb_sethashtable(dev);
2379 cfg |= MACB_BIT(NCFGR_MTI);
2380 } else if (dev->flags & (~IFF_ALLMULTI)) {
2381 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00002382 macb_or_gem_writel(bp, HRB, 0);
2383 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02002384 cfg &= ~MACB_BIT(NCFGR_MTI);
2385 }
2386
2387 macb_writel(bp, NCFGR, cfg);
2388}
2389
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002390static int macb_open(struct net_device *dev)
2391{
2392 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00002393 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002394 struct macb_queue *queue;
2395 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002396 int err;
2397
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002398 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002399
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002400 /* carrier starts down */
2401 netif_carrier_off(dev);
2402
frederic RODO6c36a702007-07-12 19:07:24 +02002403 /* if the phy is not yet register, retry later*/
Philippe Reynes0a912812016-06-22 00:32:35 +02002404 if (!dev->phydev)
frederic RODO6c36a702007-07-12 19:07:24 +02002405 return -EAGAIN;
2406
Nicolas Ferre1b447912013-06-04 21:57:11 +00002407 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00002408 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00002409
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002410 err = macb_alloc_consistent(bp);
2411 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002412 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
2413 err);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002414 return err;
2415 }
2416
Nicolas Ferre4df95132013-06-04 21:57:12 +00002417 bp->macbgem_ops.mog_init_rings(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002418 macb_init_hw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002419
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002420 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2421 napi_enable(&queue->napi);
2422
frederic RODO6c36a702007-07-12 19:07:24 +02002423 /* schedule a link state check */
Philippe Reynes0a912812016-06-22 00:32:35 +02002424 phy_start(dev->phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02002425
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002426 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002427
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002428 if (bp->ptp_info)
2429 bp->ptp_info->ptp_init(dev);
2430
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002431 return 0;
2432}
2433
2434static int macb_close(struct net_device *dev)
2435{
2436 struct macb *bp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002437 struct macb_queue *queue;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002438 unsigned long flags;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002439 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002440
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002441 netif_tx_stop_all_queues(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00002442
2443 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2444 napi_disable(&queue->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002445
Philippe Reynes0a912812016-06-22 00:32:35 +02002446 if (dev->phydev)
2447 phy_stop(dev->phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02002448
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002449 spin_lock_irqsave(&bp->lock, flags);
2450 macb_reset_hw(bp);
2451 netif_carrier_off(dev);
2452 spin_unlock_irqrestore(&bp->lock, flags);
2453
2454 macb_free_consistent(bp);
2455
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002456 if (bp->ptp_info)
2457 bp->ptp_info->ptp_remove(dev);
2458
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002459 return 0;
2460}
2461
Harini Katakama5898ea2015-05-06 22:27:18 +05302462static int macb_change_mtu(struct net_device *dev, int new_mtu)
2463{
Harini Katakama5898ea2015-05-06 22:27:18 +05302464 if (netif_running(dev))
2465 return -EBUSY;
2466
Harini Katakama5898ea2015-05-06 22:27:18 +05302467 dev->mtu = new_mtu;
2468
2469 return 0;
2470}
2471
Jamie Ilesa494ed82011-03-09 16:26:35 +00002472static void gem_update_stats(struct macb *bp)
2473{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002474 struct macb_queue *queue;
2475 unsigned int i, q, idx;
2476 unsigned long *stat;
2477
Jamie Ilesa494ed82011-03-09 16:26:35 +00002478 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002479
Xander Huff3ff13f12015-01-13 16:15:51 -06002480 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
2481 u32 offset = gem_statistics[i].offset;
David S. Miller7a6e0702015-07-27 14:24:48 -07002482 u64 val = bp->macb_reg_readl(bp, offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06002483
2484 bp->ethtool_stats[i] += val;
2485 *p += val;
2486
2487 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
2488 /* Add GEM_OCTTXH, GEM_OCTRXH */
David S. Miller7a6e0702015-07-27 14:24:48 -07002489 val = bp->macb_reg_readl(bp, offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06002490 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06002491 *(++p) += val;
2492 }
2493 }
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002494
2495 idx = GEM_STATS_LEN;
2496 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2497 for (i = 0, stat = &queue->stats.first; i < QUEUE_STATS_LEN; ++i, ++stat)
2498 bp->ethtool_stats[idx++] = *stat;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002499}
2500
2501static struct net_device_stats *gem_get_stats(struct macb *bp)
2502{
2503 struct gem_stats *hwstat = &bp->hw_stats.gem;
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02002504 struct net_device_stats *nstat = &bp->dev->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002505
2506 gem_update_stats(bp);
2507
2508 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
2509 hwstat->rx_alignment_errors +
2510 hwstat->rx_resource_errors +
2511 hwstat->rx_overruns +
2512 hwstat->rx_oversize_frames +
2513 hwstat->rx_jabbers +
2514 hwstat->rx_undersized_frames +
2515 hwstat->rx_length_field_frame_errors);
2516 nstat->tx_errors = (hwstat->tx_late_collisions +
2517 hwstat->tx_excessive_collisions +
2518 hwstat->tx_underrun +
2519 hwstat->tx_carrier_sense_errors);
2520 nstat->multicast = hwstat->rx_multicast_frames;
2521 nstat->collisions = (hwstat->tx_single_collision_frames +
2522 hwstat->tx_multiple_collision_frames +
2523 hwstat->tx_excessive_collisions);
2524 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2525 hwstat->rx_jabbers +
2526 hwstat->rx_undersized_frames +
2527 hwstat->rx_length_field_frame_errors);
2528 nstat->rx_over_errors = hwstat->rx_resource_errors;
2529 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2530 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2531 nstat->rx_fifo_errors = hwstat->rx_overruns;
2532 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2533 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2534 nstat->tx_fifo_errors = hwstat->tx_underrun;
2535
2536 return nstat;
2537}
2538
Xander Huff3ff13f12015-01-13 16:15:51 -06002539static void gem_get_ethtool_stats(struct net_device *dev,
2540 struct ethtool_stats *stats, u64 *data)
2541{
2542 struct macb *bp;
2543
2544 bp = netdev_priv(dev);
2545 gem_update_stats(bp);
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002546 memcpy(data, &bp->ethtool_stats, sizeof(u64)
2547 * (GEM_STATS_LEN + QUEUE_STATS_LEN * MACB_MAX_QUEUES));
Xander Huff3ff13f12015-01-13 16:15:51 -06002548}
2549
2550static int gem_get_sset_count(struct net_device *dev, int sset)
2551{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002552 struct macb *bp = netdev_priv(dev);
2553
Xander Huff3ff13f12015-01-13 16:15:51 -06002554 switch (sset) {
2555 case ETH_SS_STATS:
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002556 return GEM_STATS_LEN + bp->num_queues * QUEUE_STATS_LEN;
Xander Huff3ff13f12015-01-13 16:15:51 -06002557 default:
2558 return -EOPNOTSUPP;
2559 }
2560}
2561
2562static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2563{
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002564 char stat_string[ETH_GSTRING_LEN];
2565 struct macb *bp = netdev_priv(dev);
2566 struct macb_queue *queue;
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03002567 unsigned int i;
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002568 unsigned int q;
Xander Huff3ff13f12015-01-13 16:15:51 -06002569
2570 switch (sset) {
2571 case ETH_SS_STATS:
2572 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2573 memcpy(p, gem_statistics[i].stat_string,
2574 ETH_GSTRING_LEN);
Rafal Ozieblo512286b2017-11-30 18:19:56 +00002575
2576 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2577 for (i = 0; i < QUEUE_STATS_LEN; i++, p += ETH_GSTRING_LEN) {
2578 snprintf(stat_string, ETH_GSTRING_LEN, "q%d_%s",
2579 q, queue_statistics[i].stat_string);
2580 memcpy(p, stat_string, ETH_GSTRING_LEN);
2581 }
2582 }
Xander Huff3ff13f12015-01-13 16:15:51 -06002583 break;
2584 }
2585}
2586
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002587static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002588{
2589 struct macb *bp = netdev_priv(dev);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02002590 struct net_device_stats *nstat = &bp->dev->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002591 struct macb_stats *hwstat = &bp->hw_stats.macb;
2592
2593 if (macb_is_gem(bp))
2594 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002595
frederic RODO6c36a702007-07-12 19:07:24 +02002596 /* read stats from hardware */
2597 macb_update_stats(bp);
2598
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002599 /* Convert HW stats into netdevice stats */
2600 nstat->rx_errors = (hwstat->rx_fcs_errors +
2601 hwstat->rx_align_errors +
2602 hwstat->rx_resource_errors +
2603 hwstat->rx_overruns +
2604 hwstat->rx_oversize_pkts +
2605 hwstat->rx_jabbers +
2606 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002607 hwstat->rx_length_mismatch);
2608 nstat->tx_errors = (hwstat->tx_late_cols +
2609 hwstat->tx_excessive_cols +
2610 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002611 hwstat->tx_carrier_errors +
2612 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002613 nstat->collisions = (hwstat->tx_single_cols +
2614 hwstat->tx_multiple_cols +
2615 hwstat->tx_excessive_cols);
2616 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2617 hwstat->rx_jabbers +
2618 hwstat->rx_undersize_pkts +
2619 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002620 nstat->rx_over_errors = hwstat->rx_resource_errors +
2621 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002622 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2623 nstat->rx_frame_errors = hwstat->rx_align_errors;
2624 nstat->rx_fifo_errors = hwstat->rx_overruns;
2625 /* XXX: What does "missed" mean? */
2626 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2627 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2628 nstat->tx_fifo_errors = hwstat->tx_underruns;
2629 /* Don't know about heartbeat or window errors... */
2630
2631 return nstat;
2632}
2633
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002634static int macb_get_regs_len(struct net_device *netdev)
2635{
2636 return MACB_GREGS_NBR * sizeof(u32);
2637}
2638
2639static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2640 void *p)
2641{
2642 struct macb *bp = netdev_priv(dev);
2643 unsigned int tail, head;
2644 u32 *regs_buff = p;
2645
2646 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2647 | MACB_GREGS_VERSION;
2648
Zach Brownb410d132016-10-19 09:56:57 -05002649 tail = macb_tx_ring_wrap(bp, bp->queues[0].tx_tail);
2650 head = macb_tx_ring_wrap(bp, bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002651
2652 regs_buff[0] = macb_readl(bp, NCR);
2653 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2654 regs_buff[2] = macb_readl(bp, NSR);
2655 regs_buff[3] = macb_readl(bp, TSR);
2656 regs_buff[4] = macb_readl(bp, RBQP);
2657 regs_buff[5] = macb_readl(bp, TBQP);
2658 regs_buff[6] = macb_readl(bp, RSR);
2659 regs_buff[7] = macb_readl(bp, IMR);
2660
2661 regs_buff[8] = tail;
2662 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002663 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2664 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002665
Neil Armstrongce721a72016-01-05 14:39:16 +01002666 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
2667 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002668 if (macb_is_gem(bp))
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002669 regs_buff[13] = gem_readl(bp, DMACFG);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002670}
2671
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002672static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2673{
2674 struct macb *bp = netdev_priv(netdev);
2675
2676 wol->supported = 0;
2677 wol->wolopts = 0;
2678
2679 if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
2680 wol->supported = WAKE_MAGIC;
2681
2682 if (bp->wol & MACB_WOL_ENABLED)
2683 wol->wolopts |= WAKE_MAGIC;
2684 }
2685}
2686
2687static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2688{
2689 struct macb *bp = netdev_priv(netdev);
2690
2691 if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
2692 (wol->wolopts & ~WAKE_MAGIC))
2693 return -EOPNOTSUPP;
2694
2695 if (wol->wolopts & WAKE_MAGIC)
2696 bp->wol |= MACB_WOL_ENABLED;
2697 else
2698 bp->wol &= ~MACB_WOL_ENABLED;
2699
2700 device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
2701
2702 return 0;
2703}
2704
Zach Brown8441bb32016-10-19 09:56:58 -05002705static void macb_get_ringparam(struct net_device *netdev,
2706 struct ethtool_ringparam *ring)
2707{
2708 struct macb *bp = netdev_priv(netdev);
2709
2710 ring->rx_max_pending = MAX_RX_RING_SIZE;
2711 ring->tx_max_pending = MAX_TX_RING_SIZE;
2712
2713 ring->rx_pending = bp->rx_ring_size;
2714 ring->tx_pending = bp->tx_ring_size;
2715}
2716
2717static int macb_set_ringparam(struct net_device *netdev,
2718 struct ethtool_ringparam *ring)
2719{
2720 struct macb *bp = netdev_priv(netdev);
2721 u32 new_rx_size, new_tx_size;
2722 unsigned int reset = 0;
2723
2724 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
2725 return -EINVAL;
2726
2727 new_rx_size = clamp_t(u32, ring->rx_pending,
2728 MIN_RX_RING_SIZE, MAX_RX_RING_SIZE);
2729 new_rx_size = roundup_pow_of_two(new_rx_size);
2730
2731 new_tx_size = clamp_t(u32, ring->tx_pending,
2732 MIN_TX_RING_SIZE, MAX_TX_RING_SIZE);
2733 new_tx_size = roundup_pow_of_two(new_tx_size);
2734
2735 if ((new_tx_size == bp->tx_ring_size) &&
2736 (new_rx_size == bp->rx_ring_size)) {
2737 /* nothing to do */
2738 return 0;
2739 }
2740
2741 if (netif_running(bp->dev)) {
2742 reset = 1;
2743 macb_close(bp->dev);
2744 }
2745
2746 bp->rx_ring_size = new_rx_size;
2747 bp->tx_ring_size = new_tx_size;
2748
2749 if (reset)
2750 macb_open(bp->dev);
2751
2752 return 0;
2753}
2754
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01002755#ifdef CONFIG_MACB_USE_HWSTAMP
2756static unsigned int gem_get_tsu_rate(struct macb *bp)
2757{
2758 struct clk *tsu_clk;
2759 unsigned int tsu_rate;
2760
2761 tsu_clk = devm_clk_get(&bp->pdev->dev, "tsu_clk");
2762 if (!IS_ERR(tsu_clk))
2763 tsu_rate = clk_get_rate(tsu_clk);
2764 /* try pclk instead */
2765 else if (!IS_ERR(bp->pclk)) {
2766 tsu_clk = bp->pclk;
2767 tsu_rate = clk_get_rate(tsu_clk);
2768 } else
2769 return -ENOTSUPP;
2770 return tsu_rate;
2771}
2772
2773static s32 gem_get_ptp_max_adj(void)
2774{
2775 return 64000000;
2776}
2777
2778static int gem_get_ts_info(struct net_device *dev,
2779 struct ethtool_ts_info *info)
2780{
2781 struct macb *bp = netdev_priv(dev);
2782
2783 if ((bp->hw_dma_cap & HW_DMA_CAP_PTP) == 0) {
2784 ethtool_op_get_ts_info(dev, info);
2785 return 0;
2786 }
2787
2788 info->so_timestamping =
2789 SOF_TIMESTAMPING_TX_SOFTWARE |
2790 SOF_TIMESTAMPING_RX_SOFTWARE |
2791 SOF_TIMESTAMPING_SOFTWARE |
2792 SOF_TIMESTAMPING_TX_HARDWARE |
2793 SOF_TIMESTAMPING_RX_HARDWARE |
2794 SOF_TIMESTAMPING_RAW_HARDWARE;
2795 info->tx_types =
2796 (1 << HWTSTAMP_TX_ONESTEP_SYNC) |
2797 (1 << HWTSTAMP_TX_OFF) |
2798 (1 << HWTSTAMP_TX_ON);
2799 info->rx_filters =
2800 (1 << HWTSTAMP_FILTER_NONE) |
2801 (1 << HWTSTAMP_FILTER_ALL);
2802
2803 info->phc_index = bp->ptp_clock ? ptp_clock_index(bp->ptp_clock) : -1;
2804
2805 return 0;
2806}
2807
2808static struct macb_ptp_info gem_ptp_info = {
2809 .ptp_init = gem_ptp_init,
2810 .ptp_remove = gem_ptp_remove,
2811 .get_ptp_max_adj = gem_get_ptp_max_adj,
2812 .get_tsu_rate = gem_get_tsu_rate,
2813 .get_ts_info = gem_get_ts_info,
2814 .get_hwtst = gem_get_hwtst,
2815 .set_hwtst = gem_set_hwtst,
2816};
2817#endif
2818
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02002819static int macb_get_ts_info(struct net_device *netdev,
2820 struct ethtool_ts_info *info)
2821{
2822 struct macb *bp = netdev_priv(netdev);
2823
2824 if (bp->ptp_info)
2825 return bp->ptp_info->get_ts_info(netdev, info);
2826
2827 return ethtool_op_get_ts_info(netdev, info);
2828}
2829
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002830static void gem_enable_flow_filters(struct macb *bp, bool enable)
2831{
2832 struct ethtool_rx_fs_item *item;
2833 u32 t2_scr;
2834 int num_t2_scr;
2835
2836 num_t2_scr = GEM_BFEXT(T2SCR, gem_readl(bp, DCFG8));
2837
2838 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2839 struct ethtool_rx_flow_spec *fs = &item->fs;
2840 struct ethtool_tcpip4_spec *tp4sp_m;
2841
2842 if (fs->location >= num_t2_scr)
2843 continue;
2844
2845 t2_scr = gem_readl_n(bp, SCRT2, fs->location);
2846
2847 /* enable/disable screener regs for the flow entry */
2848 t2_scr = GEM_BFINS(ETHTEN, enable, t2_scr);
2849
2850 /* only enable fields with no masking */
2851 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2852
2853 if (enable && (tp4sp_m->ip4src == 0xFFFFFFFF))
2854 t2_scr = GEM_BFINS(CMPAEN, 1, t2_scr);
2855 else
2856 t2_scr = GEM_BFINS(CMPAEN, 0, t2_scr);
2857
2858 if (enable && (tp4sp_m->ip4dst == 0xFFFFFFFF))
2859 t2_scr = GEM_BFINS(CMPBEN, 1, t2_scr);
2860 else
2861 t2_scr = GEM_BFINS(CMPBEN, 0, t2_scr);
2862
2863 if (enable && ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)))
2864 t2_scr = GEM_BFINS(CMPCEN, 1, t2_scr);
2865 else
2866 t2_scr = GEM_BFINS(CMPCEN, 0, t2_scr);
2867
2868 gem_writel_n(bp, SCRT2, fs->location, t2_scr);
2869 }
2870}
2871
2872static void gem_prog_cmp_regs(struct macb *bp, struct ethtool_rx_flow_spec *fs)
2873{
2874 struct ethtool_tcpip4_spec *tp4sp_v, *tp4sp_m;
2875 uint16_t index = fs->location;
2876 u32 w0, w1, t2_scr;
2877 bool cmp_a = false;
2878 bool cmp_b = false;
2879 bool cmp_c = false;
2880
2881 tp4sp_v = &(fs->h_u.tcp_ip4_spec);
2882 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2883
2884 /* ignore field if any masking set */
2885 if (tp4sp_m->ip4src == 0xFFFFFFFF) {
2886 /* 1st compare reg - IP source address */
2887 w0 = 0;
2888 w1 = 0;
2889 w0 = tp4sp_v->ip4src;
2890 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2891 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2892 w1 = GEM_BFINS(T2OFST, ETYPE_SRCIP_OFFSET, w1);
2893 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w0);
2894 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w1);
2895 cmp_a = true;
2896 }
2897
2898 /* ignore field if any masking set */
2899 if (tp4sp_m->ip4dst == 0xFFFFFFFF) {
2900 /* 2nd compare reg - IP destination address */
2901 w0 = 0;
2902 w1 = 0;
2903 w0 = tp4sp_v->ip4dst;
2904 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2905 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2906 w1 = GEM_BFINS(T2OFST, ETYPE_DSTIP_OFFSET, w1);
2907 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4DST_CMP(index)), w0);
2908 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4DST_CMP(index)), w1);
2909 cmp_b = true;
2910 }
2911
2912 /* ignore both port fields if masking set in both */
2913 if ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)) {
2914 /* 3rd compare reg - source port, destination port */
2915 w0 = 0;
2916 w1 = 0;
2917 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_IPHDR, w1);
2918 if (tp4sp_m->psrc == tp4sp_m->pdst) {
2919 w0 = GEM_BFINS(T2MASK, tp4sp_v->psrc, w0);
2920 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2921 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2922 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2923 } else {
2924 /* only one port definition */
2925 w1 = GEM_BFINS(T2DISMSK, 0, w1); /* 16-bit compare */
2926 w0 = GEM_BFINS(T2MASK, 0xFFFF, w0);
2927 if (tp4sp_m->psrc == 0xFFFF) { /* src port */
2928 w0 = GEM_BFINS(T2CMP, tp4sp_v->psrc, w0);
2929 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2930 } else { /* dst port */
2931 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2932 w1 = GEM_BFINS(T2OFST, IPHDR_DSTPORT_OFFSET, w1);
2933 }
2934 }
2935 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_PORT_CMP(index)), w0);
2936 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_PORT_CMP(index)), w1);
2937 cmp_c = true;
2938 }
2939
2940 t2_scr = 0;
2941 t2_scr = GEM_BFINS(QUEUE, (fs->ring_cookie) & 0xFF, t2_scr);
2942 t2_scr = GEM_BFINS(ETHT2IDX, SCRT2_ETHT, t2_scr);
2943 if (cmp_a)
2944 t2_scr = GEM_BFINS(CMPA, GEM_IP4SRC_CMP(index), t2_scr);
2945 if (cmp_b)
2946 t2_scr = GEM_BFINS(CMPB, GEM_IP4DST_CMP(index), t2_scr);
2947 if (cmp_c)
2948 t2_scr = GEM_BFINS(CMPC, GEM_PORT_CMP(index), t2_scr);
2949 gem_writel_n(bp, SCRT2, index, t2_scr);
2950}
2951
2952static int gem_add_flow_filter(struct net_device *netdev,
2953 struct ethtool_rxnfc *cmd)
2954{
2955 struct macb *bp = netdev_priv(netdev);
2956 struct ethtool_rx_flow_spec *fs = &cmd->fs;
2957 struct ethtool_rx_fs_item *item, *newfs;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002958 unsigned long flags;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002959 int ret = -EINVAL;
2960 bool added = false;
2961
Julia Cartwrightcc1674e2017-12-05 18:02:50 -06002962 newfs = kmalloc(sizeof(*newfs), GFP_KERNEL);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002963 if (newfs == NULL)
2964 return -ENOMEM;
2965 memcpy(&newfs->fs, fs, sizeof(newfs->fs));
2966
2967 netdev_dbg(netdev,
2968 "Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
2969 fs->flow_type, (int)fs->ring_cookie, fs->location,
2970 htonl(fs->h_u.tcp_ip4_spec.ip4src),
2971 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
2972 htons(fs->h_u.tcp_ip4_spec.psrc), htons(fs->h_u.tcp_ip4_spec.pdst));
2973
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002974 spin_lock_irqsave(&bp->rx_fs_lock, flags);
2975
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002976 /* find correct place to add in list */
Julia Cartwrighta3da8ad2017-12-05 18:02:48 -06002977 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2978 if (item->fs.location > newfs->fs.location) {
2979 list_add_tail(&newfs->list, &item->list);
2980 added = true;
2981 break;
2982 } else if (item->fs.location == fs->location) {
2983 netdev_err(netdev, "Rule not added: location %d not free!\n",
2984 fs->location);
2985 ret = -EBUSY;
2986 goto err;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002987 }
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002988 }
Julia Cartwrighta3da8ad2017-12-05 18:02:48 -06002989 if (!added)
2990 list_add_tail(&newfs->list, &bp->rx_fs_list.list);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002991
2992 gem_prog_cmp_regs(bp, fs);
2993 bp->rx_fs_list.count++;
2994 /* enable filtering if NTUPLE on */
2995 if (netdev->features & NETIF_F_NTUPLE)
2996 gem_enable_flow_filters(bp, 1);
2997
Julia Cartwright7038cdb2017-12-05 18:02:49 -06002998 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00002999 return 0;
3000
3001err:
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003002 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003003 kfree(newfs);
3004 return ret;
3005}
3006
3007static int gem_del_flow_filter(struct net_device *netdev,
3008 struct ethtool_rxnfc *cmd)
3009{
3010 struct macb *bp = netdev_priv(netdev);
3011 struct ethtool_rx_fs_item *item;
3012 struct ethtool_rx_flow_spec *fs;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003013 unsigned long flags;
3014
3015 spin_lock_irqsave(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003016
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003017 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3018 if (item->fs.location == cmd->fs.location) {
3019 /* disable screener regs for the flow entry */
3020 fs = &(item->fs);
3021 netdev_dbg(netdev,
3022 "Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3023 fs->flow_type, (int)fs->ring_cookie, fs->location,
3024 htonl(fs->h_u.tcp_ip4_spec.ip4src),
3025 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
3026 htons(fs->h_u.tcp_ip4_spec.psrc),
3027 htons(fs->h_u.tcp_ip4_spec.pdst));
3028
3029 gem_writel_n(bp, SCRT2, fs->location, 0);
3030
3031 list_del(&item->list);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003032 bp->rx_fs_list.count--;
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003033 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3034 kfree(item);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003035 return 0;
3036 }
3037 }
3038
Julia Cartwright7038cdb2017-12-05 18:02:49 -06003039 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003040 return -EINVAL;
3041}
3042
3043static int gem_get_flow_entry(struct net_device *netdev,
3044 struct ethtool_rxnfc *cmd)
3045{
3046 struct macb *bp = netdev_priv(netdev);
3047 struct ethtool_rx_fs_item *item;
3048
3049 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3050 if (item->fs.location == cmd->fs.location) {
3051 memcpy(&cmd->fs, &item->fs, sizeof(cmd->fs));
3052 return 0;
3053 }
3054 }
3055 return -EINVAL;
3056}
3057
3058static int gem_get_all_flow_entries(struct net_device *netdev,
3059 struct ethtool_rxnfc *cmd, u32 *rule_locs)
3060{
3061 struct macb *bp = netdev_priv(netdev);
3062 struct ethtool_rx_fs_item *item;
3063 uint32_t cnt = 0;
3064
3065 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3066 if (cnt == cmd->rule_cnt)
3067 return -EMSGSIZE;
3068 rule_locs[cnt] = item->fs.location;
3069 cnt++;
3070 }
3071 cmd->data = bp->max_tuples;
3072 cmd->rule_cnt = cnt;
3073
3074 return 0;
3075}
3076
3077static int gem_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
3078 u32 *rule_locs)
3079{
3080 struct macb *bp = netdev_priv(netdev);
3081 int ret = 0;
3082
3083 switch (cmd->cmd) {
3084 case ETHTOOL_GRXRINGS:
3085 cmd->data = bp->num_queues;
3086 break;
3087 case ETHTOOL_GRXCLSRLCNT:
3088 cmd->rule_cnt = bp->rx_fs_list.count;
3089 break;
3090 case ETHTOOL_GRXCLSRULE:
3091 ret = gem_get_flow_entry(netdev, cmd);
3092 break;
3093 case ETHTOOL_GRXCLSRLALL:
3094 ret = gem_get_all_flow_entries(netdev, cmd, rule_locs);
3095 break;
3096 default:
3097 netdev_err(netdev,
3098 "Command parameter %d is not supported\n", cmd->cmd);
3099 ret = -EOPNOTSUPP;
3100 }
3101
3102 return ret;
3103}
3104
3105static int gem_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
3106{
3107 struct macb *bp = netdev_priv(netdev);
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003108 int ret;
3109
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003110 switch (cmd->cmd) {
3111 case ETHTOOL_SRXCLSRLINS:
3112 if ((cmd->fs.location >= bp->max_tuples)
3113 || (cmd->fs.ring_cookie >= bp->num_queues)) {
3114 ret = -EINVAL;
3115 break;
3116 }
3117 ret = gem_add_flow_filter(netdev, cmd);
3118 break;
3119 case ETHTOOL_SRXCLSRLDEL:
3120 ret = gem_del_flow_filter(netdev, cmd);
3121 break;
3122 default:
3123 netdev_err(netdev,
3124 "Command parameter %d is not supported\n", cmd->cmd);
3125 ret = -EOPNOTSUPP;
3126 }
3127
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003128 return ret;
3129}
3130
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003131static const struct ethtool_ops macb_ethtool_ops = {
Nicolas Ferred1d1b532012-10-31 06:04:56 +00003132 .get_regs_len = macb_get_regs_len,
3133 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003134 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00003135 .get_ts_info = ethtool_op_get_ts_info,
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003136 .get_wol = macb_get_wol,
3137 .set_wol = macb_set_wol,
Philippe Reynes176275a2016-06-22 00:32:36 +02003138 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3139 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Zach Brown8441bb32016-10-19 09:56:58 -05003140 .get_ringparam = macb_get_ringparam,
3141 .set_ringparam = macb_set_ringparam,
Xander Huff8cd5a562015-01-15 15:55:20 -06003142};
Xander Huff8cd5a562015-01-15 15:55:20 -06003143
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00003144static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06003145 .get_regs_len = macb_get_regs_len,
3146 .get_regs = macb_get_regs,
3147 .get_link = ethtool_op_get_link,
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003148 .get_ts_info = macb_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06003149 .get_ethtool_stats = gem_get_ethtool_stats,
3150 .get_strings = gem_get_ethtool_strings,
3151 .get_sset_count = gem_get_sset_count,
Philippe Reynes176275a2016-06-22 00:32:36 +02003152 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3153 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Zach Brown8441bb32016-10-19 09:56:58 -05003154 .get_ringparam = macb_get_ringparam,
3155 .set_ringparam = macb_set_ringparam,
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003156 .get_rxnfc = gem_get_rxnfc,
3157 .set_rxnfc = gem_set_rxnfc,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003158};
3159
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003160static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003161{
Philippe Reynes0a912812016-06-22 00:32:35 +02003162 struct phy_device *phydev = dev->phydev;
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003163 struct macb *bp = netdev_priv(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003164
3165 if (!netif_running(dev))
3166 return -EINVAL;
3167
frederic RODO6c36a702007-07-12 19:07:24 +02003168 if (!phydev)
3169 return -ENODEV;
3170
Andrei.Pistirica@microchip.comc2594d82017-01-19 17:56:15 +02003171 if (!bp->ptp_info)
3172 return phy_mii_ioctl(phydev, rq, cmd);
3173
3174 switch (cmd) {
3175 case SIOCSHWTSTAMP:
3176 return bp->ptp_info->set_hwtst(dev, rq, cmd);
3177 case SIOCGHWTSTAMP:
3178 return bp->ptp_info->get_hwtst(dev, rq);
3179 default:
3180 return phy_mii_ioctl(phydev, rq, cmd);
3181 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003182}
3183
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003184static int macb_set_features(struct net_device *netdev,
3185 netdev_features_t features)
3186{
3187 struct macb *bp = netdev_priv(netdev);
3188 netdev_features_t changed = features ^ netdev->features;
3189
3190 /* TX checksum offload */
3191 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
3192 u32 dmacfg;
3193
3194 dmacfg = gem_readl(bp, DMACFG);
3195 if (features & NETIF_F_HW_CSUM)
3196 dmacfg |= GEM_BIT(TXCOEN);
3197 else
3198 dmacfg &= ~GEM_BIT(TXCOEN);
3199 gem_writel(bp, DMACFG, dmacfg);
3200 }
3201
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003202 /* RX checksum offload */
3203 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
3204 u32 netcfg;
3205
3206 netcfg = gem_readl(bp, NCFGR);
3207 if (features & NETIF_F_RXCSUM &&
3208 !(netdev->flags & IFF_PROMISC))
3209 netcfg |= GEM_BIT(RXCOEN);
3210 else
3211 netcfg &= ~GEM_BIT(RXCOEN);
3212 gem_writel(bp, NCFGR, netcfg);
3213 }
3214
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003215 /* RX Flow Filters */
3216 if ((changed & NETIF_F_NTUPLE) && macb_is_gem(bp)) {
3217 bool turn_on = features & NETIF_F_NTUPLE;
3218
3219 gem_enable_flow_filters(bp, turn_on);
3220 }
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003221 return 0;
3222}
3223
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003224static const struct net_device_ops macb_netdev_ops = {
3225 .ndo_open = macb_open,
3226 .ndo_stop = macb_close,
3227 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003228 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003229 .ndo_get_stats = macb_get_stats,
3230 .ndo_do_ioctl = macb_ioctl,
3231 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05303232 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003233 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07003234#ifdef CONFIG_NET_POLL_CONTROLLER
3235 .ndo_poll_controller = macb_poll_controller,
3236#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003237 .ndo_set_features = macb_set_features,
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00003238 .ndo_features_check = macb_features_check,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003239};
3240
Moritz Fischer64ec42f2016-03-29 19:11:12 -07003241/* Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02003242 * and integration options used
3243 */
Moritz Fischer64ec42f2016-03-29 19:11:12 -07003244static void macb_configure_caps(struct macb *bp,
3245 const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02003246{
3247 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02003248
Nicolas Ferref6970502015-03-31 15:02:01 +02003249 if (dt_conf)
3250 bp->caps = dt_conf->caps;
3251
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003252 if (hw_is_gem(bp->regs, bp->native_io)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02003253 bp->caps |= MACB_CAPS_MACB_IS_GEM;
3254
Nicolas Ferree1755872014-07-24 13:50:58 +02003255 dcfg = gem_readl(bp, DCFG1);
3256 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
3257 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
3258 dcfg = gem_readl(bp, DCFG2);
3259 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
3260 bp->caps |= MACB_CAPS_FIFO_MODE;
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003261#ifdef CONFIG_MACB_USE_HWSTAMP
3262 if (gem_has_ptp(bp)) {
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003263 if (!GEM_BFEXT(TSU, gem_readl(bp, DCFG5)))
3264 pr_err("GEM doesn't support hardware ptp.\n");
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003265 else {
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003266 bp->hw_dma_cap |= HW_DMA_CAP_PTP;
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003267 bp->ptp_info = &gem_ptp_info;
3268 }
Rafal Ozieblo7b429612017-06-29 07:12:51 +01003269 }
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003270#endif
Nicolas Ferree1755872014-07-24 13:50:58 +02003271 }
3272
Andy Shevchenkoa35919e2015-07-24 21:24:01 +03003273 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
Nicolas Ferree1755872014-07-24 13:50:58 +02003274}
3275
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003276static void macb_probe_queues(void __iomem *mem,
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003277 bool native_io,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003278 unsigned int *queue_mask,
3279 unsigned int *num_queues)
3280{
3281 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003282
3283 *queue_mask = 0x1;
3284 *num_queues = 1;
3285
Nicolas Ferreda120112015-03-31 15:02:00 +02003286 /* is it macb or gem ?
3287 *
3288 * We need to read directly from the hardware here because
3289 * we are early in the probe process and don't have the
3290 * MACB_CAPS_MACB_IS_GEM flag positioned
3291 */
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003292 if (!hw_is_gem(mem, native_io))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003293 return;
3294
3295 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05303296 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
3297
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003298 *queue_mask |= 0x1;
3299
3300 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
3301 if (*queue_mask & (1 << hw_q))
3302 (*num_queues)++;
3303}
3304
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003305static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303306 struct clk **hclk, struct clk **tx_clk,
3307 struct clk **rx_clk)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003308{
Bartosz Folta83a77e92016-12-14 06:39:15 +00003309 struct macb_platform_data *pdata;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003310 int err;
3311
Bartosz Folta83a77e92016-12-14 06:39:15 +00003312 pdata = dev_get_platdata(&pdev->dev);
3313 if (pdata) {
3314 *pclk = pdata->pclk;
3315 *hclk = pdata->hclk;
3316 } else {
3317 *pclk = devm_clk_get(&pdev->dev, "pclk");
3318 *hclk = devm_clk_get(&pdev->dev, "hclk");
3319 }
3320
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003321 if (IS_ERR(*pclk)) {
3322 err = PTR_ERR(*pclk);
3323 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
3324 return err;
3325 }
3326
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003327 if (IS_ERR(*hclk)) {
3328 err = PTR_ERR(*hclk);
3329 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
3330 return err;
3331 }
3332
3333 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
3334 if (IS_ERR(*tx_clk))
3335 *tx_clk = NULL;
3336
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303337 *rx_clk = devm_clk_get(&pdev->dev, "rx_clk");
3338 if (IS_ERR(*rx_clk))
3339 *rx_clk = NULL;
3340
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003341 err = clk_prepare_enable(*pclk);
3342 if (err) {
3343 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
3344 return err;
3345 }
3346
3347 err = clk_prepare_enable(*hclk);
3348 if (err) {
3349 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
3350 goto err_disable_pclk;
3351 }
3352
3353 err = clk_prepare_enable(*tx_clk);
3354 if (err) {
3355 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
3356 goto err_disable_hclk;
3357 }
3358
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303359 err = clk_prepare_enable(*rx_clk);
3360 if (err) {
3361 dev_err(&pdev->dev, "failed to enable rx_clk (%u)\n", err);
3362 goto err_disable_txclk;
3363 }
3364
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003365 return 0;
3366
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303367err_disable_txclk:
3368 clk_disable_unprepare(*tx_clk);
3369
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003370err_disable_hclk:
3371 clk_disable_unprepare(*hclk);
3372
3373err_disable_pclk:
3374 clk_disable_unprepare(*pclk);
3375
3376 return err;
3377}
3378
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003379static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003380{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003381 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003382 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003383 struct macb *bp = netdev_priv(dev);
3384 struct macb_queue *queue;
3385 int err;
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003386 u32 val, reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003387
Zach Brownb410d132016-10-19 09:56:57 -05003388 bp->tx_ring_size = DEFAULT_TX_RING_SIZE;
3389 bp->rx_ring_size = DEFAULT_RX_RING_SIZE;
3390
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003391 /* set the queue register mapping once for all: queue0 has a special
3392 * register mapping but we don't want to test the queue index then
3393 * compute the corresponding register offset at run time.
3394 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003395 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02003396 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003397 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00003398
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003399 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003400 queue->bp = bp;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003401 netif_napi_add(dev, &queue->napi, macb_poll, 64);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003402 if (hw_q) {
3403 queue->ISR = GEM_ISR(hw_q - 1);
3404 queue->IER = GEM_IER(hw_q - 1);
3405 queue->IDR = GEM_IDR(hw_q - 1);
3406 queue->IMR = GEM_IMR(hw_q - 1);
3407 queue->TBQP = GEM_TBQP(hw_q - 1);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003408 queue->RBQP = GEM_RBQP(hw_q - 1);
3409 queue->RBQS = GEM_RBQS(hw_q - 1);
Harini Katakamfff80192016-08-09 13:15:53 +05303410#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003411 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003412 queue->TBQPH = GEM_TBQPH(hw_q - 1);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003413 queue->RBQPH = GEM_RBQPH(hw_q - 1);
3414 }
Harini Katakamfff80192016-08-09 13:15:53 +05303415#endif
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003416 } else {
3417 /* queue0 uses legacy registers */
3418 queue->ISR = MACB_ISR;
3419 queue->IER = MACB_IER;
3420 queue->IDR = MACB_IDR;
3421 queue->IMR = MACB_IMR;
3422 queue->TBQP = MACB_TBQP;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003423 queue->RBQP = MACB_RBQP;
Harini Katakamfff80192016-08-09 13:15:53 +05303424#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003425 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003426 queue->TBQPH = MACB_TBQPH;
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003427 queue->RBQPH = MACB_RBQPH;
3428 }
Harini Katakamfff80192016-08-09 13:15:53 +05303429#endif
Soren Brinkmanne1824df2013-12-10 16:07:23 -08003430 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08003431
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003432 /* get irq: here we use the linux queue index, not the hardware
3433 * queue index. the queue irq definitions in the device tree
3434 * must remove the optional gaps that could exist in the
3435 * hardware queue mask.
3436 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003437 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003438 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01003439 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003440 if (err) {
3441 dev_err(&pdev->dev,
3442 "Unable to request IRQ %d (error %d)\n",
3443 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003444 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003445 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003446
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01003447 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003448 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003449 }
3450
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00003451 dev->netdev_ops = &macb_netdev_ops;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003452
Nicolas Ferre4df95132013-06-04 21:57:12 +00003453 /* setup appropriated routines according to adapter type */
3454 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003455 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003456 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
3457 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
3458 bp->macbgem_ops.mog_init_rings = gem_init_rings;
3459 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06003460 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003461 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003462 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003463 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
3464 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
3465 bp->macbgem_ops.mog_init_rings = macb_init_rings;
3466 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06003467 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00003468 }
3469
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003470 /* Set features */
3471 dev->hw_features = NETIF_F_SG;
Rafal Ozieblo1629dd42016-11-16 10:02:34 +00003472
3473 /* Check LSO capability */
3474 if (GEM_BFEXT(PBUF_LSO, gem_readl(bp, DCFG6)))
3475 dev->hw_features |= MACB_NETIF_LSO;
3476
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02003477 /* Checksum offload is only available on gem with packet buffer */
3478 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02003479 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02003480 if (bp->caps & MACB_CAPS_SG_DISABLED)
3481 dev->hw_features &= ~NETIF_F_SG;
3482 dev->features = dev->hw_features;
3483
Rafal Oziebloae8223de2017-11-30 18:20:44 +00003484 /* Check RX Flow Filters support.
3485 * Max Rx flows set by availability of screeners & compare regs:
3486 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
3487 */
3488 reg = gem_readl(bp, DCFG8);
3489 bp->max_tuples = min((GEM_BFEXT(SCR2CMP, reg) / 3),
3490 GEM_BFEXT(T2SCR, reg));
3491 if (bp->max_tuples > 0) {
3492 /* also needs one ethtype match to check IPv4 */
3493 if (GEM_BFEXT(SCR2ETH, reg) > 0) {
3494 /* program this reg now */
3495 reg = 0;
3496 reg = GEM_BFINS(ETHTCMP, (uint16_t)ETH_P_IP, reg);
3497 gem_writel_n(bp, ETHT, SCRT2_ETHT, reg);
3498 /* Filtering is supported in hw but don't enable it in kernel now */
3499 dev->hw_features |= NETIF_F_NTUPLE;
3500 /* init Rx flow definitions */
3501 INIT_LIST_HEAD(&bp->rx_fs_list.list);
3502 bp->rx_fs_list.count = 0;
3503 spin_lock_init(&bp->rx_fs_lock);
3504 } else
3505 bp->max_tuples = 0;
3506 }
3507
Neil Armstrongce721a72016-01-05 14:39:16 +01003508 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
3509 val = 0;
3510 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
3511 val = GEM_BIT(RGMII);
3512 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003513 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01003514 val = MACB_BIT(RMII);
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003515 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01003516 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003517
Neil Armstrongce721a72016-01-05 14:39:16 +01003518 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
3519 val |= MACB_BIT(CLKEN);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003520
Neil Armstrongce721a72016-01-05 14:39:16 +01003521 macb_or_gem_writel(bp, USRIO, val);
3522 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003523
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003524 /* Set MII management clock divider */
3525 val = macb_mdc_clk_div(bp);
3526 val |= macb_dbw(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05303527 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
3528 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003529 macb_writel(bp, NCFGR, val);
3530
3531 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003532}
3533
3534#if defined(CONFIG_OF)
3535/* 1518 rounded up */
3536#define AT91ETHER_MAX_RBUFF_SZ 0x600
3537/* max number of receive buffers */
3538#define AT91ETHER_MAX_RX_DESCR 9
3539
3540/* Initialize and start the Receiver and Transmit subsystems */
3541static int at91ether_start(struct net_device *dev)
3542{
3543 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003544 struct macb_queue *q = &lp->queues[0];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003545 struct macb_dma_desc *desc;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003546 dma_addr_t addr;
3547 u32 ctl;
3548 int i;
3549
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003550 q->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003551 (AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003552 macb_dma_desc_get_size(lp)),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003553 &q->rx_ring_dma, GFP_KERNEL);
3554 if (!q->rx_ring)
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003555 return -ENOMEM;
3556
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003557 q->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003558 AT91ETHER_MAX_RX_DESCR *
3559 AT91ETHER_MAX_RBUFF_SZ,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003560 &q->rx_buffers_dma, GFP_KERNEL);
3561 if (!q->rx_buffers) {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003562 dma_free_coherent(&lp->pdev->dev,
3563 AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003564 macb_dma_desc_get_size(lp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003565 q->rx_ring, q->rx_ring_dma);
3566 q->rx_ring = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003567 return -ENOMEM;
3568 }
3569
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003570 addr = q->rx_buffers_dma;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003571 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003572 desc = macb_rx_desc(q, i);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003573 macb_set_addr(lp, desc, addr);
3574 desc->ctrl = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003575 addr += AT91ETHER_MAX_RBUFF_SZ;
3576 }
3577
3578 /* Set the Wrap bit on the last descriptor */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003579 desc->addr |= MACB_BIT(RX_WRAP);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003580
3581 /* Reset buffer index */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003582 q->rx_tail = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003583
3584 /* Program address of descriptor list in Rx Buffer Queue register */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003585 macb_writel(lp, RBQP, q->rx_ring_dma);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003586
3587 /* Enable Receive and Transmit */
3588 ctl = macb_readl(lp, NCR);
3589 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
3590
3591 return 0;
3592}
3593
3594/* Open the ethernet interface */
3595static int at91ether_open(struct net_device *dev)
3596{
3597 struct macb *lp = netdev_priv(dev);
3598 u32 ctl;
3599 int ret;
3600
3601 /* Clear internal statistics */
3602 ctl = macb_readl(lp, NCR);
3603 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
3604
3605 macb_set_hwaddr(lp);
3606
3607 ret = at91ether_start(dev);
3608 if (ret)
3609 return ret;
3610
3611 /* Enable MAC interrupts */
3612 macb_writel(lp, IER, MACB_BIT(RCOMP) |
3613 MACB_BIT(RXUBR) |
3614 MACB_BIT(ISR_TUND) |
3615 MACB_BIT(ISR_RLE) |
3616 MACB_BIT(TCOMP) |
3617 MACB_BIT(ISR_ROVR) |
3618 MACB_BIT(HRESP));
3619
3620 /* schedule a link state check */
Philippe Reynes0a912812016-06-22 00:32:35 +02003621 phy_start(dev->phydev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003622
3623 netif_start_queue(dev);
3624
3625 return 0;
3626}
3627
3628/* Close the interface */
3629static int at91ether_close(struct net_device *dev)
3630{
3631 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003632 struct macb_queue *q = &lp->queues[0];
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003633 u32 ctl;
3634
3635 /* Disable Receiver and Transmitter */
3636 ctl = macb_readl(lp, NCR);
3637 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
3638
3639 /* Disable MAC interrupts */
3640 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
3641 MACB_BIT(RXUBR) |
3642 MACB_BIT(ISR_TUND) |
3643 MACB_BIT(ISR_RLE) |
3644 MACB_BIT(TCOMP) |
3645 MACB_BIT(ISR_ROVR) |
3646 MACB_BIT(HRESP));
3647
3648 netif_stop_queue(dev);
3649
3650 dma_free_coherent(&lp->pdev->dev,
3651 AT91ETHER_MAX_RX_DESCR *
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003652 macb_dma_desc_get_size(lp),
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003653 q->rx_ring, q->rx_ring_dma);
3654 q->rx_ring = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003655
3656 dma_free_coherent(&lp->pdev->dev,
3657 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003658 q->rx_buffers, q->rx_buffers_dma);
3659 q->rx_buffers = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003660
3661 return 0;
3662}
3663
3664/* Transmit packet */
Claudiu Beznead1c38952018-08-07 12:25:12 +03003665static netdev_tx_t at91ether_start_xmit(struct sk_buff *skb,
3666 struct net_device *dev)
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003667{
3668 struct macb *lp = netdev_priv(dev);
3669
3670 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
3671 netif_stop_queue(dev);
3672
3673 /* Store packet information (to free when Tx completed) */
3674 lp->skb = skb;
3675 lp->skb_length = skb->len;
3676 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
3677 DMA_TO_DEVICE);
Alexey Khoroshilov178c7ae2016-11-19 01:40:10 +03003678 if (dma_mapping_error(NULL, lp->skb_physaddr)) {
3679 dev_kfree_skb_any(skb);
3680 dev->stats.tx_dropped++;
3681 netdev_err(dev, "%s: DMA mapping error\n", __func__);
3682 return NETDEV_TX_OK;
3683 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003684
3685 /* Set address of the data in the Transmit Address register */
3686 macb_writel(lp, TAR, lp->skb_physaddr);
3687 /* Set length of the packet in the Transmit Control register */
3688 macb_writel(lp, TCR, skb->len);
3689
3690 } else {
3691 netdev_err(dev, "%s called, but device is busy!\n", __func__);
3692 return NETDEV_TX_BUSY;
3693 }
3694
3695 return NETDEV_TX_OK;
3696}
3697
3698/* Extract received frame from buffer descriptors and sent to upper layers.
3699 * (Called from interrupt context)
3700 */
3701static void at91ether_rx(struct net_device *dev)
3702{
3703 struct macb *lp = netdev_priv(dev);
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003704 struct macb_queue *q = &lp->queues[0];
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003705 struct macb_dma_desc *desc;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003706 unsigned char *p_recv;
3707 struct sk_buff *skb;
3708 unsigned int pktlen;
3709
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003710 desc = macb_rx_desc(q, q->rx_tail);
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003711 while (desc->addr & MACB_BIT(RX_USED)) {
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003712 p_recv = q->rx_buffers + q->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003713 pktlen = MACB_BF(RX_FRMLEN, desc->ctrl);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003714 skb = netdev_alloc_skb(dev, pktlen + 2);
3715 if (skb) {
3716 skb_reserve(skb, 2);
Johannes Berg59ae1d12017-06-16 14:29:20 +02003717 skb_put_data(skb, p_recv, pktlen);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003718
3719 skb->protocol = eth_type_trans(skb, dev);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003720 dev->stats.rx_packets++;
3721 dev->stats.rx_bytes += pktlen;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003722 netif_rx(skb);
3723 } else {
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003724 dev->stats.rx_dropped++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003725 }
3726
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003727 if (desc->ctrl & MACB_BIT(RX_MHASH_MATCH))
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003728 dev->stats.multicast++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003729
3730 /* reset ownership bit */
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003731 desc->addr &= ~MACB_BIT(RX_USED);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003732
3733 /* wrap after last buffer */
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003734 if (q->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
3735 q->rx_tail = 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003736 else
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003737 q->rx_tail++;
Rafal Ozieblodc97a892017-01-27 15:08:20 +00003738
Rafal Oziebloae1f2a52017-11-30 18:19:15 +00003739 desc = macb_rx_desc(q, q->rx_tail);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003740 }
3741}
3742
3743/* MAC interrupt handler */
3744static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
3745{
3746 struct net_device *dev = dev_id;
3747 struct macb *lp = netdev_priv(dev);
3748 u32 intstatus, ctl;
3749
3750 /* MAC Interrupt Status register indicates what interrupts are pending.
3751 * It is automatically cleared once read.
3752 */
3753 intstatus = macb_readl(lp, ISR);
3754
3755 /* Receive complete */
3756 if (intstatus & MACB_BIT(RCOMP))
3757 at91ether_rx(dev);
3758
3759 /* Transmit complete */
3760 if (intstatus & MACB_BIT(TCOMP)) {
3761 /* The TCOM bit is set even if the transmission failed */
3762 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003763 dev->stats.tx_errors++;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003764
3765 if (lp->skb) {
3766 dev_kfree_skb_irq(lp->skb);
3767 lp->skb = NULL;
3768 dma_unmap_single(NULL, lp->skb_physaddr,
3769 lp->skb_length, DMA_TO_DEVICE);
Tobias Klauser5f1d3a52017-04-07 10:17:30 +02003770 dev->stats.tx_packets++;
3771 dev->stats.tx_bytes += lp->skb_length;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003772 }
3773 netif_wake_queue(dev);
3774 }
3775
3776 /* Work-around for EMAC Errata section 41.3.1 */
3777 if (intstatus & MACB_BIT(RXUBR)) {
3778 ctl = macb_readl(lp, NCR);
3779 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
Zumeng Chenffac0e92016-11-28 21:55:00 +08003780 wmb();
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003781 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
3782 }
3783
3784 if (intstatus & MACB_BIT(ISR_ROVR))
3785 netdev_err(dev, "ROVR error\n");
3786
3787 return IRQ_HANDLED;
3788}
3789
3790#ifdef CONFIG_NET_POLL_CONTROLLER
3791static void at91ether_poll_controller(struct net_device *dev)
3792{
3793 unsigned long flags;
3794
3795 local_irq_save(flags);
3796 at91ether_interrupt(dev->irq, dev);
3797 local_irq_restore(flags);
3798}
3799#endif
3800
3801static const struct net_device_ops at91ether_netdev_ops = {
3802 .ndo_open = at91ether_open,
3803 .ndo_stop = at91ether_close,
3804 .ndo_start_xmit = at91ether_start_xmit,
3805 .ndo_get_stats = macb_get_stats,
3806 .ndo_set_rx_mode = macb_set_rx_mode,
3807 .ndo_set_mac_address = eth_mac_addr,
3808 .ndo_do_ioctl = macb_ioctl,
3809 .ndo_validate_addr = eth_validate_addr,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003810#ifdef CONFIG_NET_POLL_CONTROLLER
3811 .ndo_poll_controller = at91ether_poll_controller,
3812#endif
3813};
3814
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003815static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303816 struct clk **hclk, struct clk **tx_clk,
3817 struct clk **rx_clk)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003818{
3819 int err;
3820
3821 *hclk = NULL;
3822 *tx_clk = NULL;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303823 *rx_clk = NULL;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003824
3825 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
3826 if (IS_ERR(*pclk))
3827 return PTR_ERR(*pclk);
3828
3829 err = clk_prepare_enable(*pclk);
3830 if (err) {
3831 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
3832 return err;
3833 }
3834
3835 return 0;
3836}
3837
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003838static int at91ether_init(struct platform_device *pdev)
3839{
3840 struct net_device *dev = platform_get_drvdata(pdev);
3841 struct macb *bp = netdev_priv(dev);
3842 int err;
3843 u32 reg;
3844
Alexandre Bellonifec9d3b2018-06-26 10:44:01 +02003845 bp->queues[0].bp = bp;
3846
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003847 dev->netdev_ops = &at91ether_netdev_ops;
3848 dev->ethtool_ops = &macb_ethtool_ops;
3849
3850 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
3851 0, dev->name, dev);
3852 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003853 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003854
3855 macb_writel(bp, NCR, 0);
3856
3857 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
3858 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
3859 reg |= MACB_BIT(RM9200_RMII);
3860
3861 macb_writel(bp, NCFGR, reg);
3862
3863 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003864}
3865
David S. Miller3cef5c52015-03-09 23:38:02 -04003866static const struct macb_config at91sam9260_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003867 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003868 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003869 .init = macb_init,
3870};
3871
Nicolas Ferreeb4ed8e2018-09-14 17:48:10 +02003872static const struct macb_config sama5d3macb_config = {
3873 .caps = MACB_CAPS_SG_DISABLED
3874 | MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
3875 .clk_init = macb_clk_init,
3876 .init = macb_init,
3877};
3878
David S. Miller3cef5c52015-03-09 23:38:02 -04003879static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003880 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
3881 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003882 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003883 .init = macb_init,
3884};
3885
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003886static const struct macb_config sama5d2_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003887 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003888 .dma_burst_length = 16,
3889 .clk_init = macb_clk_init,
3890 .init = macb_init,
3891};
3892
David S. Miller3cef5c52015-03-09 23:38:02 -04003893static const struct macb_config sama5d3_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003894 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
vishnuvardhan233a1582017-07-05 17:36:16 +02003895 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003896 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003897 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003898 .init = macb_init,
vishnuvardhan233a1582017-07-05 17:36:16 +02003899 .jumbo_max_len = 10240,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003900};
3901
David S. Miller3cef5c52015-03-09 23:38:02 -04003902static const struct macb_config sama5d4_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01003903 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003904 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003905 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003906 .init = macb_init,
3907};
3908
David S. Miller3cef5c52015-03-09 23:38:02 -04003909static const struct macb_config emac_config = {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003910 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003911 .init = at91ether_init,
3912};
3913
Neil Armstronge611b5b2016-01-05 14:39:17 +01003914static const struct macb_config np4_config = {
3915 .caps = MACB_CAPS_USRIO_DISABLED,
3916 .clk_init = macb_clk_init,
3917 .init = macb_init,
3918};
David S. Miller36583eb2015-05-23 01:22:35 -04003919
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303920static const struct macb_config zynqmp_config = {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003921 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
3922 MACB_CAPS_JUMBO |
Harini Katakam404cd082018-07-06 12:18:58 +05303923 MACB_CAPS_GEM_HAS_PTP | MACB_CAPS_BD_RD_PREFETCH,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303924 .dma_burst_length = 16,
3925 .clk_init = macb_clk_init,
3926 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05303927 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303928};
3929
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05003930static const struct macb_config zynq_config = {
Punnaiah Choudary Kalluri7baaa902015-07-06 10:02:53 +05303931 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF,
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05003932 .dma_burst_length = 16,
3933 .clk_init = macb_clk_init,
3934 .init = macb_init,
3935};
3936
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003937static const struct of_device_id macb_dt_ids[] = {
3938 { .compatible = "cdns,at32ap7000-macb" },
3939 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
3940 { .compatible = "cdns,macb" },
Neil Armstronge611b5b2016-01-05 14:39:17 +01003941 { .compatible = "cdns,np4-macb", .data = &np4_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003942 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
3943 { .compatible = "cdns,gem", .data = &pc302gem_config },
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02003944 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003945 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
Nicolas Ferreeb4ed8e2018-09-14 17:48:10 +02003946 { .compatible = "atmel,sama5d3-macb", .data = &sama5d3macb_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003947 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
3948 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
3949 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05303950 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05003951 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003952 { /* sentinel */ }
3953};
3954MODULE_DEVICE_TABLE(of, macb_dt_ids);
3955#endif /* CONFIG_OF */
3956
Bartosz Folta83a77e92016-12-14 06:39:15 +00003957static const struct macb_config default_gem_config = {
Rafal Oziebloab91f0a2017-06-29 07:14:16 +01003958 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
3959 MACB_CAPS_JUMBO |
3960 MACB_CAPS_GEM_HAS_PTP,
Bartosz Folta83a77e92016-12-14 06:39:15 +00003961 .dma_burst_length = 16,
3962 .clk_init = macb_clk_init,
3963 .init = macb_init,
3964 .jumbo_max_len = 10240,
3965};
3966
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003967static int macb_probe(struct platform_device *pdev)
3968{
Bartosz Folta83a77e92016-12-14 06:39:15 +00003969 const struct macb_config *macb_config = &default_gem_config;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003970 int (*clk_init)(struct platform_device *, struct clk **,
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303971 struct clk **, struct clk **, struct clk **)
Bartosz Folta83a77e92016-12-14 06:39:15 +00003972 = macb_config->clk_init;
3973 int (*init)(struct platform_device *) = macb_config->init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003974 struct device_node *np = pdev->dev.of_node;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05303975 struct clk *pclk, *hclk = NULL, *tx_clk = NULL, *rx_clk = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003976 unsigned int queue_mask, num_queues;
3977 struct macb_platform_data *pdata;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003978 bool native_io;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003979 struct phy_device *phydev;
3980 struct net_device *dev;
3981 struct resource *regs;
3982 void __iomem *mem;
3983 const char *mac;
3984 struct macb *bp;
Harini Katakam404cd082018-07-06 12:18:58 +05303985 int err, val;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003986
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03003987 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3988 mem = devm_ioremap_resource(&pdev->dev, regs);
3989 if (IS_ERR(mem))
3990 return PTR_ERR(mem);
3991
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003992 if (np) {
3993 const struct of_device_id *match;
3994
3995 match = of_match_node(macb_dt_ids, np);
3996 if (match && match->data) {
3997 macb_config = match->data;
3998 clk_init = macb_config->clk_init;
3999 init = macb_config->init;
4000 }
4001 }
4002
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304003 err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004004 if (err)
4005 return err;
4006
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004007 native_io = hw_is_native_io(mem);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004008
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004009 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004010 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004011 if (!dev) {
4012 err = -ENOMEM;
4013 goto err_disable_clocks;
4014 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004015
4016 dev->base_addr = regs->start;
4017
4018 SET_NETDEV_DEV(dev, &pdev->dev);
4019
4020 bp = netdev_priv(dev);
4021 bp->pdev = pdev;
4022 bp->dev = dev;
4023 bp->regs = mem;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004024 bp->native_io = native_io;
4025 if (native_io) {
David S. Miller7a6e0702015-07-27 14:24:48 -07004026 bp->macb_reg_readl = hw_readl_native;
4027 bp->macb_reg_writel = hw_writel_native;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004028 } else {
David S. Miller7a6e0702015-07-27 14:24:48 -07004029 bp->macb_reg_readl = hw_readl;
4030 bp->macb_reg_writel = hw_writel;
Andy Shevchenkof2ce8a9e2015-07-24 21:23:59 +03004031 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004032 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02004033 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004034 if (macb_config)
4035 bp->dma_burst_length = macb_config->dma_burst_length;
4036 bp->pclk = pclk;
4037 bp->hclk = hclk;
4038 bp->tx_clk = tx_clk;
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304039 bp->rx_clk = rx_clk;
Andy Shevchenkof36dbe62015-07-24 21:24:00 +03004040 if (macb_config)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05304041 bp->jumbo_max_len = macb_config->jumbo_max_len;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05304042
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004043 bp->wol = 0;
Sergio Prado7c4a1d02016-02-16 21:10:45 -02004044 if (of_get_property(np, "magic-packet", NULL))
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004045 bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
4046 device_init_wakeup(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
4047
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004048 spin_lock_init(&bp->lock);
4049
Nicolas Ferread783472015-03-31 15:02:02 +02004050 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02004051 macb_configure_caps(bp, macb_config);
4052
Rafal Ozieblo7b429612017-06-29 07:12:51 +01004053#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
4054 if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) {
4055 dma_set_mask(&pdev->dev, DMA_BIT_MASK(44));
4056 bp->hw_dma_cap |= HW_DMA_CAP_64B;
4057 }
4058#endif
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004059 platform_set_drvdata(pdev, dev);
4060
4061 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004062 if (dev->irq < 0) {
4063 err = dev->irq;
Wei Yongjunb22ae0b2016-08-12 15:43:54 +00004064 goto err_out_free_netdev;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004065 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004066
Jarod Wilson44770e12016-10-17 15:54:17 -04004067 /* MTU range: 68 - 1500 or 10240 */
4068 dev->min_mtu = GEM_MTU_MIN_SIZE;
4069 if (bp->caps & MACB_CAPS_JUMBO)
4070 dev->max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
4071 else
4072 dev->max_mtu = ETH_DATA_LEN;
4073
Harini Katakam404cd082018-07-06 12:18:58 +05304074 if (bp->caps & MACB_CAPS_BD_RD_PREFETCH) {
4075 val = GEM_BFEXT(RXBD_RDBUFF, gem_readl(bp, DCFG10));
4076 if (val)
4077 bp->rx_bd_rd_prefetch = (2 << (val - 1)) *
4078 macb_dma_desc_get_size(bp);
4079
4080 val = GEM_BFEXT(TXBD_RDBUFF, gem_readl(bp, DCFG10));
4081 if (val)
4082 bp->tx_bd_rd_prefetch = (2 << (val - 1)) *
4083 macb_dma_desc_get_size(bp);
4084 }
4085
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004086 mac = of_get_mac_address(np);
Mike Looijmansaa076e32018-03-29 07:29:49 +02004087 if (mac) {
Moritz Fischereefb52d2016-03-29 19:11:14 -07004088 ether_addr_copy(bp->dev->dev_addr, mac);
Mike Looijmansaa076e32018-03-29 07:29:49 +02004089 } else {
Bartosz Golaszewskicce41b82018-11-30 09:20:58 +01004090 err = nvmem_get_mac_address(&pdev->dev, bp->dev->dev_addr);
Mike Looijmansaa076e32018-03-29 07:29:49 +02004091 if (err) {
4092 if (err == -EPROBE_DEFER)
4093 goto err_out_free_netdev;
4094 macb_get_hwaddr(bp);
4095 }
4096 }
frederic RODO6c36a702007-07-12 19:07:24 +02004097
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004098 err = of_get_phy_mode(np);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004099 if (err < 0) {
Jingoo Hanc607a0d2013-08-30 14:12:21 +09004100 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004101 if (pdata && pdata->is_rmii)
4102 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
4103 else
4104 bp->phy_interface = PHY_INTERFACE_MODE_MII;
4105 } else {
4106 bp->phy_interface = err;
4107 }
4108
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004109 /* IP specific init */
4110 err = init(pdev);
4111 if (err)
4112 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004113
Florian Fainellicf669662016-05-02 18:38:45 -07004114 err = macb_mii_init(bp);
4115 if (err)
4116 goto err_out_free_netdev;
4117
Philippe Reynes0a912812016-06-22 00:32:35 +02004118 phydev = dev->phydev;
Florian Fainellicf669662016-05-02 18:38:45 -07004119
4120 netif_carrier_off(dev);
4121
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004122 err = register_netdev(dev);
4123 if (err) {
4124 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Florian Fainellicf669662016-05-02 18:38:45 -07004125 goto err_out_unregister_mdio;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004126 }
4127
Harini Katakam032dc412018-01-27 12:09:01 +05304128 tasklet_init(&bp->hresp_err_tasklet, macb_hresp_error_task,
4129 (unsigned long)bp);
4130
Florian Fainellicf669662016-05-02 18:38:45 -07004131 phy_attached_info(phydev);
Nicolas Ferre03fc4722012-07-03 23:14:13 +00004132
Bo Shen58798232014-09-13 01:57:49 +02004133 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
4134 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
4135 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004136
4137 return 0;
4138
Florian Fainellicf669662016-05-02 18:38:45 -07004139err_out_unregister_mdio:
Philippe Reynes0a912812016-06-22 00:32:35 +02004140 phy_disconnect(dev->phydev);
Florian Fainellicf669662016-05-02 18:38:45 -07004141 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik66ee6a02017-11-08 09:56:35 +01004142 of_node_put(bp->phy_node);
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004143 if (np && of_phy_is_fixed_link(np))
4144 of_phy_deregister_fixed_link(np);
Florian Fainellicf669662016-05-02 18:38:45 -07004145 mdiobus_free(bp->mii_bus);
4146
Cyrille Pitchencf250de2014-12-15 15:13:32 +01004147err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004148 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01004149
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004150err_disable_clocks:
4151 clk_disable_unprepare(tx_clk);
4152 clk_disable_unprepare(hclk);
4153 clk_disable_unprepare(pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304154 clk_disable_unprepare(rx_clk);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02004155
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004156 return err;
4157}
4158
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00004159static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004160{
4161 struct net_device *dev;
4162 struct macb *bp;
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004163 struct device_node *np = pdev->dev.of_node;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004164
4165 dev = platform_get_drvdata(pdev);
4166
4167 if (dev) {
4168 bp = netdev_priv(dev);
Philippe Reynes0a912812016-06-22 00:32:35 +02004169 if (dev->phydev)
4170 phy_disconnect(dev->phydev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07004171 mdiobus_unregister(bp->mii_bus);
Michael Grzeschik9ce98142017-11-08 09:56:34 +01004172 if (np && of_phy_is_fixed_link(np))
4173 of_phy_deregister_fixed_link(np);
Nathan Sullivanfa6114d2016-10-07 10:13:22 -05004174 dev->phydev = NULL;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07004175 mdiobus_free(bp->mii_bus);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01004176
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004177 unregister_netdev(dev);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01004178 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00004179 clk_disable_unprepare(bp->hclk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00004180 clk_disable_unprepare(bp->pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304181 clk_disable_unprepare(bp->rx_clk);
Michael Grzeschikdacdbb42017-06-23 16:54:10 +02004182 of_node_put(bp->phy_node);
Cyrille Pitchene965be72014-12-15 15:13:31 +01004183 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004184 }
4185
4186 return 0;
4187}
4188
Michal Simekd23823d2015-01-23 09:36:03 +01004189static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004190{
Wolfram Sangce886a42018-10-21 22:00:14 +02004191 struct net_device *netdev = dev_get_drvdata(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004192 struct macb *bp = netdev_priv(netdev);
4193
Nicolas Ferre03fc4722012-07-03 23:14:13 +00004194 netif_carrier_off(netdev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004195 netif_device_detach(netdev);
4196
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004197 if (bp->wol & MACB_WOL_ENABLED) {
4198 macb_writel(bp, IER, MACB_BIT(WOL));
4199 macb_writel(bp, WOL, MACB_BIT(MAG));
4200 enable_irq_wake(bp->queues[0].irq);
4201 } else {
4202 clk_disable_unprepare(bp->tx_clk);
4203 clk_disable_unprepare(bp->hclk);
4204 clk_disable_unprepare(bp->pclk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304205 clk_disable_unprepare(bp->rx_clk);
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004206 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004207
4208 return 0;
4209}
4210
Michal Simekd23823d2015-01-23 09:36:03 +01004211static int __maybe_unused macb_resume(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004212{
Wolfram Sangce886a42018-10-21 22:00:14 +02004213 struct net_device *netdev = dev_get_drvdata(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004214 struct macb *bp = netdev_priv(netdev);
4215
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004216 if (bp->wol & MACB_WOL_ENABLED) {
4217 macb_writel(bp, IDR, MACB_BIT(WOL));
4218 macb_writel(bp, WOL, 0);
4219 disable_irq_wake(bp->queues[0].irq);
4220 } else {
4221 clk_prepare_enable(bp->pclk);
4222 clk_prepare_enable(bp->hclk);
4223 clk_prepare_enable(bp->tx_clk);
shubhrajyoti.datta@xilinx.comaead88b2016-08-16 10:14:50 +05304224 clk_prepare_enable(bp->rx_clk);
Sergio Prado3e2a5e12016-02-09 12:07:16 -02004225 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004226
4227 netif_device_attach(netdev);
4228
4229 return 0;
4230}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01004231
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004232static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
4233
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004234static struct platform_driver macb_driver = {
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00004235 .probe = macb_probe,
4236 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004237 .driver = {
4238 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01004239 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08004240 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004241 },
4242};
4243
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00004244module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01004245
4246MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00004247MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02004248MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07004249MODULE_ALIAS("platform:macb");