Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH
0003  * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com>
0004  */
0005 
0006 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
0007 
0008 #include <linux/delay.h>
0009 #include <linux/module.h>
0010 #include <linux/printk.h>
0011 #include <linux/spi/spi.h>
0012 #include <linux/errno.h>
0013 #include <linux/gpio/consumer.h>
0014 #include <linux/phylink.h>
0015 #include <linux/of.h>
0016 #include <linux/of_net.h>
0017 #include <linux/of_mdio.h>
0018 #include <linux/of_device.h>
0019 #include <linux/pcs/pcs-xpcs.h>
0020 #include <linux/netdev_features.h>
0021 #include <linux/netdevice.h>
0022 #include <linux/if_bridge.h>
0023 #include <linux/if_ether.h>
0024 #include <linux/dsa/8021q.h>
0025 #include "sja1105.h"
0026 #include "sja1105_tas.h"
0027 
0028 #define SJA1105_UNKNOWN_MULTICAST   0x010000000000ull
0029 
0030 /* Configure the optional reset pin and bring up switch */
0031 static int sja1105_hw_reset(struct device *dev, unsigned int pulse_len,
0032                 unsigned int startup_delay)
0033 {
0034     struct gpio_desc *gpio;
0035 
0036     gpio = gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH);
0037     if (IS_ERR(gpio))
0038         return PTR_ERR(gpio);
0039 
0040     if (!gpio)
0041         return 0;
0042 
0043     gpiod_set_value_cansleep(gpio, 1);
0044     /* Wait for minimum reset pulse length */
0045     msleep(pulse_len);
0046     gpiod_set_value_cansleep(gpio, 0);
0047     /* Wait until chip is ready after reset */
0048     msleep(startup_delay);
0049 
0050     gpiod_put(gpio);
0051 
0052     return 0;
0053 }
0054 
0055 static void
0056 sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd,
0057                int from, int to, bool allow)
0058 {
0059     if (allow)
0060         l2_fwd[from].reach_port |= BIT(to);
0061     else
0062         l2_fwd[from].reach_port &= ~BIT(to);
0063 }
0064 
0065 static bool sja1105_can_forward(struct sja1105_l2_forwarding_entry *l2_fwd,
0066                 int from, int to)
0067 {
0068     return !!(l2_fwd[from].reach_port & BIT(to));
0069 }
0070 
0071 static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid)
0072 {
0073     struct sja1105_vlan_lookup_entry *vlan;
0074     int count, i;
0075 
0076     vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
0077     count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count;
0078 
0079     for (i = 0; i < count; i++)
0080         if (vlan[i].vlanid == vid)
0081             return i;
0082 
0083     /* Return an invalid entry index if not found */
0084     return -1;
0085 }
0086 
0087 static int sja1105_drop_untagged(struct dsa_switch *ds, int port, bool drop)
0088 {
0089     struct sja1105_private *priv = ds->priv;
0090     struct sja1105_mac_config_entry *mac;
0091 
0092     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
0093 
0094     if (mac[port].drpuntag == drop)
0095         return 0;
0096 
0097     mac[port].drpuntag = drop;
0098 
0099     return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
0100                         &mac[port], true);
0101 }
0102 
0103 static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid)
0104 {
0105     struct sja1105_mac_config_entry *mac;
0106 
0107     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
0108 
0109     if (mac[port].vlanid == pvid)
0110         return 0;
0111 
0112     mac[port].vlanid = pvid;
0113 
0114     return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
0115                         &mac[port], true);
0116 }
0117 
0118 static int sja1105_commit_pvid(struct dsa_switch *ds, int port)
0119 {
0120     struct dsa_port *dp = dsa_to_port(ds, port);
0121     struct net_device *br = dsa_port_bridge_dev_get(dp);
0122     struct sja1105_private *priv = ds->priv;
0123     struct sja1105_vlan_lookup_entry *vlan;
0124     bool drop_untagged = false;
0125     int match, rc;
0126     u16 pvid;
0127 
0128     if (br && br_vlan_enabled(br))
0129         pvid = priv->bridge_pvid[port];
0130     else
0131         pvid = priv->tag_8021q_pvid[port];
0132 
0133     rc = sja1105_pvid_apply(priv, port, pvid);
0134     if (rc)
0135         return rc;
0136 
0137     /* Only force dropping of untagged packets when the port is under a
0138      * VLAN-aware bridge. When the tag_8021q pvid is used, we are
0139      * deliberately removing the RX VLAN from the port's VMEMB_PORT list,
0140      * to prevent DSA tag spoofing from the link partner. Untagged packets
0141      * are the only ones that should be received with tag_8021q, so
0142      * definitely don't drop them.
0143      */
0144     if (pvid == priv->bridge_pvid[port]) {
0145         vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
0146 
0147         match = sja1105_is_vlan_configured(priv, pvid);
0148 
0149         if (match < 0 || !(vlan[match].vmemb_port & BIT(port)))
0150             drop_untagged = true;
0151     }
0152 
0153     if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
0154         drop_untagged = true;
0155 
0156     return sja1105_drop_untagged(ds, port, drop_untagged);
0157 }
0158 
0159 static int sja1105_init_mac_settings(struct sja1105_private *priv)
0160 {
0161     struct sja1105_mac_config_entry default_mac = {
0162         /* Enable all 8 priority queues on egress.
0163          * Every queue i holds top[i] - base[i] frames.
0164          * Sum of top[i] - base[i] is 511 (max hardware limit).
0165          */
0166         .top  = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF},
0167         .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0},
0168         .enabled = {true, true, true, true, true, true, true, true},
0169         /* Keep standard IFG of 12 bytes on egress. */
0170         .ifg = 0,
0171         /* Always put the MAC speed in automatic mode, where it can be
0172          * adjusted at runtime by PHYLINK.
0173          */
0174         .speed = priv->info->port_speed[SJA1105_SPEED_AUTO],
0175         /* No static correction for 1-step 1588 events */
0176         .tp_delin = 0,
0177         .tp_delout = 0,
0178         /* Disable aging for critical TTEthernet traffic */
0179         .maxage = 0xFF,
0180         /* Internal VLAN (pvid) to apply to untagged ingress */
0181         .vlanprio = 0,
0182         .vlanid = 1,
0183         .ing_mirr = false,
0184         .egr_mirr = false,
0185         /* Don't drop traffic with other EtherType than ETH_P_IP */
0186         .drpnona664 = false,
0187         /* Don't drop double-tagged traffic */
0188         .drpdtag = false,
0189         /* Don't drop untagged traffic */
0190         .drpuntag = false,
0191         /* Don't retag 802.1p (VID 0) traffic with the pvid */
0192         .retag = false,
0193         /* Disable learning and I/O on user ports by default -
0194          * STP will enable it.
0195          */
0196         .dyn_learn = false,
0197         .egress = false,
0198         .ingress = false,
0199     };
0200     struct sja1105_mac_config_entry *mac;
0201     struct dsa_switch *ds = priv->ds;
0202     struct sja1105_table *table;
0203     struct dsa_port *dp;
0204 
0205     table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG];
0206 
0207     /* Discard previous MAC Configuration Table */
0208     if (table->entry_count) {
0209         kfree(table->entries);
0210         table->entry_count = 0;
0211     }
0212 
0213     table->entries = kcalloc(table->ops->max_entry_count,
0214                  table->ops->unpacked_entry_size, GFP_KERNEL);
0215     if (!table->entries)
0216         return -ENOMEM;
0217 
0218     table->entry_count = table->ops->max_entry_count;
0219 
0220     mac = table->entries;
0221 
0222     list_for_each_entry(dp, &ds->dst->ports, list) {
0223         if (dp->ds != ds)
0224             continue;
0225 
0226         mac[dp->index] = default_mac;
0227 
0228         /* Let sja1105_bridge_stp_state_set() keep address learning
0229          * enabled for the DSA ports. CPU ports use software-assisted
0230          * learning to ensure that only FDB entries belonging to the
0231          * bridge are learned, and that they are learned towards all
0232          * CPU ports in a cross-chip topology if multiple CPU ports
0233          * exist.
0234          */
0235         if (dsa_port_is_dsa(dp))
0236             dp->learning = true;
0237 
0238         /* Disallow untagged packets from being received on the
0239          * CPU and DSA ports.
0240          */
0241         if (dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp))
0242             mac[dp->index].drpuntag = true;
0243     }
0244 
0245     return 0;
0246 }
0247 
0248 static int sja1105_init_mii_settings(struct sja1105_private *priv)
0249 {
0250     struct device *dev = &priv->spidev->dev;
0251     struct sja1105_xmii_params_entry *mii;
0252     struct dsa_switch *ds = priv->ds;
0253     struct sja1105_table *table;
0254     int i;
0255 
0256     table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS];
0257 
0258     /* Discard previous xMII Mode Parameters Table */
0259     if (table->entry_count) {
0260         kfree(table->entries);
0261         table->entry_count = 0;
0262     }
0263 
0264     table->entries = kcalloc(table->ops->max_entry_count,
0265                  table->ops->unpacked_entry_size, GFP_KERNEL);
0266     if (!table->entries)
0267         return -ENOMEM;
0268 
0269     /* Override table based on PHYLINK DT bindings */
0270     table->entry_count = table->ops->max_entry_count;
0271 
0272     mii = table->entries;
0273 
0274     for (i = 0; i < ds->num_ports; i++) {
0275         sja1105_mii_role_t role = XMII_MAC;
0276 
0277         if (dsa_is_unused_port(priv->ds, i))
0278             continue;
0279 
0280         switch (priv->phy_mode[i]) {
0281         case PHY_INTERFACE_MODE_INTERNAL:
0282             if (priv->info->internal_phy[i] == SJA1105_NO_PHY)
0283                 goto unsupported;
0284 
0285             mii->xmii_mode[i] = XMII_MODE_MII;
0286             if (priv->info->internal_phy[i] == SJA1105_PHY_BASE_TX)
0287                 mii->special[i] = true;
0288 
0289             break;
0290         case PHY_INTERFACE_MODE_REVMII:
0291             role = XMII_PHY;
0292             fallthrough;
0293         case PHY_INTERFACE_MODE_MII:
0294             if (!priv->info->supports_mii[i])
0295                 goto unsupported;
0296 
0297             mii->xmii_mode[i] = XMII_MODE_MII;
0298             break;
0299         case PHY_INTERFACE_MODE_REVRMII:
0300             role = XMII_PHY;
0301             fallthrough;
0302         case PHY_INTERFACE_MODE_RMII:
0303             if (!priv->info->supports_rmii[i])
0304                 goto unsupported;
0305 
0306             mii->xmii_mode[i] = XMII_MODE_RMII;
0307             break;
0308         case PHY_INTERFACE_MODE_RGMII:
0309         case PHY_INTERFACE_MODE_RGMII_ID:
0310         case PHY_INTERFACE_MODE_RGMII_RXID:
0311         case PHY_INTERFACE_MODE_RGMII_TXID:
0312             if (!priv->info->supports_rgmii[i])
0313                 goto unsupported;
0314 
0315             mii->xmii_mode[i] = XMII_MODE_RGMII;
0316             break;
0317         case PHY_INTERFACE_MODE_SGMII:
0318             if (!priv->info->supports_sgmii[i])
0319                 goto unsupported;
0320 
0321             mii->xmii_mode[i] = XMII_MODE_SGMII;
0322             mii->special[i] = true;
0323             break;
0324         case PHY_INTERFACE_MODE_2500BASEX:
0325             if (!priv->info->supports_2500basex[i])
0326                 goto unsupported;
0327 
0328             mii->xmii_mode[i] = XMII_MODE_SGMII;
0329             mii->special[i] = true;
0330             break;
0331 unsupported:
0332         default:
0333             dev_err(dev, "Unsupported PHY mode %s on port %d!\n",
0334                 phy_modes(priv->phy_mode[i]), i);
0335             return -EINVAL;
0336         }
0337 
0338         mii->phy_mac[i] = role;
0339     }
0340     return 0;
0341 }
0342 
0343 static int sja1105_init_static_fdb(struct sja1105_private *priv)
0344 {
0345     struct sja1105_l2_lookup_entry *l2_lookup;
0346     struct sja1105_table *table;
0347     int port;
0348 
0349     table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
0350 
0351     /* We only populate the FDB table through dynamic L2 Address Lookup
0352      * entries, except for a special entry at the end which is a catch-all
0353      * for unknown multicast and will be used to control flooding domain.
0354      */
0355     if (table->entry_count) {
0356         kfree(table->entries);
0357         table->entry_count = 0;
0358     }
0359 
0360     if (!priv->info->can_limit_mcast_flood)
0361         return 0;
0362 
0363     table->entries = kcalloc(1, table->ops->unpacked_entry_size,
0364                  GFP_KERNEL);
0365     if (!table->entries)
0366         return -ENOMEM;
0367 
0368     table->entry_count = 1;
0369     l2_lookup = table->entries;
0370 
0371     /* All L2 multicast addresses have an odd first octet */
0372     l2_lookup[0].macaddr = SJA1105_UNKNOWN_MULTICAST;
0373     l2_lookup[0].mask_macaddr = SJA1105_UNKNOWN_MULTICAST;
0374     l2_lookup[0].lockeds = true;
0375     l2_lookup[0].index = SJA1105_MAX_L2_LOOKUP_COUNT - 1;
0376 
0377     /* Flood multicast to every port by default */
0378     for (port = 0; port < priv->ds->num_ports; port++)
0379         if (!dsa_is_unused_port(priv->ds, port))
0380             l2_lookup[0].destports |= BIT(port);
0381 
0382     return 0;
0383 }
0384 
0385 static int sja1105_init_l2_lookup_params(struct sja1105_private *priv)
0386 {
0387     struct sja1105_l2_lookup_params_entry default_l2_lookup_params = {
0388         /* Learned FDB entries are forgotten after 300 seconds */
0389         .maxage = SJA1105_AGEING_TIME_MS(300000),
0390         /* All entries within a FDB bin are available for learning */
0391         .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE,
0392         /* And the P/Q/R/S equivalent setting: */
0393         .start_dynspc = 0,
0394         /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */
0395         .poly = 0x97,
0396         /* Always use Independent VLAN Learning (IVL) */
0397         .shared_learn = false,
0398         /* Don't discard management traffic based on ENFPORT -
0399          * we don't perform SMAC port enforcement anyway, so
0400          * what we are setting here doesn't matter.
0401          */
0402         .no_enf_hostprt = false,
0403         /* Don't learn SMAC for mac_fltres1 and mac_fltres0.
0404          * Maybe correlate with no_linklocal_learn from bridge driver?
0405          */
0406         .no_mgmt_learn = true,
0407         /* P/Q/R/S only */
0408         .use_static = true,
0409         /* Dynamically learned FDB entries can overwrite other (older)
0410          * dynamic FDB entries
0411          */
0412         .owr_dyn = true,
0413         .drpnolearn = true,
0414     };
0415     struct dsa_switch *ds = priv->ds;
0416     int port, num_used_ports = 0;
0417     struct sja1105_table *table;
0418     u64 max_fdb_entries;
0419 
0420     for (port = 0; port < ds->num_ports; port++)
0421         if (!dsa_is_unused_port(ds, port))
0422             num_used_ports++;
0423 
0424     max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / num_used_ports;
0425 
0426     for (port = 0; port < ds->num_ports; port++) {
0427         if (dsa_is_unused_port(ds, port))
0428             continue;
0429 
0430         default_l2_lookup_params.maxaddrp[port] = max_fdb_entries;
0431     }
0432 
0433     table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
0434 
0435     if (table->entry_count) {
0436         kfree(table->entries);
0437         table->entry_count = 0;
0438     }
0439 
0440     table->entries = kcalloc(table->ops->max_entry_count,
0441                  table->ops->unpacked_entry_size, GFP_KERNEL);
0442     if (!table->entries)
0443         return -ENOMEM;
0444 
0445     table->entry_count = table->ops->max_entry_count;
0446 
0447     /* This table only has a single entry */
0448     ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] =
0449                 default_l2_lookup_params;
0450 
0451     return 0;
0452 }
0453 
0454 /* Set up a default VLAN for untagged traffic injected from the CPU
0455  * using management routes (e.g. STP, PTP) as opposed to tag_8021q.
0456  * All DT-defined ports are members of this VLAN, and there are no
0457  * restrictions on forwarding (since the CPU selects the destination).
0458  * Frames from this VLAN will always be transmitted as untagged, and
0459  * neither the bridge nor the 8021q module cannot create this VLAN ID.
0460  */
0461 static int sja1105_init_static_vlan(struct sja1105_private *priv)
0462 {
0463     struct sja1105_table *table;
0464     struct sja1105_vlan_lookup_entry pvid = {
0465         .type_entry = SJA1110_VLAN_D_TAG,
0466         .ving_mirr = 0,
0467         .vegr_mirr = 0,
0468         .vmemb_port = 0,
0469         .vlan_bc = 0,
0470         .tag_port = 0,
0471         .vlanid = SJA1105_DEFAULT_VLAN,
0472     };
0473     struct dsa_switch *ds = priv->ds;
0474     int port;
0475 
0476     table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
0477 
0478     if (table->entry_count) {
0479         kfree(table->entries);
0480         table->entry_count = 0;
0481     }
0482 
0483     table->entries = kzalloc(table->ops->unpacked_entry_size,
0484                  GFP_KERNEL);
0485     if (!table->entries)
0486         return -ENOMEM;
0487 
0488     table->entry_count = 1;
0489 
0490     for (port = 0; port < ds->num_ports; port++) {
0491         if (dsa_is_unused_port(ds, port))
0492             continue;
0493 
0494         pvid.vmemb_port |= BIT(port);
0495         pvid.vlan_bc |= BIT(port);
0496         pvid.tag_port &= ~BIT(port);
0497 
0498         if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port)) {
0499             priv->tag_8021q_pvid[port] = SJA1105_DEFAULT_VLAN;
0500             priv->bridge_pvid[port] = SJA1105_DEFAULT_VLAN;
0501         }
0502     }
0503 
0504     ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid;
0505     return 0;
0506 }
0507 
0508 static int sja1105_init_l2_forwarding(struct sja1105_private *priv)
0509 {
0510     struct sja1105_l2_forwarding_entry *l2fwd;
0511     struct dsa_switch *ds = priv->ds;
0512     struct dsa_switch_tree *dst;
0513     struct sja1105_table *table;
0514     struct dsa_link *dl;
0515     int port, tc;
0516     int from, to;
0517 
0518     table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING];
0519 
0520     if (table->entry_count) {
0521         kfree(table->entries);
0522         table->entry_count = 0;
0523     }
0524 
0525     table->entries = kcalloc(table->ops->max_entry_count,
0526                  table->ops->unpacked_entry_size, GFP_KERNEL);
0527     if (!table->entries)
0528         return -ENOMEM;
0529 
0530     table->entry_count = table->ops->max_entry_count;
0531 
0532     l2fwd = table->entries;
0533 
0534     /* First 5 entries in the L2 Forwarding Table define the forwarding
0535      * rules and the VLAN PCP to ingress queue mapping.
0536      * Set up the ingress queue mapping first.
0537      */
0538     for (port = 0; port < ds->num_ports; port++) {
0539         if (dsa_is_unused_port(ds, port))
0540             continue;
0541 
0542         for (tc = 0; tc < SJA1105_NUM_TC; tc++)
0543             l2fwd[port].vlan_pmap[tc] = tc;
0544     }
0545 
0546     /* Then manage the forwarding domain for user ports. These can forward
0547      * only to the always-on domain (CPU port and DSA links)
0548      */
0549     for (from = 0; from < ds->num_ports; from++) {
0550         if (!dsa_is_user_port(ds, from))
0551             continue;
0552 
0553         for (to = 0; to < ds->num_ports; to++) {
0554             if (!dsa_is_cpu_port(ds, to) &&
0555                 !dsa_is_dsa_port(ds, to))
0556                 continue;
0557 
0558             l2fwd[from].bc_domain |= BIT(to);
0559             l2fwd[from].fl_domain |= BIT(to);
0560 
0561             sja1105_port_allow_traffic(l2fwd, from, to, true);
0562         }
0563     }
0564 
0565     /* Then manage the forwarding domain for DSA links and CPU ports (the
0566      * always-on domain). These can send packets to any enabled port except
0567      * themselves.
0568      */
0569     for (from = 0; from < ds->num_ports; from++) {
0570         if (!dsa_is_cpu_port(ds, from) && !dsa_is_dsa_port(ds, from))
0571             continue;
0572 
0573         for (to = 0; to < ds->num_ports; to++) {
0574             if (dsa_is_unused_port(ds, to))
0575                 continue;
0576 
0577             if (from == to)
0578                 continue;
0579 
0580             l2fwd[from].bc_domain |= BIT(to);
0581             l2fwd[from].fl_domain |= BIT(to);
0582 
0583             sja1105_port_allow_traffic(l2fwd, from, to, true);
0584         }
0585     }
0586 
0587     /* In odd topologies ("H" connections where there is a DSA link to
0588      * another switch which also has its own CPU port), TX packets can loop
0589      * back into the system (they are flooded from CPU port 1 to the DSA
0590      * link, and from there to CPU port 2). Prevent this from happening by
0591      * cutting RX from DSA links towards our CPU port, if the remote switch
0592      * has its own CPU port and therefore doesn't need ours for network
0593      * stack termination.
0594      */
0595     dst = ds->dst;
0596 
0597     list_for_each_entry(dl, &dst->rtable, list) {
0598         if (dl->dp->ds != ds || dl->link_dp->cpu_dp == dl->dp->cpu_dp)
0599             continue;
0600 
0601         from = dl->dp->index;
0602         to = dsa_upstream_port(ds, from);
0603 
0604         dev_warn(ds->dev,
0605              "H topology detected, cutting RX from DSA link %d to CPU port %d to prevent TX packet loops\n",
0606              from, to);
0607 
0608         sja1105_port_allow_traffic(l2fwd, from, to, false);
0609 
0610         l2fwd[from].bc_domain &= ~BIT(to);
0611         l2fwd[from].fl_domain &= ~BIT(to);
0612     }
0613 
0614     /* Finally, manage the egress flooding domain. All ports start up with
0615      * flooding enabled, including the CPU port and DSA links.
0616      */
0617     for (port = 0; port < ds->num_ports; port++) {
0618         if (dsa_is_unused_port(ds, port))
0619             continue;
0620 
0621         priv->ucast_egress_floods |= BIT(port);
0622         priv->bcast_egress_floods |= BIT(port);
0623     }
0624 
0625     /* Next 8 entries define VLAN PCP mapping from ingress to egress.
0626      * Create a one-to-one mapping.
0627      */
0628     for (tc = 0; tc < SJA1105_NUM_TC; tc++) {
0629         for (port = 0; port < ds->num_ports; port++) {
0630             if (dsa_is_unused_port(ds, port))
0631                 continue;
0632 
0633             l2fwd[ds->num_ports + tc].vlan_pmap[port] = tc;
0634         }
0635 
0636         l2fwd[ds->num_ports + tc].type_egrpcp2outputq = true;
0637     }
0638 
0639     return 0;
0640 }
0641 
0642 static int sja1110_init_pcp_remapping(struct sja1105_private *priv)
0643 {
0644     struct sja1110_pcp_remapping_entry *pcp_remap;
0645     struct dsa_switch *ds = priv->ds;
0646     struct sja1105_table *table;
0647     int port, tc;
0648 
0649     table = &priv->static_config.tables[BLK_IDX_PCP_REMAPPING];
0650 
0651     /* Nothing to do for SJA1105 */
0652     if (!table->ops->max_entry_count)
0653         return 0;
0654 
0655     if (table->entry_count) {
0656         kfree(table->entries);
0657         table->entry_count = 0;
0658     }
0659 
0660     table->entries = kcalloc(table->ops->max_entry_count,
0661                  table->ops->unpacked_entry_size, GFP_KERNEL);
0662     if (!table->entries)
0663         return -ENOMEM;
0664 
0665     table->entry_count = table->ops->max_entry_count;
0666 
0667     pcp_remap = table->entries;
0668 
0669     /* Repeat the configuration done for vlan_pmap */
0670     for (port = 0; port < ds->num_ports; port++) {
0671         if (dsa_is_unused_port(ds, port))
0672             continue;
0673 
0674         for (tc = 0; tc < SJA1105_NUM_TC; tc++)
0675             pcp_remap[port].egrpcp[tc] = tc;
0676     }
0677 
0678     return 0;
0679 }
0680 
0681 static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv)
0682 {
0683     struct sja1105_l2_forwarding_params_entry *l2fwd_params;
0684     struct sja1105_table *table;
0685 
0686     table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
0687 
0688     if (table->entry_count) {
0689         kfree(table->entries);
0690         table->entry_count = 0;
0691     }
0692 
0693     table->entries = kcalloc(table->ops->max_entry_count,
0694                  table->ops->unpacked_entry_size, GFP_KERNEL);
0695     if (!table->entries)
0696         return -ENOMEM;
0697 
0698     table->entry_count = table->ops->max_entry_count;
0699 
0700     /* This table only has a single entry */
0701     l2fwd_params = table->entries;
0702 
0703     /* Disallow dynamic reconfiguration of vlan_pmap */
0704     l2fwd_params->max_dynp = 0;
0705     /* Use a single memory partition for all ingress queues */
0706     l2fwd_params->part_spc[0] = priv->info->max_frame_mem;
0707 
0708     return 0;
0709 }
0710 
0711 void sja1105_frame_memory_partitioning(struct sja1105_private *priv)
0712 {
0713     struct sja1105_l2_forwarding_params_entry *l2_fwd_params;
0714     struct sja1105_vl_forwarding_params_entry *vl_fwd_params;
0715     struct sja1105_table *table;
0716 
0717     table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
0718     l2_fwd_params = table->entries;
0719     l2_fwd_params->part_spc[0] = SJA1105_MAX_FRAME_MEMORY;
0720 
0721     /* If we have any critical-traffic virtual links, we need to reserve
0722      * some frame buffer memory for them. At the moment, hardcode the value
0723      * at 100 blocks of 128 bytes of memory each. This leaves 829 blocks
0724      * remaining for best-effort traffic. TODO: figure out a more flexible
0725      * way to perform the frame buffer partitioning.
0726      */
0727     if (!priv->static_config.tables[BLK_IDX_VL_FORWARDING].entry_count)
0728         return;
0729 
0730     table = &priv->static_config.tables[BLK_IDX_VL_FORWARDING_PARAMS];
0731     vl_fwd_params = table->entries;
0732 
0733     l2_fwd_params->part_spc[0] -= SJA1105_VL_FRAME_MEMORY;
0734     vl_fwd_params->partspc[0] = SJA1105_VL_FRAME_MEMORY;
0735 }
0736 
0737 /* SJA1110 TDMACONFIGIDX values:
0738  *
0739  *      | 100 Mbps ports |  1Gbps ports  | 2.5Gbps ports | Disabled ports
0740  * -----+----------------+---------------+---------------+---------------
0741  *   0  |   0, [5:10]    |     [1:2]     |     [3:4]     |     retag
0742  *   1  |0, [5:10], retag|     [1:2]     |     [3:4]     |       -
0743  *   2  |   0, [5:10]    |  [1:3], retag |       4       |       -
0744  *   3  |   0, [5:10]    |[1:2], 4, retag|       3       |       -
0745  *   4  |  0, 2, [5:10]  |    1, retag   |     [3:4]     |       -
0746  *   5  |  0, 1, [5:10]  |    2, retag   |     [3:4]     |       -
0747  *  14  |   0, [5:10]    | [1:4], retag  |       -       |       -
0748  *  15  |     [5:10]     | [0:4], retag  |       -       |       -
0749  */
0750 static void sja1110_select_tdmaconfigidx(struct sja1105_private *priv)
0751 {
0752     struct sja1105_general_params_entry *general_params;
0753     struct sja1105_table *table;
0754     bool port_1_is_base_tx;
0755     bool port_3_is_2500;
0756     bool port_4_is_2500;
0757     u64 tdmaconfigidx;
0758 
0759     if (priv->info->device_id != SJA1110_DEVICE_ID)
0760         return;
0761 
0762     table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
0763     general_params = table->entries;
0764 
0765     /* All the settings below are "as opposed to SGMII", which is the
0766      * other pinmuxing option.
0767      */
0768     port_1_is_base_tx = priv->phy_mode[1] == PHY_INTERFACE_MODE_INTERNAL;
0769     port_3_is_2500 = priv->phy_mode[3] == PHY_INTERFACE_MODE_2500BASEX;
0770     port_4_is_2500 = priv->phy_mode[4] == PHY_INTERFACE_MODE_2500BASEX;
0771 
0772     if (port_1_is_base_tx)
0773         /* Retagging port will operate at 1 Gbps */
0774         tdmaconfigidx = 5;
0775     else if (port_3_is_2500 && port_4_is_2500)
0776         /* Retagging port will operate at 100 Mbps */
0777         tdmaconfigidx = 1;
0778     else if (port_3_is_2500)
0779         /* Retagging port will operate at 1 Gbps */
0780         tdmaconfigidx = 3;
0781     else if (port_4_is_2500)
0782         /* Retagging port will operate at 1 Gbps */
0783         tdmaconfigidx = 2;
0784     else
0785         /* Retagging port will operate at 1 Gbps */
0786         tdmaconfigidx = 14;
0787 
0788     general_params->tdmaconfigidx = tdmaconfigidx;
0789 }
0790 
0791 static int sja1105_init_topology(struct sja1105_private *priv,
0792                  struct sja1105_general_params_entry *general_params)
0793 {
0794     struct dsa_switch *ds = priv->ds;
0795     int port;
0796 
0797     /* The host port is the destination for traffic matching mac_fltres1
0798      * and mac_fltres0 on all ports except itself. Default to an invalid
0799      * value.
0800      */
0801     general_params->host_port = ds->num_ports;
0802 
0803     /* Link-local traffic received on casc_port will be forwarded
0804      * to host_port without embedding the source port and device ID
0805      * info in the destination MAC address, and no RX timestamps will be
0806      * taken either (presumably because it is a cascaded port and a
0807      * downstream SJA switch already did that).
0808      * To disable the feature, we need to do different things depending on
0809      * switch generation. On SJA1105 we need to set an invalid port, while
0810      * on SJA1110 which support multiple cascaded ports, this field is a
0811      * bitmask so it must be left zero.
0812      */
0813     if (!priv->info->multiple_cascade_ports)
0814         general_params->casc_port = ds->num_ports;
0815 
0816     for (port = 0; port < ds->num_ports; port++) {
0817         bool is_upstream = dsa_is_upstream_port(ds, port);
0818         bool is_dsa_link = dsa_is_dsa_port(ds, port);
0819 
0820         /* Upstream ports can be dedicated CPU ports or
0821          * upstream-facing DSA links
0822          */
0823         if (is_upstream) {
0824             if (general_params->host_port == ds->num_ports) {
0825                 general_params->host_port = port;
0826             } else {
0827                 dev_err(ds->dev,
0828                     "Port %llu is already a host port, configuring %d as one too is not supported\n",
0829                     general_params->host_port, port);
0830                 return -EINVAL;
0831             }
0832         }
0833 
0834         /* Cascade ports are downstream-facing DSA links */
0835         if (is_dsa_link && !is_upstream) {
0836             if (priv->info->multiple_cascade_ports) {
0837                 general_params->casc_port |= BIT(port);
0838             } else if (general_params->casc_port == ds->num_ports) {
0839                 general_params->casc_port = port;
0840             } else {
0841                 dev_err(ds->dev,
0842                     "Port %llu is already a cascade port, configuring %d as one too is not supported\n",
0843                     general_params->casc_port, port);
0844                 return -EINVAL;
0845             }
0846         }
0847     }
0848 
0849     if (general_params->host_port == ds->num_ports) {
0850         dev_err(ds->dev, "No host port configured\n");
0851         return -EINVAL;
0852     }
0853 
0854     return 0;
0855 }
0856 
0857 static int sja1105_init_general_params(struct sja1105_private *priv)
0858 {
0859     struct sja1105_general_params_entry default_general_params = {
0860         /* Allow dynamic changing of the mirror port */
0861         .mirr_ptacu = true,
0862         .switchid = priv->ds->index,
0863         /* Priority queue for link-local management frames
0864          * (both ingress to and egress from CPU - PTP, STP etc)
0865          */
0866         .hostprio = 7,
0867         .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A,
0868         .mac_flt1    = SJA1105_LINKLOCAL_FILTER_A_MASK,
0869         .incl_srcpt1 = false,
0870         .send_meta1  = false,
0871         .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B,
0872         .mac_flt0    = SJA1105_LINKLOCAL_FILTER_B_MASK,
0873         .incl_srcpt0 = false,
0874         .send_meta0  = false,
0875         /* Default to an invalid value */
0876         .mirr_port = priv->ds->num_ports,
0877         /* No TTEthernet */
0878         .vllupformat = SJA1105_VL_FORMAT_PSFP,
0879         .vlmarker = 0,
0880         .vlmask = 0,
0881         /* Only update correctionField for 1-step PTP (L2 transport) */
0882         .ignore2stf = 0,
0883         /* Forcefully disable VLAN filtering by telling
0884          * the switch that VLAN has a different EtherType.
0885          */
0886         .tpid = ETH_P_SJA1105,
0887         .tpid2 = ETH_P_SJA1105,
0888         /* Enable the TTEthernet engine on SJA1110 */
0889         .tte_en = true,
0890         /* Set up the EtherType for control packets on SJA1110 */
0891         .header_type = ETH_P_SJA1110,
0892     };
0893     struct sja1105_general_params_entry *general_params;
0894     struct sja1105_table *table;
0895     int rc;
0896 
0897     rc = sja1105_init_topology(priv, &default_general_params);
0898     if (rc)
0899         return rc;
0900 
0901     table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
0902 
0903     if (table->entry_count) {
0904         kfree(table->entries);
0905         table->entry_count = 0;
0906     }
0907 
0908     table->entries = kcalloc(table->ops->max_entry_count,
0909                  table->ops->unpacked_entry_size, GFP_KERNEL);
0910     if (!table->entries)
0911         return -ENOMEM;
0912 
0913     table->entry_count = table->ops->max_entry_count;
0914 
0915     general_params = table->entries;
0916 
0917     /* This table only has a single entry */
0918     general_params[0] = default_general_params;
0919 
0920     sja1110_select_tdmaconfigidx(priv);
0921 
0922     return 0;
0923 }
0924 
0925 static int sja1105_init_avb_params(struct sja1105_private *priv)
0926 {
0927     struct sja1105_avb_params_entry *avb;
0928     struct sja1105_table *table;
0929 
0930     table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS];
0931 
0932     /* Discard previous AVB Parameters Table */
0933     if (table->entry_count) {
0934         kfree(table->entries);
0935         table->entry_count = 0;
0936     }
0937 
0938     table->entries = kcalloc(table->ops->max_entry_count,
0939                  table->ops->unpacked_entry_size, GFP_KERNEL);
0940     if (!table->entries)
0941         return -ENOMEM;
0942 
0943     table->entry_count = table->ops->max_entry_count;
0944 
0945     avb = table->entries;
0946 
0947     /* Configure the MAC addresses for meta frames */
0948     avb->destmeta = SJA1105_META_DMAC;
0949     avb->srcmeta  = SJA1105_META_SMAC;
0950     /* On P/Q/R/S, configure the direction of the PTP_CLK pin as input by
0951      * default. This is because there might be boards with a hardware
0952      * layout where enabling the pin as output might cause an electrical
0953      * clash. On E/T the pin is always an output, which the board designers
0954      * probably already knew, so even if there are going to be electrical
0955      * issues, there's nothing we can do.
0956      */
0957     avb->cas_master = false;
0958 
0959     return 0;
0960 }
0961 
0962 /* The L2 policing table is 2-stage. The table is looked up for each frame
0963  * according to the ingress port, whether it was broadcast or not, and the
0964  * classified traffic class (given by VLAN PCP). This portion of the lookup is
0965  * fixed, and gives access to the SHARINDX, an indirection register pointing
0966  * within the policing table itself, which is used to resolve the policer that
0967  * will be used for this frame.
0968  *
0969  *  Stage 1                              Stage 2
0970  * +------------+--------+              +---------------------------------+
0971  * |Port 0 TC 0 |SHARINDX|              | Policer 0: Rate, Burst, MTU     |
0972  * +------------+--------+              +---------------------------------+
0973  * |Port 0 TC 1 |SHARINDX|              | Policer 1: Rate, Burst, MTU     |
0974  * +------------+--------+              +---------------------------------+
0975  *    ...                               | Policer 2: Rate, Burst, MTU     |
0976  * +------------+--------+              +---------------------------------+
0977  * |Port 0 TC 7 |SHARINDX|              | Policer 3: Rate, Burst, MTU     |
0978  * +------------+--------+              +---------------------------------+
0979  * |Port 1 TC 0 |SHARINDX|              | Policer 4: Rate, Burst, MTU     |
0980  * +------------+--------+              +---------------------------------+
0981  *    ...                               | Policer 5: Rate, Burst, MTU     |
0982  * +------------+--------+              +---------------------------------+
0983  * |Port 1 TC 7 |SHARINDX|              | Policer 6: Rate, Burst, MTU     |
0984  * +------------+--------+              +---------------------------------+
0985  *    ...                               | Policer 7: Rate, Burst, MTU     |
0986  * +------------+--------+              +---------------------------------+
0987  * |Port 4 TC 7 |SHARINDX|                 ...
0988  * +------------+--------+
0989  * |Port 0 BCAST|SHARINDX|                 ...
0990  * +------------+--------+
0991  * |Port 1 BCAST|SHARINDX|                 ...
0992  * +------------+--------+
0993  *    ...                                  ...
0994  * +------------+--------+              +---------------------------------+
0995  * |Port 4 BCAST|SHARINDX|              | Policer 44: Rate, Burst, MTU    |
0996  * +------------+--------+              +---------------------------------+
0997  *
0998  * In this driver, we shall use policers 0-4 as statically alocated port
0999  * (matchall) policers. So we need to make the SHARINDX for all lookups
1000  * corresponding to this ingress port (8 VLAN PCP lookups and 1 broadcast
1001  * lookup) equal.
1002  * The remaining policers (40) shall be dynamically allocated for flower
1003  * policers, where the key is either vlan_prio or dst_mac ff:ff:ff:ff:ff:ff.
1004  */
1005 #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
1006 
1007 static int sja1105_init_l2_policing(struct sja1105_private *priv)
1008 {
1009     struct sja1105_l2_policing_entry *policing;
1010     struct dsa_switch *ds = priv->ds;
1011     struct sja1105_table *table;
1012     int port, tc;
1013 
1014     table = &priv->static_config.tables[BLK_IDX_L2_POLICING];
1015 
1016     /* Discard previous L2 Policing Table */
1017     if (table->entry_count) {
1018         kfree(table->entries);
1019         table->entry_count = 0;
1020     }
1021 
1022     table->entries = kcalloc(table->ops->max_entry_count,
1023                  table->ops->unpacked_entry_size, GFP_KERNEL);
1024     if (!table->entries)
1025         return -ENOMEM;
1026 
1027     table->entry_count = table->ops->max_entry_count;
1028 
1029     policing = table->entries;
1030 
1031     /* Setup shared indices for the matchall policers */
1032     for (port = 0; port < ds->num_ports; port++) {
1033         int mcast = (ds->num_ports * (SJA1105_NUM_TC + 1)) + port;
1034         int bcast = (ds->num_ports * SJA1105_NUM_TC) + port;
1035 
1036         for (tc = 0; tc < SJA1105_NUM_TC; tc++)
1037             policing[port * SJA1105_NUM_TC + tc].sharindx = port;
1038 
1039         policing[bcast].sharindx = port;
1040         /* Only SJA1110 has multicast policers */
1041         if (mcast <= table->ops->max_entry_count)
1042             policing[mcast].sharindx = port;
1043     }
1044 
1045     /* Setup the matchall policer parameters */
1046     for (port = 0; port < ds->num_ports; port++) {
1047         int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN;
1048 
1049         if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
1050             mtu += VLAN_HLEN;
1051 
1052         policing[port].smax = 65535; /* Burst size in bytes */
1053         policing[port].rate = SJA1105_RATE_MBPS(1000);
1054         policing[port].maxlen = mtu;
1055         policing[port].partition = 0;
1056     }
1057 
1058     return 0;
1059 }
1060 
1061 static int sja1105_static_config_load(struct sja1105_private *priv)
1062 {
1063     int rc;
1064 
1065     sja1105_static_config_free(&priv->static_config);
1066     rc = sja1105_static_config_init(&priv->static_config,
1067                     priv->info->static_ops,
1068                     priv->info->device_id);
1069     if (rc)
1070         return rc;
1071 
1072     /* Build static configuration */
1073     rc = sja1105_init_mac_settings(priv);
1074     if (rc < 0)
1075         return rc;
1076     rc = sja1105_init_mii_settings(priv);
1077     if (rc < 0)
1078         return rc;
1079     rc = sja1105_init_static_fdb(priv);
1080     if (rc < 0)
1081         return rc;
1082     rc = sja1105_init_static_vlan(priv);
1083     if (rc < 0)
1084         return rc;
1085     rc = sja1105_init_l2_lookup_params(priv);
1086     if (rc < 0)
1087         return rc;
1088     rc = sja1105_init_l2_forwarding(priv);
1089     if (rc < 0)
1090         return rc;
1091     rc = sja1105_init_l2_forwarding_params(priv);
1092     if (rc < 0)
1093         return rc;
1094     rc = sja1105_init_l2_policing(priv);
1095     if (rc < 0)
1096         return rc;
1097     rc = sja1105_init_general_params(priv);
1098     if (rc < 0)
1099         return rc;
1100     rc = sja1105_init_avb_params(priv);
1101     if (rc < 0)
1102         return rc;
1103     rc = sja1110_init_pcp_remapping(priv);
1104     if (rc < 0)
1105         return rc;
1106 
1107     /* Send initial configuration to hardware via SPI */
1108     return sja1105_static_config_upload(priv);
1109 }
1110 
1111 /* This is the "new way" for a MAC driver to configure its RGMII delay lines,
1112  * based on the explicit "rx-internal-delay-ps" and "tx-internal-delay-ps"
1113  * properties. It has the advantage of working with fixed links and with PHYs
1114  * that apply RGMII delays too, and the MAC driver needs not perform any
1115  * special checks.
1116  *
1117  * Previously we were acting upon the "phy-mode" property when we were
1118  * operating in fixed-link, basically acting as a PHY, but with a reversed
1119  * interpretation: PHY_INTERFACE_MODE_RGMII_TXID means that the MAC should
1120  * behave as if it is connected to a PHY which has applied RGMII delays in the
1121  * TX direction. So if anything, RX delays should have been added by the MAC,
1122  * but we were adding TX delays.
1123  *
1124  * If the "{rx,tx}-internal-delay-ps" properties are not specified, we fall
1125  * back to the legacy behavior and apply delays on fixed-link ports based on
1126  * the reverse interpretation of the phy-mode. This is a deviation from the
1127  * expected default behavior which is to simply apply no delays. To achieve
1128  * that behavior with the new bindings, it is mandatory to specify
1129  * "{rx,tx}-internal-delay-ps" with a value of 0.
1130  */
1131 static int sja1105_parse_rgmii_delays(struct sja1105_private *priv, int port,
1132                       struct device_node *port_dn)
1133 {
1134     phy_interface_t phy_mode = priv->phy_mode[port];
1135     struct device *dev = &priv->spidev->dev;
1136     int rx_delay = -1, tx_delay = -1;
1137 
1138     if (!phy_interface_mode_is_rgmii(phy_mode))
1139         return 0;
1140 
1141     of_property_read_u32(port_dn, "rx-internal-delay-ps", &rx_delay);
1142     of_property_read_u32(port_dn, "tx-internal-delay-ps", &tx_delay);
1143 
1144     if (rx_delay == -1 && tx_delay == -1 && priv->fixed_link[port]) {
1145         dev_warn(dev,
1146              "Port %d interpreting RGMII delay settings based on \"phy-mode\" property, "
1147              "please update device tree to specify \"rx-internal-delay-ps\" and "
1148              "\"tx-internal-delay-ps\"",
1149              port);
1150 
1151         if (phy_mode == PHY_INTERFACE_MODE_RGMII_RXID ||
1152             phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
1153             rx_delay = 2000;
1154 
1155         if (phy_mode == PHY_INTERFACE_MODE_RGMII_TXID ||
1156             phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
1157             tx_delay = 2000;
1158     }
1159 
1160     if (rx_delay < 0)
1161         rx_delay = 0;
1162     if (tx_delay < 0)
1163         tx_delay = 0;
1164 
1165     if ((rx_delay || tx_delay) && !priv->info->setup_rgmii_delay) {
1166         dev_err(dev, "Chip cannot apply RGMII delays\n");
1167         return -EINVAL;
1168     }
1169 
1170     if ((rx_delay && rx_delay < SJA1105_RGMII_DELAY_MIN_PS) ||
1171         (tx_delay && tx_delay < SJA1105_RGMII_DELAY_MIN_PS) ||
1172         (rx_delay > SJA1105_RGMII_DELAY_MAX_PS) ||
1173         (tx_delay > SJA1105_RGMII_DELAY_MAX_PS)) {
1174         dev_err(dev,
1175             "port %d RGMII delay values out of range, must be between %d and %d ps\n",
1176             port, SJA1105_RGMII_DELAY_MIN_PS, SJA1105_RGMII_DELAY_MAX_PS);
1177         return -ERANGE;
1178     }
1179 
1180     priv->rgmii_rx_delay_ps[port] = rx_delay;
1181     priv->rgmii_tx_delay_ps[port] = tx_delay;
1182 
1183     return 0;
1184 }
1185 
1186 static int sja1105_parse_ports_node(struct sja1105_private *priv,
1187                     struct device_node *ports_node)
1188 {
1189     struct device *dev = &priv->spidev->dev;
1190     struct device_node *child;
1191 
1192     for_each_available_child_of_node(ports_node, child) {
1193         struct device_node *phy_node;
1194         phy_interface_t phy_mode;
1195         u32 index;
1196         int err;
1197 
1198         /* Get switch port number from DT */
1199         if (of_property_read_u32(child, "reg", &index) < 0) {
1200             dev_err(dev, "Port number not defined in device tree "
1201                 "(property \"reg\")\n");
1202             of_node_put(child);
1203             return -ENODEV;
1204         }
1205 
1206         /* Get PHY mode from DT */
1207         err = of_get_phy_mode(child, &phy_mode);
1208         if (err) {
1209             dev_err(dev, "Failed to read phy-mode or "
1210                 "phy-interface-type property for port %d\n",
1211                 index);
1212             of_node_put(child);
1213             return -ENODEV;
1214         }
1215 
1216         phy_node = of_parse_phandle(child, "phy-handle", 0);
1217         if (!phy_node) {
1218             if (!of_phy_is_fixed_link(child)) {
1219                 dev_err(dev, "phy-handle or fixed-link "
1220                     "properties missing!\n");
1221                 of_node_put(child);
1222                 return -ENODEV;
1223             }
1224             /* phy-handle is missing, but fixed-link isn't.
1225              * So it's a fixed link. Default to PHY role.
1226              */
1227             priv->fixed_link[index] = true;
1228         } else {
1229             of_node_put(phy_node);
1230         }
1231 
1232         priv->phy_mode[index] = phy_mode;
1233 
1234         err = sja1105_parse_rgmii_delays(priv, index, child);
1235         if (err) {
1236             of_node_put(child);
1237             return err;
1238         }
1239     }
1240 
1241     return 0;
1242 }
1243 
1244 static int sja1105_parse_dt(struct sja1105_private *priv)
1245 {
1246     struct device *dev = &priv->spidev->dev;
1247     struct device_node *switch_node = dev->of_node;
1248     struct device_node *ports_node;
1249     int rc;
1250 
1251     ports_node = of_get_child_by_name(switch_node, "ports");
1252     if (!ports_node)
1253         ports_node = of_get_child_by_name(switch_node, "ethernet-ports");
1254     if (!ports_node) {
1255         dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
1256         return -ENODEV;
1257     }
1258 
1259     rc = sja1105_parse_ports_node(priv, ports_node);
1260     of_node_put(ports_node);
1261 
1262     return rc;
1263 }
1264 
1265 /* Convert link speed from SJA1105 to ethtool encoding */
1266 static int sja1105_port_speed_to_ethtool(struct sja1105_private *priv,
1267                      u64 speed)
1268 {
1269     if (speed == priv->info->port_speed[SJA1105_SPEED_10MBPS])
1270         return SPEED_10;
1271     if (speed == priv->info->port_speed[SJA1105_SPEED_100MBPS])
1272         return SPEED_100;
1273     if (speed == priv->info->port_speed[SJA1105_SPEED_1000MBPS])
1274         return SPEED_1000;
1275     if (speed == priv->info->port_speed[SJA1105_SPEED_2500MBPS])
1276         return SPEED_2500;
1277     return SPEED_UNKNOWN;
1278 }
1279 
1280 /* Set link speed in the MAC configuration for a specific port. */
1281 static int sja1105_adjust_port_config(struct sja1105_private *priv, int port,
1282                       int speed_mbps)
1283 {
1284     struct sja1105_mac_config_entry *mac;
1285     struct device *dev = priv->ds->dev;
1286     u64 speed;
1287     int rc;
1288 
1289     /* On P/Q/R/S, one can read from the device via the MAC reconfiguration
1290      * tables. On E/T, MAC reconfig tables are not readable, only writable.
1291      * We have to *know* what the MAC looks like.  For the sake of keeping
1292      * the code common, we'll use the static configuration tables as a
1293      * reasonable approximation for both E/T and P/Q/R/S.
1294      */
1295     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1296 
1297     switch (speed_mbps) {
1298     case SPEED_UNKNOWN:
1299         /* PHYLINK called sja1105_mac_config() to inform us about
1300          * the state->interface, but AN has not completed and the
1301          * speed is not yet valid. UM10944.pdf says that setting
1302          * SJA1105_SPEED_AUTO at runtime disables the port, so that is
1303          * ok for power consumption in case AN will never complete -
1304          * otherwise PHYLINK should come back with a new update.
1305          */
1306         speed = priv->info->port_speed[SJA1105_SPEED_AUTO];
1307         break;
1308     case SPEED_10:
1309         speed = priv->info->port_speed[SJA1105_SPEED_10MBPS];
1310         break;
1311     case SPEED_100:
1312         speed = priv->info->port_speed[SJA1105_SPEED_100MBPS];
1313         break;
1314     case SPEED_1000:
1315         speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS];
1316         break;
1317     case SPEED_2500:
1318         speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS];
1319         break;
1320     default:
1321         dev_err(dev, "Invalid speed %iMbps\n", speed_mbps);
1322         return -EINVAL;
1323     }
1324 
1325     /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration
1326      * table, since this will be used for the clocking setup, and we no
1327      * longer need to store it in the static config (already told hardware
1328      * we want auto during upload phase).
1329      * Actually for the SGMII port, the MAC is fixed at 1 Gbps and
1330      * we need to configure the PCS only (if even that).
1331      */
1332     if (priv->phy_mode[port] == PHY_INTERFACE_MODE_SGMII)
1333         mac[port].speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS];
1334     else if (priv->phy_mode[port] == PHY_INTERFACE_MODE_2500BASEX)
1335         mac[port].speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS];
1336     else
1337         mac[port].speed = speed;
1338 
1339     /* Write to the dynamic reconfiguration tables */
1340     rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1341                       &mac[port], true);
1342     if (rc < 0) {
1343         dev_err(dev, "Failed to write MAC config: %d\n", rc);
1344         return rc;
1345     }
1346 
1347     /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at
1348      * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and
1349      * RMII no change of the clock setup is required. Actually, changing
1350      * the clock setup does interrupt the clock signal for a certain time
1351      * which causes trouble for all PHYs relying on this signal.
1352      */
1353     if (!phy_interface_mode_is_rgmii(priv->phy_mode[port]))
1354         return 0;
1355 
1356     return sja1105_clocking_setup_port(priv, port);
1357 }
1358 
1359 static struct phylink_pcs *
1360 sja1105_mac_select_pcs(struct dsa_switch *ds, int port, phy_interface_t iface)
1361 {
1362     struct sja1105_private *priv = ds->priv;
1363     struct dw_xpcs *xpcs = priv->xpcs[port];
1364 
1365     if (xpcs)
1366         return &xpcs->pcs;
1367 
1368     return NULL;
1369 }
1370 
1371 static void sja1105_mac_link_down(struct dsa_switch *ds, int port,
1372                   unsigned int mode,
1373                   phy_interface_t interface)
1374 {
1375     sja1105_inhibit_tx(ds->priv, BIT(port), true);
1376 }
1377 
1378 static void sja1105_mac_link_up(struct dsa_switch *ds, int port,
1379                 unsigned int mode,
1380                 phy_interface_t interface,
1381                 struct phy_device *phydev,
1382                 int speed, int duplex,
1383                 bool tx_pause, bool rx_pause)
1384 {
1385     struct sja1105_private *priv = ds->priv;
1386 
1387     sja1105_adjust_port_config(priv, port, speed);
1388 
1389     sja1105_inhibit_tx(priv, BIT(port), false);
1390 }
1391 
1392 static void sja1105_phylink_get_caps(struct dsa_switch *ds, int port,
1393                      struct phylink_config *config)
1394 {
1395     struct sja1105_private *priv = ds->priv;
1396     struct sja1105_xmii_params_entry *mii;
1397     phy_interface_t phy_mode;
1398 
1399     /* This driver does not make use of the speed, duplex, pause or the
1400      * advertisement in its mac_config, so it is safe to mark this driver
1401      * as non-legacy.
1402      */
1403     config->legacy_pre_march2020 = false;
1404 
1405     phy_mode = priv->phy_mode[port];
1406     if (phy_mode == PHY_INTERFACE_MODE_SGMII ||
1407         phy_mode == PHY_INTERFACE_MODE_2500BASEX) {
1408         /* Changing the PHY mode on SERDES ports is possible and makes
1409          * sense, because that is done through the XPCS. We allow
1410          * changes between SGMII and 2500base-X.
1411          */
1412         if (priv->info->supports_sgmii[port])
1413             __set_bit(PHY_INTERFACE_MODE_SGMII,
1414                   config->supported_interfaces);
1415 
1416         if (priv->info->supports_2500basex[port])
1417             __set_bit(PHY_INTERFACE_MODE_2500BASEX,
1418                   config->supported_interfaces);
1419     } else {
1420         /* The SJA1105 MAC programming model is through the static
1421          * config (the xMII Mode table cannot be dynamically
1422          * reconfigured), and we have to program that early.
1423          */
1424         __set_bit(phy_mode, config->supported_interfaces);
1425     }
1426 
1427     /* The MAC does not support pause frames, and also doesn't
1428      * support half-duplex traffic modes.
1429      */
1430     config->mac_capabilities = MAC_10FD | MAC_100FD;
1431 
1432     mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
1433     if (mii->xmii_mode[port] == XMII_MODE_RGMII ||
1434         mii->xmii_mode[port] == XMII_MODE_SGMII)
1435         config->mac_capabilities |= MAC_1000FD;
1436 
1437     if (priv->info->supports_2500basex[port])
1438         config->mac_capabilities |= MAC_2500FD;
1439 }
1440 
1441 static int
1442 sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port,
1443                   const struct sja1105_l2_lookup_entry *requested)
1444 {
1445     struct sja1105_l2_lookup_entry *l2_lookup;
1446     struct sja1105_table *table;
1447     int i;
1448 
1449     table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1450     l2_lookup = table->entries;
1451 
1452     for (i = 0; i < table->entry_count; i++)
1453         if (l2_lookup[i].macaddr == requested->macaddr &&
1454             l2_lookup[i].vlanid == requested->vlanid &&
1455             l2_lookup[i].destports & BIT(port))
1456             return i;
1457 
1458     return -1;
1459 }
1460 
1461 /* We want FDB entries added statically through the bridge command to persist
1462  * across switch resets, which are a common thing during normal SJA1105
1463  * operation. So we have to back them up in the static configuration tables
1464  * and hence apply them on next static config upload... yay!
1465  */
1466 static int
1467 sja1105_static_fdb_change(struct sja1105_private *priv, int port,
1468               const struct sja1105_l2_lookup_entry *requested,
1469               bool keep)
1470 {
1471     struct sja1105_l2_lookup_entry *l2_lookup;
1472     struct sja1105_table *table;
1473     int rc, match;
1474 
1475     table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1476 
1477     match = sja1105_find_static_fdb_entry(priv, port, requested);
1478     if (match < 0) {
1479         /* Can't delete a missing entry. */
1480         if (!keep)
1481             return 0;
1482 
1483         /* No match => new entry */
1484         rc = sja1105_table_resize(table, table->entry_count + 1);
1485         if (rc)
1486             return rc;
1487 
1488         match = table->entry_count - 1;
1489     }
1490 
1491     /* Assign pointer after the resize (it may be new memory) */
1492     l2_lookup = table->entries;
1493 
1494     /* We have a match.
1495      * If the job was to add this FDB entry, it's already done (mostly
1496      * anyway, since the port forwarding mask may have changed, case in
1497      * which we update it).
1498      * Otherwise we have to delete it.
1499      */
1500     if (keep) {
1501         l2_lookup[match] = *requested;
1502         return 0;
1503     }
1504 
1505     /* To remove, the strategy is to overwrite the element with
1506      * the last one, and then reduce the array size by 1
1507      */
1508     l2_lookup[match] = l2_lookup[table->entry_count - 1];
1509     return sja1105_table_resize(table, table->entry_count - 1);
1510 }
1511 
1512 /* First-generation switches have a 4-way set associative TCAM that
1513  * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of
1514  * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin).
1515  * For the placement of a newly learnt FDB entry, the switch selects the bin
1516  * based on a hash function, and the way within that bin incrementally.
1517  */
1518 static int sja1105et_fdb_index(int bin, int way)
1519 {
1520     return bin * SJA1105ET_FDB_BIN_SIZE + way;
1521 }
1522 
1523 static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin,
1524                      const u8 *addr, u16 vid,
1525                      struct sja1105_l2_lookup_entry *match,
1526                      int *last_unused)
1527 {
1528     int way;
1529 
1530     for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) {
1531         struct sja1105_l2_lookup_entry l2_lookup = {0};
1532         int index = sja1105et_fdb_index(bin, way);
1533 
1534         /* Skip unused entries, optionally marking them
1535          * into the return value
1536          */
1537         if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1538                         index, &l2_lookup)) {
1539             if (last_unused)
1540                 *last_unused = way;
1541             continue;
1542         }
1543 
1544         if (l2_lookup.macaddr == ether_addr_to_u64(addr) &&
1545             l2_lookup.vlanid == vid) {
1546             if (match)
1547                 *match = l2_lookup;
1548             return way;
1549         }
1550     }
1551     /* Return an invalid entry index if not found */
1552     return -1;
1553 }
1554 
1555 int sja1105et_fdb_add(struct dsa_switch *ds, int port,
1556               const unsigned char *addr, u16 vid)
1557 {
1558     struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp;
1559     struct sja1105_private *priv = ds->priv;
1560     struct device *dev = ds->dev;
1561     int last_unused = -1;
1562     int start, end, i;
1563     int bin, way, rc;
1564 
1565     bin = sja1105et_fdb_hash(priv, addr, vid);
1566 
1567     way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1568                         &l2_lookup, &last_unused);
1569     if (way >= 0) {
1570         /* We have an FDB entry. Is our port in the destination
1571          * mask? If yes, we need to do nothing. If not, we need
1572          * to rewrite the entry by adding this port to it.
1573          */
1574         if ((l2_lookup.destports & BIT(port)) && l2_lookup.lockeds)
1575             return 0;
1576         l2_lookup.destports |= BIT(port);
1577     } else {
1578         int index = sja1105et_fdb_index(bin, way);
1579 
1580         /* We don't have an FDB entry. We construct a new one and
1581          * try to find a place for it within the FDB table.
1582          */
1583         l2_lookup.macaddr = ether_addr_to_u64(addr);
1584         l2_lookup.destports = BIT(port);
1585         l2_lookup.vlanid = vid;
1586 
1587         if (last_unused >= 0) {
1588             way = last_unused;
1589         } else {
1590             /* Bin is full, need to evict somebody.
1591              * Choose victim at random. If you get these messages
1592              * often, you may need to consider changing the
1593              * distribution function:
1594              * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly
1595              */
1596             get_random_bytes(&way, sizeof(u8));
1597             way %= SJA1105ET_FDB_BIN_SIZE;
1598             dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n",
1599                  bin, addr, way);
1600             /* Evict entry */
1601             sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1602                              index, NULL, false);
1603         }
1604     }
1605     l2_lookup.lockeds = true;
1606     l2_lookup.index = sja1105et_fdb_index(bin, way);
1607 
1608     rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1609                       l2_lookup.index, &l2_lookup,
1610                       true);
1611     if (rc < 0)
1612         return rc;
1613 
1614     /* Invalidate a dynamically learned entry if that exists */
1615     start = sja1105et_fdb_index(bin, 0);
1616     end = sja1105et_fdb_index(bin, way);
1617 
1618     for (i = start; i < end; i++) {
1619         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1620                          i, &tmp);
1621         if (rc == -ENOENT)
1622             continue;
1623         if (rc)
1624             return rc;
1625 
1626         if (tmp.macaddr != ether_addr_to_u64(addr) || tmp.vlanid != vid)
1627             continue;
1628 
1629         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1630                           i, NULL, false);
1631         if (rc)
1632             return rc;
1633 
1634         break;
1635     }
1636 
1637     return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1638 }
1639 
1640 int sja1105et_fdb_del(struct dsa_switch *ds, int port,
1641               const unsigned char *addr, u16 vid)
1642 {
1643     struct sja1105_l2_lookup_entry l2_lookup = {0};
1644     struct sja1105_private *priv = ds->priv;
1645     int index, bin, way, rc;
1646     bool keep;
1647 
1648     bin = sja1105et_fdb_hash(priv, addr, vid);
1649     way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1650                         &l2_lookup, NULL);
1651     if (way < 0)
1652         return 0;
1653     index = sja1105et_fdb_index(bin, way);
1654 
1655     /* We have an FDB entry. Is our port in the destination mask? If yes,
1656      * we need to remove it. If the resulting port mask becomes empty, we
1657      * need to completely evict the FDB entry.
1658      * Otherwise we just write it back.
1659      */
1660     l2_lookup.destports &= ~BIT(port);
1661 
1662     if (l2_lookup.destports)
1663         keep = true;
1664     else
1665         keep = false;
1666 
1667     rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1668                       index, &l2_lookup, keep);
1669     if (rc < 0)
1670         return rc;
1671 
1672     return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1673 }
1674 
1675 int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
1676             const unsigned char *addr, u16 vid)
1677 {
1678     struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp;
1679     struct sja1105_private *priv = ds->priv;
1680     int rc, i;
1681 
1682     /* Search for an existing entry in the FDB table */
1683     l2_lookup.macaddr = ether_addr_to_u64(addr);
1684     l2_lookup.vlanid = vid;
1685     l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1686     l2_lookup.mask_vlanid = VLAN_VID_MASK;
1687     l2_lookup.destports = BIT(port);
1688 
1689     tmp = l2_lookup;
1690 
1691     rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1692                      SJA1105_SEARCH, &tmp);
1693     if (rc == 0 && tmp.index != SJA1105_MAX_L2_LOOKUP_COUNT - 1) {
1694         /* Found a static entry and this port is already in the entry's
1695          * port mask => job done
1696          */
1697         if ((tmp.destports & BIT(port)) && tmp.lockeds)
1698             return 0;
1699 
1700         l2_lookup = tmp;
1701 
1702         /* l2_lookup.index is populated by the switch in case it
1703          * found something.
1704          */
1705         l2_lookup.destports |= BIT(port);
1706         goto skip_finding_an_index;
1707     }
1708 
1709     /* Not found, so try to find an unused spot in the FDB.
1710      * This is slightly inefficient because the strategy is knock-knock at
1711      * every possible position from 0 to 1023.
1712      */
1713     for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1714         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1715                          i, NULL);
1716         if (rc < 0)
1717             break;
1718     }
1719     if (i == SJA1105_MAX_L2_LOOKUP_COUNT) {
1720         dev_err(ds->dev, "FDB is full, cannot add entry.\n");
1721         return -EINVAL;
1722     }
1723     l2_lookup.index = i;
1724 
1725 skip_finding_an_index:
1726     l2_lookup.lockeds = true;
1727 
1728     rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1729                       l2_lookup.index, &l2_lookup,
1730                       true);
1731     if (rc < 0)
1732         return rc;
1733 
1734     /* The switch learns dynamic entries and looks up the FDB left to
1735      * right. It is possible that our addition was concurrent with the
1736      * dynamic learning of the same address, so now that the static entry
1737      * has been installed, we are certain that address learning for this
1738      * particular address has been turned off, so the dynamic entry either
1739      * is in the FDB at an index smaller than the static one, or isn't (it
1740      * can also be at a larger index, but in that case it is inactive
1741      * because the static FDB entry will match first, and the dynamic one
1742      * will eventually age out). Search for a dynamically learned address
1743      * prior to our static one and invalidate it.
1744      */
1745     tmp = l2_lookup;
1746 
1747     rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1748                      SJA1105_SEARCH, &tmp);
1749     if (rc < 0) {
1750         dev_err(ds->dev,
1751             "port %d failed to read back entry for %pM vid %d: %pe\n",
1752             port, addr, vid, ERR_PTR(rc));
1753         return rc;
1754     }
1755 
1756     if (tmp.index < l2_lookup.index) {
1757         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1758                           tmp.index, NULL, false);
1759         if (rc < 0)
1760             return rc;
1761     }
1762 
1763     return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1764 }
1765 
1766 int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
1767             const unsigned char *addr, u16 vid)
1768 {
1769     struct sja1105_l2_lookup_entry l2_lookup = {0};
1770     struct sja1105_private *priv = ds->priv;
1771     bool keep;
1772     int rc;
1773 
1774     l2_lookup.macaddr = ether_addr_to_u64(addr);
1775     l2_lookup.vlanid = vid;
1776     l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1777     l2_lookup.mask_vlanid = VLAN_VID_MASK;
1778     l2_lookup.destports = BIT(port);
1779 
1780     rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1781                      SJA1105_SEARCH, &l2_lookup);
1782     if (rc < 0)
1783         return 0;
1784 
1785     l2_lookup.destports &= ~BIT(port);
1786 
1787     /* Decide whether we remove just this port from the FDB entry,
1788      * or if we remove it completely.
1789      */
1790     if (l2_lookup.destports)
1791         keep = true;
1792     else
1793         keep = false;
1794 
1795     rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1796                       l2_lookup.index, &l2_lookup, keep);
1797     if (rc < 0)
1798         return rc;
1799 
1800     return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1801 }
1802 
1803 static int sja1105_fdb_add(struct dsa_switch *ds, int port,
1804                const unsigned char *addr, u16 vid,
1805                struct dsa_db db)
1806 {
1807     struct sja1105_private *priv = ds->priv;
1808 
1809     if (!vid) {
1810         switch (db.type) {
1811         case DSA_DB_PORT:
1812             vid = dsa_tag_8021q_standalone_vid(db.dp);
1813             break;
1814         case DSA_DB_BRIDGE:
1815             vid = dsa_tag_8021q_bridge_vid(db.bridge.num);
1816             break;
1817         default:
1818             return -EOPNOTSUPP;
1819         }
1820     }
1821 
1822     return priv->info->fdb_add_cmd(ds, port, addr, vid);
1823 }
1824 
1825 static int sja1105_fdb_del(struct dsa_switch *ds, int port,
1826                const unsigned char *addr, u16 vid,
1827                struct dsa_db db)
1828 {
1829     struct sja1105_private *priv = ds->priv;
1830 
1831     if (!vid) {
1832         switch (db.type) {
1833         case DSA_DB_PORT:
1834             vid = dsa_tag_8021q_standalone_vid(db.dp);
1835             break;
1836         case DSA_DB_BRIDGE:
1837             vid = dsa_tag_8021q_bridge_vid(db.bridge.num);
1838             break;
1839         default:
1840             return -EOPNOTSUPP;
1841         }
1842     }
1843 
1844     return priv->info->fdb_del_cmd(ds, port, addr, vid);
1845 }
1846 
1847 static int sja1105_fdb_dump(struct dsa_switch *ds, int port,
1848                 dsa_fdb_dump_cb_t *cb, void *data)
1849 {
1850     struct sja1105_private *priv = ds->priv;
1851     struct device *dev = ds->dev;
1852     int i;
1853 
1854     for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1855         struct sja1105_l2_lookup_entry l2_lookup = {0};
1856         u8 macaddr[ETH_ALEN];
1857         int rc;
1858 
1859         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1860                          i, &l2_lookup);
1861         /* No fdb entry at i, not an issue */
1862         if (rc == -ENOENT)
1863             continue;
1864         if (rc) {
1865             dev_err(dev, "Failed to dump FDB: %d\n", rc);
1866             return rc;
1867         }
1868 
1869         /* FDB dump callback is per port. This means we have to
1870          * disregard a valid entry if it's not for this port, even if
1871          * only to revisit it later. This is inefficient because the
1872          * 1024-sized FDB table needs to be traversed 4 times through
1873          * SPI during a 'bridge fdb show' command.
1874          */
1875         if (!(l2_lookup.destports & BIT(port)))
1876             continue;
1877 
1878         /* We need to hide the FDB entry for unknown multicast */
1879         if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST &&
1880             l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST)
1881             continue;
1882 
1883         u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1884 
1885         /* We need to hide the dsa_8021q VLANs from the user. */
1886         if (vid_is_dsa_8021q(l2_lookup.vlanid))
1887             l2_lookup.vlanid = 0;
1888         rc = cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data);
1889         if (rc)
1890             return rc;
1891     }
1892     return 0;
1893 }
1894 
1895 static void sja1105_fast_age(struct dsa_switch *ds, int port)
1896 {
1897     struct dsa_port *dp = dsa_to_port(ds, port);
1898     struct sja1105_private *priv = ds->priv;
1899     struct dsa_db db = {
1900         .type = DSA_DB_BRIDGE,
1901         .bridge = {
1902             .dev = dsa_port_bridge_dev_get(dp),
1903             .num = dsa_port_bridge_num_get(dp),
1904         },
1905     };
1906     int i;
1907 
1908     for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1909         struct sja1105_l2_lookup_entry l2_lookup = {0};
1910         u8 macaddr[ETH_ALEN];
1911         int rc;
1912 
1913         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1914                          i, &l2_lookup);
1915         /* No fdb entry at i, not an issue */
1916         if (rc == -ENOENT)
1917             continue;
1918         if (rc) {
1919             dev_err(ds->dev, "Failed to read FDB: %pe\n",
1920                 ERR_PTR(rc));
1921             return;
1922         }
1923 
1924         if (!(l2_lookup.destports & BIT(port)))
1925             continue;
1926 
1927         /* Don't delete static FDB entries */
1928         if (l2_lookup.lockeds)
1929             continue;
1930 
1931         u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1932 
1933         rc = sja1105_fdb_del(ds, port, macaddr, l2_lookup.vlanid, db);
1934         if (rc) {
1935             dev_err(ds->dev,
1936                 "Failed to delete FDB entry %pM vid %lld: %pe\n",
1937                 macaddr, l2_lookup.vlanid, ERR_PTR(rc));
1938             return;
1939         }
1940     }
1941 }
1942 
1943 static int sja1105_mdb_add(struct dsa_switch *ds, int port,
1944                const struct switchdev_obj_port_mdb *mdb,
1945                struct dsa_db db)
1946 {
1947     return sja1105_fdb_add(ds, port, mdb->addr, mdb->vid, db);
1948 }
1949 
1950 static int sja1105_mdb_del(struct dsa_switch *ds, int port,
1951                const struct switchdev_obj_port_mdb *mdb,
1952                struct dsa_db db)
1953 {
1954     return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid, db);
1955 }
1956 
1957 /* Common function for unicast and broadcast flood configuration.
1958  * Flooding is configured between each {ingress, egress} port pair, and since
1959  * the bridge's semantics are those of "egress flooding", it means we must
1960  * enable flooding towards this port from all ingress ports that are in the
1961  * same forwarding domain.
1962  */
1963 static int sja1105_manage_flood_domains(struct sja1105_private *priv)
1964 {
1965     struct sja1105_l2_forwarding_entry *l2_fwd;
1966     struct dsa_switch *ds = priv->ds;
1967     int from, to, rc;
1968 
1969     l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1970 
1971     for (from = 0; from < ds->num_ports; from++) {
1972         u64 fl_domain = 0, bc_domain = 0;
1973 
1974         for (to = 0; to < priv->ds->num_ports; to++) {
1975             if (!sja1105_can_forward(l2_fwd, from, to))
1976                 continue;
1977 
1978             if (priv->ucast_egress_floods & BIT(to))
1979                 fl_domain |= BIT(to);
1980             if (priv->bcast_egress_floods & BIT(to))
1981                 bc_domain |= BIT(to);
1982         }
1983 
1984         /* Nothing changed, nothing to do */
1985         if (l2_fwd[from].fl_domain == fl_domain &&
1986             l2_fwd[from].bc_domain == bc_domain)
1987             continue;
1988 
1989         l2_fwd[from].fl_domain = fl_domain;
1990         l2_fwd[from].bc_domain = bc_domain;
1991 
1992         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1993                           from, &l2_fwd[from], true);
1994         if (rc < 0)
1995             return rc;
1996     }
1997 
1998     return 0;
1999 }
2000 
2001 static int sja1105_bridge_member(struct dsa_switch *ds, int port,
2002                  struct dsa_bridge bridge, bool member)
2003 {
2004     struct sja1105_l2_forwarding_entry *l2_fwd;
2005     struct sja1105_private *priv = ds->priv;
2006     int i, rc;
2007 
2008     l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
2009 
2010     for (i = 0; i < ds->num_ports; i++) {
2011         /* Add this port to the forwarding matrix of the
2012          * other ports in the same bridge, and viceversa.
2013          */
2014         if (!dsa_is_user_port(ds, i))
2015             continue;
2016         /* For the ports already under the bridge, only one thing needs
2017          * to be done, and that is to add this port to their
2018          * reachability domain. So we can perform the SPI write for
2019          * them immediately. However, for this port itself (the one
2020          * that is new to the bridge), we need to add all other ports
2021          * to its reachability domain. So we do that incrementally in
2022          * this loop, and perform the SPI write only at the end, once
2023          * the domain contains all other bridge ports.
2024          */
2025         if (i == port)
2026             continue;
2027         if (!dsa_port_offloads_bridge(dsa_to_port(ds, i), &bridge))
2028             continue;
2029         sja1105_port_allow_traffic(l2_fwd, i, port, member);
2030         sja1105_port_allow_traffic(l2_fwd, port, i, member);
2031 
2032         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
2033                           i, &l2_fwd[i], true);
2034         if (rc < 0)
2035             return rc;
2036     }
2037 
2038     rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
2039                       port, &l2_fwd[port], true);
2040     if (rc)
2041         return rc;
2042 
2043     rc = sja1105_commit_pvid(ds, port);
2044     if (rc)
2045         return rc;
2046 
2047     return sja1105_manage_flood_domains(priv);
2048 }
2049 
2050 static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port,
2051                      u8 state)
2052 {
2053     struct dsa_port *dp = dsa_to_port(ds, port);
2054     struct sja1105_private *priv = ds->priv;
2055     struct sja1105_mac_config_entry *mac;
2056 
2057     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2058 
2059     switch (state) {
2060     case BR_STATE_DISABLED:
2061     case BR_STATE_BLOCKING:
2062         /* From UM10944 description of DRPDTAG (why put this there?):
2063          * "Management traffic flows to the port regardless of the state
2064          * of the INGRESS flag". So BPDUs are still be allowed to pass.
2065          * At the moment no difference between DISABLED and BLOCKING.
2066          */
2067         mac[port].ingress   = false;
2068         mac[port].egress    = false;
2069         mac[port].dyn_learn = false;
2070         break;
2071     case BR_STATE_LISTENING:
2072         mac[port].ingress   = true;
2073         mac[port].egress    = false;
2074         mac[port].dyn_learn = false;
2075         break;
2076     case BR_STATE_LEARNING:
2077         mac[port].ingress   = true;
2078         mac[port].egress    = false;
2079         mac[port].dyn_learn = dp->learning;
2080         break;
2081     case BR_STATE_FORWARDING:
2082         mac[port].ingress   = true;
2083         mac[port].egress    = true;
2084         mac[port].dyn_learn = dp->learning;
2085         break;
2086     default:
2087         dev_err(ds->dev, "invalid STP state: %d\n", state);
2088         return;
2089     }
2090 
2091     sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
2092                      &mac[port], true);
2093 }
2094 
2095 static int sja1105_bridge_join(struct dsa_switch *ds, int port,
2096                    struct dsa_bridge bridge,
2097                    bool *tx_fwd_offload,
2098                    struct netlink_ext_ack *extack)
2099 {
2100     int rc;
2101 
2102     rc = sja1105_bridge_member(ds, port, bridge, true);
2103     if (rc)
2104         return rc;
2105 
2106     rc = dsa_tag_8021q_bridge_join(ds, port, bridge);
2107     if (rc) {
2108         sja1105_bridge_member(ds, port, bridge, false);
2109         return rc;
2110     }
2111 
2112     *tx_fwd_offload = true;
2113 
2114     return 0;
2115 }
2116 
2117 static void sja1105_bridge_leave(struct dsa_switch *ds, int port,
2118                  struct dsa_bridge bridge)
2119 {
2120     dsa_tag_8021q_bridge_leave(ds, port, bridge);
2121     sja1105_bridge_member(ds, port, bridge, false);
2122 }
2123 
2124 #define BYTES_PER_KBIT (1000LL / 8)
2125 
2126 static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv)
2127 {
2128     int i;
2129 
2130     for (i = 0; i < priv->info->num_cbs_shapers; i++)
2131         if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope)
2132             return i;
2133 
2134     return -1;
2135 }
2136 
2137 static int sja1105_delete_cbs_shaper(struct sja1105_private *priv, int port,
2138                      int prio)
2139 {
2140     int i;
2141 
2142     for (i = 0; i < priv->info->num_cbs_shapers; i++) {
2143         struct sja1105_cbs_entry *cbs = &priv->cbs[i];
2144 
2145         if (cbs->port == port && cbs->prio == prio) {
2146             memset(cbs, 0, sizeof(*cbs));
2147             return sja1105_dynamic_config_write(priv, BLK_IDX_CBS,
2148                                 i, cbs, true);
2149         }
2150     }
2151 
2152     return 0;
2153 }
2154 
2155 static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port,
2156                 struct tc_cbs_qopt_offload *offload)
2157 {
2158     struct sja1105_private *priv = ds->priv;
2159     struct sja1105_cbs_entry *cbs;
2160     int index;
2161 
2162     if (!offload->enable)
2163         return sja1105_delete_cbs_shaper(priv, port, offload->queue);
2164 
2165     index = sja1105_find_unused_cbs_shaper(priv);
2166     if (index < 0)
2167         return -ENOSPC;
2168 
2169     cbs = &priv->cbs[index];
2170     cbs->port = port;
2171     cbs->prio = offload->queue;
2172     /* locredit and sendslope are negative by definition. In hardware,
2173      * positive values must be provided, and the negative sign is implicit.
2174      */
2175     cbs->credit_hi = offload->hicredit;
2176     cbs->credit_lo = abs(offload->locredit);
2177     /* User space is in kbits/sec, hardware in bytes/sec */
2178     cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT;
2179     cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT);
2180     /* Convert the negative values from 64-bit 2's complement
2181      * to 32-bit 2's complement (for the case of 0x80000000 whose
2182      * negative is still negative).
2183      */
2184     cbs->credit_lo &= GENMASK_ULL(31, 0);
2185     cbs->send_slope &= GENMASK_ULL(31, 0);
2186 
2187     return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, index, cbs,
2188                         true);
2189 }
2190 
2191 static int sja1105_reload_cbs(struct sja1105_private *priv)
2192 {
2193     int rc = 0, i;
2194 
2195     /* The credit based shapers are only allocated if
2196      * CONFIG_NET_SCH_CBS is enabled.
2197      */
2198     if (!priv->cbs)
2199         return 0;
2200 
2201     for (i = 0; i < priv->info->num_cbs_shapers; i++) {
2202         struct sja1105_cbs_entry *cbs = &priv->cbs[i];
2203 
2204         if (!cbs->idle_slope && !cbs->send_slope)
2205             continue;
2206 
2207         rc = sja1105_dynamic_config_write(priv, BLK_IDX_CBS, i, cbs,
2208                           true);
2209         if (rc)
2210             break;
2211     }
2212 
2213     return rc;
2214 }
2215 
2216 static const char * const sja1105_reset_reasons[] = {
2217     [SJA1105_VLAN_FILTERING] = "VLAN filtering",
2218     [SJA1105_RX_HWTSTAMPING] = "RX timestamping",
2219     [SJA1105_AGEING_TIME] = "Ageing time",
2220     [SJA1105_SCHEDULING] = "Time-aware scheduling",
2221     [SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing",
2222     [SJA1105_VIRTUAL_LINKS] = "Virtual links",
2223 };
2224 
2225 /* For situations where we need to change a setting at runtime that is only
2226  * available through the static configuration, resetting the switch in order
2227  * to upload the new static config is unavoidable. Back up the settings we
2228  * modify at runtime (currently only MAC) and restore them after uploading,
2229  * such that this operation is relatively seamless.
2230  */
2231 int sja1105_static_config_reload(struct sja1105_private *priv,
2232                  enum sja1105_reset_reason reason)
2233 {
2234     struct ptp_system_timestamp ptp_sts_before;
2235     struct ptp_system_timestamp ptp_sts_after;
2236     int speed_mbps[SJA1105_MAX_NUM_PORTS];
2237     u16 bmcr[SJA1105_MAX_NUM_PORTS] = {0};
2238     struct sja1105_mac_config_entry *mac;
2239     struct dsa_switch *ds = priv->ds;
2240     s64 t1, t2, t3, t4;
2241     s64 t12, t34;
2242     int rc, i;
2243     s64 now;
2244 
2245     mutex_lock(&priv->mgmt_lock);
2246 
2247     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2248 
2249     /* Back up the dynamic link speed changed by sja1105_adjust_port_config
2250      * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the
2251      * switch wants to see in the static config in order to allow us to
2252      * change it through the dynamic interface later.
2253      */
2254     for (i = 0; i < ds->num_ports; i++) {
2255         speed_mbps[i] = sja1105_port_speed_to_ethtool(priv,
2256                                   mac[i].speed);
2257         mac[i].speed = priv->info->port_speed[SJA1105_SPEED_AUTO];
2258 
2259         if (priv->xpcs[i])
2260             bmcr[i] = mdiobus_c45_read(priv->mdio_pcs, i,
2261                            MDIO_MMD_VEND2, MDIO_CTRL1);
2262     }
2263 
2264     /* No PTP operations can run right now */
2265     mutex_lock(&priv->ptp_data.lock);
2266 
2267     rc = __sja1105_ptp_gettimex(ds, &now, &ptp_sts_before);
2268     if (rc < 0) {
2269         mutex_unlock(&priv->ptp_data.lock);
2270         goto out;
2271     }
2272 
2273     /* Reset switch and send updated static configuration */
2274     rc = sja1105_static_config_upload(priv);
2275     if (rc < 0) {
2276         mutex_unlock(&priv->ptp_data.lock);
2277         goto out;
2278     }
2279 
2280     rc = __sja1105_ptp_settime(ds, 0, &ptp_sts_after);
2281     if (rc < 0) {
2282         mutex_unlock(&priv->ptp_data.lock);
2283         goto out;
2284     }
2285 
2286     t1 = timespec64_to_ns(&ptp_sts_before.pre_ts);
2287     t2 = timespec64_to_ns(&ptp_sts_before.post_ts);
2288     t3 = timespec64_to_ns(&ptp_sts_after.pre_ts);
2289     t4 = timespec64_to_ns(&ptp_sts_after.post_ts);
2290     /* Mid point, corresponds to pre-reset PTPCLKVAL */
2291     t12 = t1 + (t2 - t1) / 2;
2292     /* Mid point, corresponds to post-reset PTPCLKVAL, aka 0 */
2293     t34 = t3 + (t4 - t3) / 2;
2294     /* Advance PTPCLKVAL by the time it took since its readout */
2295     now += (t34 - t12);
2296 
2297     __sja1105_ptp_adjtime(ds, now);
2298 
2299     mutex_unlock(&priv->ptp_data.lock);
2300 
2301     dev_info(priv->ds->dev,
2302          "Reset switch and programmed static config. Reason: %s\n",
2303          sja1105_reset_reasons[reason]);
2304 
2305     /* Configure the CGU (PLLs) for MII and RMII PHYs.
2306      * For these interfaces there is no dynamic configuration
2307      * needed, since PLLs have same settings at all speeds.
2308      */
2309     if (priv->info->clocking_setup) {
2310         rc = priv->info->clocking_setup(priv);
2311         if (rc < 0)
2312             goto out;
2313     }
2314 
2315     for (i = 0; i < ds->num_ports; i++) {
2316         struct dw_xpcs *xpcs = priv->xpcs[i];
2317         unsigned int mode;
2318 
2319         rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]);
2320         if (rc < 0)
2321             goto out;
2322 
2323         if (!xpcs)
2324             continue;
2325 
2326         if (bmcr[i] & BMCR_ANENABLE)
2327             mode = MLO_AN_INBAND;
2328         else if (priv->fixed_link[i])
2329             mode = MLO_AN_FIXED;
2330         else
2331             mode = MLO_AN_PHY;
2332 
2333         rc = xpcs_do_config(xpcs, priv->phy_mode[i], mode, NULL);
2334         if (rc < 0)
2335             goto out;
2336 
2337         if (!phylink_autoneg_inband(mode)) {
2338             int speed = SPEED_UNKNOWN;
2339 
2340             if (priv->phy_mode[i] == PHY_INTERFACE_MODE_2500BASEX)
2341                 speed = SPEED_2500;
2342             else if (bmcr[i] & BMCR_SPEED1000)
2343                 speed = SPEED_1000;
2344             else if (bmcr[i] & BMCR_SPEED100)
2345                 speed = SPEED_100;
2346             else
2347                 speed = SPEED_10;
2348 
2349             xpcs_link_up(&xpcs->pcs, mode, priv->phy_mode[i],
2350                      speed, DUPLEX_FULL);
2351         }
2352     }
2353 
2354     rc = sja1105_reload_cbs(priv);
2355     if (rc < 0)
2356         goto out;
2357 out:
2358     mutex_unlock(&priv->mgmt_lock);
2359 
2360     return rc;
2361 }
2362 
2363 static enum dsa_tag_protocol
2364 sja1105_get_tag_protocol(struct dsa_switch *ds, int port,
2365              enum dsa_tag_protocol mp)
2366 {
2367     struct sja1105_private *priv = ds->priv;
2368 
2369     return priv->info->tag_proto;
2370 }
2371 
2372 /* The TPID setting belongs to the General Parameters table,
2373  * which can only be partially reconfigured at runtime (and not the TPID).
2374  * So a switch reset is required.
2375  */
2376 int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled,
2377                struct netlink_ext_ack *extack)
2378 {
2379     struct sja1105_general_params_entry *general_params;
2380     struct sja1105_private *priv = ds->priv;
2381     struct sja1105_table *table;
2382     struct sja1105_rule *rule;
2383     u16 tpid, tpid2;
2384     int rc;
2385 
2386     list_for_each_entry(rule, &priv->flow_block.rules, list) {
2387         if (rule->type == SJA1105_RULE_VL) {
2388             NL_SET_ERR_MSG_MOD(extack,
2389                        "Cannot change VLAN filtering with active VL rules");
2390             return -EBUSY;
2391         }
2392     }
2393 
2394     if (enabled) {
2395         /* Enable VLAN filtering. */
2396         tpid  = ETH_P_8021Q;
2397         tpid2 = ETH_P_8021AD;
2398     } else {
2399         /* Disable VLAN filtering. */
2400         tpid  = ETH_P_SJA1105;
2401         tpid2 = ETH_P_SJA1105;
2402     }
2403 
2404     table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2405     general_params = table->entries;
2406     /* EtherType used to identify inner tagged (C-tag) VLAN traffic */
2407     general_params->tpid = tpid;
2408     /* EtherType used to identify outer tagged (S-tag) VLAN traffic */
2409     general_params->tpid2 = tpid2;
2410     /* When VLAN filtering is on, we need to at least be able to
2411      * decode management traffic through the "backup plan".
2412      */
2413     general_params->incl_srcpt1 = enabled;
2414     general_params->incl_srcpt0 = enabled;
2415 
2416     for (port = 0; port < ds->num_ports; port++) {
2417         if (dsa_is_unused_port(ds, port))
2418             continue;
2419 
2420         rc = sja1105_commit_pvid(ds, port);
2421         if (rc)
2422             return rc;
2423     }
2424 
2425     rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING);
2426     if (rc)
2427         NL_SET_ERR_MSG_MOD(extack, "Failed to change VLAN Ethertype");
2428 
2429     return rc;
2430 }
2431 
2432 static int sja1105_vlan_add(struct sja1105_private *priv, int port, u16 vid,
2433                 u16 flags, bool allowed_ingress)
2434 {
2435     struct sja1105_vlan_lookup_entry *vlan;
2436     struct sja1105_table *table;
2437     int match, rc;
2438 
2439     table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2440 
2441     match = sja1105_is_vlan_configured(priv, vid);
2442     if (match < 0) {
2443         rc = sja1105_table_resize(table, table->entry_count + 1);
2444         if (rc)
2445             return rc;
2446         match = table->entry_count - 1;
2447     }
2448 
2449     /* Assign pointer after the resize (it's new memory) */
2450     vlan = table->entries;
2451 
2452     vlan[match].type_entry = SJA1110_VLAN_D_TAG;
2453     vlan[match].vlanid = vid;
2454     vlan[match].vlan_bc |= BIT(port);
2455 
2456     if (allowed_ingress)
2457         vlan[match].vmemb_port |= BIT(port);
2458     else
2459         vlan[match].vmemb_port &= ~BIT(port);
2460 
2461     if (flags & BRIDGE_VLAN_INFO_UNTAGGED)
2462         vlan[match].tag_port &= ~BIT(port);
2463     else
2464         vlan[match].tag_port |= BIT(port);
2465 
2466     return sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
2467                         &vlan[match], true);
2468 }
2469 
2470 static int sja1105_vlan_del(struct sja1105_private *priv, int port, u16 vid)
2471 {
2472     struct sja1105_vlan_lookup_entry *vlan;
2473     struct sja1105_table *table;
2474     bool keep = true;
2475     int match, rc;
2476 
2477     table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2478 
2479     match = sja1105_is_vlan_configured(priv, vid);
2480     /* Can't delete a missing entry. */
2481     if (match < 0)
2482         return 0;
2483 
2484     /* Assign pointer after the resize (it's new memory) */
2485     vlan = table->entries;
2486 
2487     vlan[match].vlanid = vid;
2488     vlan[match].vlan_bc &= ~BIT(port);
2489     vlan[match].vmemb_port &= ~BIT(port);
2490     /* Also unset tag_port, just so we don't have a confusing bitmap
2491      * (no practical purpose).
2492      */
2493     vlan[match].tag_port &= ~BIT(port);
2494 
2495     /* If there's no port left as member of this VLAN,
2496      * it's time for it to go.
2497      */
2498     if (!vlan[match].vmemb_port)
2499         keep = false;
2500 
2501     rc = sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
2502                       &vlan[match], keep);
2503     if (rc < 0)
2504         return rc;
2505 
2506     if (!keep)
2507         return sja1105_table_delete_entry(table, match);
2508 
2509     return 0;
2510 }
2511 
2512 static int sja1105_bridge_vlan_add(struct dsa_switch *ds, int port,
2513                    const struct switchdev_obj_port_vlan *vlan,
2514                    struct netlink_ext_ack *extack)
2515 {
2516     struct sja1105_private *priv = ds->priv;
2517     u16 flags = vlan->flags;
2518     int rc;
2519 
2520     /* Be sure to deny alterations to the configuration done by tag_8021q.
2521      */
2522     if (vid_is_dsa_8021q(vlan->vid)) {
2523         NL_SET_ERR_MSG_MOD(extack,
2524                    "Range 3072-4095 reserved for dsa_8021q operation");
2525         return -EBUSY;
2526     }
2527 
2528     /* Always install bridge VLANs as egress-tagged on CPU and DSA ports */
2529     if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
2530         flags = 0;
2531 
2532     rc = sja1105_vlan_add(priv, port, vlan->vid, flags, true);
2533     if (rc)
2534         return rc;
2535 
2536     if (vlan->flags & BRIDGE_VLAN_INFO_PVID)
2537         priv->bridge_pvid[port] = vlan->vid;
2538 
2539     return sja1105_commit_pvid(ds, port);
2540 }
2541 
2542 static int sja1105_bridge_vlan_del(struct dsa_switch *ds, int port,
2543                    const struct switchdev_obj_port_vlan *vlan)
2544 {
2545     struct sja1105_private *priv = ds->priv;
2546     int rc;
2547 
2548     rc = sja1105_vlan_del(priv, port, vlan->vid);
2549     if (rc)
2550         return rc;
2551 
2552     /* In case the pvid was deleted, make sure that untagged packets will
2553      * be dropped.
2554      */
2555     return sja1105_commit_pvid(ds, port);
2556 }
2557 
2558 static int sja1105_dsa_8021q_vlan_add(struct dsa_switch *ds, int port, u16 vid,
2559                       u16 flags)
2560 {
2561     struct sja1105_private *priv = ds->priv;
2562     bool allowed_ingress = true;
2563     int rc;
2564 
2565     /* Prevent attackers from trying to inject a DSA tag from
2566      * the outside world.
2567      */
2568     if (dsa_is_user_port(ds, port))
2569         allowed_ingress = false;
2570 
2571     rc = sja1105_vlan_add(priv, port, vid, flags, allowed_ingress);
2572     if (rc)
2573         return rc;
2574 
2575     if (flags & BRIDGE_VLAN_INFO_PVID)
2576         priv->tag_8021q_pvid[port] = vid;
2577 
2578     return sja1105_commit_pvid(ds, port);
2579 }
2580 
2581 static int sja1105_dsa_8021q_vlan_del(struct dsa_switch *ds, int port, u16 vid)
2582 {
2583     struct sja1105_private *priv = ds->priv;
2584 
2585     return sja1105_vlan_del(priv, port, vid);
2586 }
2587 
2588 static int sja1105_prechangeupper(struct dsa_switch *ds, int port,
2589                   struct netdev_notifier_changeupper_info *info)
2590 {
2591     struct netlink_ext_ack *extack = info->info.extack;
2592     struct net_device *upper = info->upper_dev;
2593     struct dsa_switch_tree *dst = ds->dst;
2594     struct dsa_port *dp;
2595 
2596     if (is_vlan_dev(upper)) {
2597         NL_SET_ERR_MSG_MOD(extack, "8021q uppers are not supported");
2598         return -EBUSY;
2599     }
2600 
2601     if (netif_is_bridge_master(upper)) {
2602         list_for_each_entry(dp, &dst->ports, list) {
2603             struct net_device *br = dsa_port_bridge_dev_get(dp);
2604 
2605             if (br && br != upper && br_vlan_enabled(br)) {
2606                 NL_SET_ERR_MSG_MOD(extack,
2607                            "Only one VLAN-aware bridge is supported");
2608                 return -EBUSY;
2609             }
2610         }
2611     }
2612 
2613     return 0;
2614 }
2615 
2616 static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot,
2617                  struct sk_buff *skb, bool takets)
2618 {
2619     struct sja1105_mgmt_entry mgmt_route = {0};
2620     struct sja1105_private *priv = ds->priv;
2621     struct ethhdr *hdr;
2622     int timeout = 10;
2623     int rc;
2624 
2625     hdr = eth_hdr(skb);
2626 
2627     mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest);
2628     mgmt_route.destports = BIT(port);
2629     mgmt_route.enfport = 1;
2630     mgmt_route.tsreg = 0;
2631     mgmt_route.takets = takets;
2632 
2633     rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2634                       slot, &mgmt_route, true);
2635     if (rc < 0) {
2636         kfree_skb(skb);
2637         return rc;
2638     }
2639 
2640     /* Transfer skb to the host port. */
2641     dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave);
2642 
2643     /* Wait until the switch has processed the frame */
2644     do {
2645         rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE,
2646                          slot, &mgmt_route);
2647         if (rc < 0) {
2648             dev_err_ratelimited(priv->ds->dev,
2649                         "failed to poll for mgmt route\n");
2650             continue;
2651         }
2652 
2653         /* UM10944: The ENFPORT flag of the respective entry is
2654          * cleared when a match is found. The host can use this
2655          * flag as an acknowledgment.
2656          */
2657         cpu_relax();
2658     } while (mgmt_route.enfport && --timeout);
2659 
2660     if (!timeout) {
2661         /* Clean up the management route so that a follow-up
2662          * frame may not match on it by mistake.
2663          * This is only hardware supported on P/Q/R/S - on E/T it is
2664          * a no-op and we are silently discarding the -EOPNOTSUPP.
2665          */
2666         sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2667                          slot, &mgmt_route, false);
2668         dev_err_ratelimited(priv->ds->dev, "xmit timed out\n");
2669     }
2670 
2671     return NETDEV_TX_OK;
2672 }
2673 
2674 #define work_to_xmit_work(w) \
2675         container_of((w), struct sja1105_deferred_xmit_work, work)
2676 
2677 /* Deferred work is unfortunately necessary because setting up the management
2678  * route cannot be done from atomit context (SPI transfer takes a sleepable
2679  * lock on the bus)
2680  */
2681 static void sja1105_port_deferred_xmit(struct kthread_work *work)
2682 {
2683     struct sja1105_deferred_xmit_work *xmit_work = work_to_xmit_work(work);
2684     struct sk_buff *clone, *skb = xmit_work->skb;
2685     struct dsa_switch *ds = xmit_work->dp->ds;
2686     struct sja1105_private *priv = ds->priv;
2687     int port = xmit_work->dp->index;
2688 
2689     clone = SJA1105_SKB_CB(skb)->clone;
2690 
2691     mutex_lock(&priv->mgmt_lock);
2692 
2693     sja1105_mgmt_xmit(ds, port, 0, skb, !!clone);
2694 
2695     /* The clone, if there, was made by dsa_skb_tx_timestamp */
2696     if (clone)
2697         sja1105_ptp_txtstamp_skb(ds, port, clone);
2698 
2699     mutex_unlock(&priv->mgmt_lock);
2700 
2701     kfree(xmit_work);
2702 }
2703 
2704 static int sja1105_connect_tag_protocol(struct dsa_switch *ds,
2705                     enum dsa_tag_protocol proto)
2706 {
2707     struct sja1105_private *priv = ds->priv;
2708     struct sja1105_tagger_data *tagger_data;
2709 
2710     if (proto != priv->info->tag_proto)
2711         return -EPROTONOSUPPORT;
2712 
2713     tagger_data = sja1105_tagger_data(ds);
2714     tagger_data->xmit_work_fn = sja1105_port_deferred_xmit;
2715     tagger_data->meta_tstamp_handler = sja1110_process_meta_tstamp;
2716 
2717     return 0;
2718 }
2719 
2720 /* The MAXAGE setting belongs to the L2 Forwarding Parameters table,
2721  * which cannot be reconfigured at runtime. So a switch reset is required.
2722  */
2723 static int sja1105_set_ageing_time(struct dsa_switch *ds,
2724                    unsigned int ageing_time)
2725 {
2726     struct sja1105_l2_lookup_params_entry *l2_lookup_params;
2727     struct sja1105_private *priv = ds->priv;
2728     struct sja1105_table *table;
2729     unsigned int maxage;
2730 
2731     table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2732     l2_lookup_params = table->entries;
2733 
2734     maxage = SJA1105_AGEING_TIME_MS(ageing_time);
2735 
2736     if (l2_lookup_params->maxage == maxage)
2737         return 0;
2738 
2739     l2_lookup_params->maxage = maxage;
2740 
2741     return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME);
2742 }
2743 
2744 static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu)
2745 {
2746     struct sja1105_l2_policing_entry *policing;
2747     struct sja1105_private *priv = ds->priv;
2748 
2749     new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN;
2750 
2751     if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
2752         new_mtu += VLAN_HLEN;
2753 
2754     policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2755 
2756     if (policing[port].maxlen == new_mtu)
2757         return 0;
2758 
2759     policing[port].maxlen = new_mtu;
2760 
2761     return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2762 }
2763 
2764 static int sja1105_get_max_mtu(struct dsa_switch *ds, int port)
2765 {
2766     return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN;
2767 }
2768 
2769 static int sja1105_port_setup_tc(struct dsa_switch *ds, int port,
2770                  enum tc_setup_type type,
2771                  void *type_data)
2772 {
2773     switch (type) {
2774     case TC_SETUP_QDISC_TAPRIO:
2775         return sja1105_setup_tc_taprio(ds, port, type_data);
2776     case TC_SETUP_QDISC_CBS:
2777         return sja1105_setup_tc_cbs(ds, port, type_data);
2778     default:
2779         return -EOPNOTSUPP;
2780     }
2781 }
2782 
2783 /* We have a single mirror (@to) port, but can configure ingress and egress
2784  * mirroring on all other (@from) ports.
2785  * We need to allow mirroring rules only as long as the @to port is always the
2786  * same, and we need to unset the @to port from mirr_port only when there is no
2787  * mirroring rule that references it.
2788  */
2789 static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to,
2790                 bool ingress, bool enabled)
2791 {
2792     struct sja1105_general_params_entry *general_params;
2793     struct sja1105_mac_config_entry *mac;
2794     struct dsa_switch *ds = priv->ds;
2795     struct sja1105_table *table;
2796     bool already_enabled;
2797     u64 new_mirr_port;
2798     int rc;
2799 
2800     table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2801     general_params = table->entries;
2802 
2803     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2804 
2805     already_enabled = (general_params->mirr_port != ds->num_ports);
2806     if (already_enabled && enabled && general_params->mirr_port != to) {
2807         dev_err(priv->ds->dev,
2808             "Delete mirroring rules towards port %llu first\n",
2809             general_params->mirr_port);
2810         return -EBUSY;
2811     }
2812 
2813     new_mirr_port = to;
2814     if (!enabled) {
2815         bool keep = false;
2816         int port;
2817 
2818         /* Anybody still referencing mirr_port? */
2819         for (port = 0; port < ds->num_ports; port++) {
2820             if (mac[port].ing_mirr || mac[port].egr_mirr) {
2821                 keep = true;
2822                 break;
2823             }
2824         }
2825         /* Unset already_enabled for next time */
2826         if (!keep)
2827             new_mirr_port = ds->num_ports;
2828     }
2829     if (new_mirr_port != general_params->mirr_port) {
2830         general_params->mirr_port = new_mirr_port;
2831 
2832         rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS,
2833                           0, general_params, true);
2834         if (rc < 0)
2835             return rc;
2836     }
2837 
2838     if (ingress)
2839         mac[from].ing_mirr = enabled;
2840     else
2841         mac[from].egr_mirr = enabled;
2842 
2843     return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from,
2844                         &mac[from], true);
2845 }
2846 
2847 static int sja1105_mirror_add(struct dsa_switch *ds, int port,
2848                   struct dsa_mall_mirror_tc_entry *mirror,
2849                   bool ingress, struct netlink_ext_ack *extack)
2850 {
2851     return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2852                     ingress, true);
2853 }
2854 
2855 static void sja1105_mirror_del(struct dsa_switch *ds, int port,
2856                    struct dsa_mall_mirror_tc_entry *mirror)
2857 {
2858     sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2859                  mirror->ingress, false);
2860 }
2861 
2862 static int sja1105_port_policer_add(struct dsa_switch *ds, int port,
2863                     struct dsa_mall_policer_tc_entry *policer)
2864 {
2865     struct sja1105_l2_policing_entry *policing;
2866     struct sja1105_private *priv = ds->priv;
2867 
2868     policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2869 
2870     /* In hardware, every 8 microseconds the credit level is incremented by
2871      * the value of RATE bytes divided by 64, up to a maximum of SMAX
2872      * bytes.
2873      */
2874     policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec,
2875                       1000000);
2876     policing[port].smax = policer->burst;
2877 
2878     return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2879 }
2880 
2881 static void sja1105_port_policer_del(struct dsa_switch *ds, int port)
2882 {
2883     struct sja1105_l2_policing_entry *policing;
2884     struct sja1105_private *priv = ds->priv;
2885 
2886     policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2887 
2888     policing[port].rate = SJA1105_RATE_MBPS(1000);
2889     policing[port].smax = 65535;
2890 
2891     sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2892 }
2893 
2894 static int sja1105_port_set_learning(struct sja1105_private *priv, int port,
2895                      bool enabled)
2896 {
2897     struct sja1105_mac_config_entry *mac;
2898 
2899     mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2900 
2901     mac[port].dyn_learn = enabled;
2902 
2903     return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
2904                         &mac[port], true);
2905 }
2906 
2907 static int sja1105_port_ucast_bcast_flood(struct sja1105_private *priv, int to,
2908                       struct switchdev_brport_flags flags)
2909 {
2910     if (flags.mask & BR_FLOOD) {
2911         if (flags.val & BR_FLOOD)
2912             priv->ucast_egress_floods |= BIT(to);
2913         else
2914             priv->ucast_egress_floods &= ~BIT(to);
2915     }
2916 
2917     if (flags.mask & BR_BCAST_FLOOD) {
2918         if (flags.val & BR_BCAST_FLOOD)
2919             priv->bcast_egress_floods |= BIT(to);
2920         else
2921             priv->bcast_egress_floods &= ~BIT(to);
2922     }
2923 
2924     return sja1105_manage_flood_domains(priv);
2925 }
2926 
2927 static int sja1105_port_mcast_flood(struct sja1105_private *priv, int to,
2928                     struct switchdev_brport_flags flags,
2929                     struct netlink_ext_ack *extack)
2930 {
2931     struct sja1105_l2_lookup_entry *l2_lookup;
2932     struct sja1105_table *table;
2933     int match;
2934 
2935     table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
2936     l2_lookup = table->entries;
2937 
2938     for (match = 0; match < table->entry_count; match++)
2939         if (l2_lookup[match].macaddr == SJA1105_UNKNOWN_MULTICAST &&
2940             l2_lookup[match].mask_macaddr == SJA1105_UNKNOWN_MULTICAST)
2941             break;
2942 
2943     if (match == table->entry_count) {
2944         NL_SET_ERR_MSG_MOD(extack,
2945                    "Could not find FDB entry for unknown multicast");
2946         return -ENOSPC;
2947     }
2948 
2949     if (flags.val & BR_MCAST_FLOOD)
2950         l2_lookup[match].destports |= BIT(to);
2951     else
2952         l2_lookup[match].destports &= ~BIT(to);
2953 
2954     return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
2955                         l2_lookup[match].index,
2956                         &l2_lookup[match],
2957                         true);
2958 }
2959 
2960 static int sja1105_port_pre_bridge_flags(struct dsa_switch *ds, int port,
2961                      struct switchdev_brport_flags flags,
2962                      struct netlink_ext_ack *extack)
2963 {
2964     struct sja1105_private *priv = ds->priv;
2965 
2966     if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
2967                BR_BCAST_FLOOD))
2968         return -EINVAL;
2969 
2970     if (flags.mask & (BR_FLOOD | BR_MCAST_FLOOD) &&
2971         !priv->info->can_limit_mcast_flood) {
2972         bool multicast = !!(flags.val & BR_MCAST_FLOOD);
2973         bool unicast = !!(flags.val & BR_FLOOD);
2974 
2975         if (unicast != multicast) {
2976             NL_SET_ERR_MSG_MOD(extack,
2977                        "This chip cannot configure multicast flooding independently of unicast");
2978             return -EINVAL;
2979         }
2980     }
2981 
2982     return 0;
2983 }
2984 
2985 static int sja1105_port_bridge_flags(struct dsa_switch *ds, int port,
2986                      struct switchdev_brport_flags flags,
2987                      struct netlink_ext_ack *extack)
2988 {
2989     struct sja1105_private *priv = ds->priv;
2990     int rc;
2991 
2992     if (flags.mask & BR_LEARNING) {
2993         bool learn_ena = !!(flags.val & BR_LEARNING);
2994 
2995         rc = sja1105_port_set_learning(priv, port, learn_ena);
2996         if (rc)
2997             return rc;
2998     }
2999 
3000     if (flags.mask & (BR_FLOOD | BR_BCAST_FLOOD)) {
3001         rc = sja1105_port_ucast_bcast_flood(priv, port, flags);
3002         if (rc)
3003             return rc;
3004     }
3005 
3006     /* For chips that can't offload BR_MCAST_FLOOD independently, there
3007      * is nothing to do here, we ensured the configuration is in sync by
3008      * offloading BR_FLOOD.
3009      */
3010     if (flags.mask & BR_MCAST_FLOOD && priv->info->can_limit_mcast_flood) {
3011         rc = sja1105_port_mcast_flood(priv, port, flags,
3012                           extack);
3013         if (rc)
3014             return rc;
3015     }
3016 
3017     return 0;
3018 }
3019 
3020 /* The programming model for the SJA1105 switch is "all-at-once" via static
3021  * configuration tables. Some of these can be dynamically modified at runtime,
3022  * but not the xMII mode parameters table.
3023  * Furthermode, some PHYs may not have crystals for generating their clocks
3024  * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's
3025  * ref_clk pin. So port clocking needs to be initialized early, before
3026  * connecting to PHYs is attempted, otherwise they won't respond through MDIO.
3027  * Setting correct PHY link speed does not matter now.
3028  * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY
3029  * bindings are not yet parsed by DSA core. We need to parse early so that we
3030  * can populate the xMII mode parameters table.
3031  */
3032 static int sja1105_setup(struct dsa_switch *ds)
3033 {
3034     struct sja1105_private *priv = ds->priv;
3035     int rc;
3036 
3037     if (priv->info->disable_microcontroller) {
3038         rc = priv->info->disable_microcontroller(priv);
3039         if (rc < 0) {
3040             dev_err(ds->dev,
3041                 "Failed to disable microcontroller: %pe\n",
3042                 ERR_PTR(rc));
3043             return rc;
3044         }
3045     }
3046 
3047     /* Create and send configuration down to device */
3048     rc = sja1105_static_config_load(priv);
3049     if (rc < 0) {
3050         dev_err(ds->dev, "Failed to load static config: %d\n", rc);
3051         return rc;
3052     }
3053 
3054     /* Configure the CGU (PHY link modes and speeds) */
3055     if (priv->info->clocking_setup) {
3056         rc = priv->info->clocking_setup(priv);
3057         if (rc < 0) {
3058             dev_err(ds->dev,
3059                 "Failed to configure MII clocking: %pe\n",
3060                 ERR_PTR(rc));
3061             goto out_static_config_free;
3062         }
3063     }
3064 
3065     sja1105_tas_setup(ds);
3066     sja1105_flower_setup(ds);
3067 
3068     rc = sja1105_ptp_clock_register(ds);
3069     if (rc < 0) {
3070         dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc);
3071         goto out_flower_teardown;
3072     }
3073 
3074     rc = sja1105_mdiobus_register(ds);
3075     if (rc < 0) {
3076         dev_err(ds->dev, "Failed to register MDIO bus: %pe\n",
3077             ERR_PTR(rc));
3078         goto out_ptp_clock_unregister;
3079     }
3080 
3081     rc = sja1105_devlink_setup(ds);
3082     if (rc < 0)
3083         goto out_mdiobus_unregister;
3084 
3085     rtnl_lock();
3086     rc = dsa_tag_8021q_register(ds, htons(ETH_P_8021Q));
3087     rtnl_unlock();
3088     if (rc)
3089         goto out_devlink_teardown;
3090 
3091     /* On SJA1105, VLAN filtering per se is always enabled in hardware.
3092      * The only thing we can do to disable it is lie about what the 802.1Q
3093      * EtherType is.
3094      * So it will still try to apply VLAN filtering, but all ingress
3095      * traffic (except frames received with EtherType of ETH_P_SJA1105)
3096      * will be internally tagged with a distorted VLAN header where the
3097      * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid.
3098      */
3099     ds->vlan_filtering_is_global = true;
3100     ds->untag_bridge_pvid = true;
3101     ds->fdb_isolation = true;
3102     /* tag_8021q has 3 bits for the VBID, and the value 0 is reserved */
3103     ds->max_num_bridges = 7;
3104 
3105     /* Advertise the 8 egress queues */
3106     ds->num_tx_queues = SJA1105_NUM_TC;
3107 
3108     ds->mtu_enforcement_ingress = true;
3109     ds->assisted_learning_on_cpu_port = true;
3110 
3111     return 0;
3112 
3113 out_devlink_teardown:
3114     sja1105_devlink_teardown(ds);
3115 out_mdiobus_unregister:
3116     sja1105_mdiobus_unregister(ds);
3117 out_ptp_clock_unregister:
3118     sja1105_ptp_clock_unregister(ds);
3119 out_flower_teardown:
3120     sja1105_flower_teardown(ds);
3121     sja1105_tas_teardown(ds);
3122 out_static_config_free:
3123     sja1105_static_config_free(&priv->static_config);
3124 
3125     return rc;
3126 }
3127 
3128 static void sja1105_teardown(struct dsa_switch *ds)
3129 {
3130     struct sja1105_private *priv = ds->priv;
3131 
3132     rtnl_lock();
3133     dsa_tag_8021q_unregister(ds);
3134     rtnl_unlock();
3135 
3136     sja1105_devlink_teardown(ds);
3137     sja1105_mdiobus_unregister(ds);
3138     sja1105_ptp_clock_unregister(ds);
3139     sja1105_flower_teardown(ds);
3140     sja1105_tas_teardown(ds);
3141     sja1105_static_config_free(&priv->static_config);
3142 }
3143 
3144 static const struct dsa_switch_ops sja1105_switch_ops = {
3145     .get_tag_protocol   = sja1105_get_tag_protocol,
3146     .connect_tag_protocol   = sja1105_connect_tag_protocol,
3147     .setup          = sja1105_setup,
3148     .teardown       = sja1105_teardown,
3149     .set_ageing_time    = sja1105_set_ageing_time,
3150     .port_change_mtu    = sja1105_change_mtu,
3151     .port_max_mtu       = sja1105_get_max_mtu,
3152     .phylink_get_caps   = sja1105_phylink_get_caps,
3153     .phylink_mac_select_pcs = sja1105_mac_select_pcs,
3154     .phylink_mac_link_up    = sja1105_mac_link_up,
3155     .phylink_mac_link_down  = sja1105_mac_link_down,
3156     .get_strings        = sja1105_get_strings,
3157     .get_ethtool_stats  = sja1105_get_ethtool_stats,
3158     .get_sset_count     = sja1105_get_sset_count,
3159     .get_ts_info        = sja1105_get_ts_info,
3160     .port_fdb_dump      = sja1105_fdb_dump,
3161     .port_fdb_add       = sja1105_fdb_add,
3162     .port_fdb_del       = sja1105_fdb_del,
3163     .port_fast_age      = sja1105_fast_age,
3164     .port_bridge_join   = sja1105_bridge_join,
3165     .port_bridge_leave  = sja1105_bridge_leave,
3166     .port_pre_bridge_flags  = sja1105_port_pre_bridge_flags,
3167     .port_bridge_flags  = sja1105_port_bridge_flags,
3168     .port_stp_state_set = sja1105_bridge_stp_state_set,
3169     .port_vlan_filtering    = sja1105_vlan_filtering,
3170     .port_vlan_add      = sja1105_bridge_vlan_add,
3171     .port_vlan_del      = sja1105_bridge_vlan_del,
3172     .port_mdb_add       = sja1105_mdb_add,
3173     .port_mdb_del       = sja1105_mdb_del,
3174     .port_hwtstamp_get  = sja1105_hwtstamp_get,
3175     .port_hwtstamp_set  = sja1105_hwtstamp_set,
3176     .port_rxtstamp      = sja1105_port_rxtstamp,
3177     .port_txtstamp      = sja1105_port_txtstamp,
3178     .port_setup_tc      = sja1105_port_setup_tc,
3179     .port_mirror_add    = sja1105_mirror_add,
3180     .port_mirror_del    = sja1105_mirror_del,
3181     .port_policer_add   = sja1105_port_policer_add,
3182     .port_policer_del   = sja1105_port_policer_del,
3183     .cls_flower_add     = sja1105_cls_flower_add,
3184     .cls_flower_del     = sja1105_cls_flower_del,
3185     .cls_flower_stats   = sja1105_cls_flower_stats,
3186     .devlink_info_get   = sja1105_devlink_info_get,
3187     .tag_8021q_vlan_add = sja1105_dsa_8021q_vlan_add,
3188     .tag_8021q_vlan_del = sja1105_dsa_8021q_vlan_del,
3189     .port_prechangeupper    = sja1105_prechangeupper,
3190 };
3191 
3192 static const struct of_device_id sja1105_dt_ids[];
3193 
3194 static int sja1105_check_device_id(struct sja1105_private *priv)
3195 {
3196     const struct sja1105_regs *regs = priv->info->regs;
3197     u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0};
3198     struct device *dev = &priv->spidev->dev;
3199     const struct of_device_id *match;
3200     u32 device_id;
3201     u64 part_no;
3202     int rc;
3203 
3204     rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id,
3205                   NULL);
3206     if (rc < 0)
3207         return rc;
3208 
3209     rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id,
3210                   SJA1105_SIZE_DEVICE_ID);
3211     if (rc < 0)
3212         return rc;
3213 
3214     sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID);
3215 
3216     for (match = sja1105_dt_ids; match->compatible[0]; match++) {
3217         const struct sja1105_info *info = match->data;
3218 
3219         /* Is what's been probed in our match table at all? */
3220         if (info->device_id != device_id || info->part_no != part_no)
3221             continue;
3222 
3223         /* But is it what's in the device tree? */
3224         if (priv->info->device_id != device_id ||
3225             priv->info->part_no != part_no) {
3226             dev_warn(dev, "Device tree specifies chip %s but found %s, please fix it!\n",
3227                  priv->info->name, info->name);
3228             /* It isn't. No problem, pick that up. */
3229             priv->info = info;
3230         }
3231 
3232         return 0;
3233     }
3234 
3235     dev_err(dev, "Unexpected {device ID, part number}: 0x%x 0x%llx\n",
3236         device_id, part_no);
3237 
3238     return -ENODEV;
3239 }
3240 
3241 static int sja1105_probe(struct spi_device *spi)
3242 {
3243     struct device *dev = &spi->dev;
3244     struct sja1105_private *priv;
3245     size_t max_xfer, max_msg;
3246     struct dsa_switch *ds;
3247     int rc;
3248 
3249     if (!dev->of_node) {
3250         dev_err(dev, "No DTS bindings for SJA1105 driver\n");
3251         return -EINVAL;
3252     }
3253 
3254     rc = sja1105_hw_reset(dev, 1, 1);
3255     if (rc)
3256         return rc;
3257 
3258     priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL);
3259     if (!priv)
3260         return -ENOMEM;
3261 
3262     /* Populate our driver private structure (priv) based on
3263      * the device tree node that was probed (spi)
3264      */
3265     priv->spidev = spi;
3266     spi_set_drvdata(spi, priv);
3267 
3268     /* Configure the SPI bus */
3269     spi->bits_per_word = 8;
3270     rc = spi_setup(spi);
3271     if (rc < 0) {
3272         dev_err(dev, "Could not init SPI\n");
3273         return rc;
3274     }
3275 
3276     /* In sja1105_xfer, we send spi_messages composed of two spi_transfers:
3277      * a small one for the message header and another one for the current
3278      * chunk of the packed buffer.
3279      * Check that the restrictions imposed by the SPI controller are
3280      * respected: the chunk buffer is smaller than the max transfer size,
3281      * and the total length of the chunk plus its message header is smaller
3282      * than the max message size.
3283      * We do that during probe time since the maximum transfer size is a
3284      * runtime invariant.
3285      */
3286     max_xfer = spi_max_transfer_size(spi);
3287     max_msg = spi_max_message_size(spi);
3288 
3289     /* We need to send at least one 64-bit word of SPI payload per message
3290      * in order to be able to make useful progress.
3291      */
3292     if (max_msg < SJA1105_SIZE_SPI_MSG_HEADER + 8) {
3293         dev_err(dev, "SPI master cannot send large enough buffers, aborting\n");
3294         return -EINVAL;
3295     }
3296 
3297     priv->max_xfer_len = SJA1105_SIZE_SPI_MSG_MAXLEN;
3298     if (priv->max_xfer_len > max_xfer)
3299         priv->max_xfer_len = max_xfer;
3300     if (priv->max_xfer_len > max_msg - SJA1105_SIZE_SPI_MSG_HEADER)
3301         priv->max_xfer_len = max_msg - SJA1105_SIZE_SPI_MSG_HEADER;
3302 
3303     priv->info = of_device_get_match_data(dev);
3304 
3305     /* Detect hardware device */
3306     rc = sja1105_check_device_id(priv);
3307     if (rc < 0) {
3308         dev_err(dev, "Device ID check failed: %d\n", rc);
3309         return rc;
3310     }
3311 
3312     dev_info(dev, "Probed switch chip: %s\n", priv->info->name);
3313 
3314     ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL);
3315     if (!ds)
3316         return -ENOMEM;
3317 
3318     ds->dev = dev;
3319     ds->num_ports = priv->info->num_ports;
3320     ds->ops = &sja1105_switch_ops;
3321     ds->priv = priv;
3322     priv->ds = ds;
3323 
3324     mutex_init(&priv->ptp_data.lock);
3325     mutex_init(&priv->dynamic_config_lock);
3326     mutex_init(&priv->mgmt_lock);
3327     spin_lock_init(&priv->ts_id_lock);
3328 
3329     rc = sja1105_parse_dt(priv);
3330     if (rc < 0) {
3331         dev_err(ds->dev, "Failed to parse DT: %d\n", rc);
3332         return rc;
3333     }
3334 
3335     if (IS_ENABLED(CONFIG_NET_SCH_CBS)) {
3336         priv->cbs = devm_kcalloc(dev, priv->info->num_cbs_shapers,
3337                      sizeof(struct sja1105_cbs_entry),
3338                      GFP_KERNEL);
3339         if (!priv->cbs)
3340             return -ENOMEM;
3341     }
3342 
3343     return dsa_register_switch(priv->ds);
3344 }
3345 
3346 static void sja1105_remove(struct spi_device *spi)
3347 {
3348     struct sja1105_private *priv = spi_get_drvdata(spi);
3349 
3350     if (!priv)
3351         return;
3352 
3353     dsa_unregister_switch(priv->ds);
3354 
3355     spi_set_drvdata(spi, NULL);
3356 }
3357 
3358 static void sja1105_shutdown(struct spi_device *spi)
3359 {
3360     struct sja1105_private *priv = spi_get_drvdata(spi);
3361 
3362     if (!priv)
3363         return;
3364 
3365     dsa_switch_shutdown(priv->ds);
3366 
3367     spi_set_drvdata(spi, NULL);
3368 }
3369 
3370 static const struct of_device_id sja1105_dt_ids[] = {
3371     { .compatible = "nxp,sja1105e", .data = &sja1105e_info },
3372     { .compatible = "nxp,sja1105t", .data = &sja1105t_info },
3373     { .compatible = "nxp,sja1105p", .data = &sja1105p_info },
3374     { .compatible = "nxp,sja1105q", .data = &sja1105q_info },
3375     { .compatible = "nxp,sja1105r", .data = &sja1105r_info },
3376     { .compatible = "nxp,sja1105s", .data = &sja1105s_info },
3377     { .compatible = "nxp,sja1110a", .data = &sja1110a_info },
3378     { .compatible = "nxp,sja1110b", .data = &sja1110b_info },
3379     { .compatible = "nxp,sja1110c", .data = &sja1110c_info },
3380     { .compatible = "nxp,sja1110d", .data = &sja1110d_info },
3381     { /* sentinel */ },
3382 };
3383 MODULE_DEVICE_TABLE(of, sja1105_dt_ids);
3384 
3385 static const struct spi_device_id sja1105_spi_ids[] = {
3386     { "sja1105e" },
3387     { "sja1105t" },
3388     { "sja1105p" },
3389     { "sja1105q" },
3390     { "sja1105r" },
3391     { "sja1105s" },
3392     { "sja1110a" },
3393     { "sja1110b" },
3394     { "sja1110c" },
3395     { "sja1110d" },
3396     { },
3397 };
3398 MODULE_DEVICE_TABLE(spi, sja1105_spi_ids);
3399 
3400 static struct spi_driver sja1105_driver = {
3401     .driver = {
3402         .name  = "sja1105",
3403         .owner = THIS_MODULE,
3404         .of_match_table = of_match_ptr(sja1105_dt_ids),
3405     },
3406     .id_table = sja1105_spi_ids,
3407     .probe  = sja1105_probe,
3408     .remove = sja1105_remove,
3409     .shutdown = sja1105_shutdown,
3410 };
3411 
3412 module_spi_driver(sja1105_driver);
3413 
3414 MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>");
3415 MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>");
3416 MODULE_DESCRIPTION("SJA1105 Driver");
3417 MODULE_LICENSE("GPL v2");