From 0982ef81a6655bfe4fd38f0de4582f62f7f2305a Mon Sep 17 00:00:00 2001 From: Beilei Xing Date: Wed, 10 Jan 2018 10:01:55 +0800 Subject: [PATCH] doc: add DDP in i40e guide Update i40e.rst to declare DDP support and input set configuration, as implemented in DPDK 17.11. Cc: stable@dpdk.org Signed-off-by: Beilei Xing Acked-by: John McNamara --- doc/guides/nics/i40e.rst | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index c4c10d3b80..50d5e36a5d 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -65,6 +65,7 @@ Features of the I40E PMD are: - Hot plug - IEEE1588/802.1AS timestamping - VF Daemon (VFD) - EXPERIMENTAL +- Dynamic Device Personalization (DDP) Prerequisites @@ -382,6 +383,52 @@ configuration passed on the EAL command line. The floating VEB functionality requires a NIC firmware version of 5.0 or greater. +Dynamic Device Personalization (DDP) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The Intel® Ethernet Controller X*710 support a feature called "Dynamic Device +Personalization (DDP)", which is used to configure hardware by downloading +a profile to support protocols/filters which are not supported by default. +The DDP functionality requires a NIC firmware version of 6.0 or greater. + +Current implementation supports MPLSoUDP/MPLSoGRE/GTP-C/GTP-U/PPPoE/PPPoL2TP, +steering can be used with rte_flow API. + +Load a profile which supports MPLSoUDP/MPLSoGRE: + +.. code-block:: console + + testpmd> ddp add 0 ./mpls.pkgo + +Delete a MPLS profile: + +.. code-block:: console + + testpmd> ddp del 0 ./mpls.pkgo + +Get loaded DDP package info list: + +.. code-block:: console + + testpmd> ddp get list 0 + +Display information about a MPLS profile: + +.. code-block:: console + + testpmd> ddp get info ./mpls.pkgo + +Input set configuration +~~~~~~~~~~~~~~~~~~~~~~~ +Input set for any PCTYPE can be configured with user defined configuration, +For example, to use only 48bit prefix for IPv6 src address for IPv6 TCP RSS: + +.. code-block:: console + + testpmd> port config 0 pctype 43 hash_inset clear all + testpmd> port config 0 pctype 43 hash_inset set field 13 + testpmd> port config 0 pctype 43 hash_inset set field 14 + testpmd> port config 0 pctype 43 hash_inset set field 15 Limitations or Known issues --------------------------- -- 2.20.1