event dpaa2 device support both ethernet as well as crypto queues to be attached to it. eth_rx_adapter provide infrastructure to attach ethernet queues and crypto_adapter provide support for crypto queues. This patch add support for dpaa2_eventdev to attach dpaa2_sec queues. Signed-off-by: Akhil Goyal <akhil.goyal@nxp.com> Signed-off-by: Ashish Jain <ashish.jain@nxp.com> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
15 lines
332 B
Meson
15 lines
332 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018 NXP
|
|
|
|
version = 2
|
|
|
|
if host_machine.system() != 'linux'
|
|
build = false
|
|
endif
|
|
deps += ['bus_vdev', 'pmd_dpaa2', 'pmd_dpaa2_sec']
|
|
sources = files('dpaa2_hw_dpcon.c',
|
|
'dpaa2_eventdev.c')
|
|
|
|
allow_experimental_apis = true
|
|
includes += include_directories('../../crypto/dpaa2_sec/')
|