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