xref: /OK3568_Linux_fs/kernel/drivers/net/ethernet/broadcom/genet/bcmgenet.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Broadcom GENET (Gigabit Ethernet) controller driver
4  *
5  * Copyright (c) 2014-2020 Broadcom
6  */
7 
8 #define pr_fmt(fmt)				"bcmgenet: " fmt
9 
10 #include <linux/acpi.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/sched.h>
14 #include <linux/types.h>
15 #include <linux/fcntl.h>
16 #include <linux/interrupt.h>
17 #include <linux/string.h>
18 #include <linux/if_ether.h>
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/delay.h>
22 #include <linux/platform_device.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/pm.h>
25 #include <linux/clk.h>
26 #include <net/arp.h>
27 
28 #include <linux/mii.h>
29 #include <linux/ethtool.h>
30 #include <linux/netdevice.h>
31 #include <linux/inetdevice.h>
32 #include <linux/etherdevice.h>
33 #include <linux/skbuff.h>
34 #include <linux/in.h>
35 #include <linux/ip.h>
36 #include <linux/ipv6.h>
37 #include <linux/phy.h>
38 #include <linux/platform_data/bcmgenet.h>
39 
40 #include <asm/unaligned.h>
41 
42 #include "bcmgenet.h"
43 
44 /* Maximum number of hardware queues, downsized if needed */
45 #define GENET_MAX_MQ_CNT	4
46 
47 /* Default highest priority queue for multi queue support */
48 #define GENET_Q0_PRIORITY	0
49 
50 #define GENET_Q16_RX_BD_CNT	\
51 	(TOTAL_DESC - priv->hw_params->rx_queues * priv->hw_params->rx_bds_per_q)
52 #define GENET_Q16_TX_BD_CNT	\
53 	(TOTAL_DESC - priv->hw_params->tx_queues * priv->hw_params->tx_bds_per_q)
54 
55 #define RX_BUF_LENGTH		2048
56 #define SKB_ALIGNMENT		32
57 
58 /* Tx/Rx DMA register offset, skip 256 descriptors */
59 #define WORDS_PER_BD(p)		(p->hw_params->words_per_bd)
60 #define DMA_DESC_SIZE		(WORDS_PER_BD(priv) * sizeof(u32))
61 
62 #define GENET_TDMA_REG_OFF	(priv->hw_params->tdma_offset + \
63 				TOTAL_DESC * DMA_DESC_SIZE)
64 
65 #define GENET_RDMA_REG_OFF	(priv->hw_params->rdma_offset + \
66 				TOTAL_DESC * DMA_DESC_SIZE)
67 
68 /* Forward declarations */
69 static void bcmgenet_set_rx_mode(struct net_device *dev);
70 
bcmgenet_writel(u32 value,void __iomem * offset)71 static inline void bcmgenet_writel(u32 value, void __iomem *offset)
72 {
73 	/* MIPS chips strapped for BE will automagically configure the
74 	 * peripheral registers for CPU-native byte order.
75 	 */
76 	if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
77 		__raw_writel(value, offset);
78 	else
79 		writel_relaxed(value, offset);
80 }
81 
bcmgenet_readl(void __iomem * offset)82 static inline u32 bcmgenet_readl(void __iomem *offset)
83 {
84 	if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
85 		return __raw_readl(offset);
86 	else
87 		return readl_relaxed(offset);
88 }
89 
dmadesc_set_length_status(struct bcmgenet_priv * priv,void __iomem * d,u32 value)90 static inline void dmadesc_set_length_status(struct bcmgenet_priv *priv,
91 					     void __iomem *d, u32 value)
92 {
93 	bcmgenet_writel(value, d + DMA_DESC_LENGTH_STATUS);
94 }
95 
dmadesc_set_addr(struct bcmgenet_priv * priv,void __iomem * d,dma_addr_t addr)96 static inline void dmadesc_set_addr(struct bcmgenet_priv *priv,
97 				    void __iomem *d,
98 				    dma_addr_t addr)
99 {
100 	bcmgenet_writel(lower_32_bits(addr), d + DMA_DESC_ADDRESS_LO);
101 
102 	/* Register writes to GISB bus can take couple hundred nanoseconds
103 	 * and are done for each packet, save these expensive writes unless
104 	 * the platform is explicitly configured for 64-bits/LPAE.
105 	 */
106 #ifdef CONFIG_PHYS_ADDR_T_64BIT
107 	if (priv->hw_params->flags & GENET_HAS_40BITS)
108 		bcmgenet_writel(upper_32_bits(addr), d + DMA_DESC_ADDRESS_HI);
109 #endif
110 }
111 
112 /* Combined address + length/status setter */
dmadesc_set(struct bcmgenet_priv * priv,void __iomem * d,dma_addr_t addr,u32 val)113 static inline void dmadesc_set(struct bcmgenet_priv *priv,
114 			       void __iomem *d, dma_addr_t addr, u32 val)
115 {
116 	dmadesc_set_addr(priv, d, addr);
117 	dmadesc_set_length_status(priv, d, val);
118 }
119 
dmadesc_get_addr(struct bcmgenet_priv * priv,void __iomem * d)120 static inline dma_addr_t dmadesc_get_addr(struct bcmgenet_priv *priv,
121 					  void __iomem *d)
122 {
123 	dma_addr_t addr;
124 
125 	addr = bcmgenet_readl(d + DMA_DESC_ADDRESS_LO);
126 
127 	/* Register writes to GISB bus can take couple hundred nanoseconds
128 	 * and are done for each packet, save these expensive writes unless
129 	 * the platform is explicitly configured for 64-bits/LPAE.
130 	 */
131 #ifdef CONFIG_PHYS_ADDR_T_64BIT
132 	if (priv->hw_params->flags & GENET_HAS_40BITS)
133 		addr |= (u64)bcmgenet_readl(d + DMA_DESC_ADDRESS_HI) << 32;
134 #endif
135 	return addr;
136 }
137 
138 #define GENET_VER_FMT	"%1d.%1d EPHY: 0x%04x"
139 
140 #define GENET_MSG_DEFAULT	(NETIF_MSG_DRV | NETIF_MSG_PROBE | \
141 				NETIF_MSG_LINK)
142 
bcmgenet_rbuf_ctrl_get(struct bcmgenet_priv * priv)143 static inline u32 bcmgenet_rbuf_ctrl_get(struct bcmgenet_priv *priv)
144 {
145 	if (GENET_IS_V1(priv))
146 		return bcmgenet_rbuf_readl(priv, RBUF_FLUSH_CTRL_V1);
147 	else
148 		return bcmgenet_sys_readl(priv, SYS_RBUF_FLUSH_CTRL);
149 }
150 
bcmgenet_rbuf_ctrl_set(struct bcmgenet_priv * priv,u32 val)151 static inline void bcmgenet_rbuf_ctrl_set(struct bcmgenet_priv *priv, u32 val)
152 {
153 	if (GENET_IS_V1(priv))
154 		bcmgenet_rbuf_writel(priv, val, RBUF_FLUSH_CTRL_V1);
155 	else
156 		bcmgenet_sys_writel(priv, val, SYS_RBUF_FLUSH_CTRL);
157 }
158 
159 /* These macros are defined to deal with register map change
160  * between GENET1.1 and GENET2. Only those currently being used
161  * by driver are defined.
162  */
bcmgenet_tbuf_ctrl_get(struct bcmgenet_priv * priv)163 static inline u32 bcmgenet_tbuf_ctrl_get(struct bcmgenet_priv *priv)
164 {
165 	if (GENET_IS_V1(priv))
166 		return bcmgenet_rbuf_readl(priv, TBUF_CTRL_V1);
167 	else
168 		return bcmgenet_readl(priv->base +
169 				      priv->hw_params->tbuf_offset + TBUF_CTRL);
170 }
171 
bcmgenet_tbuf_ctrl_set(struct bcmgenet_priv * priv,u32 val)172 static inline void bcmgenet_tbuf_ctrl_set(struct bcmgenet_priv *priv, u32 val)
173 {
174 	if (GENET_IS_V1(priv))
175 		bcmgenet_rbuf_writel(priv, val, TBUF_CTRL_V1);
176 	else
177 		bcmgenet_writel(val, priv->base +
178 				priv->hw_params->tbuf_offset + TBUF_CTRL);
179 }
180 
bcmgenet_bp_mc_get(struct bcmgenet_priv * priv)181 static inline u32 bcmgenet_bp_mc_get(struct bcmgenet_priv *priv)
182 {
183 	if (GENET_IS_V1(priv))
184 		return bcmgenet_rbuf_readl(priv, TBUF_BP_MC_V1);
185 	else
186 		return bcmgenet_readl(priv->base +
187 				      priv->hw_params->tbuf_offset + TBUF_BP_MC);
188 }
189 
bcmgenet_bp_mc_set(struct bcmgenet_priv * priv,u32 val)190 static inline void bcmgenet_bp_mc_set(struct bcmgenet_priv *priv, u32 val)
191 {
192 	if (GENET_IS_V1(priv))
193 		bcmgenet_rbuf_writel(priv, val, TBUF_BP_MC_V1);
194 	else
195 		bcmgenet_writel(val, priv->base +
196 				priv->hw_params->tbuf_offset + TBUF_BP_MC);
197 }
198 
199 /* RX/TX DMA register accessors */
200 enum dma_reg {
201 	DMA_RING_CFG = 0,
202 	DMA_CTRL,
203 	DMA_STATUS,
204 	DMA_SCB_BURST_SIZE,
205 	DMA_ARB_CTRL,
206 	DMA_PRIORITY_0,
207 	DMA_PRIORITY_1,
208 	DMA_PRIORITY_2,
209 	DMA_INDEX2RING_0,
210 	DMA_INDEX2RING_1,
211 	DMA_INDEX2RING_2,
212 	DMA_INDEX2RING_3,
213 	DMA_INDEX2RING_4,
214 	DMA_INDEX2RING_5,
215 	DMA_INDEX2RING_6,
216 	DMA_INDEX2RING_7,
217 	DMA_RING0_TIMEOUT,
218 	DMA_RING1_TIMEOUT,
219 	DMA_RING2_TIMEOUT,
220 	DMA_RING3_TIMEOUT,
221 	DMA_RING4_TIMEOUT,
222 	DMA_RING5_TIMEOUT,
223 	DMA_RING6_TIMEOUT,
224 	DMA_RING7_TIMEOUT,
225 	DMA_RING8_TIMEOUT,
226 	DMA_RING9_TIMEOUT,
227 	DMA_RING10_TIMEOUT,
228 	DMA_RING11_TIMEOUT,
229 	DMA_RING12_TIMEOUT,
230 	DMA_RING13_TIMEOUT,
231 	DMA_RING14_TIMEOUT,
232 	DMA_RING15_TIMEOUT,
233 	DMA_RING16_TIMEOUT,
234 };
235 
236 static const u8 bcmgenet_dma_regs_v3plus[] = {
237 	[DMA_RING_CFG]		= 0x00,
238 	[DMA_CTRL]		= 0x04,
239 	[DMA_STATUS]		= 0x08,
240 	[DMA_SCB_BURST_SIZE]	= 0x0C,
241 	[DMA_ARB_CTRL]		= 0x2C,
242 	[DMA_PRIORITY_0]	= 0x30,
243 	[DMA_PRIORITY_1]	= 0x34,
244 	[DMA_PRIORITY_2]	= 0x38,
245 	[DMA_RING0_TIMEOUT]	= 0x2C,
246 	[DMA_RING1_TIMEOUT]	= 0x30,
247 	[DMA_RING2_TIMEOUT]	= 0x34,
248 	[DMA_RING3_TIMEOUT]	= 0x38,
249 	[DMA_RING4_TIMEOUT]	= 0x3c,
250 	[DMA_RING5_TIMEOUT]	= 0x40,
251 	[DMA_RING6_TIMEOUT]	= 0x44,
252 	[DMA_RING7_TIMEOUT]	= 0x48,
253 	[DMA_RING8_TIMEOUT]	= 0x4c,
254 	[DMA_RING9_TIMEOUT]	= 0x50,
255 	[DMA_RING10_TIMEOUT]	= 0x54,
256 	[DMA_RING11_TIMEOUT]	= 0x58,
257 	[DMA_RING12_TIMEOUT]	= 0x5c,
258 	[DMA_RING13_TIMEOUT]	= 0x60,
259 	[DMA_RING14_TIMEOUT]	= 0x64,
260 	[DMA_RING15_TIMEOUT]	= 0x68,
261 	[DMA_RING16_TIMEOUT]	= 0x6C,
262 	[DMA_INDEX2RING_0]	= 0x70,
263 	[DMA_INDEX2RING_1]	= 0x74,
264 	[DMA_INDEX2RING_2]	= 0x78,
265 	[DMA_INDEX2RING_3]	= 0x7C,
266 	[DMA_INDEX2RING_4]	= 0x80,
267 	[DMA_INDEX2RING_5]	= 0x84,
268 	[DMA_INDEX2RING_6]	= 0x88,
269 	[DMA_INDEX2RING_7]	= 0x8C,
270 };
271 
272 static const u8 bcmgenet_dma_regs_v2[] = {
273 	[DMA_RING_CFG]		= 0x00,
274 	[DMA_CTRL]		= 0x04,
275 	[DMA_STATUS]		= 0x08,
276 	[DMA_SCB_BURST_SIZE]	= 0x0C,
277 	[DMA_ARB_CTRL]		= 0x30,
278 	[DMA_PRIORITY_0]	= 0x34,
279 	[DMA_PRIORITY_1]	= 0x38,
280 	[DMA_PRIORITY_2]	= 0x3C,
281 	[DMA_RING0_TIMEOUT]	= 0x2C,
282 	[DMA_RING1_TIMEOUT]	= 0x30,
283 	[DMA_RING2_TIMEOUT]	= 0x34,
284 	[DMA_RING3_TIMEOUT]	= 0x38,
285 	[DMA_RING4_TIMEOUT]	= 0x3c,
286 	[DMA_RING5_TIMEOUT]	= 0x40,
287 	[DMA_RING6_TIMEOUT]	= 0x44,
288 	[DMA_RING7_TIMEOUT]	= 0x48,
289 	[DMA_RING8_TIMEOUT]	= 0x4c,
290 	[DMA_RING9_TIMEOUT]	= 0x50,
291 	[DMA_RING10_TIMEOUT]	= 0x54,
292 	[DMA_RING11_TIMEOUT]	= 0x58,
293 	[DMA_RING12_TIMEOUT]	= 0x5c,
294 	[DMA_RING13_TIMEOUT]	= 0x60,
295 	[DMA_RING14_TIMEOUT]	= 0x64,
296 	[DMA_RING15_TIMEOUT]	= 0x68,
297 	[DMA_RING16_TIMEOUT]	= 0x6C,
298 };
299 
300 static const u8 bcmgenet_dma_regs_v1[] = {
301 	[DMA_CTRL]		= 0x00,
302 	[DMA_STATUS]		= 0x04,
303 	[DMA_SCB_BURST_SIZE]	= 0x0C,
304 	[DMA_ARB_CTRL]		= 0x30,
305 	[DMA_PRIORITY_0]	= 0x34,
306 	[DMA_PRIORITY_1]	= 0x38,
307 	[DMA_PRIORITY_2]	= 0x3C,
308 	[DMA_RING0_TIMEOUT]	= 0x2C,
309 	[DMA_RING1_TIMEOUT]	= 0x30,
310 	[DMA_RING2_TIMEOUT]	= 0x34,
311 	[DMA_RING3_TIMEOUT]	= 0x38,
312 	[DMA_RING4_TIMEOUT]	= 0x3c,
313 	[DMA_RING5_TIMEOUT]	= 0x40,
314 	[DMA_RING6_TIMEOUT]	= 0x44,
315 	[DMA_RING7_TIMEOUT]	= 0x48,
316 	[DMA_RING8_TIMEOUT]	= 0x4c,
317 	[DMA_RING9_TIMEOUT]	= 0x50,
318 	[DMA_RING10_TIMEOUT]	= 0x54,
319 	[DMA_RING11_TIMEOUT]	= 0x58,
320 	[DMA_RING12_TIMEOUT]	= 0x5c,
321 	[DMA_RING13_TIMEOUT]	= 0x60,
322 	[DMA_RING14_TIMEOUT]	= 0x64,
323 	[DMA_RING15_TIMEOUT]	= 0x68,
324 	[DMA_RING16_TIMEOUT]	= 0x6C,
325 };
326 
327 /* Set at runtime once bcmgenet version is known */
328 static const u8 *bcmgenet_dma_regs;
329 
dev_to_priv(struct device * dev)330 static inline struct bcmgenet_priv *dev_to_priv(struct device *dev)
331 {
332 	return netdev_priv(dev_get_drvdata(dev));
333 }
334 
bcmgenet_tdma_readl(struct bcmgenet_priv * priv,enum dma_reg r)335 static inline u32 bcmgenet_tdma_readl(struct bcmgenet_priv *priv,
336 				      enum dma_reg r)
337 {
338 	return bcmgenet_readl(priv->base + GENET_TDMA_REG_OFF +
339 			      DMA_RINGS_SIZE + bcmgenet_dma_regs[r]);
340 }
341 
bcmgenet_tdma_writel(struct bcmgenet_priv * priv,u32 val,enum dma_reg r)342 static inline void bcmgenet_tdma_writel(struct bcmgenet_priv *priv,
343 					u32 val, enum dma_reg r)
344 {
345 	bcmgenet_writel(val, priv->base + GENET_TDMA_REG_OFF +
346 			DMA_RINGS_SIZE + bcmgenet_dma_regs[r]);
347 }
348 
bcmgenet_rdma_readl(struct bcmgenet_priv * priv,enum dma_reg r)349 static inline u32 bcmgenet_rdma_readl(struct bcmgenet_priv *priv,
350 				      enum dma_reg r)
351 {
352 	return bcmgenet_readl(priv->base + GENET_RDMA_REG_OFF +
353 			      DMA_RINGS_SIZE + bcmgenet_dma_regs[r]);
354 }
355 
bcmgenet_rdma_writel(struct bcmgenet_priv * priv,u32 val,enum dma_reg r)356 static inline void bcmgenet_rdma_writel(struct bcmgenet_priv *priv,
357 					u32 val, enum dma_reg r)
358 {
359 	bcmgenet_writel(val, priv->base + GENET_RDMA_REG_OFF +
360 			DMA_RINGS_SIZE + bcmgenet_dma_regs[r]);
361 }
362 
363 /* RDMA/TDMA ring registers and accessors
364  * we merge the common fields and just prefix with T/D the registers
365  * having different meaning depending on the direction
366  */
367 enum dma_ring_reg {
368 	TDMA_READ_PTR = 0,
369 	RDMA_WRITE_PTR = TDMA_READ_PTR,
370 	TDMA_READ_PTR_HI,
371 	RDMA_WRITE_PTR_HI = TDMA_READ_PTR_HI,
372 	TDMA_CONS_INDEX,
373 	RDMA_PROD_INDEX = TDMA_CONS_INDEX,
374 	TDMA_PROD_INDEX,
375 	RDMA_CONS_INDEX = TDMA_PROD_INDEX,
376 	DMA_RING_BUF_SIZE,
377 	DMA_START_ADDR,
378 	DMA_START_ADDR_HI,
379 	DMA_END_ADDR,
380 	DMA_END_ADDR_HI,
381 	DMA_MBUF_DONE_THRESH,
382 	TDMA_FLOW_PERIOD,
383 	RDMA_XON_XOFF_THRESH = TDMA_FLOW_PERIOD,
384 	TDMA_WRITE_PTR,
385 	RDMA_READ_PTR = TDMA_WRITE_PTR,
386 	TDMA_WRITE_PTR_HI,
387 	RDMA_READ_PTR_HI = TDMA_WRITE_PTR_HI
388 };
389 
390 /* GENET v4 supports 40-bits pointer addressing
391  * for obvious reasons the LO and HI word parts
392  * are contiguous, but this offsets the other
393  * registers.
394  */
395 static const u8 genet_dma_ring_regs_v4[] = {
396 	[TDMA_READ_PTR]			= 0x00,
397 	[TDMA_READ_PTR_HI]		= 0x04,
398 	[TDMA_CONS_INDEX]		= 0x08,
399 	[TDMA_PROD_INDEX]		= 0x0C,
400 	[DMA_RING_BUF_SIZE]		= 0x10,
401 	[DMA_START_ADDR]		= 0x14,
402 	[DMA_START_ADDR_HI]		= 0x18,
403 	[DMA_END_ADDR]			= 0x1C,
404 	[DMA_END_ADDR_HI]		= 0x20,
405 	[DMA_MBUF_DONE_THRESH]		= 0x24,
406 	[TDMA_FLOW_PERIOD]		= 0x28,
407 	[TDMA_WRITE_PTR]		= 0x2C,
408 	[TDMA_WRITE_PTR_HI]		= 0x30,
409 };
410 
411 static const u8 genet_dma_ring_regs_v123[] = {
412 	[TDMA_READ_PTR]			= 0x00,
413 	[TDMA_CONS_INDEX]		= 0x04,
414 	[TDMA_PROD_INDEX]		= 0x08,
415 	[DMA_RING_BUF_SIZE]		= 0x0C,
416 	[DMA_START_ADDR]		= 0x10,
417 	[DMA_END_ADDR]			= 0x14,
418 	[DMA_MBUF_DONE_THRESH]		= 0x18,
419 	[TDMA_FLOW_PERIOD]		= 0x1C,
420 	[TDMA_WRITE_PTR]		= 0x20,
421 };
422 
423 /* Set at runtime once GENET version is known */
424 static const u8 *genet_dma_ring_regs;
425 
bcmgenet_tdma_ring_readl(struct bcmgenet_priv * priv,unsigned int ring,enum dma_ring_reg r)426 static inline u32 bcmgenet_tdma_ring_readl(struct bcmgenet_priv *priv,
427 					   unsigned int ring,
428 					   enum dma_ring_reg r)
429 {
430 	return bcmgenet_readl(priv->base + GENET_TDMA_REG_OFF +
431 			      (DMA_RING_SIZE * ring) +
432 			      genet_dma_ring_regs[r]);
433 }
434 
bcmgenet_tdma_ring_writel(struct bcmgenet_priv * priv,unsigned int ring,u32 val,enum dma_ring_reg r)435 static inline void bcmgenet_tdma_ring_writel(struct bcmgenet_priv *priv,
436 					     unsigned int ring, u32 val,
437 					     enum dma_ring_reg r)
438 {
439 	bcmgenet_writel(val, priv->base + GENET_TDMA_REG_OFF +
440 			(DMA_RING_SIZE * ring) +
441 			genet_dma_ring_regs[r]);
442 }
443 
bcmgenet_rdma_ring_readl(struct bcmgenet_priv * priv,unsigned int ring,enum dma_ring_reg r)444 static inline u32 bcmgenet_rdma_ring_readl(struct bcmgenet_priv *priv,
445 					   unsigned int ring,
446 					   enum dma_ring_reg r)
447 {
448 	return bcmgenet_readl(priv->base + GENET_RDMA_REG_OFF +
449 			      (DMA_RING_SIZE * ring) +
450 			      genet_dma_ring_regs[r]);
451 }
452 
bcmgenet_rdma_ring_writel(struct bcmgenet_priv * priv,unsigned int ring,u32 val,enum dma_ring_reg r)453 static inline void bcmgenet_rdma_ring_writel(struct bcmgenet_priv *priv,
454 					     unsigned int ring, u32 val,
455 					     enum dma_ring_reg r)
456 {
457 	bcmgenet_writel(val, priv->base + GENET_RDMA_REG_OFF +
458 			(DMA_RING_SIZE * ring) +
459 			genet_dma_ring_regs[r]);
460 }
461 
bcmgenet_hfb_enable_filter(struct bcmgenet_priv * priv,u32 f_index)462 static void bcmgenet_hfb_enable_filter(struct bcmgenet_priv *priv, u32 f_index)
463 {
464 	u32 offset;
465 	u32 reg;
466 
467 	offset = HFB_FLT_ENABLE_V3PLUS + (f_index < 32) * sizeof(u32);
468 	reg = bcmgenet_hfb_reg_readl(priv, offset);
469 	reg |= (1 << (f_index % 32));
470 	bcmgenet_hfb_reg_writel(priv, reg, offset);
471 	reg = bcmgenet_hfb_reg_readl(priv, HFB_CTRL);
472 	reg |= RBUF_HFB_EN;
473 	bcmgenet_hfb_reg_writel(priv, reg, HFB_CTRL);
474 }
475 
bcmgenet_hfb_disable_filter(struct bcmgenet_priv * priv,u32 f_index)476 static void bcmgenet_hfb_disable_filter(struct bcmgenet_priv *priv, u32 f_index)
477 {
478 	u32 offset, reg, reg1;
479 
480 	offset = HFB_FLT_ENABLE_V3PLUS;
481 	reg = bcmgenet_hfb_reg_readl(priv, offset);
482 	reg1 = bcmgenet_hfb_reg_readl(priv, offset + sizeof(u32));
483 	if  (f_index < 32) {
484 		reg1 &= ~(1 << (f_index % 32));
485 		bcmgenet_hfb_reg_writel(priv, reg1, offset + sizeof(u32));
486 	} else {
487 		reg &= ~(1 << (f_index % 32));
488 		bcmgenet_hfb_reg_writel(priv, reg, offset);
489 	}
490 	if (!reg && !reg1) {
491 		reg = bcmgenet_hfb_reg_readl(priv, HFB_CTRL);
492 		reg &= ~RBUF_HFB_EN;
493 		bcmgenet_hfb_reg_writel(priv, reg, HFB_CTRL);
494 	}
495 }
496 
bcmgenet_hfb_set_filter_rx_queue_mapping(struct bcmgenet_priv * priv,u32 f_index,u32 rx_queue)497 static void bcmgenet_hfb_set_filter_rx_queue_mapping(struct bcmgenet_priv *priv,
498 						     u32 f_index, u32 rx_queue)
499 {
500 	u32 offset;
501 	u32 reg;
502 
503 	offset = f_index / 8;
504 	reg = bcmgenet_rdma_readl(priv, DMA_INDEX2RING_0 + offset);
505 	reg &= ~(0xF << (4 * (f_index % 8)));
506 	reg |= ((rx_queue & 0xF) << (4 * (f_index % 8)));
507 	bcmgenet_rdma_writel(priv, reg, DMA_INDEX2RING_0 + offset);
508 }
509 
bcmgenet_hfb_set_filter_length(struct bcmgenet_priv * priv,u32 f_index,u32 f_length)510 static void bcmgenet_hfb_set_filter_length(struct bcmgenet_priv *priv,
511 					   u32 f_index, u32 f_length)
512 {
513 	u32 offset;
514 	u32 reg;
515 
516 	offset = HFB_FLT_LEN_V3PLUS +
517 		 ((priv->hw_params->hfb_filter_cnt - 1 - f_index) / 4) *
518 		 sizeof(u32);
519 	reg = bcmgenet_hfb_reg_readl(priv, offset);
520 	reg &= ~(0xFF << (8 * (f_index % 4)));
521 	reg |= ((f_length & 0xFF) << (8 * (f_index % 4)));
522 	bcmgenet_hfb_reg_writel(priv, reg, offset);
523 }
524 
bcmgenet_hfb_validate_mask(void * mask,size_t size)525 static int bcmgenet_hfb_validate_mask(void *mask, size_t size)
526 {
527 	while (size) {
528 		switch (*(unsigned char *)mask++) {
529 		case 0x00:
530 		case 0x0f:
531 		case 0xf0:
532 		case 0xff:
533 			size--;
534 			continue;
535 		default:
536 			return -EINVAL;
537 		}
538 	}
539 
540 	return 0;
541 }
542 
543 #define VALIDATE_MASK(x) \
544 	bcmgenet_hfb_validate_mask(&(x), sizeof(x))
545 
bcmgenet_hfb_insert_data(struct bcmgenet_priv * priv,u32 f_index,u32 offset,void * val,void * mask,size_t size)546 static int bcmgenet_hfb_insert_data(struct bcmgenet_priv *priv, u32 f_index,
547 				    u32 offset, void *val, void *mask,
548 				    size_t size)
549 {
550 	u32 index, tmp;
551 
552 	index = f_index * priv->hw_params->hfb_filter_size + offset / 2;
553 	tmp = bcmgenet_hfb_readl(priv, index * sizeof(u32));
554 
555 	while (size--) {
556 		if (offset++ & 1) {
557 			tmp &= ~0x300FF;
558 			tmp |= (*(unsigned char *)val++);
559 			switch ((*(unsigned char *)mask++)) {
560 			case 0xFF:
561 				tmp |= 0x30000;
562 				break;
563 			case 0xF0:
564 				tmp |= 0x20000;
565 				break;
566 			case 0x0F:
567 				tmp |= 0x10000;
568 				break;
569 			}
570 			bcmgenet_hfb_writel(priv, tmp, index++ * sizeof(u32));
571 			if (size)
572 				tmp = bcmgenet_hfb_readl(priv,
573 							 index * sizeof(u32));
574 		} else {
575 			tmp &= ~0xCFF00;
576 			tmp |= (*(unsigned char *)val++) << 8;
577 			switch ((*(unsigned char *)mask++)) {
578 			case 0xFF:
579 				tmp |= 0xC0000;
580 				break;
581 			case 0xF0:
582 				tmp |= 0x80000;
583 				break;
584 			case 0x0F:
585 				tmp |= 0x40000;
586 				break;
587 			}
588 			if (!size)
589 				bcmgenet_hfb_writel(priv, tmp, index * sizeof(u32));
590 		}
591 	}
592 
593 	return 0;
594 }
595 
bcmgenet_hfb_create_rxnfc_filter(struct bcmgenet_priv * priv,struct bcmgenet_rxnfc_rule * rule)596 static void bcmgenet_hfb_create_rxnfc_filter(struct bcmgenet_priv *priv,
597 					     struct bcmgenet_rxnfc_rule *rule)
598 {
599 	struct ethtool_rx_flow_spec *fs = &rule->fs;
600 	u32 offset = 0, f_length = 0, f;
601 	u8 val_8, mask_8;
602 	__be16 val_16;
603 	u16 mask_16;
604 	size_t size;
605 
606 	f = fs->location;
607 	if (fs->flow_type & FLOW_MAC_EXT) {
608 		bcmgenet_hfb_insert_data(priv, f, 0,
609 					 &fs->h_ext.h_dest, &fs->m_ext.h_dest,
610 					 sizeof(fs->h_ext.h_dest));
611 	}
612 
613 	if (fs->flow_type & FLOW_EXT) {
614 		if (fs->m_ext.vlan_etype ||
615 		    fs->m_ext.vlan_tci) {
616 			bcmgenet_hfb_insert_data(priv, f, 12,
617 						 &fs->h_ext.vlan_etype,
618 						 &fs->m_ext.vlan_etype,
619 						 sizeof(fs->h_ext.vlan_etype));
620 			bcmgenet_hfb_insert_data(priv, f, 14,
621 						 &fs->h_ext.vlan_tci,
622 						 &fs->m_ext.vlan_tci,
623 						 sizeof(fs->h_ext.vlan_tci));
624 			offset += VLAN_HLEN;
625 			f_length += DIV_ROUND_UP(VLAN_HLEN, 2);
626 		}
627 	}
628 
629 	switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) {
630 	case ETHER_FLOW:
631 		f_length += DIV_ROUND_UP(ETH_HLEN, 2);
632 		bcmgenet_hfb_insert_data(priv, f, 0,
633 					 &fs->h_u.ether_spec.h_dest,
634 					 &fs->m_u.ether_spec.h_dest,
635 					 sizeof(fs->h_u.ether_spec.h_dest));
636 		bcmgenet_hfb_insert_data(priv, f, ETH_ALEN,
637 					 &fs->h_u.ether_spec.h_source,
638 					 &fs->m_u.ether_spec.h_source,
639 					 sizeof(fs->h_u.ether_spec.h_source));
640 		bcmgenet_hfb_insert_data(priv, f, (2 * ETH_ALEN) + offset,
641 					 &fs->h_u.ether_spec.h_proto,
642 					 &fs->m_u.ether_spec.h_proto,
643 					 sizeof(fs->h_u.ether_spec.h_proto));
644 		break;
645 	case IP_USER_FLOW:
646 		f_length += DIV_ROUND_UP(ETH_HLEN + 20, 2);
647 		/* Specify IP Ether Type */
648 		val_16 = htons(ETH_P_IP);
649 		mask_16 = 0xFFFF;
650 		bcmgenet_hfb_insert_data(priv, f, (2 * ETH_ALEN) + offset,
651 					 &val_16, &mask_16, sizeof(val_16));
652 		bcmgenet_hfb_insert_data(priv, f, 15 + offset,
653 					 &fs->h_u.usr_ip4_spec.tos,
654 					 &fs->m_u.usr_ip4_spec.tos,
655 					 sizeof(fs->h_u.usr_ip4_spec.tos));
656 		bcmgenet_hfb_insert_data(priv, f, 23 + offset,
657 					 &fs->h_u.usr_ip4_spec.proto,
658 					 &fs->m_u.usr_ip4_spec.proto,
659 					 sizeof(fs->h_u.usr_ip4_spec.proto));
660 		bcmgenet_hfb_insert_data(priv, f, 26 + offset,
661 					 &fs->h_u.usr_ip4_spec.ip4src,
662 					 &fs->m_u.usr_ip4_spec.ip4src,
663 					 sizeof(fs->h_u.usr_ip4_spec.ip4src));
664 		bcmgenet_hfb_insert_data(priv, f, 30 + offset,
665 					 &fs->h_u.usr_ip4_spec.ip4dst,
666 					 &fs->m_u.usr_ip4_spec.ip4dst,
667 					 sizeof(fs->h_u.usr_ip4_spec.ip4dst));
668 		if (!fs->m_u.usr_ip4_spec.l4_4_bytes)
669 			break;
670 
671 		/* Only supports 20 byte IPv4 header */
672 		val_8 = 0x45;
673 		mask_8 = 0xFF;
674 		bcmgenet_hfb_insert_data(priv, f, ETH_HLEN + offset,
675 					 &val_8, &mask_8,
676 					 sizeof(val_8));
677 		size = sizeof(fs->h_u.usr_ip4_spec.l4_4_bytes);
678 		bcmgenet_hfb_insert_data(priv, f,
679 					 ETH_HLEN + 20 + offset,
680 					 &fs->h_u.usr_ip4_spec.l4_4_bytes,
681 					 &fs->m_u.usr_ip4_spec.l4_4_bytes,
682 					 size);
683 		f_length += DIV_ROUND_UP(size, 2);
684 		break;
685 	}
686 
687 	bcmgenet_hfb_set_filter_length(priv, f, 2 * f_length);
688 	if (!fs->ring_cookie || fs->ring_cookie == RX_CLS_FLOW_WAKE) {
689 		/* Ring 0 flows can be handled by the default Descriptor Ring
690 		 * We'll map them to ring 0, but don't enable the filter
691 		 */
692 		bcmgenet_hfb_set_filter_rx_queue_mapping(priv, f, 0);
693 		rule->state = BCMGENET_RXNFC_STATE_DISABLED;
694 	} else {
695 		/* Other Rx rings are direct mapped here */
696 		bcmgenet_hfb_set_filter_rx_queue_mapping(priv, f,
697 							 fs->ring_cookie);
698 		bcmgenet_hfb_enable_filter(priv, f);
699 		rule->state = BCMGENET_RXNFC_STATE_ENABLED;
700 	}
701 }
702 
703 /* bcmgenet_hfb_clear
704  *
705  * Clear Hardware Filter Block and disable all filtering.
706  */
bcmgenet_hfb_clear_filter(struct bcmgenet_priv * priv,u32 f_index)707 static void bcmgenet_hfb_clear_filter(struct bcmgenet_priv *priv, u32 f_index)
708 {
709 	u32 base, i;
710 
711 	base = f_index * priv->hw_params->hfb_filter_size;
712 	for (i = 0; i < priv->hw_params->hfb_filter_size; i++)
713 		bcmgenet_hfb_writel(priv, 0x0, (base + i) * sizeof(u32));
714 }
715 
bcmgenet_hfb_clear(struct bcmgenet_priv * priv)716 static void bcmgenet_hfb_clear(struct bcmgenet_priv *priv)
717 {
718 	u32 i;
719 
720 	if (GENET_IS_V1(priv) || GENET_IS_V2(priv))
721 		return;
722 
723 	bcmgenet_hfb_reg_writel(priv, 0x0, HFB_CTRL);
724 	bcmgenet_hfb_reg_writel(priv, 0x0, HFB_FLT_ENABLE_V3PLUS);
725 	bcmgenet_hfb_reg_writel(priv, 0x0, HFB_FLT_ENABLE_V3PLUS + 4);
726 
727 	for (i = DMA_INDEX2RING_0; i <= DMA_INDEX2RING_7; i++)
728 		bcmgenet_rdma_writel(priv, 0x0, i);
729 
730 	for (i = 0; i < (priv->hw_params->hfb_filter_cnt / 4); i++)
731 		bcmgenet_hfb_reg_writel(priv, 0x0,
732 					HFB_FLT_LEN_V3PLUS + i * sizeof(u32));
733 
734 	for (i = 0; i < priv->hw_params->hfb_filter_cnt; i++)
735 		bcmgenet_hfb_clear_filter(priv, i);
736 }
737 
bcmgenet_hfb_init(struct bcmgenet_priv * priv)738 static void bcmgenet_hfb_init(struct bcmgenet_priv *priv)
739 {
740 	int i;
741 
742 	INIT_LIST_HEAD(&priv->rxnfc_list);
743 	if (GENET_IS_V1(priv) || GENET_IS_V2(priv))
744 		return;
745 
746 	for (i = 0; i < MAX_NUM_OF_FS_RULES; i++) {
747 		INIT_LIST_HEAD(&priv->rxnfc_rules[i].list);
748 		priv->rxnfc_rules[i].state = BCMGENET_RXNFC_STATE_UNUSED;
749 	}
750 
751 	bcmgenet_hfb_clear(priv);
752 }
753 
bcmgenet_begin(struct net_device * dev)754 static int bcmgenet_begin(struct net_device *dev)
755 {
756 	struct bcmgenet_priv *priv = netdev_priv(dev);
757 
758 	/* Turn on the clock */
759 	return clk_prepare_enable(priv->clk);
760 }
761 
bcmgenet_complete(struct net_device * dev)762 static void bcmgenet_complete(struct net_device *dev)
763 {
764 	struct bcmgenet_priv *priv = netdev_priv(dev);
765 
766 	/* Turn off the clock */
767 	clk_disable_unprepare(priv->clk);
768 }
769 
bcmgenet_get_link_ksettings(struct net_device * dev,struct ethtool_link_ksettings * cmd)770 static int bcmgenet_get_link_ksettings(struct net_device *dev,
771 				       struct ethtool_link_ksettings *cmd)
772 {
773 	if (!netif_running(dev))
774 		return -EINVAL;
775 
776 	if (!dev->phydev)
777 		return -ENODEV;
778 
779 	phy_ethtool_ksettings_get(dev->phydev, cmd);
780 
781 	return 0;
782 }
783 
bcmgenet_set_link_ksettings(struct net_device * dev,const struct ethtool_link_ksettings * cmd)784 static int bcmgenet_set_link_ksettings(struct net_device *dev,
785 				       const struct ethtool_link_ksettings *cmd)
786 {
787 	if (!netif_running(dev))
788 		return -EINVAL;
789 
790 	if (!dev->phydev)
791 		return -ENODEV;
792 
793 	return phy_ethtool_ksettings_set(dev->phydev, cmd);
794 }
795 
bcmgenet_set_features(struct net_device * dev,netdev_features_t features)796 static int bcmgenet_set_features(struct net_device *dev,
797 				 netdev_features_t features)
798 {
799 	struct bcmgenet_priv *priv = netdev_priv(dev);
800 	u32 reg;
801 	int ret;
802 
803 	ret = clk_prepare_enable(priv->clk);
804 	if (ret)
805 		return ret;
806 
807 	/* Make sure we reflect the value of CRC_CMD_FWD */
808 	reg = bcmgenet_umac_readl(priv, UMAC_CMD);
809 	priv->crc_fwd_en = !!(reg & CMD_CRC_FWD);
810 
811 	clk_disable_unprepare(priv->clk);
812 
813 	return ret;
814 }
815 
bcmgenet_get_msglevel(struct net_device * dev)816 static u32 bcmgenet_get_msglevel(struct net_device *dev)
817 {
818 	struct bcmgenet_priv *priv = netdev_priv(dev);
819 
820 	return priv->msg_enable;
821 }
822 
bcmgenet_set_msglevel(struct net_device * dev,u32 level)823 static void bcmgenet_set_msglevel(struct net_device *dev, u32 level)
824 {
825 	struct bcmgenet_priv *priv = netdev_priv(dev);
826 
827 	priv->msg_enable = level;
828 }
829 
bcmgenet_get_coalesce(struct net_device * dev,struct ethtool_coalesce * ec)830 static int bcmgenet_get_coalesce(struct net_device *dev,
831 				 struct ethtool_coalesce *ec)
832 {
833 	struct bcmgenet_priv *priv = netdev_priv(dev);
834 	struct bcmgenet_rx_ring *ring;
835 	unsigned int i;
836 
837 	ec->tx_max_coalesced_frames =
838 		bcmgenet_tdma_ring_readl(priv, DESC_INDEX,
839 					 DMA_MBUF_DONE_THRESH);
840 	ec->rx_max_coalesced_frames =
841 		bcmgenet_rdma_ring_readl(priv, DESC_INDEX,
842 					 DMA_MBUF_DONE_THRESH);
843 	ec->rx_coalesce_usecs =
844 		bcmgenet_rdma_readl(priv, DMA_RING16_TIMEOUT) * 8192 / 1000;
845 
846 	for (i = 0; i < priv->hw_params->rx_queues; i++) {
847 		ring = &priv->rx_rings[i];
848 		ec->use_adaptive_rx_coalesce |= ring->dim.use_dim;
849 	}
850 	ring = &priv->rx_rings[DESC_INDEX];
851 	ec->use_adaptive_rx_coalesce |= ring->dim.use_dim;
852 
853 	return 0;
854 }
855 
bcmgenet_set_rx_coalesce(struct bcmgenet_rx_ring * ring,u32 usecs,u32 pkts)856 static void bcmgenet_set_rx_coalesce(struct bcmgenet_rx_ring *ring,
857 				     u32 usecs, u32 pkts)
858 {
859 	struct bcmgenet_priv *priv = ring->priv;
860 	unsigned int i = ring->index;
861 	u32 reg;
862 
863 	bcmgenet_rdma_ring_writel(priv, i, pkts, DMA_MBUF_DONE_THRESH);
864 
865 	reg = bcmgenet_rdma_readl(priv, DMA_RING0_TIMEOUT + i);
866 	reg &= ~DMA_TIMEOUT_MASK;
867 	reg |= DIV_ROUND_UP(usecs * 1000, 8192);
868 	bcmgenet_rdma_writel(priv, reg, DMA_RING0_TIMEOUT + i);
869 }
870 
bcmgenet_set_ring_rx_coalesce(struct bcmgenet_rx_ring * ring,struct ethtool_coalesce * ec)871 static void bcmgenet_set_ring_rx_coalesce(struct bcmgenet_rx_ring *ring,
872 					  struct ethtool_coalesce *ec)
873 {
874 	struct dim_cq_moder moder;
875 	u32 usecs, pkts;
876 
877 	ring->rx_coalesce_usecs = ec->rx_coalesce_usecs;
878 	ring->rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
879 	usecs = ring->rx_coalesce_usecs;
880 	pkts = ring->rx_max_coalesced_frames;
881 
882 	if (ec->use_adaptive_rx_coalesce && !ring->dim.use_dim) {
883 		moder = net_dim_get_def_rx_moderation(ring->dim.dim.mode);
884 		usecs = moder.usec;
885 		pkts = moder.pkts;
886 	}
887 
888 	ring->dim.use_dim = ec->use_adaptive_rx_coalesce;
889 	bcmgenet_set_rx_coalesce(ring, usecs, pkts);
890 }
891 
bcmgenet_set_coalesce(struct net_device * dev,struct ethtool_coalesce * ec)892 static int bcmgenet_set_coalesce(struct net_device *dev,
893 				 struct ethtool_coalesce *ec)
894 {
895 	struct bcmgenet_priv *priv = netdev_priv(dev);
896 	unsigned int i;
897 
898 	/* Base system clock is 125Mhz, DMA timeout is this reference clock
899 	 * divided by 1024, which yields roughly 8.192us, our maximum value
900 	 * has to fit in the DMA_TIMEOUT_MASK (16 bits)
901 	 */
902 	if (ec->tx_max_coalesced_frames > DMA_INTR_THRESHOLD_MASK ||
903 	    ec->tx_max_coalesced_frames == 0 ||
904 	    ec->rx_max_coalesced_frames > DMA_INTR_THRESHOLD_MASK ||
905 	    ec->rx_coalesce_usecs > (DMA_TIMEOUT_MASK * 8) + 1)
906 		return -EINVAL;
907 
908 	if (ec->rx_coalesce_usecs == 0 && ec->rx_max_coalesced_frames == 0)
909 		return -EINVAL;
910 
911 	/* GENET TDMA hardware does not support a configurable timeout, but will
912 	 * always generate an interrupt either after MBDONE packets have been
913 	 * transmitted, or when the ring is empty.
914 	 */
915 
916 	/* Program all TX queues with the same values, as there is no
917 	 * ethtool knob to do coalescing on a per-queue basis
918 	 */
919 	for (i = 0; i < priv->hw_params->tx_queues; i++)
920 		bcmgenet_tdma_ring_writel(priv, i,
921 					  ec->tx_max_coalesced_frames,
922 					  DMA_MBUF_DONE_THRESH);
923 	bcmgenet_tdma_ring_writel(priv, DESC_INDEX,
924 				  ec->tx_max_coalesced_frames,
925 				  DMA_MBUF_DONE_THRESH);
926 
927 	for (i = 0; i < priv->hw_params->rx_queues; i++)
928 		bcmgenet_set_ring_rx_coalesce(&priv->rx_rings[i], ec);
929 	bcmgenet_set_ring_rx_coalesce(&priv->rx_rings[DESC_INDEX], ec);
930 
931 	return 0;
932 }
933 
934 /* standard ethtool support functions. */
935 enum bcmgenet_stat_type {
936 	BCMGENET_STAT_NETDEV = -1,
937 	BCMGENET_STAT_MIB_RX,
938 	BCMGENET_STAT_MIB_TX,
939 	BCMGENET_STAT_RUNT,
940 	BCMGENET_STAT_MISC,
941 	BCMGENET_STAT_SOFT,
942 };
943 
944 struct bcmgenet_stats {
945 	char stat_string[ETH_GSTRING_LEN];
946 	int stat_sizeof;
947 	int stat_offset;
948 	enum bcmgenet_stat_type type;
949 	/* reg offset from UMAC base for misc counters */
950 	u16 reg_offset;
951 };
952 
953 #define STAT_NETDEV(m) { \
954 	.stat_string = __stringify(m), \
955 	.stat_sizeof = sizeof(((struct net_device_stats *)0)->m), \
956 	.stat_offset = offsetof(struct net_device_stats, m), \
957 	.type = BCMGENET_STAT_NETDEV, \
958 }
959 
960 #define STAT_GENET_MIB(str, m, _type) { \
961 	.stat_string = str, \
962 	.stat_sizeof = sizeof(((struct bcmgenet_priv *)0)->m), \
963 	.stat_offset = offsetof(struct bcmgenet_priv, m), \
964 	.type = _type, \
965 }
966 
967 #define STAT_GENET_MIB_RX(str, m) STAT_GENET_MIB(str, m, BCMGENET_STAT_MIB_RX)
968 #define STAT_GENET_MIB_TX(str, m) STAT_GENET_MIB(str, m, BCMGENET_STAT_MIB_TX)
969 #define STAT_GENET_RUNT(str, m) STAT_GENET_MIB(str, m, BCMGENET_STAT_RUNT)
970 #define STAT_GENET_SOFT_MIB(str, m) STAT_GENET_MIB(str, m, BCMGENET_STAT_SOFT)
971 
972 #define STAT_GENET_MISC(str, m, offset) { \
973 	.stat_string = str, \
974 	.stat_sizeof = sizeof(((struct bcmgenet_priv *)0)->m), \
975 	.stat_offset = offsetof(struct bcmgenet_priv, m), \
976 	.type = BCMGENET_STAT_MISC, \
977 	.reg_offset = offset, \
978 }
979 
980 #define STAT_GENET_Q(num) \
981 	STAT_GENET_SOFT_MIB("txq" __stringify(num) "_packets", \
982 			tx_rings[num].packets), \
983 	STAT_GENET_SOFT_MIB("txq" __stringify(num) "_bytes", \
984 			tx_rings[num].bytes), \
985 	STAT_GENET_SOFT_MIB("rxq" __stringify(num) "_bytes", \
986 			rx_rings[num].bytes),	 \
987 	STAT_GENET_SOFT_MIB("rxq" __stringify(num) "_packets", \
988 			rx_rings[num].packets), \
989 	STAT_GENET_SOFT_MIB("rxq" __stringify(num) "_errors", \
990 			rx_rings[num].errors), \
991 	STAT_GENET_SOFT_MIB("rxq" __stringify(num) "_dropped", \
992 			rx_rings[num].dropped)
993 
994 /* There is a 0xC gap between the end of RX and beginning of TX stats and then
995  * between the end of TX stats and the beginning of the RX RUNT
996  */
997 #define BCMGENET_STAT_OFFSET	0xc
998 
999 /* Hardware counters must be kept in sync because the order/offset
1000  * is important here (order in structure declaration = order in hardware)
1001  */
1002 static const struct bcmgenet_stats bcmgenet_gstrings_stats[] = {
1003 	/* general stats */
1004 	STAT_NETDEV(rx_packets),
1005 	STAT_NETDEV(tx_packets),
1006 	STAT_NETDEV(rx_bytes),
1007 	STAT_NETDEV(tx_bytes),
1008 	STAT_NETDEV(rx_errors),
1009 	STAT_NETDEV(tx_errors),
1010 	STAT_NETDEV(rx_dropped),
1011 	STAT_NETDEV(tx_dropped),
1012 	STAT_NETDEV(multicast),
1013 	/* UniMAC RSV counters */
1014 	STAT_GENET_MIB_RX("rx_64_octets", mib.rx.pkt_cnt.cnt_64),
1015 	STAT_GENET_MIB_RX("rx_65_127_oct", mib.rx.pkt_cnt.cnt_127),
1016 	STAT_GENET_MIB_RX("rx_128_255_oct", mib.rx.pkt_cnt.cnt_255),
1017 	STAT_GENET_MIB_RX("rx_256_511_oct", mib.rx.pkt_cnt.cnt_511),
1018 	STAT_GENET_MIB_RX("rx_512_1023_oct", mib.rx.pkt_cnt.cnt_1023),
1019 	STAT_GENET_MIB_RX("rx_1024_1518_oct", mib.rx.pkt_cnt.cnt_1518),
1020 	STAT_GENET_MIB_RX("rx_vlan_1519_1522_oct", mib.rx.pkt_cnt.cnt_mgv),
1021 	STAT_GENET_MIB_RX("rx_1522_2047_oct", mib.rx.pkt_cnt.cnt_2047),
1022 	STAT_GENET_MIB_RX("rx_2048_4095_oct", mib.rx.pkt_cnt.cnt_4095),
1023 	STAT_GENET_MIB_RX("rx_4096_9216_oct", mib.rx.pkt_cnt.cnt_9216),
1024 	STAT_GENET_MIB_RX("rx_pkts", mib.rx.pkt),
1025 	STAT_GENET_MIB_RX("rx_bytes", mib.rx.bytes),
1026 	STAT_GENET_MIB_RX("rx_multicast", mib.rx.mca),
1027 	STAT_GENET_MIB_RX("rx_broadcast", mib.rx.bca),
1028 	STAT_GENET_MIB_RX("rx_fcs", mib.rx.fcs),
1029 	STAT_GENET_MIB_RX("rx_control", mib.rx.cf),
1030 	STAT_GENET_MIB_RX("rx_pause", mib.rx.pf),
1031 	STAT_GENET_MIB_RX("rx_unknown", mib.rx.uo),
1032 	STAT_GENET_MIB_RX("rx_align", mib.rx.aln),
1033 	STAT_GENET_MIB_RX("rx_outrange", mib.rx.flr),
1034 	STAT_GENET_MIB_RX("rx_code", mib.rx.cde),
1035 	STAT_GENET_MIB_RX("rx_carrier", mib.rx.fcr),
1036 	STAT_GENET_MIB_RX("rx_oversize", mib.rx.ovr),
1037 	STAT_GENET_MIB_RX("rx_jabber", mib.rx.jbr),
1038 	STAT_GENET_MIB_RX("rx_mtu_err", mib.rx.mtue),
1039 	STAT_GENET_MIB_RX("rx_good_pkts", mib.rx.pok),
1040 	STAT_GENET_MIB_RX("rx_unicast", mib.rx.uc),
1041 	STAT_GENET_MIB_RX("rx_ppp", mib.rx.ppp),
1042 	STAT_GENET_MIB_RX("rx_crc", mib.rx.rcrc),
1043 	/* UniMAC TSV counters */
1044 	STAT_GENET_MIB_TX("tx_64_octets", mib.tx.pkt_cnt.cnt_64),
1045 	STAT_GENET_MIB_TX("tx_65_127_oct", mib.tx.pkt_cnt.cnt_127),
1046 	STAT_GENET_MIB_TX("tx_128_255_oct", mib.tx.pkt_cnt.cnt_255),
1047 	STAT_GENET_MIB_TX("tx_256_511_oct", mib.tx.pkt_cnt.cnt_511),
1048 	STAT_GENET_MIB_TX("tx_512_1023_oct", mib.tx.pkt_cnt.cnt_1023),
1049 	STAT_GENET_MIB_TX("tx_1024_1518_oct", mib.tx.pkt_cnt.cnt_1518),
1050 	STAT_GENET_MIB_TX("tx_vlan_1519_1522_oct", mib.tx.pkt_cnt.cnt_mgv),
1051 	STAT_GENET_MIB_TX("tx_1522_2047_oct", mib.tx.pkt_cnt.cnt_2047),
1052 	STAT_GENET_MIB_TX("tx_2048_4095_oct", mib.tx.pkt_cnt.cnt_4095),
1053 	STAT_GENET_MIB_TX("tx_4096_9216_oct", mib.tx.pkt_cnt.cnt_9216),
1054 	STAT_GENET_MIB_TX("tx_pkts", mib.tx.pkts),
1055 	STAT_GENET_MIB_TX("tx_multicast", mib.tx.mca),
1056 	STAT_GENET_MIB_TX("tx_broadcast", mib.tx.bca),
1057 	STAT_GENET_MIB_TX("tx_pause", mib.tx.pf),
1058 	STAT_GENET_MIB_TX("tx_control", mib.tx.cf),
1059 	STAT_GENET_MIB_TX("tx_fcs_err", mib.tx.fcs),
1060 	STAT_GENET_MIB_TX("tx_oversize", mib.tx.ovr),
1061 	STAT_GENET_MIB_TX("tx_defer", mib.tx.drf),
1062 	STAT_GENET_MIB_TX("tx_excess_defer", mib.tx.edf),
1063 	STAT_GENET_MIB_TX("tx_single_col", mib.tx.scl),
1064 	STAT_GENET_MIB_TX("tx_multi_col", mib.tx.mcl),
1065 	STAT_GENET_MIB_TX("tx_late_col", mib.tx.lcl),
1066 	STAT_GENET_MIB_TX("tx_excess_col", mib.tx.ecl),
1067 	STAT_GENET_MIB_TX("tx_frags", mib.tx.frg),
1068 	STAT_GENET_MIB_TX("tx_total_col", mib.tx.ncl),
1069 	STAT_GENET_MIB_TX("tx_jabber", mib.tx.jbr),
1070 	STAT_GENET_MIB_TX("tx_bytes", mib.tx.bytes),
1071 	STAT_GENET_MIB_TX("tx_good_pkts", mib.tx.pok),
1072 	STAT_GENET_MIB_TX("tx_unicast", mib.tx.uc),
1073 	/* UniMAC RUNT counters */
1074 	STAT_GENET_RUNT("rx_runt_pkts", mib.rx_runt_cnt),
1075 	STAT_GENET_RUNT("rx_runt_valid_fcs", mib.rx_runt_fcs),
1076 	STAT_GENET_RUNT("rx_runt_inval_fcs_align", mib.rx_runt_fcs_align),
1077 	STAT_GENET_RUNT("rx_runt_bytes", mib.rx_runt_bytes),
1078 	/* Misc UniMAC counters */
1079 	STAT_GENET_MISC("rbuf_ovflow_cnt", mib.rbuf_ovflow_cnt,
1080 			UMAC_RBUF_OVFL_CNT_V1),
1081 	STAT_GENET_MISC("rbuf_err_cnt", mib.rbuf_err_cnt,
1082 			UMAC_RBUF_ERR_CNT_V1),
1083 	STAT_GENET_MISC("mdf_err_cnt", mib.mdf_err_cnt, UMAC_MDF_ERR_CNT),
1084 	STAT_GENET_SOFT_MIB("alloc_rx_buff_failed", mib.alloc_rx_buff_failed),
1085 	STAT_GENET_SOFT_MIB("rx_dma_failed", mib.rx_dma_failed),
1086 	STAT_GENET_SOFT_MIB("tx_dma_failed", mib.tx_dma_failed),
1087 	STAT_GENET_SOFT_MIB("tx_realloc_tsb", mib.tx_realloc_tsb),
1088 	STAT_GENET_SOFT_MIB("tx_realloc_tsb_failed",
1089 			    mib.tx_realloc_tsb_failed),
1090 	/* Per TX queues */
1091 	STAT_GENET_Q(0),
1092 	STAT_GENET_Q(1),
1093 	STAT_GENET_Q(2),
1094 	STAT_GENET_Q(3),
1095 	STAT_GENET_Q(16),
1096 };
1097 
1098 #define BCMGENET_STATS_LEN	ARRAY_SIZE(bcmgenet_gstrings_stats)
1099 
bcmgenet_get_drvinfo(struct net_device * dev,struct ethtool_drvinfo * info)1100 static void bcmgenet_get_drvinfo(struct net_device *dev,
1101 				 struct ethtool_drvinfo *info)
1102 {
1103 	strlcpy(info->driver, "bcmgenet", sizeof(info->driver));
1104 }
1105 
bcmgenet_get_sset_count(struct net_device * dev,int string_set)1106 static int bcmgenet_get_sset_count(struct net_device *dev, int string_set)
1107 {
1108 	switch (string_set) {
1109 	case ETH_SS_STATS:
1110 		return BCMGENET_STATS_LEN;
1111 	default:
1112 		return -EOPNOTSUPP;
1113 	}
1114 }
1115 
bcmgenet_get_strings(struct net_device * dev,u32 stringset,u8 * data)1116 static void bcmgenet_get_strings(struct net_device *dev, u32 stringset,
1117 				 u8 *data)
1118 {
1119 	int i;
1120 
1121 	switch (stringset) {
1122 	case ETH_SS_STATS:
1123 		for (i = 0; i < BCMGENET_STATS_LEN; i++) {
1124 			memcpy(data + i * ETH_GSTRING_LEN,
1125 			       bcmgenet_gstrings_stats[i].stat_string,
1126 			       ETH_GSTRING_LEN);
1127 		}
1128 		break;
1129 	}
1130 }
1131 
bcmgenet_update_stat_misc(struct bcmgenet_priv * priv,u16 offset)1132 static u32 bcmgenet_update_stat_misc(struct bcmgenet_priv *priv, u16 offset)
1133 {
1134 	u16 new_offset;
1135 	u32 val;
1136 
1137 	switch (offset) {
1138 	case UMAC_RBUF_OVFL_CNT_V1:
1139 		if (GENET_IS_V2(priv))
1140 			new_offset = RBUF_OVFL_CNT_V2;
1141 		else
1142 			new_offset = RBUF_OVFL_CNT_V3PLUS;
1143 
1144 		val = bcmgenet_rbuf_readl(priv,	new_offset);
1145 		/* clear if overflowed */
1146 		if (val == ~0)
1147 			bcmgenet_rbuf_writel(priv, 0, new_offset);
1148 		break;
1149 	case UMAC_RBUF_ERR_CNT_V1:
1150 		if (GENET_IS_V2(priv))
1151 			new_offset = RBUF_ERR_CNT_V2;
1152 		else
1153 			new_offset = RBUF_ERR_CNT_V3PLUS;
1154 
1155 		val = bcmgenet_rbuf_readl(priv,	new_offset);
1156 		/* clear if overflowed */
1157 		if (val == ~0)
1158 			bcmgenet_rbuf_writel(priv, 0, new_offset);
1159 		break;
1160 	default:
1161 		val = bcmgenet_umac_readl(priv, offset);
1162 		/* clear if overflowed */
1163 		if (val == ~0)
1164 			bcmgenet_umac_writel(priv, 0, offset);
1165 		break;
1166 	}
1167 
1168 	return val;
1169 }
1170 
bcmgenet_update_mib_counters(struct bcmgenet_priv * priv)1171 static void bcmgenet_update_mib_counters(struct bcmgenet_priv *priv)
1172 {
1173 	int i, j = 0;
1174 
1175 	for (i = 0; i < BCMGENET_STATS_LEN; i++) {
1176 		const struct bcmgenet_stats *s;
1177 		u8 offset = 0;
1178 		u32 val = 0;
1179 		char *p;
1180 
1181 		s = &bcmgenet_gstrings_stats[i];
1182 		switch (s->type) {
1183 		case BCMGENET_STAT_NETDEV:
1184 		case BCMGENET_STAT_SOFT:
1185 			continue;
1186 		case BCMGENET_STAT_RUNT:
1187 			offset += BCMGENET_STAT_OFFSET;
1188 			fallthrough;
1189 		case BCMGENET_STAT_MIB_TX:
1190 			offset += BCMGENET_STAT_OFFSET;
1191 			fallthrough;
1192 		case BCMGENET_STAT_MIB_RX:
1193 			val = bcmgenet_umac_readl(priv,
1194 						  UMAC_MIB_START + j + offset);
1195 			offset = 0;	/* Reset Offset */
1196 			break;
1197 		case BCMGENET_STAT_MISC:
1198 			if (GENET_IS_V1(priv)) {
1199 				val = bcmgenet_umac_readl(priv, s->reg_offset);
1200 				/* clear if overflowed */
1201 				if (val == ~0)
1202 					bcmgenet_umac_writel(priv, 0,
1203 							     s->reg_offset);
1204 			} else {
1205 				val = bcmgenet_update_stat_misc(priv,
1206 								s->reg_offset);
1207 			}
1208 			break;
1209 		}
1210 
1211 		j += s->stat_sizeof;
1212 		p = (char *)priv + s->stat_offset;
1213 		*(u32 *)p = val;
1214 	}
1215 }
1216 
bcmgenet_get_ethtool_stats(struct net_device * dev,struct ethtool_stats * stats,u64 * data)1217 static void bcmgenet_get_ethtool_stats(struct net_device *dev,
1218 				       struct ethtool_stats *stats,
1219 				       u64 *data)
1220 {
1221 	struct bcmgenet_priv *priv = netdev_priv(dev);
1222 	int i;
1223 
1224 	if (netif_running(dev))
1225 		bcmgenet_update_mib_counters(priv);
1226 
1227 	dev->netdev_ops->ndo_get_stats(dev);
1228 
1229 	for (i = 0; i < BCMGENET_STATS_LEN; i++) {
1230 		const struct bcmgenet_stats *s;
1231 		char *p;
1232 
1233 		s = &bcmgenet_gstrings_stats[i];
1234 		if (s->type == BCMGENET_STAT_NETDEV)
1235 			p = (char *)&dev->stats;
1236 		else
1237 			p = (char *)priv;
1238 		p += s->stat_offset;
1239 		if (sizeof(unsigned long) != sizeof(u32) &&
1240 		    s->stat_sizeof == sizeof(unsigned long))
1241 			data[i] = *(unsigned long *)p;
1242 		else
1243 			data[i] = *(u32 *)p;
1244 	}
1245 }
1246 
bcmgenet_eee_enable_set(struct net_device * dev,bool enable)1247 static void bcmgenet_eee_enable_set(struct net_device *dev, bool enable)
1248 {
1249 	struct bcmgenet_priv *priv = netdev_priv(dev);
1250 	u32 off = priv->hw_params->tbuf_offset + TBUF_ENERGY_CTRL;
1251 	u32 reg;
1252 
1253 	if (enable && !priv->clk_eee_enabled) {
1254 		clk_prepare_enable(priv->clk_eee);
1255 		priv->clk_eee_enabled = true;
1256 	}
1257 
1258 	reg = bcmgenet_umac_readl(priv, UMAC_EEE_CTRL);
1259 	if (enable)
1260 		reg |= EEE_EN;
1261 	else
1262 		reg &= ~EEE_EN;
1263 	bcmgenet_umac_writel(priv, reg, UMAC_EEE_CTRL);
1264 
1265 	/* Enable EEE and switch to a 27Mhz clock automatically */
1266 	reg = bcmgenet_readl(priv->base + off);
1267 	if (enable)
1268 		reg |= TBUF_EEE_EN | TBUF_PM_EN;
1269 	else
1270 		reg &= ~(TBUF_EEE_EN | TBUF_PM_EN);
1271 	bcmgenet_writel(reg, priv->base + off);
1272 
1273 	/* Do the same for thing for RBUF */
1274 	reg = bcmgenet_rbuf_readl(priv, RBUF_ENERGY_CTRL);
1275 	if (enable)
1276 		reg |= RBUF_EEE_EN | RBUF_PM_EN;
1277 	else
1278 		reg &= ~(RBUF_EEE_EN | RBUF_PM_EN);
1279 	bcmgenet_rbuf_writel(priv, reg, RBUF_ENERGY_CTRL);
1280 
1281 	if (!enable && priv->clk_eee_enabled) {
1282 		clk_disable_unprepare(priv->clk_eee);
1283 		priv->clk_eee_enabled = false;
1284 	}
1285 
1286 	priv->eee.eee_enabled = enable;
1287 	priv->eee.eee_active = enable;
1288 }
1289 
bcmgenet_get_eee(struct net_device * dev,struct ethtool_eee * e)1290 static int bcmgenet_get_eee(struct net_device *dev, struct ethtool_eee *e)
1291 {
1292 	struct bcmgenet_priv *priv = netdev_priv(dev);
1293 	struct ethtool_eee *p = &priv->eee;
1294 
1295 	if (GENET_IS_V1(priv))
1296 		return -EOPNOTSUPP;
1297 
1298 	if (!dev->phydev)
1299 		return -ENODEV;
1300 
1301 	e->eee_enabled = p->eee_enabled;
1302 	e->eee_active = p->eee_active;
1303 	e->tx_lpi_timer = bcmgenet_umac_readl(priv, UMAC_EEE_LPI_TIMER);
1304 
1305 	return phy_ethtool_get_eee(dev->phydev, e);
1306 }
1307 
bcmgenet_set_eee(struct net_device * dev,struct ethtool_eee * e)1308 static int bcmgenet_set_eee(struct net_device *dev, struct ethtool_eee *e)
1309 {
1310 	struct bcmgenet_priv *priv = netdev_priv(dev);
1311 	struct ethtool_eee *p = &priv->eee;
1312 	int ret = 0;
1313 
1314 	if (GENET_IS_V1(priv))
1315 		return -EOPNOTSUPP;
1316 
1317 	if (!dev->phydev)
1318 		return -ENODEV;
1319 
1320 	p->eee_enabled = e->eee_enabled;
1321 
1322 	if (!p->eee_enabled) {
1323 		bcmgenet_eee_enable_set(dev, false);
1324 	} else {
1325 		ret = phy_init_eee(dev->phydev, 0);
1326 		if (ret) {
1327 			netif_err(priv, hw, dev, "EEE initialization failed\n");
1328 			return ret;
1329 		}
1330 
1331 		bcmgenet_umac_writel(priv, e->tx_lpi_timer, UMAC_EEE_LPI_TIMER);
1332 		bcmgenet_eee_enable_set(dev, true);
1333 	}
1334 
1335 	return phy_ethtool_set_eee(dev->phydev, e);
1336 }
1337 
bcmgenet_validate_flow(struct net_device * dev,struct ethtool_rxnfc * cmd)1338 static int bcmgenet_validate_flow(struct net_device *dev,
1339 				  struct ethtool_rxnfc *cmd)
1340 {
1341 	struct ethtool_usrip4_spec *l4_mask;
1342 	struct ethhdr *eth_mask;
1343 
1344 	if (cmd->fs.location >= MAX_NUM_OF_FS_RULES) {
1345 		netdev_err(dev, "rxnfc: Invalid location (%d)\n",
1346 			   cmd->fs.location);
1347 		return -EINVAL;
1348 	}
1349 
1350 	switch (cmd->fs.flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) {
1351 	case IP_USER_FLOW:
1352 		l4_mask = &cmd->fs.m_u.usr_ip4_spec;
1353 		/* don't allow mask which isn't valid */
1354 		if (VALIDATE_MASK(l4_mask->ip4src) ||
1355 		    VALIDATE_MASK(l4_mask->ip4dst) ||
1356 		    VALIDATE_MASK(l4_mask->l4_4_bytes) ||
1357 		    VALIDATE_MASK(l4_mask->proto) ||
1358 		    VALIDATE_MASK(l4_mask->ip_ver) ||
1359 		    VALIDATE_MASK(l4_mask->tos)) {
1360 			netdev_err(dev, "rxnfc: Unsupported mask\n");
1361 			return -EINVAL;
1362 		}
1363 		break;
1364 	case ETHER_FLOW:
1365 		eth_mask = &cmd->fs.m_u.ether_spec;
1366 		/* don't allow mask which isn't valid */
1367 		if (VALIDATE_MASK(eth_mask->h_dest) ||
1368 		    VALIDATE_MASK(eth_mask->h_source) ||
1369 		    VALIDATE_MASK(eth_mask->h_proto)) {
1370 			netdev_err(dev, "rxnfc: Unsupported mask\n");
1371 			return -EINVAL;
1372 		}
1373 		break;
1374 	default:
1375 		netdev_err(dev, "rxnfc: Unsupported flow type (0x%x)\n",
1376 			   cmd->fs.flow_type);
1377 		return -EINVAL;
1378 	}
1379 
1380 	if ((cmd->fs.flow_type & FLOW_EXT)) {
1381 		/* don't allow mask which isn't valid */
1382 		if (VALIDATE_MASK(cmd->fs.m_ext.vlan_etype) ||
1383 		    VALIDATE_MASK(cmd->fs.m_ext.vlan_tci)) {
1384 			netdev_err(dev, "rxnfc: Unsupported mask\n");
1385 			return -EINVAL;
1386 		}
1387 		if (cmd->fs.m_ext.data[0] || cmd->fs.m_ext.data[1]) {
1388 			netdev_err(dev, "rxnfc: user-def not supported\n");
1389 			return -EINVAL;
1390 		}
1391 	}
1392 
1393 	if ((cmd->fs.flow_type & FLOW_MAC_EXT)) {
1394 		/* don't allow mask which isn't valid */
1395 		if (VALIDATE_MASK(cmd->fs.m_ext.h_dest)) {
1396 			netdev_err(dev, "rxnfc: Unsupported mask\n");
1397 			return -EINVAL;
1398 		}
1399 	}
1400 
1401 	return 0;
1402 }
1403 
bcmgenet_insert_flow(struct net_device * dev,struct ethtool_rxnfc * cmd)1404 static int bcmgenet_insert_flow(struct net_device *dev,
1405 				struct ethtool_rxnfc *cmd)
1406 {
1407 	struct bcmgenet_priv *priv = netdev_priv(dev);
1408 	struct bcmgenet_rxnfc_rule *loc_rule;
1409 	int err;
1410 
1411 	if (priv->hw_params->hfb_filter_size < 128) {
1412 		netdev_err(dev, "rxnfc: Not supported by this device\n");
1413 		return -EINVAL;
1414 	}
1415 
1416 	if (cmd->fs.ring_cookie > priv->hw_params->rx_queues &&
1417 	    cmd->fs.ring_cookie != RX_CLS_FLOW_WAKE) {
1418 		netdev_err(dev, "rxnfc: Unsupported action (%llu)\n",
1419 			   cmd->fs.ring_cookie);
1420 		return -EINVAL;
1421 	}
1422 
1423 	err = bcmgenet_validate_flow(dev, cmd);
1424 	if (err)
1425 		return err;
1426 
1427 	loc_rule = &priv->rxnfc_rules[cmd->fs.location];
1428 	if (loc_rule->state == BCMGENET_RXNFC_STATE_ENABLED)
1429 		bcmgenet_hfb_disable_filter(priv, cmd->fs.location);
1430 	if (loc_rule->state != BCMGENET_RXNFC_STATE_UNUSED) {
1431 		list_del(&loc_rule->list);
1432 		bcmgenet_hfb_clear_filter(priv, cmd->fs.location);
1433 	}
1434 	loc_rule->state = BCMGENET_RXNFC_STATE_UNUSED;
1435 	memcpy(&loc_rule->fs, &cmd->fs,
1436 	       sizeof(struct ethtool_rx_flow_spec));
1437 
1438 	bcmgenet_hfb_create_rxnfc_filter(priv, loc_rule);
1439 
1440 	list_add_tail(&loc_rule->list, &priv->rxnfc_list);
1441 
1442 	return 0;
1443 }
1444 
bcmgenet_delete_flow(struct net_device * dev,struct ethtool_rxnfc * cmd)1445 static int bcmgenet_delete_flow(struct net_device *dev,
1446 				struct ethtool_rxnfc *cmd)
1447 {
1448 	struct bcmgenet_priv *priv = netdev_priv(dev);
1449 	struct bcmgenet_rxnfc_rule *rule;
1450 	int err = 0;
1451 
1452 	if (cmd->fs.location >= MAX_NUM_OF_FS_RULES)
1453 		return -EINVAL;
1454 
1455 	rule = &priv->rxnfc_rules[cmd->fs.location];
1456 	if (rule->state == BCMGENET_RXNFC_STATE_UNUSED) {
1457 		err =  -ENOENT;
1458 		goto out;
1459 	}
1460 
1461 	if (rule->state == BCMGENET_RXNFC_STATE_ENABLED)
1462 		bcmgenet_hfb_disable_filter(priv, cmd->fs.location);
1463 	if (rule->state != BCMGENET_RXNFC_STATE_UNUSED) {
1464 		list_del(&rule->list);
1465 		bcmgenet_hfb_clear_filter(priv, cmd->fs.location);
1466 	}
1467 	rule->state = BCMGENET_RXNFC_STATE_UNUSED;
1468 	memset(&rule->fs, 0, sizeof(struct ethtool_rx_flow_spec));
1469 
1470 out:
1471 	return err;
1472 }
1473 
bcmgenet_set_rxnfc(struct net_device * dev,struct ethtool_rxnfc * cmd)1474 static int bcmgenet_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
1475 {
1476 	struct bcmgenet_priv *priv = netdev_priv(dev);
1477 	int err = 0;
1478 
1479 	switch (cmd->cmd) {
1480 	case ETHTOOL_SRXCLSRLINS:
1481 		err = bcmgenet_insert_flow(dev, cmd);
1482 		break;
1483 	case ETHTOOL_SRXCLSRLDEL:
1484 		err = bcmgenet_delete_flow(dev, cmd);
1485 		break;
1486 	default:
1487 		netdev_warn(priv->dev, "Unsupported ethtool command. (%d)\n",
1488 			    cmd->cmd);
1489 		return -EINVAL;
1490 	}
1491 
1492 	return err;
1493 }
1494 
bcmgenet_get_flow(struct net_device * dev,struct ethtool_rxnfc * cmd,int loc)1495 static int bcmgenet_get_flow(struct net_device *dev, struct ethtool_rxnfc *cmd,
1496 			     int loc)
1497 {
1498 	struct bcmgenet_priv *priv = netdev_priv(dev);
1499 	struct bcmgenet_rxnfc_rule *rule;
1500 	int err = 0;
1501 
1502 	if (loc < 0 || loc >= MAX_NUM_OF_FS_RULES)
1503 		return -EINVAL;
1504 
1505 	rule = &priv->rxnfc_rules[loc];
1506 	if (rule->state == BCMGENET_RXNFC_STATE_UNUSED)
1507 		err = -ENOENT;
1508 	else
1509 		memcpy(&cmd->fs, &rule->fs,
1510 		       sizeof(struct ethtool_rx_flow_spec));
1511 
1512 	return err;
1513 }
1514 
bcmgenet_get_num_flows(struct bcmgenet_priv * priv)1515 static int bcmgenet_get_num_flows(struct bcmgenet_priv *priv)
1516 {
1517 	struct list_head *pos;
1518 	int res = 0;
1519 
1520 	list_for_each(pos, &priv->rxnfc_list)
1521 		res++;
1522 
1523 	return res;
1524 }
1525 
bcmgenet_get_rxnfc(struct net_device * dev,struct ethtool_rxnfc * cmd,u32 * rule_locs)1526 static int bcmgenet_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
1527 			      u32 *rule_locs)
1528 {
1529 	struct bcmgenet_priv *priv = netdev_priv(dev);
1530 	struct bcmgenet_rxnfc_rule *rule;
1531 	int err = 0;
1532 	int i = 0;
1533 
1534 	switch (cmd->cmd) {
1535 	case ETHTOOL_GRXRINGS:
1536 		cmd->data = priv->hw_params->rx_queues ?: 1;
1537 		break;
1538 	case ETHTOOL_GRXCLSRLCNT:
1539 		cmd->rule_cnt = bcmgenet_get_num_flows(priv);
1540 		cmd->data = MAX_NUM_OF_FS_RULES;
1541 		break;
1542 	case ETHTOOL_GRXCLSRULE:
1543 		err = bcmgenet_get_flow(dev, cmd, cmd->fs.location);
1544 		break;
1545 	case ETHTOOL_GRXCLSRLALL:
1546 		list_for_each_entry(rule, &priv->rxnfc_list, list)
1547 			if (i < cmd->rule_cnt)
1548 				rule_locs[i++] = rule->fs.location;
1549 		cmd->rule_cnt = i;
1550 		cmd->data = MAX_NUM_OF_FS_RULES;
1551 		break;
1552 	default:
1553 		err = -EOPNOTSUPP;
1554 		break;
1555 	}
1556 
1557 	return err;
1558 }
1559 
1560 /* standard ethtool support functions. */
1561 static const struct ethtool_ops bcmgenet_ethtool_ops = {
1562 	.supported_coalesce_params = ETHTOOL_COALESCE_RX_USECS |
1563 				     ETHTOOL_COALESCE_MAX_FRAMES |
1564 				     ETHTOOL_COALESCE_USE_ADAPTIVE_RX,
1565 	.begin			= bcmgenet_begin,
1566 	.complete		= bcmgenet_complete,
1567 	.get_strings		= bcmgenet_get_strings,
1568 	.get_sset_count		= bcmgenet_get_sset_count,
1569 	.get_ethtool_stats	= bcmgenet_get_ethtool_stats,
1570 	.get_drvinfo		= bcmgenet_get_drvinfo,
1571 	.get_link		= ethtool_op_get_link,
1572 	.get_msglevel		= bcmgenet_get_msglevel,
1573 	.set_msglevel		= bcmgenet_set_msglevel,
1574 	.get_wol		= bcmgenet_get_wol,
1575 	.set_wol		= bcmgenet_set_wol,
1576 	.get_eee		= bcmgenet_get_eee,
1577 	.set_eee		= bcmgenet_set_eee,
1578 	.nway_reset		= phy_ethtool_nway_reset,
1579 	.get_coalesce		= bcmgenet_get_coalesce,
1580 	.set_coalesce		= bcmgenet_set_coalesce,
1581 	.get_link_ksettings	= bcmgenet_get_link_ksettings,
1582 	.set_link_ksettings	= bcmgenet_set_link_ksettings,
1583 	.get_ts_info		= ethtool_op_get_ts_info,
1584 	.get_rxnfc		= bcmgenet_get_rxnfc,
1585 	.set_rxnfc		= bcmgenet_set_rxnfc,
1586 };
1587 
1588 /* Power down the unimac, based on mode. */
bcmgenet_power_down(struct bcmgenet_priv * priv,enum bcmgenet_power_mode mode)1589 static int bcmgenet_power_down(struct bcmgenet_priv *priv,
1590 				enum bcmgenet_power_mode mode)
1591 {
1592 	int ret = 0;
1593 	u32 reg;
1594 
1595 	switch (mode) {
1596 	case GENET_POWER_CABLE_SENSE:
1597 		phy_detach(priv->dev->phydev);
1598 		break;
1599 
1600 	case GENET_POWER_WOL_MAGIC:
1601 		ret = bcmgenet_wol_power_down_cfg(priv, mode);
1602 		break;
1603 
1604 	case GENET_POWER_PASSIVE:
1605 		/* Power down LED */
1606 		if (priv->hw_params->flags & GENET_HAS_EXT) {
1607 			reg = bcmgenet_ext_readl(priv, EXT_EXT_PWR_MGMT);
1608 			if (GENET_IS_V5(priv))
1609 				reg |= EXT_PWR_DOWN_PHY_EN |
1610 				       EXT_PWR_DOWN_PHY_RD |
1611 				       EXT_PWR_DOWN_PHY_SD |
1612 				       EXT_PWR_DOWN_PHY_RX |
1613 				       EXT_PWR_DOWN_PHY_TX |
1614 				       EXT_IDDQ_GLBL_PWR;
1615 			else
1616 				reg |= EXT_PWR_DOWN_PHY;
1617 
1618 			reg |= (EXT_PWR_DOWN_DLL | EXT_PWR_DOWN_BIAS);
1619 			bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT);
1620 
1621 			bcmgenet_phy_power_set(priv->dev, false);
1622 		}
1623 		break;
1624 	default:
1625 		break;
1626 	}
1627 
1628 	return ret;
1629 }
1630 
bcmgenet_power_up(struct bcmgenet_priv * priv,enum bcmgenet_power_mode mode)1631 static void bcmgenet_power_up(struct bcmgenet_priv *priv,
1632 			      enum bcmgenet_power_mode mode)
1633 {
1634 	u32 reg;
1635 
1636 	if (!(priv->hw_params->flags & GENET_HAS_EXT))
1637 		return;
1638 
1639 	reg = bcmgenet_ext_readl(priv, EXT_EXT_PWR_MGMT);
1640 
1641 	switch (mode) {
1642 	case GENET_POWER_PASSIVE:
1643 		reg &= ~(EXT_PWR_DOWN_DLL | EXT_PWR_DOWN_BIAS |
1644 			 EXT_ENERGY_DET_MASK);
1645 		if (GENET_IS_V5(priv)) {
1646 			reg &= ~(EXT_PWR_DOWN_PHY_EN |
1647 				 EXT_PWR_DOWN_PHY_RD |
1648 				 EXT_PWR_DOWN_PHY_SD |
1649 				 EXT_PWR_DOWN_PHY_RX |
1650 				 EXT_PWR_DOWN_PHY_TX |
1651 				 EXT_IDDQ_GLBL_PWR);
1652 			reg |=   EXT_PHY_RESET;
1653 			bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT);
1654 			mdelay(1);
1655 
1656 			reg &=  ~EXT_PHY_RESET;
1657 		} else {
1658 			reg &= ~EXT_PWR_DOWN_PHY;
1659 			reg |= EXT_PWR_DN_EN_LD;
1660 		}
1661 		bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT);
1662 		bcmgenet_phy_power_set(priv->dev, true);
1663 		break;
1664 
1665 	case GENET_POWER_CABLE_SENSE:
1666 		/* enable APD */
1667 		if (!GENET_IS_V5(priv)) {
1668 			reg |= EXT_PWR_DN_EN_LD;
1669 			bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT);
1670 		}
1671 		break;
1672 	case GENET_POWER_WOL_MAGIC:
1673 		bcmgenet_wol_power_up_cfg(priv, mode);
1674 		return;
1675 	default:
1676 		break;
1677 	}
1678 }
1679 
bcmgenet_get_txcb(struct bcmgenet_priv * priv,struct bcmgenet_tx_ring * ring)1680 static struct enet_cb *bcmgenet_get_txcb(struct bcmgenet_priv *priv,
1681 					 struct bcmgenet_tx_ring *ring)
1682 {
1683 	struct enet_cb *tx_cb_ptr;
1684 
1685 	tx_cb_ptr = ring->cbs;
1686 	tx_cb_ptr += ring->write_ptr - ring->cb_ptr;
1687 
1688 	/* Advancing local write pointer */
1689 	if (ring->write_ptr == ring->end_ptr)
1690 		ring->write_ptr = ring->cb_ptr;
1691 	else
1692 		ring->write_ptr++;
1693 
1694 	return tx_cb_ptr;
1695 }
1696 
bcmgenet_put_txcb(struct bcmgenet_priv * priv,struct bcmgenet_tx_ring * ring)1697 static struct enet_cb *bcmgenet_put_txcb(struct bcmgenet_priv *priv,
1698 					 struct bcmgenet_tx_ring *ring)
1699 {
1700 	struct enet_cb *tx_cb_ptr;
1701 
1702 	tx_cb_ptr = ring->cbs;
1703 	tx_cb_ptr += ring->write_ptr - ring->cb_ptr;
1704 
1705 	/* Rewinding local write pointer */
1706 	if (ring->write_ptr == ring->cb_ptr)
1707 		ring->write_ptr = ring->end_ptr;
1708 	else
1709 		ring->write_ptr--;
1710 
1711 	return tx_cb_ptr;
1712 }
1713 
bcmgenet_rx_ring16_int_disable(struct bcmgenet_rx_ring * ring)1714 static inline void bcmgenet_rx_ring16_int_disable(struct bcmgenet_rx_ring *ring)
1715 {
1716 	bcmgenet_intrl2_0_writel(ring->priv, UMAC_IRQ_RXDMA_DONE,
1717 				 INTRL2_CPU_MASK_SET);
1718 }
1719 
bcmgenet_rx_ring16_int_enable(struct bcmgenet_rx_ring * ring)1720 static inline void bcmgenet_rx_ring16_int_enable(struct bcmgenet_rx_ring *ring)
1721 {
1722 	bcmgenet_intrl2_0_writel(ring->priv, UMAC_IRQ_RXDMA_DONE,
1723 				 INTRL2_CPU_MASK_CLEAR);
1724 }
1725 
bcmgenet_rx_ring_int_disable(struct bcmgenet_rx_ring * ring)1726 static inline void bcmgenet_rx_ring_int_disable(struct bcmgenet_rx_ring *ring)
1727 {
1728 	bcmgenet_intrl2_1_writel(ring->priv,
1729 				 1 << (UMAC_IRQ1_RX_INTR_SHIFT + ring->index),
1730 				 INTRL2_CPU_MASK_SET);
1731 }
1732 
bcmgenet_rx_ring_int_enable(struct bcmgenet_rx_ring * ring)1733 static inline void bcmgenet_rx_ring_int_enable(struct bcmgenet_rx_ring *ring)
1734 {
1735 	bcmgenet_intrl2_1_writel(ring->priv,
1736 				 1 << (UMAC_IRQ1_RX_INTR_SHIFT + ring->index),
1737 				 INTRL2_CPU_MASK_CLEAR);
1738 }
1739 
bcmgenet_tx_ring16_int_disable(struct bcmgenet_tx_ring * ring)1740 static inline void bcmgenet_tx_ring16_int_disable(struct bcmgenet_tx_ring *ring)
1741 {
1742 	bcmgenet_intrl2_0_writel(ring->priv, UMAC_IRQ_TXDMA_DONE,
1743 				 INTRL2_CPU_MASK_SET);
1744 }
1745 
bcmgenet_tx_ring16_int_enable(struct bcmgenet_tx_ring * ring)1746 static inline void bcmgenet_tx_ring16_int_enable(struct bcmgenet_tx_ring *ring)
1747 {
1748 	bcmgenet_intrl2_0_writel(ring->priv, UMAC_IRQ_TXDMA_DONE,
1749 				 INTRL2_CPU_MASK_CLEAR);
1750 }
1751 
bcmgenet_tx_ring_int_enable(struct bcmgenet_tx_ring * ring)1752 static inline void bcmgenet_tx_ring_int_enable(struct bcmgenet_tx_ring *ring)
1753 {
1754 	bcmgenet_intrl2_1_writel(ring->priv, 1 << ring->index,
1755 				 INTRL2_CPU_MASK_CLEAR);
1756 }
1757 
bcmgenet_tx_ring_int_disable(struct bcmgenet_tx_ring * ring)1758 static inline void bcmgenet_tx_ring_int_disable(struct bcmgenet_tx_ring *ring)
1759 {
1760 	bcmgenet_intrl2_1_writel(ring->priv, 1 << ring->index,
1761 				 INTRL2_CPU_MASK_SET);
1762 }
1763 
1764 /* Simple helper to free a transmit control block's resources
1765  * Returns an skb when the last transmit control block associated with the
1766  * skb is freed.  The skb should be freed by the caller if necessary.
1767  */
bcmgenet_free_tx_cb(struct device * dev,struct enet_cb * cb)1768 static struct sk_buff *bcmgenet_free_tx_cb(struct device *dev,
1769 					   struct enet_cb *cb)
1770 {
1771 	struct sk_buff *skb;
1772 
1773 	skb = cb->skb;
1774 
1775 	if (skb) {
1776 		cb->skb = NULL;
1777 		if (cb == GENET_CB(skb)->first_cb)
1778 			dma_unmap_single(dev, dma_unmap_addr(cb, dma_addr),
1779 					 dma_unmap_len(cb, dma_len),
1780 					 DMA_TO_DEVICE);
1781 		else
1782 			dma_unmap_page(dev, dma_unmap_addr(cb, dma_addr),
1783 				       dma_unmap_len(cb, dma_len),
1784 				       DMA_TO_DEVICE);
1785 		dma_unmap_addr_set(cb, dma_addr, 0);
1786 
1787 		if (cb == GENET_CB(skb)->last_cb)
1788 			return skb;
1789 
1790 	} else if (dma_unmap_addr(cb, dma_addr)) {
1791 		dma_unmap_page(dev,
1792 			       dma_unmap_addr(cb, dma_addr),
1793 			       dma_unmap_len(cb, dma_len),
1794 			       DMA_TO_DEVICE);
1795 		dma_unmap_addr_set(cb, dma_addr, 0);
1796 	}
1797 
1798 	return NULL;
1799 }
1800 
1801 /* Simple helper to free a receive control block's resources */
bcmgenet_free_rx_cb(struct device * dev,struct enet_cb * cb)1802 static struct sk_buff *bcmgenet_free_rx_cb(struct device *dev,
1803 					   struct enet_cb *cb)
1804 {
1805 	struct sk_buff *skb;
1806 
1807 	skb = cb->skb;
1808 	cb->skb = NULL;
1809 
1810 	if (dma_unmap_addr(cb, dma_addr)) {
1811 		dma_unmap_single(dev, dma_unmap_addr(cb, dma_addr),
1812 				 dma_unmap_len(cb, dma_len), DMA_FROM_DEVICE);
1813 		dma_unmap_addr_set(cb, dma_addr, 0);
1814 	}
1815 
1816 	return skb;
1817 }
1818 
1819 /* Unlocked version of the reclaim routine */
__bcmgenet_tx_reclaim(struct net_device * dev,struct bcmgenet_tx_ring * ring)1820 static unsigned int __bcmgenet_tx_reclaim(struct net_device *dev,
1821 					  struct bcmgenet_tx_ring *ring)
1822 {
1823 	struct bcmgenet_priv *priv = netdev_priv(dev);
1824 	unsigned int txbds_processed = 0;
1825 	unsigned int bytes_compl = 0;
1826 	unsigned int pkts_compl = 0;
1827 	unsigned int txbds_ready;
1828 	unsigned int c_index;
1829 	struct sk_buff *skb;
1830 
1831 	/* Clear status before servicing to reduce spurious interrupts */
1832 	if (ring->index == DESC_INDEX)
1833 		bcmgenet_intrl2_0_writel(priv, UMAC_IRQ_TXDMA_DONE,
1834 					 INTRL2_CPU_CLEAR);
1835 	else
1836 		bcmgenet_intrl2_1_writel(priv, (1 << ring->index),
1837 					 INTRL2_CPU_CLEAR);
1838 
1839 	/* Compute how many buffers are transmitted since last xmit call */
1840 	c_index = bcmgenet_tdma_ring_readl(priv, ring->index, TDMA_CONS_INDEX)
1841 		& DMA_C_INDEX_MASK;
1842 	txbds_ready = (c_index - ring->c_index) & DMA_C_INDEX_MASK;
1843 
1844 	netif_dbg(priv, tx_done, dev,
1845 		  "%s ring=%d old_c_index=%u c_index=%u txbds_ready=%u\n",
1846 		  __func__, ring->index, ring->c_index, c_index, txbds_ready);
1847 
1848 	/* Reclaim transmitted buffers */
1849 	while (txbds_processed < txbds_ready) {
1850 		skb = bcmgenet_free_tx_cb(&priv->pdev->dev,
1851 					  &priv->tx_cbs[ring->clean_ptr]);
1852 		if (skb) {
1853 			pkts_compl++;
1854 			bytes_compl += GENET_CB(skb)->bytes_sent;
1855 			dev_consume_skb_any(skb);
1856 		}
1857 
1858 		txbds_processed++;
1859 		if (likely(ring->clean_ptr < ring->end_ptr))
1860 			ring->clean_ptr++;
1861 		else
1862 			ring->clean_ptr = ring->cb_ptr;
1863 	}
1864 
1865 	ring->free_bds += txbds_processed;
1866 	ring->c_index = c_index;
1867 
1868 	ring->packets += pkts_compl;
1869 	ring->bytes += bytes_compl;
1870 
1871 	netdev_tx_completed_queue(netdev_get_tx_queue(dev, ring->queue),
1872 				  pkts_compl, bytes_compl);
1873 
1874 	return txbds_processed;
1875 }
1876 
bcmgenet_tx_reclaim(struct net_device * dev,struct bcmgenet_tx_ring * ring)1877 static unsigned int bcmgenet_tx_reclaim(struct net_device *dev,
1878 				struct bcmgenet_tx_ring *ring)
1879 {
1880 	unsigned int released;
1881 
1882 	spin_lock_bh(&ring->lock);
1883 	released = __bcmgenet_tx_reclaim(dev, ring);
1884 	spin_unlock_bh(&ring->lock);
1885 
1886 	return released;
1887 }
1888 
bcmgenet_tx_poll(struct napi_struct * napi,int budget)1889 static int bcmgenet_tx_poll(struct napi_struct *napi, int budget)
1890 {
1891 	struct bcmgenet_tx_ring *ring =
1892 		container_of(napi, struct bcmgenet_tx_ring, napi);
1893 	unsigned int work_done = 0;
1894 	struct netdev_queue *txq;
1895 
1896 	spin_lock(&ring->lock);
1897 	work_done = __bcmgenet_tx_reclaim(ring->priv->dev, ring);
1898 	if (ring->free_bds > (MAX_SKB_FRAGS + 1)) {
1899 		txq = netdev_get_tx_queue(ring->priv->dev, ring->queue);
1900 		netif_tx_wake_queue(txq);
1901 	}
1902 	spin_unlock(&ring->lock);
1903 
1904 	if (work_done == 0) {
1905 		napi_complete(napi);
1906 		ring->int_enable(ring);
1907 
1908 		return 0;
1909 	}
1910 
1911 	return budget;
1912 }
1913 
bcmgenet_tx_reclaim_all(struct net_device * dev)1914 static void bcmgenet_tx_reclaim_all(struct net_device *dev)
1915 {
1916 	struct bcmgenet_priv *priv = netdev_priv(dev);
1917 	int i;
1918 
1919 	if (netif_is_multiqueue(dev)) {
1920 		for (i = 0; i < priv->hw_params->tx_queues; i++)
1921 			bcmgenet_tx_reclaim(dev, &priv->tx_rings[i]);
1922 	}
1923 
1924 	bcmgenet_tx_reclaim(dev, &priv->tx_rings[DESC_INDEX]);
1925 }
1926 
1927 /* Reallocate the SKB to put enough headroom in front of it and insert
1928  * the transmit checksum offsets in the descriptors
1929  */
bcmgenet_add_tsb(struct net_device * dev,struct sk_buff * skb)1930 static struct sk_buff *bcmgenet_add_tsb(struct net_device *dev,
1931 					struct sk_buff *skb)
1932 {
1933 	struct bcmgenet_priv *priv = netdev_priv(dev);
1934 	struct status_64 *status = NULL;
1935 	struct sk_buff *new_skb;
1936 	u16 offset;
1937 	u8 ip_proto;
1938 	__be16 ip_ver;
1939 	u32 tx_csum_info;
1940 
1941 	if (unlikely(skb_headroom(skb) < sizeof(*status))) {
1942 		/* If 64 byte status block enabled, must make sure skb has
1943 		 * enough headroom for us to insert 64B status block.
1944 		 */
1945 		new_skb = skb_realloc_headroom(skb, sizeof(*status));
1946 		if (!new_skb) {
1947 			dev_kfree_skb_any(skb);
1948 			priv->mib.tx_realloc_tsb_failed++;
1949 			dev->stats.tx_dropped++;
1950 			return NULL;
1951 		}
1952 		dev_consume_skb_any(skb);
1953 		skb = new_skb;
1954 		priv->mib.tx_realloc_tsb++;
1955 	}
1956 
1957 	skb_push(skb, sizeof(*status));
1958 	status = (struct status_64 *)skb->data;
1959 
1960 	if (skb->ip_summed  == CHECKSUM_PARTIAL) {
1961 		ip_ver = skb->protocol;
1962 		switch (ip_ver) {
1963 		case htons(ETH_P_IP):
1964 			ip_proto = ip_hdr(skb)->protocol;
1965 			break;
1966 		case htons(ETH_P_IPV6):
1967 			ip_proto = ipv6_hdr(skb)->nexthdr;
1968 			break;
1969 		default:
1970 			/* don't use UDP flag */
1971 			ip_proto = 0;
1972 			break;
1973 		}
1974 
1975 		offset = skb_checksum_start_offset(skb) - sizeof(*status);
1976 		tx_csum_info = (offset << STATUS_TX_CSUM_START_SHIFT) |
1977 				(offset + skb->csum_offset) |
1978 				STATUS_TX_CSUM_LV;
1979 
1980 		/* Set the special UDP flag for UDP */
1981 		if (ip_proto == IPPROTO_UDP)
1982 			tx_csum_info |= STATUS_TX_CSUM_PROTO_UDP;
1983 
1984 		status->tx_csum_info = tx_csum_info;
1985 	}
1986 
1987 	return skb;
1988 }
1989 
bcmgenet_hide_tsb(struct sk_buff * skb)1990 static void bcmgenet_hide_tsb(struct sk_buff *skb)
1991 {
1992 	__skb_pull(skb, sizeof(struct status_64));
1993 }
1994 
bcmgenet_xmit(struct sk_buff * skb,struct net_device * dev)1995 static netdev_tx_t bcmgenet_xmit(struct sk_buff *skb, struct net_device *dev)
1996 {
1997 	struct bcmgenet_priv *priv = netdev_priv(dev);
1998 	struct device *kdev = &priv->pdev->dev;
1999 	struct bcmgenet_tx_ring *ring = NULL;
2000 	struct enet_cb *tx_cb_ptr;
2001 	struct netdev_queue *txq;
2002 	int nr_frags, index;
2003 	dma_addr_t mapping;
2004 	unsigned int size;
2005 	skb_frag_t *frag;
2006 	u32 len_stat;
2007 	int ret;
2008 	int i;
2009 
2010 	index = skb_get_queue_mapping(skb);
2011 	/* Mapping strategy:
2012 	 * queue_mapping = 0, unclassified, packet xmited through ring16
2013 	 * queue_mapping = 1, goes to ring 0. (highest priority queue
2014 	 * queue_mapping = 2, goes to ring 1.
2015 	 * queue_mapping = 3, goes to ring 2.
2016 	 * queue_mapping = 4, goes to ring 3.
2017 	 */
2018 	if (index == 0)
2019 		index = DESC_INDEX;
2020 	else
2021 		index -= 1;
2022 
2023 	ring = &priv->tx_rings[index];
2024 	txq = netdev_get_tx_queue(dev, ring->queue);
2025 
2026 	nr_frags = skb_shinfo(skb)->nr_frags;
2027 
2028 	spin_lock(&ring->lock);
2029 	if (ring->free_bds <= (nr_frags + 1)) {
2030 		if (!netif_tx_queue_stopped(txq)) {
2031 			netif_tx_stop_queue(txq);
2032 			netdev_err(dev,
2033 				   "%s: tx ring %d full when queue %d awake\n",
2034 				   __func__, index, ring->queue);
2035 		}
2036 		ret = NETDEV_TX_BUSY;
2037 		goto out;
2038 	}
2039 
2040 	/* Retain how many bytes will be sent on the wire, without TSB inserted
2041 	 * by transmit checksum offload
2042 	 */
2043 	GENET_CB(skb)->bytes_sent = skb->len;
2044 
2045 	/* add the Transmit Status Block */
2046 	skb = bcmgenet_add_tsb(dev, skb);
2047 	if (!skb) {
2048 		ret = NETDEV_TX_OK;
2049 		goto out;
2050 	}
2051 
2052 	for (i = 0; i <= nr_frags; i++) {
2053 		tx_cb_ptr = bcmgenet_get_txcb(priv, ring);
2054 
2055 		BUG_ON(!tx_cb_ptr);
2056 
2057 		if (!i) {
2058 			/* Transmit single SKB or head of fragment list */
2059 			GENET_CB(skb)->first_cb = tx_cb_ptr;
2060 			size = skb_headlen(skb);
2061 			mapping = dma_map_single(kdev, skb->data, size,
2062 						 DMA_TO_DEVICE);
2063 		} else {
2064 			/* xmit fragment */
2065 			frag = &skb_shinfo(skb)->frags[i - 1];
2066 			size = skb_frag_size(frag);
2067 			mapping = skb_frag_dma_map(kdev, frag, 0, size,
2068 						   DMA_TO_DEVICE);
2069 		}
2070 
2071 		ret = dma_mapping_error(kdev, mapping);
2072 		if (ret) {
2073 			priv->mib.tx_dma_failed++;
2074 			netif_err(priv, tx_err, dev, "Tx DMA map failed\n");
2075 			ret = NETDEV_TX_OK;
2076 			goto out_unmap_frags;
2077 		}
2078 		dma_unmap_addr_set(tx_cb_ptr, dma_addr, mapping);
2079 		dma_unmap_len_set(tx_cb_ptr, dma_len, size);
2080 
2081 		tx_cb_ptr->skb = skb;
2082 
2083 		len_stat = (size << DMA_BUFLENGTH_SHIFT) |
2084 			   (priv->hw_params->qtag_mask << DMA_TX_QTAG_SHIFT);
2085 
2086 		/* Note: if we ever change from DMA_TX_APPEND_CRC below we
2087 		 * will need to restore software padding of "runt" packets
2088 		 */
2089 		if (!i) {
2090 			len_stat |= DMA_TX_APPEND_CRC | DMA_SOP;
2091 			if (skb->ip_summed == CHECKSUM_PARTIAL)
2092 				len_stat |= DMA_TX_DO_CSUM;
2093 		}
2094 		if (i == nr_frags)
2095 			len_stat |= DMA_EOP;
2096 
2097 		dmadesc_set(priv, tx_cb_ptr->bd_addr, mapping, len_stat);
2098 	}
2099 
2100 	GENET_CB(skb)->last_cb = tx_cb_ptr;
2101 
2102 	bcmgenet_hide_tsb(skb);
2103 	skb_tx_timestamp(skb);
2104 
2105 	/* Decrement total BD count and advance our write pointer */
2106 	ring->free_bds -= nr_frags + 1;
2107 	ring->prod_index += nr_frags + 1;
2108 	ring->prod_index &= DMA_P_INDEX_MASK;
2109 
2110 	netdev_tx_sent_queue(txq, GENET_CB(skb)->bytes_sent);
2111 
2112 	if (ring->free_bds <= (MAX_SKB_FRAGS + 1))
2113 		netif_tx_stop_queue(txq);
2114 
2115 	if (!netdev_xmit_more() || netif_xmit_stopped(txq))
2116 		/* Packets are ready, update producer index */
2117 		bcmgenet_tdma_ring_writel(priv, ring->index,
2118 					  ring->prod_index, TDMA_PROD_INDEX);
2119 out:
2120 	spin_unlock(&ring->lock);
2121 
2122 	return ret;
2123 
2124 out_unmap_frags:
2125 	/* Back up for failed control block mapping */
2126 	bcmgenet_put_txcb(priv, ring);
2127 
2128 	/* Unmap successfully mapped control blocks */
2129 	while (i-- > 0) {
2130 		tx_cb_ptr = bcmgenet_put_txcb(priv, ring);
2131 		bcmgenet_free_tx_cb(kdev, tx_cb_ptr);
2132 	}
2133 
2134 	dev_kfree_skb(skb);
2135 	goto out;
2136 }
2137 
bcmgenet_rx_refill(struct bcmgenet_priv * priv,struct enet_cb * cb)2138 static struct sk_buff *bcmgenet_rx_refill(struct bcmgenet_priv *priv,
2139 					  struct enet_cb *cb)
2140 {
2141 	struct device *kdev = &priv->pdev->dev;
2142 	struct sk_buff *skb;
2143 	struct sk_buff *rx_skb;
2144 	dma_addr_t mapping;
2145 
2146 	/* Allocate a new Rx skb */
2147 	skb = __netdev_alloc_skb(priv->dev, priv->rx_buf_len + SKB_ALIGNMENT,
2148 				 GFP_ATOMIC | __GFP_NOWARN);
2149 	if (!skb) {
2150 		priv->mib.alloc_rx_buff_failed++;
2151 		netif_err(priv, rx_err, priv->dev,
2152 			  "%s: Rx skb allocation failed\n", __func__);
2153 		return NULL;
2154 	}
2155 
2156 	/* DMA-map the new Rx skb */
2157 	mapping = dma_map_single(kdev, skb->data, priv->rx_buf_len,
2158 				 DMA_FROM_DEVICE);
2159 	if (dma_mapping_error(kdev, mapping)) {
2160 		priv->mib.rx_dma_failed++;
2161 		dev_kfree_skb_any(skb);
2162 		netif_err(priv, rx_err, priv->dev,
2163 			  "%s: Rx skb DMA mapping failed\n", __func__);
2164 		return NULL;
2165 	}
2166 
2167 	/* Grab the current Rx skb from the ring and DMA-unmap it */
2168 	rx_skb = bcmgenet_free_rx_cb(kdev, cb);
2169 
2170 	/* Put the new Rx skb on the ring */
2171 	cb->skb = skb;
2172 	dma_unmap_addr_set(cb, dma_addr, mapping);
2173 	dma_unmap_len_set(cb, dma_len, priv->rx_buf_len);
2174 	dmadesc_set_addr(priv, cb->bd_addr, mapping);
2175 
2176 	/* Return the current Rx skb to caller */
2177 	return rx_skb;
2178 }
2179 
2180 /* bcmgenet_desc_rx - descriptor based rx process.
2181  * this could be called from bottom half, or from NAPI polling method.
2182  */
bcmgenet_desc_rx(struct bcmgenet_rx_ring * ring,unsigned int budget)2183 static unsigned int bcmgenet_desc_rx(struct bcmgenet_rx_ring *ring,
2184 				     unsigned int budget)
2185 {
2186 	struct bcmgenet_priv *priv = ring->priv;
2187 	struct net_device *dev = priv->dev;
2188 	struct enet_cb *cb;
2189 	struct sk_buff *skb;
2190 	u32 dma_length_status;
2191 	unsigned long dma_flag;
2192 	int len;
2193 	unsigned int rxpktprocessed = 0, rxpkttoprocess;
2194 	unsigned int bytes_processed = 0;
2195 	unsigned int p_index, mask;
2196 	unsigned int discards;
2197 
2198 	/* Clear status before servicing to reduce spurious interrupts */
2199 	if (ring->index == DESC_INDEX) {
2200 		bcmgenet_intrl2_0_writel(priv, UMAC_IRQ_RXDMA_DONE,
2201 					 INTRL2_CPU_CLEAR);
2202 	} else {
2203 		mask = 1 << (UMAC_IRQ1_RX_INTR_SHIFT + ring->index);
2204 		bcmgenet_intrl2_1_writel(priv,
2205 					 mask,
2206 					 INTRL2_CPU_CLEAR);
2207 	}
2208 
2209 	p_index = bcmgenet_rdma_ring_readl(priv, ring->index, RDMA_PROD_INDEX);
2210 
2211 	discards = (p_index >> DMA_P_INDEX_DISCARD_CNT_SHIFT) &
2212 		   DMA_P_INDEX_DISCARD_CNT_MASK;
2213 	if (discards > ring->old_discards) {
2214 		discards = discards - ring->old_discards;
2215 		ring->errors += discards;
2216 		ring->old_discards += discards;
2217 
2218 		/* Clear HW register when we reach 75% of maximum 0xFFFF */
2219 		if (ring->old_discards >= 0xC000) {
2220 			ring->old_discards = 0;
2221 			bcmgenet_rdma_ring_writel(priv, ring->index, 0,
2222 						  RDMA_PROD_INDEX);
2223 		}
2224 	}
2225 
2226 	p_index &= DMA_P_INDEX_MASK;
2227 	rxpkttoprocess = (p_index - ring->c_index) & DMA_C_INDEX_MASK;
2228 
2229 	netif_dbg(priv, rx_status, dev,
2230 		  "RDMA: rxpkttoprocess=%d\n", rxpkttoprocess);
2231 
2232 	while ((rxpktprocessed < rxpkttoprocess) &&
2233 	       (rxpktprocessed < budget)) {
2234 		struct status_64 *status;
2235 		__be16 rx_csum;
2236 
2237 		cb = &priv->rx_cbs[ring->read_ptr];
2238 		skb = bcmgenet_rx_refill(priv, cb);
2239 
2240 		if (unlikely(!skb)) {
2241 			ring->dropped++;
2242 			goto next;
2243 		}
2244 
2245 		status = (struct status_64 *)skb->data;
2246 		dma_length_status = status->length_status;
2247 		if (dev->features & NETIF_F_RXCSUM) {
2248 			rx_csum = (__force __be16)(status->rx_csum & 0xffff);
2249 			if (rx_csum) {
2250 				skb->csum = (__force __wsum)ntohs(rx_csum);
2251 				skb->ip_summed = CHECKSUM_COMPLETE;
2252 			}
2253 		}
2254 
2255 		/* DMA flags and length are still valid no matter how
2256 		 * we got the Receive Status Vector (64B RSB or register)
2257 		 */
2258 		dma_flag = dma_length_status & 0xffff;
2259 		len = dma_length_status >> DMA_BUFLENGTH_SHIFT;
2260 
2261 		netif_dbg(priv, rx_status, dev,
2262 			  "%s:p_ind=%d c_ind=%d read_ptr=%d len_stat=0x%08x\n",
2263 			  __func__, p_index, ring->c_index,
2264 			  ring->read_ptr, dma_length_status);
2265 
2266 		if (unlikely(!(dma_flag & DMA_EOP) || !(dma_flag & DMA_SOP))) {
2267 			netif_err(priv, rx_status, dev,
2268 				  "dropping fragmented packet!\n");
2269 			ring->errors++;
2270 			dev_kfree_skb_any(skb);
2271 			goto next;
2272 		}
2273 
2274 		/* report errors */
2275 		if (unlikely(dma_flag & (DMA_RX_CRC_ERROR |
2276 						DMA_RX_OV |
2277 						DMA_RX_NO |
2278 						DMA_RX_LG |
2279 						DMA_RX_RXER))) {
2280 			netif_err(priv, rx_status, dev, "dma_flag=0x%x\n",
2281 				  (unsigned int)dma_flag);
2282 			if (dma_flag & DMA_RX_CRC_ERROR)
2283 				dev->stats.rx_crc_errors++;
2284 			if (dma_flag & DMA_RX_OV)
2285 				dev->stats.rx_over_errors++;
2286 			if (dma_flag & DMA_RX_NO)
2287 				dev->stats.rx_frame_errors++;
2288 			if (dma_flag & DMA_RX_LG)
2289 				dev->stats.rx_length_errors++;
2290 			dev->stats.rx_errors++;
2291 			dev_kfree_skb_any(skb);
2292 			goto next;
2293 		} /* error packet */
2294 
2295 		skb_put(skb, len);
2296 
2297 		/* remove RSB and hardware 2bytes added for IP alignment */
2298 		skb_pull(skb, 66);
2299 		len -= 66;
2300 
2301 		if (priv->crc_fwd_en) {
2302 			skb_trim(skb, len - ETH_FCS_LEN);
2303 			len -= ETH_FCS_LEN;
2304 		}
2305 
2306 		bytes_processed += len;
2307 
2308 		/*Finish setting up the received SKB and send it to the kernel*/
2309 		skb->protocol = eth_type_trans(skb, priv->dev);
2310 		ring->packets++;
2311 		ring->bytes += len;
2312 		if (dma_flag & DMA_RX_MULT)
2313 			dev->stats.multicast++;
2314 
2315 		/* Notify kernel */
2316 		napi_gro_receive(&ring->napi, skb);
2317 		netif_dbg(priv, rx_status, dev, "pushed up to kernel\n");
2318 
2319 next:
2320 		rxpktprocessed++;
2321 		if (likely(ring->read_ptr < ring->end_ptr))
2322 			ring->read_ptr++;
2323 		else
2324 			ring->read_ptr = ring->cb_ptr;
2325 
2326 		ring->c_index = (ring->c_index + 1) & DMA_C_INDEX_MASK;
2327 		bcmgenet_rdma_ring_writel(priv, ring->index, ring->c_index, RDMA_CONS_INDEX);
2328 	}
2329 
2330 	ring->dim.bytes = bytes_processed;
2331 	ring->dim.packets = rxpktprocessed;
2332 
2333 	return rxpktprocessed;
2334 }
2335 
2336 /* Rx NAPI polling method */
bcmgenet_rx_poll(struct napi_struct * napi,int budget)2337 static int bcmgenet_rx_poll(struct napi_struct *napi, int budget)
2338 {
2339 	struct bcmgenet_rx_ring *ring = container_of(napi,
2340 			struct bcmgenet_rx_ring, napi);
2341 	struct dim_sample dim_sample = {};
2342 	unsigned int work_done;
2343 
2344 	work_done = bcmgenet_desc_rx(ring, budget);
2345 
2346 	if (work_done < budget) {
2347 		napi_complete_done(napi, work_done);
2348 		ring->int_enable(ring);
2349 	}
2350 
2351 	if (ring->dim.use_dim) {
2352 		dim_update_sample(ring->dim.event_ctr, ring->dim.packets,
2353 				  ring->dim.bytes, &dim_sample);
2354 		net_dim(&ring->dim.dim, dim_sample);
2355 	}
2356 
2357 	return work_done;
2358 }
2359 
bcmgenet_dim_work(struct work_struct * work)2360 static void bcmgenet_dim_work(struct work_struct *work)
2361 {
2362 	struct dim *dim = container_of(work, struct dim, work);
2363 	struct bcmgenet_net_dim *ndim =
2364 			container_of(dim, struct bcmgenet_net_dim, dim);
2365 	struct bcmgenet_rx_ring *ring =
2366 			container_of(ndim, struct bcmgenet_rx_ring, dim);
2367 	struct dim_cq_moder cur_profile =
2368 			net_dim_get_rx_moderation(dim->mode, dim->profile_ix);
2369 
2370 	bcmgenet_set_rx_coalesce(ring, cur_profile.usec, cur_profile.pkts);
2371 	dim->state = DIM_START_MEASURE;
2372 }
2373 
2374 /* Assign skb to RX DMA descriptor. */
bcmgenet_alloc_rx_buffers(struct bcmgenet_priv * priv,struct bcmgenet_rx_ring * ring)2375 static int bcmgenet_alloc_rx_buffers(struct bcmgenet_priv *priv,
2376 				     struct bcmgenet_rx_ring *ring)
2377 {
2378 	struct enet_cb *cb;
2379 	struct sk_buff *skb;
2380 	int i;
2381 
2382 	netif_dbg(priv, hw, priv->dev, "%s\n", __func__);
2383 
2384 	/* loop here for each buffer needing assign */
2385 	for (i = 0; i < ring->size; i++) {
2386 		cb = ring->cbs + i;
2387 		skb = bcmgenet_rx_refill(priv, cb);
2388 		if (skb)
2389 			dev_consume_skb_any(skb);
2390 		if (!cb->skb)
2391 			return -ENOMEM;
2392 	}
2393 
2394 	return 0;
2395 }
2396 
bcmgenet_free_rx_buffers(struct bcmgenet_priv * priv)2397 static void bcmgenet_free_rx_buffers(struct bcmgenet_priv *priv)
2398 {
2399 	struct sk_buff *skb;
2400 	struct enet_cb *cb;
2401 	int i;
2402 
2403 	for (i = 0; i < priv->num_rx_bds; i++) {
2404 		cb = &priv->rx_cbs[i];
2405 
2406 		skb = bcmgenet_free_rx_cb(&priv->pdev->dev, cb);
2407 		if (skb)
2408 			dev_consume_skb_any(skb);
2409 	}
2410 }
2411 
umac_enable_set(struct bcmgenet_priv * priv,u32 mask,bool enable)2412 static void umac_enable_set(struct bcmgenet_priv *priv, u32 mask, bool enable)
2413 {
2414 	u32 reg;
2415 
2416 	reg = bcmgenet_umac_readl(priv, UMAC_CMD);
2417 	if (reg & CMD_SW_RESET)
2418 		return;
2419 	if (enable)
2420 		reg |= mask;
2421 	else
2422 		reg &= ~mask;
2423 	bcmgenet_umac_writel(priv, reg, UMAC_CMD);
2424 
2425 	/* UniMAC stops on a packet boundary, wait for a full-size packet
2426 	 * to be processed
2427 	 */
2428 	if (enable == 0)
2429 		usleep_range(1000, 2000);
2430 }
2431 
reset_umac(struct bcmgenet_priv * priv)2432 static void reset_umac(struct bcmgenet_priv *priv)
2433 {
2434 	/* 7358a0/7552a0: bad default in RBUF_FLUSH_CTRL.umac_sw_rst */
2435 	bcmgenet_rbuf_ctrl_set(priv, 0);
2436 	udelay(10);
2437 
2438 	/* issue soft reset and disable MAC while updating its registers */
2439 	bcmgenet_umac_writel(priv, CMD_SW_RESET, UMAC_CMD);
2440 	udelay(2);
2441 }
2442 
bcmgenet_intr_disable(struct bcmgenet_priv * priv)2443 static void bcmgenet_intr_disable(struct bcmgenet_priv *priv)
2444 {
2445 	/* Mask all interrupts.*/
2446 	bcmgenet_intrl2_0_writel(priv, 0xFFFFFFFF, INTRL2_CPU_MASK_SET);
2447 	bcmgenet_intrl2_0_writel(priv, 0xFFFFFFFF, INTRL2_CPU_CLEAR);
2448 	bcmgenet_intrl2_1_writel(priv, 0xFFFFFFFF, INTRL2_CPU_MASK_SET);
2449 	bcmgenet_intrl2_1_writel(priv, 0xFFFFFFFF, INTRL2_CPU_CLEAR);
2450 }
2451 
bcmgenet_link_intr_enable(struct bcmgenet_priv * priv)2452 static void bcmgenet_link_intr_enable(struct bcmgenet_priv *priv)
2453 {
2454 	u32 int0_enable = 0;
2455 
2456 	/* Monitor cable plug/unplugged event for internal PHY, external PHY
2457 	 * and MoCA PHY
2458 	 */
2459 	if (priv->internal_phy) {
2460 		int0_enable |= UMAC_IRQ_LINK_EVENT;
2461 		if (GENET_IS_V1(priv) || GENET_IS_V2(priv) || GENET_IS_V3(priv))
2462 			int0_enable |= UMAC_IRQ_PHY_DET_R;
2463 	} else if (priv->ext_phy) {
2464 		int0_enable |= UMAC_IRQ_LINK_EVENT;
2465 	} else if (priv->phy_interface == PHY_INTERFACE_MODE_MOCA) {
2466 		if (priv->hw_params->flags & GENET_HAS_MOCA_LINK_DET)
2467 			int0_enable |= UMAC_IRQ_LINK_EVENT;
2468 	}
2469 	bcmgenet_intrl2_0_writel(priv, int0_enable, INTRL2_CPU_MASK_CLEAR);
2470 }
2471 
init_umac(struct bcmgenet_priv * priv)2472 static void init_umac(struct bcmgenet_priv *priv)
2473 {
2474 	struct device *kdev = &priv->pdev->dev;
2475 	u32 reg;
2476 	u32 int0_enable = 0;
2477 
2478 	dev_dbg(&priv->pdev->dev, "bcmgenet: init_umac\n");
2479 
2480 	reset_umac(priv);
2481 
2482 	/* clear tx/rx counter */
2483 	bcmgenet_umac_writel(priv,
2484 			     MIB_RESET_RX | MIB_RESET_TX | MIB_RESET_RUNT,
2485 			     UMAC_MIB_CTRL);
2486 	bcmgenet_umac_writel(priv, 0, UMAC_MIB_CTRL);
2487 
2488 	bcmgenet_umac_writel(priv, ENET_MAX_MTU_SIZE, UMAC_MAX_FRAME_LEN);
2489 
2490 	/* init tx registers, enable TSB */
2491 	reg = bcmgenet_tbuf_ctrl_get(priv);
2492 	reg |= TBUF_64B_EN;
2493 	bcmgenet_tbuf_ctrl_set(priv, reg);
2494 
2495 	/* init rx registers, enable ip header optimization and RSB */
2496 	reg = bcmgenet_rbuf_readl(priv, RBUF_CTRL);
2497 	reg |= RBUF_ALIGN_2B | RBUF_64B_EN;
2498 	bcmgenet_rbuf_writel(priv, reg, RBUF_CTRL);
2499 
2500 	/* enable rx checksumming */
2501 	reg = bcmgenet_rbuf_readl(priv, RBUF_CHK_CTRL);
2502 	reg |= RBUF_RXCHK_EN | RBUF_L3_PARSE_DIS;
2503 	/* If UniMAC forwards CRC, we need to skip over it to get
2504 	 * a valid CHK bit to be set in the per-packet status word
2505 	 */
2506 	if (priv->crc_fwd_en)
2507 		reg |= RBUF_SKIP_FCS;
2508 	else
2509 		reg &= ~RBUF_SKIP_FCS;
2510 	bcmgenet_rbuf_writel(priv, reg, RBUF_CHK_CTRL);
2511 
2512 	if (!GENET_IS_V1(priv) && !GENET_IS_V2(priv))
2513 		bcmgenet_rbuf_writel(priv, 1, RBUF_TBUF_SIZE_CTRL);
2514 
2515 	bcmgenet_intr_disable(priv);
2516 
2517 	/* Configure backpressure vectors for MoCA */
2518 	if (priv->phy_interface == PHY_INTERFACE_MODE_MOCA) {
2519 		reg = bcmgenet_bp_mc_get(priv);
2520 		reg |= BIT(priv->hw_params->bp_in_en_shift);
2521 
2522 		/* bp_mask: back pressure mask */
2523 		if (netif_is_multiqueue(priv->dev))
2524 			reg |= priv->hw_params->bp_in_mask;
2525 		else
2526 			reg &= ~priv->hw_params->bp_in_mask;
2527 		bcmgenet_bp_mc_set(priv, reg);
2528 	}
2529 
2530 	/* Enable MDIO interrupts on GENET v3+ */
2531 	if (priv->hw_params->flags & GENET_HAS_MDIO_INTR)
2532 		int0_enable |= (UMAC_IRQ_MDIO_DONE | UMAC_IRQ_MDIO_ERROR);
2533 
2534 	bcmgenet_intrl2_0_writel(priv, int0_enable, INTRL2_CPU_MASK_CLEAR);
2535 
2536 	dev_dbg(kdev, "done init umac\n");
2537 }
2538 
bcmgenet_init_dim(struct bcmgenet_rx_ring * ring,void (* cb)(struct work_struct * work))2539 static void bcmgenet_init_dim(struct bcmgenet_rx_ring *ring,
2540 			      void (*cb)(struct work_struct *work))
2541 {
2542 	struct bcmgenet_net_dim *dim = &ring->dim;
2543 
2544 	INIT_WORK(&dim->dim.work, cb);
2545 	dim->dim.mode = DIM_CQ_PERIOD_MODE_START_FROM_EQE;
2546 	dim->event_ctr = 0;
2547 	dim->packets = 0;
2548 	dim->bytes = 0;
2549 }
2550 
bcmgenet_init_rx_coalesce(struct bcmgenet_rx_ring * ring)2551 static void bcmgenet_init_rx_coalesce(struct bcmgenet_rx_ring *ring)
2552 {
2553 	struct bcmgenet_net_dim *dim = &ring->dim;
2554 	struct dim_cq_moder moder;
2555 	u32 usecs, pkts;
2556 
2557 	usecs = ring->rx_coalesce_usecs;
2558 	pkts = ring->rx_max_coalesced_frames;
2559 
2560 	/* If DIM was enabled, re-apply default parameters */
2561 	if (dim->use_dim) {
2562 		moder = net_dim_get_def_rx_moderation(dim->dim.mode);
2563 		usecs = moder.usec;
2564 		pkts = moder.pkts;
2565 	}
2566 
2567 	bcmgenet_set_rx_coalesce(ring, usecs, pkts);
2568 }
2569 
2570 /* Initialize a Tx ring along with corresponding hardware registers */
bcmgenet_init_tx_ring(struct bcmgenet_priv * priv,unsigned int index,unsigned int size,unsigned int start_ptr,unsigned int end_ptr)2571 static void bcmgenet_init_tx_ring(struct bcmgenet_priv *priv,
2572 				  unsigned int index, unsigned int size,
2573 				  unsigned int start_ptr, unsigned int end_ptr)
2574 {
2575 	struct bcmgenet_tx_ring *ring = &priv->tx_rings[index];
2576 	u32 words_per_bd = WORDS_PER_BD(priv);
2577 	u32 flow_period_val = 0;
2578 
2579 	spin_lock_init(&ring->lock);
2580 	ring->priv = priv;
2581 	ring->index = index;
2582 	if (index == DESC_INDEX) {
2583 		ring->queue = 0;
2584 		ring->int_enable = bcmgenet_tx_ring16_int_enable;
2585 		ring->int_disable = bcmgenet_tx_ring16_int_disable;
2586 	} else {
2587 		ring->queue = index + 1;
2588 		ring->int_enable = bcmgenet_tx_ring_int_enable;
2589 		ring->int_disable = bcmgenet_tx_ring_int_disable;
2590 	}
2591 	ring->cbs = priv->tx_cbs + start_ptr;
2592 	ring->size = size;
2593 	ring->clean_ptr = start_ptr;
2594 	ring->c_index = 0;
2595 	ring->free_bds = size;
2596 	ring->write_ptr = start_ptr;
2597 	ring->cb_ptr = start_ptr;
2598 	ring->end_ptr = end_ptr - 1;
2599 	ring->prod_index = 0;
2600 
2601 	/* Set flow period for ring != 16 */
2602 	if (index != DESC_INDEX)
2603 		flow_period_val = ENET_MAX_MTU_SIZE << 16;
2604 
2605 	bcmgenet_tdma_ring_writel(priv, index, 0, TDMA_PROD_INDEX);
2606 	bcmgenet_tdma_ring_writel(priv, index, 0, TDMA_CONS_INDEX);
2607 	bcmgenet_tdma_ring_writel(priv, index, 1, DMA_MBUF_DONE_THRESH);
2608 	/* Disable rate control for now */
2609 	bcmgenet_tdma_ring_writel(priv, index, flow_period_val,
2610 				  TDMA_FLOW_PERIOD);
2611 	bcmgenet_tdma_ring_writel(priv, index,
2612 				  ((size << DMA_RING_SIZE_SHIFT) |
2613 				   RX_BUF_LENGTH), DMA_RING_BUF_SIZE);
2614 
2615 	/* Set start and end address, read and write pointers */
2616 	bcmgenet_tdma_ring_writel(priv, index, start_ptr * words_per_bd,
2617 				  DMA_START_ADDR);
2618 	bcmgenet_tdma_ring_writel(priv, index, start_ptr * words_per_bd,
2619 				  TDMA_READ_PTR);
2620 	bcmgenet_tdma_ring_writel(priv, index, start_ptr * words_per_bd,
2621 				  TDMA_WRITE_PTR);
2622 	bcmgenet_tdma_ring_writel(priv, index, end_ptr * words_per_bd - 1,
2623 				  DMA_END_ADDR);
2624 
2625 	/* Initialize Tx NAPI */
2626 	netif_tx_napi_add(priv->dev, &ring->napi, bcmgenet_tx_poll,
2627 			  NAPI_POLL_WEIGHT);
2628 }
2629 
2630 /* Initialize a RDMA ring */
bcmgenet_init_rx_ring(struct bcmgenet_priv * priv,unsigned int index,unsigned int size,unsigned int start_ptr,unsigned int end_ptr)2631 static int bcmgenet_init_rx_ring(struct bcmgenet_priv *priv,
2632 				 unsigned int index, unsigned int size,
2633 				 unsigned int start_ptr, unsigned int end_ptr)
2634 {
2635 	struct bcmgenet_rx_ring *ring = &priv->rx_rings[index];
2636 	u32 words_per_bd = WORDS_PER_BD(priv);
2637 	int ret;
2638 
2639 	ring->priv = priv;
2640 	ring->index = index;
2641 	if (index == DESC_INDEX) {
2642 		ring->int_enable = bcmgenet_rx_ring16_int_enable;
2643 		ring->int_disable = bcmgenet_rx_ring16_int_disable;
2644 	} else {
2645 		ring->int_enable = bcmgenet_rx_ring_int_enable;
2646 		ring->int_disable = bcmgenet_rx_ring_int_disable;
2647 	}
2648 	ring->cbs = priv->rx_cbs + start_ptr;
2649 	ring->size = size;
2650 	ring->c_index = 0;
2651 	ring->read_ptr = start_ptr;
2652 	ring->cb_ptr = start_ptr;
2653 	ring->end_ptr = end_ptr - 1;
2654 
2655 	ret = bcmgenet_alloc_rx_buffers(priv, ring);
2656 	if (ret)
2657 		return ret;
2658 
2659 	bcmgenet_init_dim(ring, bcmgenet_dim_work);
2660 	bcmgenet_init_rx_coalesce(ring);
2661 
2662 	/* Initialize Rx NAPI */
2663 	netif_napi_add(priv->dev, &ring->napi, bcmgenet_rx_poll,
2664 		       NAPI_POLL_WEIGHT);
2665 
2666 	bcmgenet_rdma_ring_writel(priv, index, 0, RDMA_PROD_INDEX);
2667 	bcmgenet_rdma_ring_writel(priv, index, 0, RDMA_CONS_INDEX);
2668 	bcmgenet_rdma_ring_writel(priv, index,
2669 				  ((size << DMA_RING_SIZE_SHIFT) |
2670 				   RX_BUF_LENGTH), DMA_RING_BUF_SIZE);
2671 	bcmgenet_rdma_ring_writel(priv, index,
2672 				  (DMA_FC_THRESH_LO <<
2673 				   DMA_XOFF_THRESHOLD_SHIFT) |
2674 				   DMA_FC_THRESH_HI, RDMA_XON_XOFF_THRESH);
2675 
2676 	/* Set start and end address, read and write pointers */
2677 	bcmgenet_rdma_ring_writel(priv, index, start_ptr * words_per_bd,
2678 				  DMA_START_ADDR);
2679 	bcmgenet_rdma_ring_writel(priv, index, start_ptr * words_per_bd,
2680 				  RDMA_READ_PTR);
2681 	bcmgenet_rdma_ring_writel(priv, index, start_ptr * words_per_bd,
2682 				  RDMA_WRITE_PTR);
2683 	bcmgenet_rdma_ring_writel(priv, index, end_ptr * words_per_bd - 1,
2684 				  DMA_END_ADDR);
2685 
2686 	return ret;
2687 }
2688 
bcmgenet_enable_tx_napi(struct bcmgenet_priv * priv)2689 static void bcmgenet_enable_tx_napi(struct bcmgenet_priv *priv)
2690 {
2691 	unsigned int i;
2692 	struct bcmgenet_tx_ring *ring;
2693 
2694 	for (i = 0; i < priv->hw_params->tx_queues; ++i) {
2695 		ring = &priv->tx_rings[i];
2696 		napi_enable(&ring->napi);
2697 		ring->int_enable(ring);
2698 	}
2699 
2700 	ring = &priv->tx_rings[DESC_INDEX];
2701 	napi_enable(&ring->napi);
2702 	ring->int_enable(ring);
2703 }
2704 
bcmgenet_disable_tx_napi(struct bcmgenet_priv * priv)2705 static void bcmgenet_disable_tx_napi(struct bcmgenet_priv *priv)
2706 {
2707 	unsigned int i;
2708 	struct bcmgenet_tx_ring *ring;
2709 
2710 	for (i = 0; i < priv->hw_params->tx_queues; ++i) {
2711 		ring = &priv->tx_rings[i];
2712 		napi_disable(&ring->napi);
2713 	}
2714 
2715 	ring = &priv->tx_rings[DESC_INDEX];
2716 	napi_disable(&ring->napi);
2717 }
2718 
bcmgenet_fini_tx_napi(struct bcmgenet_priv * priv)2719 static void bcmgenet_fini_tx_napi(struct bcmgenet_priv *priv)
2720 {
2721 	unsigned int i;
2722 	struct bcmgenet_tx_ring *ring;
2723 
2724 	for (i = 0; i < priv->hw_params->tx_queues; ++i) {
2725 		ring = &priv->tx_rings[i];
2726 		netif_napi_del(&ring->napi);
2727 	}
2728 
2729 	ring = &priv->tx_rings[DESC_INDEX];
2730 	netif_napi_del(&ring->napi);
2731 }
2732 
2733 /* Initialize Tx queues
2734  *
2735  * Queues 0-3 are priority-based, each one has 32 descriptors,
2736  * with queue 0 being the highest priority queue.
2737  *
2738  * Queue 16 is the default Tx queue with
2739  * GENET_Q16_TX_BD_CNT = 256 - 4 * 32 = 128 descriptors.
2740  *
2741  * The transmit control block pool is then partitioned as follows:
2742  * - Tx queue 0 uses tx_cbs[0..31]
2743  * - Tx queue 1 uses tx_cbs[32..63]
2744  * - Tx queue 2 uses tx_cbs[64..95]
2745  * - Tx queue 3 uses tx_cbs[96..127]
2746  * - Tx queue 16 uses tx_cbs[128..255]
2747  */
bcmgenet_init_tx_queues(struct net_device * dev)2748 static void bcmgenet_init_tx_queues(struct net_device *dev)
2749 {
2750 	struct bcmgenet_priv *priv = netdev_priv(dev);
2751 	u32 i, dma_enable;
2752 	u32 dma_ctrl, ring_cfg;
2753 	u32 dma_priority[3] = {0, 0, 0};
2754 
2755 	dma_ctrl = bcmgenet_tdma_readl(priv, DMA_CTRL);
2756 	dma_enable = dma_ctrl & DMA_EN;
2757 	dma_ctrl &= ~DMA_EN;
2758 	bcmgenet_tdma_writel(priv, dma_ctrl, DMA_CTRL);
2759 
2760 	dma_ctrl = 0;
2761 	ring_cfg = 0;
2762 
2763 	/* Enable strict priority arbiter mode */
2764 	bcmgenet_tdma_writel(priv, DMA_ARBITER_SP, DMA_ARB_CTRL);
2765 
2766 	/* Initialize Tx priority queues */
2767 	for (i = 0; i < priv->hw_params->tx_queues; i++) {
2768 		bcmgenet_init_tx_ring(priv, i, priv->hw_params->tx_bds_per_q,
2769 				      i * priv->hw_params->tx_bds_per_q,
2770 				      (i + 1) * priv->hw_params->tx_bds_per_q);
2771 		ring_cfg |= (1 << i);
2772 		dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT));
2773 		dma_priority[DMA_PRIO_REG_INDEX(i)] |=
2774 			((GENET_Q0_PRIORITY + i) << DMA_PRIO_REG_SHIFT(i));
2775 	}
2776 
2777 	/* Initialize Tx default queue 16 */
2778 	bcmgenet_init_tx_ring(priv, DESC_INDEX, GENET_Q16_TX_BD_CNT,
2779 			      priv->hw_params->tx_queues *
2780 			      priv->hw_params->tx_bds_per_q,
2781 			      TOTAL_DESC);
2782 	ring_cfg |= (1 << DESC_INDEX);
2783 	dma_ctrl |= (1 << (DESC_INDEX + DMA_RING_BUF_EN_SHIFT));
2784 	dma_priority[DMA_PRIO_REG_INDEX(DESC_INDEX)] |=
2785 		((GENET_Q0_PRIORITY + priv->hw_params->tx_queues) <<
2786 		 DMA_PRIO_REG_SHIFT(DESC_INDEX));
2787 
2788 	/* Set Tx queue priorities */
2789 	bcmgenet_tdma_writel(priv, dma_priority[0], DMA_PRIORITY_0);
2790 	bcmgenet_tdma_writel(priv, dma_priority[1], DMA_PRIORITY_1);
2791 	bcmgenet_tdma_writel(priv, dma_priority[2], DMA_PRIORITY_2);
2792 
2793 	/* Enable Tx queues */
2794 	bcmgenet_tdma_writel(priv, ring_cfg, DMA_RING_CFG);
2795 
2796 	/* Enable Tx DMA */
2797 	if (dma_enable)
2798 		dma_ctrl |= DMA_EN;
2799 	bcmgenet_tdma_writel(priv, dma_ctrl, DMA_CTRL);
2800 }
2801 
bcmgenet_enable_rx_napi(struct bcmgenet_priv * priv)2802 static void bcmgenet_enable_rx_napi(struct bcmgenet_priv *priv)
2803 {
2804 	unsigned int i;
2805 	struct bcmgenet_rx_ring *ring;
2806 
2807 	for (i = 0; i < priv->hw_params->rx_queues; ++i) {
2808 		ring = &priv->rx_rings[i];
2809 		napi_enable(&ring->napi);
2810 		ring->int_enable(ring);
2811 	}
2812 
2813 	ring = &priv->rx_rings[DESC_INDEX];
2814 	napi_enable(&ring->napi);
2815 	ring->int_enable(ring);
2816 }
2817 
bcmgenet_disable_rx_napi(struct bcmgenet_priv * priv)2818 static void bcmgenet_disable_rx_napi(struct bcmgenet_priv *priv)
2819 {
2820 	unsigned int i;
2821 	struct bcmgenet_rx_ring *ring;
2822 
2823 	for (i = 0; i < priv->hw_params->rx_queues; ++i) {
2824 		ring = &priv->rx_rings[i];
2825 		napi_disable(&ring->napi);
2826 		cancel_work_sync(&ring->dim.dim.work);
2827 	}
2828 
2829 	ring = &priv->rx_rings[DESC_INDEX];
2830 	napi_disable(&ring->napi);
2831 	cancel_work_sync(&ring->dim.dim.work);
2832 }
2833 
bcmgenet_fini_rx_napi(struct bcmgenet_priv * priv)2834 static void bcmgenet_fini_rx_napi(struct bcmgenet_priv *priv)
2835 {
2836 	unsigned int i;
2837 	struct bcmgenet_rx_ring *ring;
2838 
2839 	for (i = 0; i < priv->hw_params->rx_queues; ++i) {
2840 		ring = &priv->rx_rings[i];
2841 		netif_napi_del(&ring->napi);
2842 	}
2843 
2844 	ring = &priv->rx_rings[DESC_INDEX];
2845 	netif_napi_del(&ring->napi);
2846 }
2847 
2848 /* Initialize Rx queues
2849  *
2850  * Queues 0-15 are priority queues. Hardware Filtering Block (HFB) can be
2851  * used to direct traffic to these queues.
2852  *
2853  * Queue 16 is the default Rx queue with GENET_Q16_RX_BD_CNT descriptors.
2854  */
bcmgenet_init_rx_queues(struct net_device * dev)2855 static int bcmgenet_init_rx_queues(struct net_device *dev)
2856 {
2857 	struct bcmgenet_priv *priv = netdev_priv(dev);
2858 	u32 i;
2859 	u32 dma_enable;
2860 	u32 dma_ctrl;
2861 	u32 ring_cfg;
2862 	int ret;
2863 
2864 	dma_ctrl = bcmgenet_rdma_readl(priv, DMA_CTRL);
2865 	dma_enable = dma_ctrl & DMA_EN;
2866 	dma_ctrl &= ~DMA_EN;
2867 	bcmgenet_rdma_writel(priv, dma_ctrl, DMA_CTRL);
2868 
2869 	dma_ctrl = 0;
2870 	ring_cfg = 0;
2871 
2872 	/* Initialize Rx priority queues */
2873 	for (i = 0; i < priv->hw_params->rx_queues; i++) {
2874 		ret = bcmgenet_init_rx_ring(priv, i,
2875 					    priv->hw_params->rx_bds_per_q,
2876 					    i * priv->hw_params->rx_bds_per_q,
2877 					    (i + 1) *
2878 					    priv->hw_params->rx_bds_per_q);
2879 		if (ret)
2880 			return ret;
2881 
2882 		ring_cfg |= (1 << i);
2883 		dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT));
2884 	}
2885 
2886 	/* Initialize Rx default queue 16 */
2887 	ret = bcmgenet_init_rx_ring(priv, DESC_INDEX, GENET_Q16_RX_BD_CNT,
2888 				    priv->hw_params->rx_queues *
2889 				    priv->hw_params->rx_bds_per_q,
2890 				    TOTAL_DESC);
2891 	if (ret)
2892 		return ret;
2893 
2894 	ring_cfg |= (1 << DESC_INDEX);
2895 	dma_ctrl |= (1 << (DESC_INDEX + DMA_RING_BUF_EN_SHIFT));
2896 
2897 	/* Enable rings */
2898 	bcmgenet_rdma_writel(priv, ring_cfg, DMA_RING_CFG);
2899 
2900 	/* Configure ring as descriptor ring and re-enable DMA if enabled */
2901 	if (dma_enable)
2902 		dma_ctrl |= DMA_EN;
2903 	bcmgenet_rdma_writel(priv, dma_ctrl, DMA_CTRL);
2904 
2905 	return 0;
2906 }
2907 
bcmgenet_dma_teardown(struct bcmgenet_priv * priv)2908 static int bcmgenet_dma_teardown(struct bcmgenet_priv *priv)
2909 {
2910 	int ret = 0;
2911 	int timeout = 0;
2912 	u32 reg;
2913 	u32 dma_ctrl;
2914 	int i;
2915 
2916 	/* Disable TDMA to stop add more frames in TX DMA */
2917 	reg = bcmgenet_tdma_readl(priv, DMA_CTRL);
2918 	reg &= ~DMA_EN;
2919 	bcmgenet_tdma_writel(priv, reg, DMA_CTRL);
2920 
2921 	/* Check TDMA status register to confirm TDMA is disabled */
2922 	while (timeout++ < DMA_TIMEOUT_VAL) {
2923 		reg = bcmgenet_tdma_readl(priv, DMA_STATUS);
2924 		if (reg & DMA_DISABLED)
2925 			break;
2926 
2927 		udelay(1);
2928 	}
2929 
2930 	if (timeout == DMA_TIMEOUT_VAL) {
2931 		netdev_warn(priv->dev, "Timed out while disabling TX DMA\n");
2932 		ret = -ETIMEDOUT;
2933 	}
2934 
2935 	/* Wait 10ms for packet drain in both tx and rx dma */
2936 	usleep_range(10000, 20000);
2937 
2938 	/* Disable RDMA */
2939 	reg = bcmgenet_rdma_readl(priv, DMA_CTRL);
2940 	reg &= ~DMA_EN;
2941 	bcmgenet_rdma_writel(priv, reg, DMA_CTRL);
2942 
2943 	timeout = 0;
2944 	/* Check RDMA status register to confirm RDMA is disabled */
2945 	while (timeout++ < DMA_TIMEOUT_VAL) {
2946 		reg = bcmgenet_rdma_readl(priv, DMA_STATUS);
2947 		if (reg & DMA_DISABLED)
2948 			break;
2949 
2950 		udelay(1);
2951 	}
2952 
2953 	if (timeout == DMA_TIMEOUT_VAL) {
2954 		netdev_warn(priv->dev, "Timed out while disabling RX DMA\n");
2955 		ret = -ETIMEDOUT;
2956 	}
2957 
2958 	dma_ctrl = 0;
2959 	for (i = 0; i < priv->hw_params->rx_queues; i++)
2960 		dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT));
2961 	reg = bcmgenet_rdma_readl(priv, DMA_CTRL);
2962 	reg &= ~dma_ctrl;
2963 	bcmgenet_rdma_writel(priv, reg, DMA_CTRL);
2964 
2965 	dma_ctrl = 0;
2966 	for (i = 0; i < priv->hw_params->tx_queues; i++)
2967 		dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT));
2968 	reg = bcmgenet_tdma_readl(priv, DMA_CTRL);
2969 	reg &= ~dma_ctrl;
2970 	bcmgenet_tdma_writel(priv, reg, DMA_CTRL);
2971 
2972 	return ret;
2973 }
2974 
bcmgenet_fini_dma(struct bcmgenet_priv * priv)2975 static void bcmgenet_fini_dma(struct bcmgenet_priv *priv)
2976 {
2977 	struct netdev_queue *txq;
2978 	int i;
2979 
2980 	bcmgenet_fini_rx_napi(priv);
2981 	bcmgenet_fini_tx_napi(priv);
2982 
2983 	for (i = 0; i < priv->num_tx_bds; i++)
2984 		dev_kfree_skb(bcmgenet_free_tx_cb(&priv->pdev->dev,
2985 						  priv->tx_cbs + i));
2986 
2987 	for (i = 0; i < priv->hw_params->tx_queues; i++) {
2988 		txq = netdev_get_tx_queue(priv->dev, priv->tx_rings[i].queue);
2989 		netdev_tx_reset_queue(txq);
2990 	}
2991 
2992 	txq = netdev_get_tx_queue(priv->dev, priv->tx_rings[DESC_INDEX].queue);
2993 	netdev_tx_reset_queue(txq);
2994 
2995 	bcmgenet_free_rx_buffers(priv);
2996 	kfree(priv->rx_cbs);
2997 	kfree(priv->tx_cbs);
2998 }
2999 
3000 /* init_edma: Initialize DMA control register */
bcmgenet_init_dma(struct bcmgenet_priv * priv)3001 static int bcmgenet_init_dma(struct bcmgenet_priv *priv)
3002 {
3003 	int ret;
3004 	unsigned int i;
3005 	struct enet_cb *cb;
3006 
3007 	netif_dbg(priv, hw, priv->dev, "%s\n", __func__);
3008 
3009 	/* Initialize common Rx ring structures */
3010 	priv->rx_bds = priv->base + priv->hw_params->rdma_offset;
3011 	priv->num_rx_bds = TOTAL_DESC;
3012 	priv->rx_cbs = kcalloc(priv->num_rx_bds, sizeof(struct enet_cb),
3013 			       GFP_KERNEL);
3014 	if (!priv->rx_cbs)
3015 		return -ENOMEM;
3016 
3017 	for (i = 0; i < priv->num_rx_bds; i++) {
3018 		cb = priv->rx_cbs + i;
3019 		cb->bd_addr = priv->rx_bds + i * DMA_DESC_SIZE;
3020 	}
3021 
3022 	/* Initialize common TX ring structures */
3023 	priv->tx_bds = priv->base + priv->hw_params->tdma_offset;
3024 	priv->num_tx_bds = TOTAL_DESC;
3025 	priv->tx_cbs = kcalloc(priv->num_tx_bds, sizeof(struct enet_cb),
3026 			       GFP_KERNEL);
3027 	if (!priv->tx_cbs) {
3028 		kfree(priv->rx_cbs);
3029 		return -ENOMEM;
3030 	}
3031 
3032 	for (i = 0; i < priv->num_tx_bds; i++) {
3033 		cb = priv->tx_cbs + i;
3034 		cb->bd_addr = priv->tx_bds + i * DMA_DESC_SIZE;
3035 	}
3036 
3037 	/* Init rDma */
3038 	bcmgenet_rdma_writel(priv, priv->dma_max_burst_length,
3039 			     DMA_SCB_BURST_SIZE);
3040 
3041 	/* Initialize Rx queues */
3042 	ret = bcmgenet_init_rx_queues(priv->dev);
3043 	if (ret) {
3044 		netdev_err(priv->dev, "failed to initialize Rx queues\n");
3045 		bcmgenet_free_rx_buffers(priv);
3046 		kfree(priv->rx_cbs);
3047 		kfree(priv->tx_cbs);
3048 		return ret;
3049 	}
3050 
3051 	/* Init tDma */
3052 	bcmgenet_tdma_writel(priv, priv->dma_max_burst_length,
3053 			     DMA_SCB_BURST_SIZE);
3054 
3055 	/* Initialize Tx queues */
3056 	bcmgenet_init_tx_queues(priv->dev);
3057 
3058 	return 0;
3059 }
3060 
3061 /* Interrupt bottom half */
bcmgenet_irq_task(struct work_struct * work)3062 static void bcmgenet_irq_task(struct work_struct *work)
3063 {
3064 	unsigned int status;
3065 	struct bcmgenet_priv *priv = container_of(
3066 			work, struct bcmgenet_priv, bcmgenet_irq_work);
3067 
3068 	netif_dbg(priv, intr, priv->dev, "%s\n", __func__);
3069 
3070 	spin_lock_irq(&priv->lock);
3071 	status = priv->irq0_stat;
3072 	priv->irq0_stat = 0;
3073 	spin_unlock_irq(&priv->lock);
3074 
3075 	if (status & UMAC_IRQ_PHY_DET_R &&
3076 	    priv->dev->phydev->autoneg != AUTONEG_ENABLE) {
3077 		phy_init_hw(priv->dev->phydev);
3078 		genphy_config_aneg(priv->dev->phydev);
3079 	}
3080 
3081 	/* Link UP/DOWN event */
3082 	if (status & UMAC_IRQ_LINK_EVENT)
3083 		phy_mac_interrupt(priv->dev->phydev);
3084 
3085 }
3086 
3087 /* bcmgenet_isr1: handle Rx and Tx priority queues */
bcmgenet_isr1(int irq,void * dev_id)3088 static irqreturn_t bcmgenet_isr1(int irq, void *dev_id)
3089 {
3090 	struct bcmgenet_priv *priv = dev_id;
3091 	struct bcmgenet_rx_ring *rx_ring;
3092 	struct bcmgenet_tx_ring *tx_ring;
3093 	unsigned int index, status;
3094 
3095 	/* Read irq status */
3096 	status = bcmgenet_intrl2_1_readl(priv, INTRL2_CPU_STAT) &
3097 		~bcmgenet_intrl2_1_readl(priv, INTRL2_CPU_MASK_STATUS);
3098 
3099 	/* clear interrupts */
3100 	bcmgenet_intrl2_1_writel(priv, status, INTRL2_CPU_CLEAR);
3101 
3102 	netif_dbg(priv, intr, priv->dev,
3103 		  "%s: IRQ=0x%x\n", __func__, status);
3104 
3105 	/* Check Rx priority queue interrupts */
3106 	for (index = 0; index < priv->hw_params->rx_queues; index++) {
3107 		if (!(status & BIT(UMAC_IRQ1_RX_INTR_SHIFT + index)))
3108 			continue;
3109 
3110 		rx_ring = &priv->rx_rings[index];
3111 		rx_ring->dim.event_ctr++;
3112 
3113 		if (likely(napi_schedule_prep(&rx_ring->napi))) {
3114 			rx_ring->int_disable(rx_ring);
3115 			__napi_schedule_irqoff(&rx_ring->napi);
3116 		}
3117 	}
3118 
3119 	/* Check Tx priority queue interrupts */
3120 	for (index = 0; index < priv->hw_params->tx_queues; index++) {
3121 		if (!(status & BIT(index)))
3122 			continue;
3123 
3124 		tx_ring = &priv->tx_rings[index];
3125 
3126 		if (likely(napi_schedule_prep(&tx_ring->napi))) {
3127 			tx_ring->int_disable(tx_ring);
3128 			__napi_schedule_irqoff(&tx_ring->napi);
3129 		}
3130 	}
3131 
3132 	return IRQ_HANDLED;
3133 }
3134 
3135 /* bcmgenet_isr0: handle Rx and Tx default queues + other stuff */
bcmgenet_isr0(int irq,void * dev_id)3136 static irqreturn_t bcmgenet_isr0(int irq, void *dev_id)
3137 {
3138 	struct bcmgenet_priv *priv = dev_id;
3139 	struct bcmgenet_rx_ring *rx_ring;
3140 	struct bcmgenet_tx_ring *tx_ring;
3141 	unsigned int status;
3142 	unsigned long flags;
3143 
3144 	/* Read irq status */
3145 	status = bcmgenet_intrl2_0_readl(priv, INTRL2_CPU_STAT) &
3146 		~bcmgenet_intrl2_0_readl(priv, INTRL2_CPU_MASK_STATUS);
3147 
3148 	/* clear interrupts */
3149 	bcmgenet_intrl2_0_writel(priv, status, INTRL2_CPU_CLEAR);
3150 
3151 	netif_dbg(priv, intr, priv->dev,
3152 		  "IRQ=0x%x\n", status);
3153 
3154 	if (status & UMAC_IRQ_RXDMA_DONE) {
3155 		rx_ring = &priv->rx_rings[DESC_INDEX];
3156 		rx_ring->dim.event_ctr++;
3157 
3158 		if (likely(napi_schedule_prep(&rx_ring->napi))) {
3159 			rx_ring->int_disable(rx_ring);
3160 			__napi_schedule_irqoff(&rx_ring->napi);
3161 		}
3162 	}
3163 
3164 	if (status & UMAC_IRQ_TXDMA_DONE) {
3165 		tx_ring = &priv->tx_rings[DESC_INDEX];
3166 
3167 		if (likely(napi_schedule_prep(&tx_ring->napi))) {
3168 			tx_ring->int_disable(tx_ring);
3169 			__napi_schedule_irqoff(&tx_ring->napi);
3170 		}
3171 	}
3172 
3173 	if ((priv->hw_params->flags & GENET_HAS_MDIO_INTR) &&
3174 		status & (UMAC_IRQ_MDIO_DONE | UMAC_IRQ_MDIO_ERROR)) {
3175 		wake_up(&priv->wq);
3176 	}
3177 
3178 	/* all other interested interrupts handled in bottom half */
3179 	status &= (UMAC_IRQ_LINK_EVENT | UMAC_IRQ_PHY_DET_R);
3180 	if (status) {
3181 		/* Save irq status for bottom-half processing. */
3182 		spin_lock_irqsave(&priv->lock, flags);
3183 		priv->irq0_stat |= status;
3184 		spin_unlock_irqrestore(&priv->lock, flags);
3185 
3186 		schedule_work(&priv->bcmgenet_irq_work);
3187 	}
3188 
3189 	return IRQ_HANDLED;
3190 }
3191 
bcmgenet_wol_isr(int irq,void * dev_id)3192 static irqreturn_t bcmgenet_wol_isr(int irq, void *dev_id)
3193 {
3194 	/* Acknowledge the interrupt */
3195 	return IRQ_HANDLED;
3196 }
3197 
3198 #ifdef CONFIG_NET_POLL_CONTROLLER
bcmgenet_poll_controller(struct net_device * dev)3199 static void bcmgenet_poll_controller(struct net_device *dev)
3200 {
3201 	struct bcmgenet_priv *priv = netdev_priv(dev);
3202 
3203 	/* Invoke the main RX/TX interrupt handler */
3204 	disable_irq(priv->irq0);
3205 	bcmgenet_isr0(priv->irq0, priv);
3206 	enable_irq(priv->irq0);
3207 
3208 	/* And the interrupt handler for RX/TX priority queues */
3209 	disable_irq(priv->irq1);
3210 	bcmgenet_isr1(priv->irq1, priv);
3211 	enable_irq(priv->irq1);
3212 }
3213 #endif
3214 
bcmgenet_umac_reset(struct bcmgenet_priv * priv)3215 static void bcmgenet_umac_reset(struct bcmgenet_priv *priv)
3216 {
3217 	u32 reg;
3218 
3219 	reg = bcmgenet_rbuf_ctrl_get(priv);
3220 	reg |= BIT(1);
3221 	bcmgenet_rbuf_ctrl_set(priv, reg);
3222 	udelay(10);
3223 
3224 	reg &= ~BIT(1);
3225 	bcmgenet_rbuf_ctrl_set(priv, reg);
3226 	udelay(10);
3227 }
3228 
bcmgenet_set_hw_addr(struct bcmgenet_priv * priv,unsigned char * addr)3229 static void bcmgenet_set_hw_addr(struct bcmgenet_priv *priv,
3230 				 unsigned char *addr)
3231 {
3232 	bcmgenet_umac_writel(priv, get_unaligned_be32(&addr[0]), UMAC_MAC0);
3233 	bcmgenet_umac_writel(priv, get_unaligned_be16(&addr[4]), UMAC_MAC1);
3234 }
3235 
bcmgenet_get_hw_addr(struct bcmgenet_priv * priv,unsigned char * addr)3236 static void bcmgenet_get_hw_addr(struct bcmgenet_priv *priv,
3237 				 unsigned char *addr)
3238 {
3239 	u32 addr_tmp;
3240 
3241 	addr_tmp = bcmgenet_umac_readl(priv, UMAC_MAC0);
3242 	put_unaligned_be32(addr_tmp, &addr[0]);
3243 	addr_tmp = bcmgenet_umac_readl(priv, UMAC_MAC1);
3244 	put_unaligned_be16(addr_tmp, &addr[4]);
3245 }
3246 
3247 /* Returns a reusable dma control register value */
bcmgenet_dma_disable(struct bcmgenet_priv * priv)3248 static u32 bcmgenet_dma_disable(struct bcmgenet_priv *priv)
3249 {
3250 	unsigned int i;
3251 	u32 reg;
3252 	u32 dma_ctrl;
3253 
3254 	/* disable DMA */
3255 	dma_ctrl = 1 << (DESC_INDEX + DMA_RING_BUF_EN_SHIFT) | DMA_EN;
3256 	for (i = 0; i < priv->hw_params->tx_queues; i++)
3257 		dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT));
3258 	reg = bcmgenet_tdma_readl(priv, DMA_CTRL);
3259 	reg &= ~dma_ctrl;
3260 	bcmgenet_tdma_writel(priv, reg, DMA_CTRL);
3261 
3262 	dma_ctrl = 1 << (DESC_INDEX + DMA_RING_BUF_EN_SHIFT) | DMA_EN;
3263 	for (i = 0; i < priv->hw_params->rx_queues; i++)
3264 		dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT));
3265 	reg = bcmgenet_rdma_readl(priv, DMA_CTRL);
3266 	reg &= ~dma_ctrl;
3267 	bcmgenet_rdma_writel(priv, reg, DMA_CTRL);
3268 
3269 	bcmgenet_umac_writel(priv, 1, UMAC_TX_FLUSH);
3270 	udelay(10);
3271 	bcmgenet_umac_writel(priv, 0, UMAC_TX_FLUSH);
3272 
3273 	return dma_ctrl;
3274 }
3275 
bcmgenet_enable_dma(struct bcmgenet_priv * priv,u32 dma_ctrl)3276 static void bcmgenet_enable_dma(struct bcmgenet_priv *priv, u32 dma_ctrl)
3277 {
3278 	u32 reg;
3279 
3280 	reg = bcmgenet_rdma_readl(priv, DMA_CTRL);
3281 	reg |= dma_ctrl;
3282 	bcmgenet_rdma_writel(priv, reg, DMA_CTRL);
3283 
3284 	reg = bcmgenet_tdma_readl(priv, DMA_CTRL);
3285 	reg |= dma_ctrl;
3286 	bcmgenet_tdma_writel(priv, reg, DMA_CTRL);
3287 }
3288 
bcmgenet_netif_start(struct net_device * dev)3289 static void bcmgenet_netif_start(struct net_device *dev)
3290 {
3291 	struct bcmgenet_priv *priv = netdev_priv(dev);
3292 
3293 	/* Start the network engine */
3294 	bcmgenet_set_rx_mode(dev);
3295 	bcmgenet_enable_rx_napi(priv);
3296 
3297 	umac_enable_set(priv, CMD_TX_EN | CMD_RX_EN, true);
3298 
3299 	bcmgenet_enable_tx_napi(priv);
3300 
3301 	/* Monitor link interrupts now */
3302 	bcmgenet_link_intr_enable(priv);
3303 
3304 	phy_start(dev->phydev);
3305 }
3306 
bcmgenet_open(struct net_device * dev)3307 static int bcmgenet_open(struct net_device *dev)
3308 {
3309 	struct bcmgenet_priv *priv = netdev_priv(dev);
3310 	unsigned long dma_ctrl;
3311 	int ret;
3312 
3313 	netif_dbg(priv, ifup, dev, "bcmgenet_open\n");
3314 
3315 	/* Turn on the clock */
3316 	clk_prepare_enable(priv->clk);
3317 
3318 	/* If this is an internal GPHY, power it back on now, before UniMAC is
3319 	 * brought out of reset as absolutely no UniMAC activity is allowed
3320 	 */
3321 	if (priv->internal_phy)
3322 		bcmgenet_power_up(priv, GENET_POWER_PASSIVE);
3323 
3324 	/* take MAC out of reset */
3325 	bcmgenet_umac_reset(priv);
3326 
3327 	init_umac(priv);
3328 
3329 	/* Apply features again in case we changed them while interface was
3330 	 * down
3331 	 */
3332 	bcmgenet_set_features(dev, dev->features);
3333 
3334 	bcmgenet_set_hw_addr(priv, dev->dev_addr);
3335 
3336 	/* Disable RX/TX DMA and flush TX queues */
3337 	dma_ctrl = bcmgenet_dma_disable(priv);
3338 
3339 	/* Reinitialize TDMA and RDMA and SW housekeeping */
3340 	ret = bcmgenet_init_dma(priv);
3341 	if (ret) {
3342 		netdev_err(dev, "failed to initialize DMA\n");
3343 		goto err_clk_disable;
3344 	}
3345 
3346 	/* Always enable ring 16 - descriptor ring */
3347 	bcmgenet_enable_dma(priv, dma_ctrl);
3348 
3349 	/* HFB init */
3350 	bcmgenet_hfb_init(priv);
3351 
3352 	ret = request_irq(priv->irq0, bcmgenet_isr0, IRQF_SHARED,
3353 			  dev->name, priv);
3354 	if (ret < 0) {
3355 		netdev_err(dev, "can't request IRQ %d\n", priv->irq0);
3356 		goto err_fini_dma;
3357 	}
3358 
3359 	ret = request_irq(priv->irq1, bcmgenet_isr1, IRQF_SHARED,
3360 			  dev->name, priv);
3361 	if (ret < 0) {
3362 		netdev_err(dev, "can't request IRQ %d\n", priv->irq1);
3363 		goto err_irq0;
3364 	}
3365 
3366 	ret = bcmgenet_mii_probe(dev);
3367 	if (ret) {
3368 		netdev_err(dev, "failed to connect to PHY\n");
3369 		goto err_irq1;
3370 	}
3371 
3372 	bcmgenet_netif_start(dev);
3373 
3374 	netif_tx_start_all_queues(dev);
3375 
3376 	return 0;
3377 
3378 err_irq1:
3379 	free_irq(priv->irq1, priv);
3380 err_irq0:
3381 	free_irq(priv->irq0, priv);
3382 err_fini_dma:
3383 	bcmgenet_dma_teardown(priv);
3384 	bcmgenet_fini_dma(priv);
3385 err_clk_disable:
3386 	if (priv->internal_phy)
3387 		bcmgenet_power_down(priv, GENET_POWER_PASSIVE);
3388 	clk_disable_unprepare(priv->clk);
3389 	return ret;
3390 }
3391 
bcmgenet_netif_stop(struct net_device * dev)3392 static void bcmgenet_netif_stop(struct net_device *dev)
3393 {
3394 	struct bcmgenet_priv *priv = netdev_priv(dev);
3395 
3396 	bcmgenet_disable_tx_napi(priv);
3397 	netif_tx_disable(dev);
3398 
3399 	/* Disable MAC receive */
3400 	umac_enable_set(priv, CMD_RX_EN, false);
3401 
3402 	bcmgenet_dma_teardown(priv);
3403 
3404 	/* Disable MAC transmit. TX DMA disabled must be done before this */
3405 	umac_enable_set(priv, CMD_TX_EN, false);
3406 
3407 	phy_stop(dev->phydev);
3408 	bcmgenet_disable_rx_napi(priv);
3409 	bcmgenet_intr_disable(priv);
3410 
3411 	/* Wait for pending work items to complete. Since interrupts are
3412 	 * disabled no new work will be scheduled.
3413 	 */
3414 	cancel_work_sync(&priv->bcmgenet_irq_work);
3415 
3416 	priv->old_link = -1;
3417 	priv->old_speed = -1;
3418 	priv->old_duplex = -1;
3419 	priv->old_pause = -1;
3420 
3421 	/* tx reclaim */
3422 	bcmgenet_tx_reclaim_all(dev);
3423 	bcmgenet_fini_dma(priv);
3424 }
3425 
bcmgenet_close(struct net_device * dev)3426 static int bcmgenet_close(struct net_device *dev)
3427 {
3428 	struct bcmgenet_priv *priv = netdev_priv(dev);
3429 	int ret = 0;
3430 
3431 	netif_dbg(priv, ifdown, dev, "bcmgenet_close\n");
3432 
3433 	bcmgenet_netif_stop(dev);
3434 
3435 	/* Really kill the PHY state machine and disconnect from it */
3436 	phy_disconnect(dev->phydev);
3437 
3438 	free_irq(priv->irq0, priv);
3439 	free_irq(priv->irq1, priv);
3440 
3441 	if (priv->internal_phy)
3442 		ret = bcmgenet_power_down(priv, GENET_POWER_PASSIVE);
3443 
3444 	clk_disable_unprepare(priv->clk);
3445 
3446 	return ret;
3447 }
3448 
bcmgenet_dump_tx_queue(struct bcmgenet_tx_ring * ring)3449 static void bcmgenet_dump_tx_queue(struct bcmgenet_tx_ring *ring)
3450 {
3451 	struct bcmgenet_priv *priv = ring->priv;
3452 	u32 p_index, c_index, intsts, intmsk;
3453 	struct netdev_queue *txq;
3454 	unsigned int free_bds;
3455 	bool txq_stopped;
3456 
3457 	if (!netif_msg_tx_err(priv))
3458 		return;
3459 
3460 	txq = netdev_get_tx_queue(priv->dev, ring->queue);
3461 
3462 	spin_lock(&ring->lock);
3463 	if (ring->index == DESC_INDEX) {
3464 		intsts = ~bcmgenet_intrl2_0_readl(priv, INTRL2_CPU_MASK_STATUS);
3465 		intmsk = UMAC_IRQ_TXDMA_DONE | UMAC_IRQ_TXDMA_MBDONE;
3466 	} else {
3467 		intsts = ~bcmgenet_intrl2_1_readl(priv, INTRL2_CPU_MASK_STATUS);
3468 		intmsk = 1 << ring->index;
3469 	}
3470 	c_index = bcmgenet_tdma_ring_readl(priv, ring->index, TDMA_CONS_INDEX);
3471 	p_index = bcmgenet_tdma_ring_readl(priv, ring->index, TDMA_PROD_INDEX);
3472 	txq_stopped = netif_tx_queue_stopped(txq);
3473 	free_bds = ring->free_bds;
3474 	spin_unlock(&ring->lock);
3475 
3476 	netif_err(priv, tx_err, priv->dev, "Ring %d queue %d status summary\n"
3477 		  "TX queue status: %s, interrupts: %s\n"
3478 		  "(sw)free_bds: %d (sw)size: %d\n"
3479 		  "(sw)p_index: %d (hw)p_index: %d\n"
3480 		  "(sw)c_index: %d (hw)c_index: %d\n"
3481 		  "(sw)clean_p: %d (sw)write_p: %d\n"
3482 		  "(sw)cb_ptr: %d (sw)end_ptr: %d\n",
3483 		  ring->index, ring->queue,
3484 		  txq_stopped ? "stopped" : "active",
3485 		  intsts & intmsk ? "enabled" : "disabled",
3486 		  free_bds, ring->size,
3487 		  ring->prod_index, p_index & DMA_P_INDEX_MASK,
3488 		  ring->c_index, c_index & DMA_C_INDEX_MASK,
3489 		  ring->clean_ptr, ring->write_ptr,
3490 		  ring->cb_ptr, ring->end_ptr);
3491 }
3492 
bcmgenet_timeout(struct net_device * dev,unsigned int txqueue)3493 static void bcmgenet_timeout(struct net_device *dev, unsigned int txqueue)
3494 {
3495 	struct bcmgenet_priv *priv = netdev_priv(dev);
3496 	u32 int0_enable = 0;
3497 	u32 int1_enable = 0;
3498 	unsigned int q;
3499 
3500 	netif_dbg(priv, tx_err, dev, "bcmgenet_timeout\n");
3501 
3502 	for (q = 0; q < priv->hw_params->tx_queues; q++)
3503 		bcmgenet_dump_tx_queue(&priv->tx_rings[q]);
3504 	bcmgenet_dump_tx_queue(&priv->tx_rings[DESC_INDEX]);
3505 
3506 	bcmgenet_tx_reclaim_all(dev);
3507 
3508 	for (q = 0; q < priv->hw_params->tx_queues; q++)
3509 		int1_enable |= (1 << q);
3510 
3511 	int0_enable = UMAC_IRQ_TXDMA_DONE;
3512 
3513 	/* Re-enable TX interrupts if disabled */
3514 	bcmgenet_intrl2_0_writel(priv, int0_enable, INTRL2_CPU_MASK_CLEAR);
3515 	bcmgenet_intrl2_1_writel(priv, int1_enable, INTRL2_CPU_MASK_CLEAR);
3516 
3517 	netif_trans_update(dev);
3518 
3519 	dev->stats.tx_errors++;
3520 
3521 	netif_tx_wake_all_queues(dev);
3522 }
3523 
3524 #define MAX_MDF_FILTER	17
3525 
bcmgenet_set_mdf_addr(struct bcmgenet_priv * priv,unsigned char * addr,int * i)3526 static inline void bcmgenet_set_mdf_addr(struct bcmgenet_priv *priv,
3527 					 unsigned char *addr,
3528 					 int *i)
3529 {
3530 	bcmgenet_umac_writel(priv, addr[0] << 8 | addr[1],
3531 			     UMAC_MDF_ADDR + (*i * 4));
3532 	bcmgenet_umac_writel(priv, addr[2] << 24 | addr[3] << 16 |
3533 			     addr[4] << 8 | addr[5],
3534 			     UMAC_MDF_ADDR + ((*i + 1) * 4));
3535 	*i += 2;
3536 }
3537 
bcmgenet_set_rx_mode(struct net_device * dev)3538 static void bcmgenet_set_rx_mode(struct net_device *dev)
3539 {
3540 	struct bcmgenet_priv *priv = netdev_priv(dev);
3541 	struct netdev_hw_addr *ha;
3542 	int i, nfilter;
3543 	u32 reg;
3544 
3545 	netif_dbg(priv, hw, dev, "%s: %08X\n", __func__, dev->flags);
3546 
3547 	/* Number of filters needed */
3548 	nfilter = netdev_uc_count(dev) + netdev_mc_count(dev) + 2;
3549 
3550 	/*
3551 	 * Turn on promicuous mode for three scenarios
3552 	 * 1. IFF_PROMISC flag is set
3553 	 * 2. IFF_ALLMULTI flag is set
3554 	 * 3. The number of filters needed exceeds the number filters
3555 	 *    supported by the hardware.
3556 	*/
3557 	reg = bcmgenet_umac_readl(priv, UMAC_CMD);
3558 	if ((dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) ||
3559 	    (nfilter > MAX_MDF_FILTER)) {
3560 		reg |= CMD_PROMISC;
3561 		bcmgenet_umac_writel(priv, reg, UMAC_CMD);
3562 		bcmgenet_umac_writel(priv, 0, UMAC_MDF_CTRL);
3563 		return;
3564 	} else {
3565 		reg &= ~CMD_PROMISC;
3566 		bcmgenet_umac_writel(priv, reg, UMAC_CMD);
3567 	}
3568 
3569 	/* update MDF filter */
3570 	i = 0;
3571 	/* Broadcast */
3572 	bcmgenet_set_mdf_addr(priv, dev->broadcast, &i);
3573 	/* my own address.*/
3574 	bcmgenet_set_mdf_addr(priv, dev->dev_addr, &i);
3575 
3576 	/* Unicast */
3577 	netdev_for_each_uc_addr(ha, dev)
3578 		bcmgenet_set_mdf_addr(priv, ha->addr, &i);
3579 
3580 	/* Multicast */
3581 	netdev_for_each_mc_addr(ha, dev)
3582 		bcmgenet_set_mdf_addr(priv, ha->addr, &i);
3583 
3584 	/* Enable filters */
3585 	reg = GENMASK(MAX_MDF_FILTER - 1, MAX_MDF_FILTER - nfilter);
3586 	bcmgenet_umac_writel(priv, reg, UMAC_MDF_CTRL);
3587 }
3588 
3589 /* Set the hardware MAC address. */
bcmgenet_set_mac_addr(struct net_device * dev,void * p)3590 static int bcmgenet_set_mac_addr(struct net_device *dev, void *p)
3591 {
3592 	struct sockaddr *addr = p;
3593 
3594 	/* Setting the MAC address at the hardware level is not possible
3595 	 * without disabling the UniMAC RX/TX enable bits.
3596 	 */
3597 	if (netif_running(dev))
3598 		return -EBUSY;
3599 
3600 	ether_addr_copy(dev->dev_addr, addr->sa_data);
3601 
3602 	return 0;
3603 }
3604 
bcmgenet_get_stats(struct net_device * dev)3605 static struct net_device_stats *bcmgenet_get_stats(struct net_device *dev)
3606 {
3607 	struct bcmgenet_priv *priv = netdev_priv(dev);
3608 	unsigned long tx_bytes = 0, tx_packets = 0;
3609 	unsigned long rx_bytes = 0, rx_packets = 0;
3610 	unsigned long rx_errors = 0, rx_dropped = 0;
3611 	struct bcmgenet_tx_ring *tx_ring;
3612 	struct bcmgenet_rx_ring *rx_ring;
3613 	unsigned int q;
3614 
3615 	for (q = 0; q < priv->hw_params->tx_queues; q++) {
3616 		tx_ring = &priv->tx_rings[q];
3617 		tx_bytes += tx_ring->bytes;
3618 		tx_packets += tx_ring->packets;
3619 	}
3620 	tx_ring = &priv->tx_rings[DESC_INDEX];
3621 	tx_bytes += tx_ring->bytes;
3622 	tx_packets += tx_ring->packets;
3623 
3624 	for (q = 0; q < priv->hw_params->rx_queues; q++) {
3625 		rx_ring = &priv->rx_rings[q];
3626 
3627 		rx_bytes += rx_ring->bytes;
3628 		rx_packets += rx_ring->packets;
3629 		rx_errors += rx_ring->errors;
3630 		rx_dropped += rx_ring->dropped;
3631 	}
3632 	rx_ring = &priv->rx_rings[DESC_INDEX];
3633 	rx_bytes += rx_ring->bytes;
3634 	rx_packets += rx_ring->packets;
3635 	rx_errors += rx_ring->errors;
3636 	rx_dropped += rx_ring->dropped;
3637 
3638 	dev->stats.tx_bytes = tx_bytes;
3639 	dev->stats.tx_packets = tx_packets;
3640 	dev->stats.rx_bytes = rx_bytes;
3641 	dev->stats.rx_packets = rx_packets;
3642 	dev->stats.rx_errors = rx_errors;
3643 	dev->stats.rx_missed_errors = rx_errors;
3644 	dev->stats.rx_dropped = rx_dropped;
3645 	return &dev->stats;
3646 }
3647 
bcmgenet_change_carrier(struct net_device * dev,bool new_carrier)3648 static int bcmgenet_change_carrier(struct net_device *dev, bool new_carrier)
3649 {
3650 	struct bcmgenet_priv *priv = netdev_priv(dev);
3651 
3652 	if (!dev->phydev || !phy_is_pseudo_fixed_link(dev->phydev) ||
3653 	    priv->phy_interface != PHY_INTERFACE_MODE_MOCA)
3654 		return -EOPNOTSUPP;
3655 
3656 	if (new_carrier)
3657 		netif_carrier_on(dev);
3658 	else
3659 		netif_carrier_off(dev);
3660 
3661 	return 0;
3662 }
3663 
3664 static const struct net_device_ops bcmgenet_netdev_ops = {
3665 	.ndo_open		= bcmgenet_open,
3666 	.ndo_stop		= bcmgenet_close,
3667 	.ndo_start_xmit		= bcmgenet_xmit,
3668 	.ndo_tx_timeout		= bcmgenet_timeout,
3669 	.ndo_set_rx_mode	= bcmgenet_set_rx_mode,
3670 	.ndo_set_mac_address	= bcmgenet_set_mac_addr,
3671 	.ndo_do_ioctl		= phy_do_ioctl_running,
3672 	.ndo_set_features	= bcmgenet_set_features,
3673 #ifdef CONFIG_NET_POLL_CONTROLLER
3674 	.ndo_poll_controller	= bcmgenet_poll_controller,
3675 #endif
3676 	.ndo_get_stats		= bcmgenet_get_stats,
3677 	.ndo_change_carrier	= bcmgenet_change_carrier,
3678 };
3679 
3680 /* Array of GENET hardware parameters/characteristics */
3681 static struct bcmgenet_hw_params bcmgenet_hw_params[] = {
3682 	[GENET_V1] = {
3683 		.tx_queues = 0,
3684 		.tx_bds_per_q = 0,
3685 		.rx_queues = 0,
3686 		.rx_bds_per_q = 0,
3687 		.bp_in_en_shift = 16,
3688 		.bp_in_mask = 0xffff,
3689 		.hfb_filter_cnt = 16,
3690 		.qtag_mask = 0x1F,
3691 		.hfb_offset = 0x1000,
3692 		.rdma_offset = 0x2000,
3693 		.tdma_offset = 0x3000,
3694 		.words_per_bd = 2,
3695 	},
3696 	[GENET_V2] = {
3697 		.tx_queues = 4,
3698 		.tx_bds_per_q = 32,
3699 		.rx_queues = 0,
3700 		.rx_bds_per_q = 0,
3701 		.bp_in_en_shift = 16,
3702 		.bp_in_mask = 0xffff,
3703 		.hfb_filter_cnt = 16,
3704 		.qtag_mask = 0x1F,
3705 		.tbuf_offset = 0x0600,
3706 		.hfb_offset = 0x1000,
3707 		.hfb_reg_offset = 0x2000,
3708 		.rdma_offset = 0x3000,
3709 		.tdma_offset = 0x4000,
3710 		.words_per_bd = 2,
3711 		.flags = GENET_HAS_EXT,
3712 	},
3713 	[GENET_V3] = {
3714 		.tx_queues = 4,
3715 		.tx_bds_per_q = 32,
3716 		.rx_queues = 0,
3717 		.rx_bds_per_q = 0,
3718 		.bp_in_en_shift = 17,
3719 		.bp_in_mask = 0x1ffff,
3720 		.hfb_filter_cnt = 48,
3721 		.hfb_filter_size = 128,
3722 		.qtag_mask = 0x3F,
3723 		.tbuf_offset = 0x0600,
3724 		.hfb_offset = 0x8000,
3725 		.hfb_reg_offset = 0xfc00,
3726 		.rdma_offset = 0x10000,
3727 		.tdma_offset = 0x11000,
3728 		.words_per_bd = 2,
3729 		.flags = GENET_HAS_EXT | GENET_HAS_MDIO_INTR |
3730 			 GENET_HAS_MOCA_LINK_DET,
3731 	},
3732 	[GENET_V4] = {
3733 		.tx_queues = 4,
3734 		.tx_bds_per_q = 32,
3735 		.rx_queues = 0,
3736 		.rx_bds_per_q = 0,
3737 		.bp_in_en_shift = 17,
3738 		.bp_in_mask = 0x1ffff,
3739 		.hfb_filter_cnt = 48,
3740 		.hfb_filter_size = 128,
3741 		.qtag_mask = 0x3F,
3742 		.tbuf_offset = 0x0600,
3743 		.hfb_offset = 0x8000,
3744 		.hfb_reg_offset = 0xfc00,
3745 		.rdma_offset = 0x2000,
3746 		.tdma_offset = 0x4000,
3747 		.words_per_bd = 3,
3748 		.flags = GENET_HAS_40BITS | GENET_HAS_EXT |
3749 			 GENET_HAS_MDIO_INTR | GENET_HAS_MOCA_LINK_DET,
3750 	},
3751 	[GENET_V5] = {
3752 		.tx_queues = 4,
3753 		.tx_bds_per_q = 32,
3754 		.rx_queues = 0,
3755 		.rx_bds_per_q = 0,
3756 		.bp_in_en_shift = 17,
3757 		.bp_in_mask = 0x1ffff,
3758 		.hfb_filter_cnt = 48,
3759 		.hfb_filter_size = 128,
3760 		.qtag_mask = 0x3F,
3761 		.tbuf_offset = 0x0600,
3762 		.hfb_offset = 0x8000,
3763 		.hfb_reg_offset = 0xfc00,
3764 		.rdma_offset = 0x2000,
3765 		.tdma_offset = 0x4000,
3766 		.words_per_bd = 3,
3767 		.flags = GENET_HAS_40BITS | GENET_HAS_EXT |
3768 			 GENET_HAS_MDIO_INTR | GENET_HAS_MOCA_LINK_DET,
3769 	},
3770 };
3771 
3772 /* Infer hardware parameters from the detected GENET version */
bcmgenet_set_hw_params(struct bcmgenet_priv * priv)3773 static void bcmgenet_set_hw_params(struct bcmgenet_priv *priv)
3774 {
3775 	struct bcmgenet_hw_params *params;
3776 	u32 reg;
3777 	u8 major;
3778 	u16 gphy_rev;
3779 
3780 	if (GENET_IS_V5(priv) || GENET_IS_V4(priv)) {
3781 		bcmgenet_dma_regs = bcmgenet_dma_regs_v3plus;
3782 		genet_dma_ring_regs = genet_dma_ring_regs_v4;
3783 	} else if (GENET_IS_V3(priv)) {
3784 		bcmgenet_dma_regs = bcmgenet_dma_regs_v3plus;
3785 		genet_dma_ring_regs = genet_dma_ring_regs_v123;
3786 	} else if (GENET_IS_V2(priv)) {
3787 		bcmgenet_dma_regs = bcmgenet_dma_regs_v2;
3788 		genet_dma_ring_regs = genet_dma_ring_regs_v123;
3789 	} else if (GENET_IS_V1(priv)) {
3790 		bcmgenet_dma_regs = bcmgenet_dma_regs_v1;
3791 		genet_dma_ring_regs = genet_dma_ring_regs_v123;
3792 	}
3793 
3794 	/* enum genet_version starts at 1 */
3795 	priv->hw_params = &bcmgenet_hw_params[priv->version];
3796 	params = priv->hw_params;
3797 
3798 	/* Read GENET HW version */
3799 	reg = bcmgenet_sys_readl(priv, SYS_REV_CTRL);
3800 	major = (reg >> 24 & 0x0f);
3801 	if (major == 6)
3802 		major = 5;
3803 	else if (major == 5)
3804 		major = 4;
3805 	else if (major == 0)
3806 		major = 1;
3807 	if (major != priv->version) {
3808 		dev_err(&priv->pdev->dev,
3809 			"GENET version mismatch, got: %d, configured for: %d\n",
3810 			major, priv->version);
3811 	}
3812 
3813 	/* Print the GENET core version */
3814 	dev_info(&priv->pdev->dev, "GENET " GENET_VER_FMT,
3815 		 major, (reg >> 16) & 0x0f, reg & 0xffff);
3816 
3817 	/* Store the integrated PHY revision for the MDIO probing function
3818 	 * to pass this information to the PHY driver. The PHY driver expects
3819 	 * to find the PHY major revision in bits 15:8 while the GENET register
3820 	 * stores that information in bits 7:0, account for that.
3821 	 *
3822 	 * On newer chips, starting with PHY revision G0, a new scheme is
3823 	 * deployed similar to the Starfighter 2 switch with GPHY major
3824 	 * revision in bits 15:8 and patch level in bits 7:0. Major revision 0
3825 	 * is reserved as well as special value 0x01ff, we have a small
3826 	 * heuristic to check for the new GPHY revision and re-arrange things
3827 	 * so the GPHY driver is happy.
3828 	 */
3829 	gphy_rev = reg & 0xffff;
3830 
3831 	if (GENET_IS_V5(priv)) {
3832 		/* The EPHY revision should come from the MDIO registers of
3833 		 * the PHY not from GENET.
3834 		 */
3835 		if (gphy_rev != 0) {
3836 			pr_warn("GENET is reporting EPHY revision: 0x%04x\n",
3837 				gphy_rev);
3838 		}
3839 	/* This is reserved so should require special treatment */
3840 	} else if (gphy_rev == 0 || gphy_rev == 0x01ff) {
3841 		pr_warn("Invalid GPHY revision detected: 0x%04x\n", gphy_rev);
3842 		return;
3843 	/* This is the good old scheme, just GPHY major, no minor nor patch */
3844 	} else if ((gphy_rev & 0xf0) != 0) {
3845 		priv->gphy_rev = gphy_rev << 8;
3846 	/* This is the new scheme, GPHY major rolls over with 0x10 = rev G0 */
3847 	} else if ((gphy_rev & 0xff00) != 0) {
3848 		priv->gphy_rev = gphy_rev;
3849 	}
3850 
3851 #ifdef CONFIG_PHYS_ADDR_T_64BIT
3852 	if (!(params->flags & GENET_HAS_40BITS))
3853 		pr_warn("GENET does not support 40-bits PA\n");
3854 #endif
3855 
3856 	pr_debug("Configuration for version: %d\n"
3857 		"TXq: %1d, TXqBDs: %1d, RXq: %1d, RXqBDs: %1d\n"
3858 		"BP << en: %2d, BP msk: 0x%05x\n"
3859 		"HFB count: %2d, QTAQ msk: 0x%05x\n"
3860 		"TBUF: 0x%04x, HFB: 0x%04x, HFBreg: 0x%04x\n"
3861 		"RDMA: 0x%05x, TDMA: 0x%05x\n"
3862 		"Words/BD: %d\n",
3863 		priv->version,
3864 		params->tx_queues, params->tx_bds_per_q,
3865 		params->rx_queues, params->rx_bds_per_q,
3866 		params->bp_in_en_shift, params->bp_in_mask,
3867 		params->hfb_filter_cnt, params->qtag_mask,
3868 		params->tbuf_offset, params->hfb_offset,
3869 		params->hfb_reg_offset,
3870 		params->rdma_offset, params->tdma_offset,
3871 		params->words_per_bd);
3872 }
3873 
3874 struct bcmgenet_plat_data {
3875 	enum bcmgenet_version version;
3876 	u32 dma_max_burst_length;
3877 };
3878 
3879 static const struct bcmgenet_plat_data v1_plat_data = {
3880 	.version = GENET_V1,
3881 	.dma_max_burst_length = DMA_MAX_BURST_LENGTH,
3882 };
3883 
3884 static const struct bcmgenet_plat_data v2_plat_data = {
3885 	.version = GENET_V2,
3886 	.dma_max_burst_length = DMA_MAX_BURST_LENGTH,
3887 };
3888 
3889 static const struct bcmgenet_plat_data v3_plat_data = {
3890 	.version = GENET_V3,
3891 	.dma_max_burst_length = DMA_MAX_BURST_LENGTH,
3892 };
3893 
3894 static const struct bcmgenet_plat_data v4_plat_data = {
3895 	.version = GENET_V4,
3896 	.dma_max_burst_length = DMA_MAX_BURST_LENGTH,
3897 };
3898 
3899 static const struct bcmgenet_plat_data v5_plat_data = {
3900 	.version = GENET_V5,
3901 	.dma_max_burst_length = DMA_MAX_BURST_LENGTH,
3902 };
3903 
3904 static const struct bcmgenet_plat_data bcm2711_plat_data = {
3905 	.version = GENET_V5,
3906 	.dma_max_burst_length = 0x08,
3907 };
3908 
3909 static const struct of_device_id bcmgenet_match[] = {
3910 	{ .compatible = "brcm,genet-v1", .data = &v1_plat_data },
3911 	{ .compatible = "brcm,genet-v2", .data = &v2_plat_data },
3912 	{ .compatible = "brcm,genet-v3", .data = &v3_plat_data },
3913 	{ .compatible = "brcm,genet-v4", .data = &v4_plat_data },
3914 	{ .compatible = "brcm,genet-v5", .data = &v5_plat_data },
3915 	{ .compatible = "brcm,bcm2711-genet-v5", .data = &bcm2711_plat_data },
3916 	{ },
3917 };
3918 MODULE_DEVICE_TABLE(of, bcmgenet_match);
3919 
bcmgenet_probe(struct platform_device * pdev)3920 static int bcmgenet_probe(struct platform_device *pdev)
3921 {
3922 	struct bcmgenet_platform_data *pd = pdev->dev.platform_data;
3923 	const struct bcmgenet_plat_data *pdata;
3924 	struct bcmgenet_priv *priv;
3925 	struct net_device *dev;
3926 	unsigned int i;
3927 	int err = -EIO;
3928 
3929 	/* Up to GENET_MAX_MQ_CNT + 1 TX queues and RX queues */
3930 	dev = alloc_etherdev_mqs(sizeof(*priv), GENET_MAX_MQ_CNT + 1,
3931 				 GENET_MAX_MQ_CNT + 1);
3932 	if (!dev) {
3933 		dev_err(&pdev->dev, "can't allocate net device\n");
3934 		return -ENOMEM;
3935 	}
3936 
3937 	priv = netdev_priv(dev);
3938 	priv->irq0 = platform_get_irq(pdev, 0);
3939 	if (priv->irq0 < 0) {
3940 		err = priv->irq0;
3941 		goto err;
3942 	}
3943 	priv->irq1 = platform_get_irq(pdev, 1);
3944 	if (priv->irq1 < 0) {
3945 		err = priv->irq1;
3946 		goto err;
3947 	}
3948 	priv->wol_irq = platform_get_irq_optional(pdev, 2);
3949 	if (priv->wol_irq == -EPROBE_DEFER) {
3950 		err = priv->wol_irq;
3951 		goto err;
3952 	}
3953 
3954 	priv->base = devm_platform_ioremap_resource(pdev, 0);
3955 	if (IS_ERR(priv->base)) {
3956 		err = PTR_ERR(priv->base);
3957 		goto err;
3958 	}
3959 
3960 	spin_lock_init(&priv->lock);
3961 
3962 	SET_NETDEV_DEV(dev, &pdev->dev);
3963 	dev_set_drvdata(&pdev->dev, dev);
3964 	dev->watchdog_timeo = 2 * HZ;
3965 	dev->ethtool_ops = &bcmgenet_ethtool_ops;
3966 	dev->netdev_ops = &bcmgenet_netdev_ops;
3967 
3968 	priv->msg_enable = netif_msg_init(-1, GENET_MSG_DEFAULT);
3969 
3970 	/* Set default features */
3971 	dev->features |= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_HW_CSUM |
3972 			 NETIF_F_RXCSUM;
3973 	dev->hw_features |= dev->features;
3974 	dev->vlan_features |= dev->features;
3975 
3976 	/* Request the WOL interrupt and advertise suspend if available */
3977 	priv->wol_irq_disabled = true;
3978 	if (priv->wol_irq > 0) {
3979 		err = devm_request_irq(&pdev->dev, priv->wol_irq,
3980 				       bcmgenet_wol_isr, 0, dev->name, priv);
3981 		if (!err)
3982 			device_set_wakeup_capable(&pdev->dev, 1);
3983 	}
3984 
3985 	/* Set the needed headroom to account for any possible
3986 	 * features enabling/disabling at runtime
3987 	 */
3988 	dev->needed_headroom += 64;
3989 
3990 	netdev_boot_setup_check(dev);
3991 
3992 	priv->dev = dev;
3993 	priv->pdev = pdev;
3994 
3995 	pdata = device_get_match_data(&pdev->dev);
3996 	if (pdata) {
3997 		priv->version = pdata->version;
3998 		priv->dma_max_burst_length = pdata->dma_max_burst_length;
3999 	} else {
4000 		priv->version = pd->genet_version;
4001 		priv->dma_max_burst_length = DMA_MAX_BURST_LENGTH;
4002 	}
4003 
4004 	priv->clk = devm_clk_get_optional(&priv->pdev->dev, "enet");
4005 	if (IS_ERR(priv->clk)) {
4006 		dev_dbg(&priv->pdev->dev, "failed to get enet clock\n");
4007 		err = PTR_ERR(priv->clk);
4008 		goto err;
4009 	}
4010 
4011 	err = clk_prepare_enable(priv->clk);
4012 	if (err)
4013 		goto err;
4014 
4015 	bcmgenet_set_hw_params(priv);
4016 
4017 	err = -EIO;
4018 	if (priv->hw_params->flags & GENET_HAS_40BITS)
4019 		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(40));
4020 	if (err)
4021 		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
4022 	if (err)
4023 		goto err_clk_disable;
4024 
4025 	/* Mii wait queue */
4026 	init_waitqueue_head(&priv->wq);
4027 	/* Always use RX_BUF_LENGTH (2KB) buffer for all chips */
4028 	priv->rx_buf_len = RX_BUF_LENGTH;
4029 	INIT_WORK(&priv->bcmgenet_irq_work, bcmgenet_irq_task);
4030 
4031 	priv->clk_wol = devm_clk_get_optional(&priv->pdev->dev, "enet-wol");
4032 	if (IS_ERR(priv->clk_wol)) {
4033 		dev_dbg(&priv->pdev->dev, "failed to get enet-wol clock\n");
4034 		err = PTR_ERR(priv->clk_wol);
4035 		goto err_clk_disable;
4036 	}
4037 
4038 	priv->clk_eee = devm_clk_get_optional(&priv->pdev->dev, "enet-eee");
4039 	if (IS_ERR(priv->clk_eee)) {
4040 		dev_dbg(&priv->pdev->dev, "failed to get enet-eee clock\n");
4041 		err = PTR_ERR(priv->clk_eee);
4042 		goto err_clk_disable;
4043 	}
4044 
4045 	/* If this is an internal GPHY, power it on now, before UniMAC is
4046 	 * brought out of reset as absolutely no UniMAC activity is allowed
4047 	 */
4048 	if (device_get_phy_mode(&pdev->dev) == PHY_INTERFACE_MODE_INTERNAL)
4049 		bcmgenet_power_up(priv, GENET_POWER_PASSIVE);
4050 
4051 	if (pd && !IS_ERR_OR_NULL(pd->mac_address))
4052 		ether_addr_copy(dev->dev_addr, pd->mac_address);
4053 	else
4054 		if (!device_get_mac_address(&pdev->dev, dev->dev_addr, ETH_ALEN))
4055 			if (has_acpi_companion(&pdev->dev))
4056 				bcmgenet_get_hw_addr(priv, dev->dev_addr);
4057 
4058 	if (!is_valid_ether_addr(dev->dev_addr)) {
4059 		dev_warn(&pdev->dev, "using random Ethernet MAC\n");
4060 		eth_hw_addr_random(dev);
4061 	}
4062 
4063 	reset_umac(priv);
4064 
4065 	err = bcmgenet_mii_init(dev);
4066 	if (err)
4067 		goto err_clk_disable;
4068 
4069 	/* setup number of real queues  + 1 (GENET_V1 has 0 hardware queues
4070 	 * just the ring 16 descriptor based TX
4071 	 */
4072 	netif_set_real_num_tx_queues(priv->dev, priv->hw_params->tx_queues + 1);
4073 	netif_set_real_num_rx_queues(priv->dev, priv->hw_params->rx_queues + 1);
4074 
4075 	/* Set default coalescing parameters */
4076 	for (i = 0; i < priv->hw_params->rx_queues; i++)
4077 		priv->rx_rings[i].rx_max_coalesced_frames = 1;
4078 	priv->rx_rings[DESC_INDEX].rx_max_coalesced_frames = 1;
4079 
4080 	/* libphy will determine the link state */
4081 	netif_carrier_off(dev);
4082 
4083 	/* Turn off the main clock, WOL clock is handled separately */
4084 	clk_disable_unprepare(priv->clk);
4085 
4086 	err = register_netdev(dev);
4087 	if (err) {
4088 		bcmgenet_mii_exit(dev);
4089 		goto err;
4090 	}
4091 
4092 	return err;
4093 
4094 err_clk_disable:
4095 	clk_disable_unprepare(priv->clk);
4096 err:
4097 	free_netdev(dev);
4098 	return err;
4099 }
4100 
bcmgenet_remove(struct platform_device * pdev)4101 static int bcmgenet_remove(struct platform_device *pdev)
4102 {
4103 	struct bcmgenet_priv *priv = dev_to_priv(&pdev->dev);
4104 
4105 	dev_set_drvdata(&pdev->dev, NULL);
4106 	unregister_netdev(priv->dev);
4107 	bcmgenet_mii_exit(priv->dev);
4108 	free_netdev(priv->dev);
4109 
4110 	return 0;
4111 }
4112 
bcmgenet_shutdown(struct platform_device * pdev)4113 static void bcmgenet_shutdown(struct platform_device *pdev)
4114 {
4115 	bcmgenet_remove(pdev);
4116 }
4117 
4118 #ifdef CONFIG_PM_SLEEP
bcmgenet_resume_noirq(struct device * d)4119 static int bcmgenet_resume_noirq(struct device *d)
4120 {
4121 	struct net_device *dev = dev_get_drvdata(d);
4122 	struct bcmgenet_priv *priv = netdev_priv(dev);
4123 	int ret;
4124 	u32 reg;
4125 
4126 	if (!netif_running(dev))
4127 		return 0;
4128 
4129 	/* Turn on the clock */
4130 	ret = clk_prepare_enable(priv->clk);
4131 	if (ret)
4132 		return ret;
4133 
4134 	if (device_may_wakeup(d) && priv->wolopts) {
4135 		/* Account for Wake-on-LAN events and clear those events
4136 		 * (Some devices need more time between enabling the clocks
4137 		 *  and the interrupt register reflecting the wake event so
4138 		 *  read the register twice)
4139 		 */
4140 		reg = bcmgenet_intrl2_0_readl(priv, INTRL2_CPU_STAT);
4141 		reg = bcmgenet_intrl2_0_readl(priv, INTRL2_CPU_STAT);
4142 		if (reg & UMAC_IRQ_WAKE_EVENT)
4143 			pm_wakeup_event(&priv->pdev->dev, 0);
4144 	}
4145 
4146 	bcmgenet_intrl2_0_writel(priv, UMAC_IRQ_WAKE_EVENT, INTRL2_CPU_CLEAR);
4147 
4148 	return 0;
4149 }
4150 
bcmgenet_resume(struct device * d)4151 static int bcmgenet_resume(struct device *d)
4152 {
4153 	struct net_device *dev = dev_get_drvdata(d);
4154 	struct bcmgenet_priv *priv = netdev_priv(dev);
4155 	struct bcmgenet_rxnfc_rule *rule;
4156 	unsigned long dma_ctrl;
4157 	int ret;
4158 
4159 	if (!netif_running(dev))
4160 		return 0;
4161 
4162 	/* From WOL-enabled suspend, switch to regular clock */
4163 	if (device_may_wakeup(d) && priv->wolopts)
4164 		bcmgenet_power_up(priv, GENET_POWER_WOL_MAGIC);
4165 
4166 	/* If this is an internal GPHY, power it back on now, before UniMAC is
4167 	 * brought out of reset as absolutely no UniMAC activity is allowed
4168 	 */
4169 	if (priv->internal_phy)
4170 		bcmgenet_power_up(priv, GENET_POWER_PASSIVE);
4171 
4172 	bcmgenet_umac_reset(priv);
4173 
4174 	init_umac(priv);
4175 
4176 	phy_init_hw(dev->phydev);
4177 
4178 	/* Speed settings must be restored */
4179 	genphy_config_aneg(dev->phydev);
4180 	bcmgenet_mii_config(priv->dev, false);
4181 
4182 	/* Restore enabled features */
4183 	bcmgenet_set_features(dev, dev->features);
4184 
4185 	bcmgenet_set_hw_addr(priv, dev->dev_addr);
4186 
4187 	/* Restore hardware filters */
4188 	bcmgenet_hfb_clear(priv);
4189 	list_for_each_entry(rule, &priv->rxnfc_list, list)
4190 		if (rule->state != BCMGENET_RXNFC_STATE_UNUSED)
4191 			bcmgenet_hfb_create_rxnfc_filter(priv, rule);
4192 
4193 	/* Disable RX/TX DMA and flush TX queues */
4194 	dma_ctrl = bcmgenet_dma_disable(priv);
4195 
4196 	/* Reinitialize TDMA and RDMA and SW housekeeping */
4197 	ret = bcmgenet_init_dma(priv);
4198 	if (ret) {
4199 		netdev_err(dev, "failed to initialize DMA\n");
4200 		goto out_clk_disable;
4201 	}
4202 
4203 	/* Always enable ring 16 - descriptor ring */
4204 	bcmgenet_enable_dma(priv, dma_ctrl);
4205 
4206 	if (!device_may_wakeup(d))
4207 		phy_resume(dev->phydev);
4208 
4209 	if (priv->eee.eee_enabled)
4210 		bcmgenet_eee_enable_set(dev, true);
4211 
4212 	bcmgenet_netif_start(dev);
4213 
4214 	netif_device_attach(dev);
4215 
4216 	return 0;
4217 
4218 out_clk_disable:
4219 	if (priv->internal_phy)
4220 		bcmgenet_power_down(priv, GENET_POWER_PASSIVE);
4221 	clk_disable_unprepare(priv->clk);
4222 	return ret;
4223 }
4224 
bcmgenet_suspend(struct device * d)4225 static int bcmgenet_suspend(struct device *d)
4226 {
4227 	struct net_device *dev = dev_get_drvdata(d);
4228 	struct bcmgenet_priv *priv = netdev_priv(dev);
4229 
4230 	if (!netif_running(dev))
4231 		return 0;
4232 
4233 	netif_device_detach(dev);
4234 
4235 	bcmgenet_netif_stop(dev);
4236 
4237 	if (!device_may_wakeup(d))
4238 		phy_suspend(dev->phydev);
4239 
4240 	/* Disable filtering */
4241 	bcmgenet_hfb_reg_writel(priv, 0, HFB_CTRL);
4242 
4243 	return 0;
4244 }
4245 
bcmgenet_suspend_noirq(struct device * d)4246 static int bcmgenet_suspend_noirq(struct device *d)
4247 {
4248 	struct net_device *dev = dev_get_drvdata(d);
4249 	struct bcmgenet_priv *priv = netdev_priv(dev);
4250 	int ret = 0;
4251 
4252 	if (!netif_running(dev))
4253 		return 0;
4254 
4255 	/* Prepare the device for Wake-on-LAN and switch to the slow clock */
4256 	if (device_may_wakeup(d) && priv->wolopts)
4257 		ret = bcmgenet_power_down(priv, GENET_POWER_WOL_MAGIC);
4258 	else if (priv->internal_phy)
4259 		ret = bcmgenet_power_down(priv, GENET_POWER_PASSIVE);
4260 
4261 	/* Let the framework handle resumption and leave the clocks on */
4262 	if (ret)
4263 		return ret;
4264 
4265 	/* Turn off the clocks */
4266 	clk_disable_unprepare(priv->clk);
4267 
4268 	return 0;
4269 }
4270 #else
4271 #define bcmgenet_suspend	NULL
4272 #define bcmgenet_suspend_noirq	NULL
4273 #define bcmgenet_resume		NULL
4274 #define bcmgenet_resume_noirq	NULL
4275 #endif /* CONFIG_PM_SLEEP */
4276 
4277 static const struct dev_pm_ops bcmgenet_pm_ops = {
4278 	.suspend	= bcmgenet_suspend,
4279 	.suspend_noirq	= bcmgenet_suspend_noirq,
4280 	.resume		= bcmgenet_resume,
4281 	.resume_noirq	= bcmgenet_resume_noirq,
4282 };
4283 
4284 static const struct acpi_device_id genet_acpi_match[] = {
4285 	{ "BCM6E4E", (kernel_ulong_t)&bcm2711_plat_data },
4286 	{ },
4287 };
4288 MODULE_DEVICE_TABLE(acpi, genet_acpi_match);
4289 
4290 static struct platform_driver bcmgenet_driver = {
4291 	.probe	= bcmgenet_probe,
4292 	.remove	= bcmgenet_remove,
4293 	.shutdown = bcmgenet_shutdown,
4294 	.driver	= {
4295 		.name	= "bcmgenet",
4296 		.of_match_table = bcmgenet_match,
4297 		.pm	= &bcmgenet_pm_ops,
4298 		.acpi_match_table = genet_acpi_match,
4299 	},
4300 };
4301 module_platform_driver(bcmgenet_driver);
4302 
4303 MODULE_AUTHOR("Broadcom Corporation");
4304 MODULE_DESCRIPTION("Broadcom GENET Ethernet controller driver");
4305 MODULE_ALIAS("platform:bcmgenet");
4306 MODULE_LICENSE("GPL");
4307 MODULE_SOFTDEP("pre: mdio-bcm-unimac");
4308