1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Marvell International Ltd.
3 * Copyright(c) 2018 Semihalf.
7 #include <rte_string_fns.h>
8 #include <ethdev_driver.h>
9 #include <rte_kvargs.h>
10 #include <rte_bus_vdev.h>
14 #include <linux/ethtool.h>
15 #include <linux/sockios.h>
17 #include <net/if_arp.h>
18 #include <sys/ioctl.h>
19 #include <sys/socket.h>
21 #include <sys/types.h>
23 #include <rte_mvep_common.h>
25 #include "mvneta_rxtx.h"
28 #define MVNETA_IFACE_NAME_ARG "iface"
30 #define MVNETA_PKT_SIZE_MAX (16382 - MV_MH_SIZE) /* 9700B */
31 #define MVNETA_DEFAULT_MTU 1500
33 #define MVNETA_MAC_ADDRS_MAX 256 /*16 UC, 256 IP, 256 MC/BC */
34 /** Maximum length of a match string */
35 #define MVNETA_MATCH_LEN 16
37 static const char * const valid_args[] = {
38 MVNETA_IFACE_NAME_ARG,
42 struct mvneta_ifnames {
43 const char *names[NETA_NUM_ETH_PPIO];
47 static int mvneta_dev_num;
49 static int mvneta_stats_reset(struct rte_eth_dev *dev);
50 static int rte_pmd_mvneta_remove(struct rte_vdev_device *vdev);
54 * Deinitialize packet processor.
57 mvneta_neta_deinit(void)
63 * Initialize packet processor.
66 * 0 on success, negative error value otherwise.
69 mvneta_neta_init(void)
75 * Callback used by rte_kvargs_process() during argument parsing.
78 * Pointer to the parsed key (unused).
80 * Pointer to the parsed value.
82 * Pointer to the extra arguments which contains address of the
83 * table of pointers to parsed interface names.
89 mvneta_ifnames_get(const char *key __rte_unused, const char *value,
92 struct mvneta_ifnames *ifnames = extra_args;
94 ifnames->names[ifnames->idx++] = value;
100 * Ethernet device configuration.
102 * Prepare the driver for a given number of TX and RX queues and
103 * configure RSS if supported.
106 * Pointer to Ethernet device structure.
109 * 0 on success, negative error value otherwise.
112 mvneta_dev_configure(struct rte_eth_dev *dev)
114 struct mvneta_priv *priv = dev->data->dev_private;
115 struct neta_ppio_params *ppio_params;
117 if (dev->data->dev_conf.rxmode.mq_mode != RTE_ETH_MQ_RX_NONE) {
118 MVNETA_LOG(INFO, "Unsupported RSS and rx multi queue mode %d",
119 dev->data->dev_conf.rxmode.mq_mode);
120 if (dev->data->nb_rx_queues > 1)
124 if (dev->data->dev_conf.rxmode.split_hdr_size) {
125 MVNETA_LOG(INFO, "Split headers not supported");
129 if (dev->data->dev_conf.txmode.offloads & RTE_ETH_TX_OFFLOAD_MULTI_SEGS)
132 ppio_params = &priv->ppio_params;
133 ppio_params->outqs_params.num_outqs = dev->data->nb_tx_queues;
134 /* Default: 1 TC, no QoS supported. */
135 ppio_params->inqs_params.num_tcs = 1;
136 ppio_params->inqs_params.tcs_params[0].pkt_offset = MRVL_NETA_PKT_OFFS;
137 priv->ppio_id = dev->data->port_id;
143 * DPDK callback to get information about the device.
146 * Pointer to Ethernet device structure (unused).
148 * Info structure output buffer.
151 mvneta_dev_infos_get(struct rte_eth_dev *dev __rte_unused,
152 struct rte_eth_dev_info *info)
154 info->speed_capa = RTE_ETH_LINK_SPEED_10M |
155 RTE_ETH_LINK_SPEED_100M |
156 RTE_ETH_LINK_SPEED_1G |
157 RTE_ETH_LINK_SPEED_2_5G;
159 info->max_rx_queues = MRVL_NETA_RXQ_MAX;
160 info->max_tx_queues = MRVL_NETA_TXQ_MAX;
161 info->max_mac_addrs = MVNETA_MAC_ADDRS_MAX;
163 info->rx_desc_lim.nb_max = MRVL_NETA_RXD_MAX;
164 info->rx_desc_lim.nb_min = MRVL_NETA_RXD_MIN;
165 info->rx_desc_lim.nb_align = MRVL_NETA_RXD_ALIGN;
167 info->tx_desc_lim.nb_max = MRVL_NETA_TXD_MAX;
168 info->tx_desc_lim.nb_min = MRVL_NETA_TXD_MIN;
169 info->tx_desc_lim.nb_align = MRVL_NETA_TXD_ALIGN;
171 info->rx_offload_capa = MVNETA_RX_OFFLOADS;
172 info->rx_queue_offload_capa = MVNETA_RX_OFFLOADS;
174 info->tx_offload_capa = MVNETA_TX_OFFLOADS;
175 info->tx_queue_offload_capa = MVNETA_TX_OFFLOADS;
177 /* By default packets are dropped if no descriptors are available */
178 info->default_rxconf.rx_drop_en = 1;
179 /* Deferred tx queue start is not supported */
180 info->default_txconf.tx_deferred_start = 0;
181 info->default_txconf.offloads = 0;
183 info->max_rx_pktlen = MVNETA_PKT_SIZE_MAX;
189 * Return supported packet types.
192 * Pointer to Ethernet device structure (unused).
195 * Const pointer to the table with supported packet types.
197 static const uint32_t *
198 mvneta_dev_supported_ptypes_get(struct rte_eth_dev *dev __rte_unused)
200 static const uint32_t ptypes[] = {
202 RTE_PTYPE_L2_ETHER_VLAN,
213 * DPDK callback to change the MTU.
215 * Setting the MTU affects hardware MRU (packets larger than the MRU
219 * Pointer to Ethernet device structure.
224 * 0 on success, negative error value otherwise.
227 mvneta_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
229 struct mvneta_priv *priv = dev->data->dev_private;
230 uint16_t mbuf_data_size = 0; /* SW buffer size */
234 mru = MRVL_NETA_MTU_TO_MRU(mtu);
236 * min_rx_buf_size is equal to mbuf data size
237 * if pmd didn't set it differently
239 mbuf_data_size = dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM;
241 * - setting mru greater than the mbuf size resulting in
242 * hw and sw buffer size mismatch
243 * - setting mtu that requires the support of scattered packets
244 * when this feature has not been enabled/supported so far.
246 if (!dev->data->scattered_rx &&
247 (mru + MRVL_NETA_PKT_OFFS > mbuf_data_size)) {
248 mru = mbuf_data_size - MRVL_NETA_PKT_OFFS;
249 mtu = MRVL_NETA_MRU_TO_MTU(mru);
250 MVNETA_LOG(WARNING, "MTU too big, max MTU possible limitted by"
251 " current mbuf size: %u. Set MTU to %u, MRU to %u",
252 mbuf_data_size, mtu, mru);
255 if (mtu < RTE_ETHER_MIN_MTU || mru > MVNETA_PKT_SIZE_MAX) {
256 MVNETA_LOG(ERR, "Invalid MTU [%u] or MRU [%u]", mtu, mru);
261 /* It is OK. New MTU will be set later on mvneta_dev_start */
264 ret = neta_ppio_set_mru(priv->ppio, mru);
266 MVNETA_LOG(ERR, "Failed to change MRU");
270 ret = neta_ppio_set_mtu(priv->ppio, mtu);
272 MVNETA_LOG(ERR, "Failed to change MTU");
275 MVNETA_LOG(INFO, "MTU changed to %u, MRU = %u", mtu, mru);
281 * DPDK callback to bring the link up.
284 * Pointer to Ethernet device structure.
287 * 0 on success, negative error value otherwise.
290 mvneta_dev_set_link_up(struct rte_eth_dev *dev)
292 struct mvneta_priv *priv = dev->data->dev_private;
297 return neta_ppio_enable(priv->ppio);
301 * DPDK callback to bring the link down.
304 * Pointer to Ethernet device structure.
307 * 0 on success, negative error value otherwise.
310 mvneta_dev_set_link_down(struct rte_eth_dev *dev)
312 struct mvneta_priv *priv = dev->data->dev_private;
317 return neta_ppio_disable(priv->ppio);
321 * DPDK callback to start the device.
324 * Pointer to Ethernet device structure.
327 * 0 on success, negative errno value on failure.
330 mvneta_dev_start(struct rte_eth_dev *dev)
332 struct mvneta_priv *priv = dev->data->dev_private;
333 char match[MVNETA_MATCH_LEN];
337 return mvneta_dev_set_link_up(dev);
339 strlcpy(match, dev->data->name, sizeof(match));
340 priv->ppio_params.match = match;
341 priv->ppio_params.inqs_params.mtu = dev->data->mtu;
343 ret = neta_ppio_init(&priv->ppio_params, &priv->ppio);
345 MVNETA_LOG(ERR, "Failed to init ppio");
348 priv->ppio_id = priv->ppio->port_id;
350 mvneta_stats_reset(dev);
353 * In case there are some some stale uc/mc mac addresses flush them
354 * here. It cannot be done during mvneta_dev_close() as port information
355 * is already gone at that point (due to neta_ppio_deinit() in
356 * mvneta_dev_stop()).
358 if (!priv->uc_mc_flushed) {
359 ret = neta_ppio_flush_mac_addrs(priv->ppio, 0, 1);
362 "Failed to flush uc/mc filter list");
365 priv->uc_mc_flushed = 1;
368 ret = mvneta_alloc_rx_bufs(dev);
372 ret = mvneta_mtu_set(dev, dev->data->mtu);
374 MVNETA_LOG(ERR, "Failed to set MTU %d", dev->data->mtu);
378 ret = mvneta_dev_set_link_up(dev);
380 MVNETA_LOG(ERR, "Failed to set link up");
384 /* start tx queues */
385 for (i = 0; i < dev->data->nb_tx_queues; i++)
386 dev->data->tx_queue_state[i] = RTE_ETH_QUEUE_STATE_STARTED;
388 mvneta_set_tx_function(dev);
393 MVNETA_LOG(ERR, "Failed to start device");
394 neta_ppio_deinit(priv->ppio);
399 * DPDK callback to stop the device.
402 * Pointer to Ethernet device structure.
405 mvneta_dev_stop(struct rte_eth_dev *dev)
407 struct mvneta_priv *priv = dev->data->dev_private;
409 dev->data->dev_started = 0;
414 mvneta_dev_set_link_down(dev);
415 mvneta_flush_queues(dev);
416 neta_ppio_deinit(priv->ppio);
424 * DPDK callback to close the device.
427 * Pointer to Ethernet device structure.
430 mvneta_dev_close(struct rte_eth_dev *dev)
432 struct mvneta_priv *priv = dev->data->dev_private;
435 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
439 ret = mvneta_dev_stop(dev);
441 for (i = 0; i < dev->data->nb_rx_queues; i++) {
442 mvneta_rx_queue_release(dev, i);
443 dev->data->rx_queues[i] = NULL;
446 for (i = 0; i < dev->data->nb_tx_queues; i++) {
447 mvneta_tx_queue_release(dev, i);
448 dev->data->tx_queues[i] = NULL;
453 if (mvneta_dev_num == 0) {
454 MVNETA_LOG(INFO, "Perform MUSDK deinit");
455 mvneta_neta_deinit();
456 rte_mvep_deinit(MVEP_MOD_T_NETA);
463 * DPDK callback to retrieve physical link information.
466 * Pointer to Ethernet device structure.
467 * @param wait_to_complete
468 * Wait for request completion (ignored).
471 * 0 on success, negative error value otherwise.
474 mvneta_link_update(struct rte_eth_dev *dev, int wait_to_complete __rte_unused)
478 * once MUSDK provides necessary API use it here
480 struct mvneta_priv *priv = dev->data->dev_private;
481 struct ethtool_cmd edata;
483 int ret, fd, link_up;
488 edata.cmd = ETHTOOL_GSET;
490 strcpy(req.ifr_name, dev->data->name);
491 req.ifr_data = (void *)&edata;
493 fd = socket(AF_INET, SOCK_DGRAM, 0);
496 ret = ioctl(fd, SIOCETHTOOL, &req);
504 switch (ethtool_cmd_speed(&edata)) {
506 dev->data->dev_link.link_speed = RTE_ETH_SPEED_NUM_10M;
509 dev->data->dev_link.link_speed = RTE_ETH_SPEED_NUM_100M;
512 dev->data->dev_link.link_speed = RTE_ETH_SPEED_NUM_1G;
515 dev->data->dev_link.link_speed = RTE_ETH_SPEED_NUM_2_5G;
518 dev->data->dev_link.link_speed = RTE_ETH_SPEED_NUM_NONE;
521 dev->data->dev_link.link_duplex = edata.duplex ? RTE_ETH_LINK_FULL_DUPLEX :
522 RTE_ETH_LINK_HALF_DUPLEX;
523 dev->data->dev_link.link_autoneg = edata.autoneg ? RTE_ETH_LINK_AUTONEG :
526 neta_ppio_get_link_state(priv->ppio, &link_up);
527 dev->data->dev_link.link_status = link_up ? RTE_ETH_LINK_UP : RTE_ETH_LINK_DOWN;
533 * DPDK callback to enable promiscuous mode.
536 * Pointer to Ethernet device structure.
542 mvneta_promiscuous_enable(struct rte_eth_dev *dev)
544 struct mvneta_priv *priv = dev->data->dev_private;
550 neta_ppio_get_promisc(priv->ppio, &en);
552 MVNETA_LOG(INFO, "Promiscuous already enabled");
556 ret = neta_ppio_set_promisc(priv->ppio, 1);
558 MVNETA_LOG(ERR, "Failed to enable promiscuous mode");
564 * DPDK callback to disable allmulticast mode.
567 * Pointer to Ethernet device structure.
573 mvneta_promiscuous_disable(struct rte_eth_dev *dev)
575 struct mvneta_priv *priv = dev->data->dev_private;
581 neta_ppio_get_promisc(priv->ppio, &en);
583 MVNETA_LOG(INFO, "Promiscuous already disabled");
587 ret = neta_ppio_set_promisc(priv->ppio, 0);
589 MVNETA_LOG(ERR, "Failed to disable promiscuous mode");
595 * DPDK callback to remove a MAC address.
598 * Pointer to Ethernet device structure.
603 mvneta_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
605 struct mvneta_priv *priv = dev->data->dev_private;
606 char buf[RTE_ETHER_ADDR_FMT_SIZE];
612 ret = neta_ppio_remove_mac_addr(priv->ppio,
613 dev->data->mac_addrs[index].addr_bytes);
615 rte_ether_format_addr(buf, sizeof(buf),
616 &dev->data->mac_addrs[index]);
617 MVNETA_LOG(ERR, "Failed to remove mac %s", buf);
622 * DPDK callback to add a MAC address.
625 * Pointer to Ethernet device structure.
627 * MAC address to register.
631 * VMDq pool index to associate address with (unused).
634 * 0 on success, negative error value otherwise.
637 mvneta_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
638 uint32_t index, uint32_t vmdq __rte_unused)
640 struct mvneta_priv *priv = dev->data->dev_private;
641 char buf[RTE_ETHER_ADDR_FMT_SIZE];
645 /* For setting index 0, mrvl_mac_addr_set() should be used.*/
651 ret = neta_ppio_add_mac_addr(priv->ppio, mac_addr->addr_bytes);
653 rte_ether_format_addr(buf, sizeof(buf), mac_addr);
654 MVNETA_LOG(ERR, "Failed to add mac %s", buf);
662 * DPDK callback to set the primary MAC address.
665 * Pointer to Ethernet device structure.
667 * MAC address to register.
670 mvneta_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr)
672 struct mvneta_priv *priv = dev->data->dev_private;
678 ret = neta_ppio_set_mac_addr(priv->ppio, mac_addr->addr_bytes);
680 char buf[RTE_ETHER_ADDR_FMT_SIZE];
681 rte_ether_format_addr(buf, sizeof(buf), mac_addr);
682 MVNETA_LOG(ERR, "Failed to set mac to %s", buf);
688 * DPDK callback to get device statistics.
691 * Pointer to Ethernet device structure.
693 * Stats structure output buffer.
696 * 0 on success, negative error value otherwise.
699 mvneta_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
701 struct mvneta_priv *priv = dev->data->dev_private;
702 struct neta_ppio_statistics ppio_stats;
708 ret = neta_ppio_get_statistics(priv->ppio, &ppio_stats);
710 MVNETA_LOG(ERR, "Failed to update port statistics");
714 stats->ipackets += ppio_stats.rx_packets +
715 ppio_stats.rx_broadcast_packets +
716 ppio_stats.rx_multicast_packets -
717 priv->prev_stats.ipackets;
718 stats->opackets += ppio_stats.tx_packets +
719 ppio_stats.tx_broadcast_packets +
720 ppio_stats.tx_multicast_packets -
721 priv->prev_stats.opackets;
722 stats->ibytes += ppio_stats.rx_bytes - priv->prev_stats.ibytes;
723 stats->obytes += ppio_stats.tx_bytes - priv->prev_stats.obytes;
724 stats->imissed += ppio_stats.rx_discard +
725 ppio_stats.rx_overrun -
726 priv->prev_stats.imissed;
727 stats->ierrors = ppio_stats.rx_packets_err -
728 priv->prev_stats.ierrors;
729 stats->oerrors = ppio_stats.tx_errors - priv->prev_stats.oerrors;
735 * DPDK callback to clear device statistics.
738 * Pointer to Ethernet device structure.
741 * 0 on success, negative error value otherwise.
744 mvneta_stats_reset(struct rte_eth_dev *dev)
746 struct mvneta_priv *priv = dev->data->dev_private;
752 ret = mvneta_stats_get(dev, &priv->prev_stats);
754 MVNETA_LOG(ERR, "Failed to reset port statistics");
760 static const struct eth_dev_ops mvneta_ops = {
761 .dev_configure = mvneta_dev_configure,
762 .dev_start = mvneta_dev_start,
763 .dev_stop = mvneta_dev_stop,
764 .dev_set_link_up = mvneta_dev_set_link_up,
765 .dev_set_link_down = mvneta_dev_set_link_down,
766 .dev_close = mvneta_dev_close,
767 .link_update = mvneta_link_update,
768 .promiscuous_enable = mvneta_promiscuous_enable,
769 .promiscuous_disable = mvneta_promiscuous_disable,
770 .mac_addr_remove = mvneta_mac_addr_remove,
771 .mac_addr_add = mvneta_mac_addr_add,
772 .mac_addr_set = mvneta_mac_addr_set,
773 .mtu_set = mvneta_mtu_set,
774 .stats_get = mvneta_stats_get,
775 .stats_reset = mvneta_stats_reset,
776 .dev_infos_get = mvneta_dev_infos_get,
777 .dev_supported_ptypes_get = mvneta_dev_supported_ptypes_get,
778 .rxq_info_get = mvneta_rxq_info_get,
779 .txq_info_get = mvneta_txq_info_get,
780 .rx_queue_setup = mvneta_rx_queue_setup,
781 .rx_queue_release = mvneta_rx_queue_release,
782 .tx_queue_setup = mvneta_tx_queue_setup,
783 .tx_queue_release = mvneta_tx_queue_release,
787 * Create device representing Ethernet port.
790 * Pointer to the port's name.
793 * 0 on success, negative error value otherwise.
796 mvneta_eth_dev_create(struct rte_vdev_device *vdev, const char *name)
798 int ret, fd = socket(AF_INET, SOCK_DGRAM, 0);
799 struct rte_eth_dev *eth_dev;
800 struct mvneta_priv *priv;
803 eth_dev = rte_eth_dev_allocate(name);
807 priv = rte_zmalloc_socket(name, sizeof(*priv), 0, rte_socket_id());
812 eth_dev->data->dev_private = priv;
814 eth_dev->data->mac_addrs =
815 rte_zmalloc("mac_addrs",
816 RTE_ETHER_ADDR_LEN * MVNETA_MAC_ADDRS_MAX, 0);
817 if (!eth_dev->data->mac_addrs) {
818 MVNETA_LOG(ERR, "Failed to allocate space for eth addrs");
823 memset(&req, 0, sizeof(req));
824 strcpy(req.ifr_name, name);
825 ret = ioctl(fd, SIOCGIFHWADDR, &req);
829 memcpy(eth_dev->data->mac_addrs[0].addr_bytes,
830 req.ifr_addr.sa_data, RTE_ETHER_ADDR_LEN);
832 eth_dev->device = &vdev->device;
833 eth_dev->rx_pkt_burst = mvneta_rx_pkt_burst;
834 mvneta_set_tx_function(eth_dev);
835 eth_dev->dev_ops = &mvneta_ops;
837 rte_eth_dev_probing_finish(eth_dev);
840 rte_eth_dev_release_port(eth_dev);
846 * Cleanup previously created device representing Ethernet port.
849 * Pointer to the corresponding rte_eth_dev structure.
852 mvneta_eth_dev_destroy(struct rte_eth_dev *eth_dev)
854 rte_eth_dev_release_port(eth_dev);
858 * Cleanup previously created device representing Ethernet port.
861 * Pointer to the port name.
864 mvneta_eth_dev_destroy_name(const char *name)
866 struct rte_eth_dev *eth_dev;
868 eth_dev = rte_eth_dev_allocated(name);
872 mvneta_eth_dev_destroy(eth_dev);
876 * DPDK callback to register the virtual device.
879 * Pointer to the virtual device.
882 * 0 on success, negative error value otherwise.
885 rte_pmd_mvneta_probe(struct rte_vdev_device *vdev)
887 struct rte_kvargs *kvlist;
888 struct mvneta_ifnames ifnames;
893 params = rte_vdev_device_args(vdev);
897 kvlist = rte_kvargs_parse(params, valid_args);
901 ifnum = rte_kvargs_count(kvlist, MVNETA_IFACE_NAME_ARG);
902 if (ifnum > RTE_DIM(ifnames.names))
903 goto out_free_kvlist;
906 rte_kvargs_process(kvlist, MVNETA_IFACE_NAME_ARG,
907 mvneta_ifnames_get, &ifnames);
910 * The below system initialization should be done only once,
911 * on the first provided configuration file
916 MVNETA_LOG(INFO, "Perform MUSDK initializations");
918 ret = rte_mvep_init(MVEP_MOD_T_NETA, kvlist);
920 goto out_free_kvlist;
922 ret = mvneta_neta_init();
924 MVNETA_LOG(ERR, "Failed to init NETA!");
925 rte_mvep_deinit(MVEP_MOD_T_NETA);
926 goto out_free_kvlist;
930 for (i = 0; i < ifnum; i++) {
931 MVNETA_LOG(INFO, "Creating %s", ifnames.names[i]);
932 ret = mvneta_eth_dev_create(vdev, ifnames.names[i]);
939 rte_kvargs_free(kvlist);
943 rte_pmd_mvneta_remove(vdev);
946 rte_kvargs_free(kvlist);
952 * DPDK callback to remove virtual device.
955 * Pointer to the removed virtual device.
958 * 0 on success, negative error value otherwise.
961 rte_pmd_mvneta_remove(struct rte_vdev_device *vdev)
966 RTE_ETH_FOREACH_DEV(port_id) {
967 if (rte_eth_devices[port_id].device != &vdev->device)
969 ret |= rte_eth_dev_close(port_id);
972 return ret == 0 ? 0 : -EIO;
975 static struct rte_vdev_driver pmd_mvneta_drv = {
976 .probe = rte_pmd_mvneta_probe,
977 .remove = rte_pmd_mvneta_remove,
980 RTE_PMD_REGISTER_VDEV(net_mvneta, pmd_mvneta_drv);
981 RTE_PMD_REGISTER_PARAM_STRING(net_mvneta, "iface=<ifc>");
982 RTE_LOG_REGISTER_DEFAULT(mvneta_logtype, NOTICE);