DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC
@ 2019-01-09  9:32 Yongseok Koh
  2019-01-09  9:43 ` Jerin Jacob Kollanukkaran
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Yongseok Koh @ 2019-01-09  9:32 UTC (permalink / raw)
  To: thomas; +Cc: dev, shahafs

BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.

http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview

Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
---

This patch should be applied after
	"config: gather options for dlopen mlx dependency" [1]

[1] http://patches.dpdk.org/patch/49502

 config/defconfig_arm64-bluefield-linuxapp-gcc | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc

diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc b/config/defconfig_arm64-bluefield-linuxapp-gcc
new file mode 100644
index 0000000000..8494a33641
--- /dev/null
+++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
@@ -0,0 +1,24 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright 2019 Mellanox Technologies, Ltd
+#
+
+#include "defconfig_arm64-armv8a-linuxapp-gcc"
+
+# Mellanox BlueField
+CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
+
+CONFIG_RTE_MAX_NUMA_NODES=1
+CONFIG_RTE_CACHE_LINE_SIZE=64
+
+# UMA architecture
+CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
+CONFIG_RTE_LIBRTE_VHOST_NUMA=n
+
+CONFIG_RTE_EAL_IGB_UIO=n
+CONFIG_RTE_EAL_VFIO=n
+CONFIG_RTE_KNI_KMOD=n
+
+# PMD for ConnectX-5
+CONFIG_RTE_LIBRTE_MLX5_PMD=y
+CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
+CONFIG_RTE_IBVERBS_LINK_DLOPEN=n
-- 
2.11.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC
  2019-01-09  9:32 [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC Yongseok Koh
@ 2019-01-09  9:43 ` Jerin Jacob Kollanukkaran
  2019-01-09  9:51   ` Yongseok Koh
  2019-01-09 12:34 ` [dpdk-dev] [PATCH v2] " Yongseok Koh
  2019-01-10 18:39 ` [dpdk-dev] [PATCH v3] " Yongseok Koh
  2 siblings, 1 reply; 14+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-01-09  9:43 UTC (permalink / raw)
  To: thomas, yskoh; +Cc: shahafs, dev

On Wed, 2019-01-09 at 01:32 -0800, Yongseok Koh wrote:
> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single
> device.
> 
> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview
> 
> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> ---
> 
> This patch should be applied after
> 	"config: gather options for dlopen mlx dependency" [1]
> 
> [1] http://patches.dpdk.org/patch/49502
> 
>  config/defconfig_arm64-bluefield-linuxapp-gcc | 24 

Please add meson support together in this patch.


> ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>  create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
> 
> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
> b/config/defconfig_arm64-bluefield-linuxapp-gcc
> new file mode 100644
> index 0000000000..8494a33641
> --- /dev/null
> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
> @@ -0,0 +1,24 @@
> +# SPDX-License-Identifier: BSD-3-Clause
> +# Copyright 2019 Mellanox Technologies, Ltd
> +#
> +
> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
> +
> +# Mellanox BlueField
> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
> +
> +CONFIG_RTE_MAX_NUMA_NODES=1
> +CONFIG_RTE_CACHE_LINE_SIZE=64
> +
> +# UMA architecture
> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
> +
> +CONFIG_RTE_EAL_IGB_UIO=n
> +CONFIG_RTE_EAL_VFIO=n
> +CONFIG_RTE_KNI_KMOD=n

Does this SoC has external PCIe support? If so, VFIO may be required.


> +
> +# PMD for ConnectX-5
> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
> +CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
> +CONFIG_RTE_IBVERBS_LINK_DLOPEN=n

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC
  2019-01-09  9:43 ` Jerin Jacob Kollanukkaran
@ 2019-01-09  9:51   ` Yongseok Koh
  2019-01-09 10:00     ` [dpdk-dev] [EXT] " Jerin Jacob Kollanukkaran
  0 siblings, 1 reply; 14+ messages in thread
From: Yongseok Koh @ 2019-01-09  9:51 UTC (permalink / raw)
  To: Jerin Jacob Kollanukkaran; +Cc: Thomas Monjalon, Shahaf Shuler, dev



> On Jan 9, 2019, at 1:43 AM, Jerin Jacob Kollanukkaran <jerinj@marvell.com> wrote:
> 
> On Wed, 2019-01-09 at 01:32 -0800, Yongseok Koh wrote:
>> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
>> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single
>> device.
>> 
>> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview
>> 
>> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
>> ---
>> 
>> This patch should be applied after
>> 	"config: gather options for dlopen mlx dependency" [1]
>> 
>> [1] https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fpatches.dpdk.org%2Fpatch%2F49502&amp;data=02%7C01%7Cyskoh%40mellanox.com%7C3ff3a3dad47a470bb15d08d67616f2c9%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636826238291242450&amp;sdata=f%2B0Gk34YBuoBRCn%2BMI6p1KLBnqlBWpq4rYyTwg2MsBo%3D&amp;reserved=0
>> 
>> config/defconfig_arm64-bluefield-linuxapp-gcc | 24 
> 
> Please add meson support together in this patch.

Like I mentioned in the other mail, this CPU has Implementor_ID=0x41(ARM)
and Part_Number=0xd08(Cortex-A72) for now. So, there's nothing to add for
meson build.


>> ++++++++++++++++++++++++
>> 1 file changed, 24 insertions(+)
>> create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
>> 
>> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
>> b/config/defconfig_arm64-bluefield-linuxapp-gcc
>> new file mode 100644
>> index 0000000000..8494a33641
>> --- /dev/null
>> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
>> @@ -0,0 +1,24 @@
>> +# SPDX-License-Identifier: BSD-3-Clause
>> +# Copyright 2019 Mellanox Technologies, Ltd
>> +#
>> +
>> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
>> +
>> +# Mellanox BlueField
>> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
>> +
>> +CONFIG_RTE_MAX_NUMA_NODES=1
>> +CONFIG_RTE_CACHE_LINE_SIZE=64
>> +
>> +# UMA architecture
>> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
>> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
>> +
>> +CONFIG_RTE_EAL_IGB_UIO=n
>> +CONFIG_RTE_EAL_VFIO=n
>> +CONFIG_RTE_KNI_KMOD=n
> 
> Does this SoC has external PCIe support? If so, VFIO may be required.

That's right. Considering a case where other NIC is attached, it would be better to delete these three lines.
Will send out v2.

Thanks,
Yongseok


>> +
>> +# PMD for ConnectX-5
>> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
>> +CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
>> +CONFIG_RTE_IBVERBS_LINK_DLOPEN=n

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [EXT] Re: [PATCH] config: add Mellanox BlueField ARMv8 SoC
  2019-01-09  9:51   ` Yongseok Koh
@ 2019-01-09 10:00     ` Jerin Jacob Kollanukkaran
  0 siblings, 0 replies; 14+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-01-09 10:00 UTC (permalink / raw)
  To: yskoh; +Cc: shahafs, thomas, dev

On Wed, 2019-01-09 at 09:51 +0000, Yongseok Koh wrote:
> External Email
> 
> -------------------------------------------------------------------
> ---
> 
> 
> > On Jan 9, 2019, at 1:43 AM, Jerin Jacob Kollanukkaran <
> > jerinj@marvell.com> wrote:
> > 
> > On Wed, 2019-01-09 at 01:32 -0800, Yongseok Koh wrote:
> > > BlueField is Mellanox's new SoC based on ARMv8. BlueField
> > > integrates
> > > Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a
> > > single
> > > device.
> > > 
> > > http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview
> > > 
> > > Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> > > ---
> > > 
> > > This patch should be applied after
> > > 	"config: gather options for dlopen mlx dependency" [1]
> > > 
> > > [1] 
> > > https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fpatches.dpdk.org%2Fpatch%2F49502&amp;data=02%7C01%7Cyskoh%40mellanox.com%7C3ff3a3dad47a470bb15d08d67616f2c9%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636826238291242450&amp;sdata=f%2B0Gk34YBuoBRCn%2BMI6p1KLBnqlBWpq4rYyTwg2MsBo%3D&amp;reserved=0
> > > 
> > > config/defconfig_arm64-bluefield-linuxapp-gcc | 24 
> > 
> > Please add meson support together in this patch.
> 
> Like I mentioned in the other mail, this CPU has
> Implementor_ID=0x41(ARM)
> and Part_Number=0xd08(Cortex-A72) for now. So, there's nothing to add
> for
> meson build.

Thats with the new changes. Right? I will respond that in other email.


> 
> 
> > > ++++++++++++++++++++++++
> > > 1 file changed, 24 insertions(+)
> > > create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
> > > 
> > > diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
> > > b/config/defconfig_arm64-bluefield-linuxapp-gcc
> > > new file mode 100644
> > > index 0000000000..8494a33641
> > > --- /dev/null
> > > +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
> > > @@ -0,0 +1,24 @@
> > > +# SPDX-License-Identifier: BSD-3-Clause
> > > +# Copyright 2019 Mellanox Technologies, Ltd
> > > +#
> > > +
> > > +#include "defconfig_arm64-armv8a-linuxapp-gcc"
> > > +
> > > +# Mellanox BlueField
> > > +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
> > > +
> > > +CONFIG_RTE_MAX_NUMA_NODES=1
> > > +CONFIG_RTE_CACHE_LINE_SIZE=64
> > > +
> > > +# UMA architecture
> > > +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
> > > +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
> > > +
> > > +CONFIG_RTE_EAL_IGB_UIO=n
> > > +CONFIG_RTE_EAL_VFIO=n
> > > +CONFIG_RTE_KNI_KMOD=n
> > 
> > Does this SoC has external PCIe support? If so, VFIO may be
> > required.
> 
> That's right. Considering a case where other NIC is attached, it
> would be better to delete these three lines.
> Will send out v2.

OK.


> 
> Thanks,
> Yongseok
> 
> 
> > > +
> > > +# PMD for ConnectX-5
> > > +CONFIG_RTE_LIBRTE_MLX5_PMD=y
> > > +CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
> > > +CONFIG_RTE_IBVERBS_LINK_DLOPEN=n

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [dpdk-dev] [PATCH v2] config: add Mellanox BlueField ARMv8 SoC
  2019-01-09  9:32 [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC Yongseok Koh
  2019-01-09  9:43 ` Jerin Jacob Kollanukkaran
@ 2019-01-09 12:34 ` Yongseok Koh
  2019-01-09 13:08   ` Jerin Jacob Kollanukkaran
  2019-01-10 18:39 ` [dpdk-dev] [PATCH v3] " Yongseok Koh
  2 siblings, 1 reply; 14+ messages in thread
From: Yongseok Koh @ 2019-01-09 12:34 UTC (permalink / raw)
  To: thomas; +Cc: dev, shahafs

BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.

http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview

Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
---
 config/defconfig_arm64-bluefield-linuxapp-gcc | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc

diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc b/config/defconfig_arm64-bluefield-linuxapp-gcc
new file mode 100644
index 0000000000..6d7338e54f
--- /dev/null
+++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
@@ -0,0 +1,20 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright 2019 Mellanox Technologies, Ltd
+#
+
+#include "defconfig_arm64-armv8a-linuxapp-gcc"
+
+# Mellanox BlueField
+CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
+
+CONFIG_RTE_MAX_NUMA_NODES=1
+CONFIG_RTE_CACHE_LINE_SIZE=64
+
+# UMA architecture
+CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
+CONFIG_RTE_LIBRTE_VHOST_NUMA=n
+
+# PMD for ConnectX-5
+CONFIG_RTE_LIBRTE_MLX5_PMD=y
+CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
+CONFIG_RTE_IBVERBS_LINK_DLOPEN=n
-- 
2.11.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v2] config: add Mellanox BlueField ARMv8 SoC
  2019-01-09 12:34 ` [dpdk-dev] [PATCH v2] " Yongseok Koh
@ 2019-01-09 13:08   ` Jerin Jacob Kollanukkaran
  0 siblings, 0 replies; 14+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-01-09 13:08 UTC (permalink / raw)
  To: thomas, yskoh; +Cc: shahafs, dev

On Wed, 2019-01-09 at 04:34 -0800, Yongseok Koh wrote:
> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single
> device.
> 
> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview
> 
> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> ---
>  config/defconfig_arm64-bluefield-linuxapp-gcc | 20
> ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>  create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc

It would be nice to mention v1..v2 delta changes:

Acked-by: Jerin Jacob <jerinj@marvell.com>


> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
> b/config/defconfig_arm64-bluefield-linuxapp-gcc
> new file mode 100644
> index 0000000000..6d7338e54f
> --- /dev/null
> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
> @@ -0,0 +1,20 @@
> +# SPDX-License-Identifier: BSD-3-Clause
> +# Copyright 2019 Mellanox Technologies, Ltd
> +#
> +
> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
> +
> +# Mellanox BlueField
> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
> +
> +CONFIG_RTE_MAX_NUMA_NODES=1
> +CONFIG_RTE_CACHE_LINE_SIZE=64
> +
> +# UMA architecture
> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
> +
> +# PMD for ConnectX-5
> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
> +CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
> +CONFIG_RTE_IBVERBS_LINK_DLOPEN=n

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-09  9:32 [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC Yongseok Koh
  2019-01-09  9:43 ` Jerin Jacob Kollanukkaran
  2019-01-09 12:34 ` [dpdk-dev] [PATCH v2] " Yongseok Koh
@ 2019-01-10 18:39 ` Yongseok Koh
  2019-01-11  2:47   ` Gavin Hu (Arm Technology China)
                     ` (2 more replies)
  2 siblings, 3 replies; 14+ messages in thread
From: Yongseok Koh @ 2019-01-10 18:39 UTC (permalink / raw)
  To: thomas; +Cc: dev, shahafs, jerinj

BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.

http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview

Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
---

v3:
* remove redundant mlx5 config items

v2:
* remove config items which can be used for external PCIe device

 config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc

diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc b/config/defconfig_arm64-bluefield-linuxapp-gcc
new file mode 100644
index 0000000000..dd252c0e47
--- /dev/null
+++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
@@ -0,0 +1,18 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright 2019 Mellanox Technologies, Ltd
+#
+
+#include "defconfig_arm64-armv8a-linuxapp-gcc"
+
+# Mellanox BlueField
+CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
+
+CONFIG_RTE_MAX_NUMA_NODES=1
+CONFIG_RTE_CACHE_LINE_SIZE=64
+
+# UMA architecture
+CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
+CONFIG_RTE_LIBRTE_VHOST_NUMA=n
+
+# PMD for ConnectX-5
+CONFIG_RTE_LIBRTE_MLX5_PMD=y
-- 
2.11.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-10 18:39 ` [dpdk-dev] [PATCH v3] " Yongseok Koh
@ 2019-01-11  2:47   ` Gavin Hu (Arm Technology China)
  2019-01-11  7:50     ` Yongseok Koh
  2019-01-14  6:12   ` Honnappa Nagarahalli
  2019-01-14 10:47   ` Thomas Monjalon
  2 siblings, 1 reply; 14+ messages in thread
From: Gavin Hu (Arm Technology China) @ 2019-01-11  2:47 UTC (permalink / raw)
  To: yskoh, thomas; +Cc: dev, shahafs, jerinj


> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Yongseok Koh
> Sent: Friday, January 11, 2019 2:39 AM
> To: thomas@monjalon.net
> Cc: dev@dpdk.org; shahafs@mellanox.com; jerinj@marvell.com
> Subject: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
>
> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single
> device.
>
> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=s
> oc_overview
>
> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> ---
>
> v3:
> * remove redundant mlx5 config items
>
> v2:
> * remove config items which can be used for external PCIe device
>
>  config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>  create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
>
> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
> b/config/defconfig_arm64-bluefield-linuxapp-gcc
> new file mode 100644
> index 0000000000..dd252c0e47
> --- /dev/null
> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
> @@ -0,0 +1,18 @@
> +# SPDX-License-Identifier: BSD-3-Clause
> +# Copyright 2019 Mellanox Technologies, Ltd
> +#
> +
> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
> +
> +# Mellanox BlueField
> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
> +
> +CONFIG_RTE_MAX_NUMA_NODES=1
> +CONFIG_RTE_CACHE_LINE_SIZE=64
> +
> +# UMA architecture
> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
> +
> +# PMD for ConnectX-5
> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
> --
> 2.11.0

This is ok for make builds, meson build is also required, I think.

IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-11  2:47   ` Gavin Hu (Arm Technology China)
@ 2019-01-11  7:50     ` Yongseok Koh
  0 siblings, 0 replies; 14+ messages in thread
From: Yongseok Koh @ 2019-01-11  7:50 UTC (permalink / raw)
  To: Gavin Hu (Arm Technology China)
  Cc: Thomas Monjalon, dev, Shahaf Shuler, jerinj


> On Jan 10, 2019, at 6:47 PM, Gavin Hu (Arm Technology China) <Gavin.Hu@arm.com> wrote:
> 
> 
>> -----Original Message-----
>> From: dev <dev-bounces@dpdk.org> On Behalf Of Yongseok Koh
>> Sent: Friday, January 11, 2019 2:39 AM
>> To: thomas@monjalon.net
>> Cc: dev@dpdk.org; shahafs@mellanox.com; jerinj@marvell.com
>> Subject: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
>> 
>> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
>> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single
>> device.
>> 
>> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=s
>> oc_overview
>> 
>> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
>> ---
>> 
>> v3:
>> * remove redundant mlx5 config items
>> 
>> v2:
>> * remove config items which can be used for external PCIe device
>> 
>> config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++
>> 1 file changed, 18 insertions(+)
>> create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
>> 
>> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
>> b/config/defconfig_arm64-bluefield-linuxapp-gcc
>> new file mode 100644
>> index 0000000000..dd252c0e47
>> --- /dev/null
>> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
>> @@ -0,0 +1,18 @@
>> +# SPDX-License-Identifier: BSD-3-Clause
>> +# Copyright 2019 Mellanox Technologies, Ltd
>> +#
>> +
>> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
>> +
>> +# Mellanox BlueField
>> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
>> +
>> +CONFIG_RTE_MAX_NUMA_NODES=1
>> +CONFIG_RTE_CACHE_LINE_SIZE=64
>> +
>> +# UMA architecture
>> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
>> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
>> +
>> +# PMD for ConnectX-5
>> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
>> --
>> 2.11.0
> 
> This is ok for make builds, meson build is also required, I think.

Thanks for the comment, Gavin.
Due to an issue [1], I will manage meson build by a separate patch [2].
Discussion is ongoing.

[1] https://mails.dpdk.org/archives/dev/2019-January/122441.html
[2] https://mails.dpdk.org/archives/dev/2019-January/thread.html#122620

Thanks,
Yongseok

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-10 18:39 ` [dpdk-dev] [PATCH v3] " Yongseok Koh
  2019-01-11  2:47   ` Gavin Hu (Arm Technology China)
@ 2019-01-14  6:12   ` Honnappa Nagarahalli
  2019-01-14  6:13     ` Honnappa Nagarahalli
  2019-01-14 10:47   ` Thomas Monjalon
  2 siblings, 1 reply; 14+ messages in thread
From: Honnappa Nagarahalli @ 2019-01-14  6:12 UTC (permalink / raw)
  To: yskoh, thomas; +Cc: dev, shahafs, jerinj, Honnappa Nagarahalli, nd, nd

> 
> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
                                                                              ^^^^^^
Above should be changed to armv8

> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.
> 
> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=s
> oc_overview
> 
> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> ---
> 
> v3:
> * remove redundant mlx5 config items
> 
> v2:
> * remove config items which can be used for external PCIe device
> 
>  config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>  create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
> 
> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
> b/config/defconfig_arm64-bluefield-linuxapp-gcc
> new file mode 100644
> index 0000000000..dd252c0e47
> --- /dev/null
> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
> @@ -0,0 +1,18 @@
> +# SPDX-License-Identifier: BSD-3-Clause # Copyright 2019 Mellanox
> +Technologies, Ltd #
> +
> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
> +
> +# Mellanox BlueField
> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
> +
> +CONFIG_RTE_MAX_NUMA_NODES=1
> +CONFIG_RTE_CACHE_LINE_SIZE=64
> +
> +# UMA architecture
> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
> +
> +# PMD for ConnectX-5
> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
> --
> 2.11.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-14  6:12   ` Honnappa Nagarahalli
@ 2019-01-14  6:13     ` Honnappa Nagarahalli
  2019-01-14 10:11       ` Yongseok Koh
  0 siblings, 1 reply; 14+ messages in thread
From: Honnappa Nagarahalli @ 2019-01-14  6:13 UTC (permalink / raw)
  To: yskoh, thomas; +Cc: dev, shahafs, jerinj, nd, nd

Similarly, the commit heading subject line also needs to change.

> 
> >
> > BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
>                                                                               ^^^^^^ Above should be
> changed to armv8
> 
> > Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.
> >
> >
> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=s
> > oc_overview
> >
> > Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
> > ---
> >
> > v3:
> > * remove redundant mlx5 config items
> >
> > v2:
> > * remove config items which can be used for external PCIe device
> >
> >  config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> >  create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
> >
> > diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
> > b/config/defconfig_arm64-bluefield-linuxapp-gcc
> > new file mode 100644
> > index 0000000000..dd252c0e47
> > --- /dev/null
> > +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
> > @@ -0,0 +1,18 @@
> > +# SPDX-License-Identifier: BSD-3-Clause # Copyright 2019 Mellanox
> > +Technologies, Ltd #
> > +
> > +#include "defconfig_arm64-armv8a-linuxapp-gcc"
> > +
> > +# Mellanox BlueField
> > +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
> > +
> > +CONFIG_RTE_MAX_NUMA_NODES=1
> > +CONFIG_RTE_CACHE_LINE_SIZE=64
> > +
> > +# UMA architecture
> > +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
> > +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
> > +
> > +# PMD for ConnectX-5
> > +CONFIG_RTE_LIBRTE_MLX5_PMD=y
> > --
> > 2.11.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-14  6:13     ` Honnappa Nagarahalli
@ 2019-01-14 10:11       ` Yongseok Koh
  2019-01-14 10:25         ` Thomas Monjalon
  0 siblings, 1 reply; 14+ messages in thread
From: Yongseok Koh @ 2019-01-14 10:11 UTC (permalink / raw)
  To: Honnappa Nagarahalli; +Cc: Thomas Monjalon, dev, Shahaf Shuler, jerinj, nd

> On Jan 13, 2019, at 10:13 PM, Honnappa Nagarahalli <Honnappa.Nagarahalli@arm.com> wrote:
> 
> Similarly, the commit heading subject line also needs to change.
> 
>> 
>>> 
>>> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
>>                                                                              ^^^^^^ Above should be
>> changed to armv8

Good to know that, thanks, Honnappa.

Thomas, will you take care of it when you merge (hope you will :-)?
Shall I send out a new version?

Thanks,
Yongseok
>> 
>>> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.
>>> 
>>> 
>> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=s
>>> oc_overview
>>> 
>>> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
>>> ---
>>> 
>>> v3:
>>> * remove redundant mlx5 config items
>>> 
>>> v2:
>>> * remove config items which can be used for external PCIe device
>>> 
>>> config/defconfig_arm64-bluefield-linuxapp-gcc | 18 ++++++++++++++++++
>>> 1 file changed, 18 insertions(+)
>>> create mode 100644 config/defconfig_arm64-bluefield-linuxapp-gcc
>>> 
>>> diff --git a/config/defconfig_arm64-bluefield-linuxapp-gcc
>>> b/config/defconfig_arm64-bluefield-linuxapp-gcc
>>> new file mode 100644
>>> index 0000000000..dd252c0e47
>>> --- /dev/null
>>> +++ b/config/defconfig_arm64-bluefield-linuxapp-gcc
>>> @@ -0,0 +1,18 @@
>>> +# SPDX-License-Identifier: BSD-3-Clause # Copyright 2019 Mellanox
>>> +Technologies, Ltd #
>>> +
>>> +#include "defconfig_arm64-armv8a-linuxapp-gcc"
>>> +
>>> +# Mellanox BlueField
>>> +CONFIG_RTE_ARCH_ARM_TUNE="cortex-a72"
>>> +
>>> +CONFIG_RTE_MAX_NUMA_NODES=1
>>> +CONFIG_RTE_CACHE_LINE_SIZE=64
>>> +
>>> +# UMA architecture
>>> +CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
>>> +CONFIG_RTE_LIBRTE_VHOST_NUMA=n
>>> +
>>> +# PMD for ConnectX-5
>>> +CONFIG_RTE_LIBRTE_MLX5_PMD=y
>>> --
>>> 2.11.0
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-14 10:11       ` Yongseok Koh
@ 2019-01-14 10:25         ` Thomas Monjalon
  0 siblings, 0 replies; 14+ messages in thread
From: Thomas Monjalon @ 2019-01-14 10:25 UTC (permalink / raw)
  To: Yongseok Koh; +Cc: dev, Honnappa Nagarahalli, Shahaf Shuler, jerinj, nd

14/01/2019 11:11, Yongseok Koh:
> > On Jan 13, 2019, at 10:13 PM, Honnappa Nagarahalli <Honnappa.Nagarahalli@arm.com> wrote:
> > 
> > Similarly, the commit heading subject line also needs to change.
> > 
> >> 
> >>> 
> >>> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
> >>                                                                              ^^^^^^ Above should be
> >> changed to armv8
> 
> Good to know that, thanks, Honnappa.
> 
> Thomas, will you take care of it when you merge (hope you will :-)?
> Shall I send out a new version?

Yes, that's fine, I will take care.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [dpdk-dev] [PATCH v3] config: add Mellanox BlueField ARMv8 SoC
  2019-01-10 18:39 ` [dpdk-dev] [PATCH v3] " Yongseok Koh
  2019-01-11  2:47   ` Gavin Hu (Arm Technology China)
  2019-01-14  6:12   ` Honnappa Nagarahalli
@ 2019-01-14 10:47   ` Thomas Monjalon
  2 siblings, 0 replies; 14+ messages in thread
From: Thomas Monjalon @ 2019-01-14 10:47 UTC (permalink / raw)
  To: Yongseok Koh; +Cc: dev, shahafs, jerinj, honnappa.nagarahalli

10/01/2019 19:39, Yongseok Koh:
> BlueField is Mellanox's new SoC based on ARMv8. BlueField integrates
> Mellanox ConnectX-5 interconnect and Cortex-A72 cores into a single device.
> 
> http://www.mellanox.com/page/products_dyn?product_family=256&mtag=soc_overview
> 
> Signed-off-by: Yongseok Koh <yskoh@mellanox.com>

Applied with armv8 wording, thanks

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2019-01-14 10:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-09  9:32 [dpdk-dev] [PATCH] config: add Mellanox BlueField ARMv8 SoC Yongseok Koh
2019-01-09  9:43 ` Jerin Jacob Kollanukkaran
2019-01-09  9:51   ` Yongseok Koh
2019-01-09 10:00     ` [dpdk-dev] [EXT] " Jerin Jacob Kollanukkaran
2019-01-09 12:34 ` [dpdk-dev] [PATCH v2] " Yongseok Koh
2019-01-09 13:08   ` Jerin Jacob Kollanukkaran
2019-01-10 18:39 ` [dpdk-dev] [PATCH v3] " Yongseok Koh
2019-01-11  2:47   ` Gavin Hu (Arm Technology China)
2019-01-11  7:50     ` Yongseok Koh
2019-01-14  6:12   ` Honnappa Nagarahalli
2019-01-14  6:13     ` Honnappa Nagarahalli
2019-01-14 10:11       ` Yongseok Koh
2019-01-14 10:25         ` Thomas Monjalon
2019-01-14 10:47   ` Thomas Monjalon

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).