linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id
@ 2022-08-08 18:32 Daniel Parks
  2022-08-08 18:32 ` [PATCH 2/2] arm64: dts: ti: k3-am64-main: " Daniel Parks
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Daniel Parks @ 2022-08-08 18:32 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel

The RNG node for this platform claims pka_in_clk. Change it to claim the
correct clock x1_clk. [1]

[1]: https://downloads.ti.com/tisci/esd/latest/5_soc_doc/j721e/clocks.html#clocks-for-sa2-ul0-device

Signed-off-by: Daniel Parks <danielrparks@ti.com>
---
 arch/arm64/boot/dts/ti/k3-j721e-main.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
index 43b6cf5791ee..917c9dc99efa 100644
--- a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
@@ -343,7 +343,7 @@
 			compatible = "inside-secure,safexcel-eip76";
 			reg = <0x0 0x4e10000 0x0 0x7d>;
 			interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
-			clocks = <&k3_clks 264 1>;
+			clocks = <&k3_clks 264 2>;
 		};
 	};
 
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 2/2] arm64: dts: ti: k3-am64-main: fix RNG node clock id
  2022-08-08 18:32 [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id Daniel Parks
@ 2022-08-08 18:32 ` Daniel Parks
  2022-08-29  7:41   ` Jayesh Choudhary
  2022-09-01 14:30   ` Vignesh Raghavendra
  2022-08-29  7:44 ` [PATCH 1/2] arm64: dts: ti: k3-j721e-main: " Jayesh Choudhary
  2022-09-01 14:29 ` (subset) " Vignesh Raghavendra
  2 siblings, 2 replies; 6+ messages in thread
From: Daniel Parks @ 2022-08-08 18:32 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel

The RNG node for this platform claims pka_in_clk. Change it to claim the
correct clock x1_clk. [1]

This patch depends on "[PATCH v2 0/2] Enable SA2UL support on AM64X" [2]

[1]: https://downloads.ti.com/tisci/esd/latest/5_soc_doc/am64x/clocks.html#clocks-for-sa2-ul0-device
[2]: https://lore.kernel.org/linux-arm-kernel/20220711085743.10128-1-j-choudhary@ti.com/

Signed-off-by: Daniel Parks <danielrparks@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
index 293b6b8e8fb2..aa3b43c515d2 100644
--- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
@@ -1324,7 +1324,7 @@
 			compatible = "inside-secure,safexcel-eip76";
 			reg = <0x00 0x40910000 0x00 0x7d>;
 			interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
-			clocks = <&k3_clks 133 0>;
+			clocks = <&k3_clks 133 1>;
 			status = "disabled"; /* Used by OP-TEE */
 		};
 	};
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 2/2] arm64: dts: ti: k3-am64-main: fix RNG node clock id
  2022-08-08 18:32 ` [PATCH 2/2] arm64: dts: ti: k3-am64-main: " Daniel Parks
@ 2022-08-29  7:41   ` Jayesh Choudhary
  2022-09-01 14:30   ` Vignesh Raghavendra
  1 sibling, 0 replies; 6+ messages in thread
From: Jayesh Choudhary @ 2022-08-29  7:41 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel



On 09/08/22 00:02, Daniel Parks wrote:
> The RNG node for this platform claims pka_in_clk. Change it to claim the
> correct clock x1_clk. [1]
> 
> This patch depends on "[PATCH v2 0/2] Enable SA2UL support on AM64X" [2]
> 
> [1]: https://downloads.ti.com/tisci/esd/latest/5_soc_doc/am64x/clocks.html#clocks-for-sa2-ul0-device
> [2]: https://lore.kernel.org/linux-arm-kernel/20220711085743.10128-1-j-choudhary@ti.com/
> 
> Signed-off-by: Daniel Parks <danielrparks@ti.com>
> ---
>   arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
> index 293b6b8e8fb2..aa3b43c515d2 100644
> --- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
> @@ -1324,7 +1324,7 @@
>   			compatible = "inside-secure,safexcel-eip76";
>   			reg = <0x00 0x40910000 0x00 0x7d>;
>   			interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
> -			clocks = <&k3_clks 133 0>;
> +			clocks = <&k3_clks 133 1>;
>   			status = "disabled"; /* Used by OP-TEE */
>   		};
>   	};

Both patches looks good.

Reviewed-by: Jayesh Choudhary <j-choudhary@ti.com>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id
  2022-08-08 18:32 [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id Daniel Parks
  2022-08-08 18:32 ` [PATCH 2/2] arm64: dts: ti: k3-am64-main: " Daniel Parks
@ 2022-08-29  7:44 ` Jayesh Choudhary
  2022-09-01 14:29 ` (subset) " Vignesh Raghavendra
  2 siblings, 0 replies; 6+ messages in thread
From: Jayesh Choudhary @ 2022-08-29  7:44 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel



On 09/08/22 00:02, Daniel Parks wrote:
> The RNG node for this platform claims pka_in_clk. Change it to claim the
> correct clock x1_clk. [1]
> 
> [1]: https://downloads.ti.com/tisci/esd/latest/5_soc_doc/j721e/clocks.html#clocks-for-sa2-ul0-device
> 
> Signed-off-by: Daniel Parks <danielrparks@ti.com>
> ---
>   arch/arm64/boot/dts/ti/k3-j721e-main.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
> index 43b6cf5791ee..917c9dc99efa 100644
> --- a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
> @@ -343,7 +343,7 @@
>   			compatible = "inside-secure,safexcel-eip76";
>   			reg = <0x0 0x4e10000 0x0 0x7d>;
>   			interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
> -			clocks = <&k3_clks 264 1>;
> +			clocks = <&k3_clks 264 2>;
>   		};
>   	};
>   

Reviewed-by: Jayesh Choudhary <j-choudhary@ti.com>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: (subset) [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id
  2022-08-08 18:32 [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id Daniel Parks
  2022-08-08 18:32 ` [PATCH 2/2] arm64: dts: ti: k3-am64-main: " Daniel Parks
  2022-08-29  7:44 ` [PATCH 1/2] arm64: dts: ti: k3-j721e-main: " Jayesh Choudhary
@ 2022-09-01 14:29 ` Vignesh Raghavendra
  2 siblings, 0 replies; 6+ messages in thread
From: Vignesh Raghavendra @ 2022-09-01 14:29 UTC (permalink / raw)
  To: Nishanth Menon, Tero Kristo, Rob Herring, Krzysztof Kozlowski
  Cc: Vignesh Raghavendra, devicetree, linux-arm-kernel, linux-kernel

Hi Daniel Parks,

On Mon, 8 Aug 2022 13:32:00 -0500, Daniel Parks wrote:
> The RNG node for this platform claims pka_in_clk. Change it to claim the
> correct clock x1_clk. [1]
> 
> [1]: https://downloads.ti.com/tisci/esd/latest/5_soc_doc/j721e/clocks.html#clocks-for-sa2-ul0-device
> 
> 

I have applied the following to branch ti-k3-dts-next on [1].
Thank you!

[1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id
      commit: f42f6f9e77ee6b1b86c006d0436ba303901529a9

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
--
Vignesh


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 2/2] arm64: dts: ti: k3-am64-main: fix RNG node clock id
  2022-08-08 18:32 ` [PATCH 2/2] arm64: dts: ti: k3-am64-main: " Daniel Parks
  2022-08-29  7:41   ` Jayesh Choudhary
@ 2022-09-01 14:30   ` Vignesh Raghavendra
  1 sibling, 0 replies; 6+ messages in thread
From: Vignesh Raghavendra @ 2022-09-01 14:30 UTC (permalink / raw)
  To: Nishanth Menon, Tero Kristo, Rob Herring, Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel



On 09/08/22 00:02, Daniel Parks wrote:
> The RNG node for this platform claims pka_in_clk. Change it to claim the
> correct clock x1_clk. [1]
> 
> This patch depends on "[PATCH v2 0/2] Enable SA2UL support on AM64X" [2]
> 
> [1]: https://downloads.ti.com/tisci/esd/latest/5_soc_doc/am64x/clocks.html#clocks-for-sa2-ul0-device
> [2]: https://lore.kernel.org/linux-arm-kernel/20220711085743.10128-1-j-choudhary@ti.com/

I folded below patch into [2] when applying.

> 
> Signed-off-by: Daniel Parks <danielrparks@ti.com>
> ---
>  arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
> index 293b6b8e8fb2..aa3b43c515d2 100644
> --- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
> @@ -1324,7 +1324,7 @@
>  			compatible = "inside-secure,safexcel-eip76";
>  			reg = <0x00 0x40910000 0x00 0x7d>;
>  			interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
> -			clocks = <&k3_clks 133 0>;
> +			clocks = <&k3_clks 133 1>;
>  			status = "disabled"; /* Used by OP-TEE */
>  		};
>  	};

-- 
Regards
Vignesh

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2022-09-01 14:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-08 18:32 [PATCH 1/2] arm64: dts: ti: k3-j721e-main: fix RNG node clock id Daniel Parks
2022-08-08 18:32 ` [PATCH 2/2] arm64: dts: ti: k3-am64-main: " Daniel Parks
2022-08-29  7:41   ` Jayesh Choudhary
2022-09-01 14:30   ` Vignesh Raghavendra
2022-08-29  7:44 ` [PATCH 1/2] arm64: dts: ti: k3-j721e-main: " Jayesh Choudhary
2022-09-01 14:29 ` (subset) " Vignesh Raghavendra

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