a7c86884f1
Add a new PMD for Mellanox devices- crypto PMD. The crypto PMD will be supported starting Nvidia ConnectX6 and BlueField2. The crypto PMD will add the support of encryption and decryption using the AES-XTS symmetric algorithm. The crypto PMD requires rdma-core and uses mlx5 DevX. This patch adds the PCI probing, basic functions, build files and log utility. Signed-off-by: Shiri Kuzin <shirik@nvidia.com> Acked-by: Matan Azrad <matan@nvidia.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
33 lines
584 B
Meson
33 lines
584 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
if is_windows
|
|
subdir_done()
|
|
endif
|
|
|
|
drivers = [
|
|
'aesni_gcm',
|
|
'aesni_mb',
|
|
'armv8',
|
|
'bcmfs',
|
|
'caam_jr',
|
|
'ccp',
|
|
'cnxk',
|
|
'dpaa_sec',
|
|
'dpaa2_sec',
|
|
'kasumi',
|
|
'mlx5',
|
|
'mvsam',
|
|
'nitrox',
|
|
'null',
|
|
'octeontx',
|
|
'octeontx2',
|
|
'openssl',
|
|
'scheduler',
|
|
'snow3g',
|
|
'virtio',
|
|
'zuc',
|
|
]
|
|
|
|
std_deps = ['cryptodev'] # cryptodev pulls in all other needed deps
|