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> 198aa9ebccSVladimir Oltean #include <linux/netdev_features.h> 208aa9ebccSVladimir Oltean #include <linux/netdevice.h> 218aa9ebccSVladimir Oltean #include <linux/if_bridge.h> 228aa9ebccSVladimir Oltean #include <linux/if_ether.h> 23227d07a0SVladimir Oltean #include <linux/dsa/8021q.h> 248aa9ebccSVladimir Oltean #include "sja1105.h" 25ffe10e67SVladimir Oltean #include "sja1105_sgmii.h" 26317ab5b8SVladimir Oltean #include "sja1105_tas.h" 278aa9ebccSVladimir Oltean 284d942354SVladimir Oltean #define SJA1105_UNKNOWN_MULTICAST 0x010000000000ull 294d942354SVladimir Oltean 30ac02a451SVladimir Oltean static const struct dsa_switch_ops sja1105_switch_ops; 31ac02a451SVladimir Oltean 328aa9ebccSVladimir Oltean static void sja1105_hw_reset(struct gpio_desc *gpio, unsigned int pulse_len, 338aa9ebccSVladimir Oltean unsigned int startup_delay) 348aa9ebccSVladimir Oltean { 358aa9ebccSVladimir Oltean gpiod_set_value_cansleep(gpio, 1); 368aa9ebccSVladimir Oltean /* Wait for minimum reset pulse length */ 378aa9ebccSVladimir Oltean msleep(pulse_len); 388aa9ebccSVladimir Oltean gpiod_set_value_cansleep(gpio, 0); 398aa9ebccSVladimir Oltean /* Wait until chip is ready after reset */ 408aa9ebccSVladimir Oltean msleep(startup_delay); 418aa9ebccSVladimir Oltean } 428aa9ebccSVladimir Oltean 438aa9ebccSVladimir Oltean static void 448aa9ebccSVladimir Oltean sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd, 458aa9ebccSVladimir Oltean int from, int to, bool allow) 468aa9ebccSVladimir Oltean { 474d942354SVladimir Oltean if (allow) 488aa9ebccSVladimir Oltean l2_fwd[from].reach_port |= BIT(to); 494d942354SVladimir Oltean else 508aa9ebccSVladimir Oltean l2_fwd[from].reach_port &= ~BIT(to); 518aa9ebccSVladimir Oltean } 528aa9ebccSVladimir Oltean 537f7ccdeaSVladimir Oltean static bool sja1105_can_forward(struct sja1105_l2_forwarding_entry *l2_fwd, 547f7ccdeaSVladimir Oltean int from, int to) 557f7ccdeaSVladimir Oltean { 567f7ccdeaSVladimir Oltean return !!(l2_fwd[from].reach_port & BIT(to)); 577f7ccdeaSVladimir Oltean } 587f7ccdeaSVladimir Oltean 598aa9ebccSVladimir Oltean /* Structure used to temporarily transport device tree 608aa9ebccSVladimir Oltean * settings into sja1105_setup 618aa9ebccSVladimir Oltean */ 628aa9ebccSVladimir Oltean struct sja1105_dt_port { 638aa9ebccSVladimir Oltean phy_interface_t phy_mode; 648aa9ebccSVladimir Oltean sja1105_mii_role_t role; 658aa9ebccSVladimir Oltean }; 668aa9ebccSVladimir Oltean 678aa9ebccSVladimir Oltean static int sja1105_init_mac_settings(struct sja1105_private *priv) 688aa9ebccSVladimir Oltean { 698aa9ebccSVladimir Oltean struct sja1105_mac_config_entry default_mac = { 708aa9ebccSVladimir Oltean /* Enable all 8 priority queues on egress. 718aa9ebccSVladimir Oltean * Every queue i holds top[i] - base[i] frames. 728aa9ebccSVladimir Oltean * Sum of top[i] - base[i] is 511 (max hardware limit). 738aa9ebccSVladimir Oltean */ 748aa9ebccSVladimir Oltean .top = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF}, 758aa9ebccSVladimir Oltean .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0}, 768aa9ebccSVladimir Oltean .enabled = {true, true, true, true, true, true, true, true}, 778aa9ebccSVladimir Oltean /* Keep standard IFG of 12 bytes on egress. */ 788aa9ebccSVladimir Oltean .ifg = 0, 798aa9ebccSVladimir Oltean /* Always put the MAC speed in automatic mode, where it can be 801fd4a173SVladimir Oltean * adjusted at runtime by PHYLINK. 818aa9ebccSVladimir Oltean */ 828aa9ebccSVladimir Oltean .speed = SJA1105_SPEED_AUTO, 838aa9ebccSVladimir Oltean /* No static correction for 1-step 1588 events */ 848aa9ebccSVladimir Oltean .tp_delin = 0, 858aa9ebccSVladimir Oltean .tp_delout = 0, 868aa9ebccSVladimir Oltean /* Disable aging for critical TTEthernet traffic */ 878aa9ebccSVladimir Oltean .maxage = 0xFF, 888aa9ebccSVladimir Oltean /* Internal VLAN (pvid) to apply to untagged ingress */ 898aa9ebccSVladimir Oltean .vlanprio = 0, 90e3502b82SVladimir Oltean .vlanid = 1, 918aa9ebccSVladimir Oltean .ing_mirr = false, 928aa9ebccSVladimir Oltean .egr_mirr = false, 938aa9ebccSVladimir Oltean /* Don't drop traffic with other EtherType than ETH_P_IP */ 948aa9ebccSVladimir Oltean .drpnona664 = false, 958aa9ebccSVladimir Oltean /* Don't drop double-tagged traffic */ 968aa9ebccSVladimir Oltean .drpdtag = false, 978aa9ebccSVladimir Oltean /* Don't drop untagged traffic */ 988aa9ebccSVladimir Oltean .drpuntag = false, 998aa9ebccSVladimir Oltean /* Don't retag 802.1p (VID 0) traffic with the pvid */ 1008aa9ebccSVladimir Oltean .retag = false, 101640f763fSVladimir Oltean /* Disable learning and I/O on user ports by default - 102640f763fSVladimir Oltean * STP will enable it. 103640f763fSVladimir Oltean */ 104640f763fSVladimir Oltean .dyn_learn = false, 1058aa9ebccSVladimir Oltean .egress = false, 1068aa9ebccSVladimir Oltean .ingress = false, 1078aa9ebccSVladimir Oltean }; 1088aa9ebccSVladimir Oltean struct sja1105_mac_config_entry *mac; 109542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 1108aa9ebccSVladimir Oltean struct sja1105_table *table; 1118aa9ebccSVladimir Oltean int i; 1128aa9ebccSVladimir Oltean 1138aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG]; 1148aa9ebccSVladimir Oltean 1158aa9ebccSVladimir Oltean /* Discard previous MAC Configuration Table */ 1168aa9ebccSVladimir Oltean if (table->entry_count) { 1178aa9ebccSVladimir Oltean kfree(table->entries); 1188aa9ebccSVladimir Oltean table->entry_count = 0; 1198aa9ebccSVladimir Oltean } 1208aa9ebccSVladimir Oltean 121542043e9SVladimir Oltean table->entries = kcalloc(ds->num_ports, 1228aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 1238aa9ebccSVladimir Oltean if (!table->entries) 1248aa9ebccSVladimir Oltean return -ENOMEM; 1258aa9ebccSVladimir Oltean 126542043e9SVladimir Oltean table->entry_count = ds->num_ports; 1278aa9ebccSVladimir Oltean 1288aa9ebccSVladimir Oltean mac = table->entries; 1298aa9ebccSVladimir Oltean 130542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 1318aa9ebccSVladimir Oltean mac[i] = default_mac; 132640f763fSVladimir Oltean if (i == dsa_upstream_port(priv->ds, i)) { 133640f763fSVladimir Oltean /* STP doesn't get called for CPU port, so we need to 134640f763fSVladimir Oltean * set the I/O parameters statically. 135640f763fSVladimir Oltean */ 136640f763fSVladimir Oltean mac[i].dyn_learn = true; 137640f763fSVladimir Oltean mac[i].ingress = true; 138640f763fSVladimir Oltean mac[i].egress = true; 139640f763fSVladimir Oltean } 140640f763fSVladimir Oltean } 1418aa9ebccSVladimir Oltean 1428aa9ebccSVladimir Oltean return 0; 1438aa9ebccSVladimir Oltean } 1448aa9ebccSVladimir Oltean 145ffe10e67SVladimir Oltean static bool sja1105_supports_sgmii(struct sja1105_private *priv, int port) 146ffe10e67SVladimir Oltean { 147ffe10e67SVladimir Oltean if (priv->info->part_no != SJA1105R_PART_NO && 148ffe10e67SVladimir Oltean priv->info->part_no != SJA1105S_PART_NO) 149ffe10e67SVladimir Oltean return false; 150ffe10e67SVladimir Oltean 151ffe10e67SVladimir Oltean if (port != SJA1105_SGMII_PORT) 152ffe10e67SVladimir Oltean return false; 153ffe10e67SVladimir Oltean 154ffe10e67SVladimir Oltean if (dsa_is_unused_port(priv->ds, port)) 155ffe10e67SVladimir Oltean return false; 156ffe10e67SVladimir Oltean 157ffe10e67SVladimir Oltean return true; 158ffe10e67SVladimir Oltean } 159ffe10e67SVladimir Oltean 1608aa9ebccSVladimir Oltean static int sja1105_init_mii_settings(struct sja1105_private *priv, 1618aa9ebccSVladimir Oltean struct sja1105_dt_port *ports) 1628aa9ebccSVladimir Oltean { 1638aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 1648aa9ebccSVladimir Oltean struct sja1105_xmii_params_entry *mii; 165542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 1668aa9ebccSVladimir Oltean struct sja1105_table *table; 1678aa9ebccSVladimir Oltean int i; 1688aa9ebccSVladimir Oltean 1698aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS]; 1708aa9ebccSVladimir Oltean 1718aa9ebccSVladimir Oltean /* Discard previous xMII Mode Parameters Table */ 1728aa9ebccSVladimir Oltean if (table->entry_count) { 1738aa9ebccSVladimir Oltean kfree(table->entries); 1748aa9ebccSVladimir Oltean table->entry_count = 0; 1758aa9ebccSVladimir Oltean } 1768aa9ebccSVladimir Oltean 1778aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_XMII_PARAMS_COUNT, 1788aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 1798aa9ebccSVladimir Oltean if (!table->entries) 1808aa9ebccSVladimir Oltean return -ENOMEM; 1818aa9ebccSVladimir Oltean 1821fd4a173SVladimir Oltean /* Override table based on PHYLINK DT bindings */ 1838aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_XMII_PARAMS_COUNT; 1848aa9ebccSVladimir Oltean 1858aa9ebccSVladimir Oltean mii = table->entries; 1868aa9ebccSVladimir Oltean 187542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 188ee9d0cb6SVladimir Oltean if (dsa_is_unused_port(priv->ds, i)) 189ee9d0cb6SVladimir Oltean continue; 190ee9d0cb6SVladimir Oltean 1918aa9ebccSVladimir Oltean switch (ports[i].phy_mode) { 1928aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_MII: 1938aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_MII; 1948aa9ebccSVladimir Oltean break; 1958aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RMII: 1968aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_RMII; 1978aa9ebccSVladimir Oltean break; 1988aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII: 1998aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_ID: 2008aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_RXID: 2018aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_TXID: 2028aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_RGMII; 2038aa9ebccSVladimir Oltean break; 204ffe10e67SVladimir Oltean case PHY_INTERFACE_MODE_SGMII: 205ffe10e67SVladimir Oltean if (!sja1105_supports_sgmii(priv, i)) 206ffe10e67SVladimir Oltean return -EINVAL; 207ffe10e67SVladimir Oltean mii->xmii_mode[i] = XMII_MODE_SGMII; 208ffe10e67SVladimir Oltean break; 2098aa9ebccSVladimir Oltean default: 2108aa9ebccSVladimir Oltean dev_err(dev, "Unsupported PHY mode %s!\n", 2118aa9ebccSVladimir Oltean phy_modes(ports[i].phy_mode)); 2128aa9ebccSVladimir Oltean } 2138aa9ebccSVladimir Oltean 214ffe10e67SVladimir Oltean /* Even though the SerDes port is able to drive SGMII autoneg 215ffe10e67SVladimir Oltean * like a PHY would, from the perspective of the XMII tables, 216ffe10e67SVladimir Oltean * the SGMII port should always be put in MAC mode. 217ffe10e67SVladimir Oltean */ 218ffe10e67SVladimir Oltean if (ports[i].phy_mode == PHY_INTERFACE_MODE_SGMII) 219ffe10e67SVladimir Oltean mii->phy_mac[i] = XMII_MAC; 220ffe10e67SVladimir Oltean else 2218aa9ebccSVladimir Oltean mii->phy_mac[i] = ports[i].role; 2228aa9ebccSVladimir Oltean } 2238aa9ebccSVladimir Oltean return 0; 2248aa9ebccSVladimir Oltean } 2258aa9ebccSVladimir Oltean 2268aa9ebccSVladimir Oltean static int sja1105_init_static_fdb(struct sja1105_private *priv) 2278aa9ebccSVladimir Oltean { 2284d942354SVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 2298aa9ebccSVladimir Oltean struct sja1105_table *table; 2304d942354SVladimir Oltean int port; 2318aa9ebccSVladimir Oltean 2328aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 2338aa9ebccSVladimir Oltean 2344d942354SVladimir Oltean /* We only populate the FDB table through dynamic L2 Address Lookup 2354d942354SVladimir Oltean * entries, except for a special entry at the end which is a catch-all 2364d942354SVladimir Oltean * for unknown multicast and will be used to control flooding domain. 237291d1e72SVladimir Oltean */ 2388aa9ebccSVladimir Oltean if (table->entry_count) { 2398aa9ebccSVladimir Oltean kfree(table->entries); 2408aa9ebccSVladimir Oltean table->entry_count = 0; 2418aa9ebccSVladimir Oltean } 2424d942354SVladimir Oltean 2434d942354SVladimir Oltean if (!priv->info->can_limit_mcast_flood) 2444d942354SVladimir Oltean return 0; 2454d942354SVladimir Oltean 2464d942354SVladimir Oltean table->entries = kcalloc(1, table->ops->unpacked_entry_size, 2474d942354SVladimir Oltean GFP_KERNEL); 2484d942354SVladimir Oltean if (!table->entries) 2494d942354SVladimir Oltean return -ENOMEM; 2504d942354SVladimir Oltean 2514d942354SVladimir Oltean table->entry_count = 1; 2524d942354SVladimir Oltean l2_lookup = table->entries; 2534d942354SVladimir Oltean 2544d942354SVladimir Oltean /* All L2 multicast addresses have an odd first octet */ 2554d942354SVladimir Oltean l2_lookup[0].macaddr = SJA1105_UNKNOWN_MULTICAST; 2564d942354SVladimir Oltean l2_lookup[0].mask_macaddr = SJA1105_UNKNOWN_MULTICAST; 2574d942354SVladimir Oltean l2_lookup[0].lockeds = true; 2584d942354SVladimir Oltean l2_lookup[0].index = SJA1105_MAX_L2_LOOKUP_COUNT - 1; 2594d942354SVladimir Oltean 2604d942354SVladimir Oltean /* Flood multicast to every port by default */ 2614d942354SVladimir Oltean for (port = 0; port < priv->ds->num_ports; port++) 2624d942354SVladimir Oltean if (!dsa_is_unused_port(priv->ds, port)) 2634d942354SVladimir Oltean l2_lookup[0].destports |= BIT(port); 2644d942354SVladimir Oltean 2658aa9ebccSVladimir Oltean return 0; 2668aa9ebccSVladimir Oltean } 2678aa9ebccSVladimir Oltean 2688aa9ebccSVladimir Oltean static int sja1105_init_l2_lookup_params(struct sja1105_private *priv) 2698aa9ebccSVladimir Oltean { 2708aa9ebccSVladimir Oltean struct sja1105_l2_lookup_params_entry default_l2_lookup_params = { 2718456721dSVladimir Oltean /* Learned FDB entries are forgotten after 300 seconds */ 2728456721dSVladimir Oltean .maxage = SJA1105_AGEING_TIME_MS(300000), 2738aa9ebccSVladimir Oltean /* All entries within a FDB bin are available for learning */ 2748aa9ebccSVladimir Oltean .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE, 2751da73821SVladimir Oltean /* And the P/Q/R/S equivalent setting: */ 2761da73821SVladimir Oltean .start_dynspc = 0, 2778aa9ebccSVladimir Oltean /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */ 2788aa9ebccSVladimir Oltean .poly = 0x97, 2798aa9ebccSVladimir Oltean /* This selects between Independent VLAN Learning (IVL) and 2808aa9ebccSVladimir Oltean * Shared VLAN Learning (SVL) 2818aa9ebccSVladimir Oltean */ 2826d7c7d94SVladimir Oltean .shared_learn = true, 2838aa9ebccSVladimir Oltean /* Don't discard management traffic based on ENFPORT - 2848aa9ebccSVladimir Oltean * we don't perform SMAC port enforcement anyway, so 2858aa9ebccSVladimir Oltean * what we are setting here doesn't matter. 2868aa9ebccSVladimir Oltean */ 2878aa9ebccSVladimir Oltean .no_enf_hostprt = false, 2888aa9ebccSVladimir Oltean /* Don't learn SMAC for mac_fltres1 and mac_fltres0. 2898aa9ebccSVladimir Oltean * Maybe correlate with no_linklocal_learn from bridge driver? 2908aa9ebccSVladimir Oltean */ 2918aa9ebccSVladimir Oltean .no_mgmt_learn = true, 2921da73821SVladimir Oltean /* P/Q/R/S only */ 2931da73821SVladimir Oltean .use_static = true, 2941da73821SVladimir Oltean /* Dynamically learned FDB entries can overwrite other (older) 2951da73821SVladimir Oltean * dynamic FDB entries 2961da73821SVladimir Oltean */ 2971da73821SVladimir Oltean .owr_dyn = true, 2981da73821SVladimir Oltean .drpnolearn = true, 2998aa9ebccSVladimir Oltean }; 300542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 301f238fef1SVladimir Oltean int port, num_used_ports = 0; 302542043e9SVladimir Oltean struct sja1105_table *table; 303542043e9SVladimir Oltean u64 max_fdb_entries; 304542043e9SVladimir Oltean 305542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) 306f238fef1SVladimir Oltean if (!dsa_is_unused_port(ds, port)) 307f238fef1SVladimir Oltean num_used_ports++; 308f238fef1SVladimir Oltean 309f238fef1SVladimir Oltean max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / num_used_ports; 310f238fef1SVladimir Oltean 311f238fef1SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 312f238fef1SVladimir Oltean if (dsa_is_unused_port(ds, port)) 313f238fef1SVladimir Oltean continue; 314f238fef1SVladimir Oltean 315542043e9SVladimir Oltean default_l2_lookup_params.maxaddrp[port] = max_fdb_entries; 316f238fef1SVladimir Oltean } 3178aa9ebccSVladimir Oltean 3188aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 3198aa9ebccSVladimir Oltean 3208aa9ebccSVladimir Oltean if (table->entry_count) { 3218aa9ebccSVladimir Oltean kfree(table->entries); 3228aa9ebccSVladimir Oltean table->entry_count = 0; 3238aa9ebccSVladimir Oltean } 3248aa9ebccSVladimir Oltean 3258aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT, 3268aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 3278aa9ebccSVladimir Oltean if (!table->entries) 3288aa9ebccSVladimir Oltean return -ENOMEM; 3298aa9ebccSVladimir Oltean 3308aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT; 3318aa9ebccSVladimir Oltean 3328aa9ebccSVladimir Oltean /* This table only has a single entry */ 3338aa9ebccSVladimir Oltean ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] = 3348aa9ebccSVladimir Oltean default_l2_lookup_params; 3358aa9ebccSVladimir Oltean 3368aa9ebccSVladimir Oltean return 0; 3378aa9ebccSVladimir Oltean } 3388aa9ebccSVladimir Oltean 3398aa9ebccSVladimir Oltean static int sja1105_init_static_vlan(struct sja1105_private *priv) 3408aa9ebccSVladimir Oltean { 3418aa9ebccSVladimir Oltean struct sja1105_table *table; 3428aa9ebccSVladimir Oltean struct sja1105_vlan_lookup_entry pvid = { 3438aa9ebccSVladimir Oltean .ving_mirr = 0, 3448aa9ebccSVladimir Oltean .vegr_mirr = 0, 3458aa9ebccSVladimir Oltean .vmemb_port = 0, 3468aa9ebccSVladimir Oltean .vlan_bc = 0, 3478aa9ebccSVladimir Oltean .tag_port = 0, 348e3502b82SVladimir Oltean .vlanid = 1, 3498aa9ebccSVladimir Oltean }; 350ec5ae610SVladimir Oltean struct dsa_switch *ds = priv->ds; 351ec5ae610SVladimir Oltean int port; 3528aa9ebccSVladimir Oltean 3538aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 3548aa9ebccSVladimir Oltean 355e3502b82SVladimir Oltean /* The static VLAN table will only contain the initial pvid of 1. 3566666cebcSVladimir Oltean * All other VLANs are to be configured through dynamic entries, 3576666cebcSVladimir Oltean * and kept in the static configuration table as backing memory. 3588aa9ebccSVladimir Oltean */ 3598aa9ebccSVladimir Oltean if (table->entry_count) { 3608aa9ebccSVladimir Oltean kfree(table->entries); 3618aa9ebccSVladimir Oltean table->entry_count = 0; 3628aa9ebccSVladimir Oltean } 3638aa9ebccSVladimir Oltean 364c75857b0SZheng Yongjun table->entries = kzalloc(table->ops->unpacked_entry_size, 3658aa9ebccSVladimir Oltean GFP_KERNEL); 3668aa9ebccSVladimir Oltean if (!table->entries) 3678aa9ebccSVladimir Oltean return -ENOMEM; 3688aa9ebccSVladimir Oltean 3698aa9ebccSVladimir Oltean table->entry_count = 1; 3708aa9ebccSVladimir Oltean 371e3502b82SVladimir Oltean /* VLAN 1: all DT-defined ports are members; no restrictions on 372ec5ae610SVladimir Oltean * forwarding; always transmit as untagged. 3738aa9ebccSVladimir Oltean */ 374ec5ae610SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 375ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 376ec5ae610SVladimir Oltean 377ec5ae610SVladimir Oltean if (dsa_is_unused_port(ds, port)) 378ec5ae610SVladimir Oltean continue; 379ec5ae610SVladimir Oltean 380ec5ae610SVladimir Oltean pvid.vmemb_port |= BIT(port); 381ec5ae610SVladimir Oltean pvid.vlan_bc |= BIT(port); 382ec5ae610SVladimir Oltean pvid.tag_port &= ~BIT(port); 383ec5ae610SVladimir Oltean 384ec5ae610SVladimir Oltean /* Let traffic that don't need dsa_8021q (e.g. STP, PTP) be 385ec5ae610SVladimir Oltean * transmitted as untagged. 386ec5ae610SVladimir Oltean */ 387ec5ae610SVladimir Oltean v = kzalloc(sizeof(*v), GFP_KERNEL); 388ec5ae610SVladimir Oltean if (!v) 389ec5ae610SVladimir Oltean return -ENOMEM; 390ec5ae610SVladimir Oltean 391ec5ae610SVladimir Oltean v->port = port; 392ec5ae610SVladimir Oltean v->vid = 1; 393ec5ae610SVladimir Oltean v->untagged = true; 394ec5ae610SVladimir Oltean if (dsa_is_cpu_port(ds, port)) 395ec5ae610SVladimir Oltean v->pvid = true; 396ec5ae610SVladimir Oltean list_add(&v->list, &priv->dsa_8021q_vlans); 3978aa9ebccSVladimir Oltean } 3988aa9ebccSVladimir Oltean 3998aa9ebccSVladimir Oltean ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid; 4008aa9ebccSVladimir Oltean return 0; 4018aa9ebccSVladimir Oltean } 4028aa9ebccSVladimir Oltean 4038aa9ebccSVladimir Oltean static int sja1105_init_l2_forwarding(struct sja1105_private *priv) 4048aa9ebccSVladimir Oltean { 4058aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_entry *l2fwd; 406542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 4078aa9ebccSVladimir Oltean struct sja1105_table *table; 4088aa9ebccSVladimir Oltean int i, j; 4098aa9ebccSVladimir Oltean 4108aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING]; 4118aa9ebccSVladimir Oltean 4128aa9ebccSVladimir Oltean if (table->entry_count) { 4138aa9ebccSVladimir Oltean kfree(table->entries); 4148aa9ebccSVladimir Oltean table->entry_count = 0; 4158aa9ebccSVladimir Oltean } 4168aa9ebccSVladimir Oltean 4178aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_COUNT, 4188aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 4198aa9ebccSVladimir Oltean if (!table->entries) 4208aa9ebccSVladimir Oltean return -ENOMEM; 4218aa9ebccSVladimir Oltean 4228aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_FORWARDING_COUNT; 4238aa9ebccSVladimir Oltean 4248aa9ebccSVladimir Oltean l2fwd = table->entries; 4258aa9ebccSVladimir Oltean 4268aa9ebccSVladimir Oltean /* First 5 entries define the forwarding rules */ 427542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 4288aa9ebccSVladimir Oltean unsigned int upstream = dsa_upstream_port(priv->ds, i); 4298aa9ebccSVladimir Oltean 430f238fef1SVladimir Oltean if (dsa_is_unused_port(ds, i)) 431f238fef1SVladimir Oltean continue; 432f238fef1SVladimir Oltean 4338aa9ebccSVladimir Oltean for (j = 0; j < SJA1105_NUM_TC; j++) 4348aa9ebccSVladimir Oltean l2fwd[i].vlan_pmap[j] = j; 4358aa9ebccSVladimir Oltean 4367f7ccdeaSVladimir Oltean /* All ports start up with egress flooding enabled, 4377f7ccdeaSVladimir Oltean * including the CPU port. 4387f7ccdeaSVladimir Oltean */ 4397f7ccdeaSVladimir Oltean priv->ucast_egress_floods |= BIT(i); 4407f7ccdeaSVladimir Oltean priv->bcast_egress_floods |= BIT(i); 4417f7ccdeaSVladimir Oltean 4428aa9ebccSVladimir Oltean if (i == upstream) 4438aa9ebccSVladimir Oltean continue; 4448aa9ebccSVladimir Oltean 4458aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2fwd, i, upstream, true); 4468aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2fwd, upstream, i, true); 4474d942354SVladimir Oltean 4484d942354SVladimir Oltean l2fwd[i].bc_domain = BIT(upstream); 4494d942354SVladimir Oltean l2fwd[i].fl_domain = BIT(upstream); 4504d942354SVladimir Oltean 4514d942354SVladimir Oltean l2fwd[upstream].bc_domain |= BIT(i); 4524d942354SVladimir Oltean l2fwd[upstream].fl_domain |= BIT(i); 4538aa9ebccSVladimir Oltean } 454f238fef1SVladimir Oltean 4558aa9ebccSVladimir Oltean /* Next 8 entries define VLAN PCP mapping from ingress to egress. 4568aa9ebccSVladimir Oltean * Create a one-to-one mapping. 4578aa9ebccSVladimir Oltean */ 458f238fef1SVladimir Oltean for (i = 0; i < SJA1105_NUM_TC; i++) { 459f238fef1SVladimir Oltean for (j = 0; j < ds->num_ports; j++) { 460f238fef1SVladimir Oltean if (dsa_is_unused_port(ds, j)) 461f238fef1SVladimir Oltean continue; 462f238fef1SVladimir Oltean 463542043e9SVladimir Oltean l2fwd[ds->num_ports + i].vlan_pmap[j] = i; 464f238fef1SVladimir Oltean } 465f238fef1SVladimir Oltean } 4668aa9ebccSVladimir Oltean 4678aa9ebccSVladimir Oltean return 0; 4688aa9ebccSVladimir Oltean } 4698aa9ebccSVladimir Oltean 4708aa9ebccSVladimir Oltean static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv) 4718aa9ebccSVladimir Oltean { 4728aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_params_entry default_l2fwd_params = { 4738aa9ebccSVladimir Oltean /* Disallow dynamic reconfiguration of vlan_pmap */ 4748aa9ebccSVladimir Oltean .max_dynp = 0, 4758aa9ebccSVladimir Oltean /* Use a single memory partition for all ingress queues */ 4768aa9ebccSVladimir Oltean .part_spc = { SJA1105_MAX_FRAME_MEMORY, 0, 0, 0, 0, 0, 0, 0 }, 4778aa9ebccSVladimir Oltean }; 4788aa9ebccSVladimir Oltean struct sja1105_table *table; 4798aa9ebccSVladimir Oltean 4808aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS]; 4818aa9ebccSVladimir Oltean 4828aa9ebccSVladimir Oltean if (table->entry_count) { 4838aa9ebccSVladimir Oltean kfree(table->entries); 4848aa9ebccSVladimir Oltean table->entry_count = 0; 4858aa9ebccSVladimir Oltean } 4868aa9ebccSVladimir Oltean 4878aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT, 4888aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 4898aa9ebccSVladimir Oltean if (!table->entries) 4908aa9ebccSVladimir Oltean return -ENOMEM; 4918aa9ebccSVladimir Oltean 4928aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT; 4938aa9ebccSVladimir Oltean 4948aa9ebccSVladimir Oltean /* This table only has a single entry */ 4958aa9ebccSVladimir Oltean ((struct sja1105_l2_forwarding_params_entry *)table->entries)[0] = 4968aa9ebccSVladimir Oltean default_l2fwd_params; 4978aa9ebccSVladimir Oltean 4988aa9ebccSVladimir Oltean return 0; 4998aa9ebccSVladimir Oltean } 5008aa9ebccSVladimir Oltean 501aaa270c6SVladimir Oltean void sja1105_frame_memory_partitioning(struct sja1105_private *priv) 502aaa270c6SVladimir Oltean { 503aaa270c6SVladimir Oltean struct sja1105_l2_forwarding_params_entry *l2_fwd_params; 504aaa270c6SVladimir Oltean struct sja1105_vl_forwarding_params_entry *vl_fwd_params; 505aaa270c6SVladimir Oltean struct sja1105_table *table; 506aaa270c6SVladimir Oltean int max_mem; 507aaa270c6SVladimir Oltean 508aaa270c6SVladimir Oltean /* VLAN retagging is implemented using a loopback port that consumes 509aaa270c6SVladimir Oltean * frame buffers. That leaves less for us. 510aaa270c6SVladimir Oltean */ 511aaa270c6SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_BEST_EFFORT) 512aaa270c6SVladimir Oltean max_mem = SJA1105_MAX_FRAME_MEMORY_RETAGGING; 513aaa270c6SVladimir Oltean else 514aaa270c6SVladimir Oltean max_mem = SJA1105_MAX_FRAME_MEMORY; 515aaa270c6SVladimir Oltean 516aaa270c6SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS]; 517aaa270c6SVladimir Oltean l2_fwd_params = table->entries; 518aaa270c6SVladimir Oltean l2_fwd_params->part_spc[0] = max_mem; 519aaa270c6SVladimir Oltean 520aaa270c6SVladimir Oltean /* If we have any critical-traffic virtual links, we need to reserve 521aaa270c6SVladimir Oltean * some frame buffer memory for them. At the moment, hardcode the value 522aaa270c6SVladimir Oltean * at 100 blocks of 128 bytes of memory each. This leaves 829 blocks 523aaa270c6SVladimir Oltean * remaining for best-effort traffic. TODO: figure out a more flexible 524aaa270c6SVladimir Oltean * way to perform the frame buffer partitioning. 525aaa270c6SVladimir Oltean */ 526aaa270c6SVladimir Oltean if (!priv->static_config.tables[BLK_IDX_VL_FORWARDING].entry_count) 527aaa270c6SVladimir Oltean return; 528aaa270c6SVladimir Oltean 529aaa270c6SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VL_FORWARDING_PARAMS]; 530aaa270c6SVladimir Oltean vl_fwd_params = table->entries; 531aaa270c6SVladimir Oltean 532aaa270c6SVladimir Oltean l2_fwd_params->part_spc[0] -= SJA1105_VL_FRAME_MEMORY; 533aaa270c6SVladimir Oltean vl_fwd_params->partspc[0] = SJA1105_VL_FRAME_MEMORY; 534aaa270c6SVladimir Oltean } 535aaa270c6SVladimir Oltean 5368aa9ebccSVladimir Oltean static int sja1105_init_general_params(struct sja1105_private *priv) 5378aa9ebccSVladimir Oltean { 5388aa9ebccSVladimir Oltean struct sja1105_general_params_entry default_general_params = { 539511e6ca0SVladimir Oltean /* Allow dynamic changing of the mirror port */ 540511e6ca0SVladimir Oltean .mirr_ptacu = true, 5418aa9ebccSVladimir Oltean .switchid = priv->ds->index, 5425f06c63bSVladimir Oltean /* Priority queue for link-local management frames 5435f06c63bSVladimir Oltean * (both ingress to and egress from CPU - PTP, STP etc) 5445f06c63bSVladimir Oltean */ 54508fde09aSVladimir Oltean .hostprio = 7, 5468aa9ebccSVladimir Oltean .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A, 5478aa9ebccSVladimir Oltean .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK, 54842824463SVladimir Oltean .incl_srcpt1 = false, 5498aa9ebccSVladimir Oltean .send_meta1 = false, 5508aa9ebccSVladimir Oltean .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B, 5518aa9ebccSVladimir Oltean .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK, 55242824463SVladimir Oltean .incl_srcpt0 = false, 5538aa9ebccSVladimir Oltean .send_meta0 = false, 5548aa9ebccSVladimir Oltean /* The destination for traffic matching mac_fltres1 and 5558aa9ebccSVladimir Oltean * mac_fltres0 on all ports except host_port. Such traffic 5568aa9ebccSVladimir Oltean * receieved on host_port itself would be dropped, except 5578aa9ebccSVladimir Oltean * by installing a temporary 'management route' 5588aa9ebccSVladimir Oltean */ 5598aa9ebccSVladimir Oltean .host_port = dsa_upstream_port(priv->ds, 0), 560511e6ca0SVladimir Oltean /* Default to an invalid value */ 561542043e9SVladimir Oltean .mirr_port = priv->ds->num_ports, 5628aa9ebccSVladimir Oltean /* Link-local traffic received on casc_port will be forwarded 5638aa9ebccSVladimir Oltean * to host_port without embedding the source port and device ID 5648aa9ebccSVladimir Oltean * info in the destination MAC address (presumably because it 5658aa9ebccSVladimir Oltean * is a cascaded port and a downstream SJA switch already did 5668aa9ebccSVladimir Oltean * that). Default to an invalid port (to disable the feature) 5678aa9ebccSVladimir Oltean * and overwrite this if we find any DSA (cascaded) ports. 5688aa9ebccSVladimir Oltean */ 569542043e9SVladimir Oltean .casc_port = priv->ds->num_ports, 5708aa9ebccSVladimir Oltean /* No TTEthernet */ 571dfacc5a2SVladimir Oltean .vllupformat = SJA1105_VL_FORMAT_PSFP, 5728aa9ebccSVladimir Oltean .vlmarker = 0, 5738aa9ebccSVladimir Oltean .vlmask = 0, 5748aa9ebccSVladimir Oltean /* Only update correctionField for 1-step PTP (L2 transport) */ 5758aa9ebccSVladimir Oltean .ignore2stf = 0, 5766666cebcSVladimir Oltean /* Forcefully disable VLAN filtering by telling 5776666cebcSVladimir Oltean * the switch that VLAN has a different EtherType. 5786666cebcSVladimir Oltean */ 5796666cebcSVladimir Oltean .tpid = ETH_P_SJA1105, 5806666cebcSVladimir Oltean .tpid2 = ETH_P_SJA1105, 5818aa9ebccSVladimir Oltean }; 5828aa9ebccSVladimir Oltean struct sja1105_table *table; 5838aa9ebccSVladimir Oltean 5848aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 5858aa9ebccSVladimir Oltean 5868aa9ebccSVladimir Oltean if (table->entry_count) { 5878aa9ebccSVladimir Oltean kfree(table->entries); 5888aa9ebccSVladimir Oltean table->entry_count = 0; 5898aa9ebccSVladimir Oltean } 5908aa9ebccSVladimir Oltean 5918aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_GENERAL_PARAMS_COUNT, 5928aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 5938aa9ebccSVladimir Oltean if (!table->entries) 5948aa9ebccSVladimir Oltean return -ENOMEM; 5958aa9ebccSVladimir Oltean 5968aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_GENERAL_PARAMS_COUNT; 5978aa9ebccSVladimir Oltean 5988aa9ebccSVladimir Oltean /* This table only has a single entry */ 5998aa9ebccSVladimir Oltean ((struct sja1105_general_params_entry *)table->entries)[0] = 6008aa9ebccSVladimir Oltean default_general_params; 6018aa9ebccSVladimir Oltean 6028aa9ebccSVladimir Oltean return 0; 6038aa9ebccSVladimir Oltean } 6048aa9ebccSVladimir Oltean 60579d5511cSVladimir Oltean static int sja1105_init_avb_params(struct sja1105_private *priv) 60679d5511cSVladimir Oltean { 60779d5511cSVladimir Oltean struct sja1105_avb_params_entry *avb; 60879d5511cSVladimir Oltean struct sja1105_table *table; 60979d5511cSVladimir Oltean 61079d5511cSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS]; 61179d5511cSVladimir Oltean 61279d5511cSVladimir Oltean /* Discard previous AVB Parameters Table */ 61379d5511cSVladimir Oltean if (table->entry_count) { 61479d5511cSVladimir Oltean kfree(table->entries); 61579d5511cSVladimir Oltean table->entry_count = 0; 61679d5511cSVladimir Oltean } 61779d5511cSVladimir Oltean 61879d5511cSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_AVB_PARAMS_COUNT, 61979d5511cSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 62079d5511cSVladimir Oltean if (!table->entries) 62179d5511cSVladimir Oltean return -ENOMEM; 62279d5511cSVladimir Oltean 62379d5511cSVladimir Oltean table->entry_count = SJA1105_MAX_AVB_PARAMS_COUNT; 62479d5511cSVladimir Oltean 62579d5511cSVladimir Oltean avb = table->entries; 62679d5511cSVladimir Oltean 62779d5511cSVladimir Oltean /* Configure the MAC addresses for meta frames */ 62879d5511cSVladimir Oltean avb->destmeta = SJA1105_META_DMAC; 62979d5511cSVladimir Oltean avb->srcmeta = SJA1105_META_SMAC; 630747e5eb3SVladimir Oltean /* On P/Q/R/S, configure the direction of the PTP_CLK pin as input by 631747e5eb3SVladimir Oltean * default. This is because there might be boards with a hardware 632747e5eb3SVladimir Oltean * layout where enabling the pin as output might cause an electrical 633747e5eb3SVladimir Oltean * clash. On E/T the pin is always an output, which the board designers 634747e5eb3SVladimir Oltean * probably already knew, so even if there are going to be electrical 635747e5eb3SVladimir Oltean * issues, there's nothing we can do. 636747e5eb3SVladimir Oltean */ 637747e5eb3SVladimir Oltean avb->cas_master = false; 63879d5511cSVladimir Oltean 63979d5511cSVladimir Oltean return 0; 64079d5511cSVladimir Oltean } 64179d5511cSVladimir Oltean 642a7cc081cSVladimir Oltean /* The L2 policing table is 2-stage. The table is looked up for each frame 643a7cc081cSVladimir Oltean * according to the ingress port, whether it was broadcast or not, and the 644a7cc081cSVladimir Oltean * classified traffic class (given by VLAN PCP). This portion of the lookup is 645a7cc081cSVladimir Oltean * fixed, and gives access to the SHARINDX, an indirection register pointing 646a7cc081cSVladimir Oltean * within the policing table itself, which is used to resolve the policer that 647a7cc081cSVladimir Oltean * will be used for this frame. 648a7cc081cSVladimir Oltean * 649a7cc081cSVladimir Oltean * Stage 1 Stage 2 650a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 651a7cc081cSVladimir Oltean * |Port 0 TC 0 |SHARINDX| | Policer 0: Rate, Burst, MTU | 652a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 653a7cc081cSVladimir Oltean * |Port 0 TC 1 |SHARINDX| | Policer 1: Rate, Burst, MTU | 654a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 655a7cc081cSVladimir Oltean * ... | Policer 2: Rate, Burst, MTU | 656a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 657a7cc081cSVladimir Oltean * |Port 0 TC 7 |SHARINDX| | Policer 3: Rate, Burst, MTU | 658a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 659a7cc081cSVladimir Oltean * |Port 1 TC 0 |SHARINDX| | Policer 4: Rate, Burst, MTU | 660a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 661a7cc081cSVladimir Oltean * ... | Policer 5: Rate, Burst, MTU | 662a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 663a7cc081cSVladimir Oltean * |Port 1 TC 7 |SHARINDX| | Policer 6: Rate, Burst, MTU | 664a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 665a7cc081cSVladimir Oltean * ... | Policer 7: Rate, Burst, MTU | 666a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 667a7cc081cSVladimir Oltean * |Port 4 TC 7 |SHARINDX| ... 668a7cc081cSVladimir Oltean * +------------+--------+ 669a7cc081cSVladimir Oltean * |Port 0 BCAST|SHARINDX| ... 670a7cc081cSVladimir Oltean * +------------+--------+ 671a7cc081cSVladimir Oltean * |Port 1 BCAST|SHARINDX| ... 672a7cc081cSVladimir Oltean * +------------+--------+ 673a7cc081cSVladimir Oltean * ... ... 674a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 675a7cc081cSVladimir Oltean * |Port 4 BCAST|SHARINDX| | Policer 44: Rate, Burst, MTU | 676a7cc081cSVladimir Oltean * +------------+--------+ +---------------------------------+ 677a7cc081cSVladimir Oltean * 678a7cc081cSVladimir Oltean * In this driver, we shall use policers 0-4 as statically alocated port 679a7cc081cSVladimir Oltean * (matchall) policers. So we need to make the SHARINDX for all lookups 680a7cc081cSVladimir Oltean * corresponding to this ingress port (8 VLAN PCP lookups and 1 broadcast 681a7cc081cSVladimir Oltean * lookup) equal. 682a7cc081cSVladimir Oltean * The remaining policers (40) shall be dynamically allocated for flower 683a7cc081cSVladimir Oltean * policers, where the key is either vlan_prio or dst_mac ff:ff:ff:ff:ff:ff. 684a7cc081cSVladimir Oltean */ 6858aa9ebccSVladimir Oltean #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000) 6868aa9ebccSVladimir Oltean 6878aa9ebccSVladimir Oltean static int sja1105_init_l2_policing(struct sja1105_private *priv) 6888aa9ebccSVladimir Oltean { 6898aa9ebccSVladimir Oltean struct sja1105_l2_policing_entry *policing; 690542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 6918aa9ebccSVladimir Oltean struct sja1105_table *table; 692a7cc081cSVladimir Oltean int port, tc; 6938aa9ebccSVladimir Oltean 6948aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_POLICING]; 6958aa9ebccSVladimir Oltean 6968aa9ebccSVladimir Oltean /* Discard previous L2 Policing Table */ 6978aa9ebccSVladimir Oltean if (table->entry_count) { 6988aa9ebccSVladimir Oltean kfree(table->entries); 6998aa9ebccSVladimir Oltean table->entry_count = 0; 7008aa9ebccSVladimir Oltean } 7018aa9ebccSVladimir Oltean 7028aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_POLICING_COUNT, 7038aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 7048aa9ebccSVladimir Oltean if (!table->entries) 7058aa9ebccSVladimir Oltean return -ENOMEM; 7068aa9ebccSVladimir Oltean 7078aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_POLICING_COUNT; 7088aa9ebccSVladimir Oltean 7098aa9ebccSVladimir Oltean policing = table->entries; 7108aa9ebccSVladimir Oltean 711a7cc081cSVladimir Oltean /* Setup shared indices for the matchall policers */ 712542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 713542043e9SVladimir Oltean int bcast = (ds->num_ports * SJA1105_NUM_TC) + port; 714a7cc081cSVladimir Oltean 715a7cc081cSVladimir Oltean for (tc = 0; tc < SJA1105_NUM_TC; tc++) 716a7cc081cSVladimir Oltean policing[port * SJA1105_NUM_TC + tc].sharindx = port; 717a7cc081cSVladimir Oltean 718a7cc081cSVladimir Oltean policing[bcast].sharindx = port; 719a7cc081cSVladimir Oltean } 720a7cc081cSVladimir Oltean 721a7cc081cSVladimir Oltean /* Setup the matchall policer parameters */ 722542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 723c279c726SVladimir Oltean int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN; 724c279c726SVladimir Oltean 725a7cc081cSVladimir Oltean if (dsa_is_cpu_port(priv->ds, port)) 726c279c726SVladimir Oltean mtu += VLAN_HLEN; 7278aa9ebccSVladimir Oltean 728a7cc081cSVladimir Oltean policing[port].smax = 65535; /* Burst size in bytes */ 729a7cc081cSVladimir Oltean policing[port].rate = SJA1105_RATE_MBPS(1000); 730a7cc081cSVladimir Oltean policing[port].maxlen = mtu; 731a7cc081cSVladimir Oltean policing[port].partition = 0; 7328aa9ebccSVladimir Oltean } 733a7cc081cSVladimir Oltean 7348aa9ebccSVladimir Oltean return 0; 7358aa9ebccSVladimir Oltean } 7368aa9ebccSVladimir Oltean 7378aa9ebccSVladimir Oltean static int sja1105_static_config_load(struct sja1105_private *priv, 7388aa9ebccSVladimir Oltean struct sja1105_dt_port *ports) 7398aa9ebccSVladimir Oltean { 7408aa9ebccSVladimir Oltean int rc; 7418aa9ebccSVladimir Oltean 7428aa9ebccSVladimir Oltean sja1105_static_config_free(&priv->static_config); 7438aa9ebccSVladimir Oltean rc = sja1105_static_config_init(&priv->static_config, 7448aa9ebccSVladimir Oltean priv->info->static_ops, 7458aa9ebccSVladimir Oltean priv->info->device_id); 7468aa9ebccSVladimir Oltean if (rc) 7478aa9ebccSVladimir Oltean return rc; 7488aa9ebccSVladimir Oltean 7498aa9ebccSVladimir Oltean /* Build static configuration */ 7508aa9ebccSVladimir Oltean rc = sja1105_init_mac_settings(priv); 7518aa9ebccSVladimir Oltean if (rc < 0) 7528aa9ebccSVladimir Oltean return rc; 7538aa9ebccSVladimir Oltean rc = sja1105_init_mii_settings(priv, ports); 7548aa9ebccSVladimir Oltean if (rc < 0) 7558aa9ebccSVladimir Oltean return rc; 7568aa9ebccSVladimir Oltean rc = sja1105_init_static_fdb(priv); 7578aa9ebccSVladimir Oltean if (rc < 0) 7588aa9ebccSVladimir Oltean return rc; 7598aa9ebccSVladimir Oltean rc = sja1105_init_static_vlan(priv); 7608aa9ebccSVladimir Oltean if (rc < 0) 7618aa9ebccSVladimir Oltean return rc; 7628aa9ebccSVladimir Oltean rc = sja1105_init_l2_lookup_params(priv); 7638aa9ebccSVladimir Oltean if (rc < 0) 7648aa9ebccSVladimir Oltean return rc; 7658aa9ebccSVladimir Oltean rc = sja1105_init_l2_forwarding(priv); 7668aa9ebccSVladimir Oltean if (rc < 0) 7678aa9ebccSVladimir Oltean return rc; 7688aa9ebccSVladimir Oltean rc = sja1105_init_l2_forwarding_params(priv); 7698aa9ebccSVladimir Oltean if (rc < 0) 7708aa9ebccSVladimir Oltean return rc; 7718aa9ebccSVladimir Oltean rc = sja1105_init_l2_policing(priv); 7728aa9ebccSVladimir Oltean if (rc < 0) 7738aa9ebccSVladimir Oltean return rc; 7748aa9ebccSVladimir Oltean rc = sja1105_init_general_params(priv); 7758aa9ebccSVladimir Oltean if (rc < 0) 7768aa9ebccSVladimir Oltean return rc; 77779d5511cSVladimir Oltean rc = sja1105_init_avb_params(priv); 77879d5511cSVladimir Oltean if (rc < 0) 77979d5511cSVladimir Oltean return rc; 7808aa9ebccSVladimir Oltean 7818aa9ebccSVladimir Oltean /* Send initial configuration to hardware via SPI */ 7828aa9ebccSVladimir Oltean return sja1105_static_config_upload(priv); 7838aa9ebccSVladimir Oltean } 7848aa9ebccSVladimir Oltean 785f5b8631cSVladimir Oltean static int sja1105_parse_rgmii_delays(struct sja1105_private *priv, 786f5b8631cSVladimir Oltean const struct sja1105_dt_port *ports) 787f5b8631cSVladimir Oltean { 788542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 789f5b8631cSVladimir Oltean int i; 790f5b8631cSVladimir Oltean 791542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 7929bca3a0aSOleksij Rempel if (ports[i].role == XMII_MAC) 793f5b8631cSVladimir Oltean continue; 794f5b8631cSVladimir Oltean 7959bca3a0aSOleksij Rempel if (ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_RXID || 7969bca3a0aSOleksij Rempel ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_ID) 797f5b8631cSVladimir Oltean priv->rgmii_rx_delay[i] = true; 798f5b8631cSVladimir Oltean 7999bca3a0aSOleksij Rempel if (ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_TXID || 8009bca3a0aSOleksij Rempel ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_ID) 801f5b8631cSVladimir Oltean priv->rgmii_tx_delay[i] = true; 802f5b8631cSVladimir Oltean 803f5b8631cSVladimir Oltean if ((priv->rgmii_rx_delay[i] || priv->rgmii_tx_delay[i]) && 804f5b8631cSVladimir Oltean !priv->info->setup_rgmii_delay) 805f5b8631cSVladimir Oltean return -EINVAL; 806f5b8631cSVladimir Oltean } 807f5b8631cSVladimir Oltean return 0; 808f5b8631cSVladimir Oltean } 809f5b8631cSVladimir Oltean 8108aa9ebccSVladimir Oltean static int sja1105_parse_ports_node(struct sja1105_private *priv, 8118aa9ebccSVladimir Oltean struct sja1105_dt_port *ports, 8128aa9ebccSVladimir Oltean struct device_node *ports_node) 8138aa9ebccSVladimir Oltean { 8148aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 8158aa9ebccSVladimir Oltean struct device_node *child; 8168aa9ebccSVladimir Oltean 81727afe0d3SVladimir Oltean for_each_available_child_of_node(ports_node, child) { 8188aa9ebccSVladimir Oltean struct device_node *phy_node; 8190c65b2b9SAndrew Lunn phy_interface_t phy_mode; 8208aa9ebccSVladimir Oltean u32 index; 8210c65b2b9SAndrew Lunn int err; 8228aa9ebccSVladimir Oltean 8238aa9ebccSVladimir Oltean /* Get switch port number from DT */ 8248aa9ebccSVladimir Oltean if (of_property_read_u32(child, "reg", &index) < 0) { 8258aa9ebccSVladimir Oltean dev_err(dev, "Port number not defined in device tree " 8268aa9ebccSVladimir Oltean "(property \"reg\")\n"); 8277ba771e3SNishka Dasgupta of_node_put(child); 8288aa9ebccSVladimir Oltean return -ENODEV; 8298aa9ebccSVladimir Oltean } 8308aa9ebccSVladimir Oltean 8318aa9ebccSVladimir Oltean /* Get PHY mode from DT */ 8320c65b2b9SAndrew Lunn err = of_get_phy_mode(child, &phy_mode); 8330c65b2b9SAndrew Lunn if (err) { 8348aa9ebccSVladimir Oltean dev_err(dev, "Failed to read phy-mode or " 8358aa9ebccSVladimir Oltean "phy-interface-type property for port %d\n", 8368aa9ebccSVladimir Oltean index); 8377ba771e3SNishka Dasgupta of_node_put(child); 8388aa9ebccSVladimir Oltean return -ENODEV; 8398aa9ebccSVladimir Oltean } 8408aa9ebccSVladimir Oltean ports[index].phy_mode = phy_mode; 8418aa9ebccSVladimir Oltean 8428aa9ebccSVladimir Oltean phy_node = of_parse_phandle(child, "phy-handle", 0); 8438aa9ebccSVladimir Oltean if (!phy_node) { 8448aa9ebccSVladimir Oltean if (!of_phy_is_fixed_link(child)) { 8458aa9ebccSVladimir Oltean dev_err(dev, "phy-handle or fixed-link " 8468aa9ebccSVladimir Oltean "properties missing!\n"); 8477ba771e3SNishka Dasgupta of_node_put(child); 8488aa9ebccSVladimir Oltean return -ENODEV; 8498aa9ebccSVladimir Oltean } 8508aa9ebccSVladimir Oltean /* phy-handle is missing, but fixed-link isn't. 8518aa9ebccSVladimir Oltean * So it's a fixed link. Default to PHY role. 8528aa9ebccSVladimir Oltean */ 8538aa9ebccSVladimir Oltean ports[index].role = XMII_PHY; 8548aa9ebccSVladimir Oltean } else { 8558aa9ebccSVladimir Oltean /* phy-handle present => put port in MAC role */ 8568aa9ebccSVladimir Oltean ports[index].role = XMII_MAC; 8578aa9ebccSVladimir Oltean of_node_put(phy_node); 8588aa9ebccSVladimir Oltean } 8598aa9ebccSVladimir Oltean 8608aa9ebccSVladimir Oltean /* The MAC/PHY role can be overridden with explicit bindings */ 8618aa9ebccSVladimir Oltean if (of_property_read_bool(child, "sja1105,role-mac")) 8628aa9ebccSVladimir Oltean ports[index].role = XMII_MAC; 8638aa9ebccSVladimir Oltean else if (of_property_read_bool(child, "sja1105,role-phy")) 8648aa9ebccSVladimir Oltean ports[index].role = XMII_PHY; 8658aa9ebccSVladimir Oltean } 8668aa9ebccSVladimir Oltean 8678aa9ebccSVladimir Oltean return 0; 8688aa9ebccSVladimir Oltean } 8698aa9ebccSVladimir Oltean 8708aa9ebccSVladimir Oltean static int sja1105_parse_dt(struct sja1105_private *priv, 8718aa9ebccSVladimir Oltean struct sja1105_dt_port *ports) 8728aa9ebccSVladimir Oltean { 8738aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 8748aa9ebccSVladimir Oltean struct device_node *switch_node = dev->of_node; 8758aa9ebccSVladimir Oltean struct device_node *ports_node; 8768aa9ebccSVladimir Oltean int rc; 8778aa9ebccSVladimir Oltean 8788aa9ebccSVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ports"); 8798aa9ebccSVladimir Oltean if (!ports_node) { 8808aa9ebccSVladimir Oltean dev_err(dev, "Incorrect bindings: absent \"ports\" node\n"); 8818aa9ebccSVladimir Oltean return -ENODEV; 8828aa9ebccSVladimir Oltean } 8838aa9ebccSVladimir Oltean 8848aa9ebccSVladimir Oltean rc = sja1105_parse_ports_node(priv, ports, ports_node); 8858aa9ebccSVladimir Oltean of_node_put(ports_node); 8868aa9ebccSVladimir Oltean 8878aa9ebccSVladimir Oltean return rc; 8888aa9ebccSVladimir Oltean } 8898aa9ebccSVladimir Oltean 890ffe10e67SVladimir Oltean static int sja1105_sgmii_read(struct sja1105_private *priv, int pcs_reg) 891ffe10e67SVladimir Oltean { 892ffe10e67SVladimir Oltean const struct sja1105_regs *regs = priv->info->regs; 893ffe10e67SVladimir Oltean u32 val; 894ffe10e67SVladimir Oltean int rc; 895ffe10e67SVladimir Oltean 896ffe10e67SVladimir Oltean rc = sja1105_xfer_u32(priv, SPI_READ, regs->sgmii + pcs_reg, &val, 897ffe10e67SVladimir Oltean NULL); 898ffe10e67SVladimir Oltean if (rc < 0) 899ffe10e67SVladimir Oltean return rc; 900ffe10e67SVladimir Oltean 901ffe10e67SVladimir Oltean return val; 902ffe10e67SVladimir Oltean } 903ffe10e67SVladimir Oltean 904ffe10e67SVladimir Oltean static int sja1105_sgmii_write(struct sja1105_private *priv, int pcs_reg, 905ffe10e67SVladimir Oltean u16 pcs_val) 906ffe10e67SVladimir Oltean { 907ffe10e67SVladimir Oltean const struct sja1105_regs *regs = priv->info->regs; 908ffe10e67SVladimir Oltean u32 val = pcs_val; 909ffe10e67SVladimir Oltean int rc; 910ffe10e67SVladimir Oltean 911ffe10e67SVladimir Oltean rc = sja1105_xfer_u32(priv, SPI_WRITE, regs->sgmii + pcs_reg, &val, 912ffe10e67SVladimir Oltean NULL); 913ffe10e67SVladimir Oltean if (rc < 0) 914ffe10e67SVladimir Oltean return rc; 915ffe10e67SVladimir Oltean 916ffe10e67SVladimir Oltean return val; 917ffe10e67SVladimir Oltean } 918ffe10e67SVladimir Oltean 919ffe10e67SVladimir Oltean static void sja1105_sgmii_pcs_config(struct sja1105_private *priv, 920ffe10e67SVladimir Oltean bool an_enabled, bool an_master) 921ffe10e67SVladimir Oltean { 922ffe10e67SVladimir Oltean u16 ac = SJA1105_AC_AUTONEG_MODE_SGMII; 923ffe10e67SVladimir Oltean 924ffe10e67SVladimir Oltean /* DIGITAL_CONTROL_1: Enable vendor-specific MMD1, allow the PHY to 925ffe10e67SVladimir Oltean * stop the clock during LPI mode, make the MAC reconfigure 926ffe10e67SVladimir Oltean * autonomously after PCS autoneg is done, flush the internal FIFOs. 927ffe10e67SVladimir Oltean */ 928ffe10e67SVladimir Oltean sja1105_sgmii_write(priv, SJA1105_DC1, SJA1105_DC1_EN_VSMMD1 | 929ffe10e67SVladimir Oltean SJA1105_DC1_CLOCK_STOP_EN | 930ffe10e67SVladimir Oltean SJA1105_DC1_MAC_AUTO_SW | 931ffe10e67SVladimir Oltean SJA1105_DC1_INIT); 932ffe10e67SVladimir Oltean /* DIGITAL_CONTROL_2: No polarity inversion for TX and RX lanes */ 933ffe10e67SVladimir Oltean sja1105_sgmii_write(priv, SJA1105_DC2, SJA1105_DC2_TX_POL_INV_DISABLE); 934ffe10e67SVladimir Oltean /* AUTONEG_CONTROL: Use SGMII autoneg */ 935ffe10e67SVladimir Oltean if (an_master) 936ffe10e67SVladimir Oltean ac |= SJA1105_AC_PHY_MODE | SJA1105_AC_SGMII_LINK; 937ffe10e67SVladimir Oltean sja1105_sgmii_write(priv, SJA1105_AC, ac); 938ffe10e67SVladimir Oltean /* BASIC_CONTROL: enable in-band AN now, if requested. Otherwise, 939ffe10e67SVladimir Oltean * sja1105_sgmii_pcs_force_speed must be called later for the link 940ffe10e67SVladimir Oltean * to become operational. 941ffe10e67SVladimir Oltean */ 942ffe10e67SVladimir Oltean if (an_enabled) 943ffe10e67SVladimir Oltean sja1105_sgmii_write(priv, MII_BMCR, 944ffe10e67SVladimir Oltean BMCR_ANENABLE | BMCR_ANRESTART); 945ffe10e67SVladimir Oltean } 946ffe10e67SVladimir Oltean 947ffe10e67SVladimir Oltean static void sja1105_sgmii_pcs_force_speed(struct sja1105_private *priv, 948ffe10e67SVladimir Oltean int speed) 949ffe10e67SVladimir Oltean { 950ffe10e67SVladimir Oltean int pcs_speed; 951ffe10e67SVladimir Oltean 952ffe10e67SVladimir Oltean switch (speed) { 953ffe10e67SVladimir Oltean case SPEED_1000: 954ffe10e67SVladimir Oltean pcs_speed = BMCR_SPEED1000; 955ffe10e67SVladimir Oltean break; 956ffe10e67SVladimir Oltean case SPEED_100: 957ffe10e67SVladimir Oltean pcs_speed = BMCR_SPEED100; 958ffe10e67SVladimir Oltean break; 959ffe10e67SVladimir Oltean case SPEED_10: 960ffe10e67SVladimir Oltean pcs_speed = BMCR_SPEED10; 961ffe10e67SVladimir Oltean break; 962ffe10e67SVladimir Oltean default: 963ffe10e67SVladimir Oltean dev_err(priv->ds->dev, "Invalid speed %d\n", speed); 964ffe10e67SVladimir Oltean return; 965ffe10e67SVladimir Oltean } 966ffe10e67SVladimir Oltean sja1105_sgmii_write(priv, MII_BMCR, pcs_speed | BMCR_FULLDPLX); 967ffe10e67SVladimir Oltean } 968ffe10e67SVladimir Oltean 969c44d0535SVladimir Oltean /* Convert link speed from SJA1105 to ethtool encoding */ 9708aa9ebccSVladimir Oltean static int sja1105_speed[] = { 971c44d0535SVladimir Oltean [SJA1105_SPEED_AUTO] = SPEED_UNKNOWN, 972c44d0535SVladimir Oltean [SJA1105_SPEED_10MBPS] = SPEED_10, 973c44d0535SVladimir Oltean [SJA1105_SPEED_100MBPS] = SPEED_100, 974c44d0535SVladimir Oltean [SJA1105_SPEED_1000MBPS] = SPEED_1000, 9758aa9ebccSVladimir Oltean }; 9768aa9ebccSVladimir Oltean 9778400cff6SVladimir Oltean /* Set link speed in the MAC configuration for a specific port. */ 9788aa9ebccSVladimir Oltean static int sja1105_adjust_port_config(struct sja1105_private *priv, int port, 9798400cff6SVladimir Oltean int speed_mbps) 9808aa9ebccSVladimir Oltean { 9818aa9ebccSVladimir Oltean struct sja1105_xmii_params_entry *mii; 9828aa9ebccSVladimir Oltean struct sja1105_mac_config_entry *mac; 9838aa9ebccSVladimir Oltean struct device *dev = priv->ds->dev; 9848aa9ebccSVladimir Oltean sja1105_phy_interface_t phy_mode; 9858aa9ebccSVladimir Oltean sja1105_speed_t speed; 9868aa9ebccSVladimir Oltean int rc; 9878aa9ebccSVladimir Oltean 9888400cff6SVladimir Oltean /* On P/Q/R/S, one can read from the device via the MAC reconfiguration 9898400cff6SVladimir Oltean * tables. On E/T, MAC reconfig tables are not readable, only writable. 9908400cff6SVladimir Oltean * We have to *know* what the MAC looks like. For the sake of keeping 9918400cff6SVladimir Oltean * the code common, we'll use the static configuration tables as a 9928400cff6SVladimir Oltean * reasonable approximation for both E/T and P/Q/R/S. 9938400cff6SVladimir Oltean */ 9948aa9ebccSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 9958400cff6SVladimir Oltean mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 9968aa9ebccSVladimir Oltean 997f4cfcfbdSVladimir Oltean switch (speed_mbps) { 998c44d0535SVladimir Oltean case SPEED_UNKNOWN: 999a979a0abSVladimir Oltean /* PHYLINK called sja1105_mac_config() to inform us about 1000a979a0abSVladimir Oltean * the state->interface, but AN has not completed and the 1001a979a0abSVladimir Oltean * speed is not yet valid. UM10944.pdf says that setting 1002a979a0abSVladimir Oltean * SJA1105_SPEED_AUTO at runtime disables the port, so that is 1003a979a0abSVladimir Oltean * ok for power consumption in case AN will never complete - 1004a979a0abSVladimir Oltean * otherwise PHYLINK should come back with a new update. 1005a979a0abSVladimir Oltean */ 1006f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_AUTO; 1007f4cfcfbdSVladimir Oltean break; 1008c44d0535SVladimir Oltean case SPEED_10: 1009f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_10MBPS; 1010f4cfcfbdSVladimir Oltean break; 1011c44d0535SVladimir Oltean case SPEED_100: 1012f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_100MBPS; 1013f4cfcfbdSVladimir Oltean break; 1014c44d0535SVladimir Oltean case SPEED_1000: 1015f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_1000MBPS; 1016f4cfcfbdSVladimir Oltean break; 1017f4cfcfbdSVladimir Oltean default: 10188aa9ebccSVladimir Oltean dev_err(dev, "Invalid speed %iMbps\n", speed_mbps); 10198aa9ebccSVladimir Oltean return -EINVAL; 10208aa9ebccSVladimir Oltean } 10218aa9ebccSVladimir Oltean 10228400cff6SVladimir Oltean /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration 10238400cff6SVladimir Oltean * table, since this will be used for the clocking setup, and we no 10248400cff6SVladimir Oltean * longer need to store it in the static config (already told hardware 10258400cff6SVladimir Oltean * we want auto during upload phase). 1026ffe10e67SVladimir Oltean * Actually for the SGMII port, the MAC is fixed at 1 Gbps and 1027ffe10e67SVladimir Oltean * we need to configure the PCS only (if even that). 10288aa9ebccSVladimir Oltean */ 1029ffe10e67SVladimir Oltean if (sja1105_supports_sgmii(priv, port)) 1030ffe10e67SVladimir Oltean mac[port].speed = SJA1105_SPEED_1000MBPS; 1031ffe10e67SVladimir Oltean else 10328aa9ebccSVladimir Oltean mac[port].speed = speed; 10338aa9ebccSVladimir Oltean 10348aa9ebccSVladimir Oltean /* Write to the dynamic reconfiguration tables */ 10358400cff6SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 10368400cff6SVladimir Oltean &mac[port], true); 10378aa9ebccSVladimir Oltean if (rc < 0) { 10388aa9ebccSVladimir Oltean dev_err(dev, "Failed to write MAC config: %d\n", rc); 10398aa9ebccSVladimir Oltean return rc; 10408aa9ebccSVladimir Oltean } 10418aa9ebccSVladimir Oltean 10428aa9ebccSVladimir Oltean /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at 10438aa9ebccSVladimir Oltean * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and 10448aa9ebccSVladimir Oltean * RMII no change of the clock setup is required. Actually, changing 10458aa9ebccSVladimir Oltean * the clock setup does interrupt the clock signal for a certain time 10468aa9ebccSVladimir Oltean * which causes trouble for all PHYs relying on this signal. 10478aa9ebccSVladimir Oltean */ 10488aa9ebccSVladimir Oltean phy_mode = mii->xmii_mode[port]; 10498aa9ebccSVladimir Oltean if (phy_mode != XMII_MODE_RGMII) 10508aa9ebccSVladimir Oltean return 0; 10518aa9ebccSVladimir Oltean 10528aa9ebccSVladimir Oltean return sja1105_clocking_setup_port(priv, port); 10538aa9ebccSVladimir Oltean } 10548aa9ebccSVladimir Oltean 105539710229SVladimir Oltean /* The SJA1105 MAC programming model is through the static config (the xMII 105639710229SVladimir Oltean * Mode table cannot be dynamically reconfigured), and we have to program 105739710229SVladimir Oltean * that early (earlier than PHYLINK calls us, anyway). 105839710229SVladimir Oltean * So just error out in case the connected PHY attempts to change the initial 105939710229SVladimir Oltean * system interface MII protocol from what is defined in the DT, at least for 106039710229SVladimir Oltean * now. 106139710229SVladimir Oltean */ 106239710229SVladimir Oltean static bool sja1105_phy_mode_mismatch(struct sja1105_private *priv, int port, 106339710229SVladimir Oltean phy_interface_t interface) 106439710229SVladimir Oltean { 106539710229SVladimir Oltean struct sja1105_xmii_params_entry *mii; 106639710229SVladimir Oltean sja1105_phy_interface_t phy_mode; 106739710229SVladimir Oltean 106839710229SVladimir Oltean mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 106939710229SVladimir Oltean phy_mode = mii->xmii_mode[port]; 107039710229SVladimir Oltean 107139710229SVladimir Oltean switch (interface) { 107239710229SVladimir Oltean case PHY_INTERFACE_MODE_MII: 107339710229SVladimir Oltean return (phy_mode != XMII_MODE_MII); 107439710229SVladimir Oltean case PHY_INTERFACE_MODE_RMII: 107539710229SVladimir Oltean return (phy_mode != XMII_MODE_RMII); 107639710229SVladimir Oltean case PHY_INTERFACE_MODE_RGMII: 107739710229SVladimir Oltean case PHY_INTERFACE_MODE_RGMII_ID: 107839710229SVladimir Oltean case PHY_INTERFACE_MODE_RGMII_RXID: 107939710229SVladimir Oltean case PHY_INTERFACE_MODE_RGMII_TXID: 108039710229SVladimir Oltean return (phy_mode != XMII_MODE_RGMII); 1081ffe10e67SVladimir Oltean case PHY_INTERFACE_MODE_SGMII: 1082ffe10e67SVladimir Oltean return (phy_mode != XMII_MODE_SGMII); 108339710229SVladimir Oltean default: 108439710229SVladimir Oltean return true; 108539710229SVladimir Oltean } 108639710229SVladimir Oltean } 108739710229SVladimir Oltean 1088af7cd036SVladimir Oltean static void sja1105_mac_config(struct dsa_switch *ds, int port, 1089ffe10e67SVladimir Oltean unsigned int mode, 1090af7cd036SVladimir Oltean const struct phylink_link_state *state) 10918aa9ebccSVladimir Oltean { 10928aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 1093ffe10e67SVladimir Oltean bool is_sgmii = sja1105_supports_sgmii(priv, port); 10948aa9ebccSVladimir Oltean 1095ec8582d1SVladimir Oltean if (sja1105_phy_mode_mismatch(priv, port, state->interface)) { 1096ec8582d1SVladimir Oltean dev_err(ds->dev, "Changing PHY mode to %s not supported!\n", 1097ec8582d1SVladimir Oltean phy_modes(state->interface)); 109839710229SVladimir Oltean return; 1099ec8582d1SVladimir Oltean } 110039710229SVladimir Oltean 1101ffe10e67SVladimir Oltean if (phylink_autoneg_inband(mode) && !is_sgmii) { 11029f971573SVladimir Oltean dev_err(ds->dev, "In-band AN not supported!\n"); 11039f971573SVladimir Oltean return; 11049f971573SVladimir Oltean } 1105ffe10e67SVladimir Oltean 1106ffe10e67SVladimir Oltean if (is_sgmii) 1107ffe10e67SVladimir Oltean sja1105_sgmii_pcs_config(priv, phylink_autoneg_inband(mode), 1108ffe10e67SVladimir Oltean false); 11098400cff6SVladimir Oltean } 11108400cff6SVladimir Oltean 11118400cff6SVladimir Oltean static void sja1105_mac_link_down(struct dsa_switch *ds, int port, 11128400cff6SVladimir Oltean unsigned int mode, 11138400cff6SVladimir Oltean phy_interface_t interface) 11148400cff6SVladimir Oltean { 11158400cff6SVladimir Oltean sja1105_inhibit_tx(ds->priv, BIT(port), true); 11168400cff6SVladimir Oltean } 11178400cff6SVladimir Oltean 11188400cff6SVladimir Oltean static void sja1105_mac_link_up(struct dsa_switch *ds, int port, 11198400cff6SVladimir Oltean unsigned int mode, 11208400cff6SVladimir Oltean phy_interface_t interface, 11215b502a7bSRussell King struct phy_device *phydev, 11225b502a7bSRussell King int speed, int duplex, 11235b502a7bSRussell King bool tx_pause, bool rx_pause) 11248400cff6SVladimir Oltean { 1125ec8582d1SVladimir Oltean struct sja1105_private *priv = ds->priv; 1126ec8582d1SVladimir Oltean 1127ec8582d1SVladimir Oltean sja1105_adjust_port_config(priv, port, speed); 1128ec8582d1SVladimir Oltean 1129ffe10e67SVladimir Oltean if (sja1105_supports_sgmii(priv, port) && !phylink_autoneg_inband(mode)) 1130ffe10e67SVladimir Oltean sja1105_sgmii_pcs_force_speed(priv, speed); 1131ffe10e67SVladimir Oltean 1132ec8582d1SVladimir Oltean sja1105_inhibit_tx(priv, BIT(port), false); 11338aa9ebccSVladimir Oltean } 11348aa9ebccSVladimir Oltean 1135ad9f299aSVladimir Oltean static void sja1105_phylink_validate(struct dsa_switch *ds, int port, 1136ad9f299aSVladimir Oltean unsigned long *supported, 1137ad9f299aSVladimir Oltean struct phylink_link_state *state) 1138ad9f299aSVladimir Oltean { 1139ad9f299aSVladimir Oltean /* Construct a new mask which exhaustively contains all link features 1140ad9f299aSVladimir Oltean * supported by the MAC, and then apply that (logical AND) to what will 1141ad9f299aSVladimir Oltean * be sent to the PHY for "marketing". 1142ad9f299aSVladimir Oltean */ 1143ad9f299aSVladimir Oltean __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, }; 1144ad9f299aSVladimir Oltean struct sja1105_private *priv = ds->priv; 1145ad9f299aSVladimir Oltean struct sja1105_xmii_params_entry *mii; 1146ad9f299aSVladimir Oltean 1147ad9f299aSVladimir Oltean mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 1148ad9f299aSVladimir Oltean 114939710229SVladimir Oltean /* include/linux/phylink.h says: 115039710229SVladimir Oltean * When @state->interface is %PHY_INTERFACE_MODE_NA, phylink 115139710229SVladimir Oltean * expects the MAC driver to return all supported link modes. 115239710229SVladimir Oltean */ 115339710229SVladimir Oltean if (state->interface != PHY_INTERFACE_MODE_NA && 115439710229SVladimir Oltean sja1105_phy_mode_mismatch(priv, port, state->interface)) { 115539710229SVladimir Oltean bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS); 115639710229SVladimir Oltean return; 115739710229SVladimir Oltean } 115839710229SVladimir Oltean 1159ad9f299aSVladimir Oltean /* The MAC does not support pause frames, and also doesn't 1160ad9f299aSVladimir Oltean * support half-duplex traffic modes. 1161ad9f299aSVladimir Oltean */ 1162ad9f299aSVladimir Oltean phylink_set(mask, Autoneg); 1163ad9f299aSVladimir Oltean phylink_set(mask, MII); 1164ad9f299aSVladimir Oltean phylink_set(mask, 10baseT_Full); 1165ad9f299aSVladimir Oltean phylink_set(mask, 100baseT_Full); 1166ca68e138SOleksij Rempel phylink_set(mask, 100baseT1_Full); 1167ffe10e67SVladimir Oltean if (mii->xmii_mode[port] == XMII_MODE_RGMII || 1168ffe10e67SVladimir Oltean mii->xmii_mode[port] == XMII_MODE_SGMII) 1169ad9f299aSVladimir Oltean phylink_set(mask, 1000baseT_Full); 1170ad9f299aSVladimir Oltean 1171ad9f299aSVladimir Oltean bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS); 1172ad9f299aSVladimir Oltean bitmap_and(state->advertising, state->advertising, mask, 1173ad9f299aSVladimir Oltean __ETHTOOL_LINK_MODE_MASK_NBITS); 1174ad9f299aSVladimir Oltean } 1175ad9f299aSVladimir Oltean 1176ffe10e67SVladimir Oltean static int sja1105_mac_pcs_get_state(struct dsa_switch *ds, int port, 1177ffe10e67SVladimir Oltean struct phylink_link_state *state) 1178ffe10e67SVladimir Oltean { 1179ffe10e67SVladimir Oltean struct sja1105_private *priv = ds->priv; 1180ffe10e67SVladimir Oltean int ais; 1181ffe10e67SVladimir Oltean 1182ffe10e67SVladimir Oltean /* Read the vendor-specific AUTONEG_INTR_STATUS register */ 1183ffe10e67SVladimir Oltean ais = sja1105_sgmii_read(priv, SJA1105_AIS); 1184ffe10e67SVladimir Oltean if (ais < 0) 1185ffe10e67SVladimir Oltean return ais; 1186ffe10e67SVladimir Oltean 1187ffe10e67SVladimir Oltean switch (SJA1105_AIS_SPEED(ais)) { 1188ffe10e67SVladimir Oltean case 0: 1189ffe10e67SVladimir Oltean state->speed = SPEED_10; 1190ffe10e67SVladimir Oltean break; 1191ffe10e67SVladimir Oltean case 1: 1192ffe10e67SVladimir Oltean state->speed = SPEED_100; 1193ffe10e67SVladimir Oltean break; 1194ffe10e67SVladimir Oltean case 2: 1195ffe10e67SVladimir Oltean state->speed = SPEED_1000; 1196ffe10e67SVladimir Oltean break; 1197ffe10e67SVladimir Oltean default: 1198ffe10e67SVladimir Oltean dev_err(ds->dev, "Invalid SGMII PCS speed %lu\n", 1199ffe10e67SVladimir Oltean SJA1105_AIS_SPEED(ais)); 1200ffe10e67SVladimir Oltean } 1201ffe10e67SVladimir Oltean state->duplex = SJA1105_AIS_DUPLEX_MODE(ais); 1202ffe10e67SVladimir Oltean state->an_complete = SJA1105_AIS_COMPLETE(ais); 1203ffe10e67SVladimir Oltean state->link = SJA1105_AIS_LINK_STATUS(ais); 1204ffe10e67SVladimir Oltean 1205ffe10e67SVladimir Oltean return 0; 1206ffe10e67SVladimir Oltean } 1207ffe10e67SVladimir Oltean 120860f6053fSVladimir Oltean static int 120960f6053fSVladimir Oltean sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port, 121060f6053fSVladimir Oltean const struct sja1105_l2_lookup_entry *requested) 121160f6053fSVladimir Oltean { 121260f6053fSVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 121360f6053fSVladimir Oltean struct sja1105_table *table; 121460f6053fSVladimir Oltean int i; 121560f6053fSVladimir Oltean 121660f6053fSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 121760f6053fSVladimir Oltean l2_lookup = table->entries; 121860f6053fSVladimir Oltean 121960f6053fSVladimir Oltean for (i = 0; i < table->entry_count; i++) 122060f6053fSVladimir Oltean if (l2_lookup[i].macaddr == requested->macaddr && 122160f6053fSVladimir Oltean l2_lookup[i].vlanid == requested->vlanid && 122260f6053fSVladimir Oltean l2_lookup[i].destports & BIT(port)) 122360f6053fSVladimir Oltean return i; 122460f6053fSVladimir Oltean 122560f6053fSVladimir Oltean return -1; 122660f6053fSVladimir Oltean } 122760f6053fSVladimir Oltean 122860f6053fSVladimir Oltean /* We want FDB entries added statically through the bridge command to persist 122960f6053fSVladimir Oltean * across switch resets, which are a common thing during normal SJA1105 123060f6053fSVladimir Oltean * operation. So we have to back them up in the static configuration tables 123160f6053fSVladimir Oltean * and hence apply them on next static config upload... yay! 123260f6053fSVladimir Oltean */ 123360f6053fSVladimir Oltean static int 123460f6053fSVladimir Oltean sja1105_static_fdb_change(struct sja1105_private *priv, int port, 123560f6053fSVladimir Oltean const struct sja1105_l2_lookup_entry *requested, 123660f6053fSVladimir Oltean bool keep) 123760f6053fSVladimir Oltean { 123860f6053fSVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 123960f6053fSVladimir Oltean struct sja1105_table *table; 124060f6053fSVladimir Oltean int rc, match; 124160f6053fSVladimir Oltean 124260f6053fSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 124360f6053fSVladimir Oltean 124460f6053fSVladimir Oltean match = sja1105_find_static_fdb_entry(priv, port, requested); 124560f6053fSVladimir Oltean if (match < 0) { 124660f6053fSVladimir Oltean /* Can't delete a missing entry. */ 124760f6053fSVladimir Oltean if (!keep) 124860f6053fSVladimir Oltean return 0; 124960f6053fSVladimir Oltean 125060f6053fSVladimir Oltean /* No match => new entry */ 125160f6053fSVladimir Oltean rc = sja1105_table_resize(table, table->entry_count + 1); 125260f6053fSVladimir Oltean if (rc) 125360f6053fSVladimir Oltean return rc; 125460f6053fSVladimir Oltean 125560f6053fSVladimir Oltean match = table->entry_count - 1; 125660f6053fSVladimir Oltean } 125760f6053fSVladimir Oltean 125860f6053fSVladimir Oltean /* Assign pointer after the resize (it may be new memory) */ 125960f6053fSVladimir Oltean l2_lookup = table->entries; 126060f6053fSVladimir Oltean 126160f6053fSVladimir Oltean /* We have a match. 126260f6053fSVladimir Oltean * If the job was to add this FDB entry, it's already done (mostly 126360f6053fSVladimir Oltean * anyway, since the port forwarding mask may have changed, case in 126460f6053fSVladimir Oltean * which we update it). 126560f6053fSVladimir Oltean * Otherwise we have to delete it. 126660f6053fSVladimir Oltean */ 126760f6053fSVladimir Oltean if (keep) { 126860f6053fSVladimir Oltean l2_lookup[match] = *requested; 126960f6053fSVladimir Oltean return 0; 127060f6053fSVladimir Oltean } 127160f6053fSVladimir Oltean 127260f6053fSVladimir Oltean /* To remove, the strategy is to overwrite the element with 127360f6053fSVladimir Oltean * the last one, and then reduce the array size by 1 127460f6053fSVladimir Oltean */ 127560f6053fSVladimir Oltean l2_lookup[match] = l2_lookup[table->entry_count - 1]; 127660f6053fSVladimir Oltean return sja1105_table_resize(table, table->entry_count - 1); 127760f6053fSVladimir Oltean } 127860f6053fSVladimir Oltean 1279291d1e72SVladimir Oltean /* First-generation switches have a 4-way set associative TCAM that 1280291d1e72SVladimir Oltean * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of 1281291d1e72SVladimir Oltean * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin). 1282291d1e72SVladimir Oltean * For the placement of a newly learnt FDB entry, the switch selects the bin 1283291d1e72SVladimir Oltean * based on a hash function, and the way within that bin incrementally. 1284291d1e72SVladimir Oltean */ 128509c1b412SVladimir Oltean static int sja1105et_fdb_index(int bin, int way) 1286291d1e72SVladimir Oltean { 1287291d1e72SVladimir Oltean return bin * SJA1105ET_FDB_BIN_SIZE + way; 1288291d1e72SVladimir Oltean } 1289291d1e72SVladimir Oltean 12909dfa6911SVladimir Oltean static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin, 1291291d1e72SVladimir Oltean const u8 *addr, u16 vid, 1292291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry *match, 1293291d1e72SVladimir Oltean int *last_unused) 1294291d1e72SVladimir Oltean { 1295291d1e72SVladimir Oltean int way; 1296291d1e72SVladimir Oltean 1297291d1e72SVladimir Oltean for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) { 1298291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1299291d1e72SVladimir Oltean int index = sja1105et_fdb_index(bin, way); 1300291d1e72SVladimir Oltean 1301291d1e72SVladimir Oltean /* Skip unused entries, optionally marking them 1302291d1e72SVladimir Oltean * into the return value 1303291d1e72SVladimir Oltean */ 1304291d1e72SVladimir Oltean if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 1305291d1e72SVladimir Oltean index, &l2_lookup)) { 1306291d1e72SVladimir Oltean if (last_unused) 1307291d1e72SVladimir Oltean *last_unused = way; 1308291d1e72SVladimir Oltean continue; 1309291d1e72SVladimir Oltean } 1310291d1e72SVladimir Oltean 1311291d1e72SVladimir Oltean if (l2_lookup.macaddr == ether_addr_to_u64(addr) && 1312291d1e72SVladimir Oltean l2_lookup.vlanid == vid) { 1313291d1e72SVladimir Oltean if (match) 1314291d1e72SVladimir Oltean *match = l2_lookup; 1315291d1e72SVladimir Oltean return way; 1316291d1e72SVladimir Oltean } 1317291d1e72SVladimir Oltean } 1318291d1e72SVladimir Oltean /* Return an invalid entry index if not found */ 1319291d1e72SVladimir Oltean return -1; 1320291d1e72SVladimir Oltean } 1321291d1e72SVladimir Oltean 13229dfa6911SVladimir Oltean int sja1105et_fdb_add(struct dsa_switch *ds, int port, 1323291d1e72SVladimir Oltean const unsigned char *addr, u16 vid) 1324291d1e72SVladimir Oltean { 1325291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1326291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 1327291d1e72SVladimir Oltean struct device *dev = ds->dev; 1328291d1e72SVladimir Oltean int last_unused = -1; 132960f6053fSVladimir Oltean int bin, way, rc; 1330291d1e72SVladimir Oltean 13319dfa6911SVladimir Oltean bin = sja1105et_fdb_hash(priv, addr, vid); 1332291d1e72SVladimir Oltean 13339dfa6911SVladimir Oltean way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 1334291d1e72SVladimir Oltean &l2_lookup, &last_unused); 1335291d1e72SVladimir Oltean if (way >= 0) { 1336291d1e72SVladimir Oltean /* We have an FDB entry. Is our port in the destination 1337291d1e72SVladimir Oltean * mask? If yes, we need to do nothing. If not, we need 1338291d1e72SVladimir Oltean * to rewrite the entry by adding this port to it. 1339291d1e72SVladimir Oltean */ 1340291d1e72SVladimir Oltean if (l2_lookup.destports & BIT(port)) 1341291d1e72SVladimir Oltean return 0; 1342291d1e72SVladimir Oltean l2_lookup.destports |= BIT(port); 1343291d1e72SVladimir Oltean } else { 1344291d1e72SVladimir Oltean int index = sja1105et_fdb_index(bin, way); 1345291d1e72SVladimir Oltean 1346291d1e72SVladimir Oltean /* We don't have an FDB entry. We construct a new one and 1347291d1e72SVladimir Oltean * try to find a place for it within the FDB table. 1348291d1e72SVladimir Oltean */ 1349291d1e72SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 1350291d1e72SVladimir Oltean l2_lookup.destports = BIT(port); 1351291d1e72SVladimir Oltean l2_lookup.vlanid = vid; 1352291d1e72SVladimir Oltean 1353291d1e72SVladimir Oltean if (last_unused >= 0) { 1354291d1e72SVladimir Oltean way = last_unused; 1355291d1e72SVladimir Oltean } else { 1356291d1e72SVladimir Oltean /* Bin is full, need to evict somebody. 1357291d1e72SVladimir Oltean * Choose victim at random. If you get these messages 1358291d1e72SVladimir Oltean * often, you may need to consider changing the 1359291d1e72SVladimir Oltean * distribution function: 1360291d1e72SVladimir Oltean * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly 1361291d1e72SVladimir Oltean */ 1362291d1e72SVladimir Oltean get_random_bytes(&way, sizeof(u8)); 1363291d1e72SVladimir Oltean way %= SJA1105ET_FDB_BIN_SIZE; 1364291d1e72SVladimir Oltean dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n", 1365291d1e72SVladimir Oltean bin, addr, way); 1366291d1e72SVladimir Oltean /* Evict entry */ 1367291d1e72SVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 1368291d1e72SVladimir Oltean index, NULL, false); 1369291d1e72SVladimir Oltean } 1370291d1e72SVladimir Oltean } 1371291d1e72SVladimir Oltean l2_lookup.index = sja1105et_fdb_index(bin, way); 1372291d1e72SVladimir Oltean 137360f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 1374291d1e72SVladimir Oltean l2_lookup.index, &l2_lookup, 1375291d1e72SVladimir Oltean true); 137660f6053fSVladimir Oltean if (rc < 0) 137760f6053fSVladimir Oltean return rc; 137860f6053fSVladimir Oltean 137960f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, true); 1380291d1e72SVladimir Oltean } 1381291d1e72SVladimir Oltean 13829dfa6911SVladimir Oltean int sja1105et_fdb_del(struct dsa_switch *ds, int port, 1383291d1e72SVladimir Oltean const unsigned char *addr, u16 vid) 1384291d1e72SVladimir Oltean { 1385291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1386291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 138760f6053fSVladimir Oltean int index, bin, way, rc; 1388291d1e72SVladimir Oltean bool keep; 1389291d1e72SVladimir Oltean 13909dfa6911SVladimir Oltean bin = sja1105et_fdb_hash(priv, addr, vid); 13919dfa6911SVladimir Oltean way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 1392291d1e72SVladimir Oltean &l2_lookup, NULL); 1393291d1e72SVladimir Oltean if (way < 0) 1394291d1e72SVladimir Oltean return 0; 1395291d1e72SVladimir Oltean index = sja1105et_fdb_index(bin, way); 1396291d1e72SVladimir Oltean 1397291d1e72SVladimir Oltean /* We have an FDB entry. Is our port in the destination mask? If yes, 1398291d1e72SVladimir Oltean * we need to remove it. If the resulting port mask becomes empty, we 1399291d1e72SVladimir Oltean * need to completely evict the FDB entry. 1400291d1e72SVladimir Oltean * Otherwise we just write it back. 1401291d1e72SVladimir Oltean */ 1402291d1e72SVladimir Oltean l2_lookup.destports &= ~BIT(port); 14037752e937SVladimir Oltean 1404291d1e72SVladimir Oltean if (l2_lookup.destports) 1405291d1e72SVladimir Oltean keep = true; 1406291d1e72SVladimir Oltean else 1407291d1e72SVladimir Oltean keep = false; 1408291d1e72SVladimir Oltean 140960f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 1410291d1e72SVladimir Oltean index, &l2_lookup, keep); 141160f6053fSVladimir Oltean if (rc < 0) 141260f6053fSVladimir Oltean return rc; 141360f6053fSVladimir Oltean 141460f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, keep); 1415291d1e72SVladimir Oltean } 1416291d1e72SVladimir Oltean 14179dfa6911SVladimir Oltean int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port, 14189dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 14199dfa6911SVladimir Oltean { 14201da73821SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 14211da73821SVladimir Oltean struct sja1105_private *priv = ds->priv; 14221da73821SVladimir Oltean int rc, i; 14231da73821SVladimir Oltean 14241da73821SVladimir Oltean /* Search for an existing entry in the FDB table */ 14251da73821SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 14261da73821SVladimir Oltean l2_lookup.vlanid = vid; 14271da73821SVladimir Oltean l2_lookup.iotag = SJA1105_S_TAG; 14281da73821SVladimir Oltean l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0); 14297f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_UNAWARE) { 14301da73821SVladimir Oltean l2_lookup.mask_vlanid = VLAN_VID_MASK; 14311da73821SVladimir Oltean l2_lookup.mask_iotag = BIT(0); 14326d7c7d94SVladimir Oltean } else { 14336d7c7d94SVladimir Oltean l2_lookup.mask_vlanid = 0; 14346d7c7d94SVladimir Oltean l2_lookup.mask_iotag = 0; 14356d7c7d94SVladimir Oltean } 14361da73821SVladimir Oltean l2_lookup.destports = BIT(port); 14371da73821SVladimir Oltean 14381da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 14391da73821SVladimir Oltean SJA1105_SEARCH, &l2_lookup); 14401da73821SVladimir Oltean if (rc == 0) { 14411da73821SVladimir Oltean /* Found and this port is already in the entry's 14421da73821SVladimir Oltean * port mask => job done 14431da73821SVladimir Oltean */ 14441da73821SVladimir Oltean if (l2_lookup.destports & BIT(port)) 14451da73821SVladimir Oltean return 0; 14461da73821SVladimir Oltean /* l2_lookup.index is populated by the switch in case it 14471da73821SVladimir Oltean * found something. 14481da73821SVladimir Oltean */ 14491da73821SVladimir Oltean l2_lookup.destports |= BIT(port); 14501da73821SVladimir Oltean goto skip_finding_an_index; 14511da73821SVladimir Oltean } 14521da73821SVladimir Oltean 14531da73821SVladimir Oltean /* Not found, so try to find an unused spot in the FDB. 14541da73821SVladimir Oltean * This is slightly inefficient because the strategy is knock-knock at 14551da73821SVladimir Oltean * every possible position from 0 to 1023. 14561da73821SVladimir Oltean */ 14571da73821SVladimir Oltean for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { 14581da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 14591da73821SVladimir Oltean i, NULL); 14601da73821SVladimir Oltean if (rc < 0) 14611da73821SVladimir Oltean break; 14621da73821SVladimir Oltean } 14631da73821SVladimir Oltean if (i == SJA1105_MAX_L2_LOOKUP_COUNT) { 14641da73821SVladimir Oltean dev_err(ds->dev, "FDB is full, cannot add entry.\n"); 14651da73821SVladimir Oltean return -EINVAL; 14661da73821SVladimir Oltean } 146717ae6555SVladimir Oltean l2_lookup.lockeds = true; 14681da73821SVladimir Oltean l2_lookup.index = i; 14691da73821SVladimir Oltean 14701da73821SVladimir Oltean skip_finding_an_index: 147160f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 14721da73821SVladimir Oltean l2_lookup.index, &l2_lookup, 14731da73821SVladimir Oltean true); 147460f6053fSVladimir Oltean if (rc < 0) 147560f6053fSVladimir Oltean return rc; 147660f6053fSVladimir Oltean 147760f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, true); 14789dfa6911SVladimir Oltean } 14799dfa6911SVladimir Oltean 14809dfa6911SVladimir Oltean int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port, 14819dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 14829dfa6911SVladimir Oltean { 14831da73821SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 14841da73821SVladimir Oltean struct sja1105_private *priv = ds->priv; 14851da73821SVladimir Oltean bool keep; 14861da73821SVladimir Oltean int rc; 14871da73821SVladimir Oltean 14881da73821SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 14891da73821SVladimir Oltean l2_lookup.vlanid = vid; 14901da73821SVladimir Oltean l2_lookup.iotag = SJA1105_S_TAG; 14911da73821SVladimir Oltean l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0); 14927f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_UNAWARE) { 14931da73821SVladimir Oltean l2_lookup.mask_vlanid = VLAN_VID_MASK; 14941da73821SVladimir Oltean l2_lookup.mask_iotag = BIT(0); 14956d7c7d94SVladimir Oltean } else { 14966d7c7d94SVladimir Oltean l2_lookup.mask_vlanid = 0; 14976d7c7d94SVladimir Oltean l2_lookup.mask_iotag = 0; 14986d7c7d94SVladimir Oltean } 14991da73821SVladimir Oltean l2_lookup.destports = BIT(port); 15001da73821SVladimir Oltean 15011da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 15021da73821SVladimir Oltean SJA1105_SEARCH, &l2_lookup); 15031da73821SVladimir Oltean if (rc < 0) 15041da73821SVladimir Oltean return 0; 15051da73821SVladimir Oltean 15061da73821SVladimir Oltean l2_lookup.destports &= ~BIT(port); 15071da73821SVladimir Oltean 15081da73821SVladimir Oltean /* Decide whether we remove just this port from the FDB entry, 15091da73821SVladimir Oltean * or if we remove it completely. 15101da73821SVladimir Oltean */ 15111da73821SVladimir Oltean if (l2_lookup.destports) 15121da73821SVladimir Oltean keep = true; 15131da73821SVladimir Oltean else 15141da73821SVladimir Oltean keep = false; 15151da73821SVladimir Oltean 151660f6053fSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 15171da73821SVladimir Oltean l2_lookup.index, &l2_lookup, keep); 151860f6053fSVladimir Oltean if (rc < 0) 151960f6053fSVladimir Oltean return rc; 152060f6053fSVladimir Oltean 152160f6053fSVladimir Oltean return sja1105_static_fdb_change(priv, port, &l2_lookup, keep); 15229dfa6911SVladimir Oltean } 15239dfa6911SVladimir Oltean 15249dfa6911SVladimir Oltean static int sja1105_fdb_add(struct dsa_switch *ds, int port, 15259dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 15269dfa6911SVladimir Oltean { 15279dfa6911SVladimir Oltean struct sja1105_private *priv = ds->priv; 1528b3ee526aSVladimir Oltean 15296d7c7d94SVladimir Oltean /* dsa_8021q is in effect when the bridge's vlan_filtering isn't, 15306d7c7d94SVladimir Oltean * so the switch still does some VLAN processing internally. 15316d7c7d94SVladimir Oltean * But Shared VLAN Learning (SVL) is also active, and it will take 15326d7c7d94SVladimir Oltean * care of autonomous forwarding between the unique pvid's of each 15336d7c7d94SVladimir Oltean * port. Here we just make sure that users can't add duplicate FDB 15346d7c7d94SVladimir Oltean * entries when in this mode - the actual VID doesn't matter except 15356d7c7d94SVladimir Oltean * for what gets printed in 'bridge fdb show'. In the case of zero, 15366d7c7d94SVladimir Oltean * no VID gets printed at all. 153793647594SVladimir Oltean */ 15387f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL) 15396d7c7d94SVladimir Oltean vid = 0; 154093647594SVladimir Oltean 15416d7c7d94SVladimir Oltean return priv->info->fdb_add_cmd(ds, port, addr, vid); 15429dfa6911SVladimir Oltean } 15439dfa6911SVladimir Oltean 15449dfa6911SVladimir Oltean static int sja1105_fdb_del(struct dsa_switch *ds, int port, 15459dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 15469dfa6911SVladimir Oltean { 15479dfa6911SVladimir Oltean struct sja1105_private *priv = ds->priv; 15489dfa6911SVladimir Oltean 15497f14937fSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL) 15506d7c7d94SVladimir Oltean vid = 0; 15516d7c7d94SVladimir Oltean 1552b3ee526aSVladimir Oltean return priv->info->fdb_del_cmd(ds, port, addr, vid); 15539dfa6911SVladimir Oltean } 15549dfa6911SVladimir Oltean 1555291d1e72SVladimir Oltean static int sja1105_fdb_dump(struct dsa_switch *ds, int port, 1556291d1e72SVladimir Oltean dsa_fdb_dump_cb_t *cb, void *data) 1557291d1e72SVladimir Oltean { 1558291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 1559291d1e72SVladimir Oltean struct device *dev = ds->dev; 1560291d1e72SVladimir Oltean int i; 1561291d1e72SVladimir Oltean 1562291d1e72SVladimir Oltean for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { 1563291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1564291d1e72SVladimir Oltean u8 macaddr[ETH_ALEN]; 1565291d1e72SVladimir Oltean int rc; 1566291d1e72SVladimir Oltean 1567291d1e72SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 1568291d1e72SVladimir Oltean i, &l2_lookup); 1569291d1e72SVladimir Oltean /* No fdb entry at i, not an issue */ 1570def84604SVladimir Oltean if (rc == -ENOENT) 1571291d1e72SVladimir Oltean continue; 1572291d1e72SVladimir Oltean if (rc) { 1573291d1e72SVladimir Oltean dev_err(dev, "Failed to dump FDB: %d\n", rc); 1574291d1e72SVladimir Oltean return rc; 1575291d1e72SVladimir Oltean } 1576291d1e72SVladimir Oltean 1577291d1e72SVladimir Oltean /* FDB dump callback is per port. This means we have to 1578291d1e72SVladimir Oltean * disregard a valid entry if it's not for this port, even if 1579291d1e72SVladimir Oltean * only to revisit it later. This is inefficient because the 1580291d1e72SVladimir Oltean * 1024-sized FDB table needs to be traversed 4 times through 1581291d1e72SVladimir Oltean * SPI during a 'bridge fdb show' command. 1582291d1e72SVladimir Oltean */ 1583291d1e72SVladimir Oltean if (!(l2_lookup.destports & BIT(port))) 1584291d1e72SVladimir Oltean continue; 15854d942354SVladimir Oltean 15864d942354SVladimir Oltean /* We need to hide the FDB entry for unknown multicast */ 15874d942354SVladimir Oltean if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST && 15884d942354SVladimir Oltean l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST) 15894d942354SVladimir Oltean continue; 15904d942354SVladimir Oltean 1591291d1e72SVladimir Oltean u64_to_ether_addr(l2_lookup.macaddr, macaddr); 159293647594SVladimir Oltean 15936d7c7d94SVladimir Oltean /* We need to hide the dsa_8021q VLANs from the user. */ 15947f14937fSVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_UNAWARE) 15956d7c7d94SVladimir Oltean l2_lookup.vlanid = 0; 159617ae6555SVladimir Oltean cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data); 1597291d1e72SVladimir Oltean } 1598291d1e72SVladimir Oltean return 0; 1599291d1e72SVladimir Oltean } 1600291d1e72SVladimir Oltean 1601a52b2da7SVladimir Oltean static int sja1105_mdb_add(struct dsa_switch *ds, int port, 1602291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1603291d1e72SVladimir Oltean { 1604a52b2da7SVladimir Oltean return sja1105_fdb_add(ds, port, mdb->addr, mdb->vid); 1605291d1e72SVladimir Oltean } 1606291d1e72SVladimir Oltean 1607291d1e72SVladimir Oltean static int sja1105_mdb_del(struct dsa_switch *ds, int port, 1608291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1609291d1e72SVladimir Oltean { 1610291d1e72SVladimir Oltean return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid); 1611291d1e72SVladimir Oltean } 1612291d1e72SVladimir Oltean 16137f7ccdeaSVladimir Oltean /* Common function for unicast and broadcast flood configuration. 16147f7ccdeaSVladimir Oltean * Flooding is configured between each {ingress, egress} port pair, and since 16157f7ccdeaSVladimir Oltean * the bridge's semantics are those of "egress flooding", it means we must 16167f7ccdeaSVladimir Oltean * enable flooding towards this port from all ingress ports that are in the 16177f7ccdeaSVladimir Oltean * same forwarding domain. 16187f7ccdeaSVladimir Oltean */ 16197f7ccdeaSVladimir Oltean static int sja1105_manage_flood_domains(struct sja1105_private *priv) 16207f7ccdeaSVladimir Oltean { 16217f7ccdeaSVladimir Oltean struct sja1105_l2_forwarding_entry *l2_fwd; 16227f7ccdeaSVladimir Oltean struct dsa_switch *ds = priv->ds; 16237f7ccdeaSVladimir Oltean int from, to, rc; 16247f7ccdeaSVladimir Oltean 16257f7ccdeaSVladimir Oltean l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries; 16267f7ccdeaSVladimir Oltean 16277f7ccdeaSVladimir Oltean for (from = 0; from < ds->num_ports; from++) { 16287f7ccdeaSVladimir Oltean u64 fl_domain = 0, bc_domain = 0; 16297f7ccdeaSVladimir Oltean 16307f7ccdeaSVladimir Oltean for (to = 0; to < priv->ds->num_ports; to++) { 16317f7ccdeaSVladimir Oltean if (!sja1105_can_forward(l2_fwd, from, to)) 16327f7ccdeaSVladimir Oltean continue; 16337f7ccdeaSVladimir Oltean 16347f7ccdeaSVladimir Oltean if (priv->ucast_egress_floods & BIT(to)) 16357f7ccdeaSVladimir Oltean fl_domain |= BIT(to); 16367f7ccdeaSVladimir Oltean if (priv->bcast_egress_floods & BIT(to)) 16377f7ccdeaSVladimir Oltean bc_domain |= BIT(to); 16387f7ccdeaSVladimir Oltean } 16397f7ccdeaSVladimir Oltean 16407f7ccdeaSVladimir Oltean /* Nothing changed, nothing to do */ 16417f7ccdeaSVladimir Oltean if (l2_fwd[from].fl_domain == fl_domain && 16427f7ccdeaSVladimir Oltean l2_fwd[from].bc_domain == bc_domain) 16437f7ccdeaSVladimir Oltean continue; 16447f7ccdeaSVladimir Oltean 16457f7ccdeaSVladimir Oltean l2_fwd[from].fl_domain = fl_domain; 16467f7ccdeaSVladimir Oltean l2_fwd[from].bc_domain = bc_domain; 16477f7ccdeaSVladimir Oltean 16487f7ccdeaSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 16497f7ccdeaSVladimir Oltean from, &l2_fwd[from], true); 16507f7ccdeaSVladimir Oltean if (rc < 0) 16517f7ccdeaSVladimir Oltean return rc; 16527f7ccdeaSVladimir Oltean } 16537f7ccdeaSVladimir Oltean 16547f7ccdeaSVladimir Oltean return 0; 16557f7ccdeaSVladimir Oltean } 16567f7ccdeaSVladimir Oltean 16578aa9ebccSVladimir Oltean static int sja1105_bridge_member(struct dsa_switch *ds, int port, 16588aa9ebccSVladimir Oltean struct net_device *br, bool member) 16598aa9ebccSVladimir Oltean { 16608aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_entry *l2_fwd; 16618aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 16628aa9ebccSVladimir Oltean int i, rc; 16638aa9ebccSVladimir Oltean 16648aa9ebccSVladimir Oltean l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries; 16658aa9ebccSVladimir Oltean 1666542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 16678aa9ebccSVladimir Oltean /* Add this port to the forwarding matrix of the 16688aa9ebccSVladimir Oltean * other ports in the same bridge, and viceversa. 16698aa9ebccSVladimir Oltean */ 16708aa9ebccSVladimir Oltean if (!dsa_is_user_port(ds, i)) 16718aa9ebccSVladimir Oltean continue; 16728aa9ebccSVladimir Oltean /* For the ports already under the bridge, only one thing needs 16738aa9ebccSVladimir Oltean * to be done, and that is to add this port to their 16748aa9ebccSVladimir Oltean * reachability domain. So we can perform the SPI write for 16758aa9ebccSVladimir Oltean * them immediately. However, for this port itself (the one 16768aa9ebccSVladimir Oltean * that is new to the bridge), we need to add all other ports 16778aa9ebccSVladimir Oltean * to its reachability domain. So we do that incrementally in 16788aa9ebccSVladimir Oltean * this loop, and perform the SPI write only at the end, once 16798aa9ebccSVladimir Oltean * the domain contains all other bridge ports. 16808aa9ebccSVladimir Oltean */ 16818aa9ebccSVladimir Oltean if (i == port) 16828aa9ebccSVladimir Oltean continue; 16838aa9ebccSVladimir Oltean if (dsa_to_port(ds, i)->bridge_dev != br) 16848aa9ebccSVladimir Oltean continue; 16858aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2_fwd, i, port, member); 16868aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2_fwd, port, i, member); 16878aa9ebccSVladimir Oltean 16888aa9ebccSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 16898aa9ebccSVladimir Oltean i, &l2_fwd[i], true); 16908aa9ebccSVladimir Oltean if (rc < 0) 16918aa9ebccSVladimir Oltean return rc; 16928aa9ebccSVladimir Oltean } 16938aa9ebccSVladimir Oltean 16947f7ccdeaSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 16958aa9ebccSVladimir Oltean port, &l2_fwd[port], true); 16967f7ccdeaSVladimir Oltean if (rc) 16977f7ccdeaSVladimir Oltean return rc; 16987f7ccdeaSVladimir Oltean 16997f7ccdeaSVladimir Oltean return sja1105_manage_flood_domains(priv); 17008aa9ebccSVladimir Oltean } 17018aa9ebccSVladimir Oltean 1702640f763fSVladimir Oltean static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port, 1703640f763fSVladimir Oltean u8 state) 1704640f763fSVladimir Oltean { 1705640f763fSVladimir Oltean struct sja1105_private *priv = ds->priv; 1706640f763fSVladimir Oltean struct sja1105_mac_config_entry *mac; 1707640f763fSVladimir Oltean 1708640f763fSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 1709640f763fSVladimir Oltean 1710640f763fSVladimir Oltean switch (state) { 1711640f763fSVladimir Oltean case BR_STATE_DISABLED: 1712640f763fSVladimir Oltean case BR_STATE_BLOCKING: 1713640f763fSVladimir Oltean /* From UM10944 description of DRPDTAG (why put this there?): 1714640f763fSVladimir Oltean * "Management traffic flows to the port regardless of the state 1715640f763fSVladimir Oltean * of the INGRESS flag". So BPDUs are still be allowed to pass. 1716640f763fSVladimir Oltean * At the moment no difference between DISABLED and BLOCKING. 1717640f763fSVladimir Oltean */ 1718640f763fSVladimir Oltean mac[port].ingress = false; 1719640f763fSVladimir Oltean mac[port].egress = false; 1720640f763fSVladimir Oltean mac[port].dyn_learn = false; 1721640f763fSVladimir Oltean break; 1722640f763fSVladimir Oltean case BR_STATE_LISTENING: 1723640f763fSVladimir Oltean mac[port].ingress = true; 1724640f763fSVladimir Oltean mac[port].egress = false; 1725640f763fSVladimir Oltean mac[port].dyn_learn = false; 1726640f763fSVladimir Oltean break; 1727640f763fSVladimir Oltean case BR_STATE_LEARNING: 1728640f763fSVladimir Oltean mac[port].ingress = true; 1729640f763fSVladimir Oltean mac[port].egress = false; 17304d942354SVladimir Oltean mac[port].dyn_learn = !!(priv->learn_ena & BIT(port)); 1731640f763fSVladimir Oltean break; 1732640f763fSVladimir Oltean case BR_STATE_FORWARDING: 1733640f763fSVladimir Oltean mac[port].ingress = true; 1734640f763fSVladimir Oltean mac[port].egress = true; 17354d942354SVladimir Oltean mac[port].dyn_learn = !!(priv->learn_ena & BIT(port)); 1736640f763fSVladimir Oltean break; 1737640f763fSVladimir Oltean default: 1738640f763fSVladimir Oltean dev_err(ds->dev, "invalid STP state: %d\n", state); 1739640f763fSVladimir Oltean return; 1740640f763fSVladimir Oltean } 1741640f763fSVladimir Oltean 1742640f763fSVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 1743640f763fSVladimir Oltean &mac[port], true); 1744640f763fSVladimir Oltean } 1745640f763fSVladimir Oltean 17468aa9ebccSVladimir Oltean static int sja1105_bridge_join(struct dsa_switch *ds, int port, 17478aa9ebccSVladimir Oltean struct net_device *br) 17488aa9ebccSVladimir Oltean { 17498aa9ebccSVladimir Oltean return sja1105_bridge_member(ds, port, br, true); 17508aa9ebccSVladimir Oltean } 17518aa9ebccSVladimir Oltean 17528aa9ebccSVladimir Oltean static void sja1105_bridge_leave(struct dsa_switch *ds, int port, 17538aa9ebccSVladimir Oltean struct net_device *br) 17548aa9ebccSVladimir Oltean { 17558aa9ebccSVladimir Oltean sja1105_bridge_member(ds, port, br, false); 17568aa9ebccSVladimir Oltean } 17578aa9ebccSVladimir Oltean 17584d752508SVladimir Oltean #define BYTES_PER_KBIT (1000LL / 8) 17594d752508SVladimir Oltean 17604d752508SVladimir Oltean static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv) 17614d752508SVladimir Oltean { 17624d752508SVladimir Oltean int i; 17634d752508SVladimir Oltean 17644d752508SVladimir Oltean for (i = 0; i < priv->info->num_cbs_shapers; i++) 17654d752508SVladimir Oltean if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope) 17664d752508SVladimir Oltean return i; 17674d752508SVladimir Oltean 17684d752508SVladimir Oltean return -1; 17694d752508SVladimir Oltean } 17704d752508SVladimir Oltean 17714d752508SVladimir Oltean static int sja1105_delete_cbs_shaper(struct sja1105_private *priv, int port, 17724d752508SVladimir Oltean int prio) 17734d752508SVladimir Oltean { 17744d752508SVladimir Oltean int i; 17754d752508SVladimir Oltean 17764d752508SVladimir Oltean for (i = 0; i < priv->info->num_cbs_shapers; i++) { 17774d752508SVladimir Oltean struct sja1105_cbs_entry *cbs = &priv->cbs[i]; 17784d752508SVladimir Oltean 17794d752508SVladimir Oltean if (cbs->port == port && cbs->prio == prio) { 17804d752508SVladimir Oltean memset(cbs, 0, sizeof(*cbs)); 17814d752508SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, 17824d752508SVladimir Oltean i, cbs, true); 17834d752508SVladimir Oltean } 17844d752508SVladimir Oltean } 17854d752508SVladimir Oltean 17864d752508SVladimir Oltean return 0; 17874d752508SVladimir Oltean } 17884d752508SVladimir Oltean 17894d752508SVladimir Oltean static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port, 17904d752508SVladimir Oltean struct tc_cbs_qopt_offload *offload) 17914d752508SVladimir Oltean { 17924d752508SVladimir Oltean struct sja1105_private *priv = ds->priv; 17934d752508SVladimir Oltean struct sja1105_cbs_entry *cbs; 17944d752508SVladimir Oltean int index; 17954d752508SVladimir Oltean 17964d752508SVladimir Oltean if (!offload->enable) 17974d752508SVladimir Oltean return sja1105_delete_cbs_shaper(priv, port, offload->queue); 17984d752508SVladimir Oltean 17994d752508SVladimir Oltean index = sja1105_find_unused_cbs_shaper(priv); 18004d752508SVladimir Oltean if (index < 0) 18014d752508SVladimir Oltean return -ENOSPC; 18024d752508SVladimir Oltean 18034d752508SVladimir Oltean cbs = &priv->cbs[index]; 18044d752508SVladimir Oltean cbs->port = port; 18054d752508SVladimir Oltean cbs->prio = offload->queue; 18064d752508SVladimir Oltean /* locredit and sendslope are negative by definition. In hardware, 18074d752508SVladimir Oltean * positive values must be provided, and the negative sign is implicit. 18084d752508SVladimir Oltean */ 18094d752508SVladimir Oltean cbs->credit_hi = offload->hicredit; 18104d752508SVladimir Oltean cbs->credit_lo = abs(offload->locredit); 18114d752508SVladimir Oltean /* User space is in kbits/sec, hardware in bytes/sec */ 18124d752508SVladimir Oltean cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT; 18134d752508SVladimir Oltean cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT); 18144d752508SVladimir Oltean /* Convert the negative values from 64-bit 2's complement 18154d752508SVladimir Oltean * to 32-bit 2's complement (for the case of 0x80000000 whose 18164d752508SVladimir Oltean * negative is still negative). 18174d752508SVladimir Oltean */ 18184d752508SVladimir Oltean cbs->credit_lo &= GENMASK_ULL(31, 0); 18194d752508SVladimir Oltean cbs->send_slope &= GENMASK_ULL(31, 0); 18204d752508SVladimir Oltean 18214d752508SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, index, cbs, 18224d752508SVladimir Oltean true); 18234d752508SVladimir Oltean } 18244d752508SVladimir Oltean 18254d752508SVladimir Oltean static int sja1105_reload_cbs(struct sja1105_private *priv) 18264d752508SVladimir Oltean { 18274d752508SVladimir Oltean int rc = 0, i; 18284d752508SVladimir Oltean 18294d752508SVladimir Oltean for (i = 0; i < priv->info->num_cbs_shapers; i++) { 18304d752508SVladimir Oltean struct sja1105_cbs_entry *cbs = &priv->cbs[i]; 18314d752508SVladimir Oltean 18324d752508SVladimir Oltean if (!cbs->idle_slope && !cbs->send_slope) 18334d752508SVladimir Oltean continue; 18344d752508SVladimir Oltean 18354d752508SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_CBS, i, cbs, 18364d752508SVladimir Oltean true); 18374d752508SVladimir Oltean if (rc) 18384d752508SVladimir Oltean break; 18394d752508SVladimir Oltean } 18404d752508SVladimir Oltean 18414d752508SVladimir Oltean return rc; 18424d752508SVladimir Oltean } 18434d752508SVladimir Oltean 18442eea1fa8SVladimir Oltean static const char * const sja1105_reset_reasons[] = { 18452eea1fa8SVladimir Oltean [SJA1105_VLAN_FILTERING] = "VLAN filtering", 18462eea1fa8SVladimir Oltean [SJA1105_RX_HWTSTAMPING] = "RX timestamping", 18472eea1fa8SVladimir Oltean [SJA1105_AGEING_TIME] = "Ageing time", 18482eea1fa8SVladimir Oltean [SJA1105_SCHEDULING] = "Time-aware scheduling", 1849c279c726SVladimir Oltean [SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing", 1850dfacc5a2SVladimir Oltean [SJA1105_VIRTUAL_LINKS] = "Virtual links", 18512eea1fa8SVladimir Oltean }; 18522eea1fa8SVladimir Oltean 18536666cebcSVladimir Oltean /* For situations where we need to change a setting at runtime that is only 18546666cebcSVladimir Oltean * available through the static configuration, resetting the switch in order 18556666cebcSVladimir Oltean * to upload the new static config is unavoidable. Back up the settings we 18566666cebcSVladimir Oltean * modify at runtime (currently only MAC) and restore them after uploading, 18576666cebcSVladimir Oltean * such that this operation is relatively seamless. 18586666cebcSVladimir Oltean */ 18592eea1fa8SVladimir Oltean int sja1105_static_config_reload(struct sja1105_private *priv, 18602eea1fa8SVladimir Oltean enum sja1105_reset_reason reason) 18616666cebcSVladimir Oltean { 18626cf99c13SVladimir Oltean struct ptp_system_timestamp ptp_sts_before; 18636cf99c13SVladimir Oltean struct ptp_system_timestamp ptp_sts_after; 1864*82760d7fSVladimir Oltean int speed_mbps[SJA1105_MAX_NUM_PORTS]; 18656666cebcSVladimir Oltean struct sja1105_mac_config_entry *mac; 18666cf99c13SVladimir Oltean struct dsa_switch *ds = priv->ds; 18676cf99c13SVladimir Oltean s64 t1, t2, t3, t4; 18686cf99c13SVladimir Oltean s64 t12, t34; 1869ffe10e67SVladimir Oltean u16 bmcr = 0; 18706666cebcSVladimir Oltean int rc, i; 18716cf99c13SVladimir Oltean s64 now; 18726666cebcSVladimir Oltean 1873af580ae2SVladimir Oltean mutex_lock(&priv->mgmt_lock); 1874af580ae2SVladimir Oltean 18756666cebcSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 18766666cebcSVladimir Oltean 18778400cff6SVladimir Oltean /* Back up the dynamic link speed changed by sja1105_adjust_port_config 18788400cff6SVladimir Oltean * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the 18798400cff6SVladimir Oltean * switch wants to see in the static config in order to allow us to 18808400cff6SVladimir Oltean * change it through the dynamic interface later. 18816666cebcSVladimir Oltean */ 1882542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 18836666cebcSVladimir Oltean speed_mbps[i] = sja1105_speed[mac[i].speed]; 18846666cebcSVladimir Oltean mac[i].speed = SJA1105_SPEED_AUTO; 18856666cebcSVladimir Oltean } 18866666cebcSVladimir Oltean 1887ffe10e67SVladimir Oltean if (sja1105_supports_sgmii(priv, SJA1105_SGMII_PORT)) 1888ffe10e67SVladimir Oltean bmcr = sja1105_sgmii_read(priv, MII_BMCR); 1889ffe10e67SVladimir Oltean 18906cf99c13SVladimir Oltean /* No PTP operations can run right now */ 18916cf99c13SVladimir Oltean mutex_lock(&priv->ptp_data.lock); 18926cf99c13SVladimir Oltean 18936cf99c13SVladimir Oltean rc = __sja1105_ptp_gettimex(ds, &now, &ptp_sts_before); 18946cf99c13SVladimir Oltean if (rc < 0) 18956cf99c13SVladimir Oltean goto out_unlock_ptp; 18966cf99c13SVladimir Oltean 18976666cebcSVladimir Oltean /* Reset switch and send updated static configuration */ 18986666cebcSVladimir Oltean rc = sja1105_static_config_upload(priv); 18996666cebcSVladimir Oltean if (rc < 0) 19006cf99c13SVladimir Oltean goto out_unlock_ptp; 19016cf99c13SVladimir Oltean 19026cf99c13SVladimir Oltean rc = __sja1105_ptp_settime(ds, 0, &ptp_sts_after); 19036cf99c13SVladimir Oltean if (rc < 0) 19046cf99c13SVladimir Oltean goto out_unlock_ptp; 19056cf99c13SVladimir Oltean 19066cf99c13SVladimir Oltean t1 = timespec64_to_ns(&ptp_sts_before.pre_ts); 19076cf99c13SVladimir Oltean t2 = timespec64_to_ns(&ptp_sts_before.post_ts); 19086cf99c13SVladimir Oltean t3 = timespec64_to_ns(&ptp_sts_after.pre_ts); 19096cf99c13SVladimir Oltean t4 = timespec64_to_ns(&ptp_sts_after.post_ts); 19106cf99c13SVladimir Oltean /* Mid point, corresponds to pre-reset PTPCLKVAL */ 19116cf99c13SVladimir Oltean t12 = t1 + (t2 - t1) / 2; 19126cf99c13SVladimir Oltean /* Mid point, corresponds to post-reset PTPCLKVAL, aka 0 */ 19136cf99c13SVladimir Oltean t34 = t3 + (t4 - t3) / 2; 19146cf99c13SVladimir Oltean /* Advance PTPCLKVAL by the time it took since its readout */ 19156cf99c13SVladimir Oltean now += (t34 - t12); 19166cf99c13SVladimir Oltean 19176cf99c13SVladimir Oltean __sja1105_ptp_adjtime(ds, now); 19186cf99c13SVladimir Oltean 19196cf99c13SVladimir Oltean out_unlock_ptp: 19206cf99c13SVladimir Oltean mutex_unlock(&priv->ptp_data.lock); 19216666cebcSVladimir Oltean 19222eea1fa8SVladimir Oltean dev_info(priv->ds->dev, 19232eea1fa8SVladimir Oltean "Reset switch and programmed static config. Reason: %s\n", 19242eea1fa8SVladimir Oltean sja1105_reset_reasons[reason]); 19252eea1fa8SVladimir Oltean 19266666cebcSVladimir Oltean /* Configure the CGU (PLLs) for MII and RMII PHYs. 19276666cebcSVladimir Oltean * For these interfaces there is no dynamic configuration 19286666cebcSVladimir Oltean * needed, since PLLs have same settings at all speeds. 19296666cebcSVladimir Oltean */ 19306666cebcSVladimir Oltean rc = sja1105_clocking_setup(priv); 19316666cebcSVladimir Oltean if (rc < 0) 19326666cebcSVladimir Oltean goto out; 19336666cebcSVladimir Oltean 1934542043e9SVladimir Oltean for (i = 0; i < ds->num_ports; i++) { 19358400cff6SVladimir Oltean rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]); 19366666cebcSVladimir Oltean if (rc < 0) 19376666cebcSVladimir Oltean goto out; 19386666cebcSVladimir Oltean } 1939ffe10e67SVladimir Oltean 1940ffe10e67SVladimir Oltean if (sja1105_supports_sgmii(priv, SJA1105_SGMII_PORT)) { 1941ffe10e67SVladimir Oltean bool an_enabled = !!(bmcr & BMCR_ANENABLE); 1942ffe10e67SVladimir Oltean 1943ffe10e67SVladimir Oltean sja1105_sgmii_pcs_config(priv, an_enabled, false); 1944ffe10e67SVladimir Oltean 1945ffe10e67SVladimir Oltean if (!an_enabled) { 1946ffe10e67SVladimir Oltean int speed = SPEED_UNKNOWN; 1947ffe10e67SVladimir Oltean 1948ffe10e67SVladimir Oltean if (bmcr & BMCR_SPEED1000) 1949ffe10e67SVladimir Oltean speed = SPEED_1000; 1950ffe10e67SVladimir Oltean else if (bmcr & BMCR_SPEED100) 1951ffe10e67SVladimir Oltean speed = SPEED_100; 1952053d8ad1SVladimir Oltean else 1953ffe10e67SVladimir Oltean speed = SPEED_10; 1954ffe10e67SVladimir Oltean 1955ffe10e67SVladimir Oltean sja1105_sgmii_pcs_force_speed(priv, speed); 1956ffe10e67SVladimir Oltean } 1957ffe10e67SVladimir Oltean } 19584d752508SVladimir Oltean 19594d752508SVladimir Oltean rc = sja1105_reload_cbs(priv); 19604d752508SVladimir Oltean if (rc < 0) 19614d752508SVladimir Oltean goto out; 19626666cebcSVladimir Oltean out: 1963af580ae2SVladimir Oltean mutex_unlock(&priv->mgmt_lock); 1964af580ae2SVladimir Oltean 19656666cebcSVladimir Oltean return rc; 19666666cebcSVladimir Oltean } 19676666cebcSVladimir Oltean 19686666cebcSVladimir Oltean static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid) 19696666cebcSVladimir Oltean { 19706666cebcSVladimir Oltean struct sja1105_mac_config_entry *mac; 19716666cebcSVladimir Oltean 19726666cebcSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 19736666cebcSVladimir Oltean 19746666cebcSVladimir Oltean mac[port].vlanid = pvid; 19756666cebcSVladimir Oltean 19766666cebcSVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 19776666cebcSVladimir Oltean &mac[port], true); 19786666cebcSVladimir Oltean } 19796666cebcSVladimir Oltean 1980ac02a451SVladimir Oltean static int sja1105_crosschip_bridge_join(struct dsa_switch *ds, 1981ac02a451SVladimir Oltean int tree_index, int sw_index, 1982ac02a451SVladimir Oltean int other_port, struct net_device *br) 1983ac02a451SVladimir Oltean { 1984ac02a451SVladimir Oltean struct dsa_switch *other_ds = dsa_switch_find(tree_index, sw_index); 1985ac02a451SVladimir Oltean struct sja1105_private *other_priv = other_ds->priv; 1986ac02a451SVladimir Oltean struct sja1105_private *priv = ds->priv; 1987ac02a451SVladimir Oltean int port, rc; 1988ac02a451SVladimir Oltean 1989ac02a451SVladimir Oltean if (other_ds->ops != &sja1105_switch_ops) 1990ac02a451SVladimir Oltean return 0; 1991ac02a451SVladimir Oltean 1992ac02a451SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 1993ac02a451SVladimir Oltean if (!dsa_is_user_port(ds, port)) 1994ac02a451SVladimir Oltean continue; 1995ac02a451SVladimir Oltean if (dsa_to_port(ds, port)->bridge_dev != br) 1996ac02a451SVladimir Oltean continue; 1997ac02a451SVladimir Oltean 19985899ee36SVladimir Oltean rc = dsa_8021q_crosschip_bridge_join(priv->dsa_8021q_ctx, 19995899ee36SVladimir Oltean port, 20005899ee36SVladimir Oltean other_priv->dsa_8021q_ctx, 20015899ee36SVladimir Oltean other_port); 2002ac02a451SVladimir Oltean if (rc) 2003ac02a451SVladimir Oltean return rc; 2004ac02a451SVladimir Oltean 20055899ee36SVladimir Oltean rc = dsa_8021q_crosschip_bridge_join(other_priv->dsa_8021q_ctx, 20065899ee36SVladimir Oltean other_port, 20075899ee36SVladimir Oltean priv->dsa_8021q_ctx, 20085899ee36SVladimir Oltean port); 2009ac02a451SVladimir Oltean if (rc) 2010ac02a451SVladimir Oltean return rc; 2011ac02a451SVladimir Oltean } 2012ac02a451SVladimir Oltean 2013ac02a451SVladimir Oltean return 0; 2014ac02a451SVladimir Oltean } 2015ac02a451SVladimir Oltean 2016ac02a451SVladimir Oltean static void sja1105_crosschip_bridge_leave(struct dsa_switch *ds, 2017ac02a451SVladimir Oltean int tree_index, int sw_index, 2018ac02a451SVladimir Oltean int other_port, 2019ac02a451SVladimir Oltean struct net_device *br) 2020ac02a451SVladimir Oltean { 2021ac02a451SVladimir Oltean struct dsa_switch *other_ds = dsa_switch_find(tree_index, sw_index); 2022ac02a451SVladimir Oltean struct sja1105_private *other_priv = other_ds->priv; 2023ac02a451SVladimir Oltean struct sja1105_private *priv = ds->priv; 2024ac02a451SVladimir Oltean int port; 2025ac02a451SVladimir Oltean 2026ac02a451SVladimir Oltean if (other_ds->ops != &sja1105_switch_ops) 2027ac02a451SVladimir Oltean return; 2028ac02a451SVladimir Oltean 2029ac02a451SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 2030ac02a451SVladimir Oltean if (!dsa_is_user_port(ds, port)) 2031ac02a451SVladimir Oltean continue; 2032ac02a451SVladimir Oltean if (dsa_to_port(ds, port)->bridge_dev != br) 2033ac02a451SVladimir Oltean continue; 2034ac02a451SVladimir Oltean 20355899ee36SVladimir Oltean dsa_8021q_crosschip_bridge_leave(priv->dsa_8021q_ctx, port, 20365899ee36SVladimir Oltean other_priv->dsa_8021q_ctx, 20375899ee36SVladimir Oltean other_port); 2038ac02a451SVladimir Oltean 20395899ee36SVladimir Oltean dsa_8021q_crosschip_bridge_leave(other_priv->dsa_8021q_ctx, 20405899ee36SVladimir Oltean other_port, 20415899ee36SVladimir Oltean priv->dsa_8021q_ctx, port); 2042ac02a451SVladimir Oltean } 2043ac02a451SVladimir Oltean } 2044ac02a451SVladimir Oltean 2045227d07a0SVladimir Oltean static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled) 2046227d07a0SVladimir Oltean { 204760b33aebSVladimir Oltean struct sja1105_private *priv = ds->priv; 20487e092af2SVladimir Oltean int rc; 2049227d07a0SVladimir Oltean 20505899ee36SVladimir Oltean rc = dsa_8021q_setup(priv->dsa_8021q_ctx, enabled); 20517e092af2SVladimir Oltean if (rc) 2052227d07a0SVladimir Oltean return rc; 2053ac02a451SVladimir Oltean 2054227d07a0SVladimir Oltean dev_info(ds->dev, "%s switch tagging\n", 2055227d07a0SVladimir Oltean enabled ? "Enabled" : "Disabled"); 2056227d07a0SVladimir Oltean return 0; 2057227d07a0SVladimir Oltean } 2058227d07a0SVladimir Oltean 20598aa9ebccSVladimir Oltean static enum dsa_tag_protocol 20604d776482SFlorian Fainelli sja1105_get_tag_protocol(struct dsa_switch *ds, int port, 20614d776482SFlorian Fainelli enum dsa_tag_protocol mp) 20628aa9ebccSVladimir Oltean { 2063227d07a0SVladimir Oltean return DSA_TAG_PROTO_SJA1105; 20648aa9ebccSVladimir Oltean } 20658aa9ebccSVladimir Oltean 20663f01c91aSVladimir Oltean static int sja1105_find_free_subvlan(u16 *subvlan_map, bool pvid) 20673f01c91aSVladimir Oltean { 20683f01c91aSVladimir Oltean int subvlan; 20693f01c91aSVladimir Oltean 20703f01c91aSVladimir Oltean if (pvid) 20713f01c91aSVladimir Oltean return 0; 20723f01c91aSVladimir Oltean 20733f01c91aSVladimir Oltean for (subvlan = 1; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 20743f01c91aSVladimir Oltean if (subvlan_map[subvlan] == VLAN_N_VID) 20753f01c91aSVladimir Oltean return subvlan; 20763f01c91aSVladimir Oltean 20773f01c91aSVladimir Oltean return -1; 20783f01c91aSVladimir Oltean } 20793f01c91aSVladimir Oltean 20803f01c91aSVladimir Oltean static int sja1105_find_subvlan(u16 *subvlan_map, u16 vid) 20813f01c91aSVladimir Oltean { 20823f01c91aSVladimir Oltean int subvlan; 20833f01c91aSVladimir Oltean 20843f01c91aSVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 20853f01c91aSVladimir Oltean if (subvlan_map[subvlan] == vid) 20863f01c91aSVladimir Oltean return subvlan; 20873f01c91aSVladimir Oltean 20883f01c91aSVladimir Oltean return -1; 20893f01c91aSVladimir Oltean } 20903f01c91aSVladimir Oltean 20913f01c91aSVladimir Oltean static int sja1105_find_committed_subvlan(struct sja1105_private *priv, 20923f01c91aSVladimir Oltean int port, u16 vid) 20933f01c91aSVladimir Oltean { 20943f01c91aSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 20953f01c91aSVladimir Oltean 20963f01c91aSVladimir Oltean return sja1105_find_subvlan(sp->subvlan_map, vid); 20973f01c91aSVladimir Oltean } 20983f01c91aSVladimir Oltean 20993f01c91aSVladimir Oltean static void sja1105_init_subvlan_map(u16 *subvlan_map) 21003f01c91aSVladimir Oltean { 21013f01c91aSVladimir Oltean int subvlan; 21023f01c91aSVladimir Oltean 21033f01c91aSVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 21043f01c91aSVladimir Oltean subvlan_map[subvlan] = VLAN_N_VID; 21053f01c91aSVladimir Oltean } 21063f01c91aSVladimir Oltean 21073f01c91aSVladimir Oltean static void sja1105_commit_subvlan_map(struct sja1105_private *priv, int port, 21083f01c91aSVladimir Oltean u16 *subvlan_map) 21093f01c91aSVladimir Oltean { 21103f01c91aSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 21113f01c91aSVladimir Oltean int subvlan; 21123f01c91aSVladimir Oltean 21133f01c91aSVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 21143f01c91aSVladimir Oltean sp->subvlan_map[subvlan] = subvlan_map[subvlan]; 21153f01c91aSVladimir Oltean } 21163f01c91aSVladimir Oltean 2117ec5ae610SVladimir Oltean static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid) 2118ec5ae610SVladimir Oltean { 2119ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *vlan; 2120ec5ae610SVladimir Oltean int count, i; 2121ec5ae610SVladimir Oltean 2122ec5ae610SVladimir Oltean vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries; 2123ec5ae610SVladimir Oltean count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count; 2124ec5ae610SVladimir Oltean 2125ec5ae610SVladimir Oltean for (i = 0; i < count; i++) 2126ec5ae610SVladimir Oltean if (vlan[i].vlanid == vid) 2127ec5ae610SVladimir Oltean return i; 2128ec5ae610SVladimir Oltean 2129ec5ae610SVladimir Oltean /* Return an invalid entry index if not found */ 2130ec5ae610SVladimir Oltean return -1; 2131ec5ae610SVladimir Oltean } 2132ec5ae610SVladimir Oltean 21333f01c91aSVladimir Oltean static int 21343f01c91aSVladimir Oltean sja1105_find_retagging_entry(struct sja1105_retagging_entry *retagging, 21353f01c91aSVladimir Oltean int count, int from_port, u16 from_vid, 21363f01c91aSVladimir Oltean u16 to_vid) 2137ec5ae610SVladimir Oltean { 21383f01c91aSVladimir Oltean int i; 21393f01c91aSVladimir Oltean 21403f01c91aSVladimir Oltean for (i = 0; i < count; i++) 21413f01c91aSVladimir Oltean if (retagging[i].ing_port == BIT(from_port) && 21423f01c91aSVladimir Oltean retagging[i].vlan_ing == from_vid && 21433f01c91aSVladimir Oltean retagging[i].vlan_egr == to_vid) 21443f01c91aSVladimir Oltean return i; 21453f01c91aSVladimir Oltean 21463f01c91aSVladimir Oltean /* Return an invalid entry index if not found */ 21473f01c91aSVladimir Oltean return -1; 21483f01c91aSVladimir Oltean } 21493f01c91aSVladimir Oltean 21503f01c91aSVladimir Oltean static int sja1105_commit_vlans(struct sja1105_private *priv, 21513f01c91aSVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan, 21523f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging, 21533f01c91aSVladimir Oltean int num_retagging) 21543f01c91aSVladimir Oltean { 21553f01c91aSVladimir Oltean struct sja1105_retagging_entry *retagging; 2156ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *vlan; 2157ec5ae610SVladimir Oltean struct sja1105_table *table; 2158ec5ae610SVladimir Oltean int num_vlans = 0; 2159ec5ae610SVladimir Oltean int rc, i, k = 0; 2160ec5ae610SVladimir Oltean 2161ec5ae610SVladimir Oltean /* VLAN table */ 2162ec5ae610SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2163ec5ae610SVladimir Oltean vlan = table->entries; 2164ec5ae610SVladimir Oltean 2165ec5ae610SVladimir Oltean for (i = 0; i < VLAN_N_VID; i++) { 2166ec5ae610SVladimir Oltean int match = sja1105_is_vlan_configured(priv, i); 2167ec5ae610SVladimir Oltean 2168ec5ae610SVladimir Oltean if (new_vlan[i].vlanid != VLAN_N_VID) 2169ec5ae610SVladimir Oltean num_vlans++; 2170ec5ae610SVladimir Oltean 2171ec5ae610SVladimir Oltean if (new_vlan[i].vlanid == VLAN_N_VID && match >= 0) { 2172ec5ae610SVladimir Oltean /* Was there before, no longer is. Delete */ 2173ec5ae610SVladimir Oltean dev_dbg(priv->ds->dev, "Deleting VLAN %d\n", i); 2174ec5ae610SVladimir Oltean rc = sja1105_dynamic_config_write(priv, 2175ec5ae610SVladimir Oltean BLK_IDX_VLAN_LOOKUP, 2176ec5ae610SVladimir Oltean i, &vlan[match], false); 2177ec5ae610SVladimir Oltean if (rc < 0) 2178ec5ae610SVladimir Oltean return rc; 2179ec5ae610SVladimir Oltean } else if (new_vlan[i].vlanid != VLAN_N_VID) { 2180ec5ae610SVladimir Oltean /* Nothing changed, don't do anything */ 2181ec5ae610SVladimir Oltean if (match >= 0 && 2182ec5ae610SVladimir Oltean vlan[match].vlanid == new_vlan[i].vlanid && 2183ec5ae610SVladimir Oltean vlan[match].tag_port == new_vlan[i].tag_port && 2184ec5ae610SVladimir Oltean vlan[match].vlan_bc == new_vlan[i].vlan_bc && 2185ec5ae610SVladimir Oltean vlan[match].vmemb_port == new_vlan[i].vmemb_port) 2186ec5ae610SVladimir Oltean continue; 2187ec5ae610SVladimir Oltean /* Update entry */ 2188ec5ae610SVladimir Oltean dev_dbg(priv->ds->dev, "Updating VLAN %d\n", i); 2189ec5ae610SVladimir Oltean rc = sja1105_dynamic_config_write(priv, 2190ec5ae610SVladimir Oltean BLK_IDX_VLAN_LOOKUP, 2191ec5ae610SVladimir Oltean i, &new_vlan[i], 2192ec5ae610SVladimir Oltean true); 2193ec5ae610SVladimir Oltean if (rc < 0) 2194ec5ae610SVladimir Oltean return rc; 2195ec5ae610SVladimir Oltean } 2196ec5ae610SVladimir Oltean } 2197ec5ae610SVladimir Oltean 2198ec5ae610SVladimir Oltean if (table->entry_count) 2199ec5ae610SVladimir Oltean kfree(table->entries); 2200ec5ae610SVladimir Oltean 2201ec5ae610SVladimir Oltean table->entries = kcalloc(num_vlans, table->ops->unpacked_entry_size, 2202ec5ae610SVladimir Oltean GFP_KERNEL); 2203ec5ae610SVladimir Oltean if (!table->entries) 2204ec5ae610SVladimir Oltean return -ENOMEM; 2205ec5ae610SVladimir Oltean 2206ec5ae610SVladimir Oltean table->entry_count = num_vlans; 2207ec5ae610SVladimir Oltean vlan = table->entries; 2208ec5ae610SVladimir Oltean 2209ec5ae610SVladimir Oltean for (i = 0; i < VLAN_N_VID; i++) { 2210ec5ae610SVladimir Oltean if (new_vlan[i].vlanid == VLAN_N_VID) 2211ec5ae610SVladimir Oltean continue; 2212ec5ae610SVladimir Oltean vlan[k++] = new_vlan[i]; 2213ec5ae610SVladimir Oltean } 2214ec5ae610SVladimir Oltean 22153f01c91aSVladimir Oltean /* VLAN Retagging Table */ 22163f01c91aSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_RETAGGING]; 22173f01c91aSVladimir Oltean retagging = table->entries; 22183f01c91aSVladimir Oltean 22193f01c91aSVladimir Oltean for (i = 0; i < table->entry_count; i++) { 22203f01c91aSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_RETAGGING, 22213f01c91aSVladimir Oltean i, &retagging[i], false); 22223f01c91aSVladimir Oltean if (rc) 22233f01c91aSVladimir Oltean return rc; 22243f01c91aSVladimir Oltean } 22253f01c91aSVladimir Oltean 22263f01c91aSVladimir Oltean if (table->entry_count) 22273f01c91aSVladimir Oltean kfree(table->entries); 22283f01c91aSVladimir Oltean 22293f01c91aSVladimir Oltean table->entries = kcalloc(num_retagging, table->ops->unpacked_entry_size, 22303f01c91aSVladimir Oltean GFP_KERNEL); 22313f01c91aSVladimir Oltean if (!table->entries) 22323f01c91aSVladimir Oltean return -ENOMEM; 22333f01c91aSVladimir Oltean 22343f01c91aSVladimir Oltean table->entry_count = num_retagging; 22353f01c91aSVladimir Oltean retagging = table->entries; 22363f01c91aSVladimir Oltean 22373f01c91aSVladimir Oltean for (i = 0; i < num_retagging; i++) { 22383f01c91aSVladimir Oltean retagging[i] = new_retagging[i]; 22393f01c91aSVladimir Oltean 22403f01c91aSVladimir Oltean /* Update entry */ 22413f01c91aSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_RETAGGING, 22423f01c91aSVladimir Oltean i, &retagging[i], true); 22433f01c91aSVladimir Oltean if (rc < 0) 22443f01c91aSVladimir Oltean return rc; 22453f01c91aSVladimir Oltean } 22463f01c91aSVladimir Oltean 2247ec5ae610SVladimir Oltean return 0; 2248ec5ae610SVladimir Oltean } 2249ec5ae610SVladimir Oltean 22503f01c91aSVladimir Oltean struct sja1105_crosschip_vlan { 22513f01c91aSVladimir Oltean struct list_head list; 22523f01c91aSVladimir Oltean u16 vid; 22533f01c91aSVladimir Oltean bool untagged; 22543f01c91aSVladimir Oltean int port; 22553f01c91aSVladimir Oltean int other_port; 22565899ee36SVladimir Oltean struct dsa_8021q_context *other_ctx; 22573f01c91aSVladimir Oltean }; 22583f01c91aSVladimir Oltean 2259ec5ae610SVladimir Oltean struct sja1105_crosschip_switch { 2260ec5ae610SVladimir Oltean struct list_head list; 22615899ee36SVladimir Oltean struct dsa_8021q_context *other_ctx; 2262ec5ae610SVladimir Oltean }; 2263ec5ae610SVladimir Oltean 2264ec5ae610SVladimir Oltean static int sja1105_commit_pvid(struct sja1105_private *priv) 2265ec5ae610SVladimir Oltean { 2266ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 2267ec5ae610SVladimir Oltean struct list_head *vlan_list; 2268ec5ae610SVladimir Oltean int rc = 0; 2269ec5ae610SVladimir Oltean 2270ec5ae610SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2271ec5ae610SVladimir Oltean vlan_list = &priv->bridge_vlans; 2272ec5ae610SVladimir Oltean else 2273ec5ae610SVladimir Oltean vlan_list = &priv->dsa_8021q_vlans; 2274ec5ae610SVladimir Oltean 2275ec5ae610SVladimir Oltean list_for_each_entry(v, vlan_list, list) { 2276ec5ae610SVladimir Oltean if (v->pvid) { 2277ec5ae610SVladimir Oltean rc = sja1105_pvid_apply(priv, v->port, v->vid); 2278ec5ae610SVladimir Oltean if (rc) 2279ec5ae610SVladimir Oltean break; 2280ec5ae610SVladimir Oltean } 2281ec5ae610SVladimir Oltean } 2282ec5ae610SVladimir Oltean 2283ec5ae610SVladimir Oltean return rc; 2284ec5ae610SVladimir Oltean } 2285ec5ae610SVladimir Oltean 2286ec5ae610SVladimir Oltean static int 2287ec5ae610SVladimir Oltean sja1105_build_bridge_vlans(struct sja1105_private *priv, 2288ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan) 2289ec5ae610SVladimir Oltean { 2290ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v; 2291ec5ae610SVladimir Oltean 2292ec5ae610SVladimir Oltean if (priv->vlan_state == SJA1105_VLAN_UNAWARE) 2293ec5ae610SVladimir Oltean return 0; 2294ec5ae610SVladimir Oltean 2295ec5ae610SVladimir Oltean list_for_each_entry(v, &priv->bridge_vlans, list) { 2296ec5ae610SVladimir Oltean int match = v->vid; 2297ec5ae610SVladimir Oltean 2298ec5ae610SVladimir Oltean new_vlan[match].vlanid = v->vid; 2299ec5ae610SVladimir Oltean new_vlan[match].vmemb_port |= BIT(v->port); 2300ec5ae610SVladimir Oltean new_vlan[match].vlan_bc |= BIT(v->port); 2301ec5ae610SVladimir Oltean if (!v->untagged) 2302ec5ae610SVladimir Oltean new_vlan[match].tag_port |= BIT(v->port); 2303ec5ae610SVladimir Oltean } 2304ec5ae610SVladimir Oltean 2305ec5ae610SVladimir Oltean return 0; 2306ec5ae610SVladimir Oltean } 2307ec5ae610SVladimir Oltean 2308ec5ae610SVladimir Oltean static int 2309ec5ae610SVladimir Oltean sja1105_build_dsa_8021q_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_FILTERING_FULL) 2315ec5ae610SVladimir Oltean return 0; 2316ec5ae610SVladimir Oltean 2317ec5ae610SVladimir Oltean list_for_each_entry(v, &priv->dsa_8021q_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); 2325ec5ae610SVladimir Oltean } 2326ec5ae610SVladimir Oltean 2327ec5ae610SVladimir Oltean return 0; 2328ec5ae610SVladimir Oltean } 2329ec5ae610SVladimir Oltean 23303f01c91aSVladimir Oltean static int sja1105_build_subvlans(struct sja1105_private *priv, 23313f01c91aSVladimir Oltean u16 subvlan_map[][DSA_8021Q_N_SUBVLAN], 23323f01c91aSVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan, 23333f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging, 23343f01c91aSVladimir Oltean int *num_retagging) 23353f01c91aSVladimir Oltean { 23363f01c91aSVladimir Oltean struct sja1105_bridge_vlan *v; 23373f01c91aSVladimir Oltean int k = *num_retagging; 23383f01c91aSVladimir Oltean 23393f01c91aSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_BEST_EFFORT) 23403f01c91aSVladimir Oltean return 0; 23413f01c91aSVladimir Oltean 23423f01c91aSVladimir Oltean list_for_each_entry(v, &priv->bridge_vlans, list) { 23433f01c91aSVladimir Oltean int upstream = dsa_upstream_port(priv->ds, v->port); 23443f01c91aSVladimir Oltean int match, subvlan; 23453f01c91aSVladimir Oltean u16 rx_vid; 23463f01c91aSVladimir Oltean 23473f01c91aSVladimir Oltean /* Only sub-VLANs on user ports need to be applied. 23483f01c91aSVladimir Oltean * Bridge VLANs also include VLANs added automatically 23493f01c91aSVladimir Oltean * by DSA on the CPU port. 23503f01c91aSVladimir Oltean */ 23513f01c91aSVladimir Oltean if (!dsa_is_user_port(priv->ds, v->port)) 23523f01c91aSVladimir Oltean continue; 23533f01c91aSVladimir Oltean 23543f01c91aSVladimir Oltean subvlan = sja1105_find_subvlan(subvlan_map[v->port], 23553f01c91aSVladimir Oltean v->vid); 23563f01c91aSVladimir Oltean if (subvlan < 0) { 23573f01c91aSVladimir Oltean subvlan = sja1105_find_free_subvlan(subvlan_map[v->port], 23583f01c91aSVladimir Oltean v->pvid); 23593f01c91aSVladimir Oltean if (subvlan < 0) { 23603f01c91aSVladimir Oltean dev_err(priv->ds->dev, "No more free subvlans\n"); 23613f01c91aSVladimir Oltean return -ENOSPC; 23623f01c91aSVladimir Oltean } 23633f01c91aSVladimir Oltean } 23643f01c91aSVladimir Oltean 23653f01c91aSVladimir Oltean rx_vid = dsa_8021q_rx_vid_subvlan(priv->ds, v->port, subvlan); 23663f01c91aSVladimir Oltean 23673f01c91aSVladimir Oltean /* @v->vid on @v->port needs to be retagged to @rx_vid 23683f01c91aSVladimir Oltean * on @upstream. Assume @v->vid on @v->port and on 23693f01c91aSVladimir Oltean * @upstream was already configured by the previous 23703f01c91aSVladimir Oltean * iteration over bridge_vlans. 23713f01c91aSVladimir Oltean */ 23723f01c91aSVladimir Oltean match = rx_vid; 23733f01c91aSVladimir Oltean new_vlan[match].vlanid = rx_vid; 23743f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(v->port); 23753f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(upstream); 23763f01c91aSVladimir Oltean new_vlan[match].vlan_bc |= BIT(v->port); 23773f01c91aSVladimir Oltean new_vlan[match].vlan_bc |= BIT(upstream); 23783f01c91aSVladimir Oltean /* The "untagged" flag is set the same as for the 23793f01c91aSVladimir Oltean * original VLAN 23803f01c91aSVladimir Oltean */ 23813f01c91aSVladimir Oltean if (!v->untagged) 23823f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(v->port); 23833f01c91aSVladimir Oltean /* But it's always tagged towards the CPU */ 23843f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(upstream); 23853f01c91aSVladimir Oltean 23863f01c91aSVladimir Oltean /* The Retagging Table generates packet *clones* with 23873f01c91aSVladimir Oltean * the new VLAN. This is a very odd hardware quirk 23883f01c91aSVladimir Oltean * which we need to suppress by dropping the original 23893f01c91aSVladimir Oltean * packet. 23903f01c91aSVladimir Oltean * Deny egress of the original VLAN towards the CPU 23913f01c91aSVladimir Oltean * port. This will force the switch to drop it, and 23923f01c91aSVladimir Oltean * we'll see only the retagged packets. 23933f01c91aSVladimir Oltean */ 23943f01c91aSVladimir Oltean match = v->vid; 23953f01c91aSVladimir Oltean new_vlan[match].vlan_bc &= ~BIT(upstream); 23963f01c91aSVladimir Oltean 23973f01c91aSVladimir Oltean /* And the retagging itself */ 23983f01c91aSVladimir Oltean new_retagging[k].vlan_ing = v->vid; 23993f01c91aSVladimir Oltean new_retagging[k].vlan_egr = rx_vid; 24003f01c91aSVladimir Oltean new_retagging[k].ing_port = BIT(v->port); 24013f01c91aSVladimir Oltean new_retagging[k].egr_port = BIT(upstream); 24023f01c91aSVladimir Oltean if (k++ == SJA1105_MAX_RETAGGING_COUNT) { 24033f01c91aSVladimir Oltean dev_err(priv->ds->dev, "No more retagging rules\n"); 24043f01c91aSVladimir Oltean return -ENOSPC; 24053f01c91aSVladimir Oltean } 24063f01c91aSVladimir Oltean 24073f01c91aSVladimir Oltean subvlan_map[v->port][subvlan] = v->vid; 24083f01c91aSVladimir Oltean } 24093f01c91aSVladimir Oltean 24103f01c91aSVladimir Oltean *num_retagging = k; 24113f01c91aSVladimir Oltean 24123f01c91aSVladimir Oltean return 0; 24133f01c91aSVladimir Oltean } 24143f01c91aSVladimir Oltean 24153f01c91aSVladimir Oltean /* Sadly, in crosschip scenarios where the CPU port is also the link to another 24163f01c91aSVladimir Oltean * switch, we should retag backwards (the dsa_8021q vid to the original vid) on 24173f01c91aSVladimir Oltean * the CPU port of neighbour switches. 24183f01c91aSVladimir Oltean */ 24193f01c91aSVladimir Oltean static int 24203f01c91aSVladimir Oltean sja1105_build_crosschip_subvlans(struct sja1105_private *priv, 24213f01c91aSVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan, 24223f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging, 24233f01c91aSVladimir Oltean int *num_retagging) 24243f01c91aSVladimir Oltean { 24253f01c91aSVladimir Oltean struct sja1105_crosschip_vlan *tmp, *pos; 24263f01c91aSVladimir Oltean struct dsa_8021q_crosschip_link *c; 24273f01c91aSVladimir Oltean struct sja1105_bridge_vlan *v, *w; 24283f01c91aSVladimir Oltean struct list_head crosschip_vlans; 24293f01c91aSVladimir Oltean int k = *num_retagging; 24303f01c91aSVladimir Oltean int rc = 0; 24313f01c91aSVladimir Oltean 24323f01c91aSVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_BEST_EFFORT) 24333f01c91aSVladimir Oltean return 0; 24343f01c91aSVladimir Oltean 24353f01c91aSVladimir Oltean INIT_LIST_HEAD(&crosschip_vlans); 24363f01c91aSVladimir Oltean 24375899ee36SVladimir Oltean list_for_each_entry(c, &priv->dsa_8021q_ctx->crosschip_links, list) { 24385899ee36SVladimir Oltean struct sja1105_private *other_priv = c->other_ctx->ds->priv; 24393f01c91aSVladimir Oltean 24403f01c91aSVladimir Oltean if (other_priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 24413f01c91aSVladimir Oltean continue; 24423f01c91aSVladimir Oltean 24433f01c91aSVladimir Oltean /* Crosschip links are also added to the CPU ports. 24443f01c91aSVladimir Oltean * Ignore those. 24453f01c91aSVladimir Oltean */ 24463f01c91aSVladimir Oltean if (!dsa_is_user_port(priv->ds, c->port)) 24473f01c91aSVladimir Oltean continue; 24485899ee36SVladimir Oltean if (!dsa_is_user_port(c->other_ctx->ds, c->other_port)) 24493f01c91aSVladimir Oltean continue; 24503f01c91aSVladimir Oltean 24513f01c91aSVladimir Oltean /* Search for VLANs on the remote port */ 24523f01c91aSVladimir Oltean list_for_each_entry(v, &other_priv->bridge_vlans, list) { 24533f01c91aSVladimir Oltean bool already_added = false; 24543f01c91aSVladimir Oltean bool we_have_it = false; 24553f01c91aSVladimir Oltean 24563f01c91aSVladimir Oltean if (v->port != c->other_port) 24573f01c91aSVladimir Oltean continue; 24583f01c91aSVladimir Oltean 24593f01c91aSVladimir Oltean /* If @v is a pvid on @other_ds, it does not need 24603f01c91aSVladimir Oltean * re-retagging, because its SVL field is 0 and we 24613f01c91aSVladimir Oltean * already allow that, via the dsa_8021q crosschip 24623f01c91aSVladimir Oltean * links. 24633f01c91aSVladimir Oltean */ 24643f01c91aSVladimir Oltean if (v->pvid) 24653f01c91aSVladimir Oltean continue; 24663f01c91aSVladimir Oltean 24673f01c91aSVladimir Oltean /* Search for the VLAN on our local port */ 24683f01c91aSVladimir Oltean list_for_each_entry(w, &priv->bridge_vlans, list) { 24693f01c91aSVladimir Oltean if (w->port == c->port && w->vid == v->vid) { 24703f01c91aSVladimir Oltean we_have_it = true; 24713f01c91aSVladimir Oltean break; 24723f01c91aSVladimir Oltean } 24733f01c91aSVladimir Oltean } 24743f01c91aSVladimir Oltean 24753f01c91aSVladimir Oltean if (!we_have_it) 24763f01c91aSVladimir Oltean continue; 24773f01c91aSVladimir Oltean 24783f01c91aSVladimir Oltean list_for_each_entry(tmp, &crosschip_vlans, list) { 24793f01c91aSVladimir Oltean if (tmp->vid == v->vid && 24803f01c91aSVladimir Oltean tmp->untagged == v->untagged && 24813f01c91aSVladimir Oltean tmp->port == c->port && 24823f01c91aSVladimir Oltean tmp->other_port == v->port && 24835899ee36SVladimir Oltean tmp->other_ctx == c->other_ctx) { 24843f01c91aSVladimir Oltean already_added = true; 24853f01c91aSVladimir Oltean break; 24863f01c91aSVladimir Oltean } 24873f01c91aSVladimir Oltean } 24883f01c91aSVladimir Oltean 24893f01c91aSVladimir Oltean if (already_added) 24903f01c91aSVladimir Oltean continue; 24913f01c91aSVladimir Oltean 24923f01c91aSVladimir Oltean tmp = kzalloc(sizeof(*tmp), GFP_KERNEL); 24933f01c91aSVladimir Oltean if (!tmp) { 24943f01c91aSVladimir Oltean dev_err(priv->ds->dev, "Failed to allocate memory\n"); 24953f01c91aSVladimir Oltean rc = -ENOMEM; 24963f01c91aSVladimir Oltean goto out; 24973f01c91aSVladimir Oltean } 24983f01c91aSVladimir Oltean tmp->vid = v->vid; 24993f01c91aSVladimir Oltean tmp->port = c->port; 25003f01c91aSVladimir Oltean tmp->other_port = v->port; 25015899ee36SVladimir Oltean tmp->other_ctx = c->other_ctx; 25023f01c91aSVladimir Oltean tmp->untagged = v->untagged; 25033f01c91aSVladimir Oltean list_add(&tmp->list, &crosschip_vlans); 25043f01c91aSVladimir Oltean } 25053f01c91aSVladimir Oltean } 25063f01c91aSVladimir Oltean 25073f01c91aSVladimir Oltean list_for_each_entry(tmp, &crosschip_vlans, list) { 25085899ee36SVladimir Oltean struct sja1105_private *other_priv = tmp->other_ctx->ds->priv; 25093f01c91aSVladimir Oltean int upstream = dsa_upstream_port(priv->ds, tmp->port); 25103f01c91aSVladimir Oltean int match, subvlan; 25113f01c91aSVladimir Oltean u16 rx_vid; 25123f01c91aSVladimir Oltean 25133f01c91aSVladimir Oltean subvlan = sja1105_find_committed_subvlan(other_priv, 25143f01c91aSVladimir Oltean tmp->other_port, 25153f01c91aSVladimir Oltean tmp->vid); 25163f01c91aSVladimir Oltean /* If this happens, it's a bug. The neighbour switch does not 25173f01c91aSVladimir Oltean * have a subvlan for tmp->vid on tmp->other_port, but it 25183f01c91aSVladimir Oltean * should, since we already checked for its vlan_state. 25193f01c91aSVladimir Oltean */ 25203f01c91aSVladimir Oltean if (WARN_ON(subvlan < 0)) { 25213f01c91aSVladimir Oltean rc = -EINVAL; 25223f01c91aSVladimir Oltean goto out; 25233f01c91aSVladimir Oltean } 25243f01c91aSVladimir Oltean 25255899ee36SVladimir Oltean rx_vid = dsa_8021q_rx_vid_subvlan(tmp->other_ctx->ds, 25263f01c91aSVladimir Oltean tmp->other_port, 25273f01c91aSVladimir Oltean subvlan); 25283f01c91aSVladimir Oltean 25293f01c91aSVladimir Oltean /* The @rx_vid retagged from @tmp->vid on 25303f01c91aSVladimir Oltean * {@tmp->other_ds, @tmp->other_port} needs to be 25313f01c91aSVladimir Oltean * re-retagged to @tmp->vid on the way back to us. 25323f01c91aSVladimir Oltean * 25333f01c91aSVladimir Oltean * Assume the original @tmp->vid is already configured 25343f01c91aSVladimir Oltean * on this local switch, otherwise we wouldn't be 25353f01c91aSVladimir Oltean * retagging its subvlan on the other switch in the 25363f01c91aSVladimir Oltean * first place. We just need to add a reverse retagging 25373f01c91aSVladimir Oltean * rule for @rx_vid and install @rx_vid on our ports. 25383f01c91aSVladimir Oltean */ 25393f01c91aSVladimir Oltean match = rx_vid; 25403f01c91aSVladimir Oltean new_vlan[match].vlanid = rx_vid; 25413f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(tmp->port); 25423f01c91aSVladimir Oltean new_vlan[match].vmemb_port |= BIT(upstream); 25433f01c91aSVladimir Oltean /* The "untagged" flag is set the same as for the 25443f01c91aSVladimir Oltean * original VLAN. And towards the CPU, it doesn't 25453f01c91aSVladimir Oltean * really matter, because @rx_vid will only receive 25463f01c91aSVladimir Oltean * traffic on that port. For consistency with other dsa_8021q 25473f01c91aSVladimir Oltean * VLANs, we'll keep the CPU port tagged. 25483f01c91aSVladimir Oltean */ 25493f01c91aSVladimir Oltean if (!tmp->untagged) 25503f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(tmp->port); 25513f01c91aSVladimir Oltean new_vlan[match].tag_port |= BIT(upstream); 25523f01c91aSVladimir Oltean /* Deny egress of @rx_vid towards our front-panel port. 25533f01c91aSVladimir Oltean * This will force the switch to drop it, and we'll see 25543f01c91aSVladimir Oltean * only the re-retagged packets (having the original, 25553f01c91aSVladimir Oltean * pre-initial-retagging, VLAN @tmp->vid). 25563f01c91aSVladimir Oltean */ 25573f01c91aSVladimir Oltean new_vlan[match].vlan_bc &= ~BIT(tmp->port); 25583f01c91aSVladimir Oltean 25593f01c91aSVladimir Oltean /* On reverse retagging, the same ingress VLAN goes to multiple 25603f01c91aSVladimir Oltean * ports. So we have an opportunity to create composite rules 25613f01c91aSVladimir Oltean * to not waste the limited space in the retagging table. 25623f01c91aSVladimir Oltean */ 25633f01c91aSVladimir Oltean k = sja1105_find_retagging_entry(new_retagging, *num_retagging, 25643f01c91aSVladimir Oltean upstream, rx_vid, tmp->vid); 25653f01c91aSVladimir Oltean if (k < 0) { 25663f01c91aSVladimir Oltean if (*num_retagging == SJA1105_MAX_RETAGGING_COUNT) { 25673f01c91aSVladimir Oltean dev_err(priv->ds->dev, "No more retagging rules\n"); 25683f01c91aSVladimir Oltean rc = -ENOSPC; 25693f01c91aSVladimir Oltean goto out; 25703f01c91aSVladimir Oltean } 25713f01c91aSVladimir Oltean k = (*num_retagging)++; 25723f01c91aSVladimir Oltean } 25733f01c91aSVladimir Oltean /* And the retagging itself */ 25743f01c91aSVladimir Oltean new_retagging[k].vlan_ing = rx_vid; 25753f01c91aSVladimir Oltean new_retagging[k].vlan_egr = tmp->vid; 25763f01c91aSVladimir Oltean new_retagging[k].ing_port = BIT(upstream); 25773f01c91aSVladimir Oltean new_retagging[k].egr_port |= BIT(tmp->port); 25783f01c91aSVladimir Oltean } 25793f01c91aSVladimir Oltean 25803f01c91aSVladimir Oltean out: 25813f01c91aSVladimir Oltean list_for_each_entry_safe(tmp, pos, &crosschip_vlans, list) { 25823f01c91aSVladimir Oltean list_del(&tmp->list); 25833f01c91aSVladimir Oltean kfree(tmp); 25843f01c91aSVladimir Oltean } 25853f01c91aSVladimir Oltean 25863f01c91aSVladimir Oltean return rc; 25873f01c91aSVladimir Oltean } 25883f01c91aSVladimir Oltean 2589ec5ae610SVladimir Oltean static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify); 2590ec5ae610SVladimir Oltean 2591ec5ae610SVladimir Oltean static int sja1105_notify_crosschip_switches(struct sja1105_private *priv) 2592ec5ae610SVladimir Oltean { 2593ec5ae610SVladimir Oltean struct sja1105_crosschip_switch *s, *pos; 2594ec5ae610SVladimir Oltean struct list_head crosschip_switches; 2595ec5ae610SVladimir Oltean struct dsa_8021q_crosschip_link *c; 2596ec5ae610SVladimir Oltean int rc = 0; 2597ec5ae610SVladimir Oltean 2598ec5ae610SVladimir Oltean INIT_LIST_HEAD(&crosschip_switches); 2599ec5ae610SVladimir Oltean 26005899ee36SVladimir Oltean list_for_each_entry(c, &priv->dsa_8021q_ctx->crosschip_links, list) { 2601ec5ae610SVladimir Oltean bool already_added = false; 2602ec5ae610SVladimir Oltean 2603ec5ae610SVladimir Oltean list_for_each_entry(s, &crosschip_switches, list) { 26045899ee36SVladimir Oltean if (s->other_ctx == c->other_ctx) { 2605ec5ae610SVladimir Oltean already_added = true; 2606ec5ae610SVladimir Oltean break; 2607ec5ae610SVladimir Oltean } 2608ec5ae610SVladimir Oltean } 2609ec5ae610SVladimir Oltean 2610ec5ae610SVladimir Oltean if (already_added) 2611ec5ae610SVladimir Oltean continue; 2612ec5ae610SVladimir Oltean 2613ec5ae610SVladimir Oltean s = kzalloc(sizeof(*s), GFP_KERNEL); 2614ec5ae610SVladimir Oltean if (!s) { 2615ec5ae610SVladimir Oltean dev_err(priv->ds->dev, "Failed to allocate memory\n"); 2616ec5ae610SVladimir Oltean rc = -ENOMEM; 2617ec5ae610SVladimir Oltean goto out; 2618ec5ae610SVladimir Oltean } 26195899ee36SVladimir Oltean s->other_ctx = c->other_ctx; 2620ec5ae610SVladimir Oltean list_add(&s->list, &crosschip_switches); 2621ec5ae610SVladimir Oltean } 2622ec5ae610SVladimir Oltean 2623ec5ae610SVladimir Oltean list_for_each_entry(s, &crosschip_switches, list) { 26245899ee36SVladimir Oltean struct sja1105_private *other_priv = s->other_ctx->ds->priv; 2625ec5ae610SVladimir Oltean 2626ec5ae610SVladimir Oltean rc = sja1105_build_vlan_table(other_priv, false); 2627ec5ae610SVladimir Oltean if (rc) 2628ec5ae610SVladimir Oltean goto out; 2629ec5ae610SVladimir Oltean } 2630ec5ae610SVladimir Oltean 2631ec5ae610SVladimir Oltean out: 2632ec5ae610SVladimir Oltean list_for_each_entry_safe(s, pos, &crosschip_switches, list) { 2633ec5ae610SVladimir Oltean list_del(&s->list); 2634ec5ae610SVladimir Oltean kfree(s); 2635ec5ae610SVladimir Oltean } 2636ec5ae610SVladimir Oltean 2637ec5ae610SVladimir Oltean return rc; 2638ec5ae610SVladimir Oltean } 2639ec5ae610SVladimir Oltean 2640ec5ae610SVladimir Oltean static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify) 2641ec5ae610SVladimir Oltean { 2642*82760d7fSVladimir Oltean u16 subvlan_map[SJA1105_MAX_NUM_PORTS][DSA_8021Q_N_SUBVLAN]; 26433f01c91aSVladimir Oltean struct sja1105_retagging_entry *new_retagging; 2644ec5ae610SVladimir Oltean struct sja1105_vlan_lookup_entry *new_vlan; 2645ec5ae610SVladimir Oltean struct sja1105_table *table; 26463f01c91aSVladimir Oltean int i, num_retagging = 0; 2647ec5ae610SVladimir Oltean int rc; 2648ec5ae610SVladimir Oltean 2649ec5ae610SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2650ec5ae610SVladimir Oltean new_vlan = kcalloc(VLAN_N_VID, 2651ec5ae610SVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 2652ec5ae610SVladimir Oltean if (!new_vlan) 2653ec5ae610SVladimir Oltean return -ENOMEM; 2654ec5ae610SVladimir Oltean 26553f01c91aSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 26563f01c91aSVladimir Oltean new_retagging = kcalloc(SJA1105_MAX_RETAGGING_COUNT, 26573f01c91aSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 26583f01c91aSVladimir Oltean if (!new_retagging) { 26593f01c91aSVladimir Oltean kfree(new_vlan); 26603f01c91aSVladimir Oltean return -ENOMEM; 26613f01c91aSVladimir Oltean } 26623f01c91aSVladimir Oltean 2663ec5ae610SVladimir Oltean for (i = 0; i < VLAN_N_VID; i++) 2664ec5ae610SVladimir Oltean new_vlan[i].vlanid = VLAN_N_VID; 2665ec5ae610SVladimir Oltean 26663f01c91aSVladimir Oltean for (i = 0; i < SJA1105_MAX_RETAGGING_COUNT; i++) 26673f01c91aSVladimir Oltean new_retagging[i].vlan_ing = VLAN_N_VID; 26683f01c91aSVladimir Oltean 26693f01c91aSVladimir Oltean for (i = 0; i < priv->ds->num_ports; i++) 26703f01c91aSVladimir Oltean sja1105_init_subvlan_map(subvlan_map[i]); 26713f01c91aSVladimir Oltean 2672ec5ae610SVladimir Oltean /* Bridge VLANs */ 2673ec5ae610SVladimir Oltean rc = sja1105_build_bridge_vlans(priv, new_vlan); 2674ec5ae610SVladimir Oltean if (rc) 2675ec5ae610SVladimir Oltean goto out; 2676ec5ae610SVladimir Oltean 2677ec5ae610SVladimir Oltean /* VLANs necessary for dsa_8021q operation, given to us by tag_8021q.c: 2678ec5ae610SVladimir Oltean * - RX VLANs 2679ec5ae610SVladimir Oltean * - TX VLANs 2680ec5ae610SVladimir Oltean * - Crosschip links 2681ec5ae610SVladimir Oltean */ 2682ec5ae610SVladimir Oltean rc = sja1105_build_dsa_8021q_vlans(priv, new_vlan); 2683ec5ae610SVladimir Oltean if (rc) 2684ec5ae610SVladimir Oltean goto out; 2685ec5ae610SVladimir Oltean 26863f01c91aSVladimir Oltean /* Private VLANs necessary for dsa_8021q operation, which we need to 26873f01c91aSVladimir Oltean * determine on our own: 26883f01c91aSVladimir Oltean * - Sub-VLANs 26893f01c91aSVladimir Oltean * - Sub-VLANs of crosschip switches 26903f01c91aSVladimir Oltean */ 26913f01c91aSVladimir Oltean rc = sja1105_build_subvlans(priv, subvlan_map, new_vlan, new_retagging, 26923f01c91aSVladimir Oltean &num_retagging); 26933f01c91aSVladimir Oltean if (rc) 26943f01c91aSVladimir Oltean goto out; 26953f01c91aSVladimir Oltean 26963f01c91aSVladimir Oltean rc = sja1105_build_crosschip_subvlans(priv, new_vlan, new_retagging, 26973f01c91aSVladimir Oltean &num_retagging); 26983f01c91aSVladimir Oltean if (rc) 26993f01c91aSVladimir Oltean goto out; 27003f01c91aSVladimir Oltean 27013f01c91aSVladimir Oltean rc = sja1105_commit_vlans(priv, new_vlan, new_retagging, num_retagging); 2702ec5ae610SVladimir Oltean if (rc) 2703ec5ae610SVladimir Oltean goto out; 2704ec5ae610SVladimir Oltean 2705ec5ae610SVladimir Oltean rc = sja1105_commit_pvid(priv); 2706ec5ae610SVladimir Oltean if (rc) 2707ec5ae610SVladimir Oltean goto out; 2708ec5ae610SVladimir Oltean 27093f01c91aSVladimir Oltean for (i = 0; i < priv->ds->num_ports; i++) 27103f01c91aSVladimir Oltean sja1105_commit_subvlan_map(priv, i, subvlan_map[i]); 27113f01c91aSVladimir Oltean 2712ec5ae610SVladimir Oltean if (notify) { 2713ec5ae610SVladimir Oltean rc = sja1105_notify_crosschip_switches(priv); 2714ec5ae610SVladimir Oltean if (rc) 2715ec5ae610SVladimir Oltean goto out; 2716ec5ae610SVladimir Oltean } 2717ec5ae610SVladimir Oltean 2718ec5ae610SVladimir Oltean out: 2719ec5ae610SVladimir Oltean kfree(new_vlan); 27203f01c91aSVladimir Oltean kfree(new_retagging); 2721ec5ae610SVladimir Oltean 2722ec5ae610SVladimir Oltean return rc; 2723ec5ae610SVladimir Oltean } 2724ec5ae610SVladimir Oltean 2725070ca3bbSVladimir Oltean /* The TPID setting belongs to the General Parameters table, 2726070ca3bbSVladimir Oltean * which can only be partially reconfigured at runtime (and not the TPID). 2727070ca3bbSVladimir Oltean * So a switch reset is required. 2728070ca3bbSVladimir Oltean */ 272989153ed6SVladimir Oltean int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled, 273089153ed6SVladimir Oltean struct netlink_ext_ack *extack) 27316666cebcSVladimir Oltean { 27326d7c7d94SVladimir Oltean struct sja1105_l2_lookup_params_entry *l2_lookup_params; 2733070ca3bbSVladimir Oltean struct sja1105_general_params_entry *general_params; 27346666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 27357f14937fSVladimir Oltean enum sja1105_vlan_state state; 2736070ca3bbSVladimir Oltean struct sja1105_table *table; 2737dfacc5a2SVladimir Oltean struct sja1105_rule *rule; 27382cafa72eSVladimir Oltean bool want_tagging; 2739070ca3bbSVladimir Oltean u16 tpid, tpid2; 27406666cebcSVladimir Oltean int rc; 27416666cebcSVladimir Oltean 2742dfacc5a2SVladimir Oltean list_for_each_entry(rule, &priv->flow_block.rules, list) { 2743dfacc5a2SVladimir Oltean if (rule->type == SJA1105_RULE_VL) { 274489153ed6SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 274589153ed6SVladimir Oltean "Cannot change VLAN filtering with active VL rules"); 2746dfacc5a2SVladimir Oltean return -EBUSY; 2747dfacc5a2SVladimir Oltean } 2748dfacc5a2SVladimir Oltean } 2749dfacc5a2SVladimir Oltean 2750070ca3bbSVladimir Oltean if (enabled) { 27516666cebcSVladimir Oltean /* Enable VLAN filtering. */ 275254fa49eeSVladimir Oltean tpid = ETH_P_8021Q; 275354fa49eeSVladimir Oltean tpid2 = ETH_P_8021AD; 2754070ca3bbSVladimir Oltean } else { 27556666cebcSVladimir Oltean /* Disable VLAN filtering. */ 2756070ca3bbSVladimir Oltean tpid = ETH_P_SJA1105; 2757070ca3bbSVladimir Oltean tpid2 = ETH_P_SJA1105; 2758070ca3bbSVladimir Oltean } 2759070ca3bbSVladimir Oltean 276038b5beeaSVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 276138b5beeaSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 276238b5beeaSVladimir Oltean 276338b5beeaSVladimir Oltean if (enabled) 276438b5beeaSVladimir Oltean sp->xmit_tpid = priv->info->qinq_tpid; 276538b5beeaSVladimir Oltean else 276638b5beeaSVladimir Oltean sp->xmit_tpid = ETH_P_SJA1105; 276738b5beeaSVladimir Oltean } 276838b5beeaSVladimir Oltean 27697f14937fSVladimir Oltean if (!enabled) 27707f14937fSVladimir Oltean state = SJA1105_VLAN_UNAWARE; 27712cafa72eSVladimir Oltean else if (priv->best_effort_vlan_filtering) 27722cafa72eSVladimir Oltean state = SJA1105_VLAN_BEST_EFFORT; 27737f14937fSVladimir Oltean else 27747f14937fSVladimir Oltean state = SJA1105_VLAN_FILTERING_FULL; 27757f14937fSVladimir Oltean 2776cfa36b1fSVladimir Oltean if (priv->vlan_state == state) 2777cfa36b1fSVladimir Oltean return 0; 2778cfa36b1fSVladimir Oltean 27797f14937fSVladimir Oltean priv->vlan_state = state; 27802cafa72eSVladimir Oltean want_tagging = (state == SJA1105_VLAN_UNAWARE || 27812cafa72eSVladimir Oltean state == SJA1105_VLAN_BEST_EFFORT); 27827f14937fSVladimir Oltean 2783070ca3bbSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 2784070ca3bbSVladimir Oltean general_params = table->entries; 2785f9a1a764SVladimir Oltean /* EtherType used to identify inner tagged (C-tag) VLAN traffic */ 278654fa49eeSVladimir Oltean general_params->tpid = tpid; 278754fa49eeSVladimir Oltean /* EtherType used to identify outer tagged (S-tag) VLAN traffic */ 2788070ca3bbSVladimir Oltean general_params->tpid2 = tpid2; 278942824463SVladimir Oltean /* When VLAN filtering is on, we need to at least be able to 279042824463SVladimir Oltean * decode management traffic through the "backup plan". 279142824463SVladimir Oltean */ 279242824463SVladimir Oltean general_params->incl_srcpt1 = enabled; 279342824463SVladimir Oltean general_params->incl_srcpt0 = enabled; 2794070ca3bbSVladimir Oltean 27952cafa72eSVladimir Oltean want_tagging = priv->best_effort_vlan_filtering || !enabled; 27962cafa72eSVladimir Oltean 27976d7c7d94SVladimir Oltean /* VLAN filtering => independent VLAN learning. 27982cafa72eSVladimir Oltean * No VLAN filtering (or best effort) => shared VLAN learning. 27996d7c7d94SVladimir Oltean * 28006d7c7d94SVladimir Oltean * In shared VLAN learning mode, untagged traffic still gets 28016d7c7d94SVladimir Oltean * pvid-tagged, and the FDB table gets populated with entries 28026d7c7d94SVladimir Oltean * containing the "real" (pvid or from VLAN tag) VLAN ID. 28036d7c7d94SVladimir Oltean * However the switch performs a masked L2 lookup in the FDB, 28046d7c7d94SVladimir Oltean * effectively only looking up a frame's DMAC (and not VID) for the 28056d7c7d94SVladimir Oltean * forwarding decision. 28066d7c7d94SVladimir Oltean * 28076d7c7d94SVladimir Oltean * This is extremely convenient for us, because in modes with 28086d7c7d94SVladimir Oltean * vlan_filtering=0, dsa_8021q actually installs unique pvid's into 28096d7c7d94SVladimir Oltean * each front panel port. This is good for identification but breaks 28106d7c7d94SVladimir Oltean * learning badly - the VID of the learnt FDB entry is unique, aka 28116d7c7d94SVladimir Oltean * no frames coming from any other port are going to have it. So 28126d7c7d94SVladimir Oltean * for forwarding purposes, this is as though learning was broken 28136d7c7d94SVladimir Oltean * (all frames get flooded). 28146d7c7d94SVladimir Oltean */ 28156d7c7d94SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 28166d7c7d94SVladimir Oltean l2_lookup_params = table->entries; 28172cafa72eSVladimir Oltean l2_lookup_params->shared_learn = want_tagging; 28186d7c7d94SVladimir Oltean 2819aaa270c6SVladimir Oltean sja1105_frame_memory_partitioning(priv); 2820aaa270c6SVladimir Oltean 2821aef31718SVladimir Oltean rc = sja1105_build_vlan_table(priv, false); 2822aef31718SVladimir Oltean if (rc) 2823aef31718SVladimir Oltean return rc; 2824aef31718SVladimir Oltean 28252eea1fa8SVladimir Oltean rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING); 28266666cebcSVladimir Oltean if (rc) 282789153ed6SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, "Failed to change VLAN Ethertype"); 28286666cebcSVladimir Oltean 2829227d07a0SVladimir Oltean /* Switch port identification based on 802.1Q is only passable 2830227d07a0SVladimir Oltean * if we are not under a vlan_filtering bridge. So make sure 28312cafa72eSVladimir Oltean * the two configurations are mutually exclusive (of course, the 28322cafa72eSVladimir Oltean * user may know better, i.e. best_effort_vlan_filtering). 2833227d07a0SVladimir Oltean */ 28342cafa72eSVladimir Oltean return sja1105_setup_8021q_tagging(ds, want_tagging); 28356666cebcSVladimir Oltean } 28366666cebcSVladimir Oltean 28375899ee36SVladimir Oltean /* Returns number of VLANs added (0 or 1) on success, 28385899ee36SVladimir Oltean * or a negative error code. 28395899ee36SVladimir Oltean */ 28405899ee36SVladimir Oltean static int sja1105_vlan_add_one(struct dsa_switch *ds, int port, u16 vid, 28415899ee36SVladimir Oltean u16 flags, struct list_head *vlan_list) 28425899ee36SVladimir Oltean { 28435899ee36SVladimir Oltean bool untagged = flags & BRIDGE_VLAN_INFO_UNTAGGED; 28445899ee36SVladimir Oltean bool pvid = flags & BRIDGE_VLAN_INFO_PVID; 28455899ee36SVladimir Oltean struct sja1105_bridge_vlan *v; 28465899ee36SVladimir Oltean 28475899ee36SVladimir Oltean list_for_each_entry(v, vlan_list, list) 28485899ee36SVladimir Oltean if (v->port == port && v->vid == vid && 28495899ee36SVladimir Oltean v->untagged == untagged && v->pvid == pvid) 28505899ee36SVladimir Oltean /* Already added */ 28515899ee36SVladimir Oltean return 0; 28525899ee36SVladimir Oltean 28535899ee36SVladimir Oltean v = kzalloc(sizeof(*v), GFP_KERNEL); 28545899ee36SVladimir Oltean if (!v) { 28555899ee36SVladimir Oltean dev_err(ds->dev, "Out of memory while storing VLAN\n"); 28565899ee36SVladimir Oltean return -ENOMEM; 28575899ee36SVladimir Oltean } 28585899ee36SVladimir Oltean 28595899ee36SVladimir Oltean v->port = port; 28605899ee36SVladimir Oltean v->vid = vid; 28615899ee36SVladimir Oltean v->untagged = untagged; 28625899ee36SVladimir Oltean v->pvid = pvid; 28635899ee36SVladimir Oltean list_add(&v->list, vlan_list); 28645899ee36SVladimir Oltean 28655899ee36SVladimir Oltean return 1; 28665899ee36SVladimir Oltean } 28675899ee36SVladimir Oltean 28685899ee36SVladimir Oltean /* Returns number of VLANs deleted (0 or 1) */ 28695899ee36SVladimir Oltean static int sja1105_vlan_del_one(struct dsa_switch *ds, int port, u16 vid, 28705899ee36SVladimir Oltean struct list_head *vlan_list) 28715899ee36SVladimir Oltean { 28725899ee36SVladimir Oltean struct sja1105_bridge_vlan *v, *n; 28735899ee36SVladimir Oltean 28745899ee36SVladimir Oltean list_for_each_entry_safe(v, n, vlan_list, list) { 28755899ee36SVladimir Oltean if (v->port == port && v->vid == vid) { 28765899ee36SVladimir Oltean list_del(&v->list); 28775899ee36SVladimir Oltean kfree(v); 28785899ee36SVladimir Oltean return 1; 28795899ee36SVladimir Oltean } 28805899ee36SVladimir Oltean } 28815899ee36SVladimir Oltean 28825899ee36SVladimir Oltean return 0; 28835899ee36SVladimir Oltean } 28845899ee36SVladimir Oltean 28851958d581SVladimir Oltean static int sja1105_vlan_add(struct dsa_switch *ds, int port, 288631046a5fSVladimir Oltean const struct switchdev_obj_port_vlan *vlan, 288731046a5fSVladimir Oltean struct netlink_ext_ack *extack) 28886666cebcSVladimir Oltean { 28896666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 2890ec5ae610SVladimir Oltean bool vlan_table_changed = false; 28916666cebcSVladimir Oltean int rc; 28926666cebcSVladimir Oltean 28931958d581SVladimir Oltean /* If the user wants best-effort VLAN filtering (aka vlan_filtering 28941958d581SVladimir Oltean * bridge plus tagging), be sure to at least deny alterations to the 28951958d581SVladimir Oltean * configuration done by dsa_8021q. 28961958d581SVladimir Oltean */ 28971958d581SVladimir Oltean if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL && 28981958d581SVladimir Oltean vid_is_dsa_8021q(vlan->vid)) { 289931046a5fSVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 290031046a5fSVladimir Oltean "Range 1024-3071 reserved for dsa_8021q operation"); 29011958d581SVladimir Oltean return -EBUSY; 29021958d581SVladimir Oltean } 29031958d581SVladimir Oltean 2904b7a9e0daSVladimir Oltean rc = sja1105_vlan_add_one(ds, port, vlan->vid, vlan->flags, 29055899ee36SVladimir Oltean &priv->bridge_vlans); 29065899ee36SVladimir Oltean if (rc < 0) 29071958d581SVladimir Oltean return rc; 29085899ee36SVladimir Oltean if (rc > 0) 2909ec5ae610SVladimir Oltean vlan_table_changed = true; 2910ec5ae610SVladimir Oltean 2911ec5ae610SVladimir Oltean if (!vlan_table_changed) 29121958d581SVladimir Oltean return 0; 2913ec5ae610SVladimir Oltean 29141958d581SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29156666cebcSVladimir Oltean } 29166666cebcSVladimir Oltean 29176666cebcSVladimir Oltean static int sja1105_vlan_del(struct dsa_switch *ds, int port, 29186666cebcSVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 29196666cebcSVladimir Oltean { 29206666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 2921ec5ae610SVladimir Oltean bool vlan_table_changed = false; 29225899ee36SVladimir Oltean int rc; 29236666cebcSVladimir Oltean 2924b7a9e0daSVladimir Oltean rc = sja1105_vlan_del_one(ds, port, vlan->vid, &priv->bridge_vlans); 29255899ee36SVladimir Oltean if (rc > 0) 2926ec5ae610SVladimir Oltean vlan_table_changed = true; 2927ec5ae610SVladimir Oltean 2928ec5ae610SVladimir Oltean if (!vlan_table_changed) 29296666cebcSVladimir Oltean return 0; 2930ec5ae610SVladimir Oltean 2931ec5ae610SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29326666cebcSVladimir Oltean } 29336666cebcSVladimir Oltean 29345899ee36SVladimir Oltean static int sja1105_dsa_8021q_vlan_add(struct dsa_switch *ds, int port, u16 vid, 29355899ee36SVladimir Oltean u16 flags) 29365899ee36SVladimir Oltean { 29375899ee36SVladimir Oltean struct sja1105_private *priv = ds->priv; 29385899ee36SVladimir Oltean int rc; 29395899ee36SVladimir Oltean 29405899ee36SVladimir Oltean rc = sja1105_vlan_add_one(ds, port, vid, flags, &priv->dsa_8021q_vlans); 29415899ee36SVladimir Oltean if (rc <= 0) 29425899ee36SVladimir Oltean return rc; 29435899ee36SVladimir Oltean 29445899ee36SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29455899ee36SVladimir Oltean } 29465899ee36SVladimir Oltean 29475899ee36SVladimir Oltean static int sja1105_dsa_8021q_vlan_del(struct dsa_switch *ds, int port, u16 vid) 29485899ee36SVladimir Oltean { 29495899ee36SVladimir Oltean struct sja1105_private *priv = ds->priv; 29505899ee36SVladimir Oltean int rc; 29515899ee36SVladimir Oltean 29525899ee36SVladimir Oltean rc = sja1105_vlan_del_one(ds, port, vid, &priv->dsa_8021q_vlans); 29535899ee36SVladimir Oltean if (!rc) 29545899ee36SVladimir Oltean return 0; 29555899ee36SVladimir Oltean 29565899ee36SVladimir Oltean return sja1105_build_vlan_table(priv, true); 29575899ee36SVladimir Oltean } 29585899ee36SVladimir Oltean 29595899ee36SVladimir Oltean static const struct dsa_8021q_ops sja1105_dsa_8021q_ops = { 29605899ee36SVladimir Oltean .vlan_add = sja1105_dsa_8021q_vlan_add, 29615899ee36SVladimir Oltean .vlan_del = sja1105_dsa_8021q_vlan_del, 29625899ee36SVladimir Oltean }; 29635899ee36SVladimir Oltean 29648aa9ebccSVladimir Oltean /* The programming model for the SJA1105 switch is "all-at-once" via static 29658aa9ebccSVladimir Oltean * configuration tables. Some of these can be dynamically modified at runtime, 29668aa9ebccSVladimir Oltean * but not the xMII mode parameters table. 29678aa9ebccSVladimir Oltean * Furthermode, some PHYs may not have crystals for generating their clocks 29688aa9ebccSVladimir Oltean * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's 29698aa9ebccSVladimir Oltean * ref_clk pin. So port clocking needs to be initialized early, before 29708aa9ebccSVladimir Oltean * connecting to PHYs is attempted, otherwise they won't respond through MDIO. 29718aa9ebccSVladimir Oltean * Setting correct PHY link speed does not matter now. 29728aa9ebccSVladimir Oltean * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY 29738aa9ebccSVladimir Oltean * bindings are not yet parsed by DSA core. We need to parse early so that we 29748aa9ebccSVladimir Oltean * can populate the xMII mode parameters table. 29758aa9ebccSVladimir Oltean */ 29768aa9ebccSVladimir Oltean static int sja1105_setup(struct dsa_switch *ds) 29778aa9ebccSVladimir Oltean { 2978*82760d7fSVladimir Oltean struct sja1105_dt_port ports[SJA1105_MAX_NUM_PORTS]; 29798aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 29808aa9ebccSVladimir Oltean int rc; 29818aa9ebccSVladimir Oltean 29828aa9ebccSVladimir Oltean rc = sja1105_parse_dt(priv, ports); 29838aa9ebccSVladimir Oltean if (rc < 0) { 29848aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to parse DT: %d\n", rc); 29858aa9ebccSVladimir Oltean return rc; 29868aa9ebccSVladimir Oltean } 2987f5b8631cSVladimir Oltean 2988f5b8631cSVladimir Oltean /* Error out early if internal delays are required through DT 2989f5b8631cSVladimir Oltean * and we can't apply them. 2990f5b8631cSVladimir Oltean */ 2991f5b8631cSVladimir Oltean rc = sja1105_parse_rgmii_delays(priv, ports); 2992f5b8631cSVladimir Oltean if (rc < 0) { 2993f5b8631cSVladimir Oltean dev_err(ds->dev, "RGMII delay not supported\n"); 2994f5b8631cSVladimir Oltean return rc; 2995f5b8631cSVladimir Oltean } 2996f5b8631cSVladimir Oltean 299761c77126SVladimir Oltean rc = sja1105_ptp_clock_register(ds); 2998bb77f36aSVladimir Oltean if (rc < 0) { 2999bb77f36aSVladimir Oltean dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc); 3000bb77f36aSVladimir Oltean return rc; 3001bb77f36aSVladimir Oltean } 30028aa9ebccSVladimir Oltean /* Create and send configuration down to device */ 30038aa9ebccSVladimir Oltean rc = sja1105_static_config_load(priv, ports); 30048aa9ebccSVladimir Oltean if (rc < 0) { 30058aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to load static config: %d\n", rc); 30068aa9ebccSVladimir Oltean return rc; 30078aa9ebccSVladimir Oltean } 30088aa9ebccSVladimir Oltean /* Configure the CGU (PHY link modes and speeds) */ 30098aa9ebccSVladimir Oltean rc = sja1105_clocking_setup(priv); 30108aa9ebccSVladimir Oltean if (rc < 0) { 30118aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to configure MII clocking: %d\n", rc); 30128aa9ebccSVladimir Oltean return rc; 30138aa9ebccSVladimir Oltean } 30146666cebcSVladimir Oltean /* On SJA1105, VLAN filtering per se is always enabled in hardware. 30156666cebcSVladimir Oltean * The only thing we can do to disable it is lie about what the 802.1Q 30166666cebcSVladimir Oltean * EtherType is. 30176666cebcSVladimir Oltean * So it will still try to apply VLAN filtering, but all ingress 30186666cebcSVladimir Oltean * traffic (except frames received with EtherType of ETH_P_SJA1105) 30196666cebcSVladimir Oltean * will be internally tagged with a distorted VLAN header where the 30206666cebcSVladimir Oltean * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid. 30216666cebcSVladimir Oltean */ 30226666cebcSVladimir Oltean ds->vlan_filtering_is_global = true; 30238aa9ebccSVladimir Oltean 30245f06c63bSVladimir Oltean /* Advertise the 8 egress queues */ 30255f06c63bSVladimir Oltean ds->num_tx_queues = SJA1105_NUM_TC; 30265f06c63bSVladimir Oltean 3027c279c726SVladimir Oltean ds->mtu_enforcement_ingress = true; 3028c279c726SVladimir Oltean 30298841f6e6SVladimir Oltean priv->best_effort_vlan_filtering = true; 30308841f6e6SVladimir Oltean 30310a7bdbc2SVladimir Oltean rc = sja1105_devlink_setup(ds); 30322cafa72eSVladimir Oltean if (rc < 0) 30332cafa72eSVladimir Oltean return rc; 30342cafa72eSVladimir Oltean 3035227d07a0SVladimir Oltean /* The DSA/switchdev model brings up switch ports in standalone mode by 3036227d07a0SVladimir Oltean * default, and that means vlan_filtering is 0 since they're not under 3037227d07a0SVladimir Oltean * a bridge, so it's safe to set up switch tagging at this time. 3038227d07a0SVladimir Oltean */ 3039bbed0bbdSVladimir Oltean rtnl_lock(); 3040bbed0bbdSVladimir Oltean rc = sja1105_setup_8021q_tagging(ds, true); 3041bbed0bbdSVladimir Oltean rtnl_unlock(); 3042bbed0bbdSVladimir Oltean 3043bbed0bbdSVladimir Oltean return rc; 3044227d07a0SVladimir Oltean } 3045227d07a0SVladimir Oltean 3046f3097be2SVladimir Oltean static void sja1105_teardown(struct dsa_switch *ds) 3047f3097be2SVladimir Oltean { 3048f3097be2SVladimir Oltean struct sja1105_private *priv = ds->priv; 3049ec5ae610SVladimir Oltean struct sja1105_bridge_vlan *v, *n; 3050a68578c2SVladimir Oltean int port; 3051a68578c2SVladimir Oltean 3052542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 3053a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3054a68578c2SVladimir Oltean 3055a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3056a68578c2SVladimir Oltean continue; 3057a68578c2SVladimir Oltean 305852c0d4e3SVladimir Oltean if (sp->xmit_worker) 3059a68578c2SVladimir Oltean kthread_destroy_worker(sp->xmit_worker); 3060a68578c2SVladimir Oltean } 3061f3097be2SVladimir Oltean 30620a7bdbc2SVladimir Oltean sja1105_devlink_teardown(ds); 3063a6af7763SVladimir Oltean sja1105_flower_teardown(ds); 3064317ab5b8SVladimir Oltean sja1105_tas_teardown(ds); 306561c77126SVladimir Oltean sja1105_ptp_clock_unregister(ds); 30666cb0abbdSVladimir Oltean sja1105_static_config_free(&priv->static_config); 3067ec5ae610SVladimir Oltean 3068ec5ae610SVladimir Oltean list_for_each_entry_safe(v, n, &priv->dsa_8021q_vlans, list) { 3069ec5ae610SVladimir Oltean list_del(&v->list); 3070ec5ae610SVladimir Oltean kfree(v); 3071ec5ae610SVladimir Oltean } 3072ec5ae610SVladimir Oltean 3073ec5ae610SVladimir Oltean list_for_each_entry_safe(v, n, &priv->bridge_vlans, list) { 3074ec5ae610SVladimir Oltean list_del(&v->list); 3075ec5ae610SVladimir Oltean kfree(v); 3076ec5ae610SVladimir Oltean } 3077f3097be2SVladimir Oltean } 3078f3097be2SVladimir Oltean 3079a68578c2SVladimir Oltean static void sja1105_port_disable(struct dsa_switch *ds, int port) 3080a68578c2SVladimir Oltean { 3081a68578c2SVladimir Oltean struct sja1105_private *priv = ds->priv; 3082a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3083a68578c2SVladimir Oltean 3084a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3085a68578c2SVladimir Oltean return; 3086a68578c2SVladimir Oltean 3087a68578c2SVladimir Oltean kthread_cancel_work_sync(&sp->xmit_work); 3088a68578c2SVladimir Oltean skb_queue_purge(&sp->xmit_queue); 3089a68578c2SVladimir Oltean } 3090a68578c2SVladimir Oltean 3091227d07a0SVladimir Oltean static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot, 309247ed985eSVladimir Oltean struct sk_buff *skb, bool takets) 3093227d07a0SVladimir Oltean { 3094227d07a0SVladimir Oltean struct sja1105_mgmt_entry mgmt_route = {0}; 3095227d07a0SVladimir Oltean struct sja1105_private *priv = ds->priv; 3096227d07a0SVladimir Oltean struct ethhdr *hdr; 3097227d07a0SVladimir Oltean int timeout = 10; 3098227d07a0SVladimir Oltean int rc; 3099227d07a0SVladimir Oltean 3100227d07a0SVladimir Oltean hdr = eth_hdr(skb); 3101227d07a0SVladimir Oltean 3102227d07a0SVladimir Oltean mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest); 3103227d07a0SVladimir Oltean mgmt_route.destports = BIT(port); 3104227d07a0SVladimir Oltean mgmt_route.enfport = 1; 310547ed985eSVladimir Oltean mgmt_route.tsreg = 0; 310647ed985eSVladimir Oltean mgmt_route.takets = takets; 3107227d07a0SVladimir Oltean 3108227d07a0SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 3109227d07a0SVladimir Oltean slot, &mgmt_route, true); 3110227d07a0SVladimir Oltean if (rc < 0) { 3111227d07a0SVladimir Oltean kfree_skb(skb); 3112227d07a0SVladimir Oltean return rc; 3113227d07a0SVladimir Oltean } 3114227d07a0SVladimir Oltean 3115227d07a0SVladimir Oltean /* Transfer skb to the host port. */ 311668bb8ea8SVivien Didelot dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave); 3117227d07a0SVladimir Oltean 3118227d07a0SVladimir Oltean /* Wait until the switch has processed the frame */ 3119227d07a0SVladimir Oltean do { 3120227d07a0SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE, 3121227d07a0SVladimir Oltean slot, &mgmt_route); 3122227d07a0SVladimir Oltean if (rc < 0) { 3123227d07a0SVladimir Oltean dev_err_ratelimited(priv->ds->dev, 3124227d07a0SVladimir Oltean "failed to poll for mgmt route\n"); 3125227d07a0SVladimir Oltean continue; 3126227d07a0SVladimir Oltean } 3127227d07a0SVladimir Oltean 3128227d07a0SVladimir Oltean /* UM10944: The ENFPORT flag of the respective entry is 3129227d07a0SVladimir Oltean * cleared when a match is found. The host can use this 3130227d07a0SVladimir Oltean * flag as an acknowledgment. 3131227d07a0SVladimir Oltean */ 3132227d07a0SVladimir Oltean cpu_relax(); 3133227d07a0SVladimir Oltean } while (mgmt_route.enfport && --timeout); 3134227d07a0SVladimir Oltean 3135227d07a0SVladimir Oltean if (!timeout) { 3136227d07a0SVladimir Oltean /* Clean up the management route so that a follow-up 3137227d07a0SVladimir Oltean * frame may not match on it by mistake. 31382a7e7409SVladimir Oltean * This is only hardware supported on P/Q/R/S - on E/T it is 31392a7e7409SVladimir Oltean * a no-op and we are silently discarding the -EOPNOTSUPP. 3140227d07a0SVladimir Oltean */ 3141227d07a0SVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 3142227d07a0SVladimir Oltean slot, &mgmt_route, false); 3143227d07a0SVladimir Oltean dev_err_ratelimited(priv->ds->dev, "xmit timed out\n"); 3144227d07a0SVladimir Oltean } 3145227d07a0SVladimir Oltean 3146227d07a0SVladimir Oltean return NETDEV_TX_OK; 3147227d07a0SVladimir Oltean } 3148227d07a0SVladimir Oltean 3149a68578c2SVladimir Oltean #define work_to_port(work) \ 3150a68578c2SVladimir Oltean container_of((work), struct sja1105_port, xmit_work) 3151a68578c2SVladimir Oltean #define tagger_to_sja1105(t) \ 3152a68578c2SVladimir Oltean container_of((t), struct sja1105_private, tagger_data) 3153a68578c2SVladimir Oltean 3154227d07a0SVladimir Oltean /* Deferred work is unfortunately necessary because setting up the management 3155227d07a0SVladimir Oltean * route cannot be done from atomit context (SPI transfer takes a sleepable 3156227d07a0SVladimir Oltean * lock on the bus) 3157227d07a0SVladimir Oltean */ 3158a68578c2SVladimir Oltean static void sja1105_port_deferred_xmit(struct kthread_work *work) 3159227d07a0SVladimir Oltean { 3160a68578c2SVladimir Oltean struct sja1105_port *sp = work_to_port(work); 3161a68578c2SVladimir Oltean struct sja1105_tagger_data *tagger_data = sp->data; 3162a68578c2SVladimir Oltean struct sja1105_private *priv = tagger_to_sja1105(tagger_data); 3163a68578c2SVladimir Oltean int port = sp - priv->ports; 3164a68578c2SVladimir Oltean struct sk_buff *skb; 3165a68578c2SVladimir Oltean 3166a68578c2SVladimir Oltean while ((skb = skb_dequeue(&sp->xmit_queue)) != NULL) { 3167c4b364ceSYangbo Lu struct sk_buff *clone = SJA1105_SKB_CB(skb)->clone; 3168227d07a0SVladimir Oltean 3169227d07a0SVladimir Oltean mutex_lock(&priv->mgmt_lock); 3170227d07a0SVladimir Oltean 3171a68578c2SVladimir Oltean sja1105_mgmt_xmit(priv->ds, port, 0, skb, !!clone); 3172a68578c2SVladimir Oltean 317347ed985eSVladimir Oltean /* The clone, if there, was made by dsa_skb_tx_timestamp */ 3174a68578c2SVladimir Oltean if (clone) 3175a68578c2SVladimir Oltean sja1105_ptp_txtstamp_skb(priv->ds, port, clone); 3176227d07a0SVladimir Oltean 3177227d07a0SVladimir Oltean mutex_unlock(&priv->mgmt_lock); 3178a68578c2SVladimir Oltean } 31798aa9ebccSVladimir Oltean } 31808aa9ebccSVladimir Oltean 31818456721dSVladimir Oltean /* The MAXAGE setting belongs to the L2 Forwarding Parameters table, 31828456721dSVladimir Oltean * which cannot be reconfigured at runtime. So a switch reset is required. 31838456721dSVladimir Oltean */ 31848456721dSVladimir Oltean static int sja1105_set_ageing_time(struct dsa_switch *ds, 31858456721dSVladimir Oltean unsigned int ageing_time) 31868456721dSVladimir Oltean { 31878456721dSVladimir Oltean struct sja1105_l2_lookup_params_entry *l2_lookup_params; 31888456721dSVladimir Oltean struct sja1105_private *priv = ds->priv; 31898456721dSVladimir Oltean struct sja1105_table *table; 31908456721dSVladimir Oltean unsigned int maxage; 31918456721dSVladimir Oltean 31928456721dSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 31938456721dSVladimir Oltean l2_lookup_params = table->entries; 31948456721dSVladimir Oltean 31958456721dSVladimir Oltean maxage = SJA1105_AGEING_TIME_MS(ageing_time); 31968456721dSVladimir Oltean 31978456721dSVladimir Oltean if (l2_lookup_params->maxage == maxage) 31988456721dSVladimir Oltean return 0; 31998456721dSVladimir Oltean 32008456721dSVladimir Oltean l2_lookup_params->maxage = maxage; 32018456721dSVladimir Oltean 32022eea1fa8SVladimir Oltean return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME); 32038456721dSVladimir Oltean } 32048456721dSVladimir Oltean 3205c279c726SVladimir Oltean static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu) 3206c279c726SVladimir Oltean { 3207c279c726SVladimir Oltean struct sja1105_l2_policing_entry *policing; 3208c279c726SVladimir Oltean struct sja1105_private *priv = ds->priv; 3209c279c726SVladimir Oltean 3210c279c726SVladimir Oltean new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN; 3211c279c726SVladimir Oltean 3212c279c726SVladimir Oltean if (dsa_is_cpu_port(ds, port)) 3213c279c726SVladimir Oltean new_mtu += VLAN_HLEN; 3214c279c726SVladimir Oltean 3215c279c726SVladimir Oltean policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3216c279c726SVladimir Oltean 3217a7cc081cSVladimir Oltean if (policing[port].maxlen == new_mtu) 3218c279c726SVladimir Oltean return 0; 3219c279c726SVladimir Oltean 3220a7cc081cSVladimir Oltean policing[port].maxlen = new_mtu; 3221c279c726SVladimir Oltean 3222c279c726SVladimir Oltean return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3223c279c726SVladimir Oltean } 3224c279c726SVladimir Oltean 3225c279c726SVladimir Oltean static int sja1105_get_max_mtu(struct dsa_switch *ds, int port) 3226c279c726SVladimir Oltean { 3227c279c726SVladimir Oltean return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN; 3228c279c726SVladimir Oltean } 3229c279c726SVladimir Oltean 3230317ab5b8SVladimir Oltean static int sja1105_port_setup_tc(struct dsa_switch *ds, int port, 3231317ab5b8SVladimir Oltean enum tc_setup_type type, 3232317ab5b8SVladimir Oltean void *type_data) 3233317ab5b8SVladimir Oltean { 3234317ab5b8SVladimir Oltean switch (type) { 3235317ab5b8SVladimir Oltean case TC_SETUP_QDISC_TAPRIO: 3236317ab5b8SVladimir Oltean return sja1105_setup_tc_taprio(ds, port, type_data); 32374d752508SVladimir Oltean case TC_SETUP_QDISC_CBS: 32384d752508SVladimir Oltean return sja1105_setup_tc_cbs(ds, port, type_data); 3239317ab5b8SVladimir Oltean default: 3240317ab5b8SVladimir Oltean return -EOPNOTSUPP; 3241317ab5b8SVladimir Oltean } 3242317ab5b8SVladimir Oltean } 3243317ab5b8SVladimir Oltean 3244511e6ca0SVladimir Oltean /* We have a single mirror (@to) port, but can configure ingress and egress 3245511e6ca0SVladimir Oltean * mirroring on all other (@from) ports. 3246511e6ca0SVladimir Oltean * We need to allow mirroring rules only as long as the @to port is always the 3247511e6ca0SVladimir Oltean * same, and we need to unset the @to port from mirr_port only when there is no 3248511e6ca0SVladimir Oltean * mirroring rule that references it. 3249511e6ca0SVladimir Oltean */ 3250511e6ca0SVladimir Oltean static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to, 3251511e6ca0SVladimir Oltean bool ingress, bool enabled) 3252511e6ca0SVladimir Oltean { 3253511e6ca0SVladimir Oltean struct sja1105_general_params_entry *general_params; 3254511e6ca0SVladimir Oltean struct sja1105_mac_config_entry *mac; 3255542043e9SVladimir Oltean struct dsa_switch *ds = priv->ds; 3256511e6ca0SVladimir Oltean struct sja1105_table *table; 3257511e6ca0SVladimir Oltean bool already_enabled; 3258511e6ca0SVladimir Oltean u64 new_mirr_port; 3259511e6ca0SVladimir Oltean int rc; 3260511e6ca0SVladimir Oltean 3261511e6ca0SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 3262511e6ca0SVladimir Oltean general_params = table->entries; 3263511e6ca0SVladimir Oltean 3264511e6ca0SVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 3265511e6ca0SVladimir Oltean 3266542043e9SVladimir Oltean already_enabled = (general_params->mirr_port != ds->num_ports); 3267511e6ca0SVladimir Oltean if (already_enabled && enabled && general_params->mirr_port != to) { 3268511e6ca0SVladimir Oltean dev_err(priv->ds->dev, 3269511e6ca0SVladimir Oltean "Delete mirroring rules towards port %llu first\n", 3270511e6ca0SVladimir Oltean general_params->mirr_port); 3271511e6ca0SVladimir Oltean return -EBUSY; 3272511e6ca0SVladimir Oltean } 3273511e6ca0SVladimir Oltean 3274511e6ca0SVladimir Oltean new_mirr_port = to; 3275511e6ca0SVladimir Oltean if (!enabled) { 3276511e6ca0SVladimir Oltean bool keep = false; 3277511e6ca0SVladimir Oltean int port; 3278511e6ca0SVladimir Oltean 3279511e6ca0SVladimir Oltean /* Anybody still referencing mirr_port? */ 3280542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 3281511e6ca0SVladimir Oltean if (mac[port].ing_mirr || mac[port].egr_mirr) { 3282511e6ca0SVladimir Oltean keep = true; 3283511e6ca0SVladimir Oltean break; 3284511e6ca0SVladimir Oltean } 3285511e6ca0SVladimir Oltean } 3286511e6ca0SVladimir Oltean /* Unset already_enabled for next time */ 3287511e6ca0SVladimir Oltean if (!keep) 3288542043e9SVladimir Oltean new_mirr_port = ds->num_ports; 3289511e6ca0SVladimir Oltean } 3290511e6ca0SVladimir Oltean if (new_mirr_port != general_params->mirr_port) { 3291511e6ca0SVladimir Oltean general_params->mirr_port = new_mirr_port; 3292511e6ca0SVladimir Oltean 3293511e6ca0SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS, 3294511e6ca0SVladimir Oltean 0, general_params, true); 3295511e6ca0SVladimir Oltean if (rc < 0) 3296511e6ca0SVladimir Oltean return rc; 3297511e6ca0SVladimir Oltean } 3298511e6ca0SVladimir Oltean 3299511e6ca0SVladimir Oltean if (ingress) 3300511e6ca0SVladimir Oltean mac[from].ing_mirr = enabled; 3301511e6ca0SVladimir Oltean else 3302511e6ca0SVladimir Oltean mac[from].egr_mirr = enabled; 3303511e6ca0SVladimir Oltean 3304511e6ca0SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from, 3305511e6ca0SVladimir Oltean &mac[from], true); 3306511e6ca0SVladimir Oltean } 3307511e6ca0SVladimir Oltean 3308511e6ca0SVladimir Oltean static int sja1105_mirror_add(struct dsa_switch *ds, int port, 3309511e6ca0SVladimir Oltean struct dsa_mall_mirror_tc_entry *mirror, 3310511e6ca0SVladimir Oltean bool ingress) 3311511e6ca0SVladimir Oltean { 3312511e6ca0SVladimir Oltean return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port, 3313511e6ca0SVladimir Oltean ingress, true); 3314511e6ca0SVladimir Oltean } 3315511e6ca0SVladimir Oltean 3316511e6ca0SVladimir Oltean static void sja1105_mirror_del(struct dsa_switch *ds, int port, 3317511e6ca0SVladimir Oltean struct dsa_mall_mirror_tc_entry *mirror) 3318511e6ca0SVladimir Oltean { 3319511e6ca0SVladimir Oltean sja1105_mirror_apply(ds->priv, port, mirror->to_local_port, 3320511e6ca0SVladimir Oltean mirror->ingress, false); 3321511e6ca0SVladimir Oltean } 3322511e6ca0SVladimir Oltean 3323a7cc081cSVladimir Oltean static int sja1105_port_policer_add(struct dsa_switch *ds, int port, 3324a7cc081cSVladimir Oltean struct dsa_mall_policer_tc_entry *policer) 3325a7cc081cSVladimir Oltean { 3326a7cc081cSVladimir Oltean struct sja1105_l2_policing_entry *policing; 3327a7cc081cSVladimir Oltean struct sja1105_private *priv = ds->priv; 3328a7cc081cSVladimir Oltean 3329a7cc081cSVladimir Oltean policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3330a7cc081cSVladimir Oltean 3331a7cc081cSVladimir Oltean /* In hardware, every 8 microseconds the credit level is incremented by 3332a7cc081cSVladimir Oltean * the value of RATE bytes divided by 64, up to a maximum of SMAX 3333a7cc081cSVladimir Oltean * bytes. 3334a7cc081cSVladimir Oltean */ 3335a7cc081cSVladimir Oltean policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec, 3336a7cc081cSVladimir Oltean 1000000); 33375f035af7SPo Liu policing[port].smax = policer->burst; 3338a7cc081cSVladimir Oltean 3339a7cc081cSVladimir Oltean return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3340a7cc081cSVladimir Oltean } 3341a7cc081cSVladimir Oltean 3342a7cc081cSVladimir Oltean static void sja1105_port_policer_del(struct dsa_switch *ds, int port) 3343a7cc081cSVladimir Oltean { 3344a7cc081cSVladimir Oltean struct sja1105_l2_policing_entry *policing; 3345a7cc081cSVladimir Oltean struct sja1105_private *priv = ds->priv; 3346a7cc081cSVladimir Oltean 3347a7cc081cSVladimir Oltean policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3348a7cc081cSVladimir Oltean 3349a7cc081cSVladimir Oltean policing[port].rate = SJA1105_RATE_MBPS(1000); 3350a7cc081cSVladimir Oltean policing[port].smax = 65535; 3351a7cc081cSVladimir Oltean 3352a7cc081cSVladimir Oltean sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3353a7cc081cSVladimir Oltean } 3354a7cc081cSVladimir Oltean 33554d942354SVladimir Oltean static int sja1105_port_set_learning(struct sja1105_private *priv, int port, 33564d942354SVladimir Oltean bool enabled) 33574d942354SVladimir Oltean { 33584d942354SVladimir Oltean struct sja1105_mac_config_entry *mac; 33594d942354SVladimir Oltean int rc; 33604d942354SVladimir Oltean 33614d942354SVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 33624d942354SVladimir Oltean 33634c44fc5eSVladimir Oltean mac[port].dyn_learn = enabled; 33644d942354SVladimir Oltean 33654d942354SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 33664d942354SVladimir Oltean &mac[port], true); 33674d942354SVladimir Oltean if (rc) 33684d942354SVladimir Oltean return rc; 33694d942354SVladimir Oltean 33704d942354SVladimir Oltean if (enabled) 33714d942354SVladimir Oltean priv->learn_ena |= BIT(port); 33724d942354SVladimir Oltean else 33734d942354SVladimir Oltean priv->learn_ena &= ~BIT(port); 33744d942354SVladimir Oltean 33754d942354SVladimir Oltean return 0; 33764d942354SVladimir Oltean } 33774d942354SVladimir Oltean 33784d942354SVladimir Oltean static int sja1105_port_ucast_bcast_flood(struct sja1105_private *priv, int to, 33794d942354SVladimir Oltean struct switchdev_brport_flags flags) 33804d942354SVladimir Oltean { 33814d942354SVladimir Oltean if (flags.mask & BR_FLOOD) { 33824d942354SVladimir Oltean if (flags.val & BR_FLOOD) 33837f7ccdeaSVladimir Oltean priv->ucast_egress_floods |= BIT(to); 33844d942354SVladimir Oltean else 33856a5166e0SVladimir Oltean priv->ucast_egress_floods &= ~BIT(to); 33864d942354SVladimir Oltean } 33877f7ccdeaSVladimir Oltean 33884d942354SVladimir Oltean if (flags.mask & BR_BCAST_FLOOD) { 33894d942354SVladimir Oltean if (flags.val & BR_BCAST_FLOOD) 33907f7ccdeaSVladimir Oltean priv->bcast_egress_floods |= BIT(to); 33914d942354SVladimir Oltean else 33926a5166e0SVladimir Oltean priv->bcast_egress_floods &= ~BIT(to); 33934d942354SVladimir Oltean } 33944d942354SVladimir Oltean 33957f7ccdeaSVladimir Oltean return sja1105_manage_flood_domains(priv); 33964d942354SVladimir Oltean } 33974d942354SVladimir Oltean 33984d942354SVladimir Oltean static int sja1105_port_mcast_flood(struct sja1105_private *priv, int to, 33994d942354SVladimir Oltean struct switchdev_brport_flags flags, 34004d942354SVladimir Oltean struct netlink_ext_ack *extack) 34014d942354SVladimir Oltean { 34024d942354SVladimir Oltean struct sja1105_l2_lookup_entry *l2_lookup; 34034d942354SVladimir Oltean struct sja1105_table *table; 34044d942354SVladimir Oltean int match; 34054d942354SVladimir Oltean 34064d942354SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 34074d942354SVladimir Oltean l2_lookup = table->entries; 34084d942354SVladimir Oltean 34094d942354SVladimir Oltean for (match = 0; match < table->entry_count; match++) 34104d942354SVladimir Oltean if (l2_lookup[match].macaddr == SJA1105_UNKNOWN_MULTICAST && 34114d942354SVladimir Oltean l2_lookup[match].mask_macaddr == SJA1105_UNKNOWN_MULTICAST) 34124d942354SVladimir Oltean break; 34134d942354SVladimir Oltean 34144d942354SVladimir Oltean if (match == table->entry_count) { 34154d942354SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 34164d942354SVladimir Oltean "Could not find FDB entry for unknown multicast"); 34174d942354SVladimir Oltean return -ENOSPC; 34184d942354SVladimir Oltean } 34194d942354SVladimir Oltean 34204d942354SVladimir Oltean if (flags.val & BR_MCAST_FLOOD) 34214d942354SVladimir Oltean l2_lookup[match].destports |= BIT(to); 34224d942354SVladimir Oltean else 34234d942354SVladimir Oltean l2_lookup[match].destports &= ~BIT(to); 34244d942354SVladimir Oltean 34254d942354SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 34264d942354SVladimir Oltean l2_lookup[match].index, 34274d942354SVladimir Oltean &l2_lookup[match], 34284d942354SVladimir Oltean true); 34294d942354SVladimir Oltean } 34304d942354SVladimir Oltean 34314d942354SVladimir Oltean static int sja1105_port_pre_bridge_flags(struct dsa_switch *ds, int port, 34324d942354SVladimir Oltean struct switchdev_brport_flags flags, 34334d942354SVladimir Oltean struct netlink_ext_ack *extack) 34344d942354SVladimir Oltean { 34354d942354SVladimir Oltean struct sja1105_private *priv = ds->priv; 34364d942354SVladimir Oltean 34374d942354SVladimir Oltean if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD | 34384d942354SVladimir Oltean BR_BCAST_FLOOD)) 34394d942354SVladimir Oltean return -EINVAL; 34404d942354SVladimir Oltean 34414d942354SVladimir Oltean if (flags.mask & (BR_FLOOD | BR_MCAST_FLOOD) && 34424d942354SVladimir Oltean !priv->info->can_limit_mcast_flood) { 34434d942354SVladimir Oltean bool multicast = !!(flags.val & BR_MCAST_FLOOD); 34444d942354SVladimir Oltean bool unicast = !!(flags.val & BR_FLOOD); 34454d942354SVladimir Oltean 34464d942354SVladimir Oltean if (unicast != multicast) { 34474d942354SVladimir Oltean NL_SET_ERR_MSG_MOD(extack, 34484d942354SVladimir Oltean "This chip cannot configure multicast flooding independently of unicast"); 34494d942354SVladimir Oltean return -EINVAL; 34504d942354SVladimir Oltean } 34514d942354SVladimir Oltean } 34524d942354SVladimir Oltean 34534d942354SVladimir Oltean return 0; 34544d942354SVladimir Oltean } 34554d942354SVladimir Oltean 34564d942354SVladimir Oltean static int sja1105_port_bridge_flags(struct dsa_switch *ds, int port, 34574d942354SVladimir Oltean struct switchdev_brport_flags flags, 34584d942354SVladimir Oltean struct netlink_ext_ack *extack) 34594d942354SVladimir Oltean { 34604d942354SVladimir Oltean struct sja1105_private *priv = ds->priv; 34614d942354SVladimir Oltean int rc; 34624d942354SVladimir Oltean 34634d942354SVladimir Oltean if (flags.mask & BR_LEARNING) { 34644d942354SVladimir Oltean bool learn_ena = !!(flags.val & BR_LEARNING); 34654d942354SVladimir Oltean 34664d942354SVladimir Oltean rc = sja1105_port_set_learning(priv, port, learn_ena); 34674d942354SVladimir Oltean if (rc) 34684d942354SVladimir Oltean return rc; 34694d942354SVladimir Oltean } 34704d942354SVladimir Oltean 34714d942354SVladimir Oltean if (flags.mask & (BR_FLOOD | BR_BCAST_FLOOD)) { 34724d942354SVladimir Oltean rc = sja1105_port_ucast_bcast_flood(priv, port, flags); 34734d942354SVladimir Oltean if (rc) 34744d942354SVladimir Oltean return rc; 34754d942354SVladimir Oltean } 34764d942354SVladimir Oltean 34774d942354SVladimir Oltean /* For chips that can't offload BR_MCAST_FLOOD independently, there 34784d942354SVladimir Oltean * is nothing to do here, we ensured the configuration is in sync by 34794d942354SVladimir Oltean * offloading BR_FLOOD. 34804d942354SVladimir Oltean */ 34814d942354SVladimir Oltean if (flags.mask & BR_MCAST_FLOOD && priv->info->can_limit_mcast_flood) { 34824d942354SVladimir Oltean rc = sja1105_port_mcast_flood(priv, port, flags, 34834d942354SVladimir Oltean extack); 34844d942354SVladimir Oltean if (rc) 34854d942354SVladimir Oltean return rc; 34864d942354SVladimir Oltean } 34874d942354SVladimir Oltean 34884d942354SVladimir Oltean return 0; 34894d942354SVladimir Oltean } 34904d942354SVladimir Oltean 34918aa9ebccSVladimir Oltean static const struct dsa_switch_ops sja1105_switch_ops = { 34928aa9ebccSVladimir Oltean .get_tag_protocol = sja1105_get_tag_protocol, 34938aa9ebccSVladimir Oltean .setup = sja1105_setup, 3494f3097be2SVladimir Oltean .teardown = sja1105_teardown, 34958456721dSVladimir Oltean .set_ageing_time = sja1105_set_ageing_time, 3496c279c726SVladimir Oltean .port_change_mtu = sja1105_change_mtu, 3497c279c726SVladimir Oltean .port_max_mtu = sja1105_get_max_mtu, 3498ad9f299aSVladimir Oltean .phylink_validate = sja1105_phylink_validate, 3499ffe10e67SVladimir Oltean .phylink_mac_link_state = sja1105_mac_pcs_get_state, 3500af7cd036SVladimir Oltean .phylink_mac_config = sja1105_mac_config, 35018400cff6SVladimir Oltean .phylink_mac_link_up = sja1105_mac_link_up, 35028400cff6SVladimir Oltean .phylink_mac_link_down = sja1105_mac_link_down, 350352c34e6eSVladimir Oltean .get_strings = sja1105_get_strings, 350452c34e6eSVladimir Oltean .get_ethtool_stats = sja1105_get_ethtool_stats, 350552c34e6eSVladimir Oltean .get_sset_count = sja1105_get_sset_count, 3506bb77f36aSVladimir Oltean .get_ts_info = sja1105_get_ts_info, 3507a68578c2SVladimir Oltean .port_disable = sja1105_port_disable, 3508291d1e72SVladimir Oltean .port_fdb_dump = sja1105_fdb_dump, 3509291d1e72SVladimir Oltean .port_fdb_add = sja1105_fdb_add, 3510291d1e72SVladimir Oltean .port_fdb_del = sja1105_fdb_del, 35118aa9ebccSVladimir Oltean .port_bridge_join = sja1105_bridge_join, 35128aa9ebccSVladimir Oltean .port_bridge_leave = sja1105_bridge_leave, 35134d942354SVladimir Oltean .port_pre_bridge_flags = sja1105_port_pre_bridge_flags, 35144d942354SVladimir Oltean .port_bridge_flags = sja1105_port_bridge_flags, 3515640f763fSVladimir Oltean .port_stp_state_set = sja1105_bridge_stp_state_set, 35166666cebcSVladimir Oltean .port_vlan_filtering = sja1105_vlan_filtering, 35176666cebcSVladimir Oltean .port_vlan_add = sja1105_vlan_add, 35186666cebcSVladimir Oltean .port_vlan_del = sja1105_vlan_del, 3519291d1e72SVladimir Oltean .port_mdb_add = sja1105_mdb_add, 3520291d1e72SVladimir Oltean .port_mdb_del = sja1105_mdb_del, 3521a602afd2SVladimir Oltean .port_hwtstamp_get = sja1105_hwtstamp_get, 3522a602afd2SVladimir Oltean .port_hwtstamp_set = sja1105_hwtstamp_set, 3523f3097be2SVladimir Oltean .port_rxtstamp = sja1105_port_rxtstamp, 352447ed985eSVladimir Oltean .port_txtstamp = sja1105_port_txtstamp, 3525317ab5b8SVladimir Oltean .port_setup_tc = sja1105_port_setup_tc, 3526511e6ca0SVladimir Oltean .port_mirror_add = sja1105_mirror_add, 3527511e6ca0SVladimir Oltean .port_mirror_del = sja1105_mirror_del, 3528a7cc081cSVladimir Oltean .port_policer_add = sja1105_port_policer_add, 3529a7cc081cSVladimir Oltean .port_policer_del = sja1105_port_policer_del, 3530a6af7763SVladimir Oltean .cls_flower_add = sja1105_cls_flower_add, 3531a6af7763SVladimir Oltean .cls_flower_del = sja1105_cls_flower_del, 3532834f8933SVladimir Oltean .cls_flower_stats = sja1105_cls_flower_stats, 3533ac02a451SVladimir Oltean .crosschip_bridge_join = sja1105_crosschip_bridge_join, 3534ac02a451SVladimir Oltean .crosschip_bridge_leave = sja1105_crosschip_bridge_leave, 35352cafa72eSVladimir Oltean .devlink_param_get = sja1105_devlink_param_get, 35362cafa72eSVladimir Oltean .devlink_param_set = sja1105_devlink_param_set, 3537ff4cf8eaSVladimir Oltean .devlink_info_get = sja1105_devlink_info_get, 35388aa9ebccSVladimir Oltean }; 35398aa9ebccSVladimir Oltean 35400b0e2997SVladimir Oltean static const struct of_device_id sja1105_dt_ids[]; 35410b0e2997SVladimir Oltean 35428aa9ebccSVladimir Oltean static int sja1105_check_device_id(struct sja1105_private *priv) 35438aa9ebccSVladimir Oltean { 35448aa9ebccSVladimir Oltean const struct sja1105_regs *regs = priv->info->regs; 35458aa9ebccSVladimir Oltean u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0}; 35468aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 35470b0e2997SVladimir Oltean const struct of_device_id *match; 3548dff79620SVladimir Oltean u32 device_id; 35498aa9ebccSVladimir Oltean u64 part_no; 35508aa9ebccSVladimir Oltean int rc; 35518aa9ebccSVladimir Oltean 355234d76e9fSVladimir Oltean rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id, 355334d76e9fSVladimir Oltean NULL); 35548aa9ebccSVladimir Oltean if (rc < 0) 35558aa9ebccSVladimir Oltean return rc; 35568aa9ebccSVladimir Oltean 35571bd44870SVladimir Oltean rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id, 35581bd44870SVladimir Oltean SJA1105_SIZE_DEVICE_ID); 35598aa9ebccSVladimir Oltean if (rc < 0) 35608aa9ebccSVladimir Oltean return rc; 35618aa9ebccSVladimir Oltean 35628aa9ebccSVladimir Oltean sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID); 35638aa9ebccSVladimir Oltean 35645978fac0SNathan Chancellor for (match = sja1105_dt_ids; match->compatible[0]; match++) { 35650b0e2997SVladimir Oltean const struct sja1105_info *info = match->data; 35660b0e2997SVladimir Oltean 35670b0e2997SVladimir Oltean /* Is what's been probed in our match table at all? */ 35680b0e2997SVladimir Oltean if (info->device_id != device_id || info->part_no != part_no) 35690b0e2997SVladimir Oltean continue; 35700b0e2997SVladimir Oltean 35710b0e2997SVladimir Oltean /* But is it what's in the device tree? */ 35720b0e2997SVladimir Oltean if (priv->info->device_id != device_id || 35730b0e2997SVladimir Oltean priv->info->part_no != part_no) { 35740b0e2997SVladimir Oltean dev_warn(dev, "Device tree specifies chip %s but found %s, please fix it!\n", 35750b0e2997SVladimir Oltean priv->info->name, info->name); 35760b0e2997SVladimir Oltean /* It isn't. No problem, pick that up. */ 35770b0e2997SVladimir Oltean priv->info = info; 35788aa9ebccSVladimir Oltean } 35798aa9ebccSVladimir Oltean 35808aa9ebccSVladimir Oltean return 0; 35818aa9ebccSVladimir Oltean } 35828aa9ebccSVladimir Oltean 35830b0e2997SVladimir Oltean dev_err(dev, "Unexpected {device ID, part number}: 0x%x 0x%llx\n", 35840b0e2997SVladimir Oltean device_id, part_no); 35850b0e2997SVladimir Oltean 35860b0e2997SVladimir Oltean return -ENODEV; 35870b0e2997SVladimir Oltean } 35880b0e2997SVladimir Oltean 35898aa9ebccSVladimir Oltean static int sja1105_probe(struct spi_device *spi) 35908aa9ebccSVladimir Oltean { 3591844d7edcSVladimir Oltean struct sja1105_tagger_data *tagger_data; 35928aa9ebccSVladimir Oltean struct device *dev = &spi->dev; 35938aa9ebccSVladimir Oltean struct sja1105_private *priv; 3594718bad0eSVladimir Oltean size_t max_xfer, max_msg; 35958aa9ebccSVladimir Oltean struct dsa_switch *ds; 3596a68578c2SVladimir Oltean int rc, port; 35978aa9ebccSVladimir Oltean 35988aa9ebccSVladimir Oltean if (!dev->of_node) { 35998aa9ebccSVladimir Oltean dev_err(dev, "No DTS bindings for SJA1105 driver\n"); 36008aa9ebccSVladimir Oltean return -EINVAL; 36018aa9ebccSVladimir Oltean } 36028aa9ebccSVladimir Oltean 36038aa9ebccSVladimir Oltean priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL); 36048aa9ebccSVladimir Oltean if (!priv) 36058aa9ebccSVladimir Oltean return -ENOMEM; 36068aa9ebccSVladimir Oltean 36078aa9ebccSVladimir Oltean /* Configure the optional reset pin and bring up switch */ 36088aa9ebccSVladimir Oltean priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); 36098aa9ebccSVladimir Oltean if (IS_ERR(priv->reset_gpio)) 36108aa9ebccSVladimir Oltean dev_dbg(dev, "reset-gpios not defined, ignoring\n"); 36118aa9ebccSVladimir Oltean else 36128aa9ebccSVladimir Oltean sja1105_hw_reset(priv->reset_gpio, 1, 1); 36138aa9ebccSVladimir Oltean 36148aa9ebccSVladimir Oltean /* Populate our driver private structure (priv) based on 36158aa9ebccSVladimir Oltean * the device tree node that was probed (spi) 36168aa9ebccSVladimir Oltean */ 36178aa9ebccSVladimir Oltean priv->spidev = spi; 36188aa9ebccSVladimir Oltean spi_set_drvdata(spi, priv); 36198aa9ebccSVladimir Oltean 36208aa9ebccSVladimir Oltean /* Configure the SPI bus */ 36218aa9ebccSVladimir Oltean spi->bits_per_word = 8; 36228aa9ebccSVladimir Oltean rc = spi_setup(spi); 36238aa9ebccSVladimir Oltean if (rc < 0) { 36248aa9ebccSVladimir Oltean dev_err(dev, "Could not init SPI\n"); 36258aa9ebccSVladimir Oltean return rc; 36268aa9ebccSVladimir Oltean } 36278aa9ebccSVladimir Oltean 3628718bad0eSVladimir Oltean /* In sja1105_xfer, we send spi_messages composed of two spi_transfers: 3629718bad0eSVladimir Oltean * a small one for the message header and another one for the current 3630718bad0eSVladimir Oltean * chunk of the packed buffer. 3631718bad0eSVladimir Oltean * Check that the restrictions imposed by the SPI controller are 3632718bad0eSVladimir Oltean * respected: the chunk buffer is smaller than the max transfer size, 3633718bad0eSVladimir Oltean * and the total length of the chunk plus its message header is smaller 3634718bad0eSVladimir Oltean * than the max message size. 3635718bad0eSVladimir Oltean * We do that during probe time since the maximum transfer size is a 3636718bad0eSVladimir Oltean * runtime invariant. 3637718bad0eSVladimir Oltean */ 3638718bad0eSVladimir Oltean max_xfer = spi_max_transfer_size(spi); 3639718bad0eSVladimir Oltean max_msg = spi_max_message_size(spi); 3640718bad0eSVladimir Oltean 3641718bad0eSVladimir Oltean /* We need to send at least one 64-bit word of SPI payload per message 3642718bad0eSVladimir Oltean * in order to be able to make useful progress. 3643718bad0eSVladimir Oltean */ 3644718bad0eSVladimir Oltean if (max_msg < SJA1105_SIZE_SPI_MSG_HEADER + 8) { 3645718bad0eSVladimir Oltean dev_err(dev, "SPI master cannot send large enough buffers, aborting\n"); 3646718bad0eSVladimir Oltean return -EINVAL; 3647718bad0eSVladimir Oltean } 3648718bad0eSVladimir Oltean 3649718bad0eSVladimir Oltean priv->max_xfer_len = SJA1105_SIZE_SPI_MSG_MAXLEN; 3650718bad0eSVladimir Oltean if (priv->max_xfer_len > max_xfer) 3651718bad0eSVladimir Oltean priv->max_xfer_len = max_xfer; 3652718bad0eSVladimir Oltean if (priv->max_xfer_len > max_msg - SJA1105_SIZE_SPI_MSG_HEADER) 3653718bad0eSVladimir Oltean priv->max_xfer_len = max_msg - SJA1105_SIZE_SPI_MSG_HEADER; 3654718bad0eSVladimir Oltean 36558aa9ebccSVladimir Oltean priv->info = of_device_get_match_data(dev); 36568aa9ebccSVladimir Oltean 36578aa9ebccSVladimir Oltean /* Detect hardware device */ 36588aa9ebccSVladimir Oltean rc = sja1105_check_device_id(priv); 36598aa9ebccSVladimir Oltean if (rc < 0) { 36608aa9ebccSVladimir Oltean dev_err(dev, "Device ID check failed: %d\n", rc); 36618aa9ebccSVladimir Oltean return rc; 36628aa9ebccSVladimir Oltean } 36638aa9ebccSVladimir Oltean 36648aa9ebccSVladimir Oltean dev_info(dev, "Probed switch chip: %s\n", priv->info->name); 36658aa9ebccSVladimir Oltean 36667e99e347SVivien Didelot ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL); 36678aa9ebccSVladimir Oltean if (!ds) 36688aa9ebccSVladimir Oltean return -ENOMEM; 36698aa9ebccSVladimir Oltean 36707e99e347SVivien Didelot ds->dev = dev; 3671*82760d7fSVladimir Oltean ds->num_ports = SJA1105_MAX_NUM_PORTS; 36728aa9ebccSVladimir Oltean ds->ops = &sja1105_switch_ops; 36738aa9ebccSVladimir Oltean ds->priv = priv; 36748aa9ebccSVladimir Oltean priv->ds = ds; 36758aa9ebccSVladimir Oltean 3676844d7edcSVladimir Oltean tagger_data = &priv->tagger_data; 3677844d7edcSVladimir Oltean 3678d5a619bfSVivien Didelot mutex_init(&priv->ptp_data.lock); 3679d5a619bfSVivien Didelot mutex_init(&priv->mgmt_lock); 3680d5a619bfSVivien Didelot 36815899ee36SVladimir Oltean priv->dsa_8021q_ctx = devm_kzalloc(dev, sizeof(*priv->dsa_8021q_ctx), 36825899ee36SVladimir Oltean GFP_KERNEL); 36835899ee36SVladimir Oltean if (!priv->dsa_8021q_ctx) 36845899ee36SVladimir Oltean return -ENOMEM; 36855899ee36SVladimir Oltean 36865899ee36SVladimir Oltean priv->dsa_8021q_ctx->ops = &sja1105_dsa_8021q_ops; 3687bbed0bbdSVladimir Oltean priv->dsa_8021q_ctx->proto = htons(ETH_P_8021Q); 36885899ee36SVladimir Oltean priv->dsa_8021q_ctx->ds = ds; 36895899ee36SVladimir Oltean 36905899ee36SVladimir Oltean INIT_LIST_HEAD(&priv->dsa_8021q_ctx->crosschip_links); 3691ec5ae610SVladimir Oltean INIT_LIST_HEAD(&priv->bridge_vlans); 3692ec5ae610SVladimir Oltean INIT_LIST_HEAD(&priv->dsa_8021q_vlans); 3693ac02a451SVladimir Oltean 3694d5a619bfSVivien Didelot sja1105_tas_setup(ds); 3695a6af7763SVladimir Oltean sja1105_flower_setup(ds); 3696d5a619bfSVivien Didelot 3697d5a619bfSVivien Didelot rc = dsa_register_switch(priv->ds); 3698d5a619bfSVivien Didelot if (rc) 3699d5a619bfSVivien Didelot return rc; 3700d5a619bfSVivien Didelot 37014d752508SVladimir Oltean if (IS_ENABLED(CONFIG_NET_SCH_CBS)) { 37024d752508SVladimir Oltean priv->cbs = devm_kcalloc(dev, priv->info->num_cbs_shapers, 37034d752508SVladimir Oltean sizeof(struct sja1105_cbs_entry), 37044d752508SVladimir Oltean GFP_KERNEL); 37054d752508SVladimir Oltean if (!priv->cbs) 37064d752508SVladimir Oltean return -ENOMEM; 37074d752508SVladimir Oltean } 37084d752508SVladimir Oltean 3709227d07a0SVladimir Oltean /* Connections between dsa_port and sja1105_port */ 3710542043e9SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 3711a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3712a68578c2SVladimir Oltean struct dsa_port *dp = dsa_to_port(ds, port); 3713a68578c2SVladimir Oltean struct net_device *slave; 371484eeb5d4SVladimir Oltean int subvlan; 3715227d07a0SVladimir Oltean 3716a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3717a68578c2SVladimir Oltean continue; 3718a68578c2SVladimir Oltean 3719a68578c2SVladimir Oltean dp->priv = sp; 3720a68578c2SVladimir Oltean sp->dp = dp; 3721844d7edcSVladimir Oltean sp->data = tagger_data; 3722a68578c2SVladimir Oltean slave = dp->slave; 3723a68578c2SVladimir Oltean kthread_init_work(&sp->xmit_work, sja1105_port_deferred_xmit); 3724a68578c2SVladimir Oltean sp->xmit_worker = kthread_create_worker(0, "%s_xmit", 3725a68578c2SVladimir Oltean slave->name); 3726a68578c2SVladimir Oltean if (IS_ERR(sp->xmit_worker)) { 3727a68578c2SVladimir Oltean rc = PTR_ERR(sp->xmit_worker); 3728a68578c2SVladimir Oltean dev_err(ds->dev, 3729a68578c2SVladimir Oltean "failed to create deferred xmit thread: %d\n", 3730a68578c2SVladimir Oltean rc); 3731a68578c2SVladimir Oltean goto out; 3732a68578c2SVladimir Oltean } 3733a68578c2SVladimir Oltean skb_queue_head_init(&sp->xmit_queue); 373438b5beeaSVladimir Oltean sp->xmit_tpid = ETH_P_SJA1105; 373584eeb5d4SVladimir Oltean 373684eeb5d4SVladimir Oltean for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 373784eeb5d4SVladimir Oltean sp->subvlan_map[subvlan] = VLAN_N_VID; 3738227d07a0SVladimir Oltean } 3739227d07a0SVladimir Oltean 3740d5a619bfSVivien Didelot return 0; 3741a68578c2SVladimir Oltean out: 3742a68578c2SVladimir Oltean while (port-- > 0) { 3743a68578c2SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 3744a68578c2SVladimir Oltean 3745a68578c2SVladimir Oltean if (!dsa_is_user_port(ds, port)) 3746a68578c2SVladimir Oltean continue; 3747a68578c2SVladimir Oltean 3748a68578c2SVladimir Oltean kthread_destroy_worker(sp->xmit_worker); 3749a68578c2SVladimir Oltean } 3750a68578c2SVladimir Oltean return rc; 37518aa9ebccSVladimir Oltean } 37528aa9ebccSVladimir Oltean 37538aa9ebccSVladimir Oltean static int sja1105_remove(struct spi_device *spi) 37548aa9ebccSVladimir Oltean { 37558aa9ebccSVladimir Oltean struct sja1105_private *priv = spi_get_drvdata(spi); 37568aa9ebccSVladimir Oltean 37578aa9ebccSVladimir Oltean dsa_unregister_switch(priv->ds); 37588aa9ebccSVladimir Oltean return 0; 37598aa9ebccSVladimir Oltean } 37608aa9ebccSVladimir Oltean 37618aa9ebccSVladimir Oltean static const struct of_device_id sja1105_dt_ids[] = { 37628aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105e", .data = &sja1105e_info }, 37638aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105t", .data = &sja1105t_info }, 37648aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105p", .data = &sja1105p_info }, 37658aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105q", .data = &sja1105q_info }, 37668aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105r", .data = &sja1105r_info }, 37678aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105s", .data = &sja1105s_info }, 37688aa9ebccSVladimir Oltean { /* sentinel */ }, 37698aa9ebccSVladimir Oltean }; 37708aa9ebccSVladimir Oltean MODULE_DEVICE_TABLE(of, sja1105_dt_ids); 37718aa9ebccSVladimir Oltean 37728aa9ebccSVladimir Oltean static struct spi_driver sja1105_driver = { 37738aa9ebccSVladimir Oltean .driver = { 37748aa9ebccSVladimir Oltean .name = "sja1105", 37758aa9ebccSVladimir Oltean .owner = THIS_MODULE, 37768aa9ebccSVladimir Oltean .of_match_table = of_match_ptr(sja1105_dt_ids), 37778aa9ebccSVladimir Oltean }, 37788aa9ebccSVladimir Oltean .probe = sja1105_probe, 37798aa9ebccSVladimir Oltean .remove = sja1105_remove, 37808aa9ebccSVladimir Oltean }; 37818aa9ebccSVladimir Oltean 37828aa9ebccSVladimir Oltean module_spi_driver(sja1105_driver); 37838aa9ebccSVladimir Oltean 37848aa9ebccSVladimir Oltean MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>"); 37858aa9ebccSVladimir Oltean MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>"); 37868aa9ebccSVladimir Oltean MODULE_DESCRIPTION("SJA1105 Driver"); 37878aa9ebccSVladimir Oltean MODULE_LICENSE("GPL v2"); 3788