156051948SVladimir Oltean // SPDX-License-Identifier: GPL-2.0 256051948SVladimir Oltean /* Copyright 2019 NXP Semiconductors 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> 1684705fc1SMaxim Kochetkov #include <linux/platform_device.h> 17c0bcf537SYangbo Lu #include <linux/packing.h> 1856051948SVladimir Oltean #include <linux/module.h> 19bdeced75SVladimir Oltean #include <linux/of_net.h> 2056051948SVladimir Oltean #include <linux/pci.h> 2156051948SVladimir Oltean #include <linux/of.h> 22588d0550SIoana Ciornei #include <linux/pcs-lynx.h> 23fc411eaaSVladimir Oltean #include <net/pkt_sched.h> 2456051948SVladimir Oltean #include <net/dsa.h> 2556051948SVladimir Oltean #include "felix.h" 2656051948SVladimir Oltean 2756051948SVladimir Oltean static enum dsa_tag_protocol felix_get_tag_protocol(struct dsa_switch *ds, 284d776482SFlorian Fainelli int port, 294d776482SFlorian Fainelli enum dsa_tag_protocol mp) 3056051948SVladimir Oltean { 3156051948SVladimir Oltean return DSA_TAG_PROTO_OCELOT; 3256051948SVladimir Oltean } 3356051948SVladimir Oltean 3456051948SVladimir Oltean static int felix_set_ageing_time(struct dsa_switch *ds, 3556051948SVladimir Oltean unsigned int ageing_time) 3656051948SVladimir Oltean { 3756051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 3856051948SVladimir Oltean 3956051948SVladimir Oltean ocelot_set_ageing_time(ocelot, ageing_time); 4056051948SVladimir Oltean 4156051948SVladimir Oltean return 0; 4256051948SVladimir Oltean } 4356051948SVladimir Oltean 4456051948SVladimir Oltean static int felix_fdb_dump(struct dsa_switch *ds, int port, 4556051948SVladimir Oltean dsa_fdb_dump_cb_t *cb, void *data) 4656051948SVladimir Oltean { 4756051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 4856051948SVladimir Oltean 4956051948SVladimir Oltean return ocelot_fdb_dump(ocelot, port, cb, data); 5056051948SVladimir Oltean } 5156051948SVladimir Oltean 5256051948SVladimir Oltean static int felix_fdb_add(struct dsa_switch *ds, int port, 5356051948SVladimir Oltean const unsigned char *addr, u16 vid) 5456051948SVladimir Oltean { 5556051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 5656051948SVladimir Oltean 5787b0f983SVladimir Oltean return ocelot_fdb_add(ocelot, port, addr, vid); 5856051948SVladimir Oltean } 5956051948SVladimir Oltean 6056051948SVladimir Oltean static int felix_fdb_del(struct dsa_switch *ds, int port, 6156051948SVladimir Oltean const unsigned char *addr, u16 vid) 6256051948SVladimir Oltean { 6356051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 6456051948SVladimir Oltean 6556051948SVladimir Oltean return ocelot_fdb_del(ocelot, port, addr, vid); 6656051948SVladimir Oltean } 6756051948SVladimir Oltean 68209edf95SVladimir Oltean /* This callback needs to be present */ 69209edf95SVladimir Oltean static int felix_mdb_prepare(struct dsa_switch *ds, int port, 70209edf95SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 71209edf95SVladimir Oltean { 72209edf95SVladimir Oltean return 0; 73209edf95SVladimir Oltean } 74209edf95SVladimir Oltean 75209edf95SVladimir Oltean static void felix_mdb_add(struct dsa_switch *ds, int port, 76209edf95SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 77209edf95SVladimir Oltean { 78209edf95SVladimir Oltean struct ocelot *ocelot = ds->priv; 79209edf95SVladimir Oltean 80209edf95SVladimir Oltean ocelot_port_mdb_add(ocelot, port, mdb); 81209edf95SVladimir Oltean } 82209edf95SVladimir Oltean 83209edf95SVladimir Oltean static int felix_mdb_del(struct dsa_switch *ds, int port, 84209edf95SVladimir Oltean const struct switchdev_obj_port_mdb *mdb) 85209edf95SVladimir Oltean { 86209edf95SVladimir Oltean struct ocelot *ocelot = ds->priv; 87209edf95SVladimir Oltean 88209edf95SVladimir Oltean return ocelot_port_mdb_del(ocelot, port, mdb); 89209edf95SVladimir Oltean } 90209edf95SVladimir Oltean 9156051948SVladimir Oltean static void felix_bridge_stp_state_set(struct dsa_switch *ds, int port, 9256051948SVladimir Oltean u8 state) 9356051948SVladimir Oltean { 9456051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 9556051948SVladimir Oltean 9656051948SVladimir Oltean return ocelot_bridge_stp_state_set(ocelot, port, state); 9756051948SVladimir Oltean } 9856051948SVladimir Oltean 9956051948SVladimir Oltean static int felix_bridge_join(struct dsa_switch *ds, int port, 10056051948SVladimir Oltean struct net_device *br) 10156051948SVladimir Oltean { 10256051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 10356051948SVladimir Oltean 10456051948SVladimir Oltean return ocelot_port_bridge_join(ocelot, port, br); 10556051948SVladimir Oltean } 10656051948SVladimir Oltean 10756051948SVladimir Oltean static void felix_bridge_leave(struct dsa_switch *ds, int port, 10856051948SVladimir Oltean struct net_device *br) 10956051948SVladimir Oltean { 11056051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 11156051948SVladimir Oltean 11256051948SVladimir Oltean ocelot_port_bridge_leave(ocelot, port, br); 11356051948SVladimir Oltean } 11456051948SVladimir Oltean 11556051948SVladimir Oltean static int felix_vlan_prepare(struct dsa_switch *ds, int port, 11656051948SVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 11756051948SVladimir Oltean { 118*2f0402feSVladimir Oltean struct ocelot *ocelot = ds->priv; 119*2f0402feSVladimir Oltean u16 vid, flags = vlan->flags; 120*2f0402feSVladimir Oltean int err; 121*2f0402feSVladimir Oltean 122*2f0402feSVladimir Oltean for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 123*2f0402feSVladimir Oltean err = ocelot_vlan_prepare(ocelot, port, vid, 124*2f0402feSVladimir Oltean flags & BRIDGE_VLAN_INFO_PVID, 125*2f0402feSVladimir Oltean flags & BRIDGE_VLAN_INFO_UNTAGGED); 126*2f0402feSVladimir Oltean if (err) 127*2f0402feSVladimir Oltean return err; 128*2f0402feSVladimir Oltean } 129*2f0402feSVladimir Oltean 13056051948SVladimir Oltean return 0; 13156051948SVladimir Oltean } 13256051948SVladimir Oltean 1332e554a7aSVladimir Oltean static int felix_vlan_filtering(struct dsa_switch *ds, int port, bool enabled, 1342e554a7aSVladimir Oltean struct switchdev_trans *trans) 13556051948SVladimir Oltean { 13656051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 13756051948SVladimir Oltean 1382e554a7aSVladimir Oltean return ocelot_port_vlan_filtering(ocelot, port, enabled, trans); 13956051948SVladimir Oltean } 14056051948SVladimir Oltean 14156051948SVladimir Oltean static void felix_vlan_add(struct dsa_switch *ds, int port, 14256051948SVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 14356051948SVladimir Oltean { 14456051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 145183be6f9SVladimir Oltean u16 flags = vlan->flags; 14656051948SVladimir Oltean u16 vid; 14756051948SVladimir Oltean int err; 14856051948SVladimir Oltean 149183be6f9SVladimir Oltean if (dsa_is_cpu_port(ds, port)) 150183be6f9SVladimir Oltean flags &= ~BRIDGE_VLAN_INFO_UNTAGGED; 151183be6f9SVladimir Oltean 15256051948SVladimir Oltean for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 15356051948SVladimir Oltean err = ocelot_vlan_add(ocelot, port, vid, 154183be6f9SVladimir Oltean flags & BRIDGE_VLAN_INFO_PVID, 155183be6f9SVladimir Oltean flags & BRIDGE_VLAN_INFO_UNTAGGED); 15656051948SVladimir Oltean if (err) { 15756051948SVladimir Oltean dev_err(ds->dev, "Failed to add VLAN %d to port %d: %d\n", 15856051948SVladimir Oltean vid, port, err); 15956051948SVladimir Oltean return; 16056051948SVladimir Oltean } 16156051948SVladimir Oltean } 16256051948SVladimir Oltean } 16356051948SVladimir Oltean 16456051948SVladimir Oltean static int felix_vlan_del(struct dsa_switch *ds, int port, 16556051948SVladimir Oltean const struct switchdev_obj_port_vlan *vlan) 16656051948SVladimir Oltean { 16756051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 16856051948SVladimir Oltean u16 vid; 16956051948SVladimir Oltean int err; 17056051948SVladimir Oltean 17156051948SVladimir Oltean for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 17256051948SVladimir Oltean err = ocelot_vlan_del(ocelot, port, vid); 17356051948SVladimir Oltean if (err) { 17456051948SVladimir Oltean dev_err(ds->dev, "Failed to remove VLAN %d from port %d: %d\n", 17556051948SVladimir Oltean vid, port, err); 17656051948SVladimir Oltean return err; 17756051948SVladimir Oltean } 17856051948SVladimir Oltean } 17956051948SVladimir Oltean return 0; 18056051948SVladimir Oltean } 18156051948SVladimir Oltean 18256051948SVladimir Oltean static int felix_port_enable(struct dsa_switch *ds, int port, 18356051948SVladimir Oltean struct phy_device *phy) 18456051948SVladimir Oltean { 18556051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 18656051948SVladimir Oltean 18756051948SVladimir Oltean ocelot_port_enable(ocelot, port, phy); 18856051948SVladimir Oltean 18956051948SVladimir Oltean return 0; 19056051948SVladimir Oltean } 19156051948SVladimir Oltean 19256051948SVladimir Oltean static void felix_port_disable(struct dsa_switch *ds, int port) 19356051948SVladimir Oltean { 19456051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 19556051948SVladimir Oltean 19656051948SVladimir Oltean return ocelot_port_disable(ocelot, port); 19756051948SVladimir Oltean } 19856051948SVladimir Oltean 199bdeced75SVladimir Oltean static void felix_phylink_validate(struct dsa_switch *ds, int port, 200bdeced75SVladimir Oltean unsigned long *supported, 201bdeced75SVladimir Oltean struct phylink_link_state *state) 202bdeced75SVladimir Oltean { 203bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 204375e1314SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 205bdeced75SVladimir Oltean 206375e1314SVladimir Oltean if (felix->info->phylink_validate) 207375e1314SVladimir Oltean felix->info->phylink_validate(ocelot, port, supported, state); 208bdeced75SVladimir Oltean } 209bdeced75SVladimir Oltean 210bdeced75SVladimir Oltean static void felix_phylink_mac_config(struct dsa_switch *ds, int port, 211bdeced75SVladimir Oltean unsigned int link_an_mode, 212bdeced75SVladimir Oltean const struct phylink_link_state *state) 213bdeced75SVladimir Oltean { 214bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 215bdeced75SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 216588d0550SIoana Ciornei struct dsa_port *dp = dsa_to_port(ds, port); 217bdeced75SVladimir Oltean 218588d0550SIoana Ciornei if (felix->pcs[port]) 219588d0550SIoana Ciornei phylink_set_pcs(dp->pl, &felix->pcs[port]->pcs); 220bdeced75SVladimir Oltean } 221bdeced75SVladimir Oltean 222bdeced75SVladimir Oltean static void felix_phylink_mac_link_down(struct dsa_switch *ds, int port, 223bdeced75SVladimir Oltean unsigned int link_an_mode, 224bdeced75SVladimir Oltean phy_interface_t interface) 225bdeced75SVladimir Oltean { 226bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 227bdeced75SVladimir Oltean struct ocelot_port *ocelot_port = ocelot->ports[port]; 228bdeced75SVladimir Oltean 229bdeced75SVladimir Oltean ocelot_port_writel(ocelot_port, 0, DEV_MAC_ENA_CFG); 230886e1387SVladimir Oltean ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0); 231bdeced75SVladimir Oltean } 232bdeced75SVladimir Oltean 233bdeced75SVladimir Oltean static void felix_phylink_mac_link_up(struct dsa_switch *ds, int port, 234bdeced75SVladimir Oltean unsigned int link_an_mode, 235bdeced75SVladimir Oltean phy_interface_t interface, 2365b502a7bSRussell King struct phy_device *phydev, 2375b502a7bSRussell King int speed, int duplex, 2385b502a7bSRussell King bool tx_pause, bool rx_pause) 239bdeced75SVladimir Oltean { 240bdeced75SVladimir Oltean struct ocelot *ocelot = ds->priv; 241bdeced75SVladimir Oltean struct ocelot_port *ocelot_port = ocelot->ports[port]; 2427e14a2dcSVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 2437e14a2dcSVladimir Oltean u32 mac_fc_cfg; 244bdeced75SVladimir Oltean 2457e14a2dcSVladimir Oltean /* Take port out of reset by clearing the MAC_TX_RST, MAC_RX_RST and 2467e14a2dcSVladimir Oltean * PORT_RST bits in DEV_CLOCK_CFG. Note that the way this system is 2477e14a2dcSVladimir Oltean * integrated is that the MAC speed is fixed and it's the PCS who is 2487e14a2dcSVladimir Oltean * performing the rate adaptation, so we have to write "1000Mbps" into 2497e14a2dcSVladimir Oltean * the LINK_SPEED field of DEV_CLOCK_CFG (which is also its default 2507e14a2dcSVladimir Oltean * value). 2517e14a2dcSVladimir Oltean */ 2527e14a2dcSVladimir Oltean ocelot_port_writel(ocelot_port, 2537e14a2dcSVladimir Oltean DEV_CLOCK_CFG_LINK_SPEED(OCELOT_SPEED_1000), 2547e14a2dcSVladimir Oltean DEV_CLOCK_CFG); 2557e14a2dcSVladimir Oltean 2567e14a2dcSVladimir Oltean switch (speed) { 2577e14a2dcSVladimir Oltean case SPEED_10: 2587e14a2dcSVladimir Oltean mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(3); 2597e14a2dcSVladimir Oltean break; 2607e14a2dcSVladimir Oltean case SPEED_100: 2617e14a2dcSVladimir Oltean mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(2); 2627e14a2dcSVladimir Oltean break; 2637e14a2dcSVladimir Oltean case SPEED_1000: 2647e14a2dcSVladimir Oltean case SPEED_2500: 2657e14a2dcSVladimir Oltean mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(1); 2667e14a2dcSVladimir Oltean break; 2677e14a2dcSVladimir Oltean default: 2687e14a2dcSVladimir Oltean dev_err(ocelot->dev, "Unsupported speed on port %d: %d\n", 2697e14a2dcSVladimir Oltean port, speed); 2707e14a2dcSVladimir Oltean return; 2717e14a2dcSVladimir Oltean } 2727e14a2dcSVladimir Oltean 2737e14a2dcSVladimir Oltean /* handle Rx pause in all cases, with 2500base-X this is used for rate 2747e14a2dcSVladimir Oltean * adaptation. 2757e14a2dcSVladimir Oltean */ 2767e14a2dcSVladimir Oltean mac_fc_cfg |= SYS_MAC_FC_CFG_RX_FC_ENA; 2777e14a2dcSVladimir Oltean 2787e14a2dcSVladimir Oltean if (tx_pause) 2797e14a2dcSVladimir Oltean mac_fc_cfg |= SYS_MAC_FC_CFG_TX_FC_ENA | 2807e14a2dcSVladimir Oltean SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) | 2817e14a2dcSVladimir Oltean SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) | 2827e14a2dcSVladimir Oltean SYS_MAC_FC_CFG_ZERO_PAUSE_ENA; 2837e14a2dcSVladimir Oltean 2847e14a2dcSVladimir Oltean /* Flow control. Link speed is only used here to evaluate the time 2857e14a2dcSVladimir Oltean * specification in incoming pause frames. 2867e14a2dcSVladimir Oltean */ 2877e14a2dcSVladimir Oltean ocelot_write_rix(ocelot, mac_fc_cfg, SYS_MAC_FC_CFG, port); 2887e14a2dcSVladimir Oltean 2897e14a2dcSVladimir Oltean ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port); 2907e14a2dcSVladimir Oltean 2917e14a2dcSVladimir Oltean /* Undo the effects of felix_phylink_mac_link_down: 2927e14a2dcSVladimir Oltean * enable MAC module 2937e14a2dcSVladimir Oltean */ 294bdeced75SVladimir Oltean ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA | 295bdeced75SVladimir Oltean DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG); 296bdeced75SVladimir Oltean 297bdeced75SVladimir Oltean /* Enable receiving frames on the port, and activate auto-learning of 298bdeced75SVladimir Oltean * MAC addresses. 299bdeced75SVladimir Oltean */ 300bdeced75SVladimir Oltean ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO | 301bdeced75SVladimir Oltean ANA_PORT_PORT_CFG_RECV_ENA | 302bdeced75SVladimir Oltean ANA_PORT_PORT_CFG_PORTID_VAL(port), 303bdeced75SVladimir Oltean ANA_PORT_PORT_CFG, port); 304bdeced75SVladimir Oltean 305bdeced75SVladimir Oltean /* Core: Enable port for frame transfer */ 306886e1387SVladimir Oltean ocelot_fields_write(ocelot, port, 307886e1387SVladimir Oltean QSYS_SWITCH_PORT_MODE_PORT_ENA, 1); 3087e14a2dcSVladimir Oltean 3097e14a2dcSVladimir Oltean if (felix->info->port_sched_speed_set) 3107e14a2dcSVladimir Oltean felix->info->port_sched_speed_set(ocelot, port, speed); 311bdeced75SVladimir Oltean } 312bdeced75SVladimir Oltean 313bd2b3161SXiaoliang Yang static void felix_port_qos_map_init(struct ocelot *ocelot, int port) 314bd2b3161SXiaoliang Yang { 315bd2b3161SXiaoliang Yang int i; 316bd2b3161SXiaoliang Yang 317bd2b3161SXiaoliang Yang ocelot_rmw_gix(ocelot, 318bd2b3161SXiaoliang Yang ANA_PORT_QOS_CFG_QOS_PCP_ENA, 319bd2b3161SXiaoliang Yang ANA_PORT_QOS_CFG_QOS_PCP_ENA, 320bd2b3161SXiaoliang Yang ANA_PORT_QOS_CFG, 321bd2b3161SXiaoliang Yang port); 322bd2b3161SXiaoliang Yang 323bd2b3161SXiaoliang Yang for (i = 0; i < FELIX_NUM_TC * 2; i++) { 324bd2b3161SXiaoliang Yang ocelot_rmw_ix(ocelot, 325bd2b3161SXiaoliang Yang (ANA_PORT_PCP_DEI_MAP_DP_PCP_DEI_VAL & i) | 326bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP_QOS_PCP_DEI_VAL(i), 327bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP_DP_PCP_DEI_VAL | 328bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP_QOS_PCP_DEI_VAL_M, 329bd2b3161SXiaoliang Yang ANA_PORT_PCP_DEI_MAP, 330bd2b3161SXiaoliang Yang port, i); 331bd2b3161SXiaoliang Yang } 332bd2b3161SXiaoliang Yang } 333bd2b3161SXiaoliang Yang 33456051948SVladimir Oltean static void felix_get_strings(struct dsa_switch *ds, int port, 33556051948SVladimir Oltean u32 stringset, u8 *data) 33656051948SVladimir Oltean { 33756051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 33856051948SVladimir Oltean 33956051948SVladimir Oltean return ocelot_get_strings(ocelot, port, stringset, data); 34056051948SVladimir Oltean } 34156051948SVladimir Oltean 34256051948SVladimir Oltean static void felix_get_ethtool_stats(struct dsa_switch *ds, int port, u64 *data) 34356051948SVladimir Oltean { 34456051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 34556051948SVladimir Oltean 34656051948SVladimir Oltean ocelot_get_ethtool_stats(ocelot, port, data); 34756051948SVladimir Oltean } 34856051948SVladimir Oltean 34956051948SVladimir Oltean static int felix_get_sset_count(struct dsa_switch *ds, int port, int sset) 35056051948SVladimir Oltean { 35156051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 35256051948SVladimir Oltean 35356051948SVladimir Oltean return ocelot_get_sset_count(ocelot, port, sset); 35456051948SVladimir Oltean } 35556051948SVladimir Oltean 35656051948SVladimir Oltean static int felix_get_ts_info(struct dsa_switch *ds, int port, 35756051948SVladimir Oltean struct ethtool_ts_info *info) 35856051948SVladimir Oltean { 35956051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 36056051948SVladimir Oltean 36156051948SVladimir Oltean return ocelot_get_ts_info(ocelot, port, info); 36256051948SVladimir Oltean } 36356051948SVladimir Oltean 364bdeced75SVladimir Oltean static int felix_parse_ports_node(struct felix *felix, 365bdeced75SVladimir Oltean struct device_node *ports_node, 366bdeced75SVladimir Oltean phy_interface_t *port_phy_modes) 367bdeced75SVladimir Oltean { 368bdeced75SVladimir Oltean struct ocelot *ocelot = &felix->ocelot; 369bdeced75SVladimir Oltean struct device *dev = felix->ocelot.dev; 370bdeced75SVladimir Oltean struct device_node *child; 371bdeced75SVladimir Oltean 37237fe45adSVladimir Oltean for_each_available_child_of_node(ports_node, child) { 373bdeced75SVladimir Oltean phy_interface_t phy_mode; 374bdeced75SVladimir Oltean u32 port; 375bdeced75SVladimir Oltean int err; 376bdeced75SVladimir Oltean 377bdeced75SVladimir Oltean /* Get switch port number from DT */ 378bdeced75SVladimir Oltean if (of_property_read_u32(child, "reg", &port) < 0) { 379bdeced75SVladimir Oltean dev_err(dev, "Port number not defined in device tree " 380bdeced75SVladimir Oltean "(property \"reg\")\n"); 381bdeced75SVladimir Oltean of_node_put(child); 382bdeced75SVladimir Oltean return -ENODEV; 383bdeced75SVladimir Oltean } 384bdeced75SVladimir Oltean 385bdeced75SVladimir Oltean /* Get PHY mode from DT */ 386bdeced75SVladimir Oltean err = of_get_phy_mode(child, &phy_mode); 387bdeced75SVladimir Oltean if (err) { 388bdeced75SVladimir Oltean dev_err(dev, "Failed to read phy-mode or " 389bdeced75SVladimir Oltean "phy-interface-type property for port %d\n", 390bdeced75SVladimir Oltean port); 391bdeced75SVladimir Oltean of_node_put(child); 392bdeced75SVladimir Oltean return -ENODEV; 393bdeced75SVladimir Oltean } 394bdeced75SVladimir Oltean 395bdeced75SVladimir Oltean err = felix->info->prevalidate_phy_mode(ocelot, port, phy_mode); 396bdeced75SVladimir Oltean if (err < 0) { 397bdeced75SVladimir Oltean dev_err(dev, "Unsupported PHY mode %s on port %d\n", 398bdeced75SVladimir Oltean phy_modes(phy_mode), port); 39959ebb430SSumera Priyadarsini of_node_put(child); 400bdeced75SVladimir Oltean return err; 401bdeced75SVladimir Oltean } 402bdeced75SVladimir Oltean 403bdeced75SVladimir Oltean port_phy_modes[port] = phy_mode; 404bdeced75SVladimir Oltean } 405bdeced75SVladimir Oltean 406bdeced75SVladimir Oltean return 0; 407bdeced75SVladimir Oltean } 408bdeced75SVladimir Oltean 409bdeced75SVladimir Oltean static int felix_parse_dt(struct felix *felix, phy_interface_t *port_phy_modes) 410bdeced75SVladimir Oltean { 411bdeced75SVladimir Oltean struct device *dev = felix->ocelot.dev; 412bdeced75SVladimir Oltean struct device_node *switch_node; 413bdeced75SVladimir Oltean struct device_node *ports_node; 414bdeced75SVladimir Oltean int err; 415bdeced75SVladimir Oltean 416bdeced75SVladimir Oltean switch_node = dev->of_node; 417bdeced75SVladimir Oltean 418bdeced75SVladimir Oltean ports_node = of_get_child_by_name(switch_node, "ports"); 419bdeced75SVladimir Oltean if (!ports_node) { 420bdeced75SVladimir Oltean dev_err(dev, "Incorrect bindings: absent \"ports\" node\n"); 421bdeced75SVladimir Oltean return -ENODEV; 422bdeced75SVladimir Oltean } 423bdeced75SVladimir Oltean 424bdeced75SVladimir Oltean err = felix_parse_ports_node(felix, ports_node, port_phy_modes); 425bdeced75SVladimir Oltean of_node_put(ports_node); 426bdeced75SVladimir Oltean 427bdeced75SVladimir Oltean return err; 428bdeced75SVladimir Oltean } 429bdeced75SVladimir Oltean 43056051948SVladimir Oltean static int felix_init_structs(struct felix *felix, int num_phys_ports) 43156051948SVladimir Oltean { 43256051948SVladimir Oltean struct ocelot *ocelot = &felix->ocelot; 433bdeced75SVladimir Oltean phy_interface_t *port_phy_modes; 434b4024c9eSClaudiu Manoil struct resource res; 43556051948SVladimir Oltean int port, i, err; 43656051948SVladimir Oltean 43756051948SVladimir Oltean ocelot->num_phys_ports = num_phys_ports; 43856051948SVladimir Oltean ocelot->ports = devm_kcalloc(ocelot->dev, num_phys_ports, 43956051948SVladimir Oltean sizeof(struct ocelot_port *), GFP_KERNEL); 44056051948SVladimir Oltean if (!ocelot->ports) 44156051948SVladimir Oltean return -ENOMEM; 44256051948SVladimir Oltean 44356051948SVladimir Oltean ocelot->map = felix->info->map; 44456051948SVladimir Oltean ocelot->stats_layout = felix->info->stats_layout; 44556051948SVladimir Oltean ocelot->num_stats = felix->info->num_stats; 44656051948SVladimir Oltean ocelot->shared_queue_sz = felix->info->shared_queue_sz; 44721ce7f3eSVladimir Oltean ocelot->num_mact_rows = felix->info->num_mact_rows; 44807d985eeSVladimir Oltean ocelot->vcap = felix->info->vcap; 44956051948SVladimir Oltean ocelot->ops = felix->info->ops; 4505124197cSVladimir Oltean ocelot->inj_prefix = OCELOT_TAG_PREFIX_SHORT; 4515124197cSVladimir Oltean ocelot->xtr_prefix = OCELOT_TAG_PREFIX_SHORT; 45256051948SVladimir Oltean 453bdeced75SVladimir Oltean port_phy_modes = kcalloc(num_phys_ports, sizeof(phy_interface_t), 454bdeced75SVladimir Oltean GFP_KERNEL); 455bdeced75SVladimir Oltean if (!port_phy_modes) 456bdeced75SVladimir Oltean return -ENOMEM; 457bdeced75SVladimir Oltean 458bdeced75SVladimir Oltean err = felix_parse_dt(felix, port_phy_modes); 459bdeced75SVladimir Oltean if (err) { 460bdeced75SVladimir Oltean kfree(port_phy_modes); 461bdeced75SVladimir Oltean return err; 462bdeced75SVladimir Oltean } 463bdeced75SVladimir Oltean 46456051948SVladimir Oltean for (i = 0; i < TARGET_MAX; i++) { 46556051948SVladimir Oltean struct regmap *target; 46656051948SVladimir Oltean 46756051948SVladimir Oltean if (!felix->info->target_io_res[i].name) 46856051948SVladimir Oltean continue; 46956051948SVladimir Oltean 470b4024c9eSClaudiu Manoil memcpy(&res, &felix->info->target_io_res[i], sizeof(res)); 471b4024c9eSClaudiu Manoil res.flags = IORESOURCE_MEM; 472375e1314SVladimir Oltean res.start += felix->switch_base; 473375e1314SVladimir Oltean res.end += felix->switch_base; 47456051948SVladimir Oltean 475b4024c9eSClaudiu Manoil target = ocelot_regmap_init(ocelot, &res); 47656051948SVladimir Oltean if (IS_ERR(target)) { 47756051948SVladimir Oltean dev_err(ocelot->dev, 47856051948SVladimir Oltean "Failed to map device memory space\n"); 479bdeced75SVladimir Oltean kfree(port_phy_modes); 48056051948SVladimir Oltean return PTR_ERR(target); 48156051948SVladimir Oltean } 48256051948SVladimir Oltean 48356051948SVladimir Oltean ocelot->targets[i] = target; 48456051948SVladimir Oltean } 48556051948SVladimir Oltean 48656051948SVladimir Oltean err = ocelot_regfields_init(ocelot, felix->info->regfields); 48756051948SVladimir Oltean if (err) { 48856051948SVladimir Oltean dev_err(ocelot->dev, "failed to init reg fields map\n"); 489bdeced75SVladimir Oltean kfree(port_phy_modes); 49056051948SVladimir Oltean return err; 49156051948SVladimir Oltean } 49256051948SVladimir Oltean 49356051948SVladimir Oltean for (port = 0; port < num_phys_ports; port++) { 49456051948SVladimir Oltean struct ocelot_port *ocelot_port; 49591c724cfSVladimir Oltean struct regmap *target; 49667c24049SVladimir Oltean u8 *template; 49756051948SVladimir Oltean 49856051948SVladimir Oltean ocelot_port = devm_kzalloc(ocelot->dev, 49956051948SVladimir Oltean sizeof(struct ocelot_port), 50056051948SVladimir Oltean GFP_KERNEL); 50156051948SVladimir Oltean if (!ocelot_port) { 50256051948SVladimir Oltean dev_err(ocelot->dev, 50356051948SVladimir Oltean "failed to allocate port memory\n"); 504bdeced75SVladimir Oltean kfree(port_phy_modes); 50556051948SVladimir Oltean return -ENOMEM; 50656051948SVladimir Oltean } 50756051948SVladimir Oltean 508b4024c9eSClaudiu Manoil memcpy(&res, &felix->info->port_io_res[port], sizeof(res)); 509b4024c9eSClaudiu Manoil res.flags = IORESOURCE_MEM; 510375e1314SVladimir Oltean res.start += felix->switch_base; 511375e1314SVladimir Oltean res.end += felix->switch_base; 51256051948SVladimir Oltean 51391c724cfSVladimir Oltean target = ocelot_regmap_init(ocelot, &res); 51491c724cfSVladimir Oltean if (IS_ERR(target)) { 51556051948SVladimir Oltean dev_err(ocelot->dev, 51691c724cfSVladimir Oltean "Failed to map memory space for port %d\n", 51791c724cfSVladimir Oltean port); 518bdeced75SVladimir Oltean kfree(port_phy_modes); 51991c724cfSVladimir Oltean return PTR_ERR(target); 52056051948SVladimir Oltean } 52156051948SVladimir Oltean 5225124197cSVladimir Oltean template = devm_kzalloc(ocelot->dev, OCELOT_TOTAL_TAG_LEN, 52367c24049SVladimir Oltean GFP_KERNEL); 52467c24049SVladimir Oltean if (!template) { 52567c24049SVladimir Oltean dev_err(ocelot->dev, 52667c24049SVladimir Oltean "Failed to allocate memory for DSA tag\n"); 52767c24049SVladimir Oltean kfree(port_phy_modes); 52867c24049SVladimir Oltean return -ENOMEM; 52967c24049SVladimir Oltean } 53067c24049SVladimir Oltean 531bdeced75SVladimir Oltean ocelot_port->phy_mode = port_phy_modes[port]; 53256051948SVladimir Oltean ocelot_port->ocelot = ocelot; 53391c724cfSVladimir Oltean ocelot_port->target = target; 53467c24049SVladimir Oltean ocelot_port->xmit_template = template; 53556051948SVladimir Oltean ocelot->ports[port] = ocelot_port; 53667c24049SVladimir Oltean 53767c24049SVladimir Oltean felix->info->xmit_template_populate(ocelot, port); 53856051948SVladimir Oltean } 53956051948SVladimir Oltean 540bdeced75SVladimir Oltean kfree(port_phy_modes); 541bdeced75SVladimir Oltean 542bdeced75SVladimir Oltean if (felix->info->mdio_bus_alloc) { 543bdeced75SVladimir Oltean err = felix->info->mdio_bus_alloc(ocelot); 544bdeced75SVladimir Oltean if (err < 0) 545bdeced75SVladimir Oltean return err; 546bdeced75SVladimir Oltean } 547bdeced75SVladimir Oltean 54856051948SVladimir Oltean return 0; 54956051948SVladimir Oltean } 55056051948SVladimir Oltean 5512d44b097SVladimir Oltean /* The CPU port module is connected to the Node Processor Interface (NPI). This 5522d44b097SVladimir Oltean * is the mode through which frames can be injected from and extracted to an 5532d44b097SVladimir Oltean * external CPU, over Ethernet. 5542d44b097SVladimir Oltean */ 5552d44b097SVladimir Oltean static void felix_npi_port_init(struct ocelot *ocelot, int port) 5562d44b097SVladimir Oltean { 5572d44b097SVladimir Oltean ocelot->npi = port; 5582d44b097SVladimir Oltean 5592d44b097SVladimir Oltean ocelot_write(ocelot, QSYS_EXT_CPU_CFG_EXT_CPUQ_MSK_M | 5602d44b097SVladimir Oltean QSYS_EXT_CPU_CFG_EXT_CPU_PORT(port), 5612d44b097SVladimir Oltean QSYS_EXT_CPU_CFG); 5622d44b097SVladimir Oltean 5632d44b097SVladimir Oltean /* NPI port Injection/Extraction configuration */ 5642d44b097SVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_XTR_HDR, 5652d44b097SVladimir Oltean ocelot->xtr_prefix); 5662d44b097SVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_INJ_HDR, 5672d44b097SVladimir Oltean ocelot->inj_prefix); 5682d44b097SVladimir Oltean 5692d44b097SVladimir Oltean /* Disable transmission of pause frames */ 5702d44b097SVladimir Oltean ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0); 5712d44b097SVladimir Oltean } 5722d44b097SVladimir Oltean 57356051948SVladimir Oltean /* Hardware initialization done here so that we can allocate structures with 57456051948SVladimir Oltean * devm without fear of dsa_register_switch returning -EPROBE_DEFER and causing 57556051948SVladimir Oltean * us to allocate structures twice (leak memory) and map PCI memory twice 57656051948SVladimir Oltean * (which will not work). 57756051948SVladimir Oltean */ 57856051948SVladimir Oltean static int felix_setup(struct dsa_switch *ds) 57956051948SVladimir Oltean { 58056051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 58156051948SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 58256051948SVladimir Oltean int port, err; 5833c7b51bdSXiaoliang Yang int tc; 58456051948SVladimir Oltean 58556051948SVladimir Oltean err = felix_init_structs(felix, ds->num_ports); 58656051948SVladimir Oltean if (err) 58756051948SVladimir Oltean return err; 58856051948SVladimir Oltean 589d1cc0e93SVladimir Oltean err = ocelot_init(ocelot); 590d1cc0e93SVladimir Oltean if (err) 591d1cc0e93SVladimir Oltean return err; 592d1cc0e93SVladimir Oltean 5932b49d128SYangbo Lu if (ocelot->ptp) { 5942ac7c6c5SVladimir Oltean err = ocelot_init_timestamp(ocelot, felix->info->ptp_caps); 5952b49d128SYangbo Lu if (err) { 5962b49d128SYangbo Lu dev_err(ocelot->dev, 5972b49d128SYangbo Lu "Timestamp initialization failed\n"); 5982b49d128SYangbo Lu ocelot->ptp = 0; 5992b49d128SYangbo Lu } 6002b49d128SYangbo Lu } 60156051948SVladimir Oltean 60256051948SVladimir Oltean for (port = 0; port < ds->num_ports; port++) { 60356051948SVladimir Oltean ocelot_init_port(ocelot, port); 60456051948SVladimir Oltean 605b8fc7177SVladimir Oltean if (dsa_is_cpu_port(ds, port)) 6062d44b097SVladimir Oltean felix_npi_port_init(ocelot, port); 607bd2b3161SXiaoliang Yang 608bd2b3161SXiaoliang Yang /* Set the default QoS Classification based on PCP and DEI 609bd2b3161SXiaoliang Yang * bits of vlan tag. 610bd2b3161SXiaoliang Yang */ 611bd2b3161SXiaoliang Yang felix_port_qos_map_init(ocelot, port); 61256051948SVladimir Oltean } 61356051948SVladimir Oltean 6141cf3299bSVladimir Oltean /* Include the CPU port module in the forwarding mask for unknown 6151cf3299bSVladimir Oltean * unicast - the hardware default value for ANA_FLOODING_FLD_UNICAST 6161cf3299bSVladimir Oltean * excludes BIT(ocelot->num_phys_ports), and so does ocelot_init, since 6171cf3299bSVladimir Oltean * Ocelot relies on whitelisting MAC addresses towards PGID_CPU. 6181cf3299bSVladimir Oltean */ 6191cf3299bSVladimir Oltean ocelot_write_rix(ocelot, 6201cf3299bSVladimir Oltean ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)), 6211cf3299bSVladimir Oltean ANA_PGID_PGID, PGID_UC); 6223c7b51bdSXiaoliang Yang /* Setup the per-traffic class flooding PGIDs */ 6233c7b51bdSXiaoliang Yang for (tc = 0; tc < FELIX_NUM_TC; tc++) 6243c7b51bdSXiaoliang Yang ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) | 6253c7b51bdSXiaoliang Yang ANA_FLOODING_FLD_BROADCAST(PGID_MC) | 6263c7b51bdSXiaoliang Yang ANA_FLOODING_FLD_UNICAST(PGID_UC), 6273c7b51bdSXiaoliang Yang ANA_FLOODING, tc); 6281cf3299bSVladimir Oltean 6290b912fc9SVladimir Oltean ds->mtu_enforcement_ingress = true; 630626a8323SVladimir Oltean ds->configure_vlan_while_not_filtering = true; 631bdeced75SVladimir Oltean 63256051948SVladimir Oltean return 0; 63356051948SVladimir Oltean } 63456051948SVladimir Oltean 63556051948SVladimir Oltean static void felix_teardown(struct dsa_switch *ds) 63656051948SVladimir Oltean { 63756051948SVladimir Oltean struct ocelot *ocelot = ds->priv; 638bdeced75SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 639e5fb512dSVladimir Oltean int port; 640bdeced75SVladimir Oltean 641bdeced75SVladimir Oltean if (felix->info->mdio_bus_free) 642bdeced75SVladimir Oltean felix->info->mdio_bus_free(ocelot); 64356051948SVladimir Oltean 644e5fb512dSVladimir Oltean for (port = 0; port < ocelot->num_phys_ports; port++) 645e5fb512dSVladimir Oltean ocelot_deinit_port(ocelot, port); 6462b49d128SYangbo Lu ocelot_deinit_timestamp(ocelot); 64756051948SVladimir Oltean /* stop workqueue thread */ 64856051948SVladimir Oltean ocelot_deinit(ocelot); 64956051948SVladimir Oltean } 65056051948SVladimir Oltean 651c0bcf537SYangbo Lu static int felix_hwtstamp_get(struct dsa_switch *ds, int port, 652c0bcf537SYangbo Lu struct ifreq *ifr) 653c0bcf537SYangbo Lu { 654c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 655c0bcf537SYangbo Lu 656c0bcf537SYangbo Lu return ocelot_hwstamp_get(ocelot, port, ifr); 657c0bcf537SYangbo Lu } 658c0bcf537SYangbo Lu 659c0bcf537SYangbo Lu static int felix_hwtstamp_set(struct dsa_switch *ds, int port, 660c0bcf537SYangbo Lu struct ifreq *ifr) 661c0bcf537SYangbo Lu { 662c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 663c0bcf537SYangbo Lu 664c0bcf537SYangbo Lu return ocelot_hwstamp_set(ocelot, port, ifr); 665c0bcf537SYangbo Lu } 666c0bcf537SYangbo Lu 667c0bcf537SYangbo Lu static bool felix_rxtstamp(struct dsa_switch *ds, int port, 668c0bcf537SYangbo Lu struct sk_buff *skb, unsigned int type) 669c0bcf537SYangbo Lu { 670c0bcf537SYangbo Lu struct skb_shared_hwtstamps *shhwtstamps; 671c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 672c0bcf537SYangbo Lu u8 *extraction = skb->data - ETH_HLEN - OCELOT_TAG_LEN; 673c0bcf537SYangbo Lu u32 tstamp_lo, tstamp_hi; 674c0bcf537SYangbo Lu struct timespec64 ts; 675c0bcf537SYangbo Lu u64 tstamp, val; 676c0bcf537SYangbo Lu 677c0bcf537SYangbo Lu ocelot_ptp_gettime64(&ocelot->ptp_info, &ts); 678c0bcf537SYangbo Lu tstamp = ktime_set(ts.tv_sec, ts.tv_nsec); 679c0bcf537SYangbo Lu 680c0bcf537SYangbo Lu packing(extraction, &val, 116, 85, OCELOT_TAG_LEN, UNPACK, 0); 681c0bcf537SYangbo Lu tstamp_lo = (u32)val; 682c0bcf537SYangbo Lu 683c0bcf537SYangbo Lu tstamp_hi = tstamp >> 32; 684c0bcf537SYangbo Lu if ((tstamp & 0xffffffff) < tstamp_lo) 685c0bcf537SYangbo Lu tstamp_hi--; 686c0bcf537SYangbo Lu 687c0bcf537SYangbo Lu tstamp = ((u64)tstamp_hi << 32) | tstamp_lo; 688c0bcf537SYangbo Lu 689c0bcf537SYangbo Lu shhwtstamps = skb_hwtstamps(skb); 690c0bcf537SYangbo Lu memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps)); 691c0bcf537SYangbo Lu shhwtstamps->hwtstamp = tstamp; 692c0bcf537SYangbo Lu return false; 693c0bcf537SYangbo Lu } 694c0bcf537SYangbo Lu 6953243e04aSChen Wandun static bool felix_txtstamp(struct dsa_switch *ds, int port, 696c0bcf537SYangbo Lu struct sk_buff *clone, unsigned int type) 697c0bcf537SYangbo Lu { 698c0bcf537SYangbo Lu struct ocelot *ocelot = ds->priv; 699c0bcf537SYangbo Lu struct ocelot_port *ocelot_port = ocelot->ports[port]; 700c0bcf537SYangbo Lu 701e2f9a8feSVladimir Oltean if (ocelot->ptp && (skb_shinfo(clone)->tx_flags & SKBTX_HW_TSTAMP) && 702e2f9a8feSVladimir Oltean ocelot_port->ptp_cmd == IFH_REW_OP_TWO_STEP_PTP) { 703e2f9a8feSVladimir Oltean ocelot_port_add_txtstamp_skb(ocelot, port, clone); 704c0bcf537SYangbo Lu return true; 705e2f9a8feSVladimir Oltean } 706c0bcf537SYangbo Lu 707c0bcf537SYangbo Lu return false; 708c0bcf537SYangbo Lu } 709c0bcf537SYangbo Lu 7100b912fc9SVladimir Oltean static int felix_change_mtu(struct dsa_switch *ds, int port, int new_mtu) 7110b912fc9SVladimir Oltean { 7120b912fc9SVladimir Oltean struct ocelot *ocelot = ds->priv; 7130b912fc9SVladimir Oltean 7140b912fc9SVladimir Oltean ocelot_port_set_maxlen(ocelot, port, new_mtu); 7150b912fc9SVladimir Oltean 7160b912fc9SVladimir Oltean return 0; 7170b912fc9SVladimir Oltean } 7180b912fc9SVladimir Oltean 7190b912fc9SVladimir Oltean static int felix_get_max_mtu(struct dsa_switch *ds, int port) 7200b912fc9SVladimir Oltean { 7210b912fc9SVladimir Oltean struct ocelot *ocelot = ds->priv; 7220b912fc9SVladimir Oltean 7230b912fc9SVladimir Oltean return ocelot_get_max_mtu(ocelot, port); 7240b912fc9SVladimir Oltean } 7250b912fc9SVladimir Oltean 72607d985eeSVladimir Oltean static int felix_cls_flower_add(struct dsa_switch *ds, int port, 72707d985eeSVladimir Oltean struct flow_cls_offload *cls, bool ingress) 72807d985eeSVladimir Oltean { 72907d985eeSVladimir Oltean struct ocelot *ocelot = ds->priv; 73007d985eeSVladimir Oltean 73107d985eeSVladimir Oltean return ocelot_cls_flower_replace(ocelot, port, cls, ingress); 73207d985eeSVladimir Oltean } 73307d985eeSVladimir Oltean 73407d985eeSVladimir Oltean static int felix_cls_flower_del(struct dsa_switch *ds, int port, 73507d985eeSVladimir Oltean struct flow_cls_offload *cls, bool ingress) 73607d985eeSVladimir Oltean { 73707d985eeSVladimir Oltean struct ocelot *ocelot = ds->priv; 73807d985eeSVladimir Oltean 73907d985eeSVladimir Oltean return ocelot_cls_flower_destroy(ocelot, port, cls, ingress); 74007d985eeSVladimir Oltean } 74107d985eeSVladimir Oltean 74207d985eeSVladimir Oltean static int felix_cls_flower_stats(struct dsa_switch *ds, int port, 74307d985eeSVladimir Oltean struct flow_cls_offload *cls, bool ingress) 74407d985eeSVladimir Oltean { 74507d985eeSVladimir Oltean struct ocelot *ocelot = ds->priv; 74607d985eeSVladimir Oltean 74707d985eeSVladimir Oltean return ocelot_cls_flower_stats(ocelot, port, cls, ingress); 74807d985eeSVladimir Oltean } 74907d985eeSVladimir Oltean 750fc411eaaSVladimir Oltean static int felix_port_policer_add(struct dsa_switch *ds, int port, 751fc411eaaSVladimir Oltean struct dsa_mall_policer_tc_entry *policer) 752fc411eaaSVladimir Oltean { 753fc411eaaSVladimir Oltean struct ocelot *ocelot = ds->priv; 754fc411eaaSVladimir Oltean struct ocelot_policer pol = { 755fc411eaaSVladimir Oltean .rate = div_u64(policer->rate_bytes_per_sec, 1000) * 8, 7565f035af7SPo Liu .burst = policer->burst, 757fc411eaaSVladimir Oltean }; 758fc411eaaSVladimir Oltean 759fc411eaaSVladimir Oltean return ocelot_port_policer_add(ocelot, port, &pol); 760fc411eaaSVladimir Oltean } 761fc411eaaSVladimir Oltean 762fc411eaaSVladimir Oltean static void felix_port_policer_del(struct dsa_switch *ds, int port) 763fc411eaaSVladimir Oltean { 764fc411eaaSVladimir Oltean struct ocelot *ocelot = ds->priv; 765fc411eaaSVladimir Oltean 766fc411eaaSVladimir Oltean ocelot_port_policer_del(ocelot, port); 767fc411eaaSVladimir Oltean } 768fc411eaaSVladimir Oltean 769de143c0eSXiaoliang Yang static int felix_port_setup_tc(struct dsa_switch *ds, int port, 770de143c0eSXiaoliang Yang enum tc_setup_type type, 771de143c0eSXiaoliang Yang void *type_data) 772de143c0eSXiaoliang Yang { 773de143c0eSXiaoliang Yang struct ocelot *ocelot = ds->priv; 774de143c0eSXiaoliang Yang struct felix *felix = ocelot_to_felix(ocelot); 775de143c0eSXiaoliang Yang 776de143c0eSXiaoliang Yang if (felix->info->port_setup_tc) 777de143c0eSXiaoliang Yang return felix->info->port_setup_tc(ds, port, type, type_data); 778de143c0eSXiaoliang Yang else 779de143c0eSXiaoliang Yang return -EOPNOTSUPP; 780de143c0eSXiaoliang Yang } 781de143c0eSXiaoliang Yang 782375e1314SVladimir Oltean const struct dsa_switch_ops felix_switch_ops = { 78356051948SVladimir Oltean .get_tag_protocol = felix_get_tag_protocol, 78456051948SVladimir Oltean .setup = felix_setup, 78556051948SVladimir Oltean .teardown = felix_teardown, 78656051948SVladimir Oltean .set_ageing_time = felix_set_ageing_time, 78756051948SVladimir Oltean .get_strings = felix_get_strings, 78856051948SVladimir Oltean .get_ethtool_stats = felix_get_ethtool_stats, 78956051948SVladimir Oltean .get_sset_count = felix_get_sset_count, 79056051948SVladimir Oltean .get_ts_info = felix_get_ts_info, 791bdeced75SVladimir Oltean .phylink_validate = felix_phylink_validate, 792bdeced75SVladimir Oltean .phylink_mac_config = felix_phylink_mac_config, 793bdeced75SVladimir Oltean .phylink_mac_link_down = felix_phylink_mac_link_down, 794bdeced75SVladimir Oltean .phylink_mac_link_up = felix_phylink_mac_link_up, 79556051948SVladimir Oltean .port_enable = felix_port_enable, 79656051948SVladimir Oltean .port_disable = felix_port_disable, 79756051948SVladimir Oltean .port_fdb_dump = felix_fdb_dump, 79856051948SVladimir Oltean .port_fdb_add = felix_fdb_add, 79956051948SVladimir Oltean .port_fdb_del = felix_fdb_del, 800209edf95SVladimir Oltean .port_mdb_prepare = felix_mdb_prepare, 801209edf95SVladimir Oltean .port_mdb_add = felix_mdb_add, 802209edf95SVladimir Oltean .port_mdb_del = felix_mdb_del, 80356051948SVladimir Oltean .port_bridge_join = felix_bridge_join, 80456051948SVladimir Oltean .port_bridge_leave = felix_bridge_leave, 80556051948SVladimir Oltean .port_stp_state_set = felix_bridge_stp_state_set, 80656051948SVladimir Oltean .port_vlan_prepare = felix_vlan_prepare, 80756051948SVladimir Oltean .port_vlan_filtering = felix_vlan_filtering, 80856051948SVladimir Oltean .port_vlan_add = felix_vlan_add, 80956051948SVladimir Oltean .port_vlan_del = felix_vlan_del, 810c0bcf537SYangbo Lu .port_hwtstamp_get = felix_hwtstamp_get, 811c0bcf537SYangbo Lu .port_hwtstamp_set = felix_hwtstamp_set, 812c0bcf537SYangbo Lu .port_rxtstamp = felix_rxtstamp, 813c0bcf537SYangbo Lu .port_txtstamp = felix_txtstamp, 8140b912fc9SVladimir Oltean .port_change_mtu = felix_change_mtu, 8150b912fc9SVladimir Oltean .port_max_mtu = felix_get_max_mtu, 816fc411eaaSVladimir Oltean .port_policer_add = felix_port_policer_add, 817fc411eaaSVladimir Oltean .port_policer_del = felix_port_policer_del, 81807d985eeSVladimir Oltean .cls_flower_add = felix_cls_flower_add, 81907d985eeSVladimir Oltean .cls_flower_del = felix_cls_flower_del, 82007d985eeSVladimir Oltean .cls_flower_stats = felix_cls_flower_stats, 821de143c0eSXiaoliang Yang .port_setup_tc = felix_port_setup_tc, 82256051948SVladimir Oltean }; 823319e4dd1SVladimir Oltean 824319e4dd1SVladimir Oltean struct net_device *felix_port_to_netdev(struct ocelot *ocelot, int port) 825319e4dd1SVladimir Oltean { 826319e4dd1SVladimir Oltean struct felix *felix = ocelot_to_felix(ocelot); 827319e4dd1SVladimir Oltean struct dsa_switch *ds = felix->ds; 828319e4dd1SVladimir Oltean 829319e4dd1SVladimir Oltean if (!dsa_is_user_port(ds, port)) 830319e4dd1SVladimir Oltean return NULL; 831319e4dd1SVladimir Oltean 832319e4dd1SVladimir Oltean return dsa_to_port(ds, port)->slave; 833319e4dd1SVladimir Oltean } 834319e4dd1SVladimir Oltean 835319e4dd1SVladimir Oltean int felix_netdev_to_port(struct net_device *dev) 836319e4dd1SVladimir Oltean { 837319e4dd1SVladimir Oltean struct dsa_port *dp; 838319e4dd1SVladimir Oltean 839319e4dd1SVladimir Oltean dp = dsa_port_from_netdev(dev); 840319e4dd1SVladimir Oltean if (IS_ERR(dp)) 841319e4dd1SVladimir Oltean return -EINVAL; 842319e4dd1SVladimir Oltean 843319e4dd1SVladimir Oltean return dp->index; 844319e4dd1SVladimir Oltean } 845