devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances
@ 2023-02-27  9:38 Alexander Stein
  2023-03-08 12:00 ` Alexander Stein
  2023-03-08 12:34 ` Fabio Estevam
  0 siblings, 2 replies; 4+ messages in thread
From: Alexander Stein @ 2023-02-27  9:38 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Shawn Guo, Sascha Hauer,
	Fabio Estevam
  Cc: Alexander Stein, Pengutronix Kernel Team, NXP Linux Team,
	devicetree, linux-arm-kernel, Markus Niebel

TPM1/TPM3 are missing, add them.

Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
 arch/arm64/boot/dts/freescale/imx93.dtsi | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/arm64/boot/dts/freescale/imx93.dtsi b/arch/arm64/boot/dts/freescale/imx93.dtsi
index 2076f9c9983a..a30c5d5f4d13 100644
--- a/arch/arm64/boot/dts/freescale/imx93.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx93.dtsi
@@ -153,6 +153,14 @@ system_counter: timer@44290000 {
 				nxp,no-divider;
 			};
 
+			tpm1: pwm@44310000 {
+				compatible = "fsl,imx7ulp-pwm";
+				reg = <0x44310000 0x1000>;
+				clocks = <&clk IMX93_CLK_TPM1_GATE>;
+				#pwm-cells = <3>;
+				status = "disabled";
+			};
+
 			tpm2: pwm@44320000 {
 				compatible = "fsl,imx7ulp-pwm";
 				reg = <0x44320000 0x10000>;
@@ -316,6 +324,14 @@ mu2: mailbox@42440000 {
 				status = "disabled";
 			};
 
+			tpm3: pwm@424e0000 {
+				compatible = "fsl,imx7ulp-pwm";
+				reg = <0x424e0000 0x1000>;
+				clocks = <&clk IMX93_CLK_TPM3_GATE>;
+				#pwm-cells = <3>;
+				status = "disabled";
+			};
+
 			tpm4: pwm@424f0000 {
 				compatible = "fsl,imx7ulp-pwm";
 				reg = <0x424f0000 0x10000>;
-- 
2.34.1


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

* Re: [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances
  2023-02-27  9:38 [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances Alexander Stein
@ 2023-03-08 12:00 ` Alexander Stein
  2023-03-08 12:34 ` Fabio Estevam
  1 sibling, 0 replies; 4+ messages in thread
From: Alexander Stein @ 2023-03-08 12:00 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Shawn Guo, Sascha Hauer,
	Fabio Estevam
  Cc: Pengutronix Kernel Team, NXP Linux Team, devicetree,
	linux-arm-kernel, Markus Niebel

Hi everyone,

any feedback on this?

Thanks,
Alexander

Am Montag, 27. Februar 2023, 10:38:46 CET schrieb Alexander Stein:
> TPM1/TPM3 are missing, add them.
> 
> Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
>  arch/arm64/boot/dts/freescale/imx93.dtsi | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/freescale/imx93.dtsi
> b/arch/arm64/boot/dts/freescale/imx93.dtsi index 2076f9c9983a..a30c5d5f4d13
> 100644
> --- a/arch/arm64/boot/dts/freescale/imx93.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx93.dtsi
> @@ -153,6 +153,14 @@ system_counter: timer@44290000 {
>  				nxp,no-divider;
>  			};
> 
> +			tpm1: pwm@44310000 {
> +				compatible = "fsl,imx7ulp-pwm";
> +				reg = <0x44310000 0x1000>;
> +				clocks = <&clk IMX93_CLK_TPM1_GATE>;
> +				#pwm-cells = <3>;
> +				status = "disabled";
> +			};
> +
>  			tpm2: pwm@44320000 {
>  				compatible = "fsl,imx7ulp-pwm";
>  				reg = <0x44320000 0x10000>;
> @@ -316,6 +324,14 @@ mu2: mailbox@42440000 {
>  				status = "disabled";
>  			};
> 
> +			tpm3: pwm@424e0000 {
> +				compatible = "fsl,imx7ulp-pwm";
> +				reg = <0x424e0000 0x1000>;
> +				clocks = <&clk IMX93_CLK_TPM3_GATE>;
> +				#pwm-cells = <3>;
> +				status = "disabled";
> +			};
> +
>  			tpm4: pwm@424f0000 {
>  				compatible = "fsl,imx7ulp-pwm";
>  				reg = <0x424f0000 0x10000>;


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

* Re: [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances
  2023-02-27  9:38 [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances Alexander Stein
  2023-03-08 12:00 ` Alexander Stein
@ 2023-03-08 12:34 ` Fabio Estevam
  2023-03-08 12:45   ` Alexander Stein
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2023-03-08 12:34 UTC (permalink / raw)
  To: Alexander Stein
  Cc: Rob Herring, Krzysztof Kozlowski, Shawn Guo, Sascha Hauer,
	Pengutronix Kernel Team, NXP Linux Team, devicetree,
	linux-arm-kernel, Markus Niebel

Hi Alexander,

On Mon, Feb 27, 2023 at 6:38 AM Alexander Stein
<alexander.stein@ew.tq-group.com> wrote:
>
> TPM1/TPM3 are missing, add them.
>
> Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>

Who is the original author? If it is Markus, then his name should
appear in the From: line.

Apart from that:

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

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

* Re: [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances
  2023-03-08 12:34 ` Fabio Estevam
@ 2023-03-08 12:45   ` Alexander Stein
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Stein @ 2023-03-08 12:45 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Rob Herring, Krzysztof Kozlowski, Shawn Guo, Sascha Hauer,
	Pengutronix Kernel Team, NXP Linux Team, devicetree,
	linux-arm-kernel, Markus Niebel

Hi Fabio,

Am Mittwoch, 8. März 2023, 13:34:44 CET schrieb Fabio Estevam:
> Hi Alexander,
> 
> On Mon, Feb 27, 2023 at 6:38 AM Alexander Stein
> 
> <alexander.stein@ew.tq-group.com> wrote:
> > TPM1/TPM3 are missing, add them.
> > 
> > Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
> > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> 
> Who is the original author? If it is Markus, then his name should
> appear in the From: line.

Yes, it's Markus. I don't know why authorship got changed, I'll send v2 with 
that fixed.

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

Thanks
Alexander

-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



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

end of thread, other threads:[~2023-03-08 12:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-27  9:38 [PATCH 1/1] arm64: dts: imx93: add missing tpm pwm instances Alexander Stein
2023-03-08 12:00 ` Alexander Stein
2023-03-08 12:34 ` Fabio Estevam
2023-03-08 12:45   ` Alexander Stein

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