[v4] common/cnxk: allow enabling IOVA field in mbuf
Checks
Commit Message
The value of RTE_IOVA_IN_MBUF has always been disabled on CNXK
platforms, as IOVA in the mbuf is unnecessary. This update changes that
behavior to respect the value set by the user. A warning message will be
printed if the build is configured to enable IOVA on the CNXK platform.
Signed-off-by: Shijith Thotton <sthotton@marvell.com>
---
v4:
- Keep trailing comma.
v3:
- Updated documentation.
v2:
- Don't override the default value of RTE_IOVA_IN_MBUF in CNXK platform.
- Print a warning message if IOVA in mbuf is enabled on CNXK platform.
config/arm/meson.build | 4 ----
doc/guides/platform/cnxk.rst | 13 +++++++------
drivers/common/cnxk/meson.build | 7 +++++++
3 files changed, 14 insertions(+), 10 deletions(-)
Comments
On Mon, Oct 28, 2024 at 3:13 PM Shijith Thotton <sthotton@marvell.com> wrote:
>
> The value of RTE_IOVA_IN_MBUF has always been disabled on CNXK
> platforms, as IOVA in the mbuf is unnecessary. This update changes that
> behavior to respect the value set by the user. A warning message will be
> printed if the build is configured to enable IOVA on the CNXK platform.
>
> Signed-off-by: Shijith Thotton <sthotton@marvell.com>
Applied to dpdk-next-net-mrvl/for-main. Thanks
@@ -460,9 +460,6 @@ soc_cn9k = {
'implementer': '0x43',
'part_number': '0xb2',
'numa': false,
- 'flags': [
- ['RTE_IOVA_IN_MBUF', 0]
- ]
}
soc_cn10k = {
@@ -472,7 +469,6 @@ soc_cn10k = {
['RTE_MAX_LCORE', 24],
['RTE_MAX_NUMA_NODES', 1],
['RTE_MEMPOOL_ALIGN', 128],
- ['RTE_IOVA_IN_MBUF', 0]
],
'part_number': '0xd49',
'extra_march_features': ['crypto'],
@@ -587,8 +587,9 @@ Compile DPDK
DPDK may be compiled either natively on OCTEON CN9K/CN10K platform or cross-compiled on
an x86 based platform.
-Meson build option ``enable_iova_as_pa`` is disabled on CNXK platforms.
-So only PMDs supporting this option are enabled on CNXK platform builds.
+The Meson build option ``enable_iova_as_pa`` should be set to false because, on
+CNXK platforms, IOVA is same as the virtual address. Disabling the iova field
+in the mbuf frees it up to be used as a dynamic field.
Native Compilation
~~~~~~~~~~~~~~~~~~
@@ -599,14 +600,14 @@ CN9K:
.. code-block:: console
- meson setup -Dplatform=cn9k build
+ meson setup -Dplatform=cn9k -Denable_iova_as_pa=false build
ninja -C build
CN10K:
.. code-block:: console
- meson setup -Dplatform=cn10k build
+ meson setup -Dplatform=cn10k -Denable_iova_as_pa=false build
ninja -C build
Cross Compilation
@@ -618,14 +619,14 @@ CN9K:
.. code-block:: console
- meson setup build --cross-file config/arm/arm64_cn9k_linux_gcc
+ meson setup -Denable_iova_as_pa=false build --cross-file config/arm/arm64_cn9k_linux_gcc
ninja -C build
CN10K:
.. code-block:: console
- meson setup build --cross-file config/arm/arm64_cn10k_linux_gcc
+ meson setup -Denable_iova_as_pa=false build --cross-file config/arm/arm64_cn10k_linux_gcc
ninja -C build
.. note::
@@ -108,4 +108,11 @@ deps += ['bus_pci', 'net', 'telemetry']
require_iova_in_mbuf = false
+cnxk_socs = ['cn9k', 'cn10k', 'cn20k']
+
+if dpdk_conf.get('RTE_IOVA_IN_MBUF') == 1 and soc_type in cnxk_socs
+ warning('IOVA in mbuf is not needed for cnxk drivers on cnxk platforms. ' +
+ 'Set the enable_iova_as_pa option to false to save mbuf space.')
+endif
+
annotate_locks = false