drivers: change indentation in build files

Switch from using tabs to 4 spaces for meson.build indentation.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Bruce Richardson 2021-04-20 11:22:25 +01:00 committed by Thomas Monjalon
parent cf995efc53
commit 4ad4b20a79
134 changed files with 1974 additions and 1872 deletions

View File

@ -6,34 +6,34 @@ path = get_option('flexran_sdk')
# check for FlexRAN SDK libraries for AVX2
lib4g = cc.find_library('libturbo', dirs: [path + '/lib_turbo'], required: false)
if lib4g.found()
ext_deps += cc.find_library('libturbo', dirs: [path + '/lib_turbo'], required: true)
ext_deps += cc.find_library('libcrc', dirs: [path + '/lib_crc'], required: true)
ext_deps += cc.find_library('librate_matching', dirs: [path + '/lib_rate_matching'], required: true)
ext_deps += cc.find_library('libcommon', dirs: [path + '/lib_common'], required: true)
ext_deps += cc.find_library('libstdc++', required: true)
ext_deps += cc.find_library('libirc', required: true)
ext_deps += cc.find_library('libimf', required: true)
ext_deps += cc.find_library('libipps', required: true)
ext_deps += cc.find_library('libsvml', required: true)
includes += include_directories(path + '/lib_turbo')
includes += include_directories(path + '/lib_crc')
includes += include_directories(path + '/lib_rate_matching')
includes += include_directories(path + '/lib_common')
cflags += ['-DRTE_BBDEV_SDK_AVX2']
ext_deps += cc.find_library('libturbo', dirs: [path + '/lib_turbo'], required: true)
ext_deps += cc.find_library('libcrc', dirs: [path + '/lib_crc'], required: true)
ext_deps += cc.find_library('librate_matching', dirs: [path + '/lib_rate_matching'], required: true)
ext_deps += cc.find_library('libcommon', dirs: [path + '/lib_common'], required: true)
ext_deps += cc.find_library('libstdc++', required: true)
ext_deps += cc.find_library('libirc', required: true)
ext_deps += cc.find_library('libimf', required: true)
ext_deps += cc.find_library('libipps', required: true)
ext_deps += cc.find_library('libsvml', required: true)
includes += include_directories(path + '/lib_turbo')
includes += include_directories(path + '/lib_crc')
includes += include_directories(path + '/lib_rate_matching')
includes += include_directories(path + '/lib_common')
cflags += ['-DRTE_BBDEV_SDK_AVX2']
endif
# check for FlexRAN SDK libraries for AVX512
lib5g = cc.find_library('libldpc_decoder_5gnr', dirs: [path + '/lib_ldpc_decoder_5gnr'], required: false)
if lib5g.found()
ext_deps += cc.find_library('libldpc_encoder_5gnr', dirs: [path + '/lib_ldpc_encoder_5gnr'], required: true)
ext_deps += cc.find_library('libldpc_decoder_5gnr', dirs: [path + '/lib_ldpc_decoder_5gnr'], required: true)
ext_deps += cc.find_library('libLDPC_ratematch_5gnr', dirs: [path + '/lib_LDPC_ratematch_5gnr'], required: true)
ext_deps += cc.find_library('librate_dematching_5gnr', dirs: [path + '/lib_rate_dematching_5gnr'], required: true)
includes += include_directories(path + '/lib_ldpc_encoder_5gnr')
includes += include_directories(path + '/lib_ldpc_decoder_5gnr')
includes += include_directories(path + '/lib_LDPC_ratematch_5gnr')
includes += include_directories(path + '/lib_rate_dematching_5gnr')
cflags += ['-DRTE_BBDEV_SDK_AVX512']
ext_deps += cc.find_library('libldpc_encoder_5gnr', dirs: [path + '/lib_ldpc_encoder_5gnr'], required: true)
ext_deps += cc.find_library('libldpc_decoder_5gnr', dirs: [path + '/lib_ldpc_decoder_5gnr'], required: true)
ext_deps += cc.find_library('libLDPC_ratematch_5gnr', dirs: [path + '/lib_LDPC_ratematch_5gnr'], required: true)
ext_deps += cc.find_library('librate_dematching_5gnr', dirs: [path + '/lib_rate_dematching_5gnr'], required: true)
includes += include_directories(path + '/lib_ldpc_encoder_5gnr')
includes += include_directories(path + '/lib_ldpc_decoder_5gnr')
includes += include_directories(path + '/lib_LDPC_ratematch_5gnr')
includes += include_directories(path + '/lib_rate_dematching_5gnr')
cflags += ['-DRTE_BBDEV_SDK_AVX512']
endif
deps += ['bbdev', 'bus_vdev', 'ring']

View File

@ -2,28 +2,30 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['common_dpaax', 'eventdev']
sources = files('base/fman/fman.c',
'base/fman/fman_hw.c',
'base/fman/netcfg_layer.c',
'base/qbman/bman.c',
'base/qbman/bman_driver.c',
'base/qbman/dpaa_alloc.c',
'base/qbman/dpaa_sys.c',
'base/qbman/process.c',
'base/qbman/qman.c',
'base/qbman/qman_driver.c',
'dpaa_bus.c')
sources = files(
'base/fman/fman.c',
'base/fman/fman_hw.c',
'base/fman/netcfg_layer.c',
'base/qbman/bman.c',
'base/qbman/bman_driver.c',
'base/qbman/dpaa_alloc.c',
'base/qbman/dpaa_sys.c',
'base/qbman/process.c',
'base/qbman/qman.c',
'base/qbman/qman_driver.c',
'dpaa_bus.c',
)
if cc.has_argument('-Wno-cast-qual')
cflags += '-Wno-cast-qual'
cflags += '-Wno-cast-qual'
endif
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
cflags += '-Wno-pointer-arith'
endif
includes += include_directories('include', 'base/qbman')

View File

@ -2,24 +2,26 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['common_dpaax', 'eventdev', 'kvargs']
sources = files('fslmc_bus.c',
'fslmc_vfio.c',
'mc/dpbp.c',
'mc/dpci.c',
'mc/dpcon.c',
'mc/dpdmai.c',
'mc/dpio.c',
'mc/dpmng.c',
'mc/mc_sys.c',
'portal/dpaa2_hw_dpbp.c',
'portal/dpaa2_hw_dpci.c',
'portal/dpaa2_hw_dpio.c',
'qbman/qbman_portal.c',
'qbman/qbman_debug.c')
sources = files(
'fslmc_bus.c',
'fslmc_vfio.c',
'mc/dpbp.c',
'mc/dpci.c',
'mc/dpcon.c',
'mc/dpdmai.c',
'mc/dpio.c',
'mc/dpmng.c',
'mc/mc_sys.c',
'portal/dpaa2_hw_dpbp.c',
'portal/dpaa2_hw_dpci.c',
'portal/dpaa2_hw_dpio.c',
'qbman/qbman_portal.c',
'qbman/qbman_debug.c'
)
includes += include_directories('mc', 'qbman/include', 'portal')

View File

@ -2,9 +2,9 @@
# Copyright(c) 2010-2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
deps += ['pci', 'kvargs', 'rawdev']

View File

@ -4,23 +4,29 @@
deps += ['pci']
headers = files('rte_bus_pci.h')
sources = files('pci_common.c',
'pci_params.c')
'pci_params.c')
if is_linux
sources += files('pci_common_uio.c',
'linux/pci.c',
'linux/pci_uio.c',
'linux/pci_vfio.c')
includes += include_directories('linux')
sources += files(
'pci_common_uio.c',
'linux/pci.c',
'linux/pci_uio.c',
'linux/pci_vfio.c',
)
includes += include_directories('linux')
endif
if is_freebsd
sources += files('pci_common_uio.c',
'bsd/pci.c')
includes += include_directories('bsd')
sources += files(
'pci_common_uio.c',
'bsd/pci.c',
)
includes += include_directories('bsd')
endif
if is_windows
sources += files('windows/pci.c',
'windows/pci_netuio.c')
includes += include_directories('windows')
sources += files(
'windows/pci.c',
'windows/pci_netuio.c',
)
includes += include_directories('windows')
endif
deps += ['kvargs']

View File

@ -1,8 +1,10 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
sources = files('vdev.c',
'vdev_params.c')
sources = files(
'vdev.c',
'vdev_params.c',
)
headers = files('rte_bus_vdev.h')
deps += ['kvargs']

View File

@ -1,24 +1,26 @@
# SPDX-License-Identifier: BSD-3-Clause
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
headers = files('rte_bus_vmbus.h','rte_vmbus_reg.h')
sources = files('vmbus_common.c',
'vmbus_channel.c',
'vmbus_bufring.c',
'vmbus_common_uio.c')
sources = files(
'vmbus_bufring.c',
'vmbus_channel.c',
'vmbus_common.c',
'vmbus_common_uio.c',
)
if is_linux
sources += files('linux/vmbus_bus.c',
'linux/vmbus_uio.c')
includes += include_directories('linux')
sources += files('linux/vmbus_bus.c',
'linux/vmbus_uio.c')
includes += include_directories('linux')
else
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif

View File

@ -3,46 +3,48 @@
#
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
endif
config_flag_fmt = 'RTE_LIBRTE_@0@_COMMON'
deps = ['eal', 'pci', 'bus_pci', 'mbuf']
sources = files('roc_dev.c',
'roc_idev.c',
'roc_irq.c',
'roc_mbox.c',
'roc_model.c',
'roc_nix.c',
'roc_nix_debug.c',
'roc_nix_fc.c',
'roc_nix_irq.c',
'roc_nix_mac.c',
'roc_nix_mcast.c',
'roc_nix_npc.c',
'roc_nix_ops.c',
'roc_nix_ptp.c',
'roc_nix_queue.c',
'roc_nix_rss.c',
'roc_nix_stats.c',
'roc_nix_tm.c',
'roc_nix_tm_ops.c',
'roc_nix_tm_utils.c',
'roc_nix_vlan.c',
'roc_npa.c',
'roc_npa_debug.c',
'roc_npa_irq.c',
'roc_npc.c',
'roc_npc_mcam.c',
'roc_npc_parse.c',
'roc_npc_utils.c',
'roc_platform.c',
'roc_sso.c',
'roc_sso_debug.c',
'roc_sso_irq.c',
'roc_tim.c',
'roc_tim_irq.c',
'roc_utils.c')
sources = files(
'roc_dev.c',
'roc_idev.c',
'roc_irq.c',
'roc_mbox.c',
'roc_model.c',
'roc_nix.c',
'roc_nix_debug.c',
'roc_nix_fc.c',
'roc_nix_irq.c',
'roc_nix_mac.c',
'roc_nix_mcast.c',
'roc_nix_npc.c',
'roc_nix_ops.c',
'roc_nix_ptp.c',
'roc_nix_queue.c',
'roc_nix_rss.c',
'roc_nix_stats.c',
'roc_nix_tm.c',
'roc_nix_tm_ops.c',
'roc_nix_tm_utils.c',
'roc_nix_vlan.c',
'roc_npa.c',
'roc_npa_debug.c',
'roc_npa_irq.c',
'roc_npc.c',
'roc_npc_mcam.c',
'roc_npc_parse.c',
'roc_npc_utils.c',
'roc_platform.c',
'roc_sso.c',
'roc_sso_debug.c',
'roc_sso_irq.c',
'roc_tim.c',
'roc_tim_irq.c',
'roc_utils.c',
)
includes += include_directories('../../bus/pci')

View File

@ -2,13 +2,12 @@
# Copyright(c) 2018 Cavium, Inc
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('cpt_fpm_tables.c',
'cpt_pmd_ops_helper.c')
sources = files('cpt_fpm_tables.c', 'cpt_pmd_ops_helper.c')
deps = ['kvargs', 'pci', 'cryptodev']
includes += include_directories('../../crypto/octeontx')

View File

@ -2,8 +2,8 @@
# Copyright(c) 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
sources = files('dpaax_iova_table.c', 'dpaa_of.c', 'caamflib.c')
@ -11,8 +11,8 @@ sources = files('dpaax_iova_table.c', 'dpaa_of.c', 'caamflib.c')
includes += include_directories('caamflib')
if cc.has_argument('-Wno-cast-qual')
cflags += '-Wno-cast-qual'
cflags += '-Wno-cast-qual'
endif
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
cflags += '-Wno-pointer-arith'
endif

View File

@ -9,48 +9,47 @@ LIB_GLUE_BASE = 'librte_common_mlx5_glue.so'
LIB_GLUE_VERSION = abi_version
LIB_GLUE = LIB_GLUE_BASE + '.' + LIB_GLUE_VERSION
if dlopen_ibverbs
dpdk_conf.set('RTE_IBVERBS_LINK_DLOPEN', 1)
cflags += [
'-DMLX5_GLUE="@0@"'.format(LIB_GLUE),
'-DMLX5_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
dpdk_conf.set('RTE_IBVERBS_LINK_DLOPEN', 1)
cflags += [
'-DMLX5_GLUE="@0@"'.format(LIB_GLUE),
'-DMLX5_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
endif
libnames = [ 'mlx5', 'ibverbs' ]
libs = []
foreach libname:libnames
lib = dependency('lib' + libname, static:static_ibverbs,
required:false, method: 'pkg-config')
if not lib.found() and not static_ibverbs
lib = cc.find_library(libname, required:false)
endif
if lib.found()
libs += lib
if not static_ibverbs and not dlopen_ibverbs
ext_deps += lib
endif
else
build = false
reason = 'missing dependency, "' + libname + '"'
subdir_done()
endif
lib = dependency('lib' + libname, static:static_ibverbs, required:false, method: 'pkg-config')
if not lib.found() and not static_ibverbs
lib = cc.find_library(libname, required:false)
endif
if lib.found()
libs += lib
if not static_ibverbs and not dlopen_ibverbs
ext_deps += lib
endif
else
build = false
reason = 'missing dependency, "' + libname + '"'
subdir_done()
endif
endforeach
if static_ibverbs or dlopen_ibverbs
# Build without adding shared libs to Requires.private
ibv_cflags = run_command(pkgconf, '--cflags', 'libibverbs').stdout()
ext_deps += declare_dependency(compile_args: ibv_cflags.split())
# Build without adding shared libs to Requires.private
ibv_cflags = run_command(pkgconf, '--cflags', 'libibverbs').stdout()
ext_deps += declare_dependency(compile_args: ibv_cflags.split())
endif
if static_ibverbs
# Add static deps ldflags to internal apps and Libs.private
ibv_ldflags = run_command(ldflags_ibverbs_static, check:true).stdout()
ext_deps += declare_dependency(link_args:ibv_ldflags.split())
# Add static deps ldflags to internal apps and Libs.private
ibv_ldflags = run_command(ldflags_ibverbs_static, check:true).stdout()
ext_deps += declare_dependency(link_args:ibv_ldflags.split())
endif
sources += files('mlx5_nl.c')
sources += files('mlx5_common_os.c')
sources += files('mlx5_common_verbs.c')
if not dlopen_ibverbs
sources += files('mlx5_glue.c')
sources += files('mlx5_glue.c')
endif
# To maintain the compatibility with the make build system
@ -59,171 +58,167 @@ endif
# [ "MACRO to define if found", "header for the search",
# "symbol to search", "struct member to search" ]
has_member_args = [
[ 'HAVE_IBV_MLX5_MOD_SWP', 'infiniband/mlx5dv.h',
'struct mlx5dv_sw_parsing_caps', 'sw_parsing_offloads' ],
[ 'HAVE_IBV_DEVICE_COUNTERS_SET_V42', 'infiniband/verbs.h',
'struct ibv_counter_set_init_attr', 'counter_set_id' ],
[ 'HAVE_IBV_DEVICE_COUNTERS_SET_V45', 'infiniband/verbs.h',
'struct ibv_counters_init_attr', 'comp_mask' ],
[ 'HAVE_MLX5DV_DEVX_UAR_OFFSET', 'infiniband/mlx5dv.h',
'struct mlx5dv_devx_uar', 'mmap_off' ],
[ 'HAVE_IBV_MLX5_MOD_SWP', 'infiniband/mlx5dv.h',
'struct mlx5dv_sw_parsing_caps', 'sw_parsing_offloads' ],
[ 'HAVE_IBV_DEVICE_COUNTERS_SET_V42', 'infiniband/verbs.h',
'struct ibv_counter_set_init_attr', 'counter_set_id' ],
[ 'HAVE_IBV_DEVICE_COUNTERS_SET_V45', 'infiniband/verbs.h',
'struct ibv_counters_init_attr', 'comp_mask' ],
[ 'HAVE_MLX5DV_DEVX_UAR_OFFSET', 'infiniband/mlx5dv.h',
'struct mlx5dv_devx_uar', 'mmap_off' ],
]
# input array for meson symbol search:
# [ "MACRO to define if found", "header for the search",
# "symbol to search" ]
has_sym_args = [
[ 'HAVE_IBV_RELAXED_ORDERING', 'infiniband/verbs.h',
'IBV_ACCESS_RELAXED_ORDERING ' ],
[ 'HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT', 'infiniband/mlx5dv.h',
'MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX' ],
[ 'HAVE_IBV_DEVICE_TUNNEL_SUPPORT', 'infiniband/mlx5dv.h',
'MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS' ],
[ 'HAVE_IBV_MLX5_MOD_MPW', 'infiniband/mlx5dv.h',
'MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED' ],
[ 'HAVE_IBV_MLX5_MOD_CQE_128B_COMP', 'infiniband/mlx5dv.h',
'MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP' ],
[ 'HAVE_IBV_MLX5_MOD_CQE_128B_PAD', 'infiniband/mlx5dv.h',
'MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD' ],
[ 'HAVE_IBV_FLOW_DV_SUPPORT', 'infiniband/mlx5dv.h',
'mlx5dv_create_flow_action_packet_reformat' ],
[ 'HAVE_IBV_DEVICE_MPLS_SUPPORT', 'infiniband/verbs.h',
'IBV_FLOW_SPEC_MPLS' ],
[ 'HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING', 'infiniband/verbs.h',
'IBV_WQ_FLAGS_PCI_WRITE_END_PADDING' ],
[ 'HAVE_IBV_WQ_FLAG_RX_END_PADDING', 'infiniband/verbs.h',
'IBV_WQ_FLAG_RX_END_PADDING' ],
[ 'HAVE_MLX5DV_DR_DEVX_PORT', 'infiniband/mlx5dv.h',
'mlx5dv_query_devx_port' ],
[ 'HAVE_IBV_DEVX_OBJ', 'infiniband/mlx5dv.h',
'mlx5dv_devx_obj_create' ],
[ 'HAVE_IBV_FLOW_DEVX_COUNTERS', 'infiniband/mlx5dv.h',
'MLX5DV_FLOW_ACTION_COUNTERS_DEVX' ],
[ 'HAVE_MLX5_DR_CREATE_ACTION_DEFAULT_MISS', 'infiniband/mlx5dv.h',
'MLX5DV_FLOW_ACTION_DEFAULT_MISS' ],
[ 'HAVE_IBV_DEVX_ASYNC', 'infiniband/mlx5dv.h',
'mlx5dv_devx_obj_query_async' ],
[ 'HAVE_IBV_DEVX_QP', 'infiniband/mlx5dv.h',
'mlx5dv_devx_qp_query' ],
[ 'HAVE_MLX5DV_PP_ALLOC', 'infiniband/mlx5dv.h',
'mlx5dv_pp_alloc' ],
[ 'HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_dest_devx_tir' ],
[ 'HAVE_IBV_DEVX_EVENT', 'infiniband/mlx5dv.h',
'mlx5dv_devx_get_event' ],
[ 'HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_flow_meter' ],
[ 'HAVE_MLX5DV_MMAP_GET_NC_PAGES_CMD', 'infiniband/mlx5dv.h',
'MLX5_MMAP_GET_NC_PAGES_CMD' ],
[ 'HAVE_MLX5DV_DR', 'infiniband/mlx5dv.h',
'MLX5DV_DR_DOMAIN_TYPE_NIC_RX' ],
[ 'HAVE_MLX5DV_DR_ESWITCH', 'infiniband/mlx5dv.h',
'MLX5DV_DR_DOMAIN_TYPE_FDB' ],
[ 'HAVE_MLX5DV_DR_VLAN', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_push_vlan' ],
[ 'HAVE_IBV_VAR', 'infiniband/mlx5dv.h', 'mlx5dv_alloc_var' ],
[ 'HAVE_MLX5_OPCODE_ENHANCED_MPSW', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_ENHANCED_MPSW' ],
[ 'HAVE_MLX5_OPCODE_SEND_EN', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_SEND_EN' ],
[ 'HAVE_MLX5_OPCODE_WAIT', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_WAIT' ],
[ 'HAVE_IBV_RELAXED_ORDERING', 'infiniband/verbs.h',
'IBV_ACCESS_RELAXED_ORDERING ' ],
[ 'HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT', 'infiniband/mlx5dv.h',
'MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX' ],
[ 'HAVE_IBV_DEVICE_TUNNEL_SUPPORT', 'infiniband/mlx5dv.h',
'MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS' ],
[ 'HAVE_IBV_MLX5_MOD_MPW', 'infiniband/mlx5dv.h',
'MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED' ],
[ 'HAVE_IBV_MLX5_MOD_CQE_128B_COMP', 'infiniband/mlx5dv.h',
'MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP' ],
[ 'HAVE_IBV_MLX5_MOD_CQE_128B_PAD', 'infiniband/mlx5dv.h',
'MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD' ],
[ 'HAVE_IBV_FLOW_DV_SUPPORT', 'infiniband/mlx5dv.h',
'mlx5dv_create_flow_action_packet_reformat' ],
[ 'HAVE_IBV_DEVICE_MPLS_SUPPORT', 'infiniband/verbs.h',
'IBV_FLOW_SPEC_MPLS' ],
[ 'HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING', 'infiniband/verbs.h',
'IBV_WQ_FLAGS_PCI_WRITE_END_PADDING' ],
[ 'HAVE_IBV_WQ_FLAG_RX_END_PADDING', 'infiniband/verbs.h',
'IBV_WQ_FLAG_RX_END_PADDING' ],
[ 'HAVE_MLX5DV_DR_DEVX_PORT', 'infiniband/mlx5dv.h',
'mlx5dv_query_devx_port' ],
[ 'HAVE_IBV_DEVX_OBJ', 'infiniband/mlx5dv.h',
'mlx5dv_devx_obj_create' ],
[ 'HAVE_IBV_FLOW_DEVX_COUNTERS', 'infiniband/mlx5dv.h',
'MLX5DV_FLOW_ACTION_COUNTERS_DEVX' ],
[ 'HAVE_MLX5_DR_CREATE_ACTION_DEFAULT_MISS', 'infiniband/mlx5dv.h',
'MLX5DV_FLOW_ACTION_DEFAULT_MISS' ],
[ 'HAVE_IBV_DEVX_ASYNC', 'infiniband/mlx5dv.h',
'mlx5dv_devx_obj_query_async' ],
[ 'HAVE_IBV_DEVX_QP', 'infiniband/mlx5dv.h',
'mlx5dv_devx_qp_query' ],
[ 'HAVE_MLX5DV_PP_ALLOC', 'infiniband/mlx5dv.h',
'mlx5dv_pp_alloc' ],
[ 'HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_dest_devx_tir' ],
[ 'HAVE_IBV_DEVX_EVENT', 'infiniband/mlx5dv.h',
'mlx5dv_devx_get_event' ],
[ 'HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_flow_meter' ],
[ 'HAVE_MLX5DV_MMAP_GET_NC_PAGES_CMD', 'infiniband/mlx5dv.h',
'MLX5_MMAP_GET_NC_PAGES_CMD' ],
[ 'HAVE_MLX5DV_DR', 'infiniband/mlx5dv.h',
'MLX5DV_DR_DOMAIN_TYPE_NIC_RX' ],
[ 'HAVE_MLX5DV_DR_ESWITCH', 'infiniband/mlx5dv.h',
'MLX5DV_DR_DOMAIN_TYPE_FDB' ],
[ 'HAVE_MLX5DV_DR_VLAN', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_push_vlan' ],
[ 'HAVE_IBV_VAR', 'infiniband/mlx5dv.h', 'mlx5dv_alloc_var' ],
[ 'HAVE_MLX5_OPCODE_ENHANCED_MPSW', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_ENHANCED_MPSW' ],
[ 'HAVE_MLX5_OPCODE_SEND_EN', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_SEND_EN' ],
[ 'HAVE_MLX5_OPCODE_WAIT', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_WAIT' ],
[ 'HAVE_MLX5_OPCODE_ACCESS_ASO', 'infiniband/mlx5dv.h',
'MLX5_OPCODE_ACCESS_ASO' ],
[ 'HAVE_SUPPORTED_40000baseKR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseKR4_Full' ],
[ 'HAVE_SUPPORTED_40000baseCR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseCR4_Full' ],
[ 'HAVE_SUPPORTED_40000baseSR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseSR4_Full' ],
[ 'HAVE_SUPPORTED_40000baseLR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseLR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseKR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseKR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseCR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseCR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseSR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseSR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseLR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseLR4_Full' ],
[ 'HAVE_ETHTOOL_LINK_MODE_25G', 'linux/ethtool.h',
'ETHTOOL_LINK_MODE_25000baseCR_Full_BIT' ],
[ 'HAVE_ETHTOOL_LINK_MODE_50G', 'linux/ethtool.h',
'ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT' ],
[ 'HAVE_ETHTOOL_LINK_MODE_100G', 'linux/ethtool.h',
'ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT' ],
[ 'HAVE_IFLA_NUM_VF', 'linux/if_link.h',
'IFLA_NUM_VF' ],
[ 'HAVE_IFLA_EXT_MASK', 'linux/if_link.h',
'IFLA_EXT_MASK' ],
[ 'HAVE_IFLA_PHYS_SWITCH_ID', 'linux/if_link.h',
'IFLA_PHYS_SWITCH_ID' ],
[ 'HAVE_IFLA_PHYS_PORT_NAME', 'linux/if_link.h',
'IFLA_PHYS_PORT_NAME' ],
[ 'HAVE_RDMA_NL_NLDEV', 'rdma/rdma_netlink.h',
'RDMA_NL_NLDEV' ],
[ 'HAVE_RDMA_NLDEV_CMD_GET', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_CMD_GET' ],
[ 'HAVE_RDMA_NLDEV_CMD_PORT_GET', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_CMD_PORT_GET' ],
[ 'HAVE_RDMA_NLDEV_ATTR_DEV_INDEX', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_DEV_INDEX' ],
[ 'HAVE_RDMA_NLDEV_ATTR_DEV_NAME', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_DEV_NAME' ],
[ 'HAVE_RDMA_NLDEV_ATTR_PORT_INDEX', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_PORT_INDEX' ],
[ 'HAVE_RDMA_NLDEV_ATTR_NDEV_INDEX', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_NDEV_INDEX' ],
[ 'HAVE_MLX5_DR_FLOW_DUMP', 'infiniband/mlx5dv.h',
'mlx5dv_dump_dr_domain'],
[ 'HAVE_MLX5_DR_CREATE_ACTION_FLOW_SAMPLE', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_flow_sampler'],
[ 'HAVE_MLX5DV_DR_MEM_RECLAIM', 'infiniband/mlx5dv.h',
'mlx5dv_dr_domain_set_reclaim_device_memory'],
[ 'HAVE_MLX5_DR_CREATE_ACTION_DEST_ARRAY', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_dest_array'],
[ 'HAVE_DEVLINK', 'linux/devlink.h', 'DEVLINK_GENL_NAME' ],
[ 'HAVE_MLX5_DR_CREATE_ACTION_ASO', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_aso' ],
[ 'HAVE_INFINIBAND_VERBS_H', 'infiniband/verbs.h',
'INFINIBAND_VERBS_H' ],
'MLX5_OPCODE_ACCESS_ASO' ],
[ 'HAVE_SUPPORTED_40000baseKR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseKR4_Full' ],
[ 'HAVE_SUPPORTED_40000baseCR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseCR4_Full' ],
[ 'HAVE_SUPPORTED_40000baseSR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseSR4_Full' ],
[ 'HAVE_SUPPORTED_40000baseLR4_Full', 'linux/ethtool.h',
'SUPPORTED_40000baseLR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseKR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseKR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseCR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseCR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseSR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseSR4_Full' ],
[ 'HAVE_SUPPORTED_56000baseLR4_Full', 'linux/ethtool.h',
'SUPPORTED_56000baseLR4_Full' ],
[ 'HAVE_ETHTOOL_LINK_MODE_25G', 'linux/ethtool.h',
'ETHTOOL_LINK_MODE_25000baseCR_Full_BIT' ],
[ 'HAVE_ETHTOOL_LINK_MODE_50G', 'linux/ethtool.h',
'ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT' ],
[ 'HAVE_ETHTOOL_LINK_MODE_100G', 'linux/ethtool.h',
'ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT' ],
[ 'HAVE_IFLA_NUM_VF', 'linux/if_link.h',
'IFLA_NUM_VF' ],
[ 'HAVE_IFLA_EXT_MASK', 'linux/if_link.h',
'IFLA_EXT_MASK' ],
[ 'HAVE_IFLA_PHYS_SWITCH_ID', 'linux/if_link.h',
'IFLA_PHYS_SWITCH_ID' ],
[ 'HAVE_IFLA_PHYS_PORT_NAME', 'linux/if_link.h',
'IFLA_PHYS_PORT_NAME' ],
[ 'HAVE_RDMA_NL_NLDEV', 'rdma/rdma_netlink.h',
'RDMA_NL_NLDEV' ],
[ 'HAVE_RDMA_NLDEV_CMD_GET', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_CMD_GET' ],
[ 'HAVE_RDMA_NLDEV_CMD_PORT_GET', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_CMD_PORT_GET' ],
[ 'HAVE_RDMA_NLDEV_ATTR_DEV_INDEX', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_DEV_INDEX' ],
[ 'HAVE_RDMA_NLDEV_ATTR_DEV_NAME', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_DEV_NAME' ],
[ 'HAVE_RDMA_NLDEV_ATTR_PORT_INDEX', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_PORT_INDEX' ],
[ 'HAVE_RDMA_NLDEV_ATTR_NDEV_INDEX', 'rdma/rdma_netlink.h',
'RDMA_NLDEV_ATTR_NDEV_INDEX' ],
[ 'HAVE_MLX5_DR_FLOW_DUMP', 'infiniband/mlx5dv.h',
'mlx5dv_dump_dr_domain'],
[ 'HAVE_MLX5_DR_CREATE_ACTION_FLOW_SAMPLE', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_flow_sampler'],
[ 'HAVE_MLX5DV_DR_MEM_RECLAIM', 'infiniband/mlx5dv.h',
'mlx5dv_dr_domain_set_reclaim_device_memory'],
[ 'HAVE_MLX5_DR_CREATE_ACTION_DEST_ARRAY', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_dest_array'],
[ 'HAVE_DEVLINK', 'linux/devlink.h', 'DEVLINK_GENL_NAME' ],
[ 'HAVE_MLX5_DR_CREATE_ACTION_ASO', 'infiniband/mlx5dv.h',
'mlx5dv_dr_action_create_aso' ],
[ 'HAVE_INFINIBAND_VERBS_H', 'infiniband/verbs.h',
'INFINIBAND_VERBS_H' ],
[ 'HAVE_MLX5_UMR_IMKEY', 'infiniband/mlx5dv.h',
'MLX5_WQE_UMR_CTRL_FLAG_INLINE' ],
'MLX5_WQE_UMR_CTRL_FLAG_INLINE' ],
]
config = configuration_data()
foreach arg:has_sym_args
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2],
dependencies: libs))
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2], dependencies: libs))
endforeach
foreach arg:has_member_args
file_prefix = '#include <' + arg[1] + '>'
config.set(arg[0], cc.has_member(arg[2], arg[3],
prefix : file_prefix, dependencies: libs))
file_prefix = '#include <' + arg[1] + '>'
config.set(arg[0], cc.has_member(arg[2], arg[3], prefix : file_prefix, dependencies: libs))
endforeach
configure_file(output : 'mlx5_autoconf.h', configuration : config)
# Build Glue Library
if dlopen_ibverbs
dlopen_name = 'mlx5_glue'
dlopen_lib_name = 'rte_common_' + dlopen_name
dlopen_so_version = LIB_GLUE_VERSION
dlopen_sources = files('mlx5_glue.c')
dlopen_install_dir = [ eal_pmd_path + '-glue' ]
dlopen_includes = [global_inc]
dlopen_includes += include_directories(
'../../../../lib/librte_eal/include/generic',
)
shared_lib = shared_library(
dlopen_lib_name,
dlopen_sources,
include_directories: dlopen_includes,
c_args: cflags,
dependencies: libs,
link_args: [
'-Wl,-export-dynamic',
'-Wl,-h,@0@'.format(LIB_GLUE),
],
soversion: dlopen_so_version,
install: true,
install_dir: dlopen_install_dir,
)
dlopen_name = 'mlx5_glue'
dlopen_lib_name = 'rte_common_' + dlopen_name
dlopen_so_version = LIB_GLUE_VERSION
dlopen_sources = files('mlx5_glue.c')
dlopen_install_dir = [ eal_pmd_path + '-glue' ]
dlopen_includes = [global_inc]
dlopen_includes += include_directories('../../../../lib/librte_eal/include/generic')
shared_lib = shared_library(
dlopen_lib_name,
dlopen_sources,
include_directories: dlopen_includes,
c_args: cflags,
dependencies: libs,
link_args: [
'-Wl,-export-dynamic',
'-Wl,-h,@0@'.format(LIB_GLUE),
],
soversion: dlopen_so_version,
install: true,
install_dir: dlopen_install_dir,
)
endif

View File

@ -2,38 +2,38 @@
# Copyright 2019 Mellanox Technologies, Ltd
if not (is_linux or (is_windows and is_ms_linker))
build = false
reason = 'only supported on Linux and Windows build with clang'
subdir_done()
build = false
reason = 'only supported on Linux and Windows build with clang'
subdir_done()
endif
deps += ['hash', 'pci', 'bus_pci', 'net', 'eal', 'kvargs']
sources += files(
'mlx5_devx_cmds.c',
'mlx5_common.c',
'mlx5_common_mp.c',
'mlx5_common_mr.c',
'mlx5_malloc.c',
'mlx5_common_pci.c',
'mlx5_common_devx.c',
'mlx5_devx_cmds.c',
'mlx5_common.c',
'mlx5_common_mp.c',
'mlx5_common_mr.c',
'mlx5_malloc.c',
'mlx5_common_pci.c',
'mlx5_common_devx.c',
)
cflags_options = [
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
]
foreach option:cflags_options
if cc.has_argument(option)
cflags += option
endif
if cc.has_argument(option)
cflags += option
endif
endforeach
if get_option('buildtype').contains('debug')
cflags += [ '-pedantic', '-DPEDANTIC' ]
cflags += [ '-pedantic', '-DPEDANTIC' ]
else
cflags += [ '-UPEDANTIC' ]
cflags += [ '-UPEDANTIC' ]
endif
subdir(exec_env)

View File

@ -4,17 +4,17 @@
includes += include_directories('.')
sources += files(
'mlx5_glue.c',
'mlx5_common_os.c',
'mlx5_glue.c',
'mlx5_common_os.c',
)
res_lib = run_command(python3, '-c', 'import os; print(os.environ["DEVX_LIB_PATH"])')
res_inc = run_command(python3, '-c', 'import os; print(os.environ["DEVX_INC_PATH"])')
if (res_lib.returncode() != 0 or res_inc.returncode() != 0)
build = false
reason = 'DevX environment variables are not set, DEVX_LIB_PATH and DEVX_INC_PATH vars must be exported'
subdir_done()
build = false
reason = 'DevX environment variables are not set, DEVX_LIB_PATH and DEVX_INC_PATH vars must be exported'
subdir_done()
endif
devx_lib_dir = res_lib.stdout().strip()
@ -23,21 +23,21 @@ devx_inc_dir = res_inc.stdout().strip()
ext_deps += cc.find_library('mlx5devx', dirs: devx_lib_dir, required: true)
includes += include_directories(devx_inc_dir)
cflags_options = [
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600',
]
foreach option:cflags_options
if cc.has_argument(option)
cflags += option
endif
if cc.has_argument(option)
cflags += option
endif
endforeach
if get_option('buildtype').contains('debug')
cflags += [ '-pedantic', '-DPEDANTIC' ]
cflags += [ '-pedantic', '-DPEDANTIC' ]
else
cflags += [ '-UPEDANTIC' ]
cflags += [ '-UPEDANTIC' ]
endif
# Generate an empty mlx5_autoconf.h file for compatibility with Linux

View File

@ -5,16 +5,16 @@
#
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
dep = dependency('libmusdk', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
endif
ext_deps += dep

View File

@ -3,9 +3,9 @@
#
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('octeontx_mbox.c')

View File

@ -3,24 +3,28 @@
#
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
if not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit'
subdir_done()
build = false
reason = 'only supported on 64-bit'
subdir_done()
endif
sources= files('otx2_dev.c',
'otx2_irq.c',
'otx2_mbox.c',
'otx2_common.c',
'otx2_sec_idev.c',
)
sources= files(
'otx2_common.c',
'otx2_dev.c',
'otx2_irq.c',
'otx2_mbox.c',
'otx2_sec_idev.c',
)
deps = ['eal', 'pci', 'ethdev', 'kvargs']
includes += include_directories('../../common/octeontx2',
'../../mempool/octeontx2', '../../bus/pci')
includes += include_directories(
'../../common/octeontx2',
'../../mempool/octeontx2',
'../../bus/pci',
)

View File

@ -2,9 +2,9 @@
# Copyright(c) 2017-2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
qat_crypto = true
@ -15,55 +15,59 @@ qat_compress_path = 'compress/qat'
qat_compress_relpath = '../../' + qat_compress_path
if disable_drivers.contains(qat_crypto_path)
qat_crypto = false
dpdk_drvs_disabled += qat_crypto_path
set_variable(qat_crypto_path.underscorify() + '_disable_reason',
'Explicitly disabled via build config')
qat_crypto = false
dpdk_drvs_disabled += qat_crypto_path
set_variable(qat_crypto_path.underscorify() + '_disable_reason',
'Explicitly disabled via build config')
endif
if disable_drivers.contains(qat_compress_path)
qat_compress = false
dpdk_drvs_disabled += qat_compress_path
set_variable(qat_compress_path.underscorify() + '_disable_reason',
'Explicitly disabled via build config')
qat_compress = false
dpdk_drvs_disabled += qat_compress_path
set_variable(qat_compress_path.underscorify() + '_disable_reason',
'Explicitly disabled via build config')
endif
libcrypto = dependency('libcrypto', required: false, method: 'pkg-config')
if qat_crypto and not libcrypto.found()
qat_crypto = false
dpdk_drvs_disabled += qat_crypto_path
set_variable(qat_crypto_path.underscorify() + '_disable_reason',
'missing dependency, libcrypto')
qat_crypto = false
dpdk_drvs_disabled += qat_crypto_path
set_variable(qat_crypto_path.underscorify() + '_disable_reason',
'missing dependency, libcrypto')
endif
# The driver should not build if both compression and crypto are disabled
#FIXME common code depends on compression files so check only compress!
if not qat_compress # and not qat_crypto
build = false
reason = '' # rely on reason for compress/crypto above
subdir_done()
build = false
reason = '' # rely on reason for compress/crypto above
subdir_done()
endif
deps += ['bus_pci', 'cryptodev', 'net', 'compressdev']
sources += files('qat_common.c',
'qat_qp.c',
'qat_device.c',
'qat_logs.c')
includes += include_directories('qat_adf',
qat_crypto_relpath,
qat_compress_relpath)
sources += files(
'qat_common.c',
'qat_qp.c',
'qat_device.c',
'qat_logs.c',
)
includes += include_directories(
'qat_adf',
qat_crypto_relpath,
qat_compress_relpath,
)
if qat_compress
foreach f: ['qat_comp_pmd.c', 'qat_comp.c']
sources += files(join_paths(qat_compress_relpath, f))
endforeach
foreach f: ['qat_comp_pmd.c', 'qat_comp.c']
sources += files(join_paths(qat_compress_relpath, f))
endforeach
endif
if qat_crypto
foreach f: ['qat_sym_pmd.c', 'qat_sym.c', 'qat_sym_session.c',
'qat_sym_hw_dp.c', 'qat_asym_pmd.c', 'qat_asym.c']
sources += files(join_paths(qat_crypto_relpath, f))
endforeach
deps += ['security']
ext_deps += libcrypto
cflags += ['-DBUILD_QAT_SYM', '-DBUILD_QAT_ASYM']
foreach f: ['qat_sym_pmd.c', 'qat_sym.c', 'qat_sym_session.c',
'qat_sym_hw_dp.c', 'qat_asym_pmd.c', 'qat_asym.c']
sources += files(join_paths(qat_crypto_relpath, f))
endforeach
deps += ['security']
ext_deps += libcrypto
cflags += ['-DBUILD_QAT_SYM', '-DBUILD_QAT_ASYM']
endif

View File

@ -6,87 +6,87 @@
# for Solarflare) and Solarflare Communications, Inc.
sources = [
'efx_bootcfg.c',
'efx_crc32.c',
'efx_ev.c',
'efx_evb.c',
'efx_filter.c',
'efx_hash.c',
'efx_intr.c',
'efx_lic.c',
'efx_mac.c',
'efx_mae.c',
'efx_mcdi.c',
'efx_mon.c',
'efx_nic.c',
'efx_nvram.c',
'efx_pci.c',
'efx_phy.c',
'efx_port.c',
'efx_proxy.c',
'efx_rx.c',
'efx_sram.c',
'efx_tunnel.c',
'efx_tx.c',
'efx_vpd.c',
'efx_virtio.c',
'mcdi_mon.c',
'siena_mac.c',
'siena_mcdi.c',
'siena_nic.c',
'siena_nvram.c',
'siena_phy.c',
'siena_sram.c',
'siena_vpd.c',
'ef10_ev.c',
'ef10_evb.c',
'ef10_filter.c',
'ef10_image.c',
'ef10_intr.c',
'ef10_mac.c',
'ef10_mcdi.c',
'ef10_nic.c',
'ef10_nvram.c',
'ef10_phy.c',
'ef10_proxy.c',
'ef10_rx.c',
'ef10_tx.c',
'ef10_vpd.c',
'hunt_nic.c',
'medford_nic.c',
'medford2_nic.c',
'rhead_ev.c',
'rhead_intr.c',
'rhead_nic.c',
'rhead_pci.c',
'rhead_rx.c',
'rhead_tunnel.c',
'rhead_tx.c',
'rhead_virtio.c',
'efx_bootcfg.c',
'efx_crc32.c',
'efx_ev.c',
'efx_evb.c',
'efx_filter.c',
'efx_hash.c',
'efx_intr.c',
'efx_lic.c',
'efx_mac.c',
'efx_mae.c',
'efx_mcdi.c',
'efx_mon.c',
'efx_nic.c',
'efx_nvram.c',
'efx_pci.c',
'efx_phy.c',
'efx_port.c',
'efx_proxy.c',
'efx_rx.c',
'efx_sram.c',
'efx_tunnel.c',
'efx_tx.c',
'efx_vpd.c',
'efx_virtio.c',
'mcdi_mon.c',
'siena_mac.c',
'siena_mcdi.c',
'siena_nic.c',
'siena_nvram.c',
'siena_phy.c',
'siena_sram.c',
'siena_vpd.c',
'ef10_ev.c',
'ef10_evb.c',
'ef10_filter.c',
'ef10_image.c',
'ef10_intr.c',
'ef10_mac.c',
'ef10_mcdi.c',
'ef10_nic.c',
'ef10_nvram.c',
'ef10_phy.c',
'ef10_proxy.c',
'ef10_rx.c',
'ef10_tx.c',
'ef10_vpd.c',
'hunt_nic.c',
'medford_nic.c',
'medford2_nic.c',
'rhead_ev.c',
'rhead_intr.c',
'rhead_nic.c',
'rhead_pci.c',
'rhead_rx.c',
'rhead_tunnel.c',
'rhead_tx.c',
'rhead_virtio.c',
]
extra_flags = [
'-Wno-sign-compare',
'-Wno-unused-parameter',
'-Wno-unused-variable',
'-Wno-empty-body',
'-Wno-unused-but-set-variable'
'-Wno-sign-compare',
'-Wno-unused-parameter',
'-Wno-unused-variable',
'-Wno-empty-body',
'-Wno-unused-but-set-variable'
]
c_args = cflags
foreach flag: extra_flags
if cc.has_argument(flag)
c_args += flag
endif
if cc.has_argument(flag)
c_args += flag
endif
endforeach
if build
base_lib = static_library('sfc_base', sources,
include_directories: includes,
dependencies: static_rte_eal,
c_args: c_args)
base_lib = static_library('sfc_base', sources,
include_directories: includes,
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()
base_objs = base_lib.extract_all_objects()
else
base_objs = []
base_objs = []
endif

View File

@ -6,32 +6,32 @@
# for Solarflare) and Solarflare Communications, Inc.
if is_windows
build = false
reason = 'not supported on Windows'
build = false
reason = 'not supported on Windows'
endif
if (arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')) and (arch_subdir != 'arm' or not host_machine.cpu_family().startswith('aarch64'))
build = false
reason = 'only supported on x86_64 and aarch64'
build = false
reason = 'only supported on x86_64 and aarch64'
endif
extra_flags = []
# Enable more warnings
extra_flags += [
'-Wdisabled-optimization'
'-Wdisabled-optimization'
]
# Compiler and version dependent flags
extra_flags += [
'-Waggregate-return',
'-Wbad-function-cast'
'-Waggregate-return',
'-Wbad-function-cast'
]
foreach flag: extra_flags
if cc.has_argument(flag)
cflags += flag
endif
if cc.has_argument(flag)
cflags += flag
endif
endforeach
subdir('base')
@ -39,8 +39,8 @@ objs = [base_objs]
deps += ['bus_pci']
sources = files(
'sfc_efx.c',
'sfc_efx_mcdi.c',
'sfc_efx.c',
'sfc_efx_mcdi.c',
)
includes += include_directories('base')

View File

@ -3,8 +3,8 @@
dep = dependency('libisal', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libisal"'
build = false
reason = 'missing dependency, "libisal"'
endif
deps += 'bus_vdev'

View File

@ -2,25 +2,25 @@
# Copyright 2021 Mellanox Technologies, Ltd
if not is_linux
build = false
reason = 'only supported on Linux'
subdir_done()
build = false
reason = 'only supported on Linux'
subdir_done()
endif
fmt_name = 'mlx5_compress'
deps += ['common_mlx5', 'eal', 'compressdev']
sources = files(
'mlx5_compress.c',
'mlx5_compress.c',
)
cflags_options = [
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
]
foreach option:cflags_options
if cc.has_argument(option)
cflags += option
endif
if cc.has_argument(option)
cflags += option
endif
endforeach

View File

@ -3,8 +3,8 @@
dep = dependency('zlib', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "zlib"'
build = false
reason = 'missing dependency, "zlib"'
endif
deps += 'bus_vdev'

View File

@ -4,20 +4,20 @@
IMB_required_ver = '0.52.0'
lib = cc.find_library('IPSec_MB', required: false)
if not lib.found()
build = false
reason = 'missing dependency, "libIPSec_MB"'
build = false
reason = 'missing dependency, "libIPSec_MB"'
else
ext_deps += lib
ext_deps += lib
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
endif
sources = files('aesni_gcm_pmd.c', 'aesni_gcm_pmd_ops.c')

View File

@ -4,20 +4,20 @@
IMB_required_ver = '0.52.0'
lib = cc.find_library('IPSec_MB', required: false)
if not lib.found()
build = false
reason = 'missing dependency, "libIPSec_MB"'
build = false
reason = 'missing dependency, "libIPSec_MB"'
else
ext_deps += lib
ext_deps += lib
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
endif

View File

@ -3,9 +3,9 @@
dep = dependency('libAArch64crypto', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libAArch64crypto"'
subdir_done()
build = false
reason = 'missing dependency, "libAArch64crypto"'
subdir_done()
endif
ext_deps += dep

View File

@ -5,16 +5,16 @@
deps += ['eal', 'bus_vdev']
sources = files(
'bcmfs_logs.c',
'bcmfs_device.c',
'bcmfs_vfio.c',
'bcmfs_qp.c',
'hw/bcmfs4_rm.c',
'hw/bcmfs5_rm.c',
'hw/bcmfs_rm_common.c',
'bcmfs_sym_pmd.c',
'bcmfs_sym_capabilities.c',
'bcmfs_sym_session.c',
'bcmfs_sym.c',
'bcmfs_sym_engine.c'
)
'bcmfs_logs.c',
'bcmfs_device.c',
'bcmfs_vfio.c',
'bcmfs_qp.c',
'hw/bcmfs4_rm.c',
'hw/bcmfs5_rm.c',
'hw/bcmfs_rm_common.c',
'bcmfs_sym_pmd.c',
'bcmfs_sym_capabilities.c',
'bcmfs_sym_session.c',
'bcmfs_sym.c',
'bcmfs_sym_engine.c'
)

View File

@ -2,15 +2,17 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_vdev', 'bus_dpaa', 'security']
sources = files('caam_jr_capabilities.c',
'caam_jr_hw.c',
'caam_jr_uio.c',
'caam_jr.c')
sources = files(
'caam_jr_capabilities.c',
'caam_jr_hw.c',
'caam_jr_uio.c',
'caam_jr.c',
)
includes += include_directories('../../bus/dpaa/include/')
includes += include_directories('../../common/dpaax/')

View File

@ -2,21 +2,23 @@
# Copyright(c) 2018 Advanced Micro Devices, Inc. All rights reserved.
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
dep = dependency('libcrypto', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libcrypto"'
build = false
reason = 'missing dependency, "libcrypto"'
endif
deps += 'bus_vdev'
deps += 'bus_pci'
sources = files('rte_ccp_pmd.c',
'ccp_crypto.c',
'ccp_dev.c',
'ccp_pci.c',
'ccp_pmd_ops.c')
sources = files(
'rte_ccp_pmd.c',
'ccp_crypto.c',
'ccp_dev.c',
'ccp_pci.c',
'ccp_pmd_ops.c',
)
ext_deps += dep

View File

@ -2,12 +2,14 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['security', 'mempool_dpaa2']
sources = files('dpaa2_sec_dpseci.c',
'mc/dpseci.c')
sources = files(
'dpaa2_sec_dpseci.c',
'mc/dpseci.c',
)
includes += include_directories('mc', '../../common/dpaax', '../../common/dpaax/caamflib')

View File

@ -2,8 +2,8 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_dpaa', 'mempool_dpaa', 'security']

View File

@ -4,18 +4,18 @@
IMB_required_ver = '0.53.0'
lib = cc.find_library('IPSec_MB', required: false)
if not lib.found()
build = false
reason = 'missing dependency, "libIPSec_MB"'
build = false
reason = 'missing dependency, "libIPSec_MB"'
else
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
endif

View File

@ -5,9 +5,9 @@
dep = dependency('libmusdk', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
endif
ext_deps += dep

View File

@ -2,17 +2,17 @@
# Copyright(C) 2019 Marvell International Ltd.
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_pci']
sources = files(
'nitrox_device.c',
'nitrox_hal.c',
'nitrox_logs.c',
'nitrox_sym.c',
'nitrox_sym_capabilities.c',
'nitrox_sym_reqmgr.c',
'nitrox_qp.c'
)
'nitrox_device.c',
'nitrox_hal.c',
'nitrox_logs.c',
'nitrox_sym.c',
'nitrox_sym_capabilities.c',
'nitrox_sym_reqmgr.c',
'nitrox_qp.c'
)

View File

@ -1,17 +1,19 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Cavium, Inc
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_pci']
deps += ['common_cpt']
sources = files('otx_cryptodev.c',
'otx_cryptodev_capabilities.c',
'otx_cryptodev_hw_access.c',
'otx_cryptodev_mbox.c',
'otx_cryptodev_ops.c')
sources = files(
'otx_cryptodev.c',
'otx_cryptodev_capabilities.c',
'otx_cryptodev_hw_access.c',
'otx_cryptodev_mbox.c',
'otx_cryptodev_ops.c',
)
includes += include_directories('../../common/cpt')

View File

@ -2,9 +2,9 @@
# Copyright (C) 2019 Marvell International Ltd.
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
endif
deps += ['bus_pci']
@ -14,12 +14,14 @@ deps += ['ethdev']
deps += ['eventdev']
deps += ['security']
sources = files('otx2_cryptodev.c',
'otx2_cryptodev_capabilities.c',
'otx2_cryptodev_hw_access.c',
'otx2_cryptodev_mbox.c',
'otx2_cryptodev_ops.c',
'otx2_cryptodev_sec.c')
sources = files(
'otx2_cryptodev.c',
'otx2_cryptodev_capabilities.c',
'otx2_cryptodev_hw_access.c',
'otx2_cryptodev_mbox.c',
'otx2_cryptodev_ops.c',
'otx2_cryptodev_sec.c',
)
includes += include_directories('../../common/cpt')
includes += include_directories('../../common/octeontx2')

View File

@ -3,8 +3,8 @@
dep = dependency('libcrypto', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libcrypto"'
build = false
reason = 'missing dependency, "libcrypto"'
endif
deps += 'bus_vdev'
sources = files('rte_openssl_pmd.c', 'rte_openssl_pmd_ops.c')

View File

@ -11,14 +11,16 @@ qat_deps += 'cryptodev'
qat_deps += 'net'
qat_deps += 'security'
if dep.found()
# Add our sources files to the list
qat_sources += files('qat_sym_pmd.c',
'qat_sym.c',
'qat_sym_session.c',
'qat_sym_hw_dp.c',
'qat_asym_pmd.c',
'qat_asym.c')
qat_ext_deps += dep
qat_cflags += '-DBUILD_QAT_SYM'
qat_cflags += '-DBUILD_QAT_ASYM'
# Add our sources files to the list
qat_sources += files(
'qat_asym.c',
'qat_asym_pmd.c',
'qat_sym.c',
'qat_sym_hw_dp.c',
'qat_sym_pmd.c',
'qat_sym_session.c',
)
qat_ext_deps += dep
qat_cflags += '-DBUILD_QAT_SYM'
qat_cflags += '-DBUILD_QAT_ASYM'
endif

View File

@ -3,16 +3,16 @@
deps += ['bus_vdev', 'reorder']
sources = files(
'rte_cryptodev_scheduler.c',
'scheduler_failover.c',
'scheduler_multicore.c',
'scheduler_pkt_size_distr.c',
'scheduler_pmd.c',
'scheduler_pmd_ops.c',
'scheduler_roundrobin.c',
'rte_cryptodev_scheduler.c',
'scheduler_failover.c',
'scheduler_multicore.c',
'scheduler_pkt_size_distr.c',
'scheduler_pmd.c',
'scheduler_pmd_ops.c',
'scheduler_roundrobin.c',
)
headers = files(
'rte_cryptodev_scheduler.h',
'rte_cryptodev_scheduler_operations.h',
'rte_cryptodev_scheduler.h',
'rte_cryptodev_scheduler_operations.h',
)

View File

@ -4,18 +4,18 @@
IMB_required_ver = '0.53.0'
lib = cc.find_library('IPSec_MB', required: false)
if not lib.found()
build = false
reason = 'missing dependency, "libIPSec_MB"'
build = false
reason = 'missing dependency, "libIPSec_MB"'
else
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
IMB_required_ver, imb_ver)
build = false
endif
endif

View File

@ -3,5 +3,9 @@
includes += include_directories('../../../lib/librte_vhost')
deps += 'bus_pci'
sources = files('virtio_cryptodev.c', 'virtio_pci.c',
'virtio_rxtx.c', 'virtqueue.c')
sources = files(
'virtio_cryptodev.c',
'virtio_pci.c',
'virtio_rxtx.c',
'virtqueue.c',
)

View File

@ -4,18 +4,18 @@
IMB_required_ver = '0.53.0'
lib = cc.find_library('IPSec_MB', required: false)
if not lib.found()
build = false
reason = 'missing dependency, "libIPSec_MB"'
build = false
reason = 'missing dependency, "libIPSec_MB"'
else
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
# version comes with quotes, so we split based on " and take the middle
imb_ver = cc.get_define('IMB_VERSION_STR',
prefix : '#include<intel-ipsec-mb.h>').split('"')[1]
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
if (imb_ver == '') or (imb_ver.version_compare('<' + IMB_required_ver))
reason = 'IPSec_MB version >= @0@ is required, found version @1@'.format(
IMB_required_ver, imb_ver)
build = false
endif
endif

View File

@ -8,14 +8,15 @@ if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64')
subdir_done()
endif
sources = files('dlb2.c',
'dlb2_iface.c',
'dlb2_xstats.c',
'pf/dlb2_main.c',
'pf/dlb2_pf.c',
'pf/base/dlb2_resource.c',
'rte_pmd_dlb2.c',
'dlb2_selftest.c'
sources = files(
'dlb2.c',
'dlb2_iface.c',
'dlb2_xstats.c',
'pf/dlb2_main.c',
'pf/dlb2_pf.c',
'pf/base/dlb2_resource.c',
'rte_pmd_dlb2.c',
'dlb2_selftest.c',
)
headers = files('rte_pmd_dlb2.h')

View File

@ -2,8 +2,8 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['net_dpaa', 'crypto_dpaa_sec']
sources = files('dpaa_eventdev.c')

View File

@ -2,12 +2,14 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_vdev', 'net_dpaa2', 'crypto_dpaa2_sec']
sources = files('dpaa2_hw_dpcon.c',
'dpaa2_eventdev.c',
'dpaa2_eventdev_selftest.c')
sources = files(
'dpaa2_hw_dpcon.c',
'dpaa2_eventdev.c',
'dpaa2_eventdev_selftest.c',
)
includes += include_directories('../../crypto/dpaa2_sec/')

View File

@ -3,6 +3,6 @@
deps += ['bus_vdev']
if cc.has_argument('-Wno-format-nonliteral')
cflags += '-Wno-format-nonliteral'
cflags += '-Wno-format-nonliteral'
endif
sources = files('dsw_evdev.c', 'dsw_event.c', 'dsw_xstats.c')

View File

@ -1,13 +1,14 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc
sources = files('ssovf_worker.c',
'ssovf_evdev.c',
'ssovf_evdev_selftest.c',
'ssovf_probe.c',
'timvf_worker.c',
'timvf_evdev.c',
'timvf_probe.c'
sources = files(
'ssovf_worker.c',
'ssovf_evdev.c',
'ssovf_evdev_selftest.c',
'ssovf_probe.c',
'timvf_worker.c',
'timvf_evdev.c',
'timvf_probe.c',
)
deps += ['common_octeontx', 'mempool_octeontx', 'bus_vdev', 'net_octeontx']

View File

@ -3,21 +3,22 @@
#
if not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit'
subdir_done()
build = false
reason = 'only supported on 64-bit'
subdir_done()
endif
sources = files('otx2_worker.c',
'otx2_worker_dual.c',
'otx2_evdev.c',
'otx2_evdev_adptr.c',
'otx2_evdev_crypto_adptr.c',
'otx2_evdev_irq.c',
'otx2_evdev_selftest.c',
'otx2_tim_evdev.c',
'otx2_tim_worker.c'
)
sources = files(
'otx2_worker.c',
'otx2_worker_dual.c',
'otx2_evdev.c',
'otx2_evdev_adptr.c',
'otx2_evdev_crypto_adptr.c',
'otx2_evdev_irq.c',
'otx2_evdev_selftest.c',
'otx2_tim_evdev.c',
'otx2_tim_worker.c',
)
deps += ['bus_pci', 'common_octeontx2', 'crypto_octeontx2', 'mempool_octeontx2', 'net_octeontx2']

View File

@ -2,10 +2,10 @@
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
sources = files(
'opdl_evdev.c',
'opdl_evdev_init.c',
'opdl_evdev_xstats.c',
'opdl_ring.c',
'opdl_test.c',
'opdl_evdev.c',
'opdl_evdev_init.c',
'opdl_evdev_xstats.c',
'opdl_ring.c',
'opdl_test.c',
)
deps += ['bus_vdev']

View File

@ -1,10 +1,11 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
sources = files('sw_evdev_scheduler.c',
'sw_evdev_selftest.c',
'sw_evdev_worker.c',
'sw_evdev_xstats.c',
'sw_evdev.c'
sources = files(
'sw_evdev_scheduler.c',
'sw_evdev_selftest.c',
'sw_evdev_worker.c',
'sw_evdev_xstats.c',
'sw_evdev.c',
)
deps += ['hash', 'bus_vdev']

View File

@ -7,8 +7,8 @@
# for Solarflare) and Solarflare Communications, Inc.
if is_windows
build = false
reason = 'not supported on Windows'
build = false
reason = 'not supported on Windows'
endif
sources = files('rte_mempool_bucket.c')

View File

@ -3,14 +3,16 @@
#
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
endif
sources = files('cnxk_mempool.c',
'cnxk_mempool_ops.c',
'cn9k_mempool_ops.c',
'cn10k_mempool_ops.c')
sources = files(
'cnxk_mempool.c',
'cnxk_mempool_ops.c',
'cn9k_mempool_ops.c',
'cn10k_mempool_ops.c',
)
deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_cnxk', 'mempool']

View File

@ -2,8 +2,8 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_dpaa']

View File

@ -2,8 +2,8 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_fslmc']

View File

@ -2,12 +2,13 @@
# Copyright(c) 2017 Cavium, Inc
if is_windows
build = false
reason = 'not supported on Windows'
build = false
reason = 'not supported on Windows'
endif
sources = files('octeontx_fpavf.c',
'rte_mempool_octeontx.c'
sources = files(
'octeontx_fpavf.c',
'rte_mempool_octeontx.c',
)
deps += ['mbuf', 'bus_pci', 'common_octeontx']

View File

@ -3,20 +3,21 @@
#
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
if not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit'
subdir_done()
build = false
reason = 'only supported on 64-bit'
subdir_done()
endif
sources = files('otx2_mempool_ops.c',
'otx2_mempool.c',
'otx2_mempool_irq.c',
'otx2_mempool_debug.c'
)
sources = files(
'otx2_mempool.c',
'otx2_mempool_debug.c',
'otx2_mempool_irq.c',
'otx2_mempool_ops.c',
)
deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_octeontx2', 'mempool']

View File

@ -2,8 +2,8 @@
# Copyright(c) 2017-2019 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
build = false
reason = 'not supported on Windows'
endif
sources = files('rte_mempool_stack.c')

View File

@ -2,7 +2,7 @@
# Copyright(c) 2017 Intel Corporation
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
sources = files('rte_eth_af_packet.c')

View File

@ -2,26 +2,26 @@
# Copyright(c) 2019 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('rte_eth_af_xdp.c')
bpf_dep = dependency('libbpf', required: false, method: 'pkg-config')
if not bpf_dep.found()
bpf_dep = cc.find_library('bpf', required: false)
bpf_dep = cc.find_library('bpf', required: false)
endif
if bpf_dep.found() and cc.has_header('bpf/xsk.h') and cc.has_header('linux/if_xdp.h')
ext_deps += bpf_dep
bpf_ver_dep = dependency('libbpf', version : '>=0.2.0',
required: false, method: 'pkg-config')
if bpf_ver_dep.found()
dpdk_conf.set('RTE_LIBRTE_AF_XDP_PMD_SHARED_UMEM', 1)
endif
ext_deps += bpf_dep
bpf_ver_dep = dependency('libbpf', version : '>=0.2.0',
required: false, method: 'pkg-config')
if bpf_ver_dep.found()
dpdk_conf.set('RTE_LIBRTE_AF_XDP_PMD_SHARED_UMEM', 1)
endif
else
build = false
reason = 'missing dependency, "libbpf"'
build = false
reason = 'missing dependency, "libbpf"'
endif

View File

@ -2,18 +2,20 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('ark_ddm.c',
'ark_ethdev.c',
'ark_ethdev_rx.c',
'ark_ethdev_tx.c',
'ark_mpu.c',
'ark_pktchkr.c',
'ark_pktdir.c',
'ark_pktgen.c',
'ark_rqp.c',
'ark_udm.c')
sources = files(
'ark_ddm.c',
'ark_ethdev.c',
'ark_ethdev_rx.c',
'ark_ethdev_tx.c',
'ark_mpu.c',
'ark_pktchkr.c',
'ark_pktdir.c',
'ark_pktgen.c',
'ark_rqp.c',
'ark_udm.c',
)

View File

@ -2,18 +2,18 @@
# Copyright(c) 2018 Aquantia Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files(
'atl_rxtx.c',
'atl_ethdev.c',
'atl_hw_regs.c',
'hw_atl/hw_atl_b0.c',
'hw_atl/hw_atl_llh.c',
'hw_atl/hw_atl_utils_fw2x.c',
'hw_atl/hw_atl_utils.c',
'rte_pmd_atlantic.c',
'atl_rxtx.c',
'atl_ethdev.c',
'atl_hw_regs.c',
'hw_atl/hw_atl_b0.c',
'hw_atl/hw_atl_llh.c',
'hw_atl/hw_atl_utils_fw2x.c',
'hw_atl/hw_atl_utils.c',
'rte_pmd_atlantic.c',
)

View File

@ -2,8 +2,8 @@
# Copyright(c) 2018 Intel Corporation
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
sources = files('avp_ethdev.c')
headers = files('rte_avp_common.h', 'rte_avp_fifo.h')

View File

@ -2,19 +2,21 @@
# Copyright (c) 2018 Advanced Micro Devices, Inc. All rights reserved.
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
sources = files('axgbe_ethdev.c',
'axgbe_dev.c',
'axgbe_mdio.c',
'axgbe_phy_impl.c',
'axgbe_i2c.c',
'axgbe_rxtx.c')
sources = files(
'axgbe_ethdev.c',
'axgbe_dev.c',
'axgbe_mdio.c',
'axgbe_phy_impl.c',
'axgbe_i2c.c',
'axgbe_rxtx.c',
)
cflags += '-Wno-cast-qual'
if arch_subdir == 'x86'
sources += files('axgbe_rxtx_vec_sse.c')
sources += files('axgbe_rxtx_vec_sse.c')
endif

View File

@ -2,9 +2,9 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
dep = dependency('zlib', required: false, method: 'pkg-config')
@ -12,10 +12,12 @@ build = dep.found()
reason = 'missing dependency, "zlib"'
ext_deps += dep
cflags += '-DZLIB_CONST'
sources = files('bnx2x.c',
'bnx2x_ethdev.c',
'bnx2x_rxtx.c',
'bnx2x_stats.c',
'bnx2x_vfpf.c',
'ecore_sp.c',
'elink.c')
sources = files(
'bnx2x.c',
'bnx2x_ethdev.c',
'bnx2x_rxtx.c',
'bnx2x_stats.c',
'bnx2x_vfpf.c',
'ecore_sp.c',
'elink.c',
)

View File

@ -3,9 +3,9 @@
# Copyright(c) 2020 Broadcom
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
headers = files('rte_pmd_bnxt.h')
@ -13,73 +13,75 @@ headers = files('rte_pmd_bnxt.h')
includes += include_directories('tf_ulp')
includes += include_directories('tf_core')
sources = files('bnxt_cpr.c',
'bnxt_ethdev.c',
'bnxt_filter.c',
'bnxt_flow.c',
'bnxt_hwrm.c',
'bnxt_irq.c',
'bnxt_ring.c',
'bnxt_rxq.c',
'bnxt_rxr.c',
'bnxt_stats.c',
'bnxt_txq.c',
'bnxt_txr.c',
'bnxt_util.c',
'bnxt_vnic.c',
'bnxt_reps.c',
sources = files(
'bnxt_cpr.c',
'bnxt_ethdev.c',
'bnxt_filter.c',
'bnxt_flow.c',
'bnxt_hwrm.c',
'bnxt_irq.c',
'bnxt_ring.c',
'bnxt_rxq.c',
'bnxt_rxr.c',
'bnxt_stats.c',
'bnxt_txq.c',
'bnxt_txr.c',
'bnxt_util.c',
'bnxt_vnic.c',
'bnxt_reps.c',
'tf_core/tf_core.c',
'tf_core/bitalloc.c',
'tf_core/tf_msg.c',
'tf_core/rand.c',
'tf_core/stack.c',
'tf_core/tf_core.c',
'tf_core/bitalloc.c',
'tf_core/tf_msg.c',
'tf_core/rand.c',
'tf_core/stack.c',
'tf_core/tf_em_common.c',
'tf_core/tf_em_internal.c',
'tf_core/tf_rm.c',
'tf_core/tf_tbl.c',
'tf_core/tfp.c',
'tf_core/tf_session.c',
'tf_core/tf_device.c',
'tf_core/tf_device_p4.c',
'tf_core/tf_identifier.c',
'tf_core/tf_shadow_tbl.c',
'tf_core/tf_shadow_tcam.c',
'tf_core/tf_tcam.c',
'tf_core/tf_util.c',
'tf_core/tf_if_tbl.c',
'tf_core/ll.c',
'tf_core/tf_global_cfg.c',
'tf_core/tf_em_host.c',
'tf_core/tf_shadow_identifier.c',
'tf_core/tf_hash.c',
'tf_core/tf_rm.c',
'tf_core/tf_tbl.c',
'tf_core/tfp.c',
'tf_core/tf_session.c',
'tf_core/tf_device.c',
'tf_core/tf_device_p4.c',
'tf_core/tf_identifier.c',
'tf_core/tf_shadow_tbl.c',
'tf_core/tf_shadow_tcam.c',
'tf_core/tf_tcam.c',
'tf_core/tf_util.c',
'tf_core/tf_if_tbl.c',
'tf_core/ll.c',
'tf_core/tf_global_cfg.c',
'tf_core/tf_em_host.c',
'tf_core/tf_shadow_identifier.c',
'tf_core/tf_hash.c',
'hcapi/hcapi_cfa_p4.c',
'hcapi/hcapi_cfa_p4.c',
'tf_ulp/bnxt_ulp.c',
'tf_ulp/ulp_mark_mgr.c',
'tf_ulp/ulp_flow_db.c',
'tf_ulp/ulp_template_db_tbl.c',
'tf_ulp/ulp_template_db_class.c',
'tf_ulp/ulp_template_db_act.c',
'tf_ulp/ulp_utils.c',
'tf_ulp/ulp_mapper.c',
'tf_ulp/ulp_matcher.c',
'tf_ulp/ulp_rte_parser.c',
'tf_ulp/bnxt_ulp_flow.c',
'tf_ulp/ulp_port_db.c',
'tf_ulp/ulp_def_rules.c',
'tf_ulp/ulp_fc_mgr.c',
'tf_ulp/ulp_tun.c',
'tf_ulp/ulp_template_db_wh_plus_act.c',
'tf_ulp/ulp_template_db_wh_plus_class.c',
'tf_ulp/ulp_template_db_stingray_act.c',
'tf_ulp/ulp_template_db_stingray_class.c',
'tf_ulp/bnxt_ulp.c',
'tf_ulp/ulp_mark_mgr.c',
'tf_ulp/ulp_flow_db.c',
'tf_ulp/ulp_template_db_tbl.c',
'tf_ulp/ulp_template_db_class.c',
'tf_ulp/ulp_template_db_act.c',
'tf_ulp/ulp_utils.c',
'tf_ulp/ulp_mapper.c',
'tf_ulp/ulp_matcher.c',
'tf_ulp/ulp_rte_parser.c',
'tf_ulp/bnxt_ulp_flow.c',
'tf_ulp/ulp_port_db.c',
'tf_ulp/ulp_def_rules.c',
'tf_ulp/ulp_fc_mgr.c',
'tf_ulp/ulp_tun.c',
'tf_ulp/ulp_template_db_wh_plus_act.c',
'tf_ulp/ulp_template_db_wh_plus_class.c',
'tf_ulp/ulp_template_db_stingray_act.c',
'tf_ulp/ulp_template_db_stingray_class.c',
'rte_pmd_bnxt.c')
'rte_pmd_bnxt.c',
)
if arch_subdir == 'x86'
sources += files('bnxt_rxtx_vec_sse.c')
sources += files('bnxt_rxtx_vec_sse.c')
elif arch_subdir == 'arm' and host_machine.cpu_family().startswith('aarch64')
sources += files('bnxt_rxtx_vec_neon.c')
sources += files('bnxt_rxtx_vec_neon.c')
endif

View File

@ -2,14 +2,20 @@
# Copyright(c) 2017 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
name = 'bond' #, james bond :-)
sources = files('rte_eth_bond_api.c', 'rte_eth_bond_pmd.c', 'rte_eth_bond_flow.c',
'rte_eth_bond_args.c', 'rte_eth_bond_8023ad.c', 'rte_eth_bond_alb.c')
sources = files(
'rte_eth_bond_8023ad.c',
'rte_eth_bond_alb.c',
'rte_eth_bond_api.c',
'rte_eth_bond_args.c',
'rte_eth_bond_flow.c',
'rte_eth_bond_pmd.c',
)
deps += 'sched' # needed for rte_bitmap.h
deps += ['ip_frag']

View File

@ -2,22 +2,24 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('cxgbe_ethdev.c',
'cxgbe_main.c',
'cxgbevf_ethdev.c',
'cxgbevf_main.c',
'sge.c',
'cxgbe_filter.c',
'cxgbe_flow.c',
'clip_tbl.c',
'mps_tcam.c',
'l2t.c',
'smt.c',
'base/t4_hw.c',
'base/t4vf_hw.c')
sources = files(
'cxgbe_ethdev.c',
'cxgbe_main.c',
'cxgbevf_ethdev.c',
'cxgbevf_main.c',
'sge.c',
'cxgbe_filter.c',
'cxgbe_flow.c',
'clip_tbl.c',
'mps_tcam.c',
'l2t.c',
'smt.c',
'base/t4_hw.c',
'base/t4vf_hw.c',
)
includes += include_directories('base')

View File

@ -2,20 +2,22 @@
# Copyright 2018-2020 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['mempool_dpaa']
sources = files('dpaa_ethdev.c',
'fmlib/fm_lib.c',
'fmlib/fm_vsp.c',
'dpaa_flow.c',
'dpaa_rxtx.c',
'dpaa_fmc.c')
sources = files(
'dpaa_ethdev.c',
'fmlib/fm_lib.c',
'fmlib/fm_vsp.c',
'dpaa_flow.c',
'dpaa_rxtx.c',
'dpaa_fmc.c',
)
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
cflags += '-Wno-pointer-arith'
endif
headers = files('rte_pmd_dpaa.h')

View File

@ -2,23 +2,25 @@
# Copyright 2018-2021 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['mempool_dpaa2']
sources = files('base/dpaa2_hw_dpni.c',
'dpaa2_tm.c',
'dpaa2_mux.c',
'dpaa2_ethdev.c',
'dpaa2_flow.c',
'dpaa2_rxtx.c',
'dpaa2_sparser.c',
'dpaa2_ptp.c',
'mc/dprtc.c',
'mc/dpkg.c',
'mc/dpdmux.c',
'mc/dpni.c')
sources = files(
'base/dpaa2_hw_dpni.c',
'dpaa2_tm.c',
'dpaa2_mux.c',
'dpaa2_ethdev.c',
'dpaa2_flow.c',
'dpaa2_rxtx.c',
'dpaa2_sparser.c',
'dpaa2_ptp.c',
'mc/dprtc.c',
'mc/dpkg.c',
'mc/dpdmux.c',
'mc/dpni.c',
)
includes += include_directories('base', 'mc')

View File

@ -2,37 +2,37 @@
# Copyright(c) 2017 Intel Corporation
sources = [
'e1000_base.c',
'e1000_80003es2lan.c',
'e1000_82540.c',
'e1000_82541.c',
'e1000_82542.c',
'e1000_82543.c',
'e1000_82571.c',
'e1000_82575.c',
'e1000_api.c',
'e1000_i210.c',
'e1000_ich8lan.c',
'e1000_mac.c',
'e1000_manage.c',
'e1000_mbx.c',
'e1000_nvm.c',
'e1000_osdep.c',
'e1000_phy.c',
'e1000_vf.c'
'e1000_base.c',
'e1000_80003es2lan.c',
'e1000_82540.c',
'e1000_82541.c',
'e1000_82542.c',
'e1000_82543.c',
'e1000_82571.c',
'e1000_82575.c',
'e1000_api.c',
'e1000_i210.c',
'e1000_ich8lan.c',
'e1000_mac.c',
'e1000_manage.c',
'e1000_mbx.c',
'e1000_nvm.c',
'e1000_osdep.c',
'e1000_phy.c',
'e1000_vf.c'
]
error_cflags = ['-Wno-uninitialized', '-Wno-unused-parameter',
'-Wno-unused-variable', '-Wno-misleading-indentation',
'-Wno-implicit-fallthrough']
'-Wno-unused-variable', '-Wno-misleading-indentation',
'-Wno-implicit-fallthrough']
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('e1000_base', sources,
dependencies: static_rte_eal,
c_args: c_args)
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -2,22 +2,22 @@
# Copyright(c) 2017 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
subdir('base')
objs = [base_objs]
sources = files(
'e1000_logs.c',
'em_ethdev.c',
'em_rxtx.c',
'igb_ethdev.c',
'igb_flow.c',
'igb_pf.c',
'igb_rxtx.c'
'e1000_logs.c',
'em_ethdev.c',
'em_rxtx.c',
'igb_ethdev.c',
'igb_flow.c',
'igb_pf.c',
'igb_rxtx.c',
)
includes += include_directories('base')

View File

@ -2,14 +2,16 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('ena_ethdev.c',
'base/ena_com.c',
'base/ena_eth_com.c')
sources = files(
'ena_ethdev.c',
'base/ena_com.c',
'base/ena_eth_com.c',
)
deps += ['timer']

View File

@ -2,12 +2,14 @@
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
deps += ['common_dpaax']
sources = files('enetc_ethdev.c',
'enetc_rxtx.c')
sources = files(
'enetc_ethdev.c',
'enetc_rxtx.c',
)
includes += include_directories('base')

View File

@ -2,40 +2,40 @@
# Copyright(c) 2018 Cisco Systems, Inc.
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files(
'base/vnic_cq.c',
'base/vnic_dev.c',
'base/vnic_intr.c',
'base/vnic_rq.c',
'base/vnic_wq.c',
'enic_ethdev.c',
'enic_flow.c',
'enic_fm_flow.c',
'enic_main.c',
'enic_res.c',
'enic_rxtx.c',
'enic_vf_representor.c',
)
'base/vnic_cq.c',
'base/vnic_dev.c',
'base/vnic_intr.c',
'base/vnic_rq.c',
'base/vnic_wq.c',
'enic_ethdev.c',
'enic_flow.c',
'enic_fm_flow.c',
'enic_main.c',
'enic_res.c',
'enic_rxtx.c',
'enic_vf_representor.c',
)
deps += ['hash']
includes += include_directories('base')
# The current implementation assumes 64-bit pointers
if cc.get_define('__AVX2__', args: machine_args) != '' and dpdk_conf.get('RTE_ARCH_64')
sources += files('enic_rxtx_vec_avx2.c')
sources += files('enic_rxtx_vec_avx2.c')
# Build the avx2 handler if the compiler supports it, even though 'machine'
# does not. This is to support users who build for the min supported machine
# and need to run the binary on newer CPUs too.
# This part is from i40e meson.build
elif cc.has_argument('-mavx2') and dpdk_conf.get('RTE_ARCH_64')
enic_avx2_lib = static_library('enic_avx2_lib',
'enic_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev, static_rte_bus_pci],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += enic_avx2_lib.extract_objects('enic_rxtx_vec_avx2.c')
enic_avx2_lib = static_library('enic_avx2_lib',
'enic_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev, static_rte_bus_pci],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += enic_avx2_lib.extract_objects('enic_rxtx_vec_avx2.c')
endif

View File

@ -2,9 +2,9 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
cflags += '-std=gnu99'
@ -12,16 +12,18 @@ cflags += '-D_DEFAULT_SOURCE'
cflags += '-D_XOPEN_SOURCE=700'
cflags += '-pedantic'
if is_linux
cflags += '-DLINUX'
cflags += '-DLINUX'
else
cflags += '-DBSD'
cflags += '-DBSD'
endif
sources = files('failsafe_args.c',
'failsafe.c',
'failsafe_eal.c',
'failsafe_ether.c',
'failsafe_flow.c',
'failsafe_intr.c',
'failsafe_ops.c',
'failsafe_rxtx.c')
sources = files(
'failsafe.c',
'failsafe_args.c',
'failsafe_eal.c',
'failsafe_ether.c',
'failsafe_flow.c',
'failsafe_intr.c',
'failsafe_ops.c',
'failsafe_rxtx.c',
)

View File

@ -2,27 +2,27 @@
# Copyright(c) 2017 Intel Corporation
sources = [
'fm10k_api.c',
'fm10k_common.c',
'fm10k_mbx.c',
'fm10k_pf.c',
'fm10k_tlv.c',
'fm10k_vf.c'
'fm10k_api.c',
'fm10k_common.c',
'fm10k_mbx.c',
'fm10k_pf.c',
'fm10k_tlv.c',
'fm10k_vf.c'
]
error_cflags = ['-Wno-unused-parameter', '-Wno-unused-value',
'-Wno-strict-aliasing', '-Wno-format-extra-args',
'-Wno-unused-variable',
'-Wno-implicit-fallthrough'
'-Wno-strict-aliasing', '-Wno-format-extra-args',
'-Wno-unused-variable',
'-Wno-implicit-fallthrough'
]
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('fm10k_base', sources,
dependencies: static_rte_eal,
c_args: c_args)
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -2,20 +2,20 @@
# Copyright(c) 2017 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
subdir('base')
objs = [base_objs]
sources = files(
'fm10k_ethdev.c',
'fm10k_rxtx.c',
'fm10k_ethdev.c',
'fm10k_rxtx.c',
)
if arch_subdir == 'x86'
sources += files('fm10k_rxtx_vec.c')
sources += files('fm10k_rxtx_vec.c')
endif
includes += include_directories('base')

View File

@ -2,17 +2,17 @@
# Copyright(c) 2017 Huawei Technologies Co., Ltd
sources = [
'hinic_pmd_api_cmd.c',
'hinic_pmd_cfg.c',
'hinic_pmd_cmdq.c',
'hinic_pmd_eqs.c',
'hinic_pmd_hwdev.c',
'hinic_pmd_hwif.c',
'hinic_pmd_mgmt.c',
'hinic_pmd_niccfg.c',
'hinic_pmd_nicio.c',
'hinic_pmd_wq.c',
'hinic_pmd_mbox.c',
'hinic_pmd_api_cmd.c',
'hinic_pmd_cfg.c',
'hinic_pmd_cmdq.c',
'hinic_pmd_eqs.c',
'hinic_pmd_hwdev.c',
'hinic_pmd_hwif.c',
'hinic_pmd_mgmt.c',
'hinic_pmd_niccfg.c',
'hinic_pmd_nicio.c',
'hinic_pmd_wq.c',
'hinic_pmd_mbox.c',
]
extra_flags = []
@ -32,6 +32,6 @@ deps += ['hash']
c_args = cflags
base_lib = static_library('hinic_base', sources,
dependencies: [static_rte_eal, static_rte_ethdev, static_rte_bus_pci, static_rte_hash],
c_args: c_args)
dependencies: [static_rte_eal, static_rte_ethdev, static_rte_bus_pci, static_rte_hash],
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -2,19 +2,19 @@
# Copyright(c) 2017 Huawei Technologies Co., Ltd
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
subdir('base')
objs = [base_objs]
sources = files(
'hinic_pmd_ethdev.c',
'hinic_pmd_rx.c',
'hinic_pmd_tx.c',
'hinic_pmd_flow.c',
)
'hinic_pmd_ethdev.c',
'hinic_pmd_rx.c',
'hinic_pmd_tx.c',
'hinic_pmd_flow.c',
)
includes += include_directories('base')

View File

@ -2,38 +2,40 @@
# Copyright(c) 2018-2021 Hisilicon Limited
if not is_linux
build = false
reason = 'only supported on Linux'
subdir_done()
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()
build = false
reason = 'only supported on x86_64 and aarch64'
subdir_done()
endif
sources = files('hns3_cmd.c',
'hns3_dcb.c',
'hns3_intr.c',
'hns3_ethdev.c',
'hns3_ethdev_vf.c',
'hns3_fdir.c',
'hns3_flow.c',
'hns3_mbx.c',
'hns3_regs.c',
'hns3_rss.c',
'hns3_rxtx.c',
'hns3_stats.c',
'hns3_mp.c',
'hns3_tm.c',
'hns3_ptp.c')
sources = files(
'hns3_cmd.c',
'hns3_dcb.c',
'hns3_intr.c',
'hns3_ethdev.c',
'hns3_ethdev_vf.c',
'hns3_fdir.c',
'hns3_flow.c',
'hns3_mbx.c',
'hns3_regs.c',
'hns3_rss.c',
'hns3_rxtx.c',
'hns3_stats.c',
'hns3_mp.c',
'hns3_tm.c',
'hns3_ptp.c',
)
deps += ['hash']
if arch_subdir == 'arm' and dpdk_conf.get('RTE_ARCH_64')
sources += files('hns3_rxtx_vec.c')
if cc.get_define('__ARM_FEATURE_SVE', args: machine_args) != ''
sources += files('hns3_rxtx_vec_sve.c')
endif
sources += files('hns3_rxtx_vec.c')
if cc.get_define('__ARM_FEATURE_SVE', args: machine_args) != ''
sources += files('hns3_rxtx_vec_sve.c')
endif
endif

View File

@ -2,29 +2,29 @@
# Copyright(c) 2017-2020 Intel Corporation
sources = [
'i40e_adminq.c',
'i40e_common.c',
'i40e_dcb.c',
'i40e_diag.c',
'i40e_hmc.c',
'i40e_lan_hmc.c',
'i40e_nvm.c'
'i40e_adminq.c',
'i40e_common.c',
'i40e_dcb.c',
'i40e_diag.c',
'i40e_hmc.c',
'i40e_lan_hmc.c',
'i40e_nvm.c'
]
error_cflags = ['-Wno-sign-compare', '-Wno-unused-value',
'-Wno-format', '-Wno-format-security',
'-Wno-format-nonliteral',
'-Wno-strict-aliasing', '-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
'-Wno-format', '-Wno-format-security',
'-Wno-format-nonliteral',
'-Wno-strict-aliasing', '-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
]
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('i40e_base', sources,
dependencies: static_rte_eal,
c_args: c_args)
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -2,76 +2,76 @@
# Copyright(c) 2017 Intel Corporation
cflags += ['-DPF_DRIVER',
'-DVF_DRIVER',
'-DINTEGRATED_VF',
'-DX722_A0_SUPPORT']
'-DVF_DRIVER',
'-DINTEGRATED_VF',
'-DX722_A0_SUPPORT']
subdir('base')
objs = [base_objs]
sources = files(
'i40e_ethdev.c',
'i40e_rxtx.c',
'i40e_ethdev_vf.c',
'i40e_pf.c',
'i40e_fdir.c',
'i40e_flow.c',
'i40e_tm.c',
'i40e_hash.c',
'i40e_vf_representor.c',
'rte_pmd_i40e.c'
)
'i40e_ethdev.c',
'i40e_rxtx.c',
'i40e_ethdev_vf.c',
'i40e_pf.c',
'i40e_fdir.c',
'i40e_flow.c',
'i40e_tm.c',
'i40e_hash.c',
'i40e_vf_representor.c',
'rte_pmd_i40e.c',
)
deps += ['hash']
includes += include_directories('base')
if arch_subdir == 'x86'
sources += files('i40e_rxtx_vec_sse.c')
sources += files('i40e_rxtx_vec_sse.c')
if is_windows and cc.get_id() != 'clang'
cflags += ['-fno-asynchronous-unwind-tables']
endif
if is_windows and cc.get_id() != 'clang'
cflags += ['-fno-asynchronous-unwind-tables']
endif
# compile AVX2 version if either:
# a. we have AVX supported in minimum instruction set baseline
# b. it's not minimum instruction set, but supported by compiler
if cc.get_define('__AVX2__', args: machine_args) != ''
cflags += ['-DCC_AVX2_SUPPORT']
sources += files('i40e_rxtx_vec_avx2.c')
elif cc.has_argument('-mavx2')
cflags += ['-DCC_AVX2_SUPPORT']
i40e_avx2_lib = static_library('i40e_avx2_lib',
'i40e_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += i40e_avx2_lib.extract_objects('i40e_rxtx_vec_avx2.c')
endif
# compile AVX2 version if either:
# a. we have AVX supported in minimum instruction set baseline
# b. it's not minimum instruction set, but supported by compiler
if cc.get_define('__AVX2__', args: machine_args) != ''
cflags += ['-DCC_AVX2_SUPPORT']
sources += files('i40e_rxtx_vec_avx2.c')
elif cc.has_argument('-mavx2')
cflags += ['-DCC_AVX2_SUPPORT']
i40e_avx2_lib = static_library('i40e_avx2_lib',
'i40e_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += i40e_avx2_lib.extract_objects('i40e_rxtx_vec_avx2.c')
endif
i40e_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != '')
i40e_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != '')
i40e_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw'))
i40e_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw'))
if i40e_avx512_cpu_support == true or i40e_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
avx512_args = [cflags, '-mavx512f', '-mavx512bw']
if cc.has_argument('-march=skylake-avx512')
avx512_args += '-march=skylake-avx512'
endif
i40e_avx512_lib = static_library('i40e_avx512_lib',
'i40e_rxtx_vec_avx512.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: avx512_args)
objs += i40e_avx512_lib.extract_objects('i40e_rxtx_vec_avx512.c')
endif
if i40e_avx512_cpu_support == true or i40e_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
avx512_args = [cflags, '-mavx512f', '-mavx512bw']
if cc.has_argument('-march=skylake-avx512')
avx512_args += '-march=skylake-avx512'
endif
i40e_avx512_lib = static_library('i40e_avx512_lib',
'i40e_rxtx_vec_avx512.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: avx512_args)
objs += i40e_avx512_lib.extract_objects('i40e_rxtx_vec_avx512.c')
endif
elif arch_subdir == 'ppc'
sources += files('i40e_rxtx_vec_altivec.c')
elif arch_subdir == 'arm'

View File

@ -2,9 +2,9 @@
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
cflags += ['-Wno-strict-aliasing']
@ -13,57 +13,57 @@ includes += include_directories('../../common/iavf')
deps += ['common_iavf']
sources = files(
'iavf_ethdev.c',
'iavf_rxtx.c',
'iavf_vchnl.c',
'iavf_generic_flow.c',
'iavf_fdir.c',
'iavf_hash.c',
'iavf_ethdev.c',
'iavf_rxtx.c',
'iavf_vchnl.c',
'iavf_generic_flow.c',
'iavf_fdir.c',
'iavf_hash.c',
)
if arch_subdir == 'x86'
sources += files('iavf_rxtx_vec_sse.c')
sources += files('iavf_rxtx_vec_sse.c')
# compile AVX2 version if either:
# a. we have AVX supported in minimum instruction set baseline
# b. it's not minimum instruction set, but supported by compiler
if cc.get_define('__AVX2__', args: machine_args) != ''
cflags += ['-DCC_AVX2_SUPPORT']
sources += files('iavf_rxtx_vec_avx2.c')
elif cc.has_argument('-mavx2')
cflags += ['-DCC_AVX2_SUPPORT']
iavf_avx2_lib = static_library('iavf_avx2_lib',
'iavf_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += iavf_avx2_lib.extract_objects('iavf_rxtx_vec_avx2.c')
endif
# compile AVX2 version if either:
# a. we have AVX supported in minimum instruction set baseline
# b. it's not minimum instruction set, but supported by compiler
if cc.get_define('__AVX2__', args: machine_args) != ''
cflags += ['-DCC_AVX2_SUPPORT']
sources += files('iavf_rxtx_vec_avx2.c')
elif cc.has_argument('-mavx2')
cflags += ['-DCC_AVX2_SUPPORT']
iavf_avx2_lib = static_library('iavf_avx2_lib',
'iavf_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += iavf_avx2_lib.extract_objects('iavf_rxtx_vec_avx2.c')
endif
iavf_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != '')
iavf_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != '')
iavf_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw'))
iavf_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw'))
if iavf_avx512_cpu_support == true or iavf_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
avx512_args = [cflags, '-mavx512f', '-mavx512bw']
if cc.has_argument('-march=skylake-avx512')
avx512_args += '-march=skylake-avx512'
endif
iavf_avx512_lib = static_library('iavf_avx512_lib',
'iavf_rxtx_vec_avx512.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: avx512_args)
objs += iavf_avx512_lib.extract_objects('iavf_rxtx_vec_avx512.c')
endif
if iavf_avx512_cpu_support == true or iavf_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
avx512_args = [cflags, '-mavx512f', '-mavx512bw']
if cc.has_argument('-march=skylake-avx512')
avx512_args += '-march=skylake-avx512'
endif
iavf_avx512_lib = static_library('iavf_avx512_lib',
'iavf_rxtx_vec_avx512.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: avx512_args)
objs += iavf_avx512_lib.extract_objects('iavf_rxtx_vec_avx512.c')
endif
endif
headers = files('rte_pmd_iavf.h')

View File

@ -2,39 +2,40 @@
# Copyright(c) 2018-2021 Intel Corporation
sources = [
'ice_controlq.c',
'ice_common.c',
'ice_sched.c',
'ice_switch.c',
'ice_nvm.c',
'ice_flex_pipe.c',
'ice_flow.c',
'ice_dcb.c',
'ice_fdir.c',
'ice_acl.c',
'ice_acl_ctrl.c',
'ice_vlan_mode.c',
'ice_controlq.c',
'ice_common.c',
'ice_sched.c',
'ice_switch.c',
'ice_nvm.c',
'ice_flex_pipe.c',
'ice_flow.c',
'ice_dcb.c',
'ice_fdir.c',
'ice_acl.c',
'ice_acl_ctrl.c',
'ice_vlan_mode.c',
]
error_cflags = ['-Wno-unused-value',
'-Wno-unused-but-set-variable',
'-Wno-unused-variable',
'-Wno-unused-parameter',
error_cflags = [
'-Wno-unused-value',
'-Wno-unused-but-set-variable',
'-Wno-unused-variable',
'-Wno-unused-parameter',
]
if is_windows and cc.get_id() != 'clang'
cflags += ['-fno-asynchronous-unwind-tables']
cflags += ['-fno-asynchronous-unwind-tables']
endif
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('ice_base', sources,
dependencies: static_rte_eal,
c_args: c_args)
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -5,70 +5,71 @@ subdir('base')
objs = [base_objs]
sources = files(
'ice_ethdev.c',
'ice_rxtx.c',
'ice_switch_filter.c',
'ice_generic_flow.c',
'ice_fdir_filter.c',
'ice_hash.c',
'ice_acl_filter.c'
)
'ice_acl_filter.c',
'ice_ethdev.c',
'ice_fdir_filter.c',
'ice_generic_flow.c',
'ice_hash.c',
'ice_rxtx.c',
'ice_switch_filter.c',
)
deps += ['hash', 'net', 'common_iavf']
includes += include_directories('base', '../../common/iavf')
if arch_subdir == 'x86'
sources += files('ice_rxtx_vec_sse.c')
sources += files('ice_rxtx_vec_sse.c')
if is_windows and cc.get_id() != 'clang'
cflags += ['-fno-asynchronous-unwind-tables']
endif
if is_windows and cc.get_id() != 'clang'
cflags += ['-fno-asynchronous-unwind-tables']
endif
# compile AVX2 version if either:
# a. we have AVX supported in minimum instruction set baseline
# b. it's not minimum instruction set, but supported by compiler
if cc.get_define('__AVX2__', args: machine_args) != ''
cflags += ['-DCC_AVX2_SUPPORT']
sources += files('ice_rxtx_vec_avx2.c')
elif cc.has_argument('-mavx2')
cflags += ['-DCC_AVX2_SUPPORT']
ice_avx2_lib = static_library('ice_avx2_lib',
'ice_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += ice_avx2_lib.extract_objects('ice_rxtx_vec_avx2.c')
endif
# compile AVX2 version if either:
# a. we have AVX supported in minimum instruction set baseline
# b. it's not minimum instruction set, but supported by compiler
if cc.get_define('__AVX2__', args: machine_args) != ''
cflags += ['-DCC_AVX2_SUPPORT']
sources += files('ice_rxtx_vec_avx2.c')
elif cc.has_argument('-mavx2')
cflags += ['-DCC_AVX2_SUPPORT']
ice_avx2_lib = static_library('ice_avx2_lib',
'ice_rxtx_vec_avx2.c',
dependencies: [static_rte_ethdev, static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: [cflags, '-mavx2'])
objs += ice_avx2_lib.extract_objects('ice_rxtx_vec_avx2.c')
endif
ice_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != '')
ice_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != ''
)
ice_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw'))
ice_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw')
)
if ice_avx512_cpu_support == true or ice_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
avx512_args = [cflags, '-mavx512f', '-mavx512bw']
if cc.has_argument('-march=skylake-avx512')
avx512_args += '-march=skylake-avx512'
endif
ice_avx512_lib = static_library('ice_avx512_lib',
'ice_rxtx_vec_avx512.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: avx512_args)
objs += ice_avx512_lib.extract_objects('ice_rxtx_vec_avx512.c')
endif
if ice_avx512_cpu_support == true or ice_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
avx512_args = [cflags, '-mavx512f', '-mavx512bw']
if cc.has_argument('-march=skylake-avx512')
avx512_args += '-march=skylake-avx512'
endif
ice_avx512_lib = static_library('ice_avx512_lib',
'ice_rxtx_vec_avx512.c',
dependencies: [static_rte_ethdev,
static_rte_kvargs, static_rte_hash],
include_directories: includes,
c_args: avx512_args)
objs += ice_avx512_lib.extract_objects('ice_rxtx_vec_avx512.c')
endif
endif
sources += files('ice_dcf.c',
'ice_dcf_vf_representor.c',
'ice_dcf_ethdev.c',
'ice_dcf_parent.c')
'ice_dcf_vf_representor.c',
'ice_dcf_ethdev.c',
'ice_dcf_parent.c')
headers = files('rte_pmd_ice.h')

View File

@ -2,18 +2,18 @@
# Copyright(c) 2019-2020 Intel Corporation
sources = [
'igc_api.c',
'igc_base.c',
'igc_i225.c',
'igc_mac.c',
'igc_manage.c',
'igc_nvm.c',
'igc_osdep.c',
'igc_phy.c',
'igc_api.c',
'igc_base.c',
'igc_i225.c',
'igc_mac.c',
'igc_manage.c',
'igc_nvm.c',
'igc_osdep.c',
'igc_phy.c',
]
base_lib = static_library('igc_base', sources,
dependencies: static_rte_eal,
c_args: cflags)
dependencies: static_rte_eal,
c_args: cflags)
base_objs = base_lib.extract_all_objects()

View File

@ -2,20 +2,20 @@
# Copyright(c) 2019-2020 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
subdir('base')
objs = [base_objs]
sources = files(
'igc_logs.c',
'igc_ethdev.c',
'igc_txrx.c',
'igc_filter.c',
'igc_flow.c'
'igc_ethdev.c',
'igc_logs.c',
'igc_filter.c',
'igc_flow.c',
'igc_txrx.c',
)
includes += include_directories('base')

View File

@ -2,17 +2,17 @@
# Copyright(c) 2019 Pensando
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files(
'ionic_mac_api.c',
'ionic_rx_filter.c',
'ionic_rxtx.c',
'ionic_dev.c',
'ionic_ethdev.c',
'ionic_lif.c',
'ionic_main.c'
'ionic_dev.c',
'ionic_ethdev.c',
'ionic_lif.c',
'ionic_mac_api.c',
'ionic_main.c',
'ionic_rx_filter.c',
'ionic_rxtx.c',
)

View File

@ -2,9 +2,9 @@
# Copyright(c) 2019 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
#
@ -16,15 +16,17 @@ endif
#
if has_libfdt == 0
build = false
reason = 'missing dependency, "libfdt"'
subdir_done()
build = false
reason = 'missing dependency, "libfdt"'
subdir_done()
endif
includes += include_directories('../../raw/ifpga')
sources += files('ipn3ke_ethdev.c',
'ipn3ke_representor.c',
'ipn3ke_tm.c',
'ipn3ke_flow.c')
sources += files(
'ipn3ke_ethdev.c',
'ipn3ke_flow.c',
'ipn3ke_representor.c',
'ipn3ke_tm.c',
)
deps += ['bus_ifpga', 'ethdev', 'sched']

View File

@ -2,33 +2,33 @@
# Copyright(c) 2017-2020 Intel Corporation
sources = [
'ixgbe_82598.c',
'ixgbe_82599.c',
'ixgbe_api.c',
'ixgbe_common.c',
'ixgbe_dcb_82598.c',
'ixgbe_dcb_82599.c',
'ixgbe_dcb.c',
'ixgbe_hv_vf.c',
'ixgbe_mbx.c',
'ixgbe_phy.c',
'ixgbe_vf.c',
'ixgbe_x540.c',
'ixgbe_x550.c'
'ixgbe_82598.c',
'ixgbe_82599.c',
'ixgbe_api.c',
'ixgbe_common.c',
'ixgbe_dcb_82598.c',
'ixgbe_dcb_82599.c',
'ixgbe_dcb.c',
'ixgbe_hv_vf.c',
'ixgbe_mbx.c',
'ixgbe_phy.c',
'ixgbe_vf.c',
'ixgbe_x540.c',
'ixgbe_x550.c'
]
error_cflags = ['-Wno-unused-value',
'-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
]
'-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
]
c_args = cflags
foreach flag: error_cflags
if cc.has_argument(flag)
c_args += flag
endif
if cc.has_argument(flag)
c_args += flag
endif
endforeach
base_lib = static_library('ixgbe_base', sources,
dependencies: static_rte_eal,
c_args: c_args)
dependencies: static_rte_eal,
c_args: c_args)
base_objs = base_lib.extract_all_objects()

View File

@ -2,9 +2,9 @@
# Copyright(c) 2017 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS']
@ -13,25 +13,25 @@ subdir('base')
objs = [base_objs]
sources = files(
'ixgbe_82599_bypass.c',
'ixgbe_bypass.c',
'ixgbe_ethdev.c',
'ixgbe_fdir.c',
'ixgbe_flow.c',
'ixgbe_ipsec.c',
'ixgbe_pf.c',
'ixgbe_rxtx.c',
'ixgbe_tm.c',
'ixgbe_vf_representor.c',
'rte_pmd_ixgbe.c'
'ixgbe_82599_bypass.c',
'ixgbe_bypass.c',
'ixgbe_ethdev.c',
'ixgbe_fdir.c',
'ixgbe_flow.c',
'ixgbe_ipsec.c',
'ixgbe_pf.c',
'ixgbe_rxtx.c',
'ixgbe_tm.c',
'ixgbe_vf_representor.c',
'rte_pmd_ixgbe.c',
)
deps += ['hash', 'security']
if arch_subdir == 'x86'
sources += files('ixgbe_rxtx_vec_sse.c')
sources += files('ixgbe_rxtx_vec_sse.c')
elif arch_subdir == 'arm'
sources += files('ixgbe_rxtx_vec_neon.c')
sources += files('ixgbe_rxtx_vec_neon.c')
endif
includes += include_directories('base')

View File

@ -2,9 +2,9 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
# this driver can be built if-and-only-if KNI library is buildable

View File

@ -2,13 +2,15 @@
# Copyright(c) 2018 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
sources = files('base/lio_23xx_vf.c',
'base/lio_mbox.c',
'lio_ethdev.c',
'lio_rxtx.c')
sources = files(
'base/lio_23xx_vf.c',
'base/lio_mbox.c',
'lio_ethdev.c',
'lio_rxtx.c',
)
includes += include_directories('base')

View File

@ -2,11 +2,13 @@
# Copyright 2018-2019 Cisco Systems, Inc. All rights reserved.
if not is_linux
build = false
reason = 'only supported on Linux'
build = false
reason = 'only supported on Linux'
endif
sources = files('rte_eth_memif.c',
'memif_socket.c')
sources = files(
'memif_socket.c',
'rte_eth_memif.c',
)
deps += ['hash']

View File

@ -3,9 +3,9 @@
# Copyright 2018 Mellanox Technologies, Ltd
if not is_linux
build = false
reason = 'only supported on Linux'
subdir_done()
build = false
reason = 'only supported on Linux'
subdir_done()
endif
static_ibverbs = (get_option('ibverbs_link') == 'static')
@ -14,74 +14,74 @@ LIB_GLUE_BASE = 'librte_net_mlx4_glue.so'
LIB_GLUE_VERSION = abi_version
LIB_GLUE = LIB_GLUE_BASE + '.' + LIB_GLUE_VERSION
if dlopen_ibverbs
dpdk_conf.set('RTE_IBVERBS_LINK_DLOPEN', 1)
cflags += [
'-DMLX4_GLUE="@0@"'.format(LIB_GLUE),
'-DMLX4_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
dpdk_conf.set('RTE_IBVERBS_LINK_DLOPEN', 1)
cflags += [
'-DMLX4_GLUE="@0@"'.format(LIB_GLUE),
'-DMLX4_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
endif
libnames = [ 'mlx4', 'ibverbs' ]
libs = []
foreach libname:libnames
lib = dependency('lib' + libname, static:static_ibverbs,
required:false, method: 'pkg-config')
if not lib.found() and not static_ibverbs
lib = cc.find_library(libname, required:false)
endif
if lib.found()
libs += lib
if not static_ibverbs and not dlopen_ibverbs
ext_deps += lib
endif
else
build = false
reason = 'missing dependency, "' + libname + '"'
subdir_done()
endif
lib = dependency('lib' + libname, static:static_ibverbs,
required:false, method: 'pkg-config')
if not lib.found() and not static_ibverbs
lib = cc.find_library(libname, required:false)
endif
if lib.found()
libs += lib
if not static_ibverbs and not dlopen_ibverbs
ext_deps += lib
endif
else
build = false
reason = 'missing dependency, "' + libname + '"'
subdir_done()
endif
endforeach
if static_ibverbs or dlopen_ibverbs
# Build without adding shared libs to Requires.private
ibv_cflags = run_command(pkgconf, '--cflags', 'libibverbs').stdout()
ext_deps += declare_dependency(compile_args: ibv_cflags.split())
# Build without adding shared libs to Requires.private
ibv_cflags = run_command(pkgconf, '--cflags', 'libibverbs').stdout()
ext_deps += declare_dependency(compile_args: ibv_cflags.split())
endif
if static_ibverbs
# Add static deps ldflags to internal apps and Libs.private
ibv_ldflags = run_command(ldflags_ibverbs_static, check:true).stdout()
ext_deps += declare_dependency(link_args:ibv_ldflags.split())
# Add static deps ldflags to internal apps and Libs.private
ibv_ldflags = run_command(ldflags_ibverbs_static, check:true).stdout()
ext_deps += declare_dependency(link_args:ibv_ldflags.split())
endif
sources = files(
'mlx4.c',
'mlx4_ethdev.c',
'mlx4_flow.c',
'mlx4_intr.c',
'mlx4_mp.c',
'mlx4_mr.c',
'mlx4_rxq.c',
'mlx4_rxtx.c',
'mlx4_txq.c',
'mlx4_utils.c',
'mlx4.c',
'mlx4_ethdev.c',
'mlx4_flow.c',
'mlx4_intr.c',
'mlx4_mp.c',
'mlx4_mr.c',
'mlx4_rxq.c',
'mlx4_rxtx.c',
'mlx4_txq.c',
'mlx4_utils.c',
)
if not dlopen_ibverbs
sources += files('mlx4_glue.c')
sources += files('mlx4_glue.c')
endif
cflags_options = [
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600',
]
foreach option:cflags_options
if cc.has_argument(option)
cflags += option
endif
if cc.has_argument(option)
cflags += option
endif
endforeach
if get_option('buildtype').contains('debug')
cflags += [ '-pedantic', '-DPEDANTIC' ]
cflags += [ '-pedantic', '-DPEDANTIC' ]
else
cflags += [ '-UPEDANTIC' ]
cflags += [ '-UPEDANTIC' ]
endif
# To maintain the compatibility with the make build system
# mlx4_autoconf.h file is still generated.
@ -90,49 +90,49 @@ endif
# "symbol to search", "struct member to search" ]
#
has_member_args = [
[ 'HAVE_IBV_MLX4_WQE_LSO_SEG', 'infiniband/mlx4dv.h',
'struct mlx4_wqe_lso_seg', 'mss_hdr_size' ],
[ 'HAVE_IBV_MLX4_WQE_LSO_SEG', 'infiniband/mlx4dv.h',
'struct mlx4_wqe_lso_seg', 'mss_hdr_size' ],
]
# input array for meson symbol search:
# [ "MACRO to define if found", "header for the search",
# "symbol to search" ]
has_sym_args = [
[ 'HAVE_IBV_MLX4_BUF_ALLOCATORS', 'infiniband/mlx4dv.h',
'MLX4DV_SET_CTX_ATTR_BUF_ALLOCATORS' ],
[ 'HAVE_IBV_MLX4_UAR_MMAP_OFFSET', 'infiniband/mlx4dv.h',
'MLX4DV_QP_MASK_UAR_MMAP_OFFSET' ],
[ 'HAVE_IBV_MLX4_BUF_ALLOCATORS', 'infiniband/mlx4dv.h',
'MLX4DV_SET_CTX_ATTR_BUF_ALLOCATORS' ],
[ 'HAVE_IBV_MLX4_UAR_MMAP_OFFSET', 'infiniband/mlx4dv.h',
'MLX4DV_QP_MASK_UAR_MMAP_OFFSET' ],
]
config = configuration_data()
foreach arg:has_sym_args
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2],
dependencies: libs))
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2],
dependencies: libs))
endforeach
foreach arg:has_member_args
file_prefix = '#include <' + arg[1] + '>'
config.set(arg[0], cc.has_member(arg[2], arg[3],
prefix: file_prefix, dependencies: libs))
file_prefix = '#include <' + arg[1] + '>'
config.set(arg[0], cc.has_member(arg[2], arg[3],
prefix: file_prefix, dependencies: libs))
endforeach
configure_file(output : 'mlx4_autoconf.h', configuration : config)
# Build Glue Library
if dlopen_ibverbs
dlopen_name = 'mlx4_glue'
dlopen_lib_name = 'rte_net_' + dlopen_name
dlopen_so_version = LIB_GLUE_VERSION
dlopen_sources = files('mlx4_glue.c')
dlopen_install_dir = [ eal_pmd_path + '-glue' ]
shared_lib = shared_library(
dlopen_lib_name,
dlopen_sources,
include_directories: global_inc,
c_args: cflags,
dependencies: libs,
link_args: [
'-Wl,-export-dynamic',
'-Wl,-h,@0@'.format(LIB_GLUE),
],
soversion: dlopen_so_version,
install: true,
install_dir: dlopen_install_dir,
)
dlopen_name = 'mlx4_glue'
dlopen_lib_name = 'rte_net_' + dlopen_name
dlopen_so_version = LIB_GLUE_VERSION
dlopen_sources = files('mlx4_glue.c')
dlopen_install_dir = [ eal_pmd_path + '-glue' ]
shared_lib = shared_library(
dlopen_lib_name,
dlopen_sources,
include_directories: global_inc,
c_args: cflags,
dependencies: libs,
link_args: [
'-Wl,-export-dynamic',
'-Wl,-h,@0@'.format(LIB_GLUE),
],
soversion: dlopen_so_version,
install: true,
install_dir: dlopen_install_dir,
)
endif

View File

@ -3,12 +3,12 @@
includes += include_directories('.')
sources += files(
'mlx5_socket.c',
'mlx5_os.c',
'mlx5_ethdev_os.c',
'mlx5_verbs.c',
'mlx5_mp_os.c',
'mlx5_vlan_os.c',
'mlx5_flow_os.c',
'mlx5_socket.c',
'mlx5_os.c',
'mlx5_ethdev_os.c',
'mlx5_verbs.c',
'mlx5_mp_os.c',
'mlx5_vlan_os.c',
'mlx5_flow_os.c',
)

View File

@ -3,66 +3,66 @@
# Copyright 2018 Mellanox Technologies, Ltd
if not (is_linux or is_windows)
build = false
reason = 'only supported on Linux and Windows'
subdir_done()
build = false
reason = 'only supported on Linux and Windows'
subdir_done()
endif
deps += ['hash', 'common_mlx5']
sources = files(
'mlx5.c',
'mlx5_ethdev.c',
'mlx5_flow.c',
'mlx5_flow_meter.c',
'mlx5_flow_dv.c',
'mlx5.c',
'mlx5_ethdev.c',
'mlx5_flow.c',
'mlx5_flow_meter.c',
'mlx5_flow_dv.c',
'mlx5_flow_age.c',
'mlx5_mac.c',
'mlx5_mr.c',
'mlx5_rss.c',
'mlx5_rx.c',
'mlx5_rxmode.c',
'mlx5_rxq.c',
'mlx5_rxtx.c',
'mlx5_stats.c',
'mlx5_trigger.c',
'mlx5_tx.c',
'mlx5_tx_empw.c',
'mlx5_tx_mpw.c',
'mlx5_tx_nompw.c',
'mlx5_tx_txpp.c',
'mlx5_txq.c',
'mlx5_txpp.c',
'mlx5_vlan.c',
'mlx5_utils.c',
'mlx5_devx.c',
'mlx5_mac.c',
'mlx5_mr.c',
'mlx5_rss.c',
'mlx5_rx.c',
'mlx5_rxmode.c',
'mlx5_rxq.c',
'mlx5_rxtx.c',
'mlx5_stats.c',
'mlx5_trigger.c',
'mlx5_tx.c',
'mlx5_tx_empw.c',
'mlx5_tx_mpw.c',
'mlx5_tx_nompw.c',
'mlx5_tx_txpp.c',
'mlx5_txq.c',
'mlx5_txpp.c',
'mlx5_vlan.c',
'mlx5_utils.c',
'mlx5_devx.c',
)
if is_linux
sources += files(
'mlx5_flow_verbs.c',
)
if (dpdk_conf.has('RTE_ARCH_X86_64')
or dpdk_conf.has('RTE_ARCH_ARM64')
or dpdk_conf.has('RTE_ARCH_PPC_64'))
sources += files('mlx5_rxtx_vec.c')
endif
sources += files(
'mlx5_flow_verbs.c',
)
if (dpdk_conf.has('RTE_ARCH_X86_64')
or dpdk_conf.has('RTE_ARCH_ARM64')
or dpdk_conf.has('RTE_ARCH_PPC_64'))
sources += files('mlx5_rxtx_vec.c')
endif
endif
cflags_options = [
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600',
]
foreach option:cflags_options
if cc.has_argument(option)
cflags += option
endif
if cc.has_argument(option)
cflags += option
endif
endforeach
if get_option('buildtype').contains('debug')
cflags += [ '-pedantic', '-DPEDANTIC' ]
cflags += [ '-pedantic', '-DPEDANTIC' ]
else
cflags += [ '-UPEDANTIC' ]
cflags += [ '-UPEDANTIC' ]
endif
subdir(exec_env)

View File

@ -3,9 +3,9 @@
includes += include_directories('.')
sources += files(
'mlx5_os.c',
'mlx5_mp_os.c',
'mlx5_ethdev_os.c',
'mlx5_vlan_os.c',
'mlx5_flow_os.c',
'mlx5_os.c',
'mlx5_mp_os.c',
'mlx5_ethdev_os.c',
'mlx5_vlan_os.c',
'mlx5_flow_os.c',
)

View File

@ -4,23 +4,23 @@
# All rights reserved.
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
dep = dependency('libmusdk', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
endif
ext_deps += dep
sources = files(
'mvneta_ethdev.c',
'mvneta_rxtx.c'
'mvneta_ethdev.c',
'mvneta_rxtx.c',
)
deps += ['cfgfile', 'common_mvep']

View File

@ -4,26 +4,26 @@
# All rights reserved.
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
dep = dependency('libmusdk', required: false, method: 'pkg-config')
if not dep.found()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
build = false
reason = 'missing dependency, "libmusdk"'
subdir_done()
endif
ext_deps += dep
sources = files(
'mrvl_ethdev.c',
'mrvl_flow.c',
'mrvl_qos.c',
'mrvl_mtr.c',
'mrvl_tm.c'
'mrvl_ethdev.c',
'mrvl_flow.c',
'mrvl_qos.c',
'mrvl_mtr.c',
'mrvl_tm.c',
)
deps += ['cfgfile', 'common_mvep']

View File

@ -2,13 +2,19 @@
# Copyright(c) 2018 Microsoft Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
build = false
reason = 'not supported on Windows'
subdir_done()
endif
build = dpdk_conf.has('RTE_BUS_VMBUS')
reason = 'missing dependency, DPDK VMBus driver'
sources = files('hn_ethdev.c', 'hn_rxtx.c', 'hn_rndis.c', 'hn_nvs.c', 'hn_vf.c')
sources = files(
'hn_ethdev.c',
'hn_nvs.c',
'hn_rndis.c',
'hn_rxtx.c',
'hn_vf.c',
)
deps += ['bus_vmbus' ]

Some files were not shown because too many files have changed in this diff Show More