2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-09-07 15:06:58 +00:00
|
|
|
|
2020-06-29 12:37:39 +00:00
|
|
|
if is_windows
|
2021-04-20 10:22:20 +00:00
|
|
|
subdir_done()
|
2020-06-29 12:37:39 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-20 10:22:20 +00:00
|
|
|
drivers = [
|
2021-05-04 00:26:53 +00:00
|
|
|
'cnxk',
|
2021-04-20 10:22:20 +00:00
|
|
|
'dlb2',
|
|
|
|
'dpaa',
|
|
|
|
'dpaa2',
|
|
|
|
'dsw',
|
|
|
|
'opdl',
|
|
|
|
'skeleton',
|
|
|
|
'sw',
|
|
|
|
]
|
2019-04-18 11:49:00 +00:00
|
|
|
if not (toolchain == 'gcc' and cc.version().version_compare('<4.8.6') and
|
2021-04-20 10:22:20 +00:00
|
|
|
dpdk_conf.has('RTE_ARCH_ARM64'))
|
|
|
|
drivers += 'octeontx'
|
2019-04-18 11:49:00 +00:00
|
|
|
endif
|
2017-09-07 15:06:58 +00:00
|
|
|
std_deps = ['eventdev', 'kvargs']
|