From: Sean Anderson <sean.anderson@linux.dev>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Vinod Koul <vkoul@kernel.org>,
linux-phy@lists.infradead.org
Cc: "Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Radhey Shyam Pandey" <radhey.shyam.pandey@amd.com>,
linux-kernel@vger.kernel.org,
"Michal Simek" <michal.simek@amd.com>,
linux-arm-kernel@lists.infradead.org, linux-pci@vger.kernel.org,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Rob Herring" <robh@kernel.org>,
"Thippeswamy Havalige" <thippeswamy.havalige@amd.com>,
"Manivannan Sadhasivam" <mani@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Sean Anderson" <sean.anderson@linux.dev>
Subject: [PATCH 6/8] PCI: xilinx-nwl: Split phy_init from phy_power_on
Date: Mon, 2 Feb 2026 19:21:26 -0500 [thread overview]
Message-ID: <20260203002128.935842-7-sean.anderson@linux.dev> (raw)
In-Reply-To: <20260203002128.935842-1-sean.anderson@linux.dev>
In preparation for reset support, split phy_init from phy_power_on. The
former must be performed while the controller is in reset, while the
latter must be performed while the controller is not in reset.
Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
---
drivers/pci/controller/pcie-xilinx-nwl.c | 78 +++++++++++++-----------
1 file changed, 43 insertions(+), 35 deletions(-)
diff --git a/drivers/pci/controller/pcie-xilinx-nwl.c b/drivers/pci/controller/pcie-xilinx-nwl.c
index 7db2c96c6cec..7cfdc21e6f40 100644
--- a/drivers/pci/controller/pcie-xilinx-nwl.c
+++ b/drivers/pci/controller/pcie-xilinx-nwl.c
@@ -517,56 +517,55 @@ static int nwl_pcie_init_msi_irq_domain(struct nwl_pcie *pcie)
static void nwl_pcie_phy_power_off(struct nwl_pcie *pcie, int i)
{
- int err = phy_power_off(pcie->phy[i]);
+ while (i--) {
+ int err = phy_power_off(pcie->phy[i]);
- if (err)
- dev_err(pcie->dev, "could not power off phy %d (err=%d)\n", i,
- err);
+ if (err)
+ dev_err(pcie->dev,
+ "could not power off phy %d (err=%d)\n", i,
+ err);
+ }
}
static void nwl_pcie_phy_exit(struct nwl_pcie *pcie, int i)
{
- int err = phy_exit(pcie->phy[i]);
+ while (i--) {
+ int err = phy_exit(pcie->phy[i]);
- if (err)
- dev_err(pcie->dev, "could not exit phy %d (err=%d)\n", i, err);
+ if (err)
+ dev_err(pcie->dev, "could not exit phy %d (err=%d)\n",
+ i, err);
+ }
}
-static int nwl_pcie_phy_enable(struct nwl_pcie *pcie)
+static int nwl_pcie_phy_init(struct nwl_pcie *pcie)
{
int i, ret;
- for (i = 0; i < ARRAY_SIZE(pcie->phy); i++) {
+ for (i = ARRAY_SIZE(pcie->phy) - 1; i >= 0; i--) {
ret = phy_init(pcie->phy[i]);
- if (ret)
- goto err;
-
- ret = phy_power_on(pcie->phy[i]);
if (ret) {
nwl_pcie_phy_exit(pcie, i);
- goto err;
+ return ret;
}
}
return 0;
-
-err:
- while (i--) {
- nwl_pcie_phy_power_off(pcie, i);
- nwl_pcie_phy_exit(pcie, i);
- }
-
- return ret;
}
-static void nwl_pcie_phy_disable(struct nwl_pcie *pcie)
+static int nwl_pcie_phy_power_on(struct nwl_pcie *pcie)
{
- int i;
+ int i, ret;
- for (i = ARRAY_SIZE(pcie->phy); i--;) {
- nwl_pcie_phy_power_off(pcie, i);
- nwl_pcie_phy_exit(pcie, i);
+ for (i = ARRAY_SIZE(pcie->phy) - 1; i >= 0; i--) {
+ ret = phy_power_on(pcie->phy[i]);
+ if (ret) {
+ nwl_pcie_phy_power_off(pcie, i);
+ return ret;
+ }
}
+
+ return 0;
}
static int nwl_pcie_init_irq_domain(struct nwl_pcie *pcie)
@@ -859,22 +858,28 @@ static int nwl_pcie_probe(struct platform_device *pdev)
return err;
}
- err = nwl_pcie_phy_enable(pcie);
+ err = nwl_pcie_phy_init(pcie);
if (err) {
- dev_err(dev, "could not enable PHYs\n");
+ dev_err(dev, "could not init PHYs\n");
goto err_clk;
}
+ err = nwl_pcie_phy_power_on(pcie);
+ if (err) {
+ dev_err(dev, "could not power on PHYs\n");
+ goto err_phy_init;
+ }
+
err = nwl_pcie_bridge_init(pcie);
if (err) {
dev_err(dev, "HW Initialization failed\n");
- goto err_phy;
+ goto err_phy_power;
}
err = nwl_pcie_init_irq_domain(pcie);
if (err) {
dev_err(dev, "Failed creating IRQ Domain\n");
- goto err_phy;
+ goto err_phy_power;
}
bridge->sysdata = pcie;
@@ -884,7 +889,7 @@ static int nwl_pcie_probe(struct platform_device *pdev)
err = nwl_pcie_enable_msi(pcie);
if (err < 0) {
dev_err(dev, "failed to enable MSI support: %d\n", err);
- goto err_phy;
+ goto err_phy_power;
}
}
@@ -892,8 +897,10 @@ static int nwl_pcie_probe(struct platform_device *pdev)
if (!err)
return 0;
-err_phy:
- nwl_pcie_phy_disable(pcie);
+err_phy_power:
+ nwl_pcie_phy_power_off(pcie, ARRAY_SIZE(pcie->phy));
+err_phy_init:
+ nwl_pcie_phy_exit(pcie, ARRAY_SIZE(pcie->phy));
err_clk:
clk_disable_unprepare(pcie->clk);
return err;
@@ -903,7 +910,8 @@ static void nwl_pcie_remove(struct platform_device *pdev)
{
struct nwl_pcie *pcie = platform_get_drvdata(pdev);
- nwl_pcie_phy_disable(pcie);
+ nwl_pcie_phy_power_off(pcie, ARRAY_SIZE(pcie->phy));
+ nwl_pcie_phy_exit(pcie, ARRAY_SIZE(pcie->phy));
clk_disable_unprepare(pcie->clk);
}
--
2.35.1.1320.gc452695387.dirty
next prev parent reply other threads:[~2026-02-03 0:22 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-03 0:21 [PATCH 0/8] phy: zynqmp: Perform complete initialization, including ILL calibration Sean Anderson
2026-02-03 0:21 ` [PATCH 1/8] dt-bindings: pci: xilinx-nwl: Add resets Sean Anderson
2026-02-04 8:32 ` Pandey, Radhey Shyam
2026-02-05 15:47 ` Sean Anderson
2026-02-18 16:36 ` Manivannan Sadhasivam
2026-02-10 0:24 ` Rob Herring (Arm)
2026-02-03 0:21 ` [PATCH 2/8] phy: zynqmp: Refactor bus width configuration into helper Sean Anderson
2026-02-10 15:00 ` Pandey, Radhey Shyam
2026-02-03 0:21 ` [PATCH 3/8] phy: zynqmp: Refactor common phy initialization into a helper Sean Anderson
2026-02-10 15:05 ` Pandey, Radhey Shyam
2026-02-03 0:21 ` [PATCH 4/8] phy: zynqmp: Calibrate ILL if necessary Sean Anderson
2026-02-10 16:04 ` Pandey, Radhey Shyam
2026-02-10 16:42 ` Sean Anderson
2026-02-03 0:21 ` [PATCH 5/8] phy: zynqmp: Initialize chicken bits Sean Anderson
2026-02-03 0:21 ` Sean Anderson [this message]
2026-02-03 0:21 ` [PATCH 7/8] PCI: xilinx-nwl: Reset the core during probe Sean Anderson
2026-02-18 16:42 ` Manivannan Sadhasivam
2026-02-03 0:21 ` [PATCH 8/8] arm64: zynqmp: Add PCIe resets Sean Anderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260203002128.935842-7-sean.anderson@linux.dev \
--to=sean.anderson@linux.dev \
--cc=bhelgaas@google.com \
--cc=kwilczynski@kernel.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=lpieralisi@kernel.org \
--cc=mani@kernel.org \
--cc=michal.simek@amd.com \
--cc=neil.armstrong@linaro.org \
--cc=radhey.shyam.pandey@amd.com \
--cc=robh@kernel.org \
--cc=thippeswamy.havalige@amd.com \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox