net/qede: fix CFLAGS for base files
Changes included in this fix - limit CFLAGS to base files - fix to remove/mark unused members - add checks for debug config option - make qede_set_mtu() and qede_udp_dst_port_del() static and others non-static as appropriate - move local APIs qede_vlan_offload_set() and qede_rx_cqe_to_pkt_type() - initialize variables as required Fixes: ec94dbc57362 ("qede: add base driver") Cc: stable@dpdk.org Signed-off-by: Rasesh Mody <rasesh.mody@cavium.com>
This commit is contained in:
parent
9a671097bc
commit
af785e475c
@ -76,25 +76,27 @@ endif
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
BASE_DRIVER_OBJS=$(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*.c)))
|
BASE_DRIVER_OBJS=$(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*.c)))
|
||||||
$(foreach obj, $(BASE_DRIVER_OBJS), $(eval CFLAGS+=$(CFLAGS_BASE_DRIVER)))
|
$(foreach obj, $(BASE_DRIVER_OBJS), $(eval CFLAGS_$(obj)+=$(CFLAGS_BASE_DRIVER)))
|
||||||
|
|
||||||
|
VPATH += $(SRCDIR)/base
|
||||||
|
|
||||||
#
|
#
|
||||||
# all source are stored in SRCS-y
|
# all source are stored in SRCS-y
|
||||||
#
|
#
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_dev.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_dev.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_hw.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_hw.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_cxt.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_cxt.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_l2.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_l2.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_sp_commands.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_sp_commands.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_init_fw_funcs.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_init_fw_funcs.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_spq.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_spq.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_init_ops.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_init_ops.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_mcp.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_mcp.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_int.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_int.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_dcbx.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_dcbx.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/bcm_osal.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += bcm_osal.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_sriov.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_sriov.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += base/ecore_vf.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_vf.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_ethdev.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_ethdev.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_eth_if.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_eth_if.c
|
||||||
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_main.c
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_main.c
|
||||||
|
@ -808,8 +808,8 @@ struct ecore_dev {
|
|||||||
*
|
*
|
||||||
* @return OSAL_INLINE u8
|
* @return OSAL_INLINE u8
|
||||||
*/
|
*/
|
||||||
static OSAL_INLINE u8 ecore_concrete_to_sw_fid(struct ecore_dev *p_dev,
|
static OSAL_INLINE u8
|
||||||
u32 concrete_fid)
|
ecore_concrete_to_sw_fid(__rte_unused struct ecore_dev *p_dev, u32 concrete_fid)
|
||||||
{
|
{
|
||||||
u8 vfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFID);
|
u8 vfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFID);
|
||||||
u8 pfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_PFID);
|
u8 pfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_PFID);
|
||||||
|
@ -114,7 +114,7 @@ static OSAL_INLINE void __internal_ram_wr(struct ecore_hwfn *p_hwfn,
|
|||||||
void OSAL_IOMEM *addr,
|
void OSAL_IOMEM *addr,
|
||||||
int size, u32 *data)
|
int size, u32 *data)
|
||||||
#else
|
#else
|
||||||
static OSAL_INLINE void __internal_ram_wr(void *p_hwfn,
|
static OSAL_INLINE void __internal_ram_wr(__rte_unused void *p_hwfn,
|
||||||
void OSAL_IOMEM *addr,
|
void OSAL_IOMEM *addr,
|
||||||
int size, u32 *data)
|
int size, u32 *data)
|
||||||
#endif
|
#endif
|
||||||
@ -130,7 +130,7 @@ static OSAL_INLINE void __internal_ram_wr_relaxed(struct ecore_hwfn *p_hwfn,
|
|||||||
void OSAL_IOMEM * addr,
|
void OSAL_IOMEM * addr,
|
||||||
int size, u32 *data)
|
int size, u32 *data)
|
||||||
#else
|
#else
|
||||||
static OSAL_INLINE void __internal_ram_wr_relaxed(void *p_hwfn,
|
static OSAL_INLINE void __internal_ram_wr_relaxed(__rte_unused void *p_hwfn,
|
||||||
void OSAL_IOMEM * addr,
|
void OSAL_IOMEM * addr,
|
||||||
int size, u32 *data)
|
int size, u32 *data)
|
||||||
#endif
|
#endif
|
||||||
|
@ -298,6 +298,7 @@ qede_alloc_etherdev(struct qede_dev *qdev, struct qed_dev_eth_info *info)
|
|||||||
qdev->ops = qed_ops;
|
qdev->ops = qed_ops;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_INFO
|
||||||
static void qede_print_adapter_info(struct qede_dev *qdev)
|
static void qede_print_adapter_info(struct qede_dev *qdev)
|
||||||
{
|
{
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
@ -326,6 +327,7 @@ static void qede_print_adapter_info(struct qede_dev *qdev)
|
|||||||
DP_INFO(edev, " Firmware file : %s\n", fw_file);
|
DP_INFO(edev, " Firmware file : %s\n", fw_file);
|
||||||
DP_INFO(edev, "*********************************\n");
|
DP_INFO(edev, "*********************************\n");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void qede_set_ucast_cmn_params(struct ecore_filter_ucast *ucast)
|
static void qede_set_ucast_cmn_params(struct ecore_filter_ucast *ucast)
|
||||||
{
|
{
|
||||||
@ -508,7 +510,7 @@ qede_mac_int_ops(struct rte_eth_dev *eth_dev, struct ecore_filter_ucast *ucast,
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
qede_mac_addr_add(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr,
|
qede_mac_addr_add(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr,
|
||||||
uint32_t index, __rte_unused uint32_t pool)
|
__rte_unused uint32_t index, __rte_unused uint32_t pool)
|
||||||
{
|
{
|
||||||
struct ecore_filter_ucast ucast;
|
struct ecore_filter_ucast ucast;
|
||||||
|
|
||||||
@ -523,9 +525,7 @@ qede_mac_addr_remove(struct rte_eth_dev *eth_dev, uint32_t index)
|
|||||||
{
|
{
|
||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
struct ether_addr mac_addr;
|
|
||||||
struct ecore_filter_ucast ucast;
|
struct ecore_filter_ucast ucast;
|
||||||
int rc;
|
|
||||||
|
|
||||||
PMD_INIT_FUNC_TRACE(edev);
|
PMD_INIT_FUNC_TRACE(edev);
|
||||||
|
|
||||||
@ -609,46 +609,6 @@ static int qede_vlan_stripping(struct rte_eth_dev *eth_dev, bool set_stripping)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void qede_vlan_offload_set(struct rte_eth_dev *eth_dev, int mask)
|
|
||||||
{
|
|
||||||
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
|
||||||
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
|
||||||
struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
|
|
||||||
|
|
||||||
if (mask & ETH_VLAN_STRIP_MASK) {
|
|
||||||
if (rxmode->hw_vlan_strip)
|
|
||||||
(void)qede_vlan_stripping(eth_dev, 1);
|
|
||||||
else
|
|
||||||
(void)qede_vlan_stripping(eth_dev, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mask & ETH_VLAN_FILTER_MASK) {
|
|
||||||
/* VLAN filtering kicks in when a VLAN is added */
|
|
||||||
if (rxmode->hw_vlan_filter) {
|
|
||||||
qede_vlan_filter_set(eth_dev, 0, 1);
|
|
||||||
} else {
|
|
||||||
if (qdev->configured_vlans > 1) { /* Excluding VLAN0 */
|
|
||||||
DP_ERR(edev,
|
|
||||||
" Please remove existing VLAN filters"
|
|
||||||
" before disabling VLAN filtering\n");
|
|
||||||
/* Signal app that VLAN filtering is still
|
|
||||||
* enabled
|
|
||||||
*/
|
|
||||||
rxmode->hw_vlan_filter = true;
|
|
||||||
} else {
|
|
||||||
qede_vlan_filter_set(eth_dev, 0, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mask & ETH_VLAN_EXTEND_MASK)
|
|
||||||
DP_INFO(edev, "No offloads are supported with VLAN Q-in-Q"
|
|
||||||
" and classification is based on outer tag only\n");
|
|
||||||
|
|
||||||
DP_INFO(edev, "vlan offload mask %d vlan-strip %d vlan-filter %d\n",
|
|
||||||
mask, rxmode->hw_vlan_strip, rxmode->hw_vlan_filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
|
static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
|
||||||
uint16_t vlan_id, int on)
|
uint16_t vlan_id, int on)
|
||||||
{
|
{
|
||||||
@ -739,6 +699,46 @@ static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void qede_vlan_offload_set(struct rte_eth_dev *eth_dev, int mask)
|
||||||
|
{
|
||||||
|
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
||||||
|
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
||||||
|
struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
|
||||||
|
|
||||||
|
if (mask & ETH_VLAN_STRIP_MASK) {
|
||||||
|
if (rxmode->hw_vlan_strip)
|
||||||
|
(void)qede_vlan_stripping(eth_dev, 1);
|
||||||
|
else
|
||||||
|
(void)qede_vlan_stripping(eth_dev, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mask & ETH_VLAN_FILTER_MASK) {
|
||||||
|
/* VLAN filtering kicks in when a VLAN is added */
|
||||||
|
if (rxmode->hw_vlan_filter) {
|
||||||
|
qede_vlan_filter_set(eth_dev, 0, 1);
|
||||||
|
} else {
|
||||||
|
if (qdev->configured_vlans > 1) { /* Excluding VLAN0 */
|
||||||
|
DP_ERR(edev,
|
||||||
|
" Please remove existing VLAN filters"
|
||||||
|
" before disabling VLAN filtering\n");
|
||||||
|
/* Signal app that VLAN filtering is still
|
||||||
|
* enabled
|
||||||
|
*/
|
||||||
|
rxmode->hw_vlan_filter = true;
|
||||||
|
} else {
|
||||||
|
qede_vlan_filter_set(eth_dev, 0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mask & ETH_VLAN_EXTEND_MASK)
|
||||||
|
DP_INFO(edev, "No offloads are supported with VLAN Q-in-Q"
|
||||||
|
" and classification is based on outer tag only\n");
|
||||||
|
|
||||||
|
DP_INFO(edev, "vlan offload mask %d vlan-strip %d vlan-filter %d\n",
|
||||||
|
mask, rxmode->hw_vlan_strip, rxmode->hw_vlan_filter);
|
||||||
|
}
|
||||||
|
|
||||||
static int qede_init_vport(struct qede_dev *qdev)
|
static int qede_init_vport(struct qede_dev *qdev)
|
||||||
{
|
{
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
@ -778,7 +778,9 @@ static void qede_prandom_bytes(uint32_t *buff)
|
|||||||
int qede_config_rss(struct rte_eth_dev *eth_dev)
|
int qede_config_rss(struct rte_eth_dev *eth_dev)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_INFO
|
||||||
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
||||||
|
#endif
|
||||||
uint32_t def_rss_key[ECORE_RSS_KEY_SIZE];
|
uint32_t def_rss_key[ECORE_RSS_KEY_SIZE];
|
||||||
struct rte_eth_rss_reta_entry64 reta_conf[2];
|
struct rte_eth_rss_reta_entry64 reta_conf[2];
|
||||||
struct rte_eth_rss_conf rss_conf;
|
struct rte_eth_rss_conf rss_conf;
|
||||||
@ -819,7 +821,7 @@ static int qede_dev_configure(struct rte_eth_dev *eth_dev)
|
|||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
|
struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
|
||||||
int rc, i, j;
|
int rc;
|
||||||
|
|
||||||
PMD_INIT_FUNC_TRACE(edev);
|
PMD_INIT_FUNC_TRACE(edev);
|
||||||
|
|
||||||
@ -1045,10 +1047,12 @@ qede_link_update(struct rte_eth_dev *eth_dev, __rte_unused int wait_to_complete)
|
|||||||
|
|
||||||
static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
|
static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
|
||||||
{
|
{
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
|
||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
|
|
||||||
PMD_INIT_FUNC_TRACE(edev);
|
PMD_INIT_FUNC_TRACE(edev);
|
||||||
|
#endif
|
||||||
|
|
||||||
enum qed_filter_rx_mode_type type = QED_FILTER_RX_MODE_TYPE_PROMISC;
|
enum qed_filter_rx_mode_type type = QED_FILTER_RX_MODE_TYPE_PROMISC;
|
||||||
|
|
||||||
@ -1060,10 +1064,12 @@ static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
|
|||||||
|
|
||||||
static void qede_promiscuous_disable(struct rte_eth_dev *eth_dev)
|
static void qede_promiscuous_disable(struct rte_eth_dev *eth_dev)
|
||||||
{
|
{
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
|
||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
|
|
||||||
PMD_INIT_FUNC_TRACE(edev);
|
PMD_INIT_FUNC_TRACE(edev);
|
||||||
|
#endif
|
||||||
|
|
||||||
if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
|
if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
|
||||||
qed_configure_filter_rx_mode(eth_dev,
|
qed_configure_filter_rx_mode(eth_dev,
|
||||||
@ -1180,8 +1186,8 @@ qede_get_stats(struct rte_eth_dev *eth_dev, struct rte_eth_stats *eth_stats)
|
|||||||
RTE_ETHDEV_QUEUE_STAT_CNTRS);
|
RTE_ETHDEV_QUEUE_STAT_CNTRS);
|
||||||
txq_stat_cntrs = RTE_MIN(QEDE_TSS_COUNT(qdev),
|
txq_stat_cntrs = RTE_MIN(QEDE_TSS_COUNT(qdev),
|
||||||
RTE_ETHDEV_QUEUE_STAT_CNTRS);
|
RTE_ETHDEV_QUEUE_STAT_CNTRS);
|
||||||
if ((rxq_stat_cntrs != QEDE_RSS_COUNT(qdev)) ||
|
if ((rxq_stat_cntrs != (unsigned int)QEDE_RSS_COUNT(qdev)) ||
|
||||||
(txq_stat_cntrs != QEDE_TSS_COUNT(qdev)))
|
(txq_stat_cntrs != (unsigned int)QEDE_TSS_COUNT(qdev)))
|
||||||
DP_VERBOSE(edev, ECORE_MSG_DEBUG,
|
DP_VERBOSE(edev, ECORE_MSG_DEBUG,
|
||||||
"Not all the queue stats will be displayed. Set"
|
"Not all the queue stats will be displayed. Set"
|
||||||
" RTE_ETHDEV_QUEUE_STAT_CNTRS config param"
|
" RTE_ETHDEV_QUEUE_STAT_CNTRS config param"
|
||||||
@ -1234,7 +1240,8 @@ qede_get_xstats_count(struct qede_dev *qdev) {
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
qede_get_xstats_names(__rte_unused struct rte_eth_dev *dev,
|
qede_get_xstats_names(__rte_unused struct rte_eth_dev *dev,
|
||||||
struct rte_eth_xstat_name *xstats_names, unsigned limit)
|
struct rte_eth_xstat_name *xstats_names,
|
||||||
|
__rte_unused unsigned int limit)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = dev->data->dev_private;
|
struct qede_dev *qdev = dev->data->dev_private;
|
||||||
const unsigned int stat_cnt = qede_get_xstats_count(qdev);
|
const unsigned int stat_cnt = qede_get_xstats_count(qdev);
|
||||||
@ -1462,7 +1469,7 @@ static void qede_init_rss_caps(uint8_t *rss_caps, uint64_t hf)
|
|||||||
*rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_UDP) ? ECORE_RSS_IPV6_UDP : 0;
|
*rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_UDP) ? ECORE_RSS_IPV6_UDP : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
|
int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
|
||||||
struct rte_eth_rss_conf *rss_conf)
|
struct rte_eth_rss_conf *rss_conf)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
||||||
@ -1567,7 +1574,7 @@ static int qede_rss_hash_conf_get(struct rte_eth_dev *eth_dev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
|
int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
|
||||||
struct rte_eth_rss_reta_entry64 *reta_conf,
|
struct rte_eth_rss_reta_entry64 *reta_conf,
|
||||||
uint16_t reta_size)
|
uint16_t reta_size)
|
||||||
{
|
{
|
||||||
@ -1655,7 +1662,7 @@ static int qede_rss_reta_query(struct rte_eth_dev *eth_dev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int qede_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
|
static int qede_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = QEDE_INIT_QDEV(dev);
|
struct qede_dev *qdev = QEDE_INIT_QDEV(dev);
|
||||||
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
||||||
@ -1749,14 +1756,14 @@ qede_conf_udp_dst_port(struct rte_eth_dev *eth_dev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
qede_udp_dst_port_del(struct rte_eth_dev *eth_dev,
|
qede_udp_dst_port_del(struct rte_eth_dev *eth_dev,
|
||||||
struct rte_eth_udp_tunnel *tunnel_udp)
|
struct rte_eth_udp_tunnel *tunnel_udp)
|
||||||
{
|
{
|
||||||
return qede_conf_udp_dst_port(eth_dev, tunnel_udp, false);
|
return qede_conf_udp_dst_port(eth_dev, tunnel_udp, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
qede_udp_dst_port_add(struct rte_eth_dev *eth_dev,
|
qede_udp_dst_port_add(struct rte_eth_dev *eth_dev,
|
||||||
struct rte_eth_udp_tunnel *tunnel_udp)
|
struct rte_eth_udp_tunnel *tunnel_udp)
|
||||||
{
|
{
|
||||||
@ -2090,7 +2097,6 @@ static int qede_common_dev_init(struct rte_eth_dev *eth_dev, bool is_vf)
|
|||||||
/* Fix up ecore debug level */
|
/* Fix up ecore debug level */
|
||||||
uint32_t dp_module = ~0 & ~ECORE_MSG_HW;
|
uint32_t dp_module = ~0 & ~ECORE_MSG_HW;
|
||||||
uint8_t dp_level = ECORE_LEVEL_VERBOSE;
|
uint8_t dp_level = ECORE_LEVEL_VERBOSE;
|
||||||
uint32_t max_mac_addrs;
|
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
/* Extract key data structures */
|
/* Extract key data structures */
|
||||||
@ -2248,7 +2254,9 @@ static int qede_common_dev_init(struct rte_eth_dev *eth_dev, bool is_vf)
|
|||||||
eth_dev->dev_ops = (is_vf) ? &qede_eth_vf_dev_ops : &qede_eth_dev_ops;
|
eth_dev->dev_ops = (is_vf) ? &qede_eth_vf_dev_ops : &qede_eth_dev_ops;
|
||||||
|
|
||||||
if (do_once) {
|
if (do_once) {
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_INFO
|
||||||
qede_print_adapter_info(adapter);
|
qede_print_adapter_info(adapter);
|
||||||
|
#endif
|
||||||
do_once = false;
|
do_once = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -215,29 +215,16 @@ struct qede_dev {
|
|||||||
char drv_ver[QEDE_PMD_DRV_VER_STR_SIZE];
|
char drv_ver[QEDE_PMD_DRV_VER_STR_SIZE];
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Static functions */
|
|
||||||
static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
|
|
||||||
uint16_t vlan_id, int on);
|
|
||||||
|
|
||||||
static int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
|
|
||||||
struct rte_eth_rss_conf *rss_conf);
|
|
||||||
|
|
||||||
static int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
|
|
||||||
struct rte_eth_rss_reta_entry64 *reta_conf,
|
|
||||||
uint16_t reta_size);
|
|
||||||
|
|
||||||
static void qede_init_rss_caps(uint8_t *rss_caps, uint64_t hf);
|
|
||||||
|
|
||||||
static inline uint32_t qede_rx_cqe_to_pkt_type(uint16_t flags);
|
|
||||||
|
|
||||||
static uint16_t qede_fdir_construct_pkt(struct rte_eth_dev *eth_dev,
|
|
||||||
struct rte_eth_fdir_filter *fdir,
|
|
||||||
void *buff,
|
|
||||||
struct ecore_arfs_config_params *param);
|
|
||||||
|
|
||||||
/* Non-static functions */
|
/* Non-static functions */
|
||||||
int qede_config_rss(struct rte_eth_dev *eth_dev);
|
int qede_config_rss(struct rte_eth_dev *eth_dev);
|
||||||
|
|
||||||
|
int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
|
||||||
|
struct rte_eth_rss_conf *rss_conf);
|
||||||
|
|
||||||
|
int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
|
||||||
|
struct rte_eth_rss_reta_entry64 *reta_conf,
|
||||||
|
uint16_t reta_size);
|
||||||
|
|
||||||
int qed_fill_eth_dev_info(struct ecore_dev *edev,
|
int qed_fill_eth_dev_info(struct ecore_dev *edev,
|
||||||
struct qed_dev_eth_info *info);
|
struct qed_dev_eth_info *info);
|
||||||
int qede_dev_set_link_state(struct rte_eth_dev *eth_dev, bool link_up);
|
int qede_dev_set_link_state(struct rte_eth_dev *eth_dev, bool link_up);
|
||||||
@ -253,6 +240,11 @@ int qede_ntuple_filter_conf(struct rte_eth_dev *eth_dev,
|
|||||||
|
|
||||||
int qede_check_fdir_support(struct rte_eth_dev *eth_dev);
|
int qede_check_fdir_support(struct rte_eth_dev *eth_dev);
|
||||||
|
|
||||||
|
uint16_t qede_fdir_construct_pkt(struct rte_eth_dev *eth_dev,
|
||||||
|
struct rte_eth_fdir_filter *fdir,
|
||||||
|
void *buff,
|
||||||
|
struct ecore_arfs_config_params *params);
|
||||||
|
|
||||||
void qede_fdir_dealloc_resc(struct rte_eth_dev *eth_dev);
|
void qede_fdir_dealloc_resc(struct rte_eth_dev *eth_dev);
|
||||||
|
|
||||||
#endif /* _QEDE_ETHDEV_H_ */
|
#endif /* _QEDE_ETHDEV_H_ */
|
||||||
|
@ -74,9 +74,7 @@ int qede_check_fdir_support(struct rte_eth_dev *eth_dev)
|
|||||||
void qede_fdir_dealloc_resc(struct rte_eth_dev *eth_dev)
|
void qede_fdir_dealloc_resc(struct rte_eth_dev *eth_dev)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
|
||||||
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
|
||||||
struct qede_fdir_entry *tmp = NULL;
|
struct qede_fdir_entry *tmp = NULL;
|
||||||
struct qede_fdir_entry *fdir;
|
|
||||||
|
|
||||||
SLIST_FOREACH(tmp, &qdev->fdir_info.fdir_list_head, list) {
|
SLIST_FOREACH(tmp, &qdev->fdir_info.fdir_list_head, list) {
|
||||||
if (tmp) {
|
if (tmp) {
|
||||||
@ -98,12 +96,11 @@ qede_config_cmn_fdir_filter(struct rte_eth_dev *eth_dev,
|
|||||||
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
||||||
char mz_name[RTE_MEMZONE_NAMESIZE] = {0};
|
char mz_name[RTE_MEMZONE_NAMESIZE] = {0};
|
||||||
struct qede_fdir_entry *tmp = NULL;
|
struct qede_fdir_entry *tmp = NULL;
|
||||||
struct qede_fdir_entry *fdir;
|
struct qede_fdir_entry *fdir = NULL;
|
||||||
const struct rte_memzone *mz;
|
const struct rte_memzone *mz;
|
||||||
struct ecore_hwfn *p_hwfn;
|
struct ecore_hwfn *p_hwfn;
|
||||||
enum _ecore_status_t rc;
|
enum _ecore_status_t rc;
|
||||||
uint16_t pkt_len;
|
uint16_t pkt_len;
|
||||||
uint16_t len;
|
|
||||||
void *pkt;
|
void *pkt;
|
||||||
|
|
||||||
if (add) {
|
if (add) {
|
||||||
@ -251,7 +248,7 @@ qede_fdir_filter_add(struct rte_eth_dev *eth_dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Fills the L3/L4 headers and returns the actual length of flowdir packet */
|
/* Fills the L3/L4 headers and returns the actual length of flowdir packet */
|
||||||
static uint16_t
|
uint16_t
|
||||||
qede_fdir_construct_pkt(struct rte_eth_dev *eth_dev,
|
qede_fdir_construct_pkt(struct rte_eth_dev *eth_dev,
|
||||||
struct rte_eth_fdir_filter *fdir,
|
struct rte_eth_fdir_filter *fdir,
|
||||||
void *buff,
|
void *buff,
|
||||||
@ -268,8 +265,6 @@ qede_fdir_construct_pkt(struct rte_eth_dev *eth_dev,
|
|||||||
struct ipv6_hdr *ip6;
|
struct ipv6_hdr *ip6;
|
||||||
struct udp_hdr *udp;
|
struct udp_hdr *udp;
|
||||||
struct tcp_hdr *tcp;
|
struct tcp_hdr *tcp;
|
||||||
struct sctp_hdr *sctp;
|
|
||||||
uint8_t size, dst = 0;
|
|
||||||
uint16_t len;
|
uint16_t len;
|
||||||
static const uint8_t next_proto[] = {
|
static const uint8_t next_proto[] = {
|
||||||
[RTE_ETH_FLOW_NONFRAG_IPV4_TCP] = IPPROTO_TCP,
|
[RTE_ETH_FLOW_NONFRAG_IPV4_TCP] = IPPROTO_TCP,
|
||||||
@ -425,8 +420,7 @@ int qede_ntuple_filter_conf(struct rte_eth_dev *eth_dev,
|
|||||||
struct rte_eth_fdir_filter fdir_entry;
|
struct rte_eth_fdir_filter fdir_entry;
|
||||||
struct rte_eth_tcpv4_flow *tcpv4_flow;
|
struct rte_eth_tcpv4_flow *tcpv4_flow;
|
||||||
struct rte_eth_udpv4_flow *udpv4_flow;
|
struct rte_eth_udpv4_flow *udpv4_flow;
|
||||||
struct ecore_hwfn *p_hwfn;
|
bool add = false;
|
||||||
bool add;
|
|
||||||
|
|
||||||
switch (filter_op) {
|
switch (filter_op) {
|
||||||
case RTE_ETH_FILTER_NOP:
|
case RTE_ETH_FILTER_NOP:
|
||||||
@ -440,7 +434,6 @@ int qede_ntuple_filter_conf(struct rte_eth_dev *eth_dev,
|
|||||||
add = true;
|
add = true;
|
||||||
break;
|
break;
|
||||||
case RTE_ETH_FILTER_DELETE:
|
case RTE_ETH_FILTER_DELETE:
|
||||||
add = false;
|
|
||||||
break;
|
break;
|
||||||
case RTE_ETH_FILTER_INFO:
|
case RTE_ETH_FILTER_INFO:
|
||||||
case RTE_ETH_FILTER_GET:
|
case RTE_ETH_FILTER_GET:
|
||||||
|
@ -198,6 +198,10 @@ struct qed_common_ops {
|
|||||||
dma_addr_t sb_phy_addr,
|
dma_addr_t sb_phy_addr,
|
||||||
uint16_t sb_id, enum qed_sb_type type);
|
uint16_t sb_id, enum qed_sb_type type);
|
||||||
|
|
||||||
|
int (*get_sb_info)(struct ecore_dev *edev,
|
||||||
|
struct ecore_sb_info *sb, u16 qid,
|
||||||
|
struct ecore_sb_info_dbg *sb_dbg);
|
||||||
|
|
||||||
bool (*can_link_change)(struct ecore_dev *edev);
|
bool (*can_link_change)(struct ecore_dev *edev);
|
||||||
|
|
||||||
void (*update_msglvl)(struct ecore_dev *edev,
|
void (*update_msglvl)(struct ecore_dev *edev,
|
||||||
|
@ -74,7 +74,7 @@ qed_probe(struct ecore_dev *edev, struct rte_pci_device *pci_dev,
|
|||||||
|
|
||||||
static int qed_nic_setup(struct ecore_dev *edev)
|
static int qed_nic_setup(struct ecore_dev *edev)
|
||||||
{
|
{
|
||||||
int rc, i;
|
int rc;
|
||||||
|
|
||||||
rc = ecore_resc_alloc(edev);
|
rc = ecore_resc_alloc(edev);
|
||||||
if (rc)
|
if (rc)
|
||||||
@ -226,7 +226,6 @@ static int qed_slowpath_start(struct ecore_dev *edev,
|
|||||||
struct ecore_hwfn *hwfn;
|
struct ecore_hwfn *hwfn;
|
||||||
struct ecore_mcp_drv_version drv_version;
|
struct ecore_mcp_drv_version drv_version;
|
||||||
struct ecore_hw_init_params hw_init_params;
|
struct ecore_hw_init_params hw_init_params;
|
||||||
struct qede_dev *qdev = (struct qede_dev *)edev;
|
|
||||||
struct ecore_ptt *p_ptt;
|
struct ecore_ptt *p_ptt;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
@ -268,9 +267,9 @@ static int qed_slowpath_start(struct ecore_dev *edev,
|
|||||||
goto err1;
|
goto err1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
qed_start_iov_task(edev);
|
qed_start_iov_task(edev);
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_ECORE_BINARY_FW
|
#ifdef CONFIG_ECORE_BINARY_FW
|
||||||
if (IS_PF(edev))
|
if (IS_PF(edev))
|
||||||
@ -401,7 +400,6 @@ qed_fill_dev_info(struct ecore_dev *edev, struct qed_dev_info *dev_info)
|
|||||||
int
|
int
|
||||||
qed_fill_eth_dev_info(struct ecore_dev *edev, struct qed_dev_eth_info *info)
|
qed_fill_eth_dev_info(struct ecore_dev *edev, struct qed_dev_eth_info *info)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = (struct qede_dev *)edev;
|
|
||||||
uint8_t queues = 0;
|
uint8_t queues = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -498,7 +496,6 @@ static void qed_fill_link(struct ecore_hwfn *hwfn,
|
|||||||
struct ecore_mcp_link_params params;
|
struct ecore_mcp_link_params params;
|
||||||
struct ecore_mcp_link_state link;
|
struct ecore_mcp_link_state link;
|
||||||
struct ecore_mcp_link_capabilities link_caps;
|
struct ecore_mcp_link_capabilities link_caps;
|
||||||
uint32_t media_type;
|
|
||||||
uint8_t change = 0;
|
uint8_t change = 0;
|
||||||
|
|
||||||
memset(if_link, 0, sizeof(*if_link));
|
memset(if_link, 0, sizeof(*if_link));
|
||||||
@ -732,6 +729,7 @@ const struct qed_common_ops qed_common_ops_pass = {
|
|||||||
INIT_STRUCT_FIELD(chain_alloc, &ecore_chain_alloc),
|
INIT_STRUCT_FIELD(chain_alloc, &ecore_chain_alloc),
|
||||||
INIT_STRUCT_FIELD(chain_free, &ecore_chain_free),
|
INIT_STRUCT_FIELD(chain_free, &ecore_chain_free),
|
||||||
INIT_STRUCT_FIELD(sb_init, &qed_sb_init),
|
INIT_STRUCT_FIELD(sb_init, &qed_sb_init),
|
||||||
|
INIT_STRUCT_FIELD(get_sb_info, &qed_get_sb_info),
|
||||||
INIT_STRUCT_FIELD(get_link, &qed_get_current_link),
|
INIT_STRUCT_FIELD(get_link, &qed_get_current_link),
|
||||||
INIT_STRUCT_FIELD(set_link, &qed_set_link),
|
INIT_STRUCT_FIELD(set_link, &qed_set_link),
|
||||||
INIT_STRUCT_FIELD(drain, &qed_drain),
|
INIT_STRUCT_FIELD(drain, &qed_drain),
|
||||||
|
@ -83,7 +83,7 @@ static void qede_tx_queue_release_mbufs(struct qede_tx_queue *txq)
|
|||||||
int
|
int
|
||||||
qede_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
|
qede_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
|
||||||
uint16_t nb_desc, unsigned int socket_id,
|
uint16_t nb_desc, unsigned int socket_id,
|
||||||
const struct rte_eth_rxconf *rx_conf,
|
__rte_unused const struct rte_eth_rxconf *rx_conf,
|
||||||
struct rte_mempool *mp)
|
struct rte_mempool *mp)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = dev->data->dev_private;
|
struct qede_dev *qdev = dev->data->dev_private;
|
||||||
@ -330,8 +330,8 @@ qede_tx_queue_setup(struct rte_eth_dev *dev,
|
|||||||
static void qede_init_fp(struct qede_dev *qdev)
|
static void qede_init_fp(struct qede_dev *qdev)
|
||||||
{
|
{
|
||||||
struct qede_fastpath *fp;
|
struct qede_fastpath *fp;
|
||||||
uint8_t i, rss_id, tc;
|
uint8_t i;
|
||||||
int fp_rx = qdev->fp_num_rx, rxq = 0, txq = 0;
|
int fp_rx = qdev->fp_num_rx;
|
||||||
|
|
||||||
memset((void *)qdev->fp_array, 0, (QEDE_QUEUE_CNT(qdev) *
|
memset((void *)qdev->fp_array, 0, (QEDE_QUEUE_CNT(qdev) *
|
||||||
sizeof(*qdev->fp_array)));
|
sizeof(*qdev->fp_array)));
|
||||||
@ -367,11 +367,9 @@ void qede_free_fp_arrays(struct qede_dev *qdev)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int qede_alloc_fp_array(struct qede_dev *qdev)
|
static int qede_alloc_fp_array(struct qede_dev *qdev)
|
||||||
{
|
{
|
||||||
struct qede_fastpath *fp;
|
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
int i;
|
|
||||||
|
|
||||||
qdev->fp_array = rte_calloc("fp", QEDE_QUEUE_CNT(qdev),
|
qdev->fp_array = rte_calloc("fp", QEDE_QUEUE_CNT(qdev),
|
||||||
sizeof(*qdev->fp_array),
|
sizeof(*qdev->fp_array),
|
||||||
@ -477,7 +475,8 @@ void qede_dealloc_fp_resc(struct rte_eth_dev *eth_dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
qede_update_rx_prod(struct qede_dev *edev, struct qede_rx_queue *rxq)
|
qede_update_rx_prod(__rte_unused struct qede_dev *edev,
|
||||||
|
struct qede_rx_queue *rxq)
|
||||||
{
|
{
|
||||||
uint16_t bd_prod = ecore_chain_get_prod_idx(&rxq->rx_bd_ring);
|
uint16_t bd_prod = ecore_chain_get_prod_idx(&rxq->rx_bd_ring);
|
||||||
uint16_t cqe_prod = ecore_chain_get_prod_idx(&rxq->rx_comp_ring);
|
uint16_t cqe_prod = ecore_chain_get_prod_idx(&rxq->rx_comp_ring);
|
||||||
@ -534,7 +533,8 @@ qede_update_sge_tpa_params(struct ecore_sge_tpa_params *sge_tpa_params,
|
|||||||
sge_tpa_params->tpa_min_size_to_cont = mtu / 2;
|
sge_tpa_params->tpa_min_size_to_cont = mtu / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qede_start_queues(struct rte_eth_dev *eth_dev, bool clear_stats)
|
static int qede_start_queues(struct rte_eth_dev *eth_dev,
|
||||||
|
__rte_unused bool clear_stats)
|
||||||
{
|
{
|
||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
@ -547,7 +547,6 @@ static int qede_start_queues(struct rte_eth_dev *eth_dev, bool clear_stats)
|
|||||||
dma_addr_t p_phys_table;
|
dma_addr_t p_phys_table;
|
||||||
int txq_index;
|
int txq_index;
|
||||||
uint16_t page_cnt;
|
uint16_t page_cnt;
|
||||||
int vlan_removal_en = 1;
|
|
||||||
int rc, tc, i;
|
int rc, tc, i;
|
||||||
|
|
||||||
for_each_queue(i) {
|
for_each_queue(i) {
|
||||||
@ -700,6 +699,33 @@ static inline uint8_t qede_check_notunn_csum_l4(uint16_t flag)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline uint32_t qede_rx_cqe_to_pkt_type(uint16_t flags)
|
||||||
|
{
|
||||||
|
uint16_t val;
|
||||||
|
|
||||||
|
/* Lookup table */
|
||||||
|
static const uint32_t
|
||||||
|
ptype_lkup_tbl[QEDE_PKT_TYPE_MAX] __rte_cache_aligned = {
|
||||||
|
[QEDE_PKT_TYPE_IPV4] = RTE_PTYPE_L3_IPV4,
|
||||||
|
[QEDE_PKT_TYPE_IPV6] = RTE_PTYPE_L3_IPV6,
|
||||||
|
[QEDE_PKT_TYPE_IPV4_TCP] = RTE_PTYPE_L3_IPV4 | RTE_PTYPE_L4_TCP,
|
||||||
|
[QEDE_PKT_TYPE_IPV6_TCP] = RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_TCP,
|
||||||
|
[QEDE_PKT_TYPE_IPV4_UDP] = RTE_PTYPE_L3_IPV4 | RTE_PTYPE_L4_UDP,
|
||||||
|
[QEDE_PKT_TYPE_IPV6_UDP] = RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_UDP,
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Bits (0..3) provides L3/L4 protocol type */
|
||||||
|
val = ((PARSING_AND_ERR_FLAGS_L3TYPE_MASK <<
|
||||||
|
PARSING_AND_ERR_FLAGS_L3TYPE_SHIFT) |
|
||||||
|
(PARSING_AND_ERR_FLAGS_L4PROTOCOL_MASK <<
|
||||||
|
PARSING_AND_ERR_FLAGS_L4PROTOCOL_SHIFT)) & flags;
|
||||||
|
|
||||||
|
if (val < QEDE_PKT_TYPE_MAX)
|
||||||
|
return ptype_lkup_tbl[val] | RTE_PTYPE_L2_ETHER;
|
||||||
|
else
|
||||||
|
return RTE_PTYPE_UNKNOWN;
|
||||||
|
}
|
||||||
|
|
||||||
static inline uint8_t
|
static inline uint8_t
|
||||||
qede_check_notunn_csum_l3(struct rte_mbuf *m, uint16_t flag)
|
qede_check_notunn_csum_l3(struct rte_mbuf *m, uint16_t flag)
|
||||||
{
|
{
|
||||||
@ -735,7 +761,7 @@ static inline void qede_rx_bd_ring_consume(struct qede_rx_queue *rxq)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
qede_reuse_page(struct qede_dev *qdev,
|
qede_reuse_page(__rte_unused struct qede_dev *qdev,
|
||||||
struct qede_rx_queue *rxq, struct qede_rx_entry *curr_cons)
|
struct qede_rx_queue *rxq, struct qede_rx_entry *curr_cons)
|
||||||
{
|
{
|
||||||
struct eth_rx_bd *rx_bd_prod = ecore_chain_produce(&rxq->rx_bd_ring);
|
struct eth_rx_bd *rx_bd_prod = ecore_chain_produce(&rxq->rx_bd_ring);
|
||||||
@ -768,39 +794,11 @@ qede_recycle_rx_bd_ring(struct qede_rx_queue *rxq,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline uint32_t qede_rx_cqe_to_pkt_type(uint16_t flags)
|
|
||||||
{
|
|
||||||
uint16_t val;
|
|
||||||
|
|
||||||
/* Lookup table */
|
|
||||||
static const uint32_t
|
|
||||||
ptype_lkup_tbl[QEDE_PKT_TYPE_MAX] __rte_cache_aligned = {
|
|
||||||
[QEDE_PKT_TYPE_IPV4] = RTE_PTYPE_L3_IPV4,
|
|
||||||
[QEDE_PKT_TYPE_IPV6] = RTE_PTYPE_L3_IPV6,
|
|
||||||
[QEDE_PKT_TYPE_IPV4_TCP] = RTE_PTYPE_L3_IPV4 | RTE_PTYPE_L4_TCP,
|
|
||||||
[QEDE_PKT_TYPE_IPV6_TCP] = RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_TCP,
|
|
||||||
[QEDE_PKT_TYPE_IPV4_UDP] = RTE_PTYPE_L3_IPV4 | RTE_PTYPE_L4_UDP,
|
|
||||||
[QEDE_PKT_TYPE_IPV6_UDP] = RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_UDP,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Bits (0..3) provides L3/L4 protocol type */
|
|
||||||
val = ((PARSING_AND_ERR_FLAGS_L3TYPE_MASK <<
|
|
||||||
PARSING_AND_ERR_FLAGS_L3TYPE_SHIFT) |
|
|
||||||
(PARSING_AND_ERR_FLAGS_L4PROTOCOL_MASK <<
|
|
||||||
PARSING_AND_ERR_FLAGS_L4PROTOCOL_SHIFT)) & flags;
|
|
||||||
|
|
||||||
if (val < QEDE_PKT_TYPE_MAX)
|
|
||||||
return ptype_lkup_tbl[val] | RTE_PTYPE_L2_ETHER;
|
|
||||||
else
|
|
||||||
return RTE_PTYPE_UNKNOWN;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
qede_rx_process_tpa_cmn_cont_end_cqe(struct qede_dev *qdev,
|
qede_rx_process_tpa_cmn_cont_end_cqe(__rte_unused struct qede_dev *qdev,
|
||||||
struct qede_rx_queue *rxq,
|
struct qede_rx_queue *rxq,
|
||||||
uint8_t agg_index, uint16_t len)
|
uint8_t agg_index, uint16_t len)
|
||||||
{
|
{
|
||||||
struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
|
|
||||||
struct qede_agg_info *tpa_info;
|
struct qede_agg_info *tpa_info;
|
||||||
struct rte_mbuf *curr_frag; /* Pointer to currently filled TPA seg */
|
struct rte_mbuf *curr_frag; /* Pointer to currently filled TPA seg */
|
||||||
uint16_t cons_idx;
|
uint16_t cons_idx;
|
||||||
@ -845,13 +843,11 @@ qede_rx_process_tpa_end_cqe(struct qede_dev *qdev,
|
|||||||
struct qede_rx_queue *rxq,
|
struct qede_rx_queue *rxq,
|
||||||
struct eth_fast_path_rx_tpa_end_cqe *cqe)
|
struct eth_fast_path_rx_tpa_end_cqe *cqe)
|
||||||
{
|
{
|
||||||
struct qede_agg_info *tpa_info;
|
|
||||||
struct rte_mbuf *rx_mb; /* Pointer to head of the chained agg */
|
struct rte_mbuf *rx_mb; /* Pointer to head of the chained agg */
|
||||||
|
|
||||||
qede_rx_process_tpa_cmn_cont_end_cqe(qdev, rxq, cqe->tpa_agg_index,
|
qede_rx_process_tpa_cmn_cont_end_cqe(qdev, rxq, cqe->tpa_agg_index,
|
||||||
cqe->len_list[0]);
|
cqe->len_list[0]);
|
||||||
/* Update total length and frags based on end TPA */
|
/* Update total length and frags based on end TPA */
|
||||||
tpa_info = &rxq->tpa_info[cqe->tpa_agg_index];
|
|
||||||
rx_mb = rxq->tpa_info[cqe->tpa_agg_index].tpa_head;
|
rx_mb = rxq->tpa_info[cqe->tpa_agg_index].tpa_head;
|
||||||
/* TODO: Add Sanity Checks */
|
/* TODO: Add Sanity Checks */
|
||||||
rx_mb->nb_segs = cqe->num_of_bds;
|
rx_mb->nb_segs = cqe->num_of_bds;
|
||||||
@ -930,7 +926,6 @@ qede_process_sg_pkts(void *p_rxq, struct rte_mbuf *rx_mb,
|
|||||||
{
|
{
|
||||||
struct qede_rx_queue *rxq = p_rxq;
|
struct qede_rx_queue *rxq = p_rxq;
|
||||||
struct qede_dev *qdev = rxq->qdev;
|
struct qede_dev *qdev = rxq->qdev;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
|
||||||
register struct rte_mbuf *seg1 = NULL;
|
register struct rte_mbuf *seg1 = NULL;
|
||||||
register struct rte_mbuf *seg2 = NULL;
|
register struct rte_mbuf *seg2 = NULL;
|
||||||
uint16_t sw_rx_index;
|
uint16_t sw_rx_index;
|
||||||
@ -970,17 +965,19 @@ qede_recv_pkts(void *p_rxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
|
|||||||
uint16_t hw_comp_cons, sw_comp_cons, sw_rx_index;
|
uint16_t hw_comp_cons, sw_comp_cons, sw_rx_index;
|
||||||
uint16_t rx_pkt = 0;
|
uint16_t rx_pkt = 0;
|
||||||
union eth_rx_cqe *cqe;
|
union eth_rx_cqe *cqe;
|
||||||
struct eth_fast_path_rx_reg_cqe *fp_cqe;
|
struct eth_fast_path_rx_reg_cqe *fp_cqe = NULL;
|
||||||
register struct rte_mbuf *rx_mb = NULL;
|
register struct rte_mbuf *rx_mb = NULL;
|
||||||
register struct rte_mbuf *seg1 = NULL;
|
register struct rte_mbuf *seg1 = NULL;
|
||||||
enum eth_rx_cqe_type cqe_type;
|
enum eth_rx_cqe_type cqe_type;
|
||||||
uint16_t pkt_len; /* Sum of all BD segments */
|
uint16_t pkt_len = 0; /* Sum of all BD segments */
|
||||||
uint16_t len; /* Length of first BD */
|
uint16_t len; /* Length of first BD */
|
||||||
uint8_t num_segs = 1;
|
uint8_t num_segs = 1;
|
||||||
uint16_t preload_idx;
|
uint16_t preload_idx;
|
||||||
uint8_t csum_flag;
|
|
||||||
uint16_t parse_flag;
|
uint16_t parse_flag;
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_RX
|
||||||
|
uint8_t bitfield_val;
|
||||||
enum rss_hash_type htype;
|
enum rss_hash_type htype;
|
||||||
|
#endif
|
||||||
uint8_t tunn_parse_flag;
|
uint8_t tunn_parse_flag;
|
||||||
uint8_t j;
|
uint8_t j;
|
||||||
struct eth_fast_path_rx_tpa_start_cqe *cqe_start_tpa;
|
struct eth_fast_path_rx_tpa_start_cqe *cqe_start_tpa;
|
||||||
@ -988,9 +985,8 @@ qede_recv_pkts(void *p_rxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
|
|||||||
uint32_t packet_type;
|
uint32_t packet_type;
|
||||||
uint16_t vlan_tci;
|
uint16_t vlan_tci;
|
||||||
bool tpa_start_flg;
|
bool tpa_start_flg;
|
||||||
uint8_t bitfield_val;
|
|
||||||
uint8_t offset, tpa_agg_idx, flags;
|
uint8_t offset, tpa_agg_idx, flags;
|
||||||
struct qede_agg_info *tpa_info;
|
struct qede_agg_info *tpa_info = NULL;
|
||||||
uint32_t rss_hash;
|
uint32_t rss_hash;
|
||||||
|
|
||||||
hw_comp_cons = rte_le_to_cpu_16(*rxq->hw_cons_ptr);
|
hw_comp_cons = rte_le_to_cpu_16(*rxq->hw_cons_ptr);
|
||||||
@ -1066,24 +1062,28 @@ qede_recv_pkts(void *p_rxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
|
|||||||
/* Handle regular CQE or TPA start CQE */
|
/* Handle regular CQE or TPA start CQE */
|
||||||
if (!tpa_start_flg) {
|
if (!tpa_start_flg) {
|
||||||
parse_flag = rte_le_to_cpu_16(fp_cqe->pars_flags.flags);
|
parse_flag = rte_le_to_cpu_16(fp_cqe->pars_flags.flags);
|
||||||
bitfield_val = fp_cqe->bitfields;
|
|
||||||
offset = fp_cqe->placement_offset;
|
offset = fp_cqe->placement_offset;
|
||||||
len = rte_le_to_cpu_16(fp_cqe->len_on_first_bd);
|
len = rte_le_to_cpu_16(fp_cqe->len_on_first_bd);
|
||||||
pkt_len = rte_le_to_cpu_16(fp_cqe->pkt_len);
|
pkt_len = rte_le_to_cpu_16(fp_cqe->pkt_len);
|
||||||
vlan_tci = rte_le_to_cpu_16(fp_cqe->vlan_tag);
|
vlan_tci = rte_le_to_cpu_16(fp_cqe->vlan_tag);
|
||||||
rss_hash = rte_le_to_cpu_32(fp_cqe->rss_hash);
|
rss_hash = rte_le_to_cpu_32(fp_cqe->rss_hash);
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_RX
|
||||||
|
bitfield_val = fp_cqe->bitfields;
|
||||||
htype = (uint8_t)GET_FIELD(bitfield_val,
|
htype = (uint8_t)GET_FIELD(bitfield_val,
|
||||||
ETH_FAST_PATH_RX_REG_CQE_RSS_HASH_TYPE);
|
ETH_FAST_PATH_RX_REG_CQE_RSS_HASH_TYPE);
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
parse_flag =
|
parse_flag =
|
||||||
rte_le_to_cpu_16(cqe_start_tpa->pars_flags.flags);
|
rte_le_to_cpu_16(cqe_start_tpa->pars_flags.flags);
|
||||||
bitfield_val = cqe_start_tpa->bitfields;
|
|
||||||
offset = cqe_start_tpa->placement_offset;
|
offset = cqe_start_tpa->placement_offset;
|
||||||
/* seg_len = len_on_first_bd */
|
/* seg_len = len_on_first_bd */
|
||||||
len = rte_le_to_cpu_16(cqe_start_tpa->len_on_first_bd);
|
len = rte_le_to_cpu_16(cqe_start_tpa->len_on_first_bd);
|
||||||
vlan_tci = rte_le_to_cpu_16(cqe_start_tpa->vlan_tag);
|
vlan_tci = rte_le_to_cpu_16(cqe_start_tpa->vlan_tag);
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_RX
|
||||||
|
bitfield_val = cqe_start_tpa->bitfields;
|
||||||
htype = (uint8_t)GET_FIELD(bitfield_val,
|
htype = (uint8_t)GET_FIELD(bitfield_val,
|
||||||
ETH_FAST_PATH_RX_TPA_START_CQE_RSS_HASH_TYPE);
|
ETH_FAST_PATH_RX_TPA_START_CQE_RSS_HASH_TYPE);
|
||||||
|
#endif
|
||||||
rss_hash = rte_le_to_cpu_32(cqe_start_tpa->rss_hash);
|
rss_hash = rte_le_to_cpu_32(cqe_start_tpa->rss_hash);
|
||||||
}
|
}
|
||||||
if (qede_tunn_exist(parse_flag)) {
|
if (qede_tunn_exist(parse_flag)) {
|
||||||
@ -1241,7 +1241,6 @@ qede_free_tx_pkt(struct qede_tx_queue *txq)
|
|||||||
struct rte_mbuf *mbuf;
|
struct rte_mbuf *mbuf;
|
||||||
uint16_t nb_segs;
|
uint16_t nb_segs;
|
||||||
uint16_t idx;
|
uint16_t idx;
|
||||||
uint8_t nbds;
|
|
||||||
|
|
||||||
idx = TX_CONS(txq);
|
idx = TX_CONS(txq);
|
||||||
mbuf = txq->sw_tx_ring[idx].mbuf;
|
mbuf = txq->sw_tx_ring[idx].mbuf;
|
||||||
@ -1265,16 +1264,21 @@ qede_free_tx_pkt(struct qede_tx_queue *txq)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
qede_process_tx_compl(struct ecore_dev *edev, struct qede_tx_queue *txq)
|
qede_process_tx_compl(__rte_unused struct ecore_dev *edev,
|
||||||
|
struct qede_tx_queue *txq)
|
||||||
{
|
{
|
||||||
uint16_t hw_bd_cons;
|
uint16_t hw_bd_cons;
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_TX
|
||||||
uint16_t sw_tx_cons;
|
uint16_t sw_tx_cons;
|
||||||
|
#endif
|
||||||
|
|
||||||
rte_compiler_barrier();
|
rte_compiler_barrier();
|
||||||
hw_bd_cons = rte_le_to_cpu_16(*txq->hw_cons_ptr);
|
hw_bd_cons = rte_le_to_cpu_16(*txq->hw_cons_ptr);
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_TX
|
||||||
sw_tx_cons = ecore_chain_get_cons_idx(&txq->tx_pbl);
|
sw_tx_cons = ecore_chain_get_cons_idx(&txq->tx_pbl);
|
||||||
PMD_TX_LOG(DEBUG, txq, "Tx Completions = %u\n",
|
PMD_TX_LOG(DEBUG, txq, "Tx Completions = %u\n",
|
||||||
abs(hw_bd_cons - sw_tx_cons));
|
abs(hw_bd_cons - sw_tx_cons));
|
||||||
|
#endif
|
||||||
while (hw_bd_cons != ecore_chain_get_cons_idx(&txq->tx_pbl))
|
while (hw_bd_cons != ecore_chain_get_cons_idx(&txq->tx_pbl))
|
||||||
qede_free_tx_pkt(txq);
|
qede_free_tx_pkt(txq);
|
||||||
}
|
}
|
||||||
@ -1361,10 +1365,16 @@ print_tx_bd_info(struct qede_tx_queue *txq,
|
|||||||
|
|
||||||
/* TX prepare to check packets meets TX conditions */
|
/* TX prepare to check packets meets TX conditions */
|
||||||
uint16_t
|
uint16_t
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_TX
|
||||||
qede_xmit_prep_pkts(void *p_txq, struct rte_mbuf **tx_pkts,
|
qede_xmit_prep_pkts(void *p_txq, struct rte_mbuf **tx_pkts,
|
||||||
uint16_t nb_pkts)
|
uint16_t nb_pkts)
|
||||||
{
|
{
|
||||||
struct qede_tx_queue *txq = p_txq;
|
struct qede_tx_queue *txq = p_txq;
|
||||||
|
#else
|
||||||
|
qede_xmit_prep_pkts(__rte_unused void *p_txq, struct rte_mbuf **tx_pkts,
|
||||||
|
uint16_t nb_pkts)
|
||||||
|
{
|
||||||
|
#endif
|
||||||
uint64_t ol_flags;
|
uint64_t ol_flags;
|
||||||
struct rte_mbuf *m;
|
struct rte_mbuf *m;
|
||||||
uint16_t i;
|
uint16_t i;
|
||||||
@ -1411,9 +1421,11 @@ qede_xmit_prep_pkts(void *p_txq, struct rte_mbuf **tx_pkts,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef RTE_LIBRTE_QEDE_DEBUG_TX
|
||||||
if (unlikely(i != nb_pkts))
|
if (unlikely(i != nb_pkts))
|
||||||
PMD_TX_LOG(ERR, txq, "TX prepare failed for %u\n",
|
PMD_TX_LOG(ERR, txq, "TX prepare failed for %u\n",
|
||||||
nb_pkts - i);
|
nb_pkts - i);
|
||||||
|
#endif
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1651,7 +1663,7 @@ static void qede_init_fp_queue(struct rte_eth_dev *eth_dev)
|
|||||||
{
|
{
|
||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct qede_fastpath *fp;
|
struct qede_fastpath *fp;
|
||||||
uint8_t i, rss_id, txq_index, tc;
|
uint8_t i, txq_index, tc;
|
||||||
int rxq = 0, txq = 0;
|
int rxq = 0, txq = 0;
|
||||||
|
|
||||||
for_each_queue(i) {
|
for_each_queue(i) {
|
||||||
@ -1679,8 +1691,6 @@ int qede_dev_start(struct rte_eth_dev *eth_dev)
|
|||||||
{
|
{
|
||||||
struct qede_dev *qdev = eth_dev->data->dev_private;
|
struct qede_dev *qdev = eth_dev->data->dev_private;
|
||||||
struct ecore_dev *edev = &qdev->edev;
|
struct ecore_dev *edev = &qdev->edev;
|
||||||
struct qed_link_output link_output;
|
|
||||||
struct qede_fastpath *fp;
|
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
DP_INFO(edev, "Device state is %d\n", qdev->state);
|
DP_INFO(edev, "Device state is %d\n", qdev->state);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user