1540914bcSEd Czeck /* SPDX-License-Identifier: BSD-3-Clause 2540914bcSEd Czeck * Copyright (c) 2015-2018 Atomic Rules LLC 31131cbf0SEd Czeck */ 41131cbf0SEd Czeck 51131cbf0SEd Czeck #include <unistd.h> 61131cbf0SEd Czeck #include <sys/stat.h> 71131cbf0SEd Czeck #include <dlfcn.h> 81131cbf0SEd Czeck 9c752998bSGaetan Rivet #include <rte_bus_pci.h> 10df96fd0dSBruce Richardson #include <ethdev_pci.h> 111131cbf0SEd Czeck #include <rte_kvargs.h> 121131cbf0SEd Czeck 131131cbf0SEd Czeck #include "ark_global.h" 141131cbf0SEd Czeck #include "ark_logs.h" 15727b3fe2SEd Czeck #include "ark_ethdev_tx.h" 16727b3fe2SEd Czeck #include "ark_ethdev_rx.h" 17727b3fe2SEd Czeck #include "ark_mpu.h" 18727b3fe2SEd Czeck #include "ark_ddm.h" 19727b3fe2SEd Czeck #include "ark_udm.h" 20727b3fe2SEd Czeck #include "ark_rqp.h" 21727b3fe2SEd Czeck #include "ark_pktdir.h" 22727b3fe2SEd Czeck #include "ark_pktgen.h" 23727b3fe2SEd Czeck #include "ark_pktchkr.h" 241131cbf0SEd Czeck 251131cbf0SEd Czeck /* Internal prototypes */ 261131cbf0SEd Czeck static int eth_ark_check_args(struct ark_adapter *ark, const char *params); 271131cbf0SEd Czeck static int eth_ark_dev_init(struct rte_eth_dev *dev); 28727b3fe2SEd Czeck static int ark_config_device(struct rte_eth_dev *dev); 291131cbf0SEd Czeck static int eth_ark_dev_uninit(struct rte_eth_dev *eth_dev); 301131cbf0SEd Czeck static int eth_ark_dev_configure(struct rte_eth_dev *dev); 31727b3fe2SEd Czeck static int eth_ark_dev_start(struct rte_eth_dev *dev); 3262024eb8SIvan Ilchenko static int eth_ark_dev_stop(struct rte_eth_dev *dev); 33b142387bSThomas Monjalon static int eth_ark_dev_close(struct rte_eth_dev *dev); 34bdad90d1SIvan Ilchenko static int eth_ark_dev_info_get(struct rte_eth_dev *dev, 351131cbf0SEd Czeck struct rte_eth_dev_info *dev_info); 36727b3fe2SEd Czeck static int eth_ark_dev_link_update(struct rte_eth_dev *dev, 37727b3fe2SEd Czeck int wait_to_complete); 38727b3fe2SEd Czeck static int eth_ark_dev_set_link_up(struct rte_eth_dev *dev); 39727b3fe2SEd Czeck static int eth_ark_dev_set_link_down(struct rte_eth_dev *dev); 40d5b0924bSMatan Azrad static int eth_ark_dev_stats_get(struct rte_eth_dev *dev, 41727b3fe2SEd Czeck struct rte_eth_stats *stats); 429970a9adSIgor Romanov static int eth_ark_dev_stats_reset(struct rte_eth_dev *dev); 43caccf8b3SOlivier Matz static int eth_ark_set_default_mac_addr(struct rte_eth_dev *dev, 446d13ea8eSOlivier Matz struct rte_ether_addr *mac_addr); 456d01e580SWei Dai static int eth_ark_macaddr_add(struct rte_eth_dev *dev, 466d13ea8eSOlivier Matz struct rte_ether_addr *mac_addr, 47727b3fe2SEd Czeck uint32_t index, 48727b3fe2SEd Czeck uint32_t pool); 49727b3fe2SEd Czeck static void eth_ark_macaddr_remove(struct rte_eth_dev *dev, 50727b3fe2SEd Czeck uint32_t index); 519ae74488SJohn Miller static int eth_ark_set_mtu(struct rte_eth_dev *dev, uint16_t size); 521131cbf0SEd Czeck 531131cbf0SEd Czeck /* 541131cbf0SEd Czeck * The packet generator is a functional block used to generate packet 551131cbf0SEd Czeck * patterns for testing. It is not intended for nominal use. 561131cbf0SEd Czeck */ 571131cbf0SEd Czeck #define ARK_PKTGEN_ARG "Pkt_gen" 581131cbf0SEd Czeck 591131cbf0SEd Czeck /* 601131cbf0SEd Czeck * The packet checker is a functional block used to verify packet 611131cbf0SEd Czeck * patterns for testing. It is not intended for nominal use. 621131cbf0SEd Czeck */ 631131cbf0SEd Czeck #define ARK_PKTCHKR_ARG "Pkt_chkr" 641131cbf0SEd Czeck 651131cbf0SEd Czeck /* 661131cbf0SEd Czeck * The packet director is used to select the internal ingress and 671131cbf0SEd Czeck * egress packets paths during testing. It is not intended for 681131cbf0SEd Czeck * nominal use. 691131cbf0SEd Czeck */ 701131cbf0SEd Czeck #define ARK_PKTDIR_ARG "Pkt_dir" 711131cbf0SEd Czeck 721131cbf0SEd Czeck /* Devinfo configurations */ 731131cbf0SEd Czeck #define ARK_RX_MAX_QUEUE (4096 * 4) 741131cbf0SEd Czeck #define ARK_RX_MIN_QUEUE (512) 751131cbf0SEd Czeck #define ARK_RX_MAX_PKT_LEN ((16 * 1024) - 128) 761131cbf0SEd Czeck #define ARK_RX_MIN_BUFSIZE (1024) 771131cbf0SEd Czeck 781131cbf0SEd Czeck #define ARK_TX_MAX_QUEUE (4096 * 4) 791131cbf0SEd Czeck #define ARK_TX_MIN_QUEUE (256) 801131cbf0SEd Czeck 811131cbf0SEd Czeck static const char * const valid_arguments[] = { 821131cbf0SEd Czeck ARK_PKTGEN_ARG, 831131cbf0SEd Czeck ARK_PKTCHKR_ARG, 841131cbf0SEd Czeck ARK_PKTDIR_ARG, 851131cbf0SEd Czeck NULL 861131cbf0SEd Czeck }; 871131cbf0SEd Czeck 881131cbf0SEd Czeck static const struct rte_pci_id pci_id_ark_map[] = { 891131cbf0SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x100d)}, 901131cbf0SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x100e)}, 919ee9e0d3SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x100f)}, 929ee9e0d3SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x1010)}, 939ee9e0d3SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x1017)}, 949ee9e0d3SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x1018)}, 959ee9e0d3SEd Czeck {RTE_PCI_DEVICE(0x1d6c, 0x1019)}, 961131cbf0SEd Czeck {.vendor_id = 0, /* sentinel */ }, 971131cbf0SEd Czeck }; 981131cbf0SEd Czeck 991131cbf0SEd Czeck static int 1001131cbf0SEd Czeck eth_ark_pci_probe(struct rte_pci_driver *pci_drv __rte_unused, 1011131cbf0SEd Czeck struct rte_pci_device *pci_dev) 1021131cbf0SEd Czeck { 1031131cbf0SEd Czeck struct rte_eth_dev *eth_dev; 1041131cbf0SEd Czeck int ret; 1051131cbf0SEd Czeck 1061131cbf0SEd Czeck eth_dev = rte_eth_dev_pci_allocate(pci_dev, sizeof(struct ark_adapter)); 1071131cbf0SEd Czeck 1081131cbf0SEd Czeck if (eth_dev == NULL) 1091131cbf0SEd Czeck return -ENOMEM; 1101131cbf0SEd Czeck 1111131cbf0SEd Czeck ret = eth_ark_dev_init(eth_dev); 1121131cbf0SEd Czeck if (ret) 1132c65898bSThomas Monjalon rte_eth_dev_release_port(eth_dev); 1141131cbf0SEd Czeck 1151131cbf0SEd Czeck return ret; 1161131cbf0SEd Czeck } 1171131cbf0SEd Czeck 1181131cbf0SEd Czeck static int 1191131cbf0SEd Czeck eth_ark_pci_remove(struct rte_pci_device *pci_dev) 1201131cbf0SEd Czeck { 1211131cbf0SEd Czeck return rte_eth_dev_pci_generic_remove(pci_dev, eth_ark_dev_uninit); 1221131cbf0SEd Czeck } 1231131cbf0SEd Czeck 1241131cbf0SEd Czeck static struct rte_pci_driver rte_ark_pmd = { 1251131cbf0SEd Czeck .id_table = pci_id_ark_map, 1261131cbf0SEd Czeck .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC, 1271131cbf0SEd Czeck .probe = eth_ark_pci_probe, 1281131cbf0SEd Czeck .remove = eth_ark_pci_remove, 1291131cbf0SEd Czeck }; 1301131cbf0SEd Czeck 1311131cbf0SEd Czeck static const struct eth_dev_ops ark_eth_dev_ops = { 1321131cbf0SEd Czeck .dev_configure = eth_ark_dev_configure, 133727b3fe2SEd Czeck .dev_start = eth_ark_dev_start, 134727b3fe2SEd Czeck .dev_stop = eth_ark_dev_stop, 135727b3fe2SEd Czeck .dev_close = eth_ark_dev_close, 136727b3fe2SEd Czeck 1371131cbf0SEd Czeck .dev_infos_get = eth_ark_dev_info_get, 138727b3fe2SEd Czeck 139727b3fe2SEd Czeck .rx_queue_setup = eth_ark_dev_rx_queue_setup, 140727b3fe2SEd Czeck .tx_queue_setup = eth_ark_tx_queue_setup, 141727b3fe2SEd Czeck 142727b3fe2SEd Czeck .link_update = eth_ark_dev_link_update, 143727b3fe2SEd Czeck .dev_set_link_up = eth_ark_dev_set_link_up, 144727b3fe2SEd Czeck .dev_set_link_down = eth_ark_dev_set_link_down, 145727b3fe2SEd Czeck 146727b3fe2SEd Czeck .rx_queue_start = eth_ark_rx_start_queue, 147727b3fe2SEd Czeck .rx_queue_stop = eth_ark_rx_stop_queue, 148727b3fe2SEd Czeck 149727b3fe2SEd Czeck .tx_queue_start = eth_ark_tx_queue_start, 150727b3fe2SEd Czeck .tx_queue_stop = eth_ark_tx_queue_stop, 151727b3fe2SEd Czeck 152727b3fe2SEd Czeck .stats_get = eth_ark_dev_stats_get, 153727b3fe2SEd Czeck .stats_reset = eth_ark_dev_stats_reset, 154727b3fe2SEd Czeck 155727b3fe2SEd Czeck .mac_addr_add = eth_ark_macaddr_add, 156727b3fe2SEd Czeck .mac_addr_remove = eth_ark_macaddr_remove, 157727b3fe2SEd Czeck .mac_addr_set = eth_ark_set_default_mac_addr, 1589ae74488SJohn Miller 1599ae74488SJohn Miller .mtu_set = eth_ark_set_mtu, 1601131cbf0SEd Czeck }; 1611131cbf0SEd Czeck 1621131cbf0SEd Czeck static int 163727b3fe2SEd Czeck check_for_ext(struct ark_adapter *ark) 164727b3fe2SEd Czeck { 165727b3fe2SEd Czeck int found = 0; 166727b3fe2SEd Czeck 167727b3fe2SEd Czeck /* Get the env */ 168727b3fe2SEd Czeck const char *dllpath = getenv("ARK_EXT_PATH"); 169727b3fe2SEd Czeck 170727b3fe2SEd Czeck if (dllpath == NULL) { 1711502d443SEd Czeck ARK_PMD_LOG(DEBUG, "EXT NO dll path specified\n"); 172727b3fe2SEd Czeck return 0; 173727b3fe2SEd Czeck } 1741502d443SEd Czeck ARK_PMD_LOG(NOTICE, "EXT found dll path at %s\n", dllpath); 175727b3fe2SEd Czeck 176727b3fe2SEd Czeck /* Open and load the .so */ 177727b3fe2SEd Czeck ark->d_handle = dlopen(dllpath, RTLD_LOCAL | RTLD_LAZY); 178727b3fe2SEd Czeck if (ark->d_handle == NULL) { 1791502d443SEd Czeck ARK_PMD_LOG(ERR, "Could not load user extension %s\n", 180727b3fe2SEd Czeck dllpath); 181727b3fe2SEd Czeck return -1; 182727b3fe2SEd Czeck } 1831502d443SEd Czeck ARK_PMD_LOG(DEBUG, "SUCCESS: loaded user extension %s\n", 184727b3fe2SEd Czeck dllpath); 185727b3fe2SEd Czeck 186727b3fe2SEd Czeck /* Get the entry points */ 187727b3fe2SEd Czeck ark->user_ext.dev_init = 188727b3fe2SEd Czeck (void *(*)(struct rte_eth_dev *, void *, int)) 189f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_init"); 1901502d443SEd Czeck ARK_PMD_LOG(DEBUG, "device ext init pointer = %p\n", 191727b3fe2SEd Czeck ark->user_ext.dev_init); 192727b3fe2SEd Czeck ark->user_ext.dev_get_port_count = 193727b3fe2SEd Czeck (int (*)(struct rte_eth_dev *, void *)) 194f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_get_port_count"); 195727b3fe2SEd Czeck ark->user_ext.dev_uninit = 196727b3fe2SEd Czeck (void (*)(struct rte_eth_dev *, void *)) 197f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_uninit"); 198727b3fe2SEd Czeck ark->user_ext.dev_configure = 199727b3fe2SEd Czeck (int (*)(struct rte_eth_dev *, void *)) 200f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_configure"); 201727b3fe2SEd Czeck ark->user_ext.dev_start = 202727b3fe2SEd Czeck (int (*)(struct rte_eth_dev *, void *)) 203f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_start"); 204727b3fe2SEd Czeck ark->user_ext.dev_stop = 205727b3fe2SEd Czeck (void (*)(struct rte_eth_dev *, void *)) 206f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_stop"); 207727b3fe2SEd Czeck ark->user_ext.dev_close = 208727b3fe2SEd Czeck (void (*)(struct rte_eth_dev *, void *)) 209f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_close"); 210727b3fe2SEd Czeck ark->user_ext.link_update = 211727b3fe2SEd Czeck (int (*)(struct rte_eth_dev *, int, void *)) 212f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_link_update"); 213727b3fe2SEd Czeck ark->user_ext.dev_set_link_up = 214727b3fe2SEd Czeck (int (*)(struct rte_eth_dev *, void *)) 215f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_set_link_up"); 216727b3fe2SEd Czeck ark->user_ext.dev_set_link_down = 217727b3fe2SEd Czeck (int (*)(struct rte_eth_dev *, void *)) 218f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_dev_set_link_down"); 219727b3fe2SEd Czeck ark->user_ext.stats_get = 220d5b0924bSMatan Azrad (int (*)(struct rte_eth_dev *, struct rte_eth_stats *, 221727b3fe2SEd Czeck void *)) 222f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_stats_get"); 223727b3fe2SEd Czeck ark->user_ext.stats_reset = 224727b3fe2SEd Czeck (void (*)(struct rte_eth_dev *, void *)) 225f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_stats_reset"); 226727b3fe2SEd Czeck ark->user_ext.mac_addr_add = 2276d13ea8eSOlivier Matz (void (*)(struct rte_eth_dev *, struct rte_ether_addr *, 2286d13ea8eSOlivier Matz uint32_t, uint32_t, void *)) 229f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_mac_addr_add"); 230727b3fe2SEd Czeck ark->user_ext.mac_addr_remove = 231727b3fe2SEd Czeck (void (*)(struct rte_eth_dev *, uint32_t, void *)) 232f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_mac_addr_remove"); 233727b3fe2SEd Czeck ark->user_ext.mac_addr_set = 2346d13ea8eSOlivier Matz (void (*)(struct rte_eth_dev *, struct rte_ether_addr *, 235727b3fe2SEd Czeck void *)) 236f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_mac_addr_set"); 2379ae74488SJohn Miller ark->user_ext.set_mtu = 2389ae74488SJohn Miller (int (*)(struct rte_eth_dev *, uint16_t, 2399ae74488SJohn Miller void *)) 240f2764c36SEd Czeck dlsym(ark->d_handle, "rte_pmd_ark_set_mtu"); 241*6c7f491eSEd Czeck ark->user_ext.rx_user_meta_hook = 242*6c7f491eSEd Czeck (rx_user_meta_hook_fn)dlsym(ark->d_handle, 243*6c7f491eSEd Czeck "rte_pmd_ark_rx_user_meta_hook"); 244*6c7f491eSEd Czeck ark->user_ext.tx_user_meta_hook = 245*6c7f491eSEd Czeck (tx_user_meta_hook_fn)dlsym(ark->d_handle, 246*6c7f491eSEd Czeck "rte_pmd_ark_tx_user_meta_hook"); 247727b3fe2SEd Czeck 248727b3fe2SEd Czeck return found; 249727b3fe2SEd Czeck } 250727b3fe2SEd Czeck 251727b3fe2SEd Czeck static int 2521131cbf0SEd Czeck eth_ark_dev_init(struct rte_eth_dev *dev) 2531131cbf0SEd Czeck { 2540bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 2551131cbf0SEd Czeck struct rte_pci_device *pci_dev; 256727b3fe2SEd Czeck int ret; 257727b3fe2SEd Czeck int port_count = 1; 258727b3fe2SEd Czeck int p; 2591131cbf0SEd Czeck 2601131cbf0SEd Czeck ark->eth_dev = dev; 2611131cbf0SEd Czeck 2621502d443SEd Czeck ARK_PMD_LOG(DEBUG, "\n"); 2631131cbf0SEd Czeck 264727b3fe2SEd Czeck /* Check to see if there is an extension that we need to load */ 265727b3fe2SEd Czeck ret = check_for_ext(ark); 266727b3fe2SEd Czeck if (ret) 267727b3fe2SEd Czeck return ret; 2681abc7209SEd Czeck 269c0802544SFerruh Yigit pci_dev = RTE_ETH_DEV_TO_PCI(dev); 2701131cbf0SEd Czeck rte_eth_copy_pci_info(dev, pci_dev); 271f30e69b4SFerruh Yigit dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS; 2721131cbf0SEd Czeck 273727b3fe2SEd Czeck /* Use dummy function until setup */ 274727b3fe2SEd Czeck dev->rx_pkt_burst = ð_ark_recv_pkts_noop; 275727b3fe2SEd Czeck dev->tx_pkt_burst = ð_ark_xmit_pkts_noop; 276727b3fe2SEd Czeck 2771131cbf0SEd Czeck ark->bar0 = (uint8_t *)pci_dev->mem_resource[0].addr; 2781131cbf0SEd Czeck ark->a_bar = (uint8_t *)pci_dev->mem_resource[2].addr; 2791131cbf0SEd Czeck 280727b3fe2SEd Czeck ark->sysctrl.v = (void *)&ark->bar0[ARK_SYSCTRL_BASE]; 281727b3fe2SEd Czeck ark->mpurx.v = (void *)&ark->bar0[ARK_MPU_RX_BASE]; 282727b3fe2SEd Czeck ark->udm.v = (void *)&ark->bar0[ARK_UDM_BASE]; 283727b3fe2SEd Czeck ark->mputx.v = (void *)&ark->bar0[ARK_MPU_TX_BASE]; 284727b3fe2SEd Czeck ark->ddm.v = (void *)&ark->bar0[ARK_DDM_BASE]; 285727b3fe2SEd Czeck ark->cmac.v = (void *)&ark->bar0[ARK_CMAC_BASE]; 286727b3fe2SEd Czeck ark->external.v = (void *)&ark->bar0[ARK_EXTERNAL_BASE]; 287727b3fe2SEd Czeck ark->pktdir.v = (void *)&ark->bar0[ARK_PKTDIR_BASE]; 288727b3fe2SEd Czeck ark->pktgen.v = (void *)&ark->bar0[ARK_PKTGEN_BASE]; 289727b3fe2SEd Czeck ark->pktchkr.v = (void *)&ark->bar0[ARK_PKTCHKR_BASE]; 290727b3fe2SEd Czeck 291727b3fe2SEd Czeck ark->rqpacing = 292727b3fe2SEd Czeck (struct ark_rqpace_t *)(ark->bar0 + ARK_RCPACING_BASE); 293727b3fe2SEd Czeck ark->started = 0; 2943b4f34f6SEd Czeck ark->pkt_dir_v = ARK_PKT_DIR_INIT_VAL; 295727b3fe2SEd Czeck 2961502d443SEd Czeck ARK_PMD_LOG(INFO, "Sys Ctrl Const = 0x%x HW Commit_ID: %08x\n", 297727b3fe2SEd Czeck ark->sysctrl.t32[4], 298727b3fe2SEd Czeck rte_be_to_cpu_32(ark->sysctrl.t32[0x20 / 4])); 2991502d443SEd Czeck ARK_PMD_LOG(NOTICE, "Arkville HW Commit_ID: %08x\n", 300727b3fe2SEd Czeck rte_be_to_cpu_32(ark->sysctrl.t32[0x20 / 4])); 301727b3fe2SEd Czeck 302727b3fe2SEd Czeck /* If HW sanity test fails, return an error */ 303727b3fe2SEd Czeck if (ark->sysctrl.t32[4] != 0xcafef00d) { 3041502d443SEd Czeck ARK_PMD_LOG(ERR, 305727b3fe2SEd Czeck "HW Sanity test has failed, expected constant" 306727b3fe2SEd Czeck " 0x%x, read 0x%x (%s)\n", 307727b3fe2SEd Czeck 0xcafef00d, 308727b3fe2SEd Czeck ark->sysctrl.t32[4], __func__); 309727b3fe2SEd Czeck return -1; 310727b3fe2SEd Czeck } 3119ff8fe95SEd Czeck if (ark->sysctrl.t32[3] != 0) { 3129ff8fe95SEd Czeck if (ark_rqp_lasped(ark->rqpacing)) { 3131502d443SEd Czeck ARK_PMD_LOG(ERR, "Arkville Evaluation System - " 3149ff8fe95SEd Czeck "Timer has Expired\n"); 3159ff8fe95SEd Czeck return -1; 3169ff8fe95SEd Czeck } 3171502d443SEd Czeck ARK_PMD_LOG(WARNING, "Arkville Evaluation System - " 3189ff8fe95SEd Czeck "Timer is Running\n"); 3199ff8fe95SEd Czeck } 320727b3fe2SEd Czeck 3211502d443SEd Czeck ARK_PMD_LOG(DEBUG, 322727b3fe2SEd Czeck "HW Sanity test has PASSED, expected constant" 323727b3fe2SEd Czeck " 0x%x, read 0x%x (%s)\n", 324727b3fe2SEd Czeck 0xcafef00d, ark->sysctrl.t32[4], __func__); 325727b3fe2SEd Czeck 326727b3fe2SEd Czeck /* We are a single function multi-port device. */ 327727b3fe2SEd Czeck ret = ark_config_device(dev); 328589876bfSEd Czeck if (ret) 329589876bfSEd Czeck return -1; 330589876bfSEd Czeck 3311131cbf0SEd Czeck dev->dev_ops = &ark_eth_dev_ops; 332cbfc6111SFerruh Yigit dev->rx_queue_count = eth_ark_dev_rx_queue_count; 3331131cbf0SEd Czeck 33435b2d13fSOlivier Matz dev->data->mac_addrs = rte_zmalloc("ark", RTE_ETHER_ADDR_LEN, 0); 335727b3fe2SEd Czeck if (!dev->data->mac_addrs) { 3361502d443SEd Czeck ARK_PMD_LOG(ERR, 337727b3fe2SEd Czeck "Failed to allocated memory for storing mac address" 338727b3fe2SEd Czeck ); 339727b3fe2SEd Czeck } 340727b3fe2SEd Czeck 341727b3fe2SEd Czeck if (ark->user_ext.dev_init) { 342428046b4SJohn Miller ark->user_data[dev->data->port_id] = 343428046b4SJohn Miller ark->user_ext.dev_init(dev, ark->a_bar, 0); 344428046b4SJohn Miller if (!ark->user_data[dev->data->port_id]) { 3451502d443SEd Czeck ARK_PMD_LOG(WARNING, 346727b3fe2SEd Czeck "Failed to initialize PMD extension!" 347727b3fe2SEd Czeck " continuing without it\n"); 348727b3fe2SEd Czeck memset(&ark->user_ext, 0, sizeof(struct ark_user_ext)); 349727b3fe2SEd Czeck dlclose(ark->d_handle); 350727b3fe2SEd Czeck } 351727b3fe2SEd Czeck } 352727b3fe2SEd Czeck 3531131cbf0SEd Czeck if (pci_dev->device.devargs) 3541131cbf0SEd Czeck ret = eth_ark_check_args(ark, pci_dev->device.devargs->args); 3551131cbf0SEd Czeck else 3561502d443SEd Czeck ARK_PMD_LOG(INFO, "No Device args found\n"); 3571131cbf0SEd Czeck 358727b3fe2SEd Czeck if (ret) 359727b3fe2SEd Czeck goto error; 360727b3fe2SEd Czeck /* 361727b3fe2SEd Czeck * We will create additional devices based on the number of requested 362727b3fe2SEd Czeck * ports 363727b3fe2SEd Czeck */ 364727b3fe2SEd Czeck if (ark->user_ext.dev_get_port_count) 365727b3fe2SEd Czeck port_count = 366428046b4SJohn Miller ark->user_ext.dev_get_port_count(dev, 367428046b4SJohn Miller ark->user_data[dev->data->port_id]); 368727b3fe2SEd Czeck ark->num_ports = port_count; 369727b3fe2SEd Czeck 370727b3fe2SEd Czeck for (p = 0; p < port_count; p++) { 371727b3fe2SEd Czeck struct rte_eth_dev *eth_dev; 372727b3fe2SEd Czeck char name[RTE_ETH_NAME_MAX_LEN]; 373727b3fe2SEd Czeck 374727b3fe2SEd Czeck snprintf(name, sizeof(name), "arketh%d", 375727b3fe2SEd Czeck dev->data->port_id + p); 376727b3fe2SEd Czeck 377727b3fe2SEd Czeck if (p == 0) { 378727b3fe2SEd Czeck /* First port is already allocated by DPDK */ 379727b3fe2SEd Czeck eth_dev = ark->eth_dev; 3805bfe551dSEd Czeck rte_eth_dev_probing_finish(eth_dev); 381727b3fe2SEd Czeck continue; 382727b3fe2SEd Czeck } 383727b3fe2SEd Czeck 384727b3fe2SEd Czeck /* reserve an ethdev entry */ 385727b3fe2SEd Czeck eth_dev = rte_eth_dev_allocate(name); 386727b3fe2SEd Czeck if (!eth_dev) { 3871502d443SEd Czeck ARK_PMD_LOG(ERR, 388727b3fe2SEd Czeck "Could not allocate eth_dev for port %d\n", 389727b3fe2SEd Czeck p); 390727b3fe2SEd Czeck goto error; 391727b3fe2SEd Czeck } 392727b3fe2SEd Czeck 393727b3fe2SEd Czeck eth_dev->device = &pci_dev->device; 394727b3fe2SEd Czeck eth_dev->data->dev_private = ark; 395727b3fe2SEd Czeck eth_dev->dev_ops = ark->eth_dev->dev_ops; 396727b3fe2SEd Czeck eth_dev->tx_pkt_burst = ark->eth_dev->tx_pkt_burst; 397727b3fe2SEd Czeck eth_dev->rx_pkt_burst = ark->eth_dev->rx_pkt_burst; 398727b3fe2SEd Czeck 399727b3fe2SEd Czeck rte_eth_copy_pci_info(eth_dev, pci_dev); 400f30e69b4SFerruh Yigit eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS; 401727b3fe2SEd Czeck 40235b2d13fSOlivier Matz eth_dev->data->mac_addrs = rte_zmalloc(name, 40335b2d13fSOlivier Matz RTE_ETHER_ADDR_LEN, 0); 404727b3fe2SEd Czeck if (!eth_dev->data->mac_addrs) { 4051502d443SEd Czeck ARK_PMD_LOG(ERR, 406727b3fe2SEd Czeck "Memory allocation for MAC failed!" 407727b3fe2SEd Czeck " Exiting.\n"); 408727b3fe2SEd Czeck goto error; 409727b3fe2SEd Czeck } 410727b3fe2SEd Czeck 411428046b4SJohn Miller if (ark->user_ext.dev_init) { 412428046b4SJohn Miller ark->user_data[eth_dev->data->port_id] = 413727b3fe2SEd Czeck ark->user_ext.dev_init(dev, ark->a_bar, p); 414727b3fe2SEd Czeck } 415fbe90cddSThomas Monjalon 416fbe90cddSThomas Monjalon rte_eth_dev_probing_finish(eth_dev); 417428046b4SJohn Miller } 418727b3fe2SEd Czeck 4191131cbf0SEd Czeck return ret; 420727b3fe2SEd Czeck 421727b3fe2SEd Czeck error: 422727b3fe2SEd Czeck rte_free(dev->data->mac_addrs); 423e7f2fa88SDavid Marchand dev->data->mac_addrs = NULL; 424727b3fe2SEd Czeck return -1; 425727b3fe2SEd Czeck } 426727b3fe2SEd Czeck 427727b3fe2SEd Czeck /* 428727b3fe2SEd Czeck *Initial device configuration when device is opened 429727b3fe2SEd Czeck * setup the DDM, and UDM 430727b3fe2SEd Czeck * Called once per PCIE device 431727b3fe2SEd Czeck */ 432727b3fe2SEd Czeck static int 433727b3fe2SEd Czeck ark_config_device(struct rte_eth_dev *dev) 434727b3fe2SEd Czeck { 4350bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 436727b3fe2SEd Czeck uint16_t num_q, i; 437727b3fe2SEd Czeck struct ark_mpu_t *mpu; 438727b3fe2SEd Czeck 439727b3fe2SEd Czeck /* 440727b3fe2SEd Czeck * Make sure that the packet director, generator and checker are in a 441727b3fe2SEd Czeck * known state 442727b3fe2SEd Czeck */ 443727b3fe2SEd Czeck ark->start_pg = 0; 444727b3fe2SEd Czeck ark->pg = ark_pktgen_init(ark->pktgen.v, 0, 1); 44553a9ba13SYong Wang if (ark->pg == NULL) 44653a9ba13SYong Wang return -1; 447727b3fe2SEd Czeck ark_pktgen_reset(ark->pg); 448727b3fe2SEd Czeck ark->pc = ark_pktchkr_init(ark->pktchkr.v, 0, 1); 44953a9ba13SYong Wang if (ark->pc == NULL) 45053a9ba13SYong Wang return -1; 451727b3fe2SEd Czeck ark_pktchkr_stop(ark->pc); 452727b3fe2SEd Czeck ark->pd = ark_pktdir_init(ark->pktdir.v); 45353a9ba13SYong Wang if (ark->pd == NULL) 45453a9ba13SYong Wang return -1; 455727b3fe2SEd Czeck 456727b3fe2SEd Czeck /* Verify HW */ 457727b3fe2SEd Czeck if (ark_udm_verify(ark->udm.v)) 458727b3fe2SEd Czeck return -1; 459727b3fe2SEd Czeck if (ark_ddm_verify(ark->ddm.v)) 460727b3fe2SEd Czeck return -1; 461727b3fe2SEd Czeck 462727b3fe2SEd Czeck /* UDM */ 463727b3fe2SEd Czeck if (ark_udm_reset(ark->udm.v)) { 4641502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to stop and reset UDM\n"); 465727b3fe2SEd Czeck return -1; 466727b3fe2SEd Czeck } 467727b3fe2SEd Czeck /* Keep in reset until the MPU are cleared */ 468727b3fe2SEd Czeck 469727b3fe2SEd Czeck /* MPU reset */ 470727b3fe2SEd Czeck mpu = ark->mpurx.v; 471727b3fe2SEd Czeck num_q = ark_api_num_queues(mpu); 472727b3fe2SEd Czeck ark->rx_queues = num_q; 473727b3fe2SEd Czeck for (i = 0; i < num_q; i++) { 474727b3fe2SEd Czeck ark_mpu_reset(mpu); 475727b3fe2SEd Czeck mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET); 476727b3fe2SEd Czeck } 477727b3fe2SEd Czeck 478727b3fe2SEd Czeck ark_udm_stop(ark->udm.v, 0); 479727b3fe2SEd Czeck ark_udm_configure(ark->udm.v, 480727b3fe2SEd Czeck RTE_PKTMBUF_HEADROOM, 481727b3fe2SEd Czeck RTE_MBUF_DEFAULT_DATAROOM, 482727b3fe2SEd Czeck ARK_RX_WRITE_TIME_NS); 483727b3fe2SEd Czeck ark_udm_stats_reset(ark->udm.v); 484727b3fe2SEd Czeck ark_udm_stop(ark->udm.v, 0); 485727b3fe2SEd Czeck 486727b3fe2SEd Czeck /* TX -- DDM */ 487727b3fe2SEd Czeck if (ark_ddm_stop(ark->ddm.v, 1)) 4881502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to stop DDM\n"); 489727b3fe2SEd Czeck 490727b3fe2SEd Czeck mpu = ark->mputx.v; 491727b3fe2SEd Czeck num_q = ark_api_num_queues(mpu); 492727b3fe2SEd Czeck ark->tx_queues = num_q; 493727b3fe2SEd Czeck for (i = 0; i < num_q; i++) { 494727b3fe2SEd Czeck ark_mpu_reset(mpu); 495727b3fe2SEd Czeck mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET); 496727b3fe2SEd Czeck } 497727b3fe2SEd Czeck 498727b3fe2SEd Czeck ark_ddm_reset(ark->ddm.v); 499727b3fe2SEd Czeck ark_ddm_stats_reset(ark->ddm.v); 500727b3fe2SEd Czeck 501727b3fe2SEd Czeck ark_ddm_stop(ark->ddm.v, 0); 502727b3fe2SEd Czeck ark_rqp_stats_reset(ark->rqpacing); 503727b3fe2SEd Czeck 504727b3fe2SEd Czeck return 0; 5051131cbf0SEd Czeck } 5061131cbf0SEd Czeck 5071131cbf0SEd Czeck static int 5081131cbf0SEd Czeck eth_ark_dev_uninit(struct rte_eth_dev *dev) 5091131cbf0SEd Czeck { 5100bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 511727b3fe2SEd Czeck 5121131cbf0SEd Czeck if (rte_eal_process_type() != RTE_PROC_PRIMARY) 5131131cbf0SEd Czeck return 0; 5141131cbf0SEd Czeck 515727b3fe2SEd Czeck if (ark->user_ext.dev_uninit) 516428046b4SJohn Miller ark->user_ext.dev_uninit(dev, 517428046b4SJohn Miller ark->user_data[dev->data->port_id]); 518727b3fe2SEd Czeck 519727b3fe2SEd Czeck ark_pktgen_uninit(ark->pg); 520727b3fe2SEd Czeck ark_pktchkr_uninit(ark->pc); 521727b3fe2SEd Czeck 5221131cbf0SEd Czeck return 0; 5231131cbf0SEd Czeck } 5241131cbf0SEd Czeck 5251131cbf0SEd Czeck static int 526727b3fe2SEd Czeck eth_ark_dev_configure(struct rte_eth_dev *dev) 5271131cbf0SEd Czeck { 5280bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 529727b3fe2SEd Czeck 530727b3fe2SEd Czeck eth_ark_dev_set_link_up(dev); 531727b3fe2SEd Czeck if (ark->user_ext.dev_configure) 532428046b4SJohn Miller return ark->user_ext.dev_configure(dev, 533428046b4SJohn Miller ark->user_data[dev->data->port_id]); 5341131cbf0SEd Czeck return 0; 5351131cbf0SEd Czeck } 5361131cbf0SEd Czeck 537727b3fe2SEd Czeck static void * 538727b3fe2SEd Czeck delay_pg_start(void *arg) 539727b3fe2SEd Czeck { 540727b3fe2SEd Czeck struct ark_adapter *ark = (struct ark_adapter *)arg; 541727b3fe2SEd Czeck 542727b3fe2SEd Czeck /* This function is used exclusively for regression testing, We 543727b3fe2SEd Czeck * perform a blind sleep here to ensure that the external test 544727b3fe2SEd Czeck * application has time to setup the test before we generate packets 545727b3fe2SEd Czeck */ 546727b3fe2SEd Czeck usleep(100000); 547727b3fe2SEd Czeck ark_pktgen_run(ark->pg); 548727b3fe2SEd Czeck return NULL; 549727b3fe2SEd Czeck } 550727b3fe2SEd Czeck 551727b3fe2SEd Czeck static int 552727b3fe2SEd Czeck eth_ark_dev_start(struct rte_eth_dev *dev) 553727b3fe2SEd Czeck { 5540bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 555727b3fe2SEd Czeck int i; 556727b3fe2SEd Czeck 557727b3fe2SEd Czeck /* RX Side */ 558727b3fe2SEd Czeck /* start UDM */ 559727b3fe2SEd Czeck ark_udm_start(ark->udm.v); 560727b3fe2SEd Czeck 561727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_rx_queues; i++) 562727b3fe2SEd Czeck eth_ark_rx_start_queue(dev, i); 563727b3fe2SEd Czeck 564727b3fe2SEd Czeck /* TX Side */ 565727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_tx_queues; i++) 566727b3fe2SEd Czeck eth_ark_tx_queue_start(dev, i); 567727b3fe2SEd Czeck 568727b3fe2SEd Czeck /* start DDM */ 569727b3fe2SEd Czeck ark_ddm_start(ark->ddm.v); 570727b3fe2SEd Czeck 571727b3fe2SEd Czeck ark->started = 1; 572727b3fe2SEd Czeck /* set xmit and receive function */ 573727b3fe2SEd Czeck dev->rx_pkt_burst = ð_ark_recv_pkts; 574727b3fe2SEd Czeck dev->tx_pkt_burst = ð_ark_xmit_pkts; 575727b3fe2SEd Czeck 576727b3fe2SEd Czeck if (ark->start_pg) 577727b3fe2SEd Czeck ark_pktchkr_run(ark->pc); 578727b3fe2SEd Czeck 579727b3fe2SEd Czeck if (ark->start_pg && (dev->data->port_id == 0)) { 580727b3fe2SEd Czeck pthread_t thread; 581727b3fe2SEd Czeck 582727b3fe2SEd Czeck /* Delay packet generatpr start allow the hardware to be ready 583727b3fe2SEd Czeck * This is only used for sanity checking with internal generator 584727b3fe2SEd Czeck */ 585d1434c04SJohn Miller if (pthread_create(&thread, NULL, delay_pg_start, ark)) { 5861502d443SEd Czeck ARK_PMD_LOG(ERR, "Could not create pktgen " 587d1434c04SJohn Miller "starter thread\n"); 588d1434c04SJohn Miller return -1; 589d1434c04SJohn Miller } 590727b3fe2SEd Czeck } 591727b3fe2SEd Czeck 592727b3fe2SEd Czeck if (ark->user_ext.dev_start) 593428046b4SJohn Miller ark->user_ext.dev_start(dev, 594428046b4SJohn Miller ark->user_data[dev->data->port_id]); 595727b3fe2SEd Czeck 596727b3fe2SEd Czeck return 0; 597727b3fe2SEd Czeck } 598727b3fe2SEd Czeck 59962024eb8SIvan Ilchenko static int 600727b3fe2SEd Czeck eth_ark_dev_stop(struct rte_eth_dev *dev) 601727b3fe2SEd Czeck { 602727b3fe2SEd Czeck uint16_t i; 603727b3fe2SEd Czeck int status; 6040bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 605727b3fe2SEd Czeck struct ark_mpu_t *mpu; 606727b3fe2SEd Czeck 607727b3fe2SEd Czeck if (ark->started == 0) 60862024eb8SIvan Ilchenko return 0; 609727b3fe2SEd Czeck ark->started = 0; 610b8f5d2aeSThomas Monjalon dev->data->dev_started = 0; 611727b3fe2SEd Czeck 612727b3fe2SEd Czeck /* Stop the extension first */ 613727b3fe2SEd Czeck if (ark->user_ext.dev_stop) 614428046b4SJohn Miller ark->user_ext.dev_stop(dev, 615428046b4SJohn Miller ark->user_data[dev->data->port_id]); 616727b3fe2SEd Czeck 617727b3fe2SEd Czeck /* Stop the packet generator */ 618727b3fe2SEd Czeck if (ark->start_pg) 619727b3fe2SEd Czeck ark_pktgen_pause(ark->pg); 620727b3fe2SEd Czeck 621727b3fe2SEd Czeck dev->rx_pkt_burst = ð_ark_recv_pkts_noop; 622727b3fe2SEd Czeck dev->tx_pkt_burst = ð_ark_xmit_pkts_noop; 623727b3fe2SEd Czeck 624727b3fe2SEd Czeck /* STOP TX Side */ 625727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_tx_queues; i++) { 626727b3fe2SEd Czeck status = eth_ark_tx_queue_stop(dev, i); 627727b3fe2SEd Czeck if (status != 0) { 628f8244c63SZhiyong Yang uint16_t port = dev->data->port_id; 6291502d443SEd Czeck ARK_PMD_LOG(ERR, 630727b3fe2SEd Czeck "tx_queue stop anomaly" 631727b3fe2SEd Czeck " port %u, queue %u\n", 632727b3fe2SEd Czeck port, i); 633727b3fe2SEd Czeck } 634727b3fe2SEd Czeck } 635727b3fe2SEd Czeck 636727b3fe2SEd Czeck /* Stop DDM */ 637727b3fe2SEd Czeck /* Wait up to 0.1 second. each stop is up to 1000 * 10 useconds */ 638727b3fe2SEd Czeck for (i = 0; i < 10; i++) { 639727b3fe2SEd Czeck status = ark_ddm_stop(ark->ddm.v, 1); 640727b3fe2SEd Czeck if (status == 0) 641727b3fe2SEd Czeck break; 642727b3fe2SEd Czeck } 643727b3fe2SEd Czeck if (status || i != 0) { 6441502d443SEd Czeck ARK_PMD_LOG(ERR, "DDM stop anomaly. status:" 645727b3fe2SEd Czeck " %d iter: %u. (%s)\n", 646727b3fe2SEd Czeck status, 647727b3fe2SEd Czeck i, 648727b3fe2SEd Czeck __func__); 649727b3fe2SEd Czeck ark_ddm_dump(ark->ddm.v, "Stop anomaly"); 650727b3fe2SEd Czeck 651727b3fe2SEd Czeck mpu = ark->mputx.v; 652727b3fe2SEd Czeck for (i = 0; i < ark->tx_queues; i++) { 653727b3fe2SEd Czeck ark_mpu_dump(mpu, "DDM failure dump", i); 654727b3fe2SEd Czeck mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET); 655727b3fe2SEd Czeck } 656727b3fe2SEd Czeck } 657727b3fe2SEd Czeck 658727b3fe2SEd Czeck /* STOP RX Side */ 659727b3fe2SEd Czeck /* Stop UDM multiple tries attempted */ 660727b3fe2SEd Czeck for (i = 0; i < 10; i++) { 661727b3fe2SEd Czeck status = ark_udm_stop(ark->udm.v, 1); 662727b3fe2SEd Czeck if (status == 0) 663727b3fe2SEd Czeck break; 664727b3fe2SEd Czeck } 665727b3fe2SEd Czeck if (status || i != 0) { 6661502d443SEd Czeck ARK_PMD_LOG(ERR, "UDM stop anomaly. status %d iter: %u. (%s)\n", 667727b3fe2SEd Czeck status, i, __func__); 668727b3fe2SEd Czeck ark_udm_dump(ark->udm.v, "Stop anomaly"); 669727b3fe2SEd Czeck 670727b3fe2SEd Czeck mpu = ark->mpurx.v; 671727b3fe2SEd Czeck for (i = 0; i < ark->rx_queues; i++) { 672727b3fe2SEd Czeck ark_mpu_dump(mpu, "UDM Stop anomaly", i); 673727b3fe2SEd Czeck mpu = RTE_PTR_ADD(mpu, ARK_MPU_QOFFSET); 674727b3fe2SEd Czeck } 675727b3fe2SEd Czeck } 676727b3fe2SEd Czeck 677727b3fe2SEd Czeck ark_udm_dump_stats(ark->udm.v, "Post stop"); 678727b3fe2SEd Czeck ark_udm_dump_perf(ark->udm.v, "Post stop"); 679727b3fe2SEd Czeck 68022862a02SJohn Miller for (i = 0; i < dev->data->nb_rx_queues; i++) 681727b3fe2SEd Czeck eth_ark_rx_dump_queue(dev, i, __func__); 682727b3fe2SEd Czeck 683727b3fe2SEd Czeck /* Stop the packet checker if it is running */ 684727b3fe2SEd Czeck if (ark->start_pg) { 685727b3fe2SEd Czeck ark_pktchkr_dump_stats(ark->pc); 686727b3fe2SEd Czeck ark_pktchkr_stop(ark->pc); 687727b3fe2SEd Czeck } 68862024eb8SIvan Ilchenko 68962024eb8SIvan Ilchenko return 0; 690727b3fe2SEd Czeck } 691727b3fe2SEd Czeck 692b142387bSThomas Monjalon static int 693727b3fe2SEd Czeck eth_ark_dev_close(struct rte_eth_dev *dev) 694727b3fe2SEd Czeck { 6950bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 696727b3fe2SEd Czeck uint16_t i; 697727b3fe2SEd Czeck 69830410493SThomas Monjalon if (rte_eal_process_type() != RTE_PROC_PRIMARY) 69930410493SThomas Monjalon return 0; 70030410493SThomas Monjalon 701727b3fe2SEd Czeck if (ark->user_ext.dev_close) 702428046b4SJohn Miller ark->user_ext.dev_close(dev, 703428046b4SJohn Miller ark->user_data[dev->data->port_id]); 704727b3fe2SEd Czeck 705727b3fe2SEd Czeck eth_ark_dev_stop(dev); 706727b3fe2SEd Czeck eth_ark_udm_force_close(dev); 707727b3fe2SEd Czeck 708727b3fe2SEd Czeck /* 709727b3fe2SEd Czeck * TODO This should only be called once for the device during shutdown 710727b3fe2SEd Czeck */ 711727b3fe2SEd Czeck ark_rqp_dump(ark->rqpacing); 712727b3fe2SEd Czeck 713727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_tx_queues; i++) { 714727b3fe2SEd Czeck eth_ark_tx_queue_release(dev->data->tx_queues[i]); 715727b3fe2SEd Czeck dev->data->tx_queues[i] = 0; 716727b3fe2SEd Czeck } 717727b3fe2SEd Czeck 718727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_rx_queues; i++) { 719727b3fe2SEd Czeck eth_ark_dev_rx_queue_release(dev->data->rx_queues[i]); 720727b3fe2SEd Czeck dev->data->rx_queues[i] = 0; 721727b3fe2SEd Czeck } 722c5ddc9b9SEd Czeck 723b142387bSThomas Monjalon return 0; 724727b3fe2SEd Czeck } 725727b3fe2SEd Czeck 726bdad90d1SIvan Ilchenko static int 7271131cbf0SEd Czeck eth_ark_dev_info_get(struct rte_eth_dev *dev, 7281131cbf0SEd Czeck struct rte_eth_dev_info *dev_info) 7291131cbf0SEd Czeck { 7300bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 731727b3fe2SEd Czeck struct ark_mpu_t *tx_mpu = RTE_PTR_ADD(ark->bar0, ARK_MPU_TX_BASE); 732727b3fe2SEd Czeck struct ark_mpu_t *rx_mpu = RTE_PTR_ADD(ark->bar0, ARK_MPU_RX_BASE); 733727b3fe2SEd Czeck uint16_t ports = ark->num_ports; 734727b3fe2SEd Czeck 7351131cbf0SEd Czeck dev_info->max_rx_pktlen = ARK_RX_MAX_PKT_LEN; 7361131cbf0SEd Czeck dev_info->min_rx_bufsize = ARK_RX_MIN_BUFSIZE; 7371131cbf0SEd Czeck 738727b3fe2SEd Czeck dev_info->max_rx_queues = ark_api_num_queues_per_port(rx_mpu, ports); 739727b3fe2SEd Czeck dev_info->max_tx_queues = ark_api_num_queues_per_port(tx_mpu, ports); 740727b3fe2SEd Czeck 7411131cbf0SEd Czeck dev_info->rx_desc_lim = (struct rte_eth_desc_lim) { 7421131cbf0SEd Czeck .nb_max = ARK_RX_MAX_QUEUE, 7431131cbf0SEd Czeck .nb_min = ARK_RX_MIN_QUEUE, 7441131cbf0SEd Czeck .nb_align = ARK_RX_MIN_QUEUE}; /* power of 2 */ 7451131cbf0SEd Czeck 7461131cbf0SEd Czeck dev_info->tx_desc_lim = (struct rte_eth_desc_lim) { 7471131cbf0SEd Czeck .nb_max = ARK_TX_MAX_QUEUE, 7481131cbf0SEd Czeck .nb_min = ARK_TX_MIN_QUEUE, 7491131cbf0SEd Czeck .nb_align = ARK_TX_MIN_QUEUE}; /* power of 2 */ 7501131cbf0SEd Czeck 7511131cbf0SEd Czeck /* ARK PMD supports all line rates, how do we indicate that here ?? */ 7521131cbf0SEd Czeck dev_info->speed_capa = (ETH_LINK_SPEED_1G | 7531131cbf0SEd Czeck ETH_LINK_SPEED_10G | 7541131cbf0SEd Czeck ETH_LINK_SPEED_25G | 7551131cbf0SEd Czeck ETH_LINK_SPEED_40G | 7561131cbf0SEd Czeck ETH_LINK_SPEED_50G | 7571131cbf0SEd Czeck ETH_LINK_SPEED_100G); 758bdad90d1SIvan Ilchenko 759a926951aSThomas Monjalon dev_info->rx_offload_capa = DEV_RX_OFFLOAD_TIMESTAMP; 760a926951aSThomas Monjalon 761bdad90d1SIvan Ilchenko return 0; 7621131cbf0SEd Czeck } 7631131cbf0SEd Czeck 764727b3fe2SEd Czeck static int 765727b3fe2SEd Czeck eth_ark_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete) 766727b3fe2SEd Czeck { 7671502d443SEd Czeck ARK_PMD_LOG(DEBUG, "link status = %d\n", 768727b3fe2SEd Czeck dev->data->dev_link.link_status); 7690bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 770727b3fe2SEd Czeck 771727b3fe2SEd Czeck if (ark->user_ext.link_update) { 772727b3fe2SEd Czeck return ark->user_ext.link_update 773727b3fe2SEd Czeck (dev, wait_to_complete, 774428046b4SJohn Miller ark->user_data[dev->data->port_id]); 775727b3fe2SEd Czeck } 776727b3fe2SEd Czeck return 0; 777727b3fe2SEd Czeck } 778727b3fe2SEd Czeck 779727b3fe2SEd Czeck static int 780727b3fe2SEd Czeck eth_ark_dev_set_link_up(struct rte_eth_dev *dev) 781727b3fe2SEd Czeck { 782727b3fe2SEd Czeck dev->data->dev_link.link_status = 1; 7830bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 784727b3fe2SEd Czeck 785727b3fe2SEd Czeck if (ark->user_ext.dev_set_link_up) 786428046b4SJohn Miller return ark->user_ext.dev_set_link_up(dev, 787428046b4SJohn Miller ark->user_data[dev->data->port_id]); 788727b3fe2SEd Czeck return 0; 789727b3fe2SEd Czeck } 790727b3fe2SEd Czeck 791727b3fe2SEd Czeck static int 792727b3fe2SEd Czeck eth_ark_dev_set_link_down(struct rte_eth_dev *dev) 793727b3fe2SEd Czeck { 794727b3fe2SEd Czeck dev->data->dev_link.link_status = 0; 7950bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 796727b3fe2SEd Czeck 797727b3fe2SEd Czeck if (ark->user_ext.dev_set_link_down) 798428046b4SJohn Miller return ark->user_ext.dev_set_link_down(dev, 799428046b4SJohn Miller ark->user_data[dev->data->port_id]); 800727b3fe2SEd Czeck return 0; 801727b3fe2SEd Czeck } 802727b3fe2SEd Czeck 803d5b0924bSMatan Azrad static int 804727b3fe2SEd Czeck eth_ark_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats) 805727b3fe2SEd Czeck { 806727b3fe2SEd Czeck uint16_t i; 8070bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 808727b3fe2SEd Czeck 809727b3fe2SEd Czeck stats->ipackets = 0; 810727b3fe2SEd Czeck stats->ibytes = 0; 811727b3fe2SEd Czeck stats->opackets = 0; 812727b3fe2SEd Czeck stats->obytes = 0; 813727b3fe2SEd Czeck stats->imissed = 0; 814727b3fe2SEd Czeck stats->oerrors = 0; 815727b3fe2SEd Czeck 816727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_tx_queues; i++) 817727b3fe2SEd Czeck eth_tx_queue_stats_get(dev->data->tx_queues[i], stats); 818727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_rx_queues; i++) 819727b3fe2SEd Czeck eth_rx_queue_stats_get(dev->data->rx_queues[i], stats); 820727b3fe2SEd Czeck if (ark->user_ext.stats_get) 821d5b0924bSMatan Azrad return ark->user_ext.stats_get(dev, stats, 822428046b4SJohn Miller ark->user_data[dev->data->port_id]); 823d5b0924bSMatan Azrad return 0; 824727b3fe2SEd Czeck } 825727b3fe2SEd Czeck 8269970a9adSIgor Romanov static int 827727b3fe2SEd Czeck eth_ark_dev_stats_reset(struct rte_eth_dev *dev) 828727b3fe2SEd Czeck { 829727b3fe2SEd Czeck uint16_t i; 8300bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 831727b3fe2SEd Czeck 832727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_tx_queues; i++) 833f588d3a5SJohn Miller eth_tx_queue_stats_reset(dev->data->tx_queues[i]); 834727b3fe2SEd Czeck for (i = 0; i < dev->data->nb_rx_queues; i++) 835727b3fe2SEd Czeck eth_rx_queue_stats_reset(dev->data->rx_queues[i]); 836727b3fe2SEd Czeck if (ark->user_ext.stats_reset) 837428046b4SJohn Miller ark->user_ext.stats_reset(dev, 838428046b4SJohn Miller ark->user_data[dev->data->port_id]); 8399970a9adSIgor Romanov 8409970a9adSIgor Romanov return 0; 841727b3fe2SEd Czeck } 842727b3fe2SEd Czeck 8436d01e580SWei Dai static int 844727b3fe2SEd Czeck eth_ark_macaddr_add(struct rte_eth_dev *dev, 8456d13ea8eSOlivier Matz struct rte_ether_addr *mac_addr, 846727b3fe2SEd Czeck uint32_t index, 847727b3fe2SEd Czeck uint32_t pool) 848727b3fe2SEd Czeck { 8490bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 850727b3fe2SEd Czeck 8516d01e580SWei Dai if (ark->user_ext.mac_addr_add) { 852727b3fe2SEd Czeck ark->user_ext.mac_addr_add(dev, 853727b3fe2SEd Czeck mac_addr, 854727b3fe2SEd Czeck index, 855727b3fe2SEd Czeck pool, 856428046b4SJohn Miller ark->user_data[dev->data->port_id]); 8576d01e580SWei Dai return 0; 8586d01e580SWei Dai } 8596d01e580SWei Dai return -ENOTSUP; 860727b3fe2SEd Czeck } 861727b3fe2SEd Czeck 862727b3fe2SEd Czeck static void 863727b3fe2SEd Czeck eth_ark_macaddr_remove(struct rte_eth_dev *dev, uint32_t index) 864727b3fe2SEd Czeck { 8650bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 866727b3fe2SEd Czeck 867727b3fe2SEd Czeck if (ark->user_ext.mac_addr_remove) 868428046b4SJohn Miller ark->user_ext.mac_addr_remove(dev, index, 869428046b4SJohn Miller ark->user_data[dev->data->port_id]); 870727b3fe2SEd Czeck } 871727b3fe2SEd Czeck 872caccf8b3SOlivier Matz static int 873727b3fe2SEd Czeck eth_ark_set_default_mac_addr(struct rte_eth_dev *dev, 8746d13ea8eSOlivier Matz struct rte_ether_addr *mac_addr) 875727b3fe2SEd Czeck { 8760bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 877727b3fe2SEd Czeck 878caccf8b3SOlivier Matz if (ark->user_ext.mac_addr_set) { 879428046b4SJohn Miller ark->user_ext.mac_addr_set(dev, mac_addr, 880428046b4SJohn Miller ark->user_data[dev->data->port_id]); 881caccf8b3SOlivier Matz return 0; 882caccf8b3SOlivier Matz } 883caccf8b3SOlivier Matz return -ENOTSUP; 884727b3fe2SEd Czeck } 885727b3fe2SEd Czeck 8869ae74488SJohn Miller static int 8879ae74488SJohn Miller eth_ark_set_mtu(struct rte_eth_dev *dev, uint16_t size) 8889ae74488SJohn Miller { 8890bf8b0f1SStephen Hemminger struct ark_adapter *ark = dev->data->dev_private; 8909ae74488SJohn Miller 8919ae74488SJohn Miller if (ark->user_ext.set_mtu) 8929ae74488SJohn Miller return ark->user_ext.set_mtu(dev, size, 8939ae74488SJohn Miller ark->user_data[dev->data->port_id]); 8949ae74488SJohn Miller 8959ae74488SJohn Miller return -ENOTSUP; 8969ae74488SJohn Miller } 8979ae74488SJohn Miller 8981131cbf0SEd Czeck static inline int 8991131cbf0SEd Czeck process_pktdir_arg(const char *key, const char *value, 9001131cbf0SEd Czeck void *extra_args) 9011131cbf0SEd Czeck { 9021502d443SEd Czeck ARK_PMD_LOG(DEBUG, "key = %s, value = %s\n", 9031131cbf0SEd Czeck key, value); 9041131cbf0SEd Czeck struct ark_adapter *ark = 9051131cbf0SEd Czeck (struct ark_adapter *)extra_args; 9061131cbf0SEd Czeck 9071131cbf0SEd Czeck ark->pkt_dir_v = strtol(value, NULL, 16); 9081502d443SEd Czeck ARK_PMD_LOG(DEBUG, "pkt_dir_v = 0x%x\n", ark->pkt_dir_v); 9091131cbf0SEd Czeck return 0; 9101131cbf0SEd Czeck } 9111131cbf0SEd Czeck 9121131cbf0SEd Czeck static inline int 9131131cbf0SEd Czeck process_file_args(const char *key, const char *value, void *extra_args) 9141131cbf0SEd Czeck { 9151502d443SEd Czeck ARK_PMD_LOG(DEBUG, "key = %s, value = %s\n", 9161131cbf0SEd Czeck key, value); 9171131cbf0SEd Czeck char *args = (char *)extra_args; 9181131cbf0SEd Czeck 9191131cbf0SEd Czeck /* Open the configuration file */ 9201131cbf0SEd Czeck FILE *file = fopen(value, "r"); 9211131cbf0SEd Czeck char line[ARK_MAX_ARG_LEN]; 9221131cbf0SEd Czeck int size = 0; 9231131cbf0SEd Czeck int first = 1; 9241131cbf0SEd Czeck 9252f3b88fbSJohn Miller if (file == NULL) { 9261502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to open " 9272f3b88fbSJohn Miller "config file %s\n", value); 9282f3b88fbSJohn Miller return -1; 9292f3b88fbSJohn Miller } 9302f3b88fbSJohn Miller 9311131cbf0SEd Czeck while (fgets(line, sizeof(line), file)) { 9321131cbf0SEd Czeck size += strlen(line); 9331131cbf0SEd Czeck if (size >= ARK_MAX_ARG_LEN) { 9341502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to parse file %s args, " 9351131cbf0SEd Czeck "parameter list is too long\n", value); 9361131cbf0SEd Czeck fclose(file); 9371131cbf0SEd Czeck return -1; 9381131cbf0SEd Czeck } 9391131cbf0SEd Czeck if (first) { 9401131cbf0SEd Czeck strncpy(args, line, ARK_MAX_ARG_LEN); 9411131cbf0SEd Czeck first = 0; 9421131cbf0SEd Czeck } else { 9431131cbf0SEd Czeck strncat(args, line, ARK_MAX_ARG_LEN); 9441131cbf0SEd Czeck } 9451131cbf0SEd Czeck } 9461502d443SEd Czeck ARK_PMD_LOG(DEBUG, "file = %s\n", args); 9471131cbf0SEd Czeck fclose(file); 9481131cbf0SEd Czeck return 0; 9491131cbf0SEd Czeck } 9501131cbf0SEd Czeck 9511131cbf0SEd Czeck static int 9521131cbf0SEd Czeck eth_ark_check_args(struct ark_adapter *ark, const char *params) 9531131cbf0SEd Czeck { 9541131cbf0SEd Czeck struct rte_kvargs *kvlist; 9551131cbf0SEd Czeck unsigned int k_idx; 9561131cbf0SEd Czeck struct rte_kvargs_pair *pair = NULL; 9570f31eb0cSFerruh Yigit int ret = -1; 9581131cbf0SEd Czeck 9591131cbf0SEd Czeck kvlist = rte_kvargs_parse(params, valid_arguments); 9601131cbf0SEd Czeck if (kvlist == NULL) 9611131cbf0SEd Czeck return 0; 9621131cbf0SEd Czeck 9631131cbf0SEd Czeck ark->pkt_gen_args[0] = 0; 9641131cbf0SEd Czeck ark->pkt_chkr_args[0] = 0; 9651131cbf0SEd Czeck 9661131cbf0SEd Czeck for (k_idx = 0; k_idx < kvlist->count; k_idx++) { 9671131cbf0SEd Czeck pair = &kvlist->pairs[k_idx]; 9681502d443SEd Czeck ARK_PMD_LOG(DEBUG, "**** Arg passed to PMD = %s:%s\n", 9691131cbf0SEd Czeck pair->key, 9701131cbf0SEd Czeck pair->value); 9711131cbf0SEd Czeck } 9721131cbf0SEd Czeck 9731131cbf0SEd Czeck if (rte_kvargs_process(kvlist, 9741131cbf0SEd Czeck ARK_PKTDIR_ARG, 9751131cbf0SEd Czeck &process_pktdir_arg, 9761131cbf0SEd Czeck ark) != 0) { 9771502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to parse arg %s\n", ARK_PKTDIR_ARG); 9780f31eb0cSFerruh Yigit goto free_kvlist; 9791131cbf0SEd Czeck } 9801131cbf0SEd Czeck 9811131cbf0SEd Czeck if (rte_kvargs_process(kvlist, 9821131cbf0SEd Czeck ARK_PKTGEN_ARG, 9831131cbf0SEd Czeck &process_file_args, 9841131cbf0SEd Czeck ark->pkt_gen_args) != 0) { 9851502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to parse arg %s\n", ARK_PKTGEN_ARG); 9860f31eb0cSFerruh Yigit goto free_kvlist; 9871131cbf0SEd Czeck } 9881131cbf0SEd Czeck 9891131cbf0SEd Czeck if (rte_kvargs_process(kvlist, 9901131cbf0SEd Czeck ARK_PKTCHKR_ARG, 9911131cbf0SEd Czeck &process_file_args, 9921131cbf0SEd Czeck ark->pkt_chkr_args) != 0) { 9931502d443SEd Czeck ARK_PMD_LOG(ERR, "Unable to parse arg %s\n", ARK_PKTCHKR_ARG); 9940f31eb0cSFerruh Yigit goto free_kvlist; 9951131cbf0SEd Czeck } 9961131cbf0SEd Czeck 9971502d443SEd Czeck ARK_PMD_LOG(INFO, "packet director set to 0x%x\n", ark->pkt_dir_v); 998727b3fe2SEd Czeck /* Setup the packet director */ 999727b3fe2SEd Czeck ark_pktdir_setup(ark->pd, ark->pkt_dir_v); 1000727b3fe2SEd Czeck 1001727b3fe2SEd Czeck /* Setup the packet generator */ 1002727b3fe2SEd Czeck if (ark->pkt_gen_args[0]) { 10031502d443SEd Czeck ARK_PMD_LOG(DEBUG, "Setting up the packet generator\n"); 1004727b3fe2SEd Czeck ark_pktgen_parse(ark->pkt_gen_args); 1005727b3fe2SEd Czeck ark_pktgen_reset(ark->pg); 1006727b3fe2SEd Czeck ark_pktgen_setup(ark->pg); 1007727b3fe2SEd Czeck ark->start_pg = 1; 1008727b3fe2SEd Czeck } 1009727b3fe2SEd Czeck 1010727b3fe2SEd Czeck /* Setup the packet checker */ 1011727b3fe2SEd Czeck if (ark->pkt_chkr_args[0]) { 1012727b3fe2SEd Czeck ark_pktchkr_parse(ark->pkt_chkr_args); 1013727b3fe2SEd Czeck ark_pktchkr_setup(ark->pc); 1014727b3fe2SEd Czeck } 10151131cbf0SEd Czeck 10160f31eb0cSFerruh Yigit ret = 0; 10170f31eb0cSFerruh Yigit 10180f31eb0cSFerruh Yigit free_kvlist: 10190f31eb0cSFerruh Yigit rte_kvargs_free(kvlist); 10200f31eb0cSFerruh Yigit 10210f31eb0cSFerruh Yigit return ret; 10221131cbf0SEd Czeck } 10231131cbf0SEd Czeck 10241131cbf0SEd Czeck RTE_PMD_REGISTER_PCI(net_ark, rte_ark_pmd); 10251131cbf0SEd Czeck RTE_PMD_REGISTER_KMOD_DEP(net_ark, "* igb_uio | uio_pci_generic "); 10261131cbf0SEd Czeck RTE_PMD_REGISTER_PCI_TABLE(net_ark, pci_id_ark_map); 10271131cbf0SEd Czeck RTE_PMD_REGISTER_PARAM_STRING(net_ark, 10281131cbf0SEd Czeck ARK_PKTGEN_ARG "=<filename> " 10291131cbf0SEd Czeck ARK_PKTCHKR_ARG "=<filename> " 10301131cbf0SEd Czeck ARK_PKTDIR_ARG "=<bitmap>"); 10319c99878aSJerin Jacob RTE_LOG_REGISTER(ark_logtype, pmd.net.ark, NOTICE); 1032