Lines Matching refs:ethsw
33 static struct dpaa2_switch_fdb *dpaa2_switch_fdb_get_unused(struct ethsw_core *ethsw)
37 for (i = 0; i < ethsw->sw_attr.num_ifs; i++)
38 if (!ethsw->fdbs[i].in_use)
39 return ðsw->fdbs[i];
44 dpaa2_switch_filter_block_get_unused(struct ethsw_core *ethsw)
48 for (i = 0; i < ethsw->sw_attr.num_ifs; i++)
49 if (!ethsw->filter_blocks[i].in_use)
50 return ðsw->filter_blocks[i];
124 static void dpaa2_switch_fdb_get_flood_cfg(struct ethsw_core *ethsw, u16 fdb_id,
135 for (j = 0; j < ethsw->sw_attr.num_ifs; j++) {
136 if (!ethsw->ports[j])
138 if (ethsw->ports[j]->fdb->fdb_id != fdb_id)
141 if (type == DPSW_BROADCAST && ethsw->ports[j]->bcast_flood)
142 cfg->if_id[i++] = ethsw->ports[j]->idx;
143 else if (type == DPSW_FLOODING && ethsw->ports[j]->ucast_flood)
144 cfg->if_id[i++] = ethsw->ports[j]->idx;
148 cfg->if_id[i++] = ethsw->sw_attr.num_ifs;
155 static int dpaa2_switch_fdb_set_egress_flood(struct ethsw_core *ethsw, u16 fdb_id)
161 dpaa2_switch_fdb_get_flood_cfg(ethsw, fdb_id, DPSW_BROADCAST, &flood_cfg);
162 err = dpsw_set_egress_flood(ethsw->mc_io, 0, ethsw->dpsw_handle,
165 dev_err(ethsw->dev, "dpsw_set_egress_flood() = %d\n", err);
170 dpaa2_switch_fdb_get_flood_cfg(ethsw, fdb_id, DPSW_FLOODING, &flood_cfg);
171 err = dpsw_set_egress_flood(ethsw->mc_io, 0, ethsw->dpsw_handle,
174 dev_err(ethsw->dev, "dpsw_set_egress_flood() = %d\n", err);
193 struct ethsw_core *ethsw = port_priv->ethsw_data;
198 err = dpsw_vlan_add(ethsw->mc_io, 0,
199 ethsw->dpsw_handle, vid, &vcfg);
201 dev_err(ethsw->dev, "dpsw_vlan_add err %d\n", err);
204 ethsw->vlans[vid] = ETHSW_VLAN_MEMBER;
230 struct ethsw_core *ethsw = port_priv->ethsw_data;
236 err = dpsw_if_get_tci(ethsw->mc_io, 0, ethsw->dpsw_handle,
248 err = dpsw_if_disable(ethsw->mc_io, 0,
249 ethsw->dpsw_handle,
257 err = dpsw_if_set_tci(ethsw->mc_io, 0, ethsw->dpsw_handle,
271 ret = dpsw_if_enable(ethsw->mc_io, 0,
272 ethsw->dpsw_handle,
286 struct ethsw_core *ethsw = port_priv->ethsw_data;
303 err = dpsw_vlan_add_if(ethsw->mc_io, 0, ethsw->dpsw_handle, vid, &vcfg);
312 err = dpsw_vlan_add_if_untagged(ethsw->mc_io, 0,
313 ethsw->dpsw_handle,
379 static int dpaa2_switch_dellink(struct ethsw_core *ethsw, u16 vid)
384 if (!ethsw->vlans[vid])
387 err = dpsw_vlan_remove(ethsw->mc_io, 0, ethsw->dpsw_handle, vid);
389 dev_err(ethsw->dev, "dpsw_vlan_remove err %d\n", err);
392 ethsw->vlans[vid] = 0;
394 for (i = 0; i < ethsw->sw_attr.num_ifs; i++) {
395 ppriv_local = ethsw->ports[i];
649 static void dpaa2_switch_enable_ctrl_if_napi(struct ethsw_core *ethsw)
653 /* Access to the ethsw->napi_users relies on the RTNL lock */
657 ethsw->napi_users++;
660 if (ethsw->napi_users > 1)
664 napi_enable(ðsw->fq[i].napi);
667 static void dpaa2_switch_disable_ctrl_if_napi(struct ethsw_core *ethsw)
671 /* Access to the ethsw->napi_users relies on the RTNL lock */
675 ethsw->napi_users--;
676 if (ethsw->napi_users)
680 napi_disable(ðsw->fq[i].napi);
686 struct ethsw_core *ethsw = port_priv->ethsw_data;
709 dpaa2_switch_enable_ctrl_if_napi(ethsw);
722 struct ethsw_core *ethsw = port_priv->ethsw_data;
744 dpaa2_switch_disable_ctrl_if_napi(ethsw);
839 struct ethsw_core *ethsw = port_priv->ethsw_data;
850 fdb_dump_size = ethsw->sw_attr.max_fdb_entries * sizeof(fdb_entry);
864 err = dpsw_fdb_dump(ethsw->mc_io, 0, ethsw->dpsw_handle, fdb_id,
977 struct ethsw_core *ethsw = port_priv->ethsw_data;
983 if (!(ethsw->features & ETHSW_FEATURE_MAC_ADDR))
987 err = dpsw_if_get_port_mac_addr(ethsw->mc_io, 0, ethsw->dpsw_handle,
1015 static void dpaa2_switch_free_fd(const struct ethsw_core *ethsw,
1018 struct device *dev = ethsw->dev;
1024 skbh = dpaa2_iova_to_virt(ethsw->iommu_domain, fd_addr);
1037 static int dpaa2_switch_build_single_fd(struct ethsw_core *ethsw,
1041 struct device *dev = ethsw->dev;
1086 struct ethsw_core *ethsw = port_priv->ethsw_data;
1120 err = dpaa2_switch_build_single_fd(ethsw, skb, &fd);
1134 dpaa2_switch_free_fd(ethsw, &fd);
1194 struct ethsw_core *ethsw = port_priv->ethsw_data;
1204 err = dpsw_acl_add_if(ethsw->mc_io, 0, ethsw->dpsw_handle,
1221 struct ethsw_core *ethsw = port_priv->ethsw_data;
1231 err = dpsw_acl_remove_if(ethsw->mc_io, 0, ethsw->dpsw_handle,
1279 struct ethsw_core *ethsw = port_priv->ethsw_data;
1303 new_block = dpaa2_switch_filter_block_get_unused(ethsw);
1312 struct ethsw_core *ethsw = port_priv->ethsw_data;
1320 ethsw);
1330 ethsw, filter_block, NULL);
1362 struct ethsw_core *ethsw = port_priv->ethsw_data;
1369 ethsw);
1511 struct ethsw_core *ethsw = dev_get_drvdata(dev);
1517 err = dpsw_get_irq_status(ethsw->mc_io, 0, ethsw->dpsw_handle,
1525 port_priv = ethsw->ports[if_id];
1543 err = dpsw_clear_irq_status(ethsw->mc_io, 0, ethsw->dpsw_handle,
1556 struct ethsw_core *ethsw = dev_get_drvdata(dev);
1571 err = dpsw_set_irq_enable(ethsw->mc_io, 0, ethsw->dpsw_handle,
1589 err = dpsw_set_irq_mask(ethsw->mc_io, 0, ethsw->dpsw_handle,
1596 err = dpsw_set_irq_enable(ethsw->mc_io, 0, ethsw->dpsw_handle,
1615 struct ethsw_core *ethsw = dev_get_drvdata(dev);
1618 err = dpsw_set_irq_enable(ethsw->mc_io, 0, ethsw->dpsw_handle,
1628 struct ethsw_core *ethsw = port_priv->ethsw_data;
1637 err = dpsw_if_set_learning_mode(ethsw->mc_io, 0, ethsw->dpsw_handle,
1677 struct ethsw_core *ethsw = port_priv->ethsw_data;
1685 return dpaa2_switch_fdb_set_egress_flood(ethsw, port_priv->fdb->fdb_id);
1771 struct ethsw_core *ethsw = port_priv->ethsw_data;
1772 struct dpsw_attr *attr = ðsw->sw_attr;
1784 err = dpsw_get_attributes(ethsw->mc_io, 0, ethsw->dpsw_handle,
1785 ðsw->sw_attr);
1794 err = dpsw_get_attributes(ethsw->mc_io, 0, ethsw->dpsw_handle,
1795 ðsw->sw_attr);
1879 struct ethsw_core *ethsw = port_priv->ethsw_data;
1900 err = dpsw_vlan_remove_if_untagged(ethsw->mc_io, 0,
1901 ethsw->dpsw_handle,
1912 err = dpsw_vlan_remove_if(ethsw->mc_io, 0, ethsw->dpsw_handle,
1924 for (i = 0; i < ethsw->sw_attr.num_ifs; i++) {
1925 if (ethsw->ports[i] &&
1926 ethsw->ports[i]->vlans[vid] & ETHSW_VLAN_MEMBER)
1930 ethsw->vlans[vid] &= ~ETHSW_VLAN_GLOBAL;
1932 err = dpaa2_switch_dellink(ethsw, vid);
2009 struct ethsw_core *ethsw = port_priv->ethsw_data;
2026 err = dpaa2_switch_fdb_set_egress_flood(ethsw, port_priv->fdb->fdb_id);
2031 err = dpaa2_switch_fdb_set_egress_flood(ethsw, old_fdb->fdb_id);
2077 struct ethsw_core *ethsw = port_priv->ethsw_data;
2109 err = dpaa2_switch_fdb_set_egress_flood(ethsw, port_priv->fdb->fdb_id);
2114 err = dpaa2_switch_fdb_set_egress_flood(ethsw, old_fdb->fdb_id);
2316 struct ethsw_core *ethsw = port_priv->ethsw_data;
2352 queue_work(ethsw->workqueue, &switchdev_work->work);
2400 static struct sk_buff *dpaa2_switch_build_linear_skb(struct ethsw_core *ethsw,
2406 struct device *dev = ethsw->dev;
2410 fd_vaddr = dpaa2_iova_to_virt(ethsw->iommu_domain, addr);
2424 ethsw->buf_count--;
2432 dpaa2_switch_free_fd(fq->ethsw, fd);
2438 struct ethsw_core *ethsw = fq->ethsw;
2449 if (if_id >= ethsw->sw_attr.num_ifs) {
2450 dev_err(ethsw->dev, "Frame received from unknown interface!\n");
2453 port_priv = ethsw->ports[if_id];
2464 skb = dpaa2_switch_build_linear_skb(ethsw, fd);
2481 dev_info(ethsw->dev, "__skb_vlan_pop() returned %d", err);
2497 dpaa2_switch_free_fd(ethsw, fd);
2500 static void dpaa2_switch_detect_features(struct ethsw_core *ethsw)
2502 ethsw->features = 0;
2504 if (ethsw->major > 8 || (ethsw->major == 8 && ethsw->minor >= 6))
2505 ethsw->features |= ETHSW_FEATURE_MAC_ADDR;
2508 static int dpaa2_switch_setup_fqs(struct ethsw_core *ethsw)
2511 struct device *dev = ethsw->dev;
2515 err = dpsw_ctrl_if_get_attributes(ethsw->mc_io, 0, ethsw->dpsw_handle,
2522 ethsw->fq[i].fqid = ctrl_if_attr.rx_fqid;
2523 ethsw->fq[i].ethsw = ethsw;
2524 ethsw->fq[i++].type = DPSW_QUEUE_RX;
2526 ethsw->fq[i].fqid = ctrl_if_attr.tx_err_conf_fqid;
2527 ethsw->fq[i].ethsw = ethsw;
2528 ethsw->fq[i++].type = DPSW_QUEUE_TX_ERR_CONF;
2536 static void dpaa2_switch_free_bufs(struct ethsw_core *ethsw, u64 *buf_array, int count)
2538 struct device *dev = ethsw->dev;
2543 vaddr = dpaa2_iova_to_virt(ethsw->iommu_domain, buf_array[i]);
2553 static int dpaa2_switch_add_bufs(struct ethsw_core *ethsw, u16 bpid)
2555 struct device *dev = ethsw->dev;
2597 dpaa2_switch_free_bufs(ethsw, buf_array, i);
2615 static int dpaa2_switch_refill_bp(struct ethsw_core *ethsw)
2617 int *count = ðsw->buf_count;
2623 new_count = dpaa2_switch_add_bufs(ethsw, ethsw->bpid);
2640 static int dpaa2_switch_seed_bp(struct ethsw_core *ethsw)
2645 ret = dpaa2_switch_add_bufs(ethsw, ethsw->bpid);
2646 count = ðsw->buf_count;
2656 static void dpaa2_switch_drain_bp(struct ethsw_core *ethsw)
2662 ret = dpaa2_io_service_acquire(NULL, ethsw->bpid,
2665 dev_err(ethsw->dev,
2669 dpaa2_switch_free_bufs(ethsw, buf_array, ret);
2674 static int dpaa2_switch_setup_dpbp(struct ethsw_core *ethsw)
2677 struct device *dev = ethsw->dev;
2691 ethsw->dpbp_dev = dpbp_dev;
2693 err = dpbp_open(ethsw->mc_io, 0, dpbp_dev->obj_desc.id,
2700 err = dpbp_reset(ethsw->mc_io, 0, dpbp_dev->mc_handle);
2706 err = dpbp_enable(ethsw->mc_io, 0, dpbp_dev->mc_handle);
2712 err = dpbp_get_attributes(ethsw->mc_io, 0, dpbp_dev->mc_handle,
2724 err = dpsw_ctrl_if_set_pools(ethsw->mc_io, 0, ethsw->dpsw_handle,
2730 ethsw->bpid = dpbp_attrs.id;
2735 dpbp_disable(ethsw->mc_io, 0, dpbp_dev->mc_handle);
2738 dpbp_close(ethsw->mc_io, 0, dpbp_dev->mc_handle);
2744 static void dpaa2_switch_free_dpbp(struct ethsw_core *ethsw)
2746 dpbp_disable(ethsw->mc_io, 0, ethsw->dpbp_dev->mc_handle);
2747 dpbp_close(ethsw->mc_io, 0, ethsw->dpbp_dev->mc_handle);
2748 fsl_mc_object_free(ethsw->dpbp_dev);
2751 static int dpaa2_switch_alloc_rings(struct ethsw_core *ethsw)
2756 ethsw->fq[i].store =
2758 ethsw->dev);
2759 if (!ethsw->fq[i].store) {
2760 dev_err(ethsw->dev, "dpaa2_io_store_create failed\n");
2762 dpaa2_io_store_destroy(ethsw->fq[i].store);
2770 static void dpaa2_switch_destroy_rings(struct ethsw_core *ethsw)
2775 dpaa2_io_store_destroy(ethsw->fq[i].store);
2791 dev_err(fq->ethsw->dev, "dpaa2_io_service_pull err %d", err);
2799 struct ethsw_core *ethsw = fq->ethsw;
2809 dev_err_once(ethsw->dev,
2842 dpaa2_switch_refill_bp(fq->ethsw);
2878 static int dpaa2_switch_setup_dpio(struct ethsw_core *ethsw)
2885 nctx = ðsw->fq[i].nctx;
2892 nctx->id = ethsw->fq[i].fqid;
2895 err = dpaa2_io_service_register(NULL, nctx, ethsw->dev);
2908 err = dpsw_ctrl_if_set_queue(ethsw->mc_io, 0,
2909 ethsw->dpsw_handle,
2910 ethsw->fq[i].type,
2919 dpaa2_io_service_deregister(NULL, nctx, ethsw->dev);
2922 dpaa2_io_service_deregister(NULL, ðsw->fq[j].nctx,
2923 ethsw->dev);
2928 static void dpaa2_switch_free_dpio(struct ethsw_core *ethsw)
2933 dpaa2_io_service_deregister(NULL, ðsw->fq[i].nctx,
2934 ethsw->dev);
2937 static int dpaa2_switch_ctrl_if_setup(struct ethsw_core *ethsw)
2942 err = dpaa2_switch_setup_fqs(ethsw);
2947 err = dpaa2_switch_setup_dpbp(ethsw);
2951 err = dpaa2_switch_alloc_rings(ethsw);
2955 err = dpaa2_switch_setup_dpio(ethsw);
2959 err = dpaa2_switch_seed_bp(ethsw);
2963 err = dpsw_ctrl_if_enable(ethsw->mc_io, 0, ethsw->dpsw_handle);
2965 dev_err(ethsw->dev, "dpsw_ctrl_if_enable err %d\n", err);
2972 dpaa2_switch_drain_bp(ethsw);
2974 dpaa2_switch_free_dpio(ethsw);
2976 dpaa2_switch_destroy_rings(ethsw);
2978 dpaa2_switch_free_dpbp(ethsw);
2983 static void dpaa2_switch_remove_port(struct ethsw_core *ethsw,
2986 struct ethsw_port_priv *port_priv = ethsw->ports[port_idx];
2990 ethsw->ports[port_idx] = NULL;
2996 struct ethsw_core *ethsw = dev_get_drvdata(dev);
3003 ethsw->dev_id = sw_dev->obj_desc.id;
3005 err = dpsw_open(ethsw->mc_io, 0, ethsw->dev_id, ðsw->dpsw_handle);
3011 err = dpsw_get_attributes(ethsw->mc_io, 0, ethsw->dpsw_handle,
3012 ðsw->sw_attr);
3018 err = dpsw_get_api_version(ethsw->mc_io, 0,
3019 ðsw->major,
3020 ðsw->minor);
3027 if (ethsw->major < DPSW_MIN_VER_MAJOR ||
3028 (ethsw->major == DPSW_MIN_VER_MAJOR &&
3029 ethsw->minor < DPSW_MIN_VER_MINOR)) {
3031 ethsw->major, ethsw->minor);
3036 if (!dpaa2_switch_supports_cpu_traffic(ethsw)) {
3041 dpaa2_switch_detect_features(ethsw);
3043 err = dpsw_reset(ethsw->mc_io, 0, ethsw->dpsw_handle);
3052 for (i = 0; i < ethsw->sw_attr.num_ifs; i++) {
3053 err = dpsw_if_disable(ethsw->mc_io, 0, ethsw->dpsw_handle, i);
3059 err = dpsw_if_set_stp(ethsw->mc_io, 0, ethsw->dpsw_handle, i,
3072 err = dpsw_vlan_remove_if_untagged(ethsw->mc_io, 0, ethsw->dpsw_handle,
3081 err = dpsw_if_set_tci(ethsw->mc_io, 0, ethsw->dpsw_handle, i, &tci_cfg);
3087 err = dpsw_vlan_remove_if(ethsw->mc_io, 0, ethsw->dpsw_handle,
3095 err = dpsw_vlan_remove(ethsw->mc_io, 0, ethsw->dpsw_handle, DEFAULT_VLAN_ID);
3101 ethsw->workqueue = alloc_ordered_workqueue("%s_%d_ordered",
3102 WQ_MEM_RECLAIM, "ethsw",
3103 ethsw->sw_attr.id);
3104 if (!ethsw->workqueue) {
3109 err = dpsw_fdb_remove(ethsw->mc_io, 0, ethsw->dpsw_handle, 0);
3113 err = dpaa2_switch_ctrl_if_setup(ethsw);
3120 destroy_workqueue(ethsw->workqueue);
3123 dpsw_close(ethsw->mc_io, 0, ethsw->dpsw_handle);
3155 struct ethsw_core *ethsw = port_priv->ethsw_data;
3165 err = dpsw_if_get_attributes(ethsw->mc_io, 0, ethsw->dpsw_handle,
3174 fdb_cfg.num_fdb_entries = ethsw->sw_attr.max_fdb_entries / ethsw->sw_attr.num_ifs;
3175 err = dpsw_fdb_add(ethsw->mc_io, 0, ethsw->dpsw_handle,
3183 fdb = dpaa2_switch_fdb_get_unused(ethsw);
3198 err = dpaa2_switch_fdb_set_egress_flood(ethsw, port_priv->fdb->fdb_id);
3204 err = dpsw_acl_add(ethsw->mc_io, 0, ethsw->dpsw_handle,
3211 filter_block = dpaa2_switch_filter_block_get_unused(ethsw);
3212 filter_block->ethsw = ethsw;
3230 static void dpaa2_switch_ctrl_if_teardown(struct ethsw_core *ethsw)
3232 dpsw_ctrl_if_disable(ethsw->mc_io, 0, ethsw->dpsw_handle);
3233 dpaa2_switch_free_dpio(ethsw);
3234 dpaa2_switch_destroy_rings(ethsw);
3235 dpaa2_switch_drain_bp(ethsw);
3236 dpaa2_switch_free_dpbp(ethsw);
3242 struct ethsw_core *ethsw = dev_get_drvdata(dev);
3245 dpaa2_switch_ctrl_if_teardown(ethsw);
3247 destroy_workqueue(ethsw->workqueue);
3249 err = dpsw_close(ethsw->mc_io, 0, ethsw->dpsw_handle);
3257 struct ethsw_core *ethsw;
3262 ethsw = dev_get_drvdata(dev);
3266 dpsw_disable(ethsw->mc_io, 0, ethsw->dpsw_handle);
3268 for (i = 0; i < ethsw->sw_attr.num_ifs; i++) {
3269 port_priv = ethsw->ports[i];
3271 dpaa2_switch_remove_port(ethsw, i);
3274 kfree(ethsw->fdbs);
3275 kfree(ethsw->filter_blocks);
3276 kfree(ethsw->ports);
3280 fsl_mc_portal_free(ethsw->mc_io);
3282 kfree(ethsw);
3287 static int dpaa2_switch_probe_port(struct ethsw_core *ethsw,
3291 struct device *dev = ethsw->dev;
3303 port_priv->ethsw_data = ethsw;
3326 ethsw->ports[port_idx] = port_priv;
3357 ethsw->ports[port_idx] = NULL;
3365 struct ethsw_core *ethsw;
3369 ethsw = kzalloc(sizeof(*ethsw), GFP_KERNEL);
3371 if (!ethsw)
3374 ethsw->dev = dev;
3375 ethsw->iommu_domain = iommu_get_domain_for_dev(dev);
3376 dev_set_drvdata(dev, ethsw);
3379 ðsw->mc_io);
3392 ethsw->ports = kcalloc(ethsw->sw_attr.num_ifs, sizeof(*ethsw->ports),
3394 if (!(ethsw->ports)) {
3399 ethsw->fdbs = kcalloc(ethsw->sw_attr.num_ifs, sizeof(*ethsw->fdbs),
3401 if (!ethsw->fdbs) {
3406 ethsw->filter_blocks = kcalloc(ethsw->sw_attr.num_ifs,
3407 sizeof(*ethsw->filter_blocks),
3409 if (!ethsw->filter_blocks) {
3414 for (i = 0; i < ethsw->sw_attr.num_ifs; i++) {
3415 err = dpaa2_switch_probe_port(ethsw, i);
3425 netif_napi_add(ethsw->ports[0]->netdev, ðsw->fq[i].napi,
3436 ethsw->mirror_port = ethsw->sw_attr.num_ifs;
3441 for (i = 0; i < ethsw->sw_attr.num_ifs; i++) {
3442 err = register_netdev(ethsw->ports[i]->netdev);
3453 unregister_netdev(ethsw->ports[i]->netdev);
3456 dpsw_disable(ethsw->mc_io, 0, ethsw->dpsw_handle);
3459 dpaa2_switch_remove_port(ethsw, i);
3460 kfree(ethsw->filter_blocks);
3462 kfree(ethsw->fdbs);
3464 kfree(ethsw->ports);
3470 fsl_mc_portal_free(ethsw->mc_io);
3473 kfree(ethsw);