#include "tf_core.h"
#include "bnxt_ulp.h"
+#include "bnxt_tf_common.h"
/* Vendor ID */
#define PCI_VENDOR_ID_BROADCOM 0x14E4
int32_t bnxt_ulp_init(struct bnxt *bp);
void bnxt_ulp_deinit(struct bnxt *bp);
-uint16_t bnxt_get_vnic_id(uint16_t port);
-uint16_t bnxt_get_svif(uint16_t port_id, bool func_svif);
-uint16_t bnxt_get_fw_func_id(uint16_t port);
-uint16_t bnxt_get_parif(uint16_t port);
+uint16_t bnxt_get_vnic_id(uint16_t port, enum bnxt_ulp_intf_type type);
+uint16_t bnxt_get_svif(uint16_t port_id, bool func_svif,
+ enum bnxt_ulp_intf_type type);
+uint16_t bnxt_get_fw_func_id(uint16_t port, enum bnxt_ulp_intf_type type);
+uint16_t bnxt_get_parif(uint16_t port, enum bnxt_ulp_intf_type type);
uint16_t bnxt_get_phy_port_id(uint16_t port);
uint16_t bnxt_get_vport(uint16_t port);
enum bnxt_ulp_intf_type
}
uint16_t
-bnxt_get_svif(uint16_t port_id, bool func_svif)
+bnxt_get_svif(uint16_t port_id, bool func_svif,
+ enum bnxt_ulp_intf_type type)
{
struct rte_eth_dev *eth_dev;
struct bnxt *bp;
eth_dev = &rte_eth_devices[port_id];
+ if (BNXT_ETH_DEV_IS_REPRESENTOR(eth_dev)) {
+ struct bnxt_vf_representor *vfr = eth_dev->data->dev_private;
+ if (!vfr)
+ return 0;
+
+ if (type == BNXT_ULP_INTF_TYPE_VF_REP)
+ return vfr->svif;
+
+ eth_dev = vfr->parent_dev;
+ }
+
bp = eth_dev->data->dev_private;
return func_svif ? bp->func_svif : bp->port_svif;
}
uint16_t
-bnxt_get_vnic_id(uint16_t port)
+bnxt_get_vnic_id(uint16_t port, enum bnxt_ulp_intf_type type)
{
struct rte_eth_dev *eth_dev;
struct bnxt_vnic_info *vnic;
struct bnxt *bp;
eth_dev = &rte_eth_devices[port];
+ if (BNXT_ETH_DEV_IS_REPRESENTOR(eth_dev)) {
+ struct bnxt_vf_representor *vfr = eth_dev->data->dev_private;
+ if (!vfr)
+ return 0;
+
+ if (type == BNXT_ULP_INTF_TYPE_VF_REP)
+ return vfr->dflt_vnic_id;
+
+ eth_dev = vfr->parent_dev;
+ }
+
bp = eth_dev->data->dev_private;
vnic = BNXT_GET_DEFAULT_VNIC(bp);
}
uint16_t
-bnxt_get_fw_func_id(uint16_t port)
+bnxt_get_fw_func_id(uint16_t port, enum bnxt_ulp_intf_type type)
{
struct rte_eth_dev *eth_dev;
struct bnxt *bp;
eth_dev = &rte_eth_devices[port];
+ if (BNXT_ETH_DEV_IS_REPRESENTOR(eth_dev)) {
+ struct bnxt_vf_representor *vfr = eth_dev->data->dev_private;
+ if (!vfr)
+ return 0;
+
+ if (type == BNXT_ULP_INTF_TYPE_VF_REP)
+ return vfr->fw_fid;
+
+ eth_dev = vfr->parent_dev;
+ }
+
bp = eth_dev->data->dev_private;
return bp->fw_fid;
return BNXT_ULP_INTF_TYPE_VF_REP;
bp = eth_dev->data->dev_private;
- return BNXT_PF(bp) ? BNXT_ULP_INTF_TYPE_PF
- : BNXT_ULP_INTF_TYPE_VF;
+ if (BNXT_PF(bp))
+ return BNXT_ULP_INTF_TYPE_PF;
+ else if (BNXT_VF_IS_TRUSTED(bp))
+ return BNXT_ULP_INTF_TYPE_TRUSTED_VF;
+ else if (BNXT_VF(bp))
+ return BNXT_ULP_INTF_TYPE_VF;
+
+ return BNXT_ULP_INTF_TYPE_INVALID;
}
uint16_t
eth_dev = &rte_eth_devices[port_id];
if (BNXT_ETH_DEV_IS_REPRESENTOR(eth_dev)) {
vfr = eth_dev->data->dev_private;
+ if (!vfr)
+ return 0;
+
eth_dev = vfr->parent_dev;
}
}
uint16_t
-bnxt_get_parif(uint16_t port_id)
+bnxt_get_parif(uint16_t port_id, enum bnxt_ulp_intf_type type)
{
- struct bnxt_vf_representor *vfr;
struct rte_eth_dev *eth_dev;
struct bnxt *bp;
eth_dev = &rte_eth_devices[port_id];
if (BNXT_ETH_DEV_IS_REPRESENTOR(eth_dev)) {
- vfr = eth_dev->data->dev_private;
+ struct bnxt_vf_representor *vfr = eth_dev->data->dev_private;
+ if (!vfr)
+ return 0;
+
+ if (type == BNXT_ULP_INTF_TYPE_VF_REP)
+ return vfr->fw_fid - 1;
+
eth_dev = vfr->parent_dev;
}
#ifndef _BNXT_TF_COMMON_H_
#define _BNXT_TF_COMMON_H_
+#include <inttypes.h>
+
+#include "bnxt_ulp.h"
+#include "ulp_template_db_enum.h"
+
#define BNXT_TF_DBG(lvl, fmt, args...) PMD_DRV_LOG(lvl, fmt, ## args)
#define BNXT_ULP_EM_FLOWS 8192
enum bnxt_ulp_intf_type {
BNXT_ULP_INTF_TYPE_INVALID = 0,
BNXT_ULP_INTF_TYPE_PF,
+ BNXT_ULP_INTF_TYPE_TRUSTED_VF,
BNXT_ULP_INTF_TYPE_VF,
BNXT_ULP_INTF_TYPE_PF_REP,
BNXT_ULP_INTF_TYPE_VF_REP,
rc = ulp_dparms_init(bp, bp->ulp_ctx);
/* create the port database */
- rc = ulp_port_db_init(bp->ulp_ctx);
+ rc = ulp_port_db_init(bp->ulp_ctx, bp->port_cnt);
if (rc) {
BNXT_TF_DBG(ERR, "Failed to create the port database\n");
goto jump_to_error;
mapper_cparms.act_prop = ¶ms.act_prop;
mapper_cparms.class_tid = class_id;
mapper_cparms.act_tid = act_tmpl;
- mapper_cparms.func_id = bnxt_get_fw_func_id(dev->data->port_id);
+ mapper_cparms.func_id = bnxt_get_fw_func_id(dev->data->port_id,
+ BNXT_ULP_INTF_TYPE_INVALID);
mapper_cparms.dir = params.dir;
/* Call the ulp mapper to create the flow in the hardware. */
}
flow_id = (uint32_t)(uintptr_t)flow;
- func_id = bnxt_get_fw_func_id(dev->data->port_id);
+ func_id = bnxt_get_fw_func_id(dev->data->port_id,
+ BNXT_ULP_INTF_TYPE_INVALID);
if (ulp_flow_db_validate_flow_func(ulp_ctx, flow_id, func_id) ==
false) {
if (ulp_ctx_deinit_allowed(bp)) {
ret = ulp_flow_db_session_flow_flush(ulp_ctx);
} else if (bnxt_ulp_cntxt_ptr2_flow_db_get(ulp_ctx)) {
- func_id = bnxt_get_fw_func_id(eth_dev->data->port_id);
+ func_id = bnxt_get_fw_func_id(eth_dev->data->port_id,
+ BNXT_ULP_INTF_TYPE_INVALID);
ret = ulp_flow_db_function_flow_flush(ulp_ctx, func_id);
}
if (ret)
*
* Returns 0 on success or negative number on failure.
*/
-int32_t ulp_port_db_init(struct bnxt_ulp_context *ulp_ctxt)
+int32_t ulp_port_db_init(struct bnxt_ulp_context *ulp_ctxt, uint8_t port_cnt)
{
struct bnxt_ulp_port_db *port_db;
"Failed to allocate mem for port interface list\n");
goto error_free;
}
+
+ /* Allocate the phy port list */
+ port_db->phy_port_list = rte_zmalloc("bnxt_ulp_phy_port_list",
+ port_cnt *
+ sizeof(struct ulp_phy_port_info),
+ 0);
+ if (!port_db->phy_port_list) {
+ BNXT_TF_DBG(ERR,
+ "Failed to allocate mem for phy port list\n");
+ goto error_free;
+ }
+
return 0;
error_free:
bnxt_ulp_cntxt_ptr2_port_db_set(ulp_ctxt, NULL);
/* Free up all the memory. */
+ rte_free(port_db->phy_port_list);
rte_free(port_db->ulp_intf_list);
rte_free(port_db);
return 0;
struct ulp_phy_port_info *port_data;
struct bnxt_ulp_port_db *port_db;
struct ulp_interface_info *intf;
+ struct ulp_func_if_info *func;
uint32_t ifindex;
int32_t rc;
intf = &port_db->ulp_intf_list[ifindex];
intf->type = bnxt_get_interface_type(port_id);
+ intf->drv_func_id = bnxt_get_fw_func_id(port_id,
+ BNXT_ULP_INTF_TYPE_INVALID);
+
+ func = &port_db->ulp_func_id_tbl[intf->drv_func_id];
+ if (!func->func_valid) {
+ func->func_svif = bnxt_get_svif(port_id, true,
+ BNXT_ULP_INTF_TYPE_INVALID);
+ func->func_spif = bnxt_get_phy_port_id(port_id);
+ func->func_parif =
+ bnxt_get_parif(port_id, BNXT_ULP_INTF_TYPE_INVALID);
+ func->func_vnic =
+ bnxt_get_vnic_id(port_id, BNXT_ULP_INTF_TYPE_INVALID);
+ func->phy_port_id = bnxt_get_phy_port_id(port_id);
+ func->func_valid = true;
+ }
- intf->func_id = bnxt_get_fw_func_id(port_id);
- intf->func_svif = bnxt_get_svif(port_id, 1);
- intf->func_spif = bnxt_get_phy_port_id(port_id);
- intf->func_parif = bnxt_get_parif(port_id);
- intf->default_vnic = bnxt_get_vnic_id(port_id);
- intf->phy_port_id = bnxt_get_phy_port_id(port_id);
+ if (intf->type == BNXT_ULP_INTF_TYPE_VF_REP) {
+ intf->vf_func_id =
+ bnxt_get_fw_func_id(port_id, BNXT_ULP_INTF_TYPE_VF_REP);
+
+ func = &port_db->ulp_func_id_tbl[intf->vf_func_id];
+ func->func_svif =
+ bnxt_get_svif(port_id, true, BNXT_ULP_INTF_TYPE_VF_REP);
+ func->func_spif =
+ bnxt_get_phy_port_id(port_id);
+ func->func_parif =
+ bnxt_get_parif(port_id, BNXT_ULP_INTF_TYPE_INVALID);
+ func->func_vnic =
+ bnxt_get_vnic_id(port_id, BNXT_ULP_INTF_TYPE_VF_REP);
+ func->phy_port_id = bnxt_get_phy_port_id(port_id);
+ }
- if (intf->type == BNXT_ULP_INTF_TYPE_PF) {
- port_data = &port_db->phy_port_list[intf->phy_port_id];
- port_data->port_svif = bnxt_get_svif(port_id, 0);
+ port_data = &port_db->phy_port_list[func->phy_port_id];
+ if (!port_data->port_valid) {
+ port_data->port_svif =
+ bnxt_get_svif(port_id, false,
+ BNXT_ULP_INTF_TYPE_INVALID);
port_data->port_spif = bnxt_get_phy_port_id(port_id);
- port_data->port_parif = bnxt_get_parif(port_id);
+ port_data->port_parif =
+ bnxt_get_parif(port_id, BNXT_ULP_INTF_TYPE_INVALID);
port_data->port_vport = bnxt_get_vport(port_id);
+ port_data->port_valid = true;
}
return 0;
int32_t
ulp_port_db_function_id_get(struct bnxt_ulp_context *ulp_ctxt,
uint32_t ifindex,
+ uint32_t fid_type,
uint16_t *func_id)
{
struct bnxt_ulp_port_db *port_db;
BNXT_TF_DBG(ERR, "Invalid Arguments\n");
return -EINVAL;
}
- *func_id = port_db->ulp_intf_list[ifindex].func_id;
+
+ if (fid_type == BNXT_ULP_DRV_FUNC_FID)
+ *func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ else
+ *func_id = port_db->ulp_intf_list[ifindex].vf_func_id;
+
return 0;
}
*
* ulp_ctxt [in] Ptr to ulp context
* ifindex [in] ulp ifindex
- * dir [in] the direction for the flow.
+ * svif_type [in] the svif type of the given ifindex.
* svif [out] the svif of the given ifindex.
*
* Returns 0 on success or negative number on failure.
int32_t
ulp_port_db_svif_get(struct bnxt_ulp_context *ulp_ctxt,
uint32_t ifindex,
- uint32_t dir,
+ uint32_t svif_type,
uint16_t *svif)
{
struct bnxt_ulp_port_db *port_db;
- uint16_t phy_port_id;
+ uint16_t phy_port_id, func_id;
port_db = bnxt_ulp_cntxt_ptr2_port_db_get(ulp_ctxt);
if (!port_db || ifindex >= port_db->ulp_intf_list_size || !ifindex) {
BNXT_TF_DBG(ERR, "Invalid Arguments\n");
return -EINVAL;
}
- if (dir == ULP_DIR_EGRESS) {
- *svif = port_db->ulp_intf_list[ifindex].func_svif;
+
+ if (svif_type == BNXT_ULP_DRV_FUNC_SVIF) {
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ *svif = port_db->ulp_func_id_tbl[func_id].func_svif;
+ } else if (svif_type == BNXT_ULP_VF_FUNC_SVIF) {
+ func_id = port_db->ulp_intf_list[ifindex].vf_func_id;
+ *svif = port_db->ulp_func_id_tbl[func_id].func_svif;
} else {
- phy_port_id = port_db->ulp_intf_list[ifindex].phy_port_id;
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ phy_port_id = port_db->ulp_func_id_tbl[func_id].phy_port_id;
*svif = port_db->phy_port_list[phy_port_id].port_svif;
}
*
* ulp_ctxt [in] Ptr to ulp context
* ifindex [in] ulp ifindex
- * dir [in] the direction for the flow.
+ * spif_type [in] the spif type of the given ifindex.
* spif [out] the spif of the given ifindex.
*
* Returns 0 on success or negative number on failure.
int32_t
ulp_port_db_spif_get(struct bnxt_ulp_context *ulp_ctxt,
uint32_t ifindex,
- uint32_t dir,
+ uint32_t spif_type,
uint16_t *spif)
{
struct bnxt_ulp_port_db *port_db;
- uint16_t phy_port_id;
+ uint16_t phy_port_id, func_id;
port_db = bnxt_ulp_cntxt_ptr2_port_db_get(ulp_ctxt);
if (!port_db || ifindex >= port_db->ulp_intf_list_size || !ifindex) {
BNXT_TF_DBG(ERR, "Invalid Arguments\n");
return -EINVAL;
}
- if (dir == ULP_DIR_EGRESS) {
- *spif = port_db->ulp_intf_list[ifindex].func_spif;
+
+ if (spif_type == BNXT_ULP_DRV_FUNC_SPIF) {
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ *spif = port_db->ulp_func_id_tbl[func_id].func_spif;
+ } else if (spif_type == BNXT_ULP_VF_FUNC_SPIF) {
+ func_id = port_db->ulp_intf_list[ifindex].vf_func_id;
+ *spif = port_db->ulp_func_id_tbl[func_id].func_spif;
} else {
- phy_port_id = port_db->ulp_intf_list[ifindex].phy_port_id;
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ phy_port_id = port_db->ulp_func_id_tbl[func_id].phy_port_id;
*spif = port_db->phy_port_list[phy_port_id].port_spif;
}
*
* ulp_ctxt [in] Ptr to ulp context
* ifindex [in] ulp ifindex
- * dir [in] the direction for the flow.
+ * parif_type [in] the parif type of the given ifindex.
* parif [out] the parif of the given ifindex.
*
* Returns 0 on success or negative number on failure.
int32_t
ulp_port_db_parif_get(struct bnxt_ulp_context *ulp_ctxt,
uint32_t ifindex,
- uint32_t dir,
+ uint32_t parif_type,
uint16_t *parif)
{
struct bnxt_ulp_port_db *port_db;
- uint16_t phy_port_id;
+ uint16_t phy_port_id, func_id;
port_db = bnxt_ulp_cntxt_ptr2_port_db_get(ulp_ctxt);
if (!port_db || ifindex >= port_db->ulp_intf_list_size || !ifindex) {
BNXT_TF_DBG(ERR, "Invalid Arguments\n");
return -EINVAL;
}
- if (dir == ULP_DIR_EGRESS) {
- *parif = port_db->ulp_intf_list[ifindex].func_parif;
+ if (parif_type == BNXT_ULP_DRV_FUNC_PARIF) {
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ *parif = port_db->ulp_func_id_tbl[func_id].func_parif;
+ } else if (parif_type == BNXT_ULP_VF_FUNC_PARIF) {
+ func_id = port_db->ulp_intf_list[ifindex].vf_func_id;
+ *parif = port_db->ulp_func_id_tbl[func_id].func_parif;
} else {
- phy_port_id = port_db->ulp_intf_list[ifindex].phy_port_id;
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ phy_port_id = port_db->ulp_func_id_tbl[func_id].phy_port_id;
*parif = port_db->phy_port_list[phy_port_id].port_parif;
}
int32_t
ulp_port_db_default_vnic_get(struct bnxt_ulp_context *ulp_ctxt,
uint32_t ifindex,
+ uint32_t vnic_type,
uint16_t *vnic)
{
struct bnxt_ulp_port_db *port_db;
+ uint16_t func_id;
port_db = bnxt_ulp_cntxt_ptr2_port_db_get(ulp_ctxt);
if (!port_db || ifindex >= port_db->ulp_intf_list_size || !ifindex) {
BNXT_TF_DBG(ERR, "Invalid Arguments\n");
return -EINVAL;
}
- *vnic = port_db->ulp_intf_list[ifindex].default_vnic;
+
+ if (vnic_type == BNXT_ULP_DRV_FUNC_VNIC) {
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ *vnic = port_db->ulp_func_id_tbl[func_id].func_vnic;
+ } else {
+ func_id = port_db->ulp_intf_list[ifindex].vf_func_id;
+ *vnic = port_db->ulp_func_id_tbl[func_id].func_vnic;
+ }
+
return 0;
}
uint32_t ifindex, uint16_t *vport)
{
struct bnxt_ulp_port_db *port_db;
- uint16_t phy_port_id;
+ uint16_t phy_port_id, func_id;
port_db = bnxt_ulp_cntxt_ptr2_port_db_get(ulp_ctxt);
if (!port_db || ifindex >= port_db->ulp_intf_list_size || !ifindex) {
BNXT_TF_DBG(ERR, "Invalid Arguments\n");
return -EINVAL;
}
- phy_port_id = port_db->ulp_intf_list[ifindex].phy_port_id;
+
+ func_id = port_db->ulp_intf_list[ifindex].drv_func_id;
+ phy_port_id = port_db->ulp_func_id_tbl[func_id].phy_port_id;
*vport = port_db->phy_port_list[phy_port_id].port_vport;
return 0;
}
#include "bnxt_ulp.h"
#define BNXT_PORT_DB_MAX_INTF_LIST 256
+#define BNXT_PORT_DB_MAX_FUNC 2048
-/* Structure for the Port database resource information. */
-struct ulp_interface_info {
- enum bnxt_ulp_intf_type type;
- uint16_t func_id;
+enum bnxt_ulp_svif_type {
+ BNXT_ULP_DRV_FUNC_SVIF = 0,
+ BNXT_ULP_VF_FUNC_SVIF,
+ BNXT_ULP_PHY_PORT_SVIF
+};
+
+enum bnxt_ulp_spif_type {
+ BNXT_ULP_DRV_FUNC_SPIF = 0,
+ BNXT_ULP_VF_FUNC_SPIF,
+ BNXT_ULP_PHY_PORT_SPIF
+};
+
+enum bnxt_ulp_parif_type {
+ BNXT_ULP_DRV_FUNC_PARIF = 0,
+ BNXT_ULP_VF_FUNC_PARIF,
+ BNXT_ULP_PHY_PORT_PARIF
+};
+
+enum bnxt_ulp_vnic_type {
+ BNXT_ULP_DRV_FUNC_VNIC = 0,
+ BNXT_ULP_VF_FUNC_VNIC
+};
+
+enum bnxt_ulp_fid_type {
+ BNXT_ULP_DRV_FUNC_FID,
+ BNXT_ULP_VF_FUNC_FID
+};
+
+struct ulp_func_if_info {
+ uint16_t func_valid;
uint16_t func_svif;
uint16_t func_spif;
uint16_t func_parif;
- uint16_t default_vnic;
+ uint16_t func_vnic;
uint16_t phy_port_id;
};
+/* Structure for the Port database resource information. */
+struct ulp_interface_info {
+ enum bnxt_ulp_intf_type type;
+ uint16_t drv_func_id;
+ uint16_t vf_func_id;
+};
+
struct ulp_phy_port_info {
+ uint16_t port_valid;
uint16_t port_svif;
uint16_t port_spif;
uint16_t port_parif;
/* dpdk device external port list */
uint16_t dev_port_list[RTE_MAX_ETHPORTS];
- struct ulp_phy_port_info phy_port_list[RTE_MAX_ETHPORTS];
+ struct ulp_phy_port_info *phy_port_list;
+ struct ulp_func_if_info ulp_func_id_tbl[BNXT_PORT_DB_MAX_FUNC];
};
/*
*
* Returns 0 on success or negative number on failure.
*/
-int32_t ulp_port_db_init(struct bnxt_ulp_context *ulp_ctxt);
+int32_t ulp_port_db_init(struct bnxt_ulp_context *ulp_ctxt, uint8_t port_cnt);
/*
* Deinitialize the port database. Memory is deallocated in
*/
int32_t
ulp_port_db_function_id_get(struct bnxt_ulp_context *ulp_ctxt,
- uint32_t ifindex, uint16_t *func_id);
+ uint32_t ifindex, uint32_t fid_type,
+ uint16_t *func_id);
/*
* Api to get the svif for a given ulp ifindex.
*/
int32_t
ulp_port_db_default_vnic_get(struct bnxt_ulp_context *ulp_ctxt,
- uint32_t ifindex, uint16_t *vnic);
+ uint32_t ifindex, uint32_t vnic_type,
+ uint16_t *vnic);
/*
* Api to get the vport id for a given ulp ifindex.
uint16_t port_id = svif;
uint32_t dir = 0;
struct ulp_rte_hdr_field *hdr_field;
+ enum bnxt_ulp_svif_type svif_type;
+ enum bnxt_ulp_intf_type if_type;
uint32_t ifindex;
int32_t rc;
"Invalid port id\n");
return BNXT_TF_RC_ERROR;
}
- ulp_port_db_svif_get(params->ulp_ctx, ifindex, dir, &svif);
+
+ if (dir == ULP_DIR_INGRESS) {
+ svif_type = BNXT_ULP_PHY_PORT_SVIF;
+ } else {
+ if_type = bnxt_get_interface_type(port_id);
+ if (if_type == BNXT_ULP_INTF_TYPE_VF_REP)
+ svif_type = BNXT_ULP_VF_FUNC_SVIF;
+ else
+ svif_type = BNXT_ULP_DRV_FUNC_SVIF;
+ }
+ ulp_port_db_svif_get(params->ulp_ctx, ifindex, svif_type,
+ &svif);
svif = rte_cpu_to_be_16(svif);
}
hdr_field = ¶ms->hdr_field[BNXT_ULP_PROTO_HDR_FIELD_SVIF_IDX];
/* copy the PF of the current device into VNIC Property */
svif = ULP_COMP_FLD_IDX_RD(params, BNXT_ULP_CF_IDX_INCOMING_IF);
- svif = bnxt_get_vnic_id(svif);
+ svif = bnxt_get_vnic_id(svif, BNXT_ULP_INTF_TYPE_INVALID);
svif = rte_cpu_to_be_32(svif);
memcpy(¶ms->act_prop.act_details[BNXT_ULP_ACT_PROP_IDX_VNIC],
&svif, BNXT_ULP_ACT_PROP_SZ_VNIC);
return BNXT_TF_RC_PARSE_ERR;
}
/* TBD: Update the computed VNIC using VF conversion */
- pid = bnxt_get_vnic_id(vf_action->id);
+ pid = bnxt_get_vnic_id(vf_action->id,
+ BNXT_ULP_INTF_TYPE_INVALID);
pid = rte_cpu_to_be_32(pid);
memcpy(¶m->act_prop.act_details[BNXT_ULP_ACT_PROP_IDX_VNIC],
&pid, BNXT_ULP_ACT_PROP_SZ_VNIC);
return BNXT_TF_RC_PARSE_ERR;
}
/* TBD: Update the computed VNIC using port conversion */
- pid = bnxt_get_vnic_id(port_id->id);
+ pid = bnxt_get_vnic_id(port_id->id, BNXT_ULP_INTF_TYPE_INVALID);
pid = rte_cpu_to_be_32(pid);
memcpy(¶m->act_prop.act_details[BNXT_ULP_ACT_PROP_IDX_VNIC],
&pid, BNXT_ULP_ACT_PROP_SZ_VNIC);