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)
72 rte_pci_read_config(device, ®, sizeof(reg), PCI_COMMAND);
75 /* set the master bit */
76 reg |= PCI_COMMAND_MASTER;
78 reg &= ~(PCI_COMMAND_MASTER);
80 rte_pci_write_config(device, ®, sizeof(reg), PCI_COMMAND);
84 * hns3vf_find_pci_capability - lookup a capability in the PCI capability list
85 * @cap: the capability
87 * Return the address of the given capability within the PCI capability list.
90 hns3vf_find_pci_capability(const struct rte_pci_device *device, int cap)
92 #define MAX_PCIE_CAPABILITY 48
98 rte_pci_read_config(device, &status, sizeof(status), PCI_STATUS);
99 if (!(status & PCI_STATUS_CAP_LIST))
102 ttl = MAX_PCIE_CAPABILITY;
103 rte_pci_read_config(device, &pos, sizeof(pos), PCI_CAPABILITY_LIST);
104 while (ttl-- && pos >= PCI_STD_HEADER_SIZEOF) {
105 rte_pci_read_config(device, &id, sizeof(id),
106 (pos + PCI_CAP_LIST_ID));
114 rte_pci_read_config(device, &pos, sizeof(pos),
115 (pos + PCI_CAP_LIST_NEXT));
121 hns3vf_enable_msix(const struct rte_pci_device *device, bool op)
126 pos = hns3vf_find_pci_capability(device, PCI_CAP_ID_MSIX);
128 rte_pci_read_config(device, &control, sizeof(control),
129 (pos + PCI_MSIX_FLAGS));
131 control |= PCI_MSIX_FLAGS_ENABLE;
133 control &= ~PCI_MSIX_FLAGS_ENABLE;
134 rte_pci_write_config(device, &control, sizeof(control),
135 (pos + PCI_MSIX_FLAGS));
142 hns3vf_add_uc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
144 /* mac address was checked by upper level interface */
145 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
148 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_UNICAST,
149 HNS3_MBX_MAC_VLAN_UC_ADD, mac_addr->addr_bytes,
150 RTE_ETHER_ADDR_LEN, false, NULL, 0);
152 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
154 hns3_err(hw, "failed to add uc mac addr(%s), ret = %d",
161 hns3vf_remove_uc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
163 /* mac address was checked by upper level interface */
164 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
167 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_UNICAST,
168 HNS3_MBX_MAC_VLAN_UC_REMOVE,
169 mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN,
172 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
174 hns3_err(hw, "failed to add uc mac addr(%s), ret = %d",
181 hns3vf_add_mc_addr_common(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
183 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
184 struct rte_ether_addr *addr;
188 for (i = 0; i < hw->mc_addrs_num; i++) {
189 addr = &hw->mc_addrs[i];
190 /* Check if there are duplicate addresses */
191 if (rte_is_same_ether_addr(addr, mac_addr)) {
192 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
194 hns3_err(hw, "failed to add mc mac addr, same addrs"
195 "(%s) is added by the set_mc_mac_addr_list "
201 ret = hns3vf_add_mc_mac_addr(hw, mac_addr);
203 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
205 hns3_err(hw, "failed to add mc mac addr(%s), ret = %d",
212 hns3vf_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
213 __rte_unused uint32_t idx,
214 __rte_unused uint32_t pool)
216 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
217 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
220 rte_spinlock_lock(&hw->lock);
223 * In hns3 network engine adding UC and MC mac address with different
224 * commands with firmware. We need to determine whether the input
225 * address is a UC or a MC address to call different commands.
226 * By the way, it is recommended calling the API function named
227 * rte_eth_dev_set_mc_addr_list to set the MC mac address, because
228 * using the rte_eth_dev_mac_addr_add API function to set MC mac address
229 * may affect the specifications of UC mac addresses.
231 if (rte_is_multicast_ether_addr(mac_addr))
232 ret = hns3vf_add_mc_addr_common(hw, mac_addr);
234 ret = hns3vf_add_uc_mac_addr(hw, mac_addr);
236 rte_spinlock_unlock(&hw->lock);
238 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
240 hns3_err(hw, "failed to add mac addr(%s), ret = %d", mac_str,
248 hns3vf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t idx)
250 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
251 /* index will be checked by upper level rte interface */
252 struct rte_ether_addr *mac_addr = &dev->data->mac_addrs[idx];
253 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
256 rte_spinlock_lock(&hw->lock);
258 if (rte_is_multicast_ether_addr(mac_addr))
259 ret = hns3vf_remove_mc_mac_addr(hw, mac_addr);
261 ret = hns3vf_remove_uc_mac_addr(hw, mac_addr);
263 rte_spinlock_unlock(&hw->lock);
265 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
267 hns3_err(hw, "failed to remove mac addr(%s), ret = %d",
273 hns3vf_set_default_mac_addr(struct rte_eth_dev *dev,
274 struct rte_ether_addr *mac_addr)
276 #define HNS3_TWO_ETHER_ADDR_LEN (RTE_ETHER_ADDR_LEN * 2)
277 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
278 struct rte_ether_addr *old_addr;
279 uint8_t addr_bytes[HNS3_TWO_ETHER_ADDR_LEN]; /* for 2 MAC addresses */
280 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
284 * It has been guaranteed that input parameter named mac_addr is valid
285 * address in the rte layer of DPDK framework.
287 old_addr = (struct rte_ether_addr *)hw->mac.mac_addr;
288 rte_spinlock_lock(&hw->lock);
289 memcpy(addr_bytes, mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN);
290 memcpy(&addr_bytes[RTE_ETHER_ADDR_LEN], old_addr->addr_bytes,
293 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_UNICAST,
294 HNS3_MBX_MAC_VLAN_UC_MODIFY, addr_bytes,
295 HNS3_TWO_ETHER_ADDR_LEN, true, NULL, 0);
298 * The hns3 VF PMD driver depends on the hns3 PF kernel ethdev
299 * driver. When user has configured a MAC address for VF device
300 * by "ip link set ..." command based on the PF device, the hns3
301 * PF kernel ethdev driver does not allow VF driver to request
302 * reconfiguring a different default MAC address, and return
303 * -EPREM to VF driver through mailbox.
306 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
308 hns3_warn(hw, "Has permanet mac addr(%s) for vf",
311 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
313 hns3_err(hw, "Failed to set mac addr(%s) for vf: %d",
318 rte_ether_addr_copy(mac_addr,
319 (struct rte_ether_addr *)hw->mac.mac_addr);
320 rte_spinlock_unlock(&hw->lock);
326 hns3vf_configure_mac_addr(struct hns3_adapter *hns, bool del)
328 struct hns3_hw *hw = &hns->hw;
329 struct rte_ether_addr *addr;
330 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
335 for (i = 0; i < HNS3_VF_UC_MACADDR_NUM; i++) {
336 addr = &hw->data->mac_addrs[i];
337 if (rte_is_zero_ether_addr(addr))
339 if (rte_is_multicast_ether_addr(addr))
340 ret = del ? hns3vf_remove_mc_mac_addr(hw, addr) :
341 hns3vf_add_mc_mac_addr(hw, addr);
343 ret = del ? hns3vf_remove_uc_mac_addr(hw, addr) :
344 hns3vf_add_uc_mac_addr(hw, addr);
348 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
350 hns3_err(hw, "failed to %s mac addr(%s) index:%d "
351 "ret = %d.", del ? "remove" : "restore",
359 hns3vf_add_mc_mac_addr(struct hns3_hw *hw,
360 struct rte_ether_addr *mac_addr)
362 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
365 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_MULTICAST,
366 HNS3_MBX_MAC_VLAN_MC_ADD,
367 mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN, false,
370 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
372 hns3_err(hw, "Failed to add mc mac addr(%s) for vf: %d",
380 hns3vf_remove_mc_mac_addr(struct hns3_hw *hw,
381 struct rte_ether_addr *mac_addr)
383 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
386 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_MULTICAST,
387 HNS3_MBX_MAC_VLAN_MC_REMOVE,
388 mac_addr->addr_bytes, RTE_ETHER_ADDR_LEN, false,
391 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
393 hns3_err(hw, "Failed to remove mc mac addr(%s) for vf: %d",
401 hns3vf_set_mc_addr_chk_param(struct hns3_hw *hw,
402 struct rte_ether_addr *mc_addr_set,
405 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
406 struct rte_ether_addr *addr;
410 if (nb_mc_addr > HNS3_MC_MACADDR_NUM) {
411 hns3_err(hw, "failed to set mc mac addr, nb_mc_addr(%d) "
412 "invalid. valid range: 0~%d",
413 nb_mc_addr, HNS3_MC_MACADDR_NUM);
417 /* Check if input mac addresses are valid */
418 for (i = 0; i < nb_mc_addr; i++) {
419 addr = &mc_addr_set[i];
420 if (!rte_is_multicast_ether_addr(addr)) {
421 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
424 "failed to set mc mac addr, addr(%s) invalid.",
429 /* Check if there are duplicate addresses */
430 for (j = i + 1; j < nb_mc_addr; j++) {
431 if (rte_is_same_ether_addr(addr, &mc_addr_set[j])) {
432 rte_ether_format_addr(mac_str,
433 RTE_ETHER_ADDR_FMT_SIZE,
435 hns3_err(hw, "failed to set mc mac addr, "
436 "addrs invalid. two same addrs(%s).",
443 * Check if there are duplicate addresses between mac_addrs
446 for (j = 0; j < HNS3_VF_UC_MACADDR_NUM; j++) {
447 if (rte_is_same_ether_addr(addr,
448 &hw->data->mac_addrs[j])) {
449 rte_ether_format_addr(mac_str,
450 RTE_ETHER_ADDR_FMT_SIZE,
452 hns3_err(hw, "failed to set mc mac addr, "
453 "addrs invalid. addrs(%s) has already "
454 "configured in mac_addr add API",
465 hns3vf_set_mc_mac_addr_list(struct rte_eth_dev *dev,
466 struct rte_ether_addr *mc_addr_set,
469 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
470 struct rte_ether_addr *addr;
477 ret = hns3vf_set_mc_addr_chk_param(hw, mc_addr_set, nb_mc_addr);
481 rte_spinlock_lock(&hw->lock);
482 cur_addr_num = hw->mc_addrs_num;
483 for (i = 0; i < cur_addr_num; i++) {
484 num = cur_addr_num - i - 1;
485 addr = &hw->mc_addrs[num];
486 ret = hns3vf_remove_mc_mac_addr(hw, addr);
488 rte_spinlock_unlock(&hw->lock);
495 set_addr_num = (int)nb_mc_addr;
496 for (i = 0; i < set_addr_num; i++) {
497 addr = &mc_addr_set[i];
498 ret = hns3vf_add_mc_mac_addr(hw, addr);
500 rte_spinlock_unlock(&hw->lock);
504 rte_ether_addr_copy(addr, &hw->mc_addrs[hw->mc_addrs_num]);
507 rte_spinlock_unlock(&hw->lock);
513 hns3vf_configure_all_mc_mac_addr(struct hns3_adapter *hns, bool del)
515 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
516 struct hns3_hw *hw = &hns->hw;
517 struct rte_ether_addr *addr;
522 for (i = 0; i < hw->mc_addrs_num; i++) {
523 addr = &hw->mc_addrs[i];
524 if (!rte_is_multicast_ether_addr(addr))
527 ret = hns3vf_remove_mc_mac_addr(hw, addr);
529 ret = hns3vf_add_mc_mac_addr(hw, addr);
532 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
534 hns3_err(hw, "Failed to %s mc mac addr: %s for vf: %d",
535 del ? "Remove" : "Restore", mac_str, ret);
542 hns3vf_set_promisc_mode(struct hns3_hw *hw, bool en_bc_pmc,
543 bool en_uc_pmc, bool en_mc_pmc)
545 struct hns3_mbx_vf_to_pf_cmd *req;
546 struct hns3_cmd_desc desc;
549 req = (struct hns3_mbx_vf_to_pf_cmd *)desc.data;
552 * The hns3 VF PMD driver depends on the hns3 PF kernel ethdev driver,
553 * so there are some features for promiscuous/allmulticast mode in hns3
554 * VF PMD driver as below:
555 * 1. The promiscuous/allmulticast mode can be configured successfully
556 * only based on the trusted VF device. If based on the non trusted
557 * VF device, configuring promiscuous/allmulticast mode will fail.
558 * The hns3 VF device can be confiruged as trusted device by hns3 PF
559 * kernel ethdev driver on the host by the following command:
560 * "ip link set <eth num> vf <vf id> turst on"
561 * 2. After the promiscuous mode is configured successfully, hns3 VF PMD
562 * driver can receive the ingress and outgoing traffic. In the words,
563 * all the ingress packets, all the packets sent from the PF and
564 * other VFs on the same physical port.
565 * 3. Note: Because of the hardware constraints, By default vlan filter
566 * is enabled and couldn't be turned off based on VF device, so vlan
567 * filter is still effective even in promiscuous mode. If upper
568 * applications don't call rte_eth_dev_vlan_filter API function to
569 * set vlan based on VF device, hns3 VF PMD driver will can't receive
570 * the packets with vlan tag in promiscuoue mode.
572 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MBX_VF_TO_PF, false);
573 req->msg[0] = HNS3_MBX_SET_PROMISC_MODE;
574 req->msg[1] = en_bc_pmc ? 1 : 0;
575 req->msg[2] = en_uc_pmc ? 1 : 0;
576 req->msg[3] = en_mc_pmc ? 1 : 0;
578 ret = hns3_cmd_send(hw, &desc, 1);
580 hns3_err(hw, "Set promisc mode fail, ret = %d", ret);
586 hns3vf_dev_promiscuous_enable(struct rte_eth_dev *dev)
588 struct hns3_adapter *hns = dev->data->dev_private;
589 struct hns3_hw *hw = &hns->hw;
592 ret = hns3vf_set_promisc_mode(hw, true, true, true);
594 hns3_err(hw, "Failed to enable promiscuous mode, ret = %d",
600 hns3vf_dev_promiscuous_disable(struct rte_eth_dev *dev)
602 bool allmulti = dev->data->all_multicast ? true : false;
603 struct hns3_adapter *hns = dev->data->dev_private;
604 struct hns3_hw *hw = &hns->hw;
607 ret = hns3vf_set_promisc_mode(hw, true, false, allmulti);
609 hns3_err(hw, "Failed to disable promiscuous mode, ret = %d",
615 hns3vf_dev_allmulticast_enable(struct rte_eth_dev *dev)
617 struct hns3_adapter *hns = dev->data->dev_private;
618 struct hns3_hw *hw = &hns->hw;
621 if (dev->data->promiscuous)
624 ret = hns3vf_set_promisc_mode(hw, true, false, true);
626 hns3_err(hw, "Failed to enable allmulticast mode, ret = %d",
632 hns3vf_dev_allmulticast_disable(struct rte_eth_dev *dev)
634 struct hns3_adapter *hns = dev->data->dev_private;
635 struct hns3_hw *hw = &hns->hw;
638 if (dev->data->promiscuous)
641 ret = hns3vf_set_promisc_mode(hw, true, false, false);
643 hns3_err(hw, "Failed to disable allmulticast mode, ret = %d",
649 hns3vf_restore_promisc(struct hns3_adapter *hns)
651 struct hns3_hw *hw = &hns->hw;
652 bool allmulti = hw->data->all_multicast ? true : false;
654 if (hw->data->promiscuous)
655 return hns3vf_set_promisc_mode(hw, true, true, true);
657 return hns3vf_set_promisc_mode(hw, true, false, allmulti);
661 hns3vf_bind_ring_with_vector(struct hns3_hw *hw, uint8_t vector_id,
662 bool mmap, enum hns3_ring_type queue_type,
665 struct hns3_vf_bind_vector_msg bind_msg;
670 memset(&bind_msg, 0, sizeof(bind_msg));
671 code = mmap ? HNS3_MBX_MAP_RING_TO_VECTOR :
672 HNS3_MBX_UNMAP_RING_TO_VECTOR;
673 bind_msg.vector_id = vector_id;
675 if (queue_type == HNS3_RING_TYPE_RX)
676 bind_msg.param[0].int_gl_index = HNS3_RING_GL_RX;
678 bind_msg.param[0].int_gl_index = HNS3_RING_GL_TX;
680 bind_msg.param[0].ring_type = queue_type;
681 bind_msg.ring_num = 1;
682 bind_msg.param[0].tqp_index = queue_id;
683 op_str = mmap ? "Map" : "Unmap";
684 ret = hns3_send_mbx_msg(hw, code, 0, (uint8_t *)&bind_msg,
685 sizeof(bind_msg), false, NULL, 0);
687 hns3_err(hw, "%s TQP %d fail, vector_id is %d, ret is %d.",
688 op_str, queue_id, bind_msg.vector_id, ret);
694 hns3vf_init_ring_with_vector(struct hns3_hw *hw)
701 * In hns3 network engine, vector 0 is always the misc interrupt of this
702 * function, vector 1~N can be used respectively for the queues of the
703 * function. Tx and Rx queues with the same number share the interrupt
704 * vector. In the initialization clearing the all hardware mapping
705 * relationship configurations between queues and interrupt vectors is
706 * needed, so some error caused by the residual configurations, such as
707 * the unexpected Tx interrupt, can be avoid.
709 vec = hw->num_msi - 1; /* vector 0 for misc interrupt, not for queue */
710 if (hw->intr.mapping_mode == HNS3_INTR_MAPPING_VEC_RSV_ONE)
711 vec = vec - 1; /* the last interrupt is reserved */
712 hw->intr_tqps_num = RTE_MIN(vec, hw->tqps_num);
713 for (i = 0; i < hw->intr_tqps_num; i++) {
715 * Set gap limiter/rate limiter/quanity limiter algorithm
716 * configuration for interrupt coalesce of queue's interrupt.
718 hns3_set_queue_intr_gl(hw, i, HNS3_RING_GL_RX,
719 HNS3_TQP_INTR_GL_DEFAULT);
720 hns3_set_queue_intr_gl(hw, i, HNS3_RING_GL_TX,
721 HNS3_TQP_INTR_GL_DEFAULT);
722 hns3_set_queue_intr_rl(hw, i, HNS3_TQP_INTR_RL_DEFAULT);
723 hns3_set_queue_intr_ql(hw, i, HNS3_TQP_INTR_QL_DEFAULT);
725 ret = hns3vf_bind_ring_with_vector(hw, vec, false,
726 HNS3_RING_TYPE_TX, i);
728 PMD_INIT_LOG(ERR, "VF fail to unbind TX ring(%d) with "
729 "vector: %d, ret=%d", i, vec, ret);
733 ret = hns3vf_bind_ring_with_vector(hw, vec, false,
734 HNS3_RING_TYPE_RX, i);
736 PMD_INIT_LOG(ERR, "VF fail to unbind RX ring(%d) with "
737 "vector: %d, ret=%d", i, vec, ret);
746 hns3vf_dev_configure(struct rte_eth_dev *dev)
748 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
749 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
750 struct rte_eth_conf *conf = &dev->data->dev_conf;
751 enum rte_eth_rx_mq_mode mq_mode = conf->rxmode.mq_mode;
752 uint16_t nb_rx_q = dev->data->nb_rx_queues;
753 uint16_t nb_tx_q = dev->data->nb_tx_queues;
754 struct rte_eth_rss_conf rss_conf;
760 * Hardware does not support individually enable/disable/reset the Tx or
761 * Rx queue in hns3 network engine. Driver must enable/disable/reset Tx
762 * and Rx queues at the same time. When the numbers of Tx queues
763 * allocated by upper applications are not equal to the numbers of Rx
764 * queues, driver needs to setup fake Tx or Rx queues to adjust numbers
765 * of Tx/Rx queues. otherwise, network engine can not work as usual. But
766 * these fake queues are imperceptible, and can not be used by upper
769 ret = hns3_set_fake_rx_or_tx_queues(dev, nb_rx_q, nb_tx_q);
771 hns3_err(hw, "Failed to set rx/tx fake queues: %d", ret);
775 hw->adapter_state = HNS3_NIC_CONFIGURING;
776 if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
777 hns3_err(hw, "setting link speed/duplex not supported");
782 /* When RSS is not configured, redirect the packet queue 0 */
783 if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {
784 conf->rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
785 rss_conf = conf->rx_adv_conf.rss_conf;
786 if (rss_conf.rss_key == NULL) {
787 rss_conf.rss_key = rss_cfg->key;
788 rss_conf.rss_key_len = HNS3_RSS_KEY_SIZE;
791 ret = hns3_dev_rss_hash_update(dev, &rss_conf);
797 * If jumbo frames are enabled, MTU needs to be refreshed
798 * according to the maximum RX packet length.
800 if (conf->rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
802 * Security of max_rx_pkt_len is guaranteed in dpdk frame.
803 * Maximum value of max_rx_pkt_len is HNS3_MAX_FRAME_LEN, so it
804 * can safely assign to "uint16_t" type variable.
806 mtu = (uint16_t)HNS3_PKTLEN_TO_MTU(conf->rxmode.max_rx_pkt_len);
807 ret = hns3vf_dev_mtu_set(dev, mtu);
810 dev->data->mtu = mtu;
813 ret = hns3vf_dev_configure_vlan(dev);
817 /* config hardware GRO */
818 gro_en = conf->rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO ? true : false;
819 ret = hns3_config_gro(hw, gro_en);
823 hw->adapter_state = HNS3_NIC_CONFIGURED;
827 (void)hns3_set_fake_rx_or_tx_queues(dev, 0, 0);
828 hw->adapter_state = HNS3_NIC_INITIALIZED;
834 hns3vf_config_mtu(struct hns3_hw *hw, uint16_t mtu)
838 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_MTU, 0, (const uint8_t *)&mtu,
839 sizeof(mtu), true, NULL, 0);
841 hns3_err(hw, "Failed to set mtu (%u) for vf: %d", mtu, ret);
847 hns3vf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
849 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
850 uint32_t frame_size = mtu + HNS3_ETH_OVERHEAD;
854 * The hns3 PF/VF devices on the same port share the hardware MTU
855 * configuration. Currently, we send mailbox to inform hns3 PF kernel
856 * ethdev driver to finish hardware MTU configuration in hns3 VF PMD
857 * driver, there is no need to stop the port for hns3 VF device, and the
858 * MTU value issued by hns3 VF PMD driver must be less than or equal to
861 if (rte_atomic16_read(&hw->reset.resetting)) {
862 hns3_err(hw, "Failed to set mtu during resetting");
866 rte_spinlock_lock(&hw->lock);
867 ret = hns3vf_config_mtu(hw, mtu);
869 rte_spinlock_unlock(&hw->lock);
872 if (frame_size > RTE_ETHER_MAX_LEN)
873 dev->data->dev_conf.rxmode.offloads |=
874 DEV_RX_OFFLOAD_JUMBO_FRAME;
876 dev->data->dev_conf.rxmode.offloads &=
877 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
878 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
879 rte_spinlock_unlock(&hw->lock);
885 hns3vf_dev_infos_get(struct rte_eth_dev *eth_dev, struct rte_eth_dev_info *info)
887 struct hns3_adapter *hns = eth_dev->data->dev_private;
888 struct hns3_hw *hw = &hns->hw;
889 uint16_t q_num = hw->tqps_num;
892 * In interrupt mode, 'max_rx_queues' is set based on the number of
893 * MSI-X interrupt resources of the hardware.
895 if (hw->data->dev_conf.intr_conf.rxq == 1)
896 q_num = hw->intr_tqps_num;
898 info->max_rx_queues = q_num;
899 info->max_tx_queues = hw->tqps_num;
900 info->max_rx_pktlen = HNS3_MAX_FRAME_LEN; /* CRC included */
901 info->min_rx_bufsize = HNS3_MIN_BD_BUF_SIZE;
902 info->max_mac_addrs = HNS3_VF_UC_MACADDR_NUM;
903 info->max_mtu = info->max_rx_pktlen - HNS3_ETH_OVERHEAD;
904 info->max_lro_pkt_size = HNS3_MAX_LRO_SIZE;
906 info->rx_offload_capa = (DEV_RX_OFFLOAD_IPV4_CKSUM |
907 DEV_RX_OFFLOAD_UDP_CKSUM |
908 DEV_RX_OFFLOAD_TCP_CKSUM |
909 DEV_RX_OFFLOAD_SCTP_CKSUM |
910 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
911 DEV_RX_OFFLOAD_OUTER_UDP_CKSUM |
912 DEV_RX_OFFLOAD_SCATTER |
913 DEV_RX_OFFLOAD_VLAN_STRIP |
914 DEV_RX_OFFLOAD_VLAN_FILTER |
915 DEV_RX_OFFLOAD_JUMBO_FRAME |
916 DEV_RX_OFFLOAD_RSS_HASH |
917 DEV_RX_OFFLOAD_TCP_LRO);
918 info->tx_queue_offload_capa = DEV_TX_OFFLOAD_MBUF_FAST_FREE;
919 info->tx_offload_capa = (DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
920 DEV_TX_OFFLOAD_IPV4_CKSUM |
921 DEV_TX_OFFLOAD_TCP_CKSUM |
922 DEV_TX_OFFLOAD_UDP_CKSUM |
923 DEV_TX_OFFLOAD_SCTP_CKSUM |
924 DEV_TX_OFFLOAD_MULTI_SEGS |
925 DEV_TX_OFFLOAD_TCP_TSO |
926 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
927 DEV_TX_OFFLOAD_GRE_TNL_TSO |
928 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
929 info->tx_queue_offload_capa |
930 hns3_txvlan_cap_get(hw));
932 info->rx_desc_lim = (struct rte_eth_desc_lim) {
933 .nb_max = HNS3_MAX_RING_DESC,
934 .nb_min = HNS3_MIN_RING_DESC,
935 .nb_align = HNS3_ALIGN_RING_DESC,
938 info->tx_desc_lim = (struct rte_eth_desc_lim) {
939 .nb_max = HNS3_MAX_RING_DESC,
940 .nb_min = HNS3_MIN_RING_DESC,
941 .nb_align = HNS3_ALIGN_RING_DESC,
942 .nb_seg_max = HNS3_MAX_TSO_BD_PER_PKT,
943 .nb_mtu_seg_max = HNS3_MAX_NON_TSO_BD_PER_PKT,
946 info->default_rxconf = (struct rte_eth_rxconf) {
948 * If there are no available Rx buffer descriptors, incoming
949 * packets are always dropped by hardware based on hns3 network
955 info->vmdq_queue_num = 0;
957 info->reta_size = HNS3_RSS_IND_TBL_SIZE;
958 info->hash_key_size = HNS3_RSS_KEY_SIZE;
959 info->flow_type_rss_offloads = HNS3_ETH_RSS_SUPPORT;
960 info->default_rxportconf.ring_size = HNS3_DEFAULT_RING_DESC;
961 info->default_txportconf.ring_size = HNS3_DEFAULT_RING_DESC;
967 hns3vf_clear_event_cause(struct hns3_hw *hw, uint32_t regclr)
969 hns3_write_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG, regclr);
973 hns3vf_disable_irq0(struct hns3_hw *hw)
975 hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 0);
979 hns3vf_enable_irq0(struct hns3_hw *hw)
981 hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 1);
984 static enum hns3vf_evt_cause
985 hns3vf_check_event_cause(struct hns3_adapter *hns, uint32_t *clearval)
987 struct hns3_hw *hw = &hns->hw;
988 enum hns3vf_evt_cause ret;
989 uint32_t cmdq_stat_reg;
990 uint32_t rst_ing_reg;
993 /* Fetch the events from their corresponding regs */
994 cmdq_stat_reg = hns3_read_dev(hw, HNS3_VECTOR0_CMDQ_STAT_REG);
996 if (BIT(HNS3_VECTOR0_RST_INT_B) & cmdq_stat_reg) {
997 rst_ing_reg = hns3_read_dev(hw, HNS3_FUN_RST_ING);
998 hns3_warn(hw, "resetting reg: 0x%x", rst_ing_reg);
999 hns3_atomic_set_bit(HNS3_VF_RESET, &hw->reset.pending);
1000 rte_atomic16_set(&hw->reset.disable_cmd, 1);
1001 val = hns3_read_dev(hw, HNS3_VF_RST_ING);
1002 hns3_write_dev(hw, HNS3_VF_RST_ING, val | HNS3_VF_RST_ING_BIT);
1003 val = cmdq_stat_reg & ~BIT(HNS3_VECTOR0_RST_INT_B);
1005 hw->reset.stats.global_cnt++;
1006 hns3_warn(hw, "Global reset detected, clear reset status");
1008 hns3_schedule_delayed_reset(hns);
1009 hns3_warn(hw, "Global reset detected, don't clear reset status");
1012 ret = HNS3VF_VECTOR0_EVENT_RST;
1016 /* Check for vector0 mailbox(=CMDQ RX) event source */
1017 if (BIT(HNS3_VECTOR0_RX_CMDQ_INT_B) & cmdq_stat_reg) {
1018 val = cmdq_stat_reg & ~BIT(HNS3_VECTOR0_RX_CMDQ_INT_B);
1019 ret = HNS3VF_VECTOR0_EVENT_MBX;
1024 ret = HNS3VF_VECTOR0_EVENT_OTHER;
1032 hns3vf_interrupt_handler(void *param)
1034 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1035 struct hns3_adapter *hns = dev->data->dev_private;
1036 struct hns3_hw *hw = &hns->hw;
1037 enum hns3vf_evt_cause event_cause;
1040 if (hw->irq_thread_id == 0)
1041 hw->irq_thread_id = pthread_self();
1043 /* Disable interrupt */
1044 hns3vf_disable_irq0(hw);
1046 /* Read out interrupt causes */
1047 event_cause = hns3vf_check_event_cause(hns, &clearval);
1049 switch (event_cause) {
1050 case HNS3VF_VECTOR0_EVENT_RST:
1051 hns3_schedule_reset(hns);
1053 case HNS3VF_VECTOR0_EVENT_MBX:
1054 hns3_dev_handle_mbx_msg(hw);
1060 /* Clear interrupt causes */
1061 hns3vf_clear_event_cause(hw, clearval);
1063 /* Enable interrupt */
1064 hns3vf_enable_irq0(hw);
1068 hns3vf_set_default_dev_specifications(struct hns3_hw *hw)
1070 hw->max_non_tso_bd_num = HNS3_MAX_NON_TSO_BD_PER_PKT;
1071 hw->rss_ind_tbl_size = HNS3_RSS_IND_TBL_SIZE;
1072 hw->rss_key_size = HNS3_RSS_KEY_SIZE;
1076 hns3vf_parse_dev_specifications(struct hns3_hw *hw, struct hns3_cmd_desc *desc)
1078 struct hns3_dev_specs_0_cmd *req0;
1080 req0 = (struct hns3_dev_specs_0_cmd *)desc[0].data;
1082 hw->max_non_tso_bd_num = req0->max_non_tso_bd_num;
1083 hw->rss_ind_tbl_size = rte_le_to_cpu_16(req0->rss_ind_tbl_size);
1084 hw->rss_key_size = rte_le_to_cpu_16(req0->rss_key_size);
1088 hns3vf_query_dev_specifications(struct hns3_hw *hw)
1090 struct hns3_cmd_desc desc[HNS3_QUERY_DEV_SPECS_BD_NUM];
1094 for (i = 0; i < HNS3_QUERY_DEV_SPECS_BD_NUM - 1; i++) {
1095 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_QUERY_DEV_SPECS,
1097 desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1099 hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_QUERY_DEV_SPECS, true);
1101 ret = hns3_cmd_send(hw, desc, HNS3_QUERY_DEV_SPECS_BD_NUM);
1105 hns3vf_parse_dev_specifications(hw, desc);
1111 hns3vf_get_capability(struct hns3_hw *hw)
1113 struct rte_pci_device *pci_dev;
1114 struct rte_eth_dev *eth_dev;
1118 eth_dev = &rte_eth_devices[hw->data->port_id];
1119 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1121 /* Get PCI revision id */
1122 ret = rte_pci_read_config(pci_dev, &revision, HNS3_PCI_REVISION_ID_LEN,
1123 HNS3_PCI_REVISION_ID);
1124 if (ret != HNS3_PCI_REVISION_ID_LEN) {
1125 PMD_INIT_LOG(ERR, "failed to read pci revision id, ret = %d",
1129 hw->revision = revision;
1131 if (revision < PCI_REVISION_ID_HIP09_A) {
1132 hns3vf_set_default_dev_specifications(hw);
1133 hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_RSV_ONE;
1134 hw->intr.coalesce_mode = HNS3_INTR_COALESCE_NON_QL;
1135 hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_2US;
1136 hw->min_tx_pkt_len = HNS3_HIP08_MIN_TX_PKT_LEN;
1140 ret = hns3vf_query_dev_specifications(hw);
1143 "failed to query dev specifications, ret = %d",
1148 hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_ALL;
1149 hw->intr.coalesce_mode = HNS3_INTR_COALESCE_QL;
1150 hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_1US;
1151 hw->min_tx_pkt_len = HNS3_HIP09_MIN_TX_PKT_LEN;
1157 hns3vf_check_tqp_info(struct hns3_hw *hw)
1161 tqps_num = hw->tqps_num;
1162 if (tqps_num > HNS3_MAX_TQP_NUM_PER_FUNC || tqps_num == 0) {
1163 PMD_INIT_LOG(ERR, "Get invalid tqps_num(%u) from PF. valid "
1165 tqps_num, HNS3_MAX_TQP_NUM_PER_FUNC);
1169 hw->alloc_rss_size = RTE_MIN(hw->rss_size_max, hw->tqps_num);
1174 hns3vf_get_port_base_vlan_filter_state(struct hns3_hw *hw)
1179 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_VLAN,
1180 HNS3_MBX_GET_PORT_BASE_VLAN_STATE, NULL, 0,
1181 true, &resp_msg, sizeof(resp_msg));
1183 if (ret == -ETIME) {
1185 * Getting current port based VLAN state from PF driver
1186 * will not affect VF driver's basic function. Because
1187 * the VF driver relies on hns3 PF kernel ether driver,
1188 * to avoid introducing compatibility issues with older
1189 * version of PF driver, no failure will be returned
1190 * when the return value is ETIME. This return value has
1191 * the following scenarios:
1192 * 1) Firmware didn't return the results in time
1193 * 2) the result return by firmware is timeout
1194 * 3) the older version of kernel side PF driver does
1195 * not support this mailbox message.
1196 * For scenarios 1 and 2, it is most likely that a
1197 * hardware error has occurred, or a hardware reset has
1198 * occurred. In this case, these errors will be caught
1199 * by other functions.
1201 PMD_INIT_LOG(WARNING,
1202 "failed to get PVID state for timeout, maybe "
1203 "kernel side PF driver doesn't support this "
1204 "mailbox message, or firmware didn't respond.");
1205 resp_msg = HNS3_PORT_BASE_VLAN_DISABLE;
1207 PMD_INIT_LOG(ERR, "failed to get port based VLAN state,"
1212 hw->port_base_vlan_cfg.state = resp_msg ?
1213 HNS3_PORT_BASE_VLAN_ENABLE : HNS3_PORT_BASE_VLAN_DISABLE;
1218 hns3vf_get_queue_info(struct hns3_hw *hw)
1220 #define HNS3VF_TQPS_RSS_INFO_LEN 6
1221 uint8_t resp_msg[HNS3VF_TQPS_RSS_INFO_LEN];
1224 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_QINFO, 0, NULL, 0, true,
1225 resp_msg, HNS3VF_TQPS_RSS_INFO_LEN);
1227 PMD_INIT_LOG(ERR, "Failed to get tqp info from PF: %d", ret);
1231 memcpy(&hw->tqps_num, &resp_msg[0], sizeof(uint16_t));
1232 memcpy(&hw->rss_size_max, &resp_msg[2], sizeof(uint16_t));
1234 return hns3vf_check_tqp_info(hw);
1238 hns3vf_get_queue_depth(struct hns3_hw *hw)
1240 #define HNS3VF_TQPS_DEPTH_INFO_LEN 4
1241 uint8_t resp_msg[HNS3VF_TQPS_DEPTH_INFO_LEN];
1244 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_QDEPTH, 0, NULL, 0, true,
1245 resp_msg, HNS3VF_TQPS_DEPTH_INFO_LEN);
1247 PMD_INIT_LOG(ERR, "Failed to get tqp depth info from PF: %d",
1252 memcpy(&hw->num_tx_desc, &resp_msg[0], sizeof(uint16_t));
1253 memcpy(&hw->num_rx_desc, &resp_msg[2], sizeof(uint16_t));
1259 hns3vf_get_tc_info(struct hns3_hw *hw)
1264 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_TCINFO, 0, NULL, 0,
1265 true, &resp_msg, sizeof(resp_msg));
1267 hns3_err(hw, "VF request to get TC info from PF failed %d",
1272 hw->hw_tc_map = resp_msg;
1278 hns3vf_get_host_mac_addr(struct hns3_hw *hw)
1280 uint8_t host_mac[RTE_ETHER_ADDR_LEN];
1283 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_MAC_ADDR, 0, NULL, 0,
1284 true, host_mac, RTE_ETHER_ADDR_LEN);
1286 hns3_err(hw, "Failed to get mac addr from PF: %d", ret);
1290 memcpy(hw->mac.mac_addr, host_mac, RTE_ETHER_ADDR_LEN);
1296 hns3vf_get_configuration(struct hns3_hw *hw)
1300 hw->mac.media_type = HNS3_MEDIA_TYPE_NONE;
1301 hw->rss_dis_flag = false;
1303 /* Get device capability */
1304 ret = hns3vf_get_capability(hw);
1306 PMD_INIT_LOG(ERR, "failed to get device capability: %d.", ret);
1310 /* Get queue configuration from PF */
1311 ret = hns3vf_get_queue_info(hw);
1315 /* Get queue depth info from PF */
1316 ret = hns3vf_get_queue_depth(hw);
1320 /* Get user defined VF MAC addr from PF */
1321 ret = hns3vf_get_host_mac_addr(hw);
1325 ret = hns3vf_get_port_base_vlan_filter_state(hw);
1329 /* Get tc configuration from PF */
1330 return hns3vf_get_tc_info(hw);
1334 hns3vf_set_tc_info(struct hns3_adapter *hns)
1336 struct hns3_hw *hw = &hns->hw;
1337 uint16_t nb_rx_q = hw->data->nb_rx_queues;
1338 uint16_t nb_tx_q = hw->data->nb_tx_queues;
1342 for (i = 0; i < HNS3_MAX_TC_NUM; i++)
1343 if (hw->hw_tc_map & BIT(i))
1346 if (nb_rx_q < hw->num_tc) {
1347 hns3_err(hw, "number of Rx queues(%d) is less than tcs(%d).",
1348 nb_rx_q, hw->num_tc);
1352 if (nb_tx_q < hw->num_tc) {
1353 hns3_err(hw, "number of Tx queues(%d) is less than tcs(%d).",
1354 nb_tx_q, hw->num_tc);
1358 hns3_set_rss_size(hw, nb_rx_q);
1359 hns3_tc_queue_mapping_cfg(hw, nb_tx_q);
1365 hns3vf_request_link_info(struct hns3_hw *hw)
1370 if (rte_atomic16_read(&hw->reset.resetting))
1372 ret = hns3_send_mbx_msg(hw, HNS3_MBX_GET_LINK_STATUS, 0, NULL, 0, false,
1373 &resp_msg, sizeof(resp_msg));
1375 hns3_err(hw, "Failed to fetch link status from PF: %d", ret);
1379 hns3vf_vlan_filter_configure(struct hns3_adapter *hns, uint16_t vlan_id, int on)
1381 #define HNS3VF_VLAN_MBX_MSG_LEN 5
1382 struct hns3_hw *hw = &hns->hw;
1383 uint8_t msg_data[HNS3VF_VLAN_MBX_MSG_LEN];
1384 uint16_t proto = htons(RTE_ETHER_TYPE_VLAN);
1385 uint8_t is_kill = on ? 0 : 1;
1387 msg_data[0] = is_kill;
1388 memcpy(&msg_data[1], &vlan_id, sizeof(vlan_id));
1389 memcpy(&msg_data[3], &proto, sizeof(proto));
1391 return hns3_send_mbx_msg(hw, HNS3_MBX_SET_VLAN, HNS3_MBX_VLAN_FILTER,
1392 msg_data, HNS3VF_VLAN_MBX_MSG_LEN, true, NULL,
1397 hns3vf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1399 struct hns3_adapter *hns = dev->data->dev_private;
1400 struct hns3_hw *hw = &hns->hw;
1403 if (rte_atomic16_read(&hw->reset.resetting)) {
1405 "vf set vlan id failed during resetting, vlan_id =%u",
1409 rte_spinlock_lock(&hw->lock);
1410 ret = hns3vf_vlan_filter_configure(hns, vlan_id, on);
1411 rte_spinlock_unlock(&hw->lock);
1413 hns3_err(hw, "vf set vlan id failed, vlan_id =%u, ret =%d",
1420 hns3vf_en_hw_strip_rxvtag(struct hns3_hw *hw, bool enable)
1425 msg_data = enable ? 1 : 0;
1426 ret = hns3_send_mbx_msg(hw, HNS3_MBX_SET_VLAN, HNS3_MBX_VLAN_RX_OFF_CFG,
1427 &msg_data, sizeof(msg_data), false, NULL, 0);
1429 hns3_err(hw, "vf enable strip failed, ret =%d", ret);
1435 hns3vf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1437 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1438 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1439 unsigned int tmp_mask;
1442 if (rte_atomic16_read(&hw->reset.resetting)) {
1443 hns3_err(hw, "vf set vlan offload failed during resetting, "
1444 "mask = 0x%x", mask);
1448 tmp_mask = (unsigned int)mask;
1449 /* Vlan stripping setting */
1450 if (tmp_mask & ETH_VLAN_STRIP_MASK) {
1451 rte_spinlock_lock(&hw->lock);
1452 /* Enable or disable VLAN stripping */
1453 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
1454 ret = hns3vf_en_hw_strip_rxvtag(hw, true);
1456 ret = hns3vf_en_hw_strip_rxvtag(hw, false);
1457 rte_spinlock_unlock(&hw->lock);
1464 hns3vf_handle_all_vlan_table(struct hns3_adapter *hns, int on)
1466 struct rte_vlan_filter_conf *vfc;
1467 struct hns3_hw *hw = &hns->hw;
1474 vfc = &hw->data->vlan_filter_conf;
1475 for (i = 0; i < RTE_DIM(vfc->ids); i++) {
1476 if (vfc->ids[i] == 0)
1481 * 64 means the num bits of ids, one bit corresponds to
1485 /* count trailing zeroes */
1486 vbit = ~ids & (ids - 1);
1487 /* clear least significant bit set */
1488 ids ^= (ids ^ (ids - 1)) ^ vbit;
1493 ret = hns3vf_vlan_filter_configure(hns, vlan_id, on);
1496 "VF handle vlan table failed, ret =%d, on = %d",
1507 hns3vf_remove_all_vlan_table(struct hns3_adapter *hns)
1509 return hns3vf_handle_all_vlan_table(hns, 0);
1513 hns3vf_restore_vlan_conf(struct hns3_adapter *hns)
1515 struct hns3_hw *hw = &hns->hw;
1516 struct rte_eth_conf *dev_conf;
1520 dev_conf = &hw->data->dev_conf;
1521 en = dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP ? true
1523 ret = hns3vf_en_hw_strip_rxvtag(hw, en);
1525 hns3_err(hw, "VF restore vlan conf fail, en =%d, ret =%d", en,
1531 hns3vf_dev_configure_vlan(struct rte_eth_dev *dev)
1533 struct hns3_adapter *hns = dev->data->dev_private;
1534 struct rte_eth_dev_data *data = dev->data;
1535 struct hns3_hw *hw = &hns->hw;
1538 if (data->dev_conf.txmode.hw_vlan_reject_tagged ||
1539 data->dev_conf.txmode.hw_vlan_reject_untagged ||
1540 data->dev_conf.txmode.hw_vlan_insert_pvid) {
1541 hns3_warn(hw, "hw_vlan_reject_tagged, hw_vlan_reject_untagged "
1542 "or hw_vlan_insert_pvid is not support!");
1545 /* Apply vlan offload setting */
1546 ret = hns3vf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1548 hns3_err(hw, "dev config vlan offload failed, ret =%d", ret);
1554 hns3vf_set_alive(struct hns3_hw *hw, bool alive)
1558 msg_data = alive ? 1 : 0;
1559 return hns3_send_mbx_msg(hw, HNS3_MBX_SET_ALIVE, 0, &msg_data,
1560 sizeof(msg_data), false, NULL, 0);
1564 hns3vf_keep_alive_handler(void *param)
1566 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1567 struct hns3_adapter *hns = eth_dev->data->dev_private;
1568 struct hns3_hw *hw = &hns->hw;
1572 ret = hns3_send_mbx_msg(hw, HNS3_MBX_KEEP_ALIVE, 0, NULL, 0,
1573 false, &respmsg, sizeof(uint8_t));
1575 hns3_err(hw, "VF sends keeping alive cmd failed(=%d)",
1578 rte_eal_alarm_set(HNS3VF_KEEP_ALIVE_INTERVAL, hns3vf_keep_alive_handler,
1583 hns3vf_service_handler(void *param)
1585 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1586 struct hns3_adapter *hns = eth_dev->data->dev_private;
1587 struct hns3_hw *hw = &hns->hw;
1590 * The query link status and reset processing are executed in the
1591 * interrupt thread.When the IMP reset occurs, IMP will not respond,
1592 * and the query operation will time out after 30ms. In the case of
1593 * multiple PF/VFs, each query failure timeout causes the IMP reset
1594 * interrupt to fail to respond within 100ms.
1595 * Before querying the link status, check whether there is a reset
1596 * pending, and if so, abandon the query.
1598 if (!hns3vf_is_reset_pending(hns))
1599 hns3vf_request_link_info(hw);
1601 hns3_warn(hw, "Cancel the query when reset is pending");
1603 rte_eal_alarm_set(HNS3VF_SERVICE_INTERVAL, hns3vf_service_handler,
1608 hns3_query_vf_resource(struct hns3_hw *hw)
1610 struct hns3_vf_res_cmd *req;
1611 struct hns3_cmd_desc desc;
1615 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_VF_RSRC, true);
1616 ret = hns3_cmd_send(hw, &desc, 1);
1618 hns3_err(hw, "query vf resource failed, ret = %d", ret);
1622 req = (struct hns3_vf_res_cmd *)desc.data;
1623 num_msi = hns3_get_field(rte_le_to_cpu_16(req->vf_intr_vector_number),
1624 HNS3_VF_VEC_NUM_M, HNS3_VF_VEC_NUM_S);
1625 if (num_msi < HNS3_MIN_VECTOR_NUM) {
1626 hns3_err(hw, "Just %u msi resources, not enough for vf(min:%d)",
1627 num_msi, HNS3_MIN_VECTOR_NUM);
1631 hw->num_msi = num_msi;
1637 hns3vf_init_hardware(struct hns3_adapter *hns)
1639 struct hns3_hw *hw = &hns->hw;
1640 uint16_t mtu = hw->data->mtu;
1643 ret = hns3vf_set_promisc_mode(hw, true, false, false);
1647 ret = hns3vf_config_mtu(hw, mtu);
1649 goto err_init_hardware;
1651 ret = hns3vf_vlan_filter_configure(hns, 0, 1);
1653 PMD_INIT_LOG(ERR, "Failed to initialize VLAN config: %d", ret);
1654 goto err_init_hardware;
1657 ret = hns3_config_gro(hw, false);
1659 PMD_INIT_LOG(ERR, "Failed to config gro: %d", ret);
1660 goto err_init_hardware;
1664 * In the initialization clearing the all hardware mapping relationship
1665 * configurations between queues and interrupt vectors is needed, so
1666 * some error caused by the residual configurations, such as the
1667 * unexpected interrupt, can be avoid.
1669 ret = hns3vf_init_ring_with_vector(hw);
1671 PMD_INIT_LOG(ERR, "Failed to init ring intr vector: %d", ret);
1672 goto err_init_hardware;
1675 ret = hns3vf_set_alive(hw, true);
1677 PMD_INIT_LOG(ERR, "Failed to VF send alive to PF: %d", ret);
1678 goto err_init_hardware;
1681 hns3vf_request_link_info(hw);
1685 (void)hns3vf_set_promisc_mode(hw, false, false, false);
1690 hns3vf_clear_vport_list(struct hns3_hw *hw)
1692 return hns3_send_mbx_msg(hw, HNS3_MBX_HANDLE_VF_TBL,
1693 HNS3_MBX_VPORT_LIST_CLEAR, NULL, 0, false,
1698 hns3vf_init_vf(struct rte_eth_dev *eth_dev)
1700 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1701 struct hns3_adapter *hns = eth_dev->data->dev_private;
1702 struct hns3_hw *hw = &hns->hw;
1705 PMD_INIT_FUNC_TRACE();
1707 /* Get hardware io base address from pcie BAR2 IO space */
1708 hw->io_base = pci_dev->mem_resource[2].addr;
1710 /* Firmware command queue initialize */
1711 ret = hns3_cmd_init_queue(hw);
1713 PMD_INIT_LOG(ERR, "Failed to init cmd queue: %d", ret);
1714 goto err_cmd_init_queue;
1717 /* Firmware command initialize */
1718 ret = hns3_cmd_init(hw);
1720 PMD_INIT_LOG(ERR, "Failed to init cmd: %d", ret);
1724 /* Get VF resource */
1725 ret = hns3_query_vf_resource(hw);
1729 rte_spinlock_init(&hw->mbx_resp.lock);
1731 hns3vf_clear_event_cause(hw, 0);
1733 ret = rte_intr_callback_register(&pci_dev->intr_handle,
1734 hns3vf_interrupt_handler, eth_dev);
1736 PMD_INIT_LOG(ERR, "Failed to register intr: %d", ret);
1737 goto err_intr_callback_register;
1740 /* Enable interrupt */
1741 rte_intr_enable(&pci_dev->intr_handle);
1742 hns3vf_enable_irq0(hw);
1744 /* Get configuration from PF */
1745 ret = hns3vf_get_configuration(hw);
1747 PMD_INIT_LOG(ERR, "Failed to fetch configuration: %d", ret);
1748 goto err_get_config;
1751 ret = hns3vf_clear_vport_list(hw);
1753 PMD_INIT_LOG(ERR, "Failed to clear tbl list: %d", ret);
1754 goto err_get_config;
1757 ret = hns3vf_init_hardware(hns);
1759 goto err_get_config;
1761 hns3_set_default_rss_args(hw);
1766 hns3vf_disable_irq0(hw);
1767 rte_intr_disable(&pci_dev->intr_handle);
1768 hns3_intr_unregister(&pci_dev->intr_handle, hns3vf_interrupt_handler,
1770 err_intr_callback_register:
1772 hns3_cmd_uninit(hw);
1773 hns3_cmd_destroy_queue(hw);
1781 hns3vf_uninit_vf(struct rte_eth_dev *eth_dev)
1783 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1784 struct hns3_adapter *hns = eth_dev->data->dev_private;
1785 struct hns3_hw *hw = &hns->hw;
1787 PMD_INIT_FUNC_TRACE();
1789 hns3_rss_uninit(hns);
1790 (void)hns3_config_gro(hw, false);
1791 (void)hns3vf_set_alive(hw, false);
1792 (void)hns3vf_set_promisc_mode(hw, false, false, false);
1793 hns3vf_disable_irq0(hw);
1794 rte_intr_disable(&pci_dev->intr_handle);
1795 hns3_intr_unregister(&pci_dev->intr_handle, hns3vf_interrupt_handler,
1797 hns3_cmd_uninit(hw);
1798 hns3_cmd_destroy_queue(hw);
1803 hns3vf_do_stop(struct hns3_adapter *hns)
1805 struct hns3_hw *hw = &hns->hw;
1808 hw->mac.link_status = ETH_LINK_DOWN;
1810 if (rte_atomic16_read(&hw->reset.disable_cmd) == 0) {
1811 hns3vf_configure_mac_addr(hns, true);
1814 reset_queue = false;
1815 return hns3_stop_queues(hns, reset_queue);
1819 hns3vf_unmap_rx_interrupt(struct rte_eth_dev *dev)
1821 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1822 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1823 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1824 uint8_t base = RTE_INTR_VEC_ZERO_OFFSET;
1825 uint8_t vec = RTE_INTR_VEC_ZERO_OFFSET;
1828 if (dev->data->dev_conf.intr_conf.rxq == 0)
1831 /* unmap the ring with vector */
1832 if (rte_intr_allow_others(intr_handle)) {
1833 vec = RTE_INTR_VEC_RXTX_OFFSET;
1834 base = RTE_INTR_VEC_RXTX_OFFSET;
1836 if (rte_intr_dp_is_en(intr_handle)) {
1837 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
1838 (void)hns3vf_bind_ring_with_vector(hw, vec, false,
1841 if (vec < base + intr_handle->nb_efd - 1)
1845 /* Clean datapath event and queue/vec mapping */
1846 rte_intr_efd_disable(intr_handle);
1847 if (intr_handle->intr_vec) {
1848 rte_free(intr_handle->intr_vec);
1849 intr_handle->intr_vec = NULL;
1854 hns3vf_dev_stop(struct rte_eth_dev *dev)
1856 struct hns3_adapter *hns = dev->data->dev_private;
1857 struct hns3_hw *hw = &hns->hw;
1859 PMD_INIT_FUNC_TRACE();
1861 hw->adapter_state = HNS3_NIC_STOPPING;
1862 hns3_set_rxtx_function(dev);
1864 /* Disable datapath on secondary process. */
1865 hns3_mp_req_stop_rxtx(dev);
1866 /* Prevent crashes when queues are still in use. */
1867 rte_delay_ms(hw->tqps_num);
1869 rte_spinlock_lock(&hw->lock);
1870 if (rte_atomic16_read(&hw->reset.resetting) == 0) {
1871 hns3vf_do_stop(hns);
1872 hns3vf_unmap_rx_interrupt(dev);
1873 hns3_dev_release_mbufs(hns);
1874 hw->adapter_state = HNS3_NIC_CONFIGURED;
1876 rte_eal_alarm_cancel(hns3vf_service_handler, dev);
1877 rte_spinlock_unlock(&hw->lock);
1881 hns3vf_dev_close(struct rte_eth_dev *eth_dev)
1883 struct hns3_adapter *hns = eth_dev->data->dev_private;
1884 struct hns3_hw *hw = &hns->hw;
1886 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1889 if (hw->adapter_state == HNS3_NIC_STARTED)
1890 hns3vf_dev_stop(eth_dev);
1892 hw->adapter_state = HNS3_NIC_CLOSING;
1893 hns3_reset_abort(hns);
1894 hw->adapter_state = HNS3_NIC_CLOSED;
1895 rte_eal_alarm_cancel(hns3vf_keep_alive_handler, eth_dev);
1896 hns3vf_configure_all_mc_mac_addr(hns, true);
1897 hns3vf_remove_all_vlan_table(hns);
1898 hns3vf_uninit_vf(eth_dev);
1899 hns3_free_all_queues(eth_dev);
1900 rte_free(hw->reset.wait_data);
1901 rte_free(eth_dev->process_private);
1902 eth_dev->process_private = NULL;
1903 hns3_mp_uninit_primary();
1904 hns3_warn(hw, "Close port %d finished", hw->data->port_id);
1908 hns3vf_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version,
1911 struct hns3_adapter *hns = eth_dev->data->dev_private;
1912 struct hns3_hw *hw = &hns->hw;
1913 uint32_t version = hw->fw_version;
1916 ret = snprintf(fw_version, fw_size, "%lu.%lu.%lu.%lu",
1917 hns3_get_field(version, HNS3_FW_VERSION_BYTE3_M,
1918 HNS3_FW_VERSION_BYTE3_S),
1919 hns3_get_field(version, HNS3_FW_VERSION_BYTE2_M,
1920 HNS3_FW_VERSION_BYTE2_S),
1921 hns3_get_field(version, HNS3_FW_VERSION_BYTE1_M,
1922 HNS3_FW_VERSION_BYTE1_S),
1923 hns3_get_field(version, HNS3_FW_VERSION_BYTE0_M,
1924 HNS3_FW_VERSION_BYTE0_S));
1925 ret += 1; /* add the size of '\0' */
1926 if (fw_size < (uint32_t)ret)
1933 hns3vf_dev_link_update(struct rte_eth_dev *eth_dev,
1934 __rte_unused int wait_to_complete)
1936 struct hns3_adapter *hns = eth_dev->data->dev_private;
1937 struct hns3_hw *hw = &hns->hw;
1938 struct hns3_mac *mac = &hw->mac;
1939 struct rte_eth_link new_link;
1941 memset(&new_link, 0, sizeof(new_link));
1942 switch (mac->link_speed) {
1943 case ETH_SPEED_NUM_10M:
1944 case ETH_SPEED_NUM_100M:
1945 case ETH_SPEED_NUM_1G:
1946 case ETH_SPEED_NUM_10G:
1947 case ETH_SPEED_NUM_25G:
1948 case ETH_SPEED_NUM_40G:
1949 case ETH_SPEED_NUM_50G:
1950 case ETH_SPEED_NUM_100G:
1951 case ETH_SPEED_NUM_200G:
1952 new_link.link_speed = mac->link_speed;
1955 new_link.link_speed = ETH_SPEED_NUM_100M;
1959 new_link.link_duplex = mac->link_duplex;
1960 new_link.link_status = mac->link_status ? ETH_LINK_UP : ETH_LINK_DOWN;
1961 new_link.link_autoneg =
1962 !(eth_dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED);
1964 return rte_eth_linkstatus_set(eth_dev, &new_link);
1968 hns3vf_do_start(struct hns3_adapter *hns, bool reset_queue)
1970 struct hns3_hw *hw = &hns->hw;
1973 ret = hns3vf_set_tc_info(hns);
1977 ret = hns3_start_queues(hns, reset_queue);
1979 hns3_err(hw, "Failed to start queues: %d", ret);
1985 hns3vf_map_rx_interrupt(struct rte_eth_dev *dev)
1987 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1988 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1989 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1990 uint8_t base = RTE_INTR_VEC_ZERO_OFFSET;
1991 uint8_t vec = RTE_INTR_VEC_ZERO_OFFSET;
1992 uint32_t intr_vector;
1996 if (dev->data->dev_conf.intr_conf.rxq == 0)
1999 /* disable uio/vfio intr/eventfd mapping */
2000 rte_intr_disable(intr_handle);
2002 /* check and configure queue intr-vector mapping */
2003 if (rte_intr_cap_multiple(intr_handle) ||
2004 !RTE_ETH_DEV_SRIOV(dev).active) {
2005 intr_vector = hw->used_rx_queues;
2006 /* It creates event fd for each intr vector when MSIX is used */
2007 if (rte_intr_efd_enable(intr_handle, intr_vector))
2010 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2011 intr_handle->intr_vec =
2012 rte_zmalloc("intr_vec",
2013 hw->used_rx_queues * sizeof(int), 0);
2014 if (intr_handle->intr_vec == NULL) {
2015 hns3_err(hw, "Failed to allocate %d rx_queues"
2016 " intr_vec", hw->used_rx_queues);
2018 goto vf_alloc_intr_vec_error;
2022 if (rte_intr_allow_others(intr_handle)) {
2023 vec = RTE_INTR_VEC_RXTX_OFFSET;
2024 base = RTE_INTR_VEC_RXTX_OFFSET;
2026 if (rte_intr_dp_is_en(intr_handle)) {
2027 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
2028 ret = hns3vf_bind_ring_with_vector(hw, vec, true,
2032 goto vf_bind_vector_error;
2033 intr_handle->intr_vec[q_id] = vec;
2034 if (vec < base + intr_handle->nb_efd - 1)
2038 rte_intr_enable(intr_handle);
2041 vf_bind_vector_error:
2042 rte_intr_efd_disable(intr_handle);
2043 if (intr_handle->intr_vec) {
2044 free(intr_handle->intr_vec);
2045 intr_handle->intr_vec = NULL;
2048 vf_alloc_intr_vec_error:
2049 rte_intr_efd_disable(intr_handle);
2054 hns3vf_restore_rx_interrupt(struct hns3_hw *hw)
2056 struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
2057 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2058 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2062 if (dev->data->dev_conf.intr_conf.rxq == 0)
2065 if (rte_intr_dp_is_en(intr_handle)) {
2066 for (q_id = 0; q_id < hw->used_rx_queues; q_id++) {
2067 ret = hns3vf_bind_ring_with_vector(hw,
2068 intr_handle->intr_vec[q_id], true,
2069 HNS3_RING_TYPE_RX, q_id);
2079 hns3vf_restore_filter(struct rte_eth_dev *dev)
2081 hns3_restore_rss_filter(dev);
2085 hns3vf_dev_start(struct rte_eth_dev *dev)
2087 struct hns3_adapter *hns = dev->data->dev_private;
2088 struct hns3_hw *hw = &hns->hw;
2091 PMD_INIT_FUNC_TRACE();
2092 if (rte_atomic16_read(&hw->reset.resetting))
2095 rte_spinlock_lock(&hw->lock);
2096 hw->adapter_state = HNS3_NIC_STARTING;
2097 ret = hns3vf_do_start(hns, true);
2099 hw->adapter_state = HNS3_NIC_CONFIGURED;
2100 rte_spinlock_unlock(&hw->lock);
2103 ret = hns3vf_map_rx_interrupt(dev);
2105 hw->adapter_state = HNS3_NIC_CONFIGURED;
2106 rte_spinlock_unlock(&hw->lock);
2109 hw->adapter_state = HNS3_NIC_STARTED;
2110 rte_spinlock_unlock(&hw->lock);
2112 hns3_set_rxtx_function(dev);
2113 hns3_mp_req_start_rxtx(dev);
2114 rte_eal_alarm_set(HNS3VF_SERVICE_INTERVAL, hns3vf_service_handler, dev);
2116 hns3vf_restore_filter(dev);
2118 /* Enable interrupt of all rx queues before enabling queues */
2119 hns3_dev_all_rx_queue_intr_enable(hw, true);
2121 * When finished the initialization, enable queues to receive/transmit
2124 hns3_enable_all_queues(hw, true);
2130 is_vf_reset_done(struct hns3_hw *hw)
2132 #define HNS3_FUN_RST_ING_BITS \
2133 (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) | \
2134 BIT(HNS3_VECTOR0_CORERESET_INT_B) | \
2135 BIT(HNS3_VECTOR0_IMPRESET_INT_B) | \
2136 BIT(HNS3_VECTOR0_FUNCRESET_INT_B))
2140 if (hw->reset.level == HNS3_VF_RESET) {
2141 val = hns3_read_dev(hw, HNS3_VF_RST_ING);
2142 if (val & HNS3_VF_RST_ING_BIT)
2145 val = hns3_read_dev(hw, HNS3_FUN_RST_ING);
2146 if (val & HNS3_FUN_RST_ING_BITS)
2153 hns3vf_is_reset_pending(struct hns3_adapter *hns)
2155 struct hns3_hw *hw = &hns->hw;
2156 enum hns3_reset_level reset;
2158 hns3vf_check_event_cause(hns, NULL);
2159 reset = hns3vf_get_reset_level(hw, &hw->reset.pending);
2160 if (hw->reset.level != HNS3_NONE_RESET && hw->reset.level < reset) {
2161 hns3_warn(hw, "High level reset %d is pending", reset);
2168 hns3vf_wait_hardware_ready(struct hns3_adapter *hns)
2170 struct hns3_hw *hw = &hns->hw;
2171 struct hns3_wait_data *wait_data = hw->reset.wait_data;
2174 if (wait_data->result == HNS3_WAIT_SUCCESS) {
2176 * After vf reset is ready, the PF may not have completed
2177 * the reset processing. The vf sending mbox to PF may fail
2178 * during the pf reset, so it is better to add extra delay.
2180 if (hw->reset.level == HNS3_VF_FUNC_RESET ||
2181 hw->reset.level == HNS3_FLR_RESET)
2183 /* Reset retry process, no need to add extra delay. */
2184 if (hw->reset.attempts)
2186 if (wait_data->check_completion == NULL)
2189 wait_data->check_completion = NULL;
2190 wait_data->interval = 1 * MSEC_PER_SEC * USEC_PER_MSEC;
2191 wait_data->count = 1;
2192 wait_data->result = HNS3_WAIT_REQUEST;
2193 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback,
2195 hns3_warn(hw, "hardware is ready, delay 1 sec for PF reset complete");
2197 } else if (wait_data->result == HNS3_WAIT_TIMEOUT) {
2198 gettimeofday(&tv, NULL);
2199 hns3_warn(hw, "Reset step4 hardware not ready after reset time=%ld.%.6ld",
2200 tv.tv_sec, tv.tv_usec);
2202 } else if (wait_data->result == HNS3_WAIT_REQUEST)
2205 wait_data->hns = hns;
2206 wait_data->check_completion = is_vf_reset_done;
2207 wait_data->end_ms = (uint64_t)HNS3VF_RESET_WAIT_CNT *
2208 HNS3VF_RESET_WAIT_MS + get_timeofday_ms();
2209 wait_data->interval = HNS3VF_RESET_WAIT_MS * USEC_PER_MSEC;
2210 wait_data->count = HNS3VF_RESET_WAIT_CNT;
2211 wait_data->result = HNS3_WAIT_REQUEST;
2212 rte_eal_alarm_set(wait_data->interval, hns3_wait_callback, wait_data);
2217 hns3vf_prepare_reset(struct hns3_adapter *hns)
2219 struct hns3_hw *hw = &hns->hw;
2222 if (hw->reset.level == HNS3_VF_FUNC_RESET) {
2223 ret = hns3_send_mbx_msg(hw, HNS3_MBX_RESET, 0, NULL,
2226 rte_atomic16_set(&hw->reset.disable_cmd, 1);
2232 hns3vf_stop_service(struct hns3_adapter *hns)
2234 struct hns3_hw *hw = &hns->hw;
2235 struct rte_eth_dev *eth_dev;
2237 eth_dev = &rte_eth_devices[hw->data->port_id];
2238 if (hw->adapter_state == HNS3_NIC_STARTED)
2239 rte_eal_alarm_cancel(hns3vf_service_handler, eth_dev);
2240 hw->mac.link_status = ETH_LINK_DOWN;
2242 hns3_set_rxtx_function(eth_dev);
2244 /* Disable datapath on secondary process. */
2245 hns3_mp_req_stop_rxtx(eth_dev);
2246 rte_delay_ms(hw->tqps_num);
2248 rte_spinlock_lock(&hw->lock);
2249 if (hw->adapter_state == HNS3_NIC_STARTED ||
2250 hw->adapter_state == HNS3_NIC_STOPPING) {
2251 hns3vf_do_stop(hns);
2252 hw->reset.mbuf_deferred_free = true;
2254 hw->reset.mbuf_deferred_free = false;
2257 * It is cumbersome for hardware to pick-and-choose entries for deletion
2258 * from table space. Hence, for function reset software intervention is
2259 * required to delete the entries.
2261 if (rte_atomic16_read(&hw->reset.disable_cmd) == 0)
2262 hns3vf_configure_all_mc_mac_addr(hns, true);
2263 rte_spinlock_unlock(&hw->lock);
2269 hns3vf_start_service(struct hns3_adapter *hns)
2271 struct hns3_hw *hw = &hns->hw;
2272 struct rte_eth_dev *eth_dev;
2274 eth_dev = &rte_eth_devices[hw->data->port_id];
2275 hns3_set_rxtx_function(eth_dev);
2276 hns3_mp_req_start_rxtx(eth_dev);
2277 if (hw->adapter_state == HNS3_NIC_STARTED) {
2278 hns3vf_service_handler(eth_dev);
2280 /* Enable interrupt of all rx queues before enabling queues */
2281 hns3_dev_all_rx_queue_intr_enable(hw, true);
2283 * When finished the initialization, enable queues to receive
2284 * and transmit packets.
2286 hns3_enable_all_queues(hw, true);
2293 hns3vf_check_default_mac_change(struct hns3_hw *hw)
2295 char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
2296 struct rte_ether_addr *hw_mac;
2300 * The hns3 PF ethdev driver in kernel support setting VF MAC address
2301 * on the host by "ip link set ..." command. If the hns3 PF kernel
2302 * ethdev driver sets the MAC address for VF device after the
2303 * initialization of the related VF device, the PF driver will notify
2304 * VF driver to reset VF device to make the new MAC address effective
2305 * immediately. The hns3 VF PMD driver should check whether the MAC
2306 * address has been changed by the PF kernel ethdev driver, if changed
2307 * VF driver should configure hardware using the new MAC address in the
2308 * recovering hardware configuration stage of the reset process.
2310 ret = hns3vf_get_host_mac_addr(hw);
2314 hw_mac = (struct rte_ether_addr *)hw->mac.mac_addr;
2315 ret = rte_is_zero_ether_addr(hw_mac);
2317 rte_ether_addr_copy(&hw->data->mac_addrs[0], hw_mac);
2319 ret = rte_is_same_ether_addr(&hw->data->mac_addrs[0], hw_mac);
2321 rte_ether_addr_copy(hw_mac, &hw->data->mac_addrs[0]);
2322 rte_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
2323 &hw->data->mac_addrs[0]);
2324 hns3_warn(hw, "Default MAC address has been changed to:"
2325 " %s by the host PF kernel ethdev driver",
2334 hns3vf_restore_conf(struct hns3_adapter *hns)
2336 struct hns3_hw *hw = &hns->hw;
2339 ret = hns3vf_check_default_mac_change(hw);
2343 ret = hns3vf_configure_mac_addr(hns, false);
2347 ret = hns3vf_configure_all_mc_mac_addr(hns, false);
2351 ret = hns3vf_restore_promisc(hns);
2353 goto err_vlan_table;
2355 ret = hns3vf_restore_vlan_conf(hns);
2357 goto err_vlan_table;
2359 ret = hns3vf_get_port_base_vlan_filter_state(hw);
2361 goto err_vlan_table;
2363 ret = hns3vf_restore_rx_interrupt(hw);
2365 goto err_vlan_table;
2367 ret = hns3_restore_gro_conf(hw);
2369 goto err_vlan_table;
2371 if (hw->adapter_state == HNS3_NIC_STARTED) {
2372 ret = hns3vf_do_start(hns, false);
2374 goto err_vlan_table;
2375 hns3_info(hw, "hns3vf dev restart successful!");
2376 } else if (hw->adapter_state == HNS3_NIC_STOPPING)
2377 hw->adapter_state = HNS3_NIC_CONFIGURED;
2381 hns3vf_configure_all_mc_mac_addr(hns, true);
2383 hns3vf_configure_mac_addr(hns, true);
2387 static enum hns3_reset_level
2388 hns3vf_get_reset_level(struct hns3_hw *hw, uint64_t *levels)
2390 enum hns3_reset_level reset_level;
2392 /* return the highest priority reset level amongst all */
2393 if (hns3_atomic_test_bit(HNS3_VF_RESET, levels))
2394 reset_level = HNS3_VF_RESET;
2395 else if (hns3_atomic_test_bit(HNS3_VF_FULL_RESET, levels))
2396 reset_level = HNS3_VF_FULL_RESET;
2397 else if (hns3_atomic_test_bit(HNS3_VF_PF_FUNC_RESET, levels))
2398 reset_level = HNS3_VF_PF_FUNC_RESET;
2399 else if (hns3_atomic_test_bit(HNS3_VF_FUNC_RESET, levels))
2400 reset_level = HNS3_VF_FUNC_RESET;
2401 else if (hns3_atomic_test_bit(HNS3_FLR_RESET, levels))
2402 reset_level = HNS3_FLR_RESET;
2404 reset_level = HNS3_NONE_RESET;
2406 if (hw->reset.level != HNS3_NONE_RESET && reset_level < hw->reset.level)
2407 return HNS3_NONE_RESET;
2413 hns3vf_reset_service(void *param)
2415 struct hns3_adapter *hns = (struct hns3_adapter *)param;
2416 struct hns3_hw *hw = &hns->hw;
2417 enum hns3_reset_level reset_level;
2418 struct timeval tv_delta;
2419 struct timeval tv_start;
2424 * The interrupt is not triggered within the delay time.
2425 * The interrupt may have been lost. It is necessary to handle
2426 * the interrupt to recover from the error.
2428 if (rte_atomic16_read(&hns->hw.reset.schedule) == SCHEDULE_DEFERRED) {
2429 rte_atomic16_set(&hns->hw.reset.schedule, SCHEDULE_REQUESTED);
2430 hns3_err(hw, "Handling interrupts in delayed tasks");
2431 hns3vf_interrupt_handler(&rte_eth_devices[hw->data->port_id]);
2432 reset_level = hns3vf_get_reset_level(hw, &hw->reset.pending);
2433 if (reset_level == HNS3_NONE_RESET) {
2434 hns3_err(hw, "No reset level is set, try global reset");
2435 hns3_atomic_set_bit(HNS3_VF_RESET, &hw->reset.pending);
2438 rte_atomic16_set(&hns->hw.reset.schedule, SCHEDULE_NONE);
2441 * Hardware reset has been notified, we now have to poll & check if
2442 * hardware has actually completed the reset sequence.
2444 reset_level = hns3vf_get_reset_level(hw, &hw->reset.pending);
2445 if (reset_level != HNS3_NONE_RESET) {
2446 gettimeofday(&tv_start, NULL);
2447 hns3_reset_process(hns, reset_level);
2448 gettimeofday(&tv, NULL);
2449 timersub(&tv, &tv_start, &tv_delta);
2450 msec = tv_delta.tv_sec * MSEC_PER_SEC +
2451 tv_delta.tv_usec / USEC_PER_MSEC;
2452 if (msec > HNS3_RESET_PROCESS_MS)
2453 hns3_err(hw, "%d handle long time delta %" PRIx64
2454 " ms time=%ld.%.6ld",
2455 hw->reset.level, msec, tv.tv_sec, tv.tv_usec);
2460 hns3vf_reinit_dev(struct hns3_adapter *hns)
2462 struct rte_eth_dev *eth_dev = &rte_eth_devices[hns->hw.data->port_id];
2463 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
2464 struct hns3_hw *hw = &hns->hw;
2467 if (hw->reset.level == HNS3_VF_FULL_RESET) {
2468 rte_intr_disable(&pci_dev->intr_handle);
2469 hns3vf_set_bus_master(pci_dev, true);
2472 /* Firmware command initialize */
2473 ret = hns3_cmd_init(hw);
2475 hns3_err(hw, "Failed to init cmd: %d", ret);
2479 if (hw->reset.level == HNS3_VF_FULL_RESET) {
2481 * UIO enables msix by writing the pcie configuration space
2482 * vfio_pci enables msix in rte_intr_enable.
2484 if (pci_dev->kdrv == RTE_PCI_KDRV_IGB_UIO ||
2485 pci_dev->kdrv == RTE_PCI_KDRV_UIO_GENERIC) {
2486 if (hns3vf_enable_msix(pci_dev, true))
2487 hns3_err(hw, "Failed to enable msix");
2490 rte_intr_enable(&pci_dev->intr_handle);
2493 ret = hns3_reset_all_queues(hns);
2495 hns3_err(hw, "Failed to reset all queues: %d", ret);
2499 ret = hns3vf_init_hardware(hns);
2501 hns3_err(hw, "Failed to init hardware: %d", ret);
2508 static const struct eth_dev_ops hns3vf_eth_dev_ops = {
2509 .dev_start = hns3vf_dev_start,
2510 .dev_stop = hns3vf_dev_stop,
2511 .dev_close = hns3vf_dev_close,
2512 .mtu_set = hns3vf_dev_mtu_set,
2513 .promiscuous_enable = hns3vf_dev_promiscuous_enable,
2514 .promiscuous_disable = hns3vf_dev_promiscuous_disable,
2515 .allmulticast_enable = hns3vf_dev_allmulticast_enable,
2516 .allmulticast_disable = hns3vf_dev_allmulticast_disable,
2517 .stats_get = hns3_stats_get,
2518 .stats_reset = hns3_stats_reset,
2519 .xstats_get = hns3_dev_xstats_get,
2520 .xstats_get_names = hns3_dev_xstats_get_names,
2521 .xstats_reset = hns3_dev_xstats_reset,
2522 .xstats_get_by_id = hns3_dev_xstats_get_by_id,
2523 .xstats_get_names_by_id = hns3_dev_xstats_get_names_by_id,
2524 .dev_infos_get = hns3vf_dev_infos_get,
2525 .fw_version_get = hns3vf_fw_version_get,
2526 .rx_queue_setup = hns3_rx_queue_setup,
2527 .tx_queue_setup = hns3_tx_queue_setup,
2528 .rx_queue_release = hns3_dev_rx_queue_release,
2529 .tx_queue_release = hns3_dev_tx_queue_release,
2530 .rx_queue_intr_enable = hns3_dev_rx_queue_intr_enable,
2531 .rx_queue_intr_disable = hns3_dev_rx_queue_intr_disable,
2532 .rxq_info_get = hns3_rxq_info_get,
2533 .txq_info_get = hns3_txq_info_get,
2534 .dev_configure = hns3vf_dev_configure,
2535 .mac_addr_add = hns3vf_add_mac_addr,
2536 .mac_addr_remove = hns3vf_remove_mac_addr,
2537 .mac_addr_set = hns3vf_set_default_mac_addr,
2538 .set_mc_addr_list = hns3vf_set_mc_mac_addr_list,
2539 .link_update = hns3vf_dev_link_update,
2540 .rss_hash_update = hns3_dev_rss_hash_update,
2541 .rss_hash_conf_get = hns3_dev_rss_hash_conf_get,
2542 .reta_update = hns3_dev_rss_reta_update,
2543 .reta_query = hns3_dev_rss_reta_query,
2544 .filter_ctrl = hns3_dev_filter_ctrl,
2545 .vlan_filter_set = hns3vf_vlan_filter_set,
2546 .vlan_offload_set = hns3vf_vlan_offload_set,
2547 .get_reg = hns3_get_regs,
2548 .dev_supported_ptypes_get = hns3_dev_supported_ptypes_get,
2551 static const struct hns3_reset_ops hns3vf_reset_ops = {
2552 .reset_service = hns3vf_reset_service,
2553 .stop_service = hns3vf_stop_service,
2554 .prepare_reset = hns3vf_prepare_reset,
2555 .wait_hardware_ready = hns3vf_wait_hardware_ready,
2556 .reinit_dev = hns3vf_reinit_dev,
2557 .restore_conf = hns3vf_restore_conf,
2558 .start_service = hns3vf_start_service,
2562 hns3vf_dev_init(struct rte_eth_dev *eth_dev)
2564 struct hns3_adapter *hns = eth_dev->data->dev_private;
2565 struct hns3_hw *hw = &hns->hw;
2568 PMD_INIT_FUNC_TRACE();
2570 eth_dev->process_private = (struct hns3_process_private *)
2571 rte_zmalloc_socket("hns3_filter_list",
2572 sizeof(struct hns3_process_private),
2573 RTE_CACHE_LINE_SIZE, eth_dev->device->numa_node);
2574 if (eth_dev->process_private == NULL) {
2575 PMD_INIT_LOG(ERR, "Failed to alloc memory for process private");
2579 /* initialize flow filter lists */
2580 hns3_filterlist_init(eth_dev);
2582 hns3_set_rxtx_function(eth_dev);
2583 eth_dev->dev_ops = &hns3vf_eth_dev_ops;
2584 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2585 ret = hns3_mp_init_secondary();
2587 PMD_INIT_LOG(ERR, "Failed to init for secondary "
2588 "process, ret = %d", ret);
2589 goto err_mp_init_secondary;
2592 hw->secondary_cnt++;
2596 ret = hns3_mp_init_primary();
2599 "Failed to init for primary process, ret = %d",
2601 goto err_mp_init_primary;
2604 hw->adapter_state = HNS3_NIC_UNINITIALIZED;
2606 hw->data = eth_dev->data;
2608 ret = hns3_reset_init(hw);
2610 goto err_init_reset;
2611 hw->reset.ops = &hns3vf_reset_ops;
2613 ret = hns3vf_init_vf(eth_dev);
2615 PMD_INIT_LOG(ERR, "Failed to init vf: %d", ret);
2619 /* Allocate memory for storing MAC addresses */
2620 eth_dev->data->mac_addrs = rte_zmalloc("hns3vf-mac",
2621 sizeof(struct rte_ether_addr) *
2622 HNS3_VF_UC_MACADDR_NUM, 0);
2623 if (eth_dev->data->mac_addrs == NULL) {
2624 PMD_INIT_LOG(ERR, "Failed to allocate %zx bytes needed "
2625 "to store MAC addresses",
2626 sizeof(struct rte_ether_addr) *
2627 HNS3_VF_UC_MACADDR_NUM);
2629 goto err_rte_zmalloc;
2633 * The hns3 PF ethdev driver in kernel support setting VF MAC address
2634 * on the host by "ip link set ..." command. To avoid some incorrect
2635 * scenes, for example, hns3 VF PMD driver fails to receive and send
2636 * packets after user configure the MAC address by using the
2637 * "ip link set ..." command, hns3 VF PMD driver keep the same MAC
2638 * address strategy as the hns3 kernel ethdev driver in the
2639 * initialization. If user configure a MAC address by the ip command
2640 * for VF device, then hns3 VF PMD driver will start with it, otherwise
2641 * start with a random MAC address in the initialization.
2643 if (rte_is_zero_ether_addr((struct rte_ether_addr *)hw->mac.mac_addr))
2644 rte_eth_random_addr(hw->mac.mac_addr);
2645 rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.mac_addr,
2646 ð_dev->data->mac_addrs[0]);
2648 hw->adapter_state = HNS3_NIC_INITIALIZED;
2650 * Pass the information to the rte_eth_dev_close() that it should also
2651 * release the private port resources.
2653 eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
2655 if (rte_atomic16_read(&hns->hw.reset.schedule) == SCHEDULE_PENDING) {
2656 hns3_err(hw, "Reschedule reset service after dev_init");
2657 hns3_schedule_reset(hns);
2659 /* IMP will wait ready flag before reset */
2660 hns3_notify_reset_ready(hw, false);
2662 rte_eal_alarm_set(HNS3VF_KEEP_ALIVE_INTERVAL, hns3vf_keep_alive_handler,
2667 hns3vf_uninit_vf(eth_dev);
2670 rte_free(hw->reset.wait_data);
2673 hns3_mp_uninit_primary();
2675 err_mp_init_primary:
2676 err_mp_init_secondary:
2677 eth_dev->dev_ops = NULL;
2678 eth_dev->rx_pkt_burst = NULL;
2679 eth_dev->tx_pkt_burst = NULL;
2680 eth_dev->tx_pkt_prepare = NULL;
2681 rte_free(eth_dev->process_private);
2682 eth_dev->process_private = NULL;
2688 hns3vf_dev_uninit(struct rte_eth_dev *eth_dev)
2690 struct hns3_adapter *hns = eth_dev->data->dev_private;
2691 struct hns3_hw *hw = &hns->hw;
2693 PMD_INIT_FUNC_TRACE();
2695 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2698 eth_dev->dev_ops = NULL;
2699 eth_dev->rx_pkt_burst = NULL;
2700 eth_dev->tx_pkt_burst = NULL;
2701 eth_dev->tx_pkt_prepare = NULL;
2703 if (hw->adapter_state < HNS3_NIC_CLOSING)
2704 hns3vf_dev_close(eth_dev);
2706 hw->adapter_state = HNS3_NIC_REMOVED;
2711 eth_hns3vf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2712 struct rte_pci_device *pci_dev)
2714 return rte_eth_dev_pci_generic_probe(pci_dev,
2715 sizeof(struct hns3_adapter),
2720 eth_hns3vf_pci_remove(struct rte_pci_device *pci_dev)
2722 return rte_eth_dev_pci_generic_remove(pci_dev, hns3vf_dev_uninit);
2725 static const struct rte_pci_id pci_id_hns3vf_map[] = {
2726 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_100G_VF) },
2727 { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_100G_RDMA_PFC_VF) },
2728 { .vendor_id = 0, /* sentinel */ },
2731 static struct rte_pci_driver rte_hns3vf_pmd = {
2732 .id_table = pci_id_hns3vf_map,
2733 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
2734 .probe = eth_hns3vf_pci_probe,
2735 .remove = eth_hns3vf_pci_remove,
2738 RTE_PMD_REGISTER_PCI(net_hns3_vf, rte_hns3vf_pmd);
2739 RTE_PMD_REGISTER_PCI_TABLE(net_hns3_vf, pci_id_hns3vf_map);
2740 RTE_PMD_REGISTER_KMOD_DEP(net_hns3_vf, "* igb_uio | vfio-pci");