371d3212cb
Add the make and meson based build infrastructure along with HW definition header file. This patch adds skeleton otx2_mbox.c file to make sure all header files are intact, subsequent patches add content to otx2_mbox.c This patch also updates CONFIG_RTE_MAX_VFIO_GROUPS value to 128 as the system can have up to 128 PFs/VFs. For octeontx2 meson build target, CONFIG_RTE_MAX_VFIO_GROUPS defined as 128 so no additional changes required. Signed-off-by: Jerin Jacob <jerinj@marvell.com> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
28 lines
604 B
Makefile
28 lines
604 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Cavium, Inc
|
|
#
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO),y)
|
|
DIRS-y += cpt
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_SSOVF)$(CONFIG_RTE_LIBRTE_OCTEONTX_MEMPOOL),yy)
|
|
DIRS-y += octeontx
|
|
endif
|
|
DIRS-y += octeontx2
|
|
|
|
MVEP-y := $(CONFIG_RTE_LIBRTE_MVPP2_PMD)
|
|
MVEP-y += $(CONFIG_RTE_LIBRTE_MVNETA_PMD)
|
|
MVEP-y += $(CONFIG_RTE_LIBRTE_PMD_MVSAM_CRYPTO)
|
|
ifneq (,$(findstring y,$(MVEP-y)))
|
|
DIRS-y += mvep
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_COMMON_DPAAX),y)
|
|
DIRS-y += dpaax
|
|
endif
|
|
|
|
include $(RTE_SDK)/mk/rte.subdir.mk
|