From: Bjorn Helgaas <helgaas@kernel.org>
To: Richard Zhu <hongxing.zhu@nxp.com>
Cc: l.stach@pengutronix.de, bhelgaas@google.com,
lpieralisi@kernel.org, kw@linux.com,
manivannan.sadhasivam@linaro.org, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org, shawnguo@kernel.org,
frank.li@nxp.com, s.hauer@pengutronix.de, festevam@gmail.com,
imx@lists.linux.dev, kernel@pengutronix.de,
linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 06/10] PCI: imx6: Fix the missing reference clock disable logic
Date: Thu, 16 Jan 2025 11:01:14 -0600 [thread overview]
Message-ID: <20250116170114.GA561930@bhelgaas> (raw)
In-Reply-To: <20241126075702.4099164-7-hongxing.zhu@nxp.com>
On Tue, Nov 26, 2024 at 03:56:58PM +0800, Richard Zhu wrote:
> Ensure the *_enable_ref_clk() function is symmetric by addressing missing
> disable parts on some platforms.
>
> Fixes: d0a75c791f98 ("PCI: imx6: Factor out ref clock disable to match enable")
The patch below looks fine to me, and I guess it's more than just
making the code prettier; it also actually *fixes* something, right?
It looks like a functional change because imx_pcie_clk_enable() will
now enable the IMX7D refclk when it didn't before, and
imx_pcie_clk_disable() will disable the IMX6SX and IMX8M* refclk when
it didn't before?
But I don't think the Fixes: tag is correct. I looked at uses of
these symbols:
IMX6SX_GPR12_PCIE_TEST_POWERDOWN
enabled by imx6_pcie_enable_ref_clk()
disabled by imx6_pcie_assert_core_reset()
IMX7D_GPR12_PCIE_PHY_REFCLK_SEL
enabled by imx6_pcie_init_phy()
disabled by imx6_pcie_clk_disable()
IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE
enabled by imx6_pcie_enable_ref_clk()
As far as I can tell, these uses are identical before and after
d0a75c791f98 ("PCI: imx6: Factor out ref clock disable to match
enable").
> Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com>
> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> Reviewed-by: Frank Li <Frank.Li@nxp.com>
> ---
> drivers/pci/controller/dwc/pci-imx6.c | 24 ++++++++++++------------
> 1 file changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
> index 413db182ce9f..ab2c97a8c327 100644
> --- a/drivers/pci/controller/dwc/pci-imx6.c
> +++ b/drivers/pci/controller/dwc/pci-imx6.c
> @@ -599,10 +599,9 @@ static int imx_pcie_attach_pd(struct device *dev)
>
> static int imx6sx_pcie_enable_ref_clk(struct imx_pcie *imx_pcie, bool enable)
> {
> - if (enable)
> - regmap_clear_bits(imx_pcie->iomuxc_gpr, IOMUXC_GPR12,
> - IMX6SX_GPR12_PCIE_TEST_POWERDOWN);
> -
> + regmap_update_bits(imx_pcie->iomuxc_gpr, IOMUXC_GPR12,
> + IMX6SX_GPR12_PCIE_TEST_POWERDOWN,
> + enable ? 0 : IMX6SX_GPR12_PCIE_TEST_POWERDOWN);
> return 0;
> }
>
> @@ -631,19 +630,20 @@ static int imx8mm_pcie_enable_ref_clk(struct imx_pcie *imx_pcie, bool enable)
> {
> int offset = imx_pcie_grp_offset(imx_pcie);
>
> - if (enable) {
> - regmap_clear_bits(imx_pcie->iomuxc_gpr, offset, IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE);
> - regmap_set_bits(imx_pcie->iomuxc_gpr, offset, IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN);
> - }
> -
> + regmap_update_bits(imx_pcie->iomuxc_gpr, offset,
> + IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE,
> + enable ? 0 : IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE);
> + regmap_update_bits(imx_pcie->iomuxc_gpr, offset,
> + IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN,
> + enable ? IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN : 0);
> return 0;
> }
>
> static int imx7d_pcie_enable_ref_clk(struct imx_pcie *imx_pcie, bool enable)
> {
> - if (!enable)
> - regmap_set_bits(imx_pcie->iomuxc_gpr, IOMUXC_GPR12,
> - IMX7D_GPR12_PCIE_PHY_REFCLK_SEL);
> + regmap_update_bits(imx_pcie->iomuxc_gpr, IOMUXC_GPR12,
> + IMX7D_GPR12_PCIE_PHY_REFCLK_SEL,
> + enable ? 0 : IMX7D_GPR12_PCIE_PHY_REFCLK_SEL);
> return 0;
> }
>
> --
> 2.37.1
>
next prev parent reply other threads:[~2025-01-16 17:01 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-26 7:56 [PATCH v7 0/10] A bunch of changes to refine i.MX PCIe driver Richard Zhu
2024-11-26 7:56 ` [PATCH v7 01/10] dt-bindings: imx6q-pcie: Add ref clock for i.MX95 PCIe RC Richard Zhu
2024-11-26 7:56 ` [PATCH v7 02/10] PCI: imx6: Add ref clock for i.MX95 PCIe Richard Zhu
2025-01-19 7:02 ` Manivannan Sadhasivam
2025-01-20 2:49 ` Hongxing Zhu
2025-01-24 8:01 ` Manivannan Sadhasivam
2024-11-26 7:56 ` [PATCH v7 03/10] PCI: imx6: Fetch dbi2 and iATU base addesses from DT Richard Zhu
2024-11-26 7:56 ` [PATCH v7 04/10] PCI: imx6: Correct controller_id generation logic for i.MX7D Richard Zhu
2024-11-26 7:56 ` [PATCH v7 05/10] PCI: imx6: Deassert apps_reset in imx_pcie_deassert_core_reset() Richard Zhu
2025-06-06 21:03 ` Tim Harvey
2025-06-09 8:03 ` Hongxing Zhu
2025-06-10 0:24 ` Tim Harvey
2025-06-10 5:46 ` Hongxing Zhu
2024-11-26 7:56 ` [PATCH v7 06/10] PCI: imx6: Fix the missing reference clock disable logic Richard Zhu
2025-01-16 17:01 ` Bjorn Helgaas [this message]
2025-01-16 17:45 ` Frank Li
2024-11-26 7:56 ` [PATCH v7 07/10] PCI: imx6: Remove imx7d_pcie_init_phy() function Richard Zhu
2024-11-26 7:57 ` [PATCH v7 08/10] PCI: imx6: Use dwc common suspend resume method Richard Zhu
2024-11-26 7:57 ` [PATCH v7 09/10] PCI: imx6: Add i.MX8MQ i.MX8Q and i.MX95 PM support Richard Zhu
2024-11-26 7:57 ` [PATCH v7 10/10] arm64: dts: imx95: Add ref clock for i.MX95 PCIe Richard Zhu
2025-01-14 21:00 ` [PATCH v7 0/10] A bunch of changes to refine i.MX PCIe driver Frank Li
2025-01-15 13:04 ` Krzysztof Wilczyński
2025-01-15 13:06 ` Krzysztof Wilczyński
2025-01-15 13:40 ` Krzysztof Wilczyński
2025-01-16 1:29 ` Hongxing Zhu
2025-01-16 1:44 ` Krzysztof Wilczy��ski
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=20250116170114.GA561930@bhelgaas \
--to=helgaas@kernel.org \
--cc=bhelgaas@google.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=frank.li@nxp.com \
--cc=hongxing.zhu@nxp.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=kw@linux.com \
--cc=l.stach@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.