1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH
3  * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com>
4  */
5 
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7 
8 #include <linux/delay.h>
9 #include <linux/module.h>
10 #include <linux/printk.h>
11 #include <linux/spi/spi.h>
12 #include <linux/errno.h>
13 #include <linux/gpio/consumer.h>
14 #include <linux/phylink.h>
15 #include <linux/of.h>
16 #include <linux/of_net.h>
17 #include <linux/of_mdio.h>
18 #include <linux/of_device.h>
19 #include <linux/pcs/pcs-xpcs.h>
20 #include <linux/netdev_features.h>
21 #include <linux/netdevice.h>
22 #include <linux/if_bridge.h>
23 #include <linux/if_ether.h>
24 #include <linux/dsa/8021q.h>
25 #include "sja1105.h"
26 #include "sja1105_tas.h"
27 
28 #define SJA1105_UNKNOWN_MULTICAST	0x010000000000ull
29 
30 /* Configure the optional reset pin and bring up switch */
31 static int sja1105_hw_reset(struct device *dev, unsigned int pulse_len,
32 			    unsigned int startup_delay)
33 {
34 	struct gpio_desc *gpio;
35 
36 	gpio = gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH);
37 	if (IS_ERR(gpio))
38 		return PTR_ERR(gpio);
39 
40 	if (!gpio)
41 		return 0;
42 
43 	gpiod_set_value_cansleep(gpio, 1);
44 	/* Wait for minimum reset pulse length */
45 	msleep(pulse_len);
46 	gpiod_set_value_cansleep(gpio, 0);
47 	/* Wait until chip is ready after reset */
48 	msleep(startup_delay);
49 
50 	gpiod_put(gpio);
51 
52 	return 0;
53 }
54 
55 static void
56 sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd,
57 			   int from, int to, bool allow)
58 {
59 	if (allow)
60 		l2_fwd[from].reach_port |= BIT(to);
61 	else
62 		l2_fwd[from].reach_port &= ~BIT(to);
63 }
64 
65 static bool sja1105_can_forward(struct sja1105_l2_forwarding_entry *l2_fwd,
66 				int from, int to)
67 {
68 	return !!(l2_fwd[from].reach_port & BIT(to));
69 }
70 
71 static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid)
72 {
73 	struct sja1105_vlan_lookup_entry *vlan;
74 	int count, i;
75 
76 	vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
77 	count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count;
78 
79 	for (i = 0; i < count; i++)
80 		if (vlan[i].vlanid == vid)
81 			return i;
82 
83 	/* Return an invalid entry index if not found */
84 	return -1;
85 }
86 
87 static int sja1105_drop_untagged(struct dsa_switch *ds, int port, bool drop)
88 {
89 	struct sja1105_private *priv = ds->priv;
90 	struct sja1105_mac_config_entry *mac;
91 
92 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
93 
94 	if (mac[port].drpuntag == drop)
95 		return 0;
96 
97 	mac[port].drpuntag = drop;
98 
99 	return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
100 					    &mac[port], true);
101 }
102 
103 static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid)
104 {
105 	struct sja1105_mac_config_entry *mac;
106 
107 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
108 
109 	if (mac[port].vlanid == pvid)
110 		return 0;
111 
112 	mac[port].vlanid = pvid;
113 
114 	return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
115 					    &mac[port], true);
116 }
117 
118 static int sja1105_commit_pvid(struct dsa_switch *ds, int port)
119 {
120 	struct dsa_port *dp = dsa_to_port(ds, port);
121 	struct sja1105_private *priv = ds->priv;
122 	struct sja1105_vlan_lookup_entry *vlan;
123 	bool drop_untagged = false;
124 	int match, rc;
125 	u16 pvid;
126 
127 	if (dp->bridge_dev && br_vlan_enabled(dp->bridge_dev))
128 		pvid = priv->bridge_pvid[port];
129 	else
130 		pvid = priv->tag_8021q_pvid[port];
131 
132 	rc = sja1105_pvid_apply(priv, port, pvid);
133 	if (rc)
134 		return rc;
135 
136 	/* Only force dropping of untagged packets when the port is under a
137 	 * VLAN-aware bridge. When the tag_8021q pvid is used, we are
138 	 * deliberately removing the RX VLAN from the port's VMEMB_PORT list,
139 	 * to prevent DSA tag spoofing from the link partner. Untagged packets
140 	 * are the only ones that should be received with tag_8021q, so
141 	 * definitely don't drop them.
142 	 */
143 	if (pvid == priv->bridge_pvid[port]) {
144 		vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
145 
146 		match = sja1105_is_vlan_configured(priv, pvid);
147 
148 		if (match < 0 || !(vlan[match].vmemb_port & BIT(port)))
149 			drop_untagged = true;
150 	}
151 
152 	if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
153 		drop_untagged = true;
154 
155 	return sja1105_drop_untagged(ds, port, drop_untagged);
156 }
157 
158 static int sja1105_init_mac_settings(struct sja1105_private *priv)
159 {
160 	struct sja1105_mac_config_entry default_mac = {
161 		/* Enable all 8 priority queues on egress.
162 		 * Every queue i holds top[i] - base[i] frames.
163 		 * Sum of top[i] - base[i] is 511 (max hardware limit).
164 		 */
165 		.top  = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF},
166 		.base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0},
167 		.enabled = {true, true, true, true, true, true, true, true},
168 		/* Keep standard IFG of 12 bytes on egress. */
169 		.ifg = 0,
170 		/* Always put the MAC speed in automatic mode, where it can be
171 		 * adjusted at runtime by PHYLINK.
172 		 */
173 		.speed = priv->info->port_speed[SJA1105_SPEED_AUTO],
174 		/* No static correction for 1-step 1588 events */
175 		.tp_delin = 0,
176 		.tp_delout = 0,
177 		/* Disable aging for critical TTEthernet traffic */
178 		.maxage = 0xFF,
179 		/* Internal VLAN (pvid) to apply to untagged ingress */
180 		.vlanprio = 0,
181 		.vlanid = 1,
182 		.ing_mirr = false,
183 		.egr_mirr = false,
184 		/* Don't drop traffic with other EtherType than ETH_P_IP */
185 		.drpnona664 = false,
186 		/* Don't drop double-tagged traffic */
187 		.drpdtag = false,
188 		/* Don't drop untagged traffic */
189 		.drpuntag = false,
190 		/* Don't retag 802.1p (VID 0) traffic with the pvid */
191 		.retag = false,
192 		/* Disable learning and I/O on user ports by default -
193 		 * STP will enable it.
194 		 */
195 		.dyn_learn = false,
196 		.egress = false,
197 		.ingress = false,
198 	};
199 	struct sja1105_mac_config_entry *mac;
200 	struct dsa_switch *ds = priv->ds;
201 	struct sja1105_table *table;
202 	struct dsa_port *dp;
203 
204 	table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG];
205 
206 	/* Discard previous MAC Configuration Table */
207 	if (table->entry_count) {
208 		kfree(table->entries);
209 		table->entry_count = 0;
210 	}
211 
212 	table->entries = kcalloc(table->ops->max_entry_count,
213 				 table->ops->unpacked_entry_size, GFP_KERNEL);
214 	if (!table->entries)
215 		return -ENOMEM;
216 
217 	table->entry_count = table->ops->max_entry_count;
218 
219 	mac = table->entries;
220 
221 	list_for_each_entry(dp, &ds->dst->ports, list) {
222 		if (dp->ds != ds)
223 			continue;
224 
225 		mac[dp->index] = default_mac;
226 
227 		/* Let sja1105_bridge_stp_state_set() keep address learning
228 		 * enabled for the DSA ports. CPU ports use software-assisted
229 		 * learning to ensure that only FDB entries belonging to the
230 		 * bridge are learned, and that they are learned towards all
231 		 * CPU ports in a cross-chip topology if multiple CPU ports
232 		 * exist.
233 		 */
234 		if (dsa_port_is_dsa(dp))
235 			dp->learning = true;
236 
237 		/* Disallow untagged packets from being received on the
238 		 * CPU and DSA ports.
239 		 */
240 		if (dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp))
241 			mac[dp->index].drpuntag = true;
242 	}
243 
244 	return 0;
245 }
246 
247 static int sja1105_init_mii_settings(struct sja1105_private *priv)
248 {
249 	struct device *dev = &priv->spidev->dev;
250 	struct sja1105_xmii_params_entry *mii;
251 	struct dsa_switch *ds = priv->ds;
252 	struct sja1105_table *table;
253 	int i;
254 
255 	table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS];
256 
257 	/* Discard previous xMII Mode Parameters Table */
258 	if (table->entry_count) {
259 		kfree(table->entries);
260 		table->entry_count = 0;
261 	}
262 
263 	table->entries = kcalloc(table->ops->max_entry_count,
264 				 table->ops->unpacked_entry_size, GFP_KERNEL);
265 	if (!table->entries)
266 		return -ENOMEM;
267 
268 	/* Override table based on PHYLINK DT bindings */
269 	table->entry_count = table->ops->max_entry_count;
270 
271 	mii = table->entries;
272 
273 	for (i = 0; i < ds->num_ports; i++) {
274 		sja1105_mii_role_t role = XMII_MAC;
275 
276 		if (dsa_is_unused_port(priv->ds, i))
277 			continue;
278 
279 		switch (priv->phy_mode[i]) {
280 		case PHY_INTERFACE_MODE_INTERNAL:
281 			if (priv->info->internal_phy[i] == SJA1105_NO_PHY)
282 				goto unsupported;
283 
284 			mii->xmii_mode[i] = XMII_MODE_MII;
285 			if (priv->info->internal_phy[i] == SJA1105_PHY_BASE_TX)
286 				mii->special[i] = true;
287 
288 			break;
289 		case PHY_INTERFACE_MODE_REVMII:
290 			role = XMII_PHY;
291 			fallthrough;
292 		case PHY_INTERFACE_MODE_MII:
293 			if (!priv->info->supports_mii[i])
294 				goto unsupported;
295 
296 			mii->xmii_mode[i] = XMII_MODE_MII;
297 			break;
298 		case PHY_INTERFACE_MODE_REVRMII:
299 			role = XMII_PHY;
300 			fallthrough;
301 		case PHY_INTERFACE_MODE_RMII:
302 			if (!priv->info->supports_rmii[i])
303 				goto unsupported;
304 
305 			mii->xmii_mode[i] = XMII_MODE_RMII;
306 			break;
307 		case PHY_INTERFACE_MODE_RGMII:
308 		case PHY_INTERFACE_MODE_RGMII_ID:
309 		case PHY_INTERFACE_MODE_RGMII_RXID:
310 		case PHY_INTERFACE_MODE_RGMII_TXID:
311 			if (!priv->info->supports_rgmii[i])
312 				goto unsupported;
313 
314 			mii->xmii_mode[i] = XMII_MODE_RGMII;
315 			break;
316 		case PHY_INTERFACE_MODE_SGMII:
317 			if (!priv->info->supports_sgmii[i])
318 				goto unsupported;
319 
320 			mii->xmii_mode[i] = XMII_MODE_SGMII;
321 			mii->special[i] = true;
322 			break;
323 		case PHY_INTERFACE_MODE_2500BASEX:
324 			if (!priv->info->supports_2500basex[i])
325 				goto unsupported;
326 
327 			mii->xmii_mode[i] = XMII_MODE_SGMII;
328 			mii->special[i] = true;
329 			break;
330 unsupported:
331 		default:
332 			dev_err(dev, "Unsupported PHY mode %s on port %d!\n",
333 				phy_modes(priv->phy_mode[i]), i);
334 			return -EINVAL;
335 		}
336 
337 		mii->phy_mac[i] = role;
338 	}
339 	return 0;
340 }
341 
342 static int sja1105_init_static_fdb(struct sja1105_private *priv)
343 {
344 	struct sja1105_l2_lookup_entry *l2_lookup;
345 	struct sja1105_table *table;
346 	int port;
347 
348 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
349 
350 	/* We only populate the FDB table through dynamic L2 Address Lookup
351 	 * entries, except for a special entry at the end which is a catch-all
352 	 * for unknown multicast and will be used to control flooding domain.
353 	 */
354 	if (table->entry_count) {
355 		kfree(table->entries);
356 		table->entry_count = 0;
357 	}
358 
359 	if (!priv->info->can_limit_mcast_flood)
360 		return 0;
361 
362 	table->entries = kcalloc(1, table->ops->unpacked_entry_size,
363 				 GFP_KERNEL);
364 	if (!table->entries)
365 		return -ENOMEM;
366 
367 	table->entry_count = 1;
368 	l2_lookup = table->entries;
369 
370 	/* All L2 multicast addresses have an odd first octet */
371 	l2_lookup[0].macaddr = SJA1105_UNKNOWN_MULTICAST;
372 	l2_lookup[0].mask_macaddr = SJA1105_UNKNOWN_MULTICAST;
373 	l2_lookup[0].lockeds = true;
374 	l2_lookup[0].index = SJA1105_MAX_L2_LOOKUP_COUNT - 1;
375 
376 	/* Flood multicast to every port by default */
377 	for (port = 0; port < priv->ds->num_ports; port++)
378 		if (!dsa_is_unused_port(priv->ds, port))
379 			l2_lookup[0].destports |= BIT(port);
380 
381 	return 0;
382 }
383 
384 static int sja1105_init_l2_lookup_params(struct sja1105_private *priv)
385 {
386 	struct sja1105_l2_lookup_params_entry default_l2_lookup_params = {
387 		/* Learned FDB entries are forgotten after 300 seconds */
388 		.maxage = SJA1105_AGEING_TIME_MS(300000),
389 		/* All entries within a FDB bin are available for learning */
390 		.dyn_tbsz = SJA1105ET_FDB_BIN_SIZE,
391 		/* And the P/Q/R/S equivalent setting: */
392 		.start_dynspc = 0,
393 		/* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */
394 		.poly = 0x97,
395 		/* This selects between Independent VLAN Learning (IVL) and
396 		 * Shared VLAN Learning (SVL)
397 		 */
398 		.shared_learn = true,
399 		/* Don't discard management traffic based on ENFPORT -
400 		 * we don't perform SMAC port enforcement anyway, so
401 		 * what we are setting here doesn't matter.
402 		 */
403 		.no_enf_hostprt = false,
404 		/* Don't learn SMAC for mac_fltres1 and mac_fltres0.
405 		 * Maybe correlate with no_linklocal_learn from bridge driver?
406 		 */
407 		.no_mgmt_learn = true,
408 		/* P/Q/R/S only */
409 		.use_static = true,
410 		/* Dynamically learned FDB entries can overwrite other (older)
411 		 * dynamic FDB entries
412 		 */
413 		.owr_dyn = true,
414 		.drpnolearn = true,
415 	};
416 	struct dsa_switch *ds = priv->ds;
417 	int port, num_used_ports = 0;
418 	struct sja1105_table *table;
419 	u64 max_fdb_entries;
420 
421 	for (port = 0; port < ds->num_ports; port++)
422 		if (!dsa_is_unused_port(ds, port))
423 			num_used_ports++;
424 
425 	max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / num_used_ports;
426 
427 	for (port = 0; port < ds->num_ports; port++) {
428 		if (dsa_is_unused_port(ds, port))
429 			continue;
430 
431 		default_l2_lookup_params.maxaddrp[port] = max_fdb_entries;
432 	}
433 
434 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
435 
436 	if (table->entry_count) {
437 		kfree(table->entries);
438 		table->entry_count = 0;
439 	}
440 
441 	table->entries = kcalloc(table->ops->max_entry_count,
442 				 table->ops->unpacked_entry_size, GFP_KERNEL);
443 	if (!table->entries)
444 		return -ENOMEM;
445 
446 	table->entry_count = table->ops->max_entry_count;
447 
448 	/* This table only has a single entry */
449 	((struct sja1105_l2_lookup_params_entry *)table->entries)[0] =
450 				default_l2_lookup_params;
451 
452 	return 0;
453 }
454 
455 /* Set up a default VLAN for untagged traffic injected from the CPU
456  * using management routes (e.g. STP, PTP) as opposed to tag_8021q.
457  * All DT-defined ports are members of this VLAN, and there are no
458  * restrictions on forwarding (since the CPU selects the destination).
459  * Frames from this VLAN will always be transmitted as untagged, and
460  * neither the bridge nor the 8021q module cannot create this VLAN ID.
461  */
462 static int sja1105_init_static_vlan(struct sja1105_private *priv)
463 {
464 	struct sja1105_table *table;
465 	struct sja1105_vlan_lookup_entry pvid = {
466 		.type_entry = SJA1110_VLAN_D_TAG,
467 		.ving_mirr = 0,
468 		.vegr_mirr = 0,
469 		.vmemb_port = 0,
470 		.vlan_bc = 0,
471 		.tag_port = 0,
472 		.vlanid = SJA1105_DEFAULT_VLAN,
473 	};
474 	struct dsa_switch *ds = priv->ds;
475 	int port;
476 
477 	table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
478 
479 	if (table->entry_count) {
480 		kfree(table->entries);
481 		table->entry_count = 0;
482 	}
483 
484 	table->entries = kzalloc(table->ops->unpacked_entry_size,
485 				 GFP_KERNEL);
486 	if (!table->entries)
487 		return -ENOMEM;
488 
489 	table->entry_count = 1;
490 
491 	for (port = 0; port < ds->num_ports; port++) {
492 		if (dsa_is_unused_port(ds, port))
493 			continue;
494 
495 		pvid.vmemb_port |= BIT(port);
496 		pvid.vlan_bc |= BIT(port);
497 		pvid.tag_port &= ~BIT(port);
498 
499 		if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port)) {
500 			priv->tag_8021q_pvid[port] = SJA1105_DEFAULT_VLAN;
501 			priv->bridge_pvid[port] = SJA1105_DEFAULT_VLAN;
502 		}
503 	}
504 
505 	((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid;
506 	return 0;
507 }
508 
509 static int sja1105_init_l2_forwarding(struct sja1105_private *priv)
510 {
511 	struct sja1105_l2_forwarding_entry *l2fwd;
512 	struct dsa_switch *ds = priv->ds;
513 	struct dsa_switch_tree *dst;
514 	struct sja1105_table *table;
515 	struct dsa_link *dl;
516 	int port, tc;
517 	int from, to;
518 
519 	table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING];
520 
521 	if (table->entry_count) {
522 		kfree(table->entries);
523 		table->entry_count = 0;
524 	}
525 
526 	table->entries = kcalloc(table->ops->max_entry_count,
527 				 table->ops->unpacked_entry_size, GFP_KERNEL);
528 	if (!table->entries)
529 		return -ENOMEM;
530 
531 	table->entry_count = table->ops->max_entry_count;
532 
533 	l2fwd = table->entries;
534 
535 	/* First 5 entries in the L2 Forwarding Table define the forwarding
536 	 * rules and the VLAN PCP to ingress queue mapping.
537 	 * Set up the ingress queue mapping first.
538 	 */
539 	for (port = 0; port < ds->num_ports; port++) {
540 		if (dsa_is_unused_port(ds, port))
541 			continue;
542 
543 		for (tc = 0; tc < SJA1105_NUM_TC; tc++)
544 			l2fwd[port].vlan_pmap[tc] = tc;
545 	}
546 
547 	/* Then manage the forwarding domain for user ports. These can forward
548 	 * only to the always-on domain (CPU port and DSA links)
549 	 */
550 	for (from = 0; from < ds->num_ports; from++) {
551 		if (!dsa_is_user_port(ds, from))
552 			continue;
553 
554 		for (to = 0; to < ds->num_ports; to++) {
555 			if (!dsa_is_cpu_port(ds, to) &&
556 			    !dsa_is_dsa_port(ds, to))
557 				continue;
558 
559 			l2fwd[from].bc_domain |= BIT(to);
560 			l2fwd[from].fl_domain |= BIT(to);
561 
562 			sja1105_port_allow_traffic(l2fwd, from, to, true);
563 		}
564 	}
565 
566 	/* Then manage the forwarding domain for DSA links and CPU ports (the
567 	 * always-on domain). These can send packets to any enabled port except
568 	 * themselves.
569 	 */
570 	for (from = 0; from < ds->num_ports; from++) {
571 		if (!dsa_is_cpu_port(ds, from) && !dsa_is_dsa_port(ds, from))
572 			continue;
573 
574 		for (to = 0; to < ds->num_ports; to++) {
575 			if (dsa_is_unused_port(ds, to))
576 				continue;
577 
578 			if (from == to)
579 				continue;
580 
581 			l2fwd[from].bc_domain |= BIT(to);
582 			l2fwd[from].fl_domain |= BIT(to);
583 
584 			sja1105_port_allow_traffic(l2fwd, from, to, true);
585 		}
586 	}
587 
588 	/* In odd topologies ("H" connections where there is a DSA link to
589 	 * another switch which also has its own CPU port), TX packets can loop
590 	 * back into the system (they are flooded from CPU port 1 to the DSA
591 	 * link, and from there to CPU port 2). Prevent this from happening by
592 	 * cutting RX from DSA links towards our CPU port, if the remote switch
593 	 * has its own CPU port and therefore doesn't need ours for network
594 	 * stack termination.
595 	 */
596 	dst = ds->dst;
597 
598 	list_for_each_entry(dl, &dst->rtable, list) {
599 		if (dl->dp->ds != ds || dl->link_dp->cpu_dp == dl->dp->cpu_dp)
600 			continue;
601 
602 		from = dl->dp->index;
603 		to = dsa_upstream_port(ds, from);
604 
605 		dev_warn(ds->dev,
606 			 "H topology detected, cutting RX from DSA link %d to CPU port %d to prevent TX packet loops\n",
607 			 from, to);
608 
609 		sja1105_port_allow_traffic(l2fwd, from, to, false);
610 
611 		l2fwd[from].bc_domain &= ~BIT(to);
612 		l2fwd[from].fl_domain &= ~BIT(to);
613 	}
614 
615 	/* Finally, manage the egress flooding domain. All ports start up with
616 	 * flooding enabled, including the CPU port and DSA links.
617 	 */
618 	for (port = 0; port < ds->num_ports; port++) {
619 		if (dsa_is_unused_port(ds, port))
620 			continue;
621 
622 		priv->ucast_egress_floods |= BIT(port);
623 		priv->bcast_egress_floods |= BIT(port);
624 	}
625 
626 	/* Next 8 entries define VLAN PCP mapping from ingress to egress.
627 	 * Create a one-to-one mapping.
628 	 */
629 	for (tc = 0; tc < SJA1105_NUM_TC; tc++) {
630 		for (port = 0; port < ds->num_ports; port++) {
631 			if (dsa_is_unused_port(ds, port))
632 				continue;
633 
634 			l2fwd[ds->num_ports + tc].vlan_pmap[port] = tc;
635 		}
636 
637 		l2fwd[ds->num_ports + tc].type_egrpcp2outputq = true;
638 	}
639 
640 	return 0;
641 }
642 
643 static int sja1110_init_pcp_remapping(struct sja1105_private *priv)
644 {
645 	struct sja1110_pcp_remapping_entry *pcp_remap;
646 	struct dsa_switch *ds = priv->ds;
647 	struct sja1105_table *table;
648 	int port, tc;
649 
650 	table = &priv->static_config.tables[BLK_IDX_PCP_REMAPPING];
651 
652 	/* Nothing to do for SJA1105 */
653 	if (!table->ops->max_entry_count)
654 		return 0;
655 
656 	if (table->entry_count) {
657 		kfree(table->entries);
658 		table->entry_count = 0;
659 	}
660 
661 	table->entries = kcalloc(table->ops->max_entry_count,
662 				 table->ops->unpacked_entry_size, GFP_KERNEL);
663 	if (!table->entries)
664 		return -ENOMEM;
665 
666 	table->entry_count = table->ops->max_entry_count;
667 
668 	pcp_remap = table->entries;
669 
670 	/* Repeat the configuration done for vlan_pmap */
671 	for (port = 0; port < ds->num_ports; port++) {
672 		if (dsa_is_unused_port(ds, port))
673 			continue;
674 
675 		for (tc = 0; tc < SJA1105_NUM_TC; tc++)
676 			pcp_remap[port].egrpcp[tc] = tc;
677 	}
678 
679 	return 0;
680 }
681 
682 static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv)
683 {
684 	struct sja1105_l2_forwarding_params_entry *l2fwd_params;
685 	struct sja1105_table *table;
686 
687 	table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
688 
689 	if (table->entry_count) {
690 		kfree(table->entries);
691 		table->entry_count = 0;
692 	}
693 
694 	table->entries = kcalloc(table->ops->max_entry_count,
695 				 table->ops->unpacked_entry_size, GFP_KERNEL);
696 	if (!table->entries)
697 		return -ENOMEM;
698 
699 	table->entry_count = table->ops->max_entry_count;
700 
701 	/* This table only has a single entry */
702 	l2fwd_params = table->entries;
703 
704 	/* Disallow dynamic reconfiguration of vlan_pmap */
705 	l2fwd_params->max_dynp = 0;
706 	/* Use a single memory partition for all ingress queues */
707 	l2fwd_params->part_spc[0] = priv->info->max_frame_mem;
708 
709 	return 0;
710 }
711 
712 void sja1105_frame_memory_partitioning(struct sja1105_private *priv)
713 {
714 	struct sja1105_l2_forwarding_params_entry *l2_fwd_params;
715 	struct sja1105_vl_forwarding_params_entry *vl_fwd_params;
716 	struct sja1105_table *table;
717 
718 	table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
719 	l2_fwd_params = table->entries;
720 	l2_fwd_params->part_spc[0] = SJA1105_MAX_FRAME_MEMORY;
721 
722 	/* If we have any critical-traffic virtual links, we need to reserve
723 	 * some frame buffer memory for them. At the moment, hardcode the value
724 	 * at 100 blocks of 128 bytes of memory each. This leaves 829 blocks
725 	 * remaining for best-effort traffic. TODO: figure out a more flexible
726 	 * way to perform the frame buffer partitioning.
727 	 */
728 	if (!priv->static_config.tables[BLK_IDX_VL_FORWARDING].entry_count)
729 		return;
730 
731 	table = &priv->static_config.tables[BLK_IDX_VL_FORWARDING_PARAMS];
732 	vl_fwd_params = table->entries;
733 
734 	l2_fwd_params->part_spc[0] -= SJA1105_VL_FRAME_MEMORY;
735 	vl_fwd_params->partspc[0] = SJA1105_VL_FRAME_MEMORY;
736 }
737 
738 /* SJA1110 TDMACONFIGIDX values:
739  *
740  *      | 100 Mbps ports |  1Gbps ports  | 2.5Gbps ports | Disabled ports
741  * -----+----------------+---------------+---------------+---------------
742  *   0  |   0, [5:10]    |     [1:2]     |     [3:4]     |     retag
743  *   1  |0, [5:10], retag|     [1:2]     |     [3:4]     |       -
744  *   2  |   0, [5:10]    |  [1:3], retag |       4       |       -
745  *   3  |   0, [5:10]    |[1:2], 4, retag|       3       |       -
746  *   4  |  0, 2, [5:10]  |    1, retag   |     [3:4]     |       -
747  *   5  |  0, 1, [5:10]  |    2, retag   |     [3:4]     |       -
748  *  14  |   0, [5:10]    | [1:4], retag  |       -       |       -
749  *  15  |     [5:10]     | [0:4], retag  |       -       |       -
750  */
751 static void sja1110_select_tdmaconfigidx(struct sja1105_private *priv)
752 {
753 	struct sja1105_general_params_entry *general_params;
754 	struct sja1105_table *table;
755 	bool port_1_is_base_tx;
756 	bool port_3_is_2500;
757 	bool port_4_is_2500;
758 	u64 tdmaconfigidx;
759 
760 	if (priv->info->device_id != SJA1110_DEVICE_ID)
761 		return;
762 
763 	table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
764 	general_params = table->entries;
765 
766 	/* All the settings below are "as opposed to SGMII", which is the
767 	 * other pinmuxing option.
768 	 */
769 	port_1_is_base_tx = priv->phy_mode[1] == PHY_INTERFACE_MODE_INTERNAL;
770 	port_3_is_2500 = priv->phy_mode[3] == PHY_INTERFACE_MODE_2500BASEX;
771 	port_4_is_2500 = priv->phy_mode[4] == PHY_INTERFACE_MODE_2500BASEX;
772 
773 	if (port_1_is_base_tx)
774 		/* Retagging port will operate at 1 Gbps */
775 		tdmaconfigidx = 5;
776 	else if (port_3_is_2500 && port_4_is_2500)
777 		/* Retagging port will operate at 100 Mbps */
778 		tdmaconfigidx = 1;
779 	else if (port_3_is_2500)
780 		/* Retagging port will operate at 1 Gbps */
781 		tdmaconfigidx = 3;
782 	else if (port_4_is_2500)
783 		/* Retagging port will operate at 1 Gbps */
784 		tdmaconfigidx = 2;
785 	else
786 		/* Retagging port will operate at 1 Gbps */
787 		tdmaconfigidx = 14;
788 
789 	general_params->tdmaconfigidx = tdmaconfigidx;
790 }
791 
792 static int sja1105_init_topology(struct sja1105_private *priv,
793 				 struct sja1105_general_params_entry *general_params)
794 {
795 	struct dsa_switch *ds = priv->ds;
796 	int port;
797 
798 	/* The host port is the destination for traffic matching mac_fltres1
799 	 * and mac_fltres0 on all ports except itself. Default to an invalid
800 	 * value.
801 	 */
802 	general_params->host_port = ds->num_ports;
803 
804 	/* Link-local traffic received on casc_port will be forwarded
805 	 * to host_port without embedding the source port and device ID
806 	 * info in the destination MAC address, and no RX timestamps will be
807 	 * taken either (presumably because it is a cascaded port and a
808 	 * downstream SJA switch already did that).
809 	 * To disable the feature, we need to do different things depending on
810 	 * switch generation. On SJA1105 we need to set an invalid port, while
811 	 * on SJA1110 which support multiple cascaded ports, this field is a
812 	 * bitmask so it must be left zero.
813 	 */
814 	if (!priv->info->multiple_cascade_ports)
815 		general_params->casc_port = ds->num_ports;
816 
817 	for (port = 0; port < ds->num_ports; port++) {
818 		bool is_upstream = dsa_is_upstream_port(ds, port);
819 		bool is_dsa_link = dsa_is_dsa_port(ds, port);
820 
821 		/* Upstream ports can be dedicated CPU ports or
822 		 * upstream-facing DSA links
823 		 */
824 		if (is_upstream) {
825 			if (general_params->host_port == ds->num_ports) {
826 				general_params->host_port = port;
827 			} else {
828 				dev_err(ds->dev,
829 					"Port %llu is already a host port, configuring %d as one too is not supported\n",
830 					general_params->host_port, port);
831 				return -EINVAL;
832 			}
833 		}
834 
835 		/* Cascade ports are downstream-facing DSA links */
836 		if (is_dsa_link && !is_upstream) {
837 			if (priv->info->multiple_cascade_ports) {
838 				general_params->casc_port |= BIT(port);
839 			} else if (general_params->casc_port == ds->num_ports) {
840 				general_params->casc_port = port;
841 			} else {
842 				dev_err(ds->dev,
843 					"Port %llu is already a cascade port, configuring %d as one too is not supported\n",
844 					general_params->casc_port, port);
845 				return -EINVAL;
846 			}
847 		}
848 	}
849 
850 	if (general_params->host_port == ds->num_ports) {
851 		dev_err(ds->dev, "No host port configured\n");
852 		return -EINVAL;
853 	}
854 
855 	return 0;
856 }
857 
858 static int sja1105_init_general_params(struct sja1105_private *priv)
859 {
860 	struct sja1105_general_params_entry default_general_params = {
861 		/* Allow dynamic changing of the mirror port */
862 		.mirr_ptacu = true,
863 		.switchid = priv->ds->index,
864 		/* Priority queue for link-local management frames
865 		 * (both ingress to and egress from CPU - PTP, STP etc)
866 		 */
867 		.hostprio = 7,
868 		.mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A,
869 		.mac_flt1    = SJA1105_LINKLOCAL_FILTER_A_MASK,
870 		.incl_srcpt1 = false,
871 		.send_meta1  = false,
872 		.mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B,
873 		.mac_flt0    = SJA1105_LINKLOCAL_FILTER_B_MASK,
874 		.incl_srcpt0 = false,
875 		.send_meta0  = false,
876 		/* Default to an invalid value */
877 		.mirr_port = priv->ds->num_ports,
878 		/* No TTEthernet */
879 		.vllupformat = SJA1105_VL_FORMAT_PSFP,
880 		.vlmarker = 0,
881 		.vlmask = 0,
882 		/* Only update correctionField for 1-step PTP (L2 transport) */
883 		.ignore2stf = 0,
884 		/* Forcefully disable VLAN filtering by telling
885 		 * the switch that VLAN has a different EtherType.
886 		 */
887 		.tpid = ETH_P_SJA1105,
888 		.tpid2 = ETH_P_SJA1105,
889 		/* Enable the TTEthernet engine on SJA1110 */
890 		.tte_en = true,
891 		/* Set up the EtherType for control packets on SJA1110 */
892 		.header_type = ETH_P_SJA1110,
893 	};
894 	struct sja1105_general_params_entry *general_params;
895 	struct sja1105_table *table;
896 	int rc;
897 
898 	rc = sja1105_init_topology(priv, &default_general_params);
899 	if (rc)
900 		return rc;
901 
902 	table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
903 
904 	if (table->entry_count) {
905 		kfree(table->entries);
906 		table->entry_count = 0;
907 	}
908 
909 	table->entries = kcalloc(table->ops->max_entry_count,
910 				 table->ops->unpacked_entry_size, GFP_KERNEL);
911 	if (!table->entries)
912 		return -ENOMEM;
913 
914 	table->entry_count = table->ops->max_entry_count;
915 
916 	general_params = table->entries;
917 
918 	/* This table only has a single entry */
919 	general_params[0] = default_general_params;
920 
921 	sja1110_select_tdmaconfigidx(priv);
922 
923 	return 0;
924 }
925 
926 static int sja1105_init_avb_params(struct sja1105_private *priv)
927 {
928 	struct sja1105_avb_params_entry *avb;
929 	struct sja1105_table *table;
930 
931 	table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS];
932 
933 	/* Discard previous AVB Parameters Table */
934 	if (table->entry_count) {
935 		kfree(table->entries);
936 		table->entry_count = 0;
937 	}
938 
939 	table->entries = kcalloc(table->ops->max_entry_count,
940 				 table->ops->unpacked_entry_size, GFP_KERNEL);
941 	if (!table->entries)
942 		return -ENOMEM;
943 
944 	table->entry_count = table->ops->max_entry_count;
945 
946 	avb = table->entries;
947 
948 	/* Configure the MAC addresses for meta frames */
949 	avb->destmeta = SJA1105_META_DMAC;
950 	avb->srcmeta  = SJA1105_META_SMAC;
951 	/* On P/Q/R/S, configure the direction of the PTP_CLK pin as input by
952 	 * default. This is because there might be boards with a hardware
953 	 * layout where enabling the pin as output might cause an electrical
954 	 * clash. On E/T the pin is always an output, which the board designers
955 	 * probably already knew, so even if there are going to be electrical
956 	 * issues, there's nothing we can do.
957 	 */
958 	avb->cas_master = false;
959 
960 	return 0;
961 }
962 
963 /* The L2 policing table is 2-stage. The table is looked up for each frame
964  * according to the ingress port, whether it was broadcast or not, and the
965  * classified traffic class (given by VLAN PCP). This portion of the lookup is
966  * fixed, and gives access to the SHARINDX, an indirection register pointing
967  * within the policing table itself, which is used to resolve the policer that
968  * will be used for this frame.
969  *
970  *  Stage 1                              Stage 2
971  * +------------+--------+              +---------------------------------+
972  * |Port 0 TC 0 |SHARINDX|              | Policer 0: Rate, Burst, MTU     |
973  * +------------+--------+              +---------------------------------+
974  * |Port 0 TC 1 |SHARINDX|              | Policer 1: Rate, Burst, MTU     |
975  * +------------+--------+              +---------------------------------+
976  *    ...                               | Policer 2: Rate, Burst, MTU     |
977  * +------------+--------+              +---------------------------------+
978  * |Port 0 TC 7 |SHARINDX|              | Policer 3: Rate, Burst, MTU     |
979  * +------------+--------+              +---------------------------------+
980  * |Port 1 TC 0 |SHARINDX|              | Policer 4: Rate, Burst, MTU     |
981  * +------------+--------+              +---------------------------------+
982  *    ...                               | Policer 5: Rate, Burst, MTU     |
983  * +------------+--------+              +---------------------------------+
984  * |Port 1 TC 7 |SHARINDX|              | Policer 6: Rate, Burst, MTU     |
985  * +------------+--------+              +---------------------------------+
986  *    ...                               | Policer 7: Rate, Burst, MTU     |
987  * +------------+--------+              +---------------------------------+
988  * |Port 4 TC 7 |SHARINDX|                 ...
989  * +------------+--------+
990  * |Port 0 BCAST|SHARINDX|                 ...
991  * +------------+--------+
992  * |Port 1 BCAST|SHARINDX|                 ...
993  * +------------+--------+
994  *    ...                                  ...
995  * +------------+--------+              +---------------------------------+
996  * |Port 4 BCAST|SHARINDX|              | Policer 44: Rate, Burst, MTU    |
997  * +------------+--------+              +---------------------------------+
998  *
999  * In this driver, we shall use policers 0-4 as statically alocated port
1000  * (matchall) policers. So we need to make the SHARINDX for all lookups
1001  * corresponding to this ingress port (8 VLAN PCP lookups and 1 broadcast
1002  * lookup) equal.
1003  * The remaining policers (40) shall be dynamically allocated for flower
1004  * policers, where the key is either vlan_prio or dst_mac ff:ff:ff:ff:ff:ff.
1005  */
1006 #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
1007 
1008 static int sja1105_init_l2_policing(struct sja1105_private *priv)
1009 {
1010 	struct sja1105_l2_policing_entry *policing;
1011 	struct dsa_switch *ds = priv->ds;
1012 	struct sja1105_table *table;
1013 	int port, tc;
1014 
1015 	table = &priv->static_config.tables[BLK_IDX_L2_POLICING];
1016 
1017 	/* Discard previous L2 Policing Table */
1018 	if (table->entry_count) {
1019 		kfree(table->entries);
1020 		table->entry_count = 0;
1021 	}
1022 
1023 	table->entries = kcalloc(table->ops->max_entry_count,
1024 				 table->ops->unpacked_entry_size, GFP_KERNEL);
1025 	if (!table->entries)
1026 		return -ENOMEM;
1027 
1028 	table->entry_count = table->ops->max_entry_count;
1029 
1030 	policing = table->entries;
1031 
1032 	/* Setup shared indices for the matchall policers */
1033 	for (port = 0; port < ds->num_ports; port++) {
1034 		int mcast = (ds->num_ports * (SJA1105_NUM_TC + 1)) + port;
1035 		int bcast = (ds->num_ports * SJA1105_NUM_TC) + port;
1036 
1037 		for (tc = 0; tc < SJA1105_NUM_TC; tc++)
1038 			policing[port * SJA1105_NUM_TC + tc].sharindx = port;
1039 
1040 		policing[bcast].sharindx = port;
1041 		/* Only SJA1110 has multicast policers */
1042 		if (mcast <= table->ops->max_entry_count)
1043 			policing[mcast].sharindx = port;
1044 	}
1045 
1046 	/* Setup the matchall policer parameters */
1047 	for (port = 0; port < ds->num_ports; port++) {
1048 		int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN;
1049 
1050 		if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
1051 			mtu += VLAN_HLEN;
1052 
1053 		policing[port].smax = 65535; /* Burst size in bytes */
1054 		policing[port].rate = SJA1105_RATE_MBPS(1000);
1055 		policing[port].maxlen = mtu;
1056 		policing[port].partition = 0;
1057 	}
1058 
1059 	return 0;
1060 }
1061 
1062 static int sja1105_static_config_load(struct sja1105_private *priv)
1063 {
1064 	int rc;
1065 
1066 	sja1105_static_config_free(&priv->static_config);
1067 	rc = sja1105_static_config_init(&priv->static_config,
1068 					priv->info->static_ops,
1069 					priv->info->device_id);
1070 	if (rc)
1071 		return rc;
1072 
1073 	/* Build static configuration */
1074 	rc = sja1105_init_mac_settings(priv);
1075 	if (rc < 0)
1076 		return rc;
1077 	rc = sja1105_init_mii_settings(priv);
1078 	if (rc < 0)
1079 		return rc;
1080 	rc = sja1105_init_static_fdb(priv);
1081 	if (rc < 0)
1082 		return rc;
1083 	rc = sja1105_init_static_vlan(priv);
1084 	if (rc < 0)
1085 		return rc;
1086 	rc = sja1105_init_l2_lookup_params(priv);
1087 	if (rc < 0)
1088 		return rc;
1089 	rc = sja1105_init_l2_forwarding(priv);
1090 	if (rc < 0)
1091 		return rc;
1092 	rc = sja1105_init_l2_forwarding_params(priv);
1093 	if (rc < 0)
1094 		return rc;
1095 	rc = sja1105_init_l2_policing(priv);
1096 	if (rc < 0)
1097 		return rc;
1098 	rc = sja1105_init_general_params(priv);
1099 	if (rc < 0)
1100 		return rc;
1101 	rc = sja1105_init_avb_params(priv);
1102 	if (rc < 0)
1103 		return rc;
1104 	rc = sja1110_init_pcp_remapping(priv);
1105 	if (rc < 0)
1106 		return rc;
1107 
1108 	/* Send initial configuration to hardware via SPI */
1109 	return sja1105_static_config_upload(priv);
1110 }
1111 
1112 static int sja1105_parse_rgmii_delays(struct sja1105_private *priv)
1113 {
1114 	struct dsa_switch *ds = priv->ds;
1115 	int port;
1116 
1117 	for (port = 0; port < ds->num_ports; port++) {
1118 		if (!priv->fixed_link[port])
1119 			continue;
1120 
1121 		if (priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_RXID ||
1122 		    priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_ID)
1123 			priv->rgmii_rx_delay[port] = true;
1124 
1125 		if (priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_TXID ||
1126 		    priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_ID)
1127 			priv->rgmii_tx_delay[port] = true;
1128 
1129 		if ((priv->rgmii_rx_delay[port] || priv->rgmii_tx_delay[port]) &&
1130 		    !priv->info->setup_rgmii_delay)
1131 			return -EINVAL;
1132 	}
1133 	return 0;
1134 }
1135 
1136 static int sja1105_parse_ports_node(struct sja1105_private *priv,
1137 				    struct device_node *ports_node)
1138 {
1139 	struct device *dev = &priv->spidev->dev;
1140 	struct device_node *child;
1141 
1142 	for_each_available_child_of_node(ports_node, child) {
1143 		struct device_node *phy_node;
1144 		phy_interface_t phy_mode;
1145 		u32 index;
1146 		int err;
1147 
1148 		/* Get switch port number from DT */
1149 		if (of_property_read_u32(child, "reg", &index) < 0) {
1150 			dev_err(dev, "Port number not defined in device tree "
1151 				"(property \"reg\")\n");
1152 			of_node_put(child);
1153 			return -ENODEV;
1154 		}
1155 
1156 		/* Get PHY mode from DT */
1157 		err = of_get_phy_mode(child, &phy_mode);
1158 		if (err) {
1159 			dev_err(dev, "Failed to read phy-mode or "
1160 				"phy-interface-type property for port %d\n",
1161 				index);
1162 			of_node_put(child);
1163 			return -ENODEV;
1164 		}
1165 
1166 		phy_node = of_parse_phandle(child, "phy-handle", 0);
1167 		if (!phy_node) {
1168 			if (!of_phy_is_fixed_link(child)) {
1169 				dev_err(dev, "phy-handle or fixed-link "
1170 					"properties missing!\n");
1171 				of_node_put(child);
1172 				return -ENODEV;
1173 			}
1174 			/* phy-handle is missing, but fixed-link isn't.
1175 			 * So it's a fixed link. Default to PHY role.
1176 			 */
1177 			priv->fixed_link[index] = true;
1178 		} else {
1179 			of_node_put(phy_node);
1180 		}
1181 
1182 		priv->phy_mode[index] = phy_mode;
1183 	}
1184 
1185 	return 0;
1186 }
1187 
1188 static int sja1105_parse_dt(struct sja1105_private *priv)
1189 {
1190 	struct device *dev = &priv->spidev->dev;
1191 	struct device_node *switch_node = dev->of_node;
1192 	struct device_node *ports_node;
1193 	int rc;
1194 
1195 	ports_node = of_get_child_by_name(switch_node, "ports");
1196 	if (!ports_node)
1197 		ports_node = of_get_child_by_name(switch_node, "ethernet-ports");
1198 	if (!ports_node) {
1199 		dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
1200 		return -ENODEV;
1201 	}
1202 
1203 	rc = sja1105_parse_ports_node(priv, ports_node);
1204 	of_node_put(ports_node);
1205 
1206 	return rc;
1207 }
1208 
1209 /* Convert link speed from SJA1105 to ethtool encoding */
1210 static int sja1105_port_speed_to_ethtool(struct sja1105_private *priv,
1211 					 u64 speed)
1212 {
1213 	if (speed == priv->info->port_speed[SJA1105_SPEED_10MBPS])
1214 		return SPEED_10;
1215 	if (speed == priv->info->port_speed[SJA1105_SPEED_100MBPS])
1216 		return SPEED_100;
1217 	if (speed == priv->info->port_speed[SJA1105_SPEED_1000MBPS])
1218 		return SPEED_1000;
1219 	if (speed == priv->info->port_speed[SJA1105_SPEED_2500MBPS])
1220 		return SPEED_2500;
1221 	return SPEED_UNKNOWN;
1222 }
1223 
1224 /* Set link speed in the MAC configuration for a specific port. */
1225 static int sja1105_adjust_port_config(struct sja1105_private *priv, int port,
1226 				      int speed_mbps)
1227 {
1228 	struct sja1105_mac_config_entry *mac;
1229 	struct device *dev = priv->ds->dev;
1230 	u64 speed;
1231 	int rc;
1232 
1233 	/* On P/Q/R/S, one can read from the device via the MAC reconfiguration
1234 	 * tables. On E/T, MAC reconfig tables are not readable, only writable.
1235 	 * We have to *know* what the MAC looks like.  For the sake of keeping
1236 	 * the code common, we'll use the static configuration tables as a
1237 	 * reasonable approximation for both E/T and P/Q/R/S.
1238 	 */
1239 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1240 
1241 	switch (speed_mbps) {
1242 	case SPEED_UNKNOWN:
1243 		/* PHYLINK called sja1105_mac_config() to inform us about
1244 		 * the state->interface, but AN has not completed and the
1245 		 * speed is not yet valid. UM10944.pdf says that setting
1246 		 * SJA1105_SPEED_AUTO at runtime disables the port, so that is
1247 		 * ok for power consumption in case AN will never complete -
1248 		 * otherwise PHYLINK should come back with a new update.
1249 		 */
1250 		speed = priv->info->port_speed[SJA1105_SPEED_AUTO];
1251 		break;
1252 	case SPEED_10:
1253 		speed = priv->info->port_speed[SJA1105_SPEED_10MBPS];
1254 		break;
1255 	case SPEED_100:
1256 		speed = priv->info->port_speed[SJA1105_SPEED_100MBPS];
1257 		break;
1258 	case SPEED_1000:
1259 		speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS];
1260 		break;
1261 	case SPEED_2500:
1262 		speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS];
1263 		break;
1264 	default:
1265 		dev_err(dev, "Invalid speed %iMbps\n", speed_mbps);
1266 		return -EINVAL;
1267 	}
1268 
1269 	/* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration
1270 	 * table, since this will be used for the clocking setup, and we no
1271 	 * longer need to store it in the static config (already told hardware
1272 	 * we want auto during upload phase).
1273 	 * Actually for the SGMII port, the MAC is fixed at 1 Gbps and
1274 	 * we need to configure the PCS only (if even that).
1275 	 */
1276 	if (priv->phy_mode[port] == PHY_INTERFACE_MODE_SGMII)
1277 		mac[port].speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS];
1278 	else if (priv->phy_mode[port] == PHY_INTERFACE_MODE_2500BASEX)
1279 		mac[port].speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS];
1280 	else
1281 		mac[port].speed = speed;
1282 
1283 	/* Write to the dynamic reconfiguration tables */
1284 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1285 					  &mac[port], true);
1286 	if (rc < 0) {
1287 		dev_err(dev, "Failed to write MAC config: %d\n", rc);
1288 		return rc;
1289 	}
1290 
1291 	/* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at
1292 	 * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and
1293 	 * RMII no change of the clock setup is required. Actually, changing
1294 	 * the clock setup does interrupt the clock signal for a certain time
1295 	 * which causes trouble for all PHYs relying on this signal.
1296 	 */
1297 	if (!phy_interface_mode_is_rgmii(priv->phy_mode[port]))
1298 		return 0;
1299 
1300 	return sja1105_clocking_setup_port(priv, port);
1301 }
1302 
1303 /* The SJA1105 MAC programming model is through the static config (the xMII
1304  * Mode table cannot be dynamically reconfigured), and we have to program
1305  * that early (earlier than PHYLINK calls us, anyway).
1306  * So just error out in case the connected PHY attempts to change the initial
1307  * system interface MII protocol from what is defined in the DT, at least for
1308  * now.
1309  */
1310 static bool sja1105_phy_mode_mismatch(struct sja1105_private *priv, int port,
1311 				      phy_interface_t interface)
1312 {
1313 	return priv->phy_mode[port] != interface;
1314 }
1315 
1316 static void sja1105_mac_config(struct dsa_switch *ds, int port,
1317 			       unsigned int mode,
1318 			       const struct phylink_link_state *state)
1319 {
1320 	struct dsa_port *dp = dsa_to_port(ds, port);
1321 	struct sja1105_private *priv = ds->priv;
1322 	struct dw_xpcs *xpcs;
1323 
1324 	if (sja1105_phy_mode_mismatch(priv, port, state->interface)) {
1325 		dev_err(ds->dev, "Changing PHY mode to %s not supported!\n",
1326 			phy_modes(state->interface));
1327 		return;
1328 	}
1329 
1330 	xpcs = priv->xpcs[port];
1331 
1332 	if (xpcs)
1333 		phylink_set_pcs(dp->pl, &xpcs->pcs);
1334 }
1335 
1336 static void sja1105_mac_link_down(struct dsa_switch *ds, int port,
1337 				  unsigned int mode,
1338 				  phy_interface_t interface)
1339 {
1340 	sja1105_inhibit_tx(ds->priv, BIT(port), true);
1341 }
1342 
1343 static void sja1105_mac_link_up(struct dsa_switch *ds, int port,
1344 				unsigned int mode,
1345 				phy_interface_t interface,
1346 				struct phy_device *phydev,
1347 				int speed, int duplex,
1348 				bool tx_pause, bool rx_pause)
1349 {
1350 	struct sja1105_private *priv = ds->priv;
1351 
1352 	sja1105_adjust_port_config(priv, port, speed);
1353 
1354 	sja1105_inhibit_tx(priv, BIT(port), false);
1355 }
1356 
1357 static void sja1105_phylink_validate(struct dsa_switch *ds, int port,
1358 				     unsigned long *supported,
1359 				     struct phylink_link_state *state)
1360 {
1361 	/* Construct a new mask which exhaustively contains all link features
1362 	 * supported by the MAC, and then apply that (logical AND) to what will
1363 	 * be sent to the PHY for "marketing".
1364 	 */
1365 	__ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
1366 	struct sja1105_private *priv = ds->priv;
1367 	struct sja1105_xmii_params_entry *mii;
1368 
1369 	mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
1370 
1371 	/* include/linux/phylink.h says:
1372 	 *     When @state->interface is %PHY_INTERFACE_MODE_NA, phylink
1373 	 *     expects the MAC driver to return all supported link modes.
1374 	 */
1375 	if (state->interface != PHY_INTERFACE_MODE_NA &&
1376 	    sja1105_phy_mode_mismatch(priv, port, state->interface)) {
1377 		bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
1378 		return;
1379 	}
1380 
1381 	/* The MAC does not support pause frames, and also doesn't
1382 	 * support half-duplex traffic modes.
1383 	 */
1384 	phylink_set(mask, Autoneg);
1385 	phylink_set(mask, MII);
1386 	phylink_set(mask, 10baseT_Full);
1387 	phylink_set(mask, 100baseT_Full);
1388 	phylink_set(mask, 100baseT1_Full);
1389 	if (mii->xmii_mode[port] == XMII_MODE_RGMII ||
1390 	    mii->xmii_mode[port] == XMII_MODE_SGMII)
1391 		phylink_set(mask, 1000baseT_Full);
1392 	if (priv->info->supports_2500basex[port]) {
1393 		phylink_set(mask, 2500baseT_Full);
1394 		phylink_set(mask, 2500baseX_Full);
1395 	}
1396 
1397 	bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS);
1398 	bitmap_and(state->advertising, state->advertising, mask,
1399 		   __ETHTOOL_LINK_MODE_MASK_NBITS);
1400 }
1401 
1402 static int
1403 sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port,
1404 			      const struct sja1105_l2_lookup_entry *requested)
1405 {
1406 	struct sja1105_l2_lookup_entry *l2_lookup;
1407 	struct sja1105_table *table;
1408 	int i;
1409 
1410 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1411 	l2_lookup = table->entries;
1412 
1413 	for (i = 0; i < table->entry_count; i++)
1414 		if (l2_lookup[i].macaddr == requested->macaddr &&
1415 		    l2_lookup[i].vlanid == requested->vlanid &&
1416 		    l2_lookup[i].destports & BIT(port))
1417 			return i;
1418 
1419 	return -1;
1420 }
1421 
1422 /* We want FDB entries added statically through the bridge command to persist
1423  * across switch resets, which are a common thing during normal SJA1105
1424  * operation. So we have to back them up in the static configuration tables
1425  * and hence apply them on next static config upload... yay!
1426  */
1427 static int
1428 sja1105_static_fdb_change(struct sja1105_private *priv, int port,
1429 			  const struct sja1105_l2_lookup_entry *requested,
1430 			  bool keep)
1431 {
1432 	struct sja1105_l2_lookup_entry *l2_lookup;
1433 	struct sja1105_table *table;
1434 	int rc, match;
1435 
1436 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1437 
1438 	match = sja1105_find_static_fdb_entry(priv, port, requested);
1439 	if (match < 0) {
1440 		/* Can't delete a missing entry. */
1441 		if (!keep)
1442 			return 0;
1443 
1444 		/* No match => new entry */
1445 		rc = sja1105_table_resize(table, table->entry_count + 1);
1446 		if (rc)
1447 			return rc;
1448 
1449 		match = table->entry_count - 1;
1450 	}
1451 
1452 	/* Assign pointer after the resize (it may be new memory) */
1453 	l2_lookup = table->entries;
1454 
1455 	/* We have a match.
1456 	 * If the job was to add this FDB entry, it's already done (mostly
1457 	 * anyway, since the port forwarding mask may have changed, case in
1458 	 * which we update it).
1459 	 * Otherwise we have to delete it.
1460 	 */
1461 	if (keep) {
1462 		l2_lookup[match] = *requested;
1463 		return 0;
1464 	}
1465 
1466 	/* To remove, the strategy is to overwrite the element with
1467 	 * the last one, and then reduce the array size by 1
1468 	 */
1469 	l2_lookup[match] = l2_lookup[table->entry_count - 1];
1470 	return sja1105_table_resize(table, table->entry_count - 1);
1471 }
1472 
1473 /* First-generation switches have a 4-way set associative TCAM that
1474  * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of
1475  * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin).
1476  * For the placement of a newly learnt FDB entry, the switch selects the bin
1477  * based on a hash function, and the way within that bin incrementally.
1478  */
1479 static int sja1105et_fdb_index(int bin, int way)
1480 {
1481 	return bin * SJA1105ET_FDB_BIN_SIZE + way;
1482 }
1483 
1484 static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin,
1485 					 const u8 *addr, u16 vid,
1486 					 struct sja1105_l2_lookup_entry *match,
1487 					 int *last_unused)
1488 {
1489 	int way;
1490 
1491 	for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) {
1492 		struct sja1105_l2_lookup_entry l2_lookup = {0};
1493 		int index = sja1105et_fdb_index(bin, way);
1494 
1495 		/* Skip unused entries, optionally marking them
1496 		 * into the return value
1497 		 */
1498 		if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1499 						index, &l2_lookup)) {
1500 			if (last_unused)
1501 				*last_unused = way;
1502 			continue;
1503 		}
1504 
1505 		if (l2_lookup.macaddr == ether_addr_to_u64(addr) &&
1506 		    l2_lookup.vlanid == vid) {
1507 			if (match)
1508 				*match = l2_lookup;
1509 			return way;
1510 		}
1511 	}
1512 	/* Return an invalid entry index if not found */
1513 	return -1;
1514 }
1515 
1516 int sja1105et_fdb_add(struct dsa_switch *ds, int port,
1517 		      const unsigned char *addr, u16 vid)
1518 {
1519 	struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp;
1520 	struct sja1105_private *priv = ds->priv;
1521 	struct device *dev = ds->dev;
1522 	int last_unused = -1;
1523 	int start, end, i;
1524 	int bin, way, rc;
1525 
1526 	bin = sja1105et_fdb_hash(priv, addr, vid);
1527 
1528 	way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1529 					    &l2_lookup, &last_unused);
1530 	if (way >= 0) {
1531 		/* We have an FDB entry. Is our port in the destination
1532 		 * mask? If yes, we need to do nothing. If not, we need
1533 		 * to rewrite the entry by adding this port to it.
1534 		 */
1535 		if ((l2_lookup.destports & BIT(port)) && l2_lookup.lockeds)
1536 			return 0;
1537 		l2_lookup.destports |= BIT(port);
1538 	} else {
1539 		int index = sja1105et_fdb_index(bin, way);
1540 
1541 		/* We don't have an FDB entry. We construct a new one and
1542 		 * try to find a place for it within the FDB table.
1543 		 */
1544 		l2_lookup.macaddr = ether_addr_to_u64(addr);
1545 		l2_lookup.destports = BIT(port);
1546 		l2_lookup.vlanid = vid;
1547 
1548 		if (last_unused >= 0) {
1549 			way = last_unused;
1550 		} else {
1551 			/* Bin is full, need to evict somebody.
1552 			 * Choose victim at random. If you get these messages
1553 			 * often, you may need to consider changing the
1554 			 * distribution function:
1555 			 * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly
1556 			 */
1557 			get_random_bytes(&way, sizeof(u8));
1558 			way %= SJA1105ET_FDB_BIN_SIZE;
1559 			dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n",
1560 				 bin, addr, way);
1561 			/* Evict entry */
1562 			sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1563 						     index, NULL, false);
1564 		}
1565 	}
1566 	l2_lookup.lockeds = true;
1567 	l2_lookup.index = sja1105et_fdb_index(bin, way);
1568 
1569 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1570 					  l2_lookup.index, &l2_lookup,
1571 					  true);
1572 	if (rc < 0)
1573 		return rc;
1574 
1575 	/* Invalidate a dynamically learned entry if that exists */
1576 	start = sja1105et_fdb_index(bin, 0);
1577 	end = sja1105et_fdb_index(bin, way);
1578 
1579 	for (i = start; i < end; i++) {
1580 		rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1581 						 i, &tmp);
1582 		if (rc == -ENOENT)
1583 			continue;
1584 		if (rc)
1585 			return rc;
1586 
1587 		if (tmp.macaddr != ether_addr_to_u64(addr) || tmp.vlanid != vid)
1588 			continue;
1589 
1590 		rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1591 						  i, NULL, false);
1592 		if (rc)
1593 			return rc;
1594 
1595 		break;
1596 	}
1597 
1598 	return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1599 }
1600 
1601 int sja1105et_fdb_del(struct dsa_switch *ds, int port,
1602 		      const unsigned char *addr, u16 vid)
1603 {
1604 	struct sja1105_l2_lookup_entry l2_lookup = {0};
1605 	struct sja1105_private *priv = ds->priv;
1606 	int index, bin, way, rc;
1607 	bool keep;
1608 
1609 	bin = sja1105et_fdb_hash(priv, addr, vid);
1610 	way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1611 					    &l2_lookup, NULL);
1612 	if (way < 0)
1613 		return 0;
1614 	index = sja1105et_fdb_index(bin, way);
1615 
1616 	/* We have an FDB entry. Is our port in the destination mask? If yes,
1617 	 * we need to remove it. If the resulting port mask becomes empty, we
1618 	 * need to completely evict the FDB entry.
1619 	 * Otherwise we just write it back.
1620 	 */
1621 	l2_lookup.destports &= ~BIT(port);
1622 
1623 	if (l2_lookup.destports)
1624 		keep = true;
1625 	else
1626 		keep = false;
1627 
1628 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1629 					  index, &l2_lookup, keep);
1630 	if (rc < 0)
1631 		return rc;
1632 
1633 	return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1634 }
1635 
1636 int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
1637 			const unsigned char *addr, u16 vid)
1638 {
1639 	struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp;
1640 	struct sja1105_private *priv = ds->priv;
1641 	int rc, i;
1642 
1643 	/* Search for an existing entry in the FDB table */
1644 	l2_lookup.macaddr = ether_addr_to_u64(addr);
1645 	l2_lookup.vlanid = vid;
1646 	l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1647 	l2_lookup.mask_vlanid = VLAN_VID_MASK;
1648 	l2_lookup.destports = BIT(port);
1649 
1650 	tmp = l2_lookup;
1651 
1652 	rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1653 					 SJA1105_SEARCH, &tmp);
1654 	if (rc == 0 && tmp.index != SJA1105_MAX_L2_LOOKUP_COUNT - 1) {
1655 		/* Found a static entry and this port is already in the entry's
1656 		 * port mask => job done
1657 		 */
1658 		if ((tmp.destports & BIT(port)) && tmp.lockeds)
1659 			return 0;
1660 
1661 		l2_lookup = tmp;
1662 
1663 		/* l2_lookup.index is populated by the switch in case it
1664 		 * found something.
1665 		 */
1666 		l2_lookup.destports |= BIT(port);
1667 		goto skip_finding_an_index;
1668 	}
1669 
1670 	/* Not found, so try to find an unused spot in the FDB.
1671 	 * This is slightly inefficient because the strategy is knock-knock at
1672 	 * every possible position from 0 to 1023.
1673 	 */
1674 	for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1675 		rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1676 						 i, NULL);
1677 		if (rc < 0)
1678 			break;
1679 	}
1680 	if (i == SJA1105_MAX_L2_LOOKUP_COUNT) {
1681 		dev_err(ds->dev, "FDB is full, cannot add entry.\n");
1682 		return -EINVAL;
1683 	}
1684 	l2_lookup.index = i;
1685 
1686 skip_finding_an_index:
1687 	l2_lookup.lockeds = true;
1688 
1689 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1690 					  l2_lookup.index, &l2_lookup,
1691 					  true);
1692 	if (rc < 0)
1693 		return rc;
1694 
1695 	/* The switch learns dynamic entries and looks up the FDB left to
1696 	 * right. It is possible that our addition was concurrent with the
1697 	 * dynamic learning of the same address, so now that the static entry
1698 	 * has been installed, we are certain that address learning for this
1699 	 * particular address has been turned off, so the dynamic entry either
1700 	 * is in the FDB at an index smaller than the static one, or isn't (it
1701 	 * can also be at a larger index, but in that case it is inactive
1702 	 * because the static FDB entry will match first, and the dynamic one
1703 	 * will eventually age out). Search for a dynamically learned address
1704 	 * prior to our static one and invalidate it.
1705 	 */
1706 	tmp = l2_lookup;
1707 
1708 	rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1709 					 SJA1105_SEARCH, &tmp);
1710 	if (rc < 0) {
1711 		dev_err(ds->dev,
1712 			"port %d failed to read back entry for %pM vid %d: %pe\n",
1713 			port, addr, vid, ERR_PTR(rc));
1714 		return rc;
1715 	}
1716 
1717 	if (tmp.index < l2_lookup.index) {
1718 		rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1719 						  tmp.index, NULL, false);
1720 		if (rc < 0)
1721 			return rc;
1722 	}
1723 
1724 	return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1725 }
1726 
1727 int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
1728 			const unsigned char *addr, u16 vid)
1729 {
1730 	struct sja1105_l2_lookup_entry l2_lookup = {0};
1731 	struct sja1105_private *priv = ds->priv;
1732 	bool keep;
1733 	int rc;
1734 
1735 	l2_lookup.macaddr = ether_addr_to_u64(addr);
1736 	l2_lookup.vlanid = vid;
1737 	l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1738 	l2_lookup.mask_vlanid = VLAN_VID_MASK;
1739 	l2_lookup.destports = BIT(port);
1740 
1741 	rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1742 					 SJA1105_SEARCH, &l2_lookup);
1743 	if (rc < 0)
1744 		return 0;
1745 
1746 	l2_lookup.destports &= ~BIT(port);
1747 
1748 	/* Decide whether we remove just this port from the FDB entry,
1749 	 * or if we remove it completely.
1750 	 */
1751 	if (l2_lookup.destports)
1752 		keep = true;
1753 	else
1754 		keep = false;
1755 
1756 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1757 					  l2_lookup.index, &l2_lookup, keep);
1758 	if (rc < 0)
1759 		return rc;
1760 
1761 	return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1762 }
1763 
1764 static int sja1105_fdb_add(struct dsa_switch *ds, int port,
1765 			   const unsigned char *addr, u16 vid)
1766 {
1767 	struct sja1105_private *priv = ds->priv;
1768 
1769 	return priv->info->fdb_add_cmd(ds, port, addr, vid);
1770 }
1771 
1772 static int sja1105_fdb_del(struct dsa_switch *ds, int port,
1773 			   const unsigned char *addr, u16 vid)
1774 {
1775 	struct sja1105_private *priv = ds->priv;
1776 
1777 	return priv->info->fdb_del_cmd(ds, port, addr, vid);
1778 }
1779 
1780 static int sja1105_fdb_dump(struct dsa_switch *ds, int port,
1781 			    dsa_fdb_dump_cb_t *cb, void *data)
1782 {
1783 	struct dsa_port *dp = dsa_to_port(ds, port);
1784 	struct sja1105_private *priv = ds->priv;
1785 	struct device *dev = ds->dev;
1786 	int i;
1787 
1788 	for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1789 		struct sja1105_l2_lookup_entry l2_lookup = {0};
1790 		u8 macaddr[ETH_ALEN];
1791 		int rc;
1792 
1793 		rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1794 						 i, &l2_lookup);
1795 		/* No fdb entry at i, not an issue */
1796 		if (rc == -ENOENT)
1797 			continue;
1798 		if (rc) {
1799 			dev_err(dev, "Failed to dump FDB: %d\n", rc);
1800 			return rc;
1801 		}
1802 
1803 		/* FDB dump callback is per port. This means we have to
1804 		 * disregard a valid entry if it's not for this port, even if
1805 		 * only to revisit it later. This is inefficient because the
1806 		 * 1024-sized FDB table needs to be traversed 4 times through
1807 		 * SPI during a 'bridge fdb show' command.
1808 		 */
1809 		if (!(l2_lookup.destports & BIT(port)))
1810 			continue;
1811 
1812 		/* We need to hide the FDB entry for unknown multicast */
1813 		if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST &&
1814 		    l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST)
1815 			continue;
1816 
1817 		u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1818 
1819 		/* We need to hide the dsa_8021q VLANs from the user. */
1820 		if (!dsa_port_is_vlan_filtering(dp))
1821 			l2_lookup.vlanid = 0;
1822 		rc = cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data);
1823 		if (rc)
1824 			return rc;
1825 	}
1826 	return 0;
1827 }
1828 
1829 static void sja1105_fast_age(struct dsa_switch *ds, int port)
1830 {
1831 	struct sja1105_private *priv = ds->priv;
1832 	int i;
1833 
1834 	for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1835 		struct sja1105_l2_lookup_entry l2_lookup = {0};
1836 		u8 macaddr[ETH_ALEN];
1837 		int rc;
1838 
1839 		rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1840 						 i, &l2_lookup);
1841 		/* No fdb entry at i, not an issue */
1842 		if (rc == -ENOENT)
1843 			continue;
1844 		if (rc) {
1845 			dev_err(ds->dev, "Failed to read FDB: %pe\n",
1846 				ERR_PTR(rc));
1847 			return;
1848 		}
1849 
1850 		if (!(l2_lookup.destports & BIT(port)))
1851 			continue;
1852 
1853 		/* Don't delete static FDB entries */
1854 		if (l2_lookup.lockeds)
1855 			continue;
1856 
1857 		u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1858 
1859 		rc = sja1105_fdb_del(ds, port, macaddr, l2_lookup.vlanid);
1860 		if (rc) {
1861 			dev_err(ds->dev,
1862 				"Failed to delete FDB entry %pM vid %lld: %pe\n",
1863 				macaddr, l2_lookup.vlanid, ERR_PTR(rc));
1864 			return;
1865 		}
1866 	}
1867 }
1868 
1869 static int sja1105_mdb_add(struct dsa_switch *ds, int port,
1870 			   const struct switchdev_obj_port_mdb *mdb)
1871 {
1872 	return sja1105_fdb_add(ds, port, mdb->addr, mdb->vid);
1873 }
1874 
1875 static int sja1105_mdb_del(struct dsa_switch *ds, int port,
1876 			   const struct switchdev_obj_port_mdb *mdb)
1877 {
1878 	return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid);
1879 }
1880 
1881 /* Common function for unicast and broadcast flood configuration.
1882  * Flooding is configured between each {ingress, egress} port pair, and since
1883  * the bridge's semantics are those of "egress flooding", it means we must
1884  * enable flooding towards this port from all ingress ports that are in the
1885  * same forwarding domain.
1886  */
1887 static int sja1105_manage_flood_domains(struct sja1105_private *priv)
1888 {
1889 	struct sja1105_l2_forwarding_entry *l2_fwd;
1890 	struct dsa_switch *ds = priv->ds;
1891 	int from, to, rc;
1892 
1893 	l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1894 
1895 	for (from = 0; from < ds->num_ports; from++) {
1896 		u64 fl_domain = 0, bc_domain = 0;
1897 
1898 		for (to = 0; to < priv->ds->num_ports; to++) {
1899 			if (!sja1105_can_forward(l2_fwd, from, to))
1900 				continue;
1901 
1902 			if (priv->ucast_egress_floods & BIT(to))
1903 				fl_domain |= BIT(to);
1904 			if (priv->bcast_egress_floods & BIT(to))
1905 				bc_domain |= BIT(to);
1906 		}
1907 
1908 		/* Nothing changed, nothing to do */
1909 		if (l2_fwd[from].fl_domain == fl_domain &&
1910 		    l2_fwd[from].bc_domain == bc_domain)
1911 			continue;
1912 
1913 		l2_fwd[from].fl_domain = fl_domain;
1914 		l2_fwd[from].bc_domain = bc_domain;
1915 
1916 		rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1917 						  from, &l2_fwd[from], true);
1918 		if (rc < 0)
1919 			return rc;
1920 	}
1921 
1922 	return 0;
1923 }
1924 
1925 static int sja1105_bridge_member(struct dsa_switch *ds, int port,
1926 				 struct net_device *br, bool member)
1927 {
1928 	struct sja1105_l2_forwarding_entry *l2_fwd;
1929 	struct sja1105_private *priv = ds->priv;
1930 	int i, rc;
1931 
1932 	l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1933 
1934 	for (i = 0; i < ds->num_ports; i++) {
1935 		/* Add this port to the forwarding matrix of the
1936 		 * other ports in the same bridge, and viceversa.
1937 		 */
1938 		if (!dsa_is_user_port(ds, i))
1939 			continue;
1940 		/* For the ports already under the bridge, only one thing needs
1941 		 * to be done, and that is to add this port to their
1942 		 * reachability domain. So we can perform the SPI write for
1943 		 * them immediately. However, for this port itself (the one
1944 		 * that is new to the bridge), we need to add all other ports
1945 		 * to its reachability domain. So we do that incrementally in
1946 		 * this loop, and perform the SPI write only at the end, once
1947 		 * the domain contains all other bridge ports.
1948 		 */
1949 		if (i == port)
1950 			continue;
1951 		if (dsa_to_port(ds, i)->bridge_dev != br)
1952 			continue;
1953 		sja1105_port_allow_traffic(l2_fwd, i, port, member);
1954 		sja1105_port_allow_traffic(l2_fwd, port, i, member);
1955 
1956 		rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1957 						  i, &l2_fwd[i], true);
1958 		if (rc < 0)
1959 			return rc;
1960 	}
1961 
1962 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1963 					  port, &l2_fwd[port], true);
1964 	if (rc)
1965 		return rc;
1966 
1967 	rc = sja1105_commit_pvid(ds, port);
1968 	if (rc)
1969 		return rc;
1970 
1971 	return sja1105_manage_flood_domains(priv);
1972 }
1973 
1974 static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port,
1975 					 u8 state)
1976 {
1977 	struct dsa_port *dp = dsa_to_port(ds, port);
1978 	struct sja1105_private *priv = ds->priv;
1979 	struct sja1105_mac_config_entry *mac;
1980 
1981 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1982 
1983 	switch (state) {
1984 	case BR_STATE_DISABLED:
1985 	case BR_STATE_BLOCKING:
1986 		/* From UM10944 description of DRPDTAG (why put this there?):
1987 		 * "Management traffic flows to the port regardless of the state
1988 		 * of the INGRESS flag". So BPDUs are still be allowed to pass.
1989 		 * At the moment no difference between DISABLED and BLOCKING.
1990 		 */
1991 		mac[port].ingress   = false;
1992 		mac[port].egress    = false;
1993 		mac[port].dyn_learn = false;
1994 		break;
1995 	case BR_STATE_LISTENING:
1996 		mac[port].ingress   = true;
1997 		mac[port].egress    = false;
1998 		mac[port].dyn_learn = false;
1999 		break;
2000 	case BR_STATE_LEARNING:
2001 		mac[port].ingress   = true;
2002 		mac[port].egress    = false;
2003 		mac[port].dyn_learn = dp->learning;
2004 		break;
2005 	case BR_STATE_FORWARDING:
2006 		mac[port].ingress   = true;
2007 		mac[port].egress    = true;
2008 		mac[port].dyn_learn = dp->learning;
2009 		break;
2010 	default:
2011 		dev_err(ds->dev, "invalid STP state: %d\n", state);
2012 		return;
2013 	}
2014 
2015 	sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
2016 				     &mac[port], true);
2017 }
2018 
2019 static int sja1105_bridge_join(struct dsa_switch *ds, int port,
2020 			       struct net_device *br)
2021 {
2022 	return sja1105_bridge_member(ds, port, br, true);
2023 }
2024 
2025 static void sja1105_bridge_leave(struct dsa_switch *ds, int port,
2026 				 struct net_device *br)
2027 {
2028 	sja1105_bridge_member(ds, port, br, false);
2029 }
2030 
2031 #define BYTES_PER_KBIT (1000LL / 8)
2032 
2033 static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv)
2034 {
2035 	int i;
2036 
2037 	for (i = 0; i < priv->info->num_cbs_shapers; i++)
2038 		if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope)
2039 			return i;
2040 
2041 	return -1;
2042 }
2043 
2044 static int sja1105_delete_cbs_shaper(struct sja1105_private *priv, int port,
2045 				     int prio)
2046 {
2047 	int i;
2048 
2049 	for (i = 0; i < priv->info->num_cbs_shapers; i++) {
2050 		struct sja1105_cbs_entry *cbs = &priv->cbs[i];
2051 
2052 		if (cbs->port == port && cbs->prio == prio) {
2053 			memset(cbs, 0, sizeof(*cbs));
2054 			return sja1105_dynamic_config_write(priv, BLK_IDX_CBS,
2055 							    i, cbs, true);
2056 		}
2057 	}
2058 
2059 	return 0;
2060 }
2061 
2062 static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port,
2063 				struct tc_cbs_qopt_offload *offload)
2064 {
2065 	struct sja1105_private *priv = ds->priv;
2066 	struct sja1105_cbs_entry *cbs;
2067 	int index;
2068 
2069 	if (!offload->enable)
2070 		return sja1105_delete_cbs_shaper(priv, port, offload->queue);
2071 
2072 	index = sja1105_find_unused_cbs_shaper(priv);
2073 	if (index < 0)
2074 		return -ENOSPC;
2075 
2076 	cbs = &priv->cbs[index];
2077 	cbs->port = port;
2078 	cbs->prio = offload->queue;
2079 	/* locredit and sendslope are negative by definition. In hardware,
2080 	 * positive values must be provided, and the negative sign is implicit.
2081 	 */
2082 	cbs->credit_hi = offload->hicredit;
2083 	cbs->credit_lo = abs(offload->locredit);
2084 	/* User space is in kbits/sec, hardware in bytes/sec */
2085 	cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT;
2086 	cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT);
2087 	/* Convert the negative values from 64-bit 2's complement
2088 	 * to 32-bit 2's complement (for the case of 0x80000000 whose
2089 	 * negative is still negative).
2090 	 */
2091 	cbs->credit_lo &= GENMASK_ULL(31, 0);
2092 	cbs->send_slope &= GENMASK_ULL(31, 0);
2093 
2094 	return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, index, cbs,
2095 					    true);
2096 }
2097 
2098 static int sja1105_reload_cbs(struct sja1105_private *priv)
2099 {
2100 	int rc = 0, i;
2101 
2102 	/* The credit based shapers are only allocated if
2103 	 * CONFIG_NET_SCH_CBS is enabled.
2104 	 */
2105 	if (!priv->cbs)
2106 		return 0;
2107 
2108 	for (i = 0; i < priv->info->num_cbs_shapers; i++) {
2109 		struct sja1105_cbs_entry *cbs = &priv->cbs[i];
2110 
2111 		if (!cbs->idle_slope && !cbs->send_slope)
2112 			continue;
2113 
2114 		rc = sja1105_dynamic_config_write(priv, BLK_IDX_CBS, i, cbs,
2115 						  true);
2116 		if (rc)
2117 			break;
2118 	}
2119 
2120 	return rc;
2121 }
2122 
2123 static const char * const sja1105_reset_reasons[] = {
2124 	[SJA1105_VLAN_FILTERING] = "VLAN filtering",
2125 	[SJA1105_RX_HWTSTAMPING] = "RX timestamping",
2126 	[SJA1105_AGEING_TIME] = "Ageing time",
2127 	[SJA1105_SCHEDULING] = "Time-aware scheduling",
2128 	[SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing",
2129 	[SJA1105_VIRTUAL_LINKS] = "Virtual links",
2130 };
2131 
2132 /* For situations where we need to change a setting at runtime that is only
2133  * available through the static configuration, resetting the switch in order
2134  * to upload the new static config is unavoidable. Back up the settings we
2135  * modify at runtime (currently only MAC) and restore them after uploading,
2136  * such that this operation is relatively seamless.
2137  */
2138 int sja1105_static_config_reload(struct sja1105_private *priv,
2139 				 enum sja1105_reset_reason reason)
2140 {
2141 	struct ptp_system_timestamp ptp_sts_before;
2142 	struct ptp_system_timestamp ptp_sts_after;
2143 	int speed_mbps[SJA1105_MAX_NUM_PORTS];
2144 	u16 bmcr[SJA1105_MAX_NUM_PORTS] = {0};
2145 	struct sja1105_mac_config_entry *mac;
2146 	struct dsa_switch *ds = priv->ds;
2147 	s64 t1, t2, t3, t4;
2148 	s64 t12, t34;
2149 	int rc, i;
2150 	s64 now;
2151 
2152 	mutex_lock(&priv->mgmt_lock);
2153 
2154 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2155 
2156 	/* Back up the dynamic link speed changed by sja1105_adjust_port_config
2157 	 * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the
2158 	 * switch wants to see in the static config in order to allow us to
2159 	 * change it through the dynamic interface later.
2160 	 */
2161 	for (i = 0; i < ds->num_ports; i++) {
2162 		u32 reg_addr = mdiobus_c45_addr(MDIO_MMD_VEND2, MDIO_CTRL1);
2163 
2164 		speed_mbps[i] = sja1105_port_speed_to_ethtool(priv,
2165 							      mac[i].speed);
2166 		mac[i].speed = priv->info->port_speed[SJA1105_SPEED_AUTO];
2167 
2168 		if (priv->xpcs[i])
2169 			bmcr[i] = mdiobus_read(priv->mdio_pcs, i, reg_addr);
2170 	}
2171 
2172 	/* No PTP operations can run right now */
2173 	mutex_lock(&priv->ptp_data.lock);
2174 
2175 	rc = __sja1105_ptp_gettimex(ds, &now, &ptp_sts_before);
2176 	if (rc < 0) {
2177 		mutex_unlock(&priv->ptp_data.lock);
2178 		goto out;
2179 	}
2180 
2181 	/* Reset switch and send updated static configuration */
2182 	rc = sja1105_static_config_upload(priv);
2183 	if (rc < 0) {
2184 		mutex_unlock(&priv->ptp_data.lock);
2185 		goto out;
2186 	}
2187 
2188 	rc = __sja1105_ptp_settime(ds, 0, &ptp_sts_after);
2189 	if (rc < 0) {
2190 		mutex_unlock(&priv->ptp_data.lock);
2191 		goto out;
2192 	}
2193 
2194 	t1 = timespec64_to_ns(&ptp_sts_before.pre_ts);
2195 	t2 = timespec64_to_ns(&ptp_sts_before.post_ts);
2196 	t3 = timespec64_to_ns(&ptp_sts_after.pre_ts);
2197 	t4 = timespec64_to_ns(&ptp_sts_after.post_ts);
2198 	/* Mid point, corresponds to pre-reset PTPCLKVAL */
2199 	t12 = t1 + (t2 - t1) / 2;
2200 	/* Mid point, corresponds to post-reset PTPCLKVAL, aka 0 */
2201 	t34 = t3 + (t4 - t3) / 2;
2202 	/* Advance PTPCLKVAL by the time it took since its readout */
2203 	now += (t34 - t12);
2204 
2205 	__sja1105_ptp_adjtime(ds, now);
2206 
2207 	mutex_unlock(&priv->ptp_data.lock);
2208 
2209 	dev_info(priv->ds->dev,
2210 		 "Reset switch and programmed static config. Reason: %s\n",
2211 		 sja1105_reset_reasons[reason]);
2212 
2213 	/* Configure the CGU (PLLs) for MII and RMII PHYs.
2214 	 * For these interfaces there is no dynamic configuration
2215 	 * needed, since PLLs have same settings at all speeds.
2216 	 */
2217 	if (priv->info->clocking_setup) {
2218 		rc = priv->info->clocking_setup(priv);
2219 		if (rc < 0)
2220 			goto out;
2221 	}
2222 
2223 	for (i = 0; i < ds->num_ports; i++) {
2224 		struct dw_xpcs *xpcs = priv->xpcs[i];
2225 		unsigned int mode;
2226 
2227 		rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]);
2228 		if (rc < 0)
2229 			goto out;
2230 
2231 		if (!xpcs)
2232 			continue;
2233 
2234 		if (bmcr[i] & BMCR_ANENABLE)
2235 			mode = MLO_AN_INBAND;
2236 		else if (priv->fixed_link[i])
2237 			mode = MLO_AN_FIXED;
2238 		else
2239 			mode = MLO_AN_PHY;
2240 
2241 		rc = xpcs_do_config(xpcs, priv->phy_mode[i], mode);
2242 		if (rc < 0)
2243 			goto out;
2244 
2245 		if (!phylink_autoneg_inband(mode)) {
2246 			int speed = SPEED_UNKNOWN;
2247 
2248 			if (priv->phy_mode[i] == PHY_INTERFACE_MODE_2500BASEX)
2249 				speed = SPEED_2500;
2250 			else if (bmcr[i] & BMCR_SPEED1000)
2251 				speed = SPEED_1000;
2252 			else if (bmcr[i] & BMCR_SPEED100)
2253 				speed = SPEED_100;
2254 			else
2255 				speed = SPEED_10;
2256 
2257 			xpcs_link_up(&xpcs->pcs, mode, priv->phy_mode[i],
2258 				     speed, DUPLEX_FULL);
2259 		}
2260 	}
2261 
2262 	rc = sja1105_reload_cbs(priv);
2263 	if (rc < 0)
2264 		goto out;
2265 out:
2266 	mutex_unlock(&priv->mgmt_lock);
2267 
2268 	return rc;
2269 }
2270 
2271 static enum dsa_tag_protocol
2272 sja1105_get_tag_protocol(struct dsa_switch *ds, int port,
2273 			 enum dsa_tag_protocol mp)
2274 {
2275 	struct sja1105_private *priv = ds->priv;
2276 
2277 	return priv->info->tag_proto;
2278 }
2279 
2280 /* The TPID setting belongs to the General Parameters table,
2281  * which can only be partially reconfigured at runtime (and not the TPID).
2282  * So a switch reset is required.
2283  */
2284 int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled,
2285 			   struct netlink_ext_ack *extack)
2286 {
2287 	struct sja1105_l2_lookup_params_entry *l2_lookup_params;
2288 	struct sja1105_general_params_entry *general_params;
2289 	struct sja1105_private *priv = ds->priv;
2290 	struct sja1105_table *table;
2291 	struct sja1105_rule *rule;
2292 	u16 tpid, tpid2;
2293 	int rc;
2294 
2295 	list_for_each_entry(rule, &priv->flow_block.rules, list) {
2296 		if (rule->type == SJA1105_RULE_VL) {
2297 			NL_SET_ERR_MSG_MOD(extack,
2298 					   "Cannot change VLAN filtering with active VL rules");
2299 			return -EBUSY;
2300 		}
2301 	}
2302 
2303 	if (enabled) {
2304 		/* Enable VLAN filtering. */
2305 		tpid  = ETH_P_8021Q;
2306 		tpid2 = ETH_P_8021AD;
2307 	} else {
2308 		/* Disable VLAN filtering. */
2309 		tpid  = ETH_P_SJA1105;
2310 		tpid2 = ETH_P_SJA1105;
2311 	}
2312 
2313 	table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2314 	general_params = table->entries;
2315 	/* EtherType used to identify inner tagged (C-tag) VLAN traffic */
2316 	general_params->tpid = tpid;
2317 	/* EtherType used to identify outer tagged (S-tag) VLAN traffic */
2318 	general_params->tpid2 = tpid2;
2319 	/* When VLAN filtering is on, we need to at least be able to
2320 	 * decode management traffic through the "backup plan".
2321 	 */
2322 	general_params->incl_srcpt1 = enabled;
2323 	general_params->incl_srcpt0 = enabled;
2324 
2325 	/* VLAN filtering => independent VLAN learning.
2326 	 * No VLAN filtering (or best effort) => shared VLAN learning.
2327 	 *
2328 	 * In shared VLAN learning mode, untagged traffic still gets
2329 	 * pvid-tagged, and the FDB table gets populated with entries
2330 	 * containing the "real" (pvid or from VLAN tag) VLAN ID.
2331 	 * However the switch performs a masked L2 lookup in the FDB,
2332 	 * effectively only looking up a frame's DMAC (and not VID) for the
2333 	 * forwarding decision.
2334 	 *
2335 	 * This is extremely convenient for us, because in modes with
2336 	 * vlan_filtering=0, dsa_8021q actually installs unique pvid's into
2337 	 * each front panel port. This is good for identification but breaks
2338 	 * learning badly - the VID of the learnt FDB entry is unique, aka
2339 	 * no frames coming from any other port are going to have it. So
2340 	 * for forwarding purposes, this is as though learning was broken
2341 	 * (all frames get flooded).
2342 	 */
2343 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2344 	l2_lookup_params = table->entries;
2345 	l2_lookup_params->shared_learn = !enabled;
2346 
2347 	for (port = 0; port < ds->num_ports; port++) {
2348 		if (dsa_is_unused_port(ds, port))
2349 			continue;
2350 
2351 		rc = sja1105_commit_pvid(ds, port);
2352 		if (rc)
2353 			return rc;
2354 	}
2355 
2356 	rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING);
2357 	if (rc)
2358 		NL_SET_ERR_MSG_MOD(extack, "Failed to change VLAN Ethertype");
2359 
2360 	return rc;
2361 }
2362 
2363 static int sja1105_vlan_add(struct sja1105_private *priv, int port, u16 vid,
2364 			    u16 flags, bool allowed_ingress)
2365 {
2366 	struct sja1105_vlan_lookup_entry *vlan;
2367 	struct sja1105_table *table;
2368 	int match, rc;
2369 
2370 	table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2371 
2372 	match = sja1105_is_vlan_configured(priv, vid);
2373 	if (match < 0) {
2374 		rc = sja1105_table_resize(table, table->entry_count + 1);
2375 		if (rc)
2376 			return rc;
2377 		match = table->entry_count - 1;
2378 	}
2379 
2380 	/* Assign pointer after the resize (it's new memory) */
2381 	vlan = table->entries;
2382 
2383 	vlan[match].type_entry = SJA1110_VLAN_D_TAG;
2384 	vlan[match].vlanid = vid;
2385 	vlan[match].vlan_bc |= BIT(port);
2386 
2387 	if (allowed_ingress)
2388 		vlan[match].vmemb_port |= BIT(port);
2389 	else
2390 		vlan[match].vmemb_port &= ~BIT(port);
2391 
2392 	if (flags & BRIDGE_VLAN_INFO_UNTAGGED)
2393 		vlan[match].tag_port &= ~BIT(port);
2394 	else
2395 		vlan[match].tag_port |= BIT(port);
2396 
2397 	return sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
2398 					    &vlan[match], true);
2399 }
2400 
2401 static int sja1105_vlan_del(struct sja1105_private *priv, int port, u16 vid)
2402 {
2403 	struct sja1105_vlan_lookup_entry *vlan;
2404 	struct sja1105_table *table;
2405 	bool keep = true;
2406 	int match, rc;
2407 
2408 	table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2409 
2410 	match = sja1105_is_vlan_configured(priv, vid);
2411 	/* Can't delete a missing entry. */
2412 	if (match < 0)
2413 		return 0;
2414 
2415 	/* Assign pointer after the resize (it's new memory) */
2416 	vlan = table->entries;
2417 
2418 	vlan[match].vlanid = vid;
2419 	vlan[match].vlan_bc &= ~BIT(port);
2420 	vlan[match].vmemb_port &= ~BIT(port);
2421 	/* Also unset tag_port, just so we don't have a confusing bitmap
2422 	 * (no practical purpose).
2423 	 */
2424 	vlan[match].tag_port &= ~BIT(port);
2425 
2426 	/* If there's no port left as member of this VLAN,
2427 	 * it's time for it to go.
2428 	 */
2429 	if (!vlan[match].vmemb_port)
2430 		keep = false;
2431 
2432 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
2433 					  &vlan[match], keep);
2434 	if (rc < 0)
2435 		return rc;
2436 
2437 	if (!keep)
2438 		return sja1105_table_delete_entry(table, match);
2439 
2440 	return 0;
2441 }
2442 
2443 static int sja1105_bridge_vlan_add(struct dsa_switch *ds, int port,
2444 				   const struct switchdev_obj_port_vlan *vlan,
2445 				   struct netlink_ext_ack *extack)
2446 {
2447 	struct sja1105_private *priv = ds->priv;
2448 	u16 flags = vlan->flags;
2449 	int rc;
2450 
2451 	/* Be sure to deny alterations to the configuration done by tag_8021q.
2452 	 */
2453 	if (vid_is_dsa_8021q(vlan->vid)) {
2454 		NL_SET_ERR_MSG_MOD(extack,
2455 				   "Range 1024-3071 reserved for dsa_8021q operation");
2456 		return -EBUSY;
2457 	}
2458 
2459 	/* Always install bridge VLANs as egress-tagged on CPU and DSA ports */
2460 	if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
2461 		flags = 0;
2462 
2463 	rc = sja1105_vlan_add(priv, port, vlan->vid, flags, true);
2464 	if (rc)
2465 		return rc;
2466 
2467 	if (vlan->flags & BRIDGE_VLAN_INFO_PVID)
2468 		priv->bridge_pvid[port] = vlan->vid;
2469 
2470 	return sja1105_commit_pvid(ds, port);
2471 }
2472 
2473 static int sja1105_bridge_vlan_del(struct dsa_switch *ds, int port,
2474 				   const struct switchdev_obj_port_vlan *vlan)
2475 {
2476 	struct sja1105_private *priv = ds->priv;
2477 	int rc;
2478 
2479 	rc = sja1105_vlan_del(priv, port, vlan->vid);
2480 	if (rc)
2481 		return rc;
2482 
2483 	/* In case the pvid was deleted, make sure that untagged packets will
2484 	 * be dropped.
2485 	 */
2486 	return sja1105_commit_pvid(ds, port);
2487 }
2488 
2489 static int sja1105_dsa_8021q_vlan_add(struct dsa_switch *ds, int port, u16 vid,
2490 				      u16 flags)
2491 {
2492 	struct sja1105_private *priv = ds->priv;
2493 	bool allowed_ingress = true;
2494 	int rc;
2495 
2496 	/* Prevent attackers from trying to inject a DSA tag from
2497 	 * the outside world.
2498 	 */
2499 	if (dsa_is_user_port(ds, port))
2500 		allowed_ingress = false;
2501 
2502 	rc = sja1105_vlan_add(priv, port, vid, flags, allowed_ingress);
2503 	if (rc)
2504 		return rc;
2505 
2506 	if (flags & BRIDGE_VLAN_INFO_PVID)
2507 		priv->tag_8021q_pvid[port] = vid;
2508 
2509 	return sja1105_commit_pvid(ds, port);
2510 }
2511 
2512 static int sja1105_dsa_8021q_vlan_del(struct dsa_switch *ds, int port, u16 vid)
2513 {
2514 	struct sja1105_private *priv = ds->priv;
2515 
2516 	return sja1105_vlan_del(priv, port, vid);
2517 }
2518 
2519 static int sja1105_prechangeupper(struct dsa_switch *ds, int port,
2520 				  struct netdev_notifier_changeupper_info *info)
2521 {
2522 	struct netlink_ext_ack *extack = info->info.extack;
2523 	struct net_device *upper = info->upper_dev;
2524 	struct dsa_switch_tree *dst = ds->dst;
2525 	struct dsa_port *dp;
2526 
2527 	if (is_vlan_dev(upper)) {
2528 		NL_SET_ERR_MSG_MOD(extack, "8021q uppers are not supported");
2529 		return -EBUSY;
2530 	}
2531 
2532 	if (netif_is_bridge_master(upper)) {
2533 		list_for_each_entry(dp, &dst->ports, list) {
2534 			if (dp->bridge_dev && dp->bridge_dev != upper &&
2535 			    br_vlan_enabled(dp->bridge_dev)) {
2536 				NL_SET_ERR_MSG_MOD(extack,
2537 						   "Only one VLAN-aware bridge is supported");
2538 				return -EBUSY;
2539 			}
2540 		}
2541 	}
2542 
2543 	return 0;
2544 }
2545 
2546 static void sja1105_port_disable(struct dsa_switch *ds, int port)
2547 {
2548 	struct sja1105_private *priv = ds->priv;
2549 	struct sja1105_port *sp = &priv->ports[port];
2550 
2551 	if (!dsa_is_user_port(ds, port))
2552 		return;
2553 
2554 	kthread_cancel_work_sync(&sp->xmit_work);
2555 	skb_queue_purge(&sp->xmit_queue);
2556 }
2557 
2558 static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot,
2559 			     struct sk_buff *skb, bool takets)
2560 {
2561 	struct sja1105_mgmt_entry mgmt_route = {0};
2562 	struct sja1105_private *priv = ds->priv;
2563 	struct ethhdr *hdr;
2564 	int timeout = 10;
2565 	int rc;
2566 
2567 	hdr = eth_hdr(skb);
2568 
2569 	mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest);
2570 	mgmt_route.destports = BIT(port);
2571 	mgmt_route.enfport = 1;
2572 	mgmt_route.tsreg = 0;
2573 	mgmt_route.takets = takets;
2574 
2575 	rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2576 					  slot, &mgmt_route, true);
2577 	if (rc < 0) {
2578 		kfree_skb(skb);
2579 		return rc;
2580 	}
2581 
2582 	/* Transfer skb to the host port. */
2583 	dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave);
2584 
2585 	/* Wait until the switch has processed the frame */
2586 	do {
2587 		rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE,
2588 						 slot, &mgmt_route);
2589 		if (rc < 0) {
2590 			dev_err_ratelimited(priv->ds->dev,
2591 					    "failed to poll for mgmt route\n");
2592 			continue;
2593 		}
2594 
2595 		/* UM10944: The ENFPORT flag of the respective entry is
2596 		 * cleared when a match is found. The host can use this
2597 		 * flag as an acknowledgment.
2598 		 */
2599 		cpu_relax();
2600 	} while (mgmt_route.enfport && --timeout);
2601 
2602 	if (!timeout) {
2603 		/* Clean up the management route so that a follow-up
2604 		 * frame may not match on it by mistake.
2605 		 * This is only hardware supported on P/Q/R/S - on E/T it is
2606 		 * a no-op and we are silently discarding the -EOPNOTSUPP.
2607 		 */
2608 		sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2609 					     slot, &mgmt_route, false);
2610 		dev_err_ratelimited(priv->ds->dev, "xmit timed out\n");
2611 	}
2612 
2613 	return NETDEV_TX_OK;
2614 }
2615 
2616 #define work_to_port(work) \
2617 		container_of((work), struct sja1105_port, xmit_work)
2618 #define tagger_to_sja1105(t) \
2619 		container_of((t), struct sja1105_private, tagger_data)
2620 
2621 /* Deferred work is unfortunately necessary because setting up the management
2622  * route cannot be done from atomit context (SPI transfer takes a sleepable
2623  * lock on the bus)
2624  */
2625 static void sja1105_port_deferred_xmit(struct kthread_work *work)
2626 {
2627 	struct sja1105_port *sp = work_to_port(work);
2628 	struct sja1105_tagger_data *tagger_data = sp->data;
2629 	struct sja1105_private *priv = tagger_to_sja1105(tagger_data);
2630 	int port = sp - priv->ports;
2631 	struct sk_buff *skb;
2632 
2633 	while ((skb = skb_dequeue(&sp->xmit_queue)) != NULL) {
2634 		struct sk_buff *clone = SJA1105_SKB_CB(skb)->clone;
2635 
2636 		mutex_lock(&priv->mgmt_lock);
2637 
2638 		sja1105_mgmt_xmit(priv->ds, port, 0, skb, !!clone);
2639 
2640 		/* The clone, if there, was made by dsa_skb_tx_timestamp */
2641 		if (clone)
2642 			sja1105_ptp_txtstamp_skb(priv->ds, port, clone);
2643 
2644 		mutex_unlock(&priv->mgmt_lock);
2645 	}
2646 }
2647 
2648 /* The MAXAGE setting belongs to the L2 Forwarding Parameters table,
2649  * which cannot be reconfigured at runtime. So a switch reset is required.
2650  */
2651 static int sja1105_set_ageing_time(struct dsa_switch *ds,
2652 				   unsigned int ageing_time)
2653 {
2654 	struct sja1105_l2_lookup_params_entry *l2_lookup_params;
2655 	struct sja1105_private *priv = ds->priv;
2656 	struct sja1105_table *table;
2657 	unsigned int maxage;
2658 
2659 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2660 	l2_lookup_params = table->entries;
2661 
2662 	maxage = SJA1105_AGEING_TIME_MS(ageing_time);
2663 
2664 	if (l2_lookup_params->maxage == maxage)
2665 		return 0;
2666 
2667 	l2_lookup_params->maxage = maxage;
2668 
2669 	return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME);
2670 }
2671 
2672 static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu)
2673 {
2674 	struct sja1105_l2_policing_entry *policing;
2675 	struct sja1105_private *priv = ds->priv;
2676 
2677 	new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN;
2678 
2679 	if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
2680 		new_mtu += VLAN_HLEN;
2681 
2682 	policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2683 
2684 	if (policing[port].maxlen == new_mtu)
2685 		return 0;
2686 
2687 	policing[port].maxlen = new_mtu;
2688 
2689 	return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2690 }
2691 
2692 static int sja1105_get_max_mtu(struct dsa_switch *ds, int port)
2693 {
2694 	return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN;
2695 }
2696 
2697 static int sja1105_port_setup_tc(struct dsa_switch *ds, int port,
2698 				 enum tc_setup_type type,
2699 				 void *type_data)
2700 {
2701 	switch (type) {
2702 	case TC_SETUP_QDISC_TAPRIO:
2703 		return sja1105_setup_tc_taprio(ds, port, type_data);
2704 	case TC_SETUP_QDISC_CBS:
2705 		return sja1105_setup_tc_cbs(ds, port, type_data);
2706 	default:
2707 		return -EOPNOTSUPP;
2708 	}
2709 }
2710 
2711 /* We have a single mirror (@to) port, but can configure ingress and egress
2712  * mirroring on all other (@from) ports.
2713  * We need to allow mirroring rules only as long as the @to port is always the
2714  * same, and we need to unset the @to port from mirr_port only when there is no
2715  * mirroring rule that references it.
2716  */
2717 static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to,
2718 				bool ingress, bool enabled)
2719 {
2720 	struct sja1105_general_params_entry *general_params;
2721 	struct sja1105_mac_config_entry *mac;
2722 	struct dsa_switch *ds = priv->ds;
2723 	struct sja1105_table *table;
2724 	bool already_enabled;
2725 	u64 new_mirr_port;
2726 	int rc;
2727 
2728 	table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2729 	general_params = table->entries;
2730 
2731 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2732 
2733 	already_enabled = (general_params->mirr_port != ds->num_ports);
2734 	if (already_enabled && enabled && general_params->mirr_port != to) {
2735 		dev_err(priv->ds->dev,
2736 			"Delete mirroring rules towards port %llu first\n",
2737 			general_params->mirr_port);
2738 		return -EBUSY;
2739 	}
2740 
2741 	new_mirr_port = to;
2742 	if (!enabled) {
2743 		bool keep = false;
2744 		int port;
2745 
2746 		/* Anybody still referencing mirr_port? */
2747 		for (port = 0; port < ds->num_ports; port++) {
2748 			if (mac[port].ing_mirr || mac[port].egr_mirr) {
2749 				keep = true;
2750 				break;
2751 			}
2752 		}
2753 		/* Unset already_enabled for next time */
2754 		if (!keep)
2755 			new_mirr_port = ds->num_ports;
2756 	}
2757 	if (new_mirr_port != general_params->mirr_port) {
2758 		general_params->mirr_port = new_mirr_port;
2759 
2760 		rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS,
2761 						  0, general_params, true);
2762 		if (rc < 0)
2763 			return rc;
2764 	}
2765 
2766 	if (ingress)
2767 		mac[from].ing_mirr = enabled;
2768 	else
2769 		mac[from].egr_mirr = enabled;
2770 
2771 	return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from,
2772 					    &mac[from], true);
2773 }
2774 
2775 static int sja1105_mirror_add(struct dsa_switch *ds, int port,
2776 			      struct dsa_mall_mirror_tc_entry *mirror,
2777 			      bool ingress)
2778 {
2779 	return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2780 				    ingress, true);
2781 }
2782 
2783 static void sja1105_mirror_del(struct dsa_switch *ds, int port,
2784 			       struct dsa_mall_mirror_tc_entry *mirror)
2785 {
2786 	sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2787 			     mirror->ingress, false);
2788 }
2789 
2790 static int sja1105_port_policer_add(struct dsa_switch *ds, int port,
2791 				    struct dsa_mall_policer_tc_entry *policer)
2792 {
2793 	struct sja1105_l2_policing_entry *policing;
2794 	struct sja1105_private *priv = ds->priv;
2795 
2796 	policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2797 
2798 	/* In hardware, every 8 microseconds the credit level is incremented by
2799 	 * the value of RATE bytes divided by 64, up to a maximum of SMAX
2800 	 * bytes.
2801 	 */
2802 	policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec,
2803 				      1000000);
2804 	policing[port].smax = policer->burst;
2805 
2806 	return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2807 }
2808 
2809 static void sja1105_port_policer_del(struct dsa_switch *ds, int port)
2810 {
2811 	struct sja1105_l2_policing_entry *policing;
2812 	struct sja1105_private *priv = ds->priv;
2813 
2814 	policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2815 
2816 	policing[port].rate = SJA1105_RATE_MBPS(1000);
2817 	policing[port].smax = 65535;
2818 
2819 	sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2820 }
2821 
2822 static int sja1105_port_set_learning(struct sja1105_private *priv, int port,
2823 				     bool enabled)
2824 {
2825 	struct sja1105_mac_config_entry *mac;
2826 
2827 	mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2828 
2829 	mac[port].dyn_learn = enabled;
2830 
2831 	return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
2832 					    &mac[port], true);
2833 }
2834 
2835 static int sja1105_port_ucast_bcast_flood(struct sja1105_private *priv, int to,
2836 					  struct switchdev_brport_flags flags)
2837 {
2838 	if (flags.mask & BR_FLOOD) {
2839 		if (flags.val & BR_FLOOD)
2840 			priv->ucast_egress_floods |= BIT(to);
2841 		else
2842 			priv->ucast_egress_floods &= ~BIT(to);
2843 	}
2844 
2845 	if (flags.mask & BR_BCAST_FLOOD) {
2846 		if (flags.val & BR_BCAST_FLOOD)
2847 			priv->bcast_egress_floods |= BIT(to);
2848 		else
2849 			priv->bcast_egress_floods &= ~BIT(to);
2850 	}
2851 
2852 	return sja1105_manage_flood_domains(priv);
2853 }
2854 
2855 static int sja1105_port_mcast_flood(struct sja1105_private *priv, int to,
2856 				    struct switchdev_brport_flags flags,
2857 				    struct netlink_ext_ack *extack)
2858 {
2859 	struct sja1105_l2_lookup_entry *l2_lookup;
2860 	struct sja1105_table *table;
2861 	int match;
2862 
2863 	table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
2864 	l2_lookup = table->entries;
2865 
2866 	for (match = 0; match < table->entry_count; match++)
2867 		if (l2_lookup[match].macaddr == SJA1105_UNKNOWN_MULTICAST &&
2868 		    l2_lookup[match].mask_macaddr == SJA1105_UNKNOWN_MULTICAST)
2869 			break;
2870 
2871 	if (match == table->entry_count) {
2872 		NL_SET_ERR_MSG_MOD(extack,
2873 				   "Could not find FDB entry for unknown multicast");
2874 		return -ENOSPC;
2875 	}
2876 
2877 	if (flags.val & BR_MCAST_FLOOD)
2878 		l2_lookup[match].destports |= BIT(to);
2879 	else
2880 		l2_lookup[match].destports &= ~BIT(to);
2881 
2882 	return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
2883 					    l2_lookup[match].index,
2884 					    &l2_lookup[match],
2885 					    true);
2886 }
2887 
2888 static int sja1105_port_pre_bridge_flags(struct dsa_switch *ds, int port,
2889 					 struct switchdev_brport_flags flags,
2890 					 struct netlink_ext_ack *extack)
2891 {
2892 	struct sja1105_private *priv = ds->priv;
2893 
2894 	if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
2895 			   BR_BCAST_FLOOD))
2896 		return -EINVAL;
2897 
2898 	if (flags.mask & (BR_FLOOD | BR_MCAST_FLOOD) &&
2899 	    !priv->info->can_limit_mcast_flood) {
2900 		bool multicast = !!(flags.val & BR_MCAST_FLOOD);
2901 		bool unicast = !!(flags.val & BR_FLOOD);
2902 
2903 		if (unicast != multicast) {
2904 			NL_SET_ERR_MSG_MOD(extack,
2905 					   "This chip cannot configure multicast flooding independently of unicast");
2906 			return -EINVAL;
2907 		}
2908 	}
2909 
2910 	return 0;
2911 }
2912 
2913 static int sja1105_port_bridge_flags(struct dsa_switch *ds, int port,
2914 				     struct switchdev_brport_flags flags,
2915 				     struct netlink_ext_ack *extack)
2916 {
2917 	struct sja1105_private *priv = ds->priv;
2918 	int rc;
2919 
2920 	if (flags.mask & BR_LEARNING) {
2921 		bool learn_ena = !!(flags.val & BR_LEARNING);
2922 
2923 		rc = sja1105_port_set_learning(priv, port, learn_ena);
2924 		if (rc)
2925 			return rc;
2926 	}
2927 
2928 	if (flags.mask & (BR_FLOOD | BR_BCAST_FLOOD)) {
2929 		rc = sja1105_port_ucast_bcast_flood(priv, port, flags);
2930 		if (rc)
2931 			return rc;
2932 	}
2933 
2934 	/* For chips that can't offload BR_MCAST_FLOOD independently, there
2935 	 * is nothing to do here, we ensured the configuration is in sync by
2936 	 * offloading BR_FLOOD.
2937 	 */
2938 	if (flags.mask & BR_MCAST_FLOOD && priv->info->can_limit_mcast_flood) {
2939 		rc = sja1105_port_mcast_flood(priv, port, flags,
2940 					      extack);
2941 		if (rc)
2942 			return rc;
2943 	}
2944 
2945 	return 0;
2946 }
2947 
2948 static void sja1105_teardown_ports(struct sja1105_private *priv)
2949 {
2950 	struct dsa_switch *ds = priv->ds;
2951 	int port;
2952 
2953 	for (port = 0; port < ds->num_ports; port++) {
2954 		struct sja1105_port *sp = &priv->ports[port];
2955 
2956 		if (sp->xmit_worker)
2957 			kthread_destroy_worker(sp->xmit_worker);
2958 	}
2959 }
2960 
2961 static int sja1105_setup_ports(struct sja1105_private *priv)
2962 {
2963 	struct sja1105_tagger_data *tagger_data = &priv->tagger_data;
2964 	struct dsa_switch *ds = priv->ds;
2965 	int port, rc;
2966 
2967 	/* Connections between dsa_port and sja1105_port */
2968 	for (port = 0; port < ds->num_ports; port++) {
2969 		struct sja1105_port *sp = &priv->ports[port];
2970 		struct dsa_port *dp = dsa_to_port(ds, port);
2971 		struct kthread_worker *worker;
2972 		struct net_device *slave;
2973 
2974 		if (!dsa_port_is_user(dp))
2975 			continue;
2976 
2977 		dp->priv = sp;
2978 		sp->data = tagger_data;
2979 		slave = dp->slave;
2980 		kthread_init_work(&sp->xmit_work, sja1105_port_deferred_xmit);
2981 		worker = kthread_create_worker(0, "%s_xmit", slave->name);
2982 		if (IS_ERR(worker)) {
2983 			rc = PTR_ERR(worker);
2984 			dev_err(ds->dev,
2985 				"failed to create deferred xmit thread: %d\n",
2986 				rc);
2987 			goto out_destroy_workers;
2988 		}
2989 		sp->xmit_worker = worker;
2990 		skb_queue_head_init(&sp->xmit_queue);
2991 	}
2992 
2993 	return 0;
2994 
2995 out_destroy_workers:
2996 	sja1105_teardown_ports(priv);
2997 	return rc;
2998 }
2999 
3000 /* The programming model for the SJA1105 switch is "all-at-once" via static
3001  * configuration tables. Some of these can be dynamically modified at runtime,
3002  * but not the xMII mode parameters table.
3003  * Furthermode, some PHYs may not have crystals for generating their clocks
3004  * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's
3005  * ref_clk pin. So port clocking needs to be initialized early, before
3006  * connecting to PHYs is attempted, otherwise they won't respond through MDIO.
3007  * Setting correct PHY link speed does not matter now.
3008  * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY
3009  * bindings are not yet parsed by DSA core. We need to parse early so that we
3010  * can populate the xMII mode parameters table.
3011  */
3012 static int sja1105_setup(struct dsa_switch *ds)
3013 {
3014 	struct sja1105_private *priv = ds->priv;
3015 	int rc;
3016 
3017 	if (priv->info->disable_microcontroller) {
3018 		rc = priv->info->disable_microcontroller(priv);
3019 		if (rc < 0) {
3020 			dev_err(ds->dev,
3021 				"Failed to disable microcontroller: %pe\n",
3022 				ERR_PTR(rc));
3023 			return rc;
3024 		}
3025 	}
3026 
3027 	/* Create and send configuration down to device */
3028 	rc = sja1105_static_config_load(priv);
3029 	if (rc < 0) {
3030 		dev_err(ds->dev, "Failed to load static config: %d\n", rc);
3031 		return rc;
3032 	}
3033 
3034 	/* Configure the CGU (PHY link modes and speeds) */
3035 	if (priv->info->clocking_setup) {
3036 		rc = priv->info->clocking_setup(priv);
3037 		if (rc < 0) {
3038 			dev_err(ds->dev,
3039 				"Failed to configure MII clocking: %pe\n",
3040 				ERR_PTR(rc));
3041 			goto out_static_config_free;
3042 		}
3043 	}
3044 
3045 	rc = sja1105_setup_ports(priv);
3046 	if (rc)
3047 		goto out_static_config_free;
3048 
3049 	sja1105_tas_setup(ds);
3050 	sja1105_flower_setup(ds);
3051 
3052 	rc = sja1105_ptp_clock_register(ds);
3053 	if (rc < 0) {
3054 		dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc);
3055 		goto out_flower_teardown;
3056 	}
3057 
3058 	rc = sja1105_mdiobus_register(ds);
3059 	if (rc < 0) {
3060 		dev_err(ds->dev, "Failed to register MDIO bus: %pe\n",
3061 			ERR_PTR(rc));
3062 		goto out_ptp_clock_unregister;
3063 	}
3064 
3065 	rc = sja1105_devlink_setup(ds);
3066 	if (rc < 0)
3067 		goto out_mdiobus_unregister;
3068 
3069 	rtnl_lock();
3070 	rc = dsa_tag_8021q_register(ds, htons(ETH_P_8021Q));
3071 	rtnl_unlock();
3072 	if (rc)
3073 		goto out_devlink_teardown;
3074 
3075 	/* On SJA1105, VLAN filtering per se is always enabled in hardware.
3076 	 * The only thing we can do to disable it is lie about what the 802.1Q
3077 	 * EtherType is.
3078 	 * So it will still try to apply VLAN filtering, but all ingress
3079 	 * traffic (except frames received with EtherType of ETH_P_SJA1105)
3080 	 * will be internally tagged with a distorted VLAN header where the
3081 	 * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid.
3082 	 */
3083 	ds->vlan_filtering_is_global = true;
3084 	ds->untag_bridge_pvid = true;
3085 	/* tag_8021q has 3 bits for the VBID, and the value 0 is reserved */
3086 	ds->num_fwd_offloading_bridges = 7;
3087 
3088 	/* Advertise the 8 egress queues */
3089 	ds->num_tx_queues = SJA1105_NUM_TC;
3090 
3091 	ds->mtu_enforcement_ingress = true;
3092 	ds->assisted_learning_on_cpu_port = true;
3093 
3094 	return 0;
3095 
3096 out_devlink_teardown:
3097 	sja1105_devlink_teardown(ds);
3098 out_mdiobus_unregister:
3099 	sja1105_mdiobus_unregister(ds);
3100 out_ptp_clock_unregister:
3101 	sja1105_ptp_clock_unregister(ds);
3102 out_flower_teardown:
3103 	sja1105_flower_teardown(ds);
3104 	sja1105_tas_teardown(ds);
3105 	sja1105_teardown_ports(priv);
3106 out_static_config_free:
3107 	sja1105_static_config_free(&priv->static_config);
3108 
3109 	return rc;
3110 }
3111 
3112 static void sja1105_teardown(struct dsa_switch *ds)
3113 {
3114 	struct sja1105_private *priv = ds->priv;
3115 
3116 	rtnl_lock();
3117 	dsa_tag_8021q_unregister(ds);
3118 	rtnl_unlock();
3119 
3120 	sja1105_devlink_teardown(ds);
3121 	sja1105_mdiobus_unregister(ds);
3122 	sja1105_ptp_clock_unregister(ds);
3123 	sja1105_flower_teardown(ds);
3124 	sja1105_tas_teardown(ds);
3125 	sja1105_teardown_ports(priv);
3126 	sja1105_static_config_free(&priv->static_config);
3127 }
3128 
3129 static const struct dsa_switch_ops sja1105_switch_ops = {
3130 	.get_tag_protocol	= sja1105_get_tag_protocol,
3131 	.setup			= sja1105_setup,
3132 	.teardown		= sja1105_teardown,
3133 	.set_ageing_time	= sja1105_set_ageing_time,
3134 	.port_change_mtu	= sja1105_change_mtu,
3135 	.port_max_mtu		= sja1105_get_max_mtu,
3136 	.phylink_validate	= sja1105_phylink_validate,
3137 	.phylink_mac_config	= sja1105_mac_config,
3138 	.phylink_mac_link_up	= sja1105_mac_link_up,
3139 	.phylink_mac_link_down	= sja1105_mac_link_down,
3140 	.get_strings		= sja1105_get_strings,
3141 	.get_ethtool_stats	= sja1105_get_ethtool_stats,
3142 	.get_sset_count		= sja1105_get_sset_count,
3143 	.get_ts_info		= sja1105_get_ts_info,
3144 	.port_disable		= sja1105_port_disable,
3145 	.port_fdb_dump		= sja1105_fdb_dump,
3146 	.port_fdb_add		= sja1105_fdb_add,
3147 	.port_fdb_del		= sja1105_fdb_del,
3148 	.port_fast_age		= sja1105_fast_age,
3149 	.port_bridge_join	= sja1105_bridge_join,
3150 	.port_bridge_leave	= sja1105_bridge_leave,
3151 	.port_pre_bridge_flags	= sja1105_port_pre_bridge_flags,
3152 	.port_bridge_flags	= sja1105_port_bridge_flags,
3153 	.port_stp_state_set	= sja1105_bridge_stp_state_set,
3154 	.port_vlan_filtering	= sja1105_vlan_filtering,
3155 	.port_vlan_add		= sja1105_bridge_vlan_add,
3156 	.port_vlan_del		= sja1105_bridge_vlan_del,
3157 	.port_mdb_add		= sja1105_mdb_add,
3158 	.port_mdb_del		= sja1105_mdb_del,
3159 	.port_hwtstamp_get	= sja1105_hwtstamp_get,
3160 	.port_hwtstamp_set	= sja1105_hwtstamp_set,
3161 	.port_rxtstamp		= sja1105_port_rxtstamp,
3162 	.port_txtstamp		= sja1105_port_txtstamp,
3163 	.port_setup_tc		= sja1105_port_setup_tc,
3164 	.port_mirror_add	= sja1105_mirror_add,
3165 	.port_mirror_del	= sja1105_mirror_del,
3166 	.port_policer_add	= sja1105_port_policer_add,
3167 	.port_policer_del	= sja1105_port_policer_del,
3168 	.cls_flower_add		= sja1105_cls_flower_add,
3169 	.cls_flower_del		= sja1105_cls_flower_del,
3170 	.cls_flower_stats	= sja1105_cls_flower_stats,
3171 	.devlink_info_get	= sja1105_devlink_info_get,
3172 	.tag_8021q_vlan_add	= sja1105_dsa_8021q_vlan_add,
3173 	.tag_8021q_vlan_del	= sja1105_dsa_8021q_vlan_del,
3174 	.port_prechangeupper	= sja1105_prechangeupper,
3175 	.port_bridge_tx_fwd_offload = dsa_tag_8021q_bridge_tx_fwd_offload,
3176 	.port_bridge_tx_fwd_unoffload = dsa_tag_8021q_bridge_tx_fwd_unoffload,
3177 };
3178 
3179 static const struct of_device_id sja1105_dt_ids[];
3180 
3181 static int sja1105_check_device_id(struct sja1105_private *priv)
3182 {
3183 	const struct sja1105_regs *regs = priv->info->regs;
3184 	u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0};
3185 	struct device *dev = &priv->spidev->dev;
3186 	const struct of_device_id *match;
3187 	u32 device_id;
3188 	u64 part_no;
3189 	int rc;
3190 
3191 	rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id,
3192 			      NULL);
3193 	if (rc < 0)
3194 		return rc;
3195 
3196 	rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id,
3197 			      SJA1105_SIZE_DEVICE_ID);
3198 	if (rc < 0)
3199 		return rc;
3200 
3201 	sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID);
3202 
3203 	for (match = sja1105_dt_ids; match->compatible[0]; match++) {
3204 		const struct sja1105_info *info = match->data;
3205 
3206 		/* Is what's been probed in our match table at all? */
3207 		if (info->device_id != device_id || info->part_no != part_no)
3208 			continue;
3209 
3210 		/* But is it what's in the device tree? */
3211 		if (priv->info->device_id != device_id ||
3212 		    priv->info->part_no != part_no) {
3213 			dev_warn(dev, "Device tree specifies chip %s but found %s, please fix it!\n",
3214 				 priv->info->name, info->name);
3215 			/* It isn't. No problem, pick that up. */
3216 			priv->info = info;
3217 		}
3218 
3219 		return 0;
3220 	}
3221 
3222 	dev_err(dev, "Unexpected {device ID, part number}: 0x%x 0x%llx\n",
3223 		device_id, part_no);
3224 
3225 	return -ENODEV;
3226 }
3227 
3228 static int sja1105_probe(struct spi_device *spi)
3229 {
3230 	struct device *dev = &spi->dev;
3231 	struct sja1105_private *priv;
3232 	size_t max_xfer, max_msg;
3233 	struct dsa_switch *ds;
3234 	int rc;
3235 
3236 	if (!dev->of_node) {
3237 		dev_err(dev, "No DTS bindings for SJA1105 driver\n");
3238 		return -EINVAL;
3239 	}
3240 
3241 	rc = sja1105_hw_reset(dev, 1, 1);
3242 	if (rc)
3243 		return rc;
3244 
3245 	priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL);
3246 	if (!priv)
3247 		return -ENOMEM;
3248 
3249 	/* Populate our driver private structure (priv) based on
3250 	 * the device tree node that was probed (spi)
3251 	 */
3252 	priv->spidev = spi;
3253 	spi_set_drvdata(spi, priv);
3254 
3255 	/* Configure the SPI bus */
3256 	spi->bits_per_word = 8;
3257 	rc = spi_setup(spi);
3258 	if (rc < 0) {
3259 		dev_err(dev, "Could not init SPI\n");
3260 		return rc;
3261 	}
3262 
3263 	/* In sja1105_xfer, we send spi_messages composed of two spi_transfers:
3264 	 * a small one for the message header and another one for the current
3265 	 * chunk of the packed buffer.
3266 	 * Check that the restrictions imposed by the SPI controller are
3267 	 * respected: the chunk buffer is smaller than the max transfer size,
3268 	 * and the total length of the chunk plus its message header is smaller
3269 	 * than the max message size.
3270 	 * We do that during probe time since the maximum transfer size is a
3271 	 * runtime invariant.
3272 	 */
3273 	max_xfer = spi_max_transfer_size(spi);
3274 	max_msg = spi_max_message_size(spi);
3275 
3276 	/* We need to send at least one 64-bit word of SPI payload per message
3277 	 * in order to be able to make useful progress.
3278 	 */
3279 	if (max_msg < SJA1105_SIZE_SPI_MSG_HEADER + 8) {
3280 		dev_err(dev, "SPI master cannot send large enough buffers, aborting\n");
3281 		return -EINVAL;
3282 	}
3283 
3284 	priv->max_xfer_len = SJA1105_SIZE_SPI_MSG_MAXLEN;
3285 	if (priv->max_xfer_len > max_xfer)
3286 		priv->max_xfer_len = max_xfer;
3287 	if (priv->max_xfer_len > max_msg - SJA1105_SIZE_SPI_MSG_HEADER)
3288 		priv->max_xfer_len = max_msg - SJA1105_SIZE_SPI_MSG_HEADER;
3289 
3290 	priv->info = of_device_get_match_data(dev);
3291 
3292 	/* Detect hardware device */
3293 	rc = sja1105_check_device_id(priv);
3294 	if (rc < 0) {
3295 		dev_err(dev, "Device ID check failed: %d\n", rc);
3296 		return rc;
3297 	}
3298 
3299 	dev_info(dev, "Probed switch chip: %s\n", priv->info->name);
3300 
3301 	ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL);
3302 	if (!ds)
3303 		return -ENOMEM;
3304 
3305 	ds->dev = dev;
3306 	ds->num_ports = priv->info->num_ports;
3307 	ds->ops = &sja1105_switch_ops;
3308 	ds->priv = priv;
3309 	priv->ds = ds;
3310 
3311 	mutex_init(&priv->ptp_data.lock);
3312 	mutex_init(&priv->mgmt_lock);
3313 
3314 	rc = sja1105_parse_dt(priv);
3315 	if (rc < 0) {
3316 		dev_err(ds->dev, "Failed to parse DT: %d\n", rc);
3317 		return rc;
3318 	}
3319 
3320 	/* Error out early if internal delays are required through DT
3321 	 * and we can't apply them.
3322 	 */
3323 	rc = sja1105_parse_rgmii_delays(priv);
3324 	if (rc < 0) {
3325 		dev_err(ds->dev, "RGMII delay not supported\n");
3326 		return rc;
3327 	}
3328 
3329 	if (IS_ENABLED(CONFIG_NET_SCH_CBS)) {
3330 		priv->cbs = devm_kcalloc(dev, priv->info->num_cbs_shapers,
3331 					 sizeof(struct sja1105_cbs_entry),
3332 					 GFP_KERNEL);
3333 		if (!priv->cbs)
3334 			return -ENOMEM;
3335 	}
3336 
3337 	return dsa_register_switch(priv->ds);
3338 }
3339 
3340 static int sja1105_remove(struct spi_device *spi)
3341 {
3342 	struct sja1105_private *priv = spi_get_drvdata(spi);
3343 
3344 	if (!priv)
3345 		return 0;
3346 
3347 	dsa_unregister_switch(priv->ds);
3348 
3349 	spi_set_drvdata(spi, NULL);
3350 
3351 	return 0;
3352 }
3353 
3354 static void sja1105_shutdown(struct spi_device *spi)
3355 {
3356 	struct sja1105_private *priv = spi_get_drvdata(spi);
3357 
3358 	if (!priv)
3359 		return;
3360 
3361 	dsa_switch_shutdown(priv->ds);
3362 
3363 	spi_set_drvdata(spi, NULL);
3364 }
3365 
3366 static const struct of_device_id sja1105_dt_ids[] = {
3367 	{ .compatible = "nxp,sja1105e", .data = &sja1105e_info },
3368 	{ .compatible = "nxp,sja1105t", .data = &sja1105t_info },
3369 	{ .compatible = "nxp,sja1105p", .data = &sja1105p_info },
3370 	{ .compatible = "nxp,sja1105q", .data = &sja1105q_info },
3371 	{ .compatible = "nxp,sja1105r", .data = &sja1105r_info },
3372 	{ .compatible = "nxp,sja1105s", .data = &sja1105s_info },
3373 	{ .compatible = "nxp,sja1110a", .data = &sja1110a_info },
3374 	{ .compatible = "nxp,sja1110b", .data = &sja1110b_info },
3375 	{ .compatible = "nxp,sja1110c", .data = &sja1110c_info },
3376 	{ .compatible = "nxp,sja1110d", .data = &sja1110d_info },
3377 	{ /* sentinel */ },
3378 };
3379 MODULE_DEVICE_TABLE(of, sja1105_dt_ids);
3380 
3381 static struct spi_driver sja1105_driver = {
3382 	.driver = {
3383 		.name  = "sja1105",
3384 		.owner = THIS_MODULE,
3385 		.of_match_table = of_match_ptr(sja1105_dt_ids),
3386 	},
3387 	.probe  = sja1105_probe,
3388 	.remove = sja1105_remove,
3389 	.shutdown = sja1105_shutdown,
3390 };
3391 
3392 module_spi_driver(sja1105_driver);
3393 
3394 MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>");
3395 MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>");
3396 MODULE_DESCRIPTION("SJA1105 Driver");
3397 MODULE_LICENSE("GPL v2");
3398