xref: /openbmc/linux/drivers/net/ethernet/mscc/ocelot.c (revision 7fc38225363dd8f19e667ad7c77b63bc4a5c065d)
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/etherdevice.h>
8 #include <linux/ethtool.h>
9 #include <linux/if_bridge.h>
10 #include <linux/if_ether.h>
11 #include <linux/if_vlan.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/netdevice.h>
16 #include <linux/phy.h>
17 #include <linux/skbuff.h>
18 #include <linux/iopoll.h>
19 #include <net/arp.h>
20 #include <net/netevent.h>
21 #include <net/rtnetlink.h>
22 #include <net/switchdev.h>
23 
24 #include "ocelot.h"
25 
26 #define TABLE_UPDATE_SLEEP_US 10
27 #define TABLE_UPDATE_TIMEOUT_US 100000
28 
29 /* MAC table entry types.
30  * ENTRYTYPE_NORMAL is subject to aging.
31  * ENTRYTYPE_LOCKED is not subject to aging.
32  * ENTRYTYPE_MACv4 is not subject to aging. For IPv4 multicast.
33  * ENTRYTYPE_MACv6 is not subject to aging. For IPv6 multicast.
34  */
35 enum macaccess_entry_type {
36 	ENTRYTYPE_NORMAL = 0,
37 	ENTRYTYPE_LOCKED,
38 	ENTRYTYPE_MACv4,
39 	ENTRYTYPE_MACv6,
40 };
41 
42 struct ocelot_mact_entry {
43 	u8 mac[ETH_ALEN];
44 	u16 vid;
45 	enum macaccess_entry_type type;
46 };
47 
48 static inline u32 ocelot_mact_read_macaccess(struct ocelot *ocelot)
49 {
50 	return ocelot_read(ocelot, ANA_TABLES_MACACCESS);
51 }
52 
53 static inline int ocelot_mact_wait_for_completion(struct ocelot *ocelot)
54 {
55 	u32 val;
56 
57 	return readx_poll_timeout(ocelot_mact_read_macaccess,
58 		ocelot, val,
59 		(val & ANA_TABLES_MACACCESS_MAC_TABLE_CMD_M) ==
60 		MACACCESS_CMD_IDLE,
61 		TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
62 }
63 
64 static void ocelot_mact_select(struct ocelot *ocelot,
65 			       const unsigned char mac[ETH_ALEN],
66 			       unsigned int vid)
67 {
68 	u32 macl = 0, mach = 0;
69 
70 	/* Set the MAC address to handle and the vlan associated in a format
71 	 * understood by the hardware.
72 	 */
73 	mach |= vid    << 16;
74 	mach |= mac[0] << 8;
75 	mach |= mac[1] << 0;
76 	macl |= mac[2] << 24;
77 	macl |= mac[3] << 16;
78 	macl |= mac[4] << 8;
79 	macl |= mac[5] << 0;
80 
81 	ocelot_write(ocelot, macl, ANA_TABLES_MACLDATA);
82 	ocelot_write(ocelot, mach, ANA_TABLES_MACHDATA);
83 
84 }
85 
86 static int ocelot_mact_learn(struct ocelot *ocelot, int port,
87 			     const unsigned char mac[ETH_ALEN],
88 			     unsigned int vid,
89 			     enum macaccess_entry_type type)
90 {
91 	ocelot_mact_select(ocelot, mac, vid);
92 
93 	/* Issue a write command */
94 	ocelot_write(ocelot, ANA_TABLES_MACACCESS_VALID |
95 			     ANA_TABLES_MACACCESS_DEST_IDX(port) |
96 			     ANA_TABLES_MACACCESS_ENTRYTYPE(type) |
97 			     ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_LEARN),
98 			     ANA_TABLES_MACACCESS);
99 
100 	return ocelot_mact_wait_for_completion(ocelot);
101 }
102 
103 static int ocelot_mact_forget(struct ocelot *ocelot,
104 			      const unsigned char mac[ETH_ALEN],
105 			      unsigned int vid)
106 {
107 	ocelot_mact_select(ocelot, mac, vid);
108 
109 	/* Issue a forget command */
110 	ocelot_write(ocelot,
111 		     ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_FORGET),
112 		     ANA_TABLES_MACACCESS);
113 
114 	return ocelot_mact_wait_for_completion(ocelot);
115 }
116 
117 static void ocelot_mact_init(struct ocelot *ocelot)
118 {
119 	/* Configure the learning mode entries attributes:
120 	 * - Do not copy the frame to the CPU extraction queues.
121 	 * - Use the vlan and mac_cpoy for dmac lookup.
122 	 */
123 	ocelot_rmw(ocelot, 0,
124 		   ANA_AGENCTRL_LEARN_CPU_COPY | ANA_AGENCTRL_IGNORE_DMAC_FLAGS
125 		   | ANA_AGENCTRL_LEARN_FWD_KILL
126 		   | ANA_AGENCTRL_LEARN_IGNORE_VLAN,
127 		   ANA_AGENCTRL);
128 
129 	/* Clear the MAC table */
130 	ocelot_write(ocelot, MACACCESS_CMD_INIT, ANA_TABLES_MACACCESS);
131 }
132 
133 static inline u32 ocelot_vlant_read_vlanaccess(struct ocelot *ocelot)
134 {
135 	return ocelot_read(ocelot, ANA_TABLES_VLANACCESS);
136 }
137 
138 static inline int ocelot_vlant_wait_for_completion(struct ocelot *ocelot)
139 {
140 	u32 val;
141 
142 	return readx_poll_timeout(ocelot_vlant_read_vlanaccess,
143 		ocelot,
144 		val,
145 		(val & ANA_TABLES_VLANACCESS_VLAN_TBL_CMD_M) ==
146 		ANA_TABLES_VLANACCESS_CMD_IDLE,
147 		TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
148 }
149 
150 static int ocelot_vlant_set_mask(struct ocelot *ocelot, u16 vid, u32 mask)
151 {
152 	/* Select the VID to configure */
153 	ocelot_write(ocelot, ANA_TABLES_VLANTIDX_V_INDEX(vid),
154 		     ANA_TABLES_VLANTIDX);
155 	/* Set the vlan port members mask and issue a write command */
156 	ocelot_write(ocelot, ANA_TABLES_VLANACCESS_VLAN_PORT_MASK(mask) |
157 			     ANA_TABLES_VLANACCESS_CMD_WRITE,
158 		     ANA_TABLES_VLANACCESS);
159 
160 	return ocelot_vlant_wait_for_completion(ocelot);
161 }
162 
163 static void ocelot_vlan_mode(struct ocelot_port *port,
164 			     netdev_features_t features)
165 {
166 	struct ocelot *ocelot = port->ocelot;
167 	u8 p = port->chip_port;
168 	u32 val;
169 
170 	/* Filtering */
171 	val = ocelot_read(ocelot, ANA_VLANMASK);
172 	if (features & NETIF_F_HW_VLAN_CTAG_FILTER)
173 		val |= BIT(p);
174 	else
175 		val &= ~BIT(p);
176 	ocelot_write(ocelot, val, ANA_VLANMASK);
177 }
178 
179 static void ocelot_vlan_port_apply(struct ocelot *ocelot,
180 				   struct ocelot_port *port)
181 {
182 	u32 val;
183 
184 	/* Ingress clasification (ANA_PORT_VLAN_CFG) */
185 	/* Default vlan to clasify for untagged frames (may be zero) */
186 	val = ANA_PORT_VLAN_CFG_VLAN_VID(port->pvid);
187 	if (port->vlan_aware)
188 		val |= ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
189 		       ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1);
190 
191 	ocelot_rmw_gix(ocelot, val,
192 		       ANA_PORT_VLAN_CFG_VLAN_VID_M |
193 		       ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
194 		       ANA_PORT_VLAN_CFG_VLAN_POP_CNT_M,
195 		       ANA_PORT_VLAN_CFG, port->chip_port);
196 
197 	/* Drop frames with multicast source address */
198 	val = ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA;
199 	if (port->vlan_aware && !port->vid)
200 		/* If port is vlan-aware and tagged, drop untagged and priority
201 		 * tagged frames.
202 		 */
203 		val |= ANA_PORT_DROP_CFG_DROP_UNTAGGED_ENA |
204 		       ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
205 		       ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA;
206 	ocelot_write_gix(ocelot, val, ANA_PORT_DROP_CFG, port->chip_port);
207 
208 	/* Egress configuration (REW_TAG_CFG): VLAN tag type to 8021Q. */
209 	val = REW_TAG_CFG_TAG_TPID_CFG(0);
210 
211 	if (port->vlan_aware) {
212 		if (port->vid)
213 			/* Tag all frames except when VID == DEFAULT_VLAN */
214 			val |= REW_TAG_CFG_TAG_CFG(1);
215 		else
216 			/* Tag all frames */
217 			val |= REW_TAG_CFG_TAG_CFG(3);
218 	}
219 	ocelot_rmw_gix(ocelot, val,
220 		       REW_TAG_CFG_TAG_TPID_CFG_M |
221 		       REW_TAG_CFG_TAG_CFG_M,
222 		       REW_TAG_CFG, port->chip_port);
223 
224 	/* Set default VLAN and tag type to 8021Q. */
225 	val = REW_PORT_VLAN_CFG_PORT_TPID(ETH_P_8021Q) |
226 	      REW_PORT_VLAN_CFG_PORT_VID(port->vid);
227 	ocelot_rmw_gix(ocelot, val,
228 		       REW_PORT_VLAN_CFG_PORT_TPID_M |
229 		       REW_PORT_VLAN_CFG_PORT_VID_M,
230 		       REW_PORT_VLAN_CFG, port->chip_port);
231 }
232 
233 static int ocelot_vlan_vid_add(struct net_device *dev, u16 vid, bool pvid,
234 			       bool untagged)
235 {
236 	struct ocelot_port *port = netdev_priv(dev);
237 	struct ocelot *ocelot = port->ocelot;
238 	int ret;
239 
240 	/* Add the port MAC address to with the right VLAN information */
241 	ocelot_mact_learn(ocelot, PGID_CPU, dev->dev_addr, vid,
242 			  ENTRYTYPE_LOCKED);
243 
244 	/* Make the port a member of the VLAN */
245 	ocelot->vlan_mask[vid] |= BIT(port->chip_port);
246 	ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
247 	if (ret)
248 		return ret;
249 
250 	/* Default ingress vlan classification */
251 	if (pvid)
252 		port->pvid = vid;
253 
254 	/* Untagged egress vlan clasification */
255 	if (untagged)
256 		port->vid = vid;
257 
258 	ocelot_vlan_port_apply(ocelot, port);
259 
260 	return 0;
261 }
262 
263 static int ocelot_vlan_vid_del(struct net_device *dev, u16 vid)
264 {
265 	struct ocelot_port *port = netdev_priv(dev);
266 	struct ocelot *ocelot = port->ocelot;
267 	int ret;
268 
269 	/* 8021q removes VID 0 on module unload for all interfaces
270 	 * with VLAN filtering feature. We need to keep it to receive
271 	 * untagged traffic.
272 	 */
273 	if (vid == 0)
274 		return 0;
275 
276 	/* Del the port MAC address to with the right VLAN information */
277 	ocelot_mact_forget(ocelot, dev->dev_addr, vid);
278 
279 	/* Stop the port from being a member of the vlan */
280 	ocelot->vlan_mask[vid] &= ~BIT(port->chip_port);
281 	ret = ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
282 	if (ret)
283 		return ret;
284 
285 	/* Ingress */
286 	if (port->pvid == vid)
287 		port->pvid = 0;
288 
289 	/* Egress */
290 	if (port->vid == vid)
291 		port->vid = 0;
292 
293 	ocelot_vlan_port_apply(ocelot, port);
294 
295 	return 0;
296 }
297 
298 static void ocelot_vlan_init(struct ocelot *ocelot)
299 {
300 	u16 port, vid;
301 
302 	/* Clear VLAN table, by default all ports are members of all VLANs */
303 	ocelot_write(ocelot, ANA_TABLES_VLANACCESS_CMD_INIT,
304 		     ANA_TABLES_VLANACCESS);
305 	ocelot_vlant_wait_for_completion(ocelot);
306 
307 	/* Configure the port VLAN memberships */
308 	for (vid = 1; vid < VLAN_N_VID; vid++) {
309 		ocelot->vlan_mask[vid] = 0;
310 		ocelot_vlant_set_mask(ocelot, vid, ocelot->vlan_mask[vid]);
311 	}
312 
313 	/* Because VLAN filtering is enabled, we need VID 0 to get untagged
314 	 * traffic.  It is added automatically if 8021q module is loaded, but
315 	 * we can't rely on it since module may be not loaded.
316 	 */
317 	ocelot->vlan_mask[0] = GENMASK(ocelot->num_phys_ports - 1, 0);
318 	ocelot_vlant_set_mask(ocelot, 0, ocelot->vlan_mask[0]);
319 
320 	/* Configure the CPU port to be VLAN aware */
321 	ocelot_write_gix(ocelot, ANA_PORT_VLAN_CFG_VLAN_VID(0) |
322 				 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
323 				 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1),
324 			 ANA_PORT_VLAN_CFG, ocelot->num_phys_ports);
325 
326 	/* Set vlan ingress filter mask to all ports but the CPU port by
327 	 * default.
328 	 */
329 	ocelot_write(ocelot, GENMASK(9, 0), ANA_VLANMASK);
330 
331 	for (port = 0; port < ocelot->num_phys_ports; port++) {
332 		ocelot_write_gix(ocelot, 0, REW_PORT_VLAN_CFG, port);
333 		ocelot_write_gix(ocelot, 0, REW_TAG_CFG, port);
334 	}
335 }
336 
337 /* Watermark encode
338  * Bit 8:   Unit; 0:1, 1:16
339  * Bit 7-0: Value to be multiplied with unit
340  */
341 static u16 ocelot_wm_enc(u16 value)
342 {
343 	if (value >= BIT(8))
344 		return BIT(8) | (value / 16);
345 
346 	return value;
347 }
348 
349 static void ocelot_port_adjust_link(struct net_device *dev)
350 {
351 	struct ocelot_port *port = netdev_priv(dev);
352 	struct ocelot *ocelot = port->ocelot;
353 	u8 p = port->chip_port;
354 	int speed, atop_wm, mode = 0;
355 
356 	switch (dev->phydev->speed) {
357 	case SPEED_10:
358 		speed = OCELOT_SPEED_10;
359 		break;
360 	case SPEED_100:
361 		speed = OCELOT_SPEED_100;
362 		break;
363 	case SPEED_1000:
364 		speed = OCELOT_SPEED_1000;
365 		mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
366 		break;
367 	case SPEED_2500:
368 		speed = OCELOT_SPEED_2500;
369 		mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
370 		break;
371 	default:
372 		netdev_err(dev, "Unsupported PHY speed: %d\n",
373 			   dev->phydev->speed);
374 		return;
375 	}
376 
377 	phy_print_status(dev->phydev);
378 
379 	if (!dev->phydev->link)
380 		return;
381 
382 	/* Only full duplex supported for now */
383 	ocelot_port_writel(port, DEV_MAC_MODE_CFG_FDX_ENA |
384 			   mode, DEV_MAC_MODE_CFG);
385 
386 	/* Set MAC IFG Gaps
387 	 * FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 0
388 	 * !FDX: TX_IFG = 5, RX_IFG1 = RX_IFG2 = 5
389 	 */
390 	ocelot_port_writel(port, DEV_MAC_IFG_CFG_TX_IFG(5), DEV_MAC_IFG_CFG);
391 
392 	/* Load seed (0) and set MAC HDX late collision  */
393 	ocelot_port_writel(port, DEV_MAC_HDX_CFG_LATE_COL_POS(67) |
394 			   DEV_MAC_HDX_CFG_SEED_LOAD,
395 			   DEV_MAC_HDX_CFG);
396 	mdelay(1);
397 	ocelot_port_writel(port, DEV_MAC_HDX_CFG_LATE_COL_POS(67),
398 			   DEV_MAC_HDX_CFG);
399 
400 	/* Disable HDX fast control */
401 	ocelot_port_writel(port, DEV_PORT_MISC_HDX_FAST_DIS, DEV_PORT_MISC);
402 
403 	/* SGMII only for now */
404 	ocelot_port_writel(port, PCS1G_MODE_CFG_SGMII_MODE_ENA, PCS1G_MODE_CFG);
405 	ocelot_port_writel(port, PCS1G_SD_CFG_SD_SEL, PCS1G_SD_CFG);
406 
407 	/* Enable PCS */
408 	ocelot_port_writel(port, PCS1G_CFG_PCS_ENA, PCS1G_CFG);
409 
410 	/* No aneg on SGMII */
411 	ocelot_port_writel(port, 0, PCS1G_ANEG_CFG);
412 
413 	/* No loopback */
414 	ocelot_port_writel(port, 0, PCS1G_LB_CFG);
415 
416 	/* Set Max Length and maximum tags allowed */
417 	ocelot_port_writel(port, VLAN_ETH_FRAME_LEN, DEV_MAC_MAXLEN_CFG);
418 	ocelot_port_writel(port, DEV_MAC_TAGS_CFG_TAG_ID(ETH_P_8021AD) |
419 			   DEV_MAC_TAGS_CFG_VLAN_AWR_ENA |
420 			   DEV_MAC_TAGS_CFG_VLAN_LEN_AWR_ENA,
421 			   DEV_MAC_TAGS_CFG);
422 
423 	/* Enable MAC module */
424 	ocelot_port_writel(port, DEV_MAC_ENA_CFG_RX_ENA |
425 			   DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG);
426 
427 	/* Take MAC, Port, Phy (intern) and PCS (SGMII/Serdes) clock out of
428 	 * reset */
429 	ocelot_port_writel(port, DEV_CLOCK_CFG_LINK_SPEED(speed),
430 			   DEV_CLOCK_CFG);
431 
432 	/* Set SMAC of Pause frame (00:00:00:00:00:00) */
433 	ocelot_port_writel(port, 0, DEV_MAC_FC_MAC_HIGH_CFG);
434 	ocelot_port_writel(port, 0, DEV_MAC_FC_MAC_LOW_CFG);
435 
436 	/* No PFC */
437 	ocelot_write_gix(ocelot, ANA_PFC_PFC_CFG_FC_LINK_SPEED(speed),
438 			 ANA_PFC_PFC_CFG, p);
439 
440 	/* Set Pause WM hysteresis
441 	 * 152 = 6 * VLAN_ETH_FRAME_LEN / OCELOT_BUFFER_CELL_SZ
442 	 * 101 = 4 * VLAN_ETH_FRAME_LEN / OCELOT_BUFFER_CELL_SZ
443 	 */
444 	ocelot_write_rix(ocelot, SYS_PAUSE_CFG_PAUSE_ENA |
445 			 SYS_PAUSE_CFG_PAUSE_STOP(101) |
446 			 SYS_PAUSE_CFG_PAUSE_START(152), SYS_PAUSE_CFG, p);
447 
448 	/* Core: Enable port for frame transfer */
449 	ocelot_write_rix(ocelot, QSYS_SWITCH_PORT_MODE_INGRESS_DROP_MODE |
450 			 QSYS_SWITCH_PORT_MODE_SCH_NEXT_CFG(1) |
451 			 QSYS_SWITCH_PORT_MODE_PORT_ENA,
452 			 QSYS_SWITCH_PORT_MODE, p);
453 
454 	/* Flow control */
455 	ocelot_write_rix(ocelot, SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) |
456 			 SYS_MAC_FC_CFG_RX_FC_ENA | SYS_MAC_FC_CFG_TX_FC_ENA |
457 			 SYS_MAC_FC_CFG_ZERO_PAUSE_ENA |
458 			 SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) |
459 			 SYS_MAC_FC_CFG_FC_LINK_SPEED(speed),
460 			 SYS_MAC_FC_CFG, p);
461 	ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, p);
462 
463 	/* Tail dropping watermark */
464 	atop_wm = (ocelot->shared_queue_sz - 9 * VLAN_ETH_FRAME_LEN) / OCELOT_BUFFER_CELL_SZ;
465 	ocelot_write_rix(ocelot, ocelot_wm_enc(9 * VLAN_ETH_FRAME_LEN),
466 			 SYS_ATOP, p);
467 	ocelot_write(ocelot, ocelot_wm_enc(atop_wm), SYS_ATOP_TOT_CFG);
468 }
469 
470 static int ocelot_port_open(struct net_device *dev)
471 {
472 	struct ocelot_port *port = netdev_priv(dev);
473 	struct ocelot *ocelot = port->ocelot;
474 	int err;
475 
476 	/* Enable receiving frames on the port, and activate auto-learning of
477 	 * MAC addresses.
478 	 */
479 	ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO |
480 			 ANA_PORT_PORT_CFG_RECV_ENA |
481 			 ANA_PORT_PORT_CFG_PORTID_VAL(port->chip_port),
482 			 ANA_PORT_PORT_CFG, port->chip_port);
483 
484 	if (port->serdes) {
485 		err = phy_set_mode_ext(port->serdes, PHY_MODE_ETHERNET,
486 				       port->phy_mode);
487 		if (err) {
488 			netdev_err(dev, "Could not set mode of SerDes\n");
489 			return err;
490 		}
491 	}
492 
493 	err = phy_connect_direct(dev, port->phy, &ocelot_port_adjust_link,
494 				 port->phy_mode);
495 	if (err) {
496 		netdev_err(dev, "Could not attach to PHY\n");
497 		return err;
498 	}
499 
500 	dev->phydev = port->phy;
501 
502 	phy_attached_info(port->phy);
503 	phy_start(port->phy);
504 	return 0;
505 }
506 
507 static int ocelot_port_stop(struct net_device *dev)
508 {
509 	struct ocelot_port *port = netdev_priv(dev);
510 
511 	phy_disconnect(port->phy);
512 
513 	dev->phydev = NULL;
514 
515 	ocelot_port_writel(port, 0, DEV_MAC_ENA_CFG);
516 	ocelot_rmw_rix(port->ocelot, 0, QSYS_SWITCH_PORT_MODE_PORT_ENA,
517 			 QSYS_SWITCH_PORT_MODE, port->chip_port);
518 	return 0;
519 }
520 
521 /* Generate the IFH for frame injection
522  *
523  * The IFH is a 128bit-value
524  * bit 127: bypass the analyzer processing
525  * bit 56-67: destination mask
526  * bit 28-29: pop_cnt: 3 disables all rewriting of the frame
527  * bit 20-27: cpu extraction queue mask
528  * bit 16: tag type 0: C-tag, 1: S-tag
529  * bit 0-11: VID
530  */
531 static int ocelot_gen_ifh(u32 *ifh, struct frame_info *info)
532 {
533 	ifh[0] = IFH_INJ_BYPASS;
534 	ifh[1] = (0xf00 & info->port) >> 8;
535 	ifh[2] = (0xff & info->port) << 24;
536 	ifh[3] = (info->tag_type << 16) | info->vid;
537 
538 	return 0;
539 }
540 
541 static int ocelot_port_xmit(struct sk_buff *skb, struct net_device *dev)
542 {
543 	struct ocelot_port *port = netdev_priv(dev);
544 	struct ocelot *ocelot = port->ocelot;
545 	u32 val, ifh[IFH_LEN];
546 	struct frame_info info = {};
547 	u8 grp = 0; /* Send everything on CPU group 0 */
548 	unsigned int i, count, last;
549 
550 	val = ocelot_read(ocelot, QS_INJ_STATUS);
551 	if (!(val & QS_INJ_STATUS_FIFO_RDY(BIT(grp))) ||
552 	    (val & QS_INJ_STATUS_WMARK_REACHED(BIT(grp))))
553 		return NETDEV_TX_BUSY;
554 
555 	ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
556 			 QS_INJ_CTRL_SOF, QS_INJ_CTRL, grp);
557 
558 	info.port = BIT(port->chip_port);
559 	info.tag_type = IFH_TAG_TYPE_C;
560 	info.vid = skb_vlan_tag_get(skb);
561 	ocelot_gen_ifh(ifh, &info);
562 
563 	for (i = 0; i < IFH_LEN; i++)
564 		ocelot_write_rix(ocelot, (__force u32)cpu_to_be32(ifh[i]),
565 				 QS_INJ_WR, grp);
566 
567 	count = (skb->len + 3) / 4;
568 	last = skb->len % 4;
569 	for (i = 0; i < count; i++) {
570 		ocelot_write_rix(ocelot, ((u32 *)skb->data)[i], QS_INJ_WR, grp);
571 	}
572 
573 	/* Add padding */
574 	while (i < (OCELOT_BUFFER_CELL_SZ / 4)) {
575 		ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
576 		i++;
577 	}
578 
579 	/* Indicate EOF and valid bytes in last word */
580 	ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
581 			 QS_INJ_CTRL_VLD_BYTES(skb->len < OCELOT_BUFFER_CELL_SZ ? 0 : last) |
582 			 QS_INJ_CTRL_EOF,
583 			 QS_INJ_CTRL, grp);
584 
585 	/* Add dummy CRC */
586 	ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
587 	skb_tx_timestamp(skb);
588 
589 	dev->stats.tx_packets++;
590 	dev->stats.tx_bytes += skb->len;
591 	dev_kfree_skb_any(skb);
592 
593 	return NETDEV_TX_OK;
594 }
595 
596 static void ocelot_mact_mc_reset(struct ocelot_port *port)
597 {
598 	struct ocelot *ocelot = port->ocelot;
599 	struct netdev_hw_addr *ha, *n;
600 
601 	/* Free and forget all the MAC addresses stored in the port private mc
602 	 * list. These are mc addresses that were previously added by calling
603 	 * ocelot_mact_mc_add().
604 	 */
605 	list_for_each_entry_safe(ha, n, &port->mc, list) {
606 		ocelot_mact_forget(ocelot, ha->addr, port->pvid);
607 		list_del(&ha->list);
608 		kfree(ha);
609 	}
610 }
611 
612 static int ocelot_mact_mc_add(struct ocelot_port *port,
613 			      struct netdev_hw_addr *hw_addr)
614 {
615 	struct ocelot *ocelot = port->ocelot;
616 	struct netdev_hw_addr *ha = kzalloc(sizeof(*ha), GFP_KERNEL);
617 
618 	if (!ha)
619 		return -ENOMEM;
620 
621 	memcpy(ha, hw_addr, sizeof(*ha));
622 	list_add_tail(&ha->list, &port->mc);
623 
624 	ocelot_mact_learn(ocelot, PGID_CPU, ha->addr, port->pvid,
625 			  ENTRYTYPE_LOCKED);
626 
627 	return 0;
628 }
629 
630 static void ocelot_set_rx_mode(struct net_device *dev)
631 {
632 	struct ocelot_port *port = netdev_priv(dev);
633 	struct ocelot *ocelot = port->ocelot;
634 	struct netdev_hw_addr *ha;
635 	int i;
636 	u32 val;
637 
638 	/* This doesn't handle promiscuous mode because the bridge core is
639 	 * setting IFF_PROMISC on all slave interfaces and all frames would be
640 	 * forwarded to the CPU port.
641 	 */
642 	val = GENMASK(ocelot->num_phys_ports - 1, 0);
643 	for (i = ocelot->num_phys_ports + 1; i < PGID_CPU; i++)
644 		ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i);
645 
646 	/* Handle the device multicast addresses. First remove all the
647 	 * previously installed addresses and then add the latest ones to the
648 	 * mac table.
649 	 */
650 	ocelot_mact_mc_reset(port);
651 	netdev_for_each_mc_addr(ha, dev)
652 		ocelot_mact_mc_add(port, ha);
653 }
654 
655 static int ocelot_port_get_phys_port_name(struct net_device *dev,
656 					  char *buf, size_t len)
657 {
658 	struct ocelot_port *port = netdev_priv(dev);
659 	int ret;
660 
661 	ret = snprintf(buf, len, "p%d", port->chip_port);
662 	if (ret >= len)
663 		return -EINVAL;
664 
665 	return 0;
666 }
667 
668 static int ocelot_port_set_mac_address(struct net_device *dev, void *p)
669 {
670 	struct ocelot_port *port = netdev_priv(dev);
671 	struct ocelot *ocelot = port->ocelot;
672 	const struct sockaddr *addr = p;
673 
674 	/* Learn the new net device MAC address in the mac table. */
675 	ocelot_mact_learn(ocelot, PGID_CPU, addr->sa_data, port->pvid,
676 			  ENTRYTYPE_LOCKED);
677 	/* Then forget the previous one. */
678 	ocelot_mact_forget(ocelot, dev->dev_addr, port->pvid);
679 
680 	ether_addr_copy(dev->dev_addr, addr->sa_data);
681 	return 0;
682 }
683 
684 static void ocelot_get_stats64(struct net_device *dev,
685 			       struct rtnl_link_stats64 *stats)
686 {
687 	struct ocelot_port *port = netdev_priv(dev);
688 	struct ocelot *ocelot = port->ocelot;
689 
690 	/* Configure the port to read the stats from */
691 	ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port->chip_port),
692 		     SYS_STAT_CFG);
693 
694 	/* Get Rx stats */
695 	stats->rx_bytes = ocelot_read(ocelot, SYS_COUNT_RX_OCTETS);
696 	stats->rx_packets = ocelot_read(ocelot, SYS_COUNT_RX_SHORTS) +
697 			    ocelot_read(ocelot, SYS_COUNT_RX_FRAGMENTS) +
698 			    ocelot_read(ocelot, SYS_COUNT_RX_JABBERS) +
699 			    ocelot_read(ocelot, SYS_COUNT_RX_LONGS) +
700 			    ocelot_read(ocelot, SYS_COUNT_RX_64) +
701 			    ocelot_read(ocelot, SYS_COUNT_RX_65_127) +
702 			    ocelot_read(ocelot, SYS_COUNT_RX_128_255) +
703 			    ocelot_read(ocelot, SYS_COUNT_RX_256_1023) +
704 			    ocelot_read(ocelot, SYS_COUNT_RX_1024_1526) +
705 			    ocelot_read(ocelot, SYS_COUNT_RX_1527_MAX);
706 	stats->multicast = ocelot_read(ocelot, SYS_COUNT_RX_MULTICAST);
707 	stats->rx_dropped = dev->stats.rx_dropped;
708 
709 	/* Get Tx stats */
710 	stats->tx_bytes = ocelot_read(ocelot, SYS_COUNT_TX_OCTETS);
711 	stats->tx_packets = ocelot_read(ocelot, SYS_COUNT_TX_64) +
712 			    ocelot_read(ocelot, SYS_COUNT_TX_65_127) +
713 			    ocelot_read(ocelot, SYS_COUNT_TX_128_511) +
714 			    ocelot_read(ocelot, SYS_COUNT_TX_512_1023) +
715 			    ocelot_read(ocelot, SYS_COUNT_TX_1024_1526) +
716 			    ocelot_read(ocelot, SYS_COUNT_TX_1527_MAX);
717 	stats->tx_dropped = ocelot_read(ocelot, SYS_COUNT_TX_DROPS) +
718 			    ocelot_read(ocelot, SYS_COUNT_TX_AGING);
719 	stats->collisions = ocelot_read(ocelot, SYS_COUNT_TX_COLLISION);
720 }
721 
722 static int ocelot_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
723 			  struct net_device *dev, const unsigned char *addr,
724 			  u16 vid, u16 flags,
725 			  struct netlink_ext_ack *extack)
726 {
727 	struct ocelot_port *port = netdev_priv(dev);
728 	struct ocelot *ocelot = port->ocelot;
729 
730 	if (!vid) {
731 		if (!port->vlan_aware)
732 			/* If the bridge is not VLAN aware and no VID was
733 			 * provided, set it to pvid to ensure the MAC entry
734 			 * matches incoming untagged packets
735 			 */
736 			vid = port->pvid;
737 		else
738 			/* If the bridge is VLAN aware a VID must be provided as
739 			 * otherwise the learnt entry wouldn't match any frame.
740 			 */
741 			return -EINVAL;
742 	}
743 
744 	return ocelot_mact_learn(ocelot, port->chip_port, addr, vid,
745 				 ENTRYTYPE_LOCKED);
746 }
747 
748 static int ocelot_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
749 			  struct net_device *dev,
750 			  const unsigned char *addr, u16 vid)
751 {
752 	struct ocelot_port *port = netdev_priv(dev);
753 	struct ocelot *ocelot = port->ocelot;
754 
755 	return ocelot_mact_forget(ocelot, addr, vid);
756 }
757 
758 struct ocelot_dump_ctx {
759 	struct net_device *dev;
760 	struct sk_buff *skb;
761 	struct netlink_callback *cb;
762 	int idx;
763 };
764 
765 static int ocelot_fdb_do_dump(struct ocelot_mact_entry *entry,
766 			      struct ocelot_dump_ctx *dump)
767 {
768 	u32 portid = NETLINK_CB(dump->cb->skb).portid;
769 	u32 seq = dump->cb->nlh->nlmsg_seq;
770 	struct nlmsghdr *nlh;
771 	struct ndmsg *ndm;
772 
773 	if (dump->idx < dump->cb->args[2])
774 		goto skip;
775 
776 	nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
777 			sizeof(*ndm), NLM_F_MULTI);
778 	if (!nlh)
779 		return -EMSGSIZE;
780 
781 	ndm = nlmsg_data(nlh);
782 	ndm->ndm_family  = AF_BRIDGE;
783 	ndm->ndm_pad1    = 0;
784 	ndm->ndm_pad2    = 0;
785 	ndm->ndm_flags   = NTF_SELF;
786 	ndm->ndm_type    = 0;
787 	ndm->ndm_ifindex = dump->dev->ifindex;
788 	ndm->ndm_state   = NUD_REACHABLE;
789 
790 	if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, entry->mac))
791 		goto nla_put_failure;
792 
793 	if (entry->vid && nla_put_u16(dump->skb, NDA_VLAN, entry->vid))
794 		goto nla_put_failure;
795 
796 	nlmsg_end(dump->skb, nlh);
797 
798 skip:
799 	dump->idx++;
800 	return 0;
801 
802 nla_put_failure:
803 	nlmsg_cancel(dump->skb, nlh);
804 	return -EMSGSIZE;
805 }
806 
807 static inline int ocelot_mact_read(struct ocelot_port *port, int row, int col,
808 				   struct ocelot_mact_entry *entry)
809 {
810 	struct ocelot *ocelot = port->ocelot;
811 	char mac[ETH_ALEN];
812 	u32 val, dst, macl, mach;
813 
814 	/* Set row and column to read from */
815 	ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_M_INDEX, row);
816 	ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_BUCKET, col);
817 
818 	/* Issue a read command */
819 	ocelot_write(ocelot,
820 		     ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
821 		     ANA_TABLES_MACACCESS);
822 
823 	if (ocelot_mact_wait_for_completion(ocelot))
824 		return -ETIMEDOUT;
825 
826 	/* Read the entry flags */
827 	val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
828 	if (!(val & ANA_TABLES_MACACCESS_VALID))
829 		return -EINVAL;
830 
831 	/* If the entry read has another port configured as its destination,
832 	 * do not report it.
833 	 */
834 	dst = (val & ANA_TABLES_MACACCESS_DEST_IDX_M) >> 3;
835 	if (dst != port->chip_port)
836 		return -EINVAL;
837 
838 	/* Get the entry's MAC address and VLAN id */
839 	macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA);
840 	mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA);
841 
842 	mac[0] = (mach >> 8)  & 0xff;
843 	mac[1] = (mach >> 0)  & 0xff;
844 	mac[2] = (macl >> 24) & 0xff;
845 	mac[3] = (macl >> 16) & 0xff;
846 	mac[4] = (macl >> 8)  & 0xff;
847 	mac[5] = (macl >> 0)  & 0xff;
848 
849 	entry->vid = (mach >> 16) & 0xfff;
850 	ether_addr_copy(entry->mac, mac);
851 
852 	return 0;
853 }
854 
855 static int ocelot_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
856 			   struct net_device *dev,
857 			   struct net_device *filter_dev, int *idx)
858 {
859 	struct ocelot_port *port = netdev_priv(dev);
860 	int i, j, ret = 0;
861 	struct ocelot_dump_ctx dump = {
862 		.dev = dev,
863 		.skb = skb,
864 		.cb = cb,
865 		.idx = *idx,
866 	};
867 
868 	struct ocelot_mact_entry entry;
869 
870 	/* Loop through all the mac tables entries. There are 1024 rows of 4
871 	 * entries.
872 	 */
873 	for (i = 0; i < 1024; i++) {
874 		for (j = 0; j < 4; j++) {
875 			ret = ocelot_mact_read(port, i, j, &entry);
876 			/* If the entry is invalid (wrong port, invalid...),
877 			 * skip it.
878 			 */
879 			if (ret == -EINVAL)
880 				continue;
881 			else if (ret)
882 				goto end;
883 
884 			ret = ocelot_fdb_do_dump(&entry, &dump);
885 			if (ret)
886 				goto end;
887 		}
888 	}
889 
890 end:
891 	*idx = dump.idx;
892 	return ret;
893 }
894 
895 static int ocelot_vlan_rx_add_vid(struct net_device *dev, __be16 proto,
896 				  u16 vid)
897 {
898 	return ocelot_vlan_vid_add(dev, vid, false, true);
899 }
900 
901 static int ocelot_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
902 				   u16 vid)
903 {
904 	return ocelot_vlan_vid_del(dev, vid);
905 }
906 
907 static int ocelot_set_features(struct net_device *dev,
908 			       netdev_features_t features)
909 {
910 	struct ocelot_port *port = netdev_priv(dev);
911 	netdev_features_t changed = dev->features ^ features;
912 
913 	if (changed & NETIF_F_HW_VLAN_CTAG_FILTER)
914 		ocelot_vlan_mode(port, features);
915 
916 	return 0;
917 }
918 
919 static const struct net_device_ops ocelot_port_netdev_ops = {
920 	.ndo_open			= ocelot_port_open,
921 	.ndo_stop			= ocelot_port_stop,
922 	.ndo_start_xmit			= ocelot_port_xmit,
923 	.ndo_set_rx_mode		= ocelot_set_rx_mode,
924 	.ndo_get_phys_port_name		= ocelot_port_get_phys_port_name,
925 	.ndo_set_mac_address		= ocelot_port_set_mac_address,
926 	.ndo_get_stats64		= ocelot_get_stats64,
927 	.ndo_fdb_add			= ocelot_fdb_add,
928 	.ndo_fdb_del			= ocelot_fdb_del,
929 	.ndo_fdb_dump			= ocelot_fdb_dump,
930 	.ndo_vlan_rx_add_vid		= ocelot_vlan_rx_add_vid,
931 	.ndo_vlan_rx_kill_vid		= ocelot_vlan_rx_kill_vid,
932 	.ndo_set_features		= ocelot_set_features,
933 };
934 
935 static void ocelot_get_strings(struct net_device *netdev, u32 sset, u8 *data)
936 {
937 	struct ocelot_port *port = netdev_priv(netdev);
938 	struct ocelot *ocelot = port->ocelot;
939 	int i;
940 
941 	if (sset != ETH_SS_STATS)
942 		return;
943 
944 	for (i = 0; i < ocelot->num_stats; i++)
945 		memcpy(data + i * ETH_GSTRING_LEN, ocelot->stats_layout[i].name,
946 		       ETH_GSTRING_LEN);
947 }
948 
949 static void ocelot_check_stats(struct work_struct *work)
950 {
951 	struct delayed_work *del_work = to_delayed_work(work);
952 	struct ocelot *ocelot = container_of(del_work, struct ocelot, stats_work);
953 	int i, j;
954 
955 	mutex_lock(&ocelot->stats_lock);
956 
957 	for (i = 0; i < ocelot->num_phys_ports; i++) {
958 		/* Configure the port to read the stats from */
959 		ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG);
960 
961 		for (j = 0; j < ocelot->num_stats; j++) {
962 			u32 val;
963 			unsigned int idx = i * ocelot->num_stats + j;
964 
965 			val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS,
966 					      ocelot->stats_layout[j].offset);
967 
968 			if (val < (ocelot->stats[idx] & U32_MAX))
969 				ocelot->stats[idx] += (u64)1 << 32;
970 
971 			ocelot->stats[idx] = (ocelot->stats[idx] &
972 					      ~(u64)U32_MAX) + val;
973 		}
974 	}
975 
976 	cancel_delayed_work(&ocelot->stats_work);
977 	queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
978 			   OCELOT_STATS_CHECK_DELAY);
979 
980 	mutex_unlock(&ocelot->stats_lock);
981 }
982 
983 static void ocelot_get_ethtool_stats(struct net_device *dev,
984 				     struct ethtool_stats *stats, u64 *data)
985 {
986 	struct ocelot_port *port = netdev_priv(dev);
987 	struct ocelot *ocelot = port->ocelot;
988 	int i;
989 
990 	/* check and update now */
991 	ocelot_check_stats(&ocelot->stats_work.work);
992 
993 	/* Copy all counters */
994 	for (i = 0; i < ocelot->num_stats; i++)
995 		*data++ = ocelot->stats[port->chip_port * ocelot->num_stats + i];
996 }
997 
998 static int ocelot_get_sset_count(struct net_device *dev, int sset)
999 {
1000 	struct ocelot_port *port = netdev_priv(dev);
1001 	struct ocelot *ocelot = port->ocelot;
1002 
1003 	if (sset != ETH_SS_STATS)
1004 		return -EOPNOTSUPP;
1005 	return ocelot->num_stats;
1006 }
1007 
1008 static const struct ethtool_ops ocelot_ethtool_ops = {
1009 	.get_strings		= ocelot_get_strings,
1010 	.get_ethtool_stats	= ocelot_get_ethtool_stats,
1011 	.get_sset_count		= ocelot_get_sset_count,
1012 	.get_link_ksettings	= phy_ethtool_get_link_ksettings,
1013 	.set_link_ksettings	= phy_ethtool_set_link_ksettings,
1014 };
1015 
1016 static int ocelot_port_attr_get(struct net_device *dev,
1017 				struct switchdev_attr *attr)
1018 {
1019 	struct ocelot_port *ocelot_port = netdev_priv(dev);
1020 	struct ocelot *ocelot = ocelot_port->ocelot;
1021 
1022 	switch (attr->id) {
1023 	case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
1024 		attr->u.ppid.id_len = sizeof(ocelot->base_mac);
1025 		memcpy(&attr->u.ppid.id, &ocelot->base_mac,
1026 		       attr->u.ppid.id_len);
1027 		break;
1028 	default:
1029 		return -EOPNOTSUPP;
1030 	}
1031 
1032 	return 0;
1033 }
1034 
1035 static int ocelot_port_attr_stp_state_set(struct ocelot_port *ocelot_port,
1036 					  struct switchdev_trans *trans,
1037 					  u8 state)
1038 {
1039 	struct ocelot *ocelot = ocelot_port->ocelot;
1040 	u32 port_cfg;
1041 	int port, i;
1042 
1043 	if (switchdev_trans_ph_prepare(trans))
1044 		return 0;
1045 
1046 	if (!(BIT(ocelot_port->chip_port) & ocelot->bridge_mask))
1047 		return 0;
1048 
1049 	port_cfg = ocelot_read_gix(ocelot, ANA_PORT_PORT_CFG,
1050 				   ocelot_port->chip_port);
1051 
1052 	switch (state) {
1053 	case BR_STATE_FORWARDING:
1054 		ocelot->bridge_fwd_mask |= BIT(ocelot_port->chip_port);
1055 		/* Fallthrough */
1056 	case BR_STATE_LEARNING:
1057 		port_cfg |= ANA_PORT_PORT_CFG_LEARN_ENA;
1058 		break;
1059 
1060 	default:
1061 		port_cfg &= ~ANA_PORT_PORT_CFG_LEARN_ENA;
1062 		ocelot->bridge_fwd_mask &= ~BIT(ocelot_port->chip_port);
1063 		break;
1064 	}
1065 
1066 	ocelot_write_gix(ocelot, port_cfg, ANA_PORT_PORT_CFG,
1067 			 ocelot_port->chip_port);
1068 
1069 	/* Apply FWD mask. The loop is needed to add/remove the current port as
1070 	 * a source for the other ports.
1071 	 */
1072 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1073 		if (ocelot->bridge_fwd_mask & BIT(port)) {
1074 			unsigned long mask = ocelot->bridge_fwd_mask & ~BIT(port);
1075 
1076 			for (i = 0; i < ocelot->num_phys_ports; i++) {
1077 				unsigned long bond_mask = ocelot->lags[i];
1078 
1079 				if (!bond_mask)
1080 					continue;
1081 
1082 				if (bond_mask & BIT(port)) {
1083 					mask &= ~bond_mask;
1084 					break;
1085 				}
1086 			}
1087 
1088 			ocelot_write_rix(ocelot,
1089 					 BIT(ocelot->num_phys_ports) | mask,
1090 					 ANA_PGID_PGID, PGID_SRC + port);
1091 		} else {
1092 			/* Only the CPU port, this is compatible with link
1093 			 * aggregation.
1094 			 */
1095 			ocelot_write_rix(ocelot,
1096 					 BIT(ocelot->num_phys_ports),
1097 					 ANA_PGID_PGID, PGID_SRC + port);
1098 		}
1099 	}
1100 
1101 	return 0;
1102 }
1103 
1104 static void ocelot_port_attr_ageing_set(struct ocelot_port *ocelot_port,
1105 					unsigned long ageing_clock_t)
1106 {
1107 	struct ocelot *ocelot = ocelot_port->ocelot;
1108 	unsigned long ageing_jiffies = clock_t_to_jiffies(ageing_clock_t);
1109 	u32 ageing_time = jiffies_to_msecs(ageing_jiffies) / 1000;
1110 
1111 	ocelot_write(ocelot, ANA_AUTOAGE_AGE_PERIOD(ageing_time / 2),
1112 		     ANA_AUTOAGE);
1113 }
1114 
1115 static void ocelot_port_attr_mc_set(struct ocelot_port *port, bool mc)
1116 {
1117 	struct ocelot *ocelot = port->ocelot;
1118 	u32 val = ocelot_read_gix(ocelot, ANA_PORT_CPU_FWD_CFG,
1119 				  port->chip_port);
1120 
1121 	if (mc)
1122 		val |= ANA_PORT_CPU_FWD_CFG_CPU_IGMP_REDIR_ENA |
1123 		       ANA_PORT_CPU_FWD_CFG_CPU_MLD_REDIR_ENA |
1124 		       ANA_PORT_CPU_FWD_CFG_CPU_IPMC_CTRL_COPY_ENA;
1125 	else
1126 		val &= ~(ANA_PORT_CPU_FWD_CFG_CPU_IGMP_REDIR_ENA |
1127 			 ANA_PORT_CPU_FWD_CFG_CPU_MLD_REDIR_ENA |
1128 			 ANA_PORT_CPU_FWD_CFG_CPU_IPMC_CTRL_COPY_ENA);
1129 
1130 	ocelot_write_gix(ocelot, val, ANA_PORT_CPU_FWD_CFG, port->chip_port);
1131 }
1132 
1133 static int ocelot_port_attr_set(struct net_device *dev,
1134 				const struct switchdev_attr *attr,
1135 				struct switchdev_trans *trans)
1136 {
1137 	struct ocelot_port *ocelot_port = netdev_priv(dev);
1138 	int err = 0;
1139 
1140 	switch (attr->id) {
1141 	case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
1142 		ocelot_port_attr_stp_state_set(ocelot_port, trans,
1143 					       attr->u.stp_state);
1144 		break;
1145 	case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
1146 		ocelot_port_attr_ageing_set(ocelot_port, attr->u.ageing_time);
1147 		break;
1148 	case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
1149 		ocelot_port->vlan_aware = attr->u.vlan_filtering;
1150 		ocelot_vlan_port_apply(ocelot_port->ocelot, ocelot_port);
1151 		break;
1152 	case SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED:
1153 		ocelot_port_attr_mc_set(ocelot_port, !attr->u.mc_disabled);
1154 		break;
1155 	default:
1156 		err = -EOPNOTSUPP;
1157 		break;
1158 	}
1159 
1160 	return err;
1161 }
1162 
1163 static int ocelot_port_obj_add_vlan(struct net_device *dev,
1164 				    const struct switchdev_obj_port_vlan *vlan,
1165 				    struct switchdev_trans *trans)
1166 {
1167 	int ret;
1168 	u16 vid;
1169 
1170 	for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
1171 		ret = ocelot_vlan_vid_add(dev, vid,
1172 					  vlan->flags & BRIDGE_VLAN_INFO_PVID,
1173 					  vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED);
1174 		if (ret)
1175 			return ret;
1176 	}
1177 
1178 	return 0;
1179 }
1180 
1181 static int ocelot_port_vlan_del_vlan(struct net_device *dev,
1182 				     const struct switchdev_obj_port_vlan *vlan)
1183 {
1184 	int ret;
1185 	u16 vid;
1186 
1187 	for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
1188 		ret = ocelot_vlan_vid_del(dev, vid);
1189 
1190 		if (ret)
1191 			return ret;
1192 	}
1193 
1194 	return 0;
1195 }
1196 
1197 static struct ocelot_multicast *ocelot_multicast_get(struct ocelot *ocelot,
1198 						     const unsigned char *addr,
1199 						     u16 vid)
1200 {
1201 	struct ocelot_multicast *mc;
1202 
1203 	list_for_each_entry(mc, &ocelot->multicast, list) {
1204 		if (ether_addr_equal(mc->addr, addr) && mc->vid == vid)
1205 			return mc;
1206 	}
1207 
1208 	return NULL;
1209 }
1210 
1211 static int ocelot_port_obj_add_mdb(struct net_device *dev,
1212 				   const struct switchdev_obj_port_mdb *mdb,
1213 				   struct switchdev_trans *trans)
1214 {
1215 	struct ocelot_port *port = netdev_priv(dev);
1216 	struct ocelot *ocelot = port->ocelot;
1217 	struct ocelot_multicast *mc;
1218 	unsigned char addr[ETH_ALEN];
1219 	u16 vid = mdb->vid;
1220 	bool new = false;
1221 
1222 	if (!vid)
1223 		vid = port->pvid;
1224 
1225 	mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1226 	if (!mc) {
1227 		mc = devm_kzalloc(ocelot->dev, sizeof(*mc), GFP_KERNEL);
1228 		if (!mc)
1229 			return -ENOMEM;
1230 
1231 		memcpy(mc->addr, mdb->addr, ETH_ALEN);
1232 		mc->vid = vid;
1233 
1234 		list_add_tail(&mc->list, &ocelot->multicast);
1235 		new = true;
1236 	}
1237 
1238 	memcpy(addr, mc->addr, ETH_ALEN);
1239 	addr[0] = 0;
1240 
1241 	if (!new) {
1242 		addr[2] = mc->ports << 0;
1243 		addr[1] = mc->ports << 8;
1244 		ocelot_mact_forget(ocelot, addr, vid);
1245 	}
1246 
1247 	mc->ports |= BIT(port->chip_port);
1248 	addr[2] = mc->ports << 0;
1249 	addr[1] = mc->ports << 8;
1250 
1251 	return ocelot_mact_learn(ocelot, 0, addr, vid, ENTRYTYPE_MACv4);
1252 }
1253 
1254 static int ocelot_port_obj_del_mdb(struct net_device *dev,
1255 				   const struct switchdev_obj_port_mdb *mdb)
1256 {
1257 	struct ocelot_port *port = netdev_priv(dev);
1258 	struct ocelot *ocelot = port->ocelot;
1259 	struct ocelot_multicast *mc;
1260 	unsigned char addr[ETH_ALEN];
1261 	u16 vid = mdb->vid;
1262 
1263 	if (!vid)
1264 		vid = port->pvid;
1265 
1266 	mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
1267 	if (!mc)
1268 		return -ENOENT;
1269 
1270 	memcpy(addr, mc->addr, ETH_ALEN);
1271 	addr[2] = mc->ports << 0;
1272 	addr[1] = mc->ports << 8;
1273 	addr[0] = 0;
1274 	ocelot_mact_forget(ocelot, addr, vid);
1275 
1276 	mc->ports &= ~BIT(port->chip_port);
1277 	if (!mc->ports) {
1278 		list_del(&mc->list);
1279 		devm_kfree(ocelot->dev, mc);
1280 		return 0;
1281 	}
1282 
1283 	addr[2] = mc->ports << 0;
1284 	addr[1] = mc->ports << 8;
1285 
1286 	return ocelot_mact_learn(ocelot, 0, addr, vid, ENTRYTYPE_MACv4);
1287 }
1288 
1289 static int ocelot_port_obj_add(struct net_device *dev,
1290 			       const struct switchdev_obj *obj,
1291 			       struct switchdev_trans *trans,
1292 			       struct netlink_ext_ack *extack)
1293 {
1294 	int ret = 0;
1295 
1296 	switch (obj->id) {
1297 	case SWITCHDEV_OBJ_ID_PORT_VLAN:
1298 		ret = ocelot_port_obj_add_vlan(dev,
1299 					       SWITCHDEV_OBJ_PORT_VLAN(obj),
1300 					       trans);
1301 		break;
1302 	case SWITCHDEV_OBJ_ID_PORT_MDB:
1303 		ret = ocelot_port_obj_add_mdb(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
1304 					      trans);
1305 		break;
1306 	default:
1307 		return -EOPNOTSUPP;
1308 	}
1309 
1310 	return ret;
1311 }
1312 
1313 static int ocelot_port_obj_del(struct net_device *dev,
1314 			       const struct switchdev_obj *obj)
1315 {
1316 	int ret = 0;
1317 
1318 	switch (obj->id) {
1319 	case SWITCHDEV_OBJ_ID_PORT_VLAN:
1320 		ret = ocelot_port_vlan_del_vlan(dev,
1321 						SWITCHDEV_OBJ_PORT_VLAN(obj));
1322 		break;
1323 	case SWITCHDEV_OBJ_ID_PORT_MDB:
1324 		ret = ocelot_port_obj_del_mdb(dev, SWITCHDEV_OBJ_PORT_MDB(obj));
1325 		break;
1326 	default:
1327 		return -EOPNOTSUPP;
1328 	}
1329 
1330 	return ret;
1331 }
1332 
1333 static const struct switchdev_ops ocelot_port_switchdev_ops = {
1334 	.switchdev_port_attr_get	= ocelot_port_attr_get,
1335 	.switchdev_port_attr_set	= ocelot_port_attr_set,
1336 };
1337 
1338 static int ocelot_port_bridge_join(struct ocelot_port *ocelot_port,
1339 				   struct net_device *bridge)
1340 {
1341 	struct ocelot *ocelot = ocelot_port->ocelot;
1342 
1343 	if (!ocelot->bridge_mask) {
1344 		ocelot->hw_bridge_dev = bridge;
1345 	} else {
1346 		if (ocelot->hw_bridge_dev != bridge)
1347 			/* This is adding the port to a second bridge, this is
1348 			 * unsupported */
1349 			return -ENODEV;
1350 	}
1351 
1352 	ocelot->bridge_mask |= BIT(ocelot_port->chip_port);
1353 
1354 	return 0;
1355 }
1356 
1357 static void ocelot_port_bridge_leave(struct ocelot_port *ocelot_port,
1358 				     struct net_device *bridge)
1359 {
1360 	struct ocelot *ocelot = ocelot_port->ocelot;
1361 
1362 	ocelot->bridge_mask &= ~BIT(ocelot_port->chip_port);
1363 
1364 	if (!ocelot->bridge_mask)
1365 		ocelot->hw_bridge_dev = NULL;
1366 
1367 	/* Clear bridge vlan settings before calling ocelot_vlan_port_apply */
1368 	ocelot_port->vlan_aware = 0;
1369 	ocelot_port->pvid = 0;
1370 	ocelot_port->vid = 0;
1371 }
1372 
1373 static void ocelot_set_aggr_pgids(struct ocelot *ocelot)
1374 {
1375 	int i, port, lag;
1376 
1377 	/* Reset destination and aggregation PGIDS */
1378 	for (port = 0; port < ocelot->num_phys_ports; port++)
1379 		ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
1380 
1381 	for (i = PGID_AGGR; i < PGID_SRC; i++)
1382 		ocelot_write_rix(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
1383 				 ANA_PGID_PGID, i);
1384 
1385 	/* Now, set PGIDs for each LAG */
1386 	for (lag = 0; lag < ocelot->num_phys_ports; lag++) {
1387 		unsigned long bond_mask;
1388 		int aggr_count = 0;
1389 		u8 aggr_idx[16];
1390 
1391 		bond_mask = ocelot->lags[lag];
1392 		if (!bond_mask)
1393 			continue;
1394 
1395 		for_each_set_bit(port, &bond_mask, ocelot->num_phys_ports) {
1396 			// Destination mask
1397 			ocelot_write_rix(ocelot, bond_mask,
1398 					 ANA_PGID_PGID, port);
1399 			aggr_idx[aggr_count] = port;
1400 			aggr_count++;
1401 		}
1402 
1403 		for (i = PGID_AGGR; i < PGID_SRC; i++) {
1404 			u32 ac;
1405 
1406 			ac = ocelot_read_rix(ocelot, ANA_PGID_PGID, i);
1407 			ac &= ~bond_mask;
1408 			ac |= BIT(aggr_idx[i % aggr_count]);
1409 			ocelot_write_rix(ocelot, ac, ANA_PGID_PGID, i);
1410 		}
1411 	}
1412 }
1413 
1414 static void ocelot_setup_lag(struct ocelot *ocelot, int lag)
1415 {
1416 	unsigned long bond_mask = ocelot->lags[lag];
1417 	unsigned int p;
1418 
1419 	for_each_set_bit(p, &bond_mask, ocelot->num_phys_ports) {
1420 		u32 port_cfg = ocelot_read_gix(ocelot, ANA_PORT_PORT_CFG, p);
1421 
1422 		port_cfg &= ~ANA_PORT_PORT_CFG_PORTID_VAL_M;
1423 
1424 		/* Use lag port as logical port for port i */
1425 		ocelot_write_gix(ocelot, port_cfg |
1426 				 ANA_PORT_PORT_CFG_PORTID_VAL(lag),
1427 				 ANA_PORT_PORT_CFG, p);
1428 	}
1429 }
1430 
1431 static int ocelot_port_lag_join(struct ocelot_port *ocelot_port,
1432 				struct net_device *bond)
1433 {
1434 	struct ocelot *ocelot = ocelot_port->ocelot;
1435 	int p = ocelot_port->chip_port;
1436 	int lag, lp;
1437 	struct net_device *ndev;
1438 	u32 bond_mask = 0;
1439 
1440 	rcu_read_lock();
1441 	for_each_netdev_in_bond_rcu(bond, ndev) {
1442 		struct ocelot_port *port = netdev_priv(ndev);
1443 
1444 		bond_mask |= BIT(port->chip_port);
1445 	}
1446 	rcu_read_unlock();
1447 
1448 	lp = __ffs(bond_mask);
1449 
1450 	/* If the new port is the lowest one, use it as the logical port from
1451 	 * now on
1452 	 */
1453 	if (p == lp) {
1454 		lag = p;
1455 		ocelot->lags[p] = bond_mask;
1456 		bond_mask &= ~BIT(p);
1457 		if (bond_mask) {
1458 			lp = __ffs(bond_mask);
1459 			ocelot->lags[lp] = 0;
1460 		}
1461 	} else {
1462 		lag = lp;
1463 		ocelot->lags[lp] |= BIT(p);
1464 	}
1465 
1466 	ocelot_setup_lag(ocelot, lag);
1467 	ocelot_set_aggr_pgids(ocelot);
1468 
1469 	return 0;
1470 }
1471 
1472 static void ocelot_port_lag_leave(struct ocelot_port *ocelot_port,
1473 				  struct net_device *bond)
1474 {
1475 	struct ocelot *ocelot = ocelot_port->ocelot;
1476 	int p = ocelot_port->chip_port;
1477 	u32 port_cfg;
1478 	int i;
1479 
1480 	/* Remove port from any lag */
1481 	for (i = 0; i < ocelot->num_phys_ports; i++)
1482 		ocelot->lags[i] &= ~BIT(ocelot_port->chip_port);
1483 
1484 	/* if it was the logical port of the lag, move the lag config to the
1485 	 * next port
1486 	 */
1487 	if (ocelot->lags[p]) {
1488 		int n = __ffs(ocelot->lags[p]);
1489 
1490 		ocelot->lags[n] = ocelot->lags[p];
1491 		ocelot->lags[p] = 0;
1492 
1493 		ocelot_setup_lag(ocelot, n);
1494 	}
1495 
1496 	port_cfg = ocelot_read_gix(ocelot, ANA_PORT_PORT_CFG, p);
1497 	port_cfg &= ~ANA_PORT_PORT_CFG_PORTID_VAL_M;
1498 	ocelot_write_gix(ocelot, port_cfg | ANA_PORT_PORT_CFG_PORTID_VAL(p),
1499 			 ANA_PORT_PORT_CFG, p);
1500 
1501 	ocelot_set_aggr_pgids(ocelot);
1502 }
1503 
1504 /* Checks if the net_device instance given to us originate from our driver. */
1505 static bool ocelot_netdevice_dev_check(const struct net_device *dev)
1506 {
1507 	return dev->netdev_ops == &ocelot_port_netdev_ops;
1508 }
1509 
1510 static int ocelot_netdevice_port_event(struct net_device *dev,
1511 				       unsigned long event,
1512 				       struct netdev_notifier_changeupper_info *info)
1513 {
1514 	struct ocelot_port *ocelot_port = netdev_priv(dev);
1515 	int err = 0;
1516 
1517 	if (!ocelot_netdevice_dev_check(dev))
1518 		return 0;
1519 
1520 	switch (event) {
1521 	case NETDEV_CHANGEUPPER:
1522 		if (netif_is_bridge_master(info->upper_dev)) {
1523 			if (info->linking)
1524 				err = ocelot_port_bridge_join(ocelot_port,
1525 							      info->upper_dev);
1526 			else
1527 				ocelot_port_bridge_leave(ocelot_port,
1528 							 info->upper_dev);
1529 
1530 			ocelot_vlan_port_apply(ocelot_port->ocelot,
1531 					       ocelot_port);
1532 		}
1533 		if (netif_is_lag_master(info->upper_dev)) {
1534 			if (info->linking)
1535 				err = ocelot_port_lag_join(ocelot_port,
1536 							   info->upper_dev);
1537 			else
1538 				ocelot_port_lag_leave(ocelot_port,
1539 						      info->upper_dev);
1540 		}
1541 		break;
1542 	default:
1543 		break;
1544 	}
1545 
1546 	return err;
1547 }
1548 
1549 static int ocelot_netdevice_event(struct notifier_block *unused,
1550 				  unsigned long event, void *ptr)
1551 {
1552 	struct netdev_notifier_changeupper_info *info = ptr;
1553 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1554 	int ret = 0;
1555 
1556 	if (event == NETDEV_PRECHANGEUPPER &&
1557 	    netif_is_lag_master(info->upper_dev)) {
1558 		struct netdev_lag_upper_info *lag_upper_info = info->upper_info;
1559 		struct netlink_ext_ack *extack;
1560 
1561 		if (lag_upper_info->tx_type != NETDEV_LAG_TX_TYPE_HASH) {
1562 			extack = netdev_notifier_info_to_extack(&info->info);
1563 			NL_SET_ERR_MSG_MOD(extack, "LAG device using unsupported Tx type");
1564 
1565 			ret = -EINVAL;
1566 			goto notify;
1567 		}
1568 	}
1569 
1570 	if (netif_is_lag_master(dev)) {
1571 		struct net_device *slave;
1572 		struct list_head *iter;
1573 
1574 		netdev_for_each_lower_dev(dev, slave, iter) {
1575 			ret = ocelot_netdevice_port_event(slave, event, info);
1576 			if (ret)
1577 				goto notify;
1578 		}
1579 	} else {
1580 		ret = ocelot_netdevice_port_event(dev, event, info);
1581 	}
1582 
1583 notify:
1584 	return notifier_from_errno(ret);
1585 }
1586 
1587 struct notifier_block ocelot_netdevice_nb __read_mostly = {
1588 	.notifier_call = ocelot_netdevice_event,
1589 };
1590 EXPORT_SYMBOL(ocelot_netdevice_nb);
1591 
1592 static int ocelot_switchdev_blocking_event(struct notifier_block *unused,
1593 					   unsigned long event, void *ptr)
1594 {
1595 	struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1596 	int err;
1597 
1598 	switch (event) {
1599 		/* Blocking events. */
1600 	case SWITCHDEV_PORT_OBJ_ADD:
1601 		err = switchdev_handle_port_obj_add(dev, ptr,
1602 						    ocelot_netdevice_dev_check,
1603 						    ocelot_port_obj_add);
1604 		return notifier_from_errno(err);
1605 	case SWITCHDEV_PORT_OBJ_DEL:
1606 		err = switchdev_handle_port_obj_del(dev, ptr,
1607 						    ocelot_netdevice_dev_check,
1608 						    ocelot_port_obj_del);
1609 		return notifier_from_errno(err);
1610 	}
1611 
1612 	return NOTIFY_DONE;
1613 }
1614 
1615 struct notifier_block ocelot_switchdev_blocking_nb __read_mostly = {
1616 	.notifier_call = ocelot_switchdev_blocking_event,
1617 };
1618 EXPORT_SYMBOL(ocelot_switchdev_blocking_nb);
1619 
1620 int ocelot_probe_port(struct ocelot *ocelot, u8 port,
1621 		      void __iomem *regs,
1622 		      struct phy_device *phy)
1623 {
1624 	struct ocelot_port *ocelot_port;
1625 	struct net_device *dev;
1626 	int err;
1627 
1628 	dev = alloc_etherdev(sizeof(struct ocelot_port));
1629 	if (!dev)
1630 		return -ENOMEM;
1631 	SET_NETDEV_DEV(dev, ocelot->dev);
1632 	ocelot_port = netdev_priv(dev);
1633 	ocelot_port->dev = dev;
1634 	ocelot_port->ocelot = ocelot;
1635 	ocelot_port->regs = regs;
1636 	ocelot_port->chip_port = port;
1637 	ocelot_port->phy = phy;
1638 	INIT_LIST_HEAD(&ocelot_port->mc);
1639 	ocelot->ports[port] = ocelot_port;
1640 
1641 	dev->netdev_ops = &ocelot_port_netdev_ops;
1642 	dev->ethtool_ops = &ocelot_ethtool_ops;
1643 	dev->switchdev_ops = &ocelot_port_switchdev_ops;
1644 
1645 	dev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_RXFCS;
1646 	dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
1647 
1648 	memcpy(dev->dev_addr, ocelot->base_mac, ETH_ALEN);
1649 	dev->dev_addr[ETH_ALEN - 1] += port;
1650 	ocelot_mact_learn(ocelot, PGID_CPU, dev->dev_addr, ocelot_port->pvid,
1651 			  ENTRYTYPE_LOCKED);
1652 
1653 	err = register_netdev(dev);
1654 	if (err) {
1655 		dev_err(ocelot->dev, "register_netdev failed\n");
1656 		goto err_register_netdev;
1657 	}
1658 
1659 	/* Basic L2 initialization */
1660 	ocelot_vlan_port_apply(ocelot, ocelot_port);
1661 
1662 	return 0;
1663 
1664 err_register_netdev:
1665 	free_netdev(dev);
1666 	return err;
1667 }
1668 EXPORT_SYMBOL(ocelot_probe_port);
1669 
1670 int ocelot_init(struct ocelot *ocelot)
1671 {
1672 	u32 port;
1673 	int i, cpu = ocelot->num_phys_ports;
1674 	char queue_name[32];
1675 
1676 	ocelot->lags = devm_kcalloc(ocelot->dev, ocelot->num_phys_ports,
1677 				    sizeof(u32), GFP_KERNEL);
1678 	if (!ocelot->lags)
1679 		return -ENOMEM;
1680 
1681 	ocelot->stats = devm_kcalloc(ocelot->dev,
1682 				     ocelot->num_phys_ports * ocelot->num_stats,
1683 				     sizeof(u64), GFP_KERNEL);
1684 	if (!ocelot->stats)
1685 		return -ENOMEM;
1686 
1687 	mutex_init(&ocelot->stats_lock);
1688 	snprintf(queue_name, sizeof(queue_name), "%s-stats",
1689 		 dev_name(ocelot->dev));
1690 	ocelot->stats_queue = create_singlethread_workqueue(queue_name);
1691 	if (!ocelot->stats_queue)
1692 		return -ENOMEM;
1693 
1694 	ocelot_mact_init(ocelot);
1695 	ocelot_vlan_init(ocelot);
1696 
1697 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1698 		/* Clear all counters (5 groups) */
1699 		ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port) |
1700 				     SYS_STAT_CFG_STAT_CLEAR_SHOT(0x7f),
1701 			     SYS_STAT_CFG);
1702 	}
1703 
1704 	/* Only use S-Tag */
1705 	ocelot_write(ocelot, ETH_P_8021AD, SYS_VLAN_ETYPE_CFG);
1706 
1707 	/* Aggregation mode */
1708 	ocelot_write(ocelot, ANA_AGGR_CFG_AC_SMAC_ENA |
1709 			     ANA_AGGR_CFG_AC_DMAC_ENA |
1710 			     ANA_AGGR_CFG_AC_IP4_SIPDIP_ENA |
1711 			     ANA_AGGR_CFG_AC_IP4_TCPUDP_ENA, ANA_AGGR_CFG);
1712 
1713 	/* Set MAC age time to default value. The entry is aged after
1714 	 * 2*AGE_PERIOD
1715 	 */
1716 	ocelot_write(ocelot,
1717 		     ANA_AUTOAGE_AGE_PERIOD(BR_DEFAULT_AGEING_TIME / 2 / HZ),
1718 		     ANA_AUTOAGE);
1719 
1720 	/* Disable learning for frames discarded by VLAN ingress filtering */
1721 	regmap_field_write(ocelot->regfields[ANA_ADVLEARN_VLAN_CHK], 1);
1722 
1723 	/* Setup frame ageing - fixed value "2 sec" - in 6.5 us units */
1724 	ocelot_write(ocelot, SYS_FRM_AGING_AGE_TX_ENA |
1725 		     SYS_FRM_AGING_MAX_AGE(307692), SYS_FRM_AGING);
1726 
1727 	/* Setup flooding PGIDs */
1728 	ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) |
1729 			 ANA_FLOODING_FLD_BROADCAST(PGID_MC) |
1730 			 ANA_FLOODING_FLD_UNICAST(PGID_UC),
1731 			 ANA_FLOODING, 0);
1732 	ocelot_write(ocelot, ANA_FLOODING_IPMC_FLD_MC6_DATA(PGID_MCIPV6) |
1733 		     ANA_FLOODING_IPMC_FLD_MC6_CTRL(PGID_MC) |
1734 		     ANA_FLOODING_IPMC_FLD_MC4_DATA(PGID_MCIPV4) |
1735 		     ANA_FLOODING_IPMC_FLD_MC4_CTRL(PGID_MC),
1736 		     ANA_FLOODING_IPMC);
1737 
1738 	for (port = 0; port < ocelot->num_phys_ports; port++) {
1739 		/* Transmit the frame to the local port. */
1740 		ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
1741 		/* Do not forward BPDU frames to the front ports. */
1742 		ocelot_write_gix(ocelot,
1743 				 ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff),
1744 				 ANA_PORT_CPU_FWD_BPDU_CFG,
1745 				 port);
1746 		/* Ensure bridging is disabled */
1747 		ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_SRC + port);
1748 	}
1749 
1750 	/* Configure and enable the CPU port. */
1751 	ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, cpu);
1752 	ocelot_write_rix(ocelot, BIT(cpu), ANA_PGID_PGID, PGID_CPU);
1753 	ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_RECV_ENA |
1754 			 ANA_PORT_PORT_CFG_PORTID_VAL(cpu),
1755 			 ANA_PORT_PORT_CFG, cpu);
1756 
1757 	/* Allow broadcast MAC frames. */
1758 	for (i = ocelot->num_phys_ports + 1; i < PGID_CPU; i++) {
1759 		u32 val = ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports - 1, 0));
1760 
1761 		ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i);
1762 	}
1763 	ocelot_write_rix(ocelot,
1764 			 ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)),
1765 			 ANA_PGID_PGID, PGID_MC);
1766 	ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4);
1767 	ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6);
1768 
1769 	/* CPU port Injection/Extraction configuration */
1770 	ocelot_write_rix(ocelot, QSYS_SWITCH_PORT_MODE_INGRESS_DROP_MODE |
1771 			 QSYS_SWITCH_PORT_MODE_SCH_NEXT_CFG(1) |
1772 			 QSYS_SWITCH_PORT_MODE_PORT_ENA,
1773 			 QSYS_SWITCH_PORT_MODE, cpu);
1774 	ocelot_write_rix(ocelot, SYS_PORT_MODE_INCL_XTR_HDR(1) |
1775 			 SYS_PORT_MODE_INCL_INJ_HDR(1), SYS_PORT_MODE, cpu);
1776 	/* Allow manual injection via DEVCPU_QS registers, and byte swap these
1777 	 * registers endianness.
1778 	 */
1779 	ocelot_write_rix(ocelot, QS_INJ_GRP_CFG_BYTE_SWAP |
1780 			 QS_INJ_GRP_CFG_MODE(1), QS_INJ_GRP_CFG, 0);
1781 	ocelot_write_rix(ocelot, QS_XTR_GRP_CFG_BYTE_SWAP |
1782 			 QS_XTR_GRP_CFG_MODE(1), QS_XTR_GRP_CFG, 0);
1783 	ocelot_write(ocelot, ANA_CPUQ_CFG_CPUQ_MIRROR(2) |
1784 		     ANA_CPUQ_CFG_CPUQ_LRN(2) |
1785 		     ANA_CPUQ_CFG_CPUQ_MAC_COPY(2) |
1786 		     ANA_CPUQ_CFG_CPUQ_SRC_COPY(2) |
1787 		     ANA_CPUQ_CFG_CPUQ_LOCKED_PORTMOVE(2) |
1788 		     ANA_CPUQ_CFG_CPUQ_ALLBRIDGE(6) |
1789 		     ANA_CPUQ_CFG_CPUQ_IPMC_CTRL(6) |
1790 		     ANA_CPUQ_CFG_CPUQ_IGMP(6) |
1791 		     ANA_CPUQ_CFG_CPUQ_MLD(6), ANA_CPUQ_CFG);
1792 	for (i = 0; i < 16; i++)
1793 		ocelot_write_rix(ocelot, ANA_CPUQ_8021_CFG_CPUQ_GARP_VAL(6) |
1794 				 ANA_CPUQ_8021_CFG_CPUQ_BPDU_VAL(6),
1795 				 ANA_CPUQ_8021_CFG, i);
1796 
1797 	INIT_DELAYED_WORK(&ocelot->stats_work, ocelot_check_stats);
1798 	queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
1799 			   OCELOT_STATS_CHECK_DELAY);
1800 	return 0;
1801 }
1802 EXPORT_SYMBOL(ocelot_init);
1803 
1804 void ocelot_deinit(struct ocelot *ocelot)
1805 {
1806 	destroy_workqueue(ocelot->stats_queue);
1807 	mutex_destroy(&ocelot->stats_lock);
1808 }
1809 EXPORT_SYMBOL(ocelot_deinit);
1810 
1811 MODULE_LICENSE("Dual MIT/GPL");
1812