[v2] raw/ntb: add PPD status check for SPR

Message ID 20220630085616.183562-1-junfeng.guo@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series [v2] raw/ntb: add PPD status check for SPR |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/intel-Testing success Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-aarch64-compile-testing success Testing PASS
ci/iol-aarch64-unit-testing success Testing PASS
ci/github-robot: build success github build: passed
ci/iol-x86_64-compile-testing success Testing PASS
ci/iol-x86_64-unit-testing success Testing PASS
ci/iol-abi-testing success Testing PASS

Commit Message

Junfeng Guo June 30, 2022, 8:56 a.m. UTC
  Add PPD (PCIe Port Definition) status check for SPR (Sapphire Rapids).

Note that NTB on SPR has the same device id with that on ICX, while
the field offsets of PPD Control Register are different. Here, we use
the PCI device revision id to distinguish the HW platform (ICX/SPR)
and check the Port Config Status and Port Definition accordingly.

+---------------------------+--------------------+--------------------+
|          Fields           | Bit Range (on ICX) | Bit Range (on SPR) |
+---------------------------+--------------------+--------------------+
| Port Configuration Status | 12                 | 14                 |
| Port Definition           | 9:8                | 10:8               |
+---------------------------+--------------------+--------------------+

v2:
fix revision id value check logic.

Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
---
 drivers/raw/ntb/ntb.h          |  1 +
 drivers/raw/ntb/ntb_hw_intel.c | 64 ++++++++++++++++++++++++++++++----
 drivers/raw/ntb/ntb_hw_intel.h | 13 +++++++
 3 files changed, 72 insertions(+), 6 deletions(-)
  

Comments

Jingjing Wu July 1, 2022, 9:38 a.m. UTC | #1
> -----Original Message-----
> From: Guo, Junfeng <junfeng.guo@intel.com>
> Sent: Thursday, June 30, 2022 4:56 PM
> To: Wu, Jingjing <jingjing.wu@intel.com>
> Cc: dev@dpdk.org; Guo, Junfeng <junfeng.guo@intel.com>
> Subject: [PATCH v2] raw/ntb: add PPD status check for SPR
> 
> Add PPD (PCIe Port Definition) status check for SPR (Sapphire Rapids).
> 
> Note that NTB on SPR has the same device id with that on ICX, while
> the field offsets of PPD Control Register are different. Here, we use
> the PCI device revision id to distinguish the HW platform (ICX/SPR)
> and check the Port Config Status and Port Definition accordingly.
> 
> +---------------------------+--------------------+--------------------+
> |          Fields           | Bit Range (on ICX) | Bit Range (on SPR) |
> +---------------------------+--------------------+--------------------+
> | Port Configuration Status | 12                 | 14                 |
> | Port Definition           | 9:8                | 10:8               |
> +---------------------------+--------------------+--------------------+
> 
> v2:
> fix revision id value check logic.
> 
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
Acked-by: Jingjing Wu <jingjing.wu@intel.com>
  
Thomas Monjalon July 5, 2022, 7:56 p.m. UTC | #2
> > Add PPD (PCIe Port Definition) status check for SPR (Sapphire Rapids).
> > 
> > Note that NTB on SPR has the same device id with that on ICX, while
> > the field offsets of PPD Control Register are different. Here, we use
> > the PCI device revision id to distinguish the HW platform (ICX/SPR)
> > and check the Port Config Status and Port Definition accordingly.
> > 
> > +---------------------------+--------------------+--------------------+
> > |          Fields           | Bit Range (on ICX) | Bit Range (on SPR) |
> > +---------------------------+--------------------+--------------------+
> > | Port Configuration Status | 12                 | 14                 |
> > | Port Definition           | 9:8                | 10:8               |
> > +---------------------------+--------------------+--------------------+
> > 
> > v2:
> > fix revision id value check logic.
> > 
> > Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> Acked-by: Jingjing Wu <jingjing.wu@intel.com>

Not sure it is urgent, anyway
Applied, thanks.
  

Patch

diff --git a/drivers/raw/ntb/ntb.h b/drivers/raw/ntb/ntb.h
index c9ff33aa59..a30a6b60c9 100644
--- a/drivers/raw/ntb/ntb.h
+++ b/drivers/raw/ntb/ntb.h
@@ -19,6 +19,7 @@  extern int ntb_logtype;
 /* Device IDs */
 #define NTB_INTEL_DEV_ID_B2B_SKX    0x201C
 #define NTB_INTEL_DEV_ID_B2B_ICX    0x347E
+#define NTB_INTEL_DEV_ID_B2B_SPR    0x347E
 
 /* Reserved to app to use. */
 #define NTB_SPAD_USER               "spad_user_"
diff --git a/drivers/raw/ntb/ntb_hw_intel.c b/drivers/raw/ntb/ntb_hw_intel.c
index a742e8fbb9..20cdb761a3 100644
--- a/drivers/raw/ntb/ntb_hw_intel.c
+++ b/drivers/raw/ntb/ntb_hw_intel.c
@@ -37,7 +37,8 @@  is_gen3_ntb(const struct ntb_hw *hw)
 static inline int
 is_gen4_ntb(const struct ntb_hw *hw)
 {
-	if (hw->pci_dev->id.device_id == NTB_INTEL_DEV_ID_B2B_ICX)
+	if (hw->pci_dev->id.device_id == NTB_INTEL_DEV_ID_B2B_ICX ||
+	    hw->pci_dev->id.device_id == NTB_INTEL_DEV_ID_B2B_SPR)
 		return 1;
 
 	return 0;
@@ -87,12 +88,8 @@  intel_ntb3_check_ppd(struct ntb_hw *hw)
 }
 
 static int
-intel_ntb4_check_ppd(struct ntb_hw *hw)
+intel_ntb4_check_ppd_for_ICX(struct ntb_hw *hw, uint32_t reg_val)
 {
-	uint32_t reg_val;
-
-	reg_val = rte_read32(hw->hw_addr + XEON_GEN4_PPD1_OFFSET);
-
 	/* Check connection topo type. Only support B2B. */
 	switch (reg_val & XEON_GEN4_PPD_CONN_MASK) {
 	case XEON_GEN4_PPD_CONN_B2B:
@@ -115,6 +112,61 @@  intel_ntb4_check_ppd(struct ntb_hw *hw)
 	return 0;
 }
 
+static int
+intel_ntb4_check_ppd_for_SPR(struct ntb_hw *hw, uint32_t reg_val)
+{
+	/* Check connection topo type. Only support B2B. */
+	switch (reg_val & XEON_SPR_PPD_CONN_MASK) {
+	case XEON_SPR_PPD_CONN_B2B:
+		NTB_LOG(INFO, "Topo B2B (back to back) is using.");
+		break;
+	default:
+		NTB_LOG(ERR, "Not supported conn topo. Please use B2B.");
+		return -EINVAL;
+	}
+
+	/* Check device type. */
+	if (reg_val & XEON_SPR_PPD_DEV_DSD) {
+		NTB_LOG(INFO, "DSD, Downstream Device.");
+		hw->topo = NTB_TOPO_B2B_DSD;
+	} else {
+		NTB_LOG(INFO, "USD, Upstream device.");
+		hw->topo = NTB_TOPO_B2B_USD;
+	}
+
+	return 0;
+}
+
+static int
+intel_ntb4_check_ppd(struct ntb_hw *hw)
+{
+	uint8_t revision_id;
+	uint32_t reg_val;
+	int ret;
+
+	ret = rte_pci_read_config(hw->pci_dev, &revision_id,
+				  NTB_PCI_DEV_REVISION_ID_LEN,
+				  NTB_PCI_DEV_REVISION_ID_REG);
+	if (ret != NTB_PCI_DEV_REVISION_ID_LEN) {
+		NTB_LOG(ERR, "Cannot get NTB PCI Device Revision ID.");
+		return -EIO;
+	}
+
+	reg_val = rte_read32(hw->hw_addr + XEON_GEN4_PPD1_OFFSET);
+
+	/* Distinguish HW platform (ICX/SPR) via PCI Revision ID */
+	if (revision_id > NTB_PCI_DEV_REVISION_ICX_MAX)
+		ret = intel_ntb4_check_ppd_for_SPR(hw, reg_val);
+	else if (revision_id >= NTB_PCI_DEV_REVISION_ICX_MIN)
+		ret = intel_ntb4_check_ppd_for_ICX(hw, reg_val);
+	else {
+		NTB_LOG(ERR, "Invalid NTB PCI Device Revision ID.");
+		return -EIO;
+	}
+
+	return ret;
+}
+
 static int
 intel_ntb_dev_init(const struct rte_rawdev *dev)
 {
diff --git a/drivers/raw/ntb/ntb_hw_intel.h b/drivers/raw/ntb/ntb_hw_intel.h
index c61a2a8a62..9587104f80 100644
--- a/drivers/raw/ntb/ntb_hw_intel.h
+++ b/drivers/raw/ntb/ntb_hw_intel.h
@@ -5,6 +5,13 @@ 
 #ifndef _NTB_HW_INTEL_H_
 #define _NTB_HW_INTEL_H_
 
+/* Supported PCI device revision ID range for ICX */
+#define NTB_PCI_DEV_REVISION_ICX_MIN	0x02
+#define NTB_PCI_DEV_REVISION_ICX_MAX	0x0F
+
+#define NTB_PCI_DEV_REVISION_ID_REG	0x08
+#define NTB_PCI_DEV_REVISION_ID_LEN	1
+
 /* Ntb control and link status */
 #define NTB_CTL_CFG_LOCK		1
 #define NTB_CTL_DISABLE			2
@@ -90,6 +97,12 @@ 
 #define XEON_GEN4_SLOTSTS		0xb05a
 #define XEON_GEN4_SLOTSTS_DLLSCS	0x100
 
+#define XEON_SPR_PPD_CONN_MASK		0x0700
+#define XEON_SPR_PPD_CONN_B2B		0x0200
+#define XEON_SPR_PPD_DEV_MASK		0x4000
+#define XEON_SPR_PPD_DEV_DSD		0x4000
+#define XEON_SPR_PPD_DEV_USD		0x0000
+
 #define XEON_MW_COUNT			2
 
 #define XEON_DB_COUNT			32