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" 258aa9ebccSVladimir Oltean 268aa9ebccSVladimir Oltean static void sja1105_hw_reset(struct gpio_desc *gpio, unsigned int pulse_len, 278aa9ebccSVladimir Oltean unsigned int startup_delay) 288aa9ebccSVladimir Oltean { 298aa9ebccSVladimir Oltean gpiod_set_value_cansleep(gpio, 1); 308aa9ebccSVladimir Oltean /* Wait for minimum reset pulse length */ 318aa9ebccSVladimir Oltean msleep(pulse_len); 328aa9ebccSVladimir Oltean gpiod_set_value_cansleep(gpio, 0); 338aa9ebccSVladimir Oltean /* Wait until chip is ready after reset */ 348aa9ebccSVladimir Oltean msleep(startup_delay); 358aa9ebccSVladimir Oltean } 368aa9ebccSVladimir Oltean 378aa9ebccSVladimir Oltean static void 388aa9ebccSVladimir Oltean sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd, 398aa9ebccSVladimir Oltean int from, int to, bool allow) 408aa9ebccSVladimir Oltean { 418aa9ebccSVladimir Oltean if (allow) { 428aa9ebccSVladimir Oltean l2_fwd[from].bc_domain |= BIT(to); 438aa9ebccSVladimir Oltean l2_fwd[from].reach_port |= BIT(to); 448aa9ebccSVladimir Oltean l2_fwd[from].fl_domain |= BIT(to); 458aa9ebccSVladimir Oltean } else { 468aa9ebccSVladimir Oltean l2_fwd[from].bc_domain &= ~BIT(to); 478aa9ebccSVladimir Oltean l2_fwd[from].reach_port &= ~BIT(to); 488aa9ebccSVladimir Oltean l2_fwd[from].fl_domain &= ~BIT(to); 498aa9ebccSVladimir Oltean } 508aa9ebccSVladimir Oltean } 518aa9ebccSVladimir Oltean 528aa9ebccSVladimir Oltean /* Structure used to temporarily transport device tree 538aa9ebccSVladimir Oltean * settings into sja1105_setup 548aa9ebccSVladimir Oltean */ 558aa9ebccSVladimir Oltean struct sja1105_dt_port { 568aa9ebccSVladimir Oltean phy_interface_t phy_mode; 578aa9ebccSVladimir Oltean sja1105_mii_role_t role; 588aa9ebccSVladimir Oltean }; 598aa9ebccSVladimir Oltean 608aa9ebccSVladimir Oltean static int sja1105_init_mac_settings(struct sja1105_private *priv) 618aa9ebccSVladimir Oltean { 628aa9ebccSVladimir Oltean struct sja1105_mac_config_entry default_mac = { 638aa9ebccSVladimir Oltean /* Enable all 8 priority queues on egress. 648aa9ebccSVladimir Oltean * Every queue i holds top[i] - base[i] frames. 658aa9ebccSVladimir Oltean * Sum of top[i] - base[i] is 511 (max hardware limit). 668aa9ebccSVladimir Oltean */ 678aa9ebccSVladimir Oltean .top = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF}, 688aa9ebccSVladimir Oltean .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0}, 698aa9ebccSVladimir Oltean .enabled = {true, true, true, true, true, true, true, true}, 708aa9ebccSVladimir Oltean /* Keep standard IFG of 12 bytes on egress. */ 718aa9ebccSVladimir Oltean .ifg = 0, 728aa9ebccSVladimir Oltean /* Always put the MAC speed in automatic mode, where it can be 738aa9ebccSVladimir Oltean * retrieved from the PHY object through phylib and 748aa9ebccSVladimir Oltean * sja1105_adjust_port_config. 758aa9ebccSVladimir Oltean */ 768aa9ebccSVladimir Oltean .speed = SJA1105_SPEED_AUTO, 778aa9ebccSVladimir Oltean /* No static correction for 1-step 1588 events */ 788aa9ebccSVladimir Oltean .tp_delin = 0, 798aa9ebccSVladimir Oltean .tp_delout = 0, 808aa9ebccSVladimir Oltean /* Disable aging for critical TTEthernet traffic */ 818aa9ebccSVladimir Oltean .maxage = 0xFF, 828aa9ebccSVladimir Oltean /* Internal VLAN (pvid) to apply to untagged ingress */ 838aa9ebccSVladimir Oltean .vlanprio = 0, 848aa9ebccSVladimir Oltean .vlanid = 0, 858aa9ebccSVladimir Oltean .ing_mirr = false, 868aa9ebccSVladimir Oltean .egr_mirr = false, 878aa9ebccSVladimir Oltean /* Don't drop traffic with other EtherType than ETH_P_IP */ 888aa9ebccSVladimir Oltean .drpnona664 = false, 898aa9ebccSVladimir Oltean /* Don't drop double-tagged traffic */ 908aa9ebccSVladimir Oltean .drpdtag = false, 918aa9ebccSVladimir Oltean /* Don't drop untagged traffic */ 928aa9ebccSVladimir Oltean .drpuntag = false, 938aa9ebccSVladimir Oltean /* Don't retag 802.1p (VID 0) traffic with the pvid */ 948aa9ebccSVladimir Oltean .retag = false, 95640f763fSVladimir Oltean /* Disable learning and I/O on user ports by default - 96640f763fSVladimir Oltean * STP will enable it. 97640f763fSVladimir Oltean */ 98640f763fSVladimir Oltean .dyn_learn = false, 998aa9ebccSVladimir Oltean .egress = false, 1008aa9ebccSVladimir Oltean .ingress = false, 1018aa9ebccSVladimir Oltean }; 1028aa9ebccSVladimir Oltean struct sja1105_mac_config_entry *mac; 1038aa9ebccSVladimir Oltean struct sja1105_table *table; 1048aa9ebccSVladimir Oltean int i; 1058aa9ebccSVladimir Oltean 1068aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG]; 1078aa9ebccSVladimir Oltean 1088aa9ebccSVladimir Oltean /* Discard previous MAC Configuration Table */ 1098aa9ebccSVladimir Oltean if (table->entry_count) { 1108aa9ebccSVladimir Oltean kfree(table->entries); 1118aa9ebccSVladimir Oltean table->entry_count = 0; 1128aa9ebccSVladimir Oltean } 1138aa9ebccSVladimir Oltean 1148aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_NUM_PORTS, 1158aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 1168aa9ebccSVladimir Oltean if (!table->entries) 1178aa9ebccSVladimir Oltean return -ENOMEM; 1188aa9ebccSVladimir Oltean 1198aa9ebccSVladimir Oltean /* Override table based on phylib DT bindings */ 1208aa9ebccSVladimir Oltean table->entry_count = SJA1105_NUM_PORTS; 1218aa9ebccSVladimir Oltean 1228aa9ebccSVladimir Oltean mac = table->entries; 1238aa9ebccSVladimir Oltean 124640f763fSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 1258aa9ebccSVladimir Oltean mac[i] = default_mac; 126640f763fSVladimir Oltean if (i == dsa_upstream_port(priv->ds, i)) { 127640f763fSVladimir Oltean /* STP doesn't get called for CPU port, so we need to 128640f763fSVladimir Oltean * set the I/O parameters statically. 129640f763fSVladimir Oltean */ 130640f763fSVladimir Oltean mac[i].dyn_learn = true; 131640f763fSVladimir Oltean mac[i].ingress = true; 132640f763fSVladimir Oltean mac[i].egress = true; 133640f763fSVladimir Oltean } 134640f763fSVladimir Oltean } 1358aa9ebccSVladimir Oltean 1368aa9ebccSVladimir Oltean return 0; 1378aa9ebccSVladimir Oltean } 1388aa9ebccSVladimir Oltean 1398aa9ebccSVladimir Oltean static int sja1105_init_mii_settings(struct sja1105_private *priv, 1408aa9ebccSVladimir Oltean struct sja1105_dt_port *ports) 1418aa9ebccSVladimir Oltean { 1428aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 1438aa9ebccSVladimir Oltean struct sja1105_xmii_params_entry *mii; 1448aa9ebccSVladimir Oltean struct sja1105_table *table; 1458aa9ebccSVladimir Oltean int i; 1468aa9ebccSVladimir Oltean 1478aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS]; 1488aa9ebccSVladimir Oltean 1498aa9ebccSVladimir Oltean /* Discard previous xMII Mode Parameters Table */ 1508aa9ebccSVladimir Oltean if (table->entry_count) { 1518aa9ebccSVladimir Oltean kfree(table->entries); 1528aa9ebccSVladimir Oltean table->entry_count = 0; 1538aa9ebccSVladimir Oltean } 1548aa9ebccSVladimir Oltean 1558aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_XMII_PARAMS_COUNT, 1568aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 1578aa9ebccSVladimir Oltean if (!table->entries) 1588aa9ebccSVladimir Oltean return -ENOMEM; 1598aa9ebccSVladimir Oltean 1608aa9ebccSVladimir Oltean /* Override table based on phylib DT bindings */ 1618aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_XMII_PARAMS_COUNT; 1628aa9ebccSVladimir Oltean 1638aa9ebccSVladimir Oltean mii = table->entries; 1648aa9ebccSVladimir Oltean 1658aa9ebccSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 1668aa9ebccSVladimir Oltean switch (ports[i].phy_mode) { 1678aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_MII: 1688aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_MII; 1698aa9ebccSVladimir Oltean break; 1708aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RMII: 1718aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_RMII; 1728aa9ebccSVladimir Oltean break; 1738aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII: 1748aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_ID: 1758aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_RXID: 1768aa9ebccSVladimir Oltean case PHY_INTERFACE_MODE_RGMII_TXID: 1778aa9ebccSVladimir Oltean mii->xmii_mode[i] = XMII_MODE_RGMII; 1788aa9ebccSVladimir Oltean break; 1798aa9ebccSVladimir Oltean default: 1808aa9ebccSVladimir Oltean dev_err(dev, "Unsupported PHY mode %s!\n", 1818aa9ebccSVladimir Oltean phy_modes(ports[i].phy_mode)); 1828aa9ebccSVladimir Oltean } 1838aa9ebccSVladimir Oltean 1848aa9ebccSVladimir Oltean mii->phy_mac[i] = ports[i].role; 1858aa9ebccSVladimir Oltean } 1868aa9ebccSVladimir Oltean return 0; 1878aa9ebccSVladimir Oltean } 1888aa9ebccSVladimir Oltean 1898aa9ebccSVladimir Oltean static int sja1105_init_static_fdb(struct sja1105_private *priv) 1908aa9ebccSVladimir Oltean { 1918aa9ebccSVladimir Oltean struct sja1105_table *table; 1928aa9ebccSVladimir Oltean 1938aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; 1948aa9ebccSVladimir Oltean 195291d1e72SVladimir Oltean /* We only populate the FDB table through dynamic 196291d1e72SVladimir Oltean * L2 Address Lookup entries 197291d1e72SVladimir Oltean */ 1988aa9ebccSVladimir Oltean if (table->entry_count) { 1998aa9ebccSVladimir Oltean kfree(table->entries); 2008aa9ebccSVladimir Oltean table->entry_count = 0; 2018aa9ebccSVladimir Oltean } 2028aa9ebccSVladimir Oltean return 0; 2038aa9ebccSVladimir Oltean } 2048aa9ebccSVladimir Oltean 2058aa9ebccSVladimir Oltean static int sja1105_init_l2_lookup_params(struct sja1105_private *priv) 2068aa9ebccSVladimir Oltean { 2078aa9ebccSVladimir Oltean struct sja1105_table *table; 2088aa9ebccSVladimir Oltean struct sja1105_l2_lookup_params_entry default_l2_lookup_params = { 2098456721dSVladimir Oltean /* Learned FDB entries are forgotten after 300 seconds */ 2108456721dSVladimir Oltean .maxage = SJA1105_AGEING_TIME_MS(300000), 2118aa9ebccSVladimir Oltean /* All entries within a FDB bin are available for learning */ 2128aa9ebccSVladimir Oltean .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE, 2131da73821SVladimir Oltean /* And the P/Q/R/S equivalent setting: */ 2141da73821SVladimir Oltean .start_dynspc = 0, 2158aa9ebccSVladimir Oltean /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */ 2168aa9ebccSVladimir Oltean .poly = 0x97, 2178aa9ebccSVladimir Oltean /* This selects between Independent VLAN Learning (IVL) and 2188aa9ebccSVladimir Oltean * Shared VLAN Learning (SVL) 2198aa9ebccSVladimir Oltean */ 2208aa9ebccSVladimir Oltean .shared_learn = false, 2218aa9ebccSVladimir Oltean /* Don't discard management traffic based on ENFPORT - 2228aa9ebccSVladimir Oltean * we don't perform SMAC port enforcement anyway, so 2238aa9ebccSVladimir Oltean * what we are setting here doesn't matter. 2248aa9ebccSVladimir Oltean */ 2258aa9ebccSVladimir Oltean .no_enf_hostprt = false, 2268aa9ebccSVladimir Oltean /* Don't learn SMAC for mac_fltres1 and mac_fltres0. 2278aa9ebccSVladimir Oltean * Maybe correlate with no_linklocal_learn from bridge driver? 2288aa9ebccSVladimir Oltean */ 2298aa9ebccSVladimir Oltean .no_mgmt_learn = true, 2301da73821SVladimir Oltean /* P/Q/R/S only */ 2311da73821SVladimir Oltean .use_static = true, 2321da73821SVladimir Oltean /* Dynamically learned FDB entries can overwrite other (older) 2331da73821SVladimir Oltean * dynamic FDB entries 2341da73821SVladimir Oltean */ 2351da73821SVladimir Oltean .owr_dyn = true, 2361da73821SVladimir Oltean .drpnolearn = true, 2378aa9ebccSVladimir Oltean }; 2388aa9ebccSVladimir Oltean 2398aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 2408aa9ebccSVladimir Oltean 2418aa9ebccSVladimir Oltean if (table->entry_count) { 2428aa9ebccSVladimir Oltean kfree(table->entries); 2438aa9ebccSVladimir Oltean table->entry_count = 0; 2448aa9ebccSVladimir Oltean } 2458aa9ebccSVladimir Oltean 2468aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT, 2478aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 2488aa9ebccSVladimir Oltean if (!table->entries) 2498aa9ebccSVladimir Oltean return -ENOMEM; 2508aa9ebccSVladimir Oltean 2518aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT; 2528aa9ebccSVladimir Oltean 2538aa9ebccSVladimir Oltean /* This table only has a single entry */ 2548aa9ebccSVladimir Oltean ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] = 2558aa9ebccSVladimir Oltean default_l2_lookup_params; 2568aa9ebccSVladimir Oltean 2578aa9ebccSVladimir Oltean return 0; 2588aa9ebccSVladimir Oltean } 2598aa9ebccSVladimir Oltean 2608aa9ebccSVladimir Oltean static int sja1105_init_static_vlan(struct sja1105_private *priv) 2618aa9ebccSVladimir Oltean { 2628aa9ebccSVladimir Oltean struct sja1105_table *table; 2638aa9ebccSVladimir Oltean struct sja1105_vlan_lookup_entry pvid = { 2648aa9ebccSVladimir Oltean .ving_mirr = 0, 2658aa9ebccSVladimir Oltean .vegr_mirr = 0, 2668aa9ebccSVladimir Oltean .vmemb_port = 0, 2678aa9ebccSVladimir Oltean .vlan_bc = 0, 2688aa9ebccSVladimir Oltean .tag_port = 0, 2698aa9ebccSVladimir Oltean .vlanid = 0, 2708aa9ebccSVladimir Oltean }; 2718aa9ebccSVladimir Oltean int i; 2728aa9ebccSVladimir Oltean 2738aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2748aa9ebccSVladimir Oltean 2758aa9ebccSVladimir Oltean /* The static VLAN table will only contain the initial pvid of 0. 2766666cebcSVladimir Oltean * All other VLANs are to be configured through dynamic entries, 2776666cebcSVladimir Oltean * and kept in the static configuration table as backing memory. 2786666cebcSVladimir Oltean * The pvid of 0 is sufficient to pass traffic while the ports are 2796666cebcSVladimir Oltean * standalone and when vlan_filtering is disabled. When filtering 2806666cebcSVladimir Oltean * gets enabled, the switchdev core sets up the VLAN ID 1 and sets 2816666cebcSVladimir Oltean * it as the new pvid. Actually 'pvid 1' still comes up in 'bridge 2826666cebcSVladimir Oltean * vlan' even when vlan_filtering is off, but it has no effect. 2838aa9ebccSVladimir Oltean */ 2848aa9ebccSVladimir Oltean if (table->entry_count) { 2858aa9ebccSVladimir Oltean kfree(table->entries); 2868aa9ebccSVladimir Oltean table->entry_count = 0; 2878aa9ebccSVladimir Oltean } 2888aa9ebccSVladimir Oltean 2898aa9ebccSVladimir Oltean table->entries = kcalloc(1, table->ops->unpacked_entry_size, 2908aa9ebccSVladimir Oltean GFP_KERNEL); 2918aa9ebccSVladimir Oltean if (!table->entries) 2928aa9ebccSVladimir Oltean return -ENOMEM; 2938aa9ebccSVladimir Oltean 2948aa9ebccSVladimir Oltean table->entry_count = 1; 2958aa9ebccSVladimir Oltean 2968aa9ebccSVladimir Oltean /* VLAN ID 0: all DT-defined ports are members; no restrictions on 2978aa9ebccSVladimir Oltean * forwarding; always transmit priority-tagged frames as untagged. 2988aa9ebccSVladimir Oltean */ 2998aa9ebccSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 3008aa9ebccSVladimir Oltean pvid.vmemb_port |= BIT(i); 3018aa9ebccSVladimir Oltean pvid.vlan_bc |= BIT(i); 3028aa9ebccSVladimir Oltean pvid.tag_port &= ~BIT(i); 3038aa9ebccSVladimir Oltean } 3048aa9ebccSVladimir Oltean 3058aa9ebccSVladimir Oltean ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid; 3068aa9ebccSVladimir Oltean return 0; 3078aa9ebccSVladimir Oltean } 3088aa9ebccSVladimir Oltean 3098aa9ebccSVladimir Oltean static int sja1105_init_l2_forwarding(struct sja1105_private *priv) 3108aa9ebccSVladimir Oltean { 3118aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_entry *l2fwd; 3128aa9ebccSVladimir Oltean struct sja1105_table *table; 3138aa9ebccSVladimir Oltean int i, j; 3148aa9ebccSVladimir Oltean 3158aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING]; 3168aa9ebccSVladimir Oltean 3178aa9ebccSVladimir Oltean if (table->entry_count) { 3188aa9ebccSVladimir Oltean kfree(table->entries); 3198aa9ebccSVladimir Oltean table->entry_count = 0; 3208aa9ebccSVladimir Oltean } 3218aa9ebccSVladimir Oltean 3228aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_COUNT, 3238aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 3248aa9ebccSVladimir Oltean if (!table->entries) 3258aa9ebccSVladimir Oltean return -ENOMEM; 3268aa9ebccSVladimir Oltean 3278aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_FORWARDING_COUNT; 3288aa9ebccSVladimir Oltean 3298aa9ebccSVladimir Oltean l2fwd = table->entries; 3308aa9ebccSVladimir Oltean 3318aa9ebccSVladimir Oltean /* First 5 entries define the forwarding rules */ 3328aa9ebccSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 3338aa9ebccSVladimir Oltean unsigned int upstream = dsa_upstream_port(priv->ds, i); 3348aa9ebccSVladimir Oltean 3358aa9ebccSVladimir Oltean for (j = 0; j < SJA1105_NUM_TC; j++) 3368aa9ebccSVladimir Oltean l2fwd[i].vlan_pmap[j] = j; 3378aa9ebccSVladimir Oltean 3388aa9ebccSVladimir Oltean if (i == upstream) 3398aa9ebccSVladimir Oltean continue; 3408aa9ebccSVladimir Oltean 3418aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2fwd, i, upstream, true); 3428aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2fwd, upstream, i, true); 3438aa9ebccSVladimir Oltean } 3448aa9ebccSVladimir Oltean /* Next 8 entries define VLAN PCP mapping from ingress to egress. 3458aa9ebccSVladimir Oltean * Create a one-to-one mapping. 3468aa9ebccSVladimir Oltean */ 3478aa9ebccSVladimir Oltean for (i = 0; i < SJA1105_NUM_TC; i++) 3488aa9ebccSVladimir Oltean for (j = 0; j < SJA1105_NUM_PORTS; j++) 3498aa9ebccSVladimir Oltean l2fwd[SJA1105_NUM_PORTS + i].vlan_pmap[j] = i; 3508aa9ebccSVladimir Oltean 3518aa9ebccSVladimir Oltean return 0; 3528aa9ebccSVladimir Oltean } 3538aa9ebccSVladimir Oltean 3548aa9ebccSVladimir Oltean static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv) 3558aa9ebccSVladimir Oltean { 3568aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_params_entry default_l2fwd_params = { 3578aa9ebccSVladimir Oltean /* Disallow dynamic reconfiguration of vlan_pmap */ 3588aa9ebccSVladimir Oltean .max_dynp = 0, 3598aa9ebccSVladimir Oltean /* Use a single memory partition for all ingress queues */ 3608aa9ebccSVladimir Oltean .part_spc = { SJA1105_MAX_FRAME_MEMORY, 0, 0, 0, 0, 0, 0, 0 }, 3618aa9ebccSVladimir Oltean }; 3628aa9ebccSVladimir Oltean struct sja1105_table *table; 3638aa9ebccSVladimir Oltean 3648aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS]; 3658aa9ebccSVladimir Oltean 3668aa9ebccSVladimir Oltean if (table->entry_count) { 3678aa9ebccSVladimir Oltean kfree(table->entries); 3688aa9ebccSVladimir Oltean table->entry_count = 0; 3698aa9ebccSVladimir Oltean } 3708aa9ebccSVladimir Oltean 3718aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT, 3728aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 3738aa9ebccSVladimir Oltean if (!table->entries) 3748aa9ebccSVladimir Oltean return -ENOMEM; 3758aa9ebccSVladimir Oltean 3768aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT; 3778aa9ebccSVladimir Oltean 3788aa9ebccSVladimir Oltean /* This table only has a single entry */ 3798aa9ebccSVladimir Oltean ((struct sja1105_l2_forwarding_params_entry *)table->entries)[0] = 3808aa9ebccSVladimir Oltean default_l2fwd_params; 3818aa9ebccSVladimir Oltean 3828aa9ebccSVladimir Oltean return 0; 3838aa9ebccSVladimir Oltean } 3848aa9ebccSVladimir Oltean 3858aa9ebccSVladimir Oltean static int sja1105_init_general_params(struct sja1105_private *priv) 3868aa9ebccSVladimir Oltean { 3878aa9ebccSVladimir Oltean struct sja1105_general_params_entry default_general_params = { 3888aa9ebccSVladimir Oltean /* Disallow dynamic changing of the mirror port */ 3898aa9ebccSVladimir Oltean .mirr_ptacu = 0, 3908aa9ebccSVladimir Oltean .switchid = priv->ds->index, 3918aa9ebccSVladimir Oltean /* Priority queue for link-local frames trapped to CPU */ 39208fde09aSVladimir Oltean .hostprio = 7, 3938aa9ebccSVladimir Oltean .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A, 3948aa9ebccSVladimir Oltean .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK, 39542824463SVladimir Oltean .incl_srcpt1 = false, 3968aa9ebccSVladimir Oltean .send_meta1 = false, 3978aa9ebccSVladimir Oltean .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B, 3988aa9ebccSVladimir Oltean .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK, 39942824463SVladimir Oltean .incl_srcpt0 = false, 4008aa9ebccSVladimir Oltean .send_meta0 = false, 4018aa9ebccSVladimir Oltean /* The destination for traffic matching mac_fltres1 and 4028aa9ebccSVladimir Oltean * mac_fltres0 on all ports except host_port. Such traffic 4038aa9ebccSVladimir Oltean * receieved on host_port itself would be dropped, except 4048aa9ebccSVladimir Oltean * by installing a temporary 'management route' 4058aa9ebccSVladimir Oltean */ 4068aa9ebccSVladimir Oltean .host_port = dsa_upstream_port(priv->ds, 0), 4078aa9ebccSVladimir Oltean /* Same as host port */ 4088aa9ebccSVladimir Oltean .mirr_port = dsa_upstream_port(priv->ds, 0), 4098aa9ebccSVladimir Oltean /* Link-local traffic received on casc_port will be forwarded 4108aa9ebccSVladimir Oltean * to host_port without embedding the source port and device ID 4118aa9ebccSVladimir Oltean * info in the destination MAC address (presumably because it 4128aa9ebccSVladimir Oltean * is a cascaded port and a downstream SJA switch already did 4138aa9ebccSVladimir Oltean * that). Default to an invalid port (to disable the feature) 4148aa9ebccSVladimir Oltean * and overwrite this if we find any DSA (cascaded) ports. 4158aa9ebccSVladimir Oltean */ 4168aa9ebccSVladimir Oltean .casc_port = SJA1105_NUM_PORTS, 4178aa9ebccSVladimir Oltean /* No TTEthernet */ 4188aa9ebccSVladimir Oltean .vllupformat = 0, 4198aa9ebccSVladimir Oltean .vlmarker = 0, 4208aa9ebccSVladimir Oltean .vlmask = 0, 4218aa9ebccSVladimir Oltean /* Only update correctionField for 1-step PTP (L2 transport) */ 4228aa9ebccSVladimir Oltean .ignore2stf = 0, 4236666cebcSVladimir Oltean /* Forcefully disable VLAN filtering by telling 4246666cebcSVladimir Oltean * the switch that VLAN has a different EtherType. 4256666cebcSVladimir Oltean */ 4266666cebcSVladimir Oltean .tpid = ETH_P_SJA1105, 4276666cebcSVladimir Oltean .tpid2 = ETH_P_SJA1105, 4288aa9ebccSVladimir Oltean }; 4298aa9ebccSVladimir Oltean struct sja1105_table *table; 430227d07a0SVladimir Oltean int i, k = 0; 4318aa9ebccSVladimir Oltean 432227d07a0SVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 4338aa9ebccSVladimir Oltean if (dsa_is_dsa_port(priv->ds, i)) 4348aa9ebccSVladimir Oltean default_general_params.casc_port = i; 435227d07a0SVladimir Oltean else if (dsa_is_user_port(priv->ds, i)) 436227d07a0SVladimir Oltean priv->ports[i].mgmt_slot = k++; 437227d07a0SVladimir Oltean } 4388aa9ebccSVladimir Oltean 4398aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 4408aa9ebccSVladimir Oltean 4418aa9ebccSVladimir Oltean if (table->entry_count) { 4428aa9ebccSVladimir Oltean kfree(table->entries); 4438aa9ebccSVladimir Oltean table->entry_count = 0; 4448aa9ebccSVladimir Oltean } 4458aa9ebccSVladimir Oltean 4468aa9ebccSVladimir Oltean table->entries = kcalloc(SJA1105_MAX_GENERAL_PARAMS_COUNT, 4478aa9ebccSVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 4488aa9ebccSVladimir Oltean if (!table->entries) 4498aa9ebccSVladimir Oltean return -ENOMEM; 4508aa9ebccSVladimir Oltean 4518aa9ebccSVladimir Oltean table->entry_count = SJA1105_MAX_GENERAL_PARAMS_COUNT; 4528aa9ebccSVladimir Oltean 4538aa9ebccSVladimir Oltean /* This table only has a single entry */ 4548aa9ebccSVladimir Oltean ((struct sja1105_general_params_entry *)table->entries)[0] = 4558aa9ebccSVladimir Oltean default_general_params; 4568aa9ebccSVladimir Oltean 4578aa9ebccSVladimir Oltean return 0; 4588aa9ebccSVladimir Oltean } 4598aa9ebccSVladimir Oltean 4608aa9ebccSVladimir Oltean #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000) 4618aa9ebccSVladimir Oltean 4628aa9ebccSVladimir Oltean static inline void 4638aa9ebccSVladimir Oltean sja1105_setup_policer(struct sja1105_l2_policing_entry *policing, 4648aa9ebccSVladimir Oltean int index) 4658aa9ebccSVladimir Oltean { 4668aa9ebccSVladimir Oltean policing[index].sharindx = index; 4678aa9ebccSVladimir Oltean policing[index].smax = 65535; /* Burst size in bytes */ 4688aa9ebccSVladimir Oltean policing[index].rate = SJA1105_RATE_MBPS(1000); 4698aa9ebccSVladimir Oltean policing[index].maxlen = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN; 4708aa9ebccSVladimir Oltean policing[index].partition = 0; 4718aa9ebccSVladimir Oltean } 4728aa9ebccSVladimir Oltean 4738aa9ebccSVladimir Oltean static int sja1105_init_l2_policing(struct sja1105_private *priv) 4748aa9ebccSVladimir Oltean { 4758aa9ebccSVladimir Oltean struct sja1105_l2_policing_entry *policing; 4768aa9ebccSVladimir Oltean struct sja1105_table *table; 4778aa9ebccSVladimir Oltean int i, j, k; 4788aa9ebccSVladimir Oltean 4798aa9ebccSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_POLICING]; 4808aa9ebccSVladimir Oltean 4818aa9ebccSVladimir Oltean /* Discard previous L2 Policing Table */ 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_POLICING_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_POLICING_COUNT; 4938aa9ebccSVladimir Oltean 4948aa9ebccSVladimir Oltean policing = table->entries; 4958aa9ebccSVladimir Oltean 4968aa9ebccSVladimir Oltean /* k sweeps through all unicast policers (0-39). 4978aa9ebccSVladimir Oltean * bcast sweeps through policers 40-44. 4988aa9ebccSVladimir Oltean */ 4998aa9ebccSVladimir Oltean for (i = 0, k = 0; i < SJA1105_NUM_PORTS; i++) { 5008aa9ebccSVladimir Oltean int bcast = (SJA1105_NUM_PORTS * SJA1105_NUM_TC) + i; 5018aa9ebccSVladimir Oltean 5028aa9ebccSVladimir Oltean for (j = 0; j < SJA1105_NUM_TC; j++, k++) 5038aa9ebccSVladimir Oltean sja1105_setup_policer(policing, k); 5048aa9ebccSVladimir Oltean 5058aa9ebccSVladimir Oltean /* Set up this port's policer for broadcast traffic */ 5068aa9ebccSVladimir Oltean sja1105_setup_policer(policing, bcast); 5078aa9ebccSVladimir Oltean } 5088aa9ebccSVladimir Oltean return 0; 5098aa9ebccSVladimir Oltean } 5108aa9ebccSVladimir Oltean 51124c01949SVladimir Oltean static int sja1105_init_avb_params(struct sja1105_private *priv, 51224c01949SVladimir Oltean bool on) 51324c01949SVladimir Oltean { 51424c01949SVladimir Oltean struct sja1105_avb_params_entry *avb; 51524c01949SVladimir Oltean struct sja1105_table *table; 51624c01949SVladimir Oltean 51724c01949SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS]; 51824c01949SVladimir Oltean 51924c01949SVladimir Oltean /* Discard previous AVB Parameters Table */ 52024c01949SVladimir Oltean if (table->entry_count) { 52124c01949SVladimir Oltean kfree(table->entries); 52224c01949SVladimir Oltean table->entry_count = 0; 52324c01949SVladimir Oltean } 52424c01949SVladimir Oltean 52524c01949SVladimir Oltean /* Configure the reception of meta frames only if requested */ 52624c01949SVladimir Oltean if (!on) 52724c01949SVladimir Oltean return 0; 52824c01949SVladimir Oltean 52924c01949SVladimir Oltean table->entries = kcalloc(SJA1105_MAX_AVB_PARAMS_COUNT, 53024c01949SVladimir Oltean table->ops->unpacked_entry_size, GFP_KERNEL); 53124c01949SVladimir Oltean if (!table->entries) 53224c01949SVladimir Oltean return -ENOMEM; 53324c01949SVladimir Oltean 53424c01949SVladimir Oltean table->entry_count = SJA1105_MAX_AVB_PARAMS_COUNT; 53524c01949SVladimir Oltean 53624c01949SVladimir Oltean avb = table->entries; 53724c01949SVladimir Oltean 53824c01949SVladimir Oltean avb->destmeta = SJA1105_META_DMAC; 53924c01949SVladimir Oltean avb->srcmeta = SJA1105_META_SMAC; 54024c01949SVladimir Oltean 54124c01949SVladimir Oltean return 0; 54224c01949SVladimir Oltean } 54324c01949SVladimir Oltean 5448aa9ebccSVladimir Oltean static int sja1105_static_config_load(struct sja1105_private *priv, 5458aa9ebccSVladimir Oltean struct sja1105_dt_port *ports) 5468aa9ebccSVladimir Oltean { 5478aa9ebccSVladimir Oltean int rc; 5488aa9ebccSVladimir Oltean 5498aa9ebccSVladimir Oltean sja1105_static_config_free(&priv->static_config); 5508aa9ebccSVladimir Oltean rc = sja1105_static_config_init(&priv->static_config, 5518aa9ebccSVladimir Oltean priv->info->static_ops, 5528aa9ebccSVladimir Oltean priv->info->device_id); 5538aa9ebccSVladimir Oltean if (rc) 5548aa9ebccSVladimir Oltean return rc; 5558aa9ebccSVladimir Oltean 5568aa9ebccSVladimir Oltean /* Build static configuration */ 5578aa9ebccSVladimir Oltean rc = sja1105_init_mac_settings(priv); 5588aa9ebccSVladimir Oltean if (rc < 0) 5598aa9ebccSVladimir Oltean return rc; 5608aa9ebccSVladimir Oltean rc = sja1105_init_mii_settings(priv, ports); 5618aa9ebccSVladimir Oltean if (rc < 0) 5628aa9ebccSVladimir Oltean return rc; 5638aa9ebccSVladimir Oltean rc = sja1105_init_static_fdb(priv); 5648aa9ebccSVladimir Oltean if (rc < 0) 5658aa9ebccSVladimir Oltean return rc; 5668aa9ebccSVladimir Oltean rc = sja1105_init_static_vlan(priv); 5678aa9ebccSVladimir Oltean if (rc < 0) 5688aa9ebccSVladimir Oltean return rc; 5698aa9ebccSVladimir Oltean rc = sja1105_init_l2_lookup_params(priv); 5708aa9ebccSVladimir Oltean if (rc < 0) 5718aa9ebccSVladimir Oltean return rc; 5728aa9ebccSVladimir Oltean rc = sja1105_init_l2_forwarding(priv); 5738aa9ebccSVladimir Oltean if (rc < 0) 5748aa9ebccSVladimir Oltean return rc; 5758aa9ebccSVladimir Oltean rc = sja1105_init_l2_forwarding_params(priv); 5768aa9ebccSVladimir Oltean if (rc < 0) 5778aa9ebccSVladimir Oltean return rc; 5788aa9ebccSVladimir Oltean rc = sja1105_init_l2_policing(priv); 5798aa9ebccSVladimir Oltean if (rc < 0) 5808aa9ebccSVladimir Oltean return rc; 5818aa9ebccSVladimir Oltean rc = sja1105_init_general_params(priv); 5828aa9ebccSVladimir Oltean if (rc < 0) 5838aa9ebccSVladimir Oltean return rc; 58424c01949SVladimir Oltean rc = sja1105_init_avb_params(priv, false); 58524c01949SVladimir Oltean if (rc < 0) 58624c01949SVladimir Oltean return rc; 5878aa9ebccSVladimir Oltean 5888aa9ebccSVladimir Oltean /* Send initial configuration to hardware via SPI */ 5898aa9ebccSVladimir Oltean return sja1105_static_config_upload(priv); 5908aa9ebccSVladimir Oltean } 5918aa9ebccSVladimir Oltean 592f5b8631cSVladimir Oltean static int sja1105_parse_rgmii_delays(struct sja1105_private *priv, 593f5b8631cSVladimir Oltean const struct sja1105_dt_port *ports) 594f5b8631cSVladimir Oltean { 595f5b8631cSVladimir Oltean int i; 596f5b8631cSVladimir Oltean 597f5b8631cSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 598f5b8631cSVladimir Oltean if (ports->role == XMII_MAC) 599f5b8631cSVladimir Oltean continue; 600f5b8631cSVladimir Oltean 601f5b8631cSVladimir Oltean if (ports->phy_mode == PHY_INTERFACE_MODE_RGMII_RXID || 602f5b8631cSVladimir Oltean ports->phy_mode == PHY_INTERFACE_MODE_RGMII_ID) 603f5b8631cSVladimir Oltean priv->rgmii_rx_delay[i] = true; 604f5b8631cSVladimir Oltean 605f5b8631cSVladimir Oltean if (ports->phy_mode == PHY_INTERFACE_MODE_RGMII_TXID || 606f5b8631cSVladimir Oltean ports->phy_mode == PHY_INTERFACE_MODE_RGMII_ID) 607f5b8631cSVladimir Oltean priv->rgmii_tx_delay[i] = true; 608f5b8631cSVladimir Oltean 609f5b8631cSVladimir Oltean if ((priv->rgmii_rx_delay[i] || priv->rgmii_tx_delay[i]) && 610f5b8631cSVladimir Oltean !priv->info->setup_rgmii_delay) 611f5b8631cSVladimir Oltean return -EINVAL; 612f5b8631cSVladimir Oltean } 613f5b8631cSVladimir Oltean return 0; 614f5b8631cSVladimir Oltean } 615f5b8631cSVladimir Oltean 6168aa9ebccSVladimir Oltean static int sja1105_parse_ports_node(struct sja1105_private *priv, 6178aa9ebccSVladimir Oltean struct sja1105_dt_port *ports, 6188aa9ebccSVladimir Oltean struct device_node *ports_node) 6198aa9ebccSVladimir Oltean { 6208aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 6218aa9ebccSVladimir Oltean struct device_node *child; 6228aa9ebccSVladimir Oltean 6238aa9ebccSVladimir Oltean for_each_child_of_node(ports_node, child) { 6248aa9ebccSVladimir Oltean struct device_node *phy_node; 6258aa9ebccSVladimir Oltean int phy_mode; 6268aa9ebccSVladimir Oltean u32 index; 6278aa9ebccSVladimir Oltean 6288aa9ebccSVladimir Oltean /* Get switch port number from DT */ 6298aa9ebccSVladimir Oltean if (of_property_read_u32(child, "reg", &index) < 0) { 6308aa9ebccSVladimir Oltean dev_err(dev, "Port number not defined in device tree " 6318aa9ebccSVladimir Oltean "(property \"reg\")\n"); 6328aa9ebccSVladimir Oltean return -ENODEV; 6338aa9ebccSVladimir Oltean } 6348aa9ebccSVladimir Oltean 6358aa9ebccSVladimir Oltean /* Get PHY mode from DT */ 6368aa9ebccSVladimir Oltean phy_mode = of_get_phy_mode(child); 6378aa9ebccSVladimir Oltean if (phy_mode < 0) { 6388aa9ebccSVladimir Oltean dev_err(dev, "Failed to read phy-mode or " 6398aa9ebccSVladimir Oltean "phy-interface-type property for port %d\n", 6408aa9ebccSVladimir Oltean index); 6418aa9ebccSVladimir Oltean return -ENODEV; 6428aa9ebccSVladimir Oltean } 6438aa9ebccSVladimir Oltean ports[index].phy_mode = phy_mode; 6448aa9ebccSVladimir Oltean 6458aa9ebccSVladimir Oltean phy_node = of_parse_phandle(child, "phy-handle", 0); 6468aa9ebccSVladimir Oltean if (!phy_node) { 6478aa9ebccSVladimir Oltean if (!of_phy_is_fixed_link(child)) { 6488aa9ebccSVladimir Oltean dev_err(dev, "phy-handle or fixed-link " 6498aa9ebccSVladimir Oltean "properties missing!\n"); 6508aa9ebccSVladimir Oltean return -ENODEV; 6518aa9ebccSVladimir Oltean } 6528aa9ebccSVladimir Oltean /* phy-handle is missing, but fixed-link isn't. 6538aa9ebccSVladimir Oltean * So it's a fixed link. Default to PHY role. 6548aa9ebccSVladimir Oltean */ 6558aa9ebccSVladimir Oltean ports[index].role = XMII_PHY; 6568aa9ebccSVladimir Oltean } else { 6578aa9ebccSVladimir Oltean /* phy-handle present => put port in MAC role */ 6588aa9ebccSVladimir Oltean ports[index].role = XMII_MAC; 6598aa9ebccSVladimir Oltean of_node_put(phy_node); 6608aa9ebccSVladimir Oltean } 6618aa9ebccSVladimir Oltean 6628aa9ebccSVladimir Oltean /* The MAC/PHY role can be overridden with explicit bindings */ 6638aa9ebccSVladimir Oltean if (of_property_read_bool(child, "sja1105,role-mac")) 6648aa9ebccSVladimir Oltean ports[index].role = XMII_MAC; 6658aa9ebccSVladimir Oltean else if (of_property_read_bool(child, "sja1105,role-phy")) 6668aa9ebccSVladimir Oltean ports[index].role = XMII_PHY; 6678aa9ebccSVladimir Oltean } 6688aa9ebccSVladimir Oltean 6698aa9ebccSVladimir Oltean return 0; 6708aa9ebccSVladimir Oltean } 6718aa9ebccSVladimir Oltean 6728aa9ebccSVladimir Oltean static int sja1105_parse_dt(struct sja1105_private *priv, 6738aa9ebccSVladimir Oltean struct sja1105_dt_port *ports) 6748aa9ebccSVladimir Oltean { 6758aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 6768aa9ebccSVladimir Oltean struct device_node *switch_node = dev->of_node; 6778aa9ebccSVladimir Oltean struct device_node *ports_node; 6788aa9ebccSVladimir Oltean int rc; 6798aa9ebccSVladimir Oltean 6808aa9ebccSVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ports"); 6818aa9ebccSVladimir Oltean if (!ports_node) { 6828aa9ebccSVladimir Oltean dev_err(dev, "Incorrect bindings: absent \"ports\" node\n"); 6838aa9ebccSVladimir Oltean return -ENODEV; 6848aa9ebccSVladimir Oltean } 6858aa9ebccSVladimir Oltean 6868aa9ebccSVladimir Oltean rc = sja1105_parse_ports_node(priv, ports, ports_node); 6878aa9ebccSVladimir Oltean of_node_put(ports_node); 6888aa9ebccSVladimir Oltean 6898aa9ebccSVladimir Oltean return rc; 6908aa9ebccSVladimir Oltean } 6918aa9ebccSVladimir Oltean 692*c44d0535SVladimir Oltean /* Convert link speed from SJA1105 to ethtool encoding */ 6938aa9ebccSVladimir Oltean static int sja1105_speed[] = { 694*c44d0535SVladimir Oltean [SJA1105_SPEED_AUTO] = SPEED_UNKNOWN, 695*c44d0535SVladimir Oltean [SJA1105_SPEED_10MBPS] = SPEED_10, 696*c44d0535SVladimir Oltean [SJA1105_SPEED_100MBPS] = SPEED_100, 697*c44d0535SVladimir Oltean [SJA1105_SPEED_1000MBPS] = SPEED_1000, 6988aa9ebccSVladimir Oltean }; 6998aa9ebccSVladimir Oltean 7008aa9ebccSVladimir Oltean /* Set link speed and enable/disable traffic I/O in the MAC configuration 7018aa9ebccSVladimir Oltean * for a specific port. 7028aa9ebccSVladimir Oltean * 7038aa9ebccSVladimir Oltean * @speed_mbps: If 0, leave the speed unchanged, else adapt MAC to PHY speed. 704640f763fSVladimir Oltean * @enabled: Manage Rx and Tx settings for this port. If false, overrides the 705640f763fSVladimir Oltean * settings from the STP state, but not persistently (does not 706640f763fSVladimir Oltean * overwrite the static MAC info for this port). 7078aa9ebccSVladimir Oltean */ 7088aa9ebccSVladimir Oltean static int sja1105_adjust_port_config(struct sja1105_private *priv, int port, 7098aa9ebccSVladimir Oltean int speed_mbps, bool enabled) 7108aa9ebccSVladimir Oltean { 711640f763fSVladimir Oltean struct sja1105_mac_config_entry dyn_mac; 7128aa9ebccSVladimir Oltean struct sja1105_xmii_params_entry *mii; 7138aa9ebccSVladimir Oltean struct sja1105_mac_config_entry *mac; 7148aa9ebccSVladimir Oltean struct device *dev = priv->ds->dev; 7158aa9ebccSVladimir Oltean sja1105_phy_interface_t phy_mode; 7168aa9ebccSVladimir Oltean sja1105_speed_t speed; 7178aa9ebccSVladimir Oltean int rc; 7188aa9ebccSVladimir Oltean 7198aa9ebccSVladimir Oltean mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 7208aa9ebccSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 7218aa9ebccSVladimir Oltean 722f4cfcfbdSVladimir Oltean switch (speed_mbps) { 723*c44d0535SVladimir Oltean case SPEED_UNKNOWN: 724f4cfcfbdSVladimir Oltean /* No speed update requested */ 725f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_AUTO; 726f4cfcfbdSVladimir Oltean break; 727*c44d0535SVladimir Oltean case SPEED_10: 728f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_10MBPS; 729f4cfcfbdSVladimir Oltean break; 730*c44d0535SVladimir Oltean case SPEED_100: 731f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_100MBPS; 732f4cfcfbdSVladimir Oltean break; 733*c44d0535SVladimir Oltean case SPEED_1000: 734f4cfcfbdSVladimir Oltean speed = SJA1105_SPEED_1000MBPS; 735f4cfcfbdSVladimir Oltean break; 736f4cfcfbdSVladimir Oltean default: 7378aa9ebccSVladimir Oltean dev_err(dev, "Invalid speed %iMbps\n", speed_mbps); 7388aa9ebccSVladimir Oltean return -EINVAL; 7398aa9ebccSVladimir Oltean } 7408aa9ebccSVladimir Oltean 7418aa9ebccSVladimir Oltean /* If requested, overwrite SJA1105_SPEED_AUTO from the static MAC 7428aa9ebccSVladimir Oltean * configuration table, since this will be used for the clocking setup, 7438aa9ebccSVladimir Oltean * and we no longer need to store it in the static config (already told 7448aa9ebccSVladimir Oltean * hardware we want auto during upload phase). 7458aa9ebccSVladimir Oltean */ 7468aa9ebccSVladimir Oltean mac[port].speed = speed; 7478aa9ebccSVladimir Oltean 7488aa9ebccSVladimir Oltean /* On P/Q/R/S, one can read from the device via the MAC reconfiguration 7498aa9ebccSVladimir Oltean * tables. On E/T, MAC reconfig tables are not readable, only writable. 7508aa9ebccSVladimir Oltean * We have to *know* what the MAC looks like. For the sake of keeping 7518aa9ebccSVladimir Oltean * the code common, we'll use the static configuration tables as a 7528aa9ebccSVladimir Oltean * reasonable approximation for both E/T and P/Q/R/S. 7538aa9ebccSVladimir Oltean */ 754640f763fSVladimir Oltean dyn_mac = mac[port]; 755640f763fSVladimir Oltean dyn_mac.ingress = enabled && mac[port].ingress; 756640f763fSVladimir Oltean dyn_mac.egress = enabled && mac[port].egress; 7578aa9ebccSVladimir Oltean 7588aa9ebccSVladimir Oltean /* Write to the dynamic reconfiguration tables */ 7598aa9ebccSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, 760640f763fSVladimir Oltean port, &dyn_mac, true); 7618aa9ebccSVladimir Oltean if (rc < 0) { 7628aa9ebccSVladimir Oltean dev_err(dev, "Failed to write MAC config: %d\n", rc); 7638aa9ebccSVladimir Oltean return rc; 7648aa9ebccSVladimir Oltean } 7658aa9ebccSVladimir Oltean 7668aa9ebccSVladimir Oltean /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at 7678aa9ebccSVladimir Oltean * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and 7688aa9ebccSVladimir Oltean * RMII no change of the clock setup is required. Actually, changing 7698aa9ebccSVladimir Oltean * the clock setup does interrupt the clock signal for a certain time 7708aa9ebccSVladimir Oltean * which causes trouble for all PHYs relying on this signal. 7718aa9ebccSVladimir Oltean */ 7728aa9ebccSVladimir Oltean if (!enabled) 7738aa9ebccSVladimir Oltean return 0; 7748aa9ebccSVladimir Oltean 7758aa9ebccSVladimir Oltean phy_mode = mii->xmii_mode[port]; 7768aa9ebccSVladimir Oltean if (phy_mode != XMII_MODE_RGMII) 7778aa9ebccSVladimir Oltean return 0; 7788aa9ebccSVladimir Oltean 7798aa9ebccSVladimir Oltean return sja1105_clocking_setup_port(priv, port); 7808aa9ebccSVladimir Oltean } 7818aa9ebccSVladimir Oltean 782af7cd036SVladimir Oltean static void sja1105_mac_config(struct dsa_switch *ds, int port, 783af7cd036SVladimir Oltean unsigned int link_an_mode, 784af7cd036SVladimir Oltean const struct phylink_link_state *state) 7858aa9ebccSVladimir Oltean { 7868aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 7878aa9ebccSVladimir Oltean 788af7cd036SVladimir Oltean if (!state->link) 789*c44d0535SVladimir Oltean sja1105_adjust_port_config(priv, port, SPEED_UNKNOWN, false); 7908aa9ebccSVladimir Oltean else 791af7cd036SVladimir Oltean sja1105_adjust_port_config(priv, port, state->speed, true); 7928aa9ebccSVladimir Oltean } 7938aa9ebccSVladimir Oltean 794ad9f299aSVladimir Oltean static void sja1105_phylink_validate(struct dsa_switch *ds, int port, 795ad9f299aSVladimir Oltean unsigned long *supported, 796ad9f299aSVladimir Oltean struct phylink_link_state *state) 797ad9f299aSVladimir Oltean { 798ad9f299aSVladimir Oltean /* Construct a new mask which exhaustively contains all link features 799ad9f299aSVladimir Oltean * supported by the MAC, and then apply that (logical AND) to what will 800ad9f299aSVladimir Oltean * be sent to the PHY for "marketing". 801ad9f299aSVladimir Oltean */ 802ad9f299aSVladimir Oltean __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, }; 803ad9f299aSVladimir Oltean struct sja1105_private *priv = ds->priv; 804ad9f299aSVladimir Oltean struct sja1105_xmii_params_entry *mii; 805ad9f299aSVladimir Oltean 806ad9f299aSVladimir Oltean mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 807ad9f299aSVladimir Oltean 808ad9f299aSVladimir Oltean /* The MAC does not support pause frames, and also doesn't 809ad9f299aSVladimir Oltean * support half-duplex traffic modes. 810ad9f299aSVladimir Oltean */ 811ad9f299aSVladimir Oltean phylink_set(mask, Autoneg); 812ad9f299aSVladimir Oltean phylink_set(mask, MII); 813ad9f299aSVladimir Oltean phylink_set(mask, 10baseT_Full); 814ad9f299aSVladimir Oltean phylink_set(mask, 100baseT_Full); 815ad9f299aSVladimir Oltean if (mii->xmii_mode[port] == XMII_MODE_RGMII) 816ad9f299aSVladimir Oltean phylink_set(mask, 1000baseT_Full); 817ad9f299aSVladimir Oltean 818ad9f299aSVladimir Oltean bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS); 819ad9f299aSVladimir Oltean bitmap_and(state->advertising, state->advertising, mask, 820ad9f299aSVladimir Oltean __ETHTOOL_LINK_MODE_MASK_NBITS); 821ad9f299aSVladimir Oltean } 822ad9f299aSVladimir Oltean 823291d1e72SVladimir Oltean /* First-generation switches have a 4-way set associative TCAM that 824291d1e72SVladimir Oltean * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of 825291d1e72SVladimir Oltean * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin). 826291d1e72SVladimir Oltean * For the placement of a newly learnt FDB entry, the switch selects the bin 827291d1e72SVladimir Oltean * based on a hash function, and the way within that bin incrementally. 828291d1e72SVladimir Oltean */ 829291d1e72SVladimir Oltean static inline int sja1105et_fdb_index(int bin, int way) 830291d1e72SVladimir Oltean { 831291d1e72SVladimir Oltean return bin * SJA1105ET_FDB_BIN_SIZE + way; 832291d1e72SVladimir Oltean } 833291d1e72SVladimir Oltean 8349dfa6911SVladimir Oltean static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin, 835291d1e72SVladimir Oltean const u8 *addr, u16 vid, 836291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry *match, 837291d1e72SVladimir Oltean int *last_unused) 838291d1e72SVladimir Oltean { 839291d1e72SVladimir Oltean int way; 840291d1e72SVladimir Oltean 841291d1e72SVladimir Oltean for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) { 842291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 843291d1e72SVladimir Oltean int index = sja1105et_fdb_index(bin, way); 844291d1e72SVladimir Oltean 845291d1e72SVladimir Oltean /* Skip unused entries, optionally marking them 846291d1e72SVladimir Oltean * into the return value 847291d1e72SVladimir Oltean */ 848291d1e72SVladimir Oltean if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 849291d1e72SVladimir Oltean index, &l2_lookup)) { 850291d1e72SVladimir Oltean if (last_unused) 851291d1e72SVladimir Oltean *last_unused = way; 852291d1e72SVladimir Oltean continue; 853291d1e72SVladimir Oltean } 854291d1e72SVladimir Oltean 855291d1e72SVladimir Oltean if (l2_lookup.macaddr == ether_addr_to_u64(addr) && 856291d1e72SVladimir Oltean l2_lookup.vlanid == vid) { 857291d1e72SVladimir Oltean if (match) 858291d1e72SVladimir Oltean *match = l2_lookup; 859291d1e72SVladimir Oltean return way; 860291d1e72SVladimir Oltean } 861291d1e72SVladimir Oltean } 862291d1e72SVladimir Oltean /* Return an invalid entry index if not found */ 863291d1e72SVladimir Oltean return -1; 864291d1e72SVladimir Oltean } 865291d1e72SVladimir Oltean 8669dfa6911SVladimir Oltean int sja1105et_fdb_add(struct dsa_switch *ds, int port, 867291d1e72SVladimir Oltean const unsigned char *addr, u16 vid) 868291d1e72SVladimir Oltean { 869291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 870291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 871291d1e72SVladimir Oltean struct device *dev = ds->dev; 872291d1e72SVladimir Oltean int last_unused = -1; 873291d1e72SVladimir Oltean int bin, way; 874291d1e72SVladimir Oltean 8759dfa6911SVladimir Oltean bin = sja1105et_fdb_hash(priv, addr, vid); 876291d1e72SVladimir Oltean 8779dfa6911SVladimir Oltean way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 878291d1e72SVladimir Oltean &l2_lookup, &last_unused); 879291d1e72SVladimir Oltean if (way >= 0) { 880291d1e72SVladimir Oltean /* We have an FDB entry. Is our port in the destination 881291d1e72SVladimir Oltean * mask? If yes, we need to do nothing. If not, we need 882291d1e72SVladimir Oltean * to rewrite the entry by adding this port to it. 883291d1e72SVladimir Oltean */ 884291d1e72SVladimir Oltean if (l2_lookup.destports & BIT(port)) 885291d1e72SVladimir Oltean return 0; 886291d1e72SVladimir Oltean l2_lookup.destports |= BIT(port); 887291d1e72SVladimir Oltean } else { 888291d1e72SVladimir Oltean int index = sja1105et_fdb_index(bin, way); 889291d1e72SVladimir Oltean 890291d1e72SVladimir Oltean /* We don't have an FDB entry. We construct a new one and 891291d1e72SVladimir Oltean * try to find a place for it within the FDB table. 892291d1e72SVladimir Oltean */ 893291d1e72SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 894291d1e72SVladimir Oltean l2_lookup.destports = BIT(port); 895291d1e72SVladimir Oltean l2_lookup.vlanid = vid; 896291d1e72SVladimir Oltean 897291d1e72SVladimir Oltean if (last_unused >= 0) { 898291d1e72SVladimir Oltean way = last_unused; 899291d1e72SVladimir Oltean } else { 900291d1e72SVladimir Oltean /* Bin is full, need to evict somebody. 901291d1e72SVladimir Oltean * Choose victim at random. If you get these messages 902291d1e72SVladimir Oltean * often, you may need to consider changing the 903291d1e72SVladimir Oltean * distribution function: 904291d1e72SVladimir Oltean * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly 905291d1e72SVladimir Oltean */ 906291d1e72SVladimir Oltean get_random_bytes(&way, sizeof(u8)); 907291d1e72SVladimir Oltean way %= SJA1105ET_FDB_BIN_SIZE; 908291d1e72SVladimir Oltean dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n", 909291d1e72SVladimir Oltean bin, addr, way); 910291d1e72SVladimir Oltean /* Evict entry */ 911291d1e72SVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 912291d1e72SVladimir Oltean index, NULL, false); 913291d1e72SVladimir Oltean } 914291d1e72SVladimir Oltean } 915291d1e72SVladimir Oltean l2_lookup.index = sja1105et_fdb_index(bin, way); 916291d1e72SVladimir Oltean 917291d1e72SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 918291d1e72SVladimir Oltean l2_lookup.index, &l2_lookup, 919291d1e72SVladimir Oltean true); 920291d1e72SVladimir Oltean } 921291d1e72SVladimir Oltean 9229dfa6911SVladimir Oltean int sja1105et_fdb_del(struct dsa_switch *ds, int port, 923291d1e72SVladimir Oltean const unsigned char *addr, u16 vid) 924291d1e72SVladimir Oltean { 925291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 926291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 927291d1e72SVladimir Oltean int index, bin, way; 928291d1e72SVladimir Oltean bool keep; 929291d1e72SVladimir Oltean 9309dfa6911SVladimir Oltean bin = sja1105et_fdb_hash(priv, addr, vid); 9319dfa6911SVladimir Oltean way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 932291d1e72SVladimir Oltean &l2_lookup, NULL); 933291d1e72SVladimir Oltean if (way < 0) 934291d1e72SVladimir Oltean return 0; 935291d1e72SVladimir Oltean index = sja1105et_fdb_index(bin, way); 936291d1e72SVladimir Oltean 937291d1e72SVladimir Oltean /* We have an FDB entry. Is our port in the destination mask? If yes, 938291d1e72SVladimir Oltean * we need to remove it. If the resulting port mask becomes empty, we 939291d1e72SVladimir Oltean * need to completely evict the FDB entry. 940291d1e72SVladimir Oltean * Otherwise we just write it back. 941291d1e72SVladimir Oltean */ 942291d1e72SVladimir Oltean l2_lookup.destports &= ~BIT(port); 9437752e937SVladimir Oltean 944291d1e72SVladimir Oltean if (l2_lookup.destports) 945291d1e72SVladimir Oltean keep = true; 946291d1e72SVladimir Oltean else 947291d1e72SVladimir Oltean keep = false; 948291d1e72SVladimir Oltean 949291d1e72SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 950291d1e72SVladimir Oltean index, &l2_lookup, keep); 951291d1e72SVladimir Oltean } 952291d1e72SVladimir Oltean 9539dfa6911SVladimir Oltean int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port, 9549dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 9559dfa6911SVladimir Oltean { 9561da73821SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 9571da73821SVladimir Oltean struct sja1105_private *priv = ds->priv; 9581da73821SVladimir Oltean int rc, i; 9591da73821SVladimir Oltean 9601da73821SVladimir Oltean /* Search for an existing entry in the FDB table */ 9611da73821SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 9621da73821SVladimir Oltean l2_lookup.vlanid = vid; 9631da73821SVladimir Oltean l2_lookup.iotag = SJA1105_S_TAG; 9641da73821SVladimir Oltean l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0); 9651da73821SVladimir Oltean l2_lookup.mask_vlanid = VLAN_VID_MASK; 9661da73821SVladimir Oltean l2_lookup.mask_iotag = BIT(0); 9671da73821SVladimir Oltean l2_lookup.destports = BIT(port); 9681da73821SVladimir Oltean 9691da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 9701da73821SVladimir Oltean SJA1105_SEARCH, &l2_lookup); 9711da73821SVladimir Oltean if (rc == 0) { 9721da73821SVladimir Oltean /* Found and this port is already in the entry's 9731da73821SVladimir Oltean * port mask => job done 9741da73821SVladimir Oltean */ 9751da73821SVladimir Oltean if (l2_lookup.destports & BIT(port)) 9761da73821SVladimir Oltean return 0; 9771da73821SVladimir Oltean /* l2_lookup.index is populated by the switch in case it 9781da73821SVladimir Oltean * found something. 9791da73821SVladimir Oltean */ 9801da73821SVladimir Oltean l2_lookup.destports |= BIT(port); 9811da73821SVladimir Oltean goto skip_finding_an_index; 9821da73821SVladimir Oltean } 9831da73821SVladimir Oltean 9841da73821SVladimir Oltean /* Not found, so try to find an unused spot in the FDB. 9851da73821SVladimir Oltean * This is slightly inefficient because the strategy is knock-knock at 9861da73821SVladimir Oltean * every possible position from 0 to 1023. 9871da73821SVladimir Oltean */ 9881da73821SVladimir Oltean for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { 9891da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 9901da73821SVladimir Oltean i, NULL); 9911da73821SVladimir Oltean if (rc < 0) 9921da73821SVladimir Oltean break; 9931da73821SVladimir Oltean } 9941da73821SVladimir Oltean if (i == SJA1105_MAX_L2_LOOKUP_COUNT) { 9951da73821SVladimir Oltean dev_err(ds->dev, "FDB is full, cannot add entry.\n"); 9961da73821SVladimir Oltean return -EINVAL; 9971da73821SVladimir Oltean } 9981da73821SVladimir Oltean l2_lookup.index = i; 9991da73821SVladimir Oltean 10001da73821SVladimir Oltean skip_finding_an_index: 10011da73821SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 10021da73821SVladimir Oltean l2_lookup.index, &l2_lookup, 10031da73821SVladimir Oltean true); 10049dfa6911SVladimir Oltean } 10059dfa6911SVladimir Oltean 10069dfa6911SVladimir Oltean int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port, 10079dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 10089dfa6911SVladimir Oltean { 10091da73821SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 10101da73821SVladimir Oltean struct sja1105_private *priv = ds->priv; 10111da73821SVladimir Oltean bool keep; 10121da73821SVladimir Oltean int rc; 10131da73821SVladimir Oltean 10141da73821SVladimir Oltean l2_lookup.macaddr = ether_addr_to_u64(addr); 10151da73821SVladimir Oltean l2_lookup.vlanid = vid; 10161da73821SVladimir Oltean l2_lookup.iotag = SJA1105_S_TAG; 10171da73821SVladimir Oltean l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0); 10181da73821SVladimir Oltean l2_lookup.mask_vlanid = VLAN_VID_MASK; 10191da73821SVladimir Oltean l2_lookup.mask_iotag = BIT(0); 10201da73821SVladimir Oltean l2_lookup.destports = BIT(port); 10211da73821SVladimir Oltean 10221da73821SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 10231da73821SVladimir Oltean SJA1105_SEARCH, &l2_lookup); 10241da73821SVladimir Oltean if (rc < 0) 10251da73821SVladimir Oltean return 0; 10261da73821SVladimir Oltean 10271da73821SVladimir Oltean l2_lookup.destports &= ~BIT(port); 10281da73821SVladimir Oltean 10291da73821SVladimir Oltean /* Decide whether we remove just this port from the FDB entry, 10301da73821SVladimir Oltean * or if we remove it completely. 10311da73821SVladimir Oltean */ 10321da73821SVladimir Oltean if (l2_lookup.destports) 10331da73821SVladimir Oltean keep = true; 10341da73821SVladimir Oltean else 10351da73821SVladimir Oltean keep = false; 10361da73821SVladimir Oltean 10371da73821SVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, 10381da73821SVladimir Oltean l2_lookup.index, &l2_lookup, keep); 10399dfa6911SVladimir Oltean } 10409dfa6911SVladimir Oltean 10419dfa6911SVladimir Oltean static int sja1105_fdb_add(struct dsa_switch *ds, int port, 10429dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 10439dfa6911SVladimir Oltean { 10449dfa6911SVladimir Oltean struct sja1105_private *priv = ds->priv; 104593647594SVladimir Oltean int rc; 10469dfa6911SVladimir Oltean 104793647594SVladimir Oltean /* Since we make use of VLANs even when the bridge core doesn't tell us 104893647594SVladimir Oltean * to, translate these FDB entries into the correct dsa_8021q ones. 104993647594SVladimir Oltean */ 105093647594SVladimir Oltean if (!dsa_port_is_vlan_filtering(&ds->ports[port])) { 105193647594SVladimir Oltean unsigned int upstream = dsa_upstream_port(priv->ds, port); 105293647594SVladimir Oltean u16 tx_vid = dsa_8021q_tx_vid(ds, port); 105393647594SVladimir Oltean u16 rx_vid = dsa_8021q_rx_vid(ds, port); 105493647594SVladimir Oltean 105593647594SVladimir Oltean rc = priv->info->fdb_add_cmd(ds, port, addr, tx_vid); 105693647594SVladimir Oltean if (rc < 0) 105793647594SVladimir Oltean return rc; 105893647594SVladimir Oltean return priv->info->fdb_add_cmd(ds, upstream, addr, rx_vid); 105993647594SVladimir Oltean } 10609dfa6911SVladimir Oltean return priv->info->fdb_add_cmd(ds, port, addr, vid); 10619dfa6911SVladimir Oltean } 10629dfa6911SVladimir Oltean 10639dfa6911SVladimir Oltean static int sja1105_fdb_del(struct dsa_switch *ds, int port, 10649dfa6911SVladimir Oltean const unsigned char *addr, u16 vid) 10659dfa6911SVladimir Oltean { 10669dfa6911SVladimir Oltean struct sja1105_private *priv = ds->priv; 106793647594SVladimir Oltean int rc; 10689dfa6911SVladimir Oltean 106993647594SVladimir Oltean /* Since we make use of VLANs even when the bridge core doesn't tell us 107093647594SVladimir Oltean * to, translate these FDB entries into the correct dsa_8021q ones. 107193647594SVladimir Oltean */ 107293647594SVladimir Oltean if (!dsa_port_is_vlan_filtering(&ds->ports[port])) { 107393647594SVladimir Oltean unsigned int upstream = dsa_upstream_port(priv->ds, port); 107493647594SVladimir Oltean u16 tx_vid = dsa_8021q_tx_vid(ds, port); 107593647594SVladimir Oltean u16 rx_vid = dsa_8021q_rx_vid(ds, port); 107693647594SVladimir Oltean 107793647594SVladimir Oltean rc = priv->info->fdb_del_cmd(ds, port, addr, tx_vid); 107893647594SVladimir Oltean if (rc < 0) 107993647594SVladimir Oltean return rc; 108093647594SVladimir Oltean return priv->info->fdb_del_cmd(ds, upstream, addr, rx_vid); 108193647594SVladimir Oltean } 10829dfa6911SVladimir Oltean return priv->info->fdb_del_cmd(ds, port, addr, vid); 10839dfa6911SVladimir Oltean } 10849dfa6911SVladimir Oltean 1085291d1e72SVladimir Oltean static int sja1105_fdb_dump(struct dsa_switch *ds, int port, 1086291d1e72SVladimir Oltean dsa_fdb_dump_cb_t *cb, void *data) 1087291d1e72SVladimir Oltean { 1088291d1e72SVladimir Oltean struct sja1105_private *priv = ds->priv; 1089291d1e72SVladimir Oltean struct device *dev = ds->dev; 1090291d1e72SVladimir Oltean int i; 1091291d1e72SVladimir Oltean 1092291d1e72SVladimir Oltean for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { 1093291d1e72SVladimir Oltean struct sja1105_l2_lookup_entry l2_lookup = {0}; 1094291d1e72SVladimir Oltean u8 macaddr[ETH_ALEN]; 1095291d1e72SVladimir Oltean int rc; 1096291d1e72SVladimir Oltean 1097291d1e72SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, 1098291d1e72SVladimir Oltean i, &l2_lookup); 1099291d1e72SVladimir Oltean /* No fdb entry at i, not an issue */ 1100def84604SVladimir Oltean if (rc == -ENOENT) 1101291d1e72SVladimir Oltean continue; 1102291d1e72SVladimir Oltean if (rc) { 1103291d1e72SVladimir Oltean dev_err(dev, "Failed to dump FDB: %d\n", rc); 1104291d1e72SVladimir Oltean return rc; 1105291d1e72SVladimir Oltean } 1106291d1e72SVladimir Oltean 1107291d1e72SVladimir Oltean /* FDB dump callback is per port. This means we have to 1108291d1e72SVladimir Oltean * disregard a valid entry if it's not for this port, even if 1109291d1e72SVladimir Oltean * only to revisit it later. This is inefficient because the 1110291d1e72SVladimir Oltean * 1024-sized FDB table needs to be traversed 4 times through 1111291d1e72SVladimir Oltean * SPI during a 'bridge fdb show' command. 1112291d1e72SVladimir Oltean */ 1113291d1e72SVladimir Oltean if (!(l2_lookup.destports & BIT(port))) 1114291d1e72SVladimir Oltean continue; 1115291d1e72SVladimir Oltean u64_to_ether_addr(l2_lookup.macaddr, macaddr); 111693647594SVladimir Oltean 111793647594SVladimir Oltean /* We need to hide the dsa_8021q VLAN from the user. 111893647594SVladimir Oltean * Convert the TX VID into the pvid that is active in 111993647594SVladimir Oltean * standalone and non-vlan_filtering modes, aka 1. 112093647594SVladimir Oltean * The RX VID is applied on the CPU port, which is not seen by 112193647594SVladimir Oltean * the bridge core anyway, so there's nothing to hide. 112293647594SVladimir Oltean */ 112393647594SVladimir Oltean if (!dsa_port_is_vlan_filtering(&ds->ports[port])) 112493647594SVladimir Oltean l2_lookup.vlanid = 1; 1125291d1e72SVladimir Oltean cb(macaddr, l2_lookup.vlanid, false, data); 1126291d1e72SVladimir Oltean } 1127291d1e72SVladimir Oltean return 0; 1128291d1e72SVladimir Oltean } 1129291d1e72SVladimir Oltean 1130291d1e72SVladimir Oltean /* This callback needs to be present */ 1131291d1e72SVladimir Oltean static int sja1105_mdb_prepare(struct dsa_switch *ds, int port, 1132291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1133291d1e72SVladimir Oltean { 1134291d1e72SVladimir Oltean return 0; 1135291d1e72SVladimir Oltean } 1136291d1e72SVladimir Oltean 1137291d1e72SVladimir Oltean static void sja1105_mdb_add(struct dsa_switch *ds, int port, 1138291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1139291d1e72SVladimir Oltean { 1140291d1e72SVladimir Oltean sja1105_fdb_add(ds, port, mdb->addr, mdb->vid); 1141291d1e72SVladimir Oltean } 1142291d1e72SVladimir Oltean 1143291d1e72SVladimir Oltean static int sja1105_mdb_del(struct dsa_switch *ds, int port, 1144291d1e72SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 1145291d1e72SVladimir Oltean { 1146291d1e72SVladimir Oltean return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid); 1147291d1e72SVladimir Oltean } 1148291d1e72SVladimir Oltean 11498aa9ebccSVladimir Oltean static int sja1105_bridge_member(struct dsa_switch *ds, int port, 11508aa9ebccSVladimir Oltean struct net_device *br, bool member) 11518aa9ebccSVladimir Oltean { 11528aa9ebccSVladimir Oltean struct sja1105_l2_forwarding_entry *l2_fwd; 11538aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 11548aa9ebccSVladimir Oltean int i, rc; 11558aa9ebccSVladimir Oltean 11568aa9ebccSVladimir Oltean l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries; 11578aa9ebccSVladimir Oltean 11588aa9ebccSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 11598aa9ebccSVladimir Oltean /* Add this port to the forwarding matrix of the 11608aa9ebccSVladimir Oltean * other ports in the same bridge, and viceversa. 11618aa9ebccSVladimir Oltean */ 11628aa9ebccSVladimir Oltean if (!dsa_is_user_port(ds, i)) 11638aa9ebccSVladimir Oltean continue; 11648aa9ebccSVladimir Oltean /* For the ports already under the bridge, only one thing needs 11658aa9ebccSVladimir Oltean * to be done, and that is to add this port to their 11668aa9ebccSVladimir Oltean * reachability domain. So we can perform the SPI write for 11678aa9ebccSVladimir Oltean * them immediately. However, for this port itself (the one 11688aa9ebccSVladimir Oltean * that is new to the bridge), we need to add all other ports 11698aa9ebccSVladimir Oltean * to its reachability domain. So we do that incrementally in 11708aa9ebccSVladimir Oltean * this loop, and perform the SPI write only at the end, once 11718aa9ebccSVladimir Oltean * the domain contains all other bridge ports. 11728aa9ebccSVladimir Oltean */ 11738aa9ebccSVladimir Oltean if (i == port) 11748aa9ebccSVladimir Oltean continue; 11758aa9ebccSVladimir Oltean if (dsa_to_port(ds, i)->bridge_dev != br) 11768aa9ebccSVladimir Oltean continue; 11778aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2_fwd, i, port, member); 11788aa9ebccSVladimir Oltean sja1105_port_allow_traffic(l2_fwd, port, i, member); 11798aa9ebccSVladimir Oltean 11808aa9ebccSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 11818aa9ebccSVladimir Oltean i, &l2_fwd[i], true); 11828aa9ebccSVladimir Oltean if (rc < 0) 11838aa9ebccSVladimir Oltean return rc; 11848aa9ebccSVladimir Oltean } 11858aa9ebccSVladimir Oltean 11868aa9ebccSVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING, 11878aa9ebccSVladimir Oltean port, &l2_fwd[port], true); 11888aa9ebccSVladimir Oltean } 11898aa9ebccSVladimir Oltean 1190640f763fSVladimir Oltean static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port, 1191640f763fSVladimir Oltean u8 state) 1192640f763fSVladimir Oltean { 1193640f763fSVladimir Oltean struct sja1105_private *priv = ds->priv; 1194640f763fSVladimir Oltean struct sja1105_mac_config_entry *mac; 1195640f763fSVladimir Oltean 1196640f763fSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 1197640f763fSVladimir Oltean 1198640f763fSVladimir Oltean switch (state) { 1199640f763fSVladimir Oltean case BR_STATE_DISABLED: 1200640f763fSVladimir Oltean case BR_STATE_BLOCKING: 1201640f763fSVladimir Oltean /* From UM10944 description of DRPDTAG (why put this there?): 1202640f763fSVladimir Oltean * "Management traffic flows to the port regardless of the state 1203640f763fSVladimir Oltean * of the INGRESS flag". So BPDUs are still be allowed to pass. 1204640f763fSVladimir Oltean * At the moment no difference between DISABLED and BLOCKING. 1205640f763fSVladimir Oltean */ 1206640f763fSVladimir Oltean mac[port].ingress = false; 1207640f763fSVladimir Oltean mac[port].egress = false; 1208640f763fSVladimir Oltean mac[port].dyn_learn = false; 1209640f763fSVladimir Oltean break; 1210640f763fSVladimir Oltean case BR_STATE_LISTENING: 1211640f763fSVladimir Oltean mac[port].ingress = true; 1212640f763fSVladimir Oltean mac[port].egress = false; 1213640f763fSVladimir Oltean mac[port].dyn_learn = false; 1214640f763fSVladimir Oltean break; 1215640f763fSVladimir Oltean case BR_STATE_LEARNING: 1216640f763fSVladimir Oltean mac[port].ingress = true; 1217640f763fSVladimir Oltean mac[port].egress = false; 1218640f763fSVladimir Oltean mac[port].dyn_learn = true; 1219640f763fSVladimir Oltean break; 1220640f763fSVladimir Oltean case BR_STATE_FORWARDING: 1221640f763fSVladimir Oltean mac[port].ingress = true; 1222640f763fSVladimir Oltean mac[port].egress = true; 1223640f763fSVladimir Oltean mac[port].dyn_learn = true; 1224640f763fSVladimir Oltean break; 1225640f763fSVladimir Oltean default: 1226640f763fSVladimir Oltean dev_err(ds->dev, "invalid STP state: %d\n", state); 1227640f763fSVladimir Oltean return; 1228640f763fSVladimir Oltean } 1229640f763fSVladimir Oltean 1230640f763fSVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 1231640f763fSVladimir Oltean &mac[port], true); 1232640f763fSVladimir Oltean } 1233640f763fSVladimir Oltean 12348aa9ebccSVladimir Oltean static int sja1105_bridge_join(struct dsa_switch *ds, int port, 12358aa9ebccSVladimir Oltean struct net_device *br) 12368aa9ebccSVladimir Oltean { 12378aa9ebccSVladimir Oltean return sja1105_bridge_member(ds, port, br, true); 12388aa9ebccSVladimir Oltean } 12398aa9ebccSVladimir Oltean 12408aa9ebccSVladimir Oltean static void sja1105_bridge_leave(struct dsa_switch *ds, int port, 12418aa9ebccSVladimir Oltean struct net_device *br) 12428aa9ebccSVladimir Oltean { 12438aa9ebccSVladimir Oltean sja1105_bridge_member(ds, port, br, false); 12448aa9ebccSVladimir Oltean } 12458aa9ebccSVladimir Oltean 1246640f763fSVladimir Oltean static u8 sja1105_stp_state_get(struct sja1105_private *priv, int port) 1247640f763fSVladimir Oltean { 1248640f763fSVladimir Oltean struct sja1105_mac_config_entry *mac; 1249640f763fSVladimir Oltean 1250640f763fSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 1251640f763fSVladimir Oltean 1252640f763fSVladimir Oltean if (!mac[port].ingress && !mac[port].egress && !mac[port].dyn_learn) 1253640f763fSVladimir Oltean return BR_STATE_BLOCKING; 1254640f763fSVladimir Oltean if (mac[port].ingress && !mac[port].egress && !mac[port].dyn_learn) 1255640f763fSVladimir Oltean return BR_STATE_LISTENING; 1256640f763fSVladimir Oltean if (mac[port].ingress && !mac[port].egress && mac[port].dyn_learn) 1257640f763fSVladimir Oltean return BR_STATE_LEARNING; 1258640f763fSVladimir Oltean if (mac[port].ingress && mac[port].egress && mac[port].dyn_learn) 1259640f763fSVladimir Oltean return BR_STATE_FORWARDING; 12603b2c4f4dSVladimir Oltean /* This is really an error condition if the MAC was in none of the STP 12613b2c4f4dSVladimir Oltean * states above. But treating the port as disabled does nothing, which 12623b2c4f4dSVladimir Oltean * is adequate, and it also resets the MAC to a known state later on. 12633b2c4f4dSVladimir Oltean */ 12643b2c4f4dSVladimir Oltean return BR_STATE_DISABLED; 1265640f763fSVladimir Oltean } 1266640f763fSVladimir Oltean 12676666cebcSVladimir Oltean /* For situations where we need to change a setting at runtime that is only 12686666cebcSVladimir Oltean * available through the static configuration, resetting the switch in order 12696666cebcSVladimir Oltean * to upload the new static config is unavoidable. Back up the settings we 12706666cebcSVladimir Oltean * modify at runtime (currently only MAC) and restore them after uploading, 12716666cebcSVladimir Oltean * such that this operation is relatively seamless. 12726666cebcSVladimir Oltean */ 12736666cebcSVladimir Oltean static int sja1105_static_config_reload(struct sja1105_private *priv) 12746666cebcSVladimir Oltean { 12756666cebcSVladimir Oltean struct sja1105_mac_config_entry *mac; 12766666cebcSVladimir Oltean int speed_mbps[SJA1105_NUM_PORTS]; 1277640f763fSVladimir Oltean u8 stp_state[SJA1105_NUM_PORTS]; 12786666cebcSVladimir Oltean int rc, i; 12796666cebcSVladimir Oltean 12806666cebcSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 12816666cebcSVladimir Oltean 12826666cebcSVladimir Oltean /* Back up settings changed by sja1105_adjust_port_config and 1283640f763fSVladimir Oltean * sja1105_bridge_stp_state_set and restore their defaults. 12846666cebcSVladimir Oltean */ 12856666cebcSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 12866666cebcSVladimir Oltean speed_mbps[i] = sja1105_speed[mac[i].speed]; 12876666cebcSVladimir Oltean mac[i].speed = SJA1105_SPEED_AUTO; 1288640f763fSVladimir Oltean if (i == dsa_upstream_port(priv->ds, i)) { 1289640f763fSVladimir Oltean mac[i].ingress = true; 1290640f763fSVladimir Oltean mac[i].egress = true; 1291640f763fSVladimir Oltean mac[i].dyn_learn = true; 1292640f763fSVladimir Oltean } else { 1293640f763fSVladimir Oltean stp_state[i] = sja1105_stp_state_get(priv, i); 1294640f763fSVladimir Oltean mac[i].ingress = false; 1295640f763fSVladimir Oltean mac[i].egress = false; 1296640f763fSVladimir Oltean mac[i].dyn_learn = false; 1297640f763fSVladimir Oltean } 12986666cebcSVladimir Oltean } 12996666cebcSVladimir Oltean 13006666cebcSVladimir Oltean /* Reset switch and send updated static configuration */ 13016666cebcSVladimir Oltean rc = sja1105_static_config_upload(priv); 13026666cebcSVladimir Oltean if (rc < 0) 13036666cebcSVladimir Oltean goto out; 13046666cebcSVladimir Oltean 13056666cebcSVladimir Oltean /* Configure the CGU (PLLs) for MII and RMII PHYs. 13066666cebcSVladimir Oltean * For these interfaces there is no dynamic configuration 13076666cebcSVladimir Oltean * needed, since PLLs have same settings at all speeds. 13086666cebcSVladimir Oltean */ 13096666cebcSVladimir Oltean rc = sja1105_clocking_setup(priv); 13106666cebcSVladimir Oltean if (rc < 0) 13116666cebcSVladimir Oltean goto out; 13126666cebcSVladimir Oltean 13136666cebcSVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 1314*c44d0535SVladimir Oltean bool enabled = (speed_mbps[i] != SPEED_UNKNOWN); 13156666cebcSVladimir Oltean 1316640f763fSVladimir Oltean if (i != dsa_upstream_port(priv->ds, i)) 1317640f763fSVladimir Oltean sja1105_bridge_stp_state_set(priv->ds, i, stp_state[i]); 1318640f763fSVladimir Oltean 13196666cebcSVladimir Oltean rc = sja1105_adjust_port_config(priv, i, speed_mbps[i], 13206666cebcSVladimir Oltean enabled); 13216666cebcSVladimir Oltean if (rc < 0) 13226666cebcSVladimir Oltean goto out; 13236666cebcSVladimir Oltean } 13246666cebcSVladimir Oltean out: 13256666cebcSVladimir Oltean return rc; 13266666cebcSVladimir Oltean } 13276666cebcSVladimir Oltean 13286666cebcSVladimir Oltean static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid) 13296666cebcSVladimir Oltean { 13306666cebcSVladimir Oltean struct sja1105_mac_config_entry *mac; 13316666cebcSVladimir Oltean 13326666cebcSVladimir Oltean mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 13336666cebcSVladimir Oltean 13346666cebcSVladimir Oltean mac[port].vlanid = pvid; 13356666cebcSVladimir Oltean 13366666cebcSVladimir Oltean return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 13376666cebcSVladimir Oltean &mac[port], true); 13386666cebcSVladimir Oltean } 13396666cebcSVladimir Oltean 13406666cebcSVladimir Oltean static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid) 13416666cebcSVladimir Oltean { 13426666cebcSVladimir Oltean struct sja1105_vlan_lookup_entry *vlan; 13436666cebcSVladimir Oltean int count, i; 13446666cebcSVladimir Oltean 13456666cebcSVladimir Oltean vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries; 13466666cebcSVladimir Oltean count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count; 13476666cebcSVladimir Oltean 13486666cebcSVladimir Oltean for (i = 0; i < count; i++) 13496666cebcSVladimir Oltean if (vlan[i].vlanid == vid) 13506666cebcSVladimir Oltean return i; 13516666cebcSVladimir Oltean 13526666cebcSVladimir Oltean /* Return an invalid entry index if not found */ 13536666cebcSVladimir Oltean return -1; 13546666cebcSVladimir Oltean } 13556666cebcSVladimir Oltean 13566666cebcSVladimir Oltean static int sja1105_vlan_apply(struct sja1105_private *priv, int port, u16 vid, 13576666cebcSVladimir Oltean bool enabled, bool untagged) 13586666cebcSVladimir Oltean { 13596666cebcSVladimir Oltean struct sja1105_vlan_lookup_entry *vlan; 13606666cebcSVladimir Oltean struct sja1105_table *table; 13616666cebcSVladimir Oltean bool keep = true; 13626666cebcSVladimir Oltean int match, rc; 13636666cebcSVladimir Oltean 13646666cebcSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 13656666cebcSVladimir Oltean 13666666cebcSVladimir Oltean match = sja1105_is_vlan_configured(priv, vid); 13676666cebcSVladimir Oltean if (match < 0) { 13686666cebcSVladimir Oltean /* Can't delete a missing entry. */ 13696666cebcSVladimir Oltean if (!enabled) 13706666cebcSVladimir Oltean return 0; 13716666cebcSVladimir Oltean rc = sja1105_table_resize(table, table->entry_count + 1); 13726666cebcSVladimir Oltean if (rc) 13736666cebcSVladimir Oltean return rc; 13746666cebcSVladimir Oltean match = table->entry_count - 1; 13756666cebcSVladimir Oltean } 13766666cebcSVladimir Oltean /* Assign pointer after the resize (it's new memory) */ 13776666cebcSVladimir Oltean vlan = table->entries; 13786666cebcSVladimir Oltean vlan[match].vlanid = vid; 13796666cebcSVladimir Oltean if (enabled) { 13806666cebcSVladimir Oltean vlan[match].vlan_bc |= BIT(port); 13816666cebcSVladimir Oltean vlan[match].vmemb_port |= BIT(port); 13826666cebcSVladimir Oltean } else { 13836666cebcSVladimir Oltean vlan[match].vlan_bc &= ~BIT(port); 13846666cebcSVladimir Oltean vlan[match].vmemb_port &= ~BIT(port); 13856666cebcSVladimir Oltean } 13866666cebcSVladimir Oltean /* Also unset tag_port if removing this VLAN was requested, 13876666cebcSVladimir Oltean * just so we don't have a confusing bitmap (no practical purpose). 13886666cebcSVladimir Oltean */ 13896666cebcSVladimir Oltean if (untagged || !enabled) 13906666cebcSVladimir Oltean vlan[match].tag_port &= ~BIT(port); 13916666cebcSVladimir Oltean else 13926666cebcSVladimir Oltean vlan[match].tag_port |= BIT(port); 13936666cebcSVladimir Oltean /* If there's no port left as member of this VLAN, 13946666cebcSVladimir Oltean * it's time for it to go. 13956666cebcSVladimir Oltean */ 13966666cebcSVladimir Oltean if (!vlan[match].vmemb_port) 13976666cebcSVladimir Oltean keep = false; 13986666cebcSVladimir Oltean 13996666cebcSVladimir Oltean dev_dbg(priv->ds->dev, 14006666cebcSVladimir Oltean "%s: port %d, vid %llu, broadcast domain 0x%llx, " 14016666cebcSVladimir Oltean "port members 0x%llx, tagged ports 0x%llx, keep %d\n", 14026666cebcSVladimir Oltean __func__, port, vlan[match].vlanid, vlan[match].vlan_bc, 14036666cebcSVladimir Oltean vlan[match].vmemb_port, vlan[match].tag_port, keep); 14046666cebcSVladimir Oltean 14056666cebcSVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid, 14066666cebcSVladimir Oltean &vlan[match], keep); 14076666cebcSVladimir Oltean if (rc < 0) 14086666cebcSVladimir Oltean return rc; 14096666cebcSVladimir Oltean 14106666cebcSVladimir Oltean if (!keep) 14116666cebcSVladimir Oltean return sja1105_table_delete_entry(table, match); 14126666cebcSVladimir Oltean 14136666cebcSVladimir Oltean return 0; 14146666cebcSVladimir Oltean } 14156666cebcSVladimir Oltean 1416227d07a0SVladimir Oltean static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled) 1417227d07a0SVladimir Oltean { 1418227d07a0SVladimir Oltean int rc, i; 1419227d07a0SVladimir Oltean 1420227d07a0SVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 1421227d07a0SVladimir Oltean rc = dsa_port_setup_8021q_tagging(ds, i, enabled); 1422227d07a0SVladimir Oltean if (rc < 0) { 1423227d07a0SVladimir Oltean dev_err(ds->dev, "Failed to setup VLAN tagging for port %d: %d\n", 1424227d07a0SVladimir Oltean i, rc); 1425227d07a0SVladimir Oltean return rc; 1426227d07a0SVladimir Oltean } 1427227d07a0SVladimir Oltean } 1428227d07a0SVladimir Oltean dev_info(ds->dev, "%s switch tagging\n", 1429227d07a0SVladimir Oltean enabled ? "Enabled" : "Disabled"); 1430227d07a0SVladimir Oltean return 0; 1431227d07a0SVladimir Oltean } 1432227d07a0SVladimir Oltean 14338aa9ebccSVladimir Oltean static enum dsa_tag_protocol 14348aa9ebccSVladimir Oltean sja1105_get_tag_protocol(struct dsa_switch *ds, int port) 14358aa9ebccSVladimir Oltean { 1436227d07a0SVladimir Oltean return DSA_TAG_PROTO_SJA1105; 14378aa9ebccSVladimir Oltean } 14388aa9ebccSVladimir Oltean 14396666cebcSVladimir Oltean /* This callback needs to be present */ 14406666cebcSVladimir Oltean static int sja1105_vlan_prepare(struct dsa_switch *ds, int port, 14416666cebcSVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 14426666cebcSVladimir Oltean { 14436666cebcSVladimir Oltean return 0; 14446666cebcSVladimir Oltean } 14456666cebcSVladimir Oltean 1446070ca3bbSVladimir Oltean /* The TPID setting belongs to the General Parameters table, 1447070ca3bbSVladimir Oltean * which can only be partially reconfigured at runtime (and not the TPID). 1448070ca3bbSVladimir Oltean * So a switch reset is required. 1449070ca3bbSVladimir Oltean */ 14506666cebcSVladimir Oltean static int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled) 14516666cebcSVladimir Oltean { 1452070ca3bbSVladimir Oltean struct sja1105_general_params_entry *general_params; 14536666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 1454070ca3bbSVladimir Oltean struct sja1105_table *table; 1455070ca3bbSVladimir Oltean u16 tpid, tpid2; 14566666cebcSVladimir Oltean int rc; 14576666cebcSVladimir Oltean 1458070ca3bbSVladimir Oltean if (enabled) { 14596666cebcSVladimir Oltean /* Enable VLAN filtering. */ 1460f9a1a764SVladimir Oltean tpid = ETH_P_8021AD; 1461f9a1a764SVladimir Oltean tpid2 = ETH_P_8021Q; 1462070ca3bbSVladimir Oltean } else { 14636666cebcSVladimir Oltean /* Disable VLAN filtering. */ 1464070ca3bbSVladimir Oltean tpid = ETH_P_SJA1105; 1465070ca3bbSVladimir Oltean tpid2 = ETH_P_SJA1105; 1466070ca3bbSVladimir Oltean } 1467070ca3bbSVladimir Oltean 1468070ca3bbSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 1469070ca3bbSVladimir Oltean general_params = table->entries; 1470f9a1a764SVladimir Oltean /* EtherType used to identify outer tagged (S-tag) VLAN traffic */ 1471070ca3bbSVladimir Oltean general_params->tpid = tpid; 1472f9a1a764SVladimir Oltean /* EtherType used to identify inner tagged (C-tag) VLAN traffic */ 1473070ca3bbSVladimir Oltean general_params->tpid2 = tpid2; 147442824463SVladimir Oltean /* When VLAN filtering is on, we need to at least be able to 147542824463SVladimir Oltean * decode management traffic through the "backup plan". 147642824463SVladimir Oltean */ 147742824463SVladimir Oltean general_params->incl_srcpt1 = enabled; 147842824463SVladimir Oltean general_params->incl_srcpt0 = enabled; 1479070ca3bbSVladimir Oltean 1480070ca3bbSVladimir Oltean rc = sja1105_static_config_reload(priv); 14816666cebcSVladimir Oltean if (rc) 14826666cebcSVladimir Oltean dev_err(ds->dev, "Failed to change VLAN Ethertype\n"); 14836666cebcSVladimir Oltean 1484227d07a0SVladimir Oltean /* Switch port identification based on 802.1Q is only passable 1485227d07a0SVladimir Oltean * if we are not under a vlan_filtering bridge. So make sure 1486227d07a0SVladimir Oltean * the two configurations are mutually exclusive. 1487227d07a0SVladimir Oltean */ 1488227d07a0SVladimir Oltean return sja1105_setup_8021q_tagging(ds, !enabled); 14896666cebcSVladimir Oltean } 14906666cebcSVladimir Oltean 14916666cebcSVladimir Oltean static void sja1105_vlan_add(struct dsa_switch *ds, int port, 14926666cebcSVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 14936666cebcSVladimir Oltean { 14946666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 14956666cebcSVladimir Oltean u16 vid; 14966666cebcSVladimir Oltean int rc; 14976666cebcSVladimir Oltean 14986666cebcSVladimir Oltean for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 14996666cebcSVladimir Oltean rc = sja1105_vlan_apply(priv, port, vid, true, vlan->flags & 15006666cebcSVladimir Oltean BRIDGE_VLAN_INFO_UNTAGGED); 15016666cebcSVladimir Oltean if (rc < 0) { 15026666cebcSVladimir Oltean dev_err(ds->dev, "Failed to add VLAN %d to port %d: %d\n", 15036666cebcSVladimir Oltean vid, port, rc); 15046666cebcSVladimir Oltean return; 15056666cebcSVladimir Oltean } 15066666cebcSVladimir Oltean if (vlan->flags & BRIDGE_VLAN_INFO_PVID) { 15076666cebcSVladimir Oltean rc = sja1105_pvid_apply(ds->priv, port, vid); 15086666cebcSVladimir Oltean if (rc < 0) { 15096666cebcSVladimir Oltean dev_err(ds->dev, "Failed to set pvid %d on port %d: %d\n", 15106666cebcSVladimir Oltean vid, port, rc); 15116666cebcSVladimir Oltean return; 15126666cebcSVladimir Oltean } 15136666cebcSVladimir Oltean } 15146666cebcSVladimir Oltean } 15156666cebcSVladimir Oltean } 15166666cebcSVladimir Oltean 15176666cebcSVladimir Oltean static int sja1105_vlan_del(struct dsa_switch *ds, int port, 15186666cebcSVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 15196666cebcSVladimir Oltean { 15206666cebcSVladimir Oltean struct sja1105_private *priv = ds->priv; 15216666cebcSVladimir Oltean u16 vid; 15226666cebcSVladimir Oltean int rc; 15236666cebcSVladimir Oltean 15246666cebcSVladimir Oltean for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 15256666cebcSVladimir Oltean rc = sja1105_vlan_apply(priv, port, vid, false, vlan->flags & 15266666cebcSVladimir Oltean BRIDGE_VLAN_INFO_UNTAGGED); 15276666cebcSVladimir Oltean if (rc < 0) { 15286666cebcSVladimir Oltean dev_err(ds->dev, "Failed to remove VLAN %d from port %d: %d\n", 15296666cebcSVladimir Oltean vid, port, rc); 15306666cebcSVladimir Oltean return rc; 15316666cebcSVladimir Oltean } 15326666cebcSVladimir Oltean } 15336666cebcSVladimir Oltean return 0; 15346666cebcSVladimir Oltean } 15356666cebcSVladimir Oltean 15368aa9ebccSVladimir Oltean /* The programming model for the SJA1105 switch is "all-at-once" via static 15378aa9ebccSVladimir Oltean * configuration tables. Some of these can be dynamically modified at runtime, 15388aa9ebccSVladimir Oltean * but not the xMII mode parameters table. 15398aa9ebccSVladimir Oltean * Furthermode, some PHYs may not have crystals for generating their clocks 15408aa9ebccSVladimir Oltean * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's 15418aa9ebccSVladimir Oltean * ref_clk pin. So port clocking needs to be initialized early, before 15428aa9ebccSVladimir Oltean * connecting to PHYs is attempted, otherwise they won't respond through MDIO. 15438aa9ebccSVladimir Oltean * Setting correct PHY link speed does not matter now. 15448aa9ebccSVladimir Oltean * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY 15458aa9ebccSVladimir Oltean * bindings are not yet parsed by DSA core. We need to parse early so that we 15468aa9ebccSVladimir Oltean * can populate the xMII mode parameters table. 15478aa9ebccSVladimir Oltean */ 15488aa9ebccSVladimir Oltean static int sja1105_setup(struct dsa_switch *ds) 15498aa9ebccSVladimir Oltean { 15508aa9ebccSVladimir Oltean struct sja1105_dt_port ports[SJA1105_NUM_PORTS]; 15518aa9ebccSVladimir Oltean struct sja1105_private *priv = ds->priv; 15528aa9ebccSVladimir Oltean int rc; 15538aa9ebccSVladimir Oltean 15548aa9ebccSVladimir Oltean rc = sja1105_parse_dt(priv, ports); 15558aa9ebccSVladimir Oltean if (rc < 0) { 15568aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to parse DT: %d\n", rc); 15578aa9ebccSVladimir Oltean return rc; 15588aa9ebccSVladimir Oltean } 1559f5b8631cSVladimir Oltean 1560f5b8631cSVladimir Oltean /* Error out early if internal delays are required through DT 1561f5b8631cSVladimir Oltean * and we can't apply them. 1562f5b8631cSVladimir Oltean */ 1563f5b8631cSVladimir Oltean rc = sja1105_parse_rgmii_delays(priv, ports); 1564f5b8631cSVladimir Oltean if (rc < 0) { 1565f5b8631cSVladimir Oltean dev_err(ds->dev, "RGMII delay not supported\n"); 1566f5b8631cSVladimir Oltean return rc; 1567f5b8631cSVladimir Oltean } 1568f5b8631cSVladimir Oltean 1569bb77f36aSVladimir Oltean rc = sja1105_ptp_clock_register(priv); 1570bb77f36aSVladimir Oltean if (rc < 0) { 1571bb77f36aSVladimir Oltean dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc); 1572bb77f36aSVladimir Oltean return rc; 1573bb77f36aSVladimir Oltean } 15748aa9ebccSVladimir Oltean /* Create and send configuration down to device */ 15758aa9ebccSVladimir Oltean rc = sja1105_static_config_load(priv, ports); 15768aa9ebccSVladimir Oltean if (rc < 0) { 15778aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to load static config: %d\n", rc); 15788aa9ebccSVladimir Oltean return rc; 15798aa9ebccSVladimir Oltean } 15808aa9ebccSVladimir Oltean /* Configure the CGU (PHY link modes and speeds) */ 15818aa9ebccSVladimir Oltean rc = sja1105_clocking_setup(priv); 15828aa9ebccSVladimir Oltean if (rc < 0) { 15838aa9ebccSVladimir Oltean dev_err(ds->dev, "Failed to configure MII clocking: %d\n", rc); 15848aa9ebccSVladimir Oltean return rc; 15858aa9ebccSVladimir Oltean } 15866666cebcSVladimir Oltean /* On SJA1105, VLAN filtering per se is always enabled in hardware. 15876666cebcSVladimir Oltean * The only thing we can do to disable it is lie about what the 802.1Q 15886666cebcSVladimir Oltean * EtherType is. 15896666cebcSVladimir Oltean * So it will still try to apply VLAN filtering, but all ingress 15906666cebcSVladimir Oltean * traffic (except frames received with EtherType of ETH_P_SJA1105) 15916666cebcSVladimir Oltean * will be internally tagged with a distorted VLAN header where the 15926666cebcSVladimir Oltean * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid. 15936666cebcSVladimir Oltean */ 15946666cebcSVladimir Oltean ds->vlan_filtering_is_global = true; 15958aa9ebccSVladimir Oltean 1596227d07a0SVladimir Oltean /* The DSA/switchdev model brings up switch ports in standalone mode by 1597227d07a0SVladimir Oltean * default, and that means vlan_filtering is 0 since they're not under 1598227d07a0SVladimir Oltean * a bridge, so it's safe to set up switch tagging at this time. 1599227d07a0SVladimir Oltean */ 1600227d07a0SVladimir Oltean return sja1105_setup_8021q_tagging(ds, true); 1601227d07a0SVladimir Oltean } 1602227d07a0SVladimir Oltean 1603f3097be2SVladimir Oltean static void sja1105_teardown(struct dsa_switch *ds) 1604f3097be2SVladimir Oltean { 1605f3097be2SVladimir Oltean struct sja1105_private *priv = ds->priv; 1606f3097be2SVladimir Oltean 1607f3097be2SVladimir Oltean cancel_work_sync(&priv->tagger_data.rxtstamp_work); 1608f3097be2SVladimir Oltean skb_queue_purge(&priv->tagger_data.skb_rxtstamp_queue); 1609f3097be2SVladimir Oltean } 1610f3097be2SVladimir Oltean 1611227d07a0SVladimir Oltean static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot, 161247ed985eSVladimir Oltean struct sk_buff *skb, bool takets) 1613227d07a0SVladimir Oltean { 1614227d07a0SVladimir Oltean struct sja1105_mgmt_entry mgmt_route = {0}; 1615227d07a0SVladimir Oltean struct sja1105_private *priv = ds->priv; 1616227d07a0SVladimir Oltean struct ethhdr *hdr; 1617227d07a0SVladimir Oltean int timeout = 10; 1618227d07a0SVladimir Oltean int rc; 1619227d07a0SVladimir Oltean 1620227d07a0SVladimir Oltean hdr = eth_hdr(skb); 1621227d07a0SVladimir Oltean 1622227d07a0SVladimir Oltean mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest); 1623227d07a0SVladimir Oltean mgmt_route.destports = BIT(port); 1624227d07a0SVladimir Oltean mgmt_route.enfport = 1; 162547ed985eSVladimir Oltean mgmt_route.tsreg = 0; 162647ed985eSVladimir Oltean mgmt_route.takets = takets; 1627227d07a0SVladimir Oltean 1628227d07a0SVladimir Oltean rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 1629227d07a0SVladimir Oltean slot, &mgmt_route, true); 1630227d07a0SVladimir Oltean if (rc < 0) { 1631227d07a0SVladimir Oltean kfree_skb(skb); 1632227d07a0SVladimir Oltean return rc; 1633227d07a0SVladimir Oltean } 1634227d07a0SVladimir Oltean 1635227d07a0SVladimir Oltean /* Transfer skb to the host port. */ 1636227d07a0SVladimir Oltean dsa_enqueue_skb(skb, ds->ports[port].slave); 1637227d07a0SVladimir Oltean 1638227d07a0SVladimir Oltean /* Wait until the switch has processed the frame */ 1639227d07a0SVladimir Oltean do { 1640227d07a0SVladimir Oltean rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE, 1641227d07a0SVladimir Oltean slot, &mgmt_route); 1642227d07a0SVladimir Oltean if (rc < 0) { 1643227d07a0SVladimir Oltean dev_err_ratelimited(priv->ds->dev, 1644227d07a0SVladimir Oltean "failed to poll for mgmt route\n"); 1645227d07a0SVladimir Oltean continue; 1646227d07a0SVladimir Oltean } 1647227d07a0SVladimir Oltean 1648227d07a0SVladimir Oltean /* UM10944: The ENFPORT flag of the respective entry is 1649227d07a0SVladimir Oltean * cleared when a match is found. The host can use this 1650227d07a0SVladimir Oltean * flag as an acknowledgment. 1651227d07a0SVladimir Oltean */ 1652227d07a0SVladimir Oltean cpu_relax(); 1653227d07a0SVladimir Oltean } while (mgmt_route.enfport && --timeout); 1654227d07a0SVladimir Oltean 1655227d07a0SVladimir Oltean if (!timeout) { 1656227d07a0SVladimir Oltean /* Clean up the management route so that a follow-up 1657227d07a0SVladimir Oltean * frame may not match on it by mistake. 16582a7e7409SVladimir Oltean * This is only hardware supported on P/Q/R/S - on E/T it is 16592a7e7409SVladimir Oltean * a no-op and we are silently discarding the -EOPNOTSUPP. 1660227d07a0SVladimir Oltean */ 1661227d07a0SVladimir Oltean sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 1662227d07a0SVladimir Oltean slot, &mgmt_route, false); 1663227d07a0SVladimir Oltean dev_err_ratelimited(priv->ds->dev, "xmit timed out\n"); 1664227d07a0SVladimir Oltean } 1665227d07a0SVladimir Oltean 1666227d07a0SVladimir Oltean return NETDEV_TX_OK; 1667227d07a0SVladimir Oltean } 1668227d07a0SVladimir Oltean 1669227d07a0SVladimir Oltean /* Deferred work is unfortunately necessary because setting up the management 1670227d07a0SVladimir Oltean * route cannot be done from atomit context (SPI transfer takes a sleepable 1671227d07a0SVladimir Oltean * lock on the bus) 1672227d07a0SVladimir Oltean */ 1673227d07a0SVladimir Oltean static netdev_tx_t sja1105_port_deferred_xmit(struct dsa_switch *ds, int port, 1674227d07a0SVladimir Oltean struct sk_buff *skb) 1675227d07a0SVladimir Oltean { 1676227d07a0SVladimir Oltean struct sja1105_private *priv = ds->priv; 1677227d07a0SVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 167847ed985eSVladimir Oltean struct skb_shared_hwtstamps shwt = {0}; 1679227d07a0SVladimir Oltean int slot = sp->mgmt_slot; 168047ed985eSVladimir Oltean struct sk_buff *clone; 168147ed985eSVladimir Oltean u64 now, ts; 168247ed985eSVladimir Oltean int rc; 1683227d07a0SVladimir Oltean 1684227d07a0SVladimir Oltean /* The tragic fact about the switch having 4x2 slots for installing 1685227d07a0SVladimir Oltean * management routes is that all of them except one are actually 1686227d07a0SVladimir Oltean * useless. 1687227d07a0SVladimir Oltean * If 2 slots are simultaneously configured for two BPDUs sent to the 1688227d07a0SVladimir Oltean * same (multicast) DMAC but on different egress ports, the switch 1689227d07a0SVladimir Oltean * would confuse them and redirect first frame it receives on the CPU 1690227d07a0SVladimir Oltean * port towards the port configured on the numerically first slot 1691227d07a0SVladimir Oltean * (therefore wrong port), then second received frame on second slot 1692227d07a0SVladimir Oltean * (also wrong port). 1693227d07a0SVladimir Oltean * So for all practical purposes, there needs to be a lock that 1694227d07a0SVladimir Oltean * prevents that from happening. The slot used here is utterly useless 1695227d07a0SVladimir Oltean * (could have simply been 0 just as fine), but we are doing it 1696227d07a0SVladimir Oltean * nonetheless, in case a smarter idea ever comes up in the future. 1697227d07a0SVladimir Oltean */ 1698227d07a0SVladimir Oltean mutex_lock(&priv->mgmt_lock); 1699227d07a0SVladimir Oltean 170047ed985eSVladimir Oltean /* The clone, if there, was made by dsa_skb_tx_timestamp */ 170147ed985eSVladimir Oltean clone = DSA_SKB_CB(skb)->clone; 1702227d07a0SVladimir Oltean 170347ed985eSVladimir Oltean sja1105_mgmt_xmit(ds, port, slot, skb, !!clone); 170447ed985eSVladimir Oltean 170547ed985eSVladimir Oltean if (!clone) 170647ed985eSVladimir Oltean goto out; 170747ed985eSVladimir Oltean 170847ed985eSVladimir Oltean skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS; 170947ed985eSVladimir Oltean 171047ed985eSVladimir Oltean mutex_lock(&priv->ptp_lock); 171147ed985eSVladimir Oltean 171247ed985eSVladimir Oltean now = priv->tstamp_cc.read(&priv->tstamp_cc); 171347ed985eSVladimir Oltean 171447ed985eSVladimir Oltean rc = sja1105_ptpegr_ts_poll(priv, slot, &ts); 171547ed985eSVladimir Oltean if (rc < 0) { 171647ed985eSVladimir Oltean dev_err(ds->dev, "xmit: timed out polling for tstamp\n"); 171747ed985eSVladimir Oltean kfree_skb(clone); 171847ed985eSVladimir Oltean goto out_unlock_ptp; 171947ed985eSVladimir Oltean } 172047ed985eSVladimir Oltean 172147ed985eSVladimir Oltean ts = sja1105_tstamp_reconstruct(priv, now, ts); 172247ed985eSVladimir Oltean ts = timecounter_cyc2time(&priv->tstamp_tc, ts); 172347ed985eSVladimir Oltean 172447ed985eSVladimir Oltean shwt.hwtstamp = ns_to_ktime(ts); 172547ed985eSVladimir Oltean skb_complete_tx_timestamp(clone, &shwt); 172647ed985eSVladimir Oltean 172747ed985eSVladimir Oltean out_unlock_ptp: 172847ed985eSVladimir Oltean mutex_unlock(&priv->ptp_lock); 172947ed985eSVladimir Oltean out: 1730227d07a0SVladimir Oltean mutex_unlock(&priv->mgmt_lock); 1731227d07a0SVladimir Oltean return NETDEV_TX_OK; 17328aa9ebccSVladimir Oltean } 17338aa9ebccSVladimir Oltean 17348456721dSVladimir Oltean /* The MAXAGE setting belongs to the L2 Forwarding Parameters table, 17358456721dSVladimir Oltean * which cannot be reconfigured at runtime. So a switch reset is required. 17368456721dSVladimir Oltean */ 17378456721dSVladimir Oltean static int sja1105_set_ageing_time(struct dsa_switch *ds, 17388456721dSVladimir Oltean unsigned int ageing_time) 17398456721dSVladimir Oltean { 17408456721dSVladimir Oltean struct sja1105_l2_lookup_params_entry *l2_lookup_params; 17418456721dSVladimir Oltean struct sja1105_private *priv = ds->priv; 17428456721dSVladimir Oltean struct sja1105_table *table; 17438456721dSVladimir Oltean unsigned int maxage; 17448456721dSVladimir Oltean 17458456721dSVladimir Oltean table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 17468456721dSVladimir Oltean l2_lookup_params = table->entries; 17478456721dSVladimir Oltean 17488456721dSVladimir Oltean maxage = SJA1105_AGEING_TIME_MS(ageing_time); 17498456721dSVladimir Oltean 17508456721dSVladimir Oltean if (l2_lookup_params->maxage == maxage) 17518456721dSVladimir Oltean return 0; 17528456721dSVladimir Oltean 17538456721dSVladimir Oltean l2_lookup_params->maxage = maxage; 17548456721dSVladimir Oltean 17558456721dSVladimir Oltean return sja1105_static_config_reload(priv); 17568456721dSVladimir Oltean } 17578456721dSVladimir Oltean 1758a602afd2SVladimir Oltean /* Caller must hold priv->tagger_data.meta_lock */ 1759a602afd2SVladimir Oltean static int sja1105_change_rxtstamping(struct sja1105_private *priv, 1760a602afd2SVladimir Oltean bool on) 1761a602afd2SVladimir Oltean { 1762a602afd2SVladimir Oltean struct sja1105_general_params_entry *general_params; 1763a602afd2SVladimir Oltean struct sja1105_table *table; 1764a602afd2SVladimir Oltean int rc; 1765a602afd2SVladimir Oltean 1766a602afd2SVladimir Oltean table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 1767a602afd2SVladimir Oltean general_params = table->entries; 1768a602afd2SVladimir Oltean general_params->send_meta1 = on; 1769a602afd2SVladimir Oltean general_params->send_meta0 = on; 1770a602afd2SVladimir Oltean 1771a602afd2SVladimir Oltean rc = sja1105_init_avb_params(priv, on); 1772a602afd2SVladimir Oltean if (rc < 0) 1773a602afd2SVladimir Oltean return rc; 1774a602afd2SVladimir Oltean 1775a602afd2SVladimir Oltean /* Initialize the meta state machine to a known state */ 1776a602afd2SVladimir Oltean if (priv->tagger_data.stampable_skb) { 1777a602afd2SVladimir Oltean kfree_skb(priv->tagger_data.stampable_skb); 1778a602afd2SVladimir Oltean priv->tagger_data.stampable_skb = NULL; 1779a602afd2SVladimir Oltean } 1780a602afd2SVladimir Oltean 1781a602afd2SVladimir Oltean return sja1105_static_config_reload(priv); 1782a602afd2SVladimir Oltean } 1783a602afd2SVladimir Oltean 1784a602afd2SVladimir Oltean static int sja1105_hwtstamp_set(struct dsa_switch *ds, int port, 1785a602afd2SVladimir Oltean struct ifreq *ifr) 1786a602afd2SVladimir Oltean { 1787a602afd2SVladimir Oltean struct sja1105_private *priv = ds->priv; 1788a602afd2SVladimir Oltean struct hwtstamp_config config; 1789a602afd2SVladimir Oltean bool rx_on; 1790a602afd2SVladimir Oltean int rc; 1791a602afd2SVladimir Oltean 1792a602afd2SVladimir Oltean if (copy_from_user(&config, ifr->ifr_data, sizeof(config))) 1793a602afd2SVladimir Oltean return -EFAULT; 1794a602afd2SVladimir Oltean 1795a602afd2SVladimir Oltean switch (config.tx_type) { 1796a602afd2SVladimir Oltean case HWTSTAMP_TX_OFF: 1797a602afd2SVladimir Oltean priv->ports[port].hwts_tx_en = false; 1798a602afd2SVladimir Oltean break; 1799a602afd2SVladimir Oltean case HWTSTAMP_TX_ON: 1800a602afd2SVladimir Oltean priv->ports[port].hwts_tx_en = true; 1801a602afd2SVladimir Oltean break; 1802a602afd2SVladimir Oltean default: 1803a602afd2SVladimir Oltean return -ERANGE; 1804a602afd2SVladimir Oltean } 1805a602afd2SVladimir Oltean 1806a602afd2SVladimir Oltean switch (config.rx_filter) { 1807a602afd2SVladimir Oltean case HWTSTAMP_FILTER_NONE: 1808a602afd2SVladimir Oltean rx_on = false; 1809a602afd2SVladimir Oltean break; 1810a602afd2SVladimir Oltean default: 1811a602afd2SVladimir Oltean rx_on = true; 1812a602afd2SVladimir Oltean break; 1813a602afd2SVladimir Oltean } 1814a602afd2SVladimir Oltean 1815a602afd2SVladimir Oltean if (rx_on != priv->tagger_data.hwts_rx_en) { 1816a602afd2SVladimir Oltean spin_lock(&priv->tagger_data.meta_lock); 1817a602afd2SVladimir Oltean rc = sja1105_change_rxtstamping(priv, rx_on); 1818a602afd2SVladimir Oltean spin_unlock(&priv->tagger_data.meta_lock); 1819a602afd2SVladimir Oltean if (rc < 0) { 1820a602afd2SVladimir Oltean dev_err(ds->dev, 1821a602afd2SVladimir Oltean "Failed to change RX timestamping: %d\n", rc); 1822a602afd2SVladimir Oltean return -EFAULT; 1823a602afd2SVladimir Oltean } 1824a602afd2SVladimir Oltean priv->tagger_data.hwts_rx_en = rx_on; 1825a602afd2SVladimir Oltean } 1826a602afd2SVladimir Oltean 1827a602afd2SVladimir Oltean if (copy_to_user(ifr->ifr_data, &config, sizeof(config))) 1828a602afd2SVladimir Oltean return -EFAULT; 1829a602afd2SVladimir Oltean return 0; 1830a602afd2SVladimir Oltean } 1831a602afd2SVladimir Oltean 1832a602afd2SVladimir Oltean static int sja1105_hwtstamp_get(struct dsa_switch *ds, int port, 1833a602afd2SVladimir Oltean struct ifreq *ifr) 1834a602afd2SVladimir Oltean { 1835a602afd2SVladimir Oltean struct sja1105_private *priv = ds->priv; 1836a602afd2SVladimir Oltean struct hwtstamp_config config; 1837a602afd2SVladimir Oltean 1838a602afd2SVladimir Oltean config.flags = 0; 1839a602afd2SVladimir Oltean if (priv->ports[port].hwts_tx_en) 1840a602afd2SVladimir Oltean config.tx_type = HWTSTAMP_TX_ON; 1841a602afd2SVladimir Oltean else 1842a602afd2SVladimir Oltean config.tx_type = HWTSTAMP_TX_OFF; 1843a602afd2SVladimir Oltean if (priv->tagger_data.hwts_rx_en) 1844a602afd2SVladimir Oltean config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT; 1845a602afd2SVladimir Oltean else 1846a602afd2SVladimir Oltean config.rx_filter = HWTSTAMP_FILTER_NONE; 1847a602afd2SVladimir Oltean 1848a602afd2SVladimir Oltean return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ? 1849a602afd2SVladimir Oltean -EFAULT : 0; 1850a602afd2SVladimir Oltean } 1851a602afd2SVladimir Oltean 1852f3097be2SVladimir Oltean #define to_tagger(d) \ 1853f3097be2SVladimir Oltean container_of((d), struct sja1105_tagger_data, rxtstamp_work) 1854f3097be2SVladimir Oltean #define to_sja1105(d) \ 1855f3097be2SVladimir Oltean container_of((d), struct sja1105_private, tagger_data) 1856f3097be2SVladimir Oltean 1857f3097be2SVladimir Oltean static void sja1105_rxtstamp_work(struct work_struct *work) 1858f3097be2SVladimir Oltean { 1859f3097be2SVladimir Oltean struct sja1105_tagger_data *data = to_tagger(work); 1860f3097be2SVladimir Oltean struct sja1105_private *priv = to_sja1105(data); 1861f3097be2SVladimir Oltean struct sk_buff *skb; 1862f3097be2SVladimir Oltean u64 now; 1863f3097be2SVladimir Oltean 1864f3097be2SVladimir Oltean mutex_lock(&priv->ptp_lock); 1865f3097be2SVladimir Oltean 1866f3097be2SVladimir Oltean now = priv->tstamp_cc.read(&priv->tstamp_cc); 1867f3097be2SVladimir Oltean 1868f3097be2SVladimir Oltean while ((skb = skb_dequeue(&data->skb_rxtstamp_queue)) != NULL) { 1869f3097be2SVladimir Oltean struct skb_shared_hwtstamps *shwt = skb_hwtstamps(skb); 1870f3097be2SVladimir Oltean u64 ts; 1871f3097be2SVladimir Oltean 1872f3097be2SVladimir Oltean *shwt = (struct skb_shared_hwtstamps) {0}; 1873f3097be2SVladimir Oltean 1874f3097be2SVladimir Oltean ts = SJA1105_SKB_CB(skb)->meta_tstamp; 1875f3097be2SVladimir Oltean ts = sja1105_tstamp_reconstruct(priv, now, ts); 1876f3097be2SVladimir Oltean ts = timecounter_cyc2time(&priv->tstamp_tc, ts); 1877f3097be2SVladimir Oltean 1878f3097be2SVladimir Oltean shwt->hwtstamp = ns_to_ktime(ts); 1879f3097be2SVladimir Oltean netif_rx_ni(skb); 1880f3097be2SVladimir Oltean } 1881f3097be2SVladimir Oltean 1882f3097be2SVladimir Oltean mutex_unlock(&priv->ptp_lock); 1883f3097be2SVladimir Oltean } 1884f3097be2SVladimir Oltean 1885f3097be2SVladimir Oltean /* Called from dsa_skb_defer_rx_timestamp */ 1886f3097be2SVladimir Oltean bool sja1105_port_rxtstamp(struct dsa_switch *ds, int port, 1887f3097be2SVladimir Oltean struct sk_buff *skb, unsigned int type) 1888f3097be2SVladimir Oltean { 1889f3097be2SVladimir Oltean struct sja1105_private *priv = ds->priv; 1890f3097be2SVladimir Oltean struct sja1105_tagger_data *data = &priv->tagger_data; 1891f3097be2SVladimir Oltean 1892f3097be2SVladimir Oltean if (!data->hwts_rx_en) 1893f3097be2SVladimir Oltean return false; 1894f3097be2SVladimir Oltean 1895f3097be2SVladimir Oltean /* We need to read the full PTP clock to reconstruct the Rx 1896f3097be2SVladimir Oltean * timestamp. For that we need a sleepable context. 1897f3097be2SVladimir Oltean */ 1898f3097be2SVladimir Oltean skb_queue_tail(&data->skb_rxtstamp_queue, skb); 1899f3097be2SVladimir Oltean schedule_work(&data->rxtstamp_work); 1900f3097be2SVladimir Oltean return true; 1901f3097be2SVladimir Oltean } 1902f3097be2SVladimir Oltean 190347ed985eSVladimir Oltean /* Called from dsa_skb_tx_timestamp. This callback is just to make DSA clone 190447ed985eSVladimir Oltean * the skb and have it available in DSA_SKB_CB in the .port_deferred_xmit 190547ed985eSVladimir Oltean * callback, where we will timestamp it synchronously. 190647ed985eSVladimir Oltean */ 190747ed985eSVladimir Oltean bool sja1105_port_txtstamp(struct dsa_switch *ds, int port, 190847ed985eSVladimir Oltean struct sk_buff *skb, unsigned int type) 190947ed985eSVladimir Oltean { 191047ed985eSVladimir Oltean struct sja1105_private *priv = ds->priv; 191147ed985eSVladimir Oltean struct sja1105_port *sp = &priv->ports[port]; 191247ed985eSVladimir Oltean 191347ed985eSVladimir Oltean if (!sp->hwts_tx_en) 191447ed985eSVladimir Oltean return false; 191547ed985eSVladimir Oltean 191647ed985eSVladimir Oltean return true; 191747ed985eSVladimir Oltean } 191847ed985eSVladimir Oltean 19198aa9ebccSVladimir Oltean static const struct dsa_switch_ops sja1105_switch_ops = { 19208aa9ebccSVladimir Oltean .get_tag_protocol = sja1105_get_tag_protocol, 19218aa9ebccSVladimir Oltean .setup = sja1105_setup, 1922f3097be2SVladimir Oltean .teardown = sja1105_teardown, 19238456721dSVladimir Oltean .set_ageing_time = sja1105_set_ageing_time, 1924ad9f299aSVladimir Oltean .phylink_validate = sja1105_phylink_validate, 1925af7cd036SVladimir Oltean .phylink_mac_config = sja1105_mac_config, 192652c34e6eSVladimir Oltean .get_strings = sja1105_get_strings, 192752c34e6eSVladimir Oltean .get_ethtool_stats = sja1105_get_ethtool_stats, 192852c34e6eSVladimir Oltean .get_sset_count = sja1105_get_sset_count, 1929bb77f36aSVladimir Oltean .get_ts_info = sja1105_get_ts_info, 1930291d1e72SVladimir Oltean .port_fdb_dump = sja1105_fdb_dump, 1931291d1e72SVladimir Oltean .port_fdb_add = sja1105_fdb_add, 1932291d1e72SVladimir Oltean .port_fdb_del = sja1105_fdb_del, 19338aa9ebccSVladimir Oltean .port_bridge_join = sja1105_bridge_join, 19348aa9ebccSVladimir Oltean .port_bridge_leave = sja1105_bridge_leave, 1935640f763fSVladimir Oltean .port_stp_state_set = sja1105_bridge_stp_state_set, 19366666cebcSVladimir Oltean .port_vlan_prepare = sja1105_vlan_prepare, 19376666cebcSVladimir Oltean .port_vlan_filtering = sja1105_vlan_filtering, 19386666cebcSVladimir Oltean .port_vlan_add = sja1105_vlan_add, 19396666cebcSVladimir Oltean .port_vlan_del = sja1105_vlan_del, 1940291d1e72SVladimir Oltean .port_mdb_prepare = sja1105_mdb_prepare, 1941291d1e72SVladimir Oltean .port_mdb_add = sja1105_mdb_add, 1942291d1e72SVladimir Oltean .port_mdb_del = sja1105_mdb_del, 1943227d07a0SVladimir Oltean .port_deferred_xmit = sja1105_port_deferred_xmit, 1944a602afd2SVladimir Oltean .port_hwtstamp_get = sja1105_hwtstamp_get, 1945a602afd2SVladimir Oltean .port_hwtstamp_set = sja1105_hwtstamp_set, 1946f3097be2SVladimir Oltean .port_rxtstamp = sja1105_port_rxtstamp, 194747ed985eSVladimir Oltean .port_txtstamp = sja1105_port_txtstamp, 19488aa9ebccSVladimir Oltean }; 19498aa9ebccSVladimir Oltean 19508aa9ebccSVladimir Oltean static int sja1105_check_device_id(struct sja1105_private *priv) 19518aa9ebccSVladimir Oltean { 19528aa9ebccSVladimir Oltean const struct sja1105_regs *regs = priv->info->regs; 19538aa9ebccSVladimir Oltean u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0}; 19548aa9ebccSVladimir Oltean struct device *dev = &priv->spidev->dev; 19558aa9ebccSVladimir Oltean u64 device_id; 19568aa9ebccSVladimir Oltean u64 part_no; 19578aa9ebccSVladimir Oltean int rc; 19588aa9ebccSVladimir Oltean 19598aa9ebccSVladimir Oltean rc = sja1105_spi_send_int(priv, SPI_READ, regs->device_id, 19608aa9ebccSVladimir Oltean &device_id, SJA1105_SIZE_DEVICE_ID); 19618aa9ebccSVladimir Oltean if (rc < 0) 19628aa9ebccSVladimir Oltean return rc; 19638aa9ebccSVladimir Oltean 19648aa9ebccSVladimir Oltean if (device_id != priv->info->device_id) { 19658aa9ebccSVladimir Oltean dev_err(dev, "Expected device ID 0x%llx but read 0x%llx\n", 19668aa9ebccSVladimir Oltean priv->info->device_id, device_id); 19678aa9ebccSVladimir Oltean return -ENODEV; 19688aa9ebccSVladimir Oltean } 19698aa9ebccSVladimir Oltean 19708aa9ebccSVladimir Oltean rc = sja1105_spi_send_packed_buf(priv, SPI_READ, regs->prod_id, 19718aa9ebccSVladimir Oltean prod_id, SJA1105_SIZE_DEVICE_ID); 19728aa9ebccSVladimir Oltean if (rc < 0) 19738aa9ebccSVladimir Oltean return rc; 19748aa9ebccSVladimir Oltean 19758aa9ebccSVladimir Oltean sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID); 19768aa9ebccSVladimir Oltean 19778aa9ebccSVladimir Oltean if (part_no != priv->info->part_no) { 19788aa9ebccSVladimir Oltean dev_err(dev, "Expected part number 0x%llx but read 0x%llx\n", 19798aa9ebccSVladimir Oltean priv->info->part_no, part_no); 19808aa9ebccSVladimir Oltean return -ENODEV; 19818aa9ebccSVladimir Oltean } 19828aa9ebccSVladimir Oltean 19838aa9ebccSVladimir Oltean return 0; 19848aa9ebccSVladimir Oltean } 19858aa9ebccSVladimir Oltean 19868aa9ebccSVladimir Oltean static int sja1105_probe(struct spi_device *spi) 19878aa9ebccSVladimir Oltean { 1988844d7edcSVladimir Oltean struct sja1105_tagger_data *tagger_data; 19898aa9ebccSVladimir Oltean struct device *dev = &spi->dev; 19908aa9ebccSVladimir Oltean struct sja1105_private *priv; 19918aa9ebccSVladimir Oltean struct dsa_switch *ds; 1992227d07a0SVladimir Oltean int rc, i; 19938aa9ebccSVladimir Oltean 19948aa9ebccSVladimir Oltean if (!dev->of_node) { 19958aa9ebccSVladimir Oltean dev_err(dev, "No DTS bindings for SJA1105 driver\n"); 19968aa9ebccSVladimir Oltean return -EINVAL; 19978aa9ebccSVladimir Oltean } 19988aa9ebccSVladimir Oltean 19998aa9ebccSVladimir Oltean priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL); 20008aa9ebccSVladimir Oltean if (!priv) 20018aa9ebccSVladimir Oltean return -ENOMEM; 20028aa9ebccSVladimir Oltean 20038aa9ebccSVladimir Oltean /* Configure the optional reset pin and bring up switch */ 20048aa9ebccSVladimir Oltean priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); 20058aa9ebccSVladimir Oltean if (IS_ERR(priv->reset_gpio)) 20068aa9ebccSVladimir Oltean dev_dbg(dev, "reset-gpios not defined, ignoring\n"); 20078aa9ebccSVladimir Oltean else 20088aa9ebccSVladimir Oltean sja1105_hw_reset(priv->reset_gpio, 1, 1); 20098aa9ebccSVladimir Oltean 20108aa9ebccSVladimir Oltean /* Populate our driver private structure (priv) based on 20118aa9ebccSVladimir Oltean * the device tree node that was probed (spi) 20128aa9ebccSVladimir Oltean */ 20138aa9ebccSVladimir Oltean priv->spidev = spi; 20148aa9ebccSVladimir Oltean spi_set_drvdata(spi, priv); 20158aa9ebccSVladimir Oltean 20168aa9ebccSVladimir Oltean /* Configure the SPI bus */ 20178aa9ebccSVladimir Oltean spi->bits_per_word = 8; 20188aa9ebccSVladimir Oltean rc = spi_setup(spi); 20198aa9ebccSVladimir Oltean if (rc < 0) { 20208aa9ebccSVladimir Oltean dev_err(dev, "Could not init SPI\n"); 20218aa9ebccSVladimir Oltean return rc; 20228aa9ebccSVladimir Oltean } 20238aa9ebccSVladimir Oltean 20248aa9ebccSVladimir Oltean priv->info = of_device_get_match_data(dev); 20258aa9ebccSVladimir Oltean 20268aa9ebccSVladimir Oltean /* Detect hardware device */ 20278aa9ebccSVladimir Oltean rc = sja1105_check_device_id(priv); 20288aa9ebccSVladimir Oltean if (rc < 0) { 20298aa9ebccSVladimir Oltean dev_err(dev, "Device ID check failed: %d\n", rc); 20308aa9ebccSVladimir Oltean return rc; 20318aa9ebccSVladimir Oltean } 20328aa9ebccSVladimir Oltean 20338aa9ebccSVladimir Oltean dev_info(dev, "Probed switch chip: %s\n", priv->info->name); 20348aa9ebccSVladimir Oltean 20358aa9ebccSVladimir Oltean ds = dsa_switch_alloc(dev, SJA1105_NUM_PORTS); 20368aa9ebccSVladimir Oltean if (!ds) 20378aa9ebccSVladimir Oltean return -ENOMEM; 20388aa9ebccSVladimir Oltean 20398aa9ebccSVladimir Oltean ds->ops = &sja1105_switch_ops; 20408aa9ebccSVladimir Oltean ds->priv = priv; 20418aa9ebccSVladimir Oltean priv->ds = ds; 20428aa9ebccSVladimir Oltean 2043844d7edcSVladimir Oltean tagger_data = &priv->tagger_data; 2044844d7edcSVladimir Oltean skb_queue_head_init(&tagger_data->skb_rxtstamp_queue); 2045f3097be2SVladimir Oltean INIT_WORK(&tagger_data->rxtstamp_work, sja1105_rxtstamp_work); 2046844d7edcSVladimir Oltean 2047227d07a0SVladimir Oltean /* Connections between dsa_port and sja1105_port */ 2048227d07a0SVladimir Oltean for (i = 0; i < SJA1105_NUM_PORTS; i++) { 2049227d07a0SVladimir Oltean struct sja1105_port *sp = &priv->ports[i]; 2050227d07a0SVladimir Oltean 2051227d07a0SVladimir Oltean ds->ports[i].priv = sp; 2052227d07a0SVladimir Oltean sp->dp = &ds->ports[i]; 2053844d7edcSVladimir Oltean sp->data = tagger_data; 2054227d07a0SVladimir Oltean } 2055227d07a0SVladimir Oltean mutex_init(&priv->mgmt_lock); 2056227d07a0SVladimir Oltean 20578aa9ebccSVladimir Oltean return dsa_register_switch(priv->ds); 20588aa9ebccSVladimir Oltean } 20598aa9ebccSVladimir Oltean 20608aa9ebccSVladimir Oltean static int sja1105_remove(struct spi_device *spi) 20618aa9ebccSVladimir Oltean { 20628aa9ebccSVladimir Oltean struct sja1105_private *priv = spi_get_drvdata(spi); 20638aa9ebccSVladimir Oltean 2064bb77f36aSVladimir Oltean sja1105_ptp_clock_unregister(priv); 20658aa9ebccSVladimir Oltean dsa_unregister_switch(priv->ds); 20668aa9ebccSVladimir Oltean sja1105_static_config_free(&priv->static_config); 20678aa9ebccSVladimir Oltean return 0; 20688aa9ebccSVladimir Oltean } 20698aa9ebccSVladimir Oltean 20708aa9ebccSVladimir Oltean static const struct of_device_id sja1105_dt_ids[] = { 20718aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105e", .data = &sja1105e_info }, 20728aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105t", .data = &sja1105t_info }, 20738aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105p", .data = &sja1105p_info }, 20748aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105q", .data = &sja1105q_info }, 20758aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105r", .data = &sja1105r_info }, 20768aa9ebccSVladimir Oltean { .compatible = "nxp,sja1105s", .data = &sja1105s_info }, 20778aa9ebccSVladimir Oltean { /* sentinel */ }, 20788aa9ebccSVladimir Oltean }; 20798aa9ebccSVladimir Oltean MODULE_DEVICE_TABLE(of, sja1105_dt_ids); 20808aa9ebccSVladimir Oltean 20818aa9ebccSVladimir Oltean static struct spi_driver sja1105_driver = { 20828aa9ebccSVladimir Oltean .driver = { 20838aa9ebccSVladimir Oltean .name = "sja1105", 20848aa9ebccSVladimir Oltean .owner = THIS_MODULE, 20858aa9ebccSVladimir Oltean .of_match_table = of_match_ptr(sja1105_dt_ids), 20868aa9ebccSVladimir Oltean }, 20878aa9ebccSVladimir Oltean .probe = sja1105_probe, 20888aa9ebccSVladimir Oltean .remove = sja1105_remove, 20898aa9ebccSVladimir Oltean }; 20908aa9ebccSVladimir Oltean 20918aa9ebccSVladimir Oltean module_spi_driver(sja1105_driver); 20928aa9ebccSVladimir Oltean 20938aa9ebccSVladimir Oltean MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>"); 20948aa9ebccSVladimir Oltean MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>"); 20958aa9ebccSVladimir Oltean MODULE_DESCRIPTION("SJA1105 Driver"); 20968aa9ebccSVladimir Oltean MODULE_LICENSE("GPL v2"); 2097