1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2016 Cavium, Inc
14 #include <netinet/in.h>
15 #include <sys/queue.h>
17 #include <rte_alarm.h>
18 #include <rte_branch_prediction.h>
19 #include <rte_byteorder.h>
20 #include <rte_common.h>
21 #include <rte_cycles.h>
22 #include <rte_debug.h>
25 #include <rte_ether.h>
26 #include <ethdev_driver.h>
27 #include <ethdev_pci.h>
28 #include <rte_interrupts.h>
30 #include <rte_memory.h>
31 #include <rte_memzone.h>
32 #include <rte_malloc.h>
33 #include <rte_random.h>
35 #include <rte_bus_pci.h>
36 #include <rte_tailq.h>
37 #include <rte_devargs.h>
38 #include <rte_kvargs.h>
40 #include "base/nicvf_plat.h"
42 #include "nicvf_ethdev.h"
43 #include "nicvf_rxtx.h"
44 #include "nicvf_svf.h"
45 #include "nicvf_logs.h"
47 static int nicvf_dev_stop(struct rte_eth_dev *dev);
48 static void nicvf_dev_stop_cleanup(struct rte_eth_dev *dev, bool cleanup);
49 static void nicvf_vf_stop(struct rte_eth_dev *dev, struct nicvf *nic,
51 static int nicvf_vlan_offload_config(struct rte_eth_dev *dev, int mask);
52 static int nicvf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
54 RTE_LOG_REGISTER_SUFFIX(nicvf_logtype_mbox, mbox, NOTICE);
55 RTE_LOG_REGISTER_SUFFIX(nicvf_logtype_init, init, NOTICE);
56 RTE_LOG_REGISTER_SUFFIX(nicvf_logtype_driver, driver, NOTICE);
59 nicvf_link_status_update(struct nicvf *nic,
60 struct rte_eth_link *link)
62 memset(link, 0, sizeof(*link));
64 link->link_status = nic->link_up ? ETH_LINK_UP : ETH_LINK_DOWN;
66 if (nic->duplex == NICVF_HALF_DUPLEX)
67 link->link_duplex = ETH_LINK_HALF_DUPLEX;
68 else if (nic->duplex == NICVF_FULL_DUPLEX)
69 link->link_duplex = ETH_LINK_FULL_DUPLEX;
70 link->link_speed = nic->speed;
71 link->link_autoneg = ETH_LINK_AUTONEG;
75 nicvf_interrupt(void *arg)
77 struct rte_eth_dev *dev = arg;
78 struct nicvf *nic = nicvf_pmd_priv(dev);
79 struct rte_eth_link link;
81 if (nicvf_reg_poll_interrupts(nic) == NIC_MBOX_MSG_BGX_LINK_CHANGE) {
82 if (dev->data->dev_conf.intr_conf.lsc) {
83 nicvf_link_status_update(nic, &link);
84 rte_eth_linkstatus_set(dev, &link);
86 rte_eth_dev_callback_process(dev,
87 RTE_ETH_EVENT_INTR_LSC,
92 rte_eal_alarm_set(NICVF_INTR_POLL_INTERVAL_MS * 1000,
93 nicvf_interrupt, dev);
97 nicvf_vf_interrupt(void *arg)
99 struct nicvf *nic = arg;
101 nicvf_reg_poll_interrupts(nic);
103 rte_eal_alarm_set(NICVF_INTR_POLL_INTERVAL_MS * 1000,
104 nicvf_vf_interrupt, nic);
108 nicvf_periodic_alarm_start(void (fn)(void *), void *arg)
110 return rte_eal_alarm_set(NICVF_INTR_POLL_INTERVAL_MS * 1000, fn, arg);
114 nicvf_periodic_alarm_stop(void (fn)(void *), void *arg)
116 return rte_eal_alarm_cancel(fn, arg);
120 * Return 0 means link status changed, -1 means not changed
123 nicvf_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
125 #define CHECK_INTERVAL 100 /* 100ms */
126 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
127 struct rte_eth_link link;
128 struct nicvf *nic = nicvf_pmd_priv(dev);
131 PMD_INIT_FUNC_TRACE();
133 if (wait_to_complete) {
134 /* rte_eth_link_get() might need to wait up to 9 seconds */
135 for (i = 0; i < MAX_CHECK_TIME; i++) {
136 nicvf_link_status_update(nic, &link);
137 if (link.link_status == ETH_LINK_UP)
139 rte_delay_ms(CHECK_INTERVAL);
142 nicvf_link_status_update(nic, &link);
145 return rte_eth_linkstatus_set(dev, &link);
149 nicvf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
151 struct nicvf *nic = nicvf_pmd_priv(dev);
152 uint32_t buffsz, frame_size = mtu + NIC_HW_L2_OVERHEAD;
154 struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
156 PMD_INIT_FUNC_TRACE();
158 if (frame_size > NIC_HW_MAX_FRS)
161 if (frame_size < NIC_HW_MIN_FRS)
164 buffsz = dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM;
167 * Refuse mtu that requires the support of scattered packets
168 * when this feature has not been enabled before.
170 if (dev->data->dev_started && !dev->data->scattered_rx &&
171 (frame_size + 2 * VLAN_TAG_SIZE > buffsz))
174 /* check <seg size> * <max_seg> >= max_frame */
175 if (dev->data->scattered_rx &&
176 (frame_size + 2 * VLAN_TAG_SIZE > buffsz * NIC_HW_MAX_SEGS))
179 if (frame_size > NIC_HW_L2_MAX_LEN)
180 rxmode->offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
182 rxmode->offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
184 if (nicvf_mbox_update_hw_max_frs(nic, mtu))
187 /* Update max_rx_pkt_len */
188 rxmode->max_rx_pkt_len = mtu + RTE_ETHER_HDR_LEN;
191 for (i = 0; i < nic->sqs_count; i++)
192 nic->snicvf[i]->mtu = mtu;
198 nicvf_dev_get_regs(struct rte_eth_dev *dev, struct rte_dev_reg_info *regs)
200 uint64_t *data = regs->data;
201 struct nicvf *nic = nicvf_pmd_priv(dev);
204 regs->length = nicvf_reg_get_count();
205 regs->width = THUNDERX_REG_BYTES;
209 /* Support only full register dump */
210 if ((regs->length == 0) ||
211 (regs->length == (uint32_t)nicvf_reg_get_count())) {
212 regs->version = nic->vendor_id << 16 | nic->device_id;
213 nicvf_reg_dump(nic, data);
220 nicvf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
223 struct nicvf_hw_rx_qstats rx_qstats;
224 struct nicvf_hw_tx_qstats tx_qstats;
225 struct nicvf_hw_stats port_stats;
226 struct nicvf *nic = nicvf_pmd_priv(dev);
227 uint16_t rx_start, rx_end;
228 uint16_t tx_start, tx_end;
231 /* RX queue indices for the first VF */
232 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
234 /* Reading per RX ring stats */
235 for (qidx = rx_start; qidx <= rx_end; qidx++) {
236 if (qidx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)
239 nicvf_hw_get_rx_qstats(nic, &rx_qstats, qidx);
240 stats->q_ibytes[qidx] = rx_qstats.q_rx_bytes;
241 stats->q_ipackets[qidx] = rx_qstats.q_rx_packets;
244 /* TX queue indices for the first VF */
245 nicvf_tx_range(dev, nic, &tx_start, &tx_end);
247 /* Reading per TX ring stats */
248 for (qidx = tx_start; qidx <= tx_end; qidx++) {
249 if (qidx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)
252 nicvf_hw_get_tx_qstats(nic, &tx_qstats, qidx);
253 stats->q_obytes[qidx] = tx_qstats.q_tx_bytes;
254 stats->q_opackets[qidx] = tx_qstats.q_tx_packets;
257 for (i = 0; i < nic->sqs_count; i++) {
258 struct nicvf *snic = nic->snicvf[i];
263 /* RX queue indices for a secondary VF */
264 nicvf_rx_range(dev, snic, &rx_start, &rx_end);
266 /* Reading per RX ring stats */
267 for (qidx = rx_start; qidx <= rx_end; qidx++) {
268 if (qidx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)
271 nicvf_hw_get_rx_qstats(snic, &rx_qstats,
272 qidx % MAX_RCV_QUEUES_PER_QS);
273 stats->q_ibytes[qidx] = rx_qstats.q_rx_bytes;
274 stats->q_ipackets[qidx] = rx_qstats.q_rx_packets;
277 /* TX queue indices for a secondary VF */
278 nicvf_tx_range(dev, snic, &tx_start, &tx_end);
279 /* Reading per TX ring stats */
280 for (qidx = tx_start; qidx <= tx_end; qidx++) {
281 if (qidx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)
284 nicvf_hw_get_tx_qstats(snic, &tx_qstats,
285 qidx % MAX_SND_QUEUES_PER_QS);
286 stats->q_obytes[qidx] = tx_qstats.q_tx_bytes;
287 stats->q_opackets[qidx] = tx_qstats.q_tx_packets;
291 nicvf_hw_get_stats(nic, &port_stats);
292 stats->ibytes = port_stats.rx_bytes;
293 stats->ipackets = port_stats.rx_ucast_frames;
294 stats->ipackets += port_stats.rx_bcast_frames;
295 stats->ipackets += port_stats.rx_mcast_frames;
296 stats->ierrors = port_stats.rx_l2_errors;
297 stats->imissed = port_stats.rx_drop_red;
298 stats->imissed += port_stats.rx_drop_overrun;
299 stats->imissed += port_stats.rx_drop_bcast;
300 stats->imissed += port_stats.rx_drop_mcast;
301 stats->imissed += port_stats.rx_drop_l3_bcast;
302 stats->imissed += port_stats.rx_drop_l3_mcast;
304 stats->obytes = port_stats.tx_bytes_ok;
305 stats->opackets = port_stats.tx_ucast_frames_ok;
306 stats->opackets += port_stats.tx_bcast_frames_ok;
307 stats->opackets += port_stats.tx_mcast_frames_ok;
308 stats->oerrors = port_stats.tx_drops;
313 static const uint32_t *
314 nicvf_dev_supported_ptypes_get(struct rte_eth_dev *dev)
317 static uint32_t ptypes[32];
318 struct nicvf *nic = nicvf_pmd_priv(dev);
319 static const uint32_t ptypes_common[] = {
321 RTE_PTYPE_L3_IPV4_EXT,
323 RTE_PTYPE_L3_IPV6_EXT,
328 static const uint32_t ptypes_tunnel[] = {
329 RTE_PTYPE_TUNNEL_GRE,
330 RTE_PTYPE_TUNNEL_GENEVE,
331 RTE_PTYPE_TUNNEL_VXLAN,
332 RTE_PTYPE_TUNNEL_NVGRE,
334 static const uint32_t ptypes_end = RTE_PTYPE_UNKNOWN;
336 copied = sizeof(ptypes_common);
337 memcpy(ptypes, ptypes_common, copied);
338 if (nicvf_hw_cap(nic) & NICVF_CAP_TUNNEL_PARSING) {
339 memcpy((char *)ptypes + copied, ptypes_tunnel,
340 sizeof(ptypes_tunnel));
341 copied += sizeof(ptypes_tunnel);
344 memcpy((char *)ptypes + copied, &ptypes_end, sizeof(ptypes_end));
346 /* All Ptypes are supported in all Rx functions. */
351 nicvf_dev_stats_reset(struct rte_eth_dev *dev)
354 uint16_t rxqs = 0, txqs = 0;
355 struct nicvf *nic = nicvf_pmd_priv(dev);
356 uint16_t rx_start, rx_end;
357 uint16_t tx_start, tx_end;
360 /* Reset all primary nic counters */
361 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
362 for (i = rx_start; i <= rx_end; i++)
363 rxqs |= (0x3 << (i * 2));
365 nicvf_tx_range(dev, nic, &tx_start, &tx_end);
366 for (i = tx_start; i <= tx_end; i++)
367 txqs |= (0x3 << (i * 2));
369 ret = nicvf_mbox_reset_stat_counters(nic, 0x3FFF, 0x1F, rxqs, txqs);
373 /* Reset secondary nic queue counters */
374 for (i = 0; i < nic->sqs_count; i++) {
375 struct nicvf *snic = nic->snicvf[i];
379 nicvf_rx_range(dev, snic, &rx_start, &rx_end);
380 for (i = rx_start; i <= rx_end; i++)
381 rxqs |= (0x3 << ((i % MAX_CMP_QUEUES_PER_QS) * 2));
383 nicvf_tx_range(dev, snic, &tx_start, &tx_end);
384 for (i = tx_start; i <= tx_end; i++)
385 txqs |= (0x3 << ((i % MAX_SND_QUEUES_PER_QS) * 2));
387 ret = nicvf_mbox_reset_stat_counters(snic, 0, 0, rxqs, txqs);
395 /* Promiscuous mode enabled by default in LMAC to VF 1:1 map configuration */
397 nicvf_dev_promisc_enable(struct rte_eth_dev *dev __rte_unused)
402 static inline uint64_t
403 nicvf_rss_ethdev_to_nic(struct nicvf *nic, uint64_t ethdev_rss)
405 uint64_t nic_rss = 0;
407 if (ethdev_rss & ETH_RSS_IPV4)
408 nic_rss |= RSS_IP_ENA;
410 if (ethdev_rss & ETH_RSS_IPV6)
411 nic_rss |= RSS_IP_ENA;
413 if (ethdev_rss & ETH_RSS_NONFRAG_IPV4_UDP)
414 nic_rss |= (RSS_IP_ENA | RSS_UDP_ENA);
416 if (ethdev_rss & ETH_RSS_NONFRAG_IPV4_TCP)
417 nic_rss |= (RSS_IP_ENA | RSS_TCP_ENA);
419 if (ethdev_rss & ETH_RSS_NONFRAG_IPV6_UDP)
420 nic_rss |= (RSS_IP_ENA | RSS_UDP_ENA);
422 if (ethdev_rss & ETH_RSS_NONFRAG_IPV6_TCP)
423 nic_rss |= (RSS_IP_ENA | RSS_TCP_ENA);
425 if (ethdev_rss & ETH_RSS_PORT)
426 nic_rss |= RSS_L2_EXTENDED_HASH_ENA;
428 if (nicvf_hw_cap(nic) & NICVF_CAP_TUNNEL_PARSING) {
429 if (ethdev_rss & ETH_RSS_VXLAN)
430 nic_rss |= RSS_TUN_VXLAN_ENA;
432 if (ethdev_rss & ETH_RSS_GENEVE)
433 nic_rss |= RSS_TUN_GENEVE_ENA;
435 if (ethdev_rss & ETH_RSS_NVGRE)
436 nic_rss |= RSS_TUN_NVGRE_ENA;
442 static inline uint64_t
443 nicvf_rss_nic_to_ethdev(struct nicvf *nic, uint64_t nic_rss)
445 uint64_t ethdev_rss = 0;
447 if (nic_rss & RSS_IP_ENA)
448 ethdev_rss |= (ETH_RSS_IPV4 | ETH_RSS_IPV6);
450 if ((nic_rss & RSS_IP_ENA) && (nic_rss & RSS_TCP_ENA))
451 ethdev_rss |= (ETH_RSS_NONFRAG_IPV4_TCP |
452 ETH_RSS_NONFRAG_IPV6_TCP);
454 if ((nic_rss & RSS_IP_ENA) && (nic_rss & RSS_UDP_ENA))
455 ethdev_rss |= (ETH_RSS_NONFRAG_IPV4_UDP |
456 ETH_RSS_NONFRAG_IPV6_UDP);
458 if (nic_rss & RSS_L2_EXTENDED_HASH_ENA)
459 ethdev_rss |= ETH_RSS_PORT;
461 if (nicvf_hw_cap(nic) & NICVF_CAP_TUNNEL_PARSING) {
462 if (nic_rss & RSS_TUN_VXLAN_ENA)
463 ethdev_rss |= ETH_RSS_VXLAN;
465 if (nic_rss & RSS_TUN_GENEVE_ENA)
466 ethdev_rss |= ETH_RSS_GENEVE;
468 if (nic_rss & RSS_TUN_NVGRE_ENA)
469 ethdev_rss |= ETH_RSS_NVGRE;
475 nicvf_dev_reta_query(struct rte_eth_dev *dev,
476 struct rte_eth_rss_reta_entry64 *reta_conf,
479 struct nicvf *nic = nicvf_pmd_priv(dev);
480 uint8_t tbl[NIC_MAX_RSS_IDR_TBL_SIZE];
483 if (reta_size != NIC_MAX_RSS_IDR_TBL_SIZE) {
485 "The size of hash lookup table configured "
486 "(%u) doesn't match the number hardware can supported "
487 "(%u)", reta_size, NIC_MAX_RSS_IDR_TBL_SIZE);
491 ret = nicvf_rss_reta_query(nic, tbl, NIC_MAX_RSS_IDR_TBL_SIZE);
495 /* Copy RETA table */
496 for (i = 0; i < (NIC_MAX_RSS_IDR_TBL_SIZE / RTE_RETA_GROUP_SIZE); i++) {
497 for (j = 0; j < RTE_RETA_GROUP_SIZE; j++)
498 if ((reta_conf[i].mask >> j) & 0x01)
499 reta_conf[i].reta[j] = tbl[j];
506 nicvf_dev_reta_update(struct rte_eth_dev *dev,
507 struct rte_eth_rss_reta_entry64 *reta_conf,
510 struct nicvf *nic = nicvf_pmd_priv(dev);
511 uint8_t tbl[NIC_MAX_RSS_IDR_TBL_SIZE];
514 if (reta_size != NIC_MAX_RSS_IDR_TBL_SIZE) {
515 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
516 "(%u) doesn't match the number hardware can supported "
517 "(%u)", reta_size, NIC_MAX_RSS_IDR_TBL_SIZE);
521 ret = nicvf_rss_reta_query(nic, tbl, NIC_MAX_RSS_IDR_TBL_SIZE);
525 /* Copy RETA table */
526 for (i = 0; i < (NIC_MAX_RSS_IDR_TBL_SIZE / RTE_RETA_GROUP_SIZE); i++) {
527 for (j = 0; j < RTE_RETA_GROUP_SIZE; j++)
528 if ((reta_conf[i].mask >> j) & 0x01)
529 tbl[j] = reta_conf[i].reta[j];
532 return nicvf_rss_reta_update(nic, tbl, NIC_MAX_RSS_IDR_TBL_SIZE);
536 nicvf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
537 struct rte_eth_rss_conf *rss_conf)
539 struct nicvf *nic = nicvf_pmd_priv(dev);
541 if (rss_conf->rss_key)
542 nicvf_rss_get_key(nic, rss_conf->rss_key);
544 rss_conf->rss_key_len = RSS_HASH_KEY_BYTE_SIZE;
545 rss_conf->rss_hf = nicvf_rss_nic_to_ethdev(nic, nicvf_rss_get_cfg(nic));
550 nicvf_dev_rss_hash_update(struct rte_eth_dev *dev,
551 struct rte_eth_rss_conf *rss_conf)
553 struct nicvf *nic = nicvf_pmd_priv(dev);
556 if (rss_conf->rss_key &&
557 rss_conf->rss_key_len != RSS_HASH_KEY_BYTE_SIZE) {
558 PMD_DRV_LOG(ERR, "Hash key size mismatch %u",
559 rss_conf->rss_key_len);
563 if (rss_conf->rss_key)
564 nicvf_rss_set_key(nic, rss_conf->rss_key);
566 nic_rss = nicvf_rss_ethdev_to_nic(nic, rss_conf->rss_hf);
567 nicvf_rss_set_cfg(nic, nic_rss);
572 nicvf_qset_cq_alloc(struct rte_eth_dev *dev, struct nicvf *nic,
573 struct nicvf_rxq *rxq, uint16_t qidx, uint32_t desc_cnt)
575 const struct rte_memzone *rz;
576 uint32_t ring_size = CMP_QUEUE_SZ_MAX * sizeof(union cq_entry_t);
578 rz = rte_eth_dma_zone_reserve(dev, "cq_ring",
579 nicvf_netdev_qidx(nic, qidx), ring_size,
580 NICVF_CQ_BASE_ALIGN_BYTES, nic->node);
582 PMD_INIT_LOG(ERR, "Failed to allocate mem for cq hw ring");
586 memset(rz->addr, 0, ring_size);
588 rxq->phys = rz->iova;
589 rxq->desc = rz->addr;
590 rxq->qlen_mask = desc_cnt - 1;
596 nicvf_qset_sq_alloc(struct rte_eth_dev *dev, struct nicvf *nic,
597 struct nicvf_txq *sq, uint16_t qidx, uint32_t desc_cnt)
599 const struct rte_memzone *rz;
600 uint32_t ring_size = SND_QUEUE_SZ_MAX * sizeof(union sq_entry_t);
602 rz = rte_eth_dma_zone_reserve(dev, "sq",
603 nicvf_netdev_qidx(nic, qidx), ring_size,
604 NICVF_SQ_BASE_ALIGN_BYTES, nic->node);
606 PMD_INIT_LOG(ERR, "Failed allocate mem for sq hw ring");
610 memset(rz->addr, 0, ring_size);
614 sq->qlen_mask = desc_cnt - 1;
620 nicvf_qset_rbdr_alloc(struct rte_eth_dev *dev, struct nicvf *nic,
621 uint32_t desc_cnt, uint32_t buffsz)
623 struct nicvf_rbdr *rbdr;
624 const struct rte_memzone *rz;
627 assert(nic->rbdr == NULL);
628 rbdr = rte_zmalloc_socket("rbdr", sizeof(struct nicvf_rbdr),
629 RTE_CACHE_LINE_SIZE, nic->node);
631 PMD_INIT_LOG(ERR, "Failed to allocate mem for rbdr");
635 ring_size = sizeof(struct rbdr_entry_t) * RBDR_QUEUE_SZ_MAX;
636 rz = rte_eth_dma_zone_reserve(dev, "rbdr",
637 nicvf_netdev_qidx(nic, 0), ring_size,
638 NICVF_RBDR_BASE_ALIGN_BYTES, nic->node);
640 PMD_INIT_LOG(ERR, "Failed to allocate mem for rbdr desc ring");
645 memset(rz->addr, 0, ring_size);
647 rbdr->phys = rz->iova;
650 rbdr->desc = rz->addr;
651 rbdr->buffsz = buffsz;
652 rbdr->qlen_mask = desc_cnt - 1;
654 nicvf_qset_base(nic, 0) + NIC_QSET_RBDR_0_1_STATUS0;
656 nicvf_qset_base(nic, 0) + NIC_QSET_RBDR_0_1_DOOR;
663 nicvf_rbdr_release_mbuf(struct rte_eth_dev *dev, struct nicvf *nic,
664 nicvf_iova_addr_t phy)
668 struct nicvf_rxq *rxq;
669 uint16_t rx_start, rx_end;
671 /* Get queue ranges for this VF */
672 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
674 for (qidx = rx_start; qidx <= rx_end; qidx++) {
675 rxq = dev->data->rx_queues[qidx];
676 if (rxq->precharge_cnt) {
677 obj = (void *)nicvf_mbuff_phy2virt(phy,
679 rte_mempool_put(rxq->pool, obj);
680 rxq->precharge_cnt--;
687 nicvf_rbdr_release_mbufs(struct rte_eth_dev *dev, struct nicvf *nic)
689 uint32_t qlen_mask, head;
690 struct rbdr_entry_t *entry;
691 struct nicvf_rbdr *rbdr = nic->rbdr;
693 qlen_mask = rbdr->qlen_mask;
695 while (head != rbdr->tail) {
696 entry = rbdr->desc + head;
697 nicvf_rbdr_release_mbuf(dev, nic, entry->full_addr);
699 head = head & qlen_mask;
704 nicvf_tx_queue_release_mbufs(struct nicvf_txq *txq)
709 while (head != txq->tail) {
710 if (txq->txbuffs[head]) {
711 rte_pktmbuf_free_seg(txq->txbuffs[head]);
712 txq->txbuffs[head] = NULL;
715 head = head & txq->qlen_mask;
720 nicvf_tx_queue_reset(struct nicvf_txq *txq)
722 uint32_t txq_desc_cnt = txq->qlen_mask + 1;
724 memset(txq->desc, 0, sizeof(union sq_entry_t) * txq_desc_cnt);
725 memset(txq->txbuffs, 0, sizeof(struct rte_mbuf *) * txq_desc_cnt);
732 nicvf_vf_start_tx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
735 struct nicvf_txq *txq;
738 assert(qidx < MAX_SND_QUEUES_PER_QS);
740 if (dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
741 RTE_ETH_QUEUE_STATE_STARTED)
744 txq = dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)];
746 ret = nicvf_qset_sq_config(nic, qidx, txq);
748 PMD_INIT_LOG(ERR, "Failed to configure sq VF%d %d %d",
749 nic->vf_id, qidx, ret);
750 goto config_sq_error;
753 dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
754 RTE_ETH_QUEUE_STATE_STARTED;
758 nicvf_qset_sq_reclaim(nic, qidx);
763 nicvf_vf_stop_tx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
766 struct nicvf_txq *txq;
769 assert(qidx < MAX_SND_QUEUES_PER_QS);
771 if (dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
772 RTE_ETH_QUEUE_STATE_STOPPED)
775 ret = nicvf_qset_sq_reclaim(nic, qidx);
777 PMD_INIT_LOG(ERR, "Failed to reclaim sq VF%d %d %d",
778 nic->vf_id, qidx, ret);
780 txq = dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)];
781 nicvf_tx_queue_release_mbufs(txq);
782 nicvf_tx_queue_reset(txq);
784 dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
785 RTE_ETH_QUEUE_STATE_STOPPED;
790 nicvf_configure_cpi(struct rte_eth_dev *dev)
792 struct nicvf *nic = nicvf_pmd_priv(dev);
796 /* Count started rx queues */
797 for (qidx = qcnt = 0; qidx < dev->data->nb_rx_queues; qidx++)
798 if (dev->data->rx_queue_state[qidx] ==
799 RTE_ETH_QUEUE_STATE_STARTED)
802 nic->cpi_alg = CPI_ALG_NONE;
803 ret = nicvf_mbox_config_cpi(nic, qcnt);
805 PMD_INIT_LOG(ERR, "Failed to configure CPI %d", ret);
811 nicvf_configure_rss(struct rte_eth_dev *dev)
813 struct nicvf *nic = nicvf_pmd_priv(dev);
817 rsshf = nicvf_rss_ethdev_to_nic(nic,
818 dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf);
819 PMD_DRV_LOG(INFO, "mode=%d rx_queues=%d loopback=%d rsshf=0x%" PRIx64,
820 dev->data->dev_conf.rxmode.mq_mode,
821 dev->data->nb_rx_queues,
822 dev->data->dev_conf.lpbk_mode, rsshf);
824 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_NONE)
825 ret = nicvf_rss_term(nic);
826 else if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS)
827 ret = nicvf_rss_config(nic, dev->data->nb_rx_queues, rsshf);
829 PMD_INIT_LOG(ERR, "Failed to configure RSS %d", ret);
835 nicvf_configure_rss_reta(struct rte_eth_dev *dev)
837 struct nicvf *nic = nicvf_pmd_priv(dev);
838 unsigned int idx, qmap_size;
839 uint8_t qmap[RTE_MAX_QUEUES_PER_PORT];
840 uint8_t default_reta[NIC_MAX_RSS_IDR_TBL_SIZE];
842 if (nic->cpi_alg != CPI_ALG_NONE)
845 /* Prepare queue map */
846 for (idx = 0, qmap_size = 0; idx < dev->data->nb_rx_queues; idx++) {
847 if (dev->data->rx_queue_state[idx] ==
848 RTE_ETH_QUEUE_STATE_STARTED)
849 qmap[qmap_size++] = idx;
852 /* Update default RSS RETA */
853 for (idx = 0; idx < NIC_MAX_RSS_IDR_TBL_SIZE; idx++)
854 default_reta[idx] = qmap[idx % qmap_size];
856 return nicvf_rss_reta_update(nic, default_reta,
857 NIC_MAX_RSS_IDR_TBL_SIZE);
861 nicvf_dev_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
863 struct nicvf_txq *txq = dev->data->tx_queues[qid];
865 PMD_INIT_FUNC_TRACE();
868 if (txq->txbuffs != NULL) {
869 nicvf_tx_queue_release_mbufs(txq);
870 rte_free(txq->txbuffs);
874 dev->data->tx_queues[qid] = NULL;
879 nicvf_set_tx_function(struct rte_eth_dev *dev)
881 struct nicvf_txq *txq = NULL;
883 bool multiseg = false;
885 for (i = 0; i < dev->data->nb_tx_queues; i++) {
886 txq = dev->data->tx_queues[i];
887 if (txq->offloads & DEV_TX_OFFLOAD_MULTI_SEGS) {
893 /* Use a simple Tx queue (no offloads, no multi segs) if possible */
895 PMD_DRV_LOG(DEBUG, "Using multi-segment tx callback");
896 dev->tx_pkt_burst = nicvf_xmit_pkts_multiseg;
898 PMD_DRV_LOG(DEBUG, "Using single-segment tx callback");
899 dev->tx_pkt_burst = nicvf_xmit_pkts;
905 if (txq->pool_free == nicvf_single_pool_free_xmited_buffers)
906 PMD_DRV_LOG(DEBUG, "Using single-mempool tx free method");
908 PMD_DRV_LOG(DEBUG, "Using multi-mempool tx free method");
912 nicvf_set_rx_function(struct rte_eth_dev *dev)
914 struct nicvf *nic = nicvf_pmd_priv(dev);
916 const eth_rx_burst_t rx_burst_func[2][2][2] = {
917 /* [NORMAL/SCATTER] [CKSUM/NO_CKSUM] [VLAN_STRIP/NO_VLAN_STRIP] */
918 [0][0][0] = nicvf_recv_pkts_no_offload,
919 [0][0][1] = nicvf_recv_pkts_vlan_strip,
920 [0][1][0] = nicvf_recv_pkts_cksum,
921 [0][1][1] = nicvf_recv_pkts_cksum_vlan_strip,
922 [1][0][0] = nicvf_recv_pkts_multiseg_no_offload,
923 [1][0][1] = nicvf_recv_pkts_multiseg_vlan_strip,
924 [1][1][0] = nicvf_recv_pkts_multiseg_cksum,
925 [1][1][1] = nicvf_recv_pkts_multiseg_cksum_vlan_strip,
929 rx_burst_func[dev->data->scattered_rx]
930 [nic->offload_cksum][nic->vlan_strip];
934 nicvf_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
935 uint16_t nb_desc, unsigned int socket_id,
936 const struct rte_eth_txconf *tx_conf)
938 uint16_t tx_free_thresh;
940 struct nicvf_txq *txq;
941 struct nicvf *nic = nicvf_pmd_priv(dev);
944 PMD_INIT_FUNC_TRACE();
946 if (qidx >= MAX_SND_QUEUES_PER_QS)
947 nic = nic->snicvf[qidx / MAX_SND_QUEUES_PER_QS - 1];
949 qidx = qidx % MAX_SND_QUEUES_PER_QS;
951 /* Socket id check */
952 if (socket_id != (unsigned int)SOCKET_ID_ANY && socket_id != nic->node)
953 PMD_DRV_LOG(WARNING, "socket_id expected %d, configured %d",
954 socket_id, nic->node);
956 /* Tx deferred start is not supported */
957 if (tx_conf->tx_deferred_start) {
958 PMD_INIT_LOG(ERR, "Tx deferred start not supported");
962 /* Roundup nb_desc to available qsize and validate max number of desc */
963 nb_desc = nicvf_qsize_sq_roundup(nb_desc);
965 PMD_INIT_LOG(ERR, "Value of nb_desc beyond available sq qsize");
969 /* Validate tx_free_thresh */
970 tx_free_thresh = (uint16_t)((tx_conf->tx_free_thresh) ?
971 tx_conf->tx_free_thresh :
972 NICVF_DEFAULT_TX_FREE_THRESH);
974 if (tx_free_thresh > (nb_desc) ||
975 tx_free_thresh > NICVF_MAX_TX_FREE_THRESH) {
977 "tx_free_thresh must be less than the number of TX "
978 "descriptors. (tx_free_thresh=%u port=%d "
979 "queue=%d)", (unsigned int)tx_free_thresh,
980 (int)dev->data->port_id, (int)qidx);
984 /* Free memory prior to re-allocation if needed. */
985 if (dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)] != NULL) {
986 PMD_TX_LOG(DEBUG, "Freeing memory prior to re-allocation %d",
987 nicvf_netdev_qidx(nic, qidx));
988 nicvf_dev_tx_queue_release(dev, nicvf_netdev_qidx(nic, qidx));
989 dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)] = NULL;
992 /* Allocating tx queue data structure */
993 txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct nicvf_txq),
994 RTE_CACHE_LINE_SIZE, nic->node);
996 PMD_INIT_LOG(ERR, "Failed to allocate txq=%d",
997 nicvf_netdev_qidx(nic, qidx));
1002 txq->queue_id = qidx;
1003 txq->tx_free_thresh = tx_free_thresh;
1004 txq->sq_head = nicvf_qset_base(nic, qidx) + NIC_QSET_SQ_0_7_HEAD;
1005 txq->sq_door = nicvf_qset_base(nic, qidx) + NIC_QSET_SQ_0_7_DOOR;
1006 offloads = tx_conf->offloads | dev->data->dev_conf.txmode.offloads;
1007 txq->offloads = offloads;
1009 is_single_pool = !!(offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE);
1011 /* Choose optimum free threshold value for multipool case */
1012 if (!is_single_pool) {
1013 txq->tx_free_thresh = (uint16_t)
1014 (tx_conf->tx_free_thresh == NICVF_DEFAULT_TX_FREE_THRESH ?
1015 NICVF_TX_FREE_MPOOL_THRESH :
1016 tx_conf->tx_free_thresh);
1017 txq->pool_free = nicvf_multi_pool_free_xmited_buffers;
1019 txq->pool_free = nicvf_single_pool_free_xmited_buffers;
1022 dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)] = txq;
1024 /* Allocate software ring */
1025 txq->txbuffs = rte_zmalloc_socket("txq->txbuffs",
1026 nb_desc * sizeof(struct rte_mbuf *),
1027 RTE_CACHE_LINE_SIZE, nic->node);
1029 if (txq->txbuffs == NULL) {
1030 nicvf_dev_tx_queue_release(dev, nicvf_netdev_qidx(nic, qidx));
1034 if (nicvf_qset_sq_alloc(dev, nic, txq, qidx, nb_desc)) {
1035 PMD_INIT_LOG(ERR, "Failed to allocate mem for sq %d", qidx);
1036 nicvf_dev_tx_queue_release(dev, nicvf_netdev_qidx(nic, qidx));
1040 nicvf_tx_queue_reset(txq);
1042 PMD_INIT_LOG(DEBUG, "[%d] txq=%p nb_desc=%d desc=%p"
1043 " phys=0x%" PRIx64 " offloads=0x%" PRIx64,
1044 nicvf_netdev_qidx(nic, qidx), txq, nb_desc, txq->desc,
1045 txq->phys, txq->offloads);
1047 dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1048 RTE_ETH_QUEUE_STATE_STOPPED;
1053 nicvf_rx_queue_release_mbufs(struct rte_eth_dev *dev, struct nicvf_rxq *rxq)
1056 uint32_t nb_pkts, released_pkts = 0;
1057 uint32_t refill_cnt = 0;
1058 struct rte_mbuf *rx_pkts[NICVF_MAX_RX_FREE_THRESH];
1060 if (dev->rx_pkt_burst == NULL)
1063 while ((rxq_cnt = nicvf_dev_rx_queue_count(dev,
1064 nicvf_netdev_qidx(rxq->nic, rxq->queue_id)))) {
1065 nb_pkts = dev->rx_pkt_burst(rxq, rx_pkts,
1066 NICVF_MAX_RX_FREE_THRESH);
1067 PMD_DRV_LOG(INFO, "nb_pkts=%d rxq_cnt=%d", nb_pkts, rxq_cnt);
1069 rte_pktmbuf_free_seg(rx_pkts[--nb_pkts]);
1075 refill_cnt += nicvf_dev_rbdr_refill(dev,
1076 nicvf_netdev_qidx(rxq->nic, rxq->queue_id));
1078 PMD_DRV_LOG(INFO, "free_cnt=%d refill_cnt=%d",
1079 released_pkts, refill_cnt);
1083 nicvf_rx_queue_reset(struct nicvf_rxq *rxq)
1086 rxq->available_space = 0;
1087 rxq->recv_buffers = 0;
1091 nicvf_vf_start_rx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
1094 struct nicvf_rxq *rxq;
1097 assert(qidx < MAX_RCV_QUEUES_PER_QS);
1099 if (dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
1100 RTE_ETH_QUEUE_STATE_STARTED)
1103 /* Update rbdr pointer to all rxq */
1104 rxq = dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)];
1105 rxq->shared_rbdr = nic->rbdr;
1107 ret = nicvf_qset_rq_config(nic, qidx, rxq);
1109 PMD_INIT_LOG(ERR, "Failed to configure rq VF%d %d %d",
1110 nic->vf_id, qidx, ret);
1111 goto config_rq_error;
1113 ret = nicvf_qset_cq_config(nic, qidx, rxq);
1115 PMD_INIT_LOG(ERR, "Failed to configure cq VF%d %d %d",
1116 nic->vf_id, qidx, ret);
1117 goto config_cq_error;
1120 dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1121 RTE_ETH_QUEUE_STATE_STARTED;
1125 nicvf_qset_cq_reclaim(nic, qidx);
1127 nicvf_qset_rq_reclaim(nic, qidx);
1132 nicvf_vf_stop_rx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
1135 struct nicvf_rxq *rxq;
1136 int ret, other_error;
1138 if (dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
1139 RTE_ETH_QUEUE_STATE_STOPPED)
1142 ret = nicvf_qset_rq_reclaim(nic, qidx);
1144 PMD_INIT_LOG(ERR, "Failed to reclaim rq VF%d %d %d",
1145 nic->vf_id, qidx, ret);
1148 rxq = dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)];
1149 nicvf_rx_queue_release_mbufs(dev, rxq);
1150 nicvf_rx_queue_reset(rxq);
1152 ret = nicvf_qset_cq_reclaim(nic, qidx);
1154 PMD_INIT_LOG(ERR, "Failed to reclaim cq VF%d %d %d",
1155 nic->vf_id, qidx, ret);
1158 dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1159 RTE_ETH_QUEUE_STATE_STOPPED;
1164 nicvf_dev_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
1166 PMD_INIT_FUNC_TRACE();
1168 rte_free(dev->data->rx_queues[qid]);
1172 nicvf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
1174 struct nicvf *nic = nicvf_pmd_priv(dev);
1177 if (qidx >= MAX_RCV_QUEUES_PER_QS)
1178 nic = nic->snicvf[(qidx / MAX_RCV_QUEUES_PER_QS - 1)];
1180 qidx = qidx % MAX_RCV_QUEUES_PER_QS;
1182 ret = nicvf_vf_start_rx_queue(dev, nic, qidx);
1186 ret = nicvf_configure_cpi(dev);
1190 return nicvf_configure_rss_reta(dev);
1194 nicvf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
1197 struct nicvf *nic = nicvf_pmd_priv(dev);
1199 if (qidx >= MAX_SND_QUEUES_PER_QS)
1200 nic = nic->snicvf[(qidx / MAX_SND_QUEUES_PER_QS - 1)];
1202 qidx = qidx % MAX_RCV_QUEUES_PER_QS;
1204 ret = nicvf_vf_stop_rx_queue(dev, nic, qidx);
1205 ret |= nicvf_configure_cpi(dev);
1206 ret |= nicvf_configure_rss_reta(dev);
1211 nicvf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
1213 struct nicvf *nic = nicvf_pmd_priv(dev);
1215 if (qidx >= MAX_SND_QUEUES_PER_QS)
1216 nic = nic->snicvf[(qidx / MAX_SND_QUEUES_PER_QS - 1)];
1218 qidx = qidx % MAX_SND_QUEUES_PER_QS;
1220 return nicvf_vf_start_tx_queue(dev, nic, qidx);
1224 nicvf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
1226 struct nicvf *nic = nicvf_pmd_priv(dev);
1228 if (qidx >= MAX_SND_QUEUES_PER_QS)
1229 nic = nic->snicvf[(qidx / MAX_SND_QUEUES_PER_QS - 1)];
1231 qidx = qidx % MAX_SND_QUEUES_PER_QS;
1233 return nicvf_vf_stop_tx_queue(dev, nic, qidx);
1237 nicvf_rxq_mbuf_setup(struct nicvf_rxq *rxq)
1240 struct rte_mbuf mb_def;
1241 struct nicvf *nic = rxq->nic;
1243 RTE_BUILD_BUG_ON(sizeof(union mbuf_initializer) != 8);
1244 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) % 8 != 0);
1245 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, refcnt) -
1246 offsetof(struct rte_mbuf, data_off) != 2);
1247 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, nb_segs) -
1248 offsetof(struct rte_mbuf, data_off) != 4);
1249 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, port) -
1250 offsetof(struct rte_mbuf, data_off) != 6);
1251 RTE_BUILD_BUG_ON(offsetof(struct nicvf_rxq, rxq_fastpath_data_end) -
1252 offsetof(struct nicvf_rxq,
1253 rxq_fastpath_data_start) > 128);
1255 mb_def.data_off = RTE_PKTMBUF_HEADROOM + (nic->skip_bytes);
1256 mb_def.port = rxq->port_id;
1257 rte_mbuf_refcnt_set(&mb_def, 1);
1259 /* Prevent compiler reordering: rearm_data covers previous fields */
1260 rte_compiler_barrier();
1261 p = (uintptr_t)&mb_def.rearm_data;
1262 rxq->mbuf_initializer.value = *(uint64_t *)p;
1266 nicvf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
1267 uint16_t nb_desc, unsigned int socket_id,
1268 const struct rte_eth_rxconf *rx_conf,
1269 struct rte_mempool *mp)
1271 uint16_t rx_free_thresh;
1272 struct nicvf_rxq *rxq;
1273 struct nicvf *nic = nicvf_pmd_priv(dev);
1276 struct rte_pktmbuf_pool_private *mbp_priv;
1278 PMD_INIT_FUNC_TRACE();
1280 /* First skip check */
1281 mbp_priv = rte_mempool_get_priv(mp);
1282 buffsz = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
1283 if (buffsz < (uint32_t)(nic->skip_bytes)) {
1284 PMD_INIT_LOG(ERR, "First skip is more than configured buffer size");
1288 if (qidx >= MAX_RCV_QUEUES_PER_QS)
1289 nic = nic->snicvf[qidx / MAX_RCV_QUEUES_PER_QS - 1];
1291 qidx = qidx % MAX_RCV_QUEUES_PER_QS;
1293 /* Socket id check */
1294 if (socket_id != (unsigned int)SOCKET_ID_ANY && socket_id != nic->node)
1295 PMD_DRV_LOG(WARNING, "socket_id expected %d, configured %d",
1296 socket_id, nic->node);
1298 /* Mempool memory must be contiguous, so must be one memory segment*/
1299 if (mp->nb_mem_chunks != 1) {
1300 PMD_INIT_LOG(ERR, "Non-contiguous mempool, add more huge pages");
1304 /* Mempool memory must be physically contiguous */
1305 if (mp->flags & RTE_MEMPOOL_F_NO_IOVA_CONTIG) {
1306 PMD_INIT_LOG(ERR, "Mempool memory must be physically contiguous");
1310 /* Rx deferred start is not supported */
1311 if (rx_conf->rx_deferred_start) {
1312 PMD_INIT_LOG(ERR, "Rx deferred start not supported");
1316 /* Roundup nb_desc to available qsize and validate max number of desc */
1317 nb_desc = nicvf_qsize_cq_roundup(nb_desc);
1319 PMD_INIT_LOG(ERR, "Value nb_desc beyond available hw cq qsize");
1324 /* Check rx_free_thresh upper bound */
1325 rx_free_thresh = (uint16_t)((rx_conf->rx_free_thresh) ?
1326 rx_conf->rx_free_thresh :
1327 NICVF_DEFAULT_RX_FREE_THRESH);
1328 if (rx_free_thresh > NICVF_MAX_RX_FREE_THRESH ||
1329 rx_free_thresh >= nb_desc * .75) {
1330 PMD_INIT_LOG(ERR, "rx_free_thresh greater than expected %d",
1335 /* Free memory prior to re-allocation if needed */
1336 if (dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)] != NULL) {
1337 PMD_RX_LOG(DEBUG, "Freeing memory prior to re-allocation %d",
1338 nicvf_netdev_qidx(nic, qidx));
1339 nicvf_dev_rx_queue_release(dev, nicvf_netdev_qidx(nic, qidx));
1340 dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)] = NULL;
1343 /* Allocate rxq memory */
1344 rxq = rte_zmalloc_socket("ethdev rx queue", sizeof(struct nicvf_rxq),
1345 RTE_CACHE_LINE_SIZE, nic->node);
1347 PMD_INIT_LOG(ERR, "Failed to allocate rxq=%d",
1348 nicvf_netdev_qidx(nic, qidx));
1354 rxq->queue_id = qidx;
1355 rxq->port_id = dev->data->port_id;
1356 rxq->rx_free_thresh = rx_free_thresh;
1357 rxq->rx_drop_en = rx_conf->rx_drop_en;
1358 rxq->cq_status = nicvf_qset_base(nic, qidx) + NIC_QSET_CQ_0_7_STATUS;
1359 rxq->cq_door = nicvf_qset_base(nic, qidx) + NIC_QSET_CQ_0_7_DOOR;
1360 rxq->precharge_cnt = 0;
1362 if (nicvf_hw_cap(nic) & NICVF_CAP_CQE_RX2)
1363 rxq->rbptr_offset = NICVF_CQE_RX2_RBPTR_WORD;
1365 rxq->rbptr_offset = NICVF_CQE_RBPTR_WORD;
1367 dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)] = rxq;
1369 nicvf_rxq_mbuf_setup(rxq);
1371 /* Alloc completion queue */
1372 if (nicvf_qset_cq_alloc(dev, nic, rxq, rxq->queue_id, nb_desc)) {
1373 PMD_INIT_LOG(ERR, "failed to allocate cq %u", rxq->queue_id);
1374 nicvf_dev_rx_queue_release(dev, nicvf_netdev_qidx(nic, qidx));
1378 nicvf_rx_queue_reset(rxq);
1380 offloads = rx_conf->offloads | dev->data->dev_conf.rxmode.offloads;
1381 PMD_INIT_LOG(DEBUG, "[%d] rxq=%p pool=%s nb_desc=(%d/%d)"
1382 " phy=0x%" PRIx64 " offloads=0x%" PRIx64,
1383 nicvf_netdev_qidx(nic, qidx), rxq, mp->name, nb_desc,
1384 rte_mempool_avail_count(mp), rxq->phys, offloads);
1386 dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1387 RTE_ETH_QUEUE_STATE_STOPPED;
1392 nicvf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
1394 struct nicvf *nic = nicvf_pmd_priv(dev);
1395 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1397 PMD_INIT_FUNC_TRACE();
1399 /* Autonegotiation may be disabled */
1400 dev_info->speed_capa = ETH_LINK_SPEED_FIXED;
1401 dev_info->speed_capa |= ETH_LINK_SPEED_10M | ETH_LINK_SPEED_100M |
1402 ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
1403 if (nicvf_hw_version(nic) != PCI_SUB_DEVICE_ID_CN81XX_NICVF)
1404 dev_info->speed_capa |= ETH_LINK_SPEED_40G;
1406 dev_info->min_rx_bufsize = RTE_ETHER_MIN_MTU;
1407 dev_info->max_rx_pktlen = NIC_HW_MAX_MTU + RTE_ETHER_HDR_LEN;
1408 dev_info->max_rx_queues =
1409 (uint16_t)MAX_RCV_QUEUES_PER_QS * (MAX_SQS_PER_VF + 1);
1410 dev_info->max_tx_queues =
1411 (uint16_t)MAX_SND_QUEUES_PER_QS * (MAX_SQS_PER_VF + 1);
1412 dev_info->max_mac_addrs = 1;
1413 dev_info->max_vfs = pci_dev->max_vfs;
1415 dev_info->rx_offload_capa = NICVF_RX_OFFLOAD_CAPA;
1416 dev_info->tx_offload_capa = NICVF_TX_OFFLOAD_CAPA;
1417 dev_info->rx_queue_offload_capa = NICVF_RX_OFFLOAD_CAPA;
1418 dev_info->tx_queue_offload_capa = NICVF_TX_OFFLOAD_CAPA;
1420 dev_info->reta_size = nic->rss_info.rss_size;
1421 dev_info->hash_key_size = RSS_HASH_KEY_BYTE_SIZE;
1422 dev_info->flow_type_rss_offloads = NICVF_RSS_OFFLOAD_PASS1;
1423 if (nicvf_hw_cap(nic) & NICVF_CAP_TUNNEL_PARSING)
1424 dev_info->flow_type_rss_offloads |= NICVF_RSS_OFFLOAD_TUNNEL;
1426 dev_info->default_rxconf = (struct rte_eth_rxconf) {
1427 .rx_free_thresh = NICVF_DEFAULT_RX_FREE_THRESH,
1431 dev_info->default_txconf = (struct rte_eth_txconf) {
1432 .tx_free_thresh = NICVF_DEFAULT_TX_FREE_THRESH,
1433 .offloads = DEV_TX_OFFLOAD_MBUF_FAST_FREE |
1434 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
1435 DEV_TX_OFFLOAD_UDP_CKSUM |
1436 DEV_TX_OFFLOAD_TCP_CKSUM,
1442 static nicvf_iova_addr_t
1443 rbdr_rte_mempool_get(void *dev, void *opaque)
1447 struct nicvf_rxq *rxq;
1448 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)dev;
1449 struct nicvf *nic = (struct nicvf *)opaque;
1450 uint16_t rx_start, rx_end;
1452 /* Get queue ranges for this VF */
1453 nicvf_rx_range(eth_dev, nic, &rx_start, &rx_end);
1455 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1456 rxq = eth_dev->data->rx_queues[qidx];
1457 /* Maintain equal buffer count across all pools */
1458 if (rxq->precharge_cnt >= rxq->qlen_mask)
1460 rxq->precharge_cnt++;
1461 mbuf = (uintptr_t)rte_pktmbuf_alloc(rxq->pool);
1463 return nicvf_mbuff_virt2phy(mbuf, rxq->mbuf_phys_off);
1469 nicvf_vf_start(struct rte_eth_dev *dev, struct nicvf *nic, uint32_t rbdrsz)
1472 uint16_t qidx, data_off;
1473 uint32_t total_rxq_desc, nb_rbdr_desc, exp_buffs;
1474 uint64_t mbuf_phys_off = 0;
1475 struct nicvf_rxq *rxq;
1476 struct rte_mbuf *mbuf;
1477 uint16_t rx_start, rx_end;
1478 uint16_t tx_start, tx_end;
1481 PMD_INIT_FUNC_TRACE();
1483 /* Userspace process exited without proper shutdown in last run */
1484 if (nicvf_qset_rbdr_active(nic, 0))
1485 nicvf_vf_stop(dev, nic, false);
1487 /* Get queue ranges for this VF */
1488 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
1491 * Thunderx nicvf PMD can support more than one pool per port only when
1492 * 1) Data payload size is same across all the pools in given port
1494 * 2) All mbuffs in the pools are from the same hugepage
1496 * 3) Mbuff metadata size is same across all the pools in given port
1498 * This is to support existing application that uses multiple pool/port.
1499 * But, the purpose of using multipool for QoS will not be addressed.
1503 /* Validate mempool attributes */
1504 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1505 rxq = dev->data->rx_queues[qidx];
1506 rxq->mbuf_phys_off = nicvf_mempool_phy_offset(rxq->pool);
1507 mbuf = rte_pktmbuf_alloc(rxq->pool);
1509 PMD_INIT_LOG(ERR, "Failed allocate mbuf VF%d qid=%d "
1511 nic->vf_id, qidx, rxq->pool->name);
1514 data_off = nicvf_mbuff_meta_length(mbuf);
1515 data_off += RTE_PKTMBUF_HEADROOM;
1516 rte_pktmbuf_free(mbuf);
1518 if (data_off % RTE_CACHE_LINE_SIZE) {
1519 PMD_INIT_LOG(ERR, "%s: unaligned data_off=%d delta=%d",
1520 rxq->pool->name, data_off,
1521 data_off % RTE_CACHE_LINE_SIZE);
1524 rxq->mbuf_phys_off -= data_off;
1525 rxq->mbuf_phys_off -= nic->skip_bytes;
1527 if (mbuf_phys_off == 0)
1528 mbuf_phys_off = rxq->mbuf_phys_off;
1529 if (mbuf_phys_off != rxq->mbuf_phys_off) {
1530 PMD_INIT_LOG(ERR, "pool params not same,%s VF%d %"
1531 PRIx64, rxq->pool->name, nic->vf_id,
1537 /* Check the level of buffers in the pool */
1539 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1540 rxq = dev->data->rx_queues[qidx];
1541 /* Count total numbers of rxq descs */
1542 total_rxq_desc += rxq->qlen_mask + 1;
1543 exp_buffs = RTE_MEMPOOL_CACHE_MAX_SIZE + rxq->rx_free_thresh;
1544 exp_buffs *= dev->data->nb_rx_queues;
1545 if (rte_mempool_avail_count(rxq->pool) < exp_buffs) {
1546 PMD_INIT_LOG(ERR, "Buff shortage in pool=%s (%d/%d)",
1548 rte_mempool_avail_count(rxq->pool),
1554 /* Check RBDR desc overflow */
1555 ret = nicvf_qsize_rbdr_roundup(total_rxq_desc);
1557 PMD_INIT_LOG(ERR, "Reached RBDR desc limit, reduce nr desc "
1558 "VF%d", nic->vf_id);
1563 ret = nicvf_qset_config(nic);
1565 PMD_INIT_LOG(ERR, "Failed to enable qset %d VF%d", ret,
1570 /* Allocate RBDR and RBDR ring desc */
1571 nb_rbdr_desc = nicvf_qsize_rbdr_roundup(total_rxq_desc);
1572 ret = nicvf_qset_rbdr_alloc(dev, nic, nb_rbdr_desc, rbdrsz);
1574 PMD_INIT_LOG(ERR, "Failed to allocate memory for rbdr alloc "
1575 "VF%d", nic->vf_id);
1579 /* Enable and configure RBDR registers */
1580 ret = nicvf_qset_rbdr_config(nic, 0);
1582 PMD_INIT_LOG(ERR, "Failed to configure rbdr %d VF%d", ret,
1584 goto qset_rbdr_free;
1587 /* Fill rte_mempool buffers in RBDR pool and precharge it */
1588 ret = nicvf_qset_rbdr_precharge(dev, nic, 0, rbdr_rte_mempool_get,
1591 PMD_INIT_LOG(ERR, "Failed to fill rbdr %d VF%d", ret,
1593 goto qset_rbdr_reclaim;
1596 PMD_DRV_LOG(INFO, "Filled %d out of %d entries in RBDR VF%d",
1597 nic->rbdr->tail, nb_rbdr_desc, nic->vf_id);
1599 /* Configure VLAN Strip */
1600 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
1601 ETH_VLAN_EXTEND_MASK;
1602 ret = nicvf_vlan_offload_config(dev, mask);
1604 /* Based on the packet type(IPv4 or IPv6), the nicvf HW aligns L3 data
1605 * to the 64bit memory address.
1606 * The alignment creates a hole in mbuf(between the end of headroom and
1607 * packet data start). The new revision of the HW provides an option to
1608 * disable the L3 alignment feature and make mbuf layout looks
1609 * more like other NICs. For better application compatibility, disabling
1610 * l3 alignment feature on the hardware revisions it supports
1612 nicvf_apad_config(nic, false);
1614 /* Get queue ranges for this VF */
1615 nicvf_tx_range(dev, nic, &tx_start, &tx_end);
1617 /* Configure TX queues */
1618 for (qidx = tx_start; qidx <= tx_end; qidx++) {
1619 ret = nicvf_vf_start_tx_queue(dev, nic,
1620 qidx % MAX_SND_QUEUES_PER_QS);
1622 goto start_txq_error;
1625 /* Configure RX queues */
1626 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1627 ret = nicvf_vf_start_rx_queue(dev, nic,
1628 qidx % MAX_RCV_QUEUES_PER_QS);
1630 goto start_rxq_error;
1633 if (!nic->sqs_mode) {
1634 /* Configure CPI algorithm */
1635 ret = nicvf_configure_cpi(dev);
1637 goto start_txq_error;
1639 ret = nicvf_mbox_get_rss_size(nic);
1641 PMD_INIT_LOG(ERR, "Failed to get rss table size");
1642 goto qset_rss_error;
1646 ret = nicvf_configure_rss(dev);
1648 goto qset_rss_error;
1651 /* Done; Let PF make the BGX's RX and TX switches to ON position */
1652 nicvf_mbox_cfg_done(nic);
1656 nicvf_rss_term(nic);
1658 for (qidx = rx_start; qidx <= rx_end; qidx++)
1659 nicvf_vf_stop_rx_queue(dev, nic, qidx % MAX_RCV_QUEUES_PER_QS);
1661 for (qidx = tx_start; qidx <= tx_end; qidx++)
1662 nicvf_vf_stop_tx_queue(dev, nic, qidx % MAX_SND_QUEUES_PER_QS);
1664 nicvf_qset_rbdr_reclaim(nic, 0);
1665 nicvf_rbdr_release_mbufs(dev, nic);
1668 rte_free(nic->rbdr);
1672 nicvf_qset_reclaim(nic);
1677 nicvf_dev_start(struct rte_eth_dev *dev)
1682 struct nicvf *nic = nicvf_pmd_priv(dev);
1683 struct rte_eth_rxmode *rx_conf = &dev->data->dev_conf.rxmode;
1685 uint32_t buffsz = 0, rbdrsz = 0;
1686 struct rte_pktmbuf_pool_private *mbp_priv;
1687 struct nicvf_rxq *rxq;
1689 PMD_INIT_FUNC_TRACE();
1691 /* This function must be called for a primary device */
1692 assert_primary(nic);
1694 /* Validate RBDR buff size */
1695 for (qidx = 0; qidx < dev->data->nb_rx_queues; qidx++) {
1696 rxq = dev->data->rx_queues[qidx];
1697 mbp_priv = rte_mempool_get_priv(rxq->pool);
1698 buffsz = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
1700 PMD_INIT_LOG(ERR, "rxbuf size must be multiply of 128");
1705 if (rbdrsz != buffsz) {
1706 PMD_INIT_LOG(ERR, "buffsz not same, qidx=%d (%d/%d)",
1707 qidx, rbdrsz, buffsz);
1712 /* Configure loopback */
1713 ret = nicvf_loopback_config(nic, dev->data->dev_conf.lpbk_mode);
1715 PMD_INIT_LOG(ERR, "Failed to configure loopback %d", ret);
1719 /* Reset all statistics counters attached to this port */
1720 ret = nicvf_mbox_reset_stat_counters(nic, 0x3FFF, 0x1F, 0xFFFF, 0xFFFF);
1722 PMD_INIT_LOG(ERR, "Failed to reset stat counters %d", ret);
1726 /* Setup scatter mode if needed by jumbo */
1727 if (dev->data->dev_conf.rxmode.max_rx_pkt_len +
1728 2 * VLAN_TAG_SIZE > buffsz)
1729 dev->data->scattered_rx = 1;
1730 if ((rx_conf->offloads & DEV_RX_OFFLOAD_SCATTER) != 0)
1731 dev->data->scattered_rx = 1;
1733 /* Setup MTU based on max_rx_pkt_len or default */
1734 mtu = dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME ?
1735 dev->data->dev_conf.rxmode.max_rx_pkt_len
1736 - RTE_ETHER_HDR_LEN : RTE_ETHER_MTU;
1738 if (nicvf_dev_set_mtu(dev, mtu)) {
1739 PMD_INIT_LOG(ERR, "Failed to set default mtu size");
1743 ret = nicvf_vf_start(dev, nic, rbdrsz);
1747 for (i = 0; i < nic->sqs_count; i++) {
1748 assert(nic->snicvf[i]);
1750 ret = nicvf_vf_start(dev, nic->snicvf[i], rbdrsz);
1755 /* Configure callbacks based on offloads */
1756 nicvf_set_tx_function(dev);
1757 nicvf_set_rx_function(dev);
1763 nicvf_dev_stop_cleanup(struct rte_eth_dev *dev, bool cleanup)
1767 struct nicvf *nic = nicvf_pmd_priv(dev);
1769 PMD_INIT_FUNC_TRACE();
1770 dev->data->dev_started = 0;
1772 /* Teardown secondary vf first */
1773 for (i = 0; i < nic->sqs_count; i++) {
1774 if (!nic->snicvf[i])
1777 nicvf_vf_stop(dev, nic->snicvf[i], cleanup);
1780 /* Stop the primary VF now */
1781 nicvf_vf_stop(dev, nic, cleanup);
1783 /* Disable loopback */
1784 ret = nicvf_loopback_config(nic, 0);
1786 PMD_INIT_LOG(ERR, "Failed to disable loopback %d", ret);
1788 /* Reclaim CPI configuration */
1789 ret = nicvf_mbox_config_cpi(nic, 0);
1791 PMD_INIT_LOG(ERR, "Failed to reclaim CPI config %d", ret);
1795 nicvf_dev_stop(struct rte_eth_dev *dev)
1797 PMD_INIT_FUNC_TRACE();
1799 nicvf_dev_stop_cleanup(dev, false);
1805 nicvf_vf_stop(struct rte_eth_dev *dev, struct nicvf *nic, bool cleanup)
1809 uint16_t tx_start, tx_end;
1810 uint16_t rx_start, rx_end;
1812 PMD_INIT_FUNC_TRACE();
1815 /* Let PF make the BGX's RX and TX switches to OFF position */
1816 nicvf_mbox_shutdown(nic);
1819 /* Disable VLAN Strip */
1820 nicvf_vlan_hw_strip(nic, 0);
1822 /* Get queue ranges for this VF */
1823 nicvf_tx_range(dev, nic, &tx_start, &tx_end);
1825 for (qidx = tx_start; qidx <= tx_end; qidx++)
1826 nicvf_vf_stop_tx_queue(dev, nic, qidx % MAX_SND_QUEUES_PER_QS);
1828 /* Get queue ranges for this VF */
1829 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
1832 for (qidx = rx_start; qidx <= rx_end; qidx++)
1833 nicvf_vf_stop_rx_queue(dev, nic, qidx % MAX_RCV_QUEUES_PER_QS);
1836 ret = nicvf_qset_rbdr_reclaim(nic, 0);
1838 PMD_INIT_LOG(ERR, "Failed to reclaim RBDR %d", ret);
1840 /* Move all charged buffers in RBDR back to pool */
1841 if (nic->rbdr != NULL)
1842 nicvf_rbdr_release_mbufs(dev, nic);
1845 ret = nicvf_qset_reclaim(nic);
1847 PMD_INIT_LOG(ERR, "Failed to disable qset %d", ret);
1849 /* Disable all interrupts */
1850 nicvf_disable_all_interrupts(nic);
1852 /* Free RBDR SW structure */
1854 rte_free(nic->rbdr);
1860 nicvf_dev_close(struct rte_eth_dev *dev)
1863 struct nicvf *nic = nicvf_pmd_priv(dev);
1865 PMD_INIT_FUNC_TRACE();
1866 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1869 nicvf_dev_stop_cleanup(dev, true);
1870 nicvf_periodic_alarm_stop(nicvf_interrupt, dev);
1872 for (i = 0; i < nic->sqs_count; i++) {
1873 if (!nic->snicvf[i])
1876 nicvf_periodic_alarm_stop(nicvf_vf_interrupt, nic->snicvf[i]);
1883 nicvf_request_sqs(struct nicvf *nic)
1887 assert_primary(nic);
1888 assert(nic->sqs_count > 0);
1889 assert(nic->sqs_count <= MAX_SQS_PER_VF);
1891 /* Set no of Rx/Tx queues in each of the SQsets */
1892 for (i = 0; i < nic->sqs_count; i++) {
1893 if (nicvf_svf_empty())
1894 rte_panic("Cannot assign sufficient number of "
1895 "secondary queues to primary VF%" PRIu8 "\n",
1898 nic->snicvf[i] = nicvf_svf_pop();
1899 nic->snicvf[i]->sqs_id = i;
1902 return nicvf_mbox_request_sqs(nic);
1906 nicvf_dev_configure(struct rte_eth_dev *dev)
1908 struct rte_eth_dev_data *data = dev->data;
1909 struct rte_eth_conf *conf = &data->dev_conf;
1910 struct rte_eth_rxmode *rxmode = &conf->rxmode;
1911 struct rte_eth_txmode *txmode = &conf->txmode;
1912 struct nicvf *nic = nicvf_pmd_priv(dev);
1915 PMD_INIT_FUNC_TRACE();
1917 if (rxmode->mq_mode & ETH_MQ_RX_RSS_FLAG)
1918 rxmode->offloads |= DEV_RX_OFFLOAD_RSS_HASH;
1920 if (!rte_eal_has_hugepages()) {
1921 PMD_INIT_LOG(INFO, "Huge page is not configured");
1925 if (txmode->mq_mode) {
1926 PMD_INIT_LOG(INFO, "Tx mq_mode DCB or VMDq not supported");
1930 if (rxmode->mq_mode != ETH_MQ_RX_NONE &&
1931 rxmode->mq_mode != ETH_MQ_RX_RSS) {
1932 PMD_INIT_LOG(INFO, "Unsupported rx qmode %d", rxmode->mq_mode);
1936 if (rxmode->split_hdr_size) {
1937 PMD_INIT_LOG(INFO, "Rxmode does not support split header");
1941 if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
1942 PMD_INIT_LOG(INFO, "Setting link speed/duplex not supported");
1946 if (conf->dcb_capability_en) {
1947 PMD_INIT_LOG(INFO, "DCB enable not supported");
1951 if (conf->fdir_conf.mode != RTE_FDIR_MODE_NONE) {
1952 PMD_INIT_LOG(INFO, "Flow director not supported");
1956 assert_primary(nic);
1957 NICVF_STATIC_ASSERT(MAX_RCV_QUEUES_PER_QS == MAX_SND_QUEUES_PER_QS);
1958 cqcount = RTE_MAX(data->nb_tx_queues, data->nb_rx_queues);
1959 if (cqcount > MAX_RCV_QUEUES_PER_QS) {
1960 nic->sqs_count = RTE_ALIGN_CEIL(cqcount, MAX_RCV_QUEUES_PER_QS);
1961 nic->sqs_count = (nic->sqs_count / MAX_RCV_QUEUES_PER_QS) - 1;
1966 assert(nic->sqs_count <= MAX_SQS_PER_VF);
1968 if (nic->sqs_count > 0) {
1969 if (nicvf_request_sqs(nic)) {
1970 rte_panic("Cannot assign sufficient number of "
1971 "secondary queues to PORT%d VF%" PRIu8 "\n",
1972 dev->data->port_id, nic->vf_id);
1976 if (rxmode->offloads & DEV_RX_OFFLOAD_CHECKSUM)
1977 nic->offload_cksum = 1;
1979 PMD_INIT_LOG(DEBUG, "Configured ethdev port%d hwcap=0x%" PRIx64,
1980 dev->data->port_id, nicvf_hw_cap(nic));
1986 nicvf_dev_set_link_up(struct rte_eth_dev *dev)
1988 struct nicvf *nic = nicvf_pmd_priv(dev);
1991 rc = nicvf_mbox_set_link_up_down(nic, true);
1995 /* Start tx queues */
1996 for (i = 0; i < dev->data->nb_tx_queues; i++)
1997 nicvf_dev_tx_queue_start(dev, i);
2004 nicvf_dev_set_link_down(struct rte_eth_dev *dev)
2006 struct nicvf *nic = nicvf_pmd_priv(dev);
2009 /* Stop tx queues */
2010 for (i = 0; i < dev->data->nb_tx_queues; i++)
2011 nicvf_dev_tx_queue_stop(dev, i);
2013 return nicvf_mbox_set_link_up_down(nic, false);
2016 /* Initialize and register driver with DPDK Application */
2017 static const struct eth_dev_ops nicvf_eth_dev_ops = {
2018 .dev_configure = nicvf_dev_configure,
2019 .dev_start = nicvf_dev_start,
2020 .dev_stop = nicvf_dev_stop,
2021 .link_update = nicvf_dev_link_update,
2022 .dev_close = nicvf_dev_close,
2023 .stats_get = nicvf_dev_stats_get,
2024 .stats_reset = nicvf_dev_stats_reset,
2025 .promiscuous_enable = nicvf_dev_promisc_enable,
2026 .dev_infos_get = nicvf_dev_info_get,
2027 .dev_supported_ptypes_get = nicvf_dev_supported_ptypes_get,
2028 .mtu_set = nicvf_dev_set_mtu,
2029 .vlan_offload_set = nicvf_vlan_offload_set,
2030 .reta_update = nicvf_dev_reta_update,
2031 .reta_query = nicvf_dev_reta_query,
2032 .rss_hash_update = nicvf_dev_rss_hash_update,
2033 .rss_hash_conf_get = nicvf_dev_rss_hash_conf_get,
2034 .rx_queue_start = nicvf_dev_rx_queue_start,
2035 .rx_queue_stop = nicvf_dev_rx_queue_stop,
2036 .tx_queue_start = nicvf_dev_tx_queue_start,
2037 .tx_queue_stop = nicvf_dev_tx_queue_stop,
2038 .rx_queue_setup = nicvf_dev_rx_queue_setup,
2039 .rx_queue_release = nicvf_dev_rx_queue_release,
2040 .tx_queue_setup = nicvf_dev_tx_queue_setup,
2041 .tx_queue_release = nicvf_dev_tx_queue_release,
2042 .dev_set_link_up = nicvf_dev_set_link_up,
2043 .dev_set_link_down = nicvf_dev_set_link_down,
2044 .get_reg = nicvf_dev_get_regs,
2048 nicvf_vlan_offload_config(struct rte_eth_dev *dev, int mask)
2050 struct rte_eth_rxmode *rxmode;
2051 struct nicvf *nic = nicvf_pmd_priv(dev);
2052 rxmode = &dev->data->dev_conf.rxmode;
2053 if (mask & ETH_VLAN_STRIP_MASK) {
2054 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2055 nicvf_vlan_hw_strip(nic, true);
2057 nicvf_vlan_hw_strip(nic, false);
2064 nicvf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2066 nicvf_vlan_offload_config(dev, mask);
2072 nicvf_set_first_skip(struct rte_eth_dev *dev)
2074 int bytes_to_skip = 0;
2077 struct rte_kvargs *kvlist;
2078 static const char *const skip[] = {
2081 struct nicvf *nic = nicvf_pmd_priv(dev);
2083 if (!dev->device->devargs) {
2084 nicvf_first_skip_config(nic, 0);
2088 kvlist = rte_kvargs_parse(dev->device->devargs->args, skip);
2092 if (kvlist->count == 0)
2095 for (i = 0; i != kvlist->count; ++i) {
2096 const struct rte_kvargs_pair *pair = &kvlist->pairs[i];
2098 if (!strcmp(pair->key, SKIP_DATA_BYTES))
2099 bytes_to_skip = atoi(pair->value);
2102 /*128 bytes amounts to one cache line*/
2103 if (bytes_to_skip >= 0 && bytes_to_skip < 128) {
2104 if (!(bytes_to_skip % 8)) {
2105 nicvf_first_skip_config(nic, (bytes_to_skip / 8));
2106 nic->skip_bytes = bytes_to_skip;
2109 PMD_INIT_LOG(ERR, "skip_data_bytes should be multiple of 8");
2114 PMD_INIT_LOG(ERR, "skip_data_bytes should be less than 128");
2119 nicvf_first_skip_config(nic, 0);
2121 rte_kvargs_free(kvlist);
2125 nicvf_eth_dev_uninit(struct rte_eth_dev *dev)
2127 PMD_INIT_FUNC_TRACE();
2128 nicvf_dev_close(dev);
2132 nicvf_eth_dev_init(struct rte_eth_dev *eth_dev)
2135 struct rte_pci_device *pci_dev;
2136 struct nicvf *nic = nicvf_pmd_priv(eth_dev);
2138 PMD_INIT_FUNC_TRACE();
2140 eth_dev->dev_ops = &nicvf_eth_dev_ops;
2141 eth_dev->rx_queue_count = nicvf_dev_rx_queue_count;
2143 /* For secondary processes, the primary has done all the work */
2144 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2146 /* Setup callbacks for secondary process */
2147 nicvf_set_tx_function(eth_dev);
2148 nicvf_set_rx_function(eth_dev);
2151 /* If nic == NULL than it is secondary function
2152 * so ethdev need to be released by caller */
2157 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
2158 rte_eth_copy_pci_info(eth_dev, pci_dev);
2159 eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
2161 nic->device_id = pci_dev->id.device_id;
2162 nic->vendor_id = pci_dev->id.vendor_id;
2163 nic->subsystem_device_id = pci_dev->id.subsystem_device_id;
2164 nic->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
2166 PMD_INIT_LOG(DEBUG, "nicvf: device (%x:%x) %u:%u:%u:%u",
2167 pci_dev->id.vendor_id, pci_dev->id.device_id,
2168 pci_dev->addr.domain, pci_dev->addr.bus,
2169 pci_dev->addr.devid, pci_dev->addr.function);
2171 nic->reg_base = (uintptr_t)pci_dev->mem_resource[0].addr;
2172 if (!nic->reg_base) {
2173 PMD_INIT_LOG(ERR, "Failed to map BAR0");
2178 nicvf_disable_all_interrupts(nic);
2180 ret = nicvf_periodic_alarm_start(nicvf_interrupt, eth_dev);
2182 PMD_INIT_LOG(ERR, "Failed to start period alarm");
2186 ret = nicvf_mbox_check_pf_ready(nic);
2188 PMD_INIT_LOG(ERR, "Failed to get ready message from PF");
2192 "node=%d vf=%d mode=%s sqs=%s loopback_supported=%s",
2193 nic->node, nic->vf_id,
2194 nic->tns_mode == NIC_TNS_MODE ? "tns" : "tns-bypass",
2195 nic->sqs_mode ? "true" : "false",
2196 nic->loopback_supported ? "true" : "false"
2200 ret = nicvf_base_init(nic);
2202 PMD_INIT_LOG(ERR, "Failed to execute nicvf_base_init");
2206 if (nic->sqs_mode) {
2207 /* Push nic to stack of secondary vfs */
2208 nicvf_svf_push(nic);
2210 /* Steal nic pointer from the device for further reuse */
2211 eth_dev->data->dev_private = NULL;
2213 nicvf_periodic_alarm_stop(nicvf_interrupt, eth_dev);
2214 ret = nicvf_periodic_alarm_start(nicvf_vf_interrupt, nic);
2216 PMD_INIT_LOG(ERR, "Failed to start period alarm");
2220 /* Detach port by returning positive error number */
2224 eth_dev->data->mac_addrs = rte_zmalloc("mac_addr",
2225 RTE_ETHER_ADDR_LEN, 0);
2226 if (eth_dev->data->mac_addrs == NULL) {
2227 PMD_INIT_LOG(ERR, "Failed to allocate memory for mac addr");
2231 if (rte_is_zero_ether_addr((struct rte_ether_addr *)nic->mac_addr))
2232 rte_eth_random_addr(&nic->mac_addr[0]);
2234 rte_ether_addr_copy((struct rte_ether_addr *)nic->mac_addr,
2235 ð_dev->data->mac_addrs[0]);
2237 ret = nicvf_mbox_set_mac_addr(nic, nic->mac_addr);
2239 PMD_INIT_LOG(ERR, "Failed to set mac addr");
2243 ret = nicvf_set_first_skip(eth_dev);
2245 PMD_INIT_LOG(ERR, "Failed to configure first skip");
2248 PMD_INIT_LOG(INFO, "Port %d (%x:%x) mac=" RTE_ETHER_ADDR_PRT_FMT,
2249 eth_dev->data->port_id, nic->vendor_id, nic->device_id,
2250 nic->mac_addr[0], nic->mac_addr[1], nic->mac_addr[2],
2251 nic->mac_addr[3], nic->mac_addr[4], nic->mac_addr[5]);
2256 rte_free(eth_dev->data->mac_addrs);
2257 eth_dev->data->mac_addrs = NULL;
2259 nicvf_periodic_alarm_stop(nicvf_interrupt, eth_dev);
2264 static const struct rte_pci_id pci_id_nicvf_map[] = {
2266 .class_id = RTE_CLASS_ANY_ID,
2267 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2268 .device_id = PCI_DEVICE_ID_THUNDERX_CN88XX_PASS1_NICVF,
2269 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2270 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN88XX_PASS1_NICVF,
2273 .class_id = RTE_CLASS_ANY_ID,
2274 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2275 .device_id = PCI_DEVICE_ID_THUNDERX_NICVF,
2276 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2277 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN88XX_PASS2_NICVF,
2280 .class_id = RTE_CLASS_ANY_ID,
2281 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2282 .device_id = PCI_DEVICE_ID_THUNDERX_NICVF,
2283 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2284 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN81XX_NICVF,
2287 .class_id = RTE_CLASS_ANY_ID,
2288 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2289 .device_id = PCI_DEVICE_ID_THUNDERX_NICVF,
2290 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2291 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN83XX_NICVF,
2298 static int nicvf_eth_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2299 struct rte_pci_device *pci_dev)
2301 return rte_eth_dev_pci_generic_probe(pci_dev, sizeof(struct nicvf),
2302 nicvf_eth_dev_init);
2305 static int nicvf_eth_pci_remove(struct rte_pci_device *pci_dev)
2307 return rte_eth_dev_pci_generic_remove(pci_dev, nicvf_eth_dev_uninit);
2310 static struct rte_pci_driver rte_nicvf_pmd = {
2311 .id_table = pci_id_nicvf_map,
2312 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_KEEP_MAPPED_RES |
2313 RTE_PCI_DRV_INTR_LSC,
2314 .probe = nicvf_eth_pci_probe,
2315 .remove = nicvf_eth_pci_remove,
2318 RTE_PMD_REGISTER_PCI(net_thunderx, rte_nicvf_pmd);
2319 RTE_PMD_REGISTER_PCI_TABLE(net_thunderx, pci_id_nicvf_map);
2320 RTE_PMD_REGISTER_KMOD_DEP(net_thunderx, "* igb_uio | uio_pci_generic | vfio-pci");
2321 RTE_PMD_REGISTER_PARAM_STRING(net_thunderx, SKIP_DATA_BYTES "=<int>");