DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] raw/ntb: add PPD status check for SPR
@ 2022-06-30  8:39 Junfeng Guo
  2022-06-30  8:56 ` [PATCH v2] " Junfeng Guo
  0 siblings, 1 reply; 4+ messages in thread
From: Junfeng Guo @ 2022-06-30  8:39 UTC (permalink / raw)
  To: jingjing.wu; +Cc: dev, junfeng.guo

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               |
+---------------------------+--------------------+--------------------+

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

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..b40142d148 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,57 @@ 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);
+
+	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
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] raw/ntb: add PPD status check for SPR
  2022-06-30  8:39 [PATCH] raw/ntb: add PPD status check for SPR Junfeng Guo
@ 2022-06-30  8:56 ` Junfeng Guo
  2022-07-01  9:38   ` Wu, Jingjing
  0 siblings, 1 reply; 4+ messages in thread
From: Junfeng Guo @ 2022-06-30  8:56 UTC (permalink / raw)
  To: jingjing.wu; +Cc: dev, junfeng.guo

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(-)

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
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH v2] raw/ntb: add PPD status check for SPR
  2022-06-30  8:56 ` [PATCH v2] " Junfeng Guo
@ 2022-07-01  9:38   ` Wu, Jingjing
  2022-07-05 19:56     ` Thomas Monjalon
  0 siblings, 1 reply; 4+ messages in thread
From: Wu, Jingjing @ 2022-07-01  9:38 UTC (permalink / raw)
  To: Guo, Junfeng; +Cc: dev



> -----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>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] raw/ntb: add PPD status check for SPR
  2022-07-01  9:38   ` Wu, Jingjing
@ 2022-07-05 19:56     ` Thomas Monjalon
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2022-07-05 19:56 UTC (permalink / raw)
  To: Guo, Junfeng; +Cc: dev, Wu, Jingjing

> > 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.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-05 19:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-30  8:39 [PATCH] raw/ntb: add PPD status check for SPR Junfeng Guo
2022-06-30  8:56 ` [PATCH v2] " Junfeng Guo
2022-07-01  9:38   ` Wu, Jingjing
2022-07-05 19:56     ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).