1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2019 Marvell International Ltd.
4 OCTEON TX2 NPA Mempool Driver
5 =============================
7 The OCTEON TX2 NPA PMD (**librte_mempool_octeontx2**) provides mempool
8 driver support for the integrated mempool device found in **Marvell OCTEON TX2** SoC family.
10 More information about OCTEON TX2 SoC can be found at `Marvell Official Website
11 <https://www.marvell.com/embedded-processors/infrastructure-processors/>`_.
16 OCTEON TX2 NPA PMD supports:
21 - Ethdev Rx buffer allocation in HW to save CPU cycles in the Rx path.
22 - Ethdev Tx buffer recycling in HW to save CPU cycles in the Tx path.
24 Prerequisites and Compilation procedure
25 ---------------------------------------
27 See :doc:`../platform/octeontx2` for setup information.
29 Pre-Installation Configuration
30 ------------------------------
32 Compile time Config Options
33 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
35 The following option can be modified in the ``config`` file.
37 - ``CONFIG_RTE_LIBRTE_OCTEONTX2_MEMPOOL`` (default ``y``)
39 Toggle compilation of the ``librte_mempool_octeontx2`` driver.
41 Runtime Config Options
42 ~~~~~~~~~~~~~~~~~~~~~~
44 - ``Maximum number of mempools per application`` (default ``128``)
46 The maximum number of mempools per application needs to be configured on
47 HW during mempool driver initialization. HW can support up to 1M mempools,
48 Since each mempool costs set of HW resources, the ``max_pools`` ``devargs``
49 parameter is being introduced to configure the number of mempools required
53 -w 0002:02:00.0,max_pools=512
55 With the above configuration, the driver will set up only 512 mempools for
56 the given application to save HW resources.
60 Since this configuration is per application, the end user needs to
61 provide ``max_pools`` parameter to the first PCIe device probed by the given
67 .. _table_octeontx2_mempool_debug_options:
69 .. table:: OCTEON TX2 mempool debug options
71 +---+------------+-------------------------------------------------------+
72 | # | Component | EAL log command |
73 +===+============+=======================================================+
74 | 1 | NPA | --log-level='pmd\.mempool.octeontx2,8' |
75 +---+------------+-------------------------------------------------------+
77 Standalone mempool device
78 ~~~~~~~~~~~~~~~~~~~~~~~~~
80 The ``usertools/dpdk-devbind.py`` script shall enumerate all the mempool devices
81 available in the system. In order to avoid, the end user to bind the mempool
82 device prior to use ethdev and/or eventdev device, the respective driver
83 configures an NPA LF and attach to the first probed ethdev or eventdev device.
84 In case, if end user need to run mempool as a standalone device
85 (without ethdev or eventdev), end user needs to bind a mempool device using
86 ``usertools/dpdk-devbind.py``
88 Example command to run ``mempool_autotest`` test with standalone OCTEONTX2 NPA device::
90 echo "mempool_autotest" | build/app/test -c 0xf0 --mbuf-pool-ops-name="octeontx2_npa"