From: Peng Zhang <peng.zh...@corigine.com> Add the data field and related logic to get the VF configuration from firmware and store them.
Signed-off-by: Peng Zhang <peng.zh...@corigine.com> Reviewed-by: Chaoyong He <chaoyong...@corigine.com> Reviewed-by: Long Wu <long...@corigine.com> --- drivers/net/nfp/nfp_ethdev.c | 106 +++++++++++++++++++++++++++++++ drivers/net/nfp/nfp_net_common.h | 5 ++ 2 files changed, 111 insertions(+) diff --git a/drivers/net/nfp/nfp_ethdev.c b/drivers/net/nfp/nfp_ethdev.c index 177e5d1e06..e67ff3a0a0 100644 --- a/drivers/net/nfp/nfp_ethdev.c +++ b/drivers/net/nfp/nfp_ethdev.c @@ -10,6 +10,7 @@ #include <eal_firmware.h> #include <rte_alarm.h> #include <rte_kvargs.h> +#include <rte_pci.h> #include "flower/nfp_flower.h" #include "nfd3/nfp_nfd3.h" @@ -1858,6 +1859,103 @@ nfp_fw_app_primary_init(struct nfp_net_hw_priv *hw_priv) return 0; } +static int +nfp_pf_get_max_vf(struct nfp_pf_dev *pf_dev) +{ + int ret; + uint32_t max_vfs; + + max_vfs = nfp_rtsym_read_le(pf_dev->sym_tbl, "nfd_vf_cfg_max_vfs", &ret); + if (ret != 0) + return ret; + + pf_dev->max_vfs = max_vfs; + + return 0; +} + +static int +nfp_pf_get_sriov_vf(struct nfp_pf_dev *pf_dev, + const struct nfp_dev_info *dev_info) +{ + int ret; + off_t pos; + uint16_t offset; + uint16_t sriov_vf; + + /* For 3800 single-PF and 4000 card */ + if (!pf_dev->multi_pf.enabled) { + pf_dev->sriov_vf = pf_dev->max_vfs; + return 0; + } + + pos = rte_pci_find_ext_capability(pf_dev->pci_dev, RTE_PCI_EXT_CAP_ID_SRIOV); + if (pos == 0) { + PMD_INIT_LOG(ERR, "Can not get the pci sriov cap"); + return -EIO; + } + + /* + * Management firmware ensures that sriov capability registers + * are initialized correctly. + */ + ret = rte_pci_read_config(pf_dev->pci_dev, &sriov_vf, sizeof(sriov_vf), + pos + RTE_PCI_SRIOV_TOTAL_VF); + if (ret < 0) { + PMD_INIT_LOG(ERR, "Can not read the sriov toatl VF"); + return -EIO; + } + + /* Offset of first VF is relative to its PF. */ + ret = rte_pci_read_config(pf_dev->pci_dev, &offset, sizeof(offset), + pos + RTE_PCI_SRIOV_VF_OFFSET); + if (ret < 0) { + PMD_INIT_LOG(ERR, "Can not get the VF offset"); + return -EIO; + } + + offset += pf_dev->multi_pf.function_id; + if (offset < dev_info->pf_num_per_unit) + return -ERANGE; + + offset -= dev_info->pf_num_per_unit; + if (offset >= pf_dev->max_vfs || offset + sriov_vf > pf_dev->max_vfs) { + PMD_INIT_LOG(ERR, "The pci allocate VF is more than the MAX VF"); + return -ERANGE; + } + + pf_dev->sriov_vf = sriov_vf; + + return 0; +} + +static int +nfp_net_get_vf_info(struct nfp_pf_dev *pf_dev, + const struct nfp_dev_info *dev_info) +{ + int ret; + + ret = nfp_pf_get_max_vf(pf_dev); + if (ret != 0) { + if (ret != -ENOENT) { + PMD_INIT_LOG(ERR, "Read max VFs failed"); + return ret; + } + + PMD_INIT_LOG(WARNING, "The firmware can not support read max VFs"); + return 0; + } + + if (pf_dev->max_vfs == 0) + return 0; + + ret = nfp_pf_get_sriov_vf(pf_dev, dev_info); + if (ret < 0) + return ret; + + return 0; +} + static int nfp_pf_init(struct rte_pci_device *pci_dev) { @@ -2020,6 +2118,14 @@ nfp_pf_init(struct rte_pci_device *pci_dev) goto sym_tbl_cleanup; } + /* Get the VF info */ + ret = nfp_net_get_vf_info(pf_dev, dev_info); + if (ret != 0) { + PMD_INIT_LOG(ERR, "Failed to get VF info."); + ret = -EIO; + goto sym_tbl_cleanup; + } + /* Configure access to tx/rx vNIC BARs */ addr = nfp_qcp_queue_offset(dev_info, 0); cpp_id = NFP_CPP_ISLAND_ID(0, NFP_CPP_ACTION_RW, 0, 0); diff --git a/drivers/net/nfp/nfp_net_common.h b/drivers/net/nfp/nfp_net_common.h index 5c48b94d38..7efd0161af 100644 --- a/drivers/net/nfp/nfp_net_common.h +++ b/drivers/net/nfp/nfp_net_common.h @@ -141,6 +141,11 @@ struct nfp_pf_dev { /** NFP devarg param */ struct nfp_devargs devargs; + /** Number of VFs supported by firmware shared by all PFs */ + uint16_t max_vfs; + /** Number of VFs supported by firmware for this PF */ + uint16_t sriov_vf; + uint8_t total_phyports; }; -- 2.39.1