diff options
author | Gatien Chevallier <[email protected]> | 2023-09-21 10:03:01 +0200 |
---|---|---|
committer | Alexandre Torgue <[email protected]> | 2023-10-09 13:46:11 +0200 |
commit | efd00dc04f0310622e54534b71c522f2ca7db07e (patch) | |
tree | 186e2062c6a0e4300f40606e026a424b50d13912 | |
parent | 565c88ae53c5d0acacb7644f337e786d08874b76 (diff) |
ARM: dts: stm32: add RNG node for STM32MP13x platforms
The RNG on STM32MP13 offers upgrades like customization of its
configuration and the conditional reset.
The hardware RNG should be managed in the secure world for but it
is supported on Linux. Therefore, is it not default enabled.
Signed-off-by: Gatien Chevallier <[email protected]>
Signed-off-by: Alexandre Torgue <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/st/stm32mp131.dtsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/st/stm32mp131.dtsi b/arch/arm/boot/dts/st/stm32mp131.dtsi index a94ce3085466..b04d24c939c3 100644 --- a/arch/arm/boot/dts/st/stm32mp131.dtsi +++ b/arch/arm/boot/dts/st/stm32mp131.dtsi @@ -1221,6 +1221,14 @@ status = "disabled"; }; + rng: rng@54004000 { + compatible = "st,stm32mp13-rng"; + reg = <0x54004000 0x400>; + clocks = <&rcc RNG1_K>; + resets = <&rcc RNG1_R>; + status = "disabled"; + }; + mdma: dma-controller@58000000 { compatible = "st,stm32h7-mdma"; reg = <0x58000000 0x1000>; |