diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2021-07-15 14:19:27 -0500 |
---|---|---|
committer | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-07-27 09:48:11 +0200 |
commit | 65b3f56d42e5ddc9183843723cf735950f062410 (patch) | |
tree | ed521fef79128ca0ed19168557febf1795c894f9 | |
parent | 8533263c8512d059e546dd1d0032cfecd7b1a0cf (diff) |
ARM: dts: stm32mp: Add OP-TEE reserved memory to SPL dtb
Add the "/reserved-memory/optee" node to the SPL devicetree. The
purpose is to allow configuring TZC regions when booting OP-TEE.
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi b/arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi index 4b37797f21..a8e15ad09a 100644 --- a/arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi +++ b/arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi @@ -29,9 +29,12 @@ }; reserved-memory { + u-boot,dm-spl; + optee@de000000 { reg = <0xde000000 0x02000000>; no-map; + u-boot,dm-spl; }; }; |