9200ffa5cd
Add in the "info_get" function to the driver, to allow us to query the device. No processing capability are available yet. Linking bbdev-test to support the PMD with null capability. Signed-off-by: Nicolas Chautru <nicolas.chautru@intel.com> Acked-by: Liu Tianjiao <tianjiao.liu@intel.com> Acked-by: Maxime Coquelin <maxime.coquelin@redhat.com>
17 lines
478 B
Meson
17 lines
478 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
sources = files('main.c',
|
|
'test_bbdev.c',
|
|
'test_bbdev_perf.c',
|
|
'test_bbdev_vector.c')
|
|
deps += ['bbdev', 'bus_vdev']
|
|
if dpdk_conf.has('RTE_LIBRTE_PMD_BBDEV_FPGA_LTE_FEC')
|
|
deps += ['pmd_bbdev_fpga_lte_fec']
|
|
endif
|
|
if dpdk_conf.has('RTE_LIBRTE_PMD_BBDEV_FPGA_5GNR_FEC')
|
|
deps += ['pmd_bbdev_fpga_5gnr_fec']
|
|
endif
|
|
if dpdk_conf.has('RTE_LIBRTE_PMD_BBDEV_ACC100')
|
|
deps += ['pmd_bbdev_acc100']
|
|
endif |