From: Lucas Stach <l.stach@pengutronix.de> To: Bjorn Helgaas <bhelgaas@google.com>, Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>, Rob Herring <robh+dt@kernel.org>, Richard Zhu <hongxing.zhu@nxp.com> Cc: NXP Linux Team <linux-imx@nxp.com>, linux-pci@vger.kernel.org, devicetree@vger.kernel.org, kernel@pengutronix.de, patchwork-lst@pengutronix.de Subject: [PATCH 5/7] PCI: imx6: Configure PHY refclock according to DT property Date: Mon, 10 May 2021 16:15:07 +0200 [thread overview] Message-ID: <20210510141509.929120-5-l.stach@pengutronix.de> (raw) In-Reply-To: <20210510141509.929120-1-l.stach@pengutronix.de> This configures the PHY reference clock input according to the newly introduced fsl,refclk-pad-mode DT property. The default in absence of this property is to use the refclk pad on i.MX8MQ and the internal reference clock on all other SoCs, keeping compatibility with existing devicetrees, but allowing boards to configure this when they differ from the default. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> --- drivers/pci/controller/dwc/pci-imx6.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c index 5e13758222e8..f184077f6d17 100644 --- a/drivers/pci/controller/dwc/pci-imx6.c +++ b/drivers/pci/controller/dwc/pci-imx6.c @@ -79,6 +79,7 @@ struct imx6_pcie { u32 tx_deemph_gen2_6db; u32 tx_swing_full; u32 tx_swing_low; + u32 refclk_pad_mode; struct regulator *vpcie; void __iomem *phy_base; @@ -613,18 +614,17 @@ static void imx6_pcie_init_phy(struct imx6_pcie *imx6_pcie) { switch (imx6_pcie->drvdata->variant) { case IMX8MQ: - /* - * TODO: Currently this code assumes external - * oscillator is being used - */ regmap_update_bits(imx6_pcie->iomuxc_gpr, imx6_pcie_grp_offset(imx6_pcie), IMX8MQ_GPR_PCIE_REF_USE_PAD, - IMX8MQ_GPR_PCIE_REF_USE_PAD); + imx6_pcie->refclk_pad_mode == 1 ? + IMX8MQ_GPR_PCIE_REF_USE_PAD : 0); break; case IMX7D: regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12, - IMX7D_GPR12_PCIE_PHY_REFCLK_SEL, 0); + IMX7D_GPR12_PCIE_PHY_REFCLK_SEL, + imx6_pcie->refclk_pad_mode == 1 ? + IMX7D_GPR12_PCIE_PHY_REFCLK_SEL : 0); break; case IMX6SX: regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12, @@ -1049,6 +1049,12 @@ static int imx6_pcie_probe(struct platform_device *pdev) "pcie_inbound_axi clock missing or invalid\n"); break; case IMX8MQ: + /* + * i.MX8MQ is special, as the default refclk pad mode is set to + * input in order to keep compatibility with old devicetrees. + */ + imx6_pcie->refclk_pad_mode = 1; + imx6_pcie->pcie_aux = devm_clk_get(dev, "pcie_aux"); if (IS_ERR(imx6_pcie->pcie_aux)) return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_aux), @@ -1114,6 +1120,10 @@ static int imx6_pcie_probe(struct platform_device *pdev) &imx6_pcie->tx_swing_low)) imx6_pcie->tx_swing_low = 127; + /* get PHY refclk pad mode */ + of_property_read_u32(node, "fsl,refclk-pad-mode", + &imx6_pcie->refclk_pad_mode); + /* Limit link speed */ pci->link_gen = 1; ret = of_property_read_u32(node, "fsl,max-link-speed", &pci->link_gen); -- 2.29.2
next prev parent reply other threads:[~2021-05-10 14:55 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-05-10 14:15 [PATCH 1/7] PCI: imx6: Move i.MX8MQ controller instance check to correct case statement Lucas Stach 2021-05-10 14:15 ` [PATCH 2/7] PCI: imx6: Initialize ATU unroll offset Lucas Stach 2021-05-11 20:03 ` Rob Herring 2021-05-10 14:15 ` [PATCH 3/7] PCI: imx6: Rework PHY search and mapping Lucas Stach 2021-05-10 17:05 ` Rob Herring 2021-05-11 8:11 ` Lucas Stach 2021-05-11 14:21 ` Rob Herring 2021-05-11 14:54 ` Lucas Stach 2021-05-11 15:22 ` Rob Herring 2021-08-04 11:55 ` Lorenzo Pieralisi 2021-05-10 14:15 ` [PATCH 4/7] dt-bindings: imx6q-pcie: add a property configure refclk pad usage mode Lucas Stach 2021-05-11 19:55 ` Rob Herring 2021-05-10 14:15 ` Lucas Stach [this message] 2021-05-10 14:15 ` [PATCH 6/7] dt-bindings: imx6q-pcie: add compatibles for i.MX8MM PCIe Lucas Stach 2021-05-10 14:15 ` [PATCH 7/7] PCI: imx6: Add i.MX8MM support Lucas Stach 2021-06-23 13:46 ` [PATCH 1/7] PCI: imx6: Move i.MX8MQ controller instance check to correct case statement Lorenzo Pieralisi
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=20210510141509.929120-5-l.stach@pengutronix.de \ --to=l.stach@pengutronix.de \ --cc=bhelgaas@google.com \ --cc=devicetree@vger.kernel.org \ --cc=hongxing.zhu@nxp.com \ --cc=kernel@pengutronix.de \ --cc=linux-imx@nxp.com \ --cc=linux-pci@vger.kernel.org \ --cc=lorenzo.pieralisi@arm.com \ --cc=patchwork-lst@pengutronix.de \ --cc=robh+dt@kernel.org \ --subject='Re: [PATCH 5/7] PCI: imx6: Configure PHY refclock according to DT property' \ /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
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).