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