xref: /linux/drivers/net/ethernet/cadence/macb_main.c (revision 41fb0cf1bced59c1fe178cf6cc9f716b5da9e40e)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Cadence MACB/GEM Ethernet Controller driver
4  *
5  * Copyright (C) 2004-2006 Atmel Corporation
6  */
7 
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 #include <linux/clk.h>
10 #include <linux/clk-provider.h>
11 #include <linux/crc32.h>
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/circ_buf.h>
17 #include <linux/slab.h>
18 #include <linux/init.h>
19 #include <linux/io.h>
20 #include <linux/gpio.h>
21 #include <linux/gpio/consumer.h>
22 #include <linux/interrupt.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/platform_device.h>
27 #include <linux/phylink.h>
28 #include <linux/of.h>
29 #include <linux/of_device.h>
30 #include <linux/of_gpio.h>
31 #include <linux/of_mdio.h>
32 #include <linux/of_net.h>
33 #include <linux/ip.h>
34 #include <linux/udp.h>
35 #include <linux/tcp.h>
36 #include <linux/iopoll.h>
37 #include <linux/pm_runtime.h>
38 #include "macb.h"
39 
40 /* This structure is only used for MACB on SiFive FU540 devices */
41 struct sifive_fu540_macb_mgmt {
42 	void __iomem *reg;
43 	unsigned long rate;
44 	struct clk_hw hw;
45 };
46 
47 #define MACB_RX_BUFFER_SIZE	128
48 #define RX_BUFFER_MULTIPLE	64  /* bytes */
49 
50 #define DEFAULT_RX_RING_SIZE	512 /* must be power of 2 */
51 #define MIN_RX_RING_SIZE	64
52 #define MAX_RX_RING_SIZE	8192
53 #define RX_RING_BYTES(bp)	(macb_dma_desc_get_size(bp)	\
54 				 * (bp)->rx_ring_size)
55 
56 #define DEFAULT_TX_RING_SIZE	512 /* must be power of 2 */
57 #define MIN_TX_RING_SIZE	64
58 #define MAX_TX_RING_SIZE	4096
59 #define TX_RING_BYTES(bp)	(macb_dma_desc_get_size(bp)	\
60 				 * (bp)->tx_ring_size)
61 
62 /* level of occupied TX descriptors under which we wake up TX process */
63 #define MACB_TX_WAKEUP_THRESH(bp)	(3 * (bp)->tx_ring_size / 4)
64 
65 #define MACB_RX_INT_FLAGS	(MACB_BIT(RCOMP) | MACB_BIT(ISR_ROVR))
66 #define MACB_TX_ERR_FLAGS	(MACB_BIT(ISR_TUND)			\
67 					| MACB_BIT(ISR_RLE)		\
68 					| MACB_BIT(TXERR))
69 #define MACB_TX_INT_FLAGS	(MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP)	\
70 					| MACB_BIT(TXUBR))
71 
72 /* Max length of transmit frame must be a multiple of 8 bytes */
73 #define MACB_TX_LEN_ALIGN	8
74 #define MACB_MAX_TX_LEN		((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
75 /* Limit maximum TX length as per Cadence TSO errata. This is to avoid a
76  * false amba_error in TX path from the DMA assuming there is not enough
77  * space in the SRAM (16KB) even when there is.
78  */
79 #define GEM_MAX_TX_LEN		(unsigned int)(0x3FC0)
80 
81 #define GEM_MTU_MIN_SIZE	ETH_MIN_MTU
82 #define MACB_NETIF_LSO		NETIF_F_TSO
83 
84 #define MACB_WOL_HAS_MAGIC_PACKET	(0x1 << 0)
85 #define MACB_WOL_ENABLED		(0x1 << 1)
86 
87 #define HS_SPEED_10000M			4
88 #define MACB_SERDES_RATE_10G		1
89 
90 /* Graceful stop timeouts in us. We should allow up to
91  * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
92  */
93 #define MACB_HALT_TIMEOUT	1230
94 
95 #define MACB_PM_TIMEOUT  100 /* ms */
96 
97 #define MACB_MDIO_TIMEOUT	1000000 /* in usecs */
98 
99 /* DMA buffer descriptor might be different size
100  * depends on hardware configuration:
101  *
102  * 1. dma address width 32 bits:
103  *    word 1: 32 bit address of Data Buffer
104  *    word 2: control
105  *
106  * 2. dma address width 64 bits:
107  *    word 1: 32 bit address of Data Buffer
108  *    word 2: control
109  *    word 3: upper 32 bit address of Data Buffer
110  *    word 4: unused
111  *
112  * 3. dma address width 32 bits with hardware timestamping:
113  *    word 1: 32 bit address of Data Buffer
114  *    word 2: control
115  *    word 3: timestamp word 1
116  *    word 4: timestamp word 2
117  *
118  * 4. dma address width 64 bits with hardware timestamping:
119  *    word 1: 32 bit address of Data Buffer
120  *    word 2: control
121  *    word 3: upper 32 bit address of Data Buffer
122  *    word 4: unused
123  *    word 5: timestamp word 1
124  *    word 6: timestamp word 2
125  */
126 static unsigned int macb_dma_desc_get_size(struct macb *bp)
127 {
128 #ifdef MACB_EXT_DESC
129 	unsigned int desc_size;
130 
131 	switch (bp->hw_dma_cap) {
132 	case HW_DMA_CAP_64B:
133 		desc_size = sizeof(struct macb_dma_desc)
134 			+ sizeof(struct macb_dma_desc_64);
135 		break;
136 	case HW_DMA_CAP_PTP:
137 		desc_size = sizeof(struct macb_dma_desc)
138 			+ sizeof(struct macb_dma_desc_ptp);
139 		break;
140 	case HW_DMA_CAP_64B_PTP:
141 		desc_size = sizeof(struct macb_dma_desc)
142 			+ sizeof(struct macb_dma_desc_64)
143 			+ sizeof(struct macb_dma_desc_ptp);
144 		break;
145 	default:
146 		desc_size = sizeof(struct macb_dma_desc);
147 	}
148 	return desc_size;
149 #endif
150 	return sizeof(struct macb_dma_desc);
151 }
152 
153 static unsigned int macb_adj_dma_desc_idx(struct macb *bp, unsigned int desc_idx)
154 {
155 #ifdef MACB_EXT_DESC
156 	switch (bp->hw_dma_cap) {
157 	case HW_DMA_CAP_64B:
158 	case HW_DMA_CAP_PTP:
159 		desc_idx <<= 1;
160 		break;
161 	case HW_DMA_CAP_64B_PTP:
162 		desc_idx *= 3;
163 		break;
164 	default:
165 		break;
166 	}
167 #endif
168 	return desc_idx;
169 }
170 
171 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
172 static struct macb_dma_desc_64 *macb_64b_desc(struct macb *bp, struct macb_dma_desc *desc)
173 {
174 	return (struct macb_dma_desc_64 *)((void *)desc
175 		+ sizeof(struct macb_dma_desc));
176 }
177 #endif
178 
179 /* Ring buffer accessors */
180 static unsigned int macb_tx_ring_wrap(struct macb *bp, unsigned int index)
181 {
182 	return index & (bp->tx_ring_size - 1);
183 }
184 
185 static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
186 					  unsigned int index)
187 {
188 	index = macb_tx_ring_wrap(queue->bp, index);
189 	index = macb_adj_dma_desc_idx(queue->bp, index);
190 	return &queue->tx_ring[index];
191 }
192 
193 static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
194 				       unsigned int index)
195 {
196 	return &queue->tx_skb[macb_tx_ring_wrap(queue->bp, index)];
197 }
198 
199 static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
200 {
201 	dma_addr_t offset;
202 
203 	offset = macb_tx_ring_wrap(queue->bp, index) *
204 			macb_dma_desc_get_size(queue->bp);
205 
206 	return queue->tx_ring_dma + offset;
207 }
208 
209 static unsigned int macb_rx_ring_wrap(struct macb *bp, unsigned int index)
210 {
211 	return index & (bp->rx_ring_size - 1);
212 }
213 
214 static struct macb_dma_desc *macb_rx_desc(struct macb_queue *queue, unsigned int index)
215 {
216 	index = macb_rx_ring_wrap(queue->bp, index);
217 	index = macb_adj_dma_desc_idx(queue->bp, index);
218 	return &queue->rx_ring[index];
219 }
220 
221 static void *macb_rx_buffer(struct macb_queue *queue, unsigned int index)
222 {
223 	return queue->rx_buffers + queue->bp->rx_buffer_size *
224 	       macb_rx_ring_wrap(queue->bp, index);
225 }
226 
227 /* I/O accessors */
228 static u32 hw_readl_native(struct macb *bp, int offset)
229 {
230 	return __raw_readl(bp->regs + offset);
231 }
232 
233 static void hw_writel_native(struct macb *bp, int offset, u32 value)
234 {
235 	__raw_writel(value, bp->regs + offset);
236 }
237 
238 static u32 hw_readl(struct macb *bp, int offset)
239 {
240 	return readl_relaxed(bp->regs + offset);
241 }
242 
243 static void hw_writel(struct macb *bp, int offset, u32 value)
244 {
245 	writel_relaxed(value, bp->regs + offset);
246 }
247 
248 /* Find the CPU endianness by using the loopback bit of NCR register. When the
249  * CPU is in big endian we need to program swapped mode for management
250  * descriptor access.
251  */
252 static bool hw_is_native_io(void __iomem *addr)
253 {
254 	u32 value = MACB_BIT(LLB);
255 
256 	__raw_writel(value, addr + MACB_NCR);
257 	value = __raw_readl(addr + MACB_NCR);
258 
259 	/* Write 0 back to disable everything */
260 	__raw_writel(0, addr + MACB_NCR);
261 
262 	return value == MACB_BIT(LLB);
263 }
264 
265 static bool hw_is_gem(void __iomem *addr, bool native_io)
266 {
267 	u32 id;
268 
269 	if (native_io)
270 		id = __raw_readl(addr + MACB_MID);
271 	else
272 		id = readl_relaxed(addr + MACB_MID);
273 
274 	return MACB_BFEXT(IDNUM, id) >= 0x2;
275 }
276 
277 static void macb_set_hwaddr(struct macb *bp)
278 {
279 	u32 bottom;
280 	u16 top;
281 
282 	bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
283 	macb_or_gem_writel(bp, SA1B, bottom);
284 	top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
285 	macb_or_gem_writel(bp, SA1T, top);
286 
287 	/* Clear unused address register sets */
288 	macb_or_gem_writel(bp, SA2B, 0);
289 	macb_or_gem_writel(bp, SA2T, 0);
290 	macb_or_gem_writel(bp, SA3B, 0);
291 	macb_or_gem_writel(bp, SA3T, 0);
292 	macb_or_gem_writel(bp, SA4B, 0);
293 	macb_or_gem_writel(bp, SA4T, 0);
294 }
295 
296 static void macb_get_hwaddr(struct macb *bp)
297 {
298 	u32 bottom;
299 	u16 top;
300 	u8 addr[6];
301 	int i;
302 
303 	/* Check all 4 address register for valid address */
304 	for (i = 0; i < 4; i++) {
305 		bottom = macb_or_gem_readl(bp, SA1B + i * 8);
306 		top = macb_or_gem_readl(bp, SA1T + i * 8);
307 
308 		addr[0] = bottom & 0xff;
309 		addr[1] = (bottom >> 8) & 0xff;
310 		addr[2] = (bottom >> 16) & 0xff;
311 		addr[3] = (bottom >> 24) & 0xff;
312 		addr[4] = top & 0xff;
313 		addr[5] = (top >> 8) & 0xff;
314 
315 		if (is_valid_ether_addr(addr)) {
316 			eth_hw_addr_set(bp->dev, addr);
317 			return;
318 		}
319 	}
320 
321 	dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
322 	eth_hw_addr_random(bp->dev);
323 }
324 
325 static int macb_mdio_wait_for_idle(struct macb *bp)
326 {
327 	u32 val;
328 
329 	return readx_poll_timeout(MACB_READ_NSR, bp, val, val & MACB_BIT(IDLE),
330 				  1, MACB_MDIO_TIMEOUT);
331 }
332 
333 static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
334 {
335 	struct macb *bp = bus->priv;
336 	int status;
337 
338 	status = pm_runtime_get_sync(&bp->pdev->dev);
339 	if (status < 0) {
340 		pm_runtime_put_noidle(&bp->pdev->dev);
341 		goto mdio_pm_exit;
342 	}
343 
344 	status = macb_mdio_wait_for_idle(bp);
345 	if (status < 0)
346 		goto mdio_read_exit;
347 
348 	if (regnum & MII_ADDR_C45) {
349 		macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
350 			    | MACB_BF(RW, MACB_MAN_C45_ADDR)
351 			    | MACB_BF(PHYA, mii_id)
352 			    | MACB_BF(REGA, (regnum >> 16) & 0x1F)
353 			    | MACB_BF(DATA, regnum & 0xFFFF)
354 			    | MACB_BF(CODE, MACB_MAN_C45_CODE)));
355 
356 		status = macb_mdio_wait_for_idle(bp);
357 		if (status < 0)
358 			goto mdio_read_exit;
359 
360 		macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
361 			    | MACB_BF(RW, MACB_MAN_C45_READ)
362 			    | MACB_BF(PHYA, mii_id)
363 			    | MACB_BF(REGA, (regnum >> 16) & 0x1F)
364 			    | MACB_BF(CODE, MACB_MAN_C45_CODE)));
365 	} else {
366 		macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C22_SOF)
367 				| MACB_BF(RW, MACB_MAN_C22_READ)
368 				| MACB_BF(PHYA, mii_id)
369 				| MACB_BF(REGA, regnum)
370 				| MACB_BF(CODE, MACB_MAN_C22_CODE)));
371 	}
372 
373 	status = macb_mdio_wait_for_idle(bp);
374 	if (status < 0)
375 		goto mdio_read_exit;
376 
377 	status = MACB_BFEXT(DATA, macb_readl(bp, MAN));
378 
379 mdio_read_exit:
380 	pm_runtime_mark_last_busy(&bp->pdev->dev);
381 	pm_runtime_put_autosuspend(&bp->pdev->dev);
382 mdio_pm_exit:
383 	return status;
384 }
385 
386 static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
387 			   u16 value)
388 {
389 	struct macb *bp = bus->priv;
390 	int status;
391 
392 	status = pm_runtime_get_sync(&bp->pdev->dev);
393 	if (status < 0) {
394 		pm_runtime_put_noidle(&bp->pdev->dev);
395 		goto mdio_pm_exit;
396 	}
397 
398 	status = macb_mdio_wait_for_idle(bp);
399 	if (status < 0)
400 		goto mdio_write_exit;
401 
402 	if (regnum & MII_ADDR_C45) {
403 		macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
404 			    | MACB_BF(RW, MACB_MAN_C45_ADDR)
405 			    | MACB_BF(PHYA, mii_id)
406 			    | MACB_BF(REGA, (regnum >> 16) & 0x1F)
407 			    | MACB_BF(DATA, regnum & 0xFFFF)
408 			    | MACB_BF(CODE, MACB_MAN_C45_CODE)));
409 
410 		status = macb_mdio_wait_for_idle(bp);
411 		if (status < 0)
412 			goto mdio_write_exit;
413 
414 		macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
415 			    | MACB_BF(RW, MACB_MAN_C45_WRITE)
416 			    | MACB_BF(PHYA, mii_id)
417 			    | MACB_BF(REGA, (regnum >> 16) & 0x1F)
418 			    | MACB_BF(CODE, MACB_MAN_C45_CODE)
419 			    | MACB_BF(DATA, value)));
420 	} else {
421 		macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C22_SOF)
422 				| MACB_BF(RW, MACB_MAN_C22_WRITE)
423 				| MACB_BF(PHYA, mii_id)
424 				| MACB_BF(REGA, regnum)
425 				| MACB_BF(CODE, MACB_MAN_C22_CODE)
426 				| MACB_BF(DATA, value)));
427 	}
428 
429 	status = macb_mdio_wait_for_idle(bp);
430 	if (status < 0)
431 		goto mdio_write_exit;
432 
433 mdio_write_exit:
434 	pm_runtime_mark_last_busy(&bp->pdev->dev);
435 	pm_runtime_put_autosuspend(&bp->pdev->dev);
436 mdio_pm_exit:
437 	return status;
438 }
439 
440 static void macb_init_buffers(struct macb *bp)
441 {
442 	struct macb_queue *queue;
443 	unsigned int q;
444 
445 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
446 		queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
447 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
448 		if (bp->hw_dma_cap & HW_DMA_CAP_64B)
449 			queue_writel(queue, RBQPH,
450 				     upper_32_bits(queue->rx_ring_dma));
451 #endif
452 		queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
453 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
454 		if (bp->hw_dma_cap & HW_DMA_CAP_64B)
455 			queue_writel(queue, TBQPH,
456 				     upper_32_bits(queue->tx_ring_dma));
457 #endif
458 	}
459 }
460 
461 /**
462  * macb_set_tx_clk() - Set a clock to a new frequency
463  * @bp:		pointer to struct macb
464  * @speed:	New frequency in Hz
465  */
466 static void macb_set_tx_clk(struct macb *bp, int speed)
467 {
468 	long ferr, rate, rate_rounded;
469 
470 	if (!bp->tx_clk || (bp->caps & MACB_CAPS_CLK_HW_CHG))
471 		return;
472 
473 	/* In case of MII the PHY is the clock master */
474 	if (bp->phy_interface == PHY_INTERFACE_MODE_MII)
475 		return;
476 
477 	switch (speed) {
478 	case SPEED_10:
479 		rate = 2500000;
480 		break;
481 	case SPEED_100:
482 		rate = 25000000;
483 		break;
484 	case SPEED_1000:
485 		rate = 125000000;
486 		break;
487 	default:
488 		return;
489 	}
490 
491 	rate_rounded = clk_round_rate(bp->tx_clk, rate);
492 	if (rate_rounded < 0)
493 		return;
494 
495 	/* RGMII allows 50 ppm frequency error. Test and warn if this limit
496 	 * is not satisfied.
497 	 */
498 	ferr = abs(rate_rounded - rate);
499 	ferr = DIV_ROUND_UP(ferr, rate / 100000);
500 	if (ferr > 5)
501 		netdev_warn(bp->dev,
502 			    "unable to generate target frequency: %ld Hz\n",
503 			    rate);
504 
505 	if (clk_set_rate(bp->tx_clk, rate_rounded))
506 		netdev_err(bp->dev, "adjusting tx_clk failed.\n");
507 }
508 
509 static void macb_usx_pcs_link_up(struct phylink_pcs *pcs, unsigned int mode,
510 				 phy_interface_t interface, int speed,
511 				 int duplex)
512 {
513 	struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
514 	u32 config;
515 
516 	config = gem_readl(bp, USX_CONTROL);
517 	config = GEM_BFINS(SERDES_RATE, MACB_SERDES_RATE_10G, config);
518 	config = GEM_BFINS(USX_CTRL_SPEED, HS_SPEED_10000M, config);
519 	config &= ~(GEM_BIT(TX_SCR_BYPASS) | GEM_BIT(RX_SCR_BYPASS));
520 	config |= GEM_BIT(TX_EN);
521 	gem_writel(bp, USX_CONTROL, config);
522 }
523 
524 static void macb_usx_pcs_get_state(struct phylink_pcs *pcs,
525 				   struct phylink_link_state *state)
526 {
527 	struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
528 	u32 val;
529 
530 	state->speed = SPEED_10000;
531 	state->duplex = 1;
532 	state->an_complete = 1;
533 
534 	val = gem_readl(bp, USX_STATUS);
535 	state->link = !!(val & GEM_BIT(USX_BLOCK_LOCK));
536 	val = gem_readl(bp, NCFGR);
537 	if (val & GEM_BIT(PAE))
538 		state->pause = MLO_PAUSE_RX;
539 }
540 
541 static int macb_usx_pcs_config(struct phylink_pcs *pcs,
542 			       unsigned int mode,
543 			       phy_interface_t interface,
544 			       const unsigned long *advertising,
545 			       bool permit_pause_to_mac)
546 {
547 	struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
548 
549 	gem_writel(bp, USX_CONTROL, gem_readl(bp, USX_CONTROL) |
550 		   GEM_BIT(SIGNAL_OK));
551 
552 	return 0;
553 }
554 
555 static void macb_pcs_get_state(struct phylink_pcs *pcs,
556 			       struct phylink_link_state *state)
557 {
558 	state->link = 0;
559 }
560 
561 static void macb_pcs_an_restart(struct phylink_pcs *pcs)
562 {
563 	/* Not supported */
564 }
565 
566 static int macb_pcs_config(struct phylink_pcs *pcs,
567 			   unsigned int mode,
568 			   phy_interface_t interface,
569 			   const unsigned long *advertising,
570 			   bool permit_pause_to_mac)
571 {
572 	return 0;
573 }
574 
575 static const struct phylink_pcs_ops macb_phylink_usx_pcs_ops = {
576 	.pcs_get_state = macb_usx_pcs_get_state,
577 	.pcs_config = macb_usx_pcs_config,
578 	.pcs_link_up = macb_usx_pcs_link_up,
579 };
580 
581 static const struct phylink_pcs_ops macb_phylink_pcs_ops = {
582 	.pcs_get_state = macb_pcs_get_state,
583 	.pcs_an_restart = macb_pcs_an_restart,
584 	.pcs_config = macb_pcs_config,
585 };
586 
587 static void macb_mac_config(struct phylink_config *config, unsigned int mode,
588 			    const struct phylink_link_state *state)
589 {
590 	struct net_device *ndev = to_net_dev(config->dev);
591 	struct macb *bp = netdev_priv(ndev);
592 	unsigned long flags;
593 	u32 old_ctrl, ctrl;
594 	u32 old_ncr, ncr;
595 
596 	spin_lock_irqsave(&bp->lock, flags);
597 
598 	old_ctrl = ctrl = macb_or_gem_readl(bp, NCFGR);
599 	old_ncr = ncr = macb_or_gem_readl(bp, NCR);
600 
601 	if (bp->caps & MACB_CAPS_MACB_IS_EMAC) {
602 		if (state->interface == PHY_INTERFACE_MODE_RMII)
603 			ctrl |= MACB_BIT(RM9200_RMII);
604 	} else if (macb_is_gem(bp)) {
605 		ctrl &= ~(GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL));
606 		ncr &= ~GEM_BIT(ENABLE_HS_MAC);
607 
608 		if (state->interface == PHY_INTERFACE_MODE_SGMII) {
609 			ctrl |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
610 		} else if (state->interface == PHY_INTERFACE_MODE_10GBASER) {
611 			ctrl |= GEM_BIT(PCSSEL);
612 			ncr |= GEM_BIT(ENABLE_HS_MAC);
613 		} else if (bp->caps & MACB_CAPS_MIIONRGMII &&
614 			   bp->phy_interface == PHY_INTERFACE_MODE_MII) {
615 			ncr |= MACB_BIT(MIIONRGMII);
616 		}
617 	}
618 
619 	/* Apply the new configuration, if any */
620 	if (old_ctrl ^ ctrl)
621 		macb_or_gem_writel(bp, NCFGR, ctrl);
622 
623 	if (old_ncr ^ ncr)
624 		macb_or_gem_writel(bp, NCR, ncr);
625 
626 	/* Disable AN for SGMII fixed link configuration, enable otherwise.
627 	 * Must be written after PCSSEL is set in NCFGR,
628 	 * otherwise writes will not take effect.
629 	 */
630 	if (macb_is_gem(bp) && state->interface == PHY_INTERFACE_MODE_SGMII) {
631 		u32 pcsctrl, old_pcsctrl;
632 
633 		old_pcsctrl = gem_readl(bp, PCSCNTRL);
634 		if (mode == MLO_AN_FIXED)
635 			pcsctrl = old_pcsctrl & ~GEM_BIT(PCSAUTONEG);
636 		else
637 			pcsctrl = old_pcsctrl | GEM_BIT(PCSAUTONEG);
638 		if (old_pcsctrl != pcsctrl)
639 			gem_writel(bp, PCSCNTRL, pcsctrl);
640 	}
641 
642 	spin_unlock_irqrestore(&bp->lock, flags);
643 }
644 
645 static void macb_mac_link_down(struct phylink_config *config, unsigned int mode,
646 			       phy_interface_t interface)
647 {
648 	struct net_device *ndev = to_net_dev(config->dev);
649 	struct macb *bp = netdev_priv(ndev);
650 	struct macb_queue *queue;
651 	unsigned int q;
652 	u32 ctrl;
653 
654 	if (!(bp->caps & MACB_CAPS_MACB_IS_EMAC))
655 		for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
656 			queue_writel(queue, IDR,
657 				     bp->rx_intr_mask | MACB_TX_INT_FLAGS | MACB_BIT(HRESP));
658 
659 	/* Disable Rx and Tx */
660 	ctrl = macb_readl(bp, NCR) & ~(MACB_BIT(RE) | MACB_BIT(TE));
661 	macb_writel(bp, NCR, ctrl);
662 
663 	netif_tx_stop_all_queues(ndev);
664 }
665 
666 static void macb_mac_link_up(struct phylink_config *config,
667 			     struct phy_device *phy,
668 			     unsigned int mode, phy_interface_t interface,
669 			     int speed, int duplex,
670 			     bool tx_pause, bool rx_pause)
671 {
672 	struct net_device *ndev = to_net_dev(config->dev);
673 	struct macb *bp = netdev_priv(ndev);
674 	struct macb_queue *queue;
675 	unsigned long flags;
676 	unsigned int q;
677 	u32 ctrl;
678 
679 	spin_lock_irqsave(&bp->lock, flags);
680 
681 	ctrl = macb_or_gem_readl(bp, NCFGR);
682 
683 	ctrl &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
684 
685 	if (speed == SPEED_100)
686 		ctrl |= MACB_BIT(SPD);
687 
688 	if (duplex)
689 		ctrl |= MACB_BIT(FD);
690 
691 	if (!(bp->caps & MACB_CAPS_MACB_IS_EMAC)) {
692 		ctrl &= ~MACB_BIT(PAE);
693 		if (macb_is_gem(bp)) {
694 			ctrl &= ~GEM_BIT(GBE);
695 
696 			if (speed == SPEED_1000)
697 				ctrl |= GEM_BIT(GBE);
698 		}
699 
700 		if (rx_pause)
701 			ctrl |= MACB_BIT(PAE);
702 
703 		macb_set_tx_clk(bp, speed);
704 
705 		/* Initialize rings & buffers as clearing MACB_BIT(TE) in link down
706 		 * cleared the pipeline and control registers.
707 		 */
708 		bp->macbgem_ops.mog_init_rings(bp);
709 		macb_init_buffers(bp);
710 
711 		for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
712 			queue_writel(queue, IER,
713 				     bp->rx_intr_mask | MACB_TX_INT_FLAGS | MACB_BIT(HRESP));
714 	}
715 
716 	macb_or_gem_writel(bp, NCFGR, ctrl);
717 
718 	if (bp->phy_interface == PHY_INTERFACE_MODE_10GBASER)
719 		gem_writel(bp, HS_MAC_CONFIG, GEM_BFINS(HS_MAC_SPEED, HS_SPEED_10000M,
720 							gem_readl(bp, HS_MAC_CONFIG)));
721 
722 	spin_unlock_irqrestore(&bp->lock, flags);
723 
724 	/* Enable Rx and Tx */
725 	macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(RE) | MACB_BIT(TE));
726 
727 	netif_tx_wake_all_queues(ndev);
728 }
729 
730 static int macb_mac_prepare(struct phylink_config *config, unsigned int mode,
731 			    phy_interface_t interface)
732 {
733 	struct net_device *ndev = to_net_dev(config->dev);
734 	struct macb *bp = netdev_priv(ndev);
735 
736 	if (interface == PHY_INTERFACE_MODE_10GBASER)
737 		bp->phylink_pcs.ops = &macb_phylink_usx_pcs_ops;
738 	else if (interface == PHY_INTERFACE_MODE_SGMII)
739 		bp->phylink_pcs.ops = &macb_phylink_pcs_ops;
740 	else
741 		bp->phylink_pcs.ops = NULL;
742 
743 	if (bp->phylink_pcs.ops)
744 		phylink_set_pcs(bp->phylink, &bp->phylink_pcs);
745 
746 	return 0;
747 }
748 
749 static const struct phylink_mac_ops macb_phylink_ops = {
750 	.validate = phylink_generic_validate,
751 	.mac_prepare = macb_mac_prepare,
752 	.mac_config = macb_mac_config,
753 	.mac_link_down = macb_mac_link_down,
754 	.mac_link_up = macb_mac_link_up,
755 };
756 
757 static bool macb_phy_handle_exists(struct device_node *dn)
758 {
759 	dn = of_parse_phandle(dn, "phy-handle", 0);
760 	of_node_put(dn);
761 	return dn != NULL;
762 }
763 
764 static int macb_phylink_connect(struct macb *bp)
765 {
766 	struct device_node *dn = bp->pdev->dev.of_node;
767 	struct net_device *dev = bp->dev;
768 	struct phy_device *phydev;
769 	int ret;
770 
771 	if (dn)
772 		ret = phylink_of_phy_connect(bp->phylink, dn, 0);
773 
774 	if (!dn || (ret && !macb_phy_handle_exists(dn))) {
775 		phydev = phy_find_first(bp->mii_bus);
776 		if (!phydev) {
777 			netdev_err(dev, "no PHY found\n");
778 			return -ENXIO;
779 		}
780 
781 		/* attach the mac to the phy */
782 		ret = phylink_connect_phy(bp->phylink, phydev);
783 	}
784 
785 	if (ret) {
786 		netdev_err(dev, "Could not attach PHY (%d)\n", ret);
787 		return ret;
788 	}
789 
790 	phylink_start(bp->phylink);
791 
792 	return 0;
793 }
794 
795 static void macb_get_pcs_fixed_state(struct phylink_config *config,
796 				     struct phylink_link_state *state)
797 {
798 	struct net_device *ndev = to_net_dev(config->dev);
799 	struct macb *bp = netdev_priv(ndev);
800 
801 	state->link = (macb_readl(bp, NSR) & MACB_BIT(NSR_LINK)) != 0;
802 }
803 
804 /* based on au1000_eth. c*/
805 static int macb_mii_probe(struct net_device *dev)
806 {
807 	struct macb *bp = netdev_priv(dev);
808 
809 	bp->phylink_config.dev = &dev->dev;
810 	bp->phylink_config.type = PHYLINK_NETDEV;
811 
812 	if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII) {
813 		bp->phylink_config.poll_fixed_state = true;
814 		bp->phylink_config.get_fixed_state = macb_get_pcs_fixed_state;
815 	}
816 
817 	bp->phylink_config.mac_capabilities = MAC_ASYM_PAUSE |
818 		MAC_10 | MAC_100;
819 
820 	__set_bit(PHY_INTERFACE_MODE_MII,
821 		  bp->phylink_config.supported_interfaces);
822 	__set_bit(PHY_INTERFACE_MODE_RMII,
823 		  bp->phylink_config.supported_interfaces);
824 
825 	/* Determine what modes are supported */
826 	if (macb_is_gem(bp) && (bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)) {
827 		bp->phylink_config.mac_capabilities |= MAC_1000FD;
828 		if (!(bp->caps & MACB_CAPS_NO_GIGABIT_HALF))
829 			bp->phylink_config.mac_capabilities |= MAC_1000HD;
830 
831 		__set_bit(PHY_INTERFACE_MODE_GMII,
832 			  bp->phylink_config.supported_interfaces);
833 		phy_interface_set_rgmii(bp->phylink_config.supported_interfaces);
834 
835 		if (bp->caps & MACB_CAPS_PCS)
836 			__set_bit(PHY_INTERFACE_MODE_SGMII,
837 				  bp->phylink_config.supported_interfaces);
838 
839 		if (bp->caps & MACB_CAPS_HIGH_SPEED) {
840 			__set_bit(PHY_INTERFACE_MODE_10GBASER,
841 				  bp->phylink_config.supported_interfaces);
842 			bp->phylink_config.mac_capabilities |= MAC_10000FD;
843 		}
844 	}
845 
846 	bp->phylink = phylink_create(&bp->phylink_config, bp->pdev->dev.fwnode,
847 				     bp->phy_interface, &macb_phylink_ops);
848 	if (IS_ERR(bp->phylink)) {
849 		netdev_err(dev, "Could not create a phylink instance (%ld)\n",
850 			   PTR_ERR(bp->phylink));
851 		return PTR_ERR(bp->phylink);
852 	}
853 
854 	return 0;
855 }
856 
857 static int macb_mdiobus_register(struct macb *bp)
858 {
859 	struct device_node *child, *np = bp->pdev->dev.of_node;
860 
861 	/* If we have a child named mdio, probe it instead of looking for PHYs
862 	 * directly under the MAC node
863 	 */
864 	child = of_get_child_by_name(np, "mdio");
865 	if (child) {
866 		int ret = of_mdiobus_register(bp->mii_bus, child);
867 
868 		of_node_put(child);
869 		return ret;
870 	}
871 
872 	if (of_phy_is_fixed_link(np))
873 		return mdiobus_register(bp->mii_bus);
874 
875 	/* Only create the PHY from the device tree if at least one PHY is
876 	 * described. Otherwise scan the entire MDIO bus. We do this to support
877 	 * old device tree that did not follow the best practices and did not
878 	 * describe their network PHYs.
879 	 */
880 	for_each_available_child_of_node(np, child)
881 		if (of_mdiobus_child_is_phy(child)) {
882 			/* The loop increments the child refcount,
883 			 * decrement it before returning.
884 			 */
885 			of_node_put(child);
886 
887 			return of_mdiobus_register(bp->mii_bus, np);
888 		}
889 
890 	return mdiobus_register(bp->mii_bus);
891 }
892 
893 static int macb_mii_init(struct macb *bp)
894 {
895 	int err = -ENXIO;
896 
897 	/* Enable management port */
898 	macb_writel(bp, NCR, MACB_BIT(MPE));
899 
900 	bp->mii_bus = mdiobus_alloc();
901 	if (!bp->mii_bus) {
902 		err = -ENOMEM;
903 		goto err_out;
904 	}
905 
906 	bp->mii_bus->name = "MACB_mii_bus";
907 	bp->mii_bus->read = &macb_mdio_read;
908 	bp->mii_bus->write = &macb_mdio_write;
909 	snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
910 		 bp->pdev->name, bp->pdev->id);
911 	bp->mii_bus->priv = bp;
912 	bp->mii_bus->parent = &bp->pdev->dev;
913 
914 	dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
915 
916 	err = macb_mdiobus_register(bp);
917 	if (err)
918 		goto err_out_free_mdiobus;
919 
920 	err = macb_mii_probe(bp->dev);
921 	if (err)
922 		goto err_out_unregister_bus;
923 
924 	return 0;
925 
926 err_out_unregister_bus:
927 	mdiobus_unregister(bp->mii_bus);
928 err_out_free_mdiobus:
929 	mdiobus_free(bp->mii_bus);
930 err_out:
931 	return err;
932 }
933 
934 static void macb_update_stats(struct macb *bp)
935 {
936 	u32 *p = &bp->hw_stats.macb.rx_pause_frames;
937 	u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
938 	int offset = MACB_PFR;
939 
940 	WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
941 
942 	for (; p < end; p++, offset += 4)
943 		*p += bp->macb_reg_readl(bp, offset);
944 }
945 
946 static int macb_halt_tx(struct macb *bp)
947 {
948 	unsigned long	halt_time, timeout;
949 	u32		status;
950 
951 	macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
952 
953 	timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
954 	do {
955 		halt_time = jiffies;
956 		status = macb_readl(bp, TSR);
957 		if (!(status & MACB_BIT(TGO)))
958 			return 0;
959 
960 		udelay(250);
961 	} while (time_before(halt_time, timeout));
962 
963 	return -ETIMEDOUT;
964 }
965 
966 static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
967 {
968 	if (tx_skb->mapping) {
969 		if (tx_skb->mapped_as_page)
970 			dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
971 				       tx_skb->size, DMA_TO_DEVICE);
972 		else
973 			dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
974 					 tx_skb->size, DMA_TO_DEVICE);
975 		tx_skb->mapping = 0;
976 	}
977 
978 	if (tx_skb->skb) {
979 		dev_kfree_skb_any(tx_skb->skb);
980 		tx_skb->skb = NULL;
981 	}
982 }
983 
984 static void macb_set_addr(struct macb *bp, struct macb_dma_desc *desc, dma_addr_t addr)
985 {
986 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
987 	struct macb_dma_desc_64 *desc_64;
988 
989 	if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
990 		desc_64 = macb_64b_desc(bp, desc);
991 		desc_64->addrh = upper_32_bits(addr);
992 		/* The low bits of RX address contain the RX_USED bit, clearing
993 		 * of which allows packet RX. Make sure the high bits are also
994 		 * visible to HW at that point.
995 		 */
996 		dma_wmb();
997 	}
998 #endif
999 	desc->addr = lower_32_bits(addr);
1000 }
1001 
1002 static dma_addr_t macb_get_addr(struct macb *bp, struct macb_dma_desc *desc)
1003 {
1004 	dma_addr_t addr = 0;
1005 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1006 	struct macb_dma_desc_64 *desc_64;
1007 
1008 	if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
1009 		desc_64 = macb_64b_desc(bp, desc);
1010 		addr = ((u64)(desc_64->addrh) << 32);
1011 	}
1012 #endif
1013 	addr |= MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
1014 	return addr;
1015 }
1016 
1017 static void macb_tx_error_task(struct work_struct *work)
1018 {
1019 	struct macb_queue	*queue = container_of(work, struct macb_queue,
1020 						      tx_error_task);
1021 	struct macb		*bp = queue->bp;
1022 	struct macb_tx_skb	*tx_skb;
1023 	struct macb_dma_desc	*desc;
1024 	struct sk_buff		*skb;
1025 	unsigned int		tail;
1026 	unsigned long		flags;
1027 
1028 	netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
1029 		    (unsigned int)(queue - bp->queues),
1030 		    queue->tx_tail, queue->tx_head);
1031 
1032 	/* Prevent the queue IRQ handlers from running: each of them may call
1033 	 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
1034 	 * As explained below, we have to halt the transmission before updating
1035 	 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
1036 	 * network engine about the macb/gem being halted.
1037 	 */
1038 	spin_lock_irqsave(&bp->lock, flags);
1039 
1040 	/* Make sure nobody is trying to queue up new packets */
1041 	netif_tx_stop_all_queues(bp->dev);
1042 
1043 	/* Stop transmission now
1044 	 * (in case we have just queued new packets)
1045 	 * macb/gem must be halted to write TBQP register
1046 	 */
1047 	if (macb_halt_tx(bp))
1048 		/* Just complain for now, reinitializing TX path can be good */
1049 		netdev_err(bp->dev, "BUG: halt tx timed out\n");
1050 
1051 	/* Treat frames in TX queue including the ones that caused the error.
1052 	 * Free transmit buffers in upper layer.
1053 	 */
1054 	for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
1055 		u32	ctrl;
1056 
1057 		desc = macb_tx_desc(queue, tail);
1058 		ctrl = desc->ctrl;
1059 		tx_skb = macb_tx_skb(queue, tail);
1060 		skb = tx_skb->skb;
1061 
1062 		if (ctrl & MACB_BIT(TX_USED)) {
1063 			/* skb is set for the last buffer of the frame */
1064 			while (!skb) {
1065 				macb_tx_unmap(bp, tx_skb);
1066 				tail++;
1067 				tx_skb = macb_tx_skb(queue, tail);
1068 				skb = tx_skb->skb;
1069 			}
1070 
1071 			/* ctrl still refers to the first buffer descriptor
1072 			 * since it's the only one written back by the hardware
1073 			 */
1074 			if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
1075 				netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
1076 					    macb_tx_ring_wrap(bp, tail),
1077 					    skb->data);
1078 				bp->dev->stats.tx_packets++;
1079 				queue->stats.tx_packets++;
1080 				bp->dev->stats.tx_bytes += skb->len;
1081 				queue->stats.tx_bytes += skb->len;
1082 			}
1083 		} else {
1084 			/* "Buffers exhausted mid-frame" errors may only happen
1085 			 * if the driver is buggy, so complain loudly about
1086 			 * those. Statistics are updated by hardware.
1087 			 */
1088 			if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
1089 				netdev_err(bp->dev,
1090 					   "BUG: TX buffers exhausted mid-frame\n");
1091 
1092 			desc->ctrl = ctrl | MACB_BIT(TX_USED);
1093 		}
1094 
1095 		macb_tx_unmap(bp, tx_skb);
1096 	}
1097 
1098 	/* Set end of TX queue */
1099 	desc = macb_tx_desc(queue, 0);
1100 	macb_set_addr(bp, desc, 0);
1101 	desc->ctrl = MACB_BIT(TX_USED);
1102 
1103 	/* Make descriptor updates visible to hardware */
1104 	wmb();
1105 
1106 	/* Reinitialize the TX desc queue */
1107 	queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
1108 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1109 	if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1110 		queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
1111 #endif
1112 	/* Make TX ring reflect state of hardware */
1113 	queue->tx_head = 0;
1114 	queue->tx_tail = 0;
1115 
1116 	/* Housework before enabling TX IRQ */
1117 	macb_writel(bp, TSR, macb_readl(bp, TSR));
1118 	queue_writel(queue, IER, MACB_TX_INT_FLAGS);
1119 
1120 	/* Now we are ready to start transmission again */
1121 	netif_tx_start_all_queues(bp->dev);
1122 	macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1123 
1124 	spin_unlock_irqrestore(&bp->lock, flags);
1125 }
1126 
1127 static void macb_tx_interrupt(struct macb_queue *queue)
1128 {
1129 	unsigned int tail;
1130 	unsigned int head;
1131 	u32 status;
1132 	struct macb *bp = queue->bp;
1133 	u16 queue_index = queue - bp->queues;
1134 
1135 	status = macb_readl(bp, TSR);
1136 	macb_writel(bp, TSR, status);
1137 
1138 	if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1139 		queue_writel(queue, ISR, MACB_BIT(TCOMP));
1140 
1141 	netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
1142 		    (unsigned long)status);
1143 
1144 	head = queue->tx_head;
1145 	for (tail = queue->tx_tail; tail != head; tail++) {
1146 		struct macb_tx_skb	*tx_skb;
1147 		struct sk_buff		*skb;
1148 		struct macb_dma_desc	*desc;
1149 		u32			ctrl;
1150 
1151 		desc = macb_tx_desc(queue, tail);
1152 
1153 		/* Make hw descriptor updates visible to CPU */
1154 		rmb();
1155 
1156 		ctrl = desc->ctrl;
1157 
1158 		/* TX_USED bit is only set by hardware on the very first buffer
1159 		 * descriptor of the transmitted frame.
1160 		 */
1161 		if (!(ctrl & MACB_BIT(TX_USED)))
1162 			break;
1163 
1164 		/* Process all buffers of the current transmitted frame */
1165 		for (;; tail++) {
1166 			tx_skb = macb_tx_skb(queue, tail);
1167 			skb = tx_skb->skb;
1168 
1169 			/* First, update TX stats if needed */
1170 			if (skb) {
1171 				if (unlikely(skb_shinfo(skb)->tx_flags &
1172 					     SKBTX_HW_TSTAMP) &&
1173 				    gem_ptp_do_txstamp(queue, skb, desc) == 0) {
1174 					/* skb now belongs to timestamp buffer
1175 					 * and will be removed later
1176 					 */
1177 					tx_skb->skb = NULL;
1178 				}
1179 				netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
1180 					    macb_tx_ring_wrap(bp, tail),
1181 					    skb->data);
1182 				bp->dev->stats.tx_packets++;
1183 				queue->stats.tx_packets++;
1184 				bp->dev->stats.tx_bytes += skb->len;
1185 				queue->stats.tx_bytes += skb->len;
1186 			}
1187 
1188 			/* Now we can safely release resources */
1189 			macb_tx_unmap(bp, tx_skb);
1190 
1191 			/* skb is set only for the last buffer of the frame.
1192 			 * WARNING: at this point skb has been freed by
1193 			 * macb_tx_unmap().
1194 			 */
1195 			if (skb)
1196 				break;
1197 		}
1198 	}
1199 
1200 	queue->tx_tail = tail;
1201 	if (__netif_subqueue_stopped(bp->dev, queue_index) &&
1202 	    CIRC_CNT(queue->tx_head, queue->tx_tail,
1203 		     bp->tx_ring_size) <= MACB_TX_WAKEUP_THRESH(bp))
1204 		netif_wake_subqueue(bp->dev, queue_index);
1205 }
1206 
1207 static void gem_rx_refill(struct macb_queue *queue)
1208 {
1209 	unsigned int		entry;
1210 	struct sk_buff		*skb;
1211 	dma_addr_t		paddr;
1212 	struct macb *bp = queue->bp;
1213 	struct macb_dma_desc *desc;
1214 
1215 	while (CIRC_SPACE(queue->rx_prepared_head, queue->rx_tail,
1216 			bp->rx_ring_size) > 0) {
1217 		entry = macb_rx_ring_wrap(bp, queue->rx_prepared_head);
1218 
1219 		/* Make hw descriptor updates visible to CPU */
1220 		rmb();
1221 
1222 		queue->rx_prepared_head++;
1223 		desc = macb_rx_desc(queue, entry);
1224 
1225 		if (!queue->rx_skbuff[entry]) {
1226 			/* allocate sk_buff for this free entry in ring */
1227 			skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
1228 			if (unlikely(!skb)) {
1229 				netdev_err(bp->dev,
1230 					   "Unable to allocate sk_buff\n");
1231 				break;
1232 			}
1233 
1234 			/* now fill corresponding descriptor entry */
1235 			paddr = dma_map_single(&bp->pdev->dev, skb->data,
1236 					       bp->rx_buffer_size,
1237 					       DMA_FROM_DEVICE);
1238 			if (dma_mapping_error(&bp->pdev->dev, paddr)) {
1239 				dev_kfree_skb(skb);
1240 				break;
1241 			}
1242 
1243 			queue->rx_skbuff[entry] = skb;
1244 
1245 			if (entry == bp->rx_ring_size - 1)
1246 				paddr |= MACB_BIT(RX_WRAP);
1247 			desc->ctrl = 0;
1248 			/* Setting addr clears RX_USED and allows reception,
1249 			 * make sure ctrl is cleared first to avoid a race.
1250 			 */
1251 			dma_wmb();
1252 			macb_set_addr(bp, desc, paddr);
1253 
1254 			/* properly align Ethernet header */
1255 			skb_reserve(skb, NET_IP_ALIGN);
1256 		} else {
1257 			desc->ctrl = 0;
1258 			dma_wmb();
1259 			desc->addr &= ~MACB_BIT(RX_USED);
1260 		}
1261 	}
1262 
1263 	/* Make descriptor updates visible to hardware */
1264 	wmb();
1265 
1266 	netdev_vdbg(bp->dev, "rx ring: queue: %p, prepared head %d, tail %d\n",
1267 			queue, queue->rx_prepared_head, queue->rx_tail);
1268 }
1269 
1270 /* Mark DMA descriptors from begin up to and not including end as unused */
1271 static void discard_partial_frame(struct macb_queue *queue, unsigned int begin,
1272 				  unsigned int end)
1273 {
1274 	unsigned int frag;
1275 
1276 	for (frag = begin; frag != end; frag++) {
1277 		struct macb_dma_desc *desc = macb_rx_desc(queue, frag);
1278 
1279 		desc->addr &= ~MACB_BIT(RX_USED);
1280 	}
1281 
1282 	/* Make descriptor updates visible to hardware */
1283 	wmb();
1284 
1285 	/* When this happens, the hardware stats registers for
1286 	 * whatever caused this is updated, so we don't have to record
1287 	 * anything.
1288 	 */
1289 }
1290 
1291 static int gem_rx(struct macb_queue *queue, struct napi_struct *napi,
1292 		  int budget)
1293 {
1294 	struct macb *bp = queue->bp;
1295 	unsigned int		len;
1296 	unsigned int		entry;
1297 	struct sk_buff		*skb;
1298 	struct macb_dma_desc	*desc;
1299 	int			count = 0;
1300 
1301 	while (count < budget) {
1302 		u32 ctrl;
1303 		dma_addr_t addr;
1304 		bool rxused;
1305 
1306 		entry = macb_rx_ring_wrap(bp, queue->rx_tail);
1307 		desc = macb_rx_desc(queue, entry);
1308 
1309 		/* Make hw descriptor updates visible to CPU */
1310 		rmb();
1311 
1312 		rxused = (desc->addr & MACB_BIT(RX_USED)) ? true : false;
1313 		addr = macb_get_addr(bp, desc);
1314 
1315 		if (!rxused)
1316 			break;
1317 
1318 		/* Ensure ctrl is at least as up-to-date as rxused */
1319 		dma_rmb();
1320 
1321 		ctrl = desc->ctrl;
1322 
1323 		queue->rx_tail++;
1324 		count++;
1325 
1326 		if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
1327 			netdev_err(bp->dev,
1328 				   "not whole frame pointed by descriptor\n");
1329 			bp->dev->stats.rx_dropped++;
1330 			queue->stats.rx_dropped++;
1331 			break;
1332 		}
1333 		skb = queue->rx_skbuff[entry];
1334 		if (unlikely(!skb)) {
1335 			netdev_err(bp->dev,
1336 				   "inconsistent Rx descriptor chain\n");
1337 			bp->dev->stats.rx_dropped++;
1338 			queue->stats.rx_dropped++;
1339 			break;
1340 		}
1341 		/* now everything is ready for receiving packet */
1342 		queue->rx_skbuff[entry] = NULL;
1343 		len = ctrl & bp->rx_frm_len_mask;
1344 
1345 		netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
1346 
1347 		skb_put(skb, len);
1348 		dma_unmap_single(&bp->pdev->dev, addr,
1349 				 bp->rx_buffer_size, DMA_FROM_DEVICE);
1350 
1351 		skb->protocol = eth_type_trans(skb, bp->dev);
1352 		skb_checksum_none_assert(skb);
1353 		if (bp->dev->features & NETIF_F_RXCSUM &&
1354 		    !(bp->dev->flags & IFF_PROMISC) &&
1355 		    GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
1356 			skb->ip_summed = CHECKSUM_UNNECESSARY;
1357 
1358 		bp->dev->stats.rx_packets++;
1359 		queue->stats.rx_packets++;
1360 		bp->dev->stats.rx_bytes += skb->len;
1361 		queue->stats.rx_bytes += skb->len;
1362 
1363 		gem_ptp_do_rxstamp(bp, skb, desc);
1364 
1365 #if defined(DEBUG) && defined(VERBOSE_DEBUG)
1366 		netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1367 			    skb->len, skb->csum);
1368 		print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
1369 			       skb_mac_header(skb), 16, true);
1370 		print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
1371 			       skb->data, 32, true);
1372 #endif
1373 
1374 		napi_gro_receive(napi, skb);
1375 	}
1376 
1377 	gem_rx_refill(queue);
1378 
1379 	return count;
1380 }
1381 
1382 static int macb_rx_frame(struct macb_queue *queue, struct napi_struct *napi,
1383 			 unsigned int first_frag, unsigned int last_frag)
1384 {
1385 	unsigned int len;
1386 	unsigned int frag;
1387 	unsigned int offset;
1388 	struct sk_buff *skb;
1389 	struct macb_dma_desc *desc;
1390 	struct macb *bp = queue->bp;
1391 
1392 	desc = macb_rx_desc(queue, last_frag);
1393 	len = desc->ctrl & bp->rx_frm_len_mask;
1394 
1395 	netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
1396 		macb_rx_ring_wrap(bp, first_frag),
1397 		macb_rx_ring_wrap(bp, last_frag), len);
1398 
1399 	/* The ethernet header starts NET_IP_ALIGN bytes into the
1400 	 * first buffer. Since the header is 14 bytes, this makes the
1401 	 * payload word-aligned.
1402 	 *
1403 	 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1404 	 * the two padding bytes into the skb so that we avoid hitting
1405 	 * the slowpath in memcpy(), and pull them off afterwards.
1406 	 */
1407 	skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
1408 	if (!skb) {
1409 		bp->dev->stats.rx_dropped++;
1410 		for (frag = first_frag; ; frag++) {
1411 			desc = macb_rx_desc(queue, frag);
1412 			desc->addr &= ~MACB_BIT(RX_USED);
1413 			if (frag == last_frag)
1414 				break;
1415 		}
1416 
1417 		/* Make descriptor updates visible to hardware */
1418 		wmb();
1419 
1420 		return 1;
1421 	}
1422 
1423 	offset = 0;
1424 	len += NET_IP_ALIGN;
1425 	skb_checksum_none_assert(skb);
1426 	skb_put(skb, len);
1427 
1428 	for (frag = first_frag; ; frag++) {
1429 		unsigned int frag_len = bp->rx_buffer_size;
1430 
1431 		if (offset + frag_len > len) {
1432 			if (unlikely(frag != last_frag)) {
1433 				dev_kfree_skb_any(skb);
1434 				return -1;
1435 			}
1436 			frag_len = len - offset;
1437 		}
1438 		skb_copy_to_linear_data_offset(skb, offset,
1439 					       macb_rx_buffer(queue, frag),
1440 					       frag_len);
1441 		offset += bp->rx_buffer_size;
1442 		desc = macb_rx_desc(queue, frag);
1443 		desc->addr &= ~MACB_BIT(RX_USED);
1444 
1445 		if (frag == last_frag)
1446 			break;
1447 	}
1448 
1449 	/* Make descriptor updates visible to hardware */
1450 	wmb();
1451 
1452 	__skb_pull(skb, NET_IP_ALIGN);
1453 	skb->protocol = eth_type_trans(skb, bp->dev);
1454 
1455 	bp->dev->stats.rx_packets++;
1456 	bp->dev->stats.rx_bytes += skb->len;
1457 	netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1458 		    skb->len, skb->csum);
1459 	napi_gro_receive(napi, skb);
1460 
1461 	return 0;
1462 }
1463 
1464 static inline void macb_init_rx_ring(struct macb_queue *queue)
1465 {
1466 	struct macb *bp = queue->bp;
1467 	dma_addr_t addr;
1468 	struct macb_dma_desc *desc = NULL;
1469 	int i;
1470 
1471 	addr = queue->rx_buffers_dma;
1472 	for (i = 0; i < bp->rx_ring_size; i++) {
1473 		desc = macb_rx_desc(queue, i);
1474 		macb_set_addr(bp, desc, addr);
1475 		desc->ctrl = 0;
1476 		addr += bp->rx_buffer_size;
1477 	}
1478 	desc->addr |= MACB_BIT(RX_WRAP);
1479 	queue->rx_tail = 0;
1480 }
1481 
1482 static int macb_rx(struct macb_queue *queue, struct napi_struct *napi,
1483 		   int budget)
1484 {
1485 	struct macb *bp = queue->bp;
1486 	bool reset_rx_queue = false;
1487 	int received = 0;
1488 	unsigned int tail;
1489 	int first_frag = -1;
1490 
1491 	for (tail = queue->rx_tail; budget > 0; tail++) {
1492 		struct macb_dma_desc *desc = macb_rx_desc(queue, tail);
1493 		u32 ctrl;
1494 
1495 		/* Make hw descriptor updates visible to CPU */
1496 		rmb();
1497 
1498 		if (!(desc->addr & MACB_BIT(RX_USED)))
1499 			break;
1500 
1501 		/* Ensure ctrl is at least as up-to-date as addr */
1502 		dma_rmb();
1503 
1504 		ctrl = desc->ctrl;
1505 
1506 		if (ctrl & MACB_BIT(RX_SOF)) {
1507 			if (first_frag != -1)
1508 				discard_partial_frame(queue, first_frag, tail);
1509 			first_frag = tail;
1510 		}
1511 
1512 		if (ctrl & MACB_BIT(RX_EOF)) {
1513 			int dropped;
1514 
1515 			if (unlikely(first_frag == -1)) {
1516 				reset_rx_queue = true;
1517 				continue;
1518 			}
1519 
1520 			dropped = macb_rx_frame(queue, napi, first_frag, tail);
1521 			first_frag = -1;
1522 			if (unlikely(dropped < 0)) {
1523 				reset_rx_queue = true;
1524 				continue;
1525 			}
1526 			if (!dropped) {
1527 				received++;
1528 				budget--;
1529 			}
1530 		}
1531 	}
1532 
1533 	if (unlikely(reset_rx_queue)) {
1534 		unsigned long flags;
1535 		u32 ctrl;
1536 
1537 		netdev_err(bp->dev, "RX queue corruption: reset it\n");
1538 
1539 		spin_lock_irqsave(&bp->lock, flags);
1540 
1541 		ctrl = macb_readl(bp, NCR);
1542 		macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1543 
1544 		macb_init_rx_ring(queue);
1545 		queue_writel(queue, RBQP, queue->rx_ring_dma);
1546 
1547 		macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1548 
1549 		spin_unlock_irqrestore(&bp->lock, flags);
1550 		return received;
1551 	}
1552 
1553 	if (first_frag != -1)
1554 		queue->rx_tail = first_frag;
1555 	else
1556 		queue->rx_tail = tail;
1557 
1558 	return received;
1559 }
1560 
1561 static int macb_poll(struct napi_struct *napi, int budget)
1562 {
1563 	struct macb_queue *queue = container_of(napi, struct macb_queue, napi);
1564 	struct macb *bp = queue->bp;
1565 	int work_done;
1566 	u32 status;
1567 
1568 	status = macb_readl(bp, RSR);
1569 	macb_writel(bp, RSR, status);
1570 
1571 	netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
1572 		    (unsigned long)status, budget);
1573 
1574 	work_done = bp->macbgem_ops.mog_rx(queue, napi, budget);
1575 	if (work_done < budget) {
1576 		napi_complete_done(napi, work_done);
1577 
1578 		/* Packets received while interrupts were disabled */
1579 		status = macb_readl(bp, RSR);
1580 		if (status) {
1581 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1582 				queue_writel(queue, ISR, MACB_BIT(RCOMP));
1583 			napi_reschedule(napi);
1584 		} else {
1585 			queue_writel(queue, IER, bp->rx_intr_mask);
1586 		}
1587 	}
1588 
1589 	/* TODO: Handle errors */
1590 
1591 	return work_done;
1592 }
1593 
1594 static void macb_hresp_error_task(struct tasklet_struct *t)
1595 {
1596 	struct macb *bp = from_tasklet(bp, t, hresp_err_tasklet);
1597 	struct net_device *dev = bp->dev;
1598 	struct macb_queue *queue;
1599 	unsigned int q;
1600 	u32 ctrl;
1601 
1602 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1603 		queue_writel(queue, IDR, bp->rx_intr_mask |
1604 					 MACB_TX_INT_FLAGS |
1605 					 MACB_BIT(HRESP));
1606 	}
1607 	ctrl = macb_readl(bp, NCR);
1608 	ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
1609 	macb_writel(bp, NCR, ctrl);
1610 
1611 	netif_tx_stop_all_queues(dev);
1612 	netif_carrier_off(dev);
1613 
1614 	bp->macbgem_ops.mog_init_rings(bp);
1615 
1616 	/* Initialize TX and RX buffers */
1617 	macb_init_buffers(bp);
1618 
1619 	/* Enable interrupts */
1620 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1621 		queue_writel(queue, IER,
1622 			     bp->rx_intr_mask |
1623 			     MACB_TX_INT_FLAGS |
1624 			     MACB_BIT(HRESP));
1625 
1626 	ctrl |= MACB_BIT(RE) | MACB_BIT(TE);
1627 	macb_writel(bp, NCR, ctrl);
1628 
1629 	netif_carrier_on(dev);
1630 	netif_tx_start_all_queues(dev);
1631 }
1632 
1633 static void macb_tx_restart(struct macb_queue *queue)
1634 {
1635 	unsigned int head = queue->tx_head;
1636 	unsigned int tail = queue->tx_tail;
1637 	struct macb *bp = queue->bp;
1638 
1639 	if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1640 		queue_writel(queue, ISR, MACB_BIT(TXUBR));
1641 
1642 	if (head == tail)
1643 		return;
1644 
1645 	macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1646 }
1647 
1648 static irqreturn_t macb_wol_interrupt(int irq, void *dev_id)
1649 {
1650 	struct macb_queue *queue = dev_id;
1651 	struct macb *bp = queue->bp;
1652 	u32 status;
1653 
1654 	status = queue_readl(queue, ISR);
1655 
1656 	if (unlikely(!status))
1657 		return IRQ_NONE;
1658 
1659 	spin_lock(&bp->lock);
1660 
1661 	if (status & MACB_BIT(WOL)) {
1662 		queue_writel(queue, IDR, MACB_BIT(WOL));
1663 		macb_writel(bp, WOL, 0);
1664 		netdev_vdbg(bp->dev, "MACB WoL: queue = %u, isr = 0x%08lx\n",
1665 			    (unsigned int)(queue - bp->queues),
1666 			    (unsigned long)status);
1667 		if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1668 			queue_writel(queue, ISR, MACB_BIT(WOL));
1669 		pm_wakeup_event(&bp->pdev->dev, 0);
1670 	}
1671 
1672 	spin_unlock(&bp->lock);
1673 
1674 	return IRQ_HANDLED;
1675 }
1676 
1677 static irqreturn_t gem_wol_interrupt(int irq, void *dev_id)
1678 {
1679 	struct macb_queue *queue = dev_id;
1680 	struct macb *bp = queue->bp;
1681 	u32 status;
1682 
1683 	status = queue_readl(queue, ISR);
1684 
1685 	if (unlikely(!status))
1686 		return IRQ_NONE;
1687 
1688 	spin_lock(&bp->lock);
1689 
1690 	if (status & GEM_BIT(WOL)) {
1691 		queue_writel(queue, IDR, GEM_BIT(WOL));
1692 		gem_writel(bp, WOL, 0);
1693 		netdev_vdbg(bp->dev, "GEM WoL: queue = %u, isr = 0x%08lx\n",
1694 			    (unsigned int)(queue - bp->queues),
1695 			    (unsigned long)status);
1696 		if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1697 			queue_writel(queue, ISR, GEM_BIT(WOL));
1698 		pm_wakeup_event(&bp->pdev->dev, 0);
1699 	}
1700 
1701 	spin_unlock(&bp->lock);
1702 
1703 	return IRQ_HANDLED;
1704 }
1705 
1706 static irqreturn_t macb_interrupt(int irq, void *dev_id)
1707 {
1708 	struct macb_queue *queue = dev_id;
1709 	struct macb *bp = queue->bp;
1710 	struct net_device *dev = bp->dev;
1711 	u32 status, ctrl;
1712 
1713 	status = queue_readl(queue, ISR);
1714 
1715 	if (unlikely(!status))
1716 		return IRQ_NONE;
1717 
1718 	spin_lock(&bp->lock);
1719 
1720 	while (status) {
1721 		/* close possible race with dev_close */
1722 		if (unlikely(!netif_running(dev))) {
1723 			queue_writel(queue, IDR, -1);
1724 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1725 				queue_writel(queue, ISR, -1);
1726 			break;
1727 		}
1728 
1729 		netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1730 			    (unsigned int)(queue - bp->queues),
1731 			    (unsigned long)status);
1732 
1733 		if (status & bp->rx_intr_mask) {
1734 			/* There's no point taking any more interrupts
1735 			 * until we have processed the buffers. The
1736 			 * scheduling call may fail if the poll routine
1737 			 * is already scheduled, so disable interrupts
1738 			 * now.
1739 			 */
1740 			queue_writel(queue, IDR, bp->rx_intr_mask);
1741 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1742 				queue_writel(queue, ISR, MACB_BIT(RCOMP));
1743 
1744 			if (napi_schedule_prep(&queue->napi)) {
1745 				netdev_vdbg(bp->dev, "scheduling RX softirq\n");
1746 				__napi_schedule(&queue->napi);
1747 			}
1748 		}
1749 
1750 		if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
1751 			queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1752 			schedule_work(&queue->tx_error_task);
1753 
1754 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1755 				queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
1756 
1757 			break;
1758 		}
1759 
1760 		if (status & MACB_BIT(TCOMP))
1761 			macb_tx_interrupt(queue);
1762 
1763 		if (status & MACB_BIT(TXUBR))
1764 			macb_tx_restart(queue);
1765 
1766 		/* Link change detection isn't possible with RMII, so we'll
1767 		 * add that if/when we get our hands on a full-blown MII PHY.
1768 		 */
1769 
1770 		/* There is a hardware issue under heavy load where DMA can
1771 		 * stop, this causes endless "used buffer descriptor read"
1772 		 * interrupts but it can be cleared by re-enabling RX. See
1773 		 * the at91rm9200 manual, section 41.3.1 or the Zynq manual
1774 		 * section 16.7.4 for details. RXUBR is only enabled for
1775 		 * these two versions.
1776 		 */
1777 		if (status & MACB_BIT(RXUBR)) {
1778 			ctrl = macb_readl(bp, NCR);
1779 			macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1780 			wmb();
1781 			macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1782 
1783 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1784 				queue_writel(queue, ISR, MACB_BIT(RXUBR));
1785 		}
1786 
1787 		if (status & MACB_BIT(ISR_ROVR)) {
1788 			/* We missed at least one packet */
1789 			if (macb_is_gem(bp))
1790 				bp->hw_stats.gem.rx_overruns++;
1791 			else
1792 				bp->hw_stats.macb.rx_overruns++;
1793 
1794 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1795 				queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
1796 		}
1797 
1798 		if (status & MACB_BIT(HRESP)) {
1799 			tasklet_schedule(&bp->hresp_err_tasklet);
1800 			netdev_err(dev, "DMA bus error: HRESP not OK\n");
1801 
1802 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1803 				queue_writel(queue, ISR, MACB_BIT(HRESP));
1804 		}
1805 		status = queue_readl(queue, ISR);
1806 	}
1807 
1808 	spin_unlock(&bp->lock);
1809 
1810 	return IRQ_HANDLED;
1811 }
1812 
1813 #ifdef CONFIG_NET_POLL_CONTROLLER
1814 /* Polling receive - used by netconsole and other diagnostic tools
1815  * to allow network i/o with interrupts disabled.
1816  */
1817 static void macb_poll_controller(struct net_device *dev)
1818 {
1819 	struct macb *bp = netdev_priv(dev);
1820 	struct macb_queue *queue;
1821 	unsigned long flags;
1822 	unsigned int q;
1823 
1824 	local_irq_save(flags);
1825 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1826 		macb_interrupt(dev->irq, queue);
1827 	local_irq_restore(flags);
1828 }
1829 #endif
1830 
1831 static unsigned int macb_tx_map(struct macb *bp,
1832 				struct macb_queue *queue,
1833 				struct sk_buff *skb,
1834 				unsigned int hdrlen)
1835 {
1836 	dma_addr_t mapping;
1837 	unsigned int len, entry, i, tx_head = queue->tx_head;
1838 	struct macb_tx_skb *tx_skb = NULL;
1839 	struct macb_dma_desc *desc;
1840 	unsigned int offset, size, count = 0;
1841 	unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
1842 	unsigned int eof = 1, mss_mfs = 0;
1843 	u32 ctrl, lso_ctrl = 0, seq_ctrl = 0;
1844 
1845 	/* LSO */
1846 	if (skb_shinfo(skb)->gso_size != 0) {
1847 		if (ip_hdr(skb)->protocol == IPPROTO_UDP)
1848 			/* UDP - UFO */
1849 			lso_ctrl = MACB_LSO_UFO_ENABLE;
1850 		else
1851 			/* TCP - TSO */
1852 			lso_ctrl = MACB_LSO_TSO_ENABLE;
1853 	}
1854 
1855 	/* First, map non-paged data */
1856 	len = skb_headlen(skb);
1857 
1858 	/* first buffer length */
1859 	size = hdrlen;
1860 
1861 	offset = 0;
1862 	while (len) {
1863 		entry = macb_tx_ring_wrap(bp, tx_head);
1864 		tx_skb = &queue->tx_skb[entry];
1865 
1866 		mapping = dma_map_single(&bp->pdev->dev,
1867 					 skb->data + offset,
1868 					 size, DMA_TO_DEVICE);
1869 		if (dma_mapping_error(&bp->pdev->dev, mapping))
1870 			goto dma_error;
1871 
1872 		/* Save info to properly release resources */
1873 		tx_skb->skb = NULL;
1874 		tx_skb->mapping = mapping;
1875 		tx_skb->size = size;
1876 		tx_skb->mapped_as_page = false;
1877 
1878 		len -= size;
1879 		offset += size;
1880 		count++;
1881 		tx_head++;
1882 
1883 		size = min(len, bp->max_tx_length);
1884 	}
1885 
1886 	/* Then, map paged data from fragments */
1887 	for (f = 0; f < nr_frags; f++) {
1888 		const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1889 
1890 		len = skb_frag_size(frag);
1891 		offset = 0;
1892 		while (len) {
1893 			size = min(len, bp->max_tx_length);
1894 			entry = macb_tx_ring_wrap(bp, tx_head);
1895 			tx_skb = &queue->tx_skb[entry];
1896 
1897 			mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1898 						   offset, size, DMA_TO_DEVICE);
1899 			if (dma_mapping_error(&bp->pdev->dev, mapping))
1900 				goto dma_error;
1901 
1902 			/* Save info to properly release resources */
1903 			tx_skb->skb = NULL;
1904 			tx_skb->mapping = mapping;
1905 			tx_skb->size = size;
1906 			tx_skb->mapped_as_page = true;
1907 
1908 			len -= size;
1909 			offset += size;
1910 			count++;
1911 			tx_head++;
1912 		}
1913 	}
1914 
1915 	/* Should never happen */
1916 	if (unlikely(!tx_skb)) {
1917 		netdev_err(bp->dev, "BUG! empty skb!\n");
1918 		return 0;
1919 	}
1920 
1921 	/* This is the last buffer of the frame: save socket buffer */
1922 	tx_skb->skb = skb;
1923 
1924 	/* Update TX ring: update buffer descriptors in reverse order
1925 	 * to avoid race condition
1926 	 */
1927 
1928 	/* Set 'TX_USED' bit in buffer descriptor at tx_head position
1929 	 * to set the end of TX queue
1930 	 */
1931 	i = tx_head;
1932 	entry = macb_tx_ring_wrap(bp, i);
1933 	ctrl = MACB_BIT(TX_USED);
1934 	desc = macb_tx_desc(queue, entry);
1935 	desc->ctrl = ctrl;
1936 
1937 	if (lso_ctrl) {
1938 		if (lso_ctrl == MACB_LSO_UFO_ENABLE)
1939 			/* include header and FCS in value given to h/w */
1940 			mss_mfs = skb_shinfo(skb)->gso_size +
1941 					skb_transport_offset(skb) +
1942 					ETH_FCS_LEN;
1943 		else /* TSO */ {
1944 			mss_mfs = skb_shinfo(skb)->gso_size;
1945 			/* TCP Sequence Number Source Select
1946 			 * can be set only for TSO
1947 			 */
1948 			seq_ctrl = 0;
1949 		}
1950 	}
1951 
1952 	do {
1953 		i--;
1954 		entry = macb_tx_ring_wrap(bp, i);
1955 		tx_skb = &queue->tx_skb[entry];
1956 		desc = macb_tx_desc(queue, entry);
1957 
1958 		ctrl = (u32)tx_skb->size;
1959 		if (eof) {
1960 			ctrl |= MACB_BIT(TX_LAST);
1961 			eof = 0;
1962 		}
1963 		if (unlikely(entry == (bp->tx_ring_size - 1)))
1964 			ctrl |= MACB_BIT(TX_WRAP);
1965 
1966 		/* First descriptor is header descriptor */
1967 		if (i == queue->tx_head) {
1968 			ctrl |= MACB_BF(TX_LSO, lso_ctrl);
1969 			ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl);
1970 			if ((bp->dev->features & NETIF_F_HW_CSUM) &&
1971 			    skb->ip_summed != CHECKSUM_PARTIAL && !lso_ctrl)
1972 				ctrl |= MACB_BIT(TX_NOCRC);
1973 		} else
1974 			/* Only set MSS/MFS on payload descriptors
1975 			 * (second or later descriptor)
1976 			 */
1977 			ctrl |= MACB_BF(MSS_MFS, mss_mfs);
1978 
1979 		/* Set TX buffer descriptor */
1980 		macb_set_addr(bp, desc, tx_skb->mapping);
1981 		/* desc->addr must be visible to hardware before clearing
1982 		 * 'TX_USED' bit in desc->ctrl.
1983 		 */
1984 		wmb();
1985 		desc->ctrl = ctrl;
1986 	} while (i != queue->tx_head);
1987 
1988 	queue->tx_head = tx_head;
1989 
1990 	return count;
1991 
1992 dma_error:
1993 	netdev_err(bp->dev, "TX DMA map failed\n");
1994 
1995 	for (i = queue->tx_head; i != tx_head; i++) {
1996 		tx_skb = macb_tx_skb(queue, i);
1997 
1998 		macb_tx_unmap(bp, tx_skb);
1999 	}
2000 
2001 	return 0;
2002 }
2003 
2004 static netdev_features_t macb_features_check(struct sk_buff *skb,
2005 					     struct net_device *dev,
2006 					     netdev_features_t features)
2007 {
2008 	unsigned int nr_frags, f;
2009 	unsigned int hdrlen;
2010 
2011 	/* Validate LSO compatibility */
2012 
2013 	/* there is only one buffer or protocol is not UDP */
2014 	if (!skb_is_nonlinear(skb) || (ip_hdr(skb)->protocol != IPPROTO_UDP))
2015 		return features;
2016 
2017 	/* length of header */
2018 	hdrlen = skb_transport_offset(skb);
2019 
2020 	/* For UFO only:
2021 	 * When software supplies two or more payload buffers all payload buffers
2022 	 * apart from the last must be a multiple of 8 bytes in size.
2023 	 */
2024 	if (!IS_ALIGNED(skb_headlen(skb) - hdrlen, MACB_TX_LEN_ALIGN))
2025 		return features & ~MACB_NETIF_LSO;
2026 
2027 	nr_frags = skb_shinfo(skb)->nr_frags;
2028 	/* No need to check last fragment */
2029 	nr_frags--;
2030 	for (f = 0; f < nr_frags; f++) {
2031 		const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
2032 
2033 		if (!IS_ALIGNED(skb_frag_size(frag), MACB_TX_LEN_ALIGN))
2034 			return features & ~MACB_NETIF_LSO;
2035 	}
2036 	return features;
2037 }
2038 
2039 static inline int macb_clear_csum(struct sk_buff *skb)
2040 {
2041 	/* no change for packets without checksum offloading */
2042 	if (skb->ip_summed != CHECKSUM_PARTIAL)
2043 		return 0;
2044 
2045 	/* make sure we can modify the header */
2046 	if (unlikely(skb_cow_head(skb, 0)))
2047 		return -1;
2048 
2049 	/* initialize checksum field
2050 	 * This is required - at least for Zynq, which otherwise calculates
2051 	 * wrong UDP header checksums for UDP packets with UDP data len <=2
2052 	 */
2053 	*(__sum16 *)(skb_checksum_start(skb) + skb->csum_offset) = 0;
2054 	return 0;
2055 }
2056 
2057 static int macb_pad_and_fcs(struct sk_buff **skb, struct net_device *ndev)
2058 {
2059 	bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb) ||
2060 		      skb_is_nonlinear(*skb);
2061 	int padlen = ETH_ZLEN - (*skb)->len;
2062 	int headroom = skb_headroom(*skb);
2063 	int tailroom = skb_tailroom(*skb);
2064 	struct sk_buff *nskb;
2065 	u32 fcs;
2066 
2067 	if (!(ndev->features & NETIF_F_HW_CSUM) ||
2068 	    !((*skb)->ip_summed != CHECKSUM_PARTIAL) ||
2069 	    skb_shinfo(*skb)->gso_size)	/* Not available for GSO */
2070 		return 0;
2071 
2072 	if (padlen <= 0) {
2073 		/* FCS could be appeded to tailroom. */
2074 		if (tailroom >= ETH_FCS_LEN)
2075 			goto add_fcs;
2076 		/* FCS could be appeded by moving data to headroom. */
2077 		else if (!cloned && headroom + tailroom >= ETH_FCS_LEN)
2078 			padlen = 0;
2079 		/* No room for FCS, need to reallocate skb. */
2080 		else
2081 			padlen = ETH_FCS_LEN;
2082 	} else {
2083 		/* Add room for FCS. */
2084 		padlen += ETH_FCS_LEN;
2085 	}
2086 
2087 	if (!cloned && headroom + tailroom >= padlen) {
2088 		(*skb)->data = memmove((*skb)->head, (*skb)->data, (*skb)->len);
2089 		skb_set_tail_pointer(*skb, (*skb)->len);
2090 	} else {
2091 		nskb = skb_copy_expand(*skb, 0, padlen, GFP_ATOMIC);
2092 		if (!nskb)
2093 			return -ENOMEM;
2094 
2095 		dev_consume_skb_any(*skb);
2096 		*skb = nskb;
2097 	}
2098 
2099 	if (padlen > ETH_FCS_LEN)
2100 		skb_put_zero(*skb, padlen - ETH_FCS_LEN);
2101 
2102 add_fcs:
2103 	/* set FCS to packet */
2104 	fcs = crc32_le(~0, (*skb)->data, (*skb)->len);
2105 	fcs = ~fcs;
2106 
2107 	skb_put_u8(*skb, fcs		& 0xff);
2108 	skb_put_u8(*skb, (fcs >> 8)	& 0xff);
2109 	skb_put_u8(*skb, (fcs >> 16)	& 0xff);
2110 	skb_put_u8(*skb, (fcs >> 24)	& 0xff);
2111 
2112 	return 0;
2113 }
2114 
2115 static netdev_tx_t macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
2116 {
2117 	u16 queue_index = skb_get_queue_mapping(skb);
2118 	struct macb *bp = netdev_priv(dev);
2119 	struct macb_queue *queue = &bp->queues[queue_index];
2120 	unsigned long flags;
2121 	unsigned int desc_cnt, nr_frags, frag_size, f;
2122 	unsigned int hdrlen;
2123 	bool is_lso;
2124 	netdev_tx_t ret = NETDEV_TX_OK;
2125 
2126 	if (macb_clear_csum(skb)) {
2127 		dev_kfree_skb_any(skb);
2128 		return ret;
2129 	}
2130 
2131 	if (macb_pad_and_fcs(&skb, dev)) {
2132 		dev_kfree_skb_any(skb);
2133 		return ret;
2134 	}
2135 
2136 	is_lso = (skb_shinfo(skb)->gso_size != 0);
2137 
2138 	if (is_lso) {
2139 		/* length of headers */
2140 		if (ip_hdr(skb)->protocol == IPPROTO_UDP)
2141 			/* only queue eth + ip headers separately for UDP */
2142 			hdrlen = skb_transport_offset(skb);
2143 		else
2144 			hdrlen = skb_transport_offset(skb) + tcp_hdrlen(skb);
2145 		if (skb_headlen(skb) < hdrlen) {
2146 			netdev_err(bp->dev, "Error - LSO headers fragmented!!!\n");
2147 			/* if this is required, would need to copy to single buffer */
2148 			return NETDEV_TX_BUSY;
2149 		}
2150 	} else
2151 		hdrlen = min(skb_headlen(skb), bp->max_tx_length);
2152 
2153 #if defined(DEBUG) && defined(VERBOSE_DEBUG)
2154 	netdev_vdbg(bp->dev,
2155 		    "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
2156 		    queue_index, skb->len, skb->head, skb->data,
2157 		    skb_tail_pointer(skb), skb_end_pointer(skb));
2158 	print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
2159 		       skb->data, 16, true);
2160 #endif
2161 
2162 	/* Count how many TX buffer descriptors are needed to send this
2163 	 * socket buffer: skb fragments of jumbo frames may need to be
2164 	 * split into many buffer descriptors.
2165 	 */
2166 	if (is_lso && (skb_headlen(skb) > hdrlen))
2167 		/* extra header descriptor if also payload in first buffer */
2168 		desc_cnt = DIV_ROUND_UP((skb_headlen(skb) - hdrlen), bp->max_tx_length) + 1;
2169 	else
2170 		desc_cnt = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
2171 	nr_frags = skb_shinfo(skb)->nr_frags;
2172 	for (f = 0; f < nr_frags; f++) {
2173 		frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
2174 		desc_cnt += DIV_ROUND_UP(frag_size, bp->max_tx_length);
2175 	}
2176 
2177 	spin_lock_irqsave(&bp->lock, flags);
2178 
2179 	/* This is a hard error, log it. */
2180 	if (CIRC_SPACE(queue->tx_head, queue->tx_tail,
2181 		       bp->tx_ring_size) < desc_cnt) {
2182 		netif_stop_subqueue(dev, queue_index);
2183 		spin_unlock_irqrestore(&bp->lock, flags);
2184 		netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
2185 			   queue->tx_head, queue->tx_tail);
2186 		return NETDEV_TX_BUSY;
2187 	}
2188 
2189 	/* Map socket buffer for DMA transfer */
2190 	if (!macb_tx_map(bp, queue, skb, hdrlen)) {
2191 		dev_kfree_skb_any(skb);
2192 		goto unlock;
2193 	}
2194 
2195 	/* Make newly initialized descriptor visible to hardware */
2196 	wmb();
2197 	skb_tx_timestamp(skb);
2198 
2199 	macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
2200 
2201 	if (CIRC_SPACE(queue->tx_head, queue->tx_tail, bp->tx_ring_size) < 1)
2202 		netif_stop_subqueue(dev, queue_index);
2203 
2204 unlock:
2205 	spin_unlock_irqrestore(&bp->lock, flags);
2206 
2207 	return ret;
2208 }
2209 
2210 static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
2211 {
2212 	if (!macb_is_gem(bp)) {
2213 		bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
2214 	} else {
2215 		bp->rx_buffer_size = size;
2216 
2217 		if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
2218 			netdev_dbg(bp->dev,
2219 				   "RX buffer must be multiple of %d bytes, expanding\n",
2220 				   RX_BUFFER_MULTIPLE);
2221 			bp->rx_buffer_size =
2222 				roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
2223 		}
2224 	}
2225 
2226 	netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%zu]\n",
2227 		   bp->dev->mtu, bp->rx_buffer_size);
2228 }
2229 
2230 static void gem_free_rx_buffers(struct macb *bp)
2231 {
2232 	struct sk_buff		*skb;
2233 	struct macb_dma_desc	*desc;
2234 	struct macb_queue *queue;
2235 	dma_addr_t		addr;
2236 	unsigned int q;
2237 	int i;
2238 
2239 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2240 		if (!queue->rx_skbuff)
2241 			continue;
2242 
2243 		for (i = 0; i < bp->rx_ring_size; i++) {
2244 			skb = queue->rx_skbuff[i];
2245 
2246 			if (!skb)
2247 				continue;
2248 
2249 			desc = macb_rx_desc(queue, i);
2250 			addr = macb_get_addr(bp, desc);
2251 
2252 			dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
2253 					DMA_FROM_DEVICE);
2254 			dev_kfree_skb_any(skb);
2255 			skb = NULL;
2256 		}
2257 
2258 		kfree(queue->rx_skbuff);
2259 		queue->rx_skbuff = NULL;
2260 	}
2261 }
2262 
2263 static void macb_free_rx_buffers(struct macb *bp)
2264 {
2265 	struct macb_queue *queue = &bp->queues[0];
2266 
2267 	if (queue->rx_buffers) {
2268 		dma_free_coherent(&bp->pdev->dev,
2269 				  bp->rx_ring_size * bp->rx_buffer_size,
2270 				  queue->rx_buffers, queue->rx_buffers_dma);
2271 		queue->rx_buffers = NULL;
2272 	}
2273 }
2274 
2275 static void macb_free_consistent(struct macb *bp)
2276 {
2277 	struct macb_queue *queue;
2278 	unsigned int q;
2279 	int size;
2280 
2281 	bp->macbgem_ops.mog_free_rx_buffers(bp);
2282 
2283 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2284 		kfree(queue->tx_skb);
2285 		queue->tx_skb = NULL;
2286 		if (queue->tx_ring) {
2287 			size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
2288 			dma_free_coherent(&bp->pdev->dev, size,
2289 					  queue->tx_ring, queue->tx_ring_dma);
2290 			queue->tx_ring = NULL;
2291 		}
2292 		if (queue->rx_ring) {
2293 			size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
2294 			dma_free_coherent(&bp->pdev->dev, size,
2295 					  queue->rx_ring, queue->rx_ring_dma);
2296 			queue->rx_ring = NULL;
2297 		}
2298 	}
2299 }
2300 
2301 static int gem_alloc_rx_buffers(struct macb *bp)
2302 {
2303 	struct macb_queue *queue;
2304 	unsigned int q;
2305 	int size;
2306 
2307 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2308 		size = bp->rx_ring_size * sizeof(struct sk_buff *);
2309 		queue->rx_skbuff = kzalloc(size, GFP_KERNEL);
2310 		if (!queue->rx_skbuff)
2311 			return -ENOMEM;
2312 		else
2313 			netdev_dbg(bp->dev,
2314 				   "Allocated %d RX struct sk_buff entries at %p\n",
2315 				   bp->rx_ring_size, queue->rx_skbuff);
2316 	}
2317 	return 0;
2318 }
2319 
2320 static int macb_alloc_rx_buffers(struct macb *bp)
2321 {
2322 	struct macb_queue *queue = &bp->queues[0];
2323 	int size;
2324 
2325 	size = bp->rx_ring_size * bp->rx_buffer_size;
2326 	queue->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
2327 					    &queue->rx_buffers_dma, GFP_KERNEL);
2328 	if (!queue->rx_buffers)
2329 		return -ENOMEM;
2330 
2331 	netdev_dbg(bp->dev,
2332 		   "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
2333 		   size, (unsigned long)queue->rx_buffers_dma, queue->rx_buffers);
2334 	return 0;
2335 }
2336 
2337 static int macb_alloc_consistent(struct macb *bp)
2338 {
2339 	struct macb_queue *queue;
2340 	unsigned int q;
2341 	int size;
2342 
2343 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2344 		size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
2345 		queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
2346 						    &queue->tx_ring_dma,
2347 						    GFP_KERNEL);
2348 		if (!queue->tx_ring)
2349 			goto out_err;
2350 		netdev_dbg(bp->dev,
2351 			   "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
2352 			   q, size, (unsigned long)queue->tx_ring_dma,
2353 			   queue->tx_ring);
2354 
2355 		size = bp->tx_ring_size * sizeof(struct macb_tx_skb);
2356 		queue->tx_skb = kmalloc(size, GFP_KERNEL);
2357 		if (!queue->tx_skb)
2358 			goto out_err;
2359 
2360 		size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
2361 		queue->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
2362 						 &queue->rx_ring_dma, GFP_KERNEL);
2363 		if (!queue->rx_ring)
2364 			goto out_err;
2365 		netdev_dbg(bp->dev,
2366 			   "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
2367 			   size, (unsigned long)queue->rx_ring_dma, queue->rx_ring);
2368 	}
2369 	if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
2370 		goto out_err;
2371 
2372 	return 0;
2373 
2374 out_err:
2375 	macb_free_consistent(bp);
2376 	return -ENOMEM;
2377 }
2378 
2379 static void gem_init_rings(struct macb *bp)
2380 {
2381 	struct macb_queue *queue;
2382 	struct macb_dma_desc *desc = NULL;
2383 	unsigned int q;
2384 	int i;
2385 
2386 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2387 		for (i = 0; i < bp->tx_ring_size; i++) {
2388 			desc = macb_tx_desc(queue, i);
2389 			macb_set_addr(bp, desc, 0);
2390 			desc->ctrl = MACB_BIT(TX_USED);
2391 		}
2392 		desc->ctrl |= MACB_BIT(TX_WRAP);
2393 		queue->tx_head = 0;
2394 		queue->tx_tail = 0;
2395 
2396 		queue->rx_tail = 0;
2397 		queue->rx_prepared_head = 0;
2398 
2399 		gem_rx_refill(queue);
2400 	}
2401 
2402 }
2403 
2404 static void macb_init_rings(struct macb *bp)
2405 {
2406 	int i;
2407 	struct macb_dma_desc *desc = NULL;
2408 
2409 	macb_init_rx_ring(&bp->queues[0]);
2410 
2411 	for (i = 0; i < bp->tx_ring_size; i++) {
2412 		desc = macb_tx_desc(&bp->queues[0], i);
2413 		macb_set_addr(bp, desc, 0);
2414 		desc->ctrl = MACB_BIT(TX_USED);
2415 	}
2416 	bp->queues[0].tx_head = 0;
2417 	bp->queues[0].tx_tail = 0;
2418 	desc->ctrl |= MACB_BIT(TX_WRAP);
2419 }
2420 
2421 static void macb_reset_hw(struct macb *bp)
2422 {
2423 	struct macb_queue *queue;
2424 	unsigned int q;
2425 	u32 ctrl = macb_readl(bp, NCR);
2426 
2427 	/* Disable RX and TX (XXX: Should we halt the transmission
2428 	 * more gracefully?)
2429 	 */
2430 	ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
2431 
2432 	/* Clear the stats registers (XXX: Update stats first?) */
2433 	ctrl |= MACB_BIT(CLRSTAT);
2434 
2435 	macb_writel(bp, NCR, ctrl);
2436 
2437 	/* Clear all status flags */
2438 	macb_writel(bp, TSR, -1);
2439 	macb_writel(bp, RSR, -1);
2440 
2441 	/* Disable all interrupts */
2442 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2443 		queue_writel(queue, IDR, -1);
2444 		queue_readl(queue, ISR);
2445 		if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
2446 			queue_writel(queue, ISR, -1);
2447 	}
2448 }
2449 
2450 static u32 gem_mdc_clk_div(struct macb *bp)
2451 {
2452 	u32 config;
2453 	unsigned long pclk_hz = clk_get_rate(bp->pclk);
2454 
2455 	if (pclk_hz <= 20000000)
2456 		config = GEM_BF(CLK, GEM_CLK_DIV8);
2457 	else if (pclk_hz <= 40000000)
2458 		config = GEM_BF(CLK, GEM_CLK_DIV16);
2459 	else if (pclk_hz <= 80000000)
2460 		config = GEM_BF(CLK, GEM_CLK_DIV32);
2461 	else if (pclk_hz <= 120000000)
2462 		config = GEM_BF(CLK, GEM_CLK_DIV48);
2463 	else if (pclk_hz <= 160000000)
2464 		config = GEM_BF(CLK, GEM_CLK_DIV64);
2465 	else
2466 		config = GEM_BF(CLK, GEM_CLK_DIV96);
2467 
2468 	return config;
2469 }
2470 
2471 static u32 macb_mdc_clk_div(struct macb *bp)
2472 {
2473 	u32 config;
2474 	unsigned long pclk_hz;
2475 
2476 	if (macb_is_gem(bp))
2477 		return gem_mdc_clk_div(bp);
2478 
2479 	pclk_hz = clk_get_rate(bp->pclk);
2480 	if (pclk_hz <= 20000000)
2481 		config = MACB_BF(CLK, MACB_CLK_DIV8);
2482 	else if (pclk_hz <= 40000000)
2483 		config = MACB_BF(CLK, MACB_CLK_DIV16);
2484 	else if (pclk_hz <= 80000000)
2485 		config = MACB_BF(CLK, MACB_CLK_DIV32);
2486 	else
2487 		config = MACB_BF(CLK, MACB_CLK_DIV64);
2488 
2489 	return config;
2490 }
2491 
2492 /* Get the DMA bus width field of the network configuration register that we
2493  * should program.  We find the width from decoding the design configuration
2494  * register to find the maximum supported data bus width.
2495  */
2496 static u32 macb_dbw(struct macb *bp)
2497 {
2498 	if (!macb_is_gem(bp))
2499 		return 0;
2500 
2501 	switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
2502 	case 4:
2503 		return GEM_BF(DBW, GEM_DBW128);
2504 	case 2:
2505 		return GEM_BF(DBW, GEM_DBW64);
2506 	case 1:
2507 	default:
2508 		return GEM_BF(DBW, GEM_DBW32);
2509 	}
2510 }
2511 
2512 /* Configure the receive DMA engine
2513  * - use the correct receive buffer size
2514  * - set best burst length for DMA operations
2515  *   (if not supported by FIFO, it will fallback to default)
2516  * - set both rx/tx packet buffers to full memory size
2517  * These are configurable parameters for GEM.
2518  */
2519 static void macb_configure_dma(struct macb *bp)
2520 {
2521 	struct macb_queue *queue;
2522 	u32 buffer_size;
2523 	unsigned int q;
2524 	u32 dmacfg;
2525 
2526 	buffer_size = bp->rx_buffer_size / RX_BUFFER_MULTIPLE;
2527 	if (macb_is_gem(bp)) {
2528 		dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
2529 		for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2530 			if (q)
2531 				queue_writel(queue, RBQS, buffer_size);
2532 			else
2533 				dmacfg |= GEM_BF(RXBS, buffer_size);
2534 		}
2535 		if (bp->dma_burst_length)
2536 			dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
2537 		dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
2538 		dmacfg &= ~GEM_BIT(ENDIA_PKT);
2539 
2540 		if (bp->native_io)
2541 			dmacfg &= ~GEM_BIT(ENDIA_DESC);
2542 		else
2543 			dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
2544 
2545 		if (bp->dev->features & NETIF_F_HW_CSUM)
2546 			dmacfg |= GEM_BIT(TXCOEN);
2547 		else
2548 			dmacfg &= ~GEM_BIT(TXCOEN);
2549 
2550 		dmacfg &= ~GEM_BIT(ADDR64);
2551 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2552 		if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2553 			dmacfg |= GEM_BIT(ADDR64);
2554 #endif
2555 #ifdef CONFIG_MACB_USE_HWSTAMP
2556 		if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
2557 			dmacfg |= GEM_BIT(RXEXT) | GEM_BIT(TXEXT);
2558 #endif
2559 		netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
2560 			   dmacfg);
2561 		gem_writel(bp, DMACFG, dmacfg);
2562 	}
2563 }
2564 
2565 static void macb_init_hw(struct macb *bp)
2566 {
2567 	u32 config;
2568 
2569 	macb_reset_hw(bp);
2570 	macb_set_hwaddr(bp);
2571 
2572 	config = macb_mdc_clk_div(bp);
2573 	config |= MACB_BF(RBOF, NET_IP_ALIGN);	/* Make eth data aligned */
2574 	config |= MACB_BIT(DRFCS);		/* Discard Rx FCS */
2575 	if (bp->caps & MACB_CAPS_JUMBO)
2576 		config |= MACB_BIT(JFRAME);	/* Enable jumbo frames */
2577 	else
2578 		config |= MACB_BIT(BIG);	/* Receive oversized frames */
2579 	if (bp->dev->flags & IFF_PROMISC)
2580 		config |= MACB_BIT(CAF);	/* Copy All Frames */
2581 	else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
2582 		config |= GEM_BIT(RXCOEN);
2583 	if (!(bp->dev->flags & IFF_BROADCAST))
2584 		config |= MACB_BIT(NBC);	/* No BroadCast */
2585 	config |= macb_dbw(bp);
2586 	macb_writel(bp, NCFGR, config);
2587 	if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
2588 		gem_writel(bp, JML, bp->jumbo_max_len);
2589 	bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
2590 	if (bp->caps & MACB_CAPS_JUMBO)
2591 		bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
2592 
2593 	macb_configure_dma(bp);
2594 }
2595 
2596 /* The hash address register is 64 bits long and takes up two
2597  * locations in the memory map.  The least significant bits are stored
2598  * in EMAC_HSL and the most significant bits in EMAC_HSH.
2599  *
2600  * The unicast hash enable and the multicast hash enable bits in the
2601  * network configuration register enable the reception of hash matched
2602  * frames. The destination address is reduced to a 6 bit index into
2603  * the 64 bit hash register using the following hash function.  The
2604  * hash function is an exclusive or of every sixth bit of the
2605  * destination address.
2606  *
2607  * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2608  * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2609  * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2610  * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2611  * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2612  * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2613  *
2614  * da[0] represents the least significant bit of the first byte
2615  * received, that is, the multicast/unicast indicator, and da[47]
2616  * represents the most significant bit of the last byte received.  If
2617  * the hash index, hi[n], points to a bit that is set in the hash
2618  * register then the frame will be matched according to whether the
2619  * frame is multicast or unicast.  A multicast match will be signalled
2620  * if the multicast hash enable bit is set, da[0] is 1 and the hash
2621  * index points to a bit set in the hash register.  A unicast match
2622  * will be signalled if the unicast hash enable bit is set, da[0] is 0
2623  * and the hash index points to a bit set in the hash register.  To
2624  * receive all multicast frames, the hash register should be set with
2625  * all ones and the multicast hash enable bit should be set in the
2626  * network configuration register.
2627  */
2628 
2629 static inline int hash_bit_value(int bitnr, __u8 *addr)
2630 {
2631 	if (addr[bitnr / 8] & (1 << (bitnr % 8)))
2632 		return 1;
2633 	return 0;
2634 }
2635 
2636 /* Return the hash index value for the specified address. */
2637 static int hash_get_index(__u8 *addr)
2638 {
2639 	int i, j, bitval;
2640 	int hash_index = 0;
2641 
2642 	for (j = 0; j < 6; j++) {
2643 		for (i = 0, bitval = 0; i < 8; i++)
2644 			bitval ^= hash_bit_value(i * 6 + j, addr);
2645 
2646 		hash_index |= (bitval << j);
2647 	}
2648 
2649 	return hash_index;
2650 }
2651 
2652 /* Add multicast addresses to the internal multicast-hash table. */
2653 static void macb_sethashtable(struct net_device *dev)
2654 {
2655 	struct netdev_hw_addr *ha;
2656 	unsigned long mc_filter[2];
2657 	unsigned int bitnr;
2658 	struct macb *bp = netdev_priv(dev);
2659 
2660 	mc_filter[0] = 0;
2661 	mc_filter[1] = 0;
2662 
2663 	netdev_for_each_mc_addr(ha, dev) {
2664 		bitnr = hash_get_index(ha->addr);
2665 		mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
2666 	}
2667 
2668 	macb_or_gem_writel(bp, HRB, mc_filter[0]);
2669 	macb_or_gem_writel(bp, HRT, mc_filter[1]);
2670 }
2671 
2672 /* Enable/Disable promiscuous and multicast modes. */
2673 static void macb_set_rx_mode(struct net_device *dev)
2674 {
2675 	unsigned long cfg;
2676 	struct macb *bp = netdev_priv(dev);
2677 
2678 	cfg = macb_readl(bp, NCFGR);
2679 
2680 	if (dev->flags & IFF_PROMISC) {
2681 		/* Enable promiscuous mode */
2682 		cfg |= MACB_BIT(CAF);
2683 
2684 		/* Disable RX checksum offload */
2685 		if (macb_is_gem(bp))
2686 			cfg &= ~GEM_BIT(RXCOEN);
2687 	} else {
2688 		/* Disable promiscuous mode */
2689 		cfg &= ~MACB_BIT(CAF);
2690 
2691 		/* Enable RX checksum offload only if requested */
2692 		if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
2693 			cfg |= GEM_BIT(RXCOEN);
2694 	}
2695 
2696 	if (dev->flags & IFF_ALLMULTI) {
2697 		/* Enable all multicast mode */
2698 		macb_or_gem_writel(bp, HRB, -1);
2699 		macb_or_gem_writel(bp, HRT, -1);
2700 		cfg |= MACB_BIT(NCFGR_MTI);
2701 	} else if (!netdev_mc_empty(dev)) {
2702 		/* Enable specific multicasts */
2703 		macb_sethashtable(dev);
2704 		cfg |= MACB_BIT(NCFGR_MTI);
2705 	} else if (dev->flags & (~IFF_ALLMULTI)) {
2706 		/* Disable all multicast mode */
2707 		macb_or_gem_writel(bp, HRB, 0);
2708 		macb_or_gem_writel(bp, HRT, 0);
2709 		cfg &= ~MACB_BIT(NCFGR_MTI);
2710 	}
2711 
2712 	macb_writel(bp, NCFGR, cfg);
2713 }
2714 
2715 static int macb_open(struct net_device *dev)
2716 {
2717 	size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
2718 	struct macb *bp = netdev_priv(dev);
2719 	struct macb_queue *queue;
2720 	unsigned int q;
2721 	int err;
2722 
2723 	netdev_dbg(bp->dev, "open\n");
2724 
2725 	err = pm_runtime_get_sync(&bp->pdev->dev);
2726 	if (err < 0)
2727 		goto pm_exit;
2728 
2729 	/* RX buffers initialization */
2730 	macb_init_rx_buffer_size(bp, bufsz);
2731 
2732 	err = macb_alloc_consistent(bp);
2733 	if (err) {
2734 		netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
2735 			   err);
2736 		goto pm_exit;
2737 	}
2738 
2739 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2740 		napi_enable(&queue->napi);
2741 
2742 	macb_init_hw(bp);
2743 
2744 	err = macb_phylink_connect(bp);
2745 	if (err)
2746 		goto reset_hw;
2747 
2748 	netif_tx_start_all_queues(dev);
2749 
2750 	if (bp->ptp_info)
2751 		bp->ptp_info->ptp_init(dev);
2752 
2753 	return 0;
2754 
2755 reset_hw:
2756 	macb_reset_hw(bp);
2757 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2758 		napi_disable(&queue->napi);
2759 	macb_free_consistent(bp);
2760 pm_exit:
2761 	pm_runtime_put_sync(&bp->pdev->dev);
2762 	return err;
2763 }
2764 
2765 static int macb_close(struct net_device *dev)
2766 {
2767 	struct macb *bp = netdev_priv(dev);
2768 	struct macb_queue *queue;
2769 	unsigned long flags;
2770 	unsigned int q;
2771 
2772 	netif_tx_stop_all_queues(dev);
2773 
2774 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2775 		napi_disable(&queue->napi);
2776 
2777 	phylink_stop(bp->phylink);
2778 	phylink_disconnect_phy(bp->phylink);
2779 
2780 	spin_lock_irqsave(&bp->lock, flags);
2781 	macb_reset_hw(bp);
2782 	netif_carrier_off(dev);
2783 	spin_unlock_irqrestore(&bp->lock, flags);
2784 
2785 	macb_free_consistent(bp);
2786 
2787 	if (bp->ptp_info)
2788 		bp->ptp_info->ptp_remove(dev);
2789 
2790 	pm_runtime_put(&bp->pdev->dev);
2791 
2792 	return 0;
2793 }
2794 
2795 static int macb_change_mtu(struct net_device *dev, int new_mtu)
2796 {
2797 	if (netif_running(dev))
2798 		return -EBUSY;
2799 
2800 	dev->mtu = new_mtu;
2801 
2802 	return 0;
2803 }
2804 
2805 static void gem_update_stats(struct macb *bp)
2806 {
2807 	struct macb_queue *queue;
2808 	unsigned int i, q, idx;
2809 	unsigned long *stat;
2810 
2811 	u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
2812 
2813 	for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
2814 		u32 offset = gem_statistics[i].offset;
2815 		u64 val = bp->macb_reg_readl(bp, offset);
2816 
2817 		bp->ethtool_stats[i] += val;
2818 		*p += val;
2819 
2820 		if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
2821 			/* Add GEM_OCTTXH, GEM_OCTRXH */
2822 			val = bp->macb_reg_readl(bp, offset + 4);
2823 			bp->ethtool_stats[i] += ((u64)val) << 32;
2824 			*(++p) += val;
2825 		}
2826 	}
2827 
2828 	idx = GEM_STATS_LEN;
2829 	for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2830 		for (i = 0, stat = &queue->stats.first; i < QUEUE_STATS_LEN; ++i, ++stat)
2831 			bp->ethtool_stats[idx++] = *stat;
2832 }
2833 
2834 static struct net_device_stats *gem_get_stats(struct macb *bp)
2835 {
2836 	struct gem_stats *hwstat = &bp->hw_stats.gem;
2837 	struct net_device_stats *nstat = &bp->dev->stats;
2838 
2839 	if (!netif_running(bp->dev))
2840 		return nstat;
2841 
2842 	gem_update_stats(bp);
2843 
2844 	nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
2845 			    hwstat->rx_alignment_errors +
2846 			    hwstat->rx_resource_errors +
2847 			    hwstat->rx_overruns +
2848 			    hwstat->rx_oversize_frames +
2849 			    hwstat->rx_jabbers +
2850 			    hwstat->rx_undersized_frames +
2851 			    hwstat->rx_length_field_frame_errors);
2852 	nstat->tx_errors = (hwstat->tx_late_collisions +
2853 			    hwstat->tx_excessive_collisions +
2854 			    hwstat->tx_underrun +
2855 			    hwstat->tx_carrier_sense_errors);
2856 	nstat->multicast = hwstat->rx_multicast_frames;
2857 	nstat->collisions = (hwstat->tx_single_collision_frames +
2858 			     hwstat->tx_multiple_collision_frames +
2859 			     hwstat->tx_excessive_collisions);
2860 	nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2861 				   hwstat->rx_jabbers +
2862 				   hwstat->rx_undersized_frames +
2863 				   hwstat->rx_length_field_frame_errors);
2864 	nstat->rx_over_errors = hwstat->rx_resource_errors;
2865 	nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2866 	nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2867 	nstat->rx_fifo_errors = hwstat->rx_overruns;
2868 	nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2869 	nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2870 	nstat->tx_fifo_errors = hwstat->tx_underrun;
2871 
2872 	return nstat;
2873 }
2874 
2875 static void gem_get_ethtool_stats(struct net_device *dev,
2876 				  struct ethtool_stats *stats, u64 *data)
2877 {
2878 	struct macb *bp;
2879 
2880 	bp = netdev_priv(dev);
2881 	gem_update_stats(bp);
2882 	memcpy(data, &bp->ethtool_stats, sizeof(u64)
2883 			* (GEM_STATS_LEN + QUEUE_STATS_LEN * MACB_MAX_QUEUES));
2884 }
2885 
2886 static int gem_get_sset_count(struct net_device *dev, int sset)
2887 {
2888 	struct macb *bp = netdev_priv(dev);
2889 
2890 	switch (sset) {
2891 	case ETH_SS_STATS:
2892 		return GEM_STATS_LEN + bp->num_queues * QUEUE_STATS_LEN;
2893 	default:
2894 		return -EOPNOTSUPP;
2895 	}
2896 }
2897 
2898 static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2899 {
2900 	char stat_string[ETH_GSTRING_LEN];
2901 	struct macb *bp = netdev_priv(dev);
2902 	struct macb_queue *queue;
2903 	unsigned int i;
2904 	unsigned int q;
2905 
2906 	switch (sset) {
2907 	case ETH_SS_STATS:
2908 		for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2909 			memcpy(p, gem_statistics[i].stat_string,
2910 			       ETH_GSTRING_LEN);
2911 
2912 		for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2913 			for (i = 0; i < QUEUE_STATS_LEN; i++, p += ETH_GSTRING_LEN) {
2914 				snprintf(stat_string, ETH_GSTRING_LEN, "q%d_%s",
2915 						q, queue_statistics[i].stat_string);
2916 				memcpy(p, stat_string, ETH_GSTRING_LEN);
2917 			}
2918 		}
2919 		break;
2920 	}
2921 }
2922 
2923 static struct net_device_stats *macb_get_stats(struct net_device *dev)
2924 {
2925 	struct macb *bp = netdev_priv(dev);
2926 	struct net_device_stats *nstat = &bp->dev->stats;
2927 	struct macb_stats *hwstat = &bp->hw_stats.macb;
2928 
2929 	if (macb_is_gem(bp))
2930 		return gem_get_stats(bp);
2931 
2932 	/* read stats from hardware */
2933 	macb_update_stats(bp);
2934 
2935 	/* Convert HW stats into netdevice stats */
2936 	nstat->rx_errors = (hwstat->rx_fcs_errors +
2937 			    hwstat->rx_align_errors +
2938 			    hwstat->rx_resource_errors +
2939 			    hwstat->rx_overruns +
2940 			    hwstat->rx_oversize_pkts +
2941 			    hwstat->rx_jabbers +
2942 			    hwstat->rx_undersize_pkts +
2943 			    hwstat->rx_length_mismatch);
2944 	nstat->tx_errors = (hwstat->tx_late_cols +
2945 			    hwstat->tx_excessive_cols +
2946 			    hwstat->tx_underruns +
2947 			    hwstat->tx_carrier_errors +
2948 			    hwstat->sqe_test_errors);
2949 	nstat->collisions = (hwstat->tx_single_cols +
2950 			     hwstat->tx_multiple_cols +
2951 			     hwstat->tx_excessive_cols);
2952 	nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2953 				   hwstat->rx_jabbers +
2954 				   hwstat->rx_undersize_pkts +
2955 				   hwstat->rx_length_mismatch);
2956 	nstat->rx_over_errors = hwstat->rx_resource_errors +
2957 				   hwstat->rx_overruns;
2958 	nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2959 	nstat->rx_frame_errors = hwstat->rx_align_errors;
2960 	nstat->rx_fifo_errors = hwstat->rx_overruns;
2961 	/* XXX: What does "missed" mean? */
2962 	nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2963 	nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2964 	nstat->tx_fifo_errors = hwstat->tx_underruns;
2965 	/* Don't know about heartbeat or window errors... */
2966 
2967 	return nstat;
2968 }
2969 
2970 static int macb_get_regs_len(struct net_device *netdev)
2971 {
2972 	return MACB_GREGS_NBR * sizeof(u32);
2973 }
2974 
2975 static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2976 			  void *p)
2977 {
2978 	struct macb *bp = netdev_priv(dev);
2979 	unsigned int tail, head;
2980 	u32 *regs_buff = p;
2981 
2982 	regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2983 			| MACB_GREGS_VERSION;
2984 
2985 	tail = macb_tx_ring_wrap(bp, bp->queues[0].tx_tail);
2986 	head = macb_tx_ring_wrap(bp, bp->queues[0].tx_head);
2987 
2988 	regs_buff[0]  = macb_readl(bp, NCR);
2989 	regs_buff[1]  = macb_or_gem_readl(bp, NCFGR);
2990 	regs_buff[2]  = macb_readl(bp, NSR);
2991 	regs_buff[3]  = macb_readl(bp, TSR);
2992 	regs_buff[4]  = macb_readl(bp, RBQP);
2993 	regs_buff[5]  = macb_readl(bp, TBQP);
2994 	regs_buff[6]  = macb_readl(bp, RSR);
2995 	regs_buff[7]  = macb_readl(bp, IMR);
2996 
2997 	regs_buff[8]  = tail;
2998 	regs_buff[9]  = head;
2999 	regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
3000 	regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
3001 
3002 	if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
3003 		regs_buff[12] = macb_or_gem_readl(bp, USRIO);
3004 	if (macb_is_gem(bp))
3005 		regs_buff[13] = gem_readl(bp, DMACFG);
3006 }
3007 
3008 static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
3009 {
3010 	struct macb *bp = netdev_priv(netdev);
3011 
3012 	if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
3013 		phylink_ethtool_get_wol(bp->phylink, wol);
3014 		wol->supported |= WAKE_MAGIC;
3015 
3016 		if (bp->wol & MACB_WOL_ENABLED)
3017 			wol->wolopts |= WAKE_MAGIC;
3018 	}
3019 }
3020 
3021 static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
3022 {
3023 	struct macb *bp = netdev_priv(netdev);
3024 	int ret;
3025 
3026 	/* Pass the order to phylink layer */
3027 	ret = phylink_ethtool_set_wol(bp->phylink, wol);
3028 	/* Don't manage WoL on MAC if handled by the PHY
3029 	 * or if there's a failure in talking to the PHY
3030 	 */
3031 	if (!ret || ret != -EOPNOTSUPP)
3032 		return ret;
3033 
3034 	if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
3035 	    (wol->wolopts & ~WAKE_MAGIC))
3036 		return -EOPNOTSUPP;
3037 
3038 	if (wol->wolopts & WAKE_MAGIC)
3039 		bp->wol |= MACB_WOL_ENABLED;
3040 	else
3041 		bp->wol &= ~MACB_WOL_ENABLED;
3042 
3043 	device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
3044 
3045 	return 0;
3046 }
3047 
3048 static int macb_get_link_ksettings(struct net_device *netdev,
3049 				   struct ethtool_link_ksettings *kset)
3050 {
3051 	struct macb *bp = netdev_priv(netdev);
3052 
3053 	return phylink_ethtool_ksettings_get(bp->phylink, kset);
3054 }
3055 
3056 static int macb_set_link_ksettings(struct net_device *netdev,
3057 				   const struct ethtool_link_ksettings *kset)
3058 {
3059 	struct macb *bp = netdev_priv(netdev);
3060 
3061 	return phylink_ethtool_ksettings_set(bp->phylink, kset);
3062 }
3063 
3064 static void macb_get_ringparam(struct net_device *netdev,
3065 			       struct ethtool_ringparam *ring,
3066 			       struct kernel_ethtool_ringparam *kernel_ring,
3067 			       struct netlink_ext_ack *extack)
3068 {
3069 	struct macb *bp = netdev_priv(netdev);
3070 
3071 	ring->rx_max_pending = MAX_RX_RING_SIZE;
3072 	ring->tx_max_pending = MAX_TX_RING_SIZE;
3073 
3074 	ring->rx_pending = bp->rx_ring_size;
3075 	ring->tx_pending = bp->tx_ring_size;
3076 }
3077 
3078 static int macb_set_ringparam(struct net_device *netdev,
3079 			      struct ethtool_ringparam *ring,
3080 			      struct kernel_ethtool_ringparam *kernel_ring,
3081 			      struct netlink_ext_ack *extack)
3082 {
3083 	struct macb *bp = netdev_priv(netdev);
3084 	u32 new_rx_size, new_tx_size;
3085 	unsigned int reset = 0;
3086 
3087 	if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
3088 		return -EINVAL;
3089 
3090 	new_rx_size = clamp_t(u32, ring->rx_pending,
3091 			      MIN_RX_RING_SIZE, MAX_RX_RING_SIZE);
3092 	new_rx_size = roundup_pow_of_two(new_rx_size);
3093 
3094 	new_tx_size = clamp_t(u32, ring->tx_pending,
3095 			      MIN_TX_RING_SIZE, MAX_TX_RING_SIZE);
3096 	new_tx_size = roundup_pow_of_two(new_tx_size);
3097 
3098 	if ((new_tx_size == bp->tx_ring_size) &&
3099 	    (new_rx_size == bp->rx_ring_size)) {
3100 		/* nothing to do */
3101 		return 0;
3102 	}
3103 
3104 	if (netif_running(bp->dev)) {
3105 		reset = 1;
3106 		macb_close(bp->dev);
3107 	}
3108 
3109 	bp->rx_ring_size = new_rx_size;
3110 	bp->tx_ring_size = new_tx_size;
3111 
3112 	if (reset)
3113 		macb_open(bp->dev);
3114 
3115 	return 0;
3116 }
3117 
3118 #ifdef CONFIG_MACB_USE_HWSTAMP
3119 static unsigned int gem_get_tsu_rate(struct macb *bp)
3120 {
3121 	struct clk *tsu_clk;
3122 	unsigned int tsu_rate;
3123 
3124 	tsu_clk = devm_clk_get(&bp->pdev->dev, "tsu_clk");
3125 	if (!IS_ERR(tsu_clk))
3126 		tsu_rate = clk_get_rate(tsu_clk);
3127 	/* try pclk instead */
3128 	else if (!IS_ERR(bp->pclk)) {
3129 		tsu_clk = bp->pclk;
3130 		tsu_rate = clk_get_rate(tsu_clk);
3131 	} else
3132 		return -ENOTSUPP;
3133 	return tsu_rate;
3134 }
3135 
3136 static s32 gem_get_ptp_max_adj(void)
3137 {
3138 	return 64000000;
3139 }
3140 
3141 static int gem_get_ts_info(struct net_device *dev,
3142 			   struct ethtool_ts_info *info)
3143 {
3144 	struct macb *bp = netdev_priv(dev);
3145 
3146 	if ((bp->hw_dma_cap & HW_DMA_CAP_PTP) == 0) {
3147 		ethtool_op_get_ts_info(dev, info);
3148 		return 0;
3149 	}
3150 
3151 	info->so_timestamping =
3152 		SOF_TIMESTAMPING_TX_SOFTWARE |
3153 		SOF_TIMESTAMPING_RX_SOFTWARE |
3154 		SOF_TIMESTAMPING_SOFTWARE |
3155 		SOF_TIMESTAMPING_TX_HARDWARE |
3156 		SOF_TIMESTAMPING_RX_HARDWARE |
3157 		SOF_TIMESTAMPING_RAW_HARDWARE;
3158 	info->tx_types =
3159 		(1 << HWTSTAMP_TX_ONESTEP_SYNC) |
3160 		(1 << HWTSTAMP_TX_OFF) |
3161 		(1 << HWTSTAMP_TX_ON);
3162 	info->rx_filters =
3163 		(1 << HWTSTAMP_FILTER_NONE) |
3164 		(1 << HWTSTAMP_FILTER_ALL);
3165 
3166 	info->phc_index = bp->ptp_clock ? ptp_clock_index(bp->ptp_clock) : -1;
3167 
3168 	return 0;
3169 }
3170 
3171 static struct macb_ptp_info gem_ptp_info = {
3172 	.ptp_init	 = gem_ptp_init,
3173 	.ptp_remove	 = gem_ptp_remove,
3174 	.get_ptp_max_adj = gem_get_ptp_max_adj,
3175 	.get_tsu_rate	 = gem_get_tsu_rate,
3176 	.get_ts_info	 = gem_get_ts_info,
3177 	.get_hwtst	 = gem_get_hwtst,
3178 	.set_hwtst	 = gem_set_hwtst,
3179 };
3180 #endif
3181 
3182 static int macb_get_ts_info(struct net_device *netdev,
3183 			    struct ethtool_ts_info *info)
3184 {
3185 	struct macb *bp = netdev_priv(netdev);
3186 
3187 	if (bp->ptp_info)
3188 		return bp->ptp_info->get_ts_info(netdev, info);
3189 
3190 	return ethtool_op_get_ts_info(netdev, info);
3191 }
3192 
3193 static void gem_enable_flow_filters(struct macb *bp, bool enable)
3194 {
3195 	struct net_device *netdev = bp->dev;
3196 	struct ethtool_rx_fs_item *item;
3197 	u32 t2_scr;
3198 	int num_t2_scr;
3199 
3200 	if (!(netdev->features & NETIF_F_NTUPLE))
3201 		return;
3202 
3203 	num_t2_scr = GEM_BFEXT(T2SCR, gem_readl(bp, DCFG8));
3204 
3205 	list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3206 		struct ethtool_rx_flow_spec *fs = &item->fs;
3207 		struct ethtool_tcpip4_spec *tp4sp_m;
3208 
3209 		if (fs->location >= num_t2_scr)
3210 			continue;
3211 
3212 		t2_scr = gem_readl_n(bp, SCRT2, fs->location);
3213 
3214 		/* enable/disable screener regs for the flow entry */
3215 		t2_scr = GEM_BFINS(ETHTEN, enable, t2_scr);
3216 
3217 		/* only enable fields with no masking */
3218 		tp4sp_m = &(fs->m_u.tcp_ip4_spec);
3219 
3220 		if (enable && (tp4sp_m->ip4src == 0xFFFFFFFF))
3221 			t2_scr = GEM_BFINS(CMPAEN, 1, t2_scr);
3222 		else
3223 			t2_scr = GEM_BFINS(CMPAEN, 0, t2_scr);
3224 
3225 		if (enable && (tp4sp_m->ip4dst == 0xFFFFFFFF))
3226 			t2_scr = GEM_BFINS(CMPBEN, 1, t2_scr);
3227 		else
3228 			t2_scr = GEM_BFINS(CMPBEN, 0, t2_scr);
3229 
3230 		if (enable && ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)))
3231 			t2_scr = GEM_BFINS(CMPCEN, 1, t2_scr);
3232 		else
3233 			t2_scr = GEM_BFINS(CMPCEN, 0, t2_scr);
3234 
3235 		gem_writel_n(bp, SCRT2, fs->location, t2_scr);
3236 	}
3237 }
3238 
3239 static void gem_prog_cmp_regs(struct macb *bp, struct ethtool_rx_flow_spec *fs)
3240 {
3241 	struct ethtool_tcpip4_spec *tp4sp_v, *tp4sp_m;
3242 	uint16_t index = fs->location;
3243 	u32 w0, w1, t2_scr;
3244 	bool cmp_a = false;
3245 	bool cmp_b = false;
3246 	bool cmp_c = false;
3247 
3248 	if (!macb_is_gem(bp))
3249 		return;
3250 
3251 	tp4sp_v = &(fs->h_u.tcp_ip4_spec);
3252 	tp4sp_m = &(fs->m_u.tcp_ip4_spec);
3253 
3254 	/* ignore field if any masking set */
3255 	if (tp4sp_m->ip4src == 0xFFFFFFFF) {
3256 		/* 1st compare reg - IP source address */
3257 		w0 = 0;
3258 		w1 = 0;
3259 		w0 = tp4sp_v->ip4src;
3260 		w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
3261 		w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
3262 		w1 = GEM_BFINS(T2OFST, ETYPE_SRCIP_OFFSET, w1);
3263 		gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w0);
3264 		gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w1);
3265 		cmp_a = true;
3266 	}
3267 
3268 	/* ignore field if any masking set */
3269 	if (tp4sp_m->ip4dst == 0xFFFFFFFF) {
3270 		/* 2nd compare reg - IP destination address */
3271 		w0 = 0;
3272 		w1 = 0;
3273 		w0 = tp4sp_v->ip4dst;
3274 		w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
3275 		w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
3276 		w1 = GEM_BFINS(T2OFST, ETYPE_DSTIP_OFFSET, w1);
3277 		gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4DST_CMP(index)), w0);
3278 		gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4DST_CMP(index)), w1);
3279 		cmp_b = true;
3280 	}
3281 
3282 	/* ignore both port fields if masking set in both */
3283 	if ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)) {
3284 		/* 3rd compare reg - source port, destination port */
3285 		w0 = 0;
3286 		w1 = 0;
3287 		w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_IPHDR, w1);
3288 		if (tp4sp_m->psrc == tp4sp_m->pdst) {
3289 			w0 = GEM_BFINS(T2MASK, tp4sp_v->psrc, w0);
3290 			w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
3291 			w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
3292 			w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
3293 		} else {
3294 			/* only one port definition */
3295 			w1 = GEM_BFINS(T2DISMSK, 0, w1); /* 16-bit compare */
3296 			w0 = GEM_BFINS(T2MASK, 0xFFFF, w0);
3297 			if (tp4sp_m->psrc == 0xFFFF) { /* src port */
3298 				w0 = GEM_BFINS(T2CMP, tp4sp_v->psrc, w0);
3299 				w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
3300 			} else { /* dst port */
3301 				w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
3302 				w1 = GEM_BFINS(T2OFST, IPHDR_DSTPORT_OFFSET, w1);
3303 			}
3304 		}
3305 		gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_PORT_CMP(index)), w0);
3306 		gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_PORT_CMP(index)), w1);
3307 		cmp_c = true;
3308 	}
3309 
3310 	t2_scr = 0;
3311 	t2_scr = GEM_BFINS(QUEUE, (fs->ring_cookie) & 0xFF, t2_scr);
3312 	t2_scr = GEM_BFINS(ETHT2IDX, SCRT2_ETHT, t2_scr);
3313 	if (cmp_a)
3314 		t2_scr = GEM_BFINS(CMPA, GEM_IP4SRC_CMP(index), t2_scr);
3315 	if (cmp_b)
3316 		t2_scr = GEM_BFINS(CMPB, GEM_IP4DST_CMP(index), t2_scr);
3317 	if (cmp_c)
3318 		t2_scr = GEM_BFINS(CMPC, GEM_PORT_CMP(index), t2_scr);
3319 	gem_writel_n(bp, SCRT2, index, t2_scr);
3320 }
3321 
3322 static int gem_add_flow_filter(struct net_device *netdev,
3323 		struct ethtool_rxnfc *cmd)
3324 {
3325 	struct macb *bp = netdev_priv(netdev);
3326 	struct ethtool_rx_flow_spec *fs = &cmd->fs;
3327 	struct ethtool_rx_fs_item *item, *newfs;
3328 	unsigned long flags;
3329 	int ret = -EINVAL;
3330 	bool added = false;
3331 
3332 	newfs = kmalloc(sizeof(*newfs), GFP_KERNEL);
3333 	if (newfs == NULL)
3334 		return -ENOMEM;
3335 	memcpy(&newfs->fs, fs, sizeof(newfs->fs));
3336 
3337 	netdev_dbg(netdev,
3338 			"Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3339 			fs->flow_type, (int)fs->ring_cookie, fs->location,
3340 			htonl(fs->h_u.tcp_ip4_spec.ip4src),
3341 			htonl(fs->h_u.tcp_ip4_spec.ip4dst),
3342 			htons(fs->h_u.tcp_ip4_spec.psrc), htons(fs->h_u.tcp_ip4_spec.pdst));
3343 
3344 	spin_lock_irqsave(&bp->rx_fs_lock, flags);
3345 
3346 	/* find correct place to add in list */
3347 	list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3348 		if (item->fs.location > newfs->fs.location) {
3349 			list_add_tail(&newfs->list, &item->list);
3350 			added = true;
3351 			break;
3352 		} else if (item->fs.location == fs->location) {
3353 			netdev_err(netdev, "Rule not added: location %d not free!\n",
3354 					fs->location);
3355 			ret = -EBUSY;
3356 			goto err;
3357 		}
3358 	}
3359 	if (!added)
3360 		list_add_tail(&newfs->list, &bp->rx_fs_list.list);
3361 
3362 	gem_prog_cmp_regs(bp, fs);
3363 	bp->rx_fs_list.count++;
3364 	/* enable filtering if NTUPLE on */
3365 	gem_enable_flow_filters(bp, 1);
3366 
3367 	spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3368 	return 0;
3369 
3370 err:
3371 	spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3372 	kfree(newfs);
3373 	return ret;
3374 }
3375 
3376 static int gem_del_flow_filter(struct net_device *netdev,
3377 		struct ethtool_rxnfc *cmd)
3378 {
3379 	struct macb *bp = netdev_priv(netdev);
3380 	struct ethtool_rx_fs_item *item;
3381 	struct ethtool_rx_flow_spec *fs;
3382 	unsigned long flags;
3383 
3384 	spin_lock_irqsave(&bp->rx_fs_lock, flags);
3385 
3386 	list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3387 		if (item->fs.location == cmd->fs.location) {
3388 			/* disable screener regs for the flow entry */
3389 			fs = &(item->fs);
3390 			netdev_dbg(netdev,
3391 					"Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3392 					fs->flow_type, (int)fs->ring_cookie, fs->location,
3393 					htonl(fs->h_u.tcp_ip4_spec.ip4src),
3394 					htonl(fs->h_u.tcp_ip4_spec.ip4dst),
3395 					htons(fs->h_u.tcp_ip4_spec.psrc),
3396 					htons(fs->h_u.tcp_ip4_spec.pdst));
3397 
3398 			gem_writel_n(bp, SCRT2, fs->location, 0);
3399 
3400 			list_del(&item->list);
3401 			bp->rx_fs_list.count--;
3402 			spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3403 			kfree(item);
3404 			return 0;
3405 		}
3406 	}
3407 
3408 	spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3409 	return -EINVAL;
3410 }
3411 
3412 static int gem_get_flow_entry(struct net_device *netdev,
3413 		struct ethtool_rxnfc *cmd)
3414 {
3415 	struct macb *bp = netdev_priv(netdev);
3416 	struct ethtool_rx_fs_item *item;
3417 
3418 	list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3419 		if (item->fs.location == cmd->fs.location) {
3420 			memcpy(&cmd->fs, &item->fs, sizeof(cmd->fs));
3421 			return 0;
3422 		}
3423 	}
3424 	return -EINVAL;
3425 }
3426 
3427 static int gem_get_all_flow_entries(struct net_device *netdev,
3428 		struct ethtool_rxnfc *cmd, u32 *rule_locs)
3429 {
3430 	struct macb *bp = netdev_priv(netdev);
3431 	struct ethtool_rx_fs_item *item;
3432 	uint32_t cnt = 0;
3433 
3434 	list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3435 		if (cnt == cmd->rule_cnt)
3436 			return -EMSGSIZE;
3437 		rule_locs[cnt] = item->fs.location;
3438 		cnt++;
3439 	}
3440 	cmd->data = bp->max_tuples;
3441 	cmd->rule_cnt = cnt;
3442 
3443 	return 0;
3444 }
3445 
3446 static int gem_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
3447 		u32 *rule_locs)
3448 {
3449 	struct macb *bp = netdev_priv(netdev);
3450 	int ret = 0;
3451 
3452 	switch (cmd->cmd) {
3453 	case ETHTOOL_GRXRINGS:
3454 		cmd->data = bp->num_queues;
3455 		break;
3456 	case ETHTOOL_GRXCLSRLCNT:
3457 		cmd->rule_cnt = bp->rx_fs_list.count;
3458 		break;
3459 	case ETHTOOL_GRXCLSRULE:
3460 		ret = gem_get_flow_entry(netdev, cmd);
3461 		break;
3462 	case ETHTOOL_GRXCLSRLALL:
3463 		ret = gem_get_all_flow_entries(netdev, cmd, rule_locs);
3464 		break;
3465 	default:
3466 		netdev_err(netdev,
3467 			  "Command parameter %d is not supported\n", cmd->cmd);
3468 		ret = -EOPNOTSUPP;
3469 	}
3470 
3471 	return ret;
3472 }
3473 
3474 static int gem_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
3475 {
3476 	struct macb *bp = netdev_priv(netdev);
3477 	int ret;
3478 
3479 	switch (cmd->cmd) {
3480 	case ETHTOOL_SRXCLSRLINS:
3481 		if ((cmd->fs.location >= bp->max_tuples)
3482 				|| (cmd->fs.ring_cookie >= bp->num_queues)) {
3483 			ret = -EINVAL;
3484 			break;
3485 		}
3486 		ret = gem_add_flow_filter(netdev, cmd);
3487 		break;
3488 	case ETHTOOL_SRXCLSRLDEL:
3489 		ret = gem_del_flow_filter(netdev, cmd);
3490 		break;
3491 	default:
3492 		netdev_err(netdev,
3493 			  "Command parameter %d is not supported\n", cmd->cmd);
3494 		ret = -EOPNOTSUPP;
3495 	}
3496 
3497 	return ret;
3498 }
3499 
3500 static const struct ethtool_ops macb_ethtool_ops = {
3501 	.get_regs_len		= macb_get_regs_len,
3502 	.get_regs		= macb_get_regs,
3503 	.get_link		= ethtool_op_get_link,
3504 	.get_ts_info		= ethtool_op_get_ts_info,
3505 	.get_wol		= macb_get_wol,
3506 	.set_wol		= macb_set_wol,
3507 	.get_link_ksettings     = macb_get_link_ksettings,
3508 	.set_link_ksettings     = macb_set_link_ksettings,
3509 	.get_ringparam		= macb_get_ringparam,
3510 	.set_ringparam		= macb_set_ringparam,
3511 };
3512 
3513 static const struct ethtool_ops gem_ethtool_ops = {
3514 	.get_regs_len		= macb_get_regs_len,
3515 	.get_regs		= macb_get_regs,
3516 	.get_wol		= macb_get_wol,
3517 	.set_wol		= macb_set_wol,
3518 	.get_link		= ethtool_op_get_link,
3519 	.get_ts_info		= macb_get_ts_info,
3520 	.get_ethtool_stats	= gem_get_ethtool_stats,
3521 	.get_strings		= gem_get_ethtool_strings,
3522 	.get_sset_count		= gem_get_sset_count,
3523 	.get_link_ksettings     = macb_get_link_ksettings,
3524 	.set_link_ksettings     = macb_set_link_ksettings,
3525 	.get_ringparam		= macb_get_ringparam,
3526 	.set_ringparam		= macb_set_ringparam,
3527 	.get_rxnfc			= gem_get_rxnfc,
3528 	.set_rxnfc			= gem_set_rxnfc,
3529 };
3530 
3531 static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
3532 {
3533 	struct macb *bp = netdev_priv(dev);
3534 
3535 	if (!netif_running(dev))
3536 		return -EINVAL;
3537 
3538 	if (bp->ptp_info) {
3539 		switch (cmd) {
3540 		case SIOCSHWTSTAMP:
3541 			return bp->ptp_info->set_hwtst(dev, rq, cmd);
3542 		case SIOCGHWTSTAMP:
3543 			return bp->ptp_info->get_hwtst(dev, rq);
3544 		}
3545 	}
3546 
3547 	return phylink_mii_ioctl(bp->phylink, rq, cmd);
3548 }
3549 
3550 static inline void macb_set_txcsum_feature(struct macb *bp,
3551 					   netdev_features_t features)
3552 {
3553 	u32 val;
3554 
3555 	if (!macb_is_gem(bp))
3556 		return;
3557 
3558 	val = gem_readl(bp, DMACFG);
3559 	if (features & NETIF_F_HW_CSUM)
3560 		val |= GEM_BIT(TXCOEN);
3561 	else
3562 		val &= ~GEM_BIT(TXCOEN);
3563 
3564 	gem_writel(bp, DMACFG, val);
3565 }
3566 
3567 static inline void macb_set_rxcsum_feature(struct macb *bp,
3568 					   netdev_features_t features)
3569 {
3570 	struct net_device *netdev = bp->dev;
3571 	u32 val;
3572 
3573 	if (!macb_is_gem(bp))
3574 		return;
3575 
3576 	val = gem_readl(bp, NCFGR);
3577 	if ((features & NETIF_F_RXCSUM) && !(netdev->flags & IFF_PROMISC))
3578 		val |= GEM_BIT(RXCOEN);
3579 	else
3580 		val &= ~GEM_BIT(RXCOEN);
3581 
3582 	gem_writel(bp, NCFGR, val);
3583 }
3584 
3585 static inline void macb_set_rxflow_feature(struct macb *bp,
3586 					   netdev_features_t features)
3587 {
3588 	if (!macb_is_gem(bp))
3589 		return;
3590 
3591 	gem_enable_flow_filters(bp, !!(features & NETIF_F_NTUPLE));
3592 }
3593 
3594 static int macb_set_features(struct net_device *netdev,
3595 			     netdev_features_t features)
3596 {
3597 	struct macb *bp = netdev_priv(netdev);
3598 	netdev_features_t changed = features ^ netdev->features;
3599 
3600 	/* TX checksum offload */
3601 	if (changed & NETIF_F_HW_CSUM)
3602 		macb_set_txcsum_feature(bp, features);
3603 
3604 	/* RX checksum offload */
3605 	if (changed & NETIF_F_RXCSUM)
3606 		macb_set_rxcsum_feature(bp, features);
3607 
3608 	/* RX Flow Filters */
3609 	if (changed & NETIF_F_NTUPLE)
3610 		macb_set_rxflow_feature(bp, features);
3611 
3612 	return 0;
3613 }
3614 
3615 static void macb_restore_features(struct macb *bp)
3616 {
3617 	struct net_device *netdev = bp->dev;
3618 	netdev_features_t features = netdev->features;
3619 	struct ethtool_rx_fs_item *item;
3620 
3621 	/* TX checksum offload */
3622 	macb_set_txcsum_feature(bp, features);
3623 
3624 	/* RX checksum offload */
3625 	macb_set_rxcsum_feature(bp, features);
3626 
3627 	/* RX Flow Filters */
3628 	list_for_each_entry(item, &bp->rx_fs_list.list, list)
3629 		gem_prog_cmp_regs(bp, &item->fs);
3630 
3631 	macb_set_rxflow_feature(bp, features);
3632 }
3633 
3634 static const struct net_device_ops macb_netdev_ops = {
3635 	.ndo_open		= macb_open,
3636 	.ndo_stop		= macb_close,
3637 	.ndo_start_xmit		= macb_start_xmit,
3638 	.ndo_set_rx_mode	= macb_set_rx_mode,
3639 	.ndo_get_stats		= macb_get_stats,
3640 	.ndo_eth_ioctl		= macb_ioctl,
3641 	.ndo_validate_addr	= eth_validate_addr,
3642 	.ndo_change_mtu		= macb_change_mtu,
3643 	.ndo_set_mac_address	= eth_mac_addr,
3644 #ifdef CONFIG_NET_POLL_CONTROLLER
3645 	.ndo_poll_controller	= macb_poll_controller,
3646 #endif
3647 	.ndo_set_features	= macb_set_features,
3648 	.ndo_features_check	= macb_features_check,
3649 };
3650 
3651 /* Configure peripheral capabilities according to device tree
3652  * and integration options used
3653  */
3654 static void macb_configure_caps(struct macb *bp,
3655 				const struct macb_config *dt_conf)
3656 {
3657 	u32 dcfg;
3658 
3659 	if (dt_conf)
3660 		bp->caps = dt_conf->caps;
3661 
3662 	if (hw_is_gem(bp->regs, bp->native_io)) {
3663 		bp->caps |= MACB_CAPS_MACB_IS_GEM;
3664 
3665 		dcfg = gem_readl(bp, DCFG1);
3666 		if (GEM_BFEXT(IRQCOR, dcfg) == 0)
3667 			bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
3668 		if (GEM_BFEXT(NO_PCS, dcfg) == 0)
3669 			bp->caps |= MACB_CAPS_PCS;
3670 		dcfg = gem_readl(bp, DCFG12);
3671 		if (GEM_BFEXT(HIGH_SPEED, dcfg) == 1)
3672 			bp->caps |= MACB_CAPS_HIGH_SPEED;
3673 		dcfg = gem_readl(bp, DCFG2);
3674 		if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
3675 			bp->caps |= MACB_CAPS_FIFO_MODE;
3676 #ifdef CONFIG_MACB_USE_HWSTAMP
3677 		if (gem_has_ptp(bp)) {
3678 			if (!GEM_BFEXT(TSU, gem_readl(bp, DCFG5)))
3679 				dev_err(&bp->pdev->dev,
3680 					"GEM doesn't support hardware ptp.\n");
3681 			else {
3682 				bp->hw_dma_cap |= HW_DMA_CAP_PTP;
3683 				bp->ptp_info = &gem_ptp_info;
3684 			}
3685 		}
3686 #endif
3687 	}
3688 
3689 	dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
3690 }
3691 
3692 static void macb_probe_queues(void __iomem *mem,
3693 			      bool native_io,
3694 			      unsigned int *queue_mask,
3695 			      unsigned int *num_queues)
3696 {
3697 	*queue_mask = 0x1;
3698 	*num_queues = 1;
3699 
3700 	/* is it macb or gem ?
3701 	 *
3702 	 * We need to read directly from the hardware here because
3703 	 * we are early in the probe process and don't have the
3704 	 * MACB_CAPS_MACB_IS_GEM flag positioned
3705 	 */
3706 	if (!hw_is_gem(mem, native_io))
3707 		return;
3708 
3709 	/* bit 0 is never set but queue 0 always exists */
3710 	*queue_mask |= readl_relaxed(mem + GEM_DCFG6) & 0xff;
3711 	*num_queues = hweight32(*queue_mask);
3712 }
3713 
3714 static void macb_clks_disable(struct clk *pclk, struct clk *hclk, struct clk *tx_clk,
3715 			      struct clk *rx_clk, struct clk *tsu_clk)
3716 {
3717 	struct clk_bulk_data clks[] = {
3718 		{ .clk = tsu_clk, },
3719 		{ .clk = rx_clk, },
3720 		{ .clk = pclk, },
3721 		{ .clk = hclk, },
3722 		{ .clk = tx_clk },
3723 	};
3724 
3725 	clk_bulk_disable_unprepare(ARRAY_SIZE(clks), clks);
3726 }
3727 
3728 static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
3729 			 struct clk **hclk, struct clk **tx_clk,
3730 			 struct clk **rx_clk, struct clk **tsu_clk)
3731 {
3732 	struct macb_platform_data *pdata;
3733 	int err;
3734 
3735 	pdata = dev_get_platdata(&pdev->dev);
3736 	if (pdata) {
3737 		*pclk = pdata->pclk;
3738 		*hclk = pdata->hclk;
3739 	} else {
3740 		*pclk = devm_clk_get(&pdev->dev, "pclk");
3741 		*hclk = devm_clk_get(&pdev->dev, "hclk");
3742 	}
3743 
3744 	if (IS_ERR_OR_NULL(*pclk))
3745 		return dev_err_probe(&pdev->dev,
3746 				     IS_ERR(*pclk) ? PTR_ERR(*pclk) : -ENODEV,
3747 				     "failed to get pclk\n");
3748 
3749 	if (IS_ERR_OR_NULL(*hclk))
3750 		return dev_err_probe(&pdev->dev,
3751 				     IS_ERR(*hclk) ? PTR_ERR(*hclk) : -ENODEV,
3752 				     "failed to get hclk\n");
3753 
3754 	*tx_clk = devm_clk_get_optional(&pdev->dev, "tx_clk");
3755 	if (IS_ERR(*tx_clk))
3756 		return PTR_ERR(*tx_clk);
3757 
3758 	*rx_clk = devm_clk_get_optional(&pdev->dev, "rx_clk");
3759 	if (IS_ERR(*rx_clk))
3760 		return PTR_ERR(*rx_clk);
3761 
3762 	*tsu_clk = devm_clk_get_optional(&pdev->dev, "tsu_clk");
3763 	if (IS_ERR(*tsu_clk))
3764 		return PTR_ERR(*tsu_clk);
3765 
3766 	err = clk_prepare_enable(*pclk);
3767 	if (err) {
3768 		dev_err(&pdev->dev, "failed to enable pclk (%d)\n", err);
3769 		return err;
3770 	}
3771 
3772 	err = clk_prepare_enable(*hclk);
3773 	if (err) {
3774 		dev_err(&pdev->dev, "failed to enable hclk (%d)\n", err);
3775 		goto err_disable_pclk;
3776 	}
3777 
3778 	err = clk_prepare_enable(*tx_clk);
3779 	if (err) {
3780 		dev_err(&pdev->dev, "failed to enable tx_clk (%d)\n", err);
3781 		goto err_disable_hclk;
3782 	}
3783 
3784 	err = clk_prepare_enable(*rx_clk);
3785 	if (err) {
3786 		dev_err(&pdev->dev, "failed to enable rx_clk (%d)\n", err);
3787 		goto err_disable_txclk;
3788 	}
3789 
3790 	err = clk_prepare_enable(*tsu_clk);
3791 	if (err) {
3792 		dev_err(&pdev->dev, "failed to enable tsu_clk (%d)\n", err);
3793 		goto err_disable_rxclk;
3794 	}
3795 
3796 	return 0;
3797 
3798 err_disable_rxclk:
3799 	clk_disable_unprepare(*rx_clk);
3800 
3801 err_disable_txclk:
3802 	clk_disable_unprepare(*tx_clk);
3803 
3804 err_disable_hclk:
3805 	clk_disable_unprepare(*hclk);
3806 
3807 err_disable_pclk:
3808 	clk_disable_unprepare(*pclk);
3809 
3810 	return err;
3811 }
3812 
3813 static int macb_init(struct platform_device *pdev)
3814 {
3815 	struct net_device *dev = platform_get_drvdata(pdev);
3816 	unsigned int hw_q, q;
3817 	struct macb *bp = netdev_priv(dev);
3818 	struct macb_queue *queue;
3819 	int err;
3820 	u32 val, reg;
3821 
3822 	bp->tx_ring_size = DEFAULT_TX_RING_SIZE;
3823 	bp->rx_ring_size = DEFAULT_RX_RING_SIZE;
3824 
3825 	/* set the queue register mapping once for all: queue0 has a special
3826 	 * register mapping but we don't want to test the queue index then
3827 	 * compute the corresponding register offset at run time.
3828 	 */
3829 	for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
3830 		if (!(bp->queue_mask & (1 << hw_q)))
3831 			continue;
3832 
3833 		queue = &bp->queues[q];
3834 		queue->bp = bp;
3835 		netif_napi_add(dev, &queue->napi, macb_poll, NAPI_POLL_WEIGHT);
3836 		if (hw_q) {
3837 			queue->ISR  = GEM_ISR(hw_q - 1);
3838 			queue->IER  = GEM_IER(hw_q - 1);
3839 			queue->IDR  = GEM_IDR(hw_q - 1);
3840 			queue->IMR  = GEM_IMR(hw_q - 1);
3841 			queue->TBQP = GEM_TBQP(hw_q - 1);
3842 			queue->RBQP = GEM_RBQP(hw_q - 1);
3843 			queue->RBQS = GEM_RBQS(hw_q - 1);
3844 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3845 			if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
3846 				queue->TBQPH = GEM_TBQPH(hw_q - 1);
3847 				queue->RBQPH = GEM_RBQPH(hw_q - 1);
3848 			}
3849 #endif
3850 		} else {
3851 			/* queue0 uses legacy registers */
3852 			queue->ISR  = MACB_ISR;
3853 			queue->IER  = MACB_IER;
3854 			queue->IDR  = MACB_IDR;
3855 			queue->IMR  = MACB_IMR;
3856 			queue->TBQP = MACB_TBQP;
3857 			queue->RBQP = MACB_RBQP;
3858 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3859 			if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
3860 				queue->TBQPH = MACB_TBQPH;
3861 				queue->RBQPH = MACB_RBQPH;
3862 			}
3863 #endif
3864 		}
3865 
3866 		/* get irq: here we use the linux queue index, not the hardware
3867 		 * queue index. the queue irq definitions in the device tree
3868 		 * must remove the optional gaps that could exist in the
3869 		 * hardware queue mask.
3870 		 */
3871 		queue->irq = platform_get_irq(pdev, q);
3872 		err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
3873 				       IRQF_SHARED, dev->name, queue);
3874 		if (err) {
3875 			dev_err(&pdev->dev,
3876 				"Unable to request IRQ %d (error %d)\n",
3877 				queue->irq, err);
3878 			return err;
3879 		}
3880 
3881 		INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
3882 		q++;
3883 	}
3884 
3885 	dev->netdev_ops = &macb_netdev_ops;
3886 
3887 	/* setup appropriated routines according to adapter type */
3888 	if (macb_is_gem(bp)) {
3889 		bp->max_tx_length = GEM_MAX_TX_LEN;
3890 		bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
3891 		bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
3892 		bp->macbgem_ops.mog_init_rings = gem_init_rings;
3893 		bp->macbgem_ops.mog_rx = gem_rx;
3894 		dev->ethtool_ops = &gem_ethtool_ops;
3895 	} else {
3896 		bp->max_tx_length = MACB_MAX_TX_LEN;
3897 		bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
3898 		bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
3899 		bp->macbgem_ops.mog_init_rings = macb_init_rings;
3900 		bp->macbgem_ops.mog_rx = macb_rx;
3901 		dev->ethtool_ops = &macb_ethtool_ops;
3902 	}
3903 
3904 	/* Set features */
3905 	dev->hw_features = NETIF_F_SG;
3906 
3907 	/* Check LSO capability */
3908 	if (GEM_BFEXT(PBUF_LSO, gem_readl(bp, DCFG6)))
3909 		dev->hw_features |= MACB_NETIF_LSO;
3910 
3911 	/* Checksum offload is only available on gem with packet buffer */
3912 	if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
3913 		dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
3914 	if (bp->caps & MACB_CAPS_SG_DISABLED)
3915 		dev->hw_features &= ~NETIF_F_SG;
3916 	dev->features = dev->hw_features;
3917 
3918 	/* Check RX Flow Filters support.
3919 	 * Max Rx flows set by availability of screeners & compare regs:
3920 	 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
3921 	 */
3922 	reg = gem_readl(bp, DCFG8);
3923 	bp->max_tuples = min((GEM_BFEXT(SCR2CMP, reg) / 3),
3924 			GEM_BFEXT(T2SCR, reg));
3925 	INIT_LIST_HEAD(&bp->rx_fs_list.list);
3926 	if (bp->max_tuples > 0) {
3927 		/* also needs one ethtype match to check IPv4 */
3928 		if (GEM_BFEXT(SCR2ETH, reg) > 0) {
3929 			/* program this reg now */
3930 			reg = 0;
3931 			reg = GEM_BFINS(ETHTCMP, (uint16_t)ETH_P_IP, reg);
3932 			gem_writel_n(bp, ETHT, SCRT2_ETHT, reg);
3933 			/* Filtering is supported in hw but don't enable it in kernel now */
3934 			dev->hw_features |= NETIF_F_NTUPLE;
3935 			/* init Rx flow definitions */
3936 			bp->rx_fs_list.count = 0;
3937 			spin_lock_init(&bp->rx_fs_lock);
3938 		} else
3939 			bp->max_tuples = 0;
3940 	}
3941 
3942 	if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
3943 		val = 0;
3944 		if (phy_interface_mode_is_rgmii(bp->phy_interface))
3945 			val = bp->usrio->rgmii;
3946 		else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
3947 			 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
3948 			val = bp->usrio->rmii;
3949 		else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
3950 			val = bp->usrio->mii;
3951 
3952 		if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
3953 			val |= bp->usrio->refclk;
3954 
3955 		macb_or_gem_writel(bp, USRIO, val);
3956 	}
3957 
3958 	/* Set MII management clock divider */
3959 	val = macb_mdc_clk_div(bp);
3960 	val |= macb_dbw(bp);
3961 	if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
3962 		val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
3963 	macb_writel(bp, NCFGR, val);
3964 
3965 	return 0;
3966 }
3967 
3968 static const struct macb_usrio_config macb_default_usrio = {
3969 	.mii = MACB_BIT(MII),
3970 	.rmii = MACB_BIT(RMII),
3971 	.rgmii = GEM_BIT(RGMII),
3972 	.refclk = MACB_BIT(CLKEN),
3973 };
3974 
3975 #if defined(CONFIG_OF)
3976 /* 1518 rounded up */
3977 #define AT91ETHER_MAX_RBUFF_SZ	0x600
3978 /* max number of receive buffers */
3979 #define AT91ETHER_MAX_RX_DESCR	9
3980 
3981 static struct sifive_fu540_macb_mgmt *mgmt;
3982 
3983 static int at91ether_alloc_coherent(struct macb *lp)
3984 {
3985 	struct macb_queue *q = &lp->queues[0];
3986 
3987 	q->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
3988 					 (AT91ETHER_MAX_RX_DESCR *
3989 					  macb_dma_desc_get_size(lp)),
3990 					 &q->rx_ring_dma, GFP_KERNEL);
3991 	if (!q->rx_ring)
3992 		return -ENOMEM;
3993 
3994 	q->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
3995 					    AT91ETHER_MAX_RX_DESCR *
3996 					    AT91ETHER_MAX_RBUFF_SZ,
3997 					    &q->rx_buffers_dma, GFP_KERNEL);
3998 	if (!q->rx_buffers) {
3999 		dma_free_coherent(&lp->pdev->dev,
4000 				  AT91ETHER_MAX_RX_DESCR *
4001 				  macb_dma_desc_get_size(lp),
4002 				  q->rx_ring, q->rx_ring_dma);
4003 		q->rx_ring = NULL;
4004 		return -ENOMEM;
4005 	}
4006 
4007 	return 0;
4008 }
4009 
4010 static void at91ether_free_coherent(struct macb *lp)
4011 {
4012 	struct macb_queue *q = &lp->queues[0];
4013 
4014 	if (q->rx_ring) {
4015 		dma_free_coherent(&lp->pdev->dev,
4016 				  AT91ETHER_MAX_RX_DESCR *
4017 				  macb_dma_desc_get_size(lp),
4018 				  q->rx_ring, q->rx_ring_dma);
4019 		q->rx_ring = NULL;
4020 	}
4021 
4022 	if (q->rx_buffers) {
4023 		dma_free_coherent(&lp->pdev->dev,
4024 				  AT91ETHER_MAX_RX_DESCR *
4025 				  AT91ETHER_MAX_RBUFF_SZ,
4026 				  q->rx_buffers, q->rx_buffers_dma);
4027 		q->rx_buffers = NULL;
4028 	}
4029 }
4030 
4031 /* Initialize and start the Receiver and Transmit subsystems */
4032 static int at91ether_start(struct macb *lp)
4033 {
4034 	struct macb_queue *q = &lp->queues[0];
4035 	struct macb_dma_desc *desc;
4036 	dma_addr_t addr;
4037 	u32 ctl;
4038 	int i, ret;
4039 
4040 	ret = at91ether_alloc_coherent(lp);
4041 	if (ret)
4042 		return ret;
4043 
4044 	addr = q->rx_buffers_dma;
4045 	for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
4046 		desc = macb_rx_desc(q, i);
4047 		macb_set_addr(lp, desc, addr);
4048 		desc->ctrl = 0;
4049 		addr += AT91ETHER_MAX_RBUFF_SZ;
4050 	}
4051 
4052 	/* Set the Wrap bit on the last descriptor */
4053 	desc->addr |= MACB_BIT(RX_WRAP);
4054 
4055 	/* Reset buffer index */
4056 	q->rx_tail = 0;
4057 
4058 	/* Program address of descriptor list in Rx Buffer Queue register */
4059 	macb_writel(lp, RBQP, q->rx_ring_dma);
4060 
4061 	/* Enable Receive and Transmit */
4062 	ctl = macb_readl(lp, NCR);
4063 	macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
4064 
4065 	/* Enable MAC interrupts */
4066 	macb_writel(lp, IER, MACB_BIT(RCOMP)	|
4067 			     MACB_BIT(RXUBR)	|
4068 			     MACB_BIT(ISR_TUND)	|
4069 			     MACB_BIT(ISR_RLE)	|
4070 			     MACB_BIT(TCOMP)	|
4071 			     MACB_BIT(ISR_ROVR)	|
4072 			     MACB_BIT(HRESP));
4073 
4074 	return 0;
4075 }
4076 
4077 static void at91ether_stop(struct macb *lp)
4078 {
4079 	u32 ctl;
4080 
4081 	/* Disable MAC interrupts */
4082 	macb_writel(lp, IDR, MACB_BIT(RCOMP)	|
4083 			     MACB_BIT(RXUBR)	|
4084 			     MACB_BIT(ISR_TUND)	|
4085 			     MACB_BIT(ISR_RLE)	|
4086 			     MACB_BIT(TCOMP)	|
4087 			     MACB_BIT(ISR_ROVR) |
4088 			     MACB_BIT(HRESP));
4089 
4090 	/* Disable Receiver and Transmitter */
4091 	ctl = macb_readl(lp, NCR);
4092 	macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
4093 
4094 	/* Free resources. */
4095 	at91ether_free_coherent(lp);
4096 }
4097 
4098 /* Open the ethernet interface */
4099 static int at91ether_open(struct net_device *dev)
4100 {
4101 	struct macb *lp = netdev_priv(dev);
4102 	u32 ctl;
4103 	int ret;
4104 
4105 	ret = pm_runtime_get_sync(&lp->pdev->dev);
4106 	if (ret < 0) {
4107 		pm_runtime_put_noidle(&lp->pdev->dev);
4108 		return ret;
4109 	}
4110 
4111 	/* Clear internal statistics */
4112 	ctl = macb_readl(lp, NCR);
4113 	macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
4114 
4115 	macb_set_hwaddr(lp);
4116 
4117 	ret = at91ether_start(lp);
4118 	if (ret)
4119 		goto pm_exit;
4120 
4121 	ret = macb_phylink_connect(lp);
4122 	if (ret)
4123 		goto stop;
4124 
4125 	netif_start_queue(dev);
4126 
4127 	return 0;
4128 
4129 stop:
4130 	at91ether_stop(lp);
4131 pm_exit:
4132 	pm_runtime_put_sync(&lp->pdev->dev);
4133 	return ret;
4134 }
4135 
4136 /* Close the interface */
4137 static int at91ether_close(struct net_device *dev)
4138 {
4139 	struct macb *lp = netdev_priv(dev);
4140 
4141 	netif_stop_queue(dev);
4142 
4143 	phylink_stop(lp->phylink);
4144 	phylink_disconnect_phy(lp->phylink);
4145 
4146 	at91ether_stop(lp);
4147 
4148 	return pm_runtime_put(&lp->pdev->dev);
4149 }
4150 
4151 /* Transmit packet */
4152 static netdev_tx_t at91ether_start_xmit(struct sk_buff *skb,
4153 					struct net_device *dev)
4154 {
4155 	struct macb *lp = netdev_priv(dev);
4156 
4157 	if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
4158 		int desc = 0;
4159 
4160 		netif_stop_queue(dev);
4161 
4162 		/* Store packet information (to free when Tx completed) */
4163 		lp->rm9200_txq[desc].skb = skb;
4164 		lp->rm9200_txq[desc].size = skb->len;
4165 		lp->rm9200_txq[desc].mapping = dma_map_single(&lp->pdev->dev, skb->data,
4166 							      skb->len, DMA_TO_DEVICE);
4167 		if (dma_mapping_error(&lp->pdev->dev, lp->rm9200_txq[desc].mapping)) {
4168 			dev_kfree_skb_any(skb);
4169 			dev->stats.tx_dropped++;
4170 			netdev_err(dev, "%s: DMA mapping error\n", __func__);
4171 			return NETDEV_TX_OK;
4172 		}
4173 
4174 		/* Set address of the data in the Transmit Address register */
4175 		macb_writel(lp, TAR, lp->rm9200_txq[desc].mapping);
4176 		/* Set length of the packet in the Transmit Control register */
4177 		macb_writel(lp, TCR, skb->len);
4178 
4179 	} else {
4180 		netdev_err(dev, "%s called, but device is busy!\n", __func__);
4181 		return NETDEV_TX_BUSY;
4182 	}
4183 
4184 	return NETDEV_TX_OK;
4185 }
4186 
4187 /* Extract received frame from buffer descriptors and sent to upper layers.
4188  * (Called from interrupt context)
4189  */
4190 static void at91ether_rx(struct net_device *dev)
4191 {
4192 	struct macb *lp = netdev_priv(dev);
4193 	struct macb_queue *q = &lp->queues[0];
4194 	struct macb_dma_desc *desc;
4195 	unsigned char *p_recv;
4196 	struct sk_buff *skb;
4197 	unsigned int pktlen;
4198 
4199 	desc = macb_rx_desc(q, q->rx_tail);
4200 	while (desc->addr & MACB_BIT(RX_USED)) {
4201 		p_recv = q->rx_buffers + q->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
4202 		pktlen = MACB_BF(RX_FRMLEN, desc->ctrl);
4203 		skb = netdev_alloc_skb(dev, pktlen + 2);
4204 		if (skb) {
4205 			skb_reserve(skb, 2);
4206 			skb_put_data(skb, p_recv, pktlen);
4207 
4208 			skb->protocol = eth_type_trans(skb, dev);
4209 			dev->stats.rx_packets++;
4210 			dev->stats.rx_bytes += pktlen;
4211 			netif_rx(skb);
4212 		} else {
4213 			dev->stats.rx_dropped++;
4214 		}
4215 
4216 		if (desc->ctrl & MACB_BIT(RX_MHASH_MATCH))
4217 			dev->stats.multicast++;
4218 
4219 		/* reset ownership bit */
4220 		desc->addr &= ~MACB_BIT(RX_USED);
4221 
4222 		/* wrap after last buffer */
4223 		if (q->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
4224 			q->rx_tail = 0;
4225 		else
4226 			q->rx_tail++;
4227 
4228 		desc = macb_rx_desc(q, q->rx_tail);
4229 	}
4230 }
4231 
4232 /* MAC interrupt handler */
4233 static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
4234 {
4235 	struct net_device *dev = dev_id;
4236 	struct macb *lp = netdev_priv(dev);
4237 	u32 intstatus, ctl;
4238 	unsigned int desc;
4239 
4240 	/* MAC Interrupt Status register indicates what interrupts are pending.
4241 	 * It is automatically cleared once read.
4242 	 */
4243 	intstatus = macb_readl(lp, ISR);
4244 
4245 	/* Receive complete */
4246 	if (intstatus & MACB_BIT(RCOMP))
4247 		at91ether_rx(dev);
4248 
4249 	/* Transmit complete */
4250 	if (intstatus & MACB_BIT(TCOMP)) {
4251 		/* The TCOM bit is set even if the transmission failed */
4252 		if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
4253 			dev->stats.tx_errors++;
4254 
4255 		desc = 0;
4256 		if (lp->rm9200_txq[desc].skb) {
4257 			dev_consume_skb_irq(lp->rm9200_txq[desc].skb);
4258 			lp->rm9200_txq[desc].skb = NULL;
4259 			dma_unmap_single(&lp->pdev->dev, lp->rm9200_txq[desc].mapping,
4260 					 lp->rm9200_txq[desc].size, DMA_TO_DEVICE);
4261 			dev->stats.tx_packets++;
4262 			dev->stats.tx_bytes += lp->rm9200_txq[desc].size;
4263 		}
4264 		netif_wake_queue(dev);
4265 	}
4266 
4267 	/* Work-around for EMAC Errata section 41.3.1 */
4268 	if (intstatus & MACB_BIT(RXUBR)) {
4269 		ctl = macb_readl(lp, NCR);
4270 		macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
4271 		wmb();
4272 		macb_writel(lp, NCR, ctl | MACB_BIT(RE));
4273 	}
4274 
4275 	if (intstatus & MACB_BIT(ISR_ROVR))
4276 		netdev_err(dev, "ROVR error\n");
4277 
4278 	return IRQ_HANDLED;
4279 }
4280 
4281 #ifdef CONFIG_NET_POLL_CONTROLLER
4282 static void at91ether_poll_controller(struct net_device *dev)
4283 {
4284 	unsigned long flags;
4285 
4286 	local_irq_save(flags);
4287 	at91ether_interrupt(dev->irq, dev);
4288 	local_irq_restore(flags);
4289 }
4290 #endif
4291 
4292 static const struct net_device_ops at91ether_netdev_ops = {
4293 	.ndo_open		= at91ether_open,
4294 	.ndo_stop		= at91ether_close,
4295 	.ndo_start_xmit		= at91ether_start_xmit,
4296 	.ndo_get_stats		= macb_get_stats,
4297 	.ndo_set_rx_mode	= macb_set_rx_mode,
4298 	.ndo_set_mac_address	= eth_mac_addr,
4299 	.ndo_eth_ioctl		= macb_ioctl,
4300 	.ndo_validate_addr	= eth_validate_addr,
4301 #ifdef CONFIG_NET_POLL_CONTROLLER
4302 	.ndo_poll_controller	= at91ether_poll_controller,
4303 #endif
4304 };
4305 
4306 static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
4307 			      struct clk **hclk, struct clk **tx_clk,
4308 			      struct clk **rx_clk, struct clk **tsu_clk)
4309 {
4310 	int err;
4311 
4312 	*hclk = NULL;
4313 	*tx_clk = NULL;
4314 	*rx_clk = NULL;
4315 	*tsu_clk = NULL;
4316 
4317 	*pclk = devm_clk_get(&pdev->dev, "ether_clk");
4318 	if (IS_ERR(*pclk))
4319 		return PTR_ERR(*pclk);
4320 
4321 	err = clk_prepare_enable(*pclk);
4322 	if (err) {
4323 		dev_err(&pdev->dev, "failed to enable pclk (%d)\n", err);
4324 		return err;
4325 	}
4326 
4327 	return 0;
4328 }
4329 
4330 static int at91ether_init(struct platform_device *pdev)
4331 {
4332 	struct net_device *dev = platform_get_drvdata(pdev);
4333 	struct macb *bp = netdev_priv(dev);
4334 	int err;
4335 
4336 	bp->queues[0].bp = bp;
4337 
4338 	dev->netdev_ops = &at91ether_netdev_ops;
4339 	dev->ethtool_ops = &macb_ethtool_ops;
4340 
4341 	err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
4342 			       0, dev->name, dev);
4343 	if (err)
4344 		return err;
4345 
4346 	macb_writel(bp, NCR, 0);
4347 
4348 	macb_writel(bp, NCFGR, MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG));
4349 
4350 	return 0;
4351 }
4352 
4353 static unsigned long fu540_macb_tx_recalc_rate(struct clk_hw *hw,
4354 					       unsigned long parent_rate)
4355 {
4356 	return mgmt->rate;
4357 }
4358 
4359 static long fu540_macb_tx_round_rate(struct clk_hw *hw, unsigned long rate,
4360 				     unsigned long *parent_rate)
4361 {
4362 	if (WARN_ON(rate < 2500000))
4363 		return 2500000;
4364 	else if (rate == 2500000)
4365 		return 2500000;
4366 	else if (WARN_ON(rate < 13750000))
4367 		return 2500000;
4368 	else if (WARN_ON(rate < 25000000))
4369 		return 25000000;
4370 	else if (rate == 25000000)
4371 		return 25000000;
4372 	else if (WARN_ON(rate < 75000000))
4373 		return 25000000;
4374 	else if (WARN_ON(rate < 125000000))
4375 		return 125000000;
4376 	else if (rate == 125000000)
4377 		return 125000000;
4378 
4379 	WARN_ON(rate > 125000000);
4380 
4381 	return 125000000;
4382 }
4383 
4384 static int fu540_macb_tx_set_rate(struct clk_hw *hw, unsigned long rate,
4385 				  unsigned long parent_rate)
4386 {
4387 	rate = fu540_macb_tx_round_rate(hw, rate, &parent_rate);
4388 	if (rate != 125000000)
4389 		iowrite32(1, mgmt->reg);
4390 	else
4391 		iowrite32(0, mgmt->reg);
4392 	mgmt->rate = rate;
4393 
4394 	return 0;
4395 }
4396 
4397 static const struct clk_ops fu540_c000_ops = {
4398 	.recalc_rate = fu540_macb_tx_recalc_rate,
4399 	.round_rate = fu540_macb_tx_round_rate,
4400 	.set_rate = fu540_macb_tx_set_rate,
4401 };
4402 
4403 static int fu540_c000_clk_init(struct platform_device *pdev, struct clk **pclk,
4404 			       struct clk **hclk, struct clk **tx_clk,
4405 			       struct clk **rx_clk, struct clk **tsu_clk)
4406 {
4407 	struct clk_init_data init;
4408 	int err = 0;
4409 
4410 	err = macb_clk_init(pdev, pclk, hclk, tx_clk, rx_clk, tsu_clk);
4411 	if (err)
4412 		return err;
4413 
4414 	mgmt = devm_kzalloc(&pdev->dev, sizeof(*mgmt), GFP_KERNEL);
4415 	if (!mgmt) {
4416 		err = -ENOMEM;
4417 		goto err_disable_clks;
4418 	}
4419 
4420 	init.name = "sifive-gemgxl-mgmt";
4421 	init.ops = &fu540_c000_ops;
4422 	init.flags = 0;
4423 	init.num_parents = 0;
4424 
4425 	mgmt->rate = 0;
4426 	mgmt->hw.init = &init;
4427 
4428 	*tx_clk = devm_clk_register(&pdev->dev, &mgmt->hw);
4429 	if (IS_ERR(*tx_clk)) {
4430 		err = PTR_ERR(*tx_clk);
4431 		goto err_disable_clks;
4432 	}
4433 
4434 	err = clk_prepare_enable(*tx_clk);
4435 	if (err) {
4436 		dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
4437 		*tx_clk = NULL;
4438 		goto err_disable_clks;
4439 	} else {
4440 		dev_info(&pdev->dev, "Registered clk switch '%s'\n", init.name);
4441 	}
4442 
4443 	return 0;
4444 
4445 err_disable_clks:
4446 	macb_clks_disable(*pclk, *hclk, *tx_clk, *rx_clk, *tsu_clk);
4447 
4448 	return err;
4449 }
4450 
4451 static int fu540_c000_init(struct platform_device *pdev)
4452 {
4453 	mgmt->reg = devm_platform_ioremap_resource(pdev, 1);
4454 	if (IS_ERR(mgmt->reg))
4455 		return PTR_ERR(mgmt->reg);
4456 
4457 	return macb_init(pdev);
4458 }
4459 
4460 static const struct macb_usrio_config sama7g5_usrio = {
4461 	.mii = 0,
4462 	.rmii = 1,
4463 	.rgmii = 2,
4464 	.refclk = BIT(2),
4465 	.hdfctlen = BIT(6),
4466 };
4467 
4468 static const struct macb_config fu540_c000_config = {
4469 	.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_JUMBO |
4470 		MACB_CAPS_GEM_HAS_PTP,
4471 	.dma_burst_length = 16,
4472 	.clk_init = fu540_c000_clk_init,
4473 	.init = fu540_c000_init,
4474 	.jumbo_max_len = 10240,
4475 	.usrio = &macb_default_usrio,
4476 };
4477 
4478 static const struct macb_config at91sam9260_config = {
4479 	.caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4480 	.clk_init = macb_clk_init,
4481 	.init = macb_init,
4482 	.usrio = &macb_default_usrio,
4483 };
4484 
4485 static const struct macb_config sama5d3macb_config = {
4486 	.caps = MACB_CAPS_SG_DISABLED
4487 	      | MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4488 	.clk_init = macb_clk_init,
4489 	.init = macb_init,
4490 	.usrio = &macb_default_usrio,
4491 };
4492 
4493 static const struct macb_config pc302gem_config = {
4494 	.caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
4495 	.dma_burst_length = 16,
4496 	.clk_init = macb_clk_init,
4497 	.init = macb_init,
4498 	.usrio = &macb_default_usrio,
4499 };
4500 
4501 static const struct macb_config sama5d2_config = {
4502 	.caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4503 	.dma_burst_length = 16,
4504 	.clk_init = macb_clk_init,
4505 	.init = macb_init,
4506 	.usrio = &macb_default_usrio,
4507 };
4508 
4509 static const struct macb_config sama5d29_config = {
4510 	.caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_GEM_HAS_PTP,
4511 	.dma_burst_length = 16,
4512 	.clk_init = macb_clk_init,
4513 	.init = macb_init,
4514 	.usrio = &macb_default_usrio,
4515 };
4516 
4517 static const struct macb_config sama5d3_config = {
4518 	.caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
4519 	      | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
4520 	.dma_burst_length = 16,
4521 	.clk_init = macb_clk_init,
4522 	.init = macb_init,
4523 	.jumbo_max_len = 10240,
4524 	.usrio = &macb_default_usrio,
4525 };
4526 
4527 static const struct macb_config sama5d4_config = {
4528 	.caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4529 	.dma_burst_length = 4,
4530 	.clk_init = macb_clk_init,
4531 	.init = macb_init,
4532 	.usrio = &macb_default_usrio,
4533 };
4534 
4535 static const struct macb_config emac_config = {
4536 	.caps = MACB_CAPS_NEEDS_RSTONUBR | MACB_CAPS_MACB_IS_EMAC,
4537 	.clk_init = at91ether_clk_init,
4538 	.init = at91ether_init,
4539 	.usrio = &macb_default_usrio,
4540 };
4541 
4542 static const struct macb_config np4_config = {
4543 	.caps = MACB_CAPS_USRIO_DISABLED,
4544 	.clk_init = macb_clk_init,
4545 	.init = macb_init,
4546 	.usrio = &macb_default_usrio,
4547 };
4548 
4549 static const struct macb_config zynqmp_config = {
4550 	.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4551 			MACB_CAPS_JUMBO |
4552 			MACB_CAPS_GEM_HAS_PTP | MACB_CAPS_BD_RD_PREFETCH,
4553 	.dma_burst_length = 16,
4554 	.clk_init = macb_clk_init,
4555 	.init = macb_init,
4556 	.jumbo_max_len = 10240,
4557 	.usrio = &macb_default_usrio,
4558 };
4559 
4560 static const struct macb_config zynq_config = {
4561 	.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF |
4562 		MACB_CAPS_NEEDS_RSTONUBR,
4563 	.dma_burst_length = 16,
4564 	.clk_init = macb_clk_init,
4565 	.init = macb_init,
4566 	.usrio = &macb_default_usrio,
4567 };
4568 
4569 static const struct macb_config sama7g5_gem_config = {
4570 	.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_CLK_HW_CHG |
4571 		MACB_CAPS_MIIONRGMII,
4572 	.dma_burst_length = 16,
4573 	.clk_init = macb_clk_init,
4574 	.init = macb_init,
4575 	.usrio = &sama7g5_usrio,
4576 };
4577 
4578 static const struct macb_config sama7g5_emac_config = {
4579 	.caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII |
4580 		MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_MIIONRGMII,
4581 	.dma_burst_length = 16,
4582 	.clk_init = macb_clk_init,
4583 	.init = macb_init,
4584 	.usrio = &sama7g5_usrio,
4585 };
4586 
4587 static const struct of_device_id macb_dt_ids[] = {
4588 	{ .compatible = "cdns,at32ap7000-macb" },
4589 	{ .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
4590 	{ .compatible = "cdns,macb" },
4591 	{ .compatible = "cdns,np4-macb", .data = &np4_config },
4592 	{ .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
4593 	{ .compatible = "cdns,gem", .data = &pc302gem_config },
4594 	{ .compatible = "cdns,sam9x60-macb", .data = &at91sam9260_config },
4595 	{ .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
4596 	{ .compatible = "atmel,sama5d29-gem", .data = &sama5d29_config },
4597 	{ .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
4598 	{ .compatible = "atmel,sama5d3-macb", .data = &sama5d3macb_config },
4599 	{ .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
4600 	{ .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
4601 	{ .compatible = "cdns,emac", .data = &emac_config },
4602 	{ .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
4603 	{ .compatible = "cdns,zynq-gem", .data = &zynq_config },
4604 	{ .compatible = "sifive,fu540-c000-gem", .data = &fu540_c000_config },
4605 	{ .compatible = "microchip,sama7g5-gem", .data = &sama7g5_gem_config },
4606 	{ .compatible = "microchip,sama7g5-emac", .data = &sama7g5_emac_config },
4607 	{ /* sentinel */ }
4608 };
4609 MODULE_DEVICE_TABLE(of, macb_dt_ids);
4610 #endif /* CONFIG_OF */
4611 
4612 static const struct macb_config default_gem_config = {
4613 	.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4614 			MACB_CAPS_JUMBO |
4615 			MACB_CAPS_GEM_HAS_PTP,
4616 	.dma_burst_length = 16,
4617 	.clk_init = macb_clk_init,
4618 	.init = macb_init,
4619 	.usrio = &macb_default_usrio,
4620 	.jumbo_max_len = 10240,
4621 };
4622 
4623 static int macb_probe(struct platform_device *pdev)
4624 {
4625 	const struct macb_config *macb_config = &default_gem_config;
4626 	int (*clk_init)(struct platform_device *, struct clk **,
4627 			struct clk **, struct clk **,  struct clk **,
4628 			struct clk **) = macb_config->clk_init;
4629 	int (*init)(struct platform_device *) = macb_config->init;
4630 	struct device_node *np = pdev->dev.of_node;
4631 	struct clk *pclk, *hclk = NULL, *tx_clk = NULL, *rx_clk = NULL;
4632 	struct clk *tsu_clk = NULL;
4633 	unsigned int queue_mask, num_queues;
4634 	bool native_io;
4635 	phy_interface_t interface;
4636 	struct net_device *dev;
4637 	struct resource *regs;
4638 	void __iomem *mem;
4639 	struct macb *bp;
4640 	int err, val;
4641 
4642 	mem = devm_platform_get_and_ioremap_resource(pdev, 0, &regs);
4643 	if (IS_ERR(mem))
4644 		return PTR_ERR(mem);
4645 
4646 	if (np) {
4647 		const struct of_device_id *match;
4648 
4649 		match = of_match_node(macb_dt_ids, np);
4650 		if (match && match->data) {
4651 			macb_config = match->data;
4652 			clk_init = macb_config->clk_init;
4653 			init = macb_config->init;
4654 		}
4655 	}
4656 
4657 	err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk, &tsu_clk);
4658 	if (err)
4659 		return err;
4660 
4661 	pm_runtime_set_autosuspend_delay(&pdev->dev, MACB_PM_TIMEOUT);
4662 	pm_runtime_use_autosuspend(&pdev->dev);
4663 	pm_runtime_get_noresume(&pdev->dev);
4664 	pm_runtime_set_active(&pdev->dev);
4665 	pm_runtime_enable(&pdev->dev);
4666 	native_io = hw_is_native_io(mem);
4667 
4668 	macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
4669 	dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
4670 	if (!dev) {
4671 		err = -ENOMEM;
4672 		goto err_disable_clocks;
4673 	}
4674 
4675 	dev->base_addr = regs->start;
4676 
4677 	SET_NETDEV_DEV(dev, &pdev->dev);
4678 
4679 	bp = netdev_priv(dev);
4680 	bp->pdev = pdev;
4681 	bp->dev = dev;
4682 	bp->regs = mem;
4683 	bp->native_io = native_io;
4684 	if (native_io) {
4685 		bp->macb_reg_readl = hw_readl_native;
4686 		bp->macb_reg_writel = hw_writel_native;
4687 	} else {
4688 		bp->macb_reg_readl = hw_readl;
4689 		bp->macb_reg_writel = hw_writel;
4690 	}
4691 	bp->num_queues = num_queues;
4692 	bp->queue_mask = queue_mask;
4693 	if (macb_config)
4694 		bp->dma_burst_length = macb_config->dma_burst_length;
4695 	bp->pclk = pclk;
4696 	bp->hclk = hclk;
4697 	bp->tx_clk = tx_clk;
4698 	bp->rx_clk = rx_clk;
4699 	bp->tsu_clk = tsu_clk;
4700 	if (macb_config)
4701 		bp->jumbo_max_len = macb_config->jumbo_max_len;
4702 
4703 	bp->wol = 0;
4704 	if (of_get_property(np, "magic-packet", NULL))
4705 		bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
4706 	device_set_wakeup_capable(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
4707 
4708 	bp->usrio = macb_config->usrio;
4709 
4710 	spin_lock_init(&bp->lock);
4711 
4712 	/* setup capabilities */
4713 	macb_configure_caps(bp, macb_config);
4714 
4715 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
4716 	if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) {
4717 		dma_set_mask(&pdev->dev, DMA_BIT_MASK(44));
4718 		bp->hw_dma_cap |= HW_DMA_CAP_64B;
4719 	}
4720 #endif
4721 	platform_set_drvdata(pdev, dev);
4722 
4723 	dev->irq = platform_get_irq(pdev, 0);
4724 	if (dev->irq < 0) {
4725 		err = dev->irq;
4726 		goto err_out_free_netdev;
4727 	}
4728 
4729 	/* MTU range: 68 - 1500 or 10240 */
4730 	dev->min_mtu = GEM_MTU_MIN_SIZE;
4731 	if (bp->caps & MACB_CAPS_JUMBO)
4732 		dev->max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
4733 	else
4734 		dev->max_mtu = ETH_DATA_LEN;
4735 
4736 	if (bp->caps & MACB_CAPS_BD_RD_PREFETCH) {
4737 		val = GEM_BFEXT(RXBD_RDBUFF, gem_readl(bp, DCFG10));
4738 		if (val)
4739 			bp->rx_bd_rd_prefetch = (2 << (val - 1)) *
4740 						macb_dma_desc_get_size(bp);
4741 
4742 		val = GEM_BFEXT(TXBD_RDBUFF, gem_readl(bp, DCFG10));
4743 		if (val)
4744 			bp->tx_bd_rd_prefetch = (2 << (val - 1)) *
4745 						macb_dma_desc_get_size(bp);
4746 	}
4747 
4748 	bp->rx_intr_mask = MACB_RX_INT_FLAGS;
4749 	if (bp->caps & MACB_CAPS_NEEDS_RSTONUBR)
4750 		bp->rx_intr_mask |= MACB_BIT(RXUBR);
4751 
4752 	err = of_get_ethdev_address(np, bp->dev);
4753 	if (err == -EPROBE_DEFER)
4754 		goto err_out_free_netdev;
4755 	else if (err)
4756 		macb_get_hwaddr(bp);
4757 
4758 	err = of_get_phy_mode(np, &interface);
4759 	if (err)
4760 		/* not found in DT, MII by default */
4761 		bp->phy_interface = PHY_INTERFACE_MODE_MII;
4762 	else
4763 		bp->phy_interface = interface;
4764 
4765 	/* IP specific init */
4766 	err = init(pdev);
4767 	if (err)
4768 		goto err_out_free_netdev;
4769 
4770 	err = macb_mii_init(bp);
4771 	if (err)
4772 		goto err_out_free_netdev;
4773 
4774 	netif_carrier_off(dev);
4775 
4776 	err = register_netdev(dev);
4777 	if (err) {
4778 		dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
4779 		goto err_out_unregister_mdio;
4780 	}
4781 
4782 	tasklet_setup(&bp->hresp_err_tasklet, macb_hresp_error_task);
4783 
4784 	netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
4785 		    macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
4786 		    dev->base_addr, dev->irq, dev->dev_addr);
4787 
4788 	pm_runtime_mark_last_busy(&bp->pdev->dev);
4789 	pm_runtime_put_autosuspend(&bp->pdev->dev);
4790 
4791 	return 0;
4792 
4793 err_out_unregister_mdio:
4794 	mdiobus_unregister(bp->mii_bus);
4795 	mdiobus_free(bp->mii_bus);
4796 
4797 err_out_free_netdev:
4798 	free_netdev(dev);
4799 
4800 err_disable_clocks:
4801 	macb_clks_disable(pclk, hclk, tx_clk, rx_clk, tsu_clk);
4802 	pm_runtime_disable(&pdev->dev);
4803 	pm_runtime_set_suspended(&pdev->dev);
4804 	pm_runtime_dont_use_autosuspend(&pdev->dev);
4805 
4806 	return err;
4807 }
4808 
4809 static int macb_remove(struct platform_device *pdev)
4810 {
4811 	struct net_device *dev;
4812 	struct macb *bp;
4813 
4814 	dev = platform_get_drvdata(pdev);
4815 
4816 	if (dev) {
4817 		bp = netdev_priv(dev);
4818 		mdiobus_unregister(bp->mii_bus);
4819 		mdiobus_free(bp->mii_bus);
4820 
4821 		unregister_netdev(dev);
4822 		tasklet_kill(&bp->hresp_err_tasklet);
4823 		pm_runtime_disable(&pdev->dev);
4824 		pm_runtime_dont_use_autosuspend(&pdev->dev);
4825 		if (!pm_runtime_suspended(&pdev->dev)) {
4826 			macb_clks_disable(bp->pclk, bp->hclk, bp->tx_clk,
4827 					  bp->rx_clk, bp->tsu_clk);
4828 			pm_runtime_set_suspended(&pdev->dev);
4829 		}
4830 		phylink_destroy(bp->phylink);
4831 		free_netdev(dev);
4832 	}
4833 
4834 	return 0;
4835 }
4836 
4837 static int __maybe_unused macb_suspend(struct device *dev)
4838 {
4839 	struct net_device *netdev = dev_get_drvdata(dev);
4840 	struct macb *bp = netdev_priv(netdev);
4841 	struct macb_queue *queue;
4842 	unsigned long flags;
4843 	unsigned int q;
4844 	int err;
4845 
4846 	if (!netif_running(netdev))
4847 		return 0;
4848 
4849 	if (bp->wol & MACB_WOL_ENABLED) {
4850 		spin_lock_irqsave(&bp->lock, flags);
4851 		/* Flush all status bits */
4852 		macb_writel(bp, TSR, -1);
4853 		macb_writel(bp, RSR, -1);
4854 		for (q = 0, queue = bp->queues; q < bp->num_queues;
4855 		     ++q, ++queue) {
4856 			/* Disable all interrupts */
4857 			queue_writel(queue, IDR, -1);
4858 			queue_readl(queue, ISR);
4859 			if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
4860 				queue_writel(queue, ISR, -1);
4861 		}
4862 		/* Change interrupt handler and
4863 		 * Enable WoL IRQ on queue 0
4864 		 */
4865 		devm_free_irq(dev, bp->queues[0].irq, bp->queues);
4866 		if (macb_is_gem(bp)) {
4867 			err = devm_request_irq(dev, bp->queues[0].irq, gem_wol_interrupt,
4868 					       IRQF_SHARED, netdev->name, bp->queues);
4869 			if (err) {
4870 				dev_err(dev,
4871 					"Unable to request IRQ %d (error %d)\n",
4872 					bp->queues[0].irq, err);
4873 				spin_unlock_irqrestore(&bp->lock, flags);
4874 				return err;
4875 			}
4876 			queue_writel(bp->queues, IER, GEM_BIT(WOL));
4877 			gem_writel(bp, WOL, MACB_BIT(MAG));
4878 		} else {
4879 			err = devm_request_irq(dev, bp->queues[0].irq, macb_wol_interrupt,
4880 					       IRQF_SHARED, netdev->name, bp->queues);
4881 			if (err) {
4882 				dev_err(dev,
4883 					"Unable to request IRQ %d (error %d)\n",
4884 					bp->queues[0].irq, err);
4885 				spin_unlock_irqrestore(&bp->lock, flags);
4886 				return err;
4887 			}
4888 			queue_writel(bp->queues, IER, MACB_BIT(WOL));
4889 			macb_writel(bp, WOL, MACB_BIT(MAG));
4890 		}
4891 		spin_unlock_irqrestore(&bp->lock, flags);
4892 
4893 		enable_irq_wake(bp->queues[0].irq);
4894 	}
4895 
4896 	netif_device_detach(netdev);
4897 	for (q = 0, queue = bp->queues; q < bp->num_queues;
4898 	     ++q, ++queue)
4899 		napi_disable(&queue->napi);
4900 
4901 	if (!(bp->wol & MACB_WOL_ENABLED)) {
4902 		rtnl_lock();
4903 		phylink_stop(bp->phylink);
4904 		rtnl_unlock();
4905 		spin_lock_irqsave(&bp->lock, flags);
4906 		macb_reset_hw(bp);
4907 		spin_unlock_irqrestore(&bp->lock, flags);
4908 	}
4909 
4910 	if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
4911 		bp->pm_data.usrio = macb_or_gem_readl(bp, USRIO);
4912 
4913 	if (netdev->hw_features & NETIF_F_NTUPLE)
4914 		bp->pm_data.scrt2 = gem_readl_n(bp, ETHT, SCRT2_ETHT);
4915 
4916 	if (bp->ptp_info)
4917 		bp->ptp_info->ptp_remove(netdev);
4918 	if (!device_may_wakeup(dev))
4919 		pm_runtime_force_suspend(dev);
4920 
4921 	return 0;
4922 }
4923 
4924 static int __maybe_unused macb_resume(struct device *dev)
4925 {
4926 	struct net_device *netdev = dev_get_drvdata(dev);
4927 	struct macb *bp = netdev_priv(netdev);
4928 	struct macb_queue *queue;
4929 	unsigned long flags;
4930 	unsigned int q;
4931 	int err;
4932 
4933 	if (!netif_running(netdev))
4934 		return 0;
4935 
4936 	if (!device_may_wakeup(dev))
4937 		pm_runtime_force_resume(dev);
4938 
4939 	if (bp->wol & MACB_WOL_ENABLED) {
4940 		spin_lock_irqsave(&bp->lock, flags);
4941 		/* Disable WoL */
4942 		if (macb_is_gem(bp)) {
4943 			queue_writel(bp->queues, IDR, GEM_BIT(WOL));
4944 			gem_writel(bp, WOL, 0);
4945 		} else {
4946 			queue_writel(bp->queues, IDR, MACB_BIT(WOL));
4947 			macb_writel(bp, WOL, 0);
4948 		}
4949 		/* Clear ISR on queue 0 */
4950 		queue_readl(bp->queues, ISR);
4951 		if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
4952 			queue_writel(bp->queues, ISR, -1);
4953 		/* Replace interrupt handler on queue 0 */
4954 		devm_free_irq(dev, bp->queues[0].irq, bp->queues);
4955 		err = devm_request_irq(dev, bp->queues[0].irq, macb_interrupt,
4956 				       IRQF_SHARED, netdev->name, bp->queues);
4957 		if (err) {
4958 			dev_err(dev,
4959 				"Unable to request IRQ %d (error %d)\n",
4960 				bp->queues[0].irq, err);
4961 			spin_unlock_irqrestore(&bp->lock, flags);
4962 			return err;
4963 		}
4964 		spin_unlock_irqrestore(&bp->lock, flags);
4965 
4966 		disable_irq_wake(bp->queues[0].irq);
4967 
4968 		/* Now make sure we disable phy before moving
4969 		 * to common restore path
4970 		 */
4971 		rtnl_lock();
4972 		phylink_stop(bp->phylink);
4973 		rtnl_unlock();
4974 	}
4975 
4976 	for (q = 0, queue = bp->queues; q < bp->num_queues;
4977 	     ++q, ++queue)
4978 		napi_enable(&queue->napi);
4979 
4980 	if (netdev->hw_features & NETIF_F_NTUPLE)
4981 		gem_writel_n(bp, ETHT, SCRT2_ETHT, bp->pm_data.scrt2);
4982 
4983 	if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
4984 		macb_or_gem_writel(bp, USRIO, bp->pm_data.usrio);
4985 
4986 	macb_writel(bp, NCR, MACB_BIT(MPE));
4987 	macb_init_hw(bp);
4988 	macb_set_rx_mode(netdev);
4989 	macb_restore_features(bp);
4990 	rtnl_lock();
4991 	phylink_start(bp->phylink);
4992 	rtnl_unlock();
4993 
4994 	netif_device_attach(netdev);
4995 	if (bp->ptp_info)
4996 		bp->ptp_info->ptp_init(netdev);
4997 
4998 	return 0;
4999 }
5000 
5001 static int __maybe_unused macb_runtime_suspend(struct device *dev)
5002 {
5003 	struct net_device *netdev = dev_get_drvdata(dev);
5004 	struct macb *bp = netdev_priv(netdev);
5005 
5006 	if (!(device_may_wakeup(dev)))
5007 		macb_clks_disable(bp->pclk, bp->hclk, bp->tx_clk, bp->rx_clk, bp->tsu_clk);
5008 	else
5009 		macb_clks_disable(NULL, NULL, NULL, NULL, bp->tsu_clk);
5010 
5011 	return 0;
5012 }
5013 
5014 static int __maybe_unused macb_runtime_resume(struct device *dev)
5015 {
5016 	struct net_device *netdev = dev_get_drvdata(dev);
5017 	struct macb *bp = netdev_priv(netdev);
5018 
5019 	if (!(device_may_wakeup(dev))) {
5020 		clk_prepare_enable(bp->pclk);
5021 		clk_prepare_enable(bp->hclk);
5022 		clk_prepare_enable(bp->tx_clk);
5023 		clk_prepare_enable(bp->rx_clk);
5024 	}
5025 	clk_prepare_enable(bp->tsu_clk);
5026 
5027 	return 0;
5028 }
5029 
5030 static const struct dev_pm_ops macb_pm_ops = {
5031 	SET_SYSTEM_SLEEP_PM_OPS(macb_suspend, macb_resume)
5032 	SET_RUNTIME_PM_OPS(macb_runtime_suspend, macb_runtime_resume, NULL)
5033 };
5034 
5035 static struct platform_driver macb_driver = {
5036 	.probe		= macb_probe,
5037 	.remove		= macb_remove,
5038 	.driver		= {
5039 		.name		= "macb",
5040 		.of_match_table	= of_match_ptr(macb_dt_ids),
5041 		.pm	= &macb_pm_ops,
5042 	},
5043 };
5044 
5045 module_platform_driver(macb_driver);
5046 
5047 MODULE_LICENSE("GPL");
5048 MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
5049 MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
5050 MODULE_ALIAS("platform:macb");
5051