refactor(plat/fvp): update FVP platform DTS for FEAT_RME

This patch make minor modifications to FVP DTS including modifying
the Non-secure memory range when RME is enabled.

Signed-off-by: Zelalem Aweke <zelalem.aweke@arm.com>
Change-Id: I6b3650a2abfff10462a8a2d42755e6d764f7b035
This commit is contained in:
Zelalem Aweke 2021-07-13 18:59:19 -05:00
parent deb4b3a63e
commit dbbc9a6790
1 changed files with 10 additions and 1 deletions

View File

@ -24,7 +24,11 @@
#address-cells = <2>;
#size-cells = <2>;
chosen { };
#if (ENABLE_RME == 1)
chosen { bootargs = "mem=1G console=ttyAMA0 earlycon=pl011,0x1c090000 root=/dev/vda ip=on";};
#else
chosen {};
#endif
aliases {
serial0 = &v2m_serial0;
@ -135,8 +139,13 @@
memory@80000000 {
device_type = "memory";
#if (ENABLE_RME == 1)
reg = <0x00000000 0x80000000 0 0x7C000000>,
<0x00000008 0x80000000 0 0x80000000>;
#else
reg = <0x00000000 0x80000000 0 0x7F000000>,
<0x00000008 0x80000000 0 0x80000000>;
#endif
};
gic: interrupt-controller@2f000000 {