xref: /linux/drivers/net/ethernet/mscc/ocelot.c (revision ec8a42e7343234802b9054874fe01810880289ce)
1 // SPDX-License-Identifier: (GPL-2.0 OR MIT)
2 /*
3  * Microsemi Ocelot Switch driver
4  *
5  * Copyright (c) 2017 Microsemi Corporation
6  */
7 #include <linux/dsa/ocelot.h>
8 #include <linux/if_bridge.h>
9 #include <soc/mscc/ocelot_vcap.h>
10 #include "ocelot.h"
11 #include "ocelot_vcap.h"
12 
13 #define TABLE_UPDATE_SLEEP_US 10
14 #define TABLE_UPDATE_TIMEOUT_US 100000
15 
16 struct ocelot_mact_entry {
17 	u8 mac[ETH_ALEN];
18 	u16 vid;
19 	enum macaccess_entry_type type;
20 };
21 
22 static inline u32 ocelot_mact_read_macaccess(struct ocelot *ocelot)
23 {
24 	return ocelot_read(ocelot, ANA_TABLES_MACACCESS);
25 }
26 
27 static inline int ocelot_mact_wait_for_completion(struct ocelot *ocelot)
28 {
29 	u32 val;
30 
31 	return readx_poll_timeout(ocelot_mact_read_macaccess,
32 		ocelot, val,
33 		(val & ANA_TABLES_MACACCESS_MAC_TABLE_CMD_M) ==
34 		MACACCESS_CMD_IDLE,
35 		TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
36 }
37 
38 static void ocelot_mact_select(struct ocelot *ocelot,
39 			       const unsigned char mac[ETH_ALEN],
40 			       unsigned int vid)
41 {
42 	u32 macl = 0, mach = 0;
43 
44 	/* Set the MAC address to handle and the vlan associated in a format
45 	 * understood by the hardware.
46 	 */
47 	mach |= vid    << 16;
48 	mach |= mac[0] << 8;
49 	mach |= mac[1] << 0;
50 	macl |= mac[2] << 24;
51 	macl |= mac[3] << 16;
52 	macl |= mac[4] << 8;
53 	macl |= mac[5] << 0;
54 
55 	ocelot_write(ocelot, macl, ANA_TABLES_MACLDATA);
56 	ocelot_write(ocelot, mach, ANA_TABLES_MACHDATA);
57 
58 }
59 
60 int ocelot_mact_learn(struct ocelot *ocelot, int port,
61 		      const unsigned char mac[ETH_ALEN],
62 		      unsigned int vid, enum macaccess_entry_type type)
63 {
64 	u32 cmd = ANA_TABLES_MACACCESS_VALID |
65 		ANA_TABLES_MACACCESS_DEST_IDX(port) |
66 		ANA_TABLES_MACACCESS_ENTRYTYPE(type) |
67 		ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_LEARN);
68 	unsigned int mc_ports;
69 
70 	/* Set MAC_CPU_COPY if the CPU port is used by a multicast entry */
71 	if (type == ENTRYTYPE_MACv4)
72 		mc_ports = (mac[1] << 8) | mac[2];
73 	else if (type == ENTRYTYPE_MACv6)
74 		mc_ports = (mac[0] << 8) | mac[1];
75 	else
76 		mc_ports = 0;
77 
78 	if (mc_ports & BIT(ocelot->num_phys_ports))
79 		cmd |= ANA_TABLES_MACACCESS_MAC_CPU_COPY;
80 
81 	ocelot_mact_select(ocelot, mac, vid);
82 
83 	/* Issue a write command */
84 	ocelot_write(ocelot, cmd, ANA_TABLES_MACACCESS);
85 
86 	return ocelot_mact_wait_for_completion(ocelot);
87 }
88 EXPORT_SYMBOL(ocelot_mact_learn);
89 
90 int ocelot_mact_forget(struct ocelot *ocelot,
91 		       const unsigned char mac[ETH_ALEN], unsigned int vid)
92 {
93 	ocelot_mact_select(ocelot, mac, vid);
94 
95 	/* Issue a forget command */
96 	ocelot_write(ocelot,
97 		     ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_FORGET),
98 		     ANA_TABLES_MACACCESS);
99 
100 	return ocelot_mact_wait_for_completion(ocelot);
101 }
102 EXPORT_SYMBOL(ocelot_mact_forget);
103 
104 static void ocelot_mact_init(struct ocelot *ocelot)
105 {
106 	/* Configure the learning mode entries attributes:
107 	 * - Do not copy the frame to the CPU extraction queues.
108 	 * - Use the vlan and mac_cpoy for dmac lookup.
109 	 */
110 	ocelot_rmw(ocelot, 0,
111 		   ANA_AGENCTRL_LEARN_CPU_COPY | ANA_AGENCTRL_IGNORE_DMAC_FLAGS
112 		   | ANA_AGENCTRL_LEARN_FWD_KILL
113 		   | ANA_AGENCTRL_LEARN_IGNORE_VLAN,
114 		   ANA_AGENCTRL);
115 
116 	/* Clear the MAC table */
117 	ocelot_write(ocelot, MACACCESS_CMD_INIT, ANA_TABLES_MACACCESS);
118 }
119 
120 static void ocelot_vcap_enable(struct ocelot *ocelot, int port)
121 {
122 	ocelot_write_gix(ocelot, ANA_PORT_VCAP_S2_CFG_S2_ENA |
123 			 ANA_PORT_VCAP_S2_CFG_S2_IP6_CFG(0xa),
124 			 ANA_PORT_VCAP_S2_CFG, port);
125 
126 	ocelot_write_gix(ocelot, ANA_PORT_VCAP_CFG_S1_ENA,
127 			 ANA_PORT_VCAP_CFG, port);
128 
129 	ocelot_rmw_gix(ocelot, REW_PORT_CFG_ES0_EN,
130 		       REW_PORT_CFG_ES0_EN,
131 		       REW_PORT_CFG, port);
132 }
133 
134 static inline u32 ocelot_vlant_read_vlanaccess(struct ocelot *ocelot)
135 {
136 	return ocelot_read(ocelot, ANA_TABLES_VLANACCESS);
137 }
138 
139 static inline int ocelot_vlant_wait_for_completion(struct ocelot *ocelot)
140 {
141 	u32 val;
142 
143 	return readx_poll_timeout(ocelot_vlant_read_vlanaccess,
144 		ocelot,
145 		val,
146 		(val & ANA_TABLES_VLANACCESS_VLAN_TBL_CMD_M) ==
147 		ANA_TABLES_VLANACCESS_CMD_IDLE,
148 		TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
149 }
150 
151 static int ocelot_vlant_set_mask(struct ocelot *ocelot, u16 vid, u32 mask)
152 {
153 	/* Select the VID to configure */
154 	ocelot_write(ocelot, ANA_TABLES_VLANTIDX_V_INDEX(vid),
155 		     ANA_TABLES_VLANTIDX);
156 	/* Set the vlan port members mask and issue a write command */
157 	ocelot_write(ocelot, ANA_TABLES_VLANACCESS_VLAN_PORT_MASK(mask) |
158 			     ANA_TABLES_VLANACCESS_CMD_WRITE,
159 		     ANA_TABLES_VLANACCESS);
160 
161 	return ocelot_vlant_wait_for_completion(ocelot);
162 }
163 
164 static void ocelot_port_set_native_vlan(struct ocelot *ocelot, int port,
165 					struct ocelot_vlan native_vlan)
166 {
167 	struct ocelot_port *ocelot_port = ocelot->ports[port];
168 	u32 val = 0;
169 
170 	ocelot_port->native_vlan = native_vlan;
171 
172 	ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_VID(native_vlan.vid),
173 		       REW_PORT_VLAN_CFG_PORT_VID_M,
174 		       REW_PORT_VLAN_CFG, port);
175 
176 	if (ocelot_port->vlan_aware) {
177 		if (native_vlan.valid)
178 			/* Tag all frames except when VID == DEFAULT_VLAN */
179 			val = REW_TAG_CFG_TAG_CFG(1);
180 		else
181 			/* Tag all frames */
182 			val = REW_TAG_CFG_TAG_CFG(3);
183 	} else {
184 		/* Port tagging disabled. */
185 		val = REW_TAG_CFG_TAG_CFG(0);
186 	}
187 	ocelot_rmw_gix(ocelot, val,
188 		       REW_TAG_CFG_TAG_CFG_M,
189 		       REW_TAG_CFG, port);
190 }
191 
192 /* Default vlan to clasify for untagged frames (may be zero) */
193 static void ocelot_port_set_pvid(struct ocelot *ocelot, int port,
194 				 struct ocelot_vlan pvid_vlan)
195 {
196 	struct ocelot_port *ocelot_port = ocelot->ports[port];
197 	u32 val = 0;
198 
199 	ocelot_port->pvid_vlan = pvid_vlan;
200 
201 	if (!ocelot_port->vlan_aware)
202 		pvid_vlan.vid = 0;
203 
204 	ocelot_rmw_gix(ocelot,
205 		       ANA_PORT_VLAN_CFG_VLAN_VID(pvid_vlan.vid),
206 		       ANA_PORT_VLAN_CFG_VLAN_VID_M,
207 		       ANA_PORT_VLAN_CFG, port);
208 
209 	/* If there's no pvid, we should drop not only untagged traffic (which
210 	 * happens automatically), but also 802.1p traffic which gets
211 	 * classified to VLAN 0, but that is always in our RX filter, so it
212 	 * would get accepted were it not for this setting.
213 	 */
214 	if (!pvid_vlan.valid && ocelot_port->vlan_aware)
215 		val = ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
216 		      ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA;
217 
218 	ocelot_rmw_gix(ocelot, val,
219 		       ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
220 		       ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA,
221 		       ANA_PORT_DROP_CFG, port);
222 }
223 
224 int ocelot_port_vlan_filtering(struct ocelot *ocelot, int port,
225 			       bool vlan_aware)
226 {
227 	struct ocelot_vcap_block *block = &ocelot->block[VCAP_IS1];
228 	struct ocelot_port *ocelot_port = ocelot->ports[port];
229 	struct ocelot_vcap_filter *filter;
230 	u32 val;
231 
232 	list_for_each_entry(filter, &block->rules, list) {
233 		if (filter->ingress_port_mask & BIT(port) &&
234 		    filter->action.vid_replace_ena) {
235 			dev_err(ocelot->dev,
236 				"Cannot change VLAN state with vlan modify rules active\n");
237 			return -EBUSY;
238 		}
239 	}
240 
241 	ocelot_port->vlan_aware = vlan_aware;
242 
243 	if (vlan_aware)
244 		val = ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
245 		      ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1);
246 	else
247 		val = 0;
248 	ocelot_rmw_gix(ocelot, val,
249 		       ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
250 		       ANA_PORT_VLAN_CFG_VLAN_POP_CNT_M,
251 		       ANA_PORT_VLAN_CFG, port);
252 
253 	ocelot_port_set_pvid(ocelot, port, ocelot_port->pvid_vlan);
254 	ocelot_port_set_native_vlan(ocelot, port, ocelot_port->native_vlan);
255 
256 	return 0;
257 }
258 EXPORT_SYMBOL(ocelot_port_vlan_filtering);
259 
260 int ocelot_vlan_prepare(struct ocelot *ocelot, int port, u16 vid, bool pvid,
261 			bool untagged)
262 {
263 	struct ocelot_port *ocelot_port = ocelot->ports[port];
264 
265 	/* Deny changing the native VLAN, but always permit deleting it */
266 	if (untagged && ocelot_port->native_vlan.vid != vid &&
267 	    ocelot_port->native_vlan.valid) {
268 		dev_err(ocelot->dev,
269 			"Port already has a native VLAN: %d\n",
270 			ocelot_port->native_vlan.vid);
271 		return -EBUSY;
272 	}
273 
274 	return 0;
275 }
276 EXPORT_SYMBOL(ocelot_vlan_prepare);
277 
278 int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid,
279 		    bool untagged)
280 {
281 	int ret;
282 
283 	/* Make the port a member of the VLAN */
284 	ocelot->vlan_mask[vid] |= BIT(port);
285 	ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
286 	if (ret)
287 		return ret;
288 
289 	/* Default ingress vlan classification */
290 	if (pvid) {
291 		struct ocelot_vlan pvid_vlan;
292 
293 		pvid_vlan.vid = vid;
294 		pvid_vlan.valid = true;
295 		ocelot_port_set_pvid(ocelot, port, pvid_vlan);
296 	}
297 
298 	/* Untagged egress vlan clasification */
299 	if (untagged) {
300 		struct ocelot_vlan native_vlan;
301 
302 		native_vlan.vid = vid;
303 		native_vlan.valid = true;
304 		ocelot_port_set_native_vlan(ocelot, port, native_vlan);
305 	}
306 
307 	return 0;
308 }
309 EXPORT_SYMBOL(ocelot_vlan_add);
310 
311 int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid)
312 {
313 	struct ocelot_port *ocelot_port = ocelot->ports[port];
314 	int ret;
315 
316 	/* Stop the port from being a member of the vlan */
317 	ocelot->vlan_mask[vid] &= ~BIT(port);
318 	ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
319 	if (ret)
320 		return ret;
321 
322 	/* Ingress */
323 	if (ocelot_port->pvid_vlan.vid == vid) {
324 		struct ocelot_vlan pvid_vlan = {0};
325 
326 		ocelot_port_set_pvid(ocelot, port, pvid_vlan);
327 	}
328 
329 	/* Egress */
330 	if (ocelot_port->native_vlan.vid == vid) {
331 		struct ocelot_vlan native_vlan = {0};
332 
333 		ocelot_port_set_native_vlan(ocelot, port, native_vlan);
334 	}
335 
336 	return 0;
337 }
338 EXPORT_SYMBOL(ocelot_vlan_del);
339 
340 static void ocelot_vlan_init(struct ocelot *ocelot)
341 {
342 	u16 port, vid;
343 
344 	/* Clear VLAN table, by default all ports are members of all VLANs */
345 	ocelot_write(ocelot, ANA_TABLES_VLANACCESS_CMD_INIT,
346 		     ANA_TABLES_VLANACCESS);
347 	ocelot_vlant_wait_for_completion(ocelot);
348 
349 	/* Configure the port VLAN memberships */
350 	for (vid = 1; vid < VLAN_N_VID; vid++) {
351 		ocelot->vlan_mask[vid] = 0;
352 		ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
353 	}
354 
355 	/* Because VLAN filtering is enabled, we need VID 0 to get untagged
356 	 * traffic.  It is added automatically if 8021q module is loaded, but
357 	 * we can't rely on it since module may be not loaded.
358 	 */
359 	ocelot->vlan_mask[0] = GENMASK(ocelot->num_phys_ports - 1, 0);
360 	ocelot_vlant_set_mask(ocelot, 0, ocelot->vlan_mask[0]);
361 
362 	/* Set vlan ingress filter mask to all ports but the CPU port by
363 	 * default.
364 	 */
365 	ocelot_write(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
366 		     ANA_VLANMASK);
367 
368 	for (port = 0; port < ocelot->num_phys_ports; port++) {
369 		ocelot_write_gix(ocelot, 0, REW_PORT_VLAN_CFG, port);
370 		ocelot_write_gix(ocelot, 0, REW_TAG_CFG, port);
371 	}
372 }
373 
374 static u32 ocelot_read_eq_avail(struct ocelot *ocelot, int port)
375 {
376 	return ocelot_read_rix(ocelot, QSYS_SW_STATUS, port);
377 }
378 
379 int ocelot_port_flush(struct ocelot *ocelot, int port)
380 {
381 	int err, val;
382 
383 	/* Disable dequeuing from the egress queues */
384 	ocelot_rmw_rix(ocelot, QSYS_PORT_MODE_DEQUEUE_DIS,
385 		       QSYS_PORT_MODE_DEQUEUE_DIS,
386 		       QSYS_PORT_MODE, port);
387 
388 	/* Disable flow control */
389 	ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0);
390 
391 	/* Disable priority flow control */
392 	ocelot_fields_write(ocelot, port,
393 			    QSYS_SWITCH_PORT_MODE_TX_PFC_ENA, 0);
394 
395 	/* Wait at least the time it takes to receive a frame of maximum length
396 	 * at the port.
397 	 * Worst-case delays for 10 kilobyte jumbo frames are:
398 	 * 8 ms on a 10M port
399 	 * 800 μs on a 100M port
400 	 * 80 μs on a 1G port
401 	 * 32 μs on a 2.5G port
402 	 */
403 	usleep_range(8000, 10000);
404 
405 	/* Disable half duplex backpressure. */
406 	ocelot_rmw_rix(ocelot, 0, SYS_FRONT_PORT_MODE_HDX_MODE,
407 		       SYS_FRONT_PORT_MODE, port);
408 
409 	/* Flush the queues associated with the port. */
410 	ocelot_rmw_gix(ocelot, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG_FLUSH_ENA,
411 		       REW_PORT_CFG, port);
412 
413 	/* Enable dequeuing from the egress queues. */
414 	ocelot_rmw_rix(ocelot, 0, QSYS_PORT_MODE_DEQUEUE_DIS, QSYS_PORT_MODE,
415 		       port);
416 
417 	/* Wait until flushing is complete. */
418 	err = read_poll_timeout(ocelot_read_eq_avail, val, !val,
419 				100, 2000000, false, ocelot, port);
420 
421 	/* Clear flushing again. */
422 	ocelot_rmw_gix(ocelot, 0, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG, port);
423 
424 	return err;
425 }
426 EXPORT_SYMBOL(ocelot_port_flush);
427 
428 void ocelot_adjust_link(struct ocelot *ocelot, int port,
429 			struct phy_device *phydev)
430 {
431 	struct ocelot_port *ocelot_port = ocelot->ports[port];
432 	int speed, mode = 0;
433 
434 	switch (phydev->speed) {
435 	case SPEED_10:
436 		speed = OCELOT_SPEED_10;
437 		break;
438 	case SPEED_100:
439 		speed = OCELOT_SPEED_100;
440 		break;
441 	case SPEED_1000:
442 		speed = OCELOT_SPEED_1000;
443 		mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
444 		break;
445 	case SPEED_2500:
446 		speed = OCELOT_SPEED_2500;
447 		mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
448 		break;
449 	default:
450 		dev_err(ocelot->dev, "Unsupported PHY speed on port %d: %d\n",
451 			port, phydev->speed);
452 		return;
453 	}
454 
455 	phy_print_status(phydev);
456 
457 	if (!phydev->link)
458 		return;
459 
460 	/* Only full duplex supported for now */
461 	ocelot_port_writel(ocelot_port, DEV_MAC_MODE_CFG_FDX_ENA |
462 			   mode, DEV_MAC_MODE_CFG);
463 
464 	/* Disable HDX fast control */
465 	ocelot_port_writel(ocelot_port, DEV_PORT_MISC_HDX_FAST_DIS,
466 			   DEV_PORT_MISC);
467 
468 	/* SGMII only for now */
469 	ocelot_port_writel(ocelot_port, PCS1G_MODE_CFG_SGMII_MODE_ENA,
470 			   PCS1G_MODE_CFG);
471 	ocelot_port_writel(ocelot_port, PCS1G_SD_CFG_SD_SEL, PCS1G_SD_CFG);
472 
473 	/* Enable PCS */
474 	ocelot_port_writel(ocelot_port, PCS1G_CFG_PCS_ENA, PCS1G_CFG);
475 
476 	/* No aneg on SGMII */
477 	ocelot_port_writel(ocelot_port, 0, PCS1G_ANEG_CFG);
478 
479 	/* No loopback */
480 	ocelot_port_writel(ocelot_port, 0, PCS1G_LB_CFG);
481 
482 	/* Enable MAC module */
483 	ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA |
484 			   DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG);
485 
486 	/* Take MAC, Port, Phy (intern) and PCS (SGMII/Serdes) clock out of
487 	 * reset */
488 	ocelot_port_writel(ocelot_port, DEV_CLOCK_CFG_LINK_SPEED(speed),
489 			   DEV_CLOCK_CFG);
490 
491 	/* No PFC */
492 	ocelot_write_gix(ocelot, ANA_PFC_PFC_CFG_FC_LINK_SPEED(speed),
493 			 ANA_PFC_PFC_CFG, port);
494 
495 	/* Core: Enable port for frame transfer */
496 	ocelot_fields_write(ocelot, port,
497 			    QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
498 
499 	/* Flow control */
500 	ocelot_write_rix(ocelot, SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) |
501 			 SYS_MAC_FC_CFG_RX_FC_ENA | SYS_MAC_FC_CFG_TX_FC_ENA |
502 			 SYS_MAC_FC_CFG_ZERO_PAUSE_ENA |
503 			 SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) |
504 			 SYS_MAC_FC_CFG_FC_LINK_SPEED(speed),
505 			 SYS_MAC_FC_CFG, port);
506 	ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port);
507 }
508 EXPORT_SYMBOL(ocelot_adjust_link);
509 
510 void ocelot_port_enable(struct ocelot *ocelot, int port,
511 			struct phy_device *phy)
512 {
513 	/* Enable receiving frames on the port, and activate auto-learning of
514 	 * MAC addresses.
515 	 */
516 	ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO |
517 			 ANA_PORT_PORT_CFG_RECV_ENA |
518 			 ANA_PORT_PORT_CFG_PORTID_VAL(port),
519 			 ANA_PORT_PORT_CFG, port);
520 }
521 EXPORT_SYMBOL(ocelot_port_enable);
522 
523 void ocelot_port_disable(struct ocelot *ocelot, int port)
524 {
525 	struct ocelot_port *ocelot_port = ocelot->ports[port];
526 
527 	ocelot_port_writel(ocelot_port, 0, DEV_MAC_ENA_CFG);
528 	ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0);
529 }
530 EXPORT_SYMBOL(ocelot_port_disable);
531 
532 void ocelot_port_add_txtstamp_skb(struct ocelot *ocelot, int port,
533 				  struct sk_buff *clone)
534 {
535 	struct ocelot_port *ocelot_port = ocelot->ports[port];
536 
537 	spin_lock(&ocelot_port->ts_id_lock);
538 
539 	skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS;
540 	/* Store timestamp ID in cb[0] of sk_buff */
541 	clone->cb[0] = ocelot_port->ts_id;
542 	ocelot_port->ts_id = (ocelot_port->ts_id + 1) % 4;
543 	skb_queue_tail(&ocelot_port->tx_skbs, clone);
544 
545 	spin_unlock(&ocelot_port->ts_id_lock);
546 }
547 EXPORT_SYMBOL(ocelot_port_add_txtstamp_skb);
548 
549 static void ocelot_get_hwtimestamp(struct ocelot *ocelot,
550 				   struct timespec64 *ts)
551 {
552 	unsigned long flags;
553 	u32 val;
554 
555 	spin_lock_irqsave(&ocelot->ptp_clock_lock, flags);
556 
557 	/* Read current PTP time to get seconds */
558 	val = ocelot_read_rix(ocelot, PTP_PIN_CFG, TOD_ACC_PIN);
559 
560 	val &= ~(PTP_PIN_CFG_SYNC | PTP_PIN_CFG_ACTION_MASK | PTP_PIN_CFG_DOM);
561 	val |= PTP_PIN_CFG_ACTION(PTP_PIN_ACTION_SAVE);
562 	ocelot_write_rix(ocelot, val, PTP_PIN_CFG, TOD_ACC_PIN);
563 	ts->tv_sec = ocelot_read_rix(ocelot, PTP_PIN_TOD_SEC_LSB, TOD_ACC_PIN);
564 
565 	/* Read packet HW timestamp from FIFO */
566 	val = ocelot_read(ocelot, SYS_PTP_TXSTAMP);
567 	ts->tv_nsec = SYS_PTP_TXSTAMP_PTP_TXSTAMP(val);
568 
569 	/* Sec has incremented since the ts was registered */
570 	if ((ts->tv_sec & 0x1) != !!(val & SYS_PTP_TXSTAMP_PTP_TXSTAMP_SEC))
571 		ts->tv_sec--;
572 
573 	spin_unlock_irqrestore(&ocelot->ptp_clock_lock, flags);
574 }
575 
576 void ocelot_get_txtstamp(struct ocelot *ocelot)
577 {
578 	int budget = OCELOT_PTP_QUEUE_SZ;
579 
580 	while (budget--) {
581 		struct sk_buff *skb, *skb_tmp, *skb_match = NULL;
582 		struct skb_shared_hwtstamps shhwtstamps;
583 		struct ocelot_port *port;
584 		struct timespec64 ts;
585 		unsigned long flags;
586 		u32 val, id, txport;
587 
588 		val = ocelot_read(ocelot, SYS_PTP_STATUS);
589 
590 		/* Check if a timestamp can be retrieved */
591 		if (!(val & SYS_PTP_STATUS_PTP_MESS_VLD))
592 			break;
593 
594 		WARN_ON(val & SYS_PTP_STATUS_PTP_OVFL);
595 
596 		/* Retrieve the ts ID and Tx port */
597 		id = SYS_PTP_STATUS_PTP_MESS_ID_X(val);
598 		txport = SYS_PTP_STATUS_PTP_MESS_TXPORT_X(val);
599 
600 		/* Retrieve its associated skb */
601 		port = ocelot->ports[txport];
602 
603 		spin_lock_irqsave(&port->tx_skbs.lock, flags);
604 
605 		skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) {
606 			if (skb->cb[0] != id)
607 				continue;
608 			__skb_unlink(skb, &port->tx_skbs);
609 			skb_match = skb;
610 			break;
611 		}
612 
613 		spin_unlock_irqrestore(&port->tx_skbs.lock, flags);
614 
615 		/* Get the h/w timestamp */
616 		ocelot_get_hwtimestamp(ocelot, &ts);
617 
618 		if (unlikely(!skb_match))
619 			continue;
620 
621 		/* Set the timestamp into the skb */
622 		memset(&shhwtstamps, 0, sizeof(shhwtstamps));
623 		shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
624 		skb_complete_tx_timestamp(skb_match, &shhwtstamps);
625 
626 		/* Next ts */
627 		ocelot_write(ocelot, SYS_PTP_NXT_PTP_NXT, SYS_PTP_NXT);
628 	}
629 }
630 EXPORT_SYMBOL(ocelot_get_txtstamp);
631 
632 static int ocelot_rx_frame_word(struct ocelot *ocelot, u8 grp, bool ifh,
633 				u32 *rval)
634 {
635 	u32 bytes_valid, val;
636 
637 	val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
638 	if (val == XTR_NOT_READY) {
639 		if (ifh)
640 			return -EIO;
641 
642 		do {
643 			val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
644 		} while (val == XTR_NOT_READY);
645 	}
646 
647 	switch (val) {
648 	case XTR_ABORT:
649 		return -EIO;
650 	case XTR_EOF_0:
651 	case XTR_EOF_1:
652 	case XTR_EOF_2:
653 	case XTR_EOF_3:
654 	case XTR_PRUNED:
655 		bytes_valid = XTR_VALID_BYTES(val);
656 		val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
657 		if (val == XTR_ESCAPE)
658 			*rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
659 		else
660 			*rval = val;
661 
662 		return bytes_valid;
663 	case XTR_ESCAPE:
664 		*rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
665 
666 		return 4;
667 	default:
668 		*rval = val;
669 
670 		return 4;
671 	}
672 }
673 
674 static int ocelot_xtr_poll_xfh(struct ocelot *ocelot, int grp, u32 *xfh)
675 {
676 	int i, err = 0;
677 
678 	for (i = 0; i < OCELOT_TAG_LEN / 4; i++) {
679 		err = ocelot_rx_frame_word(ocelot, grp, true, &xfh[i]);
680 		if (err != 4)
681 			return (err < 0) ? err : -EIO;
682 	}
683 
684 	return 0;
685 }
686 
687 int ocelot_xtr_poll_frame(struct ocelot *ocelot, int grp, struct sk_buff **nskb)
688 {
689 	struct skb_shared_hwtstamps *shhwtstamps;
690 	u64 tod_in_ns, full_ts_in_ns;
691 	u64 timestamp, src_port, len;
692 	u32 xfh[OCELOT_TAG_LEN / 4];
693 	struct net_device *dev;
694 	struct timespec64 ts;
695 	struct sk_buff *skb;
696 	int sz, buf_len;
697 	u32 val, *buf;
698 	int err;
699 
700 	err = ocelot_xtr_poll_xfh(ocelot, grp, xfh);
701 	if (err)
702 		return err;
703 
704 	ocelot_xfh_get_src_port(xfh, &src_port);
705 	ocelot_xfh_get_len(xfh, &len);
706 	ocelot_xfh_get_rew_val(xfh, &timestamp);
707 
708 	if (WARN_ON(src_port >= ocelot->num_phys_ports))
709 		return -EINVAL;
710 
711 	dev = ocelot->ops->port_to_netdev(ocelot, src_port);
712 	if (!dev)
713 		return -EINVAL;
714 
715 	skb = netdev_alloc_skb(dev, len);
716 	if (unlikely(!skb)) {
717 		netdev_err(dev, "Unable to allocate sk_buff\n");
718 		return -ENOMEM;
719 	}
720 
721 	buf_len = len - ETH_FCS_LEN;
722 	buf = (u32 *)skb_put(skb, buf_len);
723 
724 	len = 0;
725 	do {
726 		sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
727 		if (sz < 0) {
728 			err = sz;
729 			goto out_free_skb;
730 		}
731 		*buf++ = val;
732 		len += sz;
733 	} while (len < buf_len);
734 
735 	/* Read the FCS */
736 	sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
737 	if (sz < 0) {
738 		err = sz;
739 		goto out_free_skb;
740 	}
741 
742 	/* Update the statistics if part of the FCS was read before */
743 	len -= ETH_FCS_LEN - sz;
744 
745 	if (unlikely(dev->features & NETIF_F_RXFCS)) {
746 		buf = (u32 *)skb_put(skb, ETH_FCS_LEN);
747 		*buf = val;
748 	}
749 
750 	if (ocelot->ptp) {
751 		ocelot_ptp_gettime64(&ocelot->ptp_info, &ts);
752 
753 		tod_in_ns = ktime_set(ts.tv_sec, ts.tv_nsec);
754 		if ((tod_in_ns & 0xffffffff) < timestamp)
755 			full_ts_in_ns = (((tod_in_ns >> 32) - 1) << 32) |
756 					timestamp;
757 		else
758 			full_ts_in_ns = (tod_in_ns & GENMASK_ULL(63, 32)) |
759 					timestamp;
760 
761 		shhwtstamps = skb_hwtstamps(skb);
762 		memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps));
763 		shhwtstamps->hwtstamp = full_ts_in_ns;
764 	}
765 
766 	/* Everything we see on an interface that is in the HW bridge
767 	 * has already been forwarded.
768 	 */
769 	if (ocelot->bridge_mask & BIT(src_port))
770 		skb->offload_fwd_mark = 1;
771 
772 	skb->protocol = eth_type_trans(skb, dev);
773 	*nskb = skb;
774 
775 	return 0;
776 
777 out_free_skb:
778 	kfree_skb(skb);
779 	return err;
780 }
781 EXPORT_SYMBOL(ocelot_xtr_poll_frame);
782 
783 bool ocelot_can_inject(struct ocelot *ocelot, int grp)
784 {
785 	u32 val = ocelot_read(ocelot, QS_INJ_STATUS);
786 
787 	if (!(val & QS_INJ_STATUS_FIFO_RDY(BIT(grp))))
788 		return false;
789 	if (val & QS_INJ_STATUS_WMARK_REACHED(BIT(grp)))
790 		return false;
791 
792 	return true;
793 }
794 EXPORT_SYMBOL(ocelot_can_inject);
795 
796 void ocelot_port_inject_frame(struct ocelot *ocelot, int port, int grp,
797 			      u32 rew_op, struct sk_buff *skb)
798 {
799 	u32 ifh[OCELOT_TAG_LEN / 4] = {0};
800 	unsigned int i, count, last;
801 
802 	ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
803 			 QS_INJ_CTRL_SOF, QS_INJ_CTRL, grp);
804 
805 	ocelot_ifh_set_bypass(ifh, 1);
806 	ocelot_ifh_set_dest(ifh, BIT_ULL(port));
807 	ocelot_ifh_set_tag_type(ifh, IFH_TAG_TYPE_C);
808 	ocelot_ifh_set_vid(ifh, skb_vlan_tag_get(skb));
809 	ocelot_ifh_set_rew_op(ifh, rew_op);
810 
811 	for (i = 0; i < OCELOT_TAG_LEN / 4; i++)
812 		ocelot_write_rix(ocelot, ifh[i], QS_INJ_WR, grp);
813 
814 	count = DIV_ROUND_UP(skb->len, 4);
815 	last = skb->len % 4;
816 	for (i = 0; i < count; i++)
817 		ocelot_write_rix(ocelot, ((u32 *)skb->data)[i], QS_INJ_WR, grp);
818 
819 	/* Add padding */
820 	while (i < (OCELOT_BUFFER_CELL_SZ / 4)) {
821 		ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
822 		i++;
823 	}
824 
825 	/* Indicate EOF and valid bytes in last word */
826 	ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
827 			 QS_INJ_CTRL_VLD_BYTES(skb->len < OCELOT_BUFFER_CELL_SZ ? 0 : last) |
828 			 QS_INJ_CTRL_EOF,
829 			 QS_INJ_CTRL, grp);
830 
831 	/* Add dummy CRC */
832 	ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
833 	skb_tx_timestamp(skb);
834 
835 	skb->dev->stats.tx_packets++;
836 	skb->dev->stats.tx_bytes += skb->len;
837 }
838 EXPORT_SYMBOL(ocelot_port_inject_frame);
839 
840 void ocelot_drain_cpu_queue(struct ocelot *ocelot, int grp)
841 {
842 	while (ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp))
843 		ocelot_read_rix(ocelot, QS_XTR_RD, grp);
844 }
845 EXPORT_SYMBOL(ocelot_drain_cpu_queue);
846 
847 int ocelot_fdb_add(struct ocelot *ocelot, int port,
848 		   const unsigned char *addr, u16 vid)
849 {
850 	int pgid = port;
851 
852 	if (port == ocelot->npi)
853 		pgid = PGID_CPU;
854 
855 	return ocelot_mact_learn(ocelot, pgid, addr, vid, ENTRYTYPE_LOCKED);
856 }
857 EXPORT_SYMBOL(ocelot_fdb_add);
858 
859 int ocelot_fdb_del(struct ocelot *ocelot, int port,
860 		   const unsigned char *addr, u16 vid)
861 {
862 	return ocelot_mact_forget(ocelot, addr, vid);
863 }
864 EXPORT_SYMBOL(ocelot_fdb_del);
865 
866 int ocelot_port_fdb_do_dump(const unsigned char *addr, u16 vid,
867 			    bool is_static, void *data)
868 {
869 	struct ocelot_dump_ctx *dump = data;
870 	u32 portid = NETLINK_CB(dump->cb->skb).portid;
871 	u32 seq = dump->cb->nlh->nlmsg_seq;
872 	struct nlmsghdr *nlh;
873 	struct ndmsg *ndm;
874 
875 	if (dump->idx < dump->cb->args[2])
876 		goto skip;
877 
878 	nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
879 			sizeof(*ndm), NLM_F_MULTI);
880 	if (!nlh)
881 		return -EMSGSIZE;
882 
883 	ndm = nlmsg_data(nlh);
884 	ndm->ndm_family  = AF_BRIDGE;
885 	ndm->ndm_pad1    = 0;
886 	ndm->ndm_pad2    = 0;
887 	ndm->ndm_flags   = NTF_SELF;
888 	ndm->ndm_type    = 0;
889 	ndm->ndm_ifindex = dump->dev->ifindex;
890 	ndm->ndm_state   = is_static ? NUD_NOARP : NUD_REACHABLE;
891 
892 	if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
893 		goto nla_put_failure;
894 
895 	if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
896 		goto nla_put_failure;
897 
898 	nlmsg_end(dump->skb, nlh);
899 
900 skip:
901 	dump->idx++;
902 	return 0;
903 
904 nla_put_failure:
905 	nlmsg_cancel(dump->skb, nlh);
906 	return -EMSGSIZE;
907 }
908 EXPORT_SYMBOL(ocelot_port_fdb_do_dump);
909 
910 static int ocelot_mact_read(struct ocelot *ocelot, int port, int row, int col,
911 			    struct ocelot_mact_entry *entry)
912 {
913 	u32 val, dst, macl, mach;
914 	char mac[ETH_ALEN];
915 
916 	/* Set row and column to read from */
917 	ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_M_INDEX, row);
918 	ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_BUCKET, col);
919 
920 	/* Issue a read command */
921 	ocelot_write(ocelot,
922 		     ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
923 		     ANA_TABLES_MACACCESS);
924 
925 	if (ocelot_mact_wait_for_completion(ocelot))
926 		return -ETIMEDOUT;
927 
928 	/* Read the entry flags */
929 	val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
930 	if (!(val & ANA_TABLES_MACACCESS_VALID))
931 		return -EINVAL;
932 
933 	/* If the entry read has another port configured as its destination,
934 	 * do not report it.
935 	 */
936 	dst = (val & ANA_TABLES_MACACCESS_DEST_IDX_M) >> 3;
937 	if (dst != port)
938 		return -EINVAL;
939 
940 	/* Get the entry's MAC address and VLAN id */
941 	macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA);
942 	mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA);
943 
944 	mac[0] = (mach >> 8)  & 0xff;
945 	mac[1] = (mach >> 0)  & 0xff;
946 	mac[2] = (macl >> 24) & 0xff;
947 	mac[3] = (macl >> 16) & 0xff;
948 	mac[4] = (macl >> 8)  & 0xff;
949 	mac[5] = (macl >> 0)  & 0xff;
950 
951 	entry->vid = (mach >> 16) & 0xfff;
952 	ether_addr_copy(entry->mac, mac);
953 
954 	return 0;
955 }
956 
957 int ocelot_fdb_dump(struct ocelot *ocelot, int port,
958 		    dsa_fdb_dump_cb_t *cb, void *data)
959 {
960 	int i, j;
961 
962 	/* Loop through all the mac tables entries. */
963 	for (i = 0; i < ocelot->num_mact_rows; i++) {
964 		for (j = 0; j < 4; j++) {
965 			struct ocelot_mact_entry entry;
966 			bool is_static;
967 			int ret;
968 
969 			ret = ocelot_mact_read(ocelot, port, i, j, &entry);
970 			/* If the entry is invalid (wrong port, invalid...),
971 			 * skip it.
972 			 */
973 			if (ret == -EINVAL)
974 				continue;
975 			else if (ret)
976 				return ret;
977 
978 			is_static = (entry.type == ENTRYTYPE_LOCKED);
979 
980 			ret = cb(entry.mac, entry.vid, is_static, data);
981 			if (ret)
982 				return ret;
983 		}
984 	}
985 
986 	return 0;
987 }
988 EXPORT_SYMBOL(ocelot_fdb_dump);
989 
990 int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr)
991 {
992 	return copy_to_user(ifr->ifr_data, &ocelot->hwtstamp_config,
993 			    sizeof(ocelot->hwtstamp_config)) ? -EFAULT : 0;
994 }
995 EXPORT_SYMBOL(ocelot_hwstamp_get);
996 
997 int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr)
998 {
999 	struct ocelot_port *ocelot_port = ocelot->ports[port];
1000 	struct hwtstamp_config cfg;
1001 
1002 	if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1003 		return -EFAULT;
1004 
1005 	/* reserved for future extensions */
1006 	if (cfg.flags)
1007 		return -EINVAL;
1008 
1009 	/* Tx type sanity check */
1010 	switch (cfg.tx_type) {
1011 	case HWTSTAMP_TX_ON:
1012 		ocelot_port->ptp_cmd = IFH_REW_OP_TWO_STEP_PTP;
1013 		break;
1014 	case HWTSTAMP_TX_ONESTEP_SYNC:
1015 		/* IFH_REW_OP_ONE_STEP_PTP updates the correctional field, we
1016 		 * need to update the origin time.
1017 		 */
1018 		ocelot_port->ptp_cmd = IFH_REW_OP_ORIGIN_PTP;
1019 		break;
1020 	case HWTSTAMP_TX_OFF:
1021 		ocelot_port->ptp_cmd = 0;
1022 		break;
1023 	default:
1024 		return -ERANGE;
1025 	}
1026 
1027 	mutex_lock(&ocelot->ptp_lock);
1028 
1029 	switch (cfg.rx_filter) {
1030 	case HWTSTAMP_FILTER_NONE:
1031 		break;
1032 	case HWTSTAMP_FILTER_ALL:
1033 	case HWTSTAMP_FILTER_SOME:
1034 	case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1035 	case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1036 	case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1037 	case HWTSTAMP_FILTER_NTP_ALL:
1038 	case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1039 	case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1040 	case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1041 	case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1042 	case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1043 	case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1044 	case HWTSTAMP_FILTER_PTP_V2_EVENT:
1045 	case HWTSTAMP_FILTER_PTP_V2_SYNC:
1046 	case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1047 		cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1048 		break;
1049 	default:
1050 		mutex_unlock(&ocelot->ptp_lock);
1051 		return -ERANGE;
1052 	}
1053 
1054 	/* Commit back the result & save it */
1055 	memcpy(&ocelot->hwtstamp_config, &cfg, sizeof(cfg));
1056 	mutex_unlock(&ocelot->ptp_lock);
1057 
1058 	return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1059 }
1060 EXPORT_SYMBOL(ocelot_hwstamp_set);
1061 
1062 void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data)
1063 {
1064 	int i;
1065 
1066 	if (sset != ETH_SS_STATS)
1067 		return;
1068 
1069 	for (i = 0; i < ocelot->num_stats; i++)
1070 		memcpy(data + i * ETH_GSTRING_LEN, ocelot->stats_layout[i].name,
1071 		       ETH_GSTRING_LEN);
1072 }
1073 EXPORT_SYMBOL(ocelot_get_strings);
1074 
1075 static void ocelot_update_stats(struct ocelot *ocelot)
1076 {
1077 	int i, j;
1078 
1079 	mutex_lock(&ocelot->stats_lock);
1080 
1081 	for (i = 0; i < ocelot->num_phys_ports; i++) {
1082 		/* Configure the port to read the stats from */
1083 		ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG);
1084 
1085 		for (j = 0; j < ocelot->num_stats; j++) {
1086 			u32 val;
1087 			unsigned int idx = i * ocelot->num_stats + j;
1088 
1089 			val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS,
1090 					      ocelot->stats_layout[j].offset);
1091 
1092 			if (val < (ocelot->stats[idx] & U32_MAX))
1093 				ocelot->stats[idx] += (u64)1 << 32;
1094 
1095 			ocelot->stats[idx] = (ocelot->stats[idx] &
1096 					      ~(u64)U32_MAX) + val;
1097 		}
1098 	}
1099 
1100 	mutex_unlock(&ocelot->stats_lock);
1101 }
1102 
1103 static void ocelot_check_stats_work(struct work_struct *work)
1104 {
1105 	struct delayed_work *del_work = to_delayed_work(work);
1106 	struct ocelot *ocelot = container_of(del_work, struct ocelot,
1107 					     stats_work);
1108 
1109 	ocelot_update_stats(ocelot);
1110 
1111 	queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
1112 			   OCELOT_STATS_CHECK_DELAY);
1113 }
1114 
1115 void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data)
1116 {
1117 	int i;
1118 
1119 	/* check and update now */
1120 	ocelot_update_stats(ocelot);
1121 
1122 	/* Copy all counters */
1123 	for (i = 0; i < ocelot->num_stats; i++)
1124 		*data++ = ocelot->stats[port * ocelot->num_stats + i];
1125 }
1126 EXPORT_SYMBOL(ocelot_get_ethtool_stats);
1127 
1128 int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset)
1129 {
1130 	if (sset != ETH_SS_STATS)
1131 		return -EOPNOTSUPP;
1132 
1133 	return ocelot->num_stats;
1134 }
1135 EXPORT_SYMBOL(ocelot_get_sset_count);
1136 
1137 int ocelot_get_ts_info(struct ocelot *ocelot, int port,
1138 		       struct ethtool_ts_info *info)
1139 {
1140 	info->phc_index = ocelot->ptp_clock ?
1141 			  ptp_clock_index(ocelot->ptp_clock) : -1;
1142 	if (info->phc_index == -1) {
1143 		info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
1144 					 SOF_TIMESTAMPING_RX_SOFTWARE |
1145 					 SOF_TIMESTAMPING_SOFTWARE;
1146 		return 0;
1147 	}
1148 	info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
1149 				 SOF_TIMESTAMPING_RX_SOFTWARE |
1150 				 SOF_TIMESTAMPING_SOFTWARE |
1151 				 SOF_TIMESTAMPING_TX_HARDWARE |
1152 				 SOF_TIMESTAMPING_RX_HARDWARE |
1153 				 SOF_TIMESTAMPING_RAW_HARDWARE;
1154 	info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) |
1155 			 BIT(HWTSTAMP_TX_ONESTEP_SYNC);
1156 	info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | BIT(HWTSTAMP_FILTER_ALL);
1157 
1158 	return 0;
1159 }
1160 EXPORT_SYMBOL(ocelot_get_ts_info);
1161 
1162 static u32 ocelot_get_bond_mask(struct ocelot *ocelot, struct net_device *bond,
1163 				bool only_active_ports)
1164 {
1165 	u32 mask = 0;
1166 	int port;
1167 
1168 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1169 		struct ocelot_port *ocelot_port = ocelot->ports[port];
1170 
1171 		if (!ocelot_port)
1172 			continue;
1173 
1174 		if (ocelot_port->bond == bond) {
1175 			if (only_active_ports && !ocelot_port->lag_tx_active)
1176 				continue;
1177 
1178 			mask |= BIT(port);
1179 		}
1180 	}
1181 
1182 	return mask;
1183 }
1184 
1185 static u32 ocelot_get_dsa_8021q_cpu_mask(struct ocelot *ocelot)
1186 {
1187 	u32 mask = 0;
1188 	int port;
1189 
1190 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1191 		struct ocelot_port *ocelot_port = ocelot->ports[port];
1192 
1193 		if (!ocelot_port)
1194 			continue;
1195 
1196 		if (ocelot_port->is_dsa_8021q_cpu)
1197 			mask |= BIT(port);
1198 	}
1199 
1200 	return mask;
1201 }
1202 
1203 void ocelot_apply_bridge_fwd_mask(struct ocelot *ocelot)
1204 {
1205 	unsigned long cpu_fwd_mask;
1206 	int port;
1207 
1208 	/* If a DSA tag_8021q CPU exists, it needs to be included in the
1209 	 * regular forwarding path of the front ports regardless of whether
1210 	 * those are bridged or standalone.
1211 	 * If DSA tag_8021q is not used, this returns 0, which is fine because
1212 	 * the hardware-based CPU port module can be a destination for packets
1213 	 * even if it isn't part of PGID_SRC.
1214 	 */
1215 	cpu_fwd_mask = ocelot_get_dsa_8021q_cpu_mask(ocelot);
1216 
1217 	/* Apply FWD mask. The loop is needed to add/remove the current port as
1218 	 * a source for the other ports.
1219 	 */
1220 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1221 		struct ocelot_port *ocelot_port = ocelot->ports[port];
1222 		unsigned long mask;
1223 
1224 		if (!ocelot_port) {
1225 			/* Unused ports can't send anywhere */
1226 			mask = 0;
1227 		} else if (ocelot_port->is_dsa_8021q_cpu) {
1228 			/* The DSA tag_8021q CPU ports need to be able to
1229 			 * forward packets to all other ports except for
1230 			 * themselves
1231 			 */
1232 			mask = GENMASK(ocelot->num_phys_ports - 1, 0);
1233 			mask &= ~cpu_fwd_mask;
1234 		} else if (ocelot->bridge_fwd_mask & BIT(port)) {
1235 			struct net_device *bond = ocelot_port->bond;
1236 
1237 			mask = ocelot->bridge_fwd_mask & ~BIT(port);
1238 			if (bond) {
1239 				mask &= ~ocelot_get_bond_mask(ocelot, bond,
1240 							      false);
1241 			}
1242 		} else {
1243 			/* Standalone ports forward only to DSA tag_8021q CPU
1244 			 * ports (if those exist), or to the hardware CPU port
1245 			 * module otherwise.
1246 			 */
1247 			mask = cpu_fwd_mask;
1248 		}
1249 
1250 		ocelot_write_rix(ocelot, mask, ANA_PGID_PGID, PGID_SRC + port);
1251 	}
1252 }
1253 EXPORT_SYMBOL(ocelot_apply_bridge_fwd_mask);
1254 
1255 void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state)
1256 {
1257 	struct ocelot_port *ocelot_port = ocelot->ports[port];
1258 	u32 port_cfg;
1259 
1260 	if (!(BIT(port) & ocelot->bridge_mask))
1261 		return;
1262 
1263 	port_cfg = ocelot_read_gix(ocelot, ANA_PORT_PORT_CFG, port);
1264 
1265 	switch (state) {
1266 	case BR_STATE_FORWARDING:
1267 		ocelot->bridge_fwd_mask |= BIT(port);
1268 		fallthrough;
1269 	case BR_STATE_LEARNING:
1270 		if (ocelot_port->learn_ena)
1271 			port_cfg |= ANA_PORT_PORT_CFG_LEARN_ENA;
1272 		break;
1273 
1274 	default:
1275 		port_cfg &= ~ANA_PORT_PORT_CFG_LEARN_ENA;
1276 		ocelot->bridge_fwd_mask &= ~BIT(port);
1277 		break;
1278 	}
1279 
1280 	ocelot_write_gix(ocelot, port_cfg, ANA_PORT_PORT_CFG, port);
1281 
1282 	ocelot_apply_bridge_fwd_mask(ocelot);
1283 }
1284 EXPORT_SYMBOL(ocelot_bridge_stp_state_set);
1285 
1286 void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs)
1287 {
1288 	unsigned int age_period = ANA_AUTOAGE_AGE_PERIOD(msecs / 2000);
1289 
1290 	/* Setting AGE_PERIOD to zero effectively disables automatic aging,
1291 	 * which is clearly not what our intention is. So avoid that.
1292 	 */
1293 	if (!age_period)
1294 		age_period = 1;
1295 
1296 	ocelot_rmw(ocelot, age_period, ANA_AUTOAGE_AGE_PERIOD_M, ANA_AUTOAGE);
1297 }
1298 EXPORT_SYMBOL(ocelot_set_ageing_time);
1299 
1300 static struct ocelot_multicast *ocelot_multicast_get(struct ocelot *ocelot,
1301 						     const unsigned char *addr,
1302 						     u16 vid)
1303 {
1304 	struct ocelot_multicast *mc;
1305 
1306 	list_for_each_entry(mc, &ocelot->multicast, list) {
1307 		if (ether_addr_equal(mc->addr, addr) && mc->vid == vid)
1308 			return mc;
1309 	}
1310 
1311 	return NULL;
1312 }
1313 
1314 static enum macaccess_entry_type ocelot_classify_mdb(const unsigned char *addr)
1315 {
1316 	if (addr[0] == 0x01 && addr[1] == 0x00 && addr[2] == 0x5e)
1317 		return ENTRYTYPE_MACv4;
1318 	if (addr[0] == 0x33 && addr[1] == 0x33)
1319 		return ENTRYTYPE_MACv6;
1320 	return ENTRYTYPE_LOCKED;
1321 }
1322 
1323 static struct ocelot_pgid *ocelot_pgid_alloc(struct ocelot *ocelot, int index,
1324 					     unsigned long ports)
1325 {
1326 	struct ocelot_pgid *pgid;
1327 
1328 	pgid = kzalloc(sizeof(*pgid), GFP_KERNEL);
1329 	if (!pgid)
1330 		return ERR_PTR(-ENOMEM);
1331 
1332 	pgid->ports = ports;
1333 	pgid->index = index;
1334 	refcount_set(&pgid->refcount, 1);
1335 	list_add_tail(&pgid->list, &ocelot->pgids);
1336 
1337 	return pgid;
1338 }
1339 
1340 static void ocelot_pgid_free(struct ocelot *ocelot, struct ocelot_pgid *pgid)
1341 {
1342 	if (!refcount_dec_and_test(&pgid->refcount))
1343 		return;
1344 
1345 	list_del(&pgid->list);
1346 	kfree(pgid);
1347 }
1348 
1349 static struct ocelot_pgid *ocelot_mdb_get_pgid(struct ocelot *ocelot,
1350 					       const struct ocelot_multicast *mc)
1351 {
1352 	struct ocelot_pgid *pgid;
1353 	int index;
1354 
1355 	/* According to VSC7514 datasheet 3.9.1.5 IPv4 Multicast Entries and
1356 	 * 3.9.1.6 IPv6 Multicast Entries, "Instead of a lookup in the
1357 	 * destination mask table (PGID), the destination set is programmed as
1358 	 * part of the entry MAC address.", and the DEST_IDX is set to 0.
1359 	 */
1360 	if (mc->entry_type == ENTRYTYPE_MACv4 ||
1361 	    mc->entry_type == ENTRYTYPE_MACv6)
1362 		return ocelot_pgid_alloc(ocelot, 0, mc->ports);
1363 
1364 	list_for_each_entry(pgid, &ocelot->pgids, list) {
1365 		/* When searching for a nonreserved multicast PGID, ignore the
1366 		 * dummy PGID of zero that we have for MACv4/MACv6 entries
1367 		 */
1368 		if (pgid->index && pgid->ports == mc->ports) {
1369 			refcount_inc(&pgid->refcount);
1370 			return pgid;
1371 		}
1372 	}
1373 
1374 	/* Search for a free index in the nonreserved multicast PGID area */
1375 	for_each_nonreserved_multicast_dest_pgid(ocelot, index) {
1376 		bool used = false;
1377 
1378 		list_for_each_entry(pgid, &ocelot->pgids, list) {
1379 			if (pgid->index == index) {
1380 				used = true;
1381 				break;
1382 			}
1383 		}
1384 
1385 		if (!used)
1386 			return ocelot_pgid_alloc(ocelot, index, mc->ports);
1387 	}
1388 
1389 	return ERR_PTR(-ENOSPC);
1390 }
1391 
1392 static void ocelot_encode_ports_to_mdb(unsigned char *addr,
1393 				       struct ocelot_multicast *mc)
1394 {
1395 	ether_addr_copy(addr, mc->addr);
1396 
1397 	if (mc->entry_type == ENTRYTYPE_MACv4) {
1398 		addr[0] = 0;
1399 		addr[1] = mc->ports >> 8;
1400 		addr[2] = mc->ports & 0xff;
1401 	} else if (mc->entry_type == ENTRYTYPE_MACv6) {
1402 		addr[0] = mc->ports >> 8;
1403 		addr[1] = mc->ports & 0xff;
1404 	}
1405 }
1406 
1407 int ocelot_port_mdb_add(struct ocelot *ocelot, int port,
1408 			const struct switchdev_obj_port_mdb *mdb)
1409 {
1410 	unsigned char addr[ETH_ALEN];
1411 	struct ocelot_multicast *mc;
1412 	struct ocelot_pgid *pgid;
1413 	u16 vid = mdb->vid;
1414 
1415 	if (port == ocelot->npi)
1416 		port = ocelot->num_phys_ports;
1417 
1418 	mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1419 	if (!mc) {
1420 		/* New entry */
1421 		mc = devm_kzalloc(ocelot->dev, sizeof(*mc), GFP_KERNEL);
1422 		if (!mc)
1423 			return -ENOMEM;
1424 
1425 		mc->entry_type = ocelot_classify_mdb(mdb->addr);
1426 		ether_addr_copy(mc->addr, mdb->addr);
1427 		mc->vid = vid;
1428 
1429 		list_add_tail(&mc->list, &ocelot->multicast);
1430 	} else {
1431 		/* Existing entry. Clean up the current port mask from
1432 		 * hardware now, because we'll be modifying it.
1433 		 */
1434 		ocelot_pgid_free(ocelot, mc->pgid);
1435 		ocelot_encode_ports_to_mdb(addr, mc);
1436 		ocelot_mact_forget(ocelot, addr, vid);
1437 	}
1438 
1439 	mc->ports |= BIT(port);
1440 
1441 	pgid = ocelot_mdb_get_pgid(ocelot, mc);
1442 	if (IS_ERR(pgid)) {
1443 		dev_err(ocelot->dev,
1444 			"Cannot allocate PGID for mdb %pM vid %d\n",
1445 			mc->addr, mc->vid);
1446 		devm_kfree(ocelot->dev, mc);
1447 		return PTR_ERR(pgid);
1448 	}
1449 	mc->pgid = pgid;
1450 
1451 	ocelot_encode_ports_to_mdb(addr, mc);
1452 
1453 	if (mc->entry_type != ENTRYTYPE_MACv4 &&
1454 	    mc->entry_type != ENTRYTYPE_MACv6)
1455 		ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
1456 				 pgid->index);
1457 
1458 	return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
1459 				 mc->entry_type);
1460 }
1461 EXPORT_SYMBOL(ocelot_port_mdb_add);
1462 
1463 int ocelot_port_mdb_del(struct ocelot *ocelot, int port,
1464 			const struct switchdev_obj_port_mdb *mdb)
1465 {
1466 	unsigned char addr[ETH_ALEN];
1467 	struct ocelot_multicast *mc;
1468 	struct ocelot_pgid *pgid;
1469 	u16 vid = mdb->vid;
1470 
1471 	if (port == ocelot->npi)
1472 		port = ocelot->num_phys_ports;
1473 
1474 	mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1475 	if (!mc)
1476 		return -ENOENT;
1477 
1478 	ocelot_encode_ports_to_mdb(addr, mc);
1479 	ocelot_mact_forget(ocelot, addr, vid);
1480 
1481 	ocelot_pgid_free(ocelot, mc->pgid);
1482 	mc->ports &= ~BIT(port);
1483 	if (!mc->ports) {
1484 		list_del(&mc->list);
1485 		devm_kfree(ocelot->dev, mc);
1486 		return 0;
1487 	}
1488 
1489 	/* We have a PGID with fewer ports now */
1490 	pgid = ocelot_mdb_get_pgid(ocelot, mc);
1491 	if (IS_ERR(pgid))
1492 		return PTR_ERR(pgid);
1493 	mc->pgid = pgid;
1494 
1495 	ocelot_encode_ports_to_mdb(addr, mc);
1496 
1497 	if (mc->entry_type != ENTRYTYPE_MACv4 &&
1498 	    mc->entry_type != ENTRYTYPE_MACv6)
1499 		ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
1500 				 pgid->index);
1501 
1502 	return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
1503 				 mc->entry_type);
1504 }
1505 EXPORT_SYMBOL(ocelot_port_mdb_del);
1506 
1507 int ocelot_port_bridge_join(struct ocelot *ocelot, int port,
1508 			    struct net_device *bridge)
1509 {
1510 	if (!ocelot->bridge_mask) {
1511 		ocelot->hw_bridge_dev = bridge;
1512 	} else {
1513 		if (ocelot->hw_bridge_dev != bridge)
1514 			/* This is adding the port to a second bridge, this is
1515 			 * unsupported */
1516 			return -ENODEV;
1517 	}
1518 
1519 	ocelot->bridge_mask |= BIT(port);
1520 
1521 	return 0;
1522 }
1523 EXPORT_SYMBOL(ocelot_port_bridge_join);
1524 
1525 int ocelot_port_bridge_leave(struct ocelot *ocelot, int port,
1526 			     struct net_device *bridge)
1527 {
1528 	struct ocelot_vlan pvid = {0}, native_vlan = {0};
1529 	int ret;
1530 
1531 	ocelot->bridge_mask &= ~BIT(port);
1532 
1533 	if (!ocelot->bridge_mask)
1534 		ocelot->hw_bridge_dev = NULL;
1535 
1536 	ret = ocelot_port_vlan_filtering(ocelot, port, false);
1537 	if (ret)
1538 		return ret;
1539 
1540 	ocelot_port_set_pvid(ocelot, port, pvid);
1541 	ocelot_port_set_native_vlan(ocelot, port, native_vlan);
1542 
1543 	return 0;
1544 }
1545 EXPORT_SYMBOL(ocelot_port_bridge_leave);
1546 
1547 static void ocelot_set_aggr_pgids(struct ocelot *ocelot)
1548 {
1549 	unsigned long visited = GENMASK(ocelot->num_phys_ports - 1, 0);
1550 	int i, port, lag;
1551 
1552 	/* Reset destination and aggregation PGIDS */
1553 	for_each_unicast_dest_pgid(ocelot, port)
1554 		ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
1555 
1556 	for_each_aggr_pgid(ocelot, i)
1557 		ocelot_write_rix(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
1558 				 ANA_PGID_PGID, i);
1559 
1560 	/* The visited ports bitmask holds the list of ports offloading any
1561 	 * bonding interface. Initially we mark all these ports as unvisited,
1562 	 * then every time we visit a port in this bitmask, we know that it is
1563 	 * the lowest numbered port, i.e. the one whose logical ID == physical
1564 	 * port ID == LAG ID. So we mark as visited all further ports in the
1565 	 * bitmask that are offloading the same bonding interface. This way,
1566 	 * we set up the aggregation PGIDs only once per bonding interface.
1567 	 */
1568 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1569 		struct ocelot_port *ocelot_port = ocelot->ports[port];
1570 
1571 		if (!ocelot_port || !ocelot_port->bond)
1572 			continue;
1573 
1574 		visited &= ~BIT(port);
1575 	}
1576 
1577 	/* Now, set PGIDs for each active LAG */
1578 	for (lag = 0; lag < ocelot->num_phys_ports; lag++) {
1579 		struct net_device *bond = ocelot->ports[lag]->bond;
1580 		int num_active_ports = 0;
1581 		unsigned long bond_mask;
1582 		u8 aggr_idx[16];
1583 
1584 		if (!bond || (visited & BIT(lag)))
1585 			continue;
1586 
1587 		bond_mask = ocelot_get_bond_mask(ocelot, bond, true);
1588 
1589 		for_each_set_bit(port, &bond_mask, ocelot->num_phys_ports) {
1590 			// Destination mask
1591 			ocelot_write_rix(ocelot, bond_mask,
1592 					 ANA_PGID_PGID, port);
1593 			aggr_idx[num_active_ports++] = port;
1594 		}
1595 
1596 		for_each_aggr_pgid(ocelot, i) {
1597 			u32 ac;
1598 
1599 			ac = ocelot_read_rix(ocelot, ANA_PGID_PGID, i);
1600 			ac &= ~bond_mask;
1601 			/* Don't do division by zero if there was no active
1602 			 * port. Just make all aggregation codes zero.
1603 			 */
1604 			if (num_active_ports)
1605 				ac |= BIT(aggr_idx[i % num_active_ports]);
1606 			ocelot_write_rix(ocelot, ac, ANA_PGID_PGID, i);
1607 		}
1608 
1609 		/* Mark all ports in the same LAG as visited to avoid applying
1610 		 * the same config again.
1611 		 */
1612 		for (port = lag; port < ocelot->num_phys_ports; port++) {
1613 			struct ocelot_port *ocelot_port = ocelot->ports[port];
1614 
1615 			if (!ocelot_port)
1616 				continue;
1617 
1618 			if (ocelot_port->bond == bond)
1619 				visited |= BIT(port);
1620 		}
1621 	}
1622 }
1623 
1624 /* When offloading a bonding interface, the switch ports configured under the
1625  * same bond must have the same logical port ID, equal to the physical port ID
1626  * of the lowest numbered physical port in that bond. Otherwise, in standalone/
1627  * bridged mode, each port has a logical port ID equal to its physical port ID.
1628  */
1629 static void ocelot_setup_logical_port_ids(struct ocelot *ocelot)
1630 {
1631 	int port;
1632 
1633 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1634 		struct ocelot_port *ocelot_port = ocelot->ports[port];
1635 		struct net_device *bond;
1636 
1637 		if (!ocelot_port)
1638 			continue;
1639 
1640 		bond = ocelot_port->bond;
1641 		if (bond) {
1642 			int lag = __ffs(ocelot_get_bond_mask(ocelot, bond,
1643 							     false));
1644 
1645 			ocelot_rmw_gix(ocelot,
1646 				       ANA_PORT_PORT_CFG_PORTID_VAL(lag),
1647 				       ANA_PORT_PORT_CFG_PORTID_VAL_M,
1648 				       ANA_PORT_PORT_CFG, port);
1649 		} else {
1650 			ocelot_rmw_gix(ocelot,
1651 				       ANA_PORT_PORT_CFG_PORTID_VAL(port),
1652 				       ANA_PORT_PORT_CFG_PORTID_VAL_M,
1653 				       ANA_PORT_PORT_CFG, port);
1654 		}
1655 	}
1656 }
1657 
1658 int ocelot_port_lag_join(struct ocelot *ocelot, int port,
1659 			 struct net_device *bond,
1660 			 struct netdev_lag_upper_info *info)
1661 {
1662 	if (info->tx_type != NETDEV_LAG_TX_TYPE_HASH)
1663 		return -EOPNOTSUPP;
1664 
1665 	ocelot->ports[port]->bond = bond;
1666 
1667 	ocelot_setup_logical_port_ids(ocelot);
1668 	ocelot_apply_bridge_fwd_mask(ocelot);
1669 	ocelot_set_aggr_pgids(ocelot);
1670 
1671 	return 0;
1672 }
1673 EXPORT_SYMBOL(ocelot_port_lag_join);
1674 
1675 void ocelot_port_lag_leave(struct ocelot *ocelot, int port,
1676 			   struct net_device *bond)
1677 {
1678 	ocelot->ports[port]->bond = NULL;
1679 
1680 	ocelot_setup_logical_port_ids(ocelot);
1681 	ocelot_apply_bridge_fwd_mask(ocelot);
1682 	ocelot_set_aggr_pgids(ocelot);
1683 }
1684 EXPORT_SYMBOL(ocelot_port_lag_leave);
1685 
1686 void ocelot_port_lag_change(struct ocelot *ocelot, int port, bool lag_tx_active)
1687 {
1688 	struct ocelot_port *ocelot_port = ocelot->ports[port];
1689 
1690 	ocelot_port->lag_tx_active = lag_tx_active;
1691 
1692 	/* Rebalance the LAGs */
1693 	ocelot_set_aggr_pgids(ocelot);
1694 }
1695 EXPORT_SYMBOL(ocelot_port_lag_change);
1696 
1697 /* Configure the maximum SDU (L2 payload) on RX to the value specified in @sdu.
1698  * The length of VLAN tags is accounted for automatically via DEV_MAC_TAGS_CFG.
1699  * In the special case that it's the NPI port that we're configuring, the
1700  * length of the tag and optional prefix needs to be accounted for privately,
1701  * in order to be able to sustain communication at the requested @sdu.
1702  */
1703 void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu)
1704 {
1705 	struct ocelot_port *ocelot_port = ocelot->ports[port];
1706 	int maxlen = sdu + ETH_HLEN + ETH_FCS_LEN;
1707 	int pause_start, pause_stop;
1708 	int atop, atop_tot;
1709 
1710 	if (port == ocelot->npi) {
1711 		maxlen += OCELOT_TAG_LEN;
1712 
1713 		if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
1714 			maxlen += OCELOT_SHORT_PREFIX_LEN;
1715 		else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
1716 			maxlen += OCELOT_LONG_PREFIX_LEN;
1717 	}
1718 
1719 	ocelot_port_writel(ocelot_port, maxlen, DEV_MAC_MAXLEN_CFG);
1720 
1721 	/* Set Pause watermark hysteresis */
1722 	pause_start = 6 * maxlen / OCELOT_BUFFER_CELL_SZ;
1723 	pause_stop = 4 * maxlen / OCELOT_BUFFER_CELL_SZ;
1724 	ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_START,
1725 			    pause_start);
1726 	ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_STOP,
1727 			    pause_stop);
1728 
1729 	/* Tail dropping watermarks */
1730 	atop_tot = (ocelot->packet_buffer_size - 9 * maxlen) /
1731 		   OCELOT_BUFFER_CELL_SZ;
1732 	atop = (9 * maxlen) / OCELOT_BUFFER_CELL_SZ;
1733 	ocelot_write_rix(ocelot, ocelot->ops->wm_enc(atop), SYS_ATOP, port);
1734 	ocelot_write(ocelot, ocelot->ops->wm_enc(atop_tot), SYS_ATOP_TOT_CFG);
1735 }
1736 EXPORT_SYMBOL(ocelot_port_set_maxlen);
1737 
1738 int ocelot_get_max_mtu(struct ocelot *ocelot, int port)
1739 {
1740 	int max_mtu = 65535 - ETH_HLEN - ETH_FCS_LEN;
1741 
1742 	if (port == ocelot->npi) {
1743 		max_mtu -= OCELOT_TAG_LEN;
1744 
1745 		if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
1746 			max_mtu -= OCELOT_SHORT_PREFIX_LEN;
1747 		else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
1748 			max_mtu -= OCELOT_LONG_PREFIX_LEN;
1749 	}
1750 
1751 	return max_mtu;
1752 }
1753 EXPORT_SYMBOL(ocelot_get_max_mtu);
1754 
1755 static void ocelot_port_set_learning(struct ocelot *ocelot, int port,
1756 				     bool enabled)
1757 {
1758 	struct ocelot_port *ocelot_port = ocelot->ports[port];
1759 	u32 val = 0;
1760 
1761 	if (enabled)
1762 		val = ANA_PORT_PORT_CFG_LEARN_ENA;
1763 
1764 	ocelot_rmw_gix(ocelot, val, ANA_PORT_PORT_CFG_LEARN_ENA,
1765 		       ANA_PORT_PORT_CFG, port);
1766 
1767 	ocelot_port->learn_ena = enabled;
1768 }
1769 
1770 static void ocelot_port_set_ucast_flood(struct ocelot *ocelot, int port,
1771 					bool enabled)
1772 {
1773 	u32 val = 0;
1774 
1775 	if (enabled)
1776 		val = BIT(port);
1777 
1778 	ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_UC);
1779 }
1780 
1781 static void ocelot_port_set_mcast_flood(struct ocelot *ocelot, int port,
1782 					bool enabled)
1783 {
1784 	u32 val = 0;
1785 
1786 	if (enabled)
1787 		val = BIT(port);
1788 
1789 	ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MC);
1790 }
1791 
1792 static void ocelot_port_set_bcast_flood(struct ocelot *ocelot, int port,
1793 					bool enabled)
1794 {
1795 	u32 val = 0;
1796 
1797 	if (enabled)
1798 		val = BIT(port);
1799 
1800 	ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_BC);
1801 }
1802 
1803 int ocelot_port_pre_bridge_flags(struct ocelot *ocelot, int port,
1804 				 struct switchdev_brport_flags flags)
1805 {
1806 	if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
1807 			   BR_BCAST_FLOOD))
1808 		return -EINVAL;
1809 
1810 	return 0;
1811 }
1812 EXPORT_SYMBOL(ocelot_port_pre_bridge_flags);
1813 
1814 void ocelot_port_bridge_flags(struct ocelot *ocelot, int port,
1815 			      struct switchdev_brport_flags flags)
1816 {
1817 	if (flags.mask & BR_LEARNING)
1818 		ocelot_port_set_learning(ocelot, port,
1819 					 !!(flags.val & BR_LEARNING));
1820 
1821 	if (flags.mask & BR_FLOOD)
1822 		ocelot_port_set_ucast_flood(ocelot, port,
1823 					    !!(flags.val & BR_FLOOD));
1824 
1825 	if (flags.mask & BR_MCAST_FLOOD)
1826 		ocelot_port_set_mcast_flood(ocelot, port,
1827 					    !!(flags.val & BR_MCAST_FLOOD));
1828 
1829 	if (flags.mask & BR_BCAST_FLOOD)
1830 		ocelot_port_set_bcast_flood(ocelot, port,
1831 					    !!(flags.val & BR_BCAST_FLOOD));
1832 }
1833 EXPORT_SYMBOL(ocelot_port_bridge_flags);
1834 
1835 void ocelot_init_port(struct ocelot *ocelot, int port)
1836 {
1837 	struct ocelot_port *ocelot_port = ocelot->ports[port];
1838 
1839 	skb_queue_head_init(&ocelot_port->tx_skbs);
1840 	spin_lock_init(&ocelot_port->ts_id_lock);
1841 
1842 	/* Basic L2 initialization */
1843 
1844 	/* Set MAC IFG Gaps
1845 	 * FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 0
1846 	 * !FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 5
1847 	 */
1848 	ocelot_port_writel(ocelot_port, DEV_MAC_IFG_CFG_TX_IFG(5),
1849 			   DEV_MAC_IFG_CFG);
1850 
1851 	/* Load seed (0) and set MAC HDX late collision  */
1852 	ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67) |
1853 			   DEV_MAC_HDX_CFG_SEED_LOAD,
1854 			   DEV_MAC_HDX_CFG);
1855 	mdelay(1);
1856 	ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67),
1857 			   DEV_MAC_HDX_CFG);
1858 
1859 	/* Set Max Length and maximum tags allowed */
1860 	ocelot_port_set_maxlen(ocelot, port, ETH_DATA_LEN);
1861 	ocelot_port_writel(ocelot_port, DEV_MAC_TAGS_CFG_TAG_ID(ETH_P_8021AD) |
1862 			   DEV_MAC_TAGS_CFG_VLAN_AWR_ENA |
1863 			   DEV_MAC_TAGS_CFG_VLAN_DBL_AWR_ENA |
1864 			   DEV_MAC_TAGS_CFG_VLAN_LEN_AWR_ENA,
1865 			   DEV_MAC_TAGS_CFG);
1866 
1867 	/* Set SMAC of Pause frame (00:00:00:00:00:00) */
1868 	ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_HIGH_CFG);
1869 	ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_LOW_CFG);
1870 
1871 	/* Enable transmission of pause frames */
1872 	ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 1);
1873 
1874 	/* Drop frames with multicast source address */
1875 	ocelot_rmw_gix(ocelot, ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
1876 		       ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
1877 		       ANA_PORT_DROP_CFG, port);
1878 
1879 	/* Set default VLAN and tag type to 8021Q. */
1880 	ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_TPID(ETH_P_8021Q),
1881 		       REW_PORT_VLAN_CFG_PORT_TPID_M,
1882 		       REW_PORT_VLAN_CFG, port);
1883 
1884 	/* Disable source address learning for standalone mode */
1885 	ocelot_port_set_learning(ocelot, port, false);
1886 
1887 	/* Enable vcap lookups */
1888 	ocelot_vcap_enable(ocelot, port);
1889 }
1890 EXPORT_SYMBOL(ocelot_init_port);
1891 
1892 /* Configure and enable the CPU port module, which is a set of queues
1893  * accessible through register MMIO, frame DMA or Ethernet (in case
1894  * NPI mode is used).
1895  */
1896 static void ocelot_cpu_port_init(struct ocelot *ocelot)
1897 {
1898 	int cpu = ocelot->num_phys_ports;
1899 
1900 	/* The unicast destination PGID for the CPU port module is unused */
1901 	ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, cpu);
1902 	/* Instead set up a multicast destination PGID for traffic copied to
1903 	 * the CPU. Whitelisted MAC addresses like the port netdevice MAC
1904 	 * addresses will be copied to the CPU via this PGID.
1905 	 */
1906 	ocelot_write_rix(ocelot, BIT(cpu), ANA_PGID_PGID, PGID_CPU);
1907 	ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_RECV_ENA |
1908 			 ANA_PORT_PORT_CFG_PORTID_VAL(cpu),
1909 			 ANA_PORT_PORT_CFG, cpu);
1910 
1911 	/* Enable CPU port module */
1912 	ocelot_fields_write(ocelot, cpu, QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
1913 	/* CPU port Injection/Extraction configuration */
1914 	ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_XTR_HDR,
1915 			    OCELOT_TAG_PREFIX_NONE);
1916 	ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_INJ_HDR,
1917 			    OCELOT_TAG_PREFIX_NONE);
1918 
1919 	/* Configure the CPU port to be VLAN aware */
1920 	ocelot_write_gix(ocelot, ANA_PORT_VLAN_CFG_VLAN_VID(0) |
1921 				 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
1922 				 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1),
1923 			 ANA_PORT_VLAN_CFG, cpu);
1924 }
1925 
1926 static void ocelot_detect_features(struct ocelot *ocelot)
1927 {
1928 	int mmgt, eq_ctrl;
1929 
1930 	/* For Ocelot, Felix, Seville, Serval etc, SYS:MMGT:MMGT:FREECNT holds
1931 	 * the number of 240-byte free memory words (aka 4-cell chunks) and not
1932 	 * 192 bytes as the documentation incorrectly says.
1933 	 */
1934 	mmgt = ocelot_read(ocelot, SYS_MMGT);
1935 	ocelot->packet_buffer_size = 240 * SYS_MMGT_FREECNT(mmgt);
1936 
1937 	eq_ctrl = ocelot_read(ocelot, QSYS_EQ_CTRL);
1938 	ocelot->num_frame_refs = QSYS_MMGT_EQ_CTRL_FP_FREE_CNT(eq_ctrl);
1939 }
1940 
1941 int ocelot_init(struct ocelot *ocelot)
1942 {
1943 	char queue_name[32];
1944 	int i, ret;
1945 	u32 port;
1946 
1947 	if (ocelot->ops->reset) {
1948 		ret = ocelot->ops->reset(ocelot);
1949 		if (ret) {
1950 			dev_err(ocelot->dev, "Switch reset failed\n");
1951 			return ret;
1952 		}
1953 	}
1954 
1955 	ocelot->stats = devm_kcalloc(ocelot->dev,
1956 				     ocelot->num_phys_ports * ocelot->num_stats,
1957 				     sizeof(u64), GFP_KERNEL);
1958 	if (!ocelot->stats)
1959 		return -ENOMEM;
1960 
1961 	mutex_init(&ocelot->stats_lock);
1962 	mutex_init(&ocelot->ptp_lock);
1963 	spin_lock_init(&ocelot->ptp_clock_lock);
1964 	snprintf(queue_name, sizeof(queue_name), "%s-stats",
1965 		 dev_name(ocelot->dev));
1966 	ocelot->stats_queue = create_singlethread_workqueue(queue_name);
1967 	if (!ocelot->stats_queue)
1968 		return -ENOMEM;
1969 
1970 	ocelot->owq = alloc_ordered_workqueue("ocelot-owq", 0);
1971 	if (!ocelot->owq) {
1972 		destroy_workqueue(ocelot->stats_queue);
1973 		return -ENOMEM;
1974 	}
1975 
1976 	INIT_LIST_HEAD(&ocelot->multicast);
1977 	INIT_LIST_HEAD(&ocelot->pgids);
1978 	ocelot_detect_features(ocelot);
1979 	ocelot_mact_init(ocelot);
1980 	ocelot_vlan_init(ocelot);
1981 	ocelot_vcap_init(ocelot);
1982 	ocelot_cpu_port_init(ocelot);
1983 
1984 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1985 		/* Clear all counters (5 groups) */
1986 		ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port) |
1987 				     SYS_STAT_CFG_STAT_CLEAR_SHOT(0x7f),
1988 			     SYS_STAT_CFG);
1989 	}
1990 
1991 	/* Only use S-Tag */
1992 	ocelot_write(ocelot, ETH_P_8021AD, SYS_VLAN_ETYPE_CFG);
1993 
1994 	/* Aggregation mode */
1995 	ocelot_write(ocelot, ANA_AGGR_CFG_AC_SMAC_ENA |
1996 			     ANA_AGGR_CFG_AC_DMAC_ENA |
1997 			     ANA_AGGR_CFG_AC_IP4_SIPDIP_ENA |
1998 			     ANA_AGGR_CFG_AC_IP4_TCPUDP_ENA |
1999 			     ANA_AGGR_CFG_AC_IP6_FLOW_LBL_ENA |
2000 			     ANA_AGGR_CFG_AC_IP6_TCPUDP_ENA,
2001 			     ANA_AGGR_CFG);
2002 
2003 	/* Set MAC age time to default value. The entry is aged after
2004 	 * 2*AGE_PERIOD
2005 	 */
2006 	ocelot_write(ocelot,
2007 		     ANA_AUTOAGE_AGE_PERIOD(BR_DEFAULT_AGEING_TIME / 2 / HZ),
2008 		     ANA_AUTOAGE);
2009 
2010 	/* Disable learning for frames discarded by VLAN ingress filtering */
2011 	regmap_field_write(ocelot->regfields[ANA_ADVLEARN_VLAN_CHK], 1);
2012 
2013 	/* Setup frame ageing - fixed value "2 sec" - in 6.5 us units */
2014 	ocelot_write(ocelot, SYS_FRM_AGING_AGE_TX_ENA |
2015 		     SYS_FRM_AGING_MAX_AGE(307692), SYS_FRM_AGING);
2016 
2017 	/* Setup flooding PGIDs */
2018 	for (i = 0; i < ocelot->num_flooding_pgids; i++)
2019 		ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) |
2020 				 ANA_FLOODING_FLD_BROADCAST(PGID_BC) |
2021 				 ANA_FLOODING_FLD_UNICAST(PGID_UC),
2022 				 ANA_FLOODING, i);
2023 	ocelot_write(ocelot, ANA_FLOODING_IPMC_FLD_MC6_DATA(PGID_MCIPV6) |
2024 		     ANA_FLOODING_IPMC_FLD_MC6_CTRL(PGID_MC) |
2025 		     ANA_FLOODING_IPMC_FLD_MC4_DATA(PGID_MCIPV4) |
2026 		     ANA_FLOODING_IPMC_FLD_MC4_CTRL(PGID_MC),
2027 		     ANA_FLOODING_IPMC);
2028 
2029 	for (port = 0; port < ocelot->num_phys_ports; port++) {
2030 		/* Transmit the frame to the local port. */
2031 		ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
2032 		/* Do not forward BPDU frames to the front ports. */
2033 		ocelot_write_gix(ocelot,
2034 				 ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff),
2035 				 ANA_PORT_CPU_FWD_BPDU_CFG,
2036 				 port);
2037 		/* Ensure bridging is disabled */
2038 		ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_SRC + port);
2039 	}
2040 
2041 	for_each_nonreserved_multicast_dest_pgid(ocelot, i) {
2042 		u32 val = ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports - 1, 0));
2043 
2044 		ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i);
2045 	}
2046 	/* Allow broadcast and unknown L2 multicast to the CPU. */
2047 	ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2048 		       ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2049 		       ANA_PGID_PGID, PGID_MC);
2050 	ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2051 		       ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2052 		       ANA_PGID_PGID, PGID_BC);
2053 	ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4);
2054 	ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6);
2055 
2056 	/* Allow manual injection via DEVCPU_QS registers, and byte swap these
2057 	 * registers endianness.
2058 	 */
2059 	ocelot_write_rix(ocelot, QS_INJ_GRP_CFG_BYTE_SWAP |
2060 			 QS_INJ_GRP_CFG_MODE(1), QS_INJ_GRP_CFG, 0);
2061 	ocelot_write_rix(ocelot, QS_XTR_GRP_CFG_BYTE_SWAP |
2062 			 QS_XTR_GRP_CFG_MODE(1), QS_XTR_GRP_CFG, 0);
2063 	ocelot_write(ocelot, ANA_CPUQ_CFG_CPUQ_MIRROR(2) |
2064 		     ANA_CPUQ_CFG_CPUQ_LRN(2) |
2065 		     ANA_CPUQ_CFG_CPUQ_MAC_COPY(2) |
2066 		     ANA_CPUQ_CFG_CPUQ_SRC_COPY(2) |
2067 		     ANA_CPUQ_CFG_CPUQ_LOCKED_PORTMOVE(2) |
2068 		     ANA_CPUQ_CFG_CPUQ_ALLBRIDGE(6) |
2069 		     ANA_CPUQ_CFG_CPUQ_IPMC_CTRL(6) |
2070 		     ANA_CPUQ_CFG_CPUQ_IGMP(6) |
2071 		     ANA_CPUQ_CFG_CPUQ_MLD(6), ANA_CPUQ_CFG);
2072 	for (i = 0; i < 16; i++)
2073 		ocelot_write_rix(ocelot, ANA_CPUQ_8021_CFG_CPUQ_GARP_VAL(6) |
2074 				 ANA_CPUQ_8021_CFG_CPUQ_BPDU_VAL(6),
2075 				 ANA_CPUQ_8021_CFG, i);
2076 
2077 	INIT_DELAYED_WORK(&ocelot->stats_work, ocelot_check_stats_work);
2078 	queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
2079 			   OCELOT_STATS_CHECK_DELAY);
2080 
2081 	return 0;
2082 }
2083 EXPORT_SYMBOL(ocelot_init);
2084 
2085 void ocelot_deinit(struct ocelot *ocelot)
2086 {
2087 	cancel_delayed_work(&ocelot->stats_work);
2088 	destroy_workqueue(ocelot->stats_queue);
2089 	destroy_workqueue(ocelot->owq);
2090 	mutex_destroy(&ocelot->stats_lock);
2091 }
2092 EXPORT_SYMBOL(ocelot_deinit);
2093 
2094 void ocelot_deinit_port(struct ocelot *ocelot, int port)
2095 {
2096 	struct ocelot_port *ocelot_port = ocelot->ports[port];
2097 
2098 	skb_queue_purge(&ocelot_port->tx_skbs);
2099 }
2100 EXPORT_SYMBOL(ocelot_deinit_port);
2101 
2102 MODULE_LICENSE("Dual MIT/GPL");
2103