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 <rte_ethdev_driver.h>
27 #include <rte_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 void 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(nicvf_logtype_mbox, pmd.net.thunderx.mbox, NOTICE);
55 RTE_LOG_REGISTER(nicvf_logtype_init, pmd.net.thunderx.init, NOTICE);
56 RTE_LOG_REGISTER(nicvf_logtype_driver, pmd.net.thunderx.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 > RTE_ETHER_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");
644 memset(rz->addr, 0, ring_size);
646 rbdr->phys = rz->iova;
649 rbdr->desc = rz->addr;
650 rbdr->buffsz = buffsz;
651 rbdr->qlen_mask = desc_cnt - 1;
653 nicvf_qset_base(nic, 0) + NIC_QSET_RBDR_0_1_STATUS0;
655 nicvf_qset_base(nic, 0) + NIC_QSET_RBDR_0_1_DOOR;
662 nicvf_rbdr_release_mbuf(struct rte_eth_dev *dev, struct nicvf *nic,
663 nicvf_iova_addr_t phy)
667 struct nicvf_rxq *rxq;
668 uint16_t rx_start, rx_end;
670 /* Get queue ranges for this VF */
671 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
673 for (qidx = rx_start; qidx <= rx_end; qidx++) {
674 rxq = dev->data->rx_queues[qidx];
675 if (rxq->precharge_cnt) {
676 obj = (void *)nicvf_mbuff_phy2virt(phy,
678 rte_mempool_put(rxq->pool, obj);
679 rxq->precharge_cnt--;
686 nicvf_rbdr_release_mbufs(struct rte_eth_dev *dev, struct nicvf *nic)
688 uint32_t qlen_mask, head;
689 struct rbdr_entry_t *entry;
690 struct nicvf_rbdr *rbdr = nic->rbdr;
692 qlen_mask = rbdr->qlen_mask;
694 while (head != rbdr->tail) {
695 entry = rbdr->desc + head;
696 nicvf_rbdr_release_mbuf(dev, nic, entry->full_addr);
698 head = head & qlen_mask;
703 nicvf_tx_queue_release_mbufs(struct nicvf_txq *txq)
708 while (head != txq->tail) {
709 if (txq->txbuffs[head]) {
710 rte_pktmbuf_free_seg(txq->txbuffs[head]);
711 txq->txbuffs[head] = NULL;
714 head = head & txq->qlen_mask;
719 nicvf_tx_queue_reset(struct nicvf_txq *txq)
721 uint32_t txq_desc_cnt = txq->qlen_mask + 1;
723 memset(txq->desc, 0, sizeof(union sq_entry_t) * txq_desc_cnt);
724 memset(txq->txbuffs, 0, sizeof(struct rte_mbuf *) * txq_desc_cnt);
731 nicvf_vf_start_tx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
734 struct nicvf_txq *txq;
737 assert(qidx < MAX_SND_QUEUES_PER_QS);
739 if (dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
740 RTE_ETH_QUEUE_STATE_STARTED)
743 txq = dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)];
745 ret = nicvf_qset_sq_config(nic, qidx, txq);
747 PMD_INIT_LOG(ERR, "Failed to configure sq VF%d %d %d",
748 nic->vf_id, qidx, ret);
749 goto config_sq_error;
752 dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
753 RTE_ETH_QUEUE_STATE_STARTED;
757 nicvf_qset_sq_reclaim(nic, qidx);
762 nicvf_vf_stop_tx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
765 struct nicvf_txq *txq;
768 assert(qidx < MAX_SND_QUEUES_PER_QS);
770 if (dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
771 RTE_ETH_QUEUE_STATE_STOPPED)
774 ret = nicvf_qset_sq_reclaim(nic, qidx);
776 PMD_INIT_LOG(ERR, "Failed to reclaim sq VF%d %d %d",
777 nic->vf_id, qidx, ret);
779 txq = dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)];
780 nicvf_tx_queue_release_mbufs(txq);
781 nicvf_tx_queue_reset(txq);
783 dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
784 RTE_ETH_QUEUE_STATE_STOPPED;
789 nicvf_configure_cpi(struct rte_eth_dev *dev)
791 struct nicvf *nic = nicvf_pmd_priv(dev);
795 /* Count started rx queues */
796 for (qidx = qcnt = 0; qidx < dev->data->nb_rx_queues; qidx++)
797 if (dev->data->rx_queue_state[qidx] ==
798 RTE_ETH_QUEUE_STATE_STARTED)
801 nic->cpi_alg = CPI_ALG_NONE;
802 ret = nicvf_mbox_config_cpi(nic, qcnt);
804 PMD_INIT_LOG(ERR, "Failed to configure CPI %d", ret);
810 nicvf_configure_rss(struct rte_eth_dev *dev)
812 struct nicvf *nic = nicvf_pmd_priv(dev);
816 rsshf = nicvf_rss_ethdev_to_nic(nic,
817 dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf);
818 PMD_DRV_LOG(INFO, "mode=%d rx_queues=%d loopback=%d rsshf=0x%" PRIx64,
819 dev->data->dev_conf.rxmode.mq_mode,
820 dev->data->nb_rx_queues,
821 dev->data->dev_conf.lpbk_mode, rsshf);
823 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_NONE)
824 ret = nicvf_rss_term(nic);
825 else if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS)
826 ret = nicvf_rss_config(nic, dev->data->nb_rx_queues, rsshf);
828 PMD_INIT_LOG(ERR, "Failed to configure RSS %d", ret);
834 nicvf_configure_rss_reta(struct rte_eth_dev *dev)
836 struct nicvf *nic = nicvf_pmd_priv(dev);
837 unsigned int idx, qmap_size;
838 uint8_t qmap[RTE_MAX_QUEUES_PER_PORT];
839 uint8_t default_reta[NIC_MAX_RSS_IDR_TBL_SIZE];
841 if (nic->cpi_alg != CPI_ALG_NONE)
844 /* Prepare queue map */
845 for (idx = 0, qmap_size = 0; idx < dev->data->nb_rx_queues; idx++) {
846 if (dev->data->rx_queue_state[idx] ==
847 RTE_ETH_QUEUE_STATE_STARTED)
848 qmap[qmap_size++] = idx;
851 /* Update default RSS RETA */
852 for (idx = 0; idx < NIC_MAX_RSS_IDR_TBL_SIZE; idx++)
853 default_reta[idx] = qmap[idx % qmap_size];
855 return nicvf_rss_reta_update(nic, default_reta,
856 NIC_MAX_RSS_IDR_TBL_SIZE);
860 nicvf_dev_tx_queue_release(void *sq)
862 struct nicvf_txq *txq;
864 PMD_INIT_FUNC_TRACE();
866 txq = (struct nicvf_txq *)sq;
868 if (txq->txbuffs != NULL) {
869 nicvf_tx_queue_release_mbufs(txq);
870 rte_free(txq->txbuffs);
878 nicvf_set_tx_function(struct rte_eth_dev *dev)
880 struct nicvf_txq *txq = NULL;
882 bool multiseg = false;
884 for (i = 0; i < dev->data->nb_tx_queues; i++) {
885 txq = dev->data->tx_queues[i];
886 if (txq->offloads & DEV_TX_OFFLOAD_MULTI_SEGS) {
892 /* Use a simple Tx queue (no offloads, no multi segs) if possible */
894 PMD_DRV_LOG(DEBUG, "Using multi-segment tx callback");
895 dev->tx_pkt_burst = nicvf_xmit_pkts_multiseg;
897 PMD_DRV_LOG(DEBUG, "Using single-segment tx callback");
898 dev->tx_pkt_burst = nicvf_xmit_pkts;
904 if (txq->pool_free == nicvf_single_pool_free_xmited_buffers)
905 PMD_DRV_LOG(DEBUG, "Using single-mempool tx free method");
907 PMD_DRV_LOG(DEBUG, "Using multi-mempool tx free method");
911 nicvf_set_rx_function(struct rte_eth_dev *dev)
913 struct nicvf *nic = nicvf_pmd_priv(dev);
915 const eth_rx_burst_t rx_burst_func[2][2][2] = {
916 /* [NORMAL/SCATTER] [CKSUM/NO_CKSUM] [VLAN_STRIP/NO_VLAN_STRIP] */
917 [0][0][0] = nicvf_recv_pkts_no_offload,
918 [0][0][1] = nicvf_recv_pkts_vlan_strip,
919 [0][1][0] = nicvf_recv_pkts_cksum,
920 [0][1][1] = nicvf_recv_pkts_cksum_vlan_strip,
921 [1][0][0] = nicvf_recv_pkts_multiseg_no_offload,
922 [1][0][1] = nicvf_recv_pkts_multiseg_vlan_strip,
923 [1][1][0] = nicvf_recv_pkts_multiseg_cksum,
924 [1][1][1] = nicvf_recv_pkts_multiseg_cksum_vlan_strip,
928 rx_burst_func[dev->data->scattered_rx]
929 [nic->offload_cksum][nic->vlan_strip];
933 nicvf_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
934 uint16_t nb_desc, unsigned int socket_id,
935 const struct rte_eth_txconf *tx_conf)
937 uint16_t tx_free_thresh;
939 struct nicvf_txq *txq;
940 struct nicvf *nic = nicvf_pmd_priv(dev);
943 PMD_INIT_FUNC_TRACE();
945 if (qidx >= MAX_SND_QUEUES_PER_QS)
946 nic = nic->snicvf[qidx / MAX_SND_QUEUES_PER_QS - 1];
948 qidx = qidx % MAX_SND_QUEUES_PER_QS;
950 /* Socket id check */
951 if (socket_id != (unsigned int)SOCKET_ID_ANY && socket_id != nic->node)
952 PMD_DRV_LOG(WARNING, "socket_id expected %d, configured %d",
953 socket_id, nic->node);
955 /* Tx deferred start is not supported */
956 if (tx_conf->tx_deferred_start) {
957 PMD_INIT_LOG(ERR, "Tx deferred start not supported");
961 /* Roundup nb_desc to available qsize and validate max number of desc */
962 nb_desc = nicvf_qsize_sq_roundup(nb_desc);
964 PMD_INIT_LOG(ERR, "Value of nb_desc beyond available sq qsize");
968 /* Validate tx_free_thresh */
969 tx_free_thresh = (uint16_t)((tx_conf->tx_free_thresh) ?
970 tx_conf->tx_free_thresh :
971 NICVF_DEFAULT_TX_FREE_THRESH);
973 if (tx_free_thresh > (nb_desc) ||
974 tx_free_thresh > NICVF_MAX_TX_FREE_THRESH) {
976 "tx_free_thresh must be less than the number of TX "
977 "descriptors. (tx_free_thresh=%u port=%d "
978 "queue=%d)", (unsigned int)tx_free_thresh,
979 (int)dev->data->port_id, (int)qidx);
983 /* Free memory prior to re-allocation if needed. */
984 if (dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)] != NULL) {
985 PMD_TX_LOG(DEBUG, "Freeing memory prior to re-allocation %d",
986 nicvf_netdev_qidx(nic, qidx));
987 nicvf_dev_tx_queue_release(
988 dev->data->tx_queues[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 /* Allocate software ring */
1023 txq->txbuffs = rte_zmalloc_socket("txq->txbuffs",
1024 nb_desc * sizeof(struct rte_mbuf *),
1025 RTE_CACHE_LINE_SIZE, nic->node);
1027 if (txq->txbuffs == NULL) {
1028 nicvf_dev_tx_queue_release(txq);
1032 if (nicvf_qset_sq_alloc(dev, nic, txq, qidx, nb_desc)) {
1033 PMD_INIT_LOG(ERR, "Failed to allocate mem for sq %d", qidx);
1034 nicvf_dev_tx_queue_release(txq);
1038 nicvf_tx_queue_reset(txq);
1040 PMD_INIT_LOG(DEBUG, "[%d] txq=%p nb_desc=%d desc=%p"
1041 " phys=0x%" PRIx64 " offloads=0x%" PRIx64,
1042 nicvf_netdev_qidx(nic, qidx), txq, nb_desc, txq->desc,
1043 txq->phys, txq->offloads);
1045 dev->data->tx_queues[nicvf_netdev_qidx(nic, qidx)] = txq;
1046 dev->data->tx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1047 RTE_ETH_QUEUE_STATE_STOPPED;
1052 nicvf_rx_queue_release_mbufs(struct rte_eth_dev *dev, struct nicvf_rxq *rxq)
1055 uint32_t nb_pkts, released_pkts = 0;
1056 uint32_t refill_cnt = 0;
1057 struct rte_mbuf *rx_pkts[NICVF_MAX_RX_FREE_THRESH];
1059 if (dev->rx_pkt_burst == NULL)
1062 while ((rxq_cnt = nicvf_dev_rx_queue_count(dev,
1063 nicvf_netdev_qidx(rxq->nic, rxq->queue_id)))) {
1064 nb_pkts = dev->rx_pkt_burst(rxq, rx_pkts,
1065 NICVF_MAX_RX_FREE_THRESH);
1066 PMD_DRV_LOG(INFO, "nb_pkts=%d rxq_cnt=%d", nb_pkts, rxq_cnt);
1068 rte_pktmbuf_free_seg(rx_pkts[--nb_pkts]);
1074 refill_cnt += nicvf_dev_rbdr_refill(dev,
1075 nicvf_netdev_qidx(rxq->nic, rxq->queue_id));
1077 PMD_DRV_LOG(INFO, "free_cnt=%d refill_cnt=%d",
1078 released_pkts, refill_cnt);
1082 nicvf_rx_queue_reset(struct nicvf_rxq *rxq)
1085 rxq->available_space = 0;
1086 rxq->recv_buffers = 0;
1090 nicvf_vf_start_rx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
1093 struct nicvf_rxq *rxq;
1096 assert(qidx < MAX_RCV_QUEUES_PER_QS);
1098 if (dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
1099 RTE_ETH_QUEUE_STATE_STARTED)
1102 /* Update rbdr pointer to all rxq */
1103 rxq = dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)];
1104 rxq->shared_rbdr = nic->rbdr;
1106 ret = nicvf_qset_rq_config(nic, qidx, rxq);
1108 PMD_INIT_LOG(ERR, "Failed to configure rq VF%d %d %d",
1109 nic->vf_id, qidx, ret);
1110 goto config_rq_error;
1112 ret = nicvf_qset_cq_config(nic, qidx, rxq);
1114 PMD_INIT_LOG(ERR, "Failed to configure cq VF%d %d %d",
1115 nic->vf_id, qidx, ret);
1116 goto config_cq_error;
1119 dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1120 RTE_ETH_QUEUE_STATE_STARTED;
1124 nicvf_qset_cq_reclaim(nic, qidx);
1126 nicvf_qset_rq_reclaim(nic, qidx);
1131 nicvf_vf_stop_rx_queue(struct rte_eth_dev *dev, struct nicvf *nic,
1134 struct nicvf_rxq *rxq;
1135 int ret, other_error;
1137 if (dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] ==
1138 RTE_ETH_QUEUE_STATE_STOPPED)
1141 ret = nicvf_qset_rq_reclaim(nic, qidx);
1143 PMD_INIT_LOG(ERR, "Failed to reclaim rq VF%d %d %d",
1144 nic->vf_id, qidx, ret);
1147 rxq = dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)];
1148 nicvf_rx_queue_release_mbufs(dev, rxq);
1149 nicvf_rx_queue_reset(rxq);
1151 ret = nicvf_qset_cq_reclaim(nic, qidx);
1153 PMD_INIT_LOG(ERR, "Failed to reclaim cq VF%d %d %d",
1154 nic->vf_id, qidx, ret);
1157 dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1158 RTE_ETH_QUEUE_STATE_STOPPED;
1163 nicvf_dev_rx_queue_release(void *rx_queue)
1165 PMD_INIT_FUNC_TRACE();
1171 nicvf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
1173 struct nicvf *nic = nicvf_pmd_priv(dev);
1176 if (qidx >= MAX_RCV_QUEUES_PER_QS)
1177 nic = nic->snicvf[(qidx / MAX_RCV_QUEUES_PER_QS - 1)];
1179 qidx = qidx % MAX_RCV_QUEUES_PER_QS;
1181 ret = nicvf_vf_start_rx_queue(dev, nic, qidx);
1185 ret = nicvf_configure_cpi(dev);
1189 return nicvf_configure_rss_reta(dev);
1193 nicvf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
1196 struct nicvf *nic = nicvf_pmd_priv(dev);
1198 if (qidx >= MAX_SND_QUEUES_PER_QS)
1199 nic = nic->snicvf[(qidx / MAX_SND_QUEUES_PER_QS - 1)];
1201 qidx = qidx % MAX_RCV_QUEUES_PER_QS;
1203 ret = nicvf_vf_stop_rx_queue(dev, nic, qidx);
1204 ret |= nicvf_configure_cpi(dev);
1205 ret |= nicvf_configure_rss_reta(dev);
1210 nicvf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t qidx)
1212 struct nicvf *nic = nicvf_pmd_priv(dev);
1214 if (qidx >= MAX_SND_QUEUES_PER_QS)
1215 nic = nic->snicvf[(qidx / MAX_SND_QUEUES_PER_QS - 1)];
1217 qidx = qidx % MAX_SND_QUEUES_PER_QS;
1219 return nicvf_vf_start_tx_queue(dev, nic, qidx);
1223 nicvf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t qidx)
1225 struct nicvf *nic = nicvf_pmd_priv(dev);
1227 if (qidx >= MAX_SND_QUEUES_PER_QS)
1228 nic = nic->snicvf[(qidx / MAX_SND_QUEUES_PER_QS - 1)];
1230 qidx = qidx % MAX_SND_QUEUES_PER_QS;
1232 return nicvf_vf_stop_tx_queue(dev, nic, qidx);
1236 nicvf_rxq_mbuf_setup(struct nicvf_rxq *rxq)
1239 struct rte_mbuf mb_def;
1240 struct nicvf *nic = rxq->nic;
1242 RTE_BUILD_BUG_ON(sizeof(union mbuf_initializer) != 8);
1243 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) % 8 != 0);
1244 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, refcnt) -
1245 offsetof(struct rte_mbuf, data_off) != 2);
1246 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, nb_segs) -
1247 offsetof(struct rte_mbuf, data_off) != 4);
1248 RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, port) -
1249 offsetof(struct rte_mbuf, data_off) != 6);
1250 RTE_BUILD_BUG_ON(offsetof(struct nicvf_rxq, rxq_fastpath_data_end) -
1251 offsetof(struct nicvf_rxq,
1252 rxq_fastpath_data_start) > 128);
1254 mb_def.data_off = RTE_PKTMBUF_HEADROOM + (nic->skip_bytes);
1255 mb_def.port = rxq->port_id;
1256 rte_mbuf_refcnt_set(&mb_def, 1);
1258 /* Prevent compiler reordering: rearm_data covers previous fields */
1259 rte_compiler_barrier();
1260 p = (uintptr_t)&mb_def.rearm_data;
1261 rxq->mbuf_initializer.value = *(uint64_t *)p;
1265 nicvf_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t qidx,
1266 uint16_t nb_desc, unsigned int socket_id,
1267 const struct rte_eth_rxconf *rx_conf,
1268 struct rte_mempool *mp)
1270 uint16_t rx_free_thresh;
1271 struct nicvf_rxq *rxq;
1272 struct nicvf *nic = nicvf_pmd_priv(dev);
1275 struct rte_pktmbuf_pool_private *mbp_priv;
1277 PMD_INIT_FUNC_TRACE();
1279 /* First skip check */
1280 mbp_priv = rte_mempool_get_priv(mp);
1281 buffsz = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
1282 if (buffsz < (uint32_t)(nic->skip_bytes)) {
1283 PMD_INIT_LOG(ERR, "First skip is more than configured buffer size");
1287 if (qidx >= MAX_RCV_QUEUES_PER_QS)
1288 nic = nic->snicvf[qidx / MAX_RCV_QUEUES_PER_QS - 1];
1290 qidx = qidx % MAX_RCV_QUEUES_PER_QS;
1292 /* Socket id check */
1293 if (socket_id != (unsigned int)SOCKET_ID_ANY && socket_id != nic->node)
1294 PMD_DRV_LOG(WARNING, "socket_id expected %d, configured %d",
1295 socket_id, nic->node);
1297 /* Mempool memory must be contiguous, so must be one memory segment*/
1298 if (mp->nb_mem_chunks != 1) {
1299 PMD_INIT_LOG(ERR, "Non-contiguous mempool, add more huge pages");
1303 /* Mempool memory must be physically contiguous */
1304 if (mp->flags & MEMPOOL_F_NO_IOVA_CONTIG) {
1305 PMD_INIT_LOG(ERR, "Mempool memory must be physically contiguous");
1309 /* Rx deferred start is not supported */
1310 if (rx_conf->rx_deferred_start) {
1311 PMD_INIT_LOG(ERR, "Rx deferred start not supported");
1315 /* Roundup nb_desc to available qsize and validate max number of desc */
1316 nb_desc = nicvf_qsize_cq_roundup(nb_desc);
1318 PMD_INIT_LOG(ERR, "Value nb_desc beyond available hw cq qsize");
1323 /* Check rx_free_thresh upper bound */
1324 rx_free_thresh = (uint16_t)((rx_conf->rx_free_thresh) ?
1325 rx_conf->rx_free_thresh :
1326 NICVF_DEFAULT_RX_FREE_THRESH);
1327 if (rx_free_thresh > NICVF_MAX_RX_FREE_THRESH ||
1328 rx_free_thresh >= nb_desc * .75) {
1329 PMD_INIT_LOG(ERR, "rx_free_thresh greater than expected %d",
1334 /* Free memory prior to re-allocation if needed */
1335 if (dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)] != NULL) {
1336 PMD_RX_LOG(DEBUG, "Freeing memory prior to re-allocation %d",
1337 nicvf_netdev_qidx(nic, qidx));
1338 nicvf_dev_rx_queue_release(
1339 dev->data->rx_queues[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 nicvf_rxq_mbuf_setup(rxq);
1369 /* Alloc completion queue */
1370 if (nicvf_qset_cq_alloc(dev, nic, rxq, rxq->queue_id, nb_desc)) {
1371 PMD_INIT_LOG(ERR, "failed to allocate cq %u", rxq->queue_id);
1372 nicvf_dev_rx_queue_release(rxq);
1376 nicvf_rx_queue_reset(rxq);
1378 offloads = rx_conf->offloads | dev->data->dev_conf.rxmode.offloads;
1379 PMD_INIT_LOG(DEBUG, "[%d] rxq=%p pool=%s nb_desc=(%d/%d)"
1380 " phy=0x%" PRIx64 " offloads=0x%" PRIx64,
1381 nicvf_netdev_qidx(nic, qidx), rxq, mp->name, nb_desc,
1382 rte_mempool_avail_count(mp), rxq->phys, offloads);
1384 dev->data->rx_queues[nicvf_netdev_qidx(nic, qidx)] = rxq;
1385 dev->data->rx_queue_state[nicvf_netdev_qidx(nic, qidx)] =
1386 RTE_ETH_QUEUE_STATE_STOPPED;
1391 nicvf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
1393 struct nicvf *nic = nicvf_pmd_priv(dev);
1394 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1396 PMD_INIT_FUNC_TRACE();
1398 /* Autonegotiation may be disabled */
1399 dev_info->speed_capa = ETH_LINK_SPEED_FIXED;
1400 dev_info->speed_capa |= ETH_LINK_SPEED_10M | ETH_LINK_SPEED_100M |
1401 ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
1402 if (nicvf_hw_version(nic) != PCI_SUB_DEVICE_ID_CN81XX_NICVF)
1403 dev_info->speed_capa |= ETH_LINK_SPEED_40G;
1405 dev_info->min_rx_bufsize = RTE_ETHER_MIN_MTU;
1406 dev_info->max_rx_pktlen = NIC_HW_MAX_MTU + RTE_ETHER_HDR_LEN;
1407 dev_info->max_rx_queues =
1408 (uint16_t)MAX_RCV_QUEUES_PER_QS * (MAX_SQS_PER_VF + 1);
1409 dev_info->max_tx_queues =
1410 (uint16_t)MAX_SND_QUEUES_PER_QS * (MAX_SQS_PER_VF + 1);
1411 dev_info->max_mac_addrs = 1;
1412 dev_info->max_vfs = pci_dev->max_vfs;
1414 dev_info->rx_offload_capa = NICVF_RX_OFFLOAD_CAPA;
1415 dev_info->tx_offload_capa = NICVF_TX_OFFLOAD_CAPA;
1416 dev_info->rx_queue_offload_capa = NICVF_RX_OFFLOAD_CAPA;
1417 dev_info->tx_queue_offload_capa = NICVF_TX_OFFLOAD_CAPA;
1419 dev_info->reta_size = nic->rss_info.rss_size;
1420 dev_info->hash_key_size = RSS_HASH_KEY_BYTE_SIZE;
1421 dev_info->flow_type_rss_offloads = NICVF_RSS_OFFLOAD_PASS1;
1422 if (nicvf_hw_cap(nic) & NICVF_CAP_TUNNEL_PARSING)
1423 dev_info->flow_type_rss_offloads |= NICVF_RSS_OFFLOAD_TUNNEL;
1425 dev_info->default_rxconf = (struct rte_eth_rxconf) {
1426 .rx_free_thresh = NICVF_DEFAULT_RX_FREE_THRESH,
1430 dev_info->default_txconf = (struct rte_eth_txconf) {
1431 .tx_free_thresh = NICVF_DEFAULT_TX_FREE_THRESH,
1432 .offloads = DEV_TX_OFFLOAD_MBUF_FAST_FREE |
1433 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
1434 DEV_TX_OFFLOAD_UDP_CKSUM |
1435 DEV_TX_OFFLOAD_TCP_CKSUM,
1441 static nicvf_iova_addr_t
1442 rbdr_rte_mempool_get(void *dev, void *opaque)
1446 struct nicvf_rxq *rxq;
1447 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)dev;
1448 struct nicvf *nic = (struct nicvf *)opaque;
1449 uint16_t rx_start, rx_end;
1451 /* Get queue ranges for this VF */
1452 nicvf_rx_range(eth_dev, nic, &rx_start, &rx_end);
1454 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1455 rxq = eth_dev->data->rx_queues[qidx];
1456 /* Maintain equal buffer count across all pools */
1457 if (rxq->precharge_cnt >= rxq->qlen_mask)
1459 rxq->precharge_cnt++;
1460 mbuf = (uintptr_t)rte_pktmbuf_alloc(rxq->pool);
1462 return nicvf_mbuff_virt2phy(mbuf, rxq->mbuf_phys_off);
1468 nicvf_vf_start(struct rte_eth_dev *dev, struct nicvf *nic, uint32_t rbdrsz)
1471 uint16_t qidx, data_off;
1472 uint32_t total_rxq_desc, nb_rbdr_desc, exp_buffs;
1473 uint64_t mbuf_phys_off = 0;
1474 struct nicvf_rxq *rxq;
1475 struct rte_mbuf *mbuf;
1476 uint16_t rx_start, rx_end;
1477 uint16_t tx_start, tx_end;
1480 PMD_INIT_FUNC_TRACE();
1482 /* Userspace process exited without proper shutdown in last run */
1483 if (nicvf_qset_rbdr_active(nic, 0))
1484 nicvf_vf_stop(dev, nic, false);
1486 /* Get queue ranges for this VF */
1487 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
1490 * Thunderx nicvf PMD can support more than one pool per port only when
1491 * 1) Data payload size is same across all the pools in given port
1493 * 2) All mbuffs in the pools are from the same hugepage
1495 * 3) Mbuff metadata size is same across all the pools in given port
1497 * This is to support existing application that uses multiple pool/port.
1498 * But, the purpose of using multipool for QoS will not be addressed.
1502 /* Validate mempool attributes */
1503 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1504 rxq = dev->data->rx_queues[qidx];
1505 rxq->mbuf_phys_off = nicvf_mempool_phy_offset(rxq->pool);
1506 mbuf = rte_pktmbuf_alloc(rxq->pool);
1508 PMD_INIT_LOG(ERR, "Failed allocate mbuf VF%d qid=%d "
1510 nic->vf_id, qidx, rxq->pool->name);
1513 data_off = nicvf_mbuff_meta_length(mbuf);
1514 data_off += RTE_PKTMBUF_HEADROOM;
1515 rte_pktmbuf_free(mbuf);
1517 if (data_off % RTE_CACHE_LINE_SIZE) {
1518 PMD_INIT_LOG(ERR, "%s: unaligned data_off=%d delta=%d",
1519 rxq->pool->name, data_off,
1520 data_off % RTE_CACHE_LINE_SIZE);
1523 rxq->mbuf_phys_off -= data_off;
1524 rxq->mbuf_phys_off -= nic->skip_bytes;
1526 if (mbuf_phys_off == 0)
1527 mbuf_phys_off = rxq->mbuf_phys_off;
1528 if (mbuf_phys_off != rxq->mbuf_phys_off) {
1529 PMD_INIT_LOG(ERR, "pool params not same,%s VF%d %"
1530 PRIx64, rxq->pool->name, nic->vf_id,
1536 /* Check the level of buffers in the pool */
1538 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1539 rxq = dev->data->rx_queues[qidx];
1540 /* Count total numbers of rxq descs */
1541 total_rxq_desc += rxq->qlen_mask + 1;
1542 exp_buffs = RTE_MEMPOOL_CACHE_MAX_SIZE + rxq->rx_free_thresh;
1543 exp_buffs *= dev->data->nb_rx_queues;
1544 if (rte_mempool_avail_count(rxq->pool) < exp_buffs) {
1545 PMD_INIT_LOG(ERR, "Buff shortage in pool=%s (%d/%d)",
1547 rte_mempool_avail_count(rxq->pool),
1553 /* Check RBDR desc overflow */
1554 ret = nicvf_qsize_rbdr_roundup(total_rxq_desc);
1556 PMD_INIT_LOG(ERR, "Reached RBDR desc limit, reduce nr desc "
1557 "VF%d", nic->vf_id);
1562 ret = nicvf_qset_config(nic);
1564 PMD_INIT_LOG(ERR, "Failed to enable qset %d VF%d", ret,
1569 /* Allocate RBDR and RBDR ring desc */
1570 nb_rbdr_desc = nicvf_qsize_rbdr_roundup(total_rxq_desc);
1571 ret = nicvf_qset_rbdr_alloc(dev, nic, nb_rbdr_desc, rbdrsz);
1573 PMD_INIT_LOG(ERR, "Failed to allocate memory for rbdr alloc "
1574 "VF%d", nic->vf_id);
1578 /* Enable and configure RBDR registers */
1579 ret = nicvf_qset_rbdr_config(nic, 0);
1581 PMD_INIT_LOG(ERR, "Failed to configure rbdr %d VF%d", ret,
1583 goto qset_rbdr_free;
1586 /* Fill rte_mempool buffers in RBDR pool and precharge it */
1587 ret = nicvf_qset_rbdr_precharge(dev, nic, 0, rbdr_rte_mempool_get,
1590 PMD_INIT_LOG(ERR, "Failed to fill rbdr %d VF%d", ret,
1592 goto qset_rbdr_reclaim;
1595 PMD_DRV_LOG(INFO, "Filled %d out of %d entries in RBDR VF%d",
1596 nic->rbdr->tail, nb_rbdr_desc, nic->vf_id);
1598 /* Configure VLAN Strip */
1599 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
1600 ETH_VLAN_EXTEND_MASK;
1601 ret = nicvf_vlan_offload_config(dev, mask);
1603 /* Based on the packet type(IPv4 or IPv6), the nicvf HW aligns L3 data
1604 * to the 64bit memory address.
1605 * The alignment creates a hole in mbuf(between the end of headroom and
1606 * packet data start). The new revision of the HW provides an option to
1607 * disable the L3 alignment feature and make mbuf layout looks
1608 * more like other NICs. For better application compatibility, disabling
1609 * l3 alignment feature on the hardware revisions it supports
1611 nicvf_apad_config(nic, false);
1613 /* Get queue ranges for this VF */
1614 nicvf_tx_range(dev, nic, &tx_start, &tx_end);
1616 /* Configure TX queues */
1617 for (qidx = tx_start; qidx <= tx_end; qidx++) {
1618 ret = nicvf_vf_start_tx_queue(dev, nic,
1619 qidx % MAX_SND_QUEUES_PER_QS);
1621 goto start_txq_error;
1624 /* Configure RX queues */
1625 for (qidx = rx_start; qidx <= rx_end; qidx++) {
1626 ret = nicvf_vf_start_rx_queue(dev, nic,
1627 qidx % MAX_RCV_QUEUES_PER_QS);
1629 goto start_rxq_error;
1632 if (!nic->sqs_mode) {
1633 /* Configure CPI algorithm */
1634 ret = nicvf_configure_cpi(dev);
1636 goto start_txq_error;
1638 ret = nicvf_mbox_get_rss_size(nic);
1640 PMD_INIT_LOG(ERR, "Failed to get rss table size");
1641 goto qset_rss_error;
1645 ret = nicvf_configure_rss(dev);
1647 goto qset_rss_error;
1650 /* Done; Let PF make the BGX's RX and TX switches to ON position */
1651 nicvf_mbox_cfg_done(nic);
1655 nicvf_rss_term(nic);
1657 for (qidx = rx_start; qidx <= rx_end; qidx++)
1658 nicvf_vf_stop_rx_queue(dev, nic, qidx % MAX_RCV_QUEUES_PER_QS);
1660 for (qidx = tx_start; qidx <= tx_end; qidx++)
1661 nicvf_vf_stop_tx_queue(dev, nic, qidx % MAX_SND_QUEUES_PER_QS);
1663 nicvf_qset_rbdr_reclaim(nic, 0);
1664 nicvf_rbdr_release_mbufs(dev, nic);
1667 rte_free(nic->rbdr);
1671 nicvf_qset_reclaim(nic);
1676 nicvf_dev_start(struct rte_eth_dev *dev)
1681 struct nicvf *nic = nicvf_pmd_priv(dev);
1682 struct rte_eth_rxmode *rx_conf = &dev->data->dev_conf.rxmode;
1684 uint32_t buffsz = 0, rbdrsz = 0;
1685 struct rte_pktmbuf_pool_private *mbp_priv;
1686 struct nicvf_rxq *rxq;
1688 PMD_INIT_FUNC_TRACE();
1690 /* This function must be called for a primary device */
1691 assert_primary(nic);
1693 /* Validate RBDR buff size */
1694 for (qidx = 0; qidx < dev->data->nb_rx_queues; qidx++) {
1695 rxq = dev->data->rx_queues[qidx];
1696 mbp_priv = rte_mempool_get_priv(rxq->pool);
1697 buffsz = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
1699 PMD_INIT_LOG(ERR, "rxbuf size must be multiply of 128");
1704 if (rbdrsz != buffsz) {
1705 PMD_INIT_LOG(ERR, "buffsz not same, qidx=%d (%d/%d)",
1706 qidx, rbdrsz, buffsz);
1711 /* Configure loopback */
1712 ret = nicvf_loopback_config(nic, dev->data->dev_conf.lpbk_mode);
1714 PMD_INIT_LOG(ERR, "Failed to configure loopback %d", ret);
1718 /* Reset all statistics counters attached to this port */
1719 ret = nicvf_mbox_reset_stat_counters(nic, 0x3FFF, 0x1F, 0xFFFF, 0xFFFF);
1721 PMD_INIT_LOG(ERR, "Failed to reset stat counters %d", ret);
1725 /* Setup scatter mode if needed by jumbo */
1726 if (dev->data->dev_conf.rxmode.max_rx_pkt_len +
1727 2 * VLAN_TAG_SIZE > buffsz)
1728 dev->data->scattered_rx = 1;
1729 if ((rx_conf->offloads & DEV_RX_OFFLOAD_SCATTER) != 0)
1730 dev->data->scattered_rx = 1;
1732 /* Setup MTU based on max_rx_pkt_len or default */
1733 mtu = dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME ?
1734 dev->data->dev_conf.rxmode.max_rx_pkt_len
1735 - RTE_ETHER_HDR_LEN : RTE_ETHER_MTU;
1737 if (nicvf_dev_set_mtu(dev, mtu)) {
1738 PMD_INIT_LOG(ERR, "Failed to set default mtu size");
1742 ret = nicvf_vf_start(dev, nic, rbdrsz);
1746 for (i = 0; i < nic->sqs_count; i++) {
1747 assert(nic->snicvf[i]);
1749 ret = nicvf_vf_start(dev, nic->snicvf[i], rbdrsz);
1754 /* Configure callbacks based on offloads */
1755 nicvf_set_tx_function(dev);
1756 nicvf_set_rx_function(dev);
1762 nicvf_dev_stop_cleanup(struct rte_eth_dev *dev, bool cleanup)
1766 struct nicvf *nic = nicvf_pmd_priv(dev);
1768 PMD_INIT_FUNC_TRACE();
1770 /* Teardown secondary vf first */
1771 for (i = 0; i < nic->sqs_count; i++) {
1772 if (!nic->snicvf[i])
1775 nicvf_vf_stop(dev, nic->snicvf[i], cleanup);
1778 /* Stop the primary VF now */
1779 nicvf_vf_stop(dev, nic, cleanup);
1781 /* Disable loopback */
1782 ret = nicvf_loopback_config(nic, 0);
1784 PMD_INIT_LOG(ERR, "Failed to disable loopback %d", ret);
1786 /* Reclaim CPI configuration */
1787 ret = nicvf_mbox_config_cpi(nic, 0);
1789 PMD_INIT_LOG(ERR, "Failed to reclaim CPI config %d", ret);
1793 nicvf_dev_stop(struct rte_eth_dev *dev)
1795 PMD_INIT_FUNC_TRACE();
1797 nicvf_dev_stop_cleanup(dev, false);
1801 nicvf_vf_stop(struct rte_eth_dev *dev, struct nicvf *nic, bool cleanup)
1805 uint16_t tx_start, tx_end;
1806 uint16_t rx_start, rx_end;
1808 PMD_INIT_FUNC_TRACE();
1811 /* Let PF make the BGX's RX and TX switches to OFF position */
1812 nicvf_mbox_shutdown(nic);
1815 /* Disable VLAN Strip */
1816 nicvf_vlan_hw_strip(nic, 0);
1818 /* Get queue ranges for this VF */
1819 nicvf_tx_range(dev, nic, &tx_start, &tx_end);
1821 for (qidx = tx_start; qidx <= tx_end; qidx++)
1822 nicvf_vf_stop_tx_queue(dev, nic, qidx % MAX_SND_QUEUES_PER_QS);
1824 /* Get queue ranges for this VF */
1825 nicvf_rx_range(dev, nic, &rx_start, &rx_end);
1828 for (qidx = rx_start; qidx <= rx_end; qidx++)
1829 nicvf_vf_stop_rx_queue(dev, nic, qidx % MAX_RCV_QUEUES_PER_QS);
1832 ret = nicvf_qset_rbdr_reclaim(nic, 0);
1834 PMD_INIT_LOG(ERR, "Failed to reclaim RBDR %d", ret);
1836 /* Move all charged buffers in RBDR back to pool */
1837 if (nic->rbdr != NULL)
1838 nicvf_rbdr_release_mbufs(dev, nic);
1841 ret = nicvf_qset_reclaim(nic);
1843 PMD_INIT_LOG(ERR, "Failed to disable qset %d", ret);
1845 /* Disable all interrupts */
1846 nicvf_disable_all_interrupts(nic);
1848 /* Free RBDR SW structure */
1850 rte_free(nic->rbdr);
1856 nicvf_dev_close(struct rte_eth_dev *dev)
1859 struct nicvf *nic = nicvf_pmd_priv(dev);
1861 PMD_INIT_FUNC_TRACE();
1863 nicvf_dev_stop_cleanup(dev, true);
1864 nicvf_periodic_alarm_stop(nicvf_interrupt, dev);
1866 for (i = 0; i < nic->sqs_count; i++) {
1867 if (!nic->snicvf[i])
1870 nicvf_periodic_alarm_stop(nicvf_vf_interrupt, nic->snicvf[i]);
1875 nicvf_request_sqs(struct nicvf *nic)
1879 assert_primary(nic);
1880 assert(nic->sqs_count > 0);
1881 assert(nic->sqs_count <= MAX_SQS_PER_VF);
1883 /* Set no of Rx/Tx queues in each of the SQsets */
1884 for (i = 0; i < nic->sqs_count; i++) {
1885 if (nicvf_svf_empty())
1886 rte_panic("Cannot assign sufficient number of "
1887 "secondary queues to primary VF%" PRIu8 "\n",
1890 nic->snicvf[i] = nicvf_svf_pop();
1891 nic->snicvf[i]->sqs_id = i;
1894 return nicvf_mbox_request_sqs(nic);
1898 nicvf_dev_configure(struct rte_eth_dev *dev)
1900 struct rte_eth_dev_data *data = dev->data;
1901 struct rte_eth_conf *conf = &data->dev_conf;
1902 struct rte_eth_rxmode *rxmode = &conf->rxmode;
1903 struct rte_eth_txmode *txmode = &conf->txmode;
1904 struct nicvf *nic = nicvf_pmd_priv(dev);
1907 PMD_INIT_FUNC_TRACE();
1909 if (rxmode->mq_mode & ETH_MQ_RX_RSS_FLAG)
1910 rxmode->offloads |= DEV_RX_OFFLOAD_RSS_HASH;
1912 if (!rte_eal_has_hugepages()) {
1913 PMD_INIT_LOG(INFO, "Huge page is not configured");
1917 if (txmode->mq_mode) {
1918 PMD_INIT_LOG(INFO, "Tx mq_mode DCB or VMDq not supported");
1922 if (rxmode->mq_mode != ETH_MQ_RX_NONE &&
1923 rxmode->mq_mode != ETH_MQ_RX_RSS) {
1924 PMD_INIT_LOG(INFO, "Unsupported rx qmode %d", rxmode->mq_mode);
1928 if (rxmode->split_hdr_size) {
1929 PMD_INIT_LOG(INFO, "Rxmode does not support split header");
1933 if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
1934 PMD_INIT_LOG(INFO, "Setting link speed/duplex not supported");
1938 if (conf->dcb_capability_en) {
1939 PMD_INIT_LOG(INFO, "DCB enable not supported");
1943 if (conf->fdir_conf.mode != RTE_FDIR_MODE_NONE) {
1944 PMD_INIT_LOG(INFO, "Flow director not supported");
1948 assert_primary(nic);
1949 NICVF_STATIC_ASSERT(MAX_RCV_QUEUES_PER_QS == MAX_SND_QUEUES_PER_QS);
1950 cqcount = RTE_MAX(data->nb_tx_queues, data->nb_rx_queues);
1951 if (cqcount > MAX_RCV_QUEUES_PER_QS) {
1952 nic->sqs_count = RTE_ALIGN_CEIL(cqcount, MAX_RCV_QUEUES_PER_QS);
1953 nic->sqs_count = (nic->sqs_count / MAX_RCV_QUEUES_PER_QS) - 1;
1958 assert(nic->sqs_count <= MAX_SQS_PER_VF);
1960 if (nic->sqs_count > 0) {
1961 if (nicvf_request_sqs(nic)) {
1962 rte_panic("Cannot assign sufficient number of "
1963 "secondary queues to PORT%d VF%" PRIu8 "\n",
1964 dev->data->port_id, nic->vf_id);
1968 if (rxmode->offloads & DEV_RX_OFFLOAD_CHECKSUM)
1969 nic->offload_cksum = 1;
1971 PMD_INIT_LOG(DEBUG, "Configured ethdev port%d hwcap=0x%" PRIx64,
1972 dev->data->port_id, nicvf_hw_cap(nic));
1978 nicvf_dev_set_link_up(struct rte_eth_dev *dev)
1980 struct nicvf *nic = nicvf_pmd_priv(dev);
1983 rc = nicvf_mbox_set_link_up_down(nic, true);
1987 /* Start tx queues */
1988 for (i = 0; i < dev->data->nb_tx_queues; i++)
1989 nicvf_dev_tx_queue_start(dev, i);
1996 nicvf_dev_set_link_down(struct rte_eth_dev *dev)
1998 struct nicvf *nic = nicvf_pmd_priv(dev);
2001 /* Stop tx queues */
2002 for (i = 0; i < dev->data->nb_tx_queues; i++)
2003 nicvf_dev_tx_queue_stop(dev, i);
2005 return nicvf_mbox_set_link_up_down(nic, false);
2008 /* Initialize and register driver with DPDK Application */
2009 static const struct eth_dev_ops nicvf_eth_dev_ops = {
2010 .dev_configure = nicvf_dev_configure,
2011 .dev_start = nicvf_dev_start,
2012 .dev_stop = nicvf_dev_stop,
2013 .link_update = nicvf_dev_link_update,
2014 .dev_close = nicvf_dev_close,
2015 .stats_get = nicvf_dev_stats_get,
2016 .stats_reset = nicvf_dev_stats_reset,
2017 .promiscuous_enable = nicvf_dev_promisc_enable,
2018 .dev_infos_get = nicvf_dev_info_get,
2019 .dev_supported_ptypes_get = nicvf_dev_supported_ptypes_get,
2020 .mtu_set = nicvf_dev_set_mtu,
2021 .vlan_offload_set = nicvf_vlan_offload_set,
2022 .reta_update = nicvf_dev_reta_update,
2023 .reta_query = nicvf_dev_reta_query,
2024 .rss_hash_update = nicvf_dev_rss_hash_update,
2025 .rss_hash_conf_get = nicvf_dev_rss_hash_conf_get,
2026 .rx_queue_start = nicvf_dev_rx_queue_start,
2027 .rx_queue_stop = nicvf_dev_rx_queue_stop,
2028 .tx_queue_start = nicvf_dev_tx_queue_start,
2029 .tx_queue_stop = nicvf_dev_tx_queue_stop,
2030 .rx_queue_setup = nicvf_dev_rx_queue_setup,
2031 .rx_queue_release = nicvf_dev_rx_queue_release,
2032 .rx_queue_count = nicvf_dev_rx_queue_count,
2033 .tx_queue_setup = nicvf_dev_tx_queue_setup,
2034 .tx_queue_release = nicvf_dev_tx_queue_release,
2035 .dev_set_link_up = nicvf_dev_set_link_up,
2036 .dev_set_link_down = nicvf_dev_set_link_down,
2037 .get_reg = nicvf_dev_get_regs,
2041 nicvf_vlan_offload_config(struct rte_eth_dev *dev, int mask)
2043 struct rte_eth_rxmode *rxmode;
2044 struct nicvf *nic = nicvf_pmd_priv(dev);
2045 rxmode = &dev->data->dev_conf.rxmode;
2046 if (mask & ETH_VLAN_STRIP_MASK) {
2047 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2048 nicvf_vlan_hw_strip(nic, true);
2050 nicvf_vlan_hw_strip(nic, false);
2057 nicvf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2059 nicvf_vlan_offload_config(dev, mask);
2065 nicvf_set_first_skip(struct rte_eth_dev *dev)
2067 int bytes_to_skip = 0;
2070 struct rte_kvargs *kvlist;
2071 static const char *const skip[] = {
2074 struct nicvf *nic = nicvf_pmd_priv(dev);
2076 if (!dev->device->devargs) {
2077 nicvf_first_skip_config(nic, 0);
2081 kvlist = rte_kvargs_parse(dev->device->devargs->args, skip);
2085 if (kvlist->count == 0)
2088 for (i = 0; i != kvlist->count; ++i) {
2089 const struct rte_kvargs_pair *pair = &kvlist->pairs[i];
2091 if (!strcmp(pair->key, SKIP_DATA_BYTES))
2092 bytes_to_skip = atoi(pair->value);
2095 /*128 bytes amounts to one cache line*/
2096 if (bytes_to_skip >= 0 && bytes_to_skip < 128) {
2097 if (!(bytes_to_skip % 8)) {
2098 nicvf_first_skip_config(nic, (bytes_to_skip / 8));
2099 nic->skip_bytes = bytes_to_skip;
2102 PMD_INIT_LOG(ERR, "skip_data_bytes should be multiple of 8");
2107 PMD_INIT_LOG(ERR, "skip_data_bytes should be less than 128");
2112 nicvf_first_skip_config(nic, 0);
2114 rte_kvargs_free(kvlist);
2118 nicvf_eth_dev_uninit(struct rte_eth_dev *dev)
2120 PMD_INIT_FUNC_TRACE();
2122 if (rte_eal_process_type() == RTE_PROC_PRIMARY)
2123 nicvf_dev_close(dev);
2128 nicvf_eth_dev_init(struct rte_eth_dev *eth_dev)
2131 struct rte_pci_device *pci_dev;
2132 struct nicvf *nic = nicvf_pmd_priv(eth_dev);
2134 PMD_INIT_FUNC_TRACE();
2136 eth_dev->dev_ops = &nicvf_eth_dev_ops;
2138 /* For secondary processes, the primary has done all the work */
2139 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2141 /* Setup callbacks for secondary process */
2142 nicvf_set_tx_function(eth_dev);
2143 nicvf_set_rx_function(eth_dev);
2146 /* If nic == NULL than it is secondary function
2147 * so ethdev need to be released by caller */
2152 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
2153 rte_eth_copy_pci_info(eth_dev, pci_dev);
2155 nic->device_id = pci_dev->id.device_id;
2156 nic->vendor_id = pci_dev->id.vendor_id;
2157 nic->subsystem_device_id = pci_dev->id.subsystem_device_id;
2158 nic->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
2160 PMD_INIT_LOG(DEBUG, "nicvf: device (%x:%x) %u:%u:%u:%u",
2161 pci_dev->id.vendor_id, pci_dev->id.device_id,
2162 pci_dev->addr.domain, pci_dev->addr.bus,
2163 pci_dev->addr.devid, pci_dev->addr.function);
2165 nic->reg_base = (uintptr_t)pci_dev->mem_resource[0].addr;
2166 if (!nic->reg_base) {
2167 PMD_INIT_LOG(ERR, "Failed to map BAR0");
2172 nicvf_disable_all_interrupts(nic);
2174 ret = nicvf_periodic_alarm_start(nicvf_interrupt, eth_dev);
2176 PMD_INIT_LOG(ERR, "Failed to start period alarm");
2180 ret = nicvf_mbox_check_pf_ready(nic);
2182 PMD_INIT_LOG(ERR, "Failed to get ready message from PF");
2186 "node=%d vf=%d mode=%s sqs=%s loopback_supported=%s",
2187 nic->node, nic->vf_id,
2188 nic->tns_mode == NIC_TNS_MODE ? "tns" : "tns-bypass",
2189 nic->sqs_mode ? "true" : "false",
2190 nic->loopback_supported ? "true" : "false"
2194 ret = nicvf_base_init(nic);
2196 PMD_INIT_LOG(ERR, "Failed to execute nicvf_base_init");
2200 if (nic->sqs_mode) {
2201 /* Push nic to stack of secondary vfs */
2202 nicvf_svf_push(nic);
2204 /* Steal nic pointer from the device for further reuse */
2205 eth_dev->data->dev_private = NULL;
2207 nicvf_periodic_alarm_stop(nicvf_interrupt, eth_dev);
2208 ret = nicvf_periodic_alarm_start(nicvf_vf_interrupt, nic);
2210 PMD_INIT_LOG(ERR, "Failed to start period alarm");
2214 /* Detach port by returning positive error number */
2218 eth_dev->data->mac_addrs = rte_zmalloc("mac_addr",
2219 RTE_ETHER_ADDR_LEN, 0);
2220 if (eth_dev->data->mac_addrs == NULL) {
2221 PMD_INIT_LOG(ERR, "Failed to allocate memory for mac addr");
2225 if (rte_is_zero_ether_addr((struct rte_ether_addr *)nic->mac_addr))
2226 rte_eth_random_addr(&nic->mac_addr[0]);
2228 rte_ether_addr_copy((struct rte_ether_addr *)nic->mac_addr,
2229 ð_dev->data->mac_addrs[0]);
2231 ret = nicvf_mbox_set_mac_addr(nic, nic->mac_addr);
2233 PMD_INIT_LOG(ERR, "Failed to set mac addr");
2237 ret = nicvf_set_first_skip(eth_dev);
2239 PMD_INIT_LOG(ERR, "Failed to configure first skip");
2242 PMD_INIT_LOG(INFO, "Port %d (%x:%x) mac=%02x:%02x:%02x:%02x:%02x:%02x",
2243 eth_dev->data->port_id, nic->vendor_id, nic->device_id,
2244 nic->mac_addr[0], nic->mac_addr[1], nic->mac_addr[2],
2245 nic->mac_addr[3], nic->mac_addr[4], nic->mac_addr[5]);
2250 rte_free(eth_dev->data->mac_addrs);
2251 eth_dev->data->mac_addrs = NULL;
2253 nicvf_periodic_alarm_stop(nicvf_interrupt, eth_dev);
2258 static const struct rte_pci_id pci_id_nicvf_map[] = {
2260 .class_id = RTE_CLASS_ANY_ID,
2261 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2262 .device_id = PCI_DEVICE_ID_THUNDERX_CN88XX_PASS1_NICVF,
2263 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2264 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN88XX_PASS1_NICVF,
2267 .class_id = RTE_CLASS_ANY_ID,
2268 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2269 .device_id = PCI_DEVICE_ID_THUNDERX_NICVF,
2270 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2271 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN88XX_PASS2_NICVF,
2274 .class_id = RTE_CLASS_ANY_ID,
2275 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2276 .device_id = PCI_DEVICE_ID_THUNDERX_NICVF,
2277 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2278 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN81XX_NICVF,
2281 .class_id = RTE_CLASS_ANY_ID,
2282 .vendor_id = PCI_VENDOR_ID_CAVIUM,
2283 .device_id = PCI_DEVICE_ID_THUNDERX_NICVF,
2284 .subsystem_vendor_id = PCI_VENDOR_ID_CAVIUM,
2285 .subsystem_device_id = PCI_SUB_DEVICE_ID_CN83XX_NICVF,
2292 static int nicvf_eth_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2293 struct rte_pci_device *pci_dev)
2295 return rte_eth_dev_pci_generic_probe(pci_dev, sizeof(struct nicvf),
2296 nicvf_eth_dev_init);
2299 static int nicvf_eth_pci_remove(struct rte_pci_device *pci_dev)
2301 return rte_eth_dev_pci_generic_remove(pci_dev, nicvf_eth_dev_uninit);
2304 static struct rte_pci_driver rte_nicvf_pmd = {
2305 .id_table = pci_id_nicvf_map,
2306 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_KEEP_MAPPED_RES |
2307 RTE_PCI_DRV_INTR_LSC,
2308 .probe = nicvf_eth_pci_probe,
2309 .remove = nicvf_eth_pci_remove,
2312 RTE_PMD_REGISTER_PCI(net_thunderx, rte_nicvf_pmd);
2313 RTE_PMD_REGISTER_PCI_TABLE(net_thunderx, pci_id_nicvf_map);
2314 RTE_PMD_REGISTER_KMOD_DEP(net_thunderx, "* igb_uio | uio_pci_generic | vfio-pci");
2315 RTE_PMD_REGISTER_PARAM_STRING(net_thunderx, SKIP_DATA_BYTES "=<int>");