2019-06-25 11:12:58 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
if is_windows
|
2022-09-06 04:00:10 +00:00
|
|
|
subdir_done()
|
2021-02-05 08:48:47 +00:00
|
|
|
endif
|
|
|
|
|
2022-09-06 04:00:10 +00:00
|
|
|
drivers = [
|
|
|
|
'cnxk',
|
|
|
|
'dlb2',
|
|
|
|
'dpaa',
|
|
|
|
'dpaa2',
|
|
|
|
'dsw',
|
|
|
|
'octeontx2',
|
|
|
|
'opdl',
|
|
|
|
'skeleton',
|
|
|
|
'sw',
|
|
|
|
]
|
2019-06-26 10:17:41 +00:00
|
|
|
if not (toolchain == 'gcc' and cc.version().version_compare('<4.8.6') and
|
2022-09-06 04:00:10 +00:00
|
|
|
dpdk_conf.has('RTE_ARCH_ARM64'))
|
|
|
|
drivers += 'octeontx'
|
2019-06-26 10:17:41 +00:00
|
|
|
endif
|
2019-06-25 11:12:58 +00:00
|
|
|
std_deps = ['eventdev', 'kvargs']
|