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>
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
16 #include <linux/of_net.h>
17 #include <linux/of_mdio.h>
18 #include <linux/of_device.h>
19 #include <linux/netdev_features.h>
20 #include <linux/netdevice.h>
21 #include <linux/if_bridge.h>
22 #include <linux/if_ether.h>
23 #include <linux/dsa/8021q.h>
26 static void sja1105_hw_reset(struct gpio_desc *gpio, unsigned int pulse_len,
27 unsigned int startup_delay)
29 gpiod_set_value_cansleep(gpio, 1);
30 /* Wait for minimum reset pulse length */
32 gpiod_set_value_cansleep(gpio, 0);
33 /* Wait until chip is ready after reset */
34 msleep(startup_delay);
38 sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd,
39 int from, int to, bool allow)
42 l2_fwd[from].bc_domain |= BIT(to);
43 l2_fwd[from].reach_port |= BIT(to);
44 l2_fwd[from].fl_domain |= BIT(to);
46 l2_fwd[from].bc_domain &= ~BIT(to);
47 l2_fwd[from].reach_port &= ~BIT(to);
48 l2_fwd[from].fl_domain &= ~BIT(to);
52 /* Structure used to temporarily transport device tree
53 * settings into sja1105_setup
55 struct sja1105_dt_port {
56 phy_interface_t phy_mode;
57 sja1105_mii_role_t role;
60 static int sja1105_init_mac_settings(struct sja1105_private *priv)
62 struct sja1105_mac_config_entry default_mac = {
63 /* Enable all 8 priority queues on egress.
64 * Every queue i holds top[i] - base[i] frames.
65 * Sum of top[i] - base[i] is 511 (max hardware limit).
67 .top = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF},
68 .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0},
69 .enabled = {true, true, true, true, true, true, true, true},
70 /* Keep standard IFG of 12 bytes on egress. */
72 /* Always put the MAC speed in automatic mode, where it can be
73 * adjusted at runtime by PHYLINK.
75 .speed = SJA1105_SPEED_AUTO,
76 /* No static correction for 1-step 1588 events */
79 /* Disable aging for critical TTEthernet traffic */
81 /* Internal VLAN (pvid) to apply to untagged ingress */
86 /* Don't drop traffic with other EtherType than ETH_P_IP */
88 /* Don't drop double-tagged traffic */
90 /* Don't drop untagged traffic */
92 /* Don't retag 802.1p (VID 0) traffic with the pvid */
94 /* Disable learning and I/O on user ports by default -
101 struct sja1105_mac_config_entry *mac;
102 struct sja1105_table *table;
105 table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG];
107 /* Discard previous MAC Configuration Table */
108 if (table->entry_count) {
109 kfree(table->entries);
110 table->entry_count = 0;
113 table->entries = kcalloc(SJA1105_NUM_PORTS,
114 table->ops->unpacked_entry_size, GFP_KERNEL);
118 table->entry_count = SJA1105_NUM_PORTS;
120 mac = table->entries;
122 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
123 mac[i] = default_mac;
124 if (i == dsa_upstream_port(priv->ds, i)) {
125 /* STP doesn't get called for CPU port, so we need to
126 * set the I/O parameters statically.
128 mac[i].dyn_learn = true;
129 mac[i].ingress = true;
130 mac[i].egress = true;
137 static int sja1105_init_mii_settings(struct sja1105_private *priv,
138 struct sja1105_dt_port *ports)
140 struct device *dev = &priv->spidev->dev;
141 struct sja1105_xmii_params_entry *mii;
142 struct sja1105_table *table;
145 table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS];
147 /* Discard previous xMII Mode Parameters Table */
148 if (table->entry_count) {
149 kfree(table->entries);
150 table->entry_count = 0;
153 table->entries = kcalloc(SJA1105_MAX_XMII_PARAMS_COUNT,
154 table->ops->unpacked_entry_size, GFP_KERNEL);
158 /* Override table based on PHYLINK DT bindings */
159 table->entry_count = SJA1105_MAX_XMII_PARAMS_COUNT;
161 mii = table->entries;
163 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
164 switch (ports[i].phy_mode) {
165 case PHY_INTERFACE_MODE_MII:
166 mii->xmii_mode[i] = XMII_MODE_MII;
168 case PHY_INTERFACE_MODE_RMII:
169 mii->xmii_mode[i] = XMII_MODE_RMII;
171 case PHY_INTERFACE_MODE_RGMII:
172 case PHY_INTERFACE_MODE_RGMII_ID:
173 case PHY_INTERFACE_MODE_RGMII_RXID:
174 case PHY_INTERFACE_MODE_RGMII_TXID:
175 mii->xmii_mode[i] = XMII_MODE_RGMII;
178 dev_err(dev, "Unsupported PHY mode %s!\n",
179 phy_modes(ports[i].phy_mode));
182 mii->phy_mac[i] = ports[i].role;
187 static int sja1105_init_static_fdb(struct sja1105_private *priv)
189 struct sja1105_table *table;
191 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
193 /* We only populate the FDB table through dynamic
194 * L2 Address Lookup entries
196 if (table->entry_count) {
197 kfree(table->entries);
198 table->entry_count = 0;
203 static int sja1105_init_l2_lookup_params(struct sja1105_private *priv)
205 struct sja1105_table *table;
206 u64 max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / SJA1105_NUM_PORTS;
207 struct sja1105_l2_lookup_params_entry default_l2_lookup_params = {
208 /* Learned FDB entries are forgotten after 300 seconds */
209 .maxage = SJA1105_AGEING_TIME_MS(300000),
210 /* All entries within a FDB bin are available for learning */
211 .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE,
212 /* And the P/Q/R/S equivalent setting: */
214 .maxaddrp = {max_fdb_entries, max_fdb_entries, max_fdb_entries,
215 max_fdb_entries, max_fdb_entries, },
216 /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */
218 /* This selects between Independent VLAN Learning (IVL) and
219 * Shared VLAN Learning (SVL)
221 .shared_learn = false,
222 /* Don't discard management traffic based on ENFPORT -
223 * we don't perform SMAC port enforcement anyway, so
224 * what we are setting here doesn't matter.
226 .no_enf_hostprt = false,
227 /* Don't learn SMAC for mac_fltres1 and mac_fltres0.
228 * Maybe correlate with no_linklocal_learn from bridge driver?
230 .no_mgmt_learn = true,
233 /* Dynamically learned FDB entries can overwrite other (older)
234 * dynamic FDB entries
240 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
242 if (table->entry_count) {
243 kfree(table->entries);
244 table->entry_count = 0;
247 table->entries = kcalloc(SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT,
248 table->ops->unpacked_entry_size, GFP_KERNEL);
252 table->entry_count = SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT;
254 /* This table only has a single entry */
255 ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] =
256 default_l2_lookup_params;
261 static int sja1105_init_static_vlan(struct sja1105_private *priv)
263 struct sja1105_table *table;
264 struct sja1105_vlan_lookup_entry pvid = {
274 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
276 /* The static VLAN table will only contain the initial pvid of 1.
277 * All other VLANs are to be configured through dynamic entries,
278 * and kept in the static configuration table as backing memory.
280 if (table->entry_count) {
281 kfree(table->entries);
282 table->entry_count = 0;
285 table->entries = kcalloc(1, table->ops->unpacked_entry_size,
290 table->entry_count = 1;
292 /* VLAN 1: all DT-defined ports are members; no restrictions on
293 * forwarding; always transmit priority-tagged frames as untagged.
295 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
296 pvid.vmemb_port |= BIT(i);
297 pvid.vlan_bc |= BIT(i);
298 pvid.tag_port &= ~BIT(i);
301 ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid;
305 static int sja1105_init_l2_forwarding(struct sja1105_private *priv)
307 struct sja1105_l2_forwarding_entry *l2fwd;
308 struct sja1105_table *table;
311 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING];
313 if (table->entry_count) {
314 kfree(table->entries);
315 table->entry_count = 0;
318 table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_COUNT,
319 table->ops->unpacked_entry_size, GFP_KERNEL);
323 table->entry_count = SJA1105_MAX_L2_FORWARDING_COUNT;
325 l2fwd = table->entries;
327 /* First 5 entries define the forwarding rules */
328 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
329 unsigned int upstream = dsa_upstream_port(priv->ds, i);
331 for (j = 0; j < SJA1105_NUM_TC; j++)
332 l2fwd[i].vlan_pmap[j] = j;
337 sja1105_port_allow_traffic(l2fwd, i, upstream, true);
338 sja1105_port_allow_traffic(l2fwd, upstream, i, true);
340 /* Next 8 entries define VLAN PCP mapping from ingress to egress.
341 * Create a one-to-one mapping.
343 for (i = 0; i < SJA1105_NUM_TC; i++)
344 for (j = 0; j < SJA1105_NUM_PORTS; j++)
345 l2fwd[SJA1105_NUM_PORTS + i].vlan_pmap[j] = i;
350 static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv)
352 struct sja1105_l2_forwarding_params_entry default_l2fwd_params = {
353 /* Disallow dynamic reconfiguration of vlan_pmap */
355 /* Use a single memory partition for all ingress queues */
356 .part_spc = { SJA1105_MAX_FRAME_MEMORY, 0, 0, 0, 0, 0, 0, 0 },
358 struct sja1105_table *table;
360 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
362 if (table->entry_count) {
363 kfree(table->entries);
364 table->entry_count = 0;
367 table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT,
368 table->ops->unpacked_entry_size, GFP_KERNEL);
372 table->entry_count = SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT;
374 /* This table only has a single entry */
375 ((struct sja1105_l2_forwarding_params_entry *)table->entries)[0] =
376 default_l2fwd_params;
381 static int sja1105_init_general_params(struct sja1105_private *priv)
383 struct sja1105_general_params_entry default_general_params = {
384 /* Disallow dynamic changing of the mirror port */
386 .switchid = priv->ds->index,
387 /* Priority queue for link-local frames trapped to CPU */
389 .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A,
390 .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK,
391 .incl_srcpt1 = false,
393 .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B,
394 .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK,
395 .incl_srcpt0 = false,
397 /* The destination for traffic matching mac_fltres1 and
398 * mac_fltres0 on all ports except host_port. Such traffic
399 * receieved on host_port itself would be dropped, except
400 * by installing a temporary 'management route'
402 .host_port = dsa_upstream_port(priv->ds, 0),
403 /* Same as host port */
404 .mirr_port = dsa_upstream_port(priv->ds, 0),
405 /* Link-local traffic received on casc_port will be forwarded
406 * to host_port without embedding the source port and device ID
407 * info in the destination MAC address (presumably because it
408 * is a cascaded port and a downstream SJA switch already did
409 * that). Default to an invalid port (to disable the feature)
410 * and overwrite this if we find any DSA (cascaded) ports.
412 .casc_port = SJA1105_NUM_PORTS,
417 /* Only update correctionField for 1-step PTP (L2 transport) */
419 /* Forcefully disable VLAN filtering by telling
420 * the switch that VLAN has a different EtherType.
422 .tpid = ETH_P_SJA1105,
423 .tpid2 = ETH_P_SJA1105,
425 struct sja1105_table *table;
428 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
429 if (dsa_is_dsa_port(priv->ds, i))
430 default_general_params.casc_port = i;
431 else if (dsa_is_user_port(priv->ds, i))
432 priv->ports[i].mgmt_slot = k++;
435 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
437 if (table->entry_count) {
438 kfree(table->entries);
439 table->entry_count = 0;
442 table->entries = kcalloc(SJA1105_MAX_GENERAL_PARAMS_COUNT,
443 table->ops->unpacked_entry_size, GFP_KERNEL);
447 table->entry_count = SJA1105_MAX_GENERAL_PARAMS_COUNT;
449 /* This table only has a single entry */
450 ((struct sja1105_general_params_entry *)table->entries)[0] =
451 default_general_params;
456 #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
459 sja1105_setup_policer(struct sja1105_l2_policing_entry *policing,
462 policing[index].sharindx = index;
463 policing[index].smax = 65535; /* Burst size in bytes */
464 policing[index].rate = SJA1105_RATE_MBPS(1000);
465 policing[index].maxlen = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
466 policing[index].partition = 0;
469 static int sja1105_init_l2_policing(struct sja1105_private *priv)
471 struct sja1105_l2_policing_entry *policing;
472 struct sja1105_table *table;
475 table = &priv->static_config.tables[BLK_IDX_L2_POLICING];
477 /* Discard previous L2 Policing Table */
478 if (table->entry_count) {
479 kfree(table->entries);
480 table->entry_count = 0;
483 table->entries = kcalloc(SJA1105_MAX_L2_POLICING_COUNT,
484 table->ops->unpacked_entry_size, GFP_KERNEL);
488 table->entry_count = SJA1105_MAX_L2_POLICING_COUNT;
490 policing = table->entries;
492 /* k sweeps through all unicast policers (0-39).
493 * bcast sweeps through policers 40-44.
495 for (i = 0, k = 0; i < SJA1105_NUM_PORTS; i++) {
496 int bcast = (SJA1105_NUM_PORTS * SJA1105_NUM_TC) + i;
498 for (j = 0; j < SJA1105_NUM_TC; j++, k++)
499 sja1105_setup_policer(policing, k);
501 /* Set up this port's policer for broadcast traffic */
502 sja1105_setup_policer(policing, bcast);
507 static int sja1105_init_avb_params(struct sja1105_private *priv,
510 struct sja1105_avb_params_entry *avb;
511 struct sja1105_table *table;
513 table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS];
515 /* Discard previous AVB Parameters Table */
516 if (table->entry_count) {
517 kfree(table->entries);
518 table->entry_count = 0;
521 /* Configure the reception of meta frames only if requested */
525 table->entries = kcalloc(SJA1105_MAX_AVB_PARAMS_COUNT,
526 table->ops->unpacked_entry_size, GFP_KERNEL);
530 table->entry_count = SJA1105_MAX_AVB_PARAMS_COUNT;
532 avb = table->entries;
534 avb->destmeta = SJA1105_META_DMAC;
535 avb->srcmeta = SJA1105_META_SMAC;
540 static int sja1105_static_config_load(struct sja1105_private *priv,
541 struct sja1105_dt_port *ports)
545 sja1105_static_config_free(&priv->static_config);
546 rc = sja1105_static_config_init(&priv->static_config,
547 priv->info->static_ops,
548 priv->info->device_id);
552 /* Build static configuration */
553 rc = sja1105_init_mac_settings(priv);
556 rc = sja1105_init_mii_settings(priv, ports);
559 rc = sja1105_init_static_fdb(priv);
562 rc = sja1105_init_static_vlan(priv);
565 rc = sja1105_init_l2_lookup_params(priv);
568 rc = sja1105_init_l2_forwarding(priv);
571 rc = sja1105_init_l2_forwarding_params(priv);
574 rc = sja1105_init_l2_policing(priv);
577 rc = sja1105_init_general_params(priv);
580 rc = sja1105_init_avb_params(priv, false);
584 /* Send initial configuration to hardware via SPI */
585 return sja1105_static_config_upload(priv);
588 static int sja1105_parse_rgmii_delays(struct sja1105_private *priv,
589 const struct sja1105_dt_port *ports)
593 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
594 if (ports->role == XMII_MAC)
597 if (ports->phy_mode == PHY_INTERFACE_MODE_RGMII_RXID ||
598 ports->phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
599 priv->rgmii_rx_delay[i] = true;
601 if (ports->phy_mode == PHY_INTERFACE_MODE_RGMII_TXID ||
602 ports->phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
603 priv->rgmii_tx_delay[i] = true;
605 if ((priv->rgmii_rx_delay[i] || priv->rgmii_tx_delay[i]) &&
606 !priv->info->setup_rgmii_delay)
612 static int sja1105_parse_ports_node(struct sja1105_private *priv,
613 struct sja1105_dt_port *ports,
614 struct device_node *ports_node)
616 struct device *dev = &priv->spidev->dev;
617 struct device_node *child;
619 for_each_child_of_node(ports_node, child) {
620 struct device_node *phy_node;
624 /* Get switch port number from DT */
625 if (of_property_read_u32(child, "reg", &index) < 0) {
626 dev_err(dev, "Port number not defined in device tree "
627 "(property \"reg\")\n");
631 /* Get PHY mode from DT */
632 phy_mode = of_get_phy_mode(child);
634 dev_err(dev, "Failed to read phy-mode or "
635 "phy-interface-type property for port %d\n",
639 ports[index].phy_mode = phy_mode;
641 phy_node = of_parse_phandle(child, "phy-handle", 0);
643 if (!of_phy_is_fixed_link(child)) {
644 dev_err(dev, "phy-handle or fixed-link "
645 "properties missing!\n");
648 /* phy-handle is missing, but fixed-link isn't.
649 * So it's a fixed link. Default to PHY role.
651 ports[index].role = XMII_PHY;
653 /* phy-handle present => put port in MAC role */
654 ports[index].role = XMII_MAC;
655 of_node_put(phy_node);
658 /* The MAC/PHY role can be overridden with explicit bindings */
659 if (of_property_read_bool(child, "sja1105,role-mac"))
660 ports[index].role = XMII_MAC;
661 else if (of_property_read_bool(child, "sja1105,role-phy"))
662 ports[index].role = XMII_PHY;
668 static int sja1105_parse_dt(struct sja1105_private *priv,
669 struct sja1105_dt_port *ports)
671 struct device *dev = &priv->spidev->dev;
672 struct device_node *switch_node = dev->of_node;
673 struct device_node *ports_node;
676 ports_node = of_get_child_by_name(switch_node, "ports");
678 dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
682 rc = sja1105_parse_ports_node(priv, ports, ports_node);
683 of_node_put(ports_node);
688 /* Convert link speed from SJA1105 to ethtool encoding */
689 static int sja1105_speed[] = {
690 [SJA1105_SPEED_AUTO] = SPEED_UNKNOWN,
691 [SJA1105_SPEED_10MBPS] = SPEED_10,
692 [SJA1105_SPEED_100MBPS] = SPEED_100,
693 [SJA1105_SPEED_1000MBPS] = SPEED_1000,
696 /* Set link speed in the MAC configuration for a specific port. */
697 static int sja1105_adjust_port_config(struct sja1105_private *priv, int port,
700 struct sja1105_xmii_params_entry *mii;
701 struct sja1105_mac_config_entry *mac;
702 struct device *dev = priv->ds->dev;
703 sja1105_phy_interface_t phy_mode;
704 sja1105_speed_t speed;
707 /* On P/Q/R/S, one can read from the device via the MAC reconfiguration
708 * tables. On E/T, MAC reconfig tables are not readable, only writable.
709 * We have to *know* what the MAC looks like. For the sake of keeping
710 * the code common, we'll use the static configuration tables as a
711 * reasonable approximation for both E/T and P/Q/R/S.
713 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
714 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
716 switch (speed_mbps) {
718 /* No speed update requested */
719 speed = SJA1105_SPEED_AUTO;
722 speed = SJA1105_SPEED_10MBPS;
725 speed = SJA1105_SPEED_100MBPS;
728 speed = SJA1105_SPEED_1000MBPS;
731 dev_err(dev, "Invalid speed %iMbps\n", speed_mbps);
735 /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration
736 * table, since this will be used for the clocking setup, and we no
737 * longer need to store it in the static config (already told hardware
738 * we want auto during upload phase).
740 mac[port].speed = speed;
742 /* Write to the dynamic reconfiguration tables */
743 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
746 dev_err(dev, "Failed to write MAC config: %d\n", rc);
750 /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at
751 * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and
752 * RMII no change of the clock setup is required. Actually, changing
753 * the clock setup does interrupt the clock signal for a certain time
754 * which causes trouble for all PHYs relying on this signal.
756 phy_mode = mii->xmii_mode[port];
757 if (phy_mode != XMII_MODE_RGMII)
760 return sja1105_clocking_setup_port(priv, port);
763 static void sja1105_mac_config(struct dsa_switch *ds, int port,
764 unsigned int link_an_mode,
765 const struct phylink_link_state *state)
767 struct sja1105_private *priv = ds->priv;
772 sja1105_adjust_port_config(priv, port, state->speed);
775 static void sja1105_mac_link_down(struct dsa_switch *ds, int port,
777 phy_interface_t interface)
779 sja1105_inhibit_tx(ds->priv, BIT(port), true);
782 static void sja1105_mac_link_up(struct dsa_switch *ds, int port,
784 phy_interface_t interface,
785 struct phy_device *phydev)
787 sja1105_inhibit_tx(ds->priv, BIT(port), false);
790 static void sja1105_phylink_validate(struct dsa_switch *ds, int port,
791 unsigned long *supported,
792 struct phylink_link_state *state)
794 /* Construct a new mask which exhaustively contains all link features
795 * supported by the MAC, and then apply that (logical AND) to what will
796 * be sent to the PHY for "marketing".
798 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
799 struct sja1105_private *priv = ds->priv;
800 struct sja1105_xmii_params_entry *mii;
802 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
804 /* The MAC does not support pause frames, and also doesn't
805 * support half-duplex traffic modes.
807 phylink_set(mask, Autoneg);
808 phylink_set(mask, MII);
809 phylink_set(mask, 10baseT_Full);
810 phylink_set(mask, 100baseT_Full);
811 if (mii->xmii_mode[port] == XMII_MODE_RGMII)
812 phylink_set(mask, 1000baseT_Full);
814 bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS);
815 bitmap_and(state->advertising, state->advertising, mask,
816 __ETHTOOL_LINK_MODE_MASK_NBITS);
820 sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port,
821 const struct sja1105_l2_lookup_entry *requested)
823 struct sja1105_l2_lookup_entry *l2_lookup;
824 struct sja1105_table *table;
827 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
828 l2_lookup = table->entries;
830 for (i = 0; i < table->entry_count; i++)
831 if (l2_lookup[i].macaddr == requested->macaddr &&
832 l2_lookup[i].vlanid == requested->vlanid &&
833 l2_lookup[i].destports & BIT(port))
839 /* We want FDB entries added statically through the bridge command to persist
840 * across switch resets, which are a common thing during normal SJA1105
841 * operation. So we have to back them up in the static configuration tables
842 * and hence apply them on next static config upload... yay!
845 sja1105_static_fdb_change(struct sja1105_private *priv, int port,
846 const struct sja1105_l2_lookup_entry *requested,
849 struct sja1105_l2_lookup_entry *l2_lookup;
850 struct sja1105_table *table;
853 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
855 match = sja1105_find_static_fdb_entry(priv, port, requested);
857 /* Can't delete a missing entry. */
861 /* No match => new entry */
862 rc = sja1105_table_resize(table, table->entry_count + 1);
866 match = table->entry_count - 1;
869 /* Assign pointer after the resize (it may be new memory) */
870 l2_lookup = table->entries;
873 * If the job was to add this FDB entry, it's already done (mostly
874 * anyway, since the port forwarding mask may have changed, case in
875 * which we update it).
876 * Otherwise we have to delete it.
879 l2_lookup[match] = *requested;
883 /* To remove, the strategy is to overwrite the element with
884 * the last one, and then reduce the array size by 1
886 l2_lookup[match] = l2_lookup[table->entry_count - 1];
887 return sja1105_table_resize(table, table->entry_count - 1);
890 /* First-generation switches have a 4-way set associative TCAM that
891 * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of
892 * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin).
893 * For the placement of a newly learnt FDB entry, the switch selects the bin
894 * based on a hash function, and the way within that bin incrementally.
896 static inline int sja1105et_fdb_index(int bin, int way)
898 return bin * SJA1105ET_FDB_BIN_SIZE + way;
901 static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin,
902 const u8 *addr, u16 vid,
903 struct sja1105_l2_lookup_entry *match,
908 for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) {
909 struct sja1105_l2_lookup_entry l2_lookup = {0};
910 int index = sja1105et_fdb_index(bin, way);
912 /* Skip unused entries, optionally marking them
913 * into the return value
915 if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
916 index, &l2_lookup)) {
922 if (l2_lookup.macaddr == ether_addr_to_u64(addr) &&
923 l2_lookup.vlanid == vid) {
929 /* Return an invalid entry index if not found */
933 int sja1105et_fdb_add(struct dsa_switch *ds, int port,
934 const unsigned char *addr, u16 vid)
936 struct sja1105_l2_lookup_entry l2_lookup = {0};
937 struct sja1105_private *priv = ds->priv;
938 struct device *dev = ds->dev;
939 int last_unused = -1;
942 bin = sja1105et_fdb_hash(priv, addr, vid);
944 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
945 &l2_lookup, &last_unused);
947 /* We have an FDB entry. Is our port in the destination
948 * mask? If yes, we need to do nothing. If not, we need
949 * to rewrite the entry by adding this port to it.
951 if (l2_lookup.destports & BIT(port))
953 l2_lookup.destports |= BIT(port);
955 int index = sja1105et_fdb_index(bin, way);
957 /* We don't have an FDB entry. We construct a new one and
958 * try to find a place for it within the FDB table.
960 l2_lookup.macaddr = ether_addr_to_u64(addr);
961 l2_lookup.destports = BIT(port);
962 l2_lookup.vlanid = vid;
964 if (last_unused >= 0) {
967 /* Bin is full, need to evict somebody.
968 * Choose victim at random. If you get these messages
969 * often, you may need to consider changing the
970 * distribution function:
971 * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly
973 get_random_bytes(&way, sizeof(u8));
974 way %= SJA1105ET_FDB_BIN_SIZE;
975 dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n",
978 sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
982 l2_lookup.index = sja1105et_fdb_index(bin, way);
984 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
985 l2_lookup.index, &l2_lookup,
990 return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
993 int sja1105et_fdb_del(struct dsa_switch *ds, int port,
994 const unsigned char *addr, u16 vid)
996 struct sja1105_l2_lookup_entry l2_lookup = {0};
997 struct sja1105_private *priv = ds->priv;
998 int index, bin, way, rc;
1001 bin = sja1105et_fdb_hash(priv, addr, vid);
1002 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1006 index = sja1105et_fdb_index(bin, way);
1008 /* We have an FDB entry. Is our port in the destination mask? If yes,
1009 * we need to remove it. If the resulting port mask becomes empty, we
1010 * need to completely evict the FDB entry.
1011 * Otherwise we just write it back.
1013 l2_lookup.destports &= ~BIT(port);
1015 if (l2_lookup.destports)
1020 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1021 index, &l2_lookup, keep);
1025 return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1028 int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
1029 const unsigned char *addr, u16 vid)
1031 struct sja1105_l2_lookup_entry l2_lookup = {0};
1032 struct sja1105_private *priv = ds->priv;
1035 /* Search for an existing entry in the FDB table */
1036 l2_lookup.macaddr = ether_addr_to_u64(addr);
1037 l2_lookup.vlanid = vid;
1038 l2_lookup.iotag = SJA1105_S_TAG;
1039 l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1040 l2_lookup.mask_vlanid = VLAN_VID_MASK;
1041 l2_lookup.mask_iotag = BIT(0);
1042 l2_lookup.destports = BIT(port);
1044 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1045 SJA1105_SEARCH, &l2_lookup);
1047 /* Found and this port is already in the entry's
1048 * port mask => job done
1050 if (l2_lookup.destports & BIT(port))
1052 /* l2_lookup.index is populated by the switch in case it
1055 l2_lookup.destports |= BIT(port);
1056 goto skip_finding_an_index;
1059 /* Not found, so try to find an unused spot in the FDB.
1060 * This is slightly inefficient because the strategy is knock-knock at
1061 * every possible position from 0 to 1023.
1063 for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1064 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1069 if (i == SJA1105_MAX_L2_LOOKUP_COUNT) {
1070 dev_err(ds->dev, "FDB is full, cannot add entry.\n");
1073 l2_lookup.lockeds = true;
1074 l2_lookup.index = i;
1076 skip_finding_an_index:
1077 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1078 l2_lookup.index, &l2_lookup,
1083 return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1086 int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
1087 const unsigned char *addr, u16 vid)
1089 struct sja1105_l2_lookup_entry l2_lookup = {0};
1090 struct sja1105_private *priv = ds->priv;
1094 l2_lookup.macaddr = ether_addr_to_u64(addr);
1095 l2_lookup.vlanid = vid;
1096 l2_lookup.iotag = SJA1105_S_TAG;
1097 l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1098 l2_lookup.mask_vlanid = VLAN_VID_MASK;
1099 l2_lookup.mask_iotag = BIT(0);
1100 l2_lookup.destports = BIT(port);
1102 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1103 SJA1105_SEARCH, &l2_lookup);
1107 l2_lookup.destports &= ~BIT(port);
1109 /* Decide whether we remove just this port from the FDB entry,
1110 * or if we remove it completely.
1112 if (l2_lookup.destports)
1117 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1118 l2_lookup.index, &l2_lookup, keep);
1122 return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1125 static int sja1105_fdb_add(struct dsa_switch *ds, int port,
1126 const unsigned char *addr, u16 vid)
1128 struct sja1105_private *priv = ds->priv;
1132 if (dsa_port_is_vlan_filtering(&ds->ports[port]))
1133 return priv->info->fdb_add_cmd(ds, port, addr, vid);
1135 /* Since we make use of VLANs even when the bridge core doesn't tell us
1136 * to, translate these FDB entries into the correct dsa_8021q ones.
1137 * The basic idea (also repeats for removal below) is:
1138 * - Each of the other front-panel ports needs to be able to forward a
1139 * pvid-tagged (aka tagged with their rx_vid) frame that matches this
1141 * - The CPU port (aka the tx_vid of this port) needs to be able to
1142 * send a frame matching this DMAC to the specified port.
1143 * For a better picture see net/dsa/tag_8021q.c.
1145 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1148 if (i == dsa_upstream_port(priv->ds, port))
1151 rx_vid = dsa_8021q_rx_vid(ds, i);
1152 rc = priv->info->fdb_add_cmd(ds, port, addr, rx_vid);
1156 tx_vid = dsa_8021q_tx_vid(ds, port);
1157 return priv->info->fdb_add_cmd(ds, port, addr, tx_vid);
1160 static int sja1105_fdb_del(struct dsa_switch *ds, int port,
1161 const unsigned char *addr, u16 vid)
1163 struct sja1105_private *priv = ds->priv;
1167 if (dsa_port_is_vlan_filtering(&ds->ports[port]))
1168 return priv->info->fdb_del_cmd(ds, port, addr, vid);
1170 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1173 if (i == dsa_upstream_port(priv->ds, port))
1176 rx_vid = dsa_8021q_rx_vid(ds, i);
1177 rc = priv->info->fdb_del_cmd(ds, port, addr, rx_vid);
1181 tx_vid = dsa_8021q_tx_vid(ds, port);
1182 return priv->info->fdb_del_cmd(ds, port, addr, tx_vid);
1185 static int sja1105_fdb_dump(struct dsa_switch *ds, int port,
1186 dsa_fdb_dump_cb_t *cb, void *data)
1188 struct sja1105_private *priv = ds->priv;
1189 struct device *dev = ds->dev;
1193 rx_vid = dsa_8021q_rx_vid(ds, port);
1194 tx_vid = dsa_8021q_tx_vid(ds, port);
1196 for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1197 struct sja1105_l2_lookup_entry l2_lookup = {0};
1198 u8 macaddr[ETH_ALEN];
1201 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1203 /* No fdb entry at i, not an issue */
1207 dev_err(dev, "Failed to dump FDB: %d\n", rc);
1211 /* FDB dump callback is per port. This means we have to
1212 * disregard a valid entry if it's not for this port, even if
1213 * only to revisit it later. This is inefficient because the
1214 * 1024-sized FDB table needs to be traversed 4 times through
1215 * SPI during a 'bridge fdb show' command.
1217 if (!(l2_lookup.destports & BIT(port)))
1219 u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1221 /* We need to hide the dsa_8021q VLANs from the user. This
1222 * basically means hiding the duplicates and only showing
1223 * the pvid that is supposed to be active in standalone and
1224 * non-vlan_filtering modes (aka 1).
1225 * - For statically added FDB entries (bridge fdb add), we
1226 * can convert the TX VID (coming from the CPU port) into the
1227 * pvid and ignore the RX VIDs of the other ports.
1228 * - For dynamically learned FDB entries, a single entry with
1229 * no duplicates is learned - that which has the real port's
1232 if (!dsa_port_is_vlan_filtering(&ds->ports[port])) {
1233 if (l2_lookup.vlanid == tx_vid ||
1234 l2_lookup.vlanid == rx_vid)
1235 l2_lookup.vlanid = 1;
1239 cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data);
1244 /* This callback needs to be present */
1245 static int sja1105_mdb_prepare(struct dsa_switch *ds, int port,
1246 const struct switchdev_obj_port_mdb *mdb)
1251 static void sja1105_mdb_add(struct dsa_switch *ds, int port,
1252 const struct switchdev_obj_port_mdb *mdb)
1254 sja1105_fdb_add(ds, port, mdb->addr, mdb->vid);
1257 static int sja1105_mdb_del(struct dsa_switch *ds, int port,
1258 const struct switchdev_obj_port_mdb *mdb)
1260 return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid);
1263 static int sja1105_bridge_member(struct dsa_switch *ds, int port,
1264 struct net_device *br, bool member)
1266 struct sja1105_l2_forwarding_entry *l2_fwd;
1267 struct sja1105_private *priv = ds->priv;
1270 l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1272 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1273 /* Add this port to the forwarding matrix of the
1274 * other ports in the same bridge, and viceversa.
1276 if (!dsa_is_user_port(ds, i))
1278 /* For the ports already under the bridge, only one thing needs
1279 * to be done, and that is to add this port to their
1280 * reachability domain. So we can perform the SPI write for
1281 * them immediately. However, for this port itself (the one
1282 * that is new to the bridge), we need to add all other ports
1283 * to its reachability domain. So we do that incrementally in
1284 * this loop, and perform the SPI write only at the end, once
1285 * the domain contains all other bridge ports.
1289 if (dsa_to_port(ds, i)->bridge_dev != br)
1291 sja1105_port_allow_traffic(l2_fwd, i, port, member);
1292 sja1105_port_allow_traffic(l2_fwd, port, i, member);
1294 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1295 i, &l2_fwd[i], true);
1300 return sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1301 port, &l2_fwd[port], true);
1304 static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port,
1307 struct sja1105_private *priv = ds->priv;
1308 struct sja1105_mac_config_entry *mac;
1310 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1313 case BR_STATE_DISABLED:
1314 case BR_STATE_BLOCKING:
1315 /* From UM10944 description of DRPDTAG (why put this there?):
1316 * "Management traffic flows to the port regardless of the state
1317 * of the INGRESS flag". So BPDUs are still be allowed to pass.
1318 * At the moment no difference between DISABLED and BLOCKING.
1320 mac[port].ingress = false;
1321 mac[port].egress = false;
1322 mac[port].dyn_learn = false;
1324 case BR_STATE_LISTENING:
1325 mac[port].ingress = true;
1326 mac[port].egress = false;
1327 mac[port].dyn_learn = false;
1329 case BR_STATE_LEARNING:
1330 mac[port].ingress = true;
1331 mac[port].egress = false;
1332 mac[port].dyn_learn = true;
1334 case BR_STATE_FORWARDING:
1335 mac[port].ingress = true;
1336 mac[port].egress = true;
1337 mac[port].dyn_learn = true;
1340 dev_err(ds->dev, "invalid STP state: %d\n", state);
1344 sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1348 static int sja1105_bridge_join(struct dsa_switch *ds, int port,
1349 struct net_device *br)
1351 return sja1105_bridge_member(ds, port, br, true);
1354 static void sja1105_bridge_leave(struct dsa_switch *ds, int port,
1355 struct net_device *br)
1357 sja1105_bridge_member(ds, port, br, false);
1360 /* For situations where we need to change a setting at runtime that is only
1361 * available through the static configuration, resetting the switch in order
1362 * to upload the new static config is unavoidable. Back up the settings we
1363 * modify at runtime (currently only MAC) and restore them after uploading,
1364 * such that this operation is relatively seamless.
1366 static int sja1105_static_config_reload(struct sja1105_private *priv)
1368 struct sja1105_mac_config_entry *mac;
1369 int speed_mbps[SJA1105_NUM_PORTS];
1372 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1374 /* Back up the dynamic link speed changed by sja1105_adjust_port_config
1375 * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the
1376 * switch wants to see in the static config in order to allow us to
1377 * change it through the dynamic interface later.
1379 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1380 speed_mbps[i] = sja1105_speed[mac[i].speed];
1381 mac[i].speed = SJA1105_SPEED_AUTO;
1384 /* Reset switch and send updated static configuration */
1385 rc = sja1105_static_config_upload(priv);
1389 /* Configure the CGU (PLLs) for MII and RMII PHYs.
1390 * For these interfaces there is no dynamic configuration
1391 * needed, since PLLs have same settings at all speeds.
1393 rc = sja1105_clocking_setup(priv);
1397 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1398 rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]);
1406 static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid)
1408 struct sja1105_mac_config_entry *mac;
1410 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1412 mac[port].vlanid = pvid;
1414 return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1418 static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid)
1420 struct sja1105_vlan_lookup_entry *vlan;
1423 vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
1424 count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count;
1426 for (i = 0; i < count; i++)
1427 if (vlan[i].vlanid == vid)
1430 /* Return an invalid entry index if not found */
1434 static int sja1105_vlan_apply(struct sja1105_private *priv, int port, u16 vid,
1435 bool enabled, bool untagged)
1437 struct sja1105_vlan_lookup_entry *vlan;
1438 struct sja1105_table *table;
1442 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
1444 match = sja1105_is_vlan_configured(priv, vid);
1446 /* Can't delete a missing entry. */
1449 rc = sja1105_table_resize(table, table->entry_count + 1);
1452 match = table->entry_count - 1;
1454 /* Assign pointer after the resize (it's new memory) */
1455 vlan = table->entries;
1456 vlan[match].vlanid = vid;
1458 vlan[match].vlan_bc |= BIT(port);
1459 vlan[match].vmemb_port |= BIT(port);
1461 vlan[match].vlan_bc &= ~BIT(port);
1462 vlan[match].vmemb_port &= ~BIT(port);
1464 /* Also unset tag_port if removing this VLAN was requested,
1465 * just so we don't have a confusing bitmap (no practical purpose).
1467 if (untagged || !enabled)
1468 vlan[match].tag_port &= ~BIT(port);
1470 vlan[match].tag_port |= BIT(port);
1471 /* If there's no port left as member of this VLAN,
1472 * it's time for it to go.
1474 if (!vlan[match].vmemb_port)
1477 dev_dbg(priv->ds->dev,
1478 "%s: port %d, vid %llu, broadcast domain 0x%llx, "
1479 "port members 0x%llx, tagged ports 0x%llx, keep %d\n",
1480 __func__, port, vlan[match].vlanid, vlan[match].vlan_bc,
1481 vlan[match].vmemb_port, vlan[match].tag_port, keep);
1483 rc = sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
1484 &vlan[match], keep);
1489 return sja1105_table_delete_entry(table, match);
1494 static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled)
1498 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1499 rc = dsa_port_setup_8021q_tagging(ds, i, enabled);
1501 dev_err(ds->dev, "Failed to setup VLAN tagging for port %d: %d\n",
1506 dev_info(ds->dev, "%s switch tagging\n",
1507 enabled ? "Enabled" : "Disabled");
1511 static enum dsa_tag_protocol
1512 sja1105_get_tag_protocol(struct dsa_switch *ds, int port)
1514 return DSA_TAG_PROTO_SJA1105;
1517 /* This callback needs to be present */
1518 static int sja1105_vlan_prepare(struct dsa_switch *ds, int port,
1519 const struct switchdev_obj_port_vlan *vlan)
1524 /* The TPID setting belongs to the General Parameters table,
1525 * which can only be partially reconfigured at runtime (and not the TPID).
1526 * So a switch reset is required.
1528 static int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled)
1530 struct sja1105_general_params_entry *general_params;
1531 struct sja1105_private *priv = ds->priv;
1532 struct sja1105_table *table;
1537 /* Enable VLAN filtering. */
1538 tpid = ETH_P_8021AD;
1539 tpid2 = ETH_P_8021Q;
1541 /* Disable VLAN filtering. */
1542 tpid = ETH_P_SJA1105;
1543 tpid2 = ETH_P_SJA1105;
1546 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
1547 general_params = table->entries;
1548 /* EtherType used to identify outer tagged (S-tag) VLAN traffic */
1549 general_params->tpid = tpid;
1550 /* EtherType used to identify inner tagged (C-tag) VLAN traffic */
1551 general_params->tpid2 = tpid2;
1552 /* When VLAN filtering is on, we need to at least be able to
1553 * decode management traffic through the "backup plan".
1555 general_params->incl_srcpt1 = enabled;
1556 general_params->incl_srcpt0 = enabled;
1558 rc = sja1105_static_config_reload(priv);
1560 dev_err(ds->dev, "Failed to change VLAN Ethertype\n");
1562 /* Switch port identification based on 802.1Q is only passable
1563 * if we are not under a vlan_filtering bridge. So make sure
1564 * the two configurations are mutually exclusive.
1566 return sja1105_setup_8021q_tagging(ds, !enabled);
1569 static void sja1105_vlan_add(struct dsa_switch *ds, int port,
1570 const struct switchdev_obj_port_vlan *vlan)
1572 struct sja1105_private *priv = ds->priv;
1576 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
1577 rc = sja1105_vlan_apply(priv, port, vid, true, vlan->flags &
1578 BRIDGE_VLAN_INFO_UNTAGGED);
1580 dev_err(ds->dev, "Failed to add VLAN %d to port %d: %d\n",
1584 if (vlan->flags & BRIDGE_VLAN_INFO_PVID) {
1585 rc = sja1105_pvid_apply(ds->priv, port, vid);
1587 dev_err(ds->dev, "Failed to set pvid %d on port %d: %d\n",
1595 static int sja1105_vlan_del(struct dsa_switch *ds, int port,
1596 const struct switchdev_obj_port_vlan *vlan)
1598 struct sja1105_private *priv = ds->priv;
1602 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
1603 rc = sja1105_vlan_apply(priv, port, vid, false, vlan->flags &
1604 BRIDGE_VLAN_INFO_UNTAGGED);
1606 dev_err(ds->dev, "Failed to remove VLAN %d from port %d: %d\n",
1614 /* The programming model for the SJA1105 switch is "all-at-once" via static
1615 * configuration tables. Some of these can be dynamically modified at runtime,
1616 * but not the xMII mode parameters table.
1617 * Furthermode, some PHYs may not have crystals for generating their clocks
1618 * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's
1619 * ref_clk pin. So port clocking needs to be initialized early, before
1620 * connecting to PHYs is attempted, otherwise they won't respond through MDIO.
1621 * Setting correct PHY link speed does not matter now.
1622 * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY
1623 * bindings are not yet parsed by DSA core. We need to parse early so that we
1624 * can populate the xMII mode parameters table.
1626 static int sja1105_setup(struct dsa_switch *ds)
1628 struct sja1105_dt_port ports[SJA1105_NUM_PORTS];
1629 struct sja1105_private *priv = ds->priv;
1632 rc = sja1105_parse_dt(priv, ports);
1634 dev_err(ds->dev, "Failed to parse DT: %d\n", rc);
1638 /* Error out early if internal delays are required through DT
1639 * and we can't apply them.
1641 rc = sja1105_parse_rgmii_delays(priv, ports);
1643 dev_err(ds->dev, "RGMII delay not supported\n");
1647 rc = sja1105_ptp_clock_register(priv);
1649 dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc);
1652 /* Create and send configuration down to device */
1653 rc = sja1105_static_config_load(priv, ports);
1655 dev_err(ds->dev, "Failed to load static config: %d\n", rc);
1658 /* Configure the CGU (PHY link modes and speeds) */
1659 rc = sja1105_clocking_setup(priv);
1661 dev_err(ds->dev, "Failed to configure MII clocking: %d\n", rc);
1664 /* On SJA1105, VLAN filtering per se is always enabled in hardware.
1665 * The only thing we can do to disable it is lie about what the 802.1Q
1667 * So it will still try to apply VLAN filtering, but all ingress
1668 * traffic (except frames received with EtherType of ETH_P_SJA1105)
1669 * will be internally tagged with a distorted VLAN header where the
1670 * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid.
1672 ds->vlan_filtering_is_global = true;
1674 /* The DSA/switchdev model brings up switch ports in standalone mode by
1675 * default, and that means vlan_filtering is 0 since they're not under
1676 * a bridge, so it's safe to set up switch tagging at this time.
1678 return sja1105_setup_8021q_tagging(ds, true);
1681 static void sja1105_teardown(struct dsa_switch *ds)
1683 struct sja1105_private *priv = ds->priv;
1685 cancel_work_sync(&priv->tagger_data.rxtstamp_work);
1686 skb_queue_purge(&priv->tagger_data.skb_rxtstamp_queue);
1689 static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot,
1690 struct sk_buff *skb, bool takets)
1692 struct sja1105_mgmt_entry mgmt_route = {0};
1693 struct sja1105_private *priv = ds->priv;
1700 mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest);
1701 mgmt_route.destports = BIT(port);
1702 mgmt_route.enfport = 1;
1703 mgmt_route.tsreg = 0;
1704 mgmt_route.takets = takets;
1706 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
1707 slot, &mgmt_route, true);
1713 /* Transfer skb to the host port. */
1714 dsa_enqueue_skb(skb, ds->ports[port].slave);
1716 /* Wait until the switch has processed the frame */
1718 rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE,
1721 dev_err_ratelimited(priv->ds->dev,
1722 "failed to poll for mgmt route\n");
1726 /* UM10944: The ENFPORT flag of the respective entry is
1727 * cleared when a match is found. The host can use this
1728 * flag as an acknowledgment.
1731 } while (mgmt_route.enfport && --timeout);
1734 /* Clean up the management route so that a follow-up
1735 * frame may not match on it by mistake.
1736 * This is only hardware supported on P/Q/R/S - on E/T it is
1737 * a no-op and we are silently discarding the -EOPNOTSUPP.
1739 sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
1740 slot, &mgmt_route, false);
1741 dev_err_ratelimited(priv->ds->dev, "xmit timed out\n");
1744 return NETDEV_TX_OK;
1747 /* Deferred work is unfortunately necessary because setting up the management
1748 * route cannot be done from atomit context (SPI transfer takes a sleepable
1751 static netdev_tx_t sja1105_port_deferred_xmit(struct dsa_switch *ds, int port,
1752 struct sk_buff *skb)
1754 struct sja1105_private *priv = ds->priv;
1755 struct sja1105_port *sp = &priv->ports[port];
1756 struct skb_shared_hwtstamps shwt = {0};
1757 int slot = sp->mgmt_slot;
1758 struct sk_buff *clone;
1762 /* The tragic fact about the switch having 4x2 slots for installing
1763 * management routes is that all of them except one are actually
1765 * If 2 slots are simultaneously configured for two BPDUs sent to the
1766 * same (multicast) DMAC but on different egress ports, the switch
1767 * would confuse them and redirect first frame it receives on the CPU
1768 * port towards the port configured on the numerically first slot
1769 * (therefore wrong port), then second received frame on second slot
1770 * (also wrong port).
1771 * So for all practical purposes, there needs to be a lock that
1772 * prevents that from happening. The slot used here is utterly useless
1773 * (could have simply been 0 just as fine), but we are doing it
1774 * nonetheless, in case a smarter idea ever comes up in the future.
1776 mutex_lock(&priv->mgmt_lock);
1778 /* The clone, if there, was made by dsa_skb_tx_timestamp */
1779 clone = DSA_SKB_CB(skb)->clone;
1781 sja1105_mgmt_xmit(ds, port, slot, skb, !!clone);
1786 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS;
1788 mutex_lock(&priv->ptp_lock);
1790 now = priv->tstamp_cc.read(&priv->tstamp_cc);
1792 rc = sja1105_ptpegr_ts_poll(priv, slot, &ts);
1794 dev_err(ds->dev, "xmit: timed out polling for tstamp\n");
1796 goto out_unlock_ptp;
1799 ts = sja1105_tstamp_reconstruct(priv, now, ts);
1800 ts = timecounter_cyc2time(&priv->tstamp_tc, ts);
1802 shwt.hwtstamp = ns_to_ktime(ts);
1803 skb_complete_tx_timestamp(clone, &shwt);
1806 mutex_unlock(&priv->ptp_lock);
1808 mutex_unlock(&priv->mgmt_lock);
1809 return NETDEV_TX_OK;
1812 /* The MAXAGE setting belongs to the L2 Forwarding Parameters table,
1813 * which cannot be reconfigured at runtime. So a switch reset is required.
1815 static int sja1105_set_ageing_time(struct dsa_switch *ds,
1816 unsigned int ageing_time)
1818 struct sja1105_l2_lookup_params_entry *l2_lookup_params;
1819 struct sja1105_private *priv = ds->priv;
1820 struct sja1105_table *table;
1821 unsigned int maxage;
1823 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
1824 l2_lookup_params = table->entries;
1826 maxage = SJA1105_AGEING_TIME_MS(ageing_time);
1828 if (l2_lookup_params->maxage == maxage)
1831 l2_lookup_params->maxage = maxage;
1833 return sja1105_static_config_reload(priv);
1836 /* Caller must hold priv->tagger_data.meta_lock */
1837 static int sja1105_change_rxtstamping(struct sja1105_private *priv,
1840 struct sja1105_general_params_entry *general_params;
1841 struct sja1105_table *table;
1844 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
1845 general_params = table->entries;
1846 general_params->send_meta1 = on;
1847 general_params->send_meta0 = on;
1849 rc = sja1105_init_avb_params(priv, on);
1853 /* Initialize the meta state machine to a known state */
1854 if (priv->tagger_data.stampable_skb) {
1855 kfree_skb(priv->tagger_data.stampable_skb);
1856 priv->tagger_data.stampable_skb = NULL;
1859 return sja1105_static_config_reload(priv);
1862 static int sja1105_hwtstamp_set(struct dsa_switch *ds, int port,
1865 struct sja1105_private *priv = ds->priv;
1866 struct hwtstamp_config config;
1870 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
1873 switch (config.tx_type) {
1874 case HWTSTAMP_TX_OFF:
1875 priv->ports[port].hwts_tx_en = false;
1877 case HWTSTAMP_TX_ON:
1878 priv->ports[port].hwts_tx_en = true;
1884 switch (config.rx_filter) {
1885 case HWTSTAMP_FILTER_NONE:
1893 if (rx_on != priv->tagger_data.hwts_rx_en) {
1894 spin_lock(&priv->tagger_data.meta_lock);
1895 rc = sja1105_change_rxtstamping(priv, rx_on);
1896 spin_unlock(&priv->tagger_data.meta_lock);
1899 "Failed to change RX timestamping: %d\n", rc);
1902 priv->tagger_data.hwts_rx_en = rx_on;
1905 if (copy_to_user(ifr->ifr_data, &config, sizeof(config)))
1910 static int sja1105_hwtstamp_get(struct dsa_switch *ds, int port,
1913 struct sja1105_private *priv = ds->priv;
1914 struct hwtstamp_config config;
1917 if (priv->ports[port].hwts_tx_en)
1918 config.tx_type = HWTSTAMP_TX_ON;
1920 config.tx_type = HWTSTAMP_TX_OFF;
1921 if (priv->tagger_data.hwts_rx_en)
1922 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
1924 config.rx_filter = HWTSTAMP_FILTER_NONE;
1926 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1930 #define to_tagger(d) \
1931 container_of((d), struct sja1105_tagger_data, rxtstamp_work)
1932 #define to_sja1105(d) \
1933 container_of((d), struct sja1105_private, tagger_data)
1935 static void sja1105_rxtstamp_work(struct work_struct *work)
1937 struct sja1105_tagger_data *data = to_tagger(work);
1938 struct sja1105_private *priv = to_sja1105(data);
1939 struct sk_buff *skb;
1942 mutex_lock(&priv->ptp_lock);
1944 now = priv->tstamp_cc.read(&priv->tstamp_cc);
1946 while ((skb = skb_dequeue(&data->skb_rxtstamp_queue)) != NULL) {
1947 struct skb_shared_hwtstamps *shwt = skb_hwtstamps(skb);
1950 *shwt = (struct skb_shared_hwtstamps) {0};
1952 ts = SJA1105_SKB_CB(skb)->meta_tstamp;
1953 ts = sja1105_tstamp_reconstruct(priv, now, ts);
1954 ts = timecounter_cyc2time(&priv->tstamp_tc, ts);
1956 shwt->hwtstamp = ns_to_ktime(ts);
1960 mutex_unlock(&priv->ptp_lock);
1963 /* Called from dsa_skb_defer_rx_timestamp */
1964 static bool sja1105_port_rxtstamp(struct dsa_switch *ds, int port,
1965 struct sk_buff *skb, unsigned int type)
1967 struct sja1105_private *priv = ds->priv;
1968 struct sja1105_tagger_data *data = &priv->tagger_data;
1970 if (!data->hwts_rx_en)
1973 /* We need to read the full PTP clock to reconstruct the Rx
1974 * timestamp. For that we need a sleepable context.
1976 skb_queue_tail(&data->skb_rxtstamp_queue, skb);
1977 schedule_work(&data->rxtstamp_work);
1981 /* Called from dsa_skb_tx_timestamp. This callback is just to make DSA clone
1982 * the skb and have it available in DSA_SKB_CB in the .port_deferred_xmit
1983 * callback, where we will timestamp it synchronously.
1985 static bool sja1105_port_txtstamp(struct dsa_switch *ds, int port,
1986 struct sk_buff *skb, unsigned int type)
1988 struct sja1105_private *priv = ds->priv;
1989 struct sja1105_port *sp = &priv->ports[port];
1991 if (!sp->hwts_tx_en)
1997 static const struct dsa_switch_ops sja1105_switch_ops = {
1998 .get_tag_protocol = sja1105_get_tag_protocol,
1999 .setup = sja1105_setup,
2000 .teardown = sja1105_teardown,
2001 .set_ageing_time = sja1105_set_ageing_time,
2002 .phylink_validate = sja1105_phylink_validate,
2003 .phylink_mac_config = sja1105_mac_config,
2004 .phylink_mac_link_up = sja1105_mac_link_up,
2005 .phylink_mac_link_down = sja1105_mac_link_down,
2006 .get_strings = sja1105_get_strings,
2007 .get_ethtool_stats = sja1105_get_ethtool_stats,
2008 .get_sset_count = sja1105_get_sset_count,
2009 .get_ts_info = sja1105_get_ts_info,
2010 .port_fdb_dump = sja1105_fdb_dump,
2011 .port_fdb_add = sja1105_fdb_add,
2012 .port_fdb_del = sja1105_fdb_del,
2013 .port_bridge_join = sja1105_bridge_join,
2014 .port_bridge_leave = sja1105_bridge_leave,
2015 .port_stp_state_set = sja1105_bridge_stp_state_set,
2016 .port_vlan_prepare = sja1105_vlan_prepare,
2017 .port_vlan_filtering = sja1105_vlan_filtering,
2018 .port_vlan_add = sja1105_vlan_add,
2019 .port_vlan_del = sja1105_vlan_del,
2020 .port_mdb_prepare = sja1105_mdb_prepare,
2021 .port_mdb_add = sja1105_mdb_add,
2022 .port_mdb_del = sja1105_mdb_del,
2023 .port_deferred_xmit = sja1105_port_deferred_xmit,
2024 .port_hwtstamp_get = sja1105_hwtstamp_get,
2025 .port_hwtstamp_set = sja1105_hwtstamp_set,
2026 .port_rxtstamp = sja1105_port_rxtstamp,
2027 .port_txtstamp = sja1105_port_txtstamp,
2030 static int sja1105_check_device_id(struct sja1105_private *priv)
2032 const struct sja1105_regs *regs = priv->info->regs;
2033 u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0};
2034 struct device *dev = &priv->spidev->dev;
2039 rc = sja1105_spi_send_int(priv, SPI_READ, regs->device_id,
2040 &device_id, SJA1105_SIZE_DEVICE_ID);
2044 if (device_id != priv->info->device_id) {
2045 dev_err(dev, "Expected device ID 0x%llx but read 0x%llx\n",
2046 priv->info->device_id, device_id);
2050 rc = sja1105_spi_send_packed_buf(priv, SPI_READ, regs->prod_id,
2051 prod_id, SJA1105_SIZE_DEVICE_ID);
2055 sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID);
2057 if (part_no != priv->info->part_no) {
2058 dev_err(dev, "Expected part number 0x%llx but read 0x%llx\n",
2059 priv->info->part_no, part_no);
2066 static int sja1105_probe(struct spi_device *spi)
2068 struct sja1105_tagger_data *tagger_data;
2069 struct device *dev = &spi->dev;
2070 struct sja1105_private *priv;
2071 struct dsa_switch *ds;
2074 if (!dev->of_node) {
2075 dev_err(dev, "No DTS bindings for SJA1105 driver\n");
2079 priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL);
2083 /* Configure the optional reset pin and bring up switch */
2084 priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
2085 if (IS_ERR(priv->reset_gpio))
2086 dev_dbg(dev, "reset-gpios not defined, ignoring\n");
2088 sja1105_hw_reset(priv->reset_gpio, 1, 1);
2090 /* Populate our driver private structure (priv) based on
2091 * the device tree node that was probed (spi)
2094 spi_set_drvdata(spi, priv);
2096 /* Configure the SPI bus */
2097 spi->bits_per_word = 8;
2098 rc = spi_setup(spi);
2100 dev_err(dev, "Could not init SPI\n");
2104 priv->info = of_device_get_match_data(dev);
2106 /* Detect hardware device */
2107 rc = sja1105_check_device_id(priv);
2109 dev_err(dev, "Device ID check failed: %d\n", rc);
2113 dev_info(dev, "Probed switch chip: %s\n", priv->info->name);
2115 ds = dsa_switch_alloc(dev, SJA1105_NUM_PORTS);
2119 ds->ops = &sja1105_switch_ops;
2123 tagger_data = &priv->tagger_data;
2124 skb_queue_head_init(&tagger_data->skb_rxtstamp_queue);
2125 INIT_WORK(&tagger_data->rxtstamp_work, sja1105_rxtstamp_work);
2127 /* Connections between dsa_port and sja1105_port */
2128 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
2129 struct sja1105_port *sp = &priv->ports[i];
2131 ds->ports[i].priv = sp;
2132 sp->dp = &ds->ports[i];
2133 sp->data = tagger_data;
2135 mutex_init(&priv->mgmt_lock);
2137 return dsa_register_switch(priv->ds);
2140 static int sja1105_remove(struct spi_device *spi)
2142 struct sja1105_private *priv = spi_get_drvdata(spi);
2144 sja1105_ptp_clock_unregister(priv);
2145 dsa_unregister_switch(priv->ds);
2146 sja1105_static_config_free(&priv->static_config);
2150 static const struct of_device_id sja1105_dt_ids[] = {
2151 { .compatible = "nxp,sja1105e", .data = &sja1105e_info },
2152 { .compatible = "nxp,sja1105t", .data = &sja1105t_info },
2153 { .compatible = "nxp,sja1105p", .data = &sja1105p_info },
2154 { .compatible = "nxp,sja1105q", .data = &sja1105q_info },
2155 { .compatible = "nxp,sja1105r", .data = &sja1105r_info },
2156 { .compatible = "nxp,sja1105s", .data = &sja1105s_info },
2159 MODULE_DEVICE_TABLE(of, sja1105_dt_ids);
2161 static struct spi_driver sja1105_driver = {
2164 .owner = THIS_MODULE,
2165 .of_match_table = of_match_ptr(sja1105_dt_ids),
2167 .probe = sja1105_probe,
2168 .remove = sja1105_remove,
2171 module_spi_driver(sja1105_driver);
2173 MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>");
2174 MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>");
2175 MODULE_DESCRIPTION("SJA1105 Driver");
2176 MODULE_LICENSE("GPL v2");