1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018-2019 Hisilicon Limited.
11 #include <arpa/inet.h>
12 #include <linux/pci_regs.h>
14 #include <rte_alarm.h>
15 #include <rte_atomic.h>
16 #include <rte_bus_pci.h>
17 #include <rte_byteorder.h>
18 #include <rte_common.h>
19 #include <rte_cycles.h>
22 #include <rte_ether.h>
23 #include <rte_ethdev_driver.h>
24 #include <rte_ethdev_pci.h>
25 #include <rte_interrupts.h>
31 #include "hns3_ethdev.h"
32 #include "hns3_logs.h"
33 #include "hns3_rxtx.h"
34 #include "hns3_regs.h"
35 #include "hns3_intr.h"
39 #define HNS3VF_KEEP_ALIVE_INTERVAL 2000000 /* us */
40 #define HNS3VF_SERVICE_INTERVAL 1000000 /* us */
42 #define HNS3VF_RESET_WAIT_MS 20
43 #define HNS3VF_RESET_WAIT_CNT 2000
45 /* Reset related Registers */
46 #define HNS3_GLOBAL_RESET_BIT 0
47 #define HNS3_CORE_RESET_BIT 1
48 #define HNS3_IMP_RESET_BIT 2
49 #define HNS3_FUN_RST_ING_B 0
51 enum hns3vf_evt_cause {
52 HNS3VF_VECTOR0_EVENT_RST,
53 HNS3VF_VECTOR0_EVENT_MBX,
54 HNS3VF_VECTOR0_EVENT_OTHER,
57 static enum hns3_reset_level hns3vf_get_reset_level(struct hns3_hw *hw,
59 static int hns3vf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
60 static int hns3vf_dev_configure_vlan(struct rte_eth_dev *dev);
62 static int hns3vf_add_mc_mac_addr(struct hns3_hw *hw,
63 struct rte_ether_addr *mac_addr);
64 static int hns3vf_remove_mc_mac_addr(struct hns3_hw *hw,
65 struct rte_ether_addr *mac_addr);
66 /* set PCI bus mastering */
68 hns3vf_set_bus_master(const struct rte_pci_device *device, bool op)
73 ret = rte_pci_read_config(device, ®, sizeof(reg), PCI_COMMAND);
75 PMD_INIT_LOG(ERR, "Failed to read PCI offset 0x%x",
81 /* set the master bit */
82 reg |= PCI_COMMAND_MASTER;
84 reg &= ~(PCI_COMMAND_MASTER);
86 return rte_pci_write_config(device, ®, sizeof(reg), PCI_COMMAND);
90 * hns3vf_find_pci_capability - lookup a capability in the PCI capability list
91 * @cap: the capability
93 * Return the address of the given capability within the PCI capability list.
96 hns3vf_find_pci_capability(const struct rte_pci_device *device, int cap)
98 #define MAX_PCIE_CAPABILITY 48
105 ret = rte_pci_read_config(device, &status, sizeof(status), PCI_STATUS);
107 PMD_INIT_LOG(ERR, "Failed to read PCI offset 0x%x", PCI_STATUS);
111 if (!(status & PCI_STATUS_CAP_LIST))
114 ttl = MAX_PCIE_CAPABILITY;
115 ret = rte_pci_read_config(device, &pos, sizeof(pos),
116 PCI_CAPABILITY_LIST);
118 PMD_INIT_LOG(ERR, "Failed to read PCI offset 0x%x",
119 PCI_CAPABILITY_LIST);
123 while (ttl-- && pos >= PCI_STD_HEADER_SIZEOF) {
124 ret = rte_pci_read_config(device, &id, sizeof(id),
125 (pos + PCI_CAP_LIST_ID));
127 PMD_INIT_LOG(ERR, "Failed to read PCI offset 0x%x",
128 (pos + PCI_CAP_LIST_ID));
138 ret = rte_pci_read_config(device, &pos, sizeof(pos),
139 (pos + PCI_CAP_LIST_NEXT));
141 PMD_INIT_LOG(ERR, "Failed to read PCI offset 0x%x",
142 (pos + PCI_CAP_LIST_NEXT));
150 hns3vf_enable_msix(const struct rte_pci_device *device, bool op)
156 pos = hns3vf_find_pci_capability(device, PCI_CAP_ID_MSIX);
158 ret = rte_pci_read_config(device, &control, sizeof(control),
159 (pos + PCI_MSIX_FLAGS));
161 PMD_INIT_LOG(ERR, "Failed to read PCI offset 0x%x",
162 (pos + PCI_MSIX_FLAGS));
167 control |= PCI_MSIX_FLAGS_ENABLE;
169 control &= ~PCI_MSIX_FLAGS_ENABLE;
170 rte_pci_write_config(device, &control, sizeof(control),
171 (pos + PCI_MSIX_FLAGS));
178 hns3vf_add_uc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
180 /* mac address was checked by upper level interface */
181 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
184 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_UNICAST,
185 HNS3_MBX_MAC_VLAN_UC_ADD, mac_addr->addr_bytes,
186 RTE_ETHER_ADDR_LEN, false, NULL, 0);
188 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
190 hns3_err(hw, "failed to add uc mac addr(%s), ret = %d",
197 hns3vf_remove_uc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
199 /* mac address was checked by upper level interface */
200 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
203 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_UNICAST,
204 HNS3_MBX_MAC_VLAN_UC_REMOVE,
205 mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN,
208 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
210 hns3_err(hw, "failed to add uc mac addr(%s), ret = %d",
217 hns3vf_add_mc_addr_common(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
219 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
220 struct rte_ether_addr *addr;
224 for (i = 0; i < hw->mc_addrs_num; i++) {
225 addr = &hw->mc_addrs[i];
226 /* Check if there are duplicate addresses */
227 if (rte_is_same_ether_addr(addr, mac_addr)) {
228 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
230 hns3_err(hw, "failed to add mc mac addr, same addrs"
231 "(%s) is added by the set_mc_mac_addr_list "
237 ret = hns3vf_add_mc_mac_addr(hw, mac_addr);
239 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
241 hns3_err(hw, "failed to add mc mac addr(%s), ret = %d",
248 hns3vf_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
249 __rte_unused uint32_t idx,
250 __rte_unused uint32_t pool)
252 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
253 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
256 rte_spinlock_lock(&hw->lock);
259 * In hns3 network engine adding UC and MC mac address with different
260 * commands with firmware. We need to determine whether the input
261 * address is a UC or a MC address to call different commands.
262 * By the way, it is recommended calling the API function named
263 * rte_eth_dev_set_mc_addr_list to set the MC mac address, because
264 * using the rte_eth_dev_mac_addr_add API function to set MC mac address
265 * may affect the specifications of UC mac addresses.
267 if (rte_is_multicast_ether_addr(mac_addr))
268 ret = hns3vf_add_mc_addr_common(hw, mac_addr);
270 ret = hns3vf_add_uc_mac_addr(hw, mac_addr);
272 rte_spinlock_unlock(&hw->lock);
274 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
276 hns3_err(hw, "failed to add mac addr(%s), ret = %d", mac_str,
284 hns3vf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t idx)
286 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
287 /* index will be checked by upper level rte interface */
288 struct rte_ether_addr *mac_addr = &dev->data->mac_addrs[idx];
289 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
292 rte_spinlock_lock(&hw->lock);
294 if (rte_is_multicast_ether_addr(mac_addr))
295 ret = hns3vf_remove_mc_mac_addr(hw, mac_addr);
297 ret = hns3vf_remove_uc_mac_addr(hw, mac_addr);
299 rte_spinlock_unlock(&hw->lock);
301 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
303 hns3_err(hw, "failed to remove mac addr(%s), ret = %d",
309 hns3vf_set_default_mac_addr(struct rte_eth_dev *dev,
310 struct rte_ether_addr *mac_addr)
312 #define HNS3_TWO_ETHER_ADDR_LEN (RTE_ETHER_ADDR_LEN * 2)
313 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
314 struct rte_ether_addr *old_addr;
315 uint8_t addr_bytes[HNS3_TWO_ETHER_ADDR_LEN]; /* for 2 MAC addresses */
316 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
320 * It has been guaranteed that input parameter named mac_addr is valid
321 * address in the rte layer of DPDK framework.
323 old_addr = (struct rte_ether_addr *)hw->mac.mac_addr;
324 rte_spinlock_lock(&hw->lock);
325 memcpy(addr_bytes, mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN);
326 memcpy(&addr_bytes[RTE_ETHER_ADDR_LEN], old_addr->addr_bytes,
329 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_UNICAST,
330 HNS3_MBX_MAC_VLAN_UC_MODIFY, addr_bytes,
331 HNS3_TWO_ETHER_ADDR_LEN, true, NULL, 0);
334 * The hns3 VF PMD driver depends on the hns3 PF kernel ethdev
335 * driver. When user has configured a MAC address for VF device
336 * by "ip link set ..." command based on the PF device, the hns3
337 * PF kernel ethdev driver does not allow VF driver to request
338 * reconfiguring a different default MAC address, and return
339 * -EPREM to VF driver through mailbox.
342 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
344 hns3_warn(hw, "Has permanet mac addr(%s) for vf",
347 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
349 hns3_err(hw, "Failed to set mac addr(%s) for vf: %d",
354 rte_ether_addr_copy(mac_addr,
355 (struct rte_ether_addr *)hw->mac.mac_addr);
356 rte_spinlock_unlock(&hw->lock);
362 hns3vf_configure_mac_addr(struct hns3_adapter *hns, bool del)
364 struct hns3_hw *hw = &hns->hw;
365 struct rte_ether_addr *addr;
366 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
371 for (i = 0; i < HNS3_VF_UC_MACADDR_NUM; i++) {
372 addr = &hw->data->mac_addrs[i];
373 if (rte_is_zero_ether_addr(addr))
375 if (rte_is_multicast_ether_addr(addr))
376 ret = del ? hns3vf_remove_mc_mac_addr(hw, addr) :
377 hns3vf_add_mc_mac_addr(hw, addr);
379 ret = del ? hns3vf_remove_uc_mac_addr(hw, addr) :
380 hns3vf_add_uc_mac_addr(hw, addr);
384 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
386 hns3_err(hw, "failed to %s mac addr(%s) index:%d "
387 "ret = %d.", del ? "remove" : "restore",
395 hns3vf_add_mc_mac_addr(struct hns3_hw *hw,
396 struct rte_ether_addr *mac_addr)
398 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
401 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_MULTICAST,
402 HNS3_MBX_MAC_VLAN_MC_ADD,
403 mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN, false,
406 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
408 hns3_err(hw, "Failed to add mc mac addr(%s) for vf: %d",
416 hns3vf_remove_mc_mac_addr(struct hns3_hw *hw,
417 struct rte_ether_addr *mac_addr)
419 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
422 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_MULTICAST,
423 HNS3_MBX_MAC_VLAN_MC_REMOVE,
424 mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN, false,
427 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
429 hns3_err(hw, "Failed to remove mc mac addr(%s) for vf: %d",
437 hns3vf_set_mc_addr_chk_param(struct hns3_hw *hw,
438 struct rte_ether_addr *mc_addr_set,
441 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
442 struct rte_ether_addr *addr;
446 if (nb_mc_addr > HNS3_MC_MACADDR_NUM) {
447 hns3_err(hw, "failed to set mc mac addr, nb_mc_addr(%d) "
448 "invalid. valid range: 0~%d",
449 nb_mc_addr, HNS3_MC_MACADDR_NUM);
453 /* Check if input mac addresses are valid */
454 for (i = 0; i < nb_mc_addr; i++) {
455 addr = &mc_addr_set[i];
456 if (!rte_is_multicast_ether_addr(addr)) {
457 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
460 "failed to set mc mac addr, addr(%s) invalid.",
465 /* Check if there are duplicate addresses */
466 for (j = i + 1; j < nb_mc_addr; j++) {
467 if (rte_is_same_ether_addr(addr, &mc_addr_set[j])) {
468 rte_ether_format_addr(mac_str,
469 RTE_ETHER_ADDR_FMT_SIZE,
471 hns3_err(hw, "failed to set mc mac addr, "
472 "addrs invalid. two same addrs(%s).",
479 * Check if there are duplicate addresses between mac_addrs
482 for (j = 0; j < HNS3_VF_UC_MACADDR_NUM; j++) {
483 if (rte_is_same_ether_addr(addr,
484 &hw->data->mac_addrs[j])) {
485 rte_ether_format_addr(mac_str,
486 RTE_ETHER_ADDR_FMT_SIZE,
488 hns3_err(hw, "failed to set mc mac addr, "
489 "addrs invalid. addrs(%s) has already "
490 "configured in mac_addr add API",
501 hns3vf_set_mc_mac_addr_list(struct rte_eth_dev *dev,
502 struct rte_ether_addr *mc_addr_set,
505 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
506 struct rte_ether_addr *addr;
513 ret = hns3vf_set_mc_addr_chk_param(hw, mc_addr_set, nb_mc_addr);
517 rte_spinlock_lock(&hw->lock);
518 cur_addr_num = hw->mc_addrs_num;
519 for (i = 0; i < cur_addr_num; i++) {
520 num = cur_addr_num - i - 1;
521 addr = &hw->mc_addrs[num];
522 ret = hns3vf_remove_mc_mac_addr(hw, addr);
524 rte_spinlock_unlock(&hw->lock);
531 set_addr_num = (int)nb_mc_addr;
532 for (i = 0; i < set_addr_num; i++) {
533 addr = &mc_addr_set[i];
534 ret = hns3vf_add_mc_mac_addr(hw, addr);
536 rte_spinlock_unlock(&hw->lock);
540 rte_ether_addr_copy(addr, &hw->mc_addrs[hw->mc_addrs_num]);
543 rte_spinlock_unlock(&hw->lock);
549 hns3vf_configure_all_mc_mac_addr(struct hns3_adapter *hns, bool del)
551 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
552 struct hns3_hw *hw = &hns->hw;
553 struct rte_ether_addr *addr;
558 for (i = 0; i < hw->mc_addrs_num; i++) {
559 addr = &hw->mc_addrs[i];
560 if (!rte_is_multicast_ether_addr(addr))
563 ret = hns3vf_remove_mc_mac_addr(hw, addr);
565 ret = hns3vf_add_mc_mac_addr(hw, addr);
568 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
570 hns3_err(hw, "Failed to %s mc mac addr: %s for vf: %d",
571 del ? "Remove" : "Restore", mac_str, ret);
578 hns3vf_set_promisc_mode(struct hns3_hw *hw, bool en_bc_pmc,
579 bool en_uc_pmc, bool en_mc_pmc)
581 struct hns3_mbx_vf_to_pf_cmd *req;
582 struct hns3_cmd_desc desc;
585 req = (struct hns3_mbx_vf_to_pf_cmd *)desc.data;
588 * The hns3 VF PMD driver depends on the hns3 PF kernel ethdev driver,
589 * so there are some features for promiscuous/allmulticast mode in hns3
590 * VF PMD driver as below:
591 * 1. The promiscuous/allmulticast mode can be configured successfully
592 * only based on the trusted VF device. If based on the non trusted
593 * VF device, configuring promiscuous/allmulticast mode will fail.
594 * The hns3 VF device can be confiruged as trusted device by hns3 PF
595 * kernel ethdev driver on the host by the following command:
596 * "ip link set <eth num> vf <vf id> turst on"
597 * 2. After the promiscuous mode is configured successfully, hns3 VF PMD
598 * driver can receive the ingress and outgoing traffic. In the words,
599 * all the ingress packets, all the packets sent from the PF and
600 * other VFs on the same physical port.
601 * 3. Note: Because of the hardware constraints, By default vlan filter
602 * is enabled and couldn't be turned off based on VF device, so vlan
603 * filter is still effective even in promiscuous mode. If upper
604 * applications don't call rte_eth_dev_vlan_filter API function to
605 * set vlan based on VF device, hns3 VF PMD driver will can't receive
606 * the packets with vlan tag in promiscuoue mode.
608 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MBX_VF_TO_PF, false);
609 req->msg[0] = HNS3_MBX_SET_PROMISC_MODE;
610 req->msg[1] = en_bc_pmc ? 1 : 0;
611 req->msg[2] = en_uc_pmc ? 1 : 0;
612 req->msg[3] = en_mc_pmc ? 1 : 0;
614 ret = hns3_cmd_send(hw, &desc, 1);
616 hns3_err(hw, "Set promisc mode fail, ret = %d", ret);
622 hns3vf_dev_promiscuous_enable(struct rte_eth_dev *dev)
624 struct hns3_adapter *hns = dev->data->dev_private;
625 struct hns3_hw *hw = &hns->hw;
628 ret = hns3vf_set_promisc_mode(hw, true, true, true);
630 hns3_err(hw, "Failed to enable promiscuous mode, ret = %d",
636 hns3vf_dev_promiscuous_disable(struct rte_eth_dev *dev)
638 bool allmulti = dev->data->all_multicast ? true : false;
639 struct hns3_adapter *hns = dev->data->dev_private;
640 struct hns3_hw *hw = &hns->hw;
643 ret = hns3vf_set_promisc_mode(hw, true, false, allmulti);
645 hns3_err(hw, "Failed to disable promiscuous mode, ret = %d",
651 hns3vf_dev_allmulticast_enable(struct rte_eth_dev *dev)
653 struct hns3_adapter *hns = dev->data->dev_private;
654 struct hns3_hw *hw = &hns->hw;
657 if (dev->data->promiscuous)
660 ret = hns3vf_set_promisc_mode(hw, true, false, true);
662 hns3_err(hw, "Failed to enable allmulticast mode, ret = %d",
668 hns3vf_dev_allmulticast_disable(struct rte_eth_dev *dev)
670 struct hns3_adapter *hns = dev->data->dev_private;
671 struct hns3_hw *hw = &hns->hw;
674 if (dev->data->promiscuous)
677 ret = hns3vf_set_promisc_mode(hw, true, false, false);
679 hns3_err(hw, "Failed to disable allmulticast mode, ret = %d",
685 hns3vf_restore_promisc(struct hns3_adapter *hns)
687 struct hns3_hw *hw = &hns->hw;
688 bool allmulti = hw->data->all_multicast ? true : false;
690 if (hw->data->promiscuous)
691 return hns3vf_set_promisc_mode(hw, true, true, true);
693 return hns3vf_set_promisc_mode(hw, true, false, allmulti);
697 hns3vf_bind_ring_with_vector(struct hns3_hw *hw, uint8_t vector_id,
698 bool mmap, enum hns3_ring_type queue_type,
701 struct hns3_vf_bind_vector_msg bind_msg;
706 memset(&bind_msg, 0, sizeof(bind_msg));
707 code = mmap ? HNS3_MBX_MAP_RING_TO_VECTOR :
708 HNS3_MBX_UNMAP_RING_TO_VECTOR;
709 bind_msg.vector_id = vector_id;
711 if (queue_type == HNS3_RING_TYPE_RX)
712 bind_msg.param[0].int_gl_index = HNS3_RING_GL_RX;
714 bind_msg.param[0].int_gl_index = HNS3_RING_GL_TX;
716 bind_msg.param[0].ring_type = queue_type;
717 bind_msg.ring_num = 1;
718 bind_msg.param[0].tqp_index = queue_id;
719 op_str = mmap ? "Map" : "Unmap";
720 ret = hns3_send_mbx_msg(hw, code, 0, (uint8_t *)&bind_msg,
721 sizeof(bind_msg), false, NULL, 0);
723 hns3_err(hw, "%s TQP %d fail, vector_id is %d, ret is %d.",
724 op_str, queue_id, bind_msg.vector_id, ret);
730 hns3vf_init_ring_with_vector(struct hns3_hw *hw)
737 * In hns3 network engine, vector 0 is always the misc interrupt of this
738 * function, vector 1~N can be used respectively for the queues of the
739 * function. Tx and Rx queues with the same number share the interrupt
740 * vector. In the initialization clearing the all hardware mapping
741 * relationship configurations between queues and interrupt vectors is
742 * needed, so some error caused by the residual configurations, such as
743 * the unexpected Tx interrupt, can be avoid.
745 vec = hw->num_msi - 1; /* vector 0 for misc interrupt, not for queue */
746 if (hw->intr.mapping_mode == HNS3_INTR_MAPPING_VEC_RSV_ONE)
747 vec = vec - 1; /* the last interrupt is reserved */
748 hw->intr_tqps_num = RTE_MIN(vec, hw->tqps_num);
749 for (i = 0; i < hw->intr_tqps_num; i++) {
751 * Set gap limiter/rate limiter/quanity limiter algorithm
752 * configuration for interrupt coalesce of queue's interrupt.
754 hns3_set_queue_intr_gl(hw, i, HNS3_RING_GL_RX,
755 HNS3_TQP_INTR_GL_DEFAULT);
756 hns3_set_queue_intr_gl(hw, i, HNS3_RING_GL_TX,
757 HNS3_TQP_INTR_GL_DEFAULT);
758 hns3_set_queue_intr_rl(hw, i, HNS3_TQP_INTR_RL_DEFAULT);
759 hns3_set_queue_intr_ql(hw, i, HNS3_TQP_INTR_QL_DEFAULT);
761 ret = hns3vf_bind_ring_with_vector(hw, vec, false,
762 HNS3_RING_TYPE_TX, i);
764 PMD_INIT_LOG(ERR, "VF fail to unbind TX ring(%d) with "
765 "vector: %d, ret=%d", i, vec, ret);
769 ret = hns3vf_bind_ring_with_vector(hw, vec, false,
770 HNS3_RING_TYPE_RX, i);
772 PMD_INIT_LOG(ERR, "VF fail to unbind RX ring(%d) with "
773 "vector: %d, ret=%d", i, vec, ret);
782 hns3vf_dev_configure(struct rte_eth_dev *dev)
784 struct hns3_adapter *hns = dev->data->dev_private;
785 struct hns3_hw *hw = &hns->hw;
786 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
787 struct rte_eth_conf *conf = &dev->data->dev_conf;
788 enum rte_eth_rx_mq_mode mq_mode = conf->rxmode.mq_mode;
789 uint16_t nb_rx_q = dev->data->nb_rx_queues;
790 uint16_t nb_tx_q = dev->data->nb_tx_queues;
791 struct rte_eth_rss_conf rss_conf;
796 hw->cfg_max_queues = RTE_MAX(nb_rx_q, nb_tx_q);
799 * Some versions of hardware network engine does not support
800 * individually enable/disable/reset the Tx or Rx queue. These devices
801 * must enable/disable/reset Tx and Rx queues at the same time. When the
802 * numbers of Tx queues allocated by upper applications are not equal to
803 * the numbers of Rx queues, driver needs to setup fake Tx or Rx queues
804 * to adjust numbers of Tx/Rx queues. otherwise, network engine can not
805 * work as usual. But these fake queues are imperceptible, and can not
806 * be used by upper applications.
808 if (!hns3_dev_indep_txrx_supported(hw)) {
809 ret = hns3_set_fake_rx_or_tx_queues(dev, nb_rx_q, nb_tx_q);
811 hns3_err(hw, "fail to set Rx/Tx fake queues, ret = %d.",
817 hw->adapter_state = HNS3_NIC_CONFIGURING;
818 if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
819 hns3_err(hw, "setting link speed/duplex not supported");
824 /* When RSS is not configured, redirect the packet queue 0 */
825 if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {
826 conf->rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
827 hw->rss_dis_flag = false;
828 rss_conf = conf->rx_adv_conf.rss_conf;
829 if (rss_conf.rss_key == NULL) {
830 rss_conf.rss_key = rss_cfg->key;
831 rss_conf.rss_key_len = HNS3_RSS_KEY_SIZE;
834 ret = hns3_dev_rss_hash_update(dev, &rss_conf);
840 * If jumbo frames are enabled, MTU needs to be refreshed
841 * according to the maximum RX packet length.
843 if (conf->rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
845 * Security of max_rx_pkt_len is guaranteed in dpdk frame.
846 * Maximum value of max_rx_pkt_len is HNS3_MAX_FRAME_LEN, so it
847 * can safely assign to "uint16_t" type variable.
849 mtu = (uint16_t)HNS3_PKTLEN_TO_MTU(conf->rxmode.max_rx_pkt_len);
850 ret = hns3vf_dev_mtu_set(dev, mtu);
853 dev->data->mtu = mtu;
856 ret = hns3vf_dev_configure_vlan(dev);
860 /* config hardware GRO */
861 gro_en = conf->rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO ? true : false;
862 ret = hns3_config_gro(hw, gro_en);
866 hns->rx_simple_allowed = true;
867 hns->rx_vec_allowed = true;
868 hns->tx_simple_allowed = true;
869 hns->tx_vec_allowed = true;
871 hns3_init_rx_ptype_tble(dev);
873 hw->adapter_state = HNS3_NIC_CONFIGURED;
877 (void)hns3_set_fake_rx_or_tx_queues(dev, 0, 0);
878 hw->adapter_state = HNS3_NIC_INITIALIZED;
884 hns3vf_config_mtu(struct hns3_hw *hw, uint16_t mtu)
888 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_MTU, 0, (const uint8_t *)&mtu,
889 sizeof(mtu), true, NULL, 0);
891 hns3_err(hw, "Failed to set mtu (%u) for vf: %d", mtu, ret);
897 hns3vf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
899 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
900 uint32_t frame_size = mtu + HNS3_ETH_OVERHEAD;
904 * The hns3 PF/VF devices on the same port share the hardware MTU
905 * configuration. Currently, we send mailbox to inform hns3 PF kernel
906 * ethdev driver to finish hardware MTU configuration in hns3 VF PMD
907 * driver, there is no need to stop the port for hns3 VF device, and the
908 * MTU value issued by hns3 VF PMD driver must be less than or equal to
911 if (rte_atomic16_read(&hw->reset.resetting)) {
912 hns3_err(hw, "Failed to set mtu during resetting");
917 * when Rx of scattered packets is off, we have some possibility of
918 * using vector Rx process function or simple Rx functions in hns3 PMD
919 * driver. If the input MTU is increased and the maximum length of
920 * received packets is greater than the length of a buffer for Rx
921 * packet, the hardware network engine needs to use multiple BDs and
922 * buffers to store these packets. This will cause problems when still
923 * using vector Rx process function or simple Rx function to receiving
924 * packets. So, when Rx of scattered packets is off and device is
925 * started, it is not permitted to increase MTU so that the maximum
926 * length of Rx packets is greater than Rx buffer length.
928 if (dev->data->dev_started && !dev->data->scattered_rx &&
929 frame_size > hw->rx_buf_len) {
930 hns3_err(hw, "failed to set mtu because current is "
931 "not scattered rx mode");
935 rte_spinlock_lock(&hw->lock);
936 ret = hns3vf_config_mtu(hw, mtu);
938 rte_spinlock_unlock(&hw->lock);
941 if (frame_size > RTE_ETHER_MAX_LEN)
942 dev->data->dev_conf.rxmode.offloads |=
943 DEV_RX_OFFLOAD_JUMBO_FRAME;
945 dev->data->dev_conf.rxmode.offloads &=
946 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
947 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
948 rte_spinlock_unlock(&hw->lock);
954 hns3vf_dev_infos_get(struct rte_eth_dev *eth_dev, struct rte_eth_dev_info *info)
956 struct hns3_adapter *hns = eth_dev->data->dev_private;
957 struct hns3_hw *hw = &hns->hw;
958 uint16_t q_num = hw->tqps_num;
961 * In interrupt mode, 'max_rx_queues' is set based on the number of
962 * MSI-X interrupt resources of the hardware.
964 if (hw->data->dev_conf.intr_conf.rxq == 1)
965 q_num = hw->intr_tqps_num;
967 info->max_rx_queues = q_num;
968 info->max_tx_queues = hw->tqps_num;
969 info->max_rx_pktlen = HNS3_MAX_FRAME_LEN; /* CRC included */
970 info->min_rx_bufsize = HNS3_MIN_BD_BUF_SIZE;
971 info->max_mac_addrs = HNS3_VF_UC_MACADDR_NUM;
972 info->max_mtu = info->max_rx_pktlen - HNS3_ETH_OVERHEAD;
973 info->max_lro_pkt_size = HNS3_MAX_LRO_SIZE;
975 info->rx_offload_capa = (DEV_RX_OFFLOAD_IPV4_CKSUM |
976 DEV_RX_OFFLOAD_UDP_CKSUM |
977 DEV_RX_OFFLOAD_TCP_CKSUM |
978 DEV_RX_OFFLOAD_SCTP_CKSUM |
979 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
980 DEV_RX_OFFLOAD_OUTER_UDP_CKSUM |
981 DEV_RX_OFFLOAD_SCATTER |
982 DEV_RX_OFFLOAD_VLAN_STRIP |
983 DEV_RX_OFFLOAD_VLAN_FILTER |
984 DEV_RX_OFFLOAD_JUMBO_FRAME |
985 DEV_RX_OFFLOAD_RSS_HASH |
986 DEV_RX_OFFLOAD_TCP_LRO);
987 info->tx_offload_capa = (DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
988 DEV_TX_OFFLOAD_IPV4_CKSUM |
989 DEV_TX_OFFLOAD_TCP_CKSUM |
990 DEV_TX_OFFLOAD_UDP_CKSUM |
991 DEV_TX_OFFLOAD_SCTP_CKSUM |
992 DEV_TX_OFFLOAD_MULTI_SEGS |
993 DEV_TX_OFFLOAD_TCP_TSO |
994 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
995 DEV_TX_OFFLOAD_GRE_TNL_TSO |
996 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
997 DEV_TX_OFFLOAD_MBUF_FAST_FREE |
998 hns3_txvlan_cap_get(hw));
1000 if (hns3_dev_indep_txrx_supported(hw))
1001 info->dev_capa = RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP |
1002 RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP;
1004 info->rx_desc_lim = (struct rte_eth_desc_lim) {
1005 .nb_max = HNS3_MAX_RING_DESC,
1006 .nb_min = HNS3_MIN_RING_DESC,
1007 .nb_align = HNS3_ALIGN_RING_DESC,
1010 info->tx_desc_lim = (struct rte_eth_desc_lim) {
1011 .nb_max = HNS3_MAX_RING_DESC,
1012 .nb_min = HNS3_MIN_RING_DESC,
1013 .nb_align = HNS3_ALIGN_RING_DESC,
1014 .nb_seg_max = HNS3_MAX_TSO_BD_PER_PKT,
1015 .nb_mtu_seg_max = hw->max_non_tso_bd_num,
1018 info->default_rxconf = (struct rte_eth_rxconf) {
1019 .rx_free_thresh = HNS3_DEFAULT_RX_FREE_THRESH,
1021 * If there are no available Rx buffer descriptors, incoming
1022 * packets are always dropped by hardware based on hns3 network
1028 info->default_txconf = (struct rte_eth_txconf) {
1029 .tx_rs_thresh = HNS3_DEFAULT_TX_RS_THRESH,
1033 info->vmdq_queue_num = 0;
1035 info->reta_size = HNS3_RSS_IND_TBL_SIZE;
1036 info->hash_key_size = HNS3_RSS_KEY_SIZE;
1037 info->flow_type_rss_offloads = HNS3_ETH_RSS_SUPPORT;
1038 info->default_rxportconf.ring_size = HNS3_DEFAULT_RING_DESC;
1039 info->default_txportconf.ring_size = HNS3_DEFAULT_RING_DESC;
1045 hns3vf_clear_event_cause(struct hns3_hw *hw, uint32_t regclr)
1047 hns3_write_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG, regclr);
1051 hns3vf_disable_irq0(struct hns3_hw *hw)
1053 hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 0);
1057 hns3vf_enable_irq0(struct hns3_hw *hw)
1059 hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 1);
1062 static enum hns3vf_evt_cause
1063 hns3vf_check_event_cause(struct hns3_adapter *hns, uint32_t *clearval)
1065 struct hns3_hw *hw = &hns->hw;
1066 enum hns3vf_evt_cause ret;
1067 uint32_t cmdq_stat_reg;
1068 uint32_t rst_ing_reg;
1071 /* Fetch the events from their corresponding regs */
1072 cmdq_stat_reg = hns3_read_dev(hw, HNS3_VECTOR0_CMDQ_STAT_REG);
1074 if (BIT(HNS3_VECTOR0_RST_INT_B) & cmdq_stat_reg) {
1075 rst_ing_reg = hns3_read_dev(hw, HNS3_FUN_RST_ING);
1076 hns3_warn(hw, "resetting reg: 0x%x", rst_ing_reg);
1077 hns3_atomic_set_bit(HNS3_VF_RESET, &hw->reset.pending);
1078 rte_atomic16_set(&hw->reset.disable_cmd, 1);
1079 val = hns3_read_dev(hw, HNS3_VF_RST_ING);
1080 hns3_write_dev(hw, HNS3_VF_RST_ING, val | HNS3_VF_RST_ING_BIT);
1081 val = cmdq_stat_reg & ~BIT(HNS3_VECTOR0_RST_INT_B);
1083 hw->reset.stats.global_cnt++;
1084 hns3_warn(hw, "Global reset detected, clear reset status");
1086 hns3_schedule_delayed_reset(hns);
1087 hns3_warn(hw, "Global reset detected, don't clear reset status");
1090 ret = HNS3VF_VECTOR0_EVENT_RST;
1094 /* Check for vector0 mailbox(=CMDQ RX) event source */
1095 if (BIT(HNS3_VECTOR0_RX_CMDQ_INT_B) & cmdq_stat_reg) {
1096 val = cmdq_stat_reg & ~BIT(HNS3_VECTOR0_RX_CMDQ_INT_B);
1097 ret = HNS3VF_VECTOR0_EVENT_MBX;
1102 ret = HNS3VF_VECTOR0_EVENT_OTHER;
1110 hns3vf_interrupt_handler(void *param)
1112 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1113 struct hns3_adapter *hns = dev->data->dev_private;
1114 struct hns3_hw *hw = &hns->hw;
1115 enum hns3vf_evt_cause event_cause;
1118 if (hw->irq_thread_id == 0)
1119 hw->irq_thread_id = pthread_self();
1121 /* Disable interrupt */
1122 hns3vf_disable_irq0(hw);
1124 /* Read out interrupt causes */
1125 event_cause = hns3vf_check_event_cause(hns, &clearval);
1127 switch (event_cause) {
1128 case HNS3VF_VECTOR0_EVENT_RST:
1129 hns3_schedule_reset(hns);
1131 case HNS3VF_VECTOR0_EVENT_MBX:
1132 hns3_dev_handle_mbx_msg(hw);
1138 /* Clear interrupt causes */
1139 hns3vf_clear_event_cause(hw, clearval);
1141 /* Enable interrupt */
1142 hns3vf_enable_irq0(hw);
1146 hns3vf_set_default_dev_specifications(struct hns3_hw *hw)
1148 hw->max_non_tso_bd_num = HNS3_MAX_NON_TSO_BD_PER_PKT;
1149 hw->rss_ind_tbl_size = HNS3_RSS_IND_TBL_SIZE;
1150 hw->rss_key_size = HNS3_RSS_KEY_SIZE;
1154 hns3vf_parse_dev_specifications(struct hns3_hw *hw, struct hns3_cmd_desc *desc)
1156 struct hns3_dev_specs_0_cmd *req0;
1158 req0 = (struct hns3_dev_specs_0_cmd *)desc[0].data;
1160 hw->max_non_tso_bd_num = req0->max_non_tso_bd_num;
1161 hw->rss_ind_tbl_size = rte_le_to_cpu_16(req0->rss_ind_tbl_size);
1162 hw->rss_key_size = rte_le_to_cpu_16(req0->rss_key_size);
1166 hns3vf_query_dev_specifications(struct hns3_hw *hw)
1168 struct hns3_cmd_desc desc[HNS3_QUERY_DEV_SPECS_BD_NUM];
1172 for (i = 0; i < HNS3_QUERY_DEV_SPECS_BD_NUM - 1; i++) {
1173 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_QUERY_DEV_SPECS,
1175 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1177 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_QUERY_DEV_SPECS, true);
1179 ret = hns3_cmd_send(hw, desc, HNS3_QUERY_DEV_SPECS_BD_NUM);
1183 hns3vf_parse_dev_specifications(hw, desc);
1189 hns3vf_get_capability(struct hns3_hw *hw)
1191 struct rte_pci_device *pci_dev;
1192 struct rte_eth_dev *eth_dev;
1196 eth_dev = &rte_eth_devices[hw->data->port_id];
1197 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1199 /* Get PCI revision id */
1200 ret = rte_pci_read_config(pci_dev, &revision, HNS3_PCI_REVISION_ID_LEN,
1201 HNS3_PCI_REVISION_ID);
1202 if (ret != HNS3_PCI_REVISION_ID_LEN) {
1203 PMD_INIT_LOG(ERR, "failed to read pci revision id, ret = %d",
1207 hw->revision = revision;
1209 if (revision < PCI_REVISION_ID_HIP09_A) {
1210 hns3vf_set_default_dev_specifications(hw);
1211 hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_RSV_ONE;
1212 hw->intr.coalesce_mode = HNS3_INTR_COALESCE_NON_QL;
1213 hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_2US;
1214 hw->tso_mode = HNS3_TSO_SW_CAL_PSEUDO_H_CSUM;
1215 hw->min_tx_pkt_len = HNS3_HIP08_MIN_TX_PKT_LEN;
1219 ret = hns3vf_query_dev_specifications(hw);
1222 "failed to query dev specifications, ret = %d",
1227 hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_ALL;
1228 hw->intr.coalesce_mode = HNS3_INTR_COALESCE_QL;
1229 hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_1US;
1230 hw->tso_mode = HNS3_TSO_HW_CAL_PSEUDO_H_CSUM;
1231 hw->min_tx_pkt_len = HNS3_HIP09_MIN_TX_PKT_LEN;
1237 hns3vf_check_tqp_info(struct hns3_hw *hw)
1239 if (hw->tqps_num == 0) {
1240 PMD_INIT_LOG(ERR, "Get invalid tqps_num(0) from PF.");
1244 if (hw->rss_size_max == 0) {
1245 PMD_INIT_LOG(ERR, "Get invalid rss_size_max(0) from PF.");
1249 hw->tqps_num = RTE_MIN(hw->rss_size_max, hw->tqps_num);
1255 hns3vf_get_port_base_vlan_filter_state(struct hns3_hw *hw)
1260 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_VLAN,
1261 HNS3_MBX_GET_PORT_BASE_VLAN_STATE, NULL, 0,
1262 true, &resp_msg, sizeof(resp_msg));
1264 if (ret == -ETIME) {
1266 * Getting current port based VLAN state from PF driver
1267 * will not affect VF driver's basic function. Because
1268 * the VF driver relies on hns3 PF kernel ether driver,
1269 * to avoid introducing compatibility issues with older
1270 * version of PF driver, no failure will be returned
1271 * when the return value is ETIME. This return value has
1272 * the following scenarios:
1273 * 1) Firmware didn't return the results in time
1274 * 2) the result return by firmware is timeout
1275 * 3) the older version of kernel side PF driver does
1276 * not support this mailbox message.
1277 * For scenarios 1 and 2, it is most likely that a
1278 * hardware error has occurred, or a hardware reset has
1279 * occurred. In this case, these errors will be caught
1280 * by other functions.
1282 PMD_INIT_LOG(WARNING,
1283 "failed to get PVID state for timeout, maybe "
1284 "kernel side PF driver doesn't support this "
1285 "mailbox message, or firmware didn't respond.");
1286 resp_msg = HNS3_PORT_BASE_VLAN_DISABLE;
1288 PMD_INIT_LOG(ERR, "failed to get port based VLAN state,"
1293 hw->port_base_vlan_cfg.state = resp_msg ?
1294 HNS3_PORT_BASE_VLAN_ENABLE : HNS3_PORT_BASE_VLAN_DISABLE;
1299 hns3vf_get_queue_info(struct hns3_hw *hw)
1301 #define HNS3VF_TQPS_RSS_INFO_LEN 6
1302 uint8_t resp_msg[HNS3VF_TQPS_RSS_INFO_LEN];
1305 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_QINFO, 0, NULL, 0, true,
1306 resp_msg, HNS3VF_TQPS_RSS_INFO_LEN);
1308 PMD_INIT_LOG(ERR, "Failed to get tqp info from PF: %d", ret);
1312 memcpy(&hw->tqps_num, &resp_msg[0], sizeof(uint16_t));
1313 memcpy(&hw->rss_size_max, &resp_msg[2], sizeof(uint16_t));
1315 return hns3vf_check_tqp_info(hw);
1319 hns3vf_get_queue_depth(struct hns3_hw *hw)
1321 #define HNS3VF_TQPS_DEPTH_INFO_LEN 4
1322 uint8_t resp_msg[HNS3VF_TQPS_DEPTH_INFO_LEN];
1325 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_QDEPTH, 0, NULL, 0, true,
1326 resp_msg, HNS3VF_TQPS_DEPTH_INFO_LEN);
1328 PMD_INIT_LOG(ERR, "Failed to get tqp depth info from PF: %d",
1333 memcpy(&hw->num_tx_desc, &resp_msg[0], sizeof(uint16_t));
1334 memcpy(&hw->num_rx_desc, &resp_msg[2], sizeof(uint16_t));
1340 hns3vf_get_tc_info(struct hns3_hw *hw)
1346 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_TCINFO, 0, NULL, 0,
1347 true, &resp_msg, sizeof(resp_msg));
1349 hns3_err(hw, "VF request to get TC info from PF failed %d",
1354 hw->hw_tc_map = resp_msg;
1356 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
1357 if (hw->hw_tc_map & BIT(i))
1365 hns3vf_get_host_mac_addr(struct hns3_hw *hw)
1367 uint8_t host_mac[RTE_ETHER_ADDR_LEN];
1370 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_MAC_ADDR, 0, NULL, 0,
1371 true, host_mac, RTE_ETHER_ADDR_LEN);
1373 hns3_err(hw, "Failed to get mac addr from PF: %d", ret);
1377 memcpy(hw->mac.mac_addr, host_mac, RTE_ETHER_ADDR_LEN);
1383 hns3vf_get_configuration(struct hns3_hw *hw)
1387 hw->mac.media_type = HNS3_MEDIA_TYPE_NONE;
1388 hw->rss_dis_flag = false;
1390 /* Get device capability */
1391 ret = hns3vf_get_capability(hw);
1393 PMD_INIT_LOG(ERR, "failed to get device capability: %d.", ret);
1397 /* Get queue configuration from PF */
1398 ret = hns3vf_get_queue_info(hw);
1402 /* Get queue depth info from PF */
1403 ret = hns3vf_get_queue_depth(hw);
1407 /* Get user defined VF MAC addr from PF */
1408 ret = hns3vf_get_host_mac_addr(hw);
1412 ret = hns3vf_get_port_base_vlan_filter_state(hw);
1416 /* Get tc configuration from PF */
1417 return hns3vf_get_tc_info(hw);
1421 hns3vf_set_tc_queue_mapping(struct hns3_adapter *hns, uint16_t nb_rx_q,
1424 struct hns3_hw *hw = &hns->hw;
1426 if (nb_rx_q < hw->num_tc) {
1427 hns3_err(hw, "number of Rx queues(%d) is less than tcs(%d).",
1428 nb_rx_q, hw->num_tc);
1432 if (nb_tx_q < hw->num_tc) {
1433 hns3_err(hw, "number of Tx queues(%d) is less than tcs(%d).",
1434 nb_tx_q, hw->num_tc);
1438 return hns3_queue_to_tc_mapping(hw, nb_rx_q, nb_tx_q);
1442 hns3vf_request_link_info(struct hns3_hw *hw)
1447 if (rte_atomic16_read(&hw->reset.resetting))
1449 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_LINK_STATUS, 0, NULL, 0, false,
1450 &resp_msg, sizeof(resp_msg));
1452 hns3_err(hw, "Failed to fetch link status from PF: %d", ret);
1456 hns3vf_vlan_filter_configure(struct hns3_adapter *hns, uint16_t vlan_id, int on)
1458 #define HNS3VF_VLAN_MBX_MSG_LEN 5
1459 struct hns3_hw *hw = &hns->hw;
1460 uint8_t msg_data[HNS3VF_VLAN_MBX_MSG_LEN];
1461 uint16_t proto = htons(RTE_ETHER_TYPE_VLAN);
1462 uint8_t is_kill = on ? 0 : 1;
1464 msg_data[0] = is_kill;
1465 memcpy(&msg_data[1], &vlan_id, sizeof(vlan_id));
1466 memcpy(&msg_data[3], &proto, sizeof(proto));
1468 return hns3_send_mbx_msg(hw, HNS3_MBX_SET_VLAN, HNS3_MBX_VLAN_FILTER,
1469 msg_data, HNS3VF_VLAN_MBX_MSG_LEN, true, NULL,
1474 hns3vf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1476 struct hns3_adapter *hns = dev->data->dev_private;
1477 struct hns3_hw *hw = &hns->hw;
1480 if (rte_atomic16_read(&hw->reset.resetting)) {
1482 "vf set vlan id failed during resetting, vlan_id =%u",
1486 rte_spinlock_lock(&hw->lock);
1487 ret = hns3vf_vlan_filter_configure(hns, vlan_id, on);
1488 rte_spinlock_unlock(&hw->lock);
1490 hns3_err(hw, "vf set vlan id failed, vlan_id =%u, ret =%d",
1497 hns3vf_en_hw_strip_rxvtag(struct hns3_hw *hw, bool enable)
1502 msg_data = enable ? 1 : 0;
1503 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_VLAN, HNS3_MBX_VLAN_RX_OFF_CFG,
1504 &msg_data, sizeof(msg_data), false, NULL, 0);
1506 hns3_err(hw, "vf enable strip failed, ret =%d", ret);
1512 hns3vf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1514 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1515 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1516 unsigned int tmp_mask;
1519 if (rte_atomic16_read(&hw->reset.resetting)) {
1520 hns3_err(hw, "vf set vlan offload failed during resetting, "
1521 "mask = 0x%x", mask);
1525 tmp_mask = (unsigned int)mask;
1526 /* Vlan stripping setting */
1527 if (tmp_mask & ETH_VLAN_STRIP_MASK) {
1528 rte_spinlock_lock(&hw->lock);
1529 /* Enable or disable VLAN stripping */
1530 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
1531 ret = hns3vf_en_hw_strip_rxvtag(hw, true);
1533 ret = hns3vf_en_hw_strip_rxvtag(hw, false);
1534 rte_spinlock_unlock(&hw->lock);
1541 hns3vf_handle_all_vlan_table(struct hns3_adapter *hns, int on)
1543 struct rte_vlan_filter_conf *vfc;
1544 struct hns3_hw *hw = &hns->hw;
1551 vfc = &hw->data->vlan_filter_conf;
1552 for (i = 0; i < RTE_DIM(vfc->ids); i++) {
1553 if (vfc->ids[i] == 0)
1558 * 64 means the num bits of ids, one bit corresponds to
1562 /* count trailing zeroes */
1563 vbit = ~ids & (ids - 1);
1564 /* clear least significant bit set */
1565 ids ^= (ids ^ (ids - 1)) ^ vbit;
1570 ret = hns3vf_vlan_filter_configure(hns, vlan_id, on);
1573 "VF handle vlan table failed, ret =%d, on = %d",
1584 hns3vf_remove_all_vlan_table(struct hns3_adapter *hns)
1586 return hns3vf_handle_all_vlan_table(hns, 0);
1590 hns3vf_restore_vlan_conf(struct hns3_adapter *hns)
1592 struct hns3_hw *hw = &hns->hw;
1593 struct rte_eth_conf *dev_conf;
1597 dev_conf = &hw->data->dev_conf;
1598 en = dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP ? true
1600 ret = hns3vf_en_hw_strip_rxvtag(hw, en);
1602 hns3_err(hw, "VF restore vlan conf fail, en =%d, ret =%d", en,
1608 hns3vf_dev_configure_vlan(struct rte_eth_dev *dev)
1610 struct hns3_adapter *hns = dev->data->dev_private;
1611 struct rte_eth_dev_data *data = dev->data;
1612 struct hns3_hw *hw = &hns->hw;
1615 if (data->dev_conf.txmode.hw_vlan_reject_tagged ||
1616 data->dev_conf.txmode.hw_vlan_reject_untagged ||
1617 data->dev_conf.txmode.hw_vlan_insert_pvid) {
1618 hns3_warn(hw, "hw_vlan_reject_tagged, hw_vlan_reject_untagged "
1619 "or hw_vlan_insert_pvid is not support!");
1622 /* Apply vlan offload setting */
1623 ret = hns3vf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1625 hns3_err(hw, "dev config vlan offload failed, ret =%d", ret);
1631 hns3vf_set_alive(struct hns3_hw *hw, bool alive)
1635 msg_data = alive ? 1 : 0;
1636 return hns3_send_mbx_msg(hw, HNS3_MBX_SET_ALIVE, 0, &msg_data,
1637 sizeof(msg_data), false, NULL, 0);
1641 hns3vf_keep_alive_handler(void *param)
1643 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1644 struct hns3_adapter *hns = eth_dev->data->dev_private;
1645 struct hns3_hw *hw = &hns->hw;
1649 ret = hns3_send_mbx_msg(hw, HNS3_MBX_KEEP_ALIVE, 0, NULL, 0,
1650 false, &respmsg, sizeof(uint8_t));
1652 hns3_err(hw, "VF sends keeping alive cmd failed(=%d)",
1655 rte_eal_alarm_set(HNS3VF_KEEP_ALIVE_INTERVAL, hns3vf_keep_alive_handler,
1660 hns3vf_service_handler(void *param)
1662 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1663 struct hns3_adapter *hns = eth_dev->data->dev_private;
1664 struct hns3_hw *hw = &hns->hw;
1667 * The query link status and reset processing are executed in the
1668 * interrupt thread.When the IMP reset occurs, IMP will not respond,
1669 * and the query operation will time out after 30ms. In the case of
1670 * multiple PF/VFs, each query failure timeout causes the IMP reset
1671 * interrupt to fail to respond within 100ms.
1672 * Before querying the link status, check whether there is a reset
1673 * pending, and if so, abandon the query.
1675 if (!hns3vf_is_reset_pending(hns))
1676 hns3vf_request_link_info(hw);
1678 hns3_warn(hw, "Cancel the query when reset is pending");
1680 rte_eal_alarm_set(HNS3VF_SERVICE_INTERVAL, hns3vf_service_handler,
1685 hns3_query_vf_resource(struct hns3_hw *hw)
1687 struct hns3_vf_res_cmd *req;
1688 struct hns3_cmd_desc desc;
1692 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_VF_RSRC, true);
1693 ret = hns3_cmd_send(hw, &desc, 1);
1695 hns3_err(hw, "query vf resource failed, ret = %d", ret);
1699 req = (struct hns3_vf_res_cmd *)desc.data;
1700 num_msi = hns3_get_field(rte_le_to_cpu_16(req->vf_intr_vector_number),
1701 HNS3_VF_VEC_NUM_M, HNS3_VF_VEC_NUM_S);
1702 if (num_msi < HNS3_MIN_VECTOR_NUM) {
1703 hns3_err(hw, "Just %u msi resources, not enough for vf(min:%d)",
1704 num_msi, HNS3_MIN_VECTOR_NUM);
1708 hw->num_msi = num_msi;
1714 hns3vf_init_hardware(struct hns3_adapter *hns)
1716 struct hns3_hw *hw = &hns->hw;
1717 uint16_t mtu = hw->data->mtu;
1720 ret = hns3vf_set_promisc_mode(hw, true, false, false);
1724 ret = hns3vf_config_mtu(hw, mtu);
1726 goto err_init_hardware;
1728 ret = hns3vf_vlan_filter_configure(hns, 0, 1);
1730 PMD_INIT_LOG(ERR, "Failed to initialize VLAN config: %d", ret);
1731 goto err_init_hardware;
1734 ret = hns3_config_gro(hw, false);
1736 PMD_INIT_LOG(ERR, "Failed to config gro: %d", ret);
1737 goto err_init_hardware;
1741 * In the initialization clearing the all hardware mapping relationship
1742 * configurations between queues and interrupt vectors is needed, so
1743 * some error caused by the residual configurations, such as the
1744 * unexpected interrupt, can be avoid.
1746 ret = hns3vf_init_ring_with_vector(hw);
1748 PMD_INIT_LOG(ERR, "Failed to init ring intr vector: %d", ret);
1749 goto err_init_hardware;
1752 ret = hns3vf_set_alive(hw, true);
1754 PMD_INIT_LOG(ERR, "Failed to VF send alive to PF: %d", ret);
1755 goto err_init_hardware;
1758 hns3vf_request_link_info(hw);
1762 (void)hns3vf_set_promisc_mode(hw, false, false, false);
1767 hns3vf_clear_vport_list(struct hns3_hw *hw)
1769 return hns3_send_mbx_msg(hw, HNS3_MBX_HANDLE_VF_TBL,
1770 HNS3_MBX_VPORT_LIST_CLEAR, NULL, 0, false,
1775 hns3vf_init_vf(struct rte_eth_dev *eth_dev)
1777 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1778 struct hns3_adapter *hns = eth_dev->data->dev_private;
1779 struct hns3_hw *hw = &hns->hw;
1782 PMD_INIT_FUNC_TRACE();
1784 /* Get hardware io base address from pcie BAR2 IO space */
1785 hw->io_base = pci_dev->mem_resource[2].addr;
1787 /* Firmware command queue initialize */
1788 ret = hns3_cmd_init_queue(hw);
1790 PMD_INIT_LOG(ERR, "Failed to init cmd queue: %d", ret);
1791 goto err_cmd_init_queue;
1794 /* Firmware command initialize */
1795 ret = hns3_cmd_init(hw);
1797 PMD_INIT_LOG(ERR, "Failed to init cmd: %d", ret);
1801 /* Get VF resource */
1802 ret = hns3_query_vf_resource(hw);
1806 rte_spinlock_init(&hw->mbx_resp.lock);
1808 hns3vf_clear_event_cause(hw, 0);
1810 ret = rte_intr_callback_register(&pci_dev->intr_handle,
1811 hns3vf_interrupt_handler, eth_dev);
1813 PMD_INIT_LOG(ERR, "Failed to register intr: %d", ret);
1814 goto err_intr_callback_register;
1817 /* Enable interrupt */
1818 rte_intr_enable(&pci_dev->intr_handle);
1819 hns3vf_enable_irq0(hw);
1821 /* Get configuration from PF */
1822 ret = hns3vf_get_configuration(hw);
1824 PMD_INIT_LOG(ERR, "Failed to fetch configuration: %d", ret);
1825 goto err_get_config;
1828 ret = hns3_tqp_stats_init(hw);
1830 goto err_get_config;
1832 ret = hns3vf_set_tc_queue_mapping(hns, hw->tqps_num, hw->tqps_num);
1834 PMD_INIT_LOG(ERR, "failed to set tc info, ret = %d.", ret);
1835 goto err_set_tc_queue;
1838 ret = hns3vf_clear_vport_list(hw);
1840 PMD_INIT_LOG(ERR, "Failed to clear tbl list: %d", ret);
1841 goto err_set_tc_queue;
1844 ret = hns3vf_init_hardware(hns);
1846 goto err_set_tc_queue;
1848 hns3_set_default_rss_args(hw);
1853 hns3_tqp_stats_uninit(hw);
1856 hns3vf_disable_irq0(hw);
1857 rte_intr_disable(&pci_dev->intr_handle);
1858 hns3_intr_unregister(&pci_dev->intr_handle, hns3vf_interrupt_handler,
1860 err_intr_callback_register:
1862 hns3_cmd_uninit(hw);
1863 hns3_cmd_destroy_queue(hw);
1871 hns3vf_uninit_vf(struct rte_eth_dev *eth_dev)
1873 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1874 struct hns3_adapter *hns = eth_dev->data->dev_private;
1875 struct hns3_hw *hw = &hns->hw;
1877 PMD_INIT_FUNC_TRACE();
1879 hns3_rss_uninit(hns);
1880 (void)hns3_config_gro(hw, false);
1881 (void)hns3vf_set_alive(hw, false);
1882 (void)hns3vf_set_promisc_mode(hw, false, false, false);
1883 hns3_tqp_stats_uninit(hw);
1884 hns3vf_disable_irq0(hw);
1885 rte_intr_disable(&pci_dev->intr_handle);
1886 hns3_intr_unregister(&pci_dev->intr_handle, hns3vf_interrupt_handler,
1888 hns3_cmd_uninit(hw);
1889 hns3_cmd_destroy_queue(hw);
1894 hns3vf_do_stop(struct hns3_adapter *hns)
1896 struct hns3_hw *hw = &hns->hw;
1899 hw->mac.link_status = ETH_LINK_DOWN;
1901 if (rte_atomic16_read(&hw->reset.disable_cmd) == 0) {
1902 hns3vf_configure_mac_addr(hns, true);
1903 ret = hns3_reset_all_tqps(hns);
1905 hns3_err(hw, "failed to reset all queues ret = %d",
1914 hns3vf_unmap_rx_interrupt(struct rte_eth_dev *dev)
1916 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1917 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1918 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1919 uint8_t base = RTE_INTR_VEC_ZERO_OFFSET;
1920 uint8_t vec = RTE_INTR_VEC_ZERO_OFFSET;
1923 if (dev->data->dev_conf.intr_conf.rxq == 0)
1926 /* unmap the ring with vector */
1927 if (rte_intr_allow_others(intr_handle)) {
1928 vec = RTE_INTR_VEC_RXTX_OFFSET;
1929 base = RTE_INTR_VEC_RXTX_OFFSET;
1931 if (rte_intr_dp_is_en(intr_handle)) {
1932 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
1933 (void)hns3vf_bind_ring_with_vector(hw, vec, false,
1936 if (vec < base + intr_handle->nb_efd - 1)
1940 /* Clean datapath event and queue/vec mapping */
1941 rte_intr_efd_disable(intr_handle);
1942 if (intr_handle->intr_vec) {
1943 rte_free(intr_handle->intr_vec);
1944 intr_handle->intr_vec = NULL;
1949 hns3vf_dev_stop(struct rte_eth_dev *dev)
1951 struct hns3_adapter *hns = dev->data->dev_private;
1952 struct hns3_hw *hw = &hns->hw;
1954 PMD_INIT_FUNC_TRACE();
1955 dev->data->dev_started = 0;
1957 hw->adapter_state = HNS3_NIC_STOPPING;
1958 hns3_set_rxtx_function(dev);
1960 /* Disable datapath on secondary process. */
1961 hns3_mp_req_stop_rxtx(dev);
1962 /* Prevent crashes when queues are still in use. */
1963 rte_delay_ms(hw->tqps_num);
1965 rte_spinlock_lock(&hw->lock);
1966 if (rte_atomic16_read(&hw->reset.resetting) == 0) {
1968 hns3vf_do_stop(hns);
1969 hns3vf_unmap_rx_interrupt(dev);
1970 hns3_dev_release_mbufs(hns);
1971 hw->adapter_state = HNS3_NIC_CONFIGURED;
1973 hns3_rx_scattered_reset(dev);
1974 rte_eal_alarm_cancel(hns3vf_service_handler, dev);
1975 rte_spinlock_unlock(&hw->lock);
1979 hns3vf_dev_close(struct rte_eth_dev *eth_dev)
1981 struct hns3_adapter *hns = eth_dev->data->dev_private;
1982 struct hns3_hw *hw = &hns->hw;
1984 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1987 if (hw->adapter_state == HNS3_NIC_STARTED)
1988 hns3vf_dev_stop(eth_dev);
1990 hw->adapter_state = HNS3_NIC_CLOSING;
1991 hns3_reset_abort(hns);
1992 hw->adapter_state = HNS3_NIC_CLOSED;
1993 rte_eal_alarm_cancel(hns3vf_keep_alive_handler, eth_dev);
1994 hns3vf_configure_all_mc_mac_addr(hns, true);
1995 hns3vf_remove_all_vlan_table(hns);
1996 hns3vf_uninit_vf(eth_dev);
1997 hns3_free_all_queues(eth_dev);
1998 rte_free(hw->reset.wait_data);
1999 rte_free(eth_dev->process_private);
2000 eth_dev->process_private = NULL;
2001 hns3_mp_uninit_primary();
2002 hns3_warn(hw, "Close port %d finished", hw->data->port_id);
2008 hns3vf_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version,
2011 struct hns3_adapter *hns = eth_dev->data->dev_private;
2012 struct hns3_hw *hw = &hns->hw;
2013 uint32_t version = hw->fw_version;
2016 ret = snprintf(fw_version, fw_size, "%lu.%lu.%lu.%lu",
2017 hns3_get_field(version, HNS3_FW_VERSION_BYTE3_M,
2018 HNS3_FW_VERSION_BYTE3_S),
2019 hns3_get_field(version, HNS3_FW_VERSION_BYTE2_M,
2020 HNS3_FW_VERSION_BYTE2_S),
2021 hns3_get_field(version, HNS3_FW_VERSION_BYTE1_M,
2022 HNS3_FW_VERSION_BYTE1_S),
2023 hns3_get_field(version, HNS3_FW_VERSION_BYTE0_M,
2024 HNS3_FW_VERSION_BYTE0_S));
2025 ret += 1; /* add the size of '\0' */
2026 if (fw_size < (uint32_t)ret)
2033 hns3vf_dev_link_update(struct rte_eth_dev *eth_dev,
2034 __rte_unused int wait_to_complete)
2036 struct hns3_adapter *hns = eth_dev->data->dev_private;
2037 struct hns3_hw *hw = &hns->hw;
2038 struct hns3_mac *mac = &hw->mac;
2039 struct rte_eth_link new_link;
2041 memset(&new_link, 0, sizeof(new_link));
2042 switch (mac->link_speed) {
2043 case ETH_SPEED_NUM_10M:
2044 case ETH_SPEED_NUM_100M:
2045 case ETH_SPEED_NUM_1G:
2046 case ETH_SPEED_NUM_10G:
2047 case ETH_SPEED_NUM_25G:
2048 case ETH_SPEED_NUM_40G:
2049 case ETH_SPEED_NUM_50G:
2050 case ETH_SPEED_NUM_100G:
2051 case ETH_SPEED_NUM_200G:
2052 new_link.link_speed = mac->link_speed;
2055 new_link.link_speed = ETH_SPEED_NUM_100M;
2059 new_link.link_duplex = mac->link_duplex;
2060 new_link.link_status = mac->link_status ? ETH_LINK_UP : ETH_LINK_DOWN;
2061 new_link.link_autoneg =
2062 !(eth_dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED);
2064 return rte_eth_linkstatus_set(eth_dev, &new_link);
2068 hns3vf_do_start(struct hns3_adapter *hns, bool reset_queue)
2070 struct hns3_hw *hw = &hns->hw;
2071 uint16_t nb_rx_q = hw->data->nb_rx_queues;
2072 uint16_t nb_tx_q = hw->data->nb_tx_queues;
2075 ret = hns3vf_set_tc_queue_mapping(hns, nb_rx_q, nb_tx_q);
2079 ret = hns3_init_queues(hns, reset_queue);
2081 hns3_err(hw, "failed to init queues, ret = %d.", ret);
2087 hns3vf_map_rx_interrupt(struct rte_eth_dev *dev)
2089 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2090 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2091 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2092 uint8_t base = RTE_INTR_VEC_ZERO_OFFSET;
2093 uint8_t vec = RTE_INTR_VEC_ZERO_OFFSET;
2094 uint32_t intr_vector;
2098 if (dev->data->dev_conf.intr_conf.rxq == 0)
2101 /* disable uio/vfio intr/eventfd mapping */
2102 rte_intr_disable(intr_handle);
2104 /* check and configure queue intr-vector mapping */
2105 if (rte_intr_cap_multiple(intr_handle) ||
2106 !RTE_ETH_DEV_SRIOV(dev).active) {
2107 intr_vector = hw->used_rx_queues;
2108 /* It creates event fd for each intr vector when MSIX is used */
2109 if (rte_intr_efd_enable(intr_handle, intr_vector))
2112 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2113 intr_handle->intr_vec =
2114 rte_zmalloc("intr_vec",
2115 hw->used_rx_queues * sizeof(int), 0);
2116 if (intr_handle->intr_vec == NULL) {
2117 hns3_err(hw, "Failed to allocate %d rx_queues"
2118 " intr_vec", hw->used_rx_queues);
2120 goto vf_alloc_intr_vec_error;
2124 if (rte_intr_allow_others(intr_handle)) {
2125 vec = RTE_INTR_VEC_RXTX_OFFSET;
2126 base = RTE_INTR_VEC_RXTX_OFFSET;
2128 if (rte_intr_dp_is_en(intr_handle)) {
2129 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
2130 ret = hns3vf_bind_ring_with_vector(hw, vec, true,
2134 goto vf_bind_vector_error;
2135 intr_handle->intr_vec[q_id] = vec;
2136 if (vec < base + intr_handle->nb_efd - 1)
2140 rte_intr_enable(intr_handle);
2143 vf_bind_vector_error:
2144 rte_intr_efd_disable(intr_handle);
2145 if (intr_handle->intr_vec) {
2146 free(intr_handle->intr_vec);
2147 intr_handle->intr_vec = NULL;
2150 vf_alloc_intr_vec_error:
2151 rte_intr_efd_disable(intr_handle);
2156 hns3vf_restore_rx_interrupt(struct hns3_hw *hw)
2158 struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
2159 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2160 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2164 if (dev->data->dev_conf.intr_conf.rxq == 0)
2167 if (rte_intr_dp_is_en(intr_handle)) {
2168 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
2169 ret = hns3vf_bind_ring_with_vector(hw,
2170 intr_handle->intr_vec[q_id], true,
2171 HNS3_RING_TYPE_RX, q_id);
2181 hns3vf_restore_filter(struct rte_eth_dev *dev)
2183 hns3_restore_rss_filter(dev);
2187 hns3vf_dev_start(struct rte_eth_dev *dev)
2189 struct hns3_adapter *hns = dev->data->dev_private;
2190 struct hns3_hw *hw = &hns->hw;
2193 PMD_INIT_FUNC_TRACE();
2194 if (rte_atomic16_read(&hw->reset.resetting))
2197 rte_spinlock_lock(&hw->lock);
2198 hw->adapter_state = HNS3_NIC_STARTING;
2199 ret = hns3vf_do_start(hns, true);
2201 hw->adapter_state = HNS3_NIC_CONFIGURED;
2202 rte_spinlock_unlock(&hw->lock);
2205 ret = hns3vf_map_rx_interrupt(dev);
2207 hw->adapter_state = HNS3_NIC_CONFIGURED;
2208 rte_spinlock_unlock(&hw->lock);
2213 * There are three register used to control the status of a TQP
2214 * (contains a pair of Tx queue and Rx queue) in the new version network
2215 * engine. One is used to control the enabling of Tx queue, the other is
2216 * used to control the enabling of Rx queue, and the last is the master
2217 * switch used to control the enabling of the tqp. The Tx register and
2218 * TQP register must be enabled at the same time to enable a Tx queue.
2219 * The same applies to the Rx queue. For the older network enginem, this
2220 * function only refresh the enabled flag, and it is used to update the
2221 * status of queue in the dpdk framework.
2223 ret = hns3_start_all_txqs(dev);
2225 hw->adapter_state = HNS3_NIC_CONFIGURED;
2226 rte_spinlock_unlock(&hw->lock);
2230 ret = hns3_start_all_rxqs(dev);
2232 hns3_stop_all_txqs(dev);
2233 hw->adapter_state = HNS3_NIC_CONFIGURED;
2234 rte_spinlock_unlock(&hw->lock);
2238 hw->adapter_state = HNS3_NIC_STARTED;
2239 rte_spinlock_unlock(&hw->lock);
2241 hns3_rx_scattered_calc(dev);
2242 hns3_set_rxtx_function(dev);
2243 hns3_mp_req_start_rxtx(dev);
2244 rte_eal_alarm_set(HNS3VF_SERVICE_INTERVAL, hns3vf_service_handler, dev);
2246 hns3vf_restore_filter(dev);
2248 /* Enable interrupt of all rx queues before enabling queues */
2249 hns3_dev_all_rx_queue_intr_enable(hw, true);
2252 * After finished the initialization, start all tqps to receive/transmit
2253 * packets and refresh all queue status.
2255 hns3_start_tqps(hw);
2261 is_vf_reset_done(struct hns3_hw *hw)
2263 #define HNS3_FUN_RST_ING_BITS \
2264 (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) | \
2265 BIT(HNS3_VECTOR0_CORERESET_INT_B) | \
2266 BIT(HNS3_VECTOR0_IMPRESET_INT_B) | \
2267 BIT(HNS3_VECTOR0_FUNCRESET_INT_B))
2271 if (hw->reset.level == HNS3_VF_RESET) {
2272 val = hns3_read_dev(hw, HNS3_VF_RST_ING);
2273 if (val & HNS3_VF_RST_ING_BIT)
2276 val = hns3_read_dev(hw, HNS3_FUN_RST_ING);
2277 if (val & HNS3_FUN_RST_ING_BITS)
2284 hns3vf_is_reset_pending(struct hns3_adapter *hns)
2286 struct hns3_hw *hw = &hns->hw;
2287 enum hns3_reset_level reset;
2290 * According to the protocol of PCIe, FLR to a PF device resets the PF
2291 * state as well as the SR-IOV extended capability including VF Enable
2292 * which means that VFs no longer exist.
2294 * HNS3_VF_FULL_RESET means PF device is in FLR reset. when PF device
2295 * is in FLR stage, the register state of VF device is not reliable,
2296 * so register states detection can not be carried out. In this case,
2297 * we just ignore the register states and return false to indicate that
2298 * there are no other reset states that need to be processed by driver.
2300 if (hw->reset.level == HNS3_VF_FULL_RESET)
2303 /* Check the registers to confirm whether there is reset pending */
2304 hns3vf_check_event_cause(hns, NULL);
2305 reset = hns3vf_get_reset_level(hw, &hw->reset.pending);
2306 if (hw->reset.level != HNS3_NONE_RESET && hw->reset.level < reset) {
2307 hns3_warn(hw, "High level reset %d is pending", reset);
2314 hns3vf_wait_hardware_ready(struct hns3_adapter *hns)
2316 struct hns3_hw *hw = &hns->hw;
2317 struct hns3_wait_data *wait_data = hw->reset.wait_data;
2320 if (wait_data->result == HNS3_WAIT_SUCCESS) {
2322 * After vf reset is ready, the PF may not have completed
2323 * the reset processing. The vf sending mbox to PF may fail
2324 * during the pf reset, so it is better to add extra delay.
2326 if (hw->reset.level == HNS3_VF_FUNC_RESET ||
2327 hw->reset.level == HNS3_FLR_RESET)
2329 /* Reset retry process, no need to add extra delay. */
2330 if (hw->reset.attempts)
2332 if (wait_data->check_completion == NULL)
2335 wait_data->check_completion = NULL;
2336 wait_data->interval = 1 * MSEC_PER_SEC * USEC_PER_MSEC;
2337 wait_data->count = 1;
2338 wait_data->result = HNS3_WAIT_REQUEST;
2339 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback,
2341 hns3_warn(hw, "hardware is ready, delay 1 sec for PF reset complete");
2343 } else if (wait_data->result == HNS3_WAIT_TIMEOUT) {
2344 gettimeofday(&tv, NULL);
2345 hns3_warn(hw, "Reset step4 hardware not ready after reset time=%ld.%.6ld",
2346 tv.tv_sec, tv.tv_usec);
2348 } else if (wait_data->result == HNS3_WAIT_REQUEST)
2351 wait_data->hns = hns;
2352 wait_data->check_completion = is_vf_reset_done;
2353 wait_data->end_ms = (uint64_t)HNS3VF_RESET_WAIT_CNT *
2354 HNS3VF_RESET_WAIT_MS + get_timeofday_ms();
2355 wait_data->interval = HNS3VF_RESET_WAIT_MS * USEC_PER_MSEC;
2356 wait_data->count = HNS3VF_RESET_WAIT_CNT;
2357 wait_data->result = HNS3_WAIT_REQUEST;
2358 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback, wait_data);
2363 hns3vf_prepare_reset(struct hns3_adapter *hns)
2365 struct hns3_hw *hw = &hns->hw;
2368 if (hw->reset.level == HNS3_VF_FUNC_RESET) {
2369 ret = hns3_send_mbx_msg(hw, HNS3_MBX_RESET, 0, NULL,
2372 rte_atomic16_set(&hw->reset.disable_cmd, 1);
2378 hns3vf_stop_service(struct hns3_adapter *hns)
2380 struct hns3_hw *hw = &hns->hw;
2381 struct rte_eth_dev *eth_dev;
2383 eth_dev = &rte_eth_devices[hw->data->port_id];
2384 if (hw->adapter_state == HNS3_NIC_STARTED)
2385 rte_eal_alarm_cancel(hns3vf_service_handler, eth_dev);
2386 hw->mac.link_status = ETH_LINK_DOWN;
2388 hns3_set_rxtx_function(eth_dev);
2390 /* Disable datapath on secondary process. */
2391 hns3_mp_req_stop_rxtx(eth_dev);
2392 rte_delay_ms(hw->tqps_num);
2394 rte_spinlock_lock(&hw->lock);
2395 if (hw->adapter_state == HNS3_NIC_STARTED ||
2396 hw->adapter_state == HNS3_NIC_STOPPING) {
2397 hns3_enable_all_queues(hw, false);
2398 hns3vf_do_stop(hns);
2399 hw->reset.mbuf_deferred_free = true;
2401 hw->reset.mbuf_deferred_free = false;
2404 * It is cumbersome for hardware to pick-and-choose entries for deletion
2405 * from table space. Hence, for function reset software intervention is
2406 * required to delete the entries.
2408 if (rte_atomic16_read(&hw->reset.disable_cmd) == 0)
2409 hns3vf_configure_all_mc_mac_addr(hns, true);
2410 rte_spinlock_unlock(&hw->lock);
2416 hns3vf_start_service(struct hns3_adapter *hns)
2418 struct hns3_hw *hw = &hns->hw;
2419 struct rte_eth_dev *eth_dev;
2421 eth_dev = &rte_eth_devices[hw->data->port_id];
2422 hns3_set_rxtx_function(eth_dev);
2423 hns3_mp_req_start_rxtx(eth_dev);
2424 if (hw->adapter_state == HNS3_NIC_STARTED) {
2425 hns3vf_service_handler(eth_dev);
2427 /* Enable interrupt of all rx queues before enabling queues */
2428 hns3_dev_all_rx_queue_intr_enable(hw, true);
2430 * When finished the initialization, enable queues to receive
2431 * and transmit packets.
2433 hns3_enable_all_queues(hw, true);
2440 hns3vf_check_default_mac_change(struct hns3_hw *hw)
2442 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
2443 struct rte_ether_addr *hw_mac;
2447 * The hns3 PF ethdev driver in kernel support setting VF MAC address
2448 * on the host by "ip link set ..." command. If the hns3 PF kernel
2449 * ethdev driver sets the MAC address for VF device after the
2450 * initialization of the related VF device, the PF driver will notify
2451 * VF driver to reset VF device to make the new MAC address effective
2452 * immediately. The hns3 VF PMD driver should check whether the MAC
2453 * address has been changed by the PF kernel ethdev driver, if changed
2454 * VF driver should configure hardware using the new MAC address in the
2455 * recovering hardware configuration stage of the reset process.
2457 ret = hns3vf_get_host_mac_addr(hw);
2461 hw_mac = (struct rte_ether_addr *)hw->mac.mac_addr;
2462 ret = rte_is_zero_ether_addr(hw_mac);
2464 rte_ether_addr_copy(&hw->data->mac_addrs[0], hw_mac);
2466 ret = rte_is_same_ether_addr(&hw->data->mac_addrs[0], hw_mac);
2468 rte_ether_addr_copy(hw_mac, &hw->data->mac_addrs[0]);
2469 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
2470 &hw->data->mac_addrs[0]);
2471 hns3_warn(hw, "Default MAC address has been changed to:"
2472 " %s by the host PF kernel ethdev driver",
2481 hns3vf_restore_conf(struct hns3_adapter *hns)
2483 struct hns3_hw *hw = &hns->hw;
2486 ret = hns3vf_check_default_mac_change(hw);
2490 ret = hns3vf_configure_mac_addr(hns, false);
2494 ret = hns3vf_configure_all_mc_mac_addr(hns, false);
2498 ret = hns3vf_restore_promisc(hns);
2500 goto err_vlan_table;
2502 ret = hns3vf_restore_vlan_conf(hns);
2504 goto err_vlan_table;
2506 ret = hns3vf_get_port_base_vlan_filter_state(hw);
2508 goto err_vlan_table;
2510 ret = hns3vf_restore_rx_interrupt(hw);
2512 goto err_vlan_table;
2514 ret = hns3_restore_gro_conf(hw);
2516 goto err_vlan_table;
2518 if (hw->adapter_state == HNS3_NIC_STARTED) {
2519 ret = hns3vf_do_start(hns, false);
2521 goto err_vlan_table;
2522 hns3_info(hw, "hns3vf dev restart successful!");
2523 } else if (hw->adapter_state == HNS3_NIC_STOPPING)
2524 hw->adapter_state = HNS3_NIC_CONFIGURED;
2528 hns3vf_configure_all_mc_mac_addr(hns, true);
2530 hns3vf_configure_mac_addr(hns, true);
2534 static enum hns3_reset_level
2535 hns3vf_get_reset_level(struct hns3_hw *hw, uint64_t *levels)
2537 enum hns3_reset_level reset_level;
2539 /* return the highest priority reset level amongst all */
2540 if (hns3_atomic_test_bit(HNS3_VF_RESET, levels))
2541 reset_level = HNS3_VF_RESET;
2542 else if (hns3_atomic_test_bit(HNS3_VF_FULL_RESET, levels))
2543 reset_level = HNS3_VF_FULL_RESET;
2544 else if (hns3_atomic_test_bit(HNS3_VF_PF_FUNC_RESET, levels))
2545 reset_level = HNS3_VF_PF_FUNC_RESET;
2546 else if (hns3_atomic_test_bit(HNS3_VF_FUNC_RESET, levels))
2547 reset_level = HNS3_VF_FUNC_RESET;
2548 else if (hns3_atomic_test_bit(HNS3_FLR_RESET, levels))
2549 reset_level = HNS3_FLR_RESET;
2551 reset_level = HNS3_NONE_RESET;
2553 if (hw->reset.level != HNS3_NONE_RESET && reset_level < hw->reset.level)
2554 return HNS3_NONE_RESET;
2560 hns3vf_reset_service(void *param)
2562 struct hns3_adapter *hns = (struct hns3_adapter *)param;
2563 struct hns3_hw *hw = &hns->hw;
2564 enum hns3_reset_level reset_level;
2565 struct timeval tv_delta;
2566 struct timeval tv_start;
2571 * The interrupt is not triggered within the delay time.
2572 * The interrupt may have been lost. It is necessary to handle
2573 * the interrupt to recover from the error.
2575 if (rte_atomic16_read(&hns->hw.reset.schedule) == SCHEDULE_DEFERRED) {
2576 rte_atomic16_set(&hns->hw.reset.schedule, SCHEDULE_REQUESTED);
2577 hns3_err(hw, "Handling interrupts in delayed tasks");
2578 hns3vf_interrupt_handler(&rte_eth_devices[hw->data->port_id]);
2579 reset_level = hns3vf_get_reset_level(hw, &hw->reset.pending);
2580 if (reset_level == HNS3_NONE_RESET) {
2581 hns3_err(hw, "No reset level is set, try global reset");
2582 hns3_atomic_set_bit(HNS3_VF_RESET, &hw->reset.pending);
2585 rte_atomic16_set(&hns->hw.reset.schedule, SCHEDULE_NONE);
2588 * Hardware reset has been notified, we now have to poll & check if
2589 * hardware has actually completed the reset sequence.
2591 reset_level = hns3vf_get_reset_level(hw, &hw->reset.pending);
2592 if (reset_level != HNS3_NONE_RESET) {
2593 gettimeofday(&tv_start, NULL);
2594 hns3_reset_process(hns, reset_level);
2595 gettimeofday(&tv, NULL);
2596 timersub(&tv, &tv_start, &tv_delta);
2597 msec = tv_delta.tv_sec * MSEC_PER_SEC +
2598 tv_delta.tv_usec / USEC_PER_MSEC;
2599 if (msec > HNS3_RESET_PROCESS_MS)
2600 hns3_err(hw, "%d handle long time delta %" PRIx64
2601 " ms time=%ld.%.6ld",
2602 hw->reset.level, msec, tv.tv_sec, tv.tv_usec);
2607 hns3vf_reinit_dev(struct hns3_adapter *hns)
2609 struct rte_eth_dev *eth_dev = &rte_eth_devices[hns->hw.data->port_id];
2610 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
2611 struct hns3_hw *hw = &hns->hw;
2614 if (hw->reset.level == HNS3_VF_FULL_RESET) {
2615 rte_intr_disable(&pci_dev->intr_handle);
2616 ret = hns3vf_set_bus_master(pci_dev, true);
2618 hns3_err(hw, "failed to set pci bus, ret = %d", ret);
2623 /* Firmware command initialize */
2624 ret = hns3_cmd_init(hw);
2626 hns3_err(hw, "Failed to init cmd: %d", ret);
2630 if (hw->reset.level == HNS3_VF_FULL_RESET) {
2632 * UIO enables msix by writing the pcie configuration space
2633 * vfio_pci enables msix in rte_intr_enable.
2635 if (pci_dev->kdrv == RTE_PCI_KDRV_IGB_UIO ||
2636 pci_dev->kdrv == RTE_PCI_KDRV_UIO_GENERIC) {
2637 if (hns3vf_enable_msix(pci_dev, true))
2638 hns3_err(hw, "Failed to enable msix");
2641 rte_intr_enable(&pci_dev->intr_handle);
2644 ret = hns3_reset_all_tqps(hns);
2646 hns3_err(hw, "Failed to reset all queues: %d", ret);
2650 ret = hns3vf_init_hardware(hns);
2652 hns3_err(hw, "Failed to init hardware: %d", ret);
2659 static const struct eth_dev_ops hns3vf_eth_dev_ops = {
2660 .dev_configure = hns3vf_dev_configure,
2661 .dev_start = hns3vf_dev_start,
2662 .dev_stop = hns3vf_dev_stop,
2663 .dev_close = hns3vf_dev_close,
2664 .mtu_set = hns3vf_dev_mtu_set,
2665 .promiscuous_enable = hns3vf_dev_promiscuous_enable,
2666 .promiscuous_disable = hns3vf_dev_promiscuous_disable,
2667 .allmulticast_enable = hns3vf_dev_allmulticast_enable,
2668 .allmulticast_disable = hns3vf_dev_allmulticast_disable,
2669 .stats_get = hns3_stats_get,
2670 .stats_reset = hns3_stats_reset,
2671 .xstats_get = hns3_dev_xstats_get,
2672 .xstats_get_names = hns3_dev_xstats_get_names,
2673 .xstats_reset = hns3_dev_xstats_reset,
2674 .xstats_get_by_id = hns3_dev_xstats_get_by_id,
2675 .xstats_get_names_by_id = hns3_dev_xstats_get_names_by_id,
2676 .dev_infos_get = hns3vf_dev_infos_get,
2677 .fw_version_get = hns3vf_fw_version_get,
2678 .rx_queue_setup = hns3_rx_queue_setup,
2679 .tx_queue_setup = hns3_tx_queue_setup,
2680 .rx_queue_release = hns3_dev_rx_queue_release,
2681 .tx_queue_release = hns3_dev_tx_queue_release,
2682 .rx_queue_start = hns3_dev_rx_queue_start,
2683 .rx_queue_stop = hns3_dev_rx_queue_stop,
2684 .tx_queue_start = hns3_dev_tx_queue_start,
2685 .tx_queue_stop = hns3_dev_tx_queue_stop,
2686 .rx_queue_intr_enable = hns3_dev_rx_queue_intr_enable,
2687 .rx_queue_intr_disable = hns3_dev_rx_queue_intr_disable,
2688 .rxq_info_get = hns3_rxq_info_get,
2689 .txq_info_get = hns3_txq_info_get,
2690 .rx_burst_mode_get = hns3_rx_burst_mode_get,
2691 .tx_burst_mode_get = hns3_tx_burst_mode_get,
2692 .mac_addr_add = hns3vf_add_mac_addr,
2693 .mac_addr_remove = hns3vf_remove_mac_addr,
2694 .mac_addr_set = hns3vf_set_default_mac_addr,
2695 .set_mc_addr_list = hns3vf_set_mc_mac_addr_list,
2696 .link_update = hns3vf_dev_link_update,
2697 .rss_hash_update = hns3_dev_rss_hash_update,
2698 .rss_hash_conf_get = hns3_dev_rss_hash_conf_get,
2699 .reta_update = hns3_dev_rss_reta_update,
2700 .reta_query = hns3_dev_rss_reta_query,
2701 .filter_ctrl = hns3_dev_filter_ctrl,
2702 .vlan_filter_set = hns3vf_vlan_filter_set,
2703 .vlan_offload_set = hns3vf_vlan_offload_set,
2704 .get_reg = hns3_get_regs,
2705 .dev_supported_ptypes_get = hns3_dev_supported_ptypes_get,
2708 static const struct hns3_reset_ops hns3vf_reset_ops = {
2709 .reset_service = hns3vf_reset_service,
2710 .stop_service = hns3vf_stop_service,
2711 .prepare_reset = hns3vf_prepare_reset,
2712 .wait_hardware_ready = hns3vf_wait_hardware_ready,
2713 .reinit_dev = hns3vf_reinit_dev,
2714 .restore_conf = hns3vf_restore_conf,
2715 .start_service = hns3vf_start_service,
2719 hns3vf_dev_init(struct rte_eth_dev *eth_dev)
2721 struct hns3_adapter *hns = eth_dev->data->dev_private;
2722 struct hns3_hw *hw = &hns->hw;
2725 PMD_INIT_FUNC_TRACE();
2727 eth_dev->process_private = (struct hns3_process_private *)
2728 rte_zmalloc_socket("hns3_filter_list",
2729 sizeof(struct hns3_process_private),
2730 RTE_CACHE_LINE_SIZE, eth_dev->device->numa_node);
2731 if (eth_dev->process_private == NULL) {
2732 PMD_INIT_LOG(ERR, "Failed to alloc memory for process private");
2736 /* initialize flow filter lists */
2737 hns3_filterlist_init(eth_dev);
2739 hns3_set_rxtx_function(eth_dev);
2740 eth_dev->dev_ops = &hns3vf_eth_dev_ops;
2741 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2742 ret = hns3_mp_init_secondary();
2744 PMD_INIT_LOG(ERR, "Failed to init for secondary "
2745 "process, ret = %d", ret);
2746 goto err_mp_init_secondary;
2749 hw->secondary_cnt++;
2753 ret = hns3_mp_init_primary();
2756 "Failed to init for primary process, ret = %d",
2758 goto err_mp_init_primary;
2761 hw->adapter_state = HNS3_NIC_UNINITIALIZED;
2763 hw->data = eth_dev->data;
2765 ret = hns3_reset_init(hw);
2767 goto err_init_reset;
2768 hw->reset.ops = &hns3vf_reset_ops;
2770 ret = hns3vf_init_vf(eth_dev);
2772 PMD_INIT_LOG(ERR, "Failed to init vf: %d", ret);
2776 /* Allocate memory for storing MAC addresses */
2777 eth_dev->data->mac_addrs = rte_zmalloc("hns3vf-mac",
2778 sizeof(struct rte_ether_addr) *
2779 HNS3_VF_UC_MACADDR_NUM, 0);
2780 if (eth_dev->data->mac_addrs == NULL) {
2781 PMD_INIT_LOG(ERR, "Failed to allocate %zx bytes needed "
2782 "to store MAC addresses",
2783 sizeof(struct rte_ether_addr) *
2784 HNS3_VF_UC_MACADDR_NUM);
2786 goto err_rte_zmalloc;
2790 * The hns3 PF ethdev driver in kernel support setting VF MAC address
2791 * on the host by "ip link set ..." command. To avoid some incorrect
2792 * scenes, for example, hns3 VF PMD driver fails to receive and send
2793 * packets after user configure the MAC address by using the
2794 * "ip link set ..." command, hns3 VF PMD driver keep the same MAC
2795 * address strategy as the hns3 kernel ethdev driver in the
2796 * initialization. If user configure a MAC address by the ip command
2797 * for VF device, then hns3 VF PMD driver will start with it, otherwise
2798 * start with a random MAC address in the initialization.
2800 if (rte_is_zero_ether_addr((struct rte_ether_addr *)hw->mac.mac_addr))
2801 rte_eth_random_addr(hw->mac.mac_addr);
2802 rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.mac_addr,
2803 ð_dev->data->mac_addrs[0]);
2805 hw->adapter_state = HNS3_NIC_INITIALIZED;
2807 if (rte_atomic16_read(&hns->hw.reset.schedule) == SCHEDULE_PENDING) {
2808 hns3_err(hw, "Reschedule reset service after dev_init");
2809 hns3_schedule_reset(hns);
2811 /* IMP will wait ready flag before reset */
2812 hns3_notify_reset_ready(hw, false);
2814 rte_eal_alarm_set(HNS3VF_KEEP_ALIVE_INTERVAL, hns3vf_keep_alive_handler,
2819 hns3vf_uninit_vf(eth_dev);
2822 rte_free(hw->reset.wait_data);
2825 hns3_mp_uninit_primary();
2827 err_mp_init_primary:
2828 err_mp_init_secondary:
2829 eth_dev->dev_ops = NULL;
2830 eth_dev->rx_pkt_burst = NULL;
2831 eth_dev->tx_pkt_burst = NULL;
2832 eth_dev->tx_pkt_prepare = NULL;
2833 rte_free(eth_dev->process_private);
2834 eth_dev->process_private = NULL;
2840 hns3vf_dev_uninit(struct rte_eth_dev *eth_dev)
2842 struct hns3_adapter *hns = eth_dev->data->dev_private;
2843 struct hns3_hw *hw = &hns->hw;
2845 PMD_INIT_FUNC_TRACE();
2847 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2850 eth_dev->dev_ops = NULL;
2851 eth_dev->rx_pkt_burst = NULL;
2852 eth_dev->tx_pkt_burst = NULL;
2853 eth_dev->tx_pkt_prepare = NULL;
2855 if (hw->adapter_state < HNS3_NIC_CLOSING)
2856 hns3vf_dev_close(eth_dev);
2858 hw->adapter_state = HNS3_NIC_REMOVED;
2863 eth_hns3vf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2864 struct rte_pci_device *pci_dev)
2866 return rte_eth_dev_pci_generic_probe(pci_dev,
2867 sizeof(struct hns3_adapter),
2872 eth_hns3vf_pci_remove(struct rte_pci_device *pci_dev)
2874 return rte_eth_dev_pci_generic_remove(pci_dev, hns3vf_dev_uninit);
2877 static const struct rte_pci_id pci_id_hns3vf_map[] = {
2878 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_100G_VF) },
2879 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_100G_RDMA_PFC_VF) },
2880 { .vendor_id = 0, /* sentinel */ },
2883 static struct rte_pci_driver rte_hns3vf_pmd = {
2884 .id_table = pci_id_hns3vf_map,
2885 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
2886 .probe = eth_hns3vf_pci_probe,
2887 .remove = eth_hns3vf_pci_remove,
2890 RTE_PMD_REGISTER_PCI(net_hns3_vf, rte_hns3vf_pmd);
2891 RTE_PMD_REGISTER_PCI_TABLE(net_hns3_vf, pci_id_hns3vf_map);
2892 RTE_PMD_REGISTER_KMOD_DEP(net_hns3_vf, "* igb_uio | vfio-pci");