156051948SVladimir Oltean // SPDX-License-Identifier: GPL-2.0 23c9cfb52SVladimir Oltean /* Copyright 2019-2021 NXP 3375e1314SVladimir Oltean * 4375e1314SVladimir Oltean * This is an umbrella module for all network switches that are 5375e1314SVladimir Oltean * register-compatible with Ocelot and that perform I/O to their host CPU 6375e1314SVladimir Oltean * through an NPI (Node Processor Interface) Ethernet port. 756051948SVladimir Oltean */ 856051948SVladimir Oltean #include <uapi/linux/if_bridge.h> 907d985eeSVladimir Oltean #include <soc/mscc/ocelot_vcap.h> 10bdeced75SVladimir Oltean #include <soc/mscc/ocelot_qsys.h> 11bdeced75SVladimir Oltean #include <soc/mscc/ocelot_sys.h> 12bdeced75SVladimir Oltean #include <soc/mscc/ocelot_dev.h> 13bdeced75SVladimir Oltean #include <soc/mscc/ocelot_ana.h> 142b49d128SYangbo Lu #include <soc/mscc/ocelot_ptp.h> 1556051948SVladimir Oltean #include <soc/mscc/ocelot.h> 16e21268efSVladimir Oltean #include <linux/dsa/8021q.h> 1740d3f295SVladimir Oltean #include <linux/dsa/ocelot.h> 1884705fc1SMaxim Kochetkov #include <linux/platform_device.h> 190a6f17c6SVladimir Oltean #include <linux/ptp_classify.h> 2056051948SVladimir Oltean #include <linux/module.h> 21bdeced75SVladimir Oltean #include <linux/of_net.h> 2256051948SVladimir Oltean #include <linux/pci.h> 2356051948SVladimir Oltean #include <linux/of.h> 24fc411eaaSVladimir Oltean #include <net/pkt_sched.h> 2556051948SVladimir Oltean #include <net/dsa.h> 2656051948SVladimir Oltean #include "felix.h" 2756051948SVladimir Oltean 28f9cef64fSVladimir Oltean /* Translate the DSA database API into the ocelot switch library API, 29f9cef64fSVladimir Oltean * which uses VID 0 for all ports that aren't part of a bridge, 30f9cef64fSVladimir Oltean * and expects the bridge_dev to be NULL in that case. 31f9cef64fSVladimir Oltean */ 32f9cef64fSVladimir Oltean static struct net_device *felix_classify_db(struct dsa_db db) 33f9cef64fSVladimir Oltean { 34f9cef64fSVladimir Oltean switch (db.type) { 35f9cef64fSVladimir Oltean case DSA_DB_PORT: 36f9cef64fSVladimir Oltean case DSA_DB_LAG: 37f9cef64fSVladimir Oltean return NULL; 38f9cef64fSVladimir Oltean case DSA_DB_BRIDGE: 39f9cef64fSVladimir Oltean return db.bridge.dev; 40f9cef64fSVladimir Oltean default: 41f9cef64fSVladimir Oltean return ERR_PTR(-EOPNOTSUPP); 42f9cef64fSVladimir Oltean } 43f9cef64fSVladimir Oltean } 44f9cef64fSVladimir Oltean 4504b67e18SVladimir Oltean /* Set up VCAP ES0 rules for pushing a tag_8021q VLAN towards the CPU such that 4604b67e18SVladimir Oltean * the tagger can perform RX source port identification. 4704b67e18SVladimir Oltean */ 48a4e044dcSVladimir Oltean static int felix_tag_8021q_vlan_add_rx(struct dsa_switch *ds, int port, 49a4e044dcSVladimir Oltean int upstream, u16 vid) 50e21268efSVladimir Oltean { 51e21268efSVladimir Oltean struct ocelot_vcap_filter *outer_tagging_rule; 52a4e044dcSVladimir Oltean struct ocelot *ocelot = ds->priv; 53a4e044dcSVladimir Oltean unsigned long cookie; 54a4e044dcSVladimir Oltean int key_length, err; 55e21268efSVladimir Oltean 56e21268efSVladimir Oltean key_length = ocelot->vcap[VCAP_ES0].keys[VCAP_ES0_IGR_PORT].length; 57e21268efSVladimir Oltean 58e21268efSVladimir Oltean outer_tagging_rule = kzalloc(sizeof(struct ocelot_vcap_filter), 59e21268efSVladimir Oltean GFP_KERNEL); 60e21268efSVladimir Oltean if (!outer_tagging_rule) 61e21268efSVladimir Oltean return -ENOMEM; 62e21268efSVladimir Oltean 63a4e044dcSVladimir Oltean cookie = OCELOT_VCAP_ES0_TAG_8021Q_RXVLAN(ocelot, port, upstream); 64a4e044dcSVladimir Oltean 65e21268efSVladimir Oltean outer_tagging_rule->key_type = OCELOT_VCAP_KEY_ANY; 66e21268efSVladimir Oltean outer_tagging_rule->prio = 1; 67a4e044dcSVladimir Oltean outer_tagging_rule->id.cookie = cookie; 68e21268efSVladimir Oltean outer_tagging_rule->id.tc_offload = false; 69e21268efSVladimir Oltean outer_tagging_rule->block_id = VCAP_ES0; 70e21268efSVladimir Oltean outer_tagging_rule->type = OCELOT_VCAP_FILTER_OFFLOAD; 71e21268efSVladimir Oltean outer_tagging_rule->lookup = 0; 72e21268efSVladimir Oltean outer_tagging_rule->ingress_port.value = port; 73e21268efSVladimir Oltean outer_tagging_rule->ingress_port.mask = GENMASK(key_length - 1, 0); 74e21268efSVladimir Oltean outer_tagging_rule->egress_port.value = upstream; 75e21268efSVladimir Oltean outer_tagging_rule->egress_port.mask = GENMASK(key_length - 1, 0); 76e21268efSVladimir Oltean outer_tagging_rule->action.push_outer_tag = OCELOT_ES0_TAG; 77e21268efSVladimir Oltean outer_tagging_rule->action.tag_a_tpid_sel = OCELOT_TAG_TPID_SEL_8021AD; 78e21268efSVladimir Oltean outer_tagging_rule->action.tag_a_vid_sel = 1; 79e21268efSVladimir Oltean outer_tagging_rule->action.vid_a_val = vid; 80e21268efSVladimir Oltean 81e21268efSVladimir Oltean err = ocelot_vcap_filter_add(ocelot, outer_tagging_rule, NULL); 82e21268efSVladimir Oltean if (err) 83e21268efSVladimir Oltean kfree(outer_tagging_rule); 84e21268efSVladimir Oltean 85e21268efSVladimir Oltean return err; 86e21268efSVladimir Oltean } 87e21268efSVladimir Oltean 88a4e044dcSVladimir Oltean static int felix_tag_8021q_vlan_del_rx(struct dsa_switch *ds, int port, 89a4e044dcSVladimir Oltean int upstream, u16 vid) 9004b67e18SVladimir Oltean { 9104b67e18SVladimir Oltean struct ocelot_vcap_filter *outer_tagging_rule; 9204b67e18SVladimir Oltean struct ocelot_vcap_block *block_vcap_es0; 93a4e044dcSVladimir Oltean struct ocelot *ocelot = ds->priv; 94a4e044dcSVladimir Oltean unsigned long cookie; 9504b67e18SVladimir Oltean 9604b67e18SVladimir Oltean block_vcap_es0 = &ocelot->block[VCAP_ES0]; 97a4e044dcSVladimir Oltean cookie = OCELOT_VCAP_ES0_TAG_8021Q_RXVLAN(ocelot, port, upstream); 9804b67e18SVladimir Oltean 9904b67e18SVladimir Oltean outer_tagging_rule = ocelot_vcap_block_find_filter_by_id(block_vcap_es0, 100a4e044dcSVladimir Oltean cookie, false); 10104b67e18SVladimir Oltean if (!outer_tagging_rule) 10204b67e18SVladimir Oltean return -ENOENT; 10304b67e18SVladimir Oltean 10404b67e18SVladimir Oltean return ocelot_vcap_filter_del(ocelot, outer_tagging_rule); 10504b67e18SVladimir Oltean } 10604b67e18SVladimir Oltean 10704b67e18SVladimir Oltean /* Set up VCAP IS1 rules for stripping the tag_8021q VLAN on TX and VCAP IS2 10804b67e18SVladimir Oltean * rules for steering those tagged packets towards the correct destination port 10904b67e18SVladimir Oltean */ 110a4e044dcSVladimir Oltean static int felix_tag_8021q_vlan_add_tx(struct dsa_switch *ds, int port, 111a4e044dcSVladimir Oltean u16 vid) 112e21268efSVladimir Oltean { 113e21268efSVladimir Oltean struct ocelot_vcap_filter *untagging_rule, *redirect_rule; 114a4e044dcSVladimir Oltean unsigned long cpu_ports = dsa_cpu_ports(ds); 115a4e044dcSVladimir Oltean struct ocelot *ocelot = ds->priv; 116a4e044dcSVladimir Oltean unsigned long cookie; 117a4e044dcSVladimir Oltean int err; 118e21268efSVladimir Oltean 119e21268efSVladimir Oltean untagging_rule = kzalloc(sizeof(struct ocelot_vcap_filter), GFP_KERNEL); 120e21268efSVladimir Oltean if (!untagging_rule) 121e21268efSVladimir Oltean return -ENOMEM; 122e21268efSVladimir Oltean 123e21268efSVladimir Oltean redirect_rule = kzalloc(sizeof(struct ocelot_vcap_filter), GFP_KERNEL); 124e21268efSVladimir Oltean if (!redirect_rule) { 125e21268efSVladimir Oltean kfree(untagging_rule); 126e21268efSVladimir Oltean return -ENOMEM; 127e21268efSVladimir Oltean } 128e21268efSVladimir Oltean 129a4e044dcSVladimir Oltean cookie = OCELOT_VCAP_IS1_TAG_8021Q_TXVLAN(ocelot, port); 130e21268efSVladimir Oltean 131e21268efSVladimir Oltean untagging_rule->key_type = OCELOT_VCAP_KEY_ANY; 132a4e044dcSVladimir Oltean untagging_rule->ingress_port_mask = cpu_ports; 133e21268efSVladimir Oltean untagging_rule->vlan.vid.value = vid; 134e21268efSVladimir Oltean untagging_rule->vlan.vid.mask = VLAN_VID_MASK; 135e21268efSVladimir Oltean untagging_rule->prio = 1; 136a4e044dcSVladimir Oltean untagging_rule->id.cookie = cookie; 137e21268efSVladimir Oltean untagging_rule->id.tc_offload = false; 138e21268efSVladimir Oltean untagging_rule->block_id = VCAP_IS1; 139e21268efSVladimir Oltean untagging_rule->type = OCELOT_VCAP_FILTER_OFFLOAD; 140e21268efSVladimir Oltean untagging_rule->lookup = 0; 141e21268efSVladimir Oltean untagging_rule->action.vlan_pop_cnt_ena = true; 142e21268efSVladimir Oltean untagging_rule->action.vlan_pop_cnt = 1; 143e21268efSVladimir Oltean untagging_rule->action.pag_override_mask = 0xff; 144e21268efSVladimir Oltean untagging_rule->action.pag_val = port; 145e21268efSVladimir Oltean 146e21268efSVladimir Oltean err = ocelot_vcap_filter_add(ocelot, untagging_rule, NULL); 147e21268efSVladimir Oltean if (err) { 148e21268efSVladimir Oltean kfree(untagging_rule); 149e21268efSVladimir Oltean kfree(redirect_rule); 150e21268efSVladimir Oltean return err; 151e21268efSVladimir Oltean } 152e21268efSVladimir Oltean 153a4e044dcSVladimir Oltean cookie = OCELOT_VCAP_IS2_TAG_8021Q_TXVLAN(ocelot, port); 154a4e044dcSVladimir Oltean 155e21268efSVladimir Oltean redirect_rule->key_type = OCELOT_VCAP_KEY_ANY; 156a4e044dcSVladimir Oltean redirect_rule->ingress_port_mask = cpu_ports; 157e21268efSVladimir Oltean redirect_rule->pag = port; 158e21268efSVladimir Oltean redirect_rule->prio = 1; 159a4e044dcSVladimir Oltean redirect_rule->id.cookie = cookie; 160e21268efSVladimir Oltean redirect_rule->id.tc_offload = false; 161e21268efSVladimir Oltean redirect_rule->block_id = VCAP_IS2; 162e21268efSVladimir Oltean redirect_rule->type = OCELOT_VCAP_FILTER_OFFLOAD; 163e21268efSVladimir Oltean redirect_rule->lookup = 0; 164e21268efSVladimir Oltean redirect_rule->action.mask_mode = OCELOT_MASK_MODE_REDIRECT; 165e21268efSVladimir Oltean redirect_rule->action.port_mask = BIT(port); 166e21268efSVladimir Oltean 167e21268efSVladimir Oltean err = ocelot_vcap_filter_add(ocelot, redirect_rule, NULL); 168e21268efSVladimir Oltean if (err) { 169e21268efSVladimir Oltean ocelot_vcap_filter_del(ocelot, untagging_rule); 170e21268efSVladimir Oltean kfree(redirect_rule); 171e21268efSVladimir Oltean return err; 172e21268efSVladimir Oltean } 173e21268efSVladimir Oltean 174e21268efSVladimir Oltean return 0; 175e21268efSVladimir Oltean } 176e21268efSVladimir Oltean 177a4e044dcSVladimir Oltean static int felix_tag_8021q_vlan_del_tx(struct dsa_switch *ds, int port, u16 vid) 178e21268efSVladimir Oltean { 179e21268efSVladimir Oltean struct ocelot_vcap_filter *untagging_rule, *redirect_rule; 180e21268efSVladimir Oltean struct ocelot_vcap_block *block_vcap_is1; 181e21268efSVladimir Oltean struct ocelot_vcap_block *block_vcap_is2; 182a4e044dcSVladimir Oltean struct ocelot *ocelot = ds->priv; 183a4e044dcSVladimir Oltean unsigned long cookie; 184e21268efSVladimir Oltean int err; 185e21268efSVladimir Oltean 186e21268efSVladimir Oltean block_vcap_is1 = &ocelot->block[VCAP_IS1]; 187e21268efSVladimir Oltean block_vcap_is2 = &ocelot->block[VCAP_IS2]; 188e21268efSVladimir Oltean 189a4e044dcSVladimir Oltean cookie = OCELOT_VCAP_IS1_TAG_8021Q_TXVLAN(ocelot, port); 190e21268efSVladimir Oltean untagging_rule = ocelot_vcap_block_find_filter_by_id(block_vcap_is1, 191a4e044dcSVladimir Oltean cookie, false); 192e21268efSVladimir Oltean if (!untagging_rule) 19308f44db3SVladimir Oltean return -ENOENT; 194e21268efSVladimir Oltean 195e21268efSVladimir Oltean err = ocelot_vcap_filter_del(ocelot, untagging_rule); 196e21268efSVladimir Oltean if (err) 197e21268efSVladimir Oltean return err; 198e21268efSVladimir Oltean 199a4e044dcSVladimir Oltean cookie = OCELOT_VCAP_IS2_TAG_8021Q_TXVLAN(ocelot, port); 200e21268efSVladimir Oltean redirect_rule = ocelot_vcap_block_find_filter_by_id(block_vcap_is2, 201a4e044dcSVladimir Oltean cookie, false); 202e21268efSVladimir Oltean if (!redirect_rule) 20304b67e18SVladimir Oltean return -ENOENT; 204e21268efSVladimir Oltean 205e21268efSVladimir Oltean return ocelot_vcap_filter_del(ocelot, redirect_rule); 206e21268efSVladimir Oltean } 207e21268efSVladimir Oltean 20804b67e18SVladimir Oltean static int felix_tag_8021q_vlan_add(struct dsa_switch *ds, int port, u16 vid, 20904b67e18SVladimir Oltean u16 flags) 21004b67e18SVladimir Oltean { 211a4e044dcSVladimir Oltean struct dsa_port *cpu_dp; 21204b67e18SVladimir Oltean int err; 21304b67e18SVladimir Oltean 21404b67e18SVladimir Oltean /* tag_8021q.c assumes we are implementing this via port VLAN 21504b67e18SVladimir Oltean * membership, which we aren't. So we don't need to add any VCAP filter 21604b67e18SVladimir Oltean * for the CPU port. 21704b67e18SVladimir Oltean */ 21804b67e18SVladimir Oltean if (!dsa_is_user_port(ds, port)) 21904b67e18SVladimir Oltean return 0; 22004b67e18SVladimir Oltean 221a4e044dcSVladimir Oltean dsa_switch_for_each_cpu_port(cpu_dp, ds) { 222a4e044dcSVladimir Oltean err = felix_tag_8021q_vlan_add_rx(ds, port, cpu_dp->index, vid); 22304b67e18SVladimir Oltean if (err) 22404b67e18SVladimir Oltean return err; 22504b67e18SVladimir Oltean } 22604b67e18SVladimir Oltean 227a4e044dcSVladimir Oltean err = felix_tag_8021q_vlan_add_tx(ds, port, vid); 228a4e044dcSVladimir Oltean if (err) 229a4e044dcSVladimir Oltean goto add_tx_failed; 230a4e044dcSVladimir Oltean 23104b67e18SVladimir Oltean return 0; 232a4e044dcSVladimir Oltean 233a4e044dcSVladimir Oltean add_tx_failed: 234a4e044dcSVladimir Oltean dsa_switch_for_each_cpu_port(cpu_dp, ds) 235a4e044dcSVladimir Oltean felix_tag_8021q_vlan_del_rx(ds, port, cpu_dp->index, vid); 236a4e044dcSVladimir Oltean 237a4e044dcSVladimir Oltean return err; 23804b67e18SVladimir Oltean } 23904b67e18SVladimir Oltean 240e21268efSVladimir Oltean static int felix_tag_8021q_vlan_del(struct dsa_switch *ds, int port, u16 vid) 241e21268efSVladimir Oltean { 242a4e044dcSVladimir Oltean struct dsa_port *cpu_dp; 24304b67e18SVladimir Oltean int err; 244e21268efSVladimir Oltean 24504b67e18SVladimir Oltean if (!dsa_is_user_port(ds, port)) 24604b67e18SVladimir Oltean return 0; 247e21268efSVladimir Oltean 248a4e044dcSVladimir Oltean dsa_switch_for_each_cpu_port(cpu_dp, ds) { 249a4e044dcSVladimir Oltean err = felix_tag_8021q_vlan_del_rx(ds, port, cpu_dp->index, vid); 25004b67e18SVladimir Oltean if (err) 25104b67e18SVladimir Oltean return err; 25204b67e18SVladimir Oltean } 253e21268efSVladimir Oltean 254a4e044dcSVladimir Oltean err = felix_tag_8021q_vlan_del_tx(ds, port, vid); 255a4e044dcSVladimir Oltean if (err) 256a4e044dcSVladimir Oltean goto del_tx_failed; 257a4e044dcSVladimir Oltean 258e21268efSVladimir Oltean return 0; 259a4e044dcSVladimir Oltean 260a4e044dcSVladimir Oltean del_tx_failed: 261a4e044dcSVladimir Oltean dsa_switch_for_each_cpu_port(cpu_dp, ds) 262a4e044dcSVladimir Oltean felix_tag_8021q_vlan_add_rx(ds, port, cpu_dp->index, vid); 263a4e044dcSVladimir Oltean 264a4e044dcSVladimir Oltean return err; 265e21268efSVladimir Oltean } 266e21268efSVladimir Oltean 267c352e5e8SVladimir Oltean static int felix_trap_get_cpu_port(struct dsa_switch *ds, 268c352e5e8SVladimir Oltean const struct ocelot_vcap_filter *trap) 269c352e5e8SVladimir Oltean { 270c352e5e8SVladimir Oltean struct dsa_port *dp; 271c352e5e8SVladimir Oltean int first_port; 272c352e5e8SVladimir Oltean 273c352e5e8SVladimir Oltean if (WARN_ON(!trap->ingress_port_mask)) 274c352e5e8SVladimir Oltean return -1; 275c352e5e8SVladimir Oltean 276c352e5e8SVladimir Oltean first_port = __ffs(trap->ingress_port_mask); 277c352e5e8SVladimir Oltean dp = dsa_to_port(ds, first_port); 278c352e5e8SVladimir Oltean 279c352e5e8SVladimir Oltean return dp->cpu_dp->index; 280c352e5e8SVladimir Oltean } 281c352e5e8SVladimir Oltean 28299348004SVladimir Oltean /* On switches with no extraction IRQ wired, trapped packets need to be 28399348004SVladimir Oltean * replicated over Ethernet as well, otherwise we'd get no notification of 28499348004SVladimir Oltean * their arrival when using the ocelot-8021q tagging protocol. 285c8c0ba4fSVladimir Oltean */ 28699348004SVladimir Oltean static int felix_update_trapping_destinations(struct dsa_switch *ds, 28799348004SVladimir Oltean bool using_tag_8021q) 288c8c0ba4fSVladimir Oltean { 28999348004SVladimir Oltean struct ocelot *ocelot = ds->priv; 29099348004SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 291e1846cffSVladimir Oltean struct ocelot_vcap_block *block_vcap_is2; 29299348004SVladimir Oltean struct ocelot_vcap_filter *trap; 29399348004SVladimir Oltean enum ocelot_mask_mode mask_mode; 29499348004SVladimir Oltean unsigned long port_mask; 29599348004SVladimir Oltean bool cpu_copy_ena; 296c352e5e8SVladimir Oltean int err; 297c8c0ba4fSVladimir Oltean 29899348004SVladimir Oltean if (!felix->info->quirk_no_xtr_irq) 29999348004SVladimir Oltean return 0; 300c8c0ba4fSVladimir Oltean 301d78637a8SVladimir Oltean /* We are sure that "cpu" was found, otherwise 302d78637a8SVladimir Oltean * dsa_tree_setup_default_cpu() would have failed earlier. 303d78637a8SVladimir Oltean */ 304e1846cffSVladimir Oltean block_vcap_is2 = &ocelot->block[VCAP_IS2]; 305c8c0ba4fSVladimir Oltean 30699348004SVladimir Oltean /* Make sure all traps are set up for that destination */ 307e1846cffSVladimir Oltean list_for_each_entry(trap, &block_vcap_is2->rules, list) { 308e1846cffSVladimir Oltean if (!trap->is_trap) 309e1846cffSVladimir Oltean continue; 310e1846cffSVladimir Oltean 31199348004SVladimir Oltean /* Figure out the current trapping destination */ 31299348004SVladimir Oltean if (using_tag_8021q) { 31399348004SVladimir Oltean /* Redirect to the tag_8021q CPU port. If timestamps 31499348004SVladimir Oltean * are necessary, also copy trapped packets to the CPU 31599348004SVladimir Oltean * port module. 316c8c0ba4fSVladimir Oltean */ 31799348004SVladimir Oltean mask_mode = OCELOT_MASK_MODE_REDIRECT; 318c352e5e8SVladimir Oltean port_mask = BIT(felix_trap_get_cpu_port(ds, trap)); 31999348004SVladimir Oltean cpu_copy_ena = !!trap->take_ts; 320c8c0ba4fSVladimir Oltean } else { 32199348004SVladimir Oltean /* Trap packets only to the CPU port module, which is 32299348004SVladimir Oltean * redirected to the NPI port (the DSA CPU port) 323c8c0ba4fSVladimir Oltean */ 32499348004SVladimir Oltean mask_mode = OCELOT_MASK_MODE_PERMIT_DENY; 32599348004SVladimir Oltean port_mask = 0; 32699348004SVladimir Oltean cpu_copy_ena = true; 327c8c0ba4fSVladimir Oltean } 328c8c0ba4fSVladimir Oltean 32999348004SVladimir Oltean if (trap->action.mask_mode == mask_mode && 33099348004SVladimir Oltean trap->action.port_mask == port_mask && 33199348004SVladimir Oltean trap->action.cpu_copy_ena == cpu_copy_ena) 33299348004SVladimir Oltean continue; 333c8c0ba4fSVladimir Oltean 33499348004SVladimir Oltean trap->action.mask_mode = mask_mode; 33599348004SVladimir Oltean trap->action.port_mask = port_mask; 33699348004SVladimir Oltean trap->action.cpu_copy_ena = cpu_copy_ena; 3370a6f17c6SVladimir Oltean 33899348004SVladimir Oltean err = ocelot_vcap_filter_replace(ocelot, trap); 339c8c0ba4fSVladimir Oltean if (err) 340c8c0ba4fSVladimir Oltean return err; 34199348004SVladimir Oltean } 342c8c0ba4fSVladimir Oltean 34399348004SVladimir Oltean return 0; 344c8c0ba4fSVladimir Oltean } 345c8c0ba4fSVladimir Oltean 346adb3dccfSVladimir Oltean /* The CPU port module is connected to the Node Processor Interface (NPI). This 347adb3dccfSVladimir Oltean * is the mode through which frames can be injected from and extracted to an 348adb3dccfSVladimir Oltean * external CPU, over Ethernet. In NXP SoCs, the "external CPU" is the ARM CPU 349adb3dccfSVladimir Oltean * running Linux, and this forms a DSA setup together with the enetc or fman 350adb3dccfSVladimir Oltean * DSA master. 351adb3dccfSVladimir Oltean */ 352adb3dccfSVladimir Oltean static void felix_npi_port_init(struct ocelot *ocelot, int port) 353adb3dccfSVladimir Oltean { 354adb3dccfSVladimir Oltean ocelot->npi = port; 355adb3dccfSVladimir Oltean 356adb3dccfSVladimir Oltean ocelot_write(ocelot, QSYS_EXT_CPU_CFG_EXT_CPUQ_MSK_M | 357adb3dccfSVladimir Oltean QSYS_EXT_CPU_CFG_EXT_CPU_PORT(port), 358adb3dccfSVladimir Oltean QSYS_EXT_CPU_CFG); 359adb3dccfSVladimir Oltean 360adb3dccfSVladimir Oltean /* NPI port Injection/Extraction configuration */ 361adb3dccfSVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_XTR_HDR, 362adb3dccfSVladimir Oltean ocelot->npi_xtr_prefix); 363adb3dccfSVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_INJ_HDR, 364adb3dccfSVladimir Oltean ocelot->npi_inj_prefix); 365adb3dccfSVladimir Oltean 366adb3dccfSVladimir Oltean /* Disable transmission of pause frames */ 367adb3dccfSVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0); 368adb3dccfSVladimir Oltean } 369adb3dccfSVladimir Oltean 370adb3dccfSVladimir Oltean static void felix_npi_port_deinit(struct ocelot *ocelot, int port) 371adb3dccfSVladimir Oltean { 372adb3dccfSVladimir Oltean /* Restore hardware defaults */ 373adb3dccfSVladimir Oltean int unused_port = ocelot->num_phys_ports + 2; 374adb3dccfSVladimir Oltean 375adb3dccfSVladimir Oltean ocelot->npi = -1; 376adb3dccfSVladimir Oltean 377adb3dccfSVladimir Oltean ocelot_write(ocelot, QSYS_EXT_CPU_CFG_EXT_CPU_PORT(unused_port), 378adb3dccfSVladimir Oltean QSYS_EXT_CPU_CFG); 379adb3dccfSVladimir Oltean 380adb3dccfSVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_XTR_HDR, 381adb3dccfSVladimir Oltean OCELOT_TAG_PREFIX_DISABLED); 382adb3dccfSVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_INJ_HDR, 383adb3dccfSVladimir Oltean OCELOT_TAG_PREFIX_DISABLED); 384adb3dccfSVladimir Oltean 385adb3dccfSVladimir Oltean /* Enable transmission of pause frames */ 386adb3dccfSVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 1); 387adb3dccfSVladimir Oltean } 388adb3dccfSVladimir Oltean 3897a29d220SVladimir Oltean static int felix_tag_npi_setup(struct dsa_switch *ds) 390adb3dccfSVladimir Oltean { 3917a29d220SVladimir Oltean struct dsa_port *dp, *first_cpu_dp = NULL; 392adb3dccfSVladimir Oltean struct ocelot *ocelot = ds->priv; 393f9cef64fSVladimir Oltean 3947a29d220SVladimir Oltean dsa_switch_for_each_user_port(dp, ds) { 3957a29d220SVladimir Oltean if (first_cpu_dp && dp->cpu_dp != first_cpu_dp) { 3967a29d220SVladimir Oltean dev_err(ds->dev, "Multiple NPI ports not supported\n"); 3977a29d220SVladimir Oltean return -EINVAL; 3987a29d220SVladimir Oltean } 399b903a6bdSVladimir Oltean 4007a29d220SVladimir Oltean first_cpu_dp = dp->cpu_dp; 4017a29d220SVladimir Oltean } 402adb3dccfSVladimir Oltean 4037a29d220SVladimir Oltean if (!first_cpu_dp) 4047a29d220SVladimir Oltean return -EINVAL; 4057a29d220SVladimir Oltean 4067a29d220SVladimir Oltean felix_npi_port_init(ocelot, first_cpu_dp->index); 407adb3dccfSVladimir Oltean 408adb3dccfSVladimir Oltean return 0; 409adb3dccfSVladimir Oltean } 410adb3dccfSVladimir Oltean 4117a29d220SVladimir Oltean static void felix_tag_npi_teardown(struct dsa_switch *ds) 412adb3dccfSVladimir Oltean { 413adb3dccfSVladimir Oltean struct ocelot *ocelot = ds->priv; 414adb3dccfSVladimir Oltean 4157a29d220SVladimir Oltean felix_npi_port_deinit(ocelot, ocelot->npi); 416adb3dccfSVladimir Oltean } 417adb3dccfSVladimir Oltean 4187a29d220SVladimir Oltean static unsigned long felix_tag_npi_get_host_fwd_mask(struct dsa_switch *ds) 419adb3dccfSVladimir Oltean { 4207a29d220SVladimir Oltean struct ocelot *ocelot = ds->priv; 4217a29d220SVladimir Oltean 4227a29d220SVladimir Oltean return BIT(ocelot->num_phys_ports); 4237a29d220SVladimir Oltean } 4247a29d220SVladimir Oltean 4258c166acbSVladimir Oltean /* Alternatively to using the NPI functionality, that same hardware MAC 4268c166acbSVladimir Oltean * connected internally to the enetc or fman DSA master can be configured to 4278c166acbSVladimir Oltean * use the software-defined tag_8021q frame format. As far as the hardware is 4288c166acbSVladimir Oltean * concerned, it thinks it is a "dumb switch" - the queues of the CPU port 4298c166acbSVladimir Oltean * module are now disconnected from it, but can still be accessed through 4308c166acbSVladimir Oltean * register-based MMIO. 4318c166acbSVladimir Oltean */ 4327a29d220SVladimir Oltean static const struct felix_tag_proto_ops felix_tag_npi_proto_ops = { 4337a29d220SVladimir Oltean .setup = felix_tag_npi_setup, 4347a29d220SVladimir Oltean .teardown = felix_tag_npi_teardown, 4357a29d220SVladimir Oltean .get_host_fwd_mask = felix_tag_npi_get_host_fwd_mask, 4367a29d220SVladimir Oltean }; 4377a29d220SVladimir Oltean 4387a29d220SVladimir Oltean static int felix_tag_8021q_setup(struct dsa_switch *ds) 4397a29d220SVladimir Oltean { 4407a29d220SVladimir Oltean struct ocelot *ocelot = ds->priv; 441c295f983SVladimir Oltean struct dsa_port *dp; 442adb3dccfSVladimir Oltean int err; 443adb3dccfSVladimir Oltean 4447a29d220SVladimir Oltean err = dsa_tag_8021q_register(ds, htons(ETH_P_8021AD)); 4457a29d220SVladimir Oltean if (err) 446adb3dccfSVladimir Oltean return err; 4477a29d220SVladimir Oltean 448c295f983SVladimir Oltean dsa_switch_for_each_user_port(dp, ds) 449c295f983SVladimir Oltean ocelot_port_assign_dsa_8021q_cpu(ocelot, dp->index, 450c295f983SVladimir Oltean dp->cpu_dp->index); 4517a29d220SVladimir Oltean 452c295f983SVladimir Oltean dsa_switch_for_each_available_port(dp, ds) 4537a29d220SVladimir Oltean /* This overwrites ocelot_init(): 4547a29d220SVladimir Oltean * Do not forward BPDU frames to the CPU port module, 4557a29d220SVladimir Oltean * for 2 reasons: 4567a29d220SVladimir Oltean * - When these packets are injected from the tag_8021q 4577a29d220SVladimir Oltean * CPU port, we want them to go out, not loop back 4587a29d220SVladimir Oltean * into the system. 4597a29d220SVladimir Oltean * - STP traffic ingressing on a user port should go to 4607a29d220SVladimir Oltean * the tag_8021q CPU port, not to the hardware CPU 4617a29d220SVladimir Oltean * port module. 4627a29d220SVladimir Oltean */ 4637a29d220SVladimir Oltean ocelot_write_gix(ocelot, 4647a29d220SVladimir Oltean ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0), 4657a29d220SVladimir Oltean ANA_PORT_CPU_FWD_BPDU_CFG, dp->index); 4667a29d220SVladimir Oltean 4677a29d220SVladimir Oltean /* The ownership of the CPU port module's queues might have just been 4687a29d220SVladimir Oltean * transferred to the tag_8021q tagger from the NPI-based tagger. 4697a29d220SVladimir Oltean * So there might still be all sorts of crap in the queues. On the 4707a29d220SVladimir Oltean * other hand, the MMIO-based matching of PTP frames is very brittle, 4717a29d220SVladimir Oltean * so we need to be careful that there are no extra frames to be 4727a29d220SVladimir Oltean * dequeued over MMIO, since we would never know to discard them. 4737a29d220SVladimir Oltean */ 4747a29d220SVladimir Oltean ocelot_drain_cpu_queue(ocelot, 0); 4757a29d220SVladimir Oltean 4767a29d220SVladimir Oltean return 0; 4777a29d220SVladimir Oltean } 4787a29d220SVladimir Oltean 4797a29d220SVladimir Oltean static void felix_tag_8021q_teardown(struct dsa_switch *ds) 480adb3dccfSVladimir Oltean { 4817a29d220SVladimir Oltean struct ocelot *ocelot = ds->priv; 482c295f983SVladimir Oltean struct dsa_port *dp; 4837a29d220SVladimir Oltean 484c295f983SVladimir Oltean dsa_switch_for_each_available_port(dp, ds) 4857a29d220SVladimir Oltean /* Restore the logic from ocelot_init: 4867a29d220SVladimir Oltean * do not forward BPDU frames to the front ports. 4877a29d220SVladimir Oltean */ 4887a29d220SVladimir Oltean ocelot_write_gix(ocelot, 4897a29d220SVladimir Oltean ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff), 4907a29d220SVladimir Oltean ANA_PORT_CPU_FWD_BPDU_CFG, 4917a29d220SVladimir Oltean dp->index); 4927a29d220SVladimir Oltean 493c295f983SVladimir Oltean dsa_switch_for_each_user_port(dp, ds) 494c295f983SVladimir Oltean ocelot_port_unassign_dsa_8021q_cpu(ocelot, dp->index); 4957a29d220SVladimir Oltean 4967a29d220SVladimir Oltean dsa_tag_8021q_unregister(ds); 4977a29d220SVladimir Oltean } 4987a29d220SVladimir Oltean 4997a29d220SVladimir Oltean static unsigned long felix_tag_8021q_get_host_fwd_mask(struct dsa_switch *ds) 5007a29d220SVladimir Oltean { 5017a29d220SVladimir Oltean return dsa_cpu_ports(ds); 5027a29d220SVladimir Oltean } 5037a29d220SVladimir Oltean 5047a29d220SVladimir Oltean static const struct felix_tag_proto_ops felix_tag_8021q_proto_ops = { 5057a29d220SVladimir Oltean .setup = felix_tag_8021q_setup, 5067a29d220SVladimir Oltean .teardown = felix_tag_8021q_teardown, 5077a29d220SVladimir Oltean .get_host_fwd_mask = felix_tag_8021q_get_host_fwd_mask, 5087a29d220SVladimir Oltean }; 5097a29d220SVladimir Oltean 5107a29d220SVladimir Oltean static void felix_set_host_flood(struct dsa_switch *ds, unsigned long mask, 5117a29d220SVladimir Oltean bool uc, bool mc, bool bc) 5127a29d220SVladimir Oltean { 5137a29d220SVladimir Oltean struct ocelot *ocelot = ds->priv; 5147a29d220SVladimir Oltean unsigned long val; 5157a29d220SVladimir Oltean 5167a29d220SVladimir Oltean val = uc ? mask : 0; 5177a29d220SVladimir Oltean ocelot_rmw_rix(ocelot, val, mask, ANA_PGID_PGID, PGID_UC); 5187a29d220SVladimir Oltean 5197a29d220SVladimir Oltean val = mc ? mask : 0; 5207a29d220SVladimir Oltean ocelot_rmw_rix(ocelot, val, mask, ANA_PGID_PGID, PGID_MC); 5217a29d220SVladimir Oltean ocelot_rmw_rix(ocelot, val, mask, ANA_PGID_PGID, PGID_MCIPV4); 5227a29d220SVladimir Oltean ocelot_rmw_rix(ocelot, val, mask, ANA_PGID_PGID, PGID_MCIPV6); 523129b7532SVladimir Oltean 524129b7532SVladimir Oltean val = bc ? mask : 0; 525129b7532SVladimir Oltean ocelot_rmw_rix(ocelot, val, mask, ANA_PGID_PGID, PGID_BC); 5267a29d220SVladimir Oltean } 5277a29d220SVladimir Oltean 5287a29d220SVladimir Oltean static void 5297a29d220SVladimir Oltean felix_migrate_host_flood(struct dsa_switch *ds, 5307a29d220SVladimir Oltean const struct felix_tag_proto_ops *proto_ops, 5317a29d220SVladimir Oltean const struct felix_tag_proto_ops *old_proto_ops) 5327a29d220SVladimir Oltean { 5337a29d220SVladimir Oltean struct ocelot *ocelot = ds->priv; 5347a29d220SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 5357a29d220SVladimir Oltean unsigned long mask; 5367a29d220SVladimir Oltean 5377a29d220SVladimir Oltean if (old_proto_ops) { 5387a29d220SVladimir Oltean mask = old_proto_ops->get_host_fwd_mask(ds); 5397a29d220SVladimir Oltean felix_set_host_flood(ds, mask, false, false, false); 5407a29d220SVladimir Oltean } 5417a29d220SVladimir Oltean 5427a29d220SVladimir Oltean mask = proto_ops->get_host_fwd_mask(ds); 5437a29d220SVladimir Oltean felix_set_host_flood(ds, mask, !!felix->host_flood_uc_mask, 5447a29d220SVladimir Oltean !!felix->host_flood_mc_mask, true); 5457a29d220SVladimir Oltean } 5467a29d220SVladimir Oltean 5477a29d220SVladimir Oltean static int felix_migrate_mdbs(struct dsa_switch *ds, 5487a29d220SVladimir Oltean const struct felix_tag_proto_ops *proto_ops, 5497a29d220SVladimir Oltean const struct felix_tag_proto_ops *old_proto_ops) 5507a29d220SVladimir Oltean { 5517a29d220SVladimir Oltean struct ocelot *ocelot = ds->priv; 5527a29d220SVladimir Oltean unsigned long from, to; 5537a29d220SVladimir Oltean 5547a29d220SVladimir Oltean if (!old_proto_ops) 5557a29d220SVladimir Oltean return 0; 5567a29d220SVladimir Oltean 5577a29d220SVladimir Oltean from = old_proto_ops->get_host_fwd_mask(ds); 5587a29d220SVladimir Oltean to = proto_ops->get_host_fwd_mask(ds); 5597a29d220SVladimir Oltean 5607a29d220SVladimir Oltean return ocelot_migrate_mdbs(ocelot, from, to); 5617a29d220SVladimir Oltean } 5627a29d220SVladimir Oltean 5637a29d220SVladimir Oltean /* Configure the shared hardware resources for a transition between 5647a29d220SVladimir Oltean * @old_proto_ops and @proto_ops. 5657a29d220SVladimir Oltean * Manual migration is needed because as far as DSA is concerned, no change of 5667a29d220SVladimir Oltean * the CPU port is taking place here, just of the tagging protocol. 5677a29d220SVladimir Oltean */ 5687a29d220SVladimir Oltean static int 5697a29d220SVladimir Oltean felix_tag_proto_setup_shared(struct dsa_switch *ds, 5707a29d220SVladimir Oltean const struct felix_tag_proto_ops *proto_ops, 5717a29d220SVladimir Oltean const struct felix_tag_proto_ops *old_proto_ops) 5727a29d220SVladimir Oltean { 5737a29d220SVladimir Oltean bool using_tag_8021q = (proto_ops == &felix_tag_8021q_proto_ops); 5747a29d220SVladimir Oltean int err; 5757a29d220SVladimir Oltean 5767a29d220SVladimir Oltean err = felix_migrate_mdbs(ds, proto_ops, old_proto_ops); 5777a29d220SVladimir Oltean if (err) 5787a29d220SVladimir Oltean return err; 5797a29d220SVladimir Oltean 5807a29d220SVladimir Oltean felix_update_trapping_destinations(ds, using_tag_8021q); 5817a29d220SVladimir Oltean 5827a29d220SVladimir Oltean felix_migrate_host_flood(ds, proto_ops, old_proto_ops); 5837a29d220SVladimir Oltean 5847a29d220SVladimir Oltean return 0; 585adb3dccfSVladimir Oltean } 586adb3dccfSVladimir Oltean 587e21268efSVladimir Oltean /* This always leaves the switch in a consistent state, because although the 588e21268efSVladimir Oltean * tag_8021q setup can fail, the NPI setup can't. So either the change is made, 589e21268efSVladimir Oltean * or the restoration is guaranteed to work. 590e21268efSVladimir Oltean */ 591bacf93b0SVladimir Oltean static int felix_change_tag_protocol(struct dsa_switch *ds, 592adb3dccfSVladimir Oltean enum dsa_tag_protocol proto) 593adb3dccfSVladimir Oltean { 5947a29d220SVladimir Oltean const struct felix_tag_proto_ops *old_proto_ops, *proto_ops; 595adb3dccfSVladimir Oltean struct ocelot *ocelot = ds->priv; 596adb3dccfSVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 597adb3dccfSVladimir Oltean int err; 598adb3dccfSVladimir Oltean 5997a29d220SVladimir Oltean switch (proto) { 6007a29d220SVladimir Oltean case DSA_TAG_PROTO_SEVILLE: 6017a29d220SVladimir Oltean case DSA_TAG_PROTO_OCELOT: 6027a29d220SVladimir Oltean proto_ops = &felix_tag_npi_proto_ops; 603bacf93b0SVladimir Oltean break; 6047a29d220SVladimir Oltean case DSA_TAG_PROTO_OCELOT_8021Q: 6057a29d220SVladimir Oltean proto_ops = &felix_tag_8021q_proto_ops; 6067a29d220SVladimir Oltean break; 6077a29d220SVladimir Oltean default: 6087a29d220SVladimir Oltean return -EPROTONOSUPPORT; 609bacf93b0SVladimir Oltean } 610bacf93b0SVladimir Oltean 6117a29d220SVladimir Oltean old_proto_ops = felix->tag_proto_ops; 6127a29d220SVladimir Oltean 613*4c46bb49SVladimir Oltean if (proto_ops == old_proto_ops) 614*4c46bb49SVladimir Oltean return 0; 615*4c46bb49SVladimir Oltean 6167a29d220SVladimir Oltean err = proto_ops->setup(ds); 6177a29d220SVladimir Oltean if (err) 6187a29d220SVladimir Oltean goto setup_failed; 6197a29d220SVladimir Oltean 6207a29d220SVladimir Oltean err = felix_tag_proto_setup_shared(ds, proto_ops, old_proto_ops); 6217a29d220SVladimir Oltean if (err) 6227a29d220SVladimir Oltean goto setup_shared_failed; 6237a29d220SVladimir Oltean 6247a29d220SVladimir Oltean if (old_proto_ops) 6257a29d220SVladimir Oltean old_proto_ops->teardown(ds); 6267a29d220SVladimir Oltean 6277a29d220SVladimir Oltean felix->tag_proto_ops = proto_ops; 628adb3dccfSVladimir Oltean felix->tag_proto = proto; 629adb3dccfSVladimir Oltean 630adb3dccfSVladimir Oltean return 0; 6317a29d220SVladimir Oltean 6327a29d220SVladimir Oltean setup_shared_failed: 6337a29d220SVladimir Oltean proto_ops->teardown(ds); 6347a29d220SVladimir Oltean setup_failed: 6357a29d220SVladimir Oltean return err; 636adb3dccfSVladimir Oltean } 637adb3dccfSVladimir Oltean 63856051948SVladimir Oltean static enum dsa_tag_protocol felix_get_tag_protocol(struct dsa_switch *ds, 6394d776482SFlorian Fainelli int port, 6404d776482SFlorian Fainelli enum dsa_tag_protocol mp) 64156051948SVladimir Oltean { 642adb3dccfSVladimir Oltean struct ocelot *ocelot = ds->priv; 643adb3dccfSVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 644adb3dccfSVladimir Oltean 645adb3dccfSVladimir Oltean return felix->tag_proto; 64656051948SVladimir Oltean } 64756051948SVladimir Oltean 64872c3b0c7SVladimir Oltean static void felix_port_set_host_flood(struct dsa_switch *ds, int port, 64972c3b0c7SVladimir Oltean bool uc, bool mc) 65072c3b0c7SVladimir Oltean { 65172c3b0c7SVladimir Oltean struct ocelot *ocelot = ds->priv; 65272c3b0c7SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 6537a29d220SVladimir Oltean unsigned long mask; 65472c3b0c7SVladimir Oltean 65572c3b0c7SVladimir Oltean if (uc) 65672c3b0c7SVladimir Oltean felix->host_flood_uc_mask |= BIT(port); 65772c3b0c7SVladimir Oltean else 65872c3b0c7SVladimir Oltean felix->host_flood_uc_mask &= ~BIT(port); 65972c3b0c7SVladimir Oltean 66072c3b0c7SVladimir Oltean if (mc) 66172c3b0c7SVladimir Oltean felix->host_flood_mc_mask |= BIT(port); 66272c3b0c7SVladimir Oltean else 66372c3b0c7SVladimir Oltean felix->host_flood_mc_mask &= ~BIT(port); 66472c3b0c7SVladimir Oltean 6657a29d220SVladimir Oltean mask = felix->tag_proto_ops->get_host_fwd_mask(ds); 6667a29d220SVladimir Oltean felix_set_host_flood(ds, mask, !!felix->host_flood_uc_mask, 6677a29d220SVladimir Oltean !!felix->host_flood_mc_mask, true); 66872c3b0c7SVladimir Oltean } 66972c3b0c7SVladimir Oltean 67056051948SVladimir Oltean static int felix_set_ageing_time(struct dsa_switch *ds, 67156051948SVladimir Oltean unsigned int ageing_time) 67256051948SVladimir Oltean { 67356051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 67456051948SVladimir Oltean 67556051948SVladimir Oltean ocelot_set_ageing_time(ocelot, ageing_time); 67656051948SVladimir Oltean 67756051948SVladimir Oltean return 0; 67856051948SVladimir Oltean } 67956051948SVladimir Oltean 6805cad43a5SVladimir Oltean static void felix_port_fast_age(struct dsa_switch *ds, int port) 6815cad43a5SVladimir Oltean { 6825cad43a5SVladimir Oltean struct ocelot *ocelot = ds->priv; 6835cad43a5SVladimir Oltean int err; 6845cad43a5SVladimir Oltean 6855cad43a5SVladimir Oltean err = ocelot_mact_flush(ocelot, port); 6865cad43a5SVladimir Oltean if (err) 6875cad43a5SVladimir Oltean dev_err(ds->dev, "Flushing MAC table on port %d returned %pe\n", 6885cad43a5SVladimir Oltean port, ERR_PTR(err)); 6895cad43a5SVladimir Oltean } 6905cad43a5SVladimir Oltean 69156051948SVladimir Oltean static int felix_fdb_dump(struct dsa_switch *ds, int port, 69256051948SVladimir Oltean dsa_fdb_dump_cb_t *cb, void *data) 69356051948SVladimir Oltean { 69456051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 69556051948SVladimir Oltean 69656051948SVladimir Oltean return ocelot_fdb_dump(ocelot, port, cb, data); 69756051948SVladimir Oltean } 69856051948SVladimir Oltean 69956051948SVladimir Oltean static int felix_fdb_add(struct dsa_switch *ds, int port, 700c2693363SVladimir Oltean const unsigned char *addr, u16 vid, 701c2693363SVladimir Oltean struct dsa_db db) 70256051948SVladimir Oltean { 70354c31984SVladimir Oltean struct net_device *bridge_dev = felix_classify_db(db); 704e9b3ba43SVladimir Oltean struct dsa_port *dp = dsa_to_port(ds, port); 70556051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 70656051948SVladimir Oltean 70754c31984SVladimir Oltean if (IS_ERR(bridge_dev)) 70854c31984SVladimir Oltean return PTR_ERR(bridge_dev); 70954c31984SVladimir Oltean 710e9b3ba43SVladimir Oltean if (dsa_port_is_cpu(dp) && !bridge_dev && 7117e580490SVladimir Oltean dsa_fdb_present_in_other_db(ds, port, addr, vid, db)) 7127e580490SVladimir Oltean return 0; 7137e580490SVladimir Oltean 714e9b3ba43SVladimir Oltean if (dsa_port_is_cpu(dp)) 715e9b3ba43SVladimir Oltean port = PGID_CPU; 716e9b3ba43SVladimir Oltean 71754c31984SVladimir Oltean return ocelot_fdb_add(ocelot, port, addr, vid, bridge_dev); 71856051948SVladimir Oltean } 71956051948SVladimir Oltean 72056051948SVladimir Oltean static int felix_fdb_del(struct dsa_switch *ds, int port, 721c2693363SVladimir Oltean const unsigned char *addr, u16 vid, 722c2693363SVladimir Oltean struct dsa_db db) 72356051948SVladimir Oltean { 72454c31984SVladimir Oltean struct net_device *bridge_dev = felix_classify_db(db); 725e9b3ba43SVladimir Oltean struct dsa_port *dp = dsa_to_port(ds, port); 72656051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 72756051948SVladimir Oltean 72854c31984SVladimir Oltean if (IS_ERR(bridge_dev)) 72954c31984SVladimir Oltean return PTR_ERR(bridge_dev); 73054c31984SVladimir Oltean 731e9b3ba43SVladimir Oltean if (dsa_port_is_cpu(dp) && !bridge_dev && 7327e580490SVladimir Oltean dsa_fdb_present_in_other_db(ds, port, addr, vid, db)) 7337e580490SVladimir Oltean return 0; 7347e580490SVladimir Oltean 735e9b3ba43SVladimir Oltean if (dsa_port_is_cpu(dp)) 736e9b3ba43SVladimir Oltean port = PGID_CPU; 737e9b3ba43SVladimir Oltean 73854c31984SVladimir Oltean return ocelot_fdb_del(ocelot, port, addr, vid, bridge_dev); 73956051948SVladimir Oltean } 74056051948SVladimir Oltean 741961d8b69SVladimir Oltean static int felix_lag_fdb_add(struct dsa_switch *ds, struct dsa_lag lag, 742c2693363SVladimir Oltean const unsigned char *addr, u16 vid, 743c2693363SVladimir Oltean struct dsa_db db) 744961d8b69SVladimir Oltean { 74554c31984SVladimir Oltean struct net_device *bridge_dev = felix_classify_db(db); 746961d8b69SVladimir Oltean struct ocelot *ocelot = ds->priv; 747961d8b69SVladimir Oltean 74854c31984SVladimir Oltean if (IS_ERR(bridge_dev)) 74954c31984SVladimir Oltean return PTR_ERR(bridge_dev); 75054c31984SVladimir Oltean 75154c31984SVladimir Oltean return ocelot_lag_fdb_add(ocelot, lag.dev, addr, vid, bridge_dev); 752961d8b69SVladimir Oltean } 753961d8b69SVladimir Oltean 754961d8b69SVladimir Oltean static int felix_lag_fdb_del(struct dsa_switch *ds, struct dsa_lag lag, 755c2693363SVladimir Oltean const unsigned char *addr, u16 vid, 756c2693363SVladimir Oltean struct dsa_db db) 757961d8b69SVladimir Oltean { 75854c31984SVladimir Oltean struct net_device *bridge_dev = felix_classify_db(db); 759961d8b69SVladimir Oltean struct ocelot *ocelot = ds->priv; 760961d8b69SVladimir Oltean 76154c31984SVladimir Oltean if (IS_ERR(bridge_dev)) 76254c31984SVladimir Oltean return PTR_ERR(bridge_dev); 76354c31984SVladimir Oltean 76454c31984SVladimir Oltean return ocelot_lag_fdb_del(ocelot, lag.dev, addr, vid, bridge_dev); 765961d8b69SVladimir Oltean } 766961d8b69SVladimir Oltean 767a52b2da7SVladimir Oltean static int felix_mdb_add(struct dsa_switch *ds, int port, 768c2693363SVladimir Oltean const struct switchdev_obj_port_mdb *mdb, 769c2693363SVladimir Oltean struct dsa_db db) 770209edf95SVladimir Oltean { 77154c31984SVladimir Oltean struct net_device *bridge_dev = felix_classify_db(db); 772209edf95SVladimir Oltean struct ocelot *ocelot = ds->priv; 773209edf95SVladimir Oltean 77454c31984SVladimir Oltean if (IS_ERR(bridge_dev)) 77554c31984SVladimir Oltean return PTR_ERR(bridge_dev); 77654c31984SVladimir Oltean 7777e580490SVladimir Oltean if (dsa_is_cpu_port(ds, port) && !bridge_dev && 7787e580490SVladimir Oltean dsa_mdb_present_in_other_db(ds, port, mdb, db)) 7797e580490SVladimir Oltean return 0; 7807e580490SVladimir Oltean 7810ddf83cdSVladimir Oltean if (port == ocelot->npi) 7820ddf83cdSVladimir Oltean port = ocelot->num_phys_ports; 7830ddf83cdSVladimir Oltean 78454c31984SVladimir Oltean return ocelot_port_mdb_add(ocelot, port, mdb, bridge_dev); 785209edf95SVladimir Oltean } 786209edf95SVladimir Oltean 787209edf95SVladimir Oltean static int felix_mdb_del(struct dsa_switch *ds, int port, 788c2693363SVladimir Oltean const struct switchdev_obj_port_mdb *mdb, 789c2693363SVladimir Oltean struct dsa_db db) 790209edf95SVladimir Oltean { 79154c31984SVladimir Oltean struct net_device *bridge_dev = felix_classify_db(db); 792209edf95SVladimir Oltean struct ocelot *ocelot = ds->priv; 793209edf95SVladimir Oltean 79454c31984SVladimir Oltean if (IS_ERR(bridge_dev)) 79554c31984SVladimir Oltean return PTR_ERR(bridge_dev); 79654c31984SVladimir Oltean 7977e580490SVladimir Oltean if (dsa_is_cpu_port(ds, port) && !bridge_dev && 7987e580490SVladimir Oltean dsa_mdb_present_in_other_db(ds, port, mdb, db)) 7997e580490SVladimir Oltean return 0; 8007e580490SVladimir Oltean 8010ddf83cdSVladimir Oltean if (port == ocelot->npi) 8020ddf83cdSVladimir Oltean port = ocelot->num_phys_ports; 8030ddf83cdSVladimir Oltean 80454c31984SVladimir Oltean return ocelot_port_mdb_del(ocelot, port, mdb, bridge_dev); 805209edf95SVladimir Oltean } 806209edf95SVladimir Oltean 80756051948SVladimir Oltean static void felix_bridge_stp_state_set(struct dsa_switch *ds, int port, 80856051948SVladimir Oltean u8 state) 80956051948SVladimir Oltean { 81056051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 81156051948SVladimir Oltean 81256051948SVladimir Oltean return ocelot_bridge_stp_state_set(ocelot, port, state); 81356051948SVladimir Oltean } 81456051948SVladimir Oltean 815421741eaSVladimir Oltean static int felix_pre_bridge_flags(struct dsa_switch *ds, int port, 816421741eaSVladimir Oltean struct switchdev_brport_flags val, 817421741eaSVladimir Oltean struct netlink_ext_ack *extack) 818421741eaSVladimir Oltean { 819421741eaSVladimir Oltean struct ocelot *ocelot = ds->priv; 820421741eaSVladimir Oltean 821421741eaSVladimir Oltean return ocelot_port_pre_bridge_flags(ocelot, port, val); 822421741eaSVladimir Oltean } 823421741eaSVladimir Oltean 824421741eaSVladimir Oltean static int felix_bridge_flags(struct dsa_switch *ds, int port, 825421741eaSVladimir Oltean struct switchdev_brport_flags val, 826421741eaSVladimir Oltean struct netlink_ext_ack *extack) 827421741eaSVladimir Oltean { 828421741eaSVladimir Oltean struct ocelot *ocelot = ds->priv; 829421741eaSVladimir Oltean 830910ee6ccSVladimir Oltean if (port == ocelot->npi) 831910ee6ccSVladimir Oltean port = ocelot->num_phys_ports; 832910ee6ccSVladimir Oltean 833421741eaSVladimir Oltean ocelot_port_bridge_flags(ocelot, port, val); 834421741eaSVladimir Oltean 835421741eaSVladimir Oltean return 0; 836421741eaSVladimir Oltean } 837421741eaSVladimir Oltean 83856051948SVladimir Oltean static int felix_bridge_join(struct dsa_switch *ds, int port, 83906b9cce4SVladimir Oltean struct dsa_bridge bridge, bool *tx_fwd_offload, 84006b9cce4SVladimir Oltean struct netlink_ext_ack *extack) 84156051948SVladimir Oltean { 84256051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 84356051948SVladimir Oltean 84454c31984SVladimir Oltean return ocelot_port_bridge_join(ocelot, port, bridge.dev, bridge.num, 84554c31984SVladimir Oltean extack); 84656051948SVladimir Oltean } 84756051948SVladimir Oltean 84856051948SVladimir Oltean static void felix_bridge_leave(struct dsa_switch *ds, int port, 849d3eed0e5SVladimir Oltean struct dsa_bridge bridge) 85056051948SVladimir Oltean { 85156051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 85256051948SVladimir Oltean 853d3eed0e5SVladimir Oltean ocelot_port_bridge_leave(ocelot, port, bridge.dev); 85456051948SVladimir Oltean } 85556051948SVladimir Oltean 8568fe6832eSVladimir Oltean static int felix_lag_join(struct dsa_switch *ds, int port, 857dedd6a00SVladimir Oltean struct dsa_lag lag, 8588fe6832eSVladimir Oltean struct netdev_lag_upper_info *info) 8598fe6832eSVladimir Oltean { 8608fe6832eSVladimir Oltean struct ocelot *ocelot = ds->priv; 8618fe6832eSVladimir Oltean 862dedd6a00SVladimir Oltean return ocelot_port_lag_join(ocelot, port, lag.dev, info); 8638fe6832eSVladimir Oltean } 8648fe6832eSVladimir Oltean 8658fe6832eSVladimir Oltean static int felix_lag_leave(struct dsa_switch *ds, int port, 866dedd6a00SVladimir Oltean struct dsa_lag lag) 8678fe6832eSVladimir Oltean { 8688fe6832eSVladimir Oltean struct ocelot *ocelot = ds->priv; 8698fe6832eSVladimir Oltean 870dedd6a00SVladimir Oltean ocelot_port_lag_leave(ocelot, port, lag.dev); 8718fe6832eSVladimir Oltean 8728fe6832eSVladimir Oltean return 0; 8738fe6832eSVladimir Oltean } 8748fe6832eSVladimir Oltean 8758fe6832eSVladimir Oltean static int felix_lag_change(struct dsa_switch *ds, int port) 8768fe6832eSVladimir Oltean { 8778fe6832eSVladimir Oltean struct dsa_port *dp = dsa_to_port(ds, port); 8788fe6832eSVladimir Oltean struct ocelot *ocelot = ds->priv; 8798fe6832eSVladimir Oltean 8808fe6832eSVladimir Oltean ocelot_port_lag_change(ocelot, port, dp->lag_tx_enabled); 8818fe6832eSVladimir Oltean 8828fe6832eSVladimir Oltean return 0; 8838fe6832eSVladimir Oltean } 8848fe6832eSVladimir Oltean 88556051948SVladimir Oltean static int felix_vlan_prepare(struct dsa_switch *ds, int port, 88601af940eSVladimir Oltean const struct switchdev_obj_port_vlan *vlan, 88701af940eSVladimir Oltean struct netlink_ext_ack *extack) 88856051948SVladimir Oltean { 8892f0402feSVladimir Oltean struct ocelot *ocelot = ds->priv; 890b7a9e0daSVladimir Oltean u16 flags = vlan->flags; 8912f0402feSVladimir Oltean 8929a720680SVladimir Oltean /* Ocelot switches copy frames as-is to the CPU, so the flags: 8939a720680SVladimir Oltean * egress-untagged or not, pvid or not, make no difference. This 8949a720680SVladimir Oltean * behavior is already better than what DSA just tries to approximate 8959a720680SVladimir Oltean * when it installs the VLAN with the same flags on the CPU port. 8969a720680SVladimir Oltean * Just accept any configuration, and don't let ocelot deny installing 8979a720680SVladimir Oltean * multiple native VLANs on the NPI port, because the switch doesn't 8989a720680SVladimir Oltean * look at the port tag settings towards the NPI interface anyway. 8999a720680SVladimir Oltean */ 9009a720680SVladimir Oltean if (port == ocelot->npi) 9019a720680SVladimir Oltean return 0; 9029a720680SVladimir Oltean 903b7a9e0daSVladimir Oltean return ocelot_vlan_prepare(ocelot, port, vlan->vid, 9042f0402feSVladimir Oltean flags & BRIDGE_VLAN_INFO_PVID, 90501af940eSVladimir Oltean flags & BRIDGE_VLAN_INFO_UNTAGGED, 90601af940eSVladimir Oltean extack); 90756051948SVladimir Oltean } 90856051948SVladimir Oltean 90989153ed6SVladimir Oltean static int felix_vlan_filtering(struct dsa_switch *ds, int port, bool enabled, 91089153ed6SVladimir Oltean struct netlink_ext_ack *extack) 91156051948SVladimir Oltean { 91256051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 91356051948SVladimir Oltean 9143b95d1b2SVladimir Oltean return ocelot_port_vlan_filtering(ocelot, port, enabled, extack); 91556051948SVladimir Oltean } 91656051948SVladimir Oltean 9171958d581SVladimir Oltean static int felix_vlan_add(struct dsa_switch *ds, int port, 91831046a5fSVladimir Oltean const struct switchdev_obj_port_vlan *vlan, 91931046a5fSVladimir Oltean struct netlink_ext_ack *extack) 92056051948SVladimir Oltean { 92156051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 922183be6f9SVladimir Oltean u16 flags = vlan->flags; 9231958d581SVladimir Oltean int err; 92456051948SVladimir Oltean 92501af940eSVladimir Oltean err = felix_vlan_prepare(ds, port, vlan, extack); 9261958d581SVladimir Oltean if (err) 9271958d581SVladimir Oltean return err; 9281958d581SVladimir Oltean 9291958d581SVladimir Oltean return ocelot_vlan_add(ocelot, port, vlan->vid, 930183be6f9SVladimir Oltean flags & BRIDGE_VLAN_INFO_PVID, 931183be6f9SVladimir Oltean flags & BRIDGE_VLAN_INFO_UNTAGGED); 93256051948SVladimir Oltean } 93356051948SVladimir Oltean 93456051948SVladimir Oltean static int felix_vlan_del(struct dsa_switch *ds, int port, 93556051948SVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 93656051948SVladimir Oltean { 93756051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 93856051948SVladimir Oltean 939b7a9e0daSVladimir Oltean return ocelot_vlan_del(ocelot, port, vlan->vid); 94056051948SVladimir Oltean } 94156051948SVladimir Oltean 94279fda660SRussell King (Oracle) static void felix_phylink_get_caps(struct dsa_switch *ds, int port, 94379fda660SRussell King (Oracle) struct phylink_config *config) 94479fda660SRussell King (Oracle) { 94579fda660SRussell King (Oracle) struct ocelot *ocelot = ds->priv; 94679fda660SRussell King (Oracle) 947f6f04c02SRussell King (Oracle) /* This driver does not make use of the speed, duplex, pause or the 948f6f04c02SRussell King (Oracle) * advertisement in its mac_config, so it is safe to mark this driver 949f6f04c02SRussell King (Oracle) * as non-legacy. 950f6f04c02SRussell King (Oracle) */ 951f6f04c02SRussell King (Oracle) config->legacy_pre_march2020 = false; 952f6f04c02SRussell King (Oracle) 95379fda660SRussell King (Oracle) __set_bit(ocelot->ports[port]->phy_mode, 95479fda660SRussell King (Oracle) config->supported_interfaces); 95579fda660SRussell King (Oracle) } 95679fda660SRussell King (Oracle) 957bdeced75SVladimir Oltean static void felix_phylink_validate(struct dsa_switch *ds, int port, 958bdeced75SVladimir Oltean unsigned long *supported, 959bdeced75SVladimir Oltean struct phylink_link_state *state) 960bdeced75SVladimir Oltean { 961bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 962375e1314SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 963bdeced75SVladimir Oltean 964375e1314SVladimir Oltean if (felix->info->phylink_validate) 965375e1314SVladimir Oltean felix->info->phylink_validate(ocelot, port, supported, state); 966bdeced75SVladimir Oltean } 967bdeced75SVladimir Oltean 968864ba485SRussell King (Oracle) static struct phylink_pcs *felix_phylink_mac_select_pcs(struct dsa_switch *ds, 969864ba485SRussell King (Oracle) int port, 970864ba485SRussell King (Oracle) phy_interface_t iface) 971bdeced75SVladimir Oltean { 972bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 973bdeced75SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 974864ba485SRussell King (Oracle) struct phylink_pcs *pcs = NULL; 975bdeced75SVladimir Oltean 97649af6a76SColin Foster if (felix->pcs && felix->pcs[port]) 977864ba485SRussell King (Oracle) pcs = felix->pcs[port]; 978864ba485SRussell King (Oracle) 979864ba485SRussell King (Oracle) return pcs; 980bdeced75SVladimir Oltean } 981bdeced75SVladimir Oltean 982bdeced75SVladimir Oltean static void felix_phylink_mac_link_down(struct dsa_switch *ds, int port, 983bdeced75SVladimir Oltean unsigned int link_an_mode, 984bdeced75SVladimir Oltean phy_interface_t interface) 985bdeced75SVladimir Oltean { 986bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 987bdeced75SVladimir Oltean 988e6e12df6SVladimir Oltean ocelot_phylink_mac_link_down(ocelot, port, link_an_mode, interface, 989e6e12df6SVladimir Oltean FELIX_MAC_QUIRKS); 990bdeced75SVladimir Oltean } 991bdeced75SVladimir Oltean 992bdeced75SVladimir Oltean static void felix_phylink_mac_link_up(struct dsa_switch *ds, int port, 993bdeced75SVladimir Oltean unsigned int link_an_mode, 994bdeced75SVladimir Oltean phy_interface_t interface, 9955b502a7bSRussell King struct phy_device *phydev, 9965b502a7bSRussell King int speed, int duplex, 9975b502a7bSRussell King bool tx_pause, bool rx_pause) 998bdeced75SVladimir Oltean { 999bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 10007e14a2dcSVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 1001bdeced75SVladimir Oltean 1002e6e12df6SVladimir Oltean ocelot_phylink_mac_link_up(ocelot, port, phydev, link_an_mode, 1003e6e12df6SVladimir Oltean interface, speed, duplex, tx_pause, rx_pause, 1004e6e12df6SVladimir Oltean FELIX_MAC_QUIRKS); 10057e14a2dcSVladimir Oltean 10067e14a2dcSVladimir Oltean if (felix->info->port_sched_speed_set) 10077e14a2dcSVladimir Oltean felix->info->port_sched_speed_set(ocelot, port, speed); 1008bdeced75SVladimir Oltean } 1009bdeced75SVladimir Oltean 1010bd2b3161SXiaoliang Yang static void felix_port_qos_map_init(struct ocelot *ocelot, int port) 1011bd2b3161SXiaoliang Yang { 1012bd2b3161SXiaoliang Yang int i; 1013bd2b3161SXiaoliang Yang 1014bd2b3161SXiaoliang Yang ocelot_rmw_gix(ocelot, 1015bd2b3161SXiaoliang Yang ANA_PORT_QOS_CFG_QOS_PCP_ENA, 1016bd2b3161SXiaoliang Yang ANA_PORT_QOS_CFG_QOS_PCP_ENA, 1017bd2b3161SXiaoliang Yang ANA_PORT_QOS_CFG, 1018bd2b3161SXiaoliang Yang port); 1019bd2b3161SXiaoliang Yang 102070d39a6eSVladimir Oltean for (i = 0; i < OCELOT_NUM_TC * 2; i++) { 1021bd2b3161SXiaoliang Yang ocelot_rmw_ix(ocelot, 1022bd2b3161SXiaoliang Yang (ANA_PORT_PCP_DEI_MAP_DP_PCP_DEI_VAL & i) | 1023bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP_QOS_PCP_DEI_VAL(i), 1024bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP_DP_PCP_DEI_VAL | 1025bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP_QOS_PCP_DEI_VAL_M, 1026bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP, 1027bd2b3161SXiaoliang Yang port, i); 1028bd2b3161SXiaoliang Yang } 1029bd2b3161SXiaoliang Yang } 1030bd2b3161SXiaoliang Yang 103156051948SVladimir Oltean static void felix_get_strings(struct dsa_switch *ds, int port, 103256051948SVladimir Oltean u32 stringset, u8 *data) 103356051948SVladimir Oltean { 103456051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 103556051948SVladimir Oltean 103656051948SVladimir Oltean return ocelot_get_strings(ocelot, port, stringset, data); 103756051948SVladimir Oltean } 103856051948SVladimir Oltean 103956051948SVladimir Oltean static void felix_get_ethtool_stats(struct dsa_switch *ds, int port, u64 *data) 104056051948SVladimir Oltean { 104156051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 104256051948SVladimir Oltean 104356051948SVladimir Oltean ocelot_get_ethtool_stats(ocelot, port, data); 104456051948SVladimir Oltean } 104556051948SVladimir Oltean 104656051948SVladimir Oltean static int felix_get_sset_count(struct dsa_switch *ds, int port, int sset) 104756051948SVladimir Oltean { 104856051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 104956051948SVladimir Oltean 105056051948SVladimir Oltean return ocelot_get_sset_count(ocelot, port, sset); 105156051948SVladimir Oltean } 105256051948SVladimir Oltean 105356051948SVladimir Oltean static int felix_get_ts_info(struct dsa_switch *ds, int port, 105456051948SVladimir Oltean struct ethtool_ts_info *info) 105556051948SVladimir Oltean { 105656051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 105756051948SVladimir Oltean 105856051948SVladimir Oltean return ocelot_get_ts_info(ocelot, port, info); 105956051948SVladimir Oltean } 106056051948SVladimir Oltean 1061acf242fcSColin Foster static const u32 felix_phy_match_table[PHY_INTERFACE_MODE_MAX] = { 1062acf242fcSColin Foster [PHY_INTERFACE_MODE_INTERNAL] = OCELOT_PORT_MODE_INTERNAL, 1063acf242fcSColin Foster [PHY_INTERFACE_MODE_SGMII] = OCELOT_PORT_MODE_SGMII, 1064acf242fcSColin Foster [PHY_INTERFACE_MODE_QSGMII] = OCELOT_PORT_MODE_QSGMII, 1065acf242fcSColin Foster [PHY_INTERFACE_MODE_USXGMII] = OCELOT_PORT_MODE_USXGMII, 106611ecf341SVladimir Oltean [PHY_INTERFACE_MODE_1000BASEX] = OCELOT_PORT_MODE_1000BASEX, 1067acf242fcSColin Foster [PHY_INTERFACE_MODE_2500BASEX] = OCELOT_PORT_MODE_2500BASEX, 1068acf242fcSColin Foster }; 1069acf242fcSColin Foster 1070acf242fcSColin Foster static int felix_validate_phy_mode(struct felix *felix, int port, 1071acf242fcSColin Foster phy_interface_t phy_mode) 1072acf242fcSColin Foster { 1073acf242fcSColin Foster u32 modes = felix->info->port_modes[port]; 1074acf242fcSColin Foster 1075acf242fcSColin Foster if (felix_phy_match_table[phy_mode] & modes) 1076acf242fcSColin Foster return 0; 1077acf242fcSColin Foster return -EOPNOTSUPP; 1078acf242fcSColin Foster } 1079acf242fcSColin Foster 1080bdeced75SVladimir Oltean static int felix_parse_ports_node(struct felix *felix, 1081bdeced75SVladimir Oltean struct device_node *ports_node, 1082bdeced75SVladimir Oltean phy_interface_t *port_phy_modes) 1083bdeced75SVladimir Oltean { 1084bdeced75SVladimir Oltean struct device *dev = felix->ocelot.dev; 1085bdeced75SVladimir Oltean struct device_node *child; 1086bdeced75SVladimir Oltean 108737fe45adSVladimir Oltean for_each_available_child_of_node(ports_node, child) { 1088bdeced75SVladimir Oltean phy_interface_t phy_mode; 1089bdeced75SVladimir Oltean u32 port; 1090bdeced75SVladimir Oltean int err; 1091bdeced75SVladimir Oltean 1092bdeced75SVladimir Oltean /* Get switch port number from DT */ 1093bdeced75SVladimir Oltean if (of_property_read_u32(child, "reg", &port) < 0) { 1094bdeced75SVladimir Oltean dev_err(dev, "Port number not defined in device tree " 1095bdeced75SVladimir Oltean "(property \"reg\")\n"); 1096bdeced75SVladimir Oltean of_node_put(child); 1097bdeced75SVladimir Oltean return -ENODEV; 1098bdeced75SVladimir Oltean } 1099bdeced75SVladimir Oltean 1100bdeced75SVladimir Oltean /* Get PHY mode from DT */ 1101bdeced75SVladimir Oltean err = of_get_phy_mode(child, &phy_mode); 1102bdeced75SVladimir Oltean if (err) { 1103bdeced75SVladimir Oltean dev_err(dev, "Failed to read phy-mode or " 1104bdeced75SVladimir Oltean "phy-interface-type property for port %d\n", 1105bdeced75SVladimir Oltean port); 1106bdeced75SVladimir Oltean of_node_put(child); 1107bdeced75SVladimir Oltean return -ENODEV; 1108bdeced75SVladimir Oltean } 1109bdeced75SVladimir Oltean 1110acf242fcSColin Foster err = felix_validate_phy_mode(felix, port, phy_mode); 1111bdeced75SVladimir Oltean if (err < 0) { 1112bdeced75SVladimir Oltean dev_err(dev, "Unsupported PHY mode %s on port %d\n", 1113bdeced75SVladimir Oltean phy_modes(phy_mode), port); 111459ebb430SSumera Priyadarsini of_node_put(child); 1115bdeced75SVladimir Oltean return err; 1116bdeced75SVladimir Oltean } 1117bdeced75SVladimir Oltean 1118bdeced75SVladimir Oltean port_phy_modes[port] = phy_mode; 1119bdeced75SVladimir Oltean } 1120bdeced75SVladimir Oltean 1121bdeced75SVladimir Oltean return 0; 1122bdeced75SVladimir Oltean } 1123bdeced75SVladimir Oltean 1124bdeced75SVladimir Oltean static int felix_parse_dt(struct felix *felix, phy_interface_t *port_phy_modes) 1125bdeced75SVladimir Oltean { 1126bdeced75SVladimir Oltean struct device *dev = felix->ocelot.dev; 1127bdeced75SVladimir Oltean struct device_node *switch_node; 1128bdeced75SVladimir Oltean struct device_node *ports_node; 1129bdeced75SVladimir Oltean int err; 1130bdeced75SVladimir Oltean 1131bdeced75SVladimir Oltean switch_node = dev->of_node; 1132bdeced75SVladimir Oltean 1133bdeced75SVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ports"); 1134abecbfcdSVladimir Oltean if (!ports_node) 1135abecbfcdSVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ethernet-ports"); 1136bdeced75SVladimir Oltean if (!ports_node) { 1137abecbfcdSVladimir Oltean dev_err(dev, "Incorrect bindings: absent \"ports\" or \"ethernet-ports\" node\n"); 1138bdeced75SVladimir Oltean return -ENODEV; 1139bdeced75SVladimir Oltean } 1140bdeced75SVladimir Oltean 1141bdeced75SVladimir Oltean err = felix_parse_ports_node(felix, ports_node, port_phy_modes); 1142bdeced75SVladimir Oltean of_node_put(ports_node); 1143bdeced75SVladimir Oltean 1144bdeced75SVladimir Oltean return err; 1145bdeced75SVladimir Oltean } 1146bdeced75SVladimir Oltean 114756051948SVladimir Oltean static int felix_init_structs(struct felix *felix, int num_phys_ports) 114856051948SVladimir Oltean { 114956051948SVladimir Oltean struct ocelot *ocelot = &felix->ocelot; 1150bdeced75SVladimir Oltean phy_interface_t *port_phy_modes; 1151b4024c9eSClaudiu Manoil struct resource res; 115256051948SVladimir Oltean int port, i, err; 115356051948SVladimir Oltean 115456051948SVladimir Oltean ocelot->num_phys_ports = num_phys_ports; 115556051948SVladimir Oltean ocelot->ports = devm_kcalloc(ocelot->dev, num_phys_ports, 115656051948SVladimir Oltean sizeof(struct ocelot_port *), GFP_KERNEL); 115756051948SVladimir Oltean if (!ocelot->ports) 115856051948SVladimir Oltean return -ENOMEM; 115956051948SVladimir Oltean 116056051948SVladimir Oltean ocelot->map = felix->info->map; 116156051948SVladimir Oltean ocelot->stats_layout = felix->info->stats_layout; 116221ce7f3eSVladimir Oltean ocelot->num_mact_rows = felix->info->num_mact_rows; 116307d985eeSVladimir Oltean ocelot->vcap = felix->info->vcap; 116477043c37SXiaoliang Yang ocelot->vcap_pol.base = felix->info->vcap_pol_base; 116577043c37SXiaoliang Yang ocelot->vcap_pol.max = felix->info->vcap_pol_max; 116677043c37SXiaoliang Yang ocelot->vcap_pol.base2 = felix->info->vcap_pol_base2; 116777043c37SXiaoliang Yang ocelot->vcap_pol.max2 = felix->info->vcap_pol_max2; 116856051948SVladimir Oltean ocelot->ops = felix->info->ops; 1169cacea62fSVladimir Oltean ocelot->npi_inj_prefix = OCELOT_TAG_PREFIX_SHORT; 1170cacea62fSVladimir Oltean ocelot->npi_xtr_prefix = OCELOT_TAG_PREFIX_SHORT; 1171f59fd9caSVladimir Oltean ocelot->devlink = felix->ds->devlink; 117256051948SVladimir Oltean 1173bdeced75SVladimir Oltean port_phy_modes = kcalloc(num_phys_ports, sizeof(phy_interface_t), 1174bdeced75SVladimir Oltean GFP_KERNEL); 1175bdeced75SVladimir Oltean if (!port_phy_modes) 1176bdeced75SVladimir Oltean return -ENOMEM; 1177bdeced75SVladimir Oltean 1178bdeced75SVladimir Oltean err = felix_parse_dt(felix, port_phy_modes); 1179bdeced75SVladimir Oltean if (err) { 1180bdeced75SVladimir Oltean kfree(port_phy_modes); 1181bdeced75SVladimir Oltean return err; 1182bdeced75SVladimir Oltean } 1183bdeced75SVladimir Oltean 118456051948SVladimir Oltean for (i = 0; i < TARGET_MAX; i++) { 118556051948SVladimir Oltean struct regmap *target; 118656051948SVladimir Oltean 118756051948SVladimir Oltean if (!felix->info->target_io_res[i].name) 118856051948SVladimir Oltean continue; 118956051948SVladimir Oltean 1190b4024c9eSClaudiu Manoil memcpy(&res, &felix->info->target_io_res[i], sizeof(res)); 1191b4024c9eSClaudiu Manoil res.flags = IORESOURCE_MEM; 1192375e1314SVladimir Oltean res.start += felix->switch_base; 1193375e1314SVladimir Oltean res.end += felix->switch_base; 119456051948SVladimir Oltean 1195242bd0c1SColin Foster target = felix->info->init_regmap(ocelot, &res); 119656051948SVladimir Oltean if (IS_ERR(target)) { 119756051948SVladimir Oltean dev_err(ocelot->dev, 119856051948SVladimir Oltean "Failed to map device memory space\n"); 1199bdeced75SVladimir Oltean kfree(port_phy_modes); 120056051948SVladimir Oltean return PTR_ERR(target); 120156051948SVladimir Oltean } 120256051948SVladimir Oltean 120356051948SVladimir Oltean ocelot->targets[i] = target; 120456051948SVladimir Oltean } 120556051948SVladimir Oltean 120656051948SVladimir Oltean err = ocelot_regfields_init(ocelot, felix->info->regfields); 120756051948SVladimir Oltean if (err) { 120856051948SVladimir Oltean dev_err(ocelot->dev, "failed to init reg fields map\n"); 1209bdeced75SVladimir Oltean kfree(port_phy_modes); 121056051948SVladimir Oltean return err; 121156051948SVladimir Oltean } 121256051948SVladimir Oltean 121356051948SVladimir Oltean for (port = 0; port < num_phys_ports; port++) { 121456051948SVladimir Oltean struct ocelot_port *ocelot_port; 121591c724cfSVladimir Oltean struct regmap *target; 121656051948SVladimir Oltean 121756051948SVladimir Oltean ocelot_port = devm_kzalloc(ocelot->dev, 121856051948SVladimir Oltean sizeof(struct ocelot_port), 121956051948SVladimir Oltean GFP_KERNEL); 122056051948SVladimir Oltean if (!ocelot_port) { 122156051948SVladimir Oltean dev_err(ocelot->dev, 122256051948SVladimir Oltean "failed to allocate port memory\n"); 1223bdeced75SVladimir Oltean kfree(port_phy_modes); 122456051948SVladimir Oltean return -ENOMEM; 122556051948SVladimir Oltean } 122656051948SVladimir Oltean 1227b4024c9eSClaudiu Manoil memcpy(&res, &felix->info->port_io_res[port], sizeof(res)); 1228b4024c9eSClaudiu Manoil res.flags = IORESOURCE_MEM; 1229375e1314SVladimir Oltean res.start += felix->switch_base; 1230375e1314SVladimir Oltean res.end += felix->switch_base; 123156051948SVladimir Oltean 1232242bd0c1SColin Foster target = felix->info->init_regmap(ocelot, &res); 123391c724cfSVladimir Oltean if (IS_ERR(target)) { 123456051948SVladimir Oltean dev_err(ocelot->dev, 123591c724cfSVladimir Oltean "Failed to map memory space for port %d\n", 123691c724cfSVladimir Oltean port); 1237bdeced75SVladimir Oltean kfree(port_phy_modes); 123891c724cfSVladimir Oltean return PTR_ERR(target); 123956051948SVladimir Oltean } 124056051948SVladimir Oltean 1241bdeced75SVladimir Oltean ocelot_port->phy_mode = port_phy_modes[port]; 124256051948SVladimir Oltean ocelot_port->ocelot = ocelot; 124391c724cfSVladimir Oltean ocelot_port->target = target; 12447e708760SVladimir Oltean ocelot_port->index = port; 124556051948SVladimir Oltean ocelot->ports[port] = ocelot_port; 124656051948SVladimir Oltean } 124756051948SVladimir Oltean 1248bdeced75SVladimir Oltean kfree(port_phy_modes); 1249bdeced75SVladimir Oltean 1250bdeced75SVladimir Oltean if (felix->info->mdio_bus_alloc) { 1251bdeced75SVladimir Oltean err = felix->info->mdio_bus_alloc(ocelot); 1252bdeced75SVladimir Oltean if (err < 0) 1253bdeced75SVladimir Oltean return err; 1254bdeced75SVladimir Oltean } 1255bdeced75SVladimir Oltean 125656051948SVladimir Oltean return 0; 125756051948SVladimir Oltean } 125856051948SVladimir Oltean 12591328a883SVladimir Oltean static void ocelot_port_purge_txtstamp_skb(struct ocelot *ocelot, int port, 12601328a883SVladimir Oltean struct sk_buff *skb) 12611328a883SVladimir Oltean { 12621328a883SVladimir Oltean struct ocelot_port *ocelot_port = ocelot->ports[port]; 12631328a883SVladimir Oltean struct sk_buff *clone = OCELOT_SKB_CB(skb)->clone; 12641328a883SVladimir Oltean struct sk_buff *skb_match = NULL, *skb_tmp; 12651328a883SVladimir Oltean unsigned long flags; 12661328a883SVladimir Oltean 12671328a883SVladimir Oltean if (!clone) 12681328a883SVladimir Oltean return; 12691328a883SVladimir Oltean 12701328a883SVladimir Oltean spin_lock_irqsave(&ocelot_port->tx_skbs.lock, flags); 12711328a883SVladimir Oltean 12721328a883SVladimir Oltean skb_queue_walk_safe(&ocelot_port->tx_skbs, skb, skb_tmp) { 12731328a883SVladimir Oltean if (skb != clone) 12741328a883SVladimir Oltean continue; 12751328a883SVladimir Oltean __skb_unlink(skb, &ocelot_port->tx_skbs); 12761328a883SVladimir Oltean skb_match = skb; 12771328a883SVladimir Oltean break; 12781328a883SVladimir Oltean } 12791328a883SVladimir Oltean 12801328a883SVladimir Oltean spin_unlock_irqrestore(&ocelot_port->tx_skbs.lock, flags); 12811328a883SVladimir Oltean 12821328a883SVladimir Oltean WARN_ONCE(!skb_match, 12831328a883SVladimir Oltean "Could not find skb clone in TX timestamping list\n"); 12841328a883SVladimir Oltean } 12851328a883SVladimir Oltean 128649f885b2SVladimir Oltean #define work_to_xmit_work(w) \ 128749f885b2SVladimir Oltean container_of((w), struct felix_deferred_xmit_work, work) 128849f885b2SVladimir Oltean 128949f885b2SVladimir Oltean static void felix_port_deferred_xmit(struct kthread_work *work) 129049f885b2SVladimir Oltean { 129149f885b2SVladimir Oltean struct felix_deferred_xmit_work *xmit_work = work_to_xmit_work(work); 129249f885b2SVladimir Oltean struct dsa_switch *ds = xmit_work->dp->ds; 129349f885b2SVladimir Oltean struct sk_buff *skb = xmit_work->skb; 129449f885b2SVladimir Oltean u32 rew_op = ocelot_ptp_rew_op(skb); 129549f885b2SVladimir Oltean struct ocelot *ocelot = ds->priv; 129649f885b2SVladimir Oltean int port = xmit_work->dp->index; 129749f885b2SVladimir Oltean int retries = 10; 129849f885b2SVladimir Oltean 129949f885b2SVladimir Oltean do { 130049f885b2SVladimir Oltean if (ocelot_can_inject(ocelot, 0)) 130149f885b2SVladimir Oltean break; 130249f885b2SVladimir Oltean 130349f885b2SVladimir Oltean cpu_relax(); 130449f885b2SVladimir Oltean } while (--retries); 130549f885b2SVladimir Oltean 130649f885b2SVladimir Oltean if (!retries) { 130749f885b2SVladimir Oltean dev_err(ocelot->dev, "port %d failed to inject skb\n", 130849f885b2SVladimir Oltean port); 13091328a883SVladimir Oltean ocelot_port_purge_txtstamp_skb(ocelot, port, skb); 131049f885b2SVladimir Oltean kfree_skb(skb); 131149f885b2SVladimir Oltean return; 131249f885b2SVladimir Oltean } 131349f885b2SVladimir Oltean 131449f885b2SVladimir Oltean ocelot_port_inject_frame(ocelot, port, 0, rew_op, skb); 131549f885b2SVladimir Oltean 131649f885b2SVladimir Oltean consume_skb(skb); 131749f885b2SVladimir Oltean kfree(xmit_work); 131849f885b2SVladimir Oltean } 131949f885b2SVladimir Oltean 132035d97680SVladimir Oltean static int felix_connect_tag_protocol(struct dsa_switch *ds, 132135d97680SVladimir Oltean enum dsa_tag_protocol proto) 132249f885b2SVladimir Oltean { 132335d97680SVladimir Oltean struct ocelot_8021q_tagger_data *tagger_data; 132449f885b2SVladimir Oltean 132535d97680SVladimir Oltean switch (proto) { 132635d97680SVladimir Oltean case DSA_TAG_PROTO_OCELOT_8021Q: 132735d97680SVladimir Oltean tagger_data = ocelot_8021q_tagger_data(ds); 132835d97680SVladimir Oltean tagger_data->xmit_work_fn = felix_port_deferred_xmit; 132949f885b2SVladimir Oltean return 0; 133035d97680SVladimir Oltean case DSA_TAG_PROTO_OCELOT: 133135d97680SVladimir Oltean case DSA_TAG_PROTO_SEVILLE: 133249f885b2SVladimir Oltean return 0; 133335d97680SVladimir Oltean default: 133435d97680SVladimir Oltean return -EPROTONOSUPPORT; 133549f885b2SVladimir Oltean } 133649f885b2SVladimir Oltean } 133749f885b2SVladimir Oltean 133856051948SVladimir Oltean /* Hardware initialization done here so that we can allocate structures with 133956051948SVladimir Oltean * devm without fear of dsa_register_switch returning -EPROBE_DEFER and causing 134056051948SVladimir Oltean * us to allocate structures twice (leak memory) and map PCI memory twice 134156051948SVladimir Oltean * (which will not work). 134256051948SVladimir Oltean */ 134356051948SVladimir Oltean static int felix_setup(struct dsa_switch *ds) 134456051948SVladimir Oltean { 134556051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 134656051948SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 13472960bb14SVladimir Oltean struct dsa_port *dp; 13482960bb14SVladimir Oltean int err; 134956051948SVladimir Oltean 135056051948SVladimir Oltean err = felix_init_structs(felix, ds->num_ports); 135156051948SVladimir Oltean if (err) 135256051948SVladimir Oltean return err; 135356051948SVladimir Oltean 1354d1cc0e93SVladimir Oltean err = ocelot_init(ocelot); 1355d1cc0e93SVladimir Oltean if (err) 13566b73b7c9SVladimir Oltean goto out_mdiobus_free; 1357d1cc0e93SVladimir Oltean 13582b49d128SYangbo Lu if (ocelot->ptp) { 13592ac7c6c5SVladimir Oltean err = ocelot_init_timestamp(ocelot, felix->info->ptp_caps); 13602b49d128SYangbo Lu if (err) { 13612b49d128SYangbo Lu dev_err(ocelot->dev, 13622b49d128SYangbo Lu "Timestamp initialization failed\n"); 13632b49d128SYangbo Lu ocelot->ptp = 0; 13642b49d128SYangbo Lu } 13652b49d128SYangbo Lu } 136656051948SVladimir Oltean 13672960bb14SVladimir Oltean dsa_switch_for_each_available_port(dp, ds) { 13682960bb14SVladimir Oltean ocelot_init_port(ocelot, dp->index); 1369bd2b3161SXiaoliang Yang 1370bd2b3161SXiaoliang Yang /* Set the default QoS Classification based on PCP and DEI 1371bd2b3161SXiaoliang Yang * bits of vlan tag. 1372bd2b3161SXiaoliang Yang */ 13732960bb14SVladimir Oltean felix_port_qos_map_init(ocelot, dp->index); 137456051948SVladimir Oltean } 137556051948SVladimir Oltean 1376f59fd9caSVladimir Oltean err = ocelot_devlink_sb_register(ocelot); 1377f59fd9caSVladimir Oltean if (err) 13786b73b7c9SVladimir Oltean goto out_deinit_ports; 1379f59fd9caSVladimir Oltean 13807a29d220SVladimir Oltean /* The initial tag protocol is NPI which won't fail during initial 13817a29d220SVladimir Oltean * setup, there's no real point in checking for errors. 13821cf3299bSVladimir Oltean */ 13837a29d220SVladimir Oltean felix_change_tag_protocol(ds, felix->tag_proto); 13841cf3299bSVladimir Oltean 13850b912fc9SVladimir Oltean ds->mtu_enforcement_ingress = true; 1386c54913c1SVladimir Oltean ds->assisted_learning_on_cpu_port = true; 138754c31984SVladimir Oltean ds->fdb_isolation = true; 138854c31984SVladimir Oltean ds->max_num_bridges = ds->num_ports; 1389bdeced75SVladimir Oltean 139056051948SVladimir Oltean return 0; 13916b73b7c9SVladimir Oltean 13926b73b7c9SVladimir Oltean out_deinit_ports: 13932960bb14SVladimir Oltean dsa_switch_for_each_available_port(dp, ds) 13942960bb14SVladimir Oltean ocelot_deinit_port(ocelot, dp->index); 13956b73b7c9SVladimir Oltean 13966b73b7c9SVladimir Oltean ocelot_deinit_timestamp(ocelot); 13976b73b7c9SVladimir Oltean ocelot_deinit(ocelot); 13986b73b7c9SVladimir Oltean 13996b73b7c9SVladimir Oltean out_mdiobus_free: 14006b73b7c9SVladimir Oltean if (felix->info->mdio_bus_free) 14016b73b7c9SVladimir Oltean felix->info->mdio_bus_free(ocelot); 14026b73b7c9SVladimir Oltean 14036b73b7c9SVladimir Oltean return err; 140456051948SVladimir Oltean } 140556051948SVladimir Oltean 140656051948SVladimir Oltean static void felix_teardown(struct dsa_switch *ds) 140756051948SVladimir Oltean { 140856051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 1409bdeced75SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 14102960bb14SVladimir Oltean struct dsa_port *dp; 1411bdeced75SVladimir Oltean 14127a29d220SVladimir Oltean if (felix->tag_proto_ops) 14137a29d220SVladimir Oltean felix->tag_proto_ops->teardown(ds); 1414adb3dccfSVladimir Oltean 14152960bb14SVladimir Oltean dsa_switch_for_each_available_port(dp, ds) 14162960bb14SVladimir Oltean ocelot_deinit_port(ocelot, dp->index); 1417d19741b0SVladimir Oltean 141849f885b2SVladimir Oltean ocelot_devlink_sb_unregister(ocelot); 141949f885b2SVladimir Oltean ocelot_deinit_timestamp(ocelot); 142049f885b2SVladimir Oltean ocelot_deinit(ocelot); 142149f885b2SVladimir Oltean 1422d19741b0SVladimir Oltean if (felix->info->mdio_bus_free) 1423d19741b0SVladimir Oltean felix->info->mdio_bus_free(ocelot); 142456051948SVladimir Oltean } 142556051948SVladimir Oltean 1426c0bcf537SYangbo Lu static int felix_hwtstamp_get(struct dsa_switch *ds, int port, 1427c0bcf537SYangbo Lu struct ifreq *ifr) 1428c0bcf537SYangbo Lu { 1429c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 1430c0bcf537SYangbo Lu 1431c0bcf537SYangbo Lu return ocelot_hwstamp_get(ocelot, port, ifr); 1432c0bcf537SYangbo Lu } 1433c0bcf537SYangbo Lu 1434c0bcf537SYangbo Lu static int felix_hwtstamp_set(struct dsa_switch *ds, int port, 1435c0bcf537SYangbo Lu struct ifreq *ifr) 1436c0bcf537SYangbo Lu { 1437c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 143899348004SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 143999348004SVladimir Oltean bool using_tag_8021q; 144099348004SVladimir Oltean int err; 1441c0bcf537SYangbo Lu 144299348004SVladimir Oltean err = ocelot_hwstamp_set(ocelot, port, ifr); 144399348004SVladimir Oltean if (err) 144499348004SVladimir Oltean return err; 144599348004SVladimir Oltean 144699348004SVladimir Oltean using_tag_8021q = felix->tag_proto == DSA_TAG_PROTO_OCELOT_8021Q; 144799348004SVladimir Oltean 144899348004SVladimir Oltean return felix_update_trapping_destinations(ds, using_tag_8021q); 1449c0bcf537SYangbo Lu } 1450c0bcf537SYangbo Lu 1451d219b4b6SVladimir Oltean static bool felix_check_xtr_pkt(struct ocelot *ocelot) 14520a6f17c6SVladimir Oltean { 14530a6f17c6SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 1454dbd03285SVladimir Oltean int err = 0, grp = 0; 14550a6f17c6SVladimir Oltean 14560a6f17c6SVladimir Oltean if (felix->tag_proto != DSA_TAG_PROTO_OCELOT_8021Q) 14570a6f17c6SVladimir Oltean return false; 14580a6f17c6SVladimir Oltean 14590a6f17c6SVladimir Oltean if (!felix->info->quirk_no_xtr_irq) 14600a6f17c6SVladimir Oltean return false; 14610a6f17c6SVladimir Oltean 14620a6f17c6SVladimir Oltean while (ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp)) { 14630a6f17c6SVladimir Oltean struct sk_buff *skb; 14640a6f17c6SVladimir Oltean unsigned int type; 14650a6f17c6SVladimir Oltean 14660a6f17c6SVladimir Oltean err = ocelot_xtr_poll_frame(ocelot, grp, &skb); 14670a6f17c6SVladimir Oltean if (err) 14680a6f17c6SVladimir Oltean goto out; 14690a6f17c6SVladimir Oltean 14700a6f17c6SVladimir Oltean /* We trap to the CPU port module all PTP frames, but 14710a6f17c6SVladimir Oltean * felix_rxtstamp() only gets called for event frames. 14720a6f17c6SVladimir Oltean * So we need to avoid sending duplicate general 14730a6f17c6SVladimir Oltean * message frames by running a second BPF classifier 14740a6f17c6SVladimir Oltean * here and dropping those. 14750a6f17c6SVladimir Oltean */ 14760a6f17c6SVladimir Oltean __skb_push(skb, ETH_HLEN); 14770a6f17c6SVladimir Oltean 14780a6f17c6SVladimir Oltean type = ptp_classify_raw(skb); 14790a6f17c6SVladimir Oltean 14800a6f17c6SVladimir Oltean __skb_pull(skb, ETH_HLEN); 14810a6f17c6SVladimir Oltean 14820a6f17c6SVladimir Oltean if (type == PTP_CLASS_NONE) { 14830a6f17c6SVladimir Oltean kfree_skb(skb); 14840a6f17c6SVladimir Oltean continue; 14850a6f17c6SVladimir Oltean } 14860a6f17c6SVladimir Oltean 14870a6f17c6SVladimir Oltean netif_rx(skb); 14880a6f17c6SVladimir Oltean } 14890a6f17c6SVladimir Oltean 14900a6f17c6SVladimir Oltean out: 14915d3bb7ddSVladimir Oltean if (err < 0) { 14925d3bb7ddSVladimir Oltean dev_err_ratelimited(ocelot->dev, 14935d3bb7ddSVladimir Oltean "Error during packet extraction: %pe\n", 14945d3bb7ddSVladimir Oltean ERR_PTR(err)); 14950a6f17c6SVladimir Oltean ocelot_drain_cpu_queue(ocelot, 0); 14965d3bb7ddSVladimir Oltean } 14970a6f17c6SVladimir Oltean 14980a6f17c6SVladimir Oltean return true; 14990a6f17c6SVladimir Oltean } 15000a6f17c6SVladimir Oltean 1501c0bcf537SYangbo Lu static bool felix_rxtstamp(struct dsa_switch *ds, int port, 1502c0bcf537SYangbo Lu struct sk_buff *skb, unsigned int type) 1503c0bcf537SYangbo Lu { 150492f62485SVladimir Oltean u32 tstamp_lo = OCELOT_SKB_CB(skb)->tstamp_lo; 1505c0bcf537SYangbo Lu struct skb_shared_hwtstamps *shhwtstamps; 1506c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 1507c0bcf537SYangbo Lu struct timespec64 ts; 150892f62485SVladimir Oltean u32 tstamp_hi; 150992f62485SVladimir Oltean u64 tstamp; 1510c0bcf537SYangbo Lu 15110a6f17c6SVladimir Oltean /* If the "no XTR IRQ" workaround is in use, tell DSA to defer this skb 15120a6f17c6SVladimir Oltean * for RX timestamping. Then free it, and poll for its copy through 15130a6f17c6SVladimir Oltean * MMIO in the CPU port module, and inject that into the stack from 15140a6f17c6SVladimir Oltean * ocelot_xtr_poll(). 15150a6f17c6SVladimir Oltean */ 1516d219b4b6SVladimir Oltean if (felix_check_xtr_pkt(ocelot)) { 15170a6f17c6SVladimir Oltean kfree_skb(skb); 15180a6f17c6SVladimir Oltean return true; 15190a6f17c6SVladimir Oltean } 15200a6f17c6SVladimir Oltean 1521c0bcf537SYangbo Lu ocelot_ptp_gettime64(&ocelot->ptp_info, &ts); 1522c0bcf537SYangbo Lu tstamp = ktime_set(ts.tv_sec, ts.tv_nsec); 1523c0bcf537SYangbo Lu 1524c0bcf537SYangbo Lu tstamp_hi = tstamp >> 32; 1525c0bcf537SYangbo Lu if ((tstamp & 0xffffffff) < tstamp_lo) 1526c0bcf537SYangbo Lu tstamp_hi--; 1527c0bcf537SYangbo Lu 1528c0bcf537SYangbo Lu tstamp = ((u64)tstamp_hi << 32) | tstamp_lo; 1529c0bcf537SYangbo Lu 1530c0bcf537SYangbo Lu shhwtstamps = skb_hwtstamps(skb); 1531c0bcf537SYangbo Lu memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps)); 1532c0bcf537SYangbo Lu shhwtstamps->hwtstamp = tstamp; 1533c0bcf537SYangbo Lu return false; 1534c0bcf537SYangbo Lu } 1535c0bcf537SYangbo Lu 15365c5416f5SYangbo Lu static void felix_txtstamp(struct dsa_switch *ds, int port, 15375c5416f5SYangbo Lu struct sk_buff *skb) 1538c0bcf537SYangbo Lu { 1539c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 1540682eaad9SYangbo Lu struct sk_buff *clone = NULL; 1541c0bcf537SYangbo Lu 1542682eaad9SYangbo Lu if (!ocelot->ptp) 15435c5416f5SYangbo Lu return; 1544c0bcf537SYangbo Lu 154552849bcfSVladimir Oltean if (ocelot_port_txtstamp_request(ocelot, port, skb, &clone)) { 154652849bcfSVladimir Oltean dev_err_ratelimited(ds->dev, 154752849bcfSVladimir Oltean "port %d delivering skb without TX timestamp\n", 154852849bcfSVladimir Oltean port); 1549682eaad9SYangbo Lu return; 155052849bcfSVladimir Oltean } 1551682eaad9SYangbo Lu 1552682eaad9SYangbo Lu if (clone) 1553c4b364ceSYangbo Lu OCELOT_SKB_CB(skb)->clone = clone; 15545c5416f5SYangbo Lu } 1555c0bcf537SYangbo Lu 15560b912fc9SVladimir Oltean static int felix_change_mtu(struct dsa_switch *ds, int port, int new_mtu) 15570b912fc9SVladimir Oltean { 15580b912fc9SVladimir Oltean struct ocelot *ocelot = ds->priv; 155955a515b1SVladimir Oltean struct ocelot_port *ocelot_port = ocelot->ports[port]; 156055a515b1SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 15610b912fc9SVladimir Oltean 15620b912fc9SVladimir Oltean ocelot_port_set_maxlen(ocelot, port, new_mtu); 15630b912fc9SVladimir Oltean 156455a515b1SVladimir Oltean mutex_lock(&ocelot->tas_lock); 156555a515b1SVladimir Oltean 156655a515b1SVladimir Oltean if (ocelot_port->taprio && felix->info->tas_guard_bands_update) 156755a515b1SVladimir Oltean felix->info->tas_guard_bands_update(ocelot, port); 156855a515b1SVladimir Oltean 156955a515b1SVladimir Oltean mutex_unlock(&ocelot->tas_lock); 157055a515b1SVladimir Oltean 15710b912fc9SVladimir Oltean return 0; 15720b912fc9SVladimir Oltean } 15730b912fc9SVladimir Oltean 15740b912fc9SVladimir Oltean static int felix_get_max_mtu(struct dsa_switch *ds, int port) 15750b912fc9SVladimir Oltean { 15760b912fc9SVladimir Oltean struct ocelot *ocelot = ds->priv; 15770b912fc9SVladimir Oltean 15780b912fc9SVladimir Oltean return ocelot_get_max_mtu(ocelot, port); 15790b912fc9SVladimir Oltean } 15800b912fc9SVladimir Oltean 158107d985eeSVladimir Oltean static int felix_cls_flower_add(struct dsa_switch *ds, int port, 158207d985eeSVladimir Oltean struct flow_cls_offload *cls, bool ingress) 158307d985eeSVladimir Oltean { 158407d985eeSVladimir Oltean struct ocelot *ocelot = ds->priv; 158599348004SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 158699348004SVladimir Oltean bool using_tag_8021q; 158799348004SVladimir Oltean int err; 158807d985eeSVladimir Oltean 158999348004SVladimir Oltean err = ocelot_cls_flower_replace(ocelot, port, cls, ingress); 159099348004SVladimir Oltean if (err) 159199348004SVladimir Oltean return err; 159299348004SVladimir Oltean 159399348004SVladimir Oltean using_tag_8021q = felix->tag_proto == DSA_TAG_PROTO_OCELOT_8021Q; 159499348004SVladimir Oltean 159599348004SVladimir Oltean return felix_update_trapping_destinations(ds, using_tag_8021q); 159607d985eeSVladimir Oltean } 159707d985eeSVladimir Oltean 159807d985eeSVladimir Oltean static int felix_cls_flower_del(struct dsa_switch *ds, int port, 159907d985eeSVladimir Oltean struct flow_cls_offload *cls, bool ingress) 160007d985eeSVladimir Oltean { 160107d985eeSVladimir Oltean struct ocelot *ocelot = ds->priv; 160207d985eeSVladimir Oltean 160307d985eeSVladimir Oltean return ocelot_cls_flower_destroy(ocelot, port, cls, ingress); 160407d985eeSVladimir Oltean } 160507d985eeSVladimir Oltean 160607d985eeSVladimir Oltean static int felix_cls_flower_stats(struct dsa_switch *ds, int port, 160707d985eeSVladimir Oltean struct flow_cls_offload *cls, bool ingress) 160807d985eeSVladimir Oltean { 160907d985eeSVladimir Oltean struct ocelot *ocelot = ds->priv; 161007d985eeSVladimir Oltean 161107d985eeSVladimir Oltean return ocelot_cls_flower_stats(ocelot, port, cls, ingress); 161207d985eeSVladimir Oltean } 161307d985eeSVladimir Oltean 1614fc411eaaSVladimir Oltean static int felix_port_policer_add(struct dsa_switch *ds, int port, 1615fc411eaaSVladimir Oltean struct dsa_mall_policer_tc_entry *policer) 1616fc411eaaSVladimir Oltean { 1617fc411eaaSVladimir Oltean struct ocelot *ocelot = ds->priv; 1618fc411eaaSVladimir Oltean struct ocelot_policer pol = { 1619fc411eaaSVladimir Oltean .rate = div_u64(policer->rate_bytes_per_sec, 1000) * 8, 16205f035af7SPo Liu .burst = policer->burst, 1621fc411eaaSVladimir Oltean }; 1622fc411eaaSVladimir Oltean 1623fc411eaaSVladimir Oltean return ocelot_port_policer_add(ocelot, port, &pol); 1624fc411eaaSVladimir Oltean } 1625fc411eaaSVladimir Oltean 1626fc411eaaSVladimir Oltean static void felix_port_policer_del(struct dsa_switch *ds, int port) 1627fc411eaaSVladimir Oltean { 1628fc411eaaSVladimir Oltean struct ocelot *ocelot = ds->priv; 1629fc411eaaSVladimir Oltean 1630fc411eaaSVladimir Oltean ocelot_port_policer_del(ocelot, port); 1631fc411eaaSVladimir Oltean } 1632fc411eaaSVladimir Oltean 16335e497497SVladimir Oltean static int felix_port_mirror_add(struct dsa_switch *ds, int port, 16345e497497SVladimir Oltean struct dsa_mall_mirror_tc_entry *mirror, 16355e497497SVladimir Oltean bool ingress, struct netlink_ext_ack *extack) 16365e497497SVladimir Oltean { 16375e497497SVladimir Oltean struct ocelot *ocelot = ds->priv; 16385e497497SVladimir Oltean 16395e497497SVladimir Oltean return ocelot_port_mirror_add(ocelot, port, mirror->to_local_port, 16405e497497SVladimir Oltean ingress, extack); 16415e497497SVladimir Oltean } 16425e497497SVladimir Oltean 16435e497497SVladimir Oltean static void felix_port_mirror_del(struct dsa_switch *ds, int port, 16445e497497SVladimir Oltean struct dsa_mall_mirror_tc_entry *mirror) 16455e497497SVladimir Oltean { 16465e497497SVladimir Oltean struct ocelot *ocelot = ds->priv; 16475e497497SVladimir Oltean 16485e497497SVladimir Oltean ocelot_port_mirror_del(ocelot, port, mirror->ingress); 16495e497497SVladimir Oltean } 16505e497497SVladimir Oltean 1651de143c0eSXiaoliang Yang static int felix_port_setup_tc(struct dsa_switch *ds, int port, 1652de143c0eSXiaoliang Yang enum tc_setup_type type, 1653de143c0eSXiaoliang Yang void *type_data) 1654de143c0eSXiaoliang Yang { 1655de143c0eSXiaoliang Yang struct ocelot *ocelot = ds->priv; 1656de143c0eSXiaoliang Yang struct felix *felix = ocelot_to_felix(ocelot); 1657de143c0eSXiaoliang Yang 1658de143c0eSXiaoliang Yang if (felix->info->port_setup_tc) 1659de143c0eSXiaoliang Yang return felix->info->port_setup_tc(ds, port, type, type_data); 1660de143c0eSXiaoliang Yang else 1661de143c0eSXiaoliang Yang return -EOPNOTSUPP; 1662de143c0eSXiaoliang Yang } 1663de143c0eSXiaoliang Yang 1664f59fd9caSVladimir Oltean static int felix_sb_pool_get(struct dsa_switch *ds, unsigned int sb_index, 1665f59fd9caSVladimir Oltean u16 pool_index, 1666f59fd9caSVladimir Oltean struct devlink_sb_pool_info *pool_info) 1667f59fd9caSVladimir Oltean { 1668f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1669f59fd9caSVladimir Oltean 1670f59fd9caSVladimir Oltean return ocelot_sb_pool_get(ocelot, sb_index, pool_index, pool_info); 1671f59fd9caSVladimir Oltean } 1672f59fd9caSVladimir Oltean 1673f59fd9caSVladimir Oltean static int felix_sb_pool_set(struct dsa_switch *ds, unsigned int sb_index, 1674f59fd9caSVladimir Oltean u16 pool_index, u32 size, 1675f59fd9caSVladimir Oltean enum devlink_sb_threshold_type threshold_type, 1676f59fd9caSVladimir Oltean struct netlink_ext_ack *extack) 1677f59fd9caSVladimir Oltean { 1678f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1679f59fd9caSVladimir Oltean 1680f59fd9caSVladimir Oltean return ocelot_sb_pool_set(ocelot, sb_index, pool_index, size, 1681f59fd9caSVladimir Oltean threshold_type, extack); 1682f59fd9caSVladimir Oltean } 1683f59fd9caSVladimir Oltean 1684f59fd9caSVladimir Oltean static int felix_sb_port_pool_get(struct dsa_switch *ds, int port, 1685f59fd9caSVladimir Oltean unsigned int sb_index, u16 pool_index, 1686f59fd9caSVladimir Oltean u32 *p_threshold) 1687f59fd9caSVladimir Oltean { 1688f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1689f59fd9caSVladimir Oltean 1690f59fd9caSVladimir Oltean return ocelot_sb_port_pool_get(ocelot, port, sb_index, pool_index, 1691f59fd9caSVladimir Oltean p_threshold); 1692f59fd9caSVladimir Oltean } 1693f59fd9caSVladimir Oltean 1694f59fd9caSVladimir Oltean static int felix_sb_port_pool_set(struct dsa_switch *ds, int port, 1695f59fd9caSVladimir Oltean unsigned int sb_index, u16 pool_index, 1696f59fd9caSVladimir Oltean u32 threshold, struct netlink_ext_ack *extack) 1697f59fd9caSVladimir Oltean { 1698f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1699f59fd9caSVladimir Oltean 1700f59fd9caSVladimir Oltean return ocelot_sb_port_pool_set(ocelot, port, sb_index, pool_index, 1701f59fd9caSVladimir Oltean threshold, extack); 1702f59fd9caSVladimir Oltean } 1703f59fd9caSVladimir Oltean 1704f59fd9caSVladimir Oltean static int felix_sb_tc_pool_bind_get(struct dsa_switch *ds, int port, 1705f59fd9caSVladimir Oltean unsigned int sb_index, u16 tc_index, 1706f59fd9caSVladimir Oltean enum devlink_sb_pool_type pool_type, 1707f59fd9caSVladimir Oltean u16 *p_pool_index, u32 *p_threshold) 1708f59fd9caSVladimir Oltean { 1709f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1710f59fd9caSVladimir Oltean 1711f59fd9caSVladimir Oltean return ocelot_sb_tc_pool_bind_get(ocelot, port, sb_index, tc_index, 1712f59fd9caSVladimir Oltean pool_type, p_pool_index, 1713f59fd9caSVladimir Oltean p_threshold); 1714f59fd9caSVladimir Oltean } 1715f59fd9caSVladimir Oltean 1716f59fd9caSVladimir Oltean static int felix_sb_tc_pool_bind_set(struct dsa_switch *ds, int port, 1717f59fd9caSVladimir Oltean unsigned int sb_index, u16 tc_index, 1718f59fd9caSVladimir Oltean enum devlink_sb_pool_type pool_type, 1719f59fd9caSVladimir Oltean u16 pool_index, u32 threshold, 1720f59fd9caSVladimir Oltean struct netlink_ext_ack *extack) 1721f59fd9caSVladimir Oltean { 1722f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1723f59fd9caSVladimir Oltean 1724f59fd9caSVladimir Oltean return ocelot_sb_tc_pool_bind_set(ocelot, port, sb_index, tc_index, 1725f59fd9caSVladimir Oltean pool_type, pool_index, threshold, 1726f59fd9caSVladimir Oltean extack); 1727f59fd9caSVladimir Oltean } 1728f59fd9caSVladimir Oltean 1729f59fd9caSVladimir Oltean static int felix_sb_occ_snapshot(struct dsa_switch *ds, 1730f59fd9caSVladimir Oltean unsigned int sb_index) 1731f59fd9caSVladimir Oltean { 1732f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1733f59fd9caSVladimir Oltean 1734f59fd9caSVladimir Oltean return ocelot_sb_occ_snapshot(ocelot, sb_index); 1735f59fd9caSVladimir Oltean } 1736f59fd9caSVladimir Oltean 1737f59fd9caSVladimir Oltean static int felix_sb_occ_max_clear(struct dsa_switch *ds, 1738f59fd9caSVladimir Oltean unsigned int sb_index) 1739f59fd9caSVladimir Oltean { 1740f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1741f59fd9caSVladimir Oltean 1742f59fd9caSVladimir Oltean return ocelot_sb_occ_max_clear(ocelot, sb_index); 1743f59fd9caSVladimir Oltean } 1744f59fd9caSVladimir Oltean 1745f59fd9caSVladimir Oltean static int felix_sb_occ_port_pool_get(struct dsa_switch *ds, int port, 1746f59fd9caSVladimir Oltean unsigned int sb_index, u16 pool_index, 1747f59fd9caSVladimir Oltean u32 *p_cur, u32 *p_max) 1748f59fd9caSVladimir Oltean { 1749f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1750f59fd9caSVladimir Oltean 1751f59fd9caSVladimir Oltean return ocelot_sb_occ_port_pool_get(ocelot, port, sb_index, pool_index, 1752f59fd9caSVladimir Oltean p_cur, p_max); 1753f59fd9caSVladimir Oltean } 1754f59fd9caSVladimir Oltean 1755f59fd9caSVladimir Oltean static int felix_sb_occ_tc_port_bind_get(struct dsa_switch *ds, int port, 1756f59fd9caSVladimir Oltean unsigned int sb_index, u16 tc_index, 1757f59fd9caSVladimir Oltean enum devlink_sb_pool_type pool_type, 1758f59fd9caSVladimir Oltean u32 *p_cur, u32 *p_max) 1759f59fd9caSVladimir Oltean { 1760f59fd9caSVladimir Oltean struct ocelot *ocelot = ds->priv; 1761f59fd9caSVladimir Oltean 1762f59fd9caSVladimir Oltean return ocelot_sb_occ_tc_port_bind_get(ocelot, port, sb_index, tc_index, 1763f59fd9caSVladimir Oltean pool_type, p_cur, p_max); 1764f59fd9caSVladimir Oltean } 1765f59fd9caSVladimir Oltean 1766a026c50bSHoratiu Vultur static int felix_mrp_add(struct dsa_switch *ds, int port, 1767a026c50bSHoratiu Vultur const struct switchdev_obj_mrp *mrp) 1768a026c50bSHoratiu Vultur { 1769a026c50bSHoratiu Vultur struct ocelot *ocelot = ds->priv; 1770a026c50bSHoratiu Vultur 1771a026c50bSHoratiu Vultur return ocelot_mrp_add(ocelot, port, mrp); 1772a026c50bSHoratiu Vultur } 1773a026c50bSHoratiu Vultur 1774a026c50bSHoratiu Vultur static int felix_mrp_del(struct dsa_switch *ds, int port, 1775a026c50bSHoratiu Vultur const struct switchdev_obj_mrp *mrp) 1776a026c50bSHoratiu Vultur { 1777a026c50bSHoratiu Vultur struct ocelot *ocelot = ds->priv; 1778a026c50bSHoratiu Vultur 1779a026c50bSHoratiu Vultur return ocelot_mrp_add(ocelot, port, mrp); 1780a026c50bSHoratiu Vultur } 1781a026c50bSHoratiu Vultur 1782a026c50bSHoratiu Vultur static int 1783a026c50bSHoratiu Vultur felix_mrp_add_ring_role(struct dsa_switch *ds, int port, 1784a026c50bSHoratiu Vultur const struct switchdev_obj_ring_role_mrp *mrp) 1785a026c50bSHoratiu Vultur { 1786a026c50bSHoratiu Vultur struct ocelot *ocelot = ds->priv; 1787a026c50bSHoratiu Vultur 1788a026c50bSHoratiu Vultur return ocelot_mrp_add_ring_role(ocelot, port, mrp); 1789a026c50bSHoratiu Vultur } 1790a026c50bSHoratiu Vultur 1791a026c50bSHoratiu Vultur static int 1792a026c50bSHoratiu Vultur felix_mrp_del_ring_role(struct dsa_switch *ds, int port, 1793a026c50bSHoratiu Vultur const struct switchdev_obj_ring_role_mrp *mrp) 1794a026c50bSHoratiu Vultur { 1795a026c50bSHoratiu Vultur struct ocelot *ocelot = ds->priv; 1796a026c50bSHoratiu Vultur 1797a026c50bSHoratiu Vultur return ocelot_mrp_del_ring_role(ocelot, port, mrp); 1798a026c50bSHoratiu Vultur } 1799a026c50bSHoratiu Vultur 1800978777d0SVladimir Oltean static int felix_port_get_default_prio(struct dsa_switch *ds, int port) 1801978777d0SVladimir Oltean { 1802978777d0SVladimir Oltean struct ocelot *ocelot = ds->priv; 1803978777d0SVladimir Oltean 1804978777d0SVladimir Oltean return ocelot_port_get_default_prio(ocelot, port); 1805978777d0SVladimir Oltean } 1806978777d0SVladimir Oltean 1807978777d0SVladimir Oltean static int felix_port_set_default_prio(struct dsa_switch *ds, int port, 1808978777d0SVladimir Oltean u8 prio) 1809978777d0SVladimir Oltean { 1810978777d0SVladimir Oltean struct ocelot *ocelot = ds->priv; 1811978777d0SVladimir Oltean 1812978777d0SVladimir Oltean return ocelot_port_set_default_prio(ocelot, port, prio); 1813978777d0SVladimir Oltean } 1814978777d0SVladimir Oltean 1815978777d0SVladimir Oltean static int felix_port_get_dscp_prio(struct dsa_switch *ds, int port, u8 dscp) 1816978777d0SVladimir Oltean { 1817978777d0SVladimir Oltean struct ocelot *ocelot = ds->priv; 1818978777d0SVladimir Oltean 1819978777d0SVladimir Oltean return ocelot_port_get_dscp_prio(ocelot, port, dscp); 1820978777d0SVladimir Oltean } 1821978777d0SVladimir Oltean 1822978777d0SVladimir Oltean static int felix_port_add_dscp_prio(struct dsa_switch *ds, int port, u8 dscp, 1823978777d0SVladimir Oltean u8 prio) 1824978777d0SVladimir Oltean { 1825978777d0SVladimir Oltean struct ocelot *ocelot = ds->priv; 1826978777d0SVladimir Oltean 1827978777d0SVladimir Oltean return ocelot_port_add_dscp_prio(ocelot, port, dscp, prio); 1828978777d0SVladimir Oltean } 1829978777d0SVladimir Oltean 1830978777d0SVladimir Oltean static int felix_port_del_dscp_prio(struct dsa_switch *ds, int port, u8 dscp, 1831978777d0SVladimir Oltean u8 prio) 1832978777d0SVladimir Oltean { 1833978777d0SVladimir Oltean struct ocelot *ocelot = ds->priv; 1834978777d0SVladimir Oltean 1835978777d0SVladimir Oltean return ocelot_port_del_dscp_prio(ocelot, port, dscp, prio); 1836978777d0SVladimir Oltean } 1837978777d0SVladimir Oltean 1838375e1314SVladimir Oltean const struct dsa_switch_ops felix_switch_ops = { 183956051948SVladimir Oltean .get_tag_protocol = felix_get_tag_protocol, 1840adb3dccfSVladimir Oltean .change_tag_protocol = felix_change_tag_protocol, 184135d97680SVladimir Oltean .connect_tag_protocol = felix_connect_tag_protocol, 184256051948SVladimir Oltean .setup = felix_setup, 184356051948SVladimir Oltean .teardown = felix_teardown, 184456051948SVladimir Oltean .set_ageing_time = felix_set_ageing_time, 184556051948SVladimir Oltean .get_strings = felix_get_strings, 184656051948SVladimir Oltean .get_ethtool_stats = felix_get_ethtool_stats, 184756051948SVladimir Oltean .get_sset_count = felix_get_sset_count, 184856051948SVladimir Oltean .get_ts_info = felix_get_ts_info, 184979fda660SRussell King (Oracle) .phylink_get_caps = felix_phylink_get_caps, 1850bdeced75SVladimir Oltean .phylink_validate = felix_phylink_validate, 1851864ba485SRussell King (Oracle) .phylink_mac_select_pcs = felix_phylink_mac_select_pcs, 1852bdeced75SVladimir Oltean .phylink_mac_link_down = felix_phylink_mac_link_down, 1853bdeced75SVladimir Oltean .phylink_mac_link_up = felix_phylink_mac_link_up, 18545cad43a5SVladimir Oltean .port_fast_age = felix_port_fast_age, 185556051948SVladimir Oltean .port_fdb_dump = felix_fdb_dump, 185656051948SVladimir Oltean .port_fdb_add = felix_fdb_add, 185756051948SVladimir Oltean .port_fdb_del = felix_fdb_del, 1858961d8b69SVladimir Oltean .lag_fdb_add = felix_lag_fdb_add, 1859961d8b69SVladimir Oltean .lag_fdb_del = felix_lag_fdb_del, 1860209edf95SVladimir Oltean .port_mdb_add = felix_mdb_add, 1861209edf95SVladimir Oltean .port_mdb_del = felix_mdb_del, 1862421741eaSVladimir Oltean .port_pre_bridge_flags = felix_pre_bridge_flags, 1863421741eaSVladimir Oltean .port_bridge_flags = felix_bridge_flags, 186456051948SVladimir Oltean .port_bridge_join = felix_bridge_join, 186556051948SVladimir Oltean .port_bridge_leave = felix_bridge_leave, 18668fe6832eSVladimir Oltean .port_lag_join = felix_lag_join, 18678fe6832eSVladimir Oltean .port_lag_leave = felix_lag_leave, 18688fe6832eSVladimir Oltean .port_lag_change = felix_lag_change, 186956051948SVladimir Oltean .port_stp_state_set = felix_bridge_stp_state_set, 187056051948SVladimir Oltean .port_vlan_filtering = felix_vlan_filtering, 187156051948SVladimir Oltean .port_vlan_add = felix_vlan_add, 187256051948SVladimir Oltean .port_vlan_del = felix_vlan_del, 1873c0bcf537SYangbo Lu .port_hwtstamp_get = felix_hwtstamp_get, 1874c0bcf537SYangbo Lu .port_hwtstamp_set = felix_hwtstamp_set, 1875c0bcf537SYangbo Lu .port_rxtstamp = felix_rxtstamp, 1876c0bcf537SYangbo Lu .port_txtstamp = felix_txtstamp, 18770b912fc9SVladimir Oltean .port_change_mtu = felix_change_mtu, 18780b912fc9SVladimir Oltean .port_max_mtu = felix_get_max_mtu, 1879fc411eaaSVladimir Oltean .port_policer_add = felix_port_policer_add, 1880fc411eaaSVladimir Oltean .port_policer_del = felix_port_policer_del, 18815e497497SVladimir Oltean .port_mirror_add = felix_port_mirror_add, 18825e497497SVladimir Oltean .port_mirror_del = felix_port_mirror_del, 188307d985eeSVladimir Oltean .cls_flower_add = felix_cls_flower_add, 188407d985eeSVladimir Oltean .cls_flower_del = felix_cls_flower_del, 188507d985eeSVladimir Oltean .cls_flower_stats = felix_cls_flower_stats, 1886de143c0eSXiaoliang Yang .port_setup_tc = felix_port_setup_tc, 1887f59fd9caSVladimir Oltean .devlink_sb_pool_get = felix_sb_pool_get, 1888f59fd9caSVladimir Oltean .devlink_sb_pool_set = felix_sb_pool_set, 1889f59fd9caSVladimir Oltean .devlink_sb_port_pool_get = felix_sb_port_pool_get, 1890f59fd9caSVladimir Oltean .devlink_sb_port_pool_set = felix_sb_port_pool_set, 1891f59fd9caSVladimir Oltean .devlink_sb_tc_pool_bind_get = felix_sb_tc_pool_bind_get, 1892f59fd9caSVladimir Oltean .devlink_sb_tc_pool_bind_set = felix_sb_tc_pool_bind_set, 1893f59fd9caSVladimir Oltean .devlink_sb_occ_snapshot = felix_sb_occ_snapshot, 1894f59fd9caSVladimir Oltean .devlink_sb_occ_max_clear = felix_sb_occ_max_clear, 1895f59fd9caSVladimir Oltean .devlink_sb_occ_port_pool_get = felix_sb_occ_port_pool_get, 1896f59fd9caSVladimir Oltean .devlink_sb_occ_tc_port_bind_get= felix_sb_occ_tc_port_bind_get, 1897a026c50bSHoratiu Vultur .port_mrp_add = felix_mrp_add, 1898a026c50bSHoratiu Vultur .port_mrp_del = felix_mrp_del, 1899a026c50bSHoratiu Vultur .port_mrp_add_ring_role = felix_mrp_add_ring_role, 1900a026c50bSHoratiu Vultur .port_mrp_del_ring_role = felix_mrp_del_ring_role, 19015da11eb4SVladimir Oltean .tag_8021q_vlan_add = felix_tag_8021q_vlan_add, 19025da11eb4SVladimir Oltean .tag_8021q_vlan_del = felix_tag_8021q_vlan_del, 1903978777d0SVladimir Oltean .port_get_default_prio = felix_port_get_default_prio, 1904978777d0SVladimir Oltean .port_set_default_prio = felix_port_set_default_prio, 1905978777d0SVladimir Oltean .port_get_dscp_prio = felix_port_get_dscp_prio, 1906978777d0SVladimir Oltean .port_add_dscp_prio = felix_port_add_dscp_prio, 1907978777d0SVladimir Oltean .port_del_dscp_prio = felix_port_del_dscp_prio, 190872c3b0c7SVladimir Oltean .port_set_host_flood = felix_port_set_host_flood, 190956051948SVladimir Oltean }; 1910319e4dd1SVladimir Oltean 1911319e4dd1SVladimir Oltean struct net_device *felix_port_to_netdev(struct ocelot *ocelot, int port) 1912319e4dd1SVladimir Oltean { 1913319e4dd1SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 1914319e4dd1SVladimir Oltean struct dsa_switch *ds = felix->ds; 1915319e4dd1SVladimir Oltean 1916319e4dd1SVladimir Oltean if (!dsa_is_user_port(ds, port)) 1917319e4dd1SVladimir Oltean return NULL; 1918319e4dd1SVladimir Oltean 1919319e4dd1SVladimir Oltean return dsa_to_port(ds, port)->slave; 1920319e4dd1SVladimir Oltean } 1921319e4dd1SVladimir Oltean 1922319e4dd1SVladimir Oltean int felix_netdev_to_port(struct net_device *dev) 1923319e4dd1SVladimir Oltean { 1924319e4dd1SVladimir Oltean struct dsa_port *dp; 1925319e4dd1SVladimir Oltean 1926319e4dd1SVladimir Oltean dp = dsa_port_from_netdev(dev); 1927319e4dd1SVladimir Oltean if (IS_ERR(dp)) 1928319e4dd1SVladimir Oltean return -EINVAL; 1929319e4dd1SVladimir Oltean 1930319e4dd1SVladimir Oltean return dp->index; 1931319e4dd1SVladimir Oltean } 1932