* [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build
@ 2020-11-05 15:33 Dharmik Thakkar
2020-11-05 15:33 ` [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD Dharmik Thakkar
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Dharmik Thakkar @ 2020-11-05 15:33 UTC (permalink / raw)
To: Ruifeng Wang, Bruce Richardson; +Cc: dev, nd, Dharmik Thakkar
With pkg-config support available within AArch64crypto library,
meson option 'armv8_crypto_dir' can be removed.
PKG_CONFIG_PATH environment variable should be set appropriately
to use the crypto library.
Refer [1] for build instructions.
[1]
https://doc.dpdk.org/guides/cryptodevs/armv8.html
Suggested-by: Thomas Monjalon <thomas@monjalon.net>
Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
---
drivers/crypto/armv8/meson.build | 19 ++++---------------
meson_options.txt | 2 --
2 files changed, 4 insertions(+), 17 deletions(-)
diff --git a/drivers/crypto/armv8/meson.build b/drivers/crypto/armv8/meson.build
index c445c5bd3dfd..3289a2adcac5 100644
--- a/drivers/crypto/armv8/meson.build
+++ b/drivers/crypto/armv8/meson.build
@@ -1,24 +1,13 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019 Arm Limited
-path = get_option('armv8_crypto_dir')
-if path == ''
+dep = dependency('libAArch64crypto', required: false)
+if not dep.found()
build = false
- reason = 'missing dependency, "armv8_crypto"'
+ reason = 'missing dependency, "libAArch64crypto"'
subdir_done()
endif
-inc_dir = path
-
-lib = cc.find_library('libAArch64crypto', dirs: [path], required: false)
-if not lib.found()
- build = false
- reason = 'missing dependency, "AArch64crypto"'
- subdir_done()
-else
- ext_deps += lib
- includes += include_directories(inc_dir)
-endif
-
+ext_deps += dep
deps += ['bus_vdev']
sources = files('rte_armv8_pmd.c', 'rte_armv8_pmd_ops.c')
diff --git a/meson_options.txt b/meson_options.txt
index 9bf18ab6b1c9..e384e6dbb29e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,7 +1,5 @@
# Please keep these options sorted alphabetically.
-option('armv8_crypto_dir', type: 'string', value: '',
- description: 'path to the armv8_crypto library installation directory')
option('disable_drivers', type: 'string', value: '',
description: 'Comma-separated list of drivers to explicitly disable.')
option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>',
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD
2020-11-05 15:33 [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Dharmik Thakkar
@ 2020-11-05 15:33 ` Dharmik Thakkar
2020-11-06 1:39 ` Ruifeng Wang
2020-11-05 16:11 ` [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Bruce Richardson
2020-11-06 1:40 ` Ruifeng Wang
2 siblings, 1 reply; 7+ messages in thread
From: Dharmik Thakkar @ 2020-11-05 15:33 UTC (permalink / raw)
To: Ruifeng Wang; +Cc: dev, nd, Dharmik Thakkar
Remove build steps about using meson option armv8_crypto_dir.
Add build steps about using pkg-config.
Suggested-by: Thomas Monjalon <thomas@monjalon.net>
Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
---
doc/guides/cryptodevs/armv8.rst | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/doc/guides/cryptodevs/armv8.rst b/doc/guides/cryptodevs/armv8.rst
index f0f30fe0003a..8963f66a206c 100644
--- a/doc/guides/cryptodevs/armv8.rst
+++ b/doc/guides/cryptodevs/armv8.rst
@@ -37,11 +37,17 @@ To build DPDK with this virtual crypto PMD, the user is required to:
make
-* Build DPDK with meson option ``-Darmv8_crypto_dir=<path_to_AArch64cryptolib>``:
+* Add path to `libAArch64crypto.pc` in `PKG_CONFIG_PATH` environment variable:
.. code-block:: console
- meson -Darmv8_crypto_dir=<path_to_AArch64cryptolib> build
+ export PKG_CONFIG_PATH=<path_to_AArch64cryptolib>/pkgconfig/:$PKG_CONFIG_PATH
+
+* Build DPDK:
+
+.. code-block:: console
+
+ meson build
ninja -C build
The corresponding device can be created only if the following features
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD
2020-11-05 15:33 ` [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD Dharmik Thakkar
@ 2020-11-06 1:39 ` Ruifeng Wang
0 siblings, 0 replies; 7+ messages in thread
From: Ruifeng Wang @ 2020-11-06 1:39 UTC (permalink / raw)
To: Dharmik Thakkar; +Cc: dev, nd, Dharmik Thakkar, nd
> -----Original Message-----
> From: Dharmik Thakkar <dharmik.thakkar@arm.com>
> Sent: Thursday, November 5, 2020 11:33 PM
> To: Ruifeng Wang <Ruifeng.Wang@arm.com>
> Cc: dev@dpdk.org; nd <nd@arm.com>; Dharmik Thakkar
> <Dharmik.Thakkar@arm.com>
> Subject: [PATCH 2/2] doc: update build guide for armv8 crypto PMD
>
> Remove build steps about using meson option armv8_crypto_dir.
>
> Add build steps about using pkg-config.
>
> Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
> Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
> ---
> doc/guides/cryptodevs/armv8.rst | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/doc/guides/cryptodevs/armv8.rst
> b/doc/guides/cryptodevs/armv8.rst index f0f30fe0003a..8963f66a206c
> 100644
> --- a/doc/guides/cryptodevs/armv8.rst
> +++ b/doc/guides/cryptodevs/armv8.rst
> @@ -37,11 +37,17 @@ To build DPDK with this virtual crypto PMD, the user is
> required to:
>
> make
>
> -* Build DPDK with meson option ``-
> Darmv8_crypto_dir=<path_to_AArch64cryptolib>``:
> +* Add path to `libAArch64crypto.pc` in `PKG_CONFIG_PATH` environment
> variable:
>
> .. code-block:: console
>
> - meson -Darmv8_crypto_dir=<path_to_AArch64cryptolib> build
> + export
> +
> PKG_CONFIG_PATH=<path_to_AArch64cryptolib>/pkgconfig/:$PKG_CONFI
> G_PATH
> +
> +* Build DPDK:
> +
> +.. code-block:: console
> +
> + meson build
> ninja -C build
>
> The corresponding device can be created only if the following features
> --
> 2.17.1
Acked-by: Ruifeng Wang <ruifeng.wang@arm.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build
2020-11-05 15:33 [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Dharmik Thakkar
2020-11-05 15:33 ` [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD Dharmik Thakkar
@ 2020-11-05 16:11 ` Bruce Richardson
2020-11-13 9:29 ` Thomas Monjalon
2020-11-06 1:40 ` Ruifeng Wang
2 siblings, 1 reply; 7+ messages in thread
From: Bruce Richardson @ 2020-11-05 16:11 UTC (permalink / raw)
To: Dharmik Thakkar; +Cc: Ruifeng Wang, dev, nd
On Thu, Nov 05, 2020 at 09:33:15AM -0600, Dharmik Thakkar wrote:
> With pkg-config support available within AArch64crypto library,
> meson option 'armv8_crypto_dir' can be removed.
> PKG_CONFIG_PATH environment variable should be set appropriately
> to use the crypto library.
>
> Refer [1] for build instructions.
>
> [1]
> https://doc.dpdk.org/guides/cryptodevs/armv8.html
>
> Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
> Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
> ---
> drivers/crypto/armv8/meson.build | 19 ++++---------------
> meson_options.txt | 2 --
> 2 files changed, 4 insertions(+), 17 deletions(-)
>
This simplification is great to see, thanks.
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build
2020-11-05 16:11 ` [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Bruce Richardson
@ 2020-11-13 9:29 ` Thomas Monjalon
2020-11-13 9:39 ` Thomas Monjalon
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Monjalon @ 2020-11-13 9:29 UTC (permalink / raw)
To: Dharmik Thakkar
Cc: Ruifeng Wang, dev, nd, Bruce Richardson, Nicolas Chautru,
Liron Himi, Zyta Szpak, Michael Shamis
05/11/2020 17:11, Bruce Richardson:
> On Thu, Nov 05, 2020 at 09:33:15AM -0600, Dharmik Thakkar wrote:
> > With pkg-config support available within AArch64crypto library,
> > meson option 'armv8_crypto_dir' can be removed.
> > PKG_CONFIG_PATH environment variable should be set appropriately
> > to use the crypto library.
> >
> > Refer [1] for build instructions.
> >
> > [1]
> > https://doc.dpdk.org/guides/cryptodevs/armv8.html
> >
> > Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> > Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
> > Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
> >
> This simplification is great to see, thanks.
>
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Series applied, thanks
Next meson options to be removed please:
- flexran_sdk
- lib_musdk_dir
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build
2020-11-13 9:29 ` Thomas Monjalon
@ 2020-11-13 9:39 ` Thomas Monjalon
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2020-11-13 9:39 UTC (permalink / raw)
To: Dharmik Thakkar; +Cc: Ruifeng Wang, dev, nd, Bruce Richardson, david.marchand
13/11/2020 10:29, Thomas Monjalon:
> 05/11/2020 17:11, Bruce Richardson:
> > On Thu, Nov 05, 2020 at 09:33:15AM -0600, Dharmik Thakkar wrote:
> > > With pkg-config support available within AArch64crypto library,
> > > meson option 'armv8_crypto_dir' can be removed.
> > > PKG_CONFIG_PATH environment variable should be set appropriately
> > > to use the crypto library.
> > >
> > > Refer [1] for build instructions.
> > >
> > > [1]
> > > https://doc.dpdk.org/guides/cryptodevs/armv8.html
> > >
> > > Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> > > Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
> > > Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
> > >
> > This simplification is great to see, thanks.
> >
> > Acked-by: Bruce Richardson <bruce.richardson@intel.com>
>
> Series applied, thanks
Note: doc and code changes should be atomic,
that's why they are squashed when merging.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build
2020-11-05 15:33 [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Dharmik Thakkar
2020-11-05 15:33 ` [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD Dharmik Thakkar
2020-11-05 16:11 ` [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Bruce Richardson
@ 2020-11-06 1:40 ` Ruifeng Wang
2 siblings, 0 replies; 7+ messages in thread
From: Ruifeng Wang @ 2020-11-06 1:40 UTC (permalink / raw)
To: Dharmik Thakkar, Bruce Richardson; +Cc: dev, nd, Dharmik Thakkar, nd
> -----Original Message-----
> From: Dharmik Thakkar <dharmik.thakkar@arm.com>
> Sent: Thursday, November 5, 2020 11:33 PM
> To: Ruifeng Wang <Ruifeng.Wang@arm.com>; Bruce Richardson
> <bruce.richardson@intel.com>
> Cc: dev@dpdk.org; nd <nd@arm.com>; Dharmik Thakkar
> <Dharmik.Thakkar@arm.com>
> Subject: [PATCH 1/2] crypto/armv8: update meson build
>
> With pkg-config support available within AArch64crypto library, meson option
> 'armv8_crypto_dir' can be removed.
> PKG_CONFIG_PATH environment variable should be set appropriately to use
> the crypto library.
>
> Refer [1] for build instructions.
>
> [1]
> https://doc.dpdk.org/guides/cryptodevs/armv8.html
>
> Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
> Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
> ---
> drivers/crypto/armv8/meson.build | 19 ++++---------------
> meson_options.txt | 2 --
> 2 files changed, 4 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/crypto/armv8/meson.build
> b/drivers/crypto/armv8/meson.build
> index c445c5bd3dfd..3289a2adcac5 100644
> --- a/drivers/crypto/armv8/meson.build
> +++ b/drivers/crypto/armv8/meson.build
> @@ -1,24 +1,13 @@
> # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019 Arm Limited
>
> -path = get_option('armv8_crypto_dir')
> -if path == ''
> +dep = dependency('libAArch64crypto', required: false) if not
> +dep.found()
> build = false
> - reason = 'missing dependency, "armv8_crypto"'
> + reason = 'missing dependency, "libAArch64crypto"'
> subdir_done()
> endif
>
> -inc_dir = path
> -
> -lib = cc.find_library('libAArch64crypto', dirs: [path], required: false) -if not
> lib.found()
> - build = false
> - reason = 'missing dependency, "AArch64crypto"'
> - subdir_done()
> -else
> - ext_deps += lib
> - includes += include_directories(inc_dir)
> -endif
> -
> +ext_deps += dep
> deps += ['bus_vdev']
> sources = files('rte_armv8_pmd.c', 'rte_armv8_pmd_ops.c') diff --git
> a/meson_options.txt b/meson_options.txt index
> 9bf18ab6b1c9..e384e6dbb29e 100644
> --- a/meson_options.txt
> +++ b/meson_options.txt
> @@ -1,7 +1,5 @@
> # Please keep these options sorted alphabetically.
>
> -option('armv8_crypto_dir', type: 'string', value: '',
> - description: 'path to the armv8_crypto library installation directory')
> option('disable_drivers', type: 'string', value: '',
> description: 'Comma-separated list of drivers to explicitly disable.')
> option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>',
> --
> 2.17.1
Acked-by: Ruifeng Wang <ruifeng.wang@arm.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-11-13 9:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-05 15:33 [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Dharmik Thakkar
2020-11-05 15:33 ` [dpdk-dev] [PATCH 2/2] doc: update build guide for armv8 crypto PMD Dharmik Thakkar
2020-11-06 1:39 ` Ruifeng Wang
2020-11-05 16:11 ` [dpdk-dev] [PATCH 1/2] crypto/armv8: update meson build Bruce Richardson
2020-11-13 9:29 ` Thomas Monjalon
2020-11-13 9:39 ` Thomas Monjalon
2020-11-06 1:40 ` Ruifeng Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).