net/ark: add PCIe ids for Atomic Rules TK242 devices

Message ID 20240129154827.1791827-1-ed.czeck@atomicrules.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series net/ark: add PCIe ids for Atomic Rules TK242 devices |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/loongarch-compilation success Compilation OK
ci/loongarch-unit-testing success Unit Testing PASS
ci/iol-testing warning apply patch failure
ci/github-robot: build success github build: passed
ci/Intel-compilation success Compilation OK
ci/intel-Testing success Testing PASS
ci/intel-Functional success Functional PASS

Commit Message

Ed Czeck Jan. 29, 2024, 3:48 p.m. UTC
  Update documentation and release notes.

Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
---
 doc/guides/nics/ark.rst                | 3 +++
 doc/guides/rel_notes/release_24_03.rst | 4 ++++
 drivers/net/ark/ark_ethdev.c           | 3 +++
 3 files changed, 10 insertions(+)
  

Comments

Ferruh Yigit Jan. 29, 2024, 5:58 p.m. UTC | #1
On 1/29/2024 3:48 PM, Ed Czeck wrote:
> Update documentation and release notes.
> 
> Signed-off-by: Ed Czeck <ed.czeck@atomicrules.com>
>

Applied to dpdk-next-net/main, thanks.
  

Patch

diff --git a/doc/guides/nics/ark.rst b/doc/guides/nics/ark.rst
index bcc9f505df..a9f6d4cdb8 100644
--- a/doc/guides/nics/ark.rst
+++ b/doc/guides/nics/ark.rst
@@ -307,6 +307,9 @@  ARK PMD supports the following Arkville RTL PCIe instances including:
 * ``1d6c:101e`` - AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Agilex R-Tile]
 * ``1d6c:101f`` - AR-TK242 [2x100GbE Packet Capture Device]
 * ``1d6c:1022`` - AR-ARKA-FX2 [Arkville 128B DPDK Data Mover for Agilex]
+* ``1d6c:1024`` - AR-TK242 [2x100GbE Packet Capture Device]
+* ``1d6c:1025`` - AR-TK242-FX2 [2x100GbE Gen5 Packet Capture Device]
+* ``1d6c:1026`` - AR-TK242-FX2 [1x200GbE Gen5 Packet Capture Device]
 
 Arkville RTL Core Configurations
 --------------------------------
diff --git a/doc/guides/rel_notes/release_24_03.rst b/doc/guides/rel_notes/release_24_03.rst
index 6f8ad27808..54a321f1c2 100644
--- a/doc/guides/rel_notes/release_24_03.rst
+++ b/doc/guides/rel_notes/release_24_03.rst
@@ -55,6 +55,10 @@  New Features
      Also, make sure to start the actual text at the margin.
      =======================================================
 
+* **Updated Atomic Rules' Arkville PMD.**
+
+  * Added support for Atomic Rules' TK242 packet-capture family of devices
+    with PCI IDs: ``0x1024, 0x1025, 0x1026``.
 
 Removed Items
 -------------
diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c
index 0ffd4b9e9e..c029dc46b3 100644
--- a/drivers/net/ark/ark_ethdev.c
+++ b/drivers/net/ark/ark_ethdev.c
@@ -99,6 +99,9 @@  static const struct rte_pci_id pci_id_ark_map[] = {
 	{RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101e)},
 	{RTE_PCI_DEVICE(AR_VENDOR_ID, 0x101f)},
 	{RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1022)},
+	{RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1024)},
+	{RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1025)},
+	{RTE_PCI_DEVICE(AR_VENDOR_ID, 0x1026)},
 	{.vendor_id = 0, /* sentinel */ },
 };