43e610bb85
Octentx zipvf PMD provides hardware acceleration for deflate and lzs compression and decompression operations using Octeontx zip co-processor, which provide 8 virtualized zip devices. This patch add basic initialization routine to register zip VFs to compressdev library. Signed-off-by: Ashish Gupta <ashish.gupta@caviumnetworks.com> Signed-off-by: Shally Verma <shally.verma@caviumnetworks.com> Signed-off-by: Sunila Sahu <sunila.sahu@caviumnetworks.com>
31 lines
743 B
Makefile
31 lines
743 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Cavium, Inc
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_pmd_octeontx_zip.a
|
|
|
|
# library version
|
|
LIBABIVER := 1
|
|
|
|
# build flags
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
CFLAGS += -O3
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
CFLAGS += -I$(RTE_SDK)/drivers/compress/octeontx/include
|
|
|
|
# external library include paths
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
|
|
LDLIBS += -lrte_compressdev
|
|
LDLIBS += -lrte_pci -lrte_bus_pci
|
|
|
|
# library source files
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_ZIPVF) += otx_zip_pmd.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_ZIPVF) += otx_zip.c
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_pmd_octeontx_compress_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|