Skip to content

Commit

Permalink
odroidc2: reserve more memory for TrustZone
Browse files Browse the repository at this point in the history
Update DTS from linux sources

Co-authored-by: Sebastian Eckl <[email protected]>
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
Axel Heider and Sebastian Eckl committed Apr 13, 2023
1 parent fb808f0 commit 3f4fc49
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tools/dts/odroidc2.dts
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,24 @@
#size-cells = < 0x02 >;
ranges;

/* 16 MiB reserved for Hardware ROM Firmware */
hwrom@0 {
reg = < 0x00 0x00 0x00 0x1000000 >;
no-map;
};

secmon@10000000 {
/* 2 MiB reserved for ARM Trusted Firmware (BL31) */
secmon@10000000 {
reg = < 0x00 0x10000000 0x00 0x200000 >;
no-map;
};

/* 35 MiB reserved for ARM Trusted Firmware
* 0x5000000 - 0x5300000: 3 MiB for BL31 (alternate location)
* 0x5300000 - 0x7300000: 32 MiB for BL32 (TrustZone OS)
*/
secmon@5000000 {
reg = < 0x00 0x5000000 0x00 0x300000 >;
reg = < 0x00 0x5000000 0x00 0x2300000 >;
no-map;
};

Expand Down

0 comments on commit 3f4fc49

Please sign in to comment.