4d0d4cf327
Add the basic device probe and remove functions and initial documentation for new hisilicon DMA drivers. Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
20 lines
435 B
Meson
20 lines
435 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2021 HiSilicon Limited
|
|
|
|
if not is_linux
|
|
build = false
|
|
reason = 'only supported on Linux'
|
|
subdir_done()
|
|
endif
|
|
|
|
if (arch_subdir != 'x86' and arch_subdir != 'arm') or (not dpdk_conf.get('RTE_ARCH_64'))
|
|
build = false
|
|
reason = 'only supported on x86_64 and aarch64'
|
|
subdir_done()
|
|
endif
|
|
|
|
deps += ['bus_pci', 'dmadev']
|
|
sources = files(
|
|
'hisi_dmadev.c',
|
|
)
|