18aa9ebccSVladimir Oltean // SPDX-License-Identifier: GPL-2.0 28aa9ebccSVladimir Oltean /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH 38aa9ebccSVladimir Oltean * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com> 48aa9ebccSVladimir Oltean */ 58aa9ebccSVladimir Oltean 68aa9ebccSVladimir Oltean #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 78aa9ebccSVladimir Oltean 88aa9ebccSVladimir Oltean #include <linux/delay.h> 98aa9ebccSVladimir Oltean #include <linux/module.h> 108aa9ebccSVladimir Oltean #include <linux/printk.h> 118aa9ebccSVladimir Oltean #include <linux/spi/spi.h> 128aa9ebccSVladimir Oltean #include <linux/errno.h> 138aa9ebccSVladimir Oltean #include <linux/gpio/consumer.h> 14ad9f299aSVladimir Oltean #include <linux/phylink.h> 158aa9ebccSVladimir Oltean #include <linux/of.h> 168aa9ebccSVladimir Oltean #include <linux/of_net.h> 178aa9ebccSVladimir Oltean #include <linux/of_mdio.h> 188aa9ebccSVladimir Oltean #include <linux/of_device.h> 193ad1d171SVladimir Oltean #include <linux/pcs/pcs-xpcs.h> 208aa9ebccSVladimir Oltean #include <linux/netdev_features.h> 218aa9ebccSVladimir Oltean #include <linux/netdevice.h> 228aa9ebccSVladimir Oltean #include <linux/if_bridge.h> 238aa9ebccSVladimir Oltean #include <linux/if_ether.h> 24227d07a0SVladimir Oltean #include <linux/dsa/8021q.h> 258aa9ebccSVladimir Oltean #include "sja1105.h" 26317ab5b8SVladimir Oltean #include "sja1105_tas.h" 278aa9ebccSVladimir Oltean 284d942354SVladimir Oltean #define SJA1105_UNKNOWN_MULTICAST 0x010000000000ull 29ed040abcSVladimir Oltean #define SJA1105_DEFAULT_VLAN (VLAN_N_VID - 1) 304d942354SVladimir Oltean 31ac02a451SVladimir Oltean static const struct dsa_switch_ops sja1105_switch_ops; 32ac02a451SVladimir Oltean 338aa9ebccSVladimir Oltean static void sja1105_hw_reset(struct gpio_desc *gpio, unsigned int pulse_len, 348aa9ebccSVladimir Oltean unsigned int startup_delay) 358aa9ebccSVladimir Oltean { 368aa9ebccSVladimir Oltean gpiod_set_value_cansleep(gpio, 1); 378aa9ebccSVladimir Oltean /* Wait for minimum reset pulse length */ 388aa9ebccSVladimir Oltean msleep(pulse_len); 398aa9ebccSVladimir Oltean gpiod_set_value_cansleep(gpio, 0); 408aa9ebccSVladimir Oltean /* Wait until chip is ready after reset */ 418aa9ebccSVladimir Oltean msleep(startup_delay); 428aa9ebccSVladimir Oltean } 438aa9ebccSVladimir Oltean 448aa9ebccSVladimir Oltean static void 458aa9ebccSVladimir Oltean sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd, 468aa9ebccSVladimir Oltean int from, int to, bool allow) 478aa9ebccSVladimir Oltean { 484d942354SVladimir Oltean if (allow) 498aa9ebccSVladimir Oltean l2_fwd[from].reach_port |= BIT(to); 504d942354SVladimir Oltean else 518aa9ebccSVladimir Oltean l2_fwd[from].reach_port &= ~BIT(to); 528aa9ebccSVladimir Oltean } 538aa9ebccSVladimir Oltean 547f7ccdeaSVladimir Oltean static bool sja1105_can_forward(struct sja1105_l2_forwarding_entry *l2_fwd, 557f7ccdeaSVladimir Oltean int from, int to) 567f7ccdeaSVladimir Oltean { 577f7ccdeaSVladimir Oltean return !!(l2_fwd[from].reach_port & BIT(to)); 587f7ccdeaSVladimir Oltean } 597f7ccdeaSVladimir Oltean 608aa9ebccSVladimir Oltean static int sja1105_init_mac_settings(struct sja1105_private *priv) 618aa9ebccSVladimir Oltean { 628aa9ebccSVladimir Oltean struct sja1105_mac_config_entry default_mac = { 638aa9ebccSVladimir Oltean /* Enable all 8 priority queues on egress. 648aa9ebccSVladimir Oltean * Every queue i holds top[i] - base[i] frames. 658aa9ebccSVladimir Oltean * Sum of top[i] - base[i] is 511 (max hardware limit). 668aa9ebccSVladimir Oltean */ 678aa9ebccSVladimir Oltean .top = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF}, 688aa9ebccSVladimir Oltean .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0}, 698aa9ebccSVladimir Oltean .enabled = {true, true, true, true, true, true, true, true}, 708aa9ebccSVladimir Oltean /* Keep standard IFG of 12 bytes on egress. */ 718aa9ebccSVladimir Oltean .ifg = 0, 728aa9ebccSVladimir Oltean /* Always put the MAC speed in automatic mode, where it can be 731fd4a173SVladimir Oltean * adjusted at runtime by PHYLINK. 748aa9ebccSVladimir Oltean */ 7541fed17fSVladimir Oltean .speed = priv->info->port_speed[SJA1105_SPEED_AUTO], 768aa9ebccSVladimir Oltean /* No static correction for 1-step 1588 events */ 778aa9ebccSVladimir Oltean .tp_delin = 0, 788aa9ebccSVladimir Oltean .tp_delout = 0, 798aa9ebccSVladimir Oltean /* Disable aging for critical TTEthernet traffic */ 808aa9ebccSVladimir Oltean .maxage = 0xFF, 818aa9ebccSVladimir Oltean /* Internal VLAN (pvid) to apply to untagged ingress */ 828aa9ebccSVladimir Oltean .vlanprio = 0, 83e3502b82SVladimir Oltean .vlanid = 1, 848aa9ebccSVladimir Oltean .ing_mirr = false, 858aa9ebccSVladimir Oltean .egr_mirr = false, 868aa9ebccSVladimir Oltean /* Don't drop traffic with other EtherType than ETH_P_IP */ 878aa9ebccSVladimir Oltean .drpnona664 = false, 888aa9ebccSVladimir Oltean /* Don't drop double-tagged traffic */ 898aa9ebccSVladimir Oltean .drpdtag = false, 908aa9ebccSVladimir Oltean /* Don't drop untagged traffic */ 918aa9ebccSVladimir Oltean .drpuntag = false, 928aa9ebccSVladimir Oltean /* Don't retag 802.1p (VID 0) traffic with the pvid */ 938aa9ebccSVladimir Oltean .retag = false, 94640f763fSVladimir Oltean /* Disable learning and I/O on user ports by default - 95640f763fSVladimir Oltean * STP will enable it. 96640f763fSVladimir Oltean */ 97640f763fSVladimir Oltean .dyn_learn = false, 988aa9ebccSVladimir Oltean .egress = false, 998aa9ebccSVladimir Oltean .ingress = false, 1008aa9ebccSVladimir Oltean }; 1018aa9ebccSVladimir Oltean struct sja1105_mac_config_entry *mac; 102542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 1038aa9ebccSVladimir Oltean struct sja1105_table *table; 1048aa9ebccSVladimir Oltean int i; 1058aa9ebccSVladimir Oltean 1068aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG]; 1078aa9ebccSVladimir Oltean 1088aa9ebccSVladimir Oltean /* Discard previous MAC Configuration Table */ 1098aa9ebccSVladimir Oltean if (table->entry_count) { 1108aa9ebccSVladimir Oltean kfree(table->entries); 1118aa9ebccSVladimir Oltean table->entry_count = 0; 1128aa9ebccSVladimir Oltean } 1138aa9ebccSVladimir Oltean 114fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 1158aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 1168aa9ebccSVladimir Oltean if (!table->entries) 1178aa9ebccSVladimir Oltean return -ENOMEM; 1188aa9ebccSVladimir Oltean 119fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 1208aa9ebccSVladimir Oltean 1218aa9ebccSVladimir Oltean mac = table->entries; 1228aa9ebccSVladimir Oltean 123542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 1248aa9ebccSVladimir Oltean mac[i] = default_mac; 125*b0b33b04SVladimir Oltean 126*b0b33b04SVladimir Oltean /* Let sja1105_bridge_stp_state_set() keep address learning 127*b0b33b04SVladimir Oltean * enabled for the CPU port. 128640f763fSVladimir Oltean */ 129*b0b33b04SVladimir Oltean if (dsa_is_cpu_port(ds, i)) 130*b0b33b04SVladimir Oltean priv->learn_ena |= BIT(i); 131640f763fSVladimir Oltean } 1328aa9ebccSVladimir Oltean 1338aa9ebccSVladimir Oltean return 0; 1348aa9ebccSVladimir Oltean } 1358aa9ebccSVladimir Oltean 1365d645df9SVladimir Oltean static int sja1105_init_mii_settings(struct sja1105_private *priv) 1378aa9ebccSVladimir Oltean { 1388aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 1398aa9ebccSVladimir Oltean struct sja1105_xmii_params_entry *mii; 140542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 1418aa9ebccSVladimir Oltean struct sja1105_table *table; 1428aa9ebccSVladimir Oltean int i; 1438aa9ebccSVladimir Oltean 1448aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS]; 1458aa9ebccSVladimir Oltean 1468aa9ebccSVladimir Oltean /* Discard previous xMII Mode Parameters Table */ 1478aa9ebccSVladimir Oltean if (table->entry_count) { 1488aa9ebccSVladimir Oltean kfree(table->entries); 1498aa9ebccSVladimir Oltean table->entry_count = 0; 1508aa9ebccSVladimir Oltean } 1518aa9ebccSVladimir Oltean 152fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 1538aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 1548aa9ebccSVladimir Oltean if (!table->entries) 1558aa9ebccSVladimir Oltean return -ENOMEM; 1568aa9ebccSVladimir Oltean 1571fd4a173SVladimir Oltean /* Override table based on PHYLINK DT bindings */ 158fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 1598aa9ebccSVladimir Oltean 1608aa9ebccSVladimir Oltean mii = table->entries; 1618aa9ebccSVladimir Oltean 162542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 1635d645df9SVladimir Oltean sja1105_mii_role_t role = XMII_MAC; 1645d645df9SVladimir Oltean 165ee9d0cb6SVladimir Oltean if (dsa_is_unused_port(priv->ds, i)) 166ee9d0cb6SVladimir Oltean continue; 167ee9d0cb6SVladimir Oltean 1685d645df9SVladimir Oltean switch (priv->phy_mode[i]) { 1695a8f0974SVladimir Oltean case PHY_INTERFACE_MODE_INTERNAL: 1705a8f0974SVladimir Oltean if (priv->info->internal_phy[i] == SJA1105_NO_PHY) 1715a8f0974SVladimir Oltean goto unsupported; 1725a8f0974SVladimir Oltean 1735a8f0974SVladimir Oltean mii->xmii_mode[i] = XMII_MODE_MII; 1745a8f0974SVladimir Oltean if (priv->info->internal_phy[i] == SJA1105_PHY_BASE_TX) 1755a8f0974SVladimir Oltean mii->special[i] = true; 1765a8f0974SVladimir Oltean 1775a8f0974SVladimir Oltean break; 1785d645df9SVladimir Oltean case PHY_INTERFACE_MODE_REVMII: 1795d645df9SVladimir Oltean role = XMII_PHY; 1805d645df9SVladimir Oltean fallthrough; 1818aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_MII: 18291a05078SVladimir Oltean if (!priv->info->supports_mii[i]) 18391a05078SVladimir Oltean goto unsupported; 18491a05078SVladimir Oltean 1858aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_MII; 1868aa9ebccSVladimir Oltean break; 1875d645df9SVladimir Oltean case PHY_INTERFACE_MODE_REVRMII: 1885d645df9SVladimir Oltean role = XMII_PHY; 1895d645df9SVladimir Oltean fallthrough; 1908aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RMII: 19191a05078SVladimir Oltean if (!priv->info->supports_rmii[i]) 19291a05078SVladimir Oltean goto unsupported; 19391a05078SVladimir Oltean 1948aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_RMII; 1958aa9ebccSVladimir Oltean break; 1968aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII: 1978aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_ID: 1988aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_RXID: 1998aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_TXID: 20091a05078SVladimir Oltean if (!priv->info->supports_rgmii[i]) 20191a05078SVladimir Oltean goto unsupported; 20291a05078SVladimir Oltean 2038aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_RGMII; 2048aa9ebccSVladimir Oltean break; 205ffe10e67SVladimir Oltean case PHY_INTERFACE_MODE_SGMII: 20691a05078SVladimir Oltean if (!priv->info->supports_sgmii[i]) 20791a05078SVladimir Oltean goto unsupported; 20891a05078SVladimir Oltean 209ffe10e67SVladimir Oltean mii->xmii_mode[i] = XMII_MODE_SGMII; 210ece578bcSVladimir Oltean mii->special[i] = true; 211ffe10e67SVladimir Oltean break; 21291a05078SVladimir Oltean case PHY_INTERFACE_MODE_2500BASEX: 21391a05078SVladimir Oltean if (!priv->info->supports_2500basex[i]) 21491a05078SVladimir Oltean goto unsupported; 21591a05078SVladimir Oltean 21691a05078SVladimir Oltean mii->xmii_mode[i] = XMII_MODE_SGMII; 217ece578bcSVladimir Oltean mii->special[i] = true; 21891a05078SVladimir Oltean break; 21991a05078SVladimir Oltean unsupported: 2208aa9ebccSVladimir Oltean default: 22191a05078SVladimir Oltean dev_err(dev, "Unsupported PHY mode %s on port %d!\n", 2225d645df9SVladimir Oltean phy_modes(priv->phy_mode[i]), i); 2236729188dSVladimir Oltean return -EINVAL; 2248aa9ebccSVladimir Oltean } 2258aa9ebccSVladimir Oltean 2265d645df9SVladimir Oltean mii->phy_mac[i] = role; 2278aa9ebccSVladimir Oltean } 2288aa9ebccSVladimir Oltean return 0; 2298aa9ebccSVladimir Oltean } 2308aa9ebccSVladimir Oltean 2318aa9ebccSVladimir Oltean static int sja1105_init_static_fdb(struct sja1105_private *priv) 2328aa9ebccSVladimir Oltean { 2334d942354SVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 2348aa9ebccSVladimir Oltean struct sja1105_table *table; 2354d942354SVladimir Oltean int port; 2368aa9ebccSVladimir Oltean 2378aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 2388aa9ebccSVladimir Oltean 2394d942354SVladimir Oltean /* We only populate the FDB table through dynamic L2 Address Lookup 2404d942354SVladimir Oltean * entries, except for a special entry at the end which is a catch-all 2414d942354SVladimir Oltean * for unknown multicast and will be used to control flooding domain. 242291d1e72SVladimir Oltean */ 2438aa9ebccSVladimir Oltean if (table->entry_count) { 2448aa9ebccSVladimir Oltean kfree(table->entries); 2458aa9ebccSVladimir Oltean table->entry_count = 0; 2468aa9ebccSVladimir Oltean } 2474d942354SVladimir Oltean 2484d942354SVladimir Oltean if (!priv->info->can_limit_mcast_flood) 2494d942354SVladimir Oltean return 0; 2504d942354SVladimir Oltean 2514d942354SVladimir Oltean table->entries = kcalloc(1, table->ops->unpacked_entry_size, 2524d942354SVladimir Oltean GFP_KERNEL); 2534d942354SVladimir Oltean if (!table->entries) 2544d942354SVladimir Oltean return -ENOMEM; 2554d942354SVladimir Oltean 2564d942354SVladimir Oltean table->entry_count = 1; 2574d942354SVladimir Oltean l2_lookup = table->entries; 2584d942354SVladimir Oltean 2594d942354SVladimir Oltean /* All L2 multicast addresses have an odd first octet */ 2604d942354SVladimir Oltean l2_lookup[0].macaddr = SJA1105_UNKNOWN_MULTICAST; 2614d942354SVladimir Oltean l2_lookup[0].mask_macaddr = SJA1105_UNKNOWN_MULTICAST; 2624d942354SVladimir Oltean l2_lookup[0].lockeds = true; 2634d942354SVladimir Oltean l2_lookup[0].index = SJA1105_MAX_L2_LOOKUP_COUNT - 1; 2644d942354SVladimir Oltean 2654d942354SVladimir Oltean /* Flood multicast to every port by default */ 2664d942354SVladimir Oltean for (port = 0; port < priv->ds->num_ports; port++) 2674d942354SVladimir Oltean if (!dsa_is_unused_port(priv->ds, port)) 2684d942354SVladimir Oltean l2_lookup[0].destports |= BIT(port); 2694d942354SVladimir Oltean 2708aa9ebccSVladimir Oltean return 0; 2718aa9ebccSVladimir Oltean } 2728aa9ebccSVladimir Oltean 2738aa9ebccSVladimir Oltean static int sja1105_init_l2_lookup_params(struct sja1105_private *priv) 2748aa9ebccSVladimir Oltean { 2758aa9ebccSVladimir Oltean struct sja1105_l2_lookup_params_entry default_l2_lookup_params = { 2768456721dSVladimir Oltean /* Learned FDB entries are forgotten after 300 seconds */ 2778456721dSVladimir Oltean .maxage = SJA1105_AGEING_TIME_MS(300000), 2788aa9ebccSVladimir Oltean /* All entries within a FDB bin are available for learning */ 2798aa9ebccSVladimir Oltean .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE, 2801da73821SVladimir Oltean /* And the P/Q/R/S equivalent setting: */ 2811da73821SVladimir Oltean .start_dynspc = 0, 2828aa9ebccSVladimir Oltean /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */ 2838aa9ebccSVladimir Oltean .poly = 0x97, 2848aa9ebccSVladimir Oltean /* This selects between Independent VLAN Learning (IVL) and 2858aa9ebccSVladimir Oltean * Shared VLAN Learning (SVL) 2868aa9ebccSVladimir Oltean */ 2876d7c7d94SVladimir Oltean .shared_learn = true, 2888aa9ebccSVladimir Oltean /* Don't discard management traffic based on ENFPORT - 2898aa9ebccSVladimir Oltean * we don't perform SMAC port enforcement anyway, so 2908aa9ebccSVladimir Oltean * what we are setting here doesn't matter. 2918aa9ebccSVladimir Oltean */ 2928aa9ebccSVladimir Oltean .no_enf_hostprt = false, 2938aa9ebccSVladimir Oltean /* Don't learn SMAC for mac_fltres1 and mac_fltres0. 2948aa9ebccSVladimir Oltean * Maybe correlate with no_linklocal_learn from bridge driver? 2958aa9ebccSVladimir Oltean */ 2968aa9ebccSVladimir Oltean .no_mgmt_learn = true, 2971da73821SVladimir Oltean /* P/Q/R/S only */ 2981da73821SVladimir Oltean .use_static = true, 2991da73821SVladimir Oltean /* Dynamically learned FDB entries can overwrite other (older) 3001da73821SVladimir Oltean * dynamic FDB entries 3011da73821SVladimir Oltean */ 3021da73821SVladimir Oltean .owr_dyn = true, 3031da73821SVladimir Oltean .drpnolearn = true, 3048aa9ebccSVladimir Oltean }; 305542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 306f238fef1SVladimir Oltean int port, num_used_ports = 0; 307542043e9SVladimir Oltean struct sja1105_table *table; 308542043e9SVladimir Oltean u64 max_fdb_entries; 309542043e9SVladimir Oltean 310542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) 311f238fef1SVladimir Oltean if (!dsa_is_unused_port(ds, port)) 312f238fef1SVladimir Oltean num_used_ports++; 313f238fef1SVladimir Oltean 314f238fef1SVladimir Oltean max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / num_used_ports; 315f238fef1SVladimir Oltean 316f238fef1SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 317f238fef1SVladimir Oltean if (dsa_is_unused_port(ds, port)) 318f238fef1SVladimir Oltean continue; 319f238fef1SVladimir Oltean 320542043e9SVladimir Oltean default_l2_lookup_params.maxaddrp[port] = max_fdb_entries; 321f238fef1SVladimir Oltean } 3228aa9ebccSVladimir Oltean 3238aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 3248aa9ebccSVladimir Oltean 3258aa9ebccSVladimir Oltean if (table->entry_count) { 3268aa9ebccSVladimir Oltean kfree(table->entries); 3278aa9ebccSVladimir Oltean table->entry_count = 0; 3288aa9ebccSVladimir Oltean } 3298aa9ebccSVladimir Oltean 330fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 3318aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 3328aa9ebccSVladimir Oltean if (!table->entries) 3338aa9ebccSVladimir Oltean return -ENOMEM; 3348aa9ebccSVladimir Oltean 335fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 3368aa9ebccSVladimir Oltean 3378aa9ebccSVladimir Oltean /* This table only has a single entry */ 3388aa9ebccSVladimir Oltean ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] = 3398aa9ebccSVladimir Oltean default_l2_lookup_params; 3408aa9ebccSVladimir Oltean 3418aa9ebccSVladimir Oltean return 0; 3428aa9ebccSVladimir Oltean } 3438aa9ebccSVladimir Oltean 344ed040abcSVladimir Oltean /* Set up a default VLAN for untagged traffic injected from the CPU 345ed040abcSVladimir Oltean * using management routes (e.g. STP, PTP) as opposed to tag_8021q. 346ed040abcSVladimir Oltean * All DT-defined ports are members of this VLAN, and there are no 347ed040abcSVladimir Oltean * restrictions on forwarding (since the CPU selects the destination). 348ed040abcSVladimir Oltean * Frames from this VLAN will always be transmitted as untagged, and 349ed040abcSVladimir Oltean * neither the bridge nor the 8021q module cannot create this VLAN ID. 350ed040abcSVladimir Oltean */ 3518aa9ebccSVladimir Oltean static int sja1105_init_static_vlan(struct sja1105_private *priv) 3528aa9ebccSVladimir Oltean { 3538aa9ebccSVladimir Oltean struct sja1105_table *table; 3548aa9ebccSVladimir Oltean struct sja1105_vlan_lookup_entry pvid = { 3553e77e59bSVladimir Oltean .type_entry = SJA1110_VLAN_D_TAG, 3568aa9ebccSVladimir Oltean .ving_mirr = 0, 3578aa9ebccSVladimir Oltean .vegr_mirr = 0, 3588aa9ebccSVladimir Oltean .vmemb_port = 0, 3598aa9ebccSVladimir Oltean .vlan_bc = 0, 3608aa9ebccSVladimir Oltean .tag_port = 0, 361ed040abcSVladimir Oltean .vlanid = SJA1105_DEFAULT_VLAN, 3628aa9ebccSVladimir Oltean }; 363ec5ae610SVladimir Oltean struct dsa_switch *ds = priv->ds; 364ec5ae610SVladimir Oltean int port; 3658aa9ebccSVladimir Oltean 3668aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 3678aa9ebccSVladimir Oltean 3688aa9ebccSVladimir Oltean if (table->entry_count) { 3698aa9ebccSVladimir Oltean kfree(table->entries); 3708aa9ebccSVladimir Oltean table->entry_count = 0; 3718aa9ebccSVladimir Oltean } 3728aa9ebccSVladimir Oltean 373c75857b0SZheng Yongjun table->entries = kzalloc(table->ops->unpacked_entry_size, 3748aa9ebccSVladimir Oltean GFP_KERNEL); 3758aa9ebccSVladimir Oltean if (!table->entries) 3768aa9ebccSVladimir Oltean return -ENOMEM; 3778aa9ebccSVladimir Oltean 3788aa9ebccSVladimir Oltean table->entry_count = 1; 3798aa9ebccSVladimir Oltean 380ec5ae610SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 381ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 382ec5ae610SVladimir Oltean 383ec5ae610SVladimir Oltean if (dsa_is_unused_port(ds, port)) 384ec5ae610SVladimir Oltean continue; 385ec5ae610SVladimir Oltean 386ec5ae610SVladimir Oltean pvid.vmemb_port |= BIT(port); 387ec5ae610SVladimir Oltean pvid.vlan_bc |= BIT(port); 388ec5ae610SVladimir Oltean pvid.tag_port &= ~BIT(port); 389ec5ae610SVladimir Oltean 390ec5ae610SVladimir Oltean v = kzalloc(sizeof(*v), GFP_KERNEL); 391ec5ae610SVladimir Oltean if (!v) 392ec5ae610SVladimir Oltean return -ENOMEM; 393ec5ae610SVladimir Oltean 394ec5ae610SVladimir Oltean v->port = port; 395ed040abcSVladimir Oltean v->vid = SJA1105_DEFAULT_VLAN; 396ec5ae610SVladimir Oltean v->untagged = true; 397ec5ae610SVladimir Oltean if (dsa_is_cpu_port(ds, port)) 398ec5ae610SVladimir Oltean v->pvid = true; 399ec5ae610SVladimir Oltean list_add(&v->list, &priv->dsa_8021q_vlans); 4008aa9ebccSVladimir Oltean } 4018aa9ebccSVladimir Oltean 4028aa9ebccSVladimir Oltean ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid; 4038aa9ebccSVladimir Oltean return 0; 4048aa9ebccSVladimir Oltean } 4058aa9ebccSVladimir Oltean 4068aa9ebccSVladimir Oltean static int sja1105_init_l2_forwarding(struct sja1105_private *priv) 4078aa9ebccSVladimir Oltean { 4088aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_entry *l2fwd; 409542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 4108aa9ebccSVladimir Oltean struct sja1105_table *table; 4118aa9ebccSVladimir Oltean int i, j; 4128aa9ebccSVladimir Oltean 4138aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING]; 4148aa9ebccSVladimir Oltean 4158aa9ebccSVladimir Oltean if (table->entry_count) { 4168aa9ebccSVladimir Oltean kfree(table->entries); 4178aa9ebccSVladimir Oltean table->entry_count = 0; 4188aa9ebccSVladimir Oltean } 4198aa9ebccSVladimir Oltean 420fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 4218aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 4228aa9ebccSVladimir Oltean if (!table->entries) 4238aa9ebccSVladimir Oltean return -ENOMEM; 4248aa9ebccSVladimir Oltean 425fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 4268aa9ebccSVladimir Oltean 4278aa9ebccSVladimir Oltean l2fwd = table->entries; 4288aa9ebccSVladimir Oltean 4298aa9ebccSVladimir Oltean /* First 5 entries define the forwarding rules */ 430542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 4318aa9ebccSVladimir Oltean unsigned int upstream = dsa_upstream_port(priv->ds, i); 4328aa9ebccSVladimir Oltean 433f238fef1SVladimir Oltean if (dsa_is_unused_port(ds, i)) 434f238fef1SVladimir Oltean continue; 435f238fef1SVladimir Oltean 4368aa9ebccSVladimir Oltean for (j = 0; j < SJA1105_NUM_TC; j++) 4378aa9ebccSVladimir Oltean l2fwd[i].vlan_pmap[j] = j; 4388aa9ebccSVladimir Oltean 4397f7ccdeaSVladimir Oltean /* All ports start up with egress flooding enabled, 4407f7ccdeaSVladimir Oltean * including the CPU port. 4417f7ccdeaSVladimir Oltean */ 4427f7ccdeaSVladimir Oltean priv->ucast_egress_floods |= BIT(i); 4437f7ccdeaSVladimir Oltean priv->bcast_egress_floods |= BIT(i); 4447f7ccdeaSVladimir Oltean 4458aa9ebccSVladimir Oltean if (i == upstream) 4468aa9ebccSVladimir Oltean continue; 4478aa9ebccSVladimir Oltean 4488aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2fwd, i, upstream, true); 4498aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2fwd, upstream, i, true); 4504d942354SVladimir Oltean 4514d942354SVladimir Oltean l2fwd[i].bc_domain = BIT(upstream); 4524d942354SVladimir Oltean l2fwd[i].fl_domain = BIT(upstream); 4534d942354SVladimir Oltean 4544d942354SVladimir Oltean l2fwd[upstream].bc_domain |= BIT(i); 4554d942354SVladimir Oltean l2fwd[upstream].fl_domain |= BIT(i); 4568aa9ebccSVladimir Oltean } 457f238fef1SVladimir Oltean 4588aa9ebccSVladimir Oltean /* Next 8 entries define VLAN PCP mapping from ingress to egress. 4598aa9ebccSVladimir Oltean * Create a one-to-one mapping. 4608aa9ebccSVladimir Oltean */ 461f238fef1SVladimir Oltean for (i = 0; i < SJA1105_NUM_TC; i++) { 462f238fef1SVladimir Oltean for (j = 0; j < ds->num_ports; j++) { 463f238fef1SVladimir Oltean if (dsa_is_unused_port(ds, j)) 464f238fef1SVladimir Oltean continue; 465f238fef1SVladimir Oltean 466542043e9SVladimir Oltean l2fwd[ds->num_ports + i].vlan_pmap[j] = i; 467f238fef1SVladimir Oltean } 4683e77e59bSVladimir Oltean 4693e77e59bSVladimir Oltean l2fwd[ds->num_ports + i].type_egrpcp2outputq = true; 4703e77e59bSVladimir Oltean } 4713e77e59bSVladimir Oltean 4723e77e59bSVladimir Oltean return 0; 4733e77e59bSVladimir Oltean } 4743e77e59bSVladimir Oltean 4753e77e59bSVladimir Oltean static int sja1110_init_pcp_remapping(struct sja1105_private *priv) 4763e77e59bSVladimir Oltean { 4773e77e59bSVladimir Oltean struct sja1110_pcp_remapping_entry *pcp_remap; 4783e77e59bSVladimir Oltean struct dsa_switch *ds = priv->ds; 4793e77e59bSVladimir Oltean struct sja1105_table *table; 4803e77e59bSVladimir Oltean int port, tc; 4813e77e59bSVladimir Oltean 4823e77e59bSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_PCP_REMAPPING]; 4833e77e59bSVladimir Oltean 4843e77e59bSVladimir Oltean /* Nothing to do for SJA1105 */ 4853e77e59bSVladimir Oltean if (!table->ops->max_entry_count) 4863e77e59bSVladimir Oltean return 0; 4873e77e59bSVladimir Oltean 4883e77e59bSVladimir Oltean if (table->entry_count) { 4893e77e59bSVladimir Oltean kfree(table->entries); 4903e77e59bSVladimir Oltean table->entry_count = 0; 4913e77e59bSVladimir Oltean } 4923e77e59bSVladimir Oltean 4933e77e59bSVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 4943e77e59bSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 4953e77e59bSVladimir Oltean if (!table->entries) 4963e77e59bSVladimir Oltean return -ENOMEM; 4973e77e59bSVladimir Oltean 4983e77e59bSVladimir Oltean table->entry_count = table->ops->max_entry_count; 4993e77e59bSVladimir Oltean 5003e77e59bSVladimir Oltean pcp_remap = table->entries; 5013e77e59bSVladimir Oltean 5023e77e59bSVladimir Oltean /* Repeat the configuration done for vlan_pmap */ 5033e77e59bSVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 5043e77e59bSVladimir Oltean if (dsa_is_unused_port(ds, port)) 5053e77e59bSVladimir Oltean continue; 5063e77e59bSVladimir Oltean 5073e77e59bSVladimir Oltean for (tc = 0; tc < SJA1105_NUM_TC; tc++) 5083e77e59bSVladimir Oltean pcp_remap[port].egrpcp[tc] = tc; 509f238fef1SVladimir Oltean } 5108aa9ebccSVladimir Oltean 5118aa9ebccSVladimir Oltean return 0; 5128aa9ebccSVladimir Oltean } 5138aa9ebccSVladimir Oltean 5148aa9ebccSVladimir Oltean static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv) 5158aa9ebccSVladimir Oltean { 5161bf658eeSVladimir Oltean struct sja1105_l2_forwarding_params_entry *l2fwd_params; 5178aa9ebccSVladimir Oltean struct sja1105_table *table; 5188aa9ebccSVladimir Oltean 5198aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS]; 5208aa9ebccSVladimir Oltean 5218aa9ebccSVladimir Oltean if (table->entry_count) { 5228aa9ebccSVladimir Oltean kfree(table->entries); 5238aa9ebccSVladimir Oltean table->entry_count = 0; 5248aa9ebccSVladimir Oltean } 5258aa9ebccSVladimir Oltean 526fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 5278aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 5288aa9ebccSVladimir Oltean if (!table->entries) 5298aa9ebccSVladimir Oltean return -ENOMEM; 5308aa9ebccSVladimir Oltean 531fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 5328aa9ebccSVladimir Oltean 5338aa9ebccSVladimir Oltean /* This table only has a single entry */ 5341bf658eeSVladimir Oltean l2fwd_params = table->entries; 5351bf658eeSVladimir Oltean 5361bf658eeSVladimir Oltean /* Disallow dynamic reconfiguration of vlan_pmap */ 5371bf658eeSVladimir Oltean l2fwd_params->max_dynp = 0; 5381bf658eeSVladimir Oltean /* Use a single memory partition for all ingress queues */ 5391bf658eeSVladimir Oltean l2fwd_params->part_spc[0] = priv->info->max_frame_mem; 5408aa9ebccSVladimir Oltean 5418aa9ebccSVladimir Oltean return 0; 5428aa9ebccSVladimir Oltean } 5438aa9ebccSVladimir Oltean 544aaa270c6SVladimir Oltean void sja1105_frame_memory_partitioning(struct sja1105_private *priv) 545aaa270c6SVladimir Oltean { 546aaa270c6SVladimir Oltean struct sja1105_l2_forwarding_params_entry *l2_fwd_params; 547aaa270c6SVladimir Oltean struct sja1105_vl_forwarding_params_entry *vl_fwd_params; 5481bf658eeSVladimir Oltean int max_mem = priv->info->max_frame_mem; 549aaa270c6SVladimir Oltean struct sja1105_table *table; 550aaa270c6SVladimir Oltean 551aaa270c6SVladimir Oltean /* VLAN retagging is implemented using a loopback port that consumes 552aaa270c6SVladimir Oltean * frame buffers. That leaves less for us. 553aaa270c6SVladimir Oltean */ 554aaa270c6SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_BEST_EFFORT) 5551bf658eeSVladimir Oltean max_mem -= SJA1105_FRAME_MEMORY_RETAGGING_OVERHEAD; 556aaa270c6SVladimir Oltean 557aaa270c6SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS]; 558aaa270c6SVladimir Oltean l2_fwd_params = table->entries; 559aaa270c6SVladimir Oltean l2_fwd_params->part_spc[0] = max_mem; 560aaa270c6SVladimir Oltean 561aaa270c6SVladimir Oltean /* If we have any critical-traffic virtual links, we need to reserve 562aaa270c6SVladimir Oltean * some frame buffer memory for them. At the moment, hardcode the value 563aaa270c6SVladimir Oltean * at 100 blocks of 128 bytes of memory each. This leaves 829 blocks 564aaa270c6SVladimir Oltean * remaining for best-effort traffic. TODO: figure out a more flexible 565aaa270c6SVladimir Oltean * way to perform the frame buffer partitioning. 566aaa270c6SVladimir Oltean */ 567aaa270c6SVladimir Oltean if (!priv->static_config.tables[BLK_IDX_VL_FORWARDING].entry_count) 568aaa270c6SVladimir Oltean return; 569aaa270c6SVladimir Oltean 570aaa270c6SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VL_FORWARDING_PARAMS]; 571aaa270c6SVladimir Oltean vl_fwd_params = table->entries; 572aaa270c6SVladimir Oltean 573aaa270c6SVladimir Oltean l2_fwd_params->part_spc[0] -= SJA1105_VL_FRAME_MEMORY; 574aaa270c6SVladimir Oltean vl_fwd_params->partspc[0] = SJA1105_VL_FRAME_MEMORY; 575aaa270c6SVladimir Oltean } 576aaa270c6SVladimir Oltean 577ceec8bc0SVladimir Oltean /* SJA1110 TDMACONFIGIDX values: 578ceec8bc0SVladimir Oltean * 579ceec8bc0SVladimir Oltean * | 100 Mbps ports | 1Gbps ports | 2.5Gbps ports | Disabled ports 580ceec8bc0SVladimir Oltean * -----+----------------+---------------+---------------+--------------- 581ceec8bc0SVladimir Oltean * 0 | 0, [5:10] | [1:2] | [3:4] | retag 582ceec8bc0SVladimir Oltean * 1 |0, [5:10], retag| [1:2] | [3:4] | - 583ceec8bc0SVladimir Oltean * 2 | 0, [5:10] | [1:3], retag | 4 | - 584ceec8bc0SVladimir Oltean * 3 | 0, [5:10] |[1:2], 4, retag| 3 | - 585ceec8bc0SVladimir Oltean * 4 | 0, 2, [5:10] | 1, retag | [3:4] | - 586ceec8bc0SVladimir Oltean * 5 | 0, 1, [5:10] | 2, retag | [3:4] | - 587ceec8bc0SVladimir Oltean * 14 | 0, [5:10] | [1:4], retag | - | - 588ceec8bc0SVladimir Oltean * 15 | [5:10] | [0:4], retag | - | - 589ceec8bc0SVladimir Oltean */ 590ceec8bc0SVladimir Oltean static void sja1110_select_tdmaconfigidx(struct sja1105_private *priv) 591ceec8bc0SVladimir Oltean { 592ceec8bc0SVladimir Oltean struct sja1105_general_params_entry *general_params; 593ceec8bc0SVladimir Oltean struct sja1105_table *table; 594ceec8bc0SVladimir Oltean bool port_1_is_base_tx; 595ceec8bc0SVladimir Oltean bool port_3_is_2500; 596ceec8bc0SVladimir Oltean bool port_4_is_2500; 597ceec8bc0SVladimir Oltean u64 tdmaconfigidx; 598ceec8bc0SVladimir Oltean 599ceec8bc0SVladimir Oltean if (priv->info->device_id != SJA1110_DEVICE_ID) 600ceec8bc0SVladimir Oltean return; 601ceec8bc0SVladimir Oltean 602ceec8bc0SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 603ceec8bc0SVladimir Oltean general_params = table->entries; 604ceec8bc0SVladimir Oltean 605ceec8bc0SVladimir Oltean /* All the settings below are "as opposed to SGMII", which is the 606ceec8bc0SVladimir Oltean * other pinmuxing option. 607ceec8bc0SVladimir Oltean */ 608ceec8bc0SVladimir Oltean port_1_is_base_tx = priv->phy_mode[1] == PHY_INTERFACE_MODE_INTERNAL; 609ceec8bc0SVladimir Oltean port_3_is_2500 = priv->phy_mode[3] == PHY_INTERFACE_MODE_2500BASEX; 610ceec8bc0SVladimir Oltean port_4_is_2500 = priv->phy_mode[4] == PHY_INTERFACE_MODE_2500BASEX; 611ceec8bc0SVladimir Oltean 612ceec8bc0SVladimir Oltean if (port_1_is_base_tx) 613ceec8bc0SVladimir Oltean /* Retagging port will operate at 1 Gbps */ 614ceec8bc0SVladimir Oltean tdmaconfigidx = 5; 615ceec8bc0SVladimir Oltean else if (port_3_is_2500 && port_4_is_2500) 616ceec8bc0SVladimir Oltean /* Retagging port will operate at 100 Mbps */ 617ceec8bc0SVladimir Oltean tdmaconfigidx = 1; 618ceec8bc0SVladimir Oltean else if (port_3_is_2500) 619ceec8bc0SVladimir Oltean /* Retagging port will operate at 1 Gbps */ 620ceec8bc0SVladimir Oltean tdmaconfigidx = 3; 621ceec8bc0SVladimir Oltean else if (port_4_is_2500) 622ceec8bc0SVladimir Oltean /* Retagging port will operate at 1 Gbps */ 623ceec8bc0SVladimir Oltean tdmaconfigidx = 2; 624ceec8bc0SVladimir Oltean else 625ceec8bc0SVladimir Oltean /* Retagging port will operate at 1 Gbps */ 626ceec8bc0SVladimir Oltean tdmaconfigidx = 14; 627ceec8bc0SVladimir Oltean 628ceec8bc0SVladimir Oltean general_params->tdmaconfigidx = tdmaconfigidx; 629ceec8bc0SVladimir Oltean } 630ceec8bc0SVladimir Oltean 6318aa9ebccSVladimir Oltean static int sja1105_init_general_params(struct sja1105_private *priv) 6328aa9ebccSVladimir Oltean { 6338aa9ebccSVladimir Oltean struct sja1105_general_params_entry default_general_params = { 634511e6ca0SVladimir Oltean /* Allow dynamic changing of the mirror port */ 635511e6ca0SVladimir Oltean .mirr_ptacu = true, 6368aa9ebccSVladimir Oltean .switchid = priv->ds->index, 6375f06c63bSVladimir Oltean /* Priority queue for link-local management frames 6385f06c63bSVladimir Oltean * (both ingress to and egress from CPU - PTP, STP etc) 6395f06c63bSVladimir Oltean */ 64008fde09aSVladimir Oltean .hostprio = 7, 6418aa9ebccSVladimir Oltean .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A, 6428aa9ebccSVladimir Oltean .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK, 64342824463SVladimir Oltean .incl_srcpt1 = false, 6448aa9ebccSVladimir Oltean .send_meta1 = false, 6458aa9ebccSVladimir Oltean .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B, 6468aa9ebccSVladimir Oltean .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK, 64742824463SVladimir Oltean .incl_srcpt0 = false, 6488aa9ebccSVladimir Oltean .send_meta0 = false, 6498aa9ebccSVladimir Oltean /* The destination for traffic matching mac_fltres1 and 6508aa9ebccSVladimir Oltean * mac_fltres0 on all ports except host_port. Such traffic 6518aa9ebccSVladimir Oltean * receieved on host_port itself would be dropped, except 6528aa9ebccSVladimir Oltean * by installing a temporary 'management route' 6538aa9ebccSVladimir Oltean */ 654df2a81a3SVladimir Oltean .host_port = priv->ds->num_ports, 655511e6ca0SVladimir Oltean /* Default to an invalid value */ 656542043e9SVladimir Oltean .mirr_port = priv->ds->num_ports, 6578aa9ebccSVladimir Oltean /* No TTEthernet */ 658dfacc5a2SVladimir Oltean .vllupformat = SJA1105_VL_FORMAT_PSFP, 6598aa9ebccSVladimir Oltean .vlmarker = 0, 6608aa9ebccSVladimir Oltean .vlmask = 0, 6618aa9ebccSVladimir Oltean /* Only update correctionField for 1-step PTP (L2 transport) */ 6628aa9ebccSVladimir Oltean .ignore2stf = 0, 6636666cebcSVladimir Oltean /* Forcefully disable VLAN filtering by telling 6646666cebcSVladimir Oltean * the switch that VLAN has a different EtherType. 6656666cebcSVladimir Oltean */ 6666666cebcSVladimir Oltean .tpid = ETH_P_SJA1105, 6676666cebcSVladimir Oltean .tpid2 = ETH_P_SJA1105, 66829305260SVladimir Oltean /* Enable the TTEthernet engine on SJA1110 */ 66929305260SVladimir Oltean .tte_en = true, 6704913b8ebSVladimir Oltean /* Set up the EtherType for control packets on SJA1110 */ 6714913b8ebSVladimir Oltean .header_type = ETH_P_SJA1110, 6728aa9ebccSVladimir Oltean }; 6736c0de59bSVladimir Oltean struct sja1105_general_params_entry *general_params; 674df2a81a3SVladimir Oltean struct dsa_switch *ds = priv->ds; 6758aa9ebccSVladimir Oltean struct sja1105_table *table; 676df2a81a3SVladimir Oltean int port; 677df2a81a3SVladimir Oltean 678df2a81a3SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 679df2a81a3SVladimir Oltean if (dsa_is_cpu_port(ds, port)) { 680df2a81a3SVladimir Oltean default_general_params.host_port = port; 681df2a81a3SVladimir Oltean break; 682df2a81a3SVladimir Oltean } 683df2a81a3SVladimir Oltean } 6848aa9ebccSVladimir Oltean 6858aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 6868aa9ebccSVladimir Oltean 6878aa9ebccSVladimir Oltean if (table->entry_count) { 6888aa9ebccSVladimir Oltean kfree(table->entries); 6898aa9ebccSVladimir Oltean table->entry_count = 0; 6908aa9ebccSVladimir Oltean } 6918aa9ebccSVladimir Oltean 692fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 6938aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 6948aa9ebccSVladimir Oltean if (!table->entries) 6958aa9ebccSVladimir Oltean return -ENOMEM; 6968aa9ebccSVladimir Oltean 697fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 6988aa9ebccSVladimir Oltean 6996c0de59bSVladimir Oltean general_params = table->entries; 7006c0de59bSVladimir Oltean 7018aa9ebccSVladimir Oltean /* This table only has a single entry */ 7026c0de59bSVladimir Oltean general_params[0] = default_general_params; 7038aa9ebccSVladimir Oltean 704ceec8bc0SVladimir Oltean sja1110_select_tdmaconfigidx(priv); 705ceec8bc0SVladimir Oltean 7066c0de59bSVladimir Oltean /* Link-local traffic received on casc_port will be forwarded 7076c0de59bSVladimir Oltean * to host_port without embedding the source port and device ID 7086c0de59bSVladimir Oltean * info in the destination MAC address, and no RX timestamps will be 7096c0de59bSVladimir Oltean * taken either (presumably because it is a cascaded port and a 7106c0de59bSVladimir Oltean * downstream SJA switch already did that). 7116c0de59bSVladimir Oltean * To disable the feature, we need to do different things depending on 7126c0de59bSVladimir Oltean * switch generation. On SJA1105 we need to set an invalid port, while 7136c0de59bSVladimir Oltean * on SJA1110 which support multiple cascaded ports, this field is a 7146c0de59bSVladimir Oltean * bitmask so it must be left zero. 7156c0de59bSVladimir Oltean */ 7166c0de59bSVladimir Oltean if (!priv->info->multiple_cascade_ports) 7176c0de59bSVladimir Oltean general_params->casc_port = ds->num_ports; 7186c0de59bSVladimir Oltean 7198aa9ebccSVladimir Oltean return 0; 7208aa9ebccSVladimir Oltean } 7218aa9ebccSVladimir Oltean 72279d5511cSVladimir Oltean static int sja1105_init_avb_params(struct sja1105_private *priv) 72379d5511cSVladimir Oltean { 72479d5511cSVladimir Oltean struct sja1105_avb_params_entry *avb; 72579d5511cSVladimir Oltean struct sja1105_table *table; 72679d5511cSVladimir Oltean 72779d5511cSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS]; 72879d5511cSVladimir Oltean 72979d5511cSVladimir Oltean /* Discard previous AVB Parameters Table */ 73079d5511cSVladimir Oltean if (table->entry_count) { 73179d5511cSVladimir Oltean kfree(table->entries); 73279d5511cSVladimir Oltean table->entry_count = 0; 73379d5511cSVladimir Oltean } 73479d5511cSVladimir Oltean 735fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 73679d5511cSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 73779d5511cSVladimir Oltean if (!table->entries) 73879d5511cSVladimir Oltean return -ENOMEM; 73979d5511cSVladimir Oltean 740fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 74179d5511cSVladimir Oltean 74279d5511cSVladimir Oltean avb = table->entries; 74379d5511cSVladimir Oltean 74479d5511cSVladimir Oltean /* Configure the MAC addresses for meta frames */ 74579d5511cSVladimir Oltean avb->destmeta = SJA1105_META_DMAC; 74679d5511cSVladimir Oltean avb->srcmeta = SJA1105_META_SMAC; 747747e5eb3SVladimir Oltean /* On P/Q/R/S, configure the direction of the PTP_CLK pin as input by 748747e5eb3SVladimir Oltean * default. This is because there might be boards with a hardware 749747e5eb3SVladimir Oltean * layout where enabling the pin as output might cause an electrical 750747e5eb3SVladimir Oltean * clash. On E/T the pin is always an output, which the board designers 751747e5eb3SVladimir Oltean * probably already knew, so even if there are going to be electrical 752747e5eb3SVladimir Oltean * issues, there's nothing we can do. 753747e5eb3SVladimir Oltean */ 754747e5eb3SVladimir Oltean avb->cas_master = false; 75579d5511cSVladimir Oltean 75679d5511cSVladimir Oltean return 0; 75779d5511cSVladimir Oltean } 75879d5511cSVladimir Oltean 759a7cc081cSVladimir Oltean /* The L2 policing table is 2-stage. The table is looked up for each frame 760a7cc081cSVladimir Oltean * according to the ingress port, whether it was broadcast or not, and the 761a7cc081cSVladimir Oltean * classified traffic class (given by VLAN PCP). This portion of the lookup is 762a7cc081cSVladimir Oltean * fixed, and gives access to the SHARINDX, an indirection register pointing 763a7cc081cSVladimir Oltean * within the policing table itself, which is used to resolve the policer that 764a7cc081cSVladimir Oltean * will be used for this frame. 765a7cc081cSVladimir Oltean * 766a7cc081cSVladimir Oltean * Stage 1 Stage 2 767a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 768a7cc081cSVladimir Oltean * |Port 0 TC 0 |SHARINDX| | Policer 0: Rate, Burst, MTU | 769a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 770a7cc081cSVladimir Oltean * |Port 0 TC 1 |SHARINDX| | Policer 1: Rate, Burst, MTU | 771a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 772a7cc081cSVladimir Oltean * ... | Policer 2: Rate, Burst, MTU | 773a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 774a7cc081cSVladimir Oltean * |Port 0 TC 7 |SHARINDX| | Policer 3: Rate, Burst, MTU | 775a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 776a7cc081cSVladimir Oltean * |Port 1 TC 0 |SHARINDX| | Policer 4: Rate, Burst, MTU | 777a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 778a7cc081cSVladimir Oltean * ... | Policer 5: Rate, Burst, MTU | 779a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 780a7cc081cSVladimir Oltean * |Port 1 TC 7 |SHARINDX| | Policer 6: Rate, Burst, MTU | 781a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 782a7cc081cSVladimir Oltean * ... | Policer 7: Rate, Burst, MTU | 783a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 784a7cc081cSVladimir Oltean * |Port 4 TC 7 |SHARINDX| ... 785a7cc081cSVladimir Oltean * +------------+--------+ 786a7cc081cSVladimir Oltean * |Port 0 BCAST|SHARINDX| ... 787a7cc081cSVladimir Oltean * +------------+--------+ 788a7cc081cSVladimir Oltean * |Port 1 BCAST|SHARINDX| ... 789a7cc081cSVladimir Oltean * +------------+--------+ 790a7cc081cSVladimir Oltean * ... ... 791a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 792a7cc081cSVladimir Oltean * |Port 4 BCAST|SHARINDX| | Policer 44: Rate, Burst, MTU | 793a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 794a7cc081cSVladimir Oltean * 795a7cc081cSVladimir Oltean * In this driver, we shall use policers 0-4 as statically alocated port 796a7cc081cSVladimir Oltean * (matchall) policers. So we need to make the SHARINDX for all lookups 797a7cc081cSVladimir Oltean * corresponding to this ingress port (8 VLAN PCP lookups and 1 broadcast 798a7cc081cSVladimir Oltean * lookup) equal. 799a7cc081cSVladimir Oltean * The remaining policers (40) shall be dynamically allocated for flower 800a7cc081cSVladimir Oltean * policers, where the key is either vlan_prio or dst_mac ff:ff:ff:ff:ff:ff. 801a7cc081cSVladimir Oltean */ 8028aa9ebccSVladimir Oltean #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000) 8038aa9ebccSVladimir Oltean 8048aa9ebccSVladimir Oltean static int sja1105_init_l2_policing(struct sja1105_private *priv) 8058aa9ebccSVladimir Oltean { 8068aa9ebccSVladimir Oltean struct sja1105_l2_policing_entry *policing; 807542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 8088aa9ebccSVladimir Oltean struct sja1105_table *table; 809a7cc081cSVladimir Oltean int port, tc; 8108aa9ebccSVladimir Oltean 8118aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_POLICING]; 8128aa9ebccSVladimir Oltean 8138aa9ebccSVladimir Oltean /* Discard previous L2 Policing Table */ 8148aa9ebccSVladimir Oltean if (table->entry_count) { 8158aa9ebccSVladimir Oltean kfree(table->entries); 8168aa9ebccSVladimir Oltean table->entry_count = 0; 8178aa9ebccSVladimir Oltean } 8188aa9ebccSVladimir Oltean 819fd6f2c25SVladimir Oltean table->entries = kcalloc(table->ops->max_entry_count, 8208aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 8218aa9ebccSVladimir Oltean if (!table->entries) 8228aa9ebccSVladimir Oltean return -ENOMEM; 8238aa9ebccSVladimir Oltean 824fd6f2c25SVladimir Oltean table->entry_count = table->ops->max_entry_count; 8258aa9ebccSVladimir Oltean 8268aa9ebccSVladimir Oltean policing = table->entries; 8278aa9ebccSVladimir Oltean 828a7cc081cSVladimir Oltean /* Setup shared indices for the matchall policers */ 829542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 83038fbe91fSVladimir Oltean int mcast = (ds->num_ports * (SJA1105_NUM_TC + 1)) + port; 831542043e9SVladimir Oltean int bcast = (ds->num_ports * SJA1105_NUM_TC) + port; 832a7cc081cSVladimir Oltean 833a7cc081cSVladimir Oltean for (tc = 0; tc < SJA1105_NUM_TC; tc++) 834a7cc081cSVladimir Oltean policing[port * SJA1105_NUM_TC + tc].sharindx = port; 835a7cc081cSVladimir Oltean 836a7cc081cSVladimir Oltean policing[bcast].sharindx = port; 83738fbe91fSVladimir Oltean /* Only SJA1110 has multicast policers */ 83838fbe91fSVladimir Oltean if (mcast <= table->ops->max_entry_count) 83938fbe91fSVladimir Oltean policing[mcast].sharindx = port; 840a7cc081cSVladimir Oltean } 841a7cc081cSVladimir Oltean 842a7cc081cSVladimir Oltean /* Setup the matchall policer parameters */ 843542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 844c279c726SVladimir Oltean int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN; 845c279c726SVladimir Oltean 846a7cc081cSVladimir Oltean if (dsa_is_cpu_port(priv->ds, port)) 847c279c726SVladimir Oltean mtu += VLAN_HLEN; 8488aa9ebccSVladimir Oltean 849a7cc081cSVladimir Oltean policing[port].smax = 65535; /* Burst size in bytes */ 850a7cc081cSVladimir Oltean policing[port].rate = SJA1105_RATE_MBPS(1000); 851a7cc081cSVladimir Oltean policing[port].maxlen = mtu; 852a7cc081cSVladimir Oltean policing[port].partition = 0; 8538aa9ebccSVladimir Oltean } 854a7cc081cSVladimir Oltean 8558aa9ebccSVladimir Oltean return 0; 8568aa9ebccSVladimir Oltean } 8578aa9ebccSVladimir Oltean 8585d645df9SVladimir Oltean static int sja1105_static_config_load(struct sja1105_private *priv) 8598aa9ebccSVladimir Oltean { 8608aa9ebccSVladimir Oltean int rc; 8618aa9ebccSVladimir Oltean 8628aa9ebccSVladimir Oltean sja1105_static_config_free(&priv->static_config); 8638aa9ebccSVladimir Oltean rc = sja1105_static_config_init(&priv->static_config, 8648aa9ebccSVladimir Oltean priv->info->static_ops, 8658aa9ebccSVladimir Oltean priv->info->device_id); 8668aa9ebccSVladimir Oltean if (rc) 8678aa9ebccSVladimir Oltean return rc; 8688aa9ebccSVladimir Oltean 8698aa9ebccSVladimir Oltean /* Build static configuration */ 8708aa9ebccSVladimir Oltean rc = sja1105_init_mac_settings(priv); 8718aa9ebccSVladimir Oltean if (rc < 0) 8728aa9ebccSVladimir Oltean return rc; 8735d645df9SVladimir Oltean rc = sja1105_init_mii_settings(priv); 8748aa9ebccSVladimir Oltean if (rc < 0) 8758aa9ebccSVladimir Oltean return rc; 8768aa9ebccSVladimir Oltean rc = sja1105_init_static_fdb(priv); 8778aa9ebccSVladimir Oltean if (rc < 0) 8788aa9ebccSVladimir Oltean return rc; 8798aa9ebccSVladimir Oltean rc = sja1105_init_static_vlan(priv); 8808aa9ebccSVladimir Oltean if (rc < 0) 8818aa9ebccSVladimir Oltean return rc; 8828aa9ebccSVladimir Oltean rc = sja1105_init_l2_lookup_params(priv); 8838aa9ebccSVladimir Oltean if (rc < 0) 8848aa9ebccSVladimir Oltean return rc; 8858aa9ebccSVladimir Oltean rc = sja1105_init_l2_forwarding(priv); 8868aa9ebccSVladimir Oltean if (rc < 0) 8878aa9ebccSVladimir Oltean return rc; 8888aa9ebccSVladimir Oltean rc = sja1105_init_l2_forwarding_params(priv); 8898aa9ebccSVladimir Oltean if (rc < 0) 8908aa9ebccSVladimir Oltean return rc; 8918aa9ebccSVladimir Oltean rc = sja1105_init_l2_policing(priv); 8928aa9ebccSVladimir Oltean if (rc < 0) 8938aa9ebccSVladimir Oltean return rc; 8948aa9ebccSVladimir Oltean rc = sja1105_init_general_params(priv); 8958aa9ebccSVladimir Oltean if (rc < 0) 8968aa9ebccSVladimir Oltean return rc; 89779d5511cSVladimir Oltean rc = sja1105_init_avb_params(priv); 89879d5511cSVladimir Oltean if (rc < 0) 89979d5511cSVladimir Oltean return rc; 9003e77e59bSVladimir Oltean rc = sja1110_init_pcp_remapping(priv); 9013e77e59bSVladimir Oltean if (rc < 0) 9023e77e59bSVladimir Oltean return rc; 9038aa9ebccSVladimir Oltean 9048aa9ebccSVladimir Oltean /* Send initial configuration to hardware via SPI */ 9058aa9ebccSVladimir Oltean return sja1105_static_config_upload(priv); 9068aa9ebccSVladimir Oltean } 9078aa9ebccSVladimir Oltean 90829afb83aSVladimir Oltean static int sja1105_parse_rgmii_delays(struct sja1105_private *priv) 909f5b8631cSVladimir Oltean { 910542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 91129afb83aSVladimir Oltean int port; 912f5b8631cSVladimir Oltean 91329afb83aSVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 91429afb83aSVladimir Oltean if (!priv->fixed_link[port]) 915f5b8631cSVladimir Oltean continue; 916f5b8631cSVladimir Oltean 91729afb83aSVladimir Oltean if (priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_RXID || 91829afb83aSVladimir Oltean priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_ID) 91929afb83aSVladimir Oltean priv->rgmii_rx_delay[port] = true; 920f5b8631cSVladimir Oltean 92129afb83aSVladimir Oltean if (priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_TXID || 92229afb83aSVladimir Oltean priv->phy_mode[port] == PHY_INTERFACE_MODE_RGMII_ID) 92329afb83aSVladimir Oltean priv->rgmii_tx_delay[port] = true; 924f5b8631cSVladimir Oltean 92529afb83aSVladimir Oltean if ((priv->rgmii_rx_delay[port] || priv->rgmii_tx_delay[port]) && 926f5b8631cSVladimir Oltean !priv->info->setup_rgmii_delay) 927f5b8631cSVladimir Oltean return -EINVAL; 928f5b8631cSVladimir Oltean } 929f5b8631cSVladimir Oltean return 0; 930f5b8631cSVladimir Oltean } 931f5b8631cSVladimir Oltean 9328aa9ebccSVladimir Oltean static int sja1105_parse_ports_node(struct sja1105_private *priv, 9338aa9ebccSVladimir Oltean struct device_node *ports_node) 9348aa9ebccSVladimir Oltean { 9358aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 9368aa9ebccSVladimir Oltean struct device_node *child; 9378aa9ebccSVladimir Oltean 93827afe0d3SVladimir Oltean for_each_available_child_of_node(ports_node, child) { 9398aa9ebccSVladimir Oltean struct device_node *phy_node; 9400c65b2b9SAndrew Lunn phy_interface_t phy_mode; 9418aa9ebccSVladimir Oltean u32 index; 9420c65b2b9SAndrew Lunn int err; 9438aa9ebccSVladimir Oltean 9448aa9ebccSVladimir Oltean /* Get switch port number from DT */ 9458aa9ebccSVladimir Oltean if (of_property_read_u32(child, "reg", &index) < 0) { 9468aa9ebccSVladimir Oltean dev_err(dev, "Port number not defined in device tree " 9478aa9ebccSVladimir Oltean "(property \"reg\")\n"); 9487ba771e3SNishka Dasgupta of_node_put(child); 9498aa9ebccSVladimir Oltean return -ENODEV; 9508aa9ebccSVladimir Oltean } 9518aa9ebccSVladimir Oltean 9528aa9ebccSVladimir Oltean /* Get PHY mode from DT */ 9530c65b2b9SAndrew Lunn err = of_get_phy_mode(child, &phy_mode); 9540c65b2b9SAndrew Lunn if (err) { 9558aa9ebccSVladimir Oltean dev_err(dev, "Failed to read phy-mode or " 9568aa9ebccSVladimir Oltean "phy-interface-type property for port %d\n", 9578aa9ebccSVladimir Oltean index); 9587ba771e3SNishka Dasgupta of_node_put(child); 9598aa9ebccSVladimir Oltean return -ENODEV; 9608aa9ebccSVladimir Oltean } 9618aa9ebccSVladimir Oltean 9628aa9ebccSVladimir Oltean phy_node = of_parse_phandle(child, "phy-handle", 0); 9638aa9ebccSVladimir Oltean if (!phy_node) { 9648aa9ebccSVladimir Oltean if (!of_phy_is_fixed_link(child)) { 9658aa9ebccSVladimir Oltean dev_err(dev, "phy-handle or fixed-link " 9668aa9ebccSVladimir Oltean "properties missing!\n"); 9677ba771e3SNishka Dasgupta of_node_put(child); 9688aa9ebccSVladimir Oltean return -ENODEV; 9698aa9ebccSVladimir Oltean } 9708aa9ebccSVladimir Oltean /* phy-handle is missing, but fixed-link isn't. 9718aa9ebccSVladimir Oltean * So it's a fixed link. Default to PHY role. 9728aa9ebccSVladimir Oltean */ 97329afb83aSVladimir Oltean priv->fixed_link[index] = true; 9748aa9ebccSVladimir Oltean } else { 9758aa9ebccSVladimir Oltean of_node_put(phy_node); 9768aa9ebccSVladimir Oltean } 9778aa9ebccSVladimir Oltean 978bf4edf4aSVladimir Oltean priv->phy_mode[index] = phy_mode; 9798aa9ebccSVladimir Oltean } 9808aa9ebccSVladimir Oltean 9818aa9ebccSVladimir Oltean return 0; 9828aa9ebccSVladimir Oltean } 9838aa9ebccSVladimir Oltean 9845d645df9SVladimir Oltean static int sja1105_parse_dt(struct sja1105_private *priv) 9858aa9ebccSVladimir Oltean { 9868aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 9878aa9ebccSVladimir Oltean struct device_node *switch_node = dev->of_node; 9888aa9ebccSVladimir Oltean struct device_node *ports_node; 9898aa9ebccSVladimir Oltean int rc; 9908aa9ebccSVladimir Oltean 9918aa9ebccSVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ports"); 99215074a36SVladimir Oltean if (!ports_node) 99315074a36SVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ethernet-ports"); 9948aa9ebccSVladimir Oltean if (!ports_node) { 9958aa9ebccSVladimir Oltean dev_err(dev, "Incorrect bindings: absent \"ports\" node\n"); 9968aa9ebccSVladimir Oltean return -ENODEV; 9978aa9ebccSVladimir Oltean } 9988aa9ebccSVladimir Oltean 9995d645df9SVladimir Oltean rc = sja1105_parse_ports_node(priv, ports_node); 10008aa9ebccSVladimir Oltean of_node_put(ports_node); 10018aa9ebccSVladimir Oltean 10028aa9ebccSVladimir Oltean return rc; 10038aa9ebccSVladimir Oltean } 10048aa9ebccSVladimir Oltean 1005c44d0535SVladimir Oltean /* Convert link speed from SJA1105 to ethtool encoding */ 100641fed17fSVladimir Oltean static int sja1105_port_speed_to_ethtool(struct sja1105_private *priv, 100741fed17fSVladimir Oltean u64 speed) 100841fed17fSVladimir Oltean { 100941fed17fSVladimir Oltean if (speed == priv->info->port_speed[SJA1105_SPEED_10MBPS]) 101041fed17fSVladimir Oltean return SPEED_10; 101141fed17fSVladimir Oltean if (speed == priv->info->port_speed[SJA1105_SPEED_100MBPS]) 101241fed17fSVladimir Oltean return SPEED_100; 101341fed17fSVladimir Oltean if (speed == priv->info->port_speed[SJA1105_SPEED_1000MBPS]) 101441fed17fSVladimir Oltean return SPEED_1000; 101541fed17fSVladimir Oltean if (speed == priv->info->port_speed[SJA1105_SPEED_2500MBPS]) 101641fed17fSVladimir Oltean return SPEED_2500; 101741fed17fSVladimir Oltean return SPEED_UNKNOWN; 101841fed17fSVladimir Oltean } 10198aa9ebccSVladimir Oltean 10208400cff6SVladimir Oltean /* Set link speed in the MAC configuration for a specific port. */ 10218aa9ebccSVladimir Oltean static int sja1105_adjust_port_config(struct sja1105_private *priv, int port, 10228400cff6SVladimir Oltean int speed_mbps) 10238aa9ebccSVladimir Oltean { 10248aa9ebccSVladimir Oltean struct sja1105_mac_config_entry *mac; 10258aa9ebccSVladimir Oltean struct device *dev = priv->ds->dev; 102641fed17fSVladimir Oltean u64 speed; 10278aa9ebccSVladimir Oltean int rc; 10288aa9ebccSVladimir Oltean 10298400cff6SVladimir Oltean /* On P/Q/R/S, one can read from the device via the MAC reconfiguration 10308400cff6SVladimir Oltean * tables. On E/T, MAC reconfig tables are not readable, only writable. 10318400cff6SVladimir Oltean * We have to *know* what the MAC looks like. For the sake of keeping 10328400cff6SVladimir Oltean * the code common, we'll use the static configuration tables as a 10338400cff6SVladimir Oltean * reasonable approximation for both E/T and P/Q/R/S. 10348400cff6SVladimir Oltean */ 10358aa9ebccSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 10368aa9ebccSVladimir Oltean 1037f4cfcfbdSVladimir Oltean switch (speed_mbps) { 1038c44d0535SVladimir Oltean case SPEED_UNKNOWN: 1039a979a0abSVladimir Oltean /* PHYLINK called sja1105_mac_config() to inform us about 1040a979a0abSVladimir Oltean * the state->interface, but AN has not completed and the 1041a979a0abSVladimir Oltean * speed is not yet valid. UM10944.pdf says that setting 1042a979a0abSVladimir Oltean * SJA1105_SPEED_AUTO at runtime disables the port, so that is 1043a979a0abSVladimir Oltean * ok for power consumption in case AN will never complete - 1044a979a0abSVladimir Oltean * otherwise PHYLINK should come back with a new update. 1045a979a0abSVladimir Oltean */ 104641fed17fSVladimir Oltean speed = priv->info->port_speed[SJA1105_SPEED_AUTO]; 1047f4cfcfbdSVladimir Oltean break; 1048c44d0535SVladimir Oltean case SPEED_10: 104941fed17fSVladimir Oltean speed = priv->info->port_speed[SJA1105_SPEED_10MBPS]; 1050f4cfcfbdSVladimir Oltean break; 1051c44d0535SVladimir Oltean case SPEED_100: 105241fed17fSVladimir Oltean speed = priv->info->port_speed[SJA1105_SPEED_100MBPS]; 1053f4cfcfbdSVladimir Oltean break; 1054c44d0535SVladimir Oltean case SPEED_1000: 105541fed17fSVladimir Oltean speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS]; 1056f4cfcfbdSVladimir Oltean break; 105756b63466SVladimir Oltean case SPEED_2500: 105856b63466SVladimir Oltean speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS]; 105956b63466SVladimir Oltean break; 1060f4cfcfbdSVladimir Oltean default: 10618aa9ebccSVladimir Oltean dev_err(dev, "Invalid speed %iMbps\n", speed_mbps); 10628aa9ebccSVladimir Oltean return -EINVAL; 10638aa9ebccSVladimir Oltean } 10648aa9ebccSVladimir Oltean 10658400cff6SVladimir Oltean /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration 10668400cff6SVladimir Oltean * table, since this will be used for the clocking setup, and we no 10678400cff6SVladimir Oltean * longer need to store it in the static config (already told hardware 10688400cff6SVladimir Oltean * we want auto during upload phase). 1069ffe10e67SVladimir Oltean * Actually for the SGMII port, the MAC is fixed at 1 Gbps and 1070ffe10e67SVladimir Oltean * we need to configure the PCS only (if even that). 10718aa9ebccSVladimir Oltean */ 107291a05078SVladimir Oltean if (priv->phy_mode[port] == PHY_INTERFACE_MODE_SGMII) 107341fed17fSVladimir Oltean mac[port].speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS]; 107456b63466SVladimir Oltean else if (priv->phy_mode[port] == PHY_INTERFACE_MODE_2500BASEX) 107556b63466SVladimir Oltean mac[port].speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS]; 1076ffe10e67SVladimir Oltean else 10778aa9ebccSVladimir Oltean mac[port].speed = speed; 10788aa9ebccSVladimir Oltean 10798aa9ebccSVladimir Oltean /* Write to the dynamic reconfiguration tables */ 10808400cff6SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 10818400cff6SVladimir Oltean &mac[port], true); 10828aa9ebccSVladimir Oltean if (rc < 0) { 10838aa9ebccSVladimir Oltean dev_err(dev, "Failed to write MAC config: %d\n", rc); 10848aa9ebccSVladimir Oltean return rc; 10858aa9ebccSVladimir Oltean } 10868aa9ebccSVladimir Oltean 10878aa9ebccSVladimir Oltean /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at 10888aa9ebccSVladimir Oltean * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and 10898aa9ebccSVladimir Oltean * RMII no change of the clock setup is required. Actually, changing 10908aa9ebccSVladimir Oltean * the clock setup does interrupt the clock signal for a certain time 10918aa9ebccSVladimir Oltean * which causes trouble for all PHYs relying on this signal. 10928aa9ebccSVladimir Oltean */ 109391a05078SVladimir Oltean if (!phy_interface_mode_is_rgmii(priv->phy_mode[port])) 10948aa9ebccSVladimir Oltean return 0; 10958aa9ebccSVladimir Oltean 10968aa9ebccSVladimir Oltean return sja1105_clocking_setup_port(priv, port); 10978aa9ebccSVladimir Oltean } 10988aa9ebccSVladimir Oltean 109939710229SVladimir Oltean /* The SJA1105 MAC programming model is through the static config (the xMII 110039710229SVladimir Oltean * Mode table cannot be dynamically reconfigured), and we have to program 110139710229SVladimir Oltean * that early (earlier than PHYLINK calls us, anyway). 110239710229SVladimir Oltean * So just error out in case the connected PHY attempts to change the initial 110339710229SVladimir Oltean * system interface MII protocol from what is defined in the DT, at least for 110439710229SVladimir Oltean * now. 110539710229SVladimir Oltean */ 110639710229SVladimir Oltean static bool sja1105_phy_mode_mismatch(struct sja1105_private *priv, int port, 110739710229SVladimir Oltean phy_interface_t interface) 110839710229SVladimir Oltean { 1109bf4edf4aSVladimir Oltean return priv->phy_mode[port] != interface; 111039710229SVladimir Oltean } 111139710229SVladimir Oltean 1112af7cd036SVladimir Oltean static void sja1105_mac_config(struct dsa_switch *ds, int port, 1113ffe10e67SVladimir Oltean unsigned int mode, 1114af7cd036SVladimir Oltean const struct phylink_link_state *state) 11158aa9ebccSVladimir Oltean { 11163ad1d171SVladimir Oltean struct dsa_port *dp = dsa_to_port(ds, port); 11178aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 11183ad1d171SVladimir Oltean struct dw_xpcs *xpcs; 11198aa9ebccSVladimir Oltean 1120ec8582d1SVladimir Oltean if (sja1105_phy_mode_mismatch(priv, port, state->interface)) { 1121ec8582d1SVladimir Oltean dev_err(ds->dev, "Changing PHY mode to %s not supported!\n", 1122ec8582d1SVladimir Oltean phy_modes(state->interface)); 112339710229SVladimir Oltean return; 1124ec8582d1SVladimir Oltean } 112539710229SVladimir Oltean 11263ad1d171SVladimir Oltean xpcs = priv->xpcs[port]; 1127ffe10e67SVladimir Oltean 11283ad1d171SVladimir Oltean if (xpcs) 11293ad1d171SVladimir Oltean phylink_set_pcs(dp->pl, &xpcs->pcs); 11308400cff6SVladimir Oltean } 11318400cff6SVladimir Oltean 11328400cff6SVladimir Oltean static void sja1105_mac_link_down(struct dsa_switch *ds, int port, 11338400cff6SVladimir Oltean unsigned int mode, 11348400cff6SVladimir Oltean phy_interface_t interface) 11358400cff6SVladimir Oltean { 11368400cff6SVladimir Oltean sja1105_inhibit_tx(ds->priv, BIT(port), true); 11378400cff6SVladimir Oltean } 11388400cff6SVladimir Oltean 11398400cff6SVladimir Oltean static void sja1105_mac_link_up(struct dsa_switch *ds, int port, 11408400cff6SVladimir Oltean unsigned int mode, 11418400cff6SVladimir Oltean phy_interface_t interface, 11425b502a7bSRussell King struct phy_device *phydev, 11435b502a7bSRussell King int speed, int duplex, 11445b502a7bSRussell King bool tx_pause, bool rx_pause) 11458400cff6SVladimir Oltean { 1146ec8582d1SVladimir Oltean struct sja1105_private *priv = ds->priv; 1147ec8582d1SVladimir Oltean 1148ec8582d1SVladimir Oltean sja1105_adjust_port_config(priv, port, speed); 1149ec8582d1SVladimir Oltean 1150ec8582d1SVladimir Oltean sja1105_inhibit_tx(priv, BIT(port), false); 11518aa9ebccSVladimir Oltean } 11528aa9ebccSVladimir Oltean 1153ad9f299aSVladimir Oltean static void sja1105_phylink_validate(struct dsa_switch *ds, int port, 1154ad9f299aSVladimir Oltean unsigned long *supported, 1155ad9f299aSVladimir Oltean struct phylink_link_state *state) 1156ad9f299aSVladimir Oltean { 1157ad9f299aSVladimir Oltean /* Construct a new mask which exhaustively contains all link features 1158ad9f299aSVladimir Oltean * supported by the MAC, and then apply that (logical AND) to what will 1159ad9f299aSVladimir Oltean * be sent to the PHY for "marketing". 1160ad9f299aSVladimir Oltean */ 1161ad9f299aSVladimir Oltean __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, }; 1162ad9f299aSVladimir Oltean struct sja1105_private *priv = ds->priv; 1163ad9f299aSVladimir Oltean struct sja1105_xmii_params_entry *mii; 1164ad9f299aSVladimir Oltean 1165ad9f299aSVladimir Oltean mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 1166ad9f299aSVladimir Oltean 116739710229SVladimir Oltean /* include/linux/phylink.h says: 116839710229SVladimir Oltean * When @state->interface is %PHY_INTERFACE_MODE_NA, phylink 116939710229SVladimir Oltean * expects the MAC driver to return all supported link modes. 117039710229SVladimir Oltean */ 117139710229SVladimir Oltean if (state->interface != PHY_INTERFACE_MODE_NA && 117239710229SVladimir Oltean sja1105_phy_mode_mismatch(priv, port, state->interface)) { 117339710229SVladimir Oltean bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS); 117439710229SVladimir Oltean return; 117539710229SVladimir Oltean } 117639710229SVladimir Oltean 1177ad9f299aSVladimir Oltean /* The MAC does not support pause frames, and also doesn't 1178ad9f299aSVladimir Oltean * support half-duplex traffic modes. 1179ad9f299aSVladimir Oltean */ 1180ad9f299aSVladimir Oltean phylink_set(mask, Autoneg); 1181ad9f299aSVladimir Oltean phylink_set(mask, MII); 1182ad9f299aSVladimir Oltean phylink_set(mask, 10baseT_Full); 1183ad9f299aSVladimir Oltean phylink_set(mask, 100baseT_Full); 1184ca68e138SOleksij Rempel phylink_set(mask, 100baseT1_Full); 1185ffe10e67SVladimir Oltean if (mii->xmii_mode[port] == XMII_MODE_RGMII || 1186ffe10e67SVladimir Oltean mii->xmii_mode[port] == XMII_MODE_SGMII) 1187ad9f299aSVladimir Oltean phylink_set(mask, 1000baseT_Full); 118856b63466SVladimir Oltean if (priv->info->supports_2500basex[port]) { 118956b63466SVladimir Oltean phylink_set(mask, 2500baseT_Full); 119056b63466SVladimir Oltean phylink_set(mask, 2500baseX_Full); 119156b63466SVladimir Oltean } 1192ad9f299aSVladimir Oltean 1193ad9f299aSVladimir Oltean bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS); 1194ad9f299aSVladimir Oltean bitmap_and(state->advertising, state->advertising, mask, 1195ad9f299aSVladimir Oltean __ETHTOOL_LINK_MODE_MASK_NBITS); 1196ad9f299aSVladimir Oltean } 1197ad9f299aSVladimir Oltean 119860f6053fSVladimir Oltean static int 119960f6053fSVladimir Oltean sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port, 120060f6053fSVladimir Oltean const struct sja1105_l2_lookup_entry *requested) 120160f6053fSVladimir Oltean { 120260f6053fSVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 120360f6053fSVladimir Oltean struct sja1105_table *table; 120460f6053fSVladimir Oltean int i; 120560f6053fSVladimir Oltean 120660f6053fSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 120760f6053fSVladimir Oltean l2_lookup = table->entries; 120860f6053fSVladimir Oltean 120960f6053fSVladimir Oltean for (i = 0; i < table->entry_count; i++) 121060f6053fSVladimir Oltean if (l2_lookup[i].macaddr == requested->macaddr && 121160f6053fSVladimir Oltean l2_lookup[i].vlanid == requested->vlanid && 121260f6053fSVladimir Oltean l2_lookup[i].destports & BIT(port)) 121360f6053fSVladimir Oltean return i; 121460f6053fSVladimir Oltean 121560f6053fSVladimir Oltean return -1; 121660f6053fSVladimir Oltean } 121760f6053fSVladimir Oltean 121860f6053fSVladimir Oltean /* We want FDB entries added statically through the bridge command to persist 121960f6053fSVladimir Oltean * across switch resets, which are a common thing during normal SJA1105 122060f6053fSVladimir Oltean * operation. So we have to back them up in the static configuration tables 122160f6053fSVladimir Oltean * and hence apply them on next static config upload... yay! 122260f6053fSVladimir Oltean */ 122360f6053fSVladimir Oltean static int 122460f6053fSVladimir Oltean sja1105_static_fdb_change(struct sja1105_private *priv, int port, 122560f6053fSVladimir Oltean const struct sja1105_l2_lookup_entry *requested, 122660f6053fSVladimir Oltean bool keep) 122760f6053fSVladimir Oltean { 122860f6053fSVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 122960f6053fSVladimir Oltean struct sja1105_table *table; 123060f6053fSVladimir Oltean int rc, match; 123160f6053fSVladimir Oltean 123260f6053fSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 123360f6053fSVladimir Oltean 123460f6053fSVladimir Oltean match = sja1105_find_static_fdb_entry(priv, port, requested); 123560f6053fSVladimir Oltean if (match < 0) { 123660f6053fSVladimir Oltean /* Can't delete a missing entry. */ 123760f6053fSVladimir Oltean if (!keep) 123860f6053fSVladimir Oltean return 0; 123960f6053fSVladimir Oltean 124060f6053fSVladimir Oltean /* No match => new entry */ 124160f6053fSVladimir Oltean rc = sja1105_table_resize(table, table->entry_count + 1); 124260f6053fSVladimir Oltean if (rc) 124360f6053fSVladimir Oltean return rc; 124460f6053fSVladimir Oltean 124560f6053fSVladimir Oltean match = table->entry_count - 1; 124660f6053fSVladimir Oltean } 124760f6053fSVladimir Oltean 124860f6053fSVladimir Oltean /* Assign pointer after the resize (it may be new memory) */ 124960f6053fSVladimir Oltean l2_lookup = table->entries; 125060f6053fSVladimir Oltean 125160f6053fSVladimir Oltean /* We have a match. 125260f6053fSVladimir Oltean * If the job was to add this FDB entry, it's already done (mostly 125360f6053fSVladimir Oltean * anyway, since the port forwarding mask may have changed, case in 125460f6053fSVladimir Oltean * which we update it). 125560f6053fSVladimir Oltean * Otherwise we have to delete it. 125660f6053fSVladimir Oltean */ 125760f6053fSVladimir Oltean if (keep) { 125860f6053fSVladimir Oltean l2_lookup[match] = *requested; 125960f6053fSVladimir Oltean return 0; 126060f6053fSVladimir Oltean } 126160f6053fSVladimir Oltean 126260f6053fSVladimir Oltean /* To remove, the strategy is to overwrite the element with 126360f6053fSVladimir Oltean * the last one, and then reduce the array size by 1 126460f6053fSVladimir Oltean */ 126560f6053fSVladimir Oltean l2_lookup[match] = l2_lookup[table->entry_count - 1]; 126660f6053fSVladimir Oltean return sja1105_table_resize(table, table->entry_count - 1); 126760f6053fSVladimir Oltean } 126860f6053fSVladimir Oltean 1269291d1e72SVladimir Oltean /* First-generation switches have a 4-way set associative TCAM that 1270291d1e72SVladimir Oltean * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of 1271291d1e72SVladimir Oltean * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin). 1272291d1e72SVladimir Oltean * For the placement of a newly learnt FDB entry, the switch selects the bin 1273291d1e72SVladimir Oltean * based on a hash function, and the way within that bin incrementally. 1274291d1e72SVladimir Oltean */ 127509c1b412SVladimir Oltean static int sja1105et_fdb_index(int bin, int way) 1276291d1e72SVladimir Oltean { 1277291d1e72SVladimir Oltean return bin * SJA1105ET_FDB_BIN_SIZE + way; 1278291d1e72SVladimir Oltean } 1279291d1e72SVladimir Oltean 12809dfa6911SVladimir Oltean static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin, 1281291d1e72SVladimir Oltean const u8 *addr, u16 vid, 1282291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry *match, 1283291d1e72SVladimir Oltean int *last_unused) 1284291d1e72SVladimir Oltean { 1285291d1e72SVladimir Oltean int way; 1286291d1e72SVladimir Oltean 1287291d1e72SVladimir Oltean for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) { 1288291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1289291d1e72SVladimir Oltean int index = sja1105et_fdb_index(bin, way); 1290291d1e72SVladimir Oltean 1291291d1e72SVladimir Oltean /* Skip unused entries, optionally marking them 1292291d1e72SVladimir Oltean * into the return value 1293291d1e72SVladimir Oltean */ 1294291d1e72SVladimir Oltean if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 1295291d1e72SVladimir Oltean index, &l2_lookup)) { 1296291d1e72SVladimir Oltean if (last_unused) 1297291d1e72SVladimir Oltean *last_unused = way; 1298291d1e72SVladimir Oltean continue; 1299291d1e72SVladimir Oltean } 1300291d1e72SVladimir Oltean 1301291d1e72SVladimir Oltean if (l2_lookup.macaddr == ether_addr_to_u64(addr) && 1302291d1e72SVladimir Oltean l2_lookup.vlanid == vid) { 1303291d1e72SVladimir Oltean if (match) 1304291d1e72SVladimir Oltean *match = l2_lookup; 1305291d1e72SVladimir Oltean return way; 1306291d1e72SVladimir Oltean } 1307291d1e72SVladimir Oltean } 1308291d1e72SVladimir Oltean /* Return an invalid entry index if not found */ 1309291d1e72SVladimir Oltean return -1; 1310291d1e72SVladimir Oltean } 1311291d1e72SVladimir Oltean 13129dfa6911SVladimir Oltean int sja1105et_fdb_add(struct dsa_switch *ds, int port, 1313291d1e72SVladimir Oltean const unsigned char *addr, u16 vid) 1314291d1e72SVladimir Oltean { 1315291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1316291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 1317291d1e72SVladimir Oltean struct device *dev = ds->dev; 1318291d1e72SVladimir Oltean int last_unused = -1; 131960f6053fSVladimir Oltean int bin, way, rc; 1320291d1e72SVladimir Oltean 13219dfa6911SVladimir Oltean bin = sja1105et_fdb_hash(priv, addr, vid); 1322291d1e72SVladimir Oltean 13239dfa6911SVladimir Oltean way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 1324291d1e72SVladimir Oltean &l2_lookup, &last_unused); 1325291d1e72SVladimir Oltean if (way >= 0) { 1326291d1e72SVladimir Oltean /* We have an FDB entry. Is our port in the destination 1327291d1e72SVladimir Oltean * mask? If yes, we need to do nothing. If not, we need 1328291d1e72SVladimir Oltean * to rewrite the entry by adding this port to it. 1329291d1e72SVladimir Oltean */ 1330291d1e72SVladimir Oltean if (l2_lookup.destports & BIT(port)) 1331291d1e72SVladimir Oltean return 0; 1332291d1e72SVladimir Oltean l2_lookup.destports |= BIT(port); 1333291d1e72SVladimir Oltean } else { 1334291d1e72SVladimir Oltean int index = sja1105et_fdb_index(bin, way); 1335291d1e72SVladimir Oltean 1336291d1e72SVladimir Oltean /* We don't have an FDB entry. We construct a new one and 1337291d1e72SVladimir Oltean * try to find a place for it within the FDB table. 1338291d1e72SVladimir Oltean */ 1339291d1e72SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 1340291d1e72SVladimir Oltean l2_lookup.destports = BIT(port); 1341291d1e72SVladimir Oltean l2_lookup.vlanid = vid; 1342291d1e72SVladimir Oltean 1343291d1e72SVladimir Oltean if (last_unused >= 0) { 1344291d1e72SVladimir Oltean way = last_unused; 1345291d1e72SVladimir Oltean } else { 1346291d1e72SVladimir Oltean /* Bin is full, need to evict somebody. 1347291d1e72SVladimir Oltean * Choose victim at random. If you get these messages 1348291d1e72SVladimir Oltean * often, you may need to consider changing the 1349291d1e72SVladimir Oltean * distribution function: 1350291d1e72SVladimir Oltean * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly 1351291d1e72SVladimir Oltean */ 1352291d1e72SVladimir Oltean get_random_bytes(&way, sizeof(u8)); 1353291d1e72SVladimir Oltean way %= SJA1105ET_FDB_BIN_SIZE; 1354291d1e72SVladimir Oltean dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n", 1355291d1e72SVladimir Oltean bin, addr, way); 1356291d1e72SVladimir Oltean /* Evict entry */ 1357291d1e72SVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 1358291d1e72SVladimir Oltean index, NULL, false); 1359291d1e72SVladimir Oltean } 1360291d1e72SVladimir Oltean } 1361291d1e72SVladimir Oltean l2_lookup.index = sja1105et_fdb_index(bin, way); 1362291d1e72SVladimir Oltean 136360f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 1364291d1e72SVladimir Oltean l2_lookup.index, &l2_lookup, 1365291d1e72SVladimir Oltean true); 136660f6053fSVladimir Oltean if (rc < 0) 136760f6053fSVladimir Oltean return rc; 136860f6053fSVladimir Oltean 136960f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, true); 1370291d1e72SVladimir Oltean } 1371291d1e72SVladimir Oltean 13729dfa6911SVladimir Oltean int sja1105et_fdb_del(struct dsa_switch *ds, int port, 1373291d1e72SVladimir Oltean const unsigned char *addr, u16 vid) 1374291d1e72SVladimir Oltean { 1375291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1376291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 137760f6053fSVladimir Oltean int index, bin, way, rc; 1378291d1e72SVladimir Oltean bool keep; 1379291d1e72SVladimir Oltean 13809dfa6911SVladimir Oltean bin = sja1105et_fdb_hash(priv, addr, vid); 13819dfa6911SVladimir Oltean way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 1382291d1e72SVladimir Oltean &l2_lookup, NULL); 1383291d1e72SVladimir Oltean if (way < 0) 1384291d1e72SVladimir Oltean return 0; 1385291d1e72SVladimir Oltean index = sja1105et_fdb_index(bin, way); 1386291d1e72SVladimir Oltean 1387291d1e72SVladimir Oltean /* We have an FDB entry. Is our port in the destination mask? If yes, 1388291d1e72SVladimir Oltean * we need to remove it. If the resulting port mask becomes empty, we 1389291d1e72SVladimir Oltean * need to completely evict the FDB entry. 1390291d1e72SVladimir Oltean * Otherwise we just write it back. 1391291d1e72SVladimir Oltean */ 1392291d1e72SVladimir Oltean l2_lookup.destports &= ~BIT(port); 13937752e937SVladimir Oltean 1394291d1e72SVladimir Oltean if (l2_lookup.destports) 1395291d1e72SVladimir Oltean keep = true; 1396291d1e72SVladimir Oltean else 1397291d1e72SVladimir Oltean keep = false; 1398291d1e72SVladimir Oltean 139960f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 1400291d1e72SVladimir Oltean index, &l2_lookup, keep); 140160f6053fSVladimir Oltean if (rc < 0) 140260f6053fSVladimir Oltean return rc; 140360f6053fSVladimir Oltean 140460f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, keep); 1405291d1e72SVladimir Oltean } 1406291d1e72SVladimir Oltean 14079dfa6911SVladimir Oltean int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port, 14089dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 14099dfa6911SVladimir Oltean { 14101da73821SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 14111da73821SVladimir Oltean struct sja1105_private *priv = ds->priv; 14121da73821SVladimir Oltean int rc, i; 14131da73821SVladimir Oltean 14141da73821SVladimir Oltean /* Search for an existing entry in the FDB table */ 14151da73821SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 14161da73821SVladimir Oltean l2_lookup.vlanid = vid; 14171da73821SVladimir Oltean l2_lookup.iotag = SJA1105_S_TAG; 14181da73821SVladimir Oltean l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0); 14197f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_UNAWARE) { 14201da73821SVladimir Oltean l2_lookup.mask_vlanid = VLAN_VID_MASK; 14211da73821SVladimir Oltean l2_lookup.mask_iotag = BIT(0); 14226d7c7d94SVladimir Oltean } else { 14236d7c7d94SVladimir Oltean l2_lookup.mask_vlanid = 0; 14246d7c7d94SVladimir Oltean l2_lookup.mask_iotag = 0; 14256d7c7d94SVladimir Oltean } 14261da73821SVladimir Oltean l2_lookup.destports = BIT(port); 14271da73821SVladimir Oltean 14281da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 14291da73821SVladimir Oltean SJA1105_SEARCH, &l2_lookup); 14301da73821SVladimir Oltean if (rc == 0) { 14311da73821SVladimir Oltean /* Found and this port is already in the entry's 14321da73821SVladimir Oltean * port mask => job done 14331da73821SVladimir Oltean */ 14341da73821SVladimir Oltean if (l2_lookup.destports & BIT(port)) 14351da73821SVladimir Oltean return 0; 14361da73821SVladimir Oltean /* l2_lookup.index is populated by the switch in case it 14371da73821SVladimir Oltean * found something. 14381da73821SVladimir Oltean */ 14391da73821SVladimir Oltean l2_lookup.destports |= BIT(port); 14401da73821SVladimir Oltean goto skip_finding_an_index; 14411da73821SVladimir Oltean } 14421da73821SVladimir Oltean 14431da73821SVladimir Oltean /* Not found, so try to find an unused spot in the FDB. 14441da73821SVladimir Oltean * This is slightly inefficient because the strategy is knock-knock at 14451da73821SVladimir Oltean * every possible position from 0 to 1023. 14461da73821SVladimir Oltean */ 14471da73821SVladimir Oltean for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { 14481da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 14491da73821SVladimir Oltean i, NULL); 14501da73821SVladimir Oltean if (rc < 0) 14511da73821SVladimir Oltean break; 14521da73821SVladimir Oltean } 14531da73821SVladimir Oltean if (i == SJA1105_MAX_L2_LOOKUP_COUNT) { 14541da73821SVladimir Oltean dev_err(ds->dev, "FDB is full, cannot add entry.\n"); 14551da73821SVladimir Oltean return -EINVAL; 14561da73821SVladimir Oltean } 145717ae6555SVladimir Oltean l2_lookup.lockeds = true; 14581da73821SVladimir Oltean l2_lookup.index = i; 14591da73821SVladimir Oltean 14601da73821SVladimir Oltean skip_finding_an_index: 146160f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 14621da73821SVladimir Oltean l2_lookup.index, &l2_lookup, 14631da73821SVladimir Oltean true); 146460f6053fSVladimir Oltean if (rc < 0) 146560f6053fSVladimir Oltean return rc; 146660f6053fSVladimir Oltean 146760f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, true); 14689dfa6911SVladimir Oltean } 14699dfa6911SVladimir Oltean 14709dfa6911SVladimir Oltean int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port, 14719dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 14729dfa6911SVladimir Oltean { 14731da73821SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 14741da73821SVladimir Oltean struct sja1105_private *priv = ds->priv; 14751da73821SVladimir Oltean bool keep; 14761da73821SVladimir Oltean int rc; 14771da73821SVladimir Oltean 14781da73821SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 14791da73821SVladimir Oltean l2_lookup.vlanid = vid; 14801da73821SVladimir Oltean l2_lookup.iotag = SJA1105_S_TAG; 14811da73821SVladimir Oltean l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0); 14827f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_UNAWARE) { 14831da73821SVladimir Oltean l2_lookup.mask_vlanid = VLAN_VID_MASK; 14841da73821SVladimir Oltean l2_lookup.mask_iotag = BIT(0); 14856d7c7d94SVladimir Oltean } else { 14866d7c7d94SVladimir Oltean l2_lookup.mask_vlanid = 0; 14876d7c7d94SVladimir Oltean l2_lookup.mask_iotag = 0; 14886d7c7d94SVladimir Oltean } 14891da73821SVladimir Oltean l2_lookup.destports = BIT(port); 14901da73821SVladimir Oltean 14911da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 14921da73821SVladimir Oltean SJA1105_SEARCH, &l2_lookup); 14931da73821SVladimir Oltean if (rc < 0) 14941da73821SVladimir Oltean return 0; 14951da73821SVladimir Oltean 14961da73821SVladimir Oltean l2_lookup.destports &= ~BIT(port); 14971da73821SVladimir Oltean 14981da73821SVladimir Oltean /* Decide whether we remove just this port from the FDB entry, 14991da73821SVladimir Oltean * or if we remove it completely. 15001da73821SVladimir Oltean */ 15011da73821SVladimir Oltean if (l2_lookup.destports) 15021da73821SVladimir Oltean keep = true; 15031da73821SVladimir Oltean else 15041da73821SVladimir Oltean keep = false; 15051da73821SVladimir Oltean 150660f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 15071da73821SVladimir Oltean l2_lookup.index, &l2_lookup, keep); 150860f6053fSVladimir Oltean if (rc < 0) 150960f6053fSVladimir Oltean return rc; 151060f6053fSVladimir Oltean 151160f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, keep); 15129dfa6911SVladimir Oltean } 15139dfa6911SVladimir Oltean 15149dfa6911SVladimir Oltean static int sja1105_fdb_add(struct dsa_switch *ds, int port, 15159dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 15169dfa6911SVladimir Oltean { 15179dfa6911SVladimir Oltean struct sja1105_private *priv = ds->priv; 1518b3ee526aSVladimir Oltean 15196d7c7d94SVladimir Oltean /* dsa_8021q is in effect when the bridge's vlan_filtering isn't, 15206d7c7d94SVladimir Oltean * so the switch still does some VLAN processing internally. 15216d7c7d94SVladimir Oltean * But Shared VLAN Learning (SVL) is also active, and it will take 15226d7c7d94SVladimir Oltean * care of autonomous forwarding between the unique pvid's of each 15236d7c7d94SVladimir Oltean * port. Here we just make sure that users can't add duplicate FDB 15246d7c7d94SVladimir Oltean * entries when in this mode - the actual VID doesn't matter except 15256d7c7d94SVladimir Oltean * for what gets printed in 'bridge fdb show'. In the case of zero, 15266d7c7d94SVladimir Oltean * no VID gets printed at all. 152793647594SVladimir Oltean */ 15287f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL) 15296d7c7d94SVladimir Oltean vid = 0; 153093647594SVladimir Oltean 15316d7c7d94SVladimir Oltean return priv->info->fdb_add_cmd(ds, port, addr, vid); 15329dfa6911SVladimir Oltean } 15339dfa6911SVladimir Oltean 15349dfa6911SVladimir Oltean static int sja1105_fdb_del(struct dsa_switch *ds, int port, 15359dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 15369dfa6911SVladimir Oltean { 15379dfa6911SVladimir Oltean struct sja1105_private *priv = ds->priv; 15389dfa6911SVladimir Oltean 15397f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL) 15406d7c7d94SVladimir Oltean vid = 0; 15416d7c7d94SVladimir Oltean 1542b3ee526aSVladimir Oltean return priv->info->fdb_del_cmd(ds, port, addr, vid); 15439dfa6911SVladimir Oltean } 15449dfa6911SVladimir Oltean 1545291d1e72SVladimir Oltean static int sja1105_fdb_dump(struct dsa_switch *ds, int port, 1546291d1e72SVladimir Oltean dsa_fdb_dump_cb_t *cb, void *data) 1547291d1e72SVladimir Oltean { 1548291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 1549291d1e72SVladimir Oltean struct device *dev = ds->dev; 1550291d1e72SVladimir Oltean int i; 1551291d1e72SVladimir Oltean 1552291d1e72SVladimir Oltean for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { 1553291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1554291d1e72SVladimir Oltean u8 macaddr[ETH_ALEN]; 1555291d1e72SVladimir Oltean int rc; 1556291d1e72SVladimir Oltean 1557291d1e72SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 1558291d1e72SVladimir Oltean i, &l2_lookup); 1559291d1e72SVladimir Oltean /* No fdb entry at i, not an issue */ 1560def84604SVladimir Oltean if (rc == -ENOENT) 1561291d1e72SVladimir Oltean continue; 1562291d1e72SVladimir Oltean if (rc) { 1563291d1e72SVladimir Oltean dev_err(dev, "Failed to dump FDB: %d\n", rc); 1564291d1e72SVladimir Oltean return rc; 1565291d1e72SVladimir Oltean } 1566291d1e72SVladimir Oltean 1567291d1e72SVladimir Oltean /* FDB dump callback is per port. This means we have to 1568291d1e72SVladimir Oltean * disregard a valid entry if it's not for this port, even if 1569291d1e72SVladimir Oltean * only to revisit it later. This is inefficient because the 1570291d1e72SVladimir Oltean * 1024-sized FDB table needs to be traversed 4 times through 1571291d1e72SVladimir Oltean * SPI during a 'bridge fdb show' command. 1572291d1e72SVladimir Oltean */ 1573291d1e72SVladimir Oltean if (!(l2_lookup.destports & BIT(port))) 1574291d1e72SVladimir Oltean continue; 15754d942354SVladimir Oltean 15764d942354SVladimir Oltean /* We need to hide the FDB entry for unknown multicast */ 15774d942354SVladimir Oltean if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST && 15784d942354SVladimir Oltean l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST) 15794d942354SVladimir Oltean continue; 15804d942354SVladimir Oltean 1581291d1e72SVladimir Oltean u64_to_ether_addr(l2_lookup.macaddr, macaddr); 158293647594SVladimir Oltean 15836d7c7d94SVladimir Oltean /* We need to hide the dsa_8021q VLANs from the user. */ 15847f14937fSVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_UNAWARE) 15856d7c7d94SVladimir Oltean l2_lookup.vlanid = 0; 158617ae6555SVladimir Oltean cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data); 1587291d1e72SVladimir Oltean } 1588291d1e72SVladimir Oltean return 0; 1589291d1e72SVladimir Oltean } 1590291d1e72SVladimir Oltean 1591a52b2da7SVladimir Oltean static int sja1105_mdb_add(struct dsa_switch *ds, int port, 1592291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1593291d1e72SVladimir Oltean { 1594a52b2da7SVladimir Oltean return sja1105_fdb_add(ds, port, mdb->addr, mdb->vid); 1595291d1e72SVladimir Oltean } 1596291d1e72SVladimir Oltean 1597291d1e72SVladimir Oltean static int sja1105_mdb_del(struct dsa_switch *ds, int port, 1598291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1599291d1e72SVladimir Oltean { 1600291d1e72SVladimir Oltean return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid); 1601291d1e72SVladimir Oltean } 1602291d1e72SVladimir Oltean 16037f7ccdeaSVladimir Oltean /* Common function for unicast and broadcast flood configuration. 16047f7ccdeaSVladimir Oltean * Flooding is configured between each {ingress, egress} port pair, and since 16057f7ccdeaSVladimir Oltean * the bridge's semantics are those of "egress flooding", it means we must 16067f7ccdeaSVladimir Oltean * enable flooding towards this port from all ingress ports that are in the 16077f7ccdeaSVladimir Oltean * same forwarding domain. 16087f7ccdeaSVladimir Oltean */ 16097f7ccdeaSVladimir Oltean static int sja1105_manage_flood_domains(struct sja1105_private *priv) 16107f7ccdeaSVladimir Oltean { 16117f7ccdeaSVladimir Oltean struct sja1105_l2_forwarding_entry *l2_fwd; 16127f7ccdeaSVladimir Oltean struct dsa_switch *ds = priv->ds; 16137f7ccdeaSVladimir Oltean int from, to, rc; 16147f7ccdeaSVladimir Oltean 16157f7ccdeaSVladimir Oltean l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries; 16167f7ccdeaSVladimir Oltean 16177f7ccdeaSVladimir Oltean for (from = 0; from < ds->num_ports; from++) { 16187f7ccdeaSVladimir Oltean u64 fl_domain = 0, bc_domain = 0; 16197f7ccdeaSVladimir Oltean 16207f7ccdeaSVladimir Oltean for (to = 0; to < priv->ds->num_ports; to++) { 16217f7ccdeaSVladimir Oltean if (!sja1105_can_forward(l2_fwd, from, to)) 16227f7ccdeaSVladimir Oltean continue; 16237f7ccdeaSVladimir Oltean 16247f7ccdeaSVladimir Oltean if (priv->ucast_egress_floods & BIT(to)) 16257f7ccdeaSVladimir Oltean fl_domain |= BIT(to); 16267f7ccdeaSVladimir Oltean if (priv->bcast_egress_floods & BIT(to)) 16277f7ccdeaSVladimir Oltean bc_domain |= BIT(to); 16287f7ccdeaSVladimir Oltean } 16297f7ccdeaSVladimir Oltean 16307f7ccdeaSVladimir Oltean /* Nothing changed, nothing to do */ 16317f7ccdeaSVladimir Oltean if (l2_fwd[from].fl_domain == fl_domain && 16327f7ccdeaSVladimir Oltean l2_fwd[from].bc_domain == bc_domain) 16337f7ccdeaSVladimir Oltean continue; 16347f7ccdeaSVladimir Oltean 16357f7ccdeaSVladimir Oltean l2_fwd[from].fl_domain = fl_domain; 16367f7ccdeaSVladimir Oltean l2_fwd[from].bc_domain = bc_domain; 16377f7ccdeaSVladimir Oltean 16387f7ccdeaSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 16397f7ccdeaSVladimir Oltean from, &l2_fwd[from], true); 16407f7ccdeaSVladimir Oltean if (rc < 0) 16417f7ccdeaSVladimir Oltean return rc; 16427f7ccdeaSVladimir Oltean } 16437f7ccdeaSVladimir Oltean 16447f7ccdeaSVladimir Oltean return 0; 16457f7ccdeaSVladimir Oltean } 16467f7ccdeaSVladimir Oltean 16478aa9ebccSVladimir Oltean static int sja1105_bridge_member(struct dsa_switch *ds, int port, 16488aa9ebccSVladimir Oltean struct net_device *br, bool member) 16498aa9ebccSVladimir Oltean { 16508aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_entry *l2_fwd; 16518aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 16528aa9ebccSVladimir Oltean int i, rc; 16538aa9ebccSVladimir Oltean 16548aa9ebccSVladimir Oltean l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries; 16558aa9ebccSVladimir Oltean 1656542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 16578aa9ebccSVladimir Oltean /* Add this port to the forwarding matrix of the 16588aa9ebccSVladimir Oltean * other ports in the same bridge, and viceversa. 16598aa9ebccSVladimir Oltean */ 16608aa9ebccSVladimir Oltean if (!dsa_is_user_port(ds, i)) 16618aa9ebccSVladimir Oltean continue; 16628aa9ebccSVladimir Oltean /* For the ports already under the bridge, only one thing needs 16638aa9ebccSVladimir Oltean * to be done, and that is to add this port to their 16648aa9ebccSVladimir Oltean * reachability domain. So we can perform the SPI write for 16658aa9ebccSVladimir Oltean * them immediately. However, for this port itself (the one 16668aa9ebccSVladimir Oltean * that is new to the bridge), we need to add all other ports 16678aa9ebccSVladimir Oltean * to its reachability domain. So we do that incrementally in 16688aa9ebccSVladimir Oltean * this loop, and perform the SPI write only at the end, once 16698aa9ebccSVladimir Oltean * the domain contains all other bridge ports. 16708aa9ebccSVladimir Oltean */ 16718aa9ebccSVladimir Oltean if (i == port) 16728aa9ebccSVladimir Oltean continue; 16738aa9ebccSVladimir Oltean if (dsa_to_port(ds, i)->bridge_dev != br) 16748aa9ebccSVladimir Oltean continue; 16758aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2_fwd, i, port, member); 16768aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2_fwd, port, i, member); 16778aa9ebccSVladimir Oltean 16788aa9ebccSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 16798aa9ebccSVladimir Oltean i, &l2_fwd[i], true); 16808aa9ebccSVladimir Oltean if (rc < 0) 16818aa9ebccSVladimir Oltean return rc; 16828aa9ebccSVladimir Oltean } 16838aa9ebccSVladimir Oltean 16847f7ccdeaSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 16858aa9ebccSVladimir Oltean port, &l2_fwd[port], true); 16867f7ccdeaSVladimir Oltean if (rc) 16877f7ccdeaSVladimir Oltean return rc; 16887f7ccdeaSVladimir Oltean 16897f7ccdeaSVladimir Oltean return sja1105_manage_flood_domains(priv); 16908aa9ebccSVladimir Oltean } 16918aa9ebccSVladimir Oltean 1692640f763fSVladimir Oltean static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port, 1693640f763fSVladimir Oltean u8 state) 1694640f763fSVladimir Oltean { 1695640f763fSVladimir Oltean struct sja1105_private *priv = ds->priv; 1696640f763fSVladimir Oltean struct sja1105_mac_config_entry *mac; 1697640f763fSVladimir Oltean 1698640f763fSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 1699640f763fSVladimir Oltean 1700640f763fSVladimir Oltean switch (state) { 1701640f763fSVladimir Oltean case BR_STATE_DISABLED: 1702640f763fSVladimir Oltean case BR_STATE_BLOCKING: 1703640f763fSVladimir Oltean /* From UM10944 description of DRPDTAG (why put this there?): 1704640f763fSVladimir Oltean * "Management traffic flows to the port regardless of the state 1705640f763fSVladimir Oltean * of the INGRESS flag". So BPDUs are still be allowed to pass. 1706640f763fSVladimir Oltean * At the moment no difference between DISABLED and BLOCKING. 1707640f763fSVladimir Oltean */ 1708640f763fSVladimir Oltean mac[port].ingress = false; 1709640f763fSVladimir Oltean mac[port].egress = false; 1710640f763fSVladimir Oltean mac[port].dyn_learn = false; 1711640f763fSVladimir Oltean break; 1712640f763fSVladimir Oltean case BR_STATE_LISTENING: 1713640f763fSVladimir Oltean mac[port].ingress = true; 1714640f763fSVladimir Oltean mac[port].egress = false; 1715640f763fSVladimir Oltean mac[port].dyn_learn = false; 1716640f763fSVladimir Oltean break; 1717640f763fSVladimir Oltean case BR_STATE_LEARNING: 1718640f763fSVladimir Oltean mac[port].ingress = true; 1719640f763fSVladimir Oltean mac[port].egress = false; 17204d942354SVladimir Oltean mac[port].dyn_learn = !!(priv->learn_ena & BIT(port)); 1721640f763fSVladimir Oltean break; 1722640f763fSVladimir Oltean case BR_STATE_FORWARDING: 1723640f763fSVladimir Oltean mac[port].ingress = true; 1724640f763fSVladimir Oltean mac[port].egress = true; 17254d942354SVladimir Oltean mac[port].dyn_learn = !!(priv->learn_ena & BIT(port)); 1726640f763fSVladimir Oltean break; 1727640f763fSVladimir Oltean default: 1728640f763fSVladimir Oltean dev_err(ds->dev, "invalid STP state: %d\n", state); 1729640f763fSVladimir Oltean return; 1730640f763fSVladimir Oltean } 1731640f763fSVladimir Oltean 1732640f763fSVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 1733640f763fSVladimir Oltean &mac[port], true); 1734640f763fSVladimir Oltean } 1735640f763fSVladimir Oltean 17368aa9ebccSVladimir Oltean static int sja1105_bridge_join(struct dsa_switch *ds, int port, 17378aa9ebccSVladimir Oltean struct net_device *br) 17388aa9ebccSVladimir Oltean { 17398aa9ebccSVladimir Oltean return sja1105_bridge_member(ds, port, br, true); 17408aa9ebccSVladimir Oltean } 17418aa9ebccSVladimir Oltean 17428aa9ebccSVladimir Oltean static void sja1105_bridge_leave(struct dsa_switch *ds, int port, 17438aa9ebccSVladimir Oltean struct net_device *br) 17448aa9ebccSVladimir Oltean { 17458aa9ebccSVladimir Oltean sja1105_bridge_member(ds, port, br, false); 17468aa9ebccSVladimir Oltean } 17478aa9ebccSVladimir Oltean 17484d752508SVladimir Oltean #define BYTES_PER_KBIT (1000LL / 8) 17494d752508SVladimir Oltean 17504d752508SVladimir Oltean static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv) 17514d752508SVladimir Oltean { 17524d752508SVladimir Oltean int i; 17534d752508SVladimir Oltean 17544d752508SVladimir Oltean for (i = 0; i < priv->info->num_cbs_shapers; i++) 17554d752508SVladimir Oltean if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope) 17564d752508SVladimir Oltean return i; 17574d752508SVladimir Oltean 17584d752508SVladimir Oltean return -1; 17594d752508SVladimir Oltean } 17604d752508SVladimir Oltean 17614d752508SVladimir Oltean static int sja1105_delete_cbs_shaper(struct sja1105_private *priv, int port, 17624d752508SVladimir Oltean int prio) 17634d752508SVladimir Oltean { 17644d752508SVladimir Oltean int i; 17654d752508SVladimir Oltean 17664d752508SVladimir Oltean for (i = 0; i < priv->info->num_cbs_shapers; i++) { 17674d752508SVladimir Oltean struct sja1105_cbs_entry *cbs = &priv->cbs[i]; 17684d752508SVladimir Oltean 17694d752508SVladimir Oltean if (cbs->port == port && cbs->prio == prio) { 17704d752508SVladimir Oltean memset(cbs, 0, sizeof(*cbs)); 17714d752508SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, 17724d752508SVladimir Oltean i, cbs, true); 17734d752508SVladimir Oltean } 17744d752508SVladimir Oltean } 17754d752508SVladimir Oltean 17764d752508SVladimir Oltean return 0; 17774d752508SVladimir Oltean } 17784d752508SVladimir Oltean 17794d752508SVladimir Oltean static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port, 17804d752508SVladimir Oltean struct tc_cbs_qopt_offload *offload) 17814d752508SVladimir Oltean { 17824d752508SVladimir Oltean struct sja1105_private *priv = ds->priv; 17834d752508SVladimir Oltean struct sja1105_cbs_entry *cbs; 17844d752508SVladimir Oltean int index; 17854d752508SVladimir Oltean 17864d752508SVladimir Oltean if (!offload->enable) 17874d752508SVladimir Oltean return sja1105_delete_cbs_shaper(priv, port, offload->queue); 17884d752508SVladimir Oltean 17894d752508SVladimir Oltean index = sja1105_find_unused_cbs_shaper(priv); 17904d752508SVladimir Oltean if (index < 0) 17914d752508SVladimir Oltean return -ENOSPC; 17924d752508SVladimir Oltean 17934d752508SVladimir Oltean cbs = &priv->cbs[index]; 17944d752508SVladimir Oltean cbs->port = port; 17954d752508SVladimir Oltean cbs->prio = offload->queue; 17964d752508SVladimir Oltean /* locredit and sendslope are negative by definition. In hardware, 17974d752508SVladimir Oltean * positive values must be provided, and the negative sign is implicit. 17984d752508SVladimir Oltean */ 17994d752508SVladimir Oltean cbs->credit_hi = offload->hicredit; 18004d752508SVladimir Oltean cbs->credit_lo = abs(offload->locredit); 18014d752508SVladimir Oltean /* User space is in kbits/sec, hardware in bytes/sec */ 18024d752508SVladimir Oltean cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT; 18034d752508SVladimir Oltean cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT); 18044d752508SVladimir Oltean /* Convert the negative values from 64-bit 2's complement 18054d752508SVladimir Oltean * to 32-bit 2's complement (for the case of 0x80000000 whose 18064d752508SVladimir Oltean * negative is still negative). 18074d752508SVladimir Oltean */ 18084d752508SVladimir Oltean cbs->credit_lo &= GENMASK_ULL(31, 0); 18094d752508SVladimir Oltean cbs->send_slope &= GENMASK_ULL(31, 0); 18104d752508SVladimir Oltean 18114d752508SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, index, cbs, 18124d752508SVladimir Oltean true); 18134d752508SVladimir Oltean } 18144d752508SVladimir Oltean 18154d752508SVladimir Oltean static int sja1105_reload_cbs(struct sja1105_private *priv) 18164d752508SVladimir Oltean { 18174d752508SVladimir Oltean int rc = 0, i; 18184d752508SVladimir Oltean 1819be7f62eeSVladimir Oltean /* The credit based shapers are only allocated if 1820be7f62eeSVladimir Oltean * CONFIG_NET_SCH_CBS is enabled. 1821be7f62eeSVladimir Oltean */ 1822be7f62eeSVladimir Oltean if (!priv->cbs) 1823be7f62eeSVladimir Oltean return 0; 1824be7f62eeSVladimir Oltean 18254d752508SVladimir Oltean for (i = 0; i < priv->info->num_cbs_shapers; i++) { 18264d752508SVladimir Oltean struct sja1105_cbs_entry *cbs = &priv->cbs[i]; 18274d752508SVladimir Oltean 18284d752508SVladimir Oltean if (!cbs->idle_slope && !cbs->send_slope) 18294d752508SVladimir Oltean continue; 18304d752508SVladimir Oltean 18314d752508SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_CBS, i, cbs, 18324d752508SVladimir Oltean true); 18334d752508SVladimir Oltean if (rc) 18344d752508SVladimir Oltean break; 18354d752508SVladimir Oltean } 18364d752508SVladimir Oltean 18374d752508SVladimir Oltean return rc; 18384d752508SVladimir Oltean } 18394d752508SVladimir Oltean 18402eea1fa8SVladimir Oltean static const char * const sja1105_reset_reasons[] = { 18412eea1fa8SVladimir Oltean [SJA1105_VLAN_FILTERING] = "VLAN filtering", 18422eea1fa8SVladimir Oltean [SJA1105_RX_HWTSTAMPING] = "RX timestamping", 18432eea1fa8SVladimir Oltean [SJA1105_AGEING_TIME] = "Ageing time", 18442eea1fa8SVladimir Oltean [SJA1105_SCHEDULING] = "Time-aware scheduling", 1845c279c726SVladimir Oltean [SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing", 1846dfacc5a2SVladimir Oltean [SJA1105_VIRTUAL_LINKS] = "Virtual links", 18472eea1fa8SVladimir Oltean }; 18482eea1fa8SVladimir Oltean 18496666cebcSVladimir Oltean /* For situations where we need to change a setting at runtime that is only 18506666cebcSVladimir Oltean * available through the static configuration, resetting the switch in order 18516666cebcSVladimir Oltean * to upload the new static config is unavoidable. Back up the settings we 18526666cebcSVladimir Oltean * modify at runtime (currently only MAC) and restore them after uploading, 18536666cebcSVladimir Oltean * such that this operation is relatively seamless. 18546666cebcSVladimir Oltean */ 18552eea1fa8SVladimir Oltean int sja1105_static_config_reload(struct sja1105_private *priv, 18562eea1fa8SVladimir Oltean enum sja1105_reset_reason reason) 18576666cebcSVladimir Oltean { 18586cf99c13SVladimir Oltean struct ptp_system_timestamp ptp_sts_before; 18596cf99c13SVladimir Oltean struct ptp_system_timestamp ptp_sts_after; 186082760d7fSVladimir Oltean int speed_mbps[SJA1105_MAX_NUM_PORTS]; 186184db00f2SVladimir Oltean u16 bmcr[SJA1105_MAX_NUM_PORTS] = {0}; 18626666cebcSVladimir Oltean struct sja1105_mac_config_entry *mac; 18636cf99c13SVladimir Oltean struct dsa_switch *ds = priv->ds; 18646cf99c13SVladimir Oltean s64 t1, t2, t3, t4; 18656cf99c13SVladimir Oltean s64 t12, t34; 18666666cebcSVladimir Oltean int rc, i; 18676cf99c13SVladimir Oltean s64 now; 18686666cebcSVladimir Oltean 1869af580ae2SVladimir Oltean mutex_lock(&priv->mgmt_lock); 1870af580ae2SVladimir Oltean 18716666cebcSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 18726666cebcSVladimir Oltean 18738400cff6SVladimir Oltean /* Back up the dynamic link speed changed by sja1105_adjust_port_config 18748400cff6SVladimir Oltean * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the 18758400cff6SVladimir Oltean * switch wants to see in the static config in order to allow us to 18768400cff6SVladimir Oltean * change it through the dynamic interface later. 18776666cebcSVladimir Oltean */ 1878542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 18793ad1d171SVladimir Oltean u32 reg_addr = mdiobus_c45_addr(MDIO_MMD_VEND2, MDIO_CTRL1); 18803ad1d171SVladimir Oltean 188141fed17fSVladimir Oltean speed_mbps[i] = sja1105_port_speed_to_ethtool(priv, 188241fed17fSVladimir Oltean mac[i].speed); 188341fed17fSVladimir Oltean mac[i].speed = priv->info->port_speed[SJA1105_SPEED_AUTO]; 18846666cebcSVladimir Oltean 18853ad1d171SVladimir Oltean if (priv->xpcs[i]) 18863ad1d171SVladimir Oltean bmcr[i] = mdiobus_read(priv->mdio_pcs, i, reg_addr); 188784db00f2SVladimir Oltean } 1888ffe10e67SVladimir Oltean 18896cf99c13SVladimir Oltean /* No PTP operations can run right now */ 18906cf99c13SVladimir Oltean mutex_lock(&priv->ptp_data.lock); 18916cf99c13SVladimir Oltean 18926cf99c13SVladimir Oltean rc = __sja1105_ptp_gettimex(ds, &now, &ptp_sts_before); 189361c77533SVladimir Oltean if (rc < 0) { 189461c77533SVladimir Oltean mutex_unlock(&priv->ptp_data.lock); 189561c77533SVladimir Oltean goto out; 189661c77533SVladimir Oltean } 18976cf99c13SVladimir Oltean 18986666cebcSVladimir Oltean /* Reset switch and send updated static configuration */ 18996666cebcSVladimir Oltean rc = sja1105_static_config_upload(priv); 190061c77533SVladimir Oltean if (rc < 0) { 190161c77533SVladimir Oltean mutex_unlock(&priv->ptp_data.lock); 190261c77533SVladimir Oltean goto out; 190361c77533SVladimir Oltean } 19046cf99c13SVladimir Oltean 19056cf99c13SVladimir Oltean rc = __sja1105_ptp_settime(ds, 0, &ptp_sts_after); 190661c77533SVladimir Oltean if (rc < 0) { 190761c77533SVladimir Oltean mutex_unlock(&priv->ptp_data.lock); 190861c77533SVladimir Oltean goto out; 190961c77533SVladimir Oltean } 19106cf99c13SVladimir Oltean 19116cf99c13SVladimir Oltean t1 = timespec64_to_ns(&ptp_sts_before.pre_ts); 19126cf99c13SVladimir Oltean t2 = timespec64_to_ns(&ptp_sts_before.post_ts); 19136cf99c13SVladimir Oltean t3 = timespec64_to_ns(&ptp_sts_after.pre_ts); 19146cf99c13SVladimir Oltean t4 = timespec64_to_ns(&ptp_sts_after.post_ts); 19156cf99c13SVladimir Oltean /* Mid point, corresponds to pre-reset PTPCLKVAL */ 19166cf99c13SVladimir Oltean t12 = t1 + (t2 - t1) / 2; 19176cf99c13SVladimir Oltean /* Mid point, corresponds to post-reset PTPCLKVAL, aka 0 */ 19186cf99c13SVladimir Oltean t34 = t3 + (t4 - t3) / 2; 19196cf99c13SVladimir Oltean /* Advance PTPCLKVAL by the time it took since its readout */ 19206cf99c13SVladimir Oltean now += (t34 - t12); 19216cf99c13SVladimir Oltean 19226cf99c13SVladimir Oltean __sja1105_ptp_adjtime(ds, now); 19236cf99c13SVladimir Oltean 19246cf99c13SVladimir Oltean mutex_unlock(&priv->ptp_data.lock); 19256666cebcSVladimir Oltean 19262eea1fa8SVladimir Oltean dev_info(priv->ds->dev, 19272eea1fa8SVladimir Oltean "Reset switch and programmed static config. Reason: %s\n", 19282eea1fa8SVladimir Oltean sja1105_reset_reasons[reason]); 19292eea1fa8SVladimir Oltean 19306666cebcSVladimir Oltean /* Configure the CGU (PLLs) for MII and RMII PHYs. 19316666cebcSVladimir Oltean * For these interfaces there is no dynamic configuration 19326666cebcSVladimir Oltean * needed, since PLLs have same settings at all speeds. 19336666cebcSVladimir Oltean */ 1934cb5a82d2SVladimir Oltean if (priv->info->clocking_setup) { 1935c5037678SVladimir Oltean rc = priv->info->clocking_setup(priv); 19366666cebcSVladimir Oltean if (rc < 0) 19376666cebcSVladimir Oltean goto out; 1938cb5a82d2SVladimir Oltean } 19396666cebcSVladimir Oltean 1940542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 19413ad1d171SVladimir Oltean struct dw_xpcs *xpcs = priv->xpcs[i]; 19423ad1d171SVladimir Oltean unsigned int mode; 194384db00f2SVladimir Oltean 19448400cff6SVladimir Oltean rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]); 19456666cebcSVladimir Oltean if (rc < 0) 19466666cebcSVladimir Oltean goto out; 1947ffe10e67SVladimir Oltean 19483ad1d171SVladimir Oltean if (!xpcs) 194984db00f2SVladimir Oltean continue; 1950ffe10e67SVladimir Oltean 19513ad1d171SVladimir Oltean if (bmcr[i] & BMCR_ANENABLE) 19523ad1d171SVladimir Oltean mode = MLO_AN_INBAND; 19533ad1d171SVladimir Oltean else if (priv->fixed_link[i]) 19543ad1d171SVladimir Oltean mode = MLO_AN_FIXED; 19553ad1d171SVladimir Oltean else 19563ad1d171SVladimir Oltean mode = MLO_AN_PHY; 195784db00f2SVladimir Oltean 19583ad1d171SVladimir Oltean rc = xpcs_do_config(xpcs, priv->phy_mode[i], mode); 19593ad1d171SVladimir Oltean if (rc < 0) 19603ad1d171SVladimir Oltean goto out; 1961ffe10e67SVladimir Oltean 19623ad1d171SVladimir Oltean if (!phylink_autoneg_inband(mode)) { 1963ffe10e67SVladimir Oltean int speed = SPEED_UNKNOWN; 1964ffe10e67SVladimir Oltean 196556b63466SVladimir Oltean if (priv->phy_mode[i] == PHY_INTERFACE_MODE_2500BASEX) 196656b63466SVladimir Oltean speed = SPEED_2500; 196756b63466SVladimir Oltean else if (bmcr[i] & BMCR_SPEED1000) 1968ffe10e67SVladimir Oltean speed = SPEED_1000; 196984db00f2SVladimir Oltean else if (bmcr[i] & BMCR_SPEED100) 1970ffe10e67SVladimir Oltean speed = SPEED_100; 1971053d8ad1SVladimir Oltean else 1972ffe10e67SVladimir Oltean speed = SPEED_10; 1973ffe10e67SVladimir Oltean 19743ad1d171SVladimir Oltean xpcs_link_up(&xpcs->pcs, mode, priv->phy_mode[i], 19753ad1d171SVladimir Oltean speed, DUPLEX_FULL); 1976ffe10e67SVladimir Oltean } 1977ffe10e67SVladimir Oltean } 19784d752508SVladimir Oltean 19794d752508SVladimir Oltean rc = sja1105_reload_cbs(priv); 19804d752508SVladimir Oltean if (rc < 0) 19814d752508SVladimir Oltean goto out; 19826666cebcSVladimir Oltean out: 1983af580ae2SVladimir Oltean mutex_unlock(&priv->mgmt_lock); 1984af580ae2SVladimir Oltean 19856666cebcSVladimir Oltean return rc; 19866666cebcSVladimir Oltean } 19876666cebcSVladimir Oltean 19886666cebcSVladimir Oltean static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid) 19896666cebcSVladimir Oltean { 19906666cebcSVladimir Oltean struct sja1105_mac_config_entry *mac; 19916666cebcSVladimir Oltean 19926666cebcSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 19936666cebcSVladimir Oltean 19946666cebcSVladimir Oltean mac[port].vlanid = pvid; 19956666cebcSVladimir Oltean 19966666cebcSVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 19976666cebcSVladimir Oltean &mac[port], true); 19986666cebcSVladimir Oltean } 19996666cebcSVladimir Oltean 2000ac02a451SVladimir Oltean static int sja1105_crosschip_bridge_join(struct dsa_switch *ds, 2001ac02a451SVladimir Oltean int tree_index, int sw_index, 2002ac02a451SVladimir Oltean int other_port, struct net_device *br) 2003ac02a451SVladimir Oltean { 2004ac02a451SVladimir Oltean struct dsa_switch *other_ds = dsa_switch_find(tree_index, sw_index); 2005ac02a451SVladimir Oltean struct sja1105_private *other_priv = other_ds->priv; 2006ac02a451SVladimir Oltean struct sja1105_private *priv = ds->priv; 2007ac02a451SVladimir Oltean int port, rc; 2008ac02a451SVladimir Oltean 2009ac02a451SVladimir Oltean if (other_ds->ops != &sja1105_switch_ops) 2010ac02a451SVladimir Oltean return 0; 2011ac02a451SVladimir Oltean 2012ac02a451SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 2013ac02a451SVladimir Oltean if (!dsa_is_user_port(ds, port)) 2014ac02a451SVladimir Oltean continue; 2015ac02a451SVladimir Oltean if (dsa_to_port(ds, port)->bridge_dev != br) 2016ac02a451SVladimir Oltean continue; 2017ac02a451SVladimir Oltean 20185899ee36SVladimir Oltean rc = dsa_8021q_crosschip_bridge_join(priv->dsa_8021q_ctx, 20195899ee36SVladimir Oltean port, 20205899ee36SVladimir Oltean other_priv->dsa_8021q_ctx, 20215899ee36SVladimir Oltean other_port); 2022ac02a451SVladimir Oltean if (rc) 2023ac02a451SVladimir Oltean return rc; 2024ac02a451SVladimir Oltean 20255899ee36SVladimir Oltean rc = dsa_8021q_crosschip_bridge_join(other_priv->dsa_8021q_ctx, 20265899ee36SVladimir Oltean other_port, 20275899ee36SVladimir Oltean priv->dsa_8021q_ctx, 20285899ee36SVladimir Oltean port); 2029ac02a451SVladimir Oltean if (rc) 2030ac02a451SVladimir Oltean return rc; 2031ac02a451SVladimir Oltean } 2032ac02a451SVladimir Oltean 2033ac02a451SVladimir Oltean return 0; 2034ac02a451SVladimir Oltean } 2035ac02a451SVladimir Oltean 2036ac02a451SVladimir Oltean static void sja1105_crosschip_bridge_leave(struct dsa_switch *ds, 2037ac02a451SVladimir Oltean int tree_index, int sw_index, 2038ac02a451SVladimir Oltean int other_port, 2039ac02a451SVladimir Oltean struct net_device *br) 2040ac02a451SVladimir Oltean { 2041ac02a451SVladimir Oltean struct dsa_switch *other_ds = dsa_switch_find(tree_index, sw_index); 2042ac02a451SVladimir Oltean struct sja1105_private *other_priv = other_ds->priv; 2043ac02a451SVladimir Oltean struct sja1105_private *priv = ds->priv; 2044ac02a451SVladimir Oltean int port; 2045ac02a451SVladimir Oltean 2046ac02a451SVladimir Oltean if (other_ds->ops != &sja1105_switch_ops) 2047ac02a451SVladimir Oltean return; 2048ac02a451SVladimir Oltean 2049ac02a451SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 2050ac02a451SVladimir Oltean if (!dsa_is_user_port(ds, port)) 2051ac02a451SVladimir Oltean continue; 2052ac02a451SVladimir Oltean if (dsa_to_port(ds, port)->bridge_dev != br) 2053ac02a451SVladimir Oltean continue; 2054ac02a451SVladimir Oltean 20555899ee36SVladimir Oltean dsa_8021q_crosschip_bridge_leave(priv->dsa_8021q_ctx, port, 20565899ee36SVladimir Oltean other_priv->dsa_8021q_ctx, 20575899ee36SVladimir Oltean other_port); 2058ac02a451SVladimir Oltean 20595899ee36SVladimir Oltean dsa_8021q_crosschip_bridge_leave(other_priv->dsa_8021q_ctx, 20605899ee36SVladimir Oltean other_port, 20615899ee36SVladimir Oltean priv->dsa_8021q_ctx, port); 2062ac02a451SVladimir Oltean } 2063ac02a451SVladimir Oltean } 2064ac02a451SVladimir Oltean 2065227d07a0SVladimir Oltean static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled) 2066227d07a0SVladimir Oltean { 206760b33aebSVladimir Oltean struct sja1105_private *priv = ds->priv; 20687e092af2SVladimir Oltean int rc; 2069227d07a0SVladimir Oltean 20705899ee36SVladimir Oltean rc = dsa_8021q_setup(priv->dsa_8021q_ctx, enabled); 20717e092af2SVladimir Oltean if (rc) 2072227d07a0SVladimir Oltean return rc; 2073ac02a451SVladimir Oltean 2074227d07a0SVladimir Oltean dev_info(ds->dev, "%s switch tagging\n", 2075227d07a0SVladimir Oltean enabled ? "Enabled" : "Disabled"); 2076227d07a0SVladimir Oltean return 0; 2077227d07a0SVladimir Oltean } 2078227d07a0SVladimir Oltean 20798aa9ebccSVladimir Oltean static enum dsa_tag_protocol 20804d776482SFlorian Fainelli sja1105_get_tag_protocol(struct dsa_switch *ds, int port, 20814d776482SFlorian Fainelli enum dsa_tag_protocol mp) 20828aa9ebccSVladimir Oltean { 20834913b8ebSVladimir Oltean struct sja1105_private *priv = ds->priv; 20844913b8ebSVladimir Oltean 20854913b8ebSVladimir Oltean return priv->info->tag_proto; 20868aa9ebccSVladimir Oltean } 20878aa9ebccSVladimir Oltean 20883f01c91aSVladimir Oltean static int sja1105_find_free_subvlan(u16 *subvlan_map, bool pvid) 20893f01c91aSVladimir Oltean { 20903f01c91aSVladimir Oltean int subvlan; 20913f01c91aSVladimir Oltean 20923f01c91aSVladimir Oltean if (pvid) 20933f01c91aSVladimir Oltean return 0; 20943f01c91aSVladimir Oltean 20953f01c91aSVladimir Oltean for (subvlan = 1; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 20963f01c91aSVladimir Oltean if (subvlan_map[subvlan] == VLAN_N_VID) 20973f01c91aSVladimir Oltean return subvlan; 20983f01c91aSVladimir Oltean 20993f01c91aSVladimir Oltean return -1; 21003f01c91aSVladimir Oltean } 21013f01c91aSVladimir Oltean 21023f01c91aSVladimir Oltean static int sja1105_find_subvlan(u16 *subvlan_map, u16 vid) 21033f01c91aSVladimir Oltean { 21043f01c91aSVladimir Oltean int subvlan; 21053f01c91aSVladimir Oltean 21063f01c91aSVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 21073f01c91aSVladimir Oltean if (subvlan_map[subvlan] == vid) 21083f01c91aSVladimir Oltean return subvlan; 21093f01c91aSVladimir Oltean 21103f01c91aSVladimir Oltean return -1; 21113f01c91aSVladimir Oltean } 21123f01c91aSVladimir Oltean 21133f01c91aSVladimir Oltean static int sja1105_find_committed_subvlan(struct sja1105_private *priv, 21143f01c91aSVladimir Oltean int port, u16 vid) 21153f01c91aSVladimir Oltean { 21163f01c91aSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 21173f01c91aSVladimir Oltean 21183f01c91aSVladimir Oltean return sja1105_find_subvlan(sp->subvlan_map, vid); 21193f01c91aSVladimir Oltean } 21203f01c91aSVladimir Oltean 21213f01c91aSVladimir Oltean static void sja1105_init_subvlan_map(u16 *subvlan_map) 21223f01c91aSVladimir Oltean { 21233f01c91aSVladimir Oltean int subvlan; 21243f01c91aSVladimir Oltean 21253f01c91aSVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 21263f01c91aSVladimir Oltean subvlan_map[subvlan] = VLAN_N_VID; 21273f01c91aSVladimir Oltean } 21283f01c91aSVladimir Oltean 21293f01c91aSVladimir Oltean static void sja1105_commit_subvlan_map(struct sja1105_private *priv, int port, 21303f01c91aSVladimir Oltean u16 *subvlan_map) 21313f01c91aSVladimir Oltean { 21323f01c91aSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 21333f01c91aSVladimir Oltean int subvlan; 21343f01c91aSVladimir Oltean 21353f01c91aSVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 21363f01c91aSVladimir Oltean sp->subvlan_map[subvlan] = subvlan_map[subvlan]; 21373f01c91aSVladimir Oltean } 21383f01c91aSVladimir Oltean 2139ec5ae610SVladimir Oltean static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid) 2140ec5ae610SVladimir Oltean { 2141ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *vlan; 2142ec5ae610SVladimir Oltean int count, i; 2143ec5ae610SVladimir Oltean 2144ec5ae610SVladimir Oltean vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries; 2145ec5ae610SVladimir Oltean count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count; 2146ec5ae610SVladimir Oltean 2147ec5ae610SVladimir Oltean for (i = 0; i < count; i++) 2148ec5ae610SVladimir Oltean if (vlan[i].vlanid == vid) 2149ec5ae610SVladimir Oltean return i; 2150ec5ae610SVladimir Oltean 2151ec5ae610SVladimir Oltean /* Return an invalid entry index if not found */ 2152ec5ae610SVladimir Oltean return -1; 2153ec5ae610SVladimir Oltean } 2154ec5ae610SVladimir Oltean 21553f01c91aSVladimir Oltean static int 21563f01c91aSVladimir Oltean sja1105_find_retagging_entry(struct sja1105_retagging_entry *retagging, 21573f01c91aSVladimir Oltean int count, int from_port, u16 from_vid, 21583f01c91aSVladimir Oltean u16 to_vid) 2159ec5ae610SVladimir Oltean { 21603f01c91aSVladimir Oltean int i; 21613f01c91aSVladimir Oltean 21623f01c91aSVladimir Oltean for (i = 0; i < count; i++) 21633f01c91aSVladimir Oltean if (retagging[i].ing_port == BIT(from_port) && 21643f01c91aSVladimir Oltean retagging[i].vlan_ing == from_vid && 21653f01c91aSVladimir Oltean retagging[i].vlan_egr == to_vid) 21663f01c91aSVladimir Oltean return i; 21673f01c91aSVladimir Oltean 21683f01c91aSVladimir Oltean /* Return an invalid entry index if not found */ 21693f01c91aSVladimir Oltean return -1; 21703f01c91aSVladimir Oltean } 21713f01c91aSVladimir Oltean 21723f01c91aSVladimir Oltean static int sja1105_commit_vlans(struct sja1105_private *priv, 21733f01c91aSVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan, 21743f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging, 21753f01c91aSVladimir Oltean int num_retagging) 21763f01c91aSVladimir Oltean { 21773f01c91aSVladimir Oltean struct sja1105_retagging_entry *retagging; 2178ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *vlan; 2179ec5ae610SVladimir Oltean struct sja1105_table *table; 2180ec5ae610SVladimir Oltean int num_vlans = 0; 2181ec5ae610SVladimir Oltean int rc, i, k = 0; 2182ec5ae610SVladimir Oltean 2183ec5ae610SVladimir Oltean /* VLAN table */ 2184ec5ae610SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2185ec5ae610SVladimir Oltean vlan = table->entries; 2186ec5ae610SVladimir Oltean 2187ec5ae610SVladimir Oltean for (i = 0; i < VLAN_N_VID; i++) { 2188ec5ae610SVladimir Oltean int match = sja1105_is_vlan_configured(priv, i); 2189ec5ae610SVladimir Oltean 2190ec5ae610SVladimir Oltean if (new_vlan[i].vlanid != VLAN_N_VID) 2191ec5ae610SVladimir Oltean num_vlans++; 2192ec5ae610SVladimir Oltean 2193ec5ae610SVladimir Oltean if (new_vlan[i].vlanid == VLAN_N_VID && match >= 0) { 2194ec5ae610SVladimir Oltean /* Was there before, no longer is. Delete */ 2195ec5ae610SVladimir Oltean dev_dbg(priv->ds->dev, "Deleting VLAN %d\n", i); 2196ec5ae610SVladimir Oltean rc = sja1105_dynamic_config_write(priv, 2197ec5ae610SVladimir Oltean BLK_IDX_VLAN_LOOKUP, 2198ec5ae610SVladimir Oltean i, &vlan[match], false); 2199ec5ae610SVladimir Oltean if (rc < 0) 2200ec5ae610SVladimir Oltean return rc; 2201ec5ae610SVladimir Oltean } else if (new_vlan[i].vlanid != VLAN_N_VID) { 2202ec5ae610SVladimir Oltean /* Nothing changed, don't do anything */ 2203ec5ae610SVladimir Oltean if (match >= 0 && 2204ec5ae610SVladimir Oltean vlan[match].vlanid == new_vlan[i].vlanid && 2205ec5ae610SVladimir Oltean vlan[match].tag_port == new_vlan[i].tag_port && 2206ec5ae610SVladimir Oltean vlan[match].vlan_bc == new_vlan[i].vlan_bc && 2207ec5ae610SVladimir Oltean vlan[match].vmemb_port == new_vlan[i].vmemb_port) 2208ec5ae610SVladimir Oltean continue; 2209ec5ae610SVladimir Oltean /* Update entry */ 2210ec5ae610SVladimir Oltean dev_dbg(priv->ds->dev, "Updating VLAN %d\n", i); 2211ec5ae610SVladimir Oltean rc = sja1105_dynamic_config_write(priv, 2212ec5ae610SVladimir Oltean BLK_IDX_VLAN_LOOKUP, 2213ec5ae610SVladimir Oltean i, &new_vlan[i], 2214ec5ae610SVladimir Oltean true); 2215ec5ae610SVladimir Oltean if (rc < 0) 2216ec5ae610SVladimir Oltean return rc; 2217ec5ae610SVladimir Oltean } 2218ec5ae610SVladimir Oltean } 2219ec5ae610SVladimir Oltean 2220ec5ae610SVladimir Oltean if (table->entry_count) 2221ec5ae610SVladimir Oltean kfree(table->entries); 2222ec5ae610SVladimir Oltean 2223ec5ae610SVladimir Oltean table->entries = kcalloc(num_vlans, table->ops->unpacked_entry_size, 2224ec5ae610SVladimir Oltean GFP_KERNEL); 2225ec5ae610SVladimir Oltean if (!table->entries) 2226ec5ae610SVladimir Oltean return -ENOMEM; 2227ec5ae610SVladimir Oltean 2228ec5ae610SVladimir Oltean table->entry_count = num_vlans; 2229ec5ae610SVladimir Oltean vlan = table->entries; 2230ec5ae610SVladimir Oltean 2231ec5ae610SVladimir Oltean for (i = 0; i < VLAN_N_VID; i++) { 2232ec5ae610SVladimir Oltean if (new_vlan[i].vlanid == VLAN_N_VID) 2233ec5ae610SVladimir Oltean continue; 2234ec5ae610SVladimir Oltean vlan[k++] = new_vlan[i]; 2235ec5ae610SVladimir Oltean } 2236ec5ae610SVladimir Oltean 22373f01c91aSVladimir Oltean /* VLAN Retagging Table */ 22383f01c91aSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_RETAGGING]; 22393f01c91aSVladimir Oltean retagging = table->entries; 22403f01c91aSVladimir Oltean 22413f01c91aSVladimir Oltean for (i = 0; i < table->entry_count; i++) { 22423f01c91aSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_RETAGGING, 22433f01c91aSVladimir Oltean i, &retagging[i], false); 22443f01c91aSVladimir Oltean if (rc) 22453f01c91aSVladimir Oltean return rc; 22463f01c91aSVladimir Oltean } 22473f01c91aSVladimir Oltean 22483f01c91aSVladimir Oltean if (table->entry_count) 22493f01c91aSVladimir Oltean kfree(table->entries); 22503f01c91aSVladimir Oltean 22513f01c91aSVladimir Oltean table->entries = kcalloc(num_retagging, table->ops->unpacked_entry_size, 22523f01c91aSVladimir Oltean GFP_KERNEL); 22533f01c91aSVladimir Oltean if (!table->entries) 22543f01c91aSVladimir Oltean return -ENOMEM; 22553f01c91aSVladimir Oltean 22563f01c91aSVladimir Oltean table->entry_count = num_retagging; 22573f01c91aSVladimir Oltean retagging = table->entries; 22583f01c91aSVladimir Oltean 22593f01c91aSVladimir Oltean for (i = 0; i < num_retagging; i++) { 22603f01c91aSVladimir Oltean retagging[i] = new_retagging[i]; 22613f01c91aSVladimir Oltean 22623f01c91aSVladimir Oltean /* Update entry */ 22633f01c91aSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_RETAGGING, 22643f01c91aSVladimir Oltean i, &retagging[i], true); 22653f01c91aSVladimir Oltean if (rc < 0) 22663f01c91aSVladimir Oltean return rc; 22673f01c91aSVladimir Oltean } 22683f01c91aSVladimir Oltean 2269ec5ae610SVladimir Oltean return 0; 2270ec5ae610SVladimir Oltean } 2271ec5ae610SVladimir Oltean 22723f01c91aSVladimir Oltean struct sja1105_crosschip_vlan { 22733f01c91aSVladimir Oltean struct list_head list; 22743f01c91aSVladimir Oltean u16 vid; 22753f01c91aSVladimir Oltean bool untagged; 22763f01c91aSVladimir Oltean int port; 22773f01c91aSVladimir Oltean int other_port; 22785899ee36SVladimir Oltean struct dsa_8021q_context *other_ctx; 22793f01c91aSVladimir Oltean }; 22803f01c91aSVladimir Oltean 2281ec5ae610SVladimir Oltean struct sja1105_crosschip_switch { 2282ec5ae610SVladimir Oltean struct list_head list; 22835899ee36SVladimir Oltean struct dsa_8021q_context *other_ctx; 2284ec5ae610SVladimir Oltean }; 2285ec5ae610SVladimir Oltean 2286ec5ae610SVladimir Oltean static int sja1105_commit_pvid(struct sja1105_private *priv) 2287ec5ae610SVladimir Oltean { 2288ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 2289ec5ae610SVladimir Oltean struct list_head *vlan_list; 2290ec5ae610SVladimir Oltean int rc = 0; 2291ec5ae610SVladimir Oltean 2292ec5ae610SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2293ec5ae610SVladimir Oltean vlan_list = &priv->bridge_vlans; 2294ec5ae610SVladimir Oltean else 2295ec5ae610SVladimir Oltean vlan_list = &priv->dsa_8021q_vlans; 2296ec5ae610SVladimir Oltean 2297ec5ae610SVladimir Oltean list_for_each_entry(v, vlan_list, list) { 2298ec5ae610SVladimir Oltean if (v->pvid) { 2299ec5ae610SVladimir Oltean rc = sja1105_pvid_apply(priv, v->port, v->vid); 2300ec5ae610SVladimir Oltean if (rc) 2301ec5ae610SVladimir Oltean break; 2302ec5ae610SVladimir Oltean } 2303ec5ae610SVladimir Oltean } 2304ec5ae610SVladimir Oltean 2305ec5ae610SVladimir Oltean return rc; 2306ec5ae610SVladimir Oltean } 2307ec5ae610SVladimir Oltean 2308ec5ae610SVladimir Oltean static int 2309ec5ae610SVladimir Oltean sja1105_build_bridge_vlans(struct sja1105_private *priv, 2310ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan) 2311ec5ae610SVladimir Oltean { 2312ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 2313ec5ae610SVladimir Oltean 2314ec5ae610SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_UNAWARE) 2315ec5ae610SVladimir Oltean return 0; 2316ec5ae610SVladimir Oltean 2317ec5ae610SVladimir Oltean list_for_each_entry(v, &priv->bridge_vlans, list) { 2318ec5ae610SVladimir Oltean int match = v->vid; 2319ec5ae610SVladimir Oltean 2320ec5ae610SVladimir Oltean new_vlan[match].vlanid = v->vid; 2321ec5ae610SVladimir Oltean new_vlan[match].vmemb_port |= BIT(v->port); 2322ec5ae610SVladimir Oltean new_vlan[match].vlan_bc |= BIT(v->port); 2323ec5ae610SVladimir Oltean if (!v->untagged) 2324ec5ae610SVladimir Oltean new_vlan[match].tag_port |= BIT(v->port); 23253e77e59bSVladimir Oltean new_vlan[match].type_entry = SJA1110_VLAN_D_TAG; 2326ec5ae610SVladimir Oltean } 2327ec5ae610SVladimir Oltean 2328ec5ae610SVladimir Oltean return 0; 2329ec5ae610SVladimir Oltean } 2330ec5ae610SVladimir Oltean 2331ec5ae610SVladimir Oltean static int 2332ec5ae610SVladimir Oltean sja1105_build_dsa_8021q_vlans(struct sja1105_private *priv, 2333ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan) 2334ec5ae610SVladimir Oltean { 2335ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 2336ec5ae610SVladimir Oltean 2337ec5ae610SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2338ec5ae610SVladimir Oltean return 0; 2339ec5ae610SVladimir Oltean 2340ec5ae610SVladimir Oltean list_for_each_entry(v, &priv->dsa_8021q_vlans, list) { 2341ec5ae610SVladimir Oltean int match = v->vid; 2342ec5ae610SVladimir Oltean 2343ec5ae610SVladimir Oltean new_vlan[match].vlanid = v->vid; 2344ec5ae610SVladimir Oltean new_vlan[match].vmemb_port |= BIT(v->port); 2345ec5ae610SVladimir Oltean new_vlan[match].vlan_bc |= BIT(v->port); 2346ec5ae610SVladimir Oltean if (!v->untagged) 2347ec5ae610SVladimir Oltean new_vlan[match].tag_port |= BIT(v->port); 23483e77e59bSVladimir Oltean new_vlan[match].type_entry = SJA1110_VLAN_D_TAG; 2349ec5ae610SVladimir Oltean } 2350ec5ae610SVladimir Oltean 2351ec5ae610SVladimir Oltean return 0; 2352ec5ae610SVladimir Oltean } 2353ec5ae610SVladimir Oltean 23543f01c91aSVladimir Oltean static int sja1105_build_subvlans(struct sja1105_private *priv, 23553f01c91aSVladimir Oltean u16 subvlan_map[][DSA_8021Q_N_SUBVLAN], 23563f01c91aSVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan, 23573f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging, 23583f01c91aSVladimir Oltean int *num_retagging) 23593f01c91aSVladimir Oltean { 23603f01c91aSVladimir Oltean struct sja1105_bridge_vlan *v; 23613f01c91aSVladimir Oltean int k = *num_retagging; 23623f01c91aSVladimir Oltean 23633f01c91aSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_BEST_EFFORT) 23643f01c91aSVladimir Oltean return 0; 23653f01c91aSVladimir Oltean 23663f01c91aSVladimir Oltean list_for_each_entry(v, &priv->bridge_vlans, list) { 23673f01c91aSVladimir Oltean int upstream = dsa_upstream_port(priv->ds, v->port); 23683f01c91aSVladimir Oltean int match, subvlan; 23693f01c91aSVladimir Oltean u16 rx_vid; 23703f01c91aSVladimir Oltean 23713f01c91aSVladimir Oltean /* Only sub-VLANs on user ports need to be applied. 23723f01c91aSVladimir Oltean * Bridge VLANs also include VLANs added automatically 23733f01c91aSVladimir Oltean * by DSA on the CPU port. 23743f01c91aSVladimir Oltean */ 23753f01c91aSVladimir Oltean if (!dsa_is_user_port(priv->ds, v->port)) 23763f01c91aSVladimir Oltean continue; 23773f01c91aSVladimir Oltean 23783f01c91aSVladimir Oltean subvlan = sja1105_find_subvlan(subvlan_map[v->port], 23793f01c91aSVladimir Oltean v->vid); 23803f01c91aSVladimir Oltean if (subvlan < 0) { 23813f01c91aSVladimir Oltean subvlan = sja1105_find_free_subvlan(subvlan_map[v->port], 23823f01c91aSVladimir Oltean v->pvid); 23833f01c91aSVladimir Oltean if (subvlan < 0) { 23843f01c91aSVladimir Oltean dev_err(priv->ds->dev, "No more free subvlans\n"); 23853f01c91aSVladimir Oltean return -ENOSPC; 23863f01c91aSVladimir Oltean } 23873f01c91aSVladimir Oltean } 23883f01c91aSVladimir Oltean 23893f01c91aSVladimir Oltean rx_vid = dsa_8021q_rx_vid_subvlan(priv->ds, v->port, subvlan); 23903f01c91aSVladimir Oltean 23913f01c91aSVladimir Oltean /* @v->vid on @v->port needs to be retagged to @rx_vid 23923f01c91aSVladimir Oltean * on @upstream. Assume @v->vid on @v->port and on 23933f01c91aSVladimir Oltean * @upstream was already configured by the previous 23943f01c91aSVladimir Oltean * iteration over bridge_vlans. 23953f01c91aSVladimir Oltean */ 23963f01c91aSVladimir Oltean match = rx_vid; 23973f01c91aSVladimir Oltean new_vlan[match].vlanid = rx_vid; 23983f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(v->port); 23993f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(upstream); 24003f01c91aSVladimir Oltean new_vlan[match].vlan_bc |= BIT(v->port); 24013f01c91aSVladimir Oltean new_vlan[match].vlan_bc |= BIT(upstream); 24023f01c91aSVladimir Oltean /* The "untagged" flag is set the same as for the 24033f01c91aSVladimir Oltean * original VLAN 24043f01c91aSVladimir Oltean */ 24053f01c91aSVladimir Oltean if (!v->untagged) 24063f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(v->port); 24073f01c91aSVladimir Oltean /* But it's always tagged towards the CPU */ 24083f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(upstream); 24093e77e59bSVladimir Oltean new_vlan[match].type_entry = SJA1110_VLAN_D_TAG; 24103f01c91aSVladimir Oltean 24113f01c91aSVladimir Oltean /* The Retagging Table generates packet *clones* with 24123f01c91aSVladimir Oltean * the new VLAN. This is a very odd hardware quirk 24133f01c91aSVladimir Oltean * which we need to suppress by dropping the original 24143f01c91aSVladimir Oltean * packet. 24153f01c91aSVladimir Oltean * Deny egress of the original VLAN towards the CPU 24163f01c91aSVladimir Oltean * port. This will force the switch to drop it, and 24173f01c91aSVladimir Oltean * we'll see only the retagged packets. 24183f01c91aSVladimir Oltean */ 24193f01c91aSVladimir Oltean match = v->vid; 24203f01c91aSVladimir Oltean new_vlan[match].vlan_bc &= ~BIT(upstream); 24213f01c91aSVladimir Oltean 24223f01c91aSVladimir Oltean /* And the retagging itself */ 24233f01c91aSVladimir Oltean new_retagging[k].vlan_ing = v->vid; 24243f01c91aSVladimir Oltean new_retagging[k].vlan_egr = rx_vid; 24253f01c91aSVladimir Oltean new_retagging[k].ing_port = BIT(v->port); 24263f01c91aSVladimir Oltean new_retagging[k].egr_port = BIT(upstream); 24273f01c91aSVladimir Oltean if (k++ == SJA1105_MAX_RETAGGING_COUNT) { 24283f01c91aSVladimir Oltean dev_err(priv->ds->dev, "No more retagging rules\n"); 24293f01c91aSVladimir Oltean return -ENOSPC; 24303f01c91aSVladimir Oltean } 24313f01c91aSVladimir Oltean 24323f01c91aSVladimir Oltean subvlan_map[v->port][subvlan] = v->vid; 24333f01c91aSVladimir Oltean } 24343f01c91aSVladimir Oltean 24353f01c91aSVladimir Oltean *num_retagging = k; 24363f01c91aSVladimir Oltean 24373f01c91aSVladimir Oltean return 0; 24383f01c91aSVladimir Oltean } 24393f01c91aSVladimir Oltean 24403f01c91aSVladimir Oltean /* Sadly, in crosschip scenarios where the CPU port is also the link to another 24413f01c91aSVladimir Oltean * switch, we should retag backwards (the dsa_8021q vid to the original vid) on 24423f01c91aSVladimir Oltean * the CPU port of neighbour switches. 24433f01c91aSVladimir Oltean */ 24443f01c91aSVladimir Oltean static int 24453f01c91aSVladimir Oltean sja1105_build_crosschip_subvlans(struct sja1105_private *priv, 24463f01c91aSVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan, 24473f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging, 24483f01c91aSVladimir Oltean int *num_retagging) 24493f01c91aSVladimir Oltean { 24503f01c91aSVladimir Oltean struct sja1105_crosschip_vlan *tmp, *pos; 24513f01c91aSVladimir Oltean struct dsa_8021q_crosschip_link *c; 24523f01c91aSVladimir Oltean struct sja1105_bridge_vlan *v, *w; 24533f01c91aSVladimir Oltean struct list_head crosschip_vlans; 24543f01c91aSVladimir Oltean int k = *num_retagging; 24553f01c91aSVladimir Oltean int rc = 0; 24563f01c91aSVladimir Oltean 24573f01c91aSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_BEST_EFFORT) 24583f01c91aSVladimir Oltean return 0; 24593f01c91aSVladimir Oltean 24603f01c91aSVladimir Oltean INIT_LIST_HEAD(&crosschip_vlans); 24613f01c91aSVladimir Oltean 24625899ee36SVladimir Oltean list_for_each_entry(c, &priv->dsa_8021q_ctx->crosschip_links, list) { 24635899ee36SVladimir Oltean struct sja1105_private *other_priv = c->other_ctx->ds->priv; 24643f01c91aSVladimir Oltean 24653f01c91aSVladimir Oltean if (other_priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 24663f01c91aSVladimir Oltean continue; 24673f01c91aSVladimir Oltean 24683f01c91aSVladimir Oltean /* Crosschip links are also added to the CPU ports. 24693f01c91aSVladimir Oltean * Ignore those. 24703f01c91aSVladimir Oltean */ 24713f01c91aSVladimir Oltean if (!dsa_is_user_port(priv->ds, c->port)) 24723f01c91aSVladimir Oltean continue; 24735899ee36SVladimir Oltean if (!dsa_is_user_port(c->other_ctx->ds, c->other_port)) 24743f01c91aSVladimir Oltean continue; 24753f01c91aSVladimir Oltean 24763f01c91aSVladimir Oltean /* Search for VLANs on the remote port */ 24773f01c91aSVladimir Oltean list_for_each_entry(v, &other_priv->bridge_vlans, list) { 24783f01c91aSVladimir Oltean bool already_added = false; 24793f01c91aSVladimir Oltean bool we_have_it = false; 24803f01c91aSVladimir Oltean 24813f01c91aSVladimir Oltean if (v->port != c->other_port) 24823f01c91aSVladimir Oltean continue; 24833f01c91aSVladimir Oltean 24843f01c91aSVladimir Oltean /* If @v is a pvid on @other_ds, it does not need 24853f01c91aSVladimir Oltean * re-retagging, because its SVL field is 0 and we 24863f01c91aSVladimir Oltean * already allow that, via the dsa_8021q crosschip 24873f01c91aSVladimir Oltean * links. 24883f01c91aSVladimir Oltean */ 24893f01c91aSVladimir Oltean if (v->pvid) 24903f01c91aSVladimir Oltean continue; 24913f01c91aSVladimir Oltean 24923f01c91aSVladimir Oltean /* Search for the VLAN on our local port */ 24933f01c91aSVladimir Oltean list_for_each_entry(w, &priv->bridge_vlans, list) { 24943f01c91aSVladimir Oltean if (w->port == c->port && w->vid == v->vid) { 24953f01c91aSVladimir Oltean we_have_it = true; 24963f01c91aSVladimir Oltean break; 24973f01c91aSVladimir Oltean } 24983f01c91aSVladimir Oltean } 24993f01c91aSVladimir Oltean 25003f01c91aSVladimir Oltean if (!we_have_it) 25013f01c91aSVladimir Oltean continue; 25023f01c91aSVladimir Oltean 25033f01c91aSVladimir Oltean list_for_each_entry(tmp, &crosschip_vlans, list) { 25043f01c91aSVladimir Oltean if (tmp->vid == v->vid && 25053f01c91aSVladimir Oltean tmp->untagged == v->untagged && 25063f01c91aSVladimir Oltean tmp->port == c->port && 25073f01c91aSVladimir Oltean tmp->other_port == v->port && 25085899ee36SVladimir Oltean tmp->other_ctx == c->other_ctx) { 25093f01c91aSVladimir Oltean already_added = true; 25103f01c91aSVladimir Oltean break; 25113f01c91aSVladimir Oltean } 25123f01c91aSVladimir Oltean } 25133f01c91aSVladimir Oltean 25143f01c91aSVladimir Oltean if (already_added) 25153f01c91aSVladimir Oltean continue; 25163f01c91aSVladimir Oltean 25173f01c91aSVladimir Oltean tmp = kzalloc(sizeof(*tmp), GFP_KERNEL); 25183f01c91aSVladimir Oltean if (!tmp) { 25193f01c91aSVladimir Oltean dev_err(priv->ds->dev, "Failed to allocate memory\n"); 25203f01c91aSVladimir Oltean rc = -ENOMEM; 25213f01c91aSVladimir Oltean goto out; 25223f01c91aSVladimir Oltean } 25233f01c91aSVladimir Oltean tmp->vid = v->vid; 25243f01c91aSVladimir Oltean tmp->port = c->port; 25253f01c91aSVladimir Oltean tmp->other_port = v->port; 25265899ee36SVladimir Oltean tmp->other_ctx = c->other_ctx; 25273f01c91aSVladimir Oltean tmp->untagged = v->untagged; 25283f01c91aSVladimir Oltean list_add(&tmp->list, &crosschip_vlans); 25293f01c91aSVladimir Oltean } 25303f01c91aSVladimir Oltean } 25313f01c91aSVladimir Oltean 25323f01c91aSVladimir Oltean list_for_each_entry(tmp, &crosschip_vlans, list) { 25335899ee36SVladimir Oltean struct sja1105_private *other_priv = tmp->other_ctx->ds->priv; 25343f01c91aSVladimir Oltean int upstream = dsa_upstream_port(priv->ds, tmp->port); 25353f01c91aSVladimir Oltean int match, subvlan; 25363f01c91aSVladimir Oltean u16 rx_vid; 25373f01c91aSVladimir Oltean 25383f01c91aSVladimir Oltean subvlan = sja1105_find_committed_subvlan(other_priv, 25393f01c91aSVladimir Oltean tmp->other_port, 25403f01c91aSVladimir Oltean tmp->vid); 25413f01c91aSVladimir Oltean /* If this happens, it's a bug. The neighbour switch does not 25423f01c91aSVladimir Oltean * have a subvlan for tmp->vid on tmp->other_port, but it 25433f01c91aSVladimir Oltean * should, since we already checked for its vlan_state. 25443f01c91aSVladimir Oltean */ 25453f01c91aSVladimir Oltean if (WARN_ON(subvlan < 0)) { 25463f01c91aSVladimir Oltean rc = -EINVAL; 25473f01c91aSVladimir Oltean goto out; 25483f01c91aSVladimir Oltean } 25493f01c91aSVladimir Oltean 25505899ee36SVladimir Oltean rx_vid = dsa_8021q_rx_vid_subvlan(tmp->other_ctx->ds, 25513f01c91aSVladimir Oltean tmp->other_port, 25523f01c91aSVladimir Oltean subvlan); 25533f01c91aSVladimir Oltean 25543f01c91aSVladimir Oltean /* The @rx_vid retagged from @tmp->vid on 25553f01c91aSVladimir Oltean * {@tmp->other_ds, @tmp->other_port} needs to be 25563f01c91aSVladimir Oltean * re-retagged to @tmp->vid on the way back to us. 25573f01c91aSVladimir Oltean * 25583f01c91aSVladimir Oltean * Assume the original @tmp->vid is already configured 25593f01c91aSVladimir Oltean * on this local switch, otherwise we wouldn't be 25603f01c91aSVladimir Oltean * retagging its subvlan on the other switch in the 25613f01c91aSVladimir Oltean * first place. We just need to add a reverse retagging 25623f01c91aSVladimir Oltean * rule for @rx_vid and install @rx_vid on our ports. 25633f01c91aSVladimir Oltean */ 25643f01c91aSVladimir Oltean match = rx_vid; 25653f01c91aSVladimir Oltean new_vlan[match].vlanid = rx_vid; 25663f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(tmp->port); 25673f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(upstream); 25683f01c91aSVladimir Oltean /* The "untagged" flag is set the same as for the 25693f01c91aSVladimir Oltean * original VLAN. And towards the CPU, it doesn't 25703f01c91aSVladimir Oltean * really matter, because @rx_vid will only receive 25713f01c91aSVladimir Oltean * traffic on that port. For consistency with other dsa_8021q 25723f01c91aSVladimir Oltean * VLANs, we'll keep the CPU port tagged. 25733f01c91aSVladimir Oltean */ 25743f01c91aSVladimir Oltean if (!tmp->untagged) 25753f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(tmp->port); 25763f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(upstream); 25773e77e59bSVladimir Oltean new_vlan[match].type_entry = SJA1110_VLAN_D_TAG; 25783f01c91aSVladimir Oltean /* Deny egress of @rx_vid towards our front-panel port. 25793f01c91aSVladimir Oltean * This will force the switch to drop it, and we'll see 25803f01c91aSVladimir Oltean * only the re-retagged packets (having the original, 25813f01c91aSVladimir Oltean * pre-initial-retagging, VLAN @tmp->vid). 25823f01c91aSVladimir Oltean */ 25833f01c91aSVladimir Oltean new_vlan[match].vlan_bc &= ~BIT(tmp->port); 25843f01c91aSVladimir Oltean 25853f01c91aSVladimir Oltean /* On reverse retagging, the same ingress VLAN goes to multiple 25863f01c91aSVladimir Oltean * ports. So we have an opportunity to create composite rules 25873f01c91aSVladimir Oltean * to not waste the limited space in the retagging table. 25883f01c91aSVladimir Oltean */ 25893f01c91aSVladimir Oltean k = sja1105_find_retagging_entry(new_retagging, *num_retagging, 25903f01c91aSVladimir Oltean upstream, rx_vid, tmp->vid); 25913f01c91aSVladimir Oltean if (k < 0) { 25923f01c91aSVladimir Oltean if (*num_retagging == SJA1105_MAX_RETAGGING_COUNT) { 25933f01c91aSVladimir Oltean dev_err(priv->ds->dev, "No more retagging rules\n"); 25943f01c91aSVladimir Oltean rc = -ENOSPC; 25953f01c91aSVladimir Oltean goto out; 25963f01c91aSVladimir Oltean } 25973f01c91aSVladimir Oltean k = (*num_retagging)++; 25983f01c91aSVladimir Oltean } 25993f01c91aSVladimir Oltean /* And the retagging itself */ 26003f01c91aSVladimir Oltean new_retagging[k].vlan_ing = rx_vid; 26013f01c91aSVladimir Oltean new_retagging[k].vlan_egr = tmp->vid; 26023f01c91aSVladimir Oltean new_retagging[k].ing_port = BIT(upstream); 26033f01c91aSVladimir Oltean new_retagging[k].egr_port |= BIT(tmp->port); 26043f01c91aSVladimir Oltean } 26053f01c91aSVladimir Oltean 26063f01c91aSVladimir Oltean out: 26073f01c91aSVladimir Oltean list_for_each_entry_safe(tmp, pos, &crosschip_vlans, list) { 26083f01c91aSVladimir Oltean list_del(&tmp->list); 26093f01c91aSVladimir Oltean kfree(tmp); 26103f01c91aSVladimir Oltean } 26113f01c91aSVladimir Oltean 26123f01c91aSVladimir Oltean return rc; 26133f01c91aSVladimir Oltean } 26143f01c91aSVladimir Oltean 2615ec5ae610SVladimir Oltean static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify); 2616ec5ae610SVladimir Oltean 2617ec5ae610SVladimir Oltean static int sja1105_notify_crosschip_switches(struct sja1105_private *priv) 2618ec5ae610SVladimir Oltean { 2619ec5ae610SVladimir Oltean struct sja1105_crosschip_switch *s, *pos; 2620ec5ae610SVladimir Oltean struct list_head crosschip_switches; 2621ec5ae610SVladimir Oltean struct dsa_8021q_crosschip_link *c; 2622ec5ae610SVladimir Oltean int rc = 0; 2623ec5ae610SVladimir Oltean 2624ec5ae610SVladimir Oltean INIT_LIST_HEAD(&crosschip_switches); 2625ec5ae610SVladimir Oltean 26265899ee36SVladimir Oltean list_for_each_entry(c, &priv->dsa_8021q_ctx->crosschip_links, list) { 2627ec5ae610SVladimir Oltean bool already_added = false; 2628ec5ae610SVladimir Oltean 2629ec5ae610SVladimir Oltean list_for_each_entry(s, &crosschip_switches, list) { 26305899ee36SVladimir Oltean if (s->other_ctx == c->other_ctx) { 2631ec5ae610SVladimir Oltean already_added = true; 2632ec5ae610SVladimir Oltean break; 2633ec5ae610SVladimir Oltean } 2634ec5ae610SVladimir Oltean } 2635ec5ae610SVladimir Oltean 2636ec5ae610SVladimir Oltean if (already_added) 2637ec5ae610SVladimir Oltean continue; 2638ec5ae610SVladimir Oltean 2639ec5ae610SVladimir Oltean s = kzalloc(sizeof(*s), GFP_KERNEL); 2640ec5ae610SVladimir Oltean if (!s) { 2641ec5ae610SVladimir Oltean dev_err(priv->ds->dev, "Failed to allocate memory\n"); 2642ec5ae610SVladimir Oltean rc = -ENOMEM; 2643ec5ae610SVladimir Oltean goto out; 2644ec5ae610SVladimir Oltean } 26455899ee36SVladimir Oltean s->other_ctx = c->other_ctx; 2646ec5ae610SVladimir Oltean list_add(&s->list, &crosschip_switches); 2647ec5ae610SVladimir Oltean } 2648ec5ae610SVladimir Oltean 2649ec5ae610SVladimir Oltean list_for_each_entry(s, &crosschip_switches, list) { 26505899ee36SVladimir Oltean struct sja1105_private *other_priv = s->other_ctx->ds->priv; 2651ec5ae610SVladimir Oltean 2652ec5ae610SVladimir Oltean rc = sja1105_build_vlan_table(other_priv, false); 2653ec5ae610SVladimir Oltean if (rc) 2654ec5ae610SVladimir Oltean goto out; 2655ec5ae610SVladimir Oltean } 2656ec5ae610SVladimir Oltean 2657ec5ae610SVladimir Oltean out: 2658ec5ae610SVladimir Oltean list_for_each_entry_safe(s, pos, &crosschip_switches, list) { 2659ec5ae610SVladimir Oltean list_del(&s->list); 2660ec5ae610SVladimir Oltean kfree(s); 2661ec5ae610SVladimir Oltean } 2662ec5ae610SVladimir Oltean 2663ec5ae610SVladimir Oltean return rc; 2664ec5ae610SVladimir Oltean } 2665ec5ae610SVladimir Oltean 2666ec5ae610SVladimir Oltean static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify) 2667ec5ae610SVladimir Oltean { 266882760d7fSVladimir Oltean u16 subvlan_map[SJA1105_MAX_NUM_PORTS][DSA_8021Q_N_SUBVLAN]; 26693f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging; 2670ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan; 2671ec5ae610SVladimir Oltean struct sja1105_table *table; 26723f01c91aSVladimir Oltean int i, num_retagging = 0; 2673ec5ae610SVladimir Oltean int rc; 2674ec5ae610SVladimir Oltean 2675ec5ae610SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2676ec5ae610SVladimir Oltean new_vlan = kcalloc(VLAN_N_VID, 2677ec5ae610SVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 2678ec5ae610SVladimir Oltean if (!new_vlan) 2679ec5ae610SVladimir Oltean return -ENOMEM; 2680ec5ae610SVladimir Oltean 26813f01c91aSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 26823f01c91aSVladimir Oltean new_retagging = kcalloc(SJA1105_MAX_RETAGGING_COUNT, 26833f01c91aSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 26843f01c91aSVladimir Oltean if (!new_retagging) { 26853f01c91aSVladimir Oltean kfree(new_vlan); 26863f01c91aSVladimir Oltean return -ENOMEM; 26873f01c91aSVladimir Oltean } 26883f01c91aSVladimir Oltean 2689ec5ae610SVladimir Oltean for (i = 0; i < VLAN_N_VID; i++) 2690ec5ae610SVladimir Oltean new_vlan[i].vlanid = VLAN_N_VID; 2691ec5ae610SVladimir Oltean 26923f01c91aSVladimir Oltean for (i = 0; i < SJA1105_MAX_RETAGGING_COUNT; i++) 26933f01c91aSVladimir Oltean new_retagging[i].vlan_ing = VLAN_N_VID; 26943f01c91aSVladimir Oltean 26953f01c91aSVladimir Oltean for (i = 0; i < priv->ds->num_ports; i++) 26963f01c91aSVladimir Oltean sja1105_init_subvlan_map(subvlan_map[i]); 26973f01c91aSVladimir Oltean 2698ec5ae610SVladimir Oltean /* Bridge VLANs */ 2699ec5ae610SVladimir Oltean rc = sja1105_build_bridge_vlans(priv, new_vlan); 2700ec5ae610SVladimir Oltean if (rc) 2701ec5ae610SVladimir Oltean goto out; 2702ec5ae610SVladimir Oltean 2703ec5ae610SVladimir Oltean /* VLANs necessary for dsa_8021q operation, given to us by tag_8021q.c: 2704ec5ae610SVladimir Oltean * - RX VLANs 2705ec5ae610SVladimir Oltean * - TX VLANs 2706ec5ae610SVladimir Oltean * - Crosschip links 2707ec5ae610SVladimir Oltean */ 2708ec5ae610SVladimir Oltean rc = sja1105_build_dsa_8021q_vlans(priv, new_vlan); 2709ec5ae610SVladimir Oltean if (rc) 2710ec5ae610SVladimir Oltean goto out; 2711ec5ae610SVladimir Oltean 27123f01c91aSVladimir Oltean /* Private VLANs necessary for dsa_8021q operation, which we need to 27133f01c91aSVladimir Oltean * determine on our own: 27143f01c91aSVladimir Oltean * - Sub-VLANs 27153f01c91aSVladimir Oltean * - Sub-VLANs of crosschip switches 27163f01c91aSVladimir Oltean */ 27173f01c91aSVladimir Oltean rc = sja1105_build_subvlans(priv, subvlan_map, new_vlan, new_retagging, 27183f01c91aSVladimir Oltean &num_retagging); 27193f01c91aSVladimir Oltean if (rc) 27203f01c91aSVladimir Oltean goto out; 27213f01c91aSVladimir Oltean 27223f01c91aSVladimir Oltean rc = sja1105_build_crosschip_subvlans(priv, new_vlan, new_retagging, 27233f01c91aSVladimir Oltean &num_retagging); 27243f01c91aSVladimir Oltean if (rc) 27253f01c91aSVladimir Oltean goto out; 27263f01c91aSVladimir Oltean 27273f01c91aSVladimir Oltean rc = sja1105_commit_vlans(priv, new_vlan, new_retagging, num_retagging); 2728ec5ae610SVladimir Oltean if (rc) 2729ec5ae610SVladimir Oltean goto out; 2730ec5ae610SVladimir Oltean 2731ec5ae610SVladimir Oltean rc = sja1105_commit_pvid(priv); 2732ec5ae610SVladimir Oltean if (rc) 2733ec5ae610SVladimir Oltean goto out; 2734ec5ae610SVladimir Oltean 27353f01c91aSVladimir Oltean for (i = 0; i < priv->ds->num_ports; i++) 27363f01c91aSVladimir Oltean sja1105_commit_subvlan_map(priv, i, subvlan_map[i]); 27373f01c91aSVladimir Oltean 2738ec5ae610SVladimir Oltean if (notify) { 2739ec5ae610SVladimir Oltean rc = sja1105_notify_crosschip_switches(priv); 2740ec5ae610SVladimir Oltean if (rc) 2741ec5ae610SVladimir Oltean goto out; 2742ec5ae610SVladimir Oltean } 2743ec5ae610SVladimir Oltean 2744ec5ae610SVladimir Oltean out: 2745ec5ae610SVladimir Oltean kfree(new_vlan); 27463f01c91aSVladimir Oltean kfree(new_retagging); 2747ec5ae610SVladimir Oltean 2748ec5ae610SVladimir Oltean return rc; 2749ec5ae610SVladimir Oltean } 2750ec5ae610SVladimir Oltean 2751070ca3bbSVladimir Oltean /* The TPID setting belongs to the General Parameters table, 2752070ca3bbSVladimir Oltean * which can only be partially reconfigured at runtime (and not the TPID). 2753070ca3bbSVladimir Oltean * So a switch reset is required. 2754070ca3bbSVladimir Oltean */ 275589153ed6SVladimir Oltean int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled, 275689153ed6SVladimir Oltean struct netlink_ext_ack *extack) 27576666cebcSVladimir Oltean { 27586d7c7d94SVladimir Oltean struct sja1105_l2_lookup_params_entry *l2_lookup_params; 2759070ca3bbSVladimir Oltean struct sja1105_general_params_entry *general_params; 27606666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 27617f14937fSVladimir Oltean enum sja1105_vlan_state state; 2762070ca3bbSVladimir Oltean struct sja1105_table *table; 2763dfacc5a2SVladimir Oltean struct sja1105_rule *rule; 27642cafa72eSVladimir Oltean bool want_tagging; 2765070ca3bbSVladimir Oltean u16 tpid, tpid2; 27666666cebcSVladimir Oltean int rc; 27676666cebcSVladimir Oltean 2768dfacc5a2SVladimir Oltean list_for_each_entry(rule, &priv->flow_block.rules, list) { 2769dfacc5a2SVladimir Oltean if (rule->type == SJA1105_RULE_VL) { 277089153ed6SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 277189153ed6SVladimir Oltean "Cannot change VLAN filtering with active VL rules"); 2772dfacc5a2SVladimir Oltean return -EBUSY; 2773dfacc5a2SVladimir Oltean } 2774dfacc5a2SVladimir Oltean } 2775dfacc5a2SVladimir Oltean 2776070ca3bbSVladimir Oltean if (enabled) { 27776666cebcSVladimir Oltean /* Enable VLAN filtering. */ 277854fa49eeSVladimir Oltean tpid = ETH_P_8021Q; 277954fa49eeSVladimir Oltean tpid2 = ETH_P_8021AD; 2780070ca3bbSVladimir Oltean } else { 27816666cebcSVladimir Oltean /* Disable VLAN filtering. */ 2782070ca3bbSVladimir Oltean tpid = ETH_P_SJA1105; 2783070ca3bbSVladimir Oltean tpid2 = ETH_P_SJA1105; 2784070ca3bbSVladimir Oltean } 2785070ca3bbSVladimir Oltean 278638b5beeaSVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 278738b5beeaSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 278838b5beeaSVladimir Oltean 278938b5beeaSVladimir Oltean if (enabled) 279038b5beeaSVladimir Oltean sp->xmit_tpid = priv->info->qinq_tpid; 279138b5beeaSVladimir Oltean else 279238b5beeaSVladimir Oltean sp->xmit_tpid = ETH_P_SJA1105; 279338b5beeaSVladimir Oltean } 279438b5beeaSVladimir Oltean 27957f14937fSVladimir Oltean if (!enabled) 27967f14937fSVladimir Oltean state = SJA1105_VLAN_UNAWARE; 27972cafa72eSVladimir Oltean else if (priv->best_effort_vlan_filtering) 27982cafa72eSVladimir Oltean state = SJA1105_VLAN_BEST_EFFORT; 27997f14937fSVladimir Oltean else 28007f14937fSVladimir Oltean state = SJA1105_VLAN_FILTERING_FULL; 28017f14937fSVladimir Oltean 2802cfa36b1fSVladimir Oltean if (priv->vlan_state == state) 2803cfa36b1fSVladimir Oltean return 0; 2804cfa36b1fSVladimir Oltean 28057f14937fSVladimir Oltean priv->vlan_state = state; 28062cafa72eSVladimir Oltean want_tagging = (state == SJA1105_VLAN_UNAWARE || 28072cafa72eSVladimir Oltean state == SJA1105_VLAN_BEST_EFFORT); 28087f14937fSVladimir Oltean 2809070ca3bbSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 2810070ca3bbSVladimir Oltean general_params = table->entries; 2811f9a1a764SVladimir Oltean /* EtherType used to identify inner tagged (C-tag) VLAN traffic */ 281254fa49eeSVladimir Oltean general_params->tpid = tpid; 281354fa49eeSVladimir Oltean /* EtherType used to identify outer tagged (S-tag) VLAN traffic */ 2814070ca3bbSVladimir Oltean general_params->tpid2 = tpid2; 281542824463SVladimir Oltean /* When VLAN filtering is on, we need to at least be able to 281642824463SVladimir Oltean * decode management traffic through the "backup plan". 281742824463SVladimir Oltean */ 281842824463SVladimir Oltean general_params->incl_srcpt1 = enabled; 281942824463SVladimir Oltean general_params->incl_srcpt0 = enabled; 2820070ca3bbSVladimir Oltean 28212cafa72eSVladimir Oltean want_tagging = priv->best_effort_vlan_filtering || !enabled; 28222cafa72eSVladimir Oltean 28236d7c7d94SVladimir Oltean /* VLAN filtering => independent VLAN learning. 28242cafa72eSVladimir Oltean * No VLAN filtering (or best effort) => shared VLAN learning. 28256d7c7d94SVladimir Oltean * 28266d7c7d94SVladimir Oltean * In shared VLAN learning mode, untagged traffic still gets 28276d7c7d94SVladimir Oltean * pvid-tagged, and the FDB table gets populated with entries 28286d7c7d94SVladimir Oltean * containing the "real" (pvid or from VLAN tag) VLAN ID. 28296d7c7d94SVladimir Oltean * However the switch performs a masked L2 lookup in the FDB, 28306d7c7d94SVladimir Oltean * effectively only looking up a frame's DMAC (and not VID) for the 28316d7c7d94SVladimir Oltean * forwarding decision. 28326d7c7d94SVladimir Oltean * 28336d7c7d94SVladimir Oltean * This is extremely convenient for us, because in modes with 28346d7c7d94SVladimir Oltean * vlan_filtering=0, dsa_8021q actually installs unique pvid's into 28356d7c7d94SVladimir Oltean * each front panel port. This is good for identification but breaks 28366d7c7d94SVladimir Oltean * learning badly - the VID of the learnt FDB entry is unique, aka 28376d7c7d94SVladimir Oltean * no frames coming from any other port are going to have it. So 28386d7c7d94SVladimir Oltean * for forwarding purposes, this is as though learning was broken 28396d7c7d94SVladimir Oltean * (all frames get flooded). 28406d7c7d94SVladimir Oltean */ 28416d7c7d94SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 28426d7c7d94SVladimir Oltean l2_lookup_params = table->entries; 28432cafa72eSVladimir Oltean l2_lookup_params->shared_learn = want_tagging; 28446d7c7d94SVladimir Oltean 2845aaa270c6SVladimir Oltean sja1105_frame_memory_partitioning(priv); 2846aaa270c6SVladimir Oltean 2847aef31718SVladimir Oltean rc = sja1105_build_vlan_table(priv, false); 2848aef31718SVladimir Oltean if (rc) 2849aef31718SVladimir Oltean return rc; 2850aef31718SVladimir Oltean 28512eea1fa8SVladimir Oltean rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING); 28526666cebcSVladimir Oltean if (rc) 285389153ed6SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, "Failed to change VLAN Ethertype"); 28546666cebcSVladimir Oltean 2855227d07a0SVladimir Oltean /* Switch port identification based on 802.1Q is only passable 2856227d07a0SVladimir Oltean * if we are not under a vlan_filtering bridge. So make sure 28572cafa72eSVladimir Oltean * the two configurations are mutually exclusive (of course, the 28582cafa72eSVladimir Oltean * user may know better, i.e. best_effort_vlan_filtering). 2859227d07a0SVladimir Oltean */ 28602cafa72eSVladimir Oltean return sja1105_setup_8021q_tagging(ds, want_tagging); 28616666cebcSVladimir Oltean } 28626666cebcSVladimir Oltean 28635899ee36SVladimir Oltean /* Returns number of VLANs added (0 or 1) on success, 28645899ee36SVladimir Oltean * or a negative error code. 28655899ee36SVladimir Oltean */ 28665899ee36SVladimir Oltean static int sja1105_vlan_add_one(struct dsa_switch *ds, int port, u16 vid, 28675899ee36SVladimir Oltean u16 flags, struct list_head *vlan_list) 28685899ee36SVladimir Oltean { 28695899ee36SVladimir Oltean bool untagged = flags & BRIDGE_VLAN_INFO_UNTAGGED; 28705899ee36SVladimir Oltean bool pvid = flags & BRIDGE_VLAN_INFO_PVID; 28715899ee36SVladimir Oltean struct sja1105_bridge_vlan *v; 28725899ee36SVladimir Oltean 2873b38e659dSVladimir Oltean list_for_each_entry(v, vlan_list, list) { 2874b38e659dSVladimir Oltean if (v->port == port && v->vid == vid) { 28755899ee36SVladimir Oltean /* Already added */ 2876b38e659dSVladimir Oltean if (v->untagged == untagged && v->pvid == pvid) 2877b38e659dSVladimir Oltean /* Nothing changed */ 28785899ee36SVladimir Oltean return 0; 28795899ee36SVladimir Oltean 2880b38e659dSVladimir Oltean /* It's the same VLAN, but some of the flags changed 2881b38e659dSVladimir Oltean * and the user did not bother to delete it first. 2882b38e659dSVladimir Oltean * Update it and trigger sja1105_build_vlan_table. 2883b38e659dSVladimir Oltean */ 2884b38e659dSVladimir Oltean v->untagged = untagged; 2885b38e659dSVladimir Oltean v->pvid = pvid; 2886b38e659dSVladimir Oltean return 1; 2887b38e659dSVladimir Oltean } 2888b38e659dSVladimir Oltean } 2889b38e659dSVladimir Oltean 28905899ee36SVladimir Oltean v = kzalloc(sizeof(*v), GFP_KERNEL); 28915899ee36SVladimir Oltean if (!v) { 28925899ee36SVladimir Oltean dev_err(ds->dev, "Out of memory while storing VLAN\n"); 28935899ee36SVladimir Oltean return -ENOMEM; 28945899ee36SVladimir Oltean } 28955899ee36SVladimir Oltean 28965899ee36SVladimir Oltean v->port = port; 28975899ee36SVladimir Oltean v->vid = vid; 28985899ee36SVladimir Oltean v->untagged = untagged; 28995899ee36SVladimir Oltean v->pvid = pvid; 29005899ee36SVladimir Oltean list_add(&v->list, vlan_list); 29015899ee36SVladimir Oltean 29025899ee36SVladimir Oltean return 1; 29035899ee36SVladimir Oltean } 29045899ee36SVladimir Oltean 29055899ee36SVladimir Oltean /* Returns number of VLANs deleted (0 or 1) */ 29065899ee36SVladimir Oltean static int sja1105_vlan_del_one(struct dsa_switch *ds, int port, u16 vid, 29075899ee36SVladimir Oltean struct list_head *vlan_list) 29085899ee36SVladimir Oltean { 29095899ee36SVladimir Oltean struct sja1105_bridge_vlan *v, *n; 29105899ee36SVladimir Oltean 29115899ee36SVladimir Oltean list_for_each_entry_safe(v, n, vlan_list, list) { 29125899ee36SVladimir Oltean if (v->port == port && v->vid == vid) { 29135899ee36SVladimir Oltean list_del(&v->list); 29145899ee36SVladimir Oltean kfree(v); 29155899ee36SVladimir Oltean return 1; 29165899ee36SVladimir Oltean } 29175899ee36SVladimir Oltean } 29185899ee36SVladimir Oltean 29195899ee36SVladimir Oltean return 0; 29205899ee36SVladimir Oltean } 29215899ee36SVladimir Oltean 29221958d581SVladimir Oltean static int sja1105_vlan_add(struct dsa_switch *ds, int port, 292331046a5fSVladimir Oltean const struct switchdev_obj_port_vlan *vlan, 292431046a5fSVladimir Oltean struct netlink_ext_ack *extack) 29256666cebcSVladimir Oltean { 29266666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 2927ec5ae610SVladimir Oltean bool vlan_table_changed = false; 29286666cebcSVladimir Oltean int rc; 29296666cebcSVladimir Oltean 29301958d581SVladimir Oltean /* If the user wants best-effort VLAN filtering (aka vlan_filtering 29311958d581SVladimir Oltean * bridge plus tagging), be sure to at least deny alterations to the 29321958d581SVladimir Oltean * configuration done by dsa_8021q. 29331958d581SVladimir Oltean */ 29341958d581SVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL && 29351958d581SVladimir Oltean vid_is_dsa_8021q(vlan->vid)) { 293631046a5fSVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 293731046a5fSVladimir Oltean "Range 1024-3071 reserved for dsa_8021q operation"); 29381958d581SVladimir Oltean return -EBUSY; 29391958d581SVladimir Oltean } 29401958d581SVladimir Oltean 2941b7a9e0daSVladimir Oltean rc = sja1105_vlan_add_one(ds, port, vlan->vid, vlan->flags, 29425899ee36SVladimir Oltean &priv->bridge_vlans); 29435899ee36SVladimir Oltean if (rc < 0) 29441958d581SVladimir Oltean return rc; 29455899ee36SVladimir Oltean if (rc > 0) 2946ec5ae610SVladimir Oltean vlan_table_changed = true; 2947ec5ae610SVladimir Oltean 2948ec5ae610SVladimir Oltean if (!vlan_table_changed) 29491958d581SVladimir Oltean return 0; 2950ec5ae610SVladimir Oltean 29511958d581SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29526666cebcSVladimir Oltean } 29536666cebcSVladimir Oltean 29546666cebcSVladimir Oltean static int sja1105_vlan_del(struct dsa_switch *ds, int port, 29556666cebcSVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 29566666cebcSVladimir Oltean { 29576666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 2958ec5ae610SVladimir Oltean bool vlan_table_changed = false; 29595899ee36SVladimir Oltean int rc; 29606666cebcSVladimir Oltean 2961b7a9e0daSVladimir Oltean rc = sja1105_vlan_del_one(ds, port, vlan->vid, &priv->bridge_vlans); 29625899ee36SVladimir Oltean if (rc > 0) 2963ec5ae610SVladimir Oltean vlan_table_changed = true; 2964ec5ae610SVladimir Oltean 2965ec5ae610SVladimir Oltean if (!vlan_table_changed) 29666666cebcSVladimir Oltean return 0; 2967ec5ae610SVladimir Oltean 2968ec5ae610SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29696666cebcSVladimir Oltean } 29706666cebcSVladimir Oltean 29715899ee36SVladimir Oltean static int sja1105_dsa_8021q_vlan_add(struct dsa_switch *ds, int port, u16 vid, 29725899ee36SVladimir Oltean u16 flags) 29735899ee36SVladimir Oltean { 29745899ee36SVladimir Oltean struct sja1105_private *priv = ds->priv; 29755899ee36SVladimir Oltean int rc; 29765899ee36SVladimir Oltean 29775899ee36SVladimir Oltean rc = sja1105_vlan_add_one(ds, port, vid, flags, &priv->dsa_8021q_vlans); 29785899ee36SVladimir Oltean if (rc <= 0) 29795899ee36SVladimir Oltean return rc; 29805899ee36SVladimir Oltean 29815899ee36SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29825899ee36SVladimir Oltean } 29835899ee36SVladimir Oltean 29845899ee36SVladimir Oltean static int sja1105_dsa_8021q_vlan_del(struct dsa_switch *ds, int port, u16 vid) 29855899ee36SVladimir Oltean { 29865899ee36SVladimir Oltean struct sja1105_private *priv = ds->priv; 29875899ee36SVladimir Oltean int rc; 29885899ee36SVladimir Oltean 29895899ee36SVladimir Oltean rc = sja1105_vlan_del_one(ds, port, vid, &priv->dsa_8021q_vlans); 29905899ee36SVladimir Oltean if (!rc) 29915899ee36SVladimir Oltean return 0; 29925899ee36SVladimir Oltean 29935899ee36SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29945899ee36SVladimir Oltean } 29955899ee36SVladimir Oltean 29965899ee36SVladimir Oltean static const struct dsa_8021q_ops sja1105_dsa_8021q_ops = { 29975899ee36SVladimir Oltean .vlan_add = sja1105_dsa_8021q_vlan_add, 29985899ee36SVladimir Oltean .vlan_del = sja1105_dsa_8021q_vlan_del, 29995899ee36SVladimir Oltean }; 30005899ee36SVladimir Oltean 30018aa9ebccSVladimir Oltean /* The programming model for the SJA1105 switch is "all-at-once" via static 30028aa9ebccSVladimir Oltean * configuration tables. Some of these can be dynamically modified at runtime, 30038aa9ebccSVladimir Oltean * but not the xMII mode parameters table. 30048aa9ebccSVladimir Oltean * Furthermode, some PHYs may not have crystals for generating their clocks 30058aa9ebccSVladimir Oltean * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's 30068aa9ebccSVladimir Oltean * ref_clk pin. So port clocking needs to be initialized early, before 30078aa9ebccSVladimir Oltean * connecting to PHYs is attempted, otherwise they won't respond through MDIO. 30088aa9ebccSVladimir Oltean * Setting correct PHY link speed does not matter now. 30098aa9ebccSVladimir Oltean * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY 30108aa9ebccSVladimir Oltean * bindings are not yet parsed by DSA core. We need to parse early so that we 30118aa9ebccSVladimir Oltean * can populate the xMII mode parameters table. 30128aa9ebccSVladimir Oltean */ 30138aa9ebccSVladimir Oltean static int sja1105_setup(struct dsa_switch *ds) 30148aa9ebccSVladimir Oltean { 30158aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 30168aa9ebccSVladimir Oltean int rc; 30178aa9ebccSVladimir Oltean 30185d645df9SVladimir Oltean rc = sja1105_parse_dt(priv); 30198aa9ebccSVladimir Oltean if (rc < 0) { 30208aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to parse DT: %d\n", rc); 30218aa9ebccSVladimir Oltean return rc; 30228aa9ebccSVladimir Oltean } 3023f5b8631cSVladimir Oltean 3024f5b8631cSVladimir Oltean /* Error out early if internal delays are required through DT 3025f5b8631cSVladimir Oltean * and we can't apply them. 3026f5b8631cSVladimir Oltean */ 302729afb83aSVladimir Oltean rc = sja1105_parse_rgmii_delays(priv); 3028f5b8631cSVladimir Oltean if (rc < 0) { 3029f5b8631cSVladimir Oltean dev_err(ds->dev, "RGMII delay not supported\n"); 3030f5b8631cSVladimir Oltean return rc; 3031f5b8631cSVladimir Oltean } 3032f5b8631cSVladimir Oltean 303361c77126SVladimir Oltean rc = sja1105_ptp_clock_register(ds); 3034bb77f36aSVladimir Oltean if (rc < 0) { 3035bb77f36aSVladimir Oltean dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc); 3036bb77f36aSVladimir Oltean return rc; 3037bb77f36aSVladimir Oltean } 30385a8f0974SVladimir Oltean 30395a8f0974SVladimir Oltean rc = sja1105_mdiobus_register(ds); 30405a8f0974SVladimir Oltean if (rc < 0) { 30415a8f0974SVladimir Oltean dev_err(ds->dev, "Failed to register MDIO bus: %pe\n", 30425a8f0974SVladimir Oltean ERR_PTR(rc)); 30435a8f0974SVladimir Oltean goto out_ptp_clock_unregister; 30445a8f0974SVladimir Oltean } 30455a8f0974SVladimir Oltean 3046cb5a82d2SVladimir Oltean if (priv->info->disable_microcontroller) { 3047cb5a82d2SVladimir Oltean rc = priv->info->disable_microcontroller(priv); 3048cb5a82d2SVladimir Oltean if (rc < 0) { 3049cb5a82d2SVladimir Oltean dev_err(ds->dev, 3050cb5a82d2SVladimir Oltean "Failed to disable microcontroller: %pe\n", 3051cb5a82d2SVladimir Oltean ERR_PTR(rc)); 3052cb5a82d2SVladimir Oltean goto out_mdiobus_unregister; 3053cb5a82d2SVladimir Oltean } 3054cb5a82d2SVladimir Oltean } 3055cb5a82d2SVladimir Oltean 30568aa9ebccSVladimir Oltean /* Create and send configuration down to device */ 30575d645df9SVladimir Oltean rc = sja1105_static_config_load(priv); 30588aa9ebccSVladimir Oltean if (rc < 0) { 30598aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to load static config: %d\n", rc); 30605a8f0974SVladimir Oltean goto out_mdiobus_unregister; 30618aa9ebccSVladimir Oltean } 3062cb5a82d2SVladimir Oltean 30638aa9ebccSVladimir Oltean /* Configure the CGU (PHY link modes and speeds) */ 3064cb5a82d2SVladimir Oltean if (priv->info->clocking_setup) { 3065c5037678SVladimir Oltean rc = priv->info->clocking_setup(priv); 30668aa9ebccSVladimir Oltean if (rc < 0) { 3067cb5a82d2SVladimir Oltean dev_err(ds->dev, 3068cb5a82d2SVladimir Oltean "Failed to configure MII clocking: %pe\n", 3069cb5a82d2SVladimir Oltean ERR_PTR(rc)); 3070cec279a8SVladimir Oltean goto out_static_config_free; 30718aa9ebccSVladimir Oltean } 3072cb5a82d2SVladimir Oltean } 3073cb5a82d2SVladimir Oltean 30746666cebcSVladimir Oltean /* On SJA1105, VLAN filtering per se is always enabled in hardware. 30756666cebcSVladimir Oltean * The only thing we can do to disable it is lie about what the 802.1Q 30766666cebcSVladimir Oltean * EtherType is. 30776666cebcSVladimir Oltean * So it will still try to apply VLAN filtering, but all ingress 30786666cebcSVladimir Oltean * traffic (except frames received with EtherType of ETH_P_SJA1105) 30796666cebcSVladimir Oltean * will be internally tagged with a distorted VLAN header where the 30806666cebcSVladimir Oltean * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid. 30816666cebcSVladimir Oltean */ 30826666cebcSVladimir Oltean ds->vlan_filtering_is_global = true; 30838aa9ebccSVladimir Oltean 30845f06c63bSVladimir Oltean /* Advertise the 8 egress queues */ 30855f06c63bSVladimir Oltean ds->num_tx_queues = SJA1105_NUM_TC; 30865f06c63bSVladimir Oltean 3087c279c726SVladimir Oltean ds->mtu_enforcement_ingress = true; 3088c279c726SVladimir Oltean 30898841f6e6SVladimir Oltean priv->best_effort_vlan_filtering = true; 30908841f6e6SVladimir Oltean 30910a7bdbc2SVladimir Oltean rc = sja1105_devlink_setup(ds); 30922cafa72eSVladimir Oltean if (rc < 0) 3093cec279a8SVladimir Oltean goto out_static_config_free; 30942cafa72eSVladimir Oltean 3095227d07a0SVladimir Oltean /* The DSA/switchdev model brings up switch ports in standalone mode by 3096227d07a0SVladimir Oltean * default, and that means vlan_filtering is 0 since they're not under 3097227d07a0SVladimir Oltean * a bridge, so it's safe to set up switch tagging at this time. 3098227d07a0SVladimir Oltean */ 3099bbed0bbdSVladimir Oltean rtnl_lock(); 3100bbed0bbdSVladimir Oltean rc = sja1105_setup_8021q_tagging(ds, true); 3101bbed0bbdSVladimir Oltean rtnl_unlock(); 3102cec279a8SVladimir Oltean if (rc) 3103cec279a8SVladimir Oltean goto out_devlink_teardown; 3104cec279a8SVladimir Oltean 3105cec279a8SVladimir Oltean return 0; 3106cec279a8SVladimir Oltean 3107cec279a8SVladimir Oltean out_devlink_teardown: 3108cec279a8SVladimir Oltean sja1105_devlink_teardown(ds); 31095a8f0974SVladimir Oltean out_mdiobus_unregister: 31105a8f0974SVladimir Oltean sja1105_mdiobus_unregister(ds); 3111cec279a8SVladimir Oltean out_ptp_clock_unregister: 3112cec279a8SVladimir Oltean sja1105_ptp_clock_unregister(ds); 3113cec279a8SVladimir Oltean out_static_config_free: 3114cec279a8SVladimir Oltean sja1105_static_config_free(&priv->static_config); 3115bbed0bbdSVladimir Oltean 3116bbed0bbdSVladimir Oltean return rc; 3117227d07a0SVladimir Oltean } 3118227d07a0SVladimir Oltean 3119f3097be2SVladimir Oltean static void sja1105_teardown(struct dsa_switch *ds) 3120f3097be2SVladimir Oltean { 3121f3097be2SVladimir Oltean struct sja1105_private *priv = ds->priv; 3122ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v, *n; 3123a68578c2SVladimir Oltean int port; 3124a68578c2SVladimir Oltean 3125542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 3126a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3127a68578c2SVladimir Oltean 3128a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3129a68578c2SVladimir Oltean continue; 3130a68578c2SVladimir Oltean 313152c0d4e3SVladimir Oltean if (sp->xmit_worker) 3132a68578c2SVladimir Oltean kthread_destroy_worker(sp->xmit_worker); 3133a68578c2SVladimir Oltean } 3134f3097be2SVladimir Oltean 31350a7bdbc2SVladimir Oltean sja1105_devlink_teardown(ds); 3136a6af7763SVladimir Oltean sja1105_flower_teardown(ds); 3137317ab5b8SVladimir Oltean sja1105_tas_teardown(ds); 313861c77126SVladimir Oltean sja1105_ptp_clock_unregister(ds); 31396cb0abbdSVladimir Oltean sja1105_static_config_free(&priv->static_config); 3140ec5ae610SVladimir Oltean 3141ec5ae610SVladimir Oltean list_for_each_entry_safe(v, n, &priv->dsa_8021q_vlans, list) { 3142ec5ae610SVladimir Oltean list_del(&v->list); 3143ec5ae610SVladimir Oltean kfree(v); 3144ec5ae610SVladimir Oltean } 3145ec5ae610SVladimir Oltean 3146ec5ae610SVladimir Oltean list_for_each_entry_safe(v, n, &priv->bridge_vlans, list) { 3147ec5ae610SVladimir Oltean list_del(&v->list); 3148ec5ae610SVladimir Oltean kfree(v); 3149ec5ae610SVladimir Oltean } 3150f3097be2SVladimir Oltean } 3151f3097be2SVladimir Oltean 3152a68578c2SVladimir Oltean static void sja1105_port_disable(struct dsa_switch *ds, int port) 3153a68578c2SVladimir Oltean { 3154a68578c2SVladimir Oltean struct sja1105_private *priv = ds->priv; 3155a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3156a68578c2SVladimir Oltean 3157a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3158a68578c2SVladimir Oltean return; 3159a68578c2SVladimir Oltean 3160a68578c2SVladimir Oltean kthread_cancel_work_sync(&sp->xmit_work); 3161a68578c2SVladimir Oltean skb_queue_purge(&sp->xmit_queue); 3162a68578c2SVladimir Oltean } 3163a68578c2SVladimir Oltean 3164227d07a0SVladimir Oltean static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot, 316547ed985eSVladimir Oltean struct sk_buff *skb, bool takets) 3166227d07a0SVladimir Oltean { 3167227d07a0SVladimir Oltean struct sja1105_mgmt_entry mgmt_route = {0}; 3168227d07a0SVladimir Oltean struct sja1105_private *priv = ds->priv; 3169227d07a0SVladimir Oltean struct ethhdr *hdr; 3170227d07a0SVladimir Oltean int timeout = 10; 3171227d07a0SVladimir Oltean int rc; 3172227d07a0SVladimir Oltean 3173227d07a0SVladimir Oltean hdr = eth_hdr(skb); 3174227d07a0SVladimir Oltean 3175227d07a0SVladimir Oltean mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest); 3176227d07a0SVladimir Oltean mgmt_route.destports = BIT(port); 3177227d07a0SVladimir Oltean mgmt_route.enfport = 1; 317847ed985eSVladimir Oltean mgmt_route.tsreg = 0; 317947ed985eSVladimir Oltean mgmt_route.takets = takets; 3180227d07a0SVladimir Oltean 3181227d07a0SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 3182227d07a0SVladimir Oltean slot, &mgmt_route, true); 3183227d07a0SVladimir Oltean if (rc < 0) { 3184227d07a0SVladimir Oltean kfree_skb(skb); 3185227d07a0SVladimir Oltean return rc; 3186227d07a0SVladimir Oltean } 3187227d07a0SVladimir Oltean 3188227d07a0SVladimir Oltean /* Transfer skb to the host port. */ 318968bb8ea8SVivien Didelot dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave); 3190227d07a0SVladimir Oltean 3191227d07a0SVladimir Oltean /* Wait until the switch has processed the frame */ 3192227d07a0SVladimir Oltean do { 3193227d07a0SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE, 3194227d07a0SVladimir Oltean slot, &mgmt_route); 3195227d07a0SVladimir Oltean if (rc < 0) { 3196227d07a0SVladimir Oltean dev_err_ratelimited(priv->ds->dev, 3197227d07a0SVladimir Oltean "failed to poll for mgmt route\n"); 3198227d07a0SVladimir Oltean continue; 3199227d07a0SVladimir Oltean } 3200227d07a0SVladimir Oltean 3201227d07a0SVladimir Oltean /* UM10944: The ENFPORT flag of the respective entry is 3202227d07a0SVladimir Oltean * cleared when a match is found. The host can use this 3203227d07a0SVladimir Oltean * flag as an acknowledgment. 3204227d07a0SVladimir Oltean */ 3205227d07a0SVladimir Oltean cpu_relax(); 3206227d07a0SVladimir Oltean } while (mgmt_route.enfport && --timeout); 3207227d07a0SVladimir Oltean 3208227d07a0SVladimir Oltean if (!timeout) { 3209227d07a0SVladimir Oltean /* Clean up the management route so that a follow-up 3210227d07a0SVladimir Oltean * frame may not match on it by mistake. 32112a7e7409SVladimir Oltean * This is only hardware supported on P/Q/R/S - on E/T it is 32122a7e7409SVladimir Oltean * a no-op and we are silently discarding the -EOPNOTSUPP. 3213227d07a0SVladimir Oltean */ 3214227d07a0SVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 3215227d07a0SVladimir Oltean slot, &mgmt_route, false); 3216227d07a0SVladimir Oltean dev_err_ratelimited(priv->ds->dev, "xmit timed out\n"); 3217227d07a0SVladimir Oltean } 3218227d07a0SVladimir Oltean 3219227d07a0SVladimir Oltean return NETDEV_TX_OK; 3220227d07a0SVladimir Oltean } 3221227d07a0SVladimir Oltean 3222a68578c2SVladimir Oltean #define work_to_port(work) \ 3223a68578c2SVladimir Oltean container_of((work), struct sja1105_port, xmit_work) 3224a68578c2SVladimir Oltean #define tagger_to_sja1105(t) \ 3225a68578c2SVladimir Oltean container_of((t), struct sja1105_private, tagger_data) 3226a68578c2SVladimir Oltean 3227227d07a0SVladimir Oltean /* Deferred work is unfortunately necessary because setting up the management 3228227d07a0SVladimir Oltean * route cannot be done from atomit context (SPI transfer takes a sleepable 3229227d07a0SVladimir Oltean * lock on the bus) 3230227d07a0SVladimir Oltean */ 3231a68578c2SVladimir Oltean static void sja1105_port_deferred_xmit(struct kthread_work *work) 3232227d07a0SVladimir Oltean { 3233a68578c2SVladimir Oltean struct sja1105_port *sp = work_to_port(work); 3234a68578c2SVladimir Oltean struct sja1105_tagger_data *tagger_data = sp->data; 3235a68578c2SVladimir Oltean struct sja1105_private *priv = tagger_to_sja1105(tagger_data); 3236a68578c2SVladimir Oltean int port = sp - priv->ports; 3237a68578c2SVladimir Oltean struct sk_buff *skb; 3238a68578c2SVladimir Oltean 3239a68578c2SVladimir Oltean while ((skb = skb_dequeue(&sp->xmit_queue)) != NULL) { 3240c4b364ceSYangbo Lu struct sk_buff *clone = SJA1105_SKB_CB(skb)->clone; 3241227d07a0SVladimir Oltean 3242227d07a0SVladimir Oltean mutex_lock(&priv->mgmt_lock); 3243227d07a0SVladimir Oltean 3244a68578c2SVladimir Oltean sja1105_mgmt_xmit(priv->ds, port, 0, skb, !!clone); 3245a68578c2SVladimir Oltean 324647ed985eSVladimir Oltean /* The clone, if there, was made by dsa_skb_tx_timestamp */ 3247a68578c2SVladimir Oltean if (clone) 3248a68578c2SVladimir Oltean sja1105_ptp_txtstamp_skb(priv->ds, port, clone); 3249227d07a0SVladimir Oltean 3250227d07a0SVladimir Oltean mutex_unlock(&priv->mgmt_lock); 3251a68578c2SVladimir Oltean } 32528aa9ebccSVladimir Oltean } 32538aa9ebccSVladimir Oltean 32548456721dSVladimir Oltean /* The MAXAGE setting belongs to the L2 Forwarding Parameters table, 32558456721dSVladimir Oltean * which cannot be reconfigured at runtime. So a switch reset is required. 32568456721dSVladimir Oltean */ 32578456721dSVladimir Oltean static int sja1105_set_ageing_time(struct dsa_switch *ds, 32588456721dSVladimir Oltean unsigned int ageing_time) 32598456721dSVladimir Oltean { 32608456721dSVladimir Oltean struct sja1105_l2_lookup_params_entry *l2_lookup_params; 32618456721dSVladimir Oltean struct sja1105_private *priv = ds->priv; 32628456721dSVladimir Oltean struct sja1105_table *table; 32638456721dSVladimir Oltean unsigned int maxage; 32648456721dSVladimir Oltean 32658456721dSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 32668456721dSVladimir Oltean l2_lookup_params = table->entries; 32678456721dSVladimir Oltean 32688456721dSVladimir Oltean maxage = SJA1105_AGEING_TIME_MS(ageing_time); 32698456721dSVladimir Oltean 32708456721dSVladimir Oltean if (l2_lookup_params->maxage == maxage) 32718456721dSVladimir Oltean return 0; 32728456721dSVladimir Oltean 32738456721dSVladimir Oltean l2_lookup_params->maxage = maxage; 32748456721dSVladimir Oltean 32752eea1fa8SVladimir Oltean return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME); 32768456721dSVladimir Oltean } 32778456721dSVladimir Oltean 3278c279c726SVladimir Oltean static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu) 3279c279c726SVladimir Oltean { 3280c279c726SVladimir Oltean struct sja1105_l2_policing_entry *policing; 3281c279c726SVladimir Oltean struct sja1105_private *priv = ds->priv; 3282c279c726SVladimir Oltean 3283c279c726SVladimir Oltean new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN; 3284c279c726SVladimir Oltean 3285c279c726SVladimir Oltean if (dsa_is_cpu_port(ds, port)) 3286c279c726SVladimir Oltean new_mtu += VLAN_HLEN; 3287c279c726SVladimir Oltean 3288c279c726SVladimir Oltean policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3289c279c726SVladimir Oltean 3290a7cc081cSVladimir Oltean if (policing[port].maxlen == new_mtu) 3291c279c726SVladimir Oltean return 0; 3292c279c726SVladimir Oltean 3293a7cc081cSVladimir Oltean policing[port].maxlen = new_mtu; 3294c279c726SVladimir Oltean 3295c279c726SVladimir Oltean return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3296c279c726SVladimir Oltean } 3297c279c726SVladimir Oltean 3298c279c726SVladimir Oltean static int sja1105_get_max_mtu(struct dsa_switch *ds, int port) 3299c279c726SVladimir Oltean { 3300c279c726SVladimir Oltean return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN; 3301c279c726SVladimir Oltean } 3302c279c726SVladimir Oltean 3303317ab5b8SVladimir Oltean static int sja1105_port_setup_tc(struct dsa_switch *ds, int port, 3304317ab5b8SVladimir Oltean enum tc_setup_type type, 3305317ab5b8SVladimir Oltean void *type_data) 3306317ab5b8SVladimir Oltean { 3307317ab5b8SVladimir Oltean switch (type) { 3308317ab5b8SVladimir Oltean case TC_SETUP_QDISC_TAPRIO: 3309317ab5b8SVladimir Oltean return sja1105_setup_tc_taprio(ds, port, type_data); 33104d752508SVladimir Oltean case TC_SETUP_QDISC_CBS: 33114d752508SVladimir Oltean return sja1105_setup_tc_cbs(ds, port, type_data); 3312317ab5b8SVladimir Oltean default: 3313317ab5b8SVladimir Oltean return -EOPNOTSUPP; 3314317ab5b8SVladimir Oltean } 3315317ab5b8SVladimir Oltean } 3316317ab5b8SVladimir Oltean 3317511e6ca0SVladimir Oltean /* We have a single mirror (@to) port, but can configure ingress and egress 3318511e6ca0SVladimir Oltean * mirroring on all other (@from) ports. 3319511e6ca0SVladimir Oltean * We need to allow mirroring rules only as long as the @to port is always the 3320511e6ca0SVladimir Oltean * same, and we need to unset the @to port from mirr_port only when there is no 3321511e6ca0SVladimir Oltean * mirroring rule that references it. 3322511e6ca0SVladimir Oltean */ 3323511e6ca0SVladimir Oltean static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to, 3324511e6ca0SVladimir Oltean bool ingress, bool enabled) 3325511e6ca0SVladimir Oltean { 3326511e6ca0SVladimir Oltean struct sja1105_general_params_entry *general_params; 3327511e6ca0SVladimir Oltean struct sja1105_mac_config_entry *mac; 3328542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 3329511e6ca0SVladimir Oltean struct sja1105_table *table; 3330511e6ca0SVladimir Oltean bool already_enabled; 3331511e6ca0SVladimir Oltean u64 new_mirr_port; 3332511e6ca0SVladimir Oltean int rc; 3333511e6ca0SVladimir Oltean 3334511e6ca0SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 3335511e6ca0SVladimir Oltean general_params = table->entries; 3336511e6ca0SVladimir Oltean 3337511e6ca0SVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 3338511e6ca0SVladimir Oltean 3339542043e9SVladimir Oltean already_enabled = (general_params->mirr_port != ds->num_ports); 3340511e6ca0SVladimir Oltean if (already_enabled && enabled && general_params->mirr_port != to) { 3341511e6ca0SVladimir Oltean dev_err(priv->ds->dev, 3342511e6ca0SVladimir Oltean "Delete mirroring rules towards port %llu first\n", 3343511e6ca0SVladimir Oltean general_params->mirr_port); 3344511e6ca0SVladimir Oltean return -EBUSY; 3345511e6ca0SVladimir Oltean } 3346511e6ca0SVladimir Oltean 3347511e6ca0SVladimir Oltean new_mirr_port = to; 3348511e6ca0SVladimir Oltean if (!enabled) { 3349511e6ca0SVladimir Oltean bool keep = false; 3350511e6ca0SVladimir Oltean int port; 3351511e6ca0SVladimir Oltean 3352511e6ca0SVladimir Oltean /* Anybody still referencing mirr_port? */ 3353542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 3354511e6ca0SVladimir Oltean if (mac[port].ing_mirr || mac[port].egr_mirr) { 3355511e6ca0SVladimir Oltean keep = true; 3356511e6ca0SVladimir Oltean break; 3357511e6ca0SVladimir Oltean } 3358511e6ca0SVladimir Oltean } 3359511e6ca0SVladimir Oltean /* Unset already_enabled for next time */ 3360511e6ca0SVladimir Oltean if (!keep) 3361542043e9SVladimir Oltean new_mirr_port = ds->num_ports; 3362511e6ca0SVladimir Oltean } 3363511e6ca0SVladimir Oltean if (new_mirr_port != general_params->mirr_port) { 3364511e6ca0SVladimir Oltean general_params->mirr_port = new_mirr_port; 3365511e6ca0SVladimir Oltean 3366511e6ca0SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS, 3367511e6ca0SVladimir Oltean 0, general_params, true); 3368511e6ca0SVladimir Oltean if (rc < 0) 3369511e6ca0SVladimir Oltean return rc; 3370511e6ca0SVladimir Oltean } 3371511e6ca0SVladimir Oltean 3372511e6ca0SVladimir Oltean if (ingress) 3373511e6ca0SVladimir Oltean mac[from].ing_mirr = enabled; 3374511e6ca0SVladimir Oltean else 3375511e6ca0SVladimir Oltean mac[from].egr_mirr = enabled; 3376511e6ca0SVladimir Oltean 3377511e6ca0SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from, 3378511e6ca0SVladimir Oltean &mac[from], true); 3379511e6ca0SVladimir Oltean } 3380511e6ca0SVladimir Oltean 3381511e6ca0SVladimir Oltean static int sja1105_mirror_add(struct dsa_switch *ds, int port, 3382511e6ca0SVladimir Oltean struct dsa_mall_mirror_tc_entry *mirror, 3383511e6ca0SVladimir Oltean bool ingress) 3384511e6ca0SVladimir Oltean { 3385511e6ca0SVladimir Oltean return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port, 3386511e6ca0SVladimir Oltean ingress, true); 3387511e6ca0SVladimir Oltean } 3388511e6ca0SVladimir Oltean 3389511e6ca0SVladimir Oltean static void sja1105_mirror_del(struct dsa_switch *ds, int port, 3390511e6ca0SVladimir Oltean struct dsa_mall_mirror_tc_entry *mirror) 3391511e6ca0SVladimir Oltean { 3392511e6ca0SVladimir Oltean sja1105_mirror_apply(ds->priv, port, mirror->to_local_port, 3393511e6ca0SVladimir Oltean mirror->ingress, false); 3394511e6ca0SVladimir Oltean } 3395511e6ca0SVladimir Oltean 3396a7cc081cSVladimir Oltean static int sja1105_port_policer_add(struct dsa_switch *ds, int port, 3397a7cc081cSVladimir Oltean struct dsa_mall_policer_tc_entry *policer) 3398a7cc081cSVladimir Oltean { 3399a7cc081cSVladimir Oltean struct sja1105_l2_policing_entry *policing; 3400a7cc081cSVladimir Oltean struct sja1105_private *priv = ds->priv; 3401a7cc081cSVladimir Oltean 3402a7cc081cSVladimir Oltean policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3403a7cc081cSVladimir Oltean 3404a7cc081cSVladimir Oltean /* In hardware, every 8 microseconds the credit level is incremented by 3405a7cc081cSVladimir Oltean * the value of RATE bytes divided by 64, up to a maximum of SMAX 3406a7cc081cSVladimir Oltean * bytes. 3407a7cc081cSVladimir Oltean */ 3408a7cc081cSVladimir Oltean policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec, 3409a7cc081cSVladimir Oltean 1000000); 34105f035af7SPo Liu policing[port].smax = policer->burst; 3411a7cc081cSVladimir Oltean 3412a7cc081cSVladimir Oltean return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3413a7cc081cSVladimir Oltean } 3414a7cc081cSVladimir Oltean 3415a7cc081cSVladimir Oltean static void sja1105_port_policer_del(struct dsa_switch *ds, int port) 3416a7cc081cSVladimir Oltean { 3417a7cc081cSVladimir Oltean struct sja1105_l2_policing_entry *policing; 3418a7cc081cSVladimir Oltean struct sja1105_private *priv = ds->priv; 3419a7cc081cSVladimir Oltean 3420a7cc081cSVladimir Oltean policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3421a7cc081cSVladimir Oltean 3422a7cc081cSVladimir Oltean policing[port].rate = SJA1105_RATE_MBPS(1000); 3423a7cc081cSVladimir Oltean policing[port].smax = 65535; 3424a7cc081cSVladimir Oltean 3425a7cc081cSVladimir Oltean sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3426a7cc081cSVladimir Oltean } 3427a7cc081cSVladimir Oltean 34284d942354SVladimir Oltean static int sja1105_port_set_learning(struct sja1105_private *priv, int port, 34294d942354SVladimir Oltean bool enabled) 34304d942354SVladimir Oltean { 34314d942354SVladimir Oltean struct sja1105_mac_config_entry *mac; 34324d942354SVladimir Oltean int rc; 34334d942354SVladimir Oltean 34344d942354SVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 34354d942354SVladimir Oltean 34364c44fc5eSVladimir Oltean mac[port].dyn_learn = enabled; 34374d942354SVladimir Oltean 34384d942354SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 34394d942354SVladimir Oltean &mac[port], true); 34404d942354SVladimir Oltean if (rc) 34414d942354SVladimir Oltean return rc; 34424d942354SVladimir Oltean 34434d942354SVladimir Oltean if (enabled) 34444d942354SVladimir Oltean priv->learn_ena |= BIT(port); 34454d942354SVladimir Oltean else 34464d942354SVladimir Oltean priv->learn_ena &= ~BIT(port); 34474d942354SVladimir Oltean 34484d942354SVladimir Oltean return 0; 34494d942354SVladimir Oltean } 34504d942354SVladimir Oltean 34514d942354SVladimir Oltean static int sja1105_port_ucast_bcast_flood(struct sja1105_private *priv, int to, 34524d942354SVladimir Oltean struct switchdev_brport_flags flags) 34534d942354SVladimir Oltean { 34544d942354SVladimir Oltean if (flags.mask & BR_FLOOD) { 34554d942354SVladimir Oltean if (flags.val & BR_FLOOD) 34567f7ccdeaSVladimir Oltean priv->ucast_egress_floods |= BIT(to); 34574d942354SVladimir Oltean else 34586a5166e0SVladimir Oltean priv->ucast_egress_floods &= ~BIT(to); 34594d942354SVladimir Oltean } 34607f7ccdeaSVladimir Oltean 34614d942354SVladimir Oltean if (flags.mask & BR_BCAST_FLOOD) { 34624d942354SVladimir Oltean if (flags.val & BR_BCAST_FLOOD) 34637f7ccdeaSVladimir Oltean priv->bcast_egress_floods |= BIT(to); 34644d942354SVladimir Oltean else 34656a5166e0SVladimir Oltean priv->bcast_egress_floods &= ~BIT(to); 34664d942354SVladimir Oltean } 34674d942354SVladimir Oltean 34687f7ccdeaSVladimir Oltean return sja1105_manage_flood_domains(priv); 34694d942354SVladimir Oltean } 34704d942354SVladimir Oltean 34714d942354SVladimir Oltean static int sja1105_port_mcast_flood(struct sja1105_private *priv, int to, 34724d942354SVladimir Oltean struct switchdev_brport_flags flags, 34734d942354SVladimir Oltean struct netlink_ext_ack *extack) 34744d942354SVladimir Oltean { 34754d942354SVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 34764d942354SVladimir Oltean struct sja1105_table *table; 34774d942354SVladimir Oltean int match; 34784d942354SVladimir Oltean 34794d942354SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 34804d942354SVladimir Oltean l2_lookup = table->entries; 34814d942354SVladimir Oltean 34824d942354SVladimir Oltean for (match = 0; match < table->entry_count; match++) 34834d942354SVladimir Oltean if (l2_lookup[match].macaddr == SJA1105_UNKNOWN_MULTICAST && 34844d942354SVladimir Oltean l2_lookup[match].mask_macaddr == SJA1105_UNKNOWN_MULTICAST) 34854d942354SVladimir Oltean break; 34864d942354SVladimir Oltean 34874d942354SVladimir Oltean if (match == table->entry_count) { 34884d942354SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 34894d942354SVladimir Oltean "Could not find FDB entry for unknown multicast"); 34904d942354SVladimir Oltean return -ENOSPC; 34914d942354SVladimir Oltean } 34924d942354SVladimir Oltean 34934d942354SVladimir Oltean if (flags.val & BR_MCAST_FLOOD) 34944d942354SVladimir Oltean l2_lookup[match].destports |= BIT(to); 34954d942354SVladimir Oltean else 34964d942354SVladimir Oltean l2_lookup[match].destports &= ~BIT(to); 34974d942354SVladimir Oltean 34984d942354SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 34994d942354SVladimir Oltean l2_lookup[match].index, 35004d942354SVladimir Oltean &l2_lookup[match], 35014d942354SVladimir Oltean true); 35024d942354SVladimir Oltean } 35034d942354SVladimir Oltean 35044d942354SVladimir Oltean static int sja1105_port_pre_bridge_flags(struct dsa_switch *ds, int port, 35054d942354SVladimir Oltean struct switchdev_brport_flags flags, 35064d942354SVladimir Oltean struct netlink_ext_ack *extack) 35074d942354SVladimir Oltean { 35084d942354SVladimir Oltean struct sja1105_private *priv = ds->priv; 35094d942354SVladimir Oltean 35104d942354SVladimir Oltean if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD | 35114d942354SVladimir Oltean BR_BCAST_FLOOD)) 35124d942354SVladimir Oltean return -EINVAL; 35134d942354SVladimir Oltean 35144d942354SVladimir Oltean if (flags.mask & (BR_FLOOD | BR_MCAST_FLOOD) && 35154d942354SVladimir Oltean !priv->info->can_limit_mcast_flood) { 35164d942354SVladimir Oltean bool multicast = !!(flags.val & BR_MCAST_FLOOD); 35174d942354SVladimir Oltean bool unicast = !!(flags.val & BR_FLOOD); 35184d942354SVladimir Oltean 35194d942354SVladimir Oltean if (unicast != multicast) { 35204d942354SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 35214d942354SVladimir Oltean "This chip cannot configure multicast flooding independently of unicast"); 35224d942354SVladimir Oltean return -EINVAL; 35234d942354SVladimir Oltean } 35244d942354SVladimir Oltean } 35254d942354SVladimir Oltean 35264d942354SVladimir Oltean return 0; 35274d942354SVladimir Oltean } 35284d942354SVladimir Oltean 35294d942354SVladimir Oltean static int sja1105_port_bridge_flags(struct dsa_switch *ds, int port, 35304d942354SVladimir Oltean struct switchdev_brport_flags flags, 35314d942354SVladimir Oltean struct netlink_ext_ack *extack) 35324d942354SVladimir Oltean { 35334d942354SVladimir Oltean struct sja1105_private *priv = ds->priv; 35344d942354SVladimir Oltean int rc; 35354d942354SVladimir Oltean 35364d942354SVladimir Oltean if (flags.mask & BR_LEARNING) { 35374d942354SVladimir Oltean bool learn_ena = !!(flags.val & BR_LEARNING); 35384d942354SVladimir Oltean 35394d942354SVladimir Oltean rc = sja1105_port_set_learning(priv, port, learn_ena); 35404d942354SVladimir Oltean if (rc) 35414d942354SVladimir Oltean return rc; 35424d942354SVladimir Oltean } 35434d942354SVladimir Oltean 35444d942354SVladimir Oltean if (flags.mask & (BR_FLOOD | BR_BCAST_FLOOD)) { 35454d942354SVladimir Oltean rc = sja1105_port_ucast_bcast_flood(priv, port, flags); 35464d942354SVladimir Oltean if (rc) 35474d942354SVladimir Oltean return rc; 35484d942354SVladimir Oltean } 35494d942354SVladimir Oltean 35504d942354SVladimir Oltean /* For chips that can't offload BR_MCAST_FLOOD independently, there 35514d942354SVladimir Oltean * is nothing to do here, we ensured the configuration is in sync by 35524d942354SVladimir Oltean * offloading BR_FLOOD. 35534d942354SVladimir Oltean */ 35544d942354SVladimir Oltean if (flags.mask & BR_MCAST_FLOOD && priv->info->can_limit_mcast_flood) { 35554d942354SVladimir Oltean rc = sja1105_port_mcast_flood(priv, port, flags, 35564d942354SVladimir Oltean extack); 35574d942354SVladimir Oltean if (rc) 35584d942354SVladimir Oltean return rc; 35594d942354SVladimir Oltean } 35604d942354SVladimir Oltean 35614d942354SVladimir Oltean return 0; 35624d942354SVladimir Oltean } 35634d942354SVladimir Oltean 35648aa9ebccSVladimir Oltean static const struct dsa_switch_ops sja1105_switch_ops = { 35658aa9ebccSVladimir Oltean .get_tag_protocol = sja1105_get_tag_protocol, 35668aa9ebccSVladimir Oltean .setup = sja1105_setup, 3567f3097be2SVladimir Oltean .teardown = sja1105_teardown, 35688456721dSVladimir Oltean .set_ageing_time = sja1105_set_ageing_time, 3569c279c726SVladimir Oltean .port_change_mtu = sja1105_change_mtu, 3570c279c726SVladimir Oltean .port_max_mtu = sja1105_get_max_mtu, 3571ad9f299aSVladimir Oltean .phylink_validate = sja1105_phylink_validate, 3572af7cd036SVladimir Oltean .phylink_mac_config = sja1105_mac_config, 35738400cff6SVladimir Oltean .phylink_mac_link_up = sja1105_mac_link_up, 35748400cff6SVladimir Oltean .phylink_mac_link_down = sja1105_mac_link_down, 357552c34e6eSVladimir Oltean .get_strings = sja1105_get_strings, 357652c34e6eSVladimir Oltean .get_ethtool_stats = sja1105_get_ethtool_stats, 357752c34e6eSVladimir Oltean .get_sset_count = sja1105_get_sset_count, 3578bb77f36aSVladimir Oltean .get_ts_info = sja1105_get_ts_info, 3579a68578c2SVladimir Oltean .port_disable = sja1105_port_disable, 3580291d1e72SVladimir Oltean .port_fdb_dump = sja1105_fdb_dump, 3581291d1e72SVladimir Oltean .port_fdb_add = sja1105_fdb_add, 3582291d1e72SVladimir Oltean .port_fdb_del = sja1105_fdb_del, 35838aa9ebccSVladimir Oltean .port_bridge_join = sja1105_bridge_join, 35848aa9ebccSVladimir Oltean .port_bridge_leave = sja1105_bridge_leave, 35854d942354SVladimir Oltean .port_pre_bridge_flags = sja1105_port_pre_bridge_flags, 35864d942354SVladimir Oltean .port_bridge_flags = sja1105_port_bridge_flags, 3587640f763fSVladimir Oltean .port_stp_state_set = sja1105_bridge_stp_state_set, 35886666cebcSVladimir Oltean .port_vlan_filtering = sja1105_vlan_filtering, 35896666cebcSVladimir Oltean .port_vlan_add = sja1105_vlan_add, 35906666cebcSVladimir Oltean .port_vlan_del = sja1105_vlan_del, 3591291d1e72SVladimir Oltean .port_mdb_add = sja1105_mdb_add, 3592291d1e72SVladimir Oltean .port_mdb_del = sja1105_mdb_del, 3593a602afd2SVladimir Oltean .port_hwtstamp_get = sja1105_hwtstamp_get, 3594a602afd2SVladimir Oltean .port_hwtstamp_set = sja1105_hwtstamp_set, 3595f3097be2SVladimir Oltean .port_rxtstamp = sja1105_port_rxtstamp, 359647ed985eSVladimir Oltean .port_txtstamp = sja1105_port_txtstamp, 3597317ab5b8SVladimir Oltean .port_setup_tc = sja1105_port_setup_tc, 3598511e6ca0SVladimir Oltean .port_mirror_add = sja1105_mirror_add, 3599511e6ca0SVladimir Oltean .port_mirror_del = sja1105_mirror_del, 3600a7cc081cSVladimir Oltean .port_policer_add = sja1105_port_policer_add, 3601a7cc081cSVladimir Oltean .port_policer_del = sja1105_port_policer_del, 3602a6af7763SVladimir Oltean .cls_flower_add = sja1105_cls_flower_add, 3603a6af7763SVladimir Oltean .cls_flower_del = sja1105_cls_flower_del, 3604834f8933SVladimir Oltean .cls_flower_stats = sja1105_cls_flower_stats, 3605ac02a451SVladimir Oltean .crosschip_bridge_join = sja1105_crosschip_bridge_join, 3606ac02a451SVladimir Oltean .crosschip_bridge_leave = sja1105_crosschip_bridge_leave, 36072cafa72eSVladimir Oltean .devlink_param_get = sja1105_devlink_param_get, 36082cafa72eSVladimir Oltean .devlink_param_set = sja1105_devlink_param_set, 3609ff4cf8eaSVladimir Oltean .devlink_info_get = sja1105_devlink_info_get, 36108aa9ebccSVladimir Oltean }; 36118aa9ebccSVladimir Oltean 36120b0e2997SVladimir Oltean static const struct of_device_id sja1105_dt_ids[]; 36130b0e2997SVladimir Oltean 36148aa9ebccSVladimir Oltean static int sja1105_check_device_id(struct sja1105_private *priv) 36158aa9ebccSVladimir Oltean { 36168aa9ebccSVladimir Oltean const struct sja1105_regs *regs = priv->info->regs; 36178aa9ebccSVladimir Oltean u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0}; 36188aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 36190b0e2997SVladimir Oltean const struct of_device_id *match; 3620dff79620SVladimir Oltean u32 device_id; 36218aa9ebccSVladimir Oltean u64 part_no; 36228aa9ebccSVladimir Oltean int rc; 36238aa9ebccSVladimir Oltean 362434d76e9fSVladimir Oltean rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id, 362534d76e9fSVladimir Oltean NULL); 36268aa9ebccSVladimir Oltean if (rc < 0) 36278aa9ebccSVladimir Oltean return rc; 36288aa9ebccSVladimir Oltean 36291bd44870SVladimir Oltean rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id, 36301bd44870SVladimir Oltean SJA1105_SIZE_DEVICE_ID); 36318aa9ebccSVladimir Oltean if (rc < 0) 36328aa9ebccSVladimir Oltean return rc; 36338aa9ebccSVladimir Oltean 36348aa9ebccSVladimir Oltean sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID); 36358aa9ebccSVladimir Oltean 36365978fac0SNathan Chancellor for (match = sja1105_dt_ids; match->compatible[0]; match++) { 36370b0e2997SVladimir Oltean const struct sja1105_info *info = match->data; 36380b0e2997SVladimir Oltean 36390b0e2997SVladimir Oltean /* Is what's been probed in our match table at all? */ 36400b0e2997SVladimir Oltean if (info->device_id != device_id || info->part_no != part_no) 36410b0e2997SVladimir Oltean continue; 36420b0e2997SVladimir Oltean 36430b0e2997SVladimir Oltean /* But is it what's in the device tree? */ 36440b0e2997SVladimir Oltean if (priv->info->device_id != device_id || 36450b0e2997SVladimir Oltean priv->info->part_no != part_no) { 36460b0e2997SVladimir Oltean dev_warn(dev, "Device tree specifies chip %s but found %s, please fix it!\n", 36470b0e2997SVladimir Oltean priv->info->name, info->name); 36480b0e2997SVladimir Oltean /* It isn't. No problem, pick that up. */ 36490b0e2997SVladimir Oltean priv->info = info; 36508aa9ebccSVladimir Oltean } 36518aa9ebccSVladimir Oltean 36528aa9ebccSVladimir Oltean return 0; 36538aa9ebccSVladimir Oltean } 36548aa9ebccSVladimir Oltean 36550b0e2997SVladimir Oltean dev_err(dev, "Unexpected {device ID, part number}: 0x%x 0x%llx\n", 36560b0e2997SVladimir Oltean device_id, part_no); 36570b0e2997SVladimir Oltean 36580b0e2997SVladimir Oltean return -ENODEV; 36590b0e2997SVladimir Oltean } 36600b0e2997SVladimir Oltean 36618aa9ebccSVladimir Oltean static int sja1105_probe(struct spi_device *spi) 36628aa9ebccSVladimir Oltean { 3663844d7edcSVladimir Oltean struct sja1105_tagger_data *tagger_data; 36648aa9ebccSVladimir Oltean struct device *dev = &spi->dev; 36658aa9ebccSVladimir Oltean struct sja1105_private *priv; 3666718bad0eSVladimir Oltean size_t max_xfer, max_msg; 36678aa9ebccSVladimir Oltean struct dsa_switch *ds; 3668a68578c2SVladimir Oltean int rc, port; 36698aa9ebccSVladimir Oltean 36708aa9ebccSVladimir Oltean if (!dev->of_node) { 36718aa9ebccSVladimir Oltean dev_err(dev, "No DTS bindings for SJA1105 driver\n"); 36728aa9ebccSVladimir Oltean return -EINVAL; 36738aa9ebccSVladimir Oltean } 36748aa9ebccSVladimir Oltean 36758aa9ebccSVladimir Oltean priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL); 36768aa9ebccSVladimir Oltean if (!priv) 36778aa9ebccSVladimir Oltean return -ENOMEM; 36788aa9ebccSVladimir Oltean 36798aa9ebccSVladimir Oltean /* Configure the optional reset pin and bring up switch */ 36808aa9ebccSVladimir Oltean priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); 36818aa9ebccSVladimir Oltean if (IS_ERR(priv->reset_gpio)) 36828aa9ebccSVladimir Oltean dev_dbg(dev, "reset-gpios not defined, ignoring\n"); 36838aa9ebccSVladimir Oltean else 36848aa9ebccSVladimir Oltean sja1105_hw_reset(priv->reset_gpio, 1, 1); 36858aa9ebccSVladimir Oltean 36868aa9ebccSVladimir Oltean /* Populate our driver private structure (priv) based on 36878aa9ebccSVladimir Oltean * the device tree node that was probed (spi) 36888aa9ebccSVladimir Oltean */ 36898aa9ebccSVladimir Oltean priv->spidev = spi; 36908aa9ebccSVladimir Oltean spi_set_drvdata(spi, priv); 36918aa9ebccSVladimir Oltean 36928aa9ebccSVladimir Oltean /* Configure the SPI bus */ 36938aa9ebccSVladimir Oltean spi->bits_per_word = 8; 36948aa9ebccSVladimir Oltean rc = spi_setup(spi); 36958aa9ebccSVladimir Oltean if (rc < 0) { 36968aa9ebccSVladimir Oltean dev_err(dev, "Could not init SPI\n"); 36978aa9ebccSVladimir Oltean return rc; 36988aa9ebccSVladimir Oltean } 36998aa9ebccSVladimir Oltean 3700718bad0eSVladimir Oltean /* In sja1105_xfer, we send spi_messages composed of two spi_transfers: 3701718bad0eSVladimir Oltean * a small one for the message header and another one for the current 3702718bad0eSVladimir Oltean * chunk of the packed buffer. 3703718bad0eSVladimir Oltean * Check that the restrictions imposed by the SPI controller are 3704718bad0eSVladimir Oltean * respected: the chunk buffer is smaller than the max transfer size, 3705718bad0eSVladimir Oltean * and the total length of the chunk plus its message header is smaller 3706718bad0eSVladimir Oltean * than the max message size. 3707718bad0eSVladimir Oltean * We do that during probe time since the maximum transfer size is a 3708718bad0eSVladimir Oltean * runtime invariant. 3709718bad0eSVladimir Oltean */ 3710718bad0eSVladimir Oltean max_xfer = spi_max_transfer_size(spi); 3711718bad0eSVladimir Oltean max_msg = spi_max_message_size(spi); 3712718bad0eSVladimir Oltean 3713718bad0eSVladimir Oltean /* We need to send at least one 64-bit word of SPI payload per message 3714718bad0eSVladimir Oltean * in order to be able to make useful progress. 3715718bad0eSVladimir Oltean */ 3716718bad0eSVladimir Oltean if (max_msg < SJA1105_SIZE_SPI_MSG_HEADER + 8) { 3717718bad0eSVladimir Oltean dev_err(dev, "SPI master cannot send large enough buffers, aborting\n"); 3718718bad0eSVladimir Oltean return -EINVAL; 3719718bad0eSVladimir Oltean } 3720718bad0eSVladimir Oltean 3721718bad0eSVladimir Oltean priv->max_xfer_len = SJA1105_SIZE_SPI_MSG_MAXLEN; 3722718bad0eSVladimir Oltean if (priv->max_xfer_len > max_xfer) 3723718bad0eSVladimir Oltean priv->max_xfer_len = max_xfer; 3724718bad0eSVladimir Oltean if (priv->max_xfer_len > max_msg - SJA1105_SIZE_SPI_MSG_HEADER) 3725718bad0eSVladimir Oltean priv->max_xfer_len = max_msg - SJA1105_SIZE_SPI_MSG_HEADER; 3726718bad0eSVladimir Oltean 37278aa9ebccSVladimir Oltean priv->info = of_device_get_match_data(dev); 37288aa9ebccSVladimir Oltean 37298aa9ebccSVladimir Oltean /* Detect hardware device */ 37308aa9ebccSVladimir Oltean rc = sja1105_check_device_id(priv); 37318aa9ebccSVladimir Oltean if (rc < 0) { 37328aa9ebccSVladimir Oltean dev_err(dev, "Device ID check failed: %d\n", rc); 37338aa9ebccSVladimir Oltean return rc; 37348aa9ebccSVladimir Oltean } 37358aa9ebccSVladimir Oltean 37368aa9ebccSVladimir Oltean dev_info(dev, "Probed switch chip: %s\n", priv->info->name); 37378aa9ebccSVladimir Oltean 37387e99e347SVivien Didelot ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL); 37398aa9ebccSVladimir Oltean if (!ds) 37408aa9ebccSVladimir Oltean return -ENOMEM; 37418aa9ebccSVladimir Oltean 37427e99e347SVivien Didelot ds->dev = dev; 37433e77e59bSVladimir Oltean ds->num_ports = priv->info->num_ports; 37448aa9ebccSVladimir Oltean ds->ops = &sja1105_switch_ops; 37458aa9ebccSVladimir Oltean ds->priv = priv; 37468aa9ebccSVladimir Oltean priv->ds = ds; 37478aa9ebccSVladimir Oltean 3748844d7edcSVladimir Oltean tagger_data = &priv->tagger_data; 3749844d7edcSVladimir Oltean 3750d5a619bfSVivien Didelot mutex_init(&priv->ptp_data.lock); 3751d5a619bfSVivien Didelot mutex_init(&priv->mgmt_lock); 3752d5a619bfSVivien Didelot 37535899ee36SVladimir Oltean priv->dsa_8021q_ctx = devm_kzalloc(dev, sizeof(*priv->dsa_8021q_ctx), 37545899ee36SVladimir Oltean GFP_KERNEL); 37555899ee36SVladimir Oltean if (!priv->dsa_8021q_ctx) 37565899ee36SVladimir Oltean return -ENOMEM; 37575899ee36SVladimir Oltean 37585899ee36SVladimir Oltean priv->dsa_8021q_ctx->ops = &sja1105_dsa_8021q_ops; 3759bbed0bbdSVladimir Oltean priv->dsa_8021q_ctx->proto = htons(ETH_P_8021Q); 37605899ee36SVladimir Oltean priv->dsa_8021q_ctx->ds = ds; 37615899ee36SVladimir Oltean 37625899ee36SVladimir Oltean INIT_LIST_HEAD(&priv->dsa_8021q_ctx->crosschip_links); 3763ec5ae610SVladimir Oltean INIT_LIST_HEAD(&priv->bridge_vlans); 3764ec5ae610SVladimir Oltean INIT_LIST_HEAD(&priv->dsa_8021q_vlans); 3765ac02a451SVladimir Oltean 3766d5a619bfSVivien Didelot sja1105_tas_setup(ds); 3767a6af7763SVladimir Oltean sja1105_flower_setup(ds); 3768d5a619bfSVivien Didelot 3769d5a619bfSVivien Didelot rc = dsa_register_switch(priv->ds); 3770d5a619bfSVivien Didelot if (rc) 3771d5a619bfSVivien Didelot return rc; 3772d5a619bfSVivien Didelot 37734d752508SVladimir Oltean if (IS_ENABLED(CONFIG_NET_SCH_CBS)) { 37744d752508SVladimir Oltean priv->cbs = devm_kcalloc(dev, priv->info->num_cbs_shapers, 37754d752508SVladimir Oltean sizeof(struct sja1105_cbs_entry), 37764d752508SVladimir Oltean GFP_KERNEL); 3777dc596e3fSVladimir Oltean if (!priv->cbs) { 3778dc596e3fSVladimir Oltean rc = -ENOMEM; 3779dc596e3fSVladimir Oltean goto out_unregister_switch; 3780dc596e3fSVladimir Oltean } 37814d752508SVladimir Oltean } 37824d752508SVladimir Oltean 3783227d07a0SVladimir Oltean /* Connections between dsa_port and sja1105_port */ 3784542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 3785a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3786a68578c2SVladimir Oltean struct dsa_port *dp = dsa_to_port(ds, port); 3787a68578c2SVladimir Oltean struct net_device *slave; 378884eeb5d4SVladimir Oltean int subvlan; 3789227d07a0SVladimir Oltean 3790a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3791a68578c2SVladimir Oltean continue; 3792a68578c2SVladimir Oltean 3793a68578c2SVladimir Oltean dp->priv = sp; 3794a68578c2SVladimir Oltean sp->dp = dp; 3795844d7edcSVladimir Oltean sp->data = tagger_data; 3796a68578c2SVladimir Oltean slave = dp->slave; 3797a68578c2SVladimir Oltean kthread_init_work(&sp->xmit_work, sja1105_port_deferred_xmit); 3798a68578c2SVladimir Oltean sp->xmit_worker = kthread_create_worker(0, "%s_xmit", 3799a68578c2SVladimir Oltean slave->name); 3800a68578c2SVladimir Oltean if (IS_ERR(sp->xmit_worker)) { 3801a68578c2SVladimir Oltean rc = PTR_ERR(sp->xmit_worker); 3802a68578c2SVladimir Oltean dev_err(ds->dev, 3803a68578c2SVladimir Oltean "failed to create deferred xmit thread: %d\n", 3804a68578c2SVladimir Oltean rc); 3805dc596e3fSVladimir Oltean goto out_destroy_workers; 3806a68578c2SVladimir Oltean } 3807a68578c2SVladimir Oltean skb_queue_head_init(&sp->xmit_queue); 380838b5beeaSVladimir Oltean sp->xmit_tpid = ETH_P_SJA1105; 380984eeb5d4SVladimir Oltean 381084eeb5d4SVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 381184eeb5d4SVladimir Oltean sp->subvlan_map[subvlan] = VLAN_N_VID; 3812227d07a0SVladimir Oltean } 3813227d07a0SVladimir Oltean 3814d5a619bfSVivien Didelot return 0; 3815dc596e3fSVladimir Oltean 3816dc596e3fSVladimir Oltean out_destroy_workers: 3817a68578c2SVladimir Oltean while (port-- > 0) { 3818a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3819a68578c2SVladimir Oltean 3820a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3821a68578c2SVladimir Oltean continue; 3822a68578c2SVladimir Oltean 3823a68578c2SVladimir Oltean kthread_destroy_worker(sp->xmit_worker); 3824a68578c2SVladimir Oltean } 3825dc596e3fSVladimir Oltean 3826dc596e3fSVladimir Oltean out_unregister_switch: 3827dc596e3fSVladimir Oltean dsa_unregister_switch(ds); 3828dc596e3fSVladimir Oltean 3829a68578c2SVladimir Oltean return rc; 38308aa9ebccSVladimir Oltean } 38318aa9ebccSVladimir Oltean 38328aa9ebccSVladimir Oltean static int sja1105_remove(struct spi_device *spi) 38338aa9ebccSVladimir Oltean { 38348aa9ebccSVladimir Oltean struct sja1105_private *priv = spi_get_drvdata(spi); 38358aa9ebccSVladimir Oltean 38368aa9ebccSVladimir Oltean dsa_unregister_switch(priv->ds); 38378aa9ebccSVladimir Oltean return 0; 38388aa9ebccSVladimir Oltean } 38398aa9ebccSVladimir Oltean 38408aa9ebccSVladimir Oltean static const struct of_device_id sja1105_dt_ids[] = { 38418aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105e", .data = &sja1105e_info }, 38428aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105t", .data = &sja1105t_info }, 38438aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105p", .data = &sja1105p_info }, 38448aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105q", .data = &sja1105q_info }, 38458aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105r", .data = &sja1105r_info }, 38468aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105s", .data = &sja1105s_info }, 38473e77e59bSVladimir Oltean { .compatible = "nxp,sja1110a", .data = &sja1110a_info }, 38483e77e59bSVladimir Oltean { .compatible = "nxp,sja1110b", .data = &sja1110b_info }, 38493e77e59bSVladimir Oltean { .compatible = "nxp,sja1110c", .data = &sja1110c_info }, 38503e77e59bSVladimir Oltean { .compatible = "nxp,sja1110d", .data = &sja1110d_info }, 38518aa9ebccSVladimir Oltean { /* sentinel */ }, 38528aa9ebccSVladimir Oltean }; 38538aa9ebccSVladimir Oltean MODULE_DEVICE_TABLE(of, sja1105_dt_ids); 38548aa9ebccSVladimir Oltean 38558aa9ebccSVladimir Oltean static struct spi_driver sja1105_driver = { 38568aa9ebccSVladimir Oltean .driver = { 38578aa9ebccSVladimir Oltean .name = "sja1105", 38588aa9ebccSVladimir Oltean .owner = THIS_MODULE, 38598aa9ebccSVladimir Oltean .of_match_table = of_match_ptr(sja1105_dt_ids), 38608aa9ebccSVladimir Oltean }, 38618aa9ebccSVladimir Oltean .probe = sja1105_probe, 38628aa9ebccSVladimir Oltean .remove = sja1105_remove, 38638aa9ebccSVladimir Oltean }; 38648aa9ebccSVladimir Oltean 38658aa9ebccSVladimir Oltean module_spi_driver(sja1105_driver); 38668aa9ebccSVladimir Oltean 38678aa9ebccSVladimir Oltean MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>"); 38688aa9ebccSVladimir Oltean MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>"); 38698aa9ebccSVladimir Oltean MODULE_DESCRIPTION("SJA1105 Driver"); 38708aa9ebccSVladimir Oltean MODULE_LICENSE("GPL v2"); 3871