linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] PCI: add 4x lane support for pci-j721e controllers
@ 2022-09-26 17:55 Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 1/3] PCI: j721e: Add PCIe 4x lane selection support Matt Ranostay
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Matt Ranostay @ 2022-09-26 17:55 UTC (permalink / raw)
  To: kishon, vigneshr, bhelgaas, robh, lpieralisi
  Cc: linux-arm-kernel, linux-pci, nm, Matt Ranostay

Adding of dditional support to Cadence PCIe controller (i.e. pci-j721e.c)
for up to 4x lanes, and reworking of driver to define maximum lanes per
board configuration.

Changes from v1:
* Reworked 'PCI: j721e: Add PCIe 4x lane selection support' to not cause
  regressions on 1-2x lane platforms

Matt Ranostay (3):
  PCI: j721e: Add PCIe 4x lane selection support
  PCI: j721e: Add per platform maximum lane settings
  PCI: j721e: Add warnings on num-lanes misconfiguration

 drivers/pci/controller/cadence/pci-j721e.c | 27 ++++++++++++++++++----
 1 file changed, 22 insertions(+), 5 deletions(-)

-- 
2.38.0.rc0.52.gdda7228a83


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

* [PATCH v2 1/3] PCI: j721e: Add PCIe 4x lane selection support
  2022-09-26 17:55 [PATCH v2 0/3] PCI: add 4x lane support for pci-j721e controllers Matt Ranostay
@ 2022-09-26 17:55 ` Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 2/3] PCI: j721e: Add per platform maximum lane settings Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 3/3] PCI: j721e: Add warnings on num-lanes misconfiguration Matt Ranostay
  2 siblings, 0 replies; 4+ messages in thread
From: Matt Ranostay @ 2022-09-26 17:55 UTC (permalink / raw)
  To: kishon, vigneshr, bhelgaas, robh, lpieralisi
  Cc: linux-arm-kernel, linux-pci, nm, Matt Ranostay

Add support for setting of two-bit field that allows selection of 4x
lane PCIe which was previously limited to only 2x lanes.

Cc: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Matt Ranostay <mranostay@ti.com>
---
 drivers/pci/controller/cadence/pci-j721e.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/pci/controller/cadence/pci-j721e.c b/drivers/pci/controller/cadence/pci-j721e.c
index a82f845cc4b5..d9b1527421c3 100644
--- a/drivers/pci/controller/cadence/pci-j721e.c
+++ b/drivers/pci/controller/cadence/pci-j721e.c
@@ -43,7 +43,6 @@ enum link_status {
 };
 
 #define J721E_MODE_RC			BIT(7)
-#define LANE_COUNT_MASK			BIT(8)
 #define LANE_COUNT(n)			((n) << 8)
 
 #define GENERATION_SEL_MASK		GENMASK(1, 0)
@@ -207,11 +206,15 @@ static int j721e_pcie_set_lane_count(struct j721e_pcie *pcie,
 {
 	struct device *dev = pcie->cdns_pcie->dev;
 	u32 lanes = pcie->num_lanes;
+	u32 mask = GENMASK(8, 8);
 	u32 val = 0;
 	int ret;
 
+	if (lanes == 4)
+		mask = GENMASK(9, 8);
+
 	val = LANE_COUNT(lanes - 1);
-	ret = regmap_update_bits(syscon, offset, LANE_COUNT_MASK, val);
+	ret = regmap_update_bits(syscon, offset, mask, val);
 	if (ret)
 		dev_err(dev, "failed to set link count\n");
 
-- 
2.38.0.rc0.52.gdda7228a83


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

* [PATCH v2 2/3] PCI: j721e: Add per platform maximum lane settings
  2022-09-26 17:55 [PATCH v2 0/3] PCI: add 4x lane support for pci-j721e controllers Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 1/3] PCI: j721e: Add PCIe 4x lane selection support Matt Ranostay
@ 2022-09-26 17:55 ` Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 3/3] PCI: j721e: Add warnings on num-lanes misconfiguration Matt Ranostay
  2 siblings, 0 replies; 4+ messages in thread
From: Matt Ranostay @ 2022-09-26 17:55 UTC (permalink / raw)
  To: kishon, vigneshr, bhelgaas, robh, lpieralisi
  Cc: linux-arm-kernel, linux-pci, nm, Matt Ranostay

Various platforms have different maximum amount of lanes that
can be selected. Add max_lanes to struct j721e_pcie to allow
for error checking on num-lanes selection from device tree.

Cc: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Matt Ranostay <mranostay@ti.com>
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
---
 drivers/pci/controller/cadence/pci-j721e.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/drivers/pci/controller/cadence/pci-j721e.c b/drivers/pci/controller/cadence/pci-j721e.c
index d9b1527421c3..0a537f2d5078 100644
--- a/drivers/pci/controller/cadence/pci-j721e.c
+++ b/drivers/pci/controller/cadence/pci-j721e.c
@@ -47,8 +47,6 @@ enum link_status {
 
 #define GENERATION_SEL_MASK		GENMASK(1, 0)
 
-#define MAX_LANES			2
-
 struct j721e_pcie {
 	struct cdns_pcie	*cdns_pcie;
 	struct clk		*refclk;
@@ -71,6 +69,7 @@ struct j721e_pcie_data {
 	unsigned int		quirk_disable_flr:1;
 	u32			linkdown_irq_regfield;
 	unsigned int		byte_access_allowed:1;
+	unsigned int		max_lanes;
 };
 
 static inline u32 j721e_pcie_user_readl(struct j721e_pcie *pcie, u32 offset)
@@ -294,11 +293,13 @@ static const struct j721e_pcie_data j721e_pcie_rc_data = {
 	.quirk_retrain_flag = true,
 	.byte_access_allowed = false,
 	.linkdown_irq_regfield = LINK_DOWN,
+	.max_lanes = 2,
 };
 
 static const struct j721e_pcie_data j721e_pcie_ep_data = {
 	.mode = PCI_MODE_EP,
 	.linkdown_irq_regfield = LINK_DOWN,
+	.max_lanes = 2,
 };
 
 static const struct j721e_pcie_data j7200_pcie_rc_data = {
@@ -306,23 +307,27 @@ static const struct j721e_pcie_data j7200_pcie_rc_data = {
 	.quirk_detect_quiet_flag = true,
 	.linkdown_irq_regfield = J7200_LINK_DOWN,
 	.byte_access_allowed = true,
+	.max_lanes = 4,
 };
 
 static const struct j721e_pcie_data j7200_pcie_ep_data = {
 	.mode = PCI_MODE_EP,
 	.quirk_detect_quiet_flag = true,
 	.quirk_disable_flr = true,
+	.max_lanes = 4,
 };
 
 static const struct j721e_pcie_data am64_pcie_rc_data = {
 	.mode = PCI_MODE_RC,
 	.linkdown_irq_regfield = J7200_LINK_DOWN,
 	.byte_access_allowed = true,
+	.max_lanes = 1,
 };
 
 static const struct j721e_pcie_data am64_pcie_ep_data = {
 	.mode = PCI_MODE_EP,
 	.linkdown_irq_regfield = J7200_LINK_DOWN,
+	.max_lanes = 1,
 };
 
 static const struct of_device_id of_j721e_pcie_match[] = {
@@ -436,7 +441,7 @@ static int j721e_pcie_probe(struct platform_device *pdev)
 	pcie->user_cfg_base = base;
 
 	ret = of_property_read_u32(node, "num-lanes", &num_lanes);
-	if (ret || num_lanes > MAX_LANES)
+	if (ret || num_lanes > data->max_lanes)
 		num_lanes = 1;
 	pcie->num_lanes = num_lanes;
 
-- 
2.38.0.rc0.52.gdda7228a83


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

* [PATCH v2 3/3] PCI: j721e: Add warnings on num-lanes misconfiguration
  2022-09-26 17:55 [PATCH v2 0/3] PCI: add 4x lane support for pci-j721e controllers Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 1/3] PCI: j721e: Add PCIe 4x lane selection support Matt Ranostay
  2022-09-26 17:55 ` [PATCH v2 2/3] PCI: j721e: Add per platform maximum lane settings Matt Ranostay
@ 2022-09-26 17:55 ` Matt Ranostay
  2 siblings, 0 replies; 4+ messages in thread
From: Matt Ranostay @ 2022-09-26 17:55 UTC (permalink / raw)
  To: kishon, vigneshr, bhelgaas, robh, lpieralisi
  Cc: linux-arm-kernel, linux-pci, nm, Matt Ranostay

Added dev_warn messages to alert of devicetree misconfigurations
for incorrect num-lanes setting, or the lack of one being defined.

Cc: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Matt Ranostay <mranostay@ti.com>
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
---
 drivers/pci/controller/cadence/pci-j721e.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/drivers/pci/controller/cadence/pci-j721e.c b/drivers/pci/controller/cadence/pci-j721e.c
index 0a537f2d5078..ee0ab04ca66e 100644
--- a/drivers/pci/controller/cadence/pci-j721e.c
+++ b/drivers/pci/controller/cadence/pci-j721e.c
@@ -441,8 +441,17 @@ static int j721e_pcie_probe(struct platform_device *pdev)
 	pcie->user_cfg_base = base;
 
 	ret = of_property_read_u32(node, "num-lanes", &num_lanes);
-	if (ret || num_lanes > data->max_lanes)
+	if (ret) {
+		dev_warn(dev, "no num-lanes defined, defaulting to 1\n");
 		num_lanes = 1;
+	}
+
+	if (num_lanes > data->max_lanes) {
+		dev_warn(dev, "defined num-lanes %d is greater than the "
+			      "allowed maximum of %d, defaulting to 1\n",
+			      num_lanes, data->max_lanes);
+		num_lanes = 1;
+	}
 	pcie->num_lanes = num_lanes;
 
 	if (dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48)))
-- 
2.38.0.rc0.52.gdda7228a83


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

end of thread, other threads:[~2022-09-26 18:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-26 17:55 [PATCH v2 0/3] PCI: add 4x lane support for pci-j721e controllers Matt Ranostay
2022-09-26 17:55 ` [PATCH v2 1/3] PCI: j721e: Add PCIe 4x lane selection support Matt Ranostay
2022-09-26 17:55 ` [PATCH v2 2/3] PCI: j721e: Add per platform maximum lane settings Matt Ranostay
2022-09-26 17:55 ` [PATCH v2 3/3] PCI: j721e: Add warnings on num-lanes misconfiguration Matt Ranostay

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