]> git.droids-corp.org - dpdk.git/commitdiff
net/ark: support new devices
authorEd Czeck <ed.czeck@atomicrules.com>
Tue, 7 Jun 2022 21:31:48 +0000 (17:31 -0400)
committerFerruh Yigit <ferruh.yigit@xilinx.com>
Wed, 8 Jun 2022 08:38:39 +0000 (10:38 +0200)
Support new devices and update device list in doc

Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
doc/guides/nics/ark.rst
doc/guides/rel_notes/release_22_07.rst
drivers/net/ark/ark_ethdev.c

index d8acb36d744705c1288194b58e1c9d7e1acefc8e..591e41799ca04d0de88534dd690d45d8741d6d9f 100644 (file)
@@ -297,6 +297,9 @@ ARK PMD supports the following Arkville RTL PCIe instances including:
 * ``1d6c:1017`` - AR-ARK-FX1 [Arkville 64B Multi-Homed Primary Endpoint]
 * ``1d6c:1018`` - AR-ARK-FX1 [Arkville 64B Multi-Homed Secondary Endpoint]
 * ``1d6c:1019`` - AR-ARK-FX1 [Arkville 64B Multi-Homed Tertiary Endpoint]
+* ``1d6c:101a`` - AR-ARK-SRIOV-FX0 [Arkville 32B Primary Physical Function]
+* ``1d6c:101b`` - AR-ARK-SRIOV-FX1 [Arkville 64B Primary Physical Function]
+* ``1d6c:101c`` - AR-ARK-SRIOV-VF [Arkville Virtual Function]
 * ``1d6c:101e`` - AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Agilex R-Tile]
 * ``1d6c:101f`` - AR-TK242 [2x100GbE Packet Capture Device]
 
@@ -341,7 +344,6 @@ Unsupported Features
 Features that may be part of, or become part of, the Arkville RTL IP that are
 not currently supported or exposed by the ARK PMD include:
 
-* PCIe SR-IOV Virtual Functions (VFs)
 * Arkville's Packet Generator Control and Status
 * Arkville's Packet Director Control and Status
 * Arkville's Packet Checker Control and Status
index f78d348e22b16edee41d5eeffe792b39271c3a0b..b16157f107492969aac8809029546d54e31a5d92 100644 (file)
@@ -113,6 +113,7 @@ New Features
 * **Updated Atomic Rules' Arkville PMD.**
 
   * A firmware version update to Arkville 22.07 is required.
+  * Added support for Atomic Rules PCI device IDs ``0x101a, 0x101b, 0x101c``.
 
 * **Updated Intel iavf driver.**
 
index 2abc35283dceae49b14ed5ba9c690a3728fd3ae3..377631e66e59edcd05ce7cb607684004ee2f6353 100644 (file)
@@ -94,6 +94,9 @@ static const struct rte_pci_id pci_id_ark_map[] = {
        {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1017)},
        {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1018)},
        {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1019)},
+       {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101a)},
+       {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101b)},
+       {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101c)},
        {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101e)},
        {RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101f)},
        {.vendor_id = 0, /* sentinel */ },
@@ -127,6 +130,9 @@ ark_device_caps[] = {
                     SET_DEV_CAPS(0x1017, true),
                     SET_DEV_CAPS(0x1018, true),
                     SET_DEV_CAPS(0x1019, true),
+                    SET_DEV_CAPS(0x101a, true),
+                    SET_DEV_CAPS(0x101b, true),
+                    SET_DEV_CAPS(0x101c, false),
                     SET_DEV_CAPS(0x101e, false),
                     SET_DEV_CAPS(0x101f, false),
                     {.device_id = 0,}