4c4bdadfa9
This patch does the following refactoring and cleanup: - As part of multi-queue support a struct member called 'type' was added in struct qede_fastpath in order to identify whether a queue is RX or TX and take actions based on that. This was unnecessary in the first place since pointers to RX and TX queues are already available in rte_eth_dev->data. So all usage of fp->type is removed. - Remove remaining additional layer of internal callbacks for RX/TX queues and fastpath related operations from the qed_eth_ops_pass. With this change the files qede_eth_if.[c,h] are no longer needed. - Add new per-queue start/stop APIs instead of clubbing it all together. - Remove multiple TXQs references (num_tc and fp->txqs) since CoS is not supported. - Enable sharing of the status block for each queue pair. - Remove enum qede_dev_state and instead make use of existing port states RTE_ETH_QUEUE_STATE_STOPPED/RTE_ETH_QUEUE_STATE_STARTED. - Move qede_dev_start() and qede_dev_stop() to qede_ethdev.c from qede_rxtc.c. Signed-off-by: Harish Patil <harish.patil@cavium.com>
109 lines
3.3 KiB
Makefile
109 lines
3.3 KiB
Makefile
# Copyright (c) 2016 QLogic Corporation.
|
|
# All rights reserved.
|
|
# www.qlogic.com
|
|
#
|
|
# See LICENSE.qede_pmd for copyright and licensing details.
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_pmd_qede.a
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
EXPORT_MAP := rte_pmd_qede_version.map
|
|
|
|
LIBABIVER := 1
|
|
|
|
#
|
|
# OS
|
|
#
|
|
OS_TYPE := $(shell uname -s)
|
|
|
|
#
|
|
# CFLAGS
|
|
#
|
|
CFLAGS_BASE_DRIVER = -Wno-unused-parameter
|
|
CFLAGS_BASE_DRIVER += -Wno-sign-compare
|
|
CFLAGS_BASE_DRIVER += -Wno-missing-prototypes
|
|
CFLAGS_BASE_DRIVER += -Wno-cast-qual
|
|
CFLAGS_BASE_DRIVER += -Wno-unused-function
|
|
CFLAGS_BASE_DRIVER += -Wno-unused-variable
|
|
CFLAGS_BASE_DRIVER += -Wno-strict-aliasing
|
|
CFLAGS_BASE_DRIVER += -Wno-missing-prototypes
|
|
|
|
ifneq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
|
|
CFLAGS_BASE_DRIVER += -Wno-unused-value
|
|
CFLAGS_BASE_DRIVER += -Wno-format-nonliteral
|
|
ifeq ($(OS_TYPE),Linux)
|
|
ifeq ($(shell clang -Wno-shift-negative-value -Werror -E - < /dev/null > /dev/null 2>&1; echo $$?),0)
|
|
CFLAGS_BASE_DRIVER += -Wno-shift-negative-value
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
|
|
ifeq ($(shell test $(GCC_VERSION) -ge 44 && echo 1), 1)
|
|
CFLAGS_BASE_DRIVER += -Wno-unused-but-set-variable
|
|
endif
|
|
CFLAGS_BASE_DRIVER += -Wno-missing-declarations
|
|
ifeq ($(shell test $(GCC_VERSION) -ge 46 && echo 1), 1)
|
|
CFLAGS_BASE_DRIVER += -Wno-maybe-uninitialized
|
|
endif
|
|
CFLAGS_BASE_DRIVER += -Wno-strict-prototypes
|
|
ifeq ($(shell test $(GCC_VERSION) -ge 60 && echo 1), 1)
|
|
CFLAGS_BASE_DRIVER += -Wno-shift-negative-value
|
|
ifeq ($(shell test $(GCC_VERSION) -ge 70 && echo 1), 1)
|
|
CFLAGS_BASE_DRIVER += -Wno-implicit-fallthrough
|
|
endif
|
|
endif
|
|
else ifeq ($(CONFIG_RTE_TOOLCHAIN_CLANG),y)
|
|
CFLAGS_BASE_DRIVER += -Wno-format-extra-args
|
|
CFLAGS_BASE_DRIVER += -Wno-visibility
|
|
CFLAGS_BASE_DRIVER += -Wno-empty-body
|
|
CFLAGS_BASE_DRIVER += -Wno-invalid-source-encoding
|
|
CFLAGS_BASE_DRIVER += -Wno-sometimes-uninitialized
|
|
ifeq ($(shell clang -Wno-pointer-bool-conversion -Werror -E - < /dev/null > /dev/null 2>&1; echo $$?),0)
|
|
CFLAGS_BASE_DRIVER += -Wno-pointer-bool-conversion
|
|
endif
|
|
else
|
|
CFLAGS_BASE_DRIVER += -wd188 #188: enumerated type mixed with another type
|
|
endif
|
|
|
|
#
|
|
# Add extra flags for base ecore driver files
|
|
# to disable warnings in them
|
|
#
|
|
#
|
|
BASE_DRIVER_OBJS=$(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*.c)))
|
|
$(foreach obj, $(BASE_DRIVER_OBJS), $(eval CFLAGS_$(obj)+=$(CFLAGS_BASE_DRIVER)))
|
|
|
|
VPATH += $(SRCDIR)/base
|
|
|
|
#
|
|
# all source are stored in SRCS-y
|
|
#
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_dev.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_hw.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_cxt.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_l2.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_sp_commands.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_init_fw_funcs.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_spq.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_init_ops.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_mcp.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_int.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_dcbx.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += bcm_osal.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += ecore_sriov.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_main.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_rxtx.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += qede_fdir.c
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|