[dpdk-dev,v2] crypto/mrvl: add MRVL PMD to meson

Message ID 1524140474-20238-1-git-send-email-tdu@semihalf.com (mailing list archive)
State Accepted, archived
Delegated to: Bruce Richardson
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Tomasz Duszynski April 19, 2018, 12:21 p.m. UTC
  Add MRVL CRYPTO PMD to meson build system.

Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
---
v2:
- Get lib path from meson option instead of env variable

 drivers/crypto/meson.build      |  2 +-
 drivers/crypto/mrvl/meson.build | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+), 1 deletion(-)
 create mode 100644 drivers/crypto/mrvl/meson.build

--
2.7.4
  

Comments

Bruce Richardson April 19, 2018, 1:36 p.m. UTC | #1
On Thu, Apr 19, 2018 at 02:21:14PM +0200, Tomasz Duszynski wrote:
> Add MRVL CRYPTO PMD to meson build system.
> 
> Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
> ---
> v2:
> - Get lib path from meson option instead of env variable
> 
>  drivers/crypto/meson.build      |  2 +-
>  drivers/crypto/mrvl/meson.build | 21 +++++++++++++++++++++
>  2 files changed, 22 insertions(+), 1 deletion(-)
>  create mode 100644 drivers/crypto/mrvl/meson.build
> 
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Applied to dpdk-next-build
  

Patch

diff --git a/drivers/crypto/meson.build b/drivers/crypto/meson.build
index 736c9f5..1295743 100644
--- a/drivers/crypto/meson.build
+++ b/drivers/crypto/meson.build
@@ -2,7 +2,7 @@ 
 # Copyright(c) 2017 Intel Corporation

 drivers = ['dpaa_sec', 'dpaa2_sec',
-	'openssl', 'null', 'qat']
+	'openssl', 'mrvl', 'null', 'qat']

 std_deps = ['cryptodev'] # cryptodev pulls in all other needed deps
 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
diff --git a/drivers/crypto/mrvl/meson.build b/drivers/crypto/mrvl/meson.build
new file mode 100644
index 0000000..3c8ea3c
--- /dev/null
+++ b/drivers/crypto/mrvl/meson.build
@@ -0,0 +1,21 @@ 
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Marvell International Ltd.
+# Copyright(c) 2018 Semihalf.
+# All rights reserved.
+
+path = get_option('lib_musdk_dir')
+lib_dir = path + '/lib'
+inc_dir = path + '/include'
+
+lib = cc.find_library('libmusdk', dirs: [lib_dir], required: false)
+if not lib.found()
+	build = false
+else
+	ext_deps += lib
+	includes += include_directories(inc_dir)
+	cflags += ['-DMVCONF_TYPES_PUBLIC', '-DMVCONF_DMA_PHYS_ADDR_T_PUBLIC']
+endif
+
+sources = files('rte_mrvl_pmd.c', 'rte_mrvl_pmd_ops.c')
+
+deps += ['bus_vdev']