linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings
@ 2022-04-29 16:13 Tim Harvey
  2022-04-29 16:18 ` Fabio Estevam
  2022-05-05  7:00 ` Shawn Guo
  0 siblings, 2 replies; 4+ messages in thread
From: Tim Harvey @ 2022-04-29 16:13 UTC (permalink / raw)
  To: devicetree, linux-kernel, linux-arm-kernel, Shawn Guo
  Cc: Rob Herring, Fabio Estevam, NXP Linux Team, Tim Harvey

Update the pcie bindings to the correct dt bindings:
 pcie_phy:
  - use pcie0_refclk
  - add required clock-names
 pcie:
  - remove pcie_phy clock as it comes from phy driver

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
v2:
 - update commit log
 - add required clock-names to pcie_phy node
---
 arch/arm64/boot/dts/freescale/imx8mm-venice-gw7902.dts | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw7902.dts b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw7902.dts
index edf0c7aaaef0..7848509b3e2b 100644
--- a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw7902.dts
+++ b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw7902.dts
@@ -595,7 +595,8 @@
 &pcie_phy {
 	fsl,refclk-pad-mode = <IMX8_PCIE_REFCLK_PAD_INPUT>;
 	fsl,clkreq-unsupported;
-	clocks = <&clk IMX8MM_CLK_DUMMY>;
+	clocks = <&pcie0_refclk>;
+	clock-names = "ref";
 	status = "okay";
 };
 
@@ -604,8 +605,8 @@
 	pinctrl-0 = <&pinctrl_pcie0>;
 	reset-gpio = <&gpio4 5 GPIO_ACTIVE_LOW>;
 	clocks = <&clk IMX8MM_CLK_PCIE1_ROOT>, <&clk IMX8MM_CLK_PCIE1_AUX>,
-		 <&clk IMX8MM_CLK_DUMMY>, <&pcie0_refclk>;
-	clock-names = "pcie", "pcie_aux", "pcie_phy", "pcie_bus";
+		 <&pcie0_refclk>;
+	clock-names = "pcie", "pcie_aux", "pcie_bus";
 	assigned-clocks = <&clk IMX8MM_CLK_PCIE1_AUX>,
 			  <&clk IMX8MM_CLK_PCIE1_CTRL>;
 	assigned-clock-rates = <10000000>, <250000000>;
-- 
2.17.1


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

* Re: [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings
  2022-04-29 16:13 [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings Tim Harvey
@ 2022-04-29 16:18 ` Fabio Estevam
  2022-04-29 16:36   ` Tim Harvey
  2022-05-05  7:00 ` Shawn Guo
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2022-04-29 16:18 UTC (permalink / raw)
  To: Tim Harvey
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-kernel,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE,
	Shawn Guo, Rob Herring, NXP Linux Team

Hi Tim,

On Fri, Apr 29, 2022 at 1:13 PM Tim Harvey <tharvey@gateworks.com> wrote:
>
> Update the pcie bindings to the correct dt bindings:
>  pcie_phy:
>   - use pcie0_refclk
>   - add required clock-names
>  pcie:
>   - remove pcie_phy clock as it comes from phy driver
>
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>

It seems you missed the Fixes tag.

Reviewed-by: Fabio Estevam <festevam@gmail.com>

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

* Re: [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings
  2022-04-29 16:18 ` Fabio Estevam
@ 2022-04-29 16:36   ` Tim Harvey
  0 siblings, 0 replies; 4+ messages in thread
From: Tim Harvey @ 2022-04-29 16:36 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-kernel,
	moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE,
	Shawn Guo, Rob Herring, NXP Linux Team

On Fri, Apr 29, 2022 at 9:18 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> Hi Tim,
>
> On Fri, Apr 29, 2022 at 1:13 PM Tim Harvey <tharvey@gateworks.com> wrote:
> >
> > Update the pcie bindings to the correct dt bindings:
> >  pcie_phy:
> >   - use pcie0_refclk
> >   - add required clock-names
> >  pcie:
> >   - remove pcie_phy clock as it comes from phy driver
> >
> > Signed-off-by: Tim Harvey <tharvey@gateworks.com>
>
> It seems you missed the Fixes tag.
>
> Reviewed-by: Fabio Estevam <festevam@gmail.com>

Fabio,

it didn't really 'fix' anything but dt syntax. PCIe works without this patch.

Best Regards,

Tim

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

* Re: [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings
  2022-04-29 16:13 [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings Tim Harvey
  2022-04-29 16:18 ` Fabio Estevam
@ 2022-05-05  7:00 ` Shawn Guo
  1 sibling, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2022-05-05  7:00 UTC (permalink / raw)
  To: Tim Harvey
  Cc: devicetree, linux-kernel, linux-arm-kernel, Rob Herring,
	Fabio Estevam, NXP Linux Team

On Fri, Apr 29, 2022 at 09:13:47AM -0700, Tim Harvey wrote:
> Update the pcie bindings to the correct dt bindings:
>  pcie_phy:
>   - use pcie0_refclk
>   - add required clock-names
>  pcie:
>   - remove pcie_phy clock as it comes from phy driver
> 
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>

Applied, thanks!

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

end of thread, other threads:[~2022-05-05  7:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-29 16:13 [PATCH v2] arm64: dts: imx8mm-venice-gw7902: fix pcie bindings Tim Harvey
2022-04-29 16:18 ` Fabio Estevam
2022-04-29 16:36   ` Tim Harvey
2022-05-05  7:00 ` Shawn Guo

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