a1c947
From e13ab5c97f266eb688bc22e1124291563770370d Mon Sep 17 00:00:00 2001
a1c947
Message-Id: <e13ab5c97f266eb688bc22e1124291563770370d@dist-git>
a1c947
From: Michal Privoznik <mprivozn@redhat.com>
a1c947
Date: Fri, 8 Jul 2022 14:29:32 +0200
a1c947
Subject: [PATCH] vircpi: Add PCIe 5.0 and 6.0 link speeds
a1c947
MIME-Version: 1.0
a1c947
Content-Type: text/plain; charset=UTF-8
a1c947
Content-Transfer-Encoding: 8bit
a1c947
a1c947
The PCIe 5.0 and PCIe 6.0 standards define new link speeds:
a1c947
32GT/s and 64GT/s, respectively. Update our internal enum to
a1c947
include these new speeds. Otherwise we format incorrect XML:
a1c947
a1c947
  <pci-express>
a1c947
    <link validity='cap' port='0' speed='(null)' width='16'/>
a1c947
    <link validity='sta' speed='16' width='16'/>
a1c947
  </pci-express>
a1c947
a1c947
Like all "good" specifications, these are also locked behind a
a1c947
login portal. But we can look at pciutils' source code: [1] and
a1c947
[2].
a1c947
a1c947
1: https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git/commit/ls-caps.c?id=caca31a0eea41c7b051705704c1158fddc02fbd2
a1c947
2: https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git/commit/ls-caps.c?id=5bdf63b6b1bc35b59c4b3f47f7ca83ca1868155b
a1c947
a1c947
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2105231
a1c947
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
a1c947
Reviewed-by: Ján Tomko <jtomko@redhat.com>
a1c947
(cherry picked from commit d33c2a9e2f933b31f8e96e9938c237bdffe27f84)
a1c947
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
a1c947
---
a1c947
 src/util/virpci.c | 2 +-
a1c947
 src/util/virpci.h | 2 ++
a1c947
 2 files changed, 3 insertions(+), 1 deletion(-)
a1c947
a1c947
diff --git a/src/util/virpci.c b/src/util/virpci.c
a1c947
index 03d1d7b074..7800966963 100644
a1c947
--- a/src/util/virpci.c
a1c947
+++ b/src/util/virpci.c
a1c947
@@ -45,7 +45,7 @@ VIR_LOG_INIT("util.pci");
a1c947
 
a1c947
 VIR_ENUM_IMPL(virPCIELinkSpeed,
a1c947
               VIR_PCIE_LINK_SPEED_LAST,
a1c947
-              "", "2.5", "5", "8", "16",
a1c947
+              "", "2.5", "5", "8", "16", "32", "64"
a1c947
 );
a1c947
 
a1c947
 VIR_ENUM_IMPL(virPCIStubDriver,
a1c947
diff --git a/src/util/virpci.h b/src/util/virpci.h
a1c947
index b9b9cd7b34..4d9193f24e 100644
a1c947
--- a/src/util/virpci.h
a1c947
+++ b/src/util/virpci.h
a1c947
@@ -83,6 +83,8 @@ typedef enum {
a1c947
     VIR_PCIE_LINK_SPEED_5,
a1c947
     VIR_PCIE_LINK_SPEED_8,
a1c947
     VIR_PCIE_LINK_SPEED_16,
a1c947
+    VIR_PCIE_LINK_SPEED_32,
a1c947
+    VIR_PCIE_LINK_SPEED_64,
a1c947
     VIR_PCIE_LINK_SPEED_LAST
a1c947
 } virPCIELinkSpeed;
a1c947
 
a1c947
-- 
a1c947
2.35.1
a1c947