net/cnxk: support firmware version query

Add callback to get ethdev firmware version.

Signed-off-by: Satha Rao <skoteshwar@marvell.com>
This commit is contained in:
Satha Rao 2021-06-23 10:16:51 +05:30 committed by Jerin Jacob
parent d43a7bee1a
commit 86ac1c9cef
6 changed files with 25 additions and 0 deletions

View File

@ -35,6 +35,7 @@ Packet type parsing = Y
Basic stats = Y
Stats per queue = Y
Extended stats = Y
FW version = Y
Module EEPROM dump = Y
Linux = Y
ARMv8 = Y

View File

@ -33,6 +33,7 @@ Packet type parsing = Y
Basic stats = Y
Stats per queue = Y
Extended stats = Y
FW version = Y
Module EEPROM dump = Y
Linux = Y
ARMv8 = Y

View File

@ -30,6 +30,7 @@ Packet type parsing = Y
Basic stats = Y
Stats per queue = Y
Extended stats = Y
FW version = Y
Module EEPROM dump = Y
Linux = Y
ARMv8 = Y

View File

@ -1222,6 +1222,7 @@ struct eth_dev_ops cnxk_eth_dev_ops = {
.xstats_reset = cnxk_nix_xstats_reset,
.xstats_get_by_id = cnxk_nix_xstats_get_by_id,
.xstats_get_names_by_id = cnxk_nix_xstats_get_names_by_id,
.fw_version_get = cnxk_nix_fw_version_get,
.rxq_info_get = cnxk_nix_rxq_info_get,
.txq_info_get = cnxk_nix_txq_info_get,
.tx_done_cleanup = cnxk_nix_tx_done_cleanup,

View File

@ -313,6 +313,8 @@ int cnxk_nix_xstats_get_names_by_id(struct rte_eth_dev *eth_dev,
int cnxk_nix_xstats_get_by_id(struct rte_eth_dev *eth_dev, const uint64_t *ids,
uint64_t *values, unsigned int n);
int cnxk_nix_xstats_reset(struct rte_eth_dev *eth_dev);
int cnxk_nix_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version,
size_t fw_size);
void cnxk_nix_rxq_info_get(struct rte_eth_dev *eth_dev, uint16_t qid,
struct rte_eth_rxq_info *qinfo);
void cnxk_nix_txq_info_get(struct rte_eth_dev *eth_dev, uint16_t qid,

View File

@ -639,6 +639,25 @@ cnxk_nix_pool_ops_supported(struct rte_eth_dev *eth_dev, const char *pool)
return -ENOTSUP;
}
int
cnxk_nix_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version,
size_t fw_size)
{
struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
const char *str = roc_npc_profile_name_get(&dev->npc);
uint32_t size = strlen(str) + 1;
if (fw_size > size)
fw_size = size;
rte_strlcpy(fw_version, str, fw_size);
if (fw_size < size)
return size;
return 0;
}
void
cnxk_nix_rxq_info_get(struct rte_eth_dev *eth_dev, uint16_t qid,
struct rte_eth_rxq_info *qinfo)