Since AARCH32 extension is not implemented on octeontx family, only enable build for 64bit. Due to Linux kernel AF(Admin function) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Acked-by: Jerin Jacob <jerinj@marvell.com>
29 lines
766 B
Meson
29 lines
766 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Cavium, Inc
|
|
#
|
|
|
|
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
|
build = false
|
|
reason = 'only supported on 64-bit Linux'
|
|
subdir_done()
|
|
endif
|
|
|
|
deps += ['bus_pci']
|
|
deps += ['bus_vdev']
|
|
deps += ['common_cpt']
|
|
deps += ['eventdev']
|
|
|
|
sources = files(
|
|
'otx_cryptodev.c',
|
|
'otx_cryptodev_capabilities.c',
|
|
'otx_cryptodev_hw_access.c',
|
|
'otx_cryptodev_mbox.c',
|
|
'otx_cryptodev_ops.c',
|
|
)
|
|
|
|
includes += include_directories('../../common/cpt')
|
|
includes += include_directories('../../common/octeontx')
|
|
includes += include_directories('../../event/octeontx')
|
|
includes += include_directories('../../mempool/octeontx')
|
|
includes += include_directories('../../net/octeontx')
|