mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 13:36:05 +00:00
rpi3: enlarge SEC_DRAM0_SIZE for optee_test to pass
Running optee_test failed because SEC_DRAM0_SIZE is too small. Previous is 2 MB. We enlarge it to 11 MB for passing the test. Also we reduce the NS_DRAM0_SIZE from 13MB to 4MB so that the whole section is still fit in 16MB. This commit also modified the document to reflect the changes we've made in code. Tested-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com> Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>
This commit is contained in:
parent
46e8870385
commit
8ebf806fc5
2 changed files with 4 additions and 4 deletions
|
@ -123,7 +123,7 @@ secure platform!
|
||||||
| Secure SRAM | BL2, BL31
|
| Secure SRAM | BL2, BL31
|
||||||
0x10100000 +-----------------+
|
0x10100000 +-----------------+
|
||||||
| Secure DRAM | BL32 (Secure payload)
|
| Secure DRAM | BL32 (Secure payload)
|
||||||
0x10300000 +-----------------+
|
0x10C00000 +-----------------+
|
||||||
| Non-secure DRAM | BL33
|
| Non-secure DRAM | BL33
|
||||||
0x11000000 +-----------------+
|
0x11000000 +-----------------+
|
||||||
| |
|
| |
|
||||||
|
|
|
@ -75,10 +75,10 @@
|
||||||
#define SEC_SRAM_SIZE ULL(0x00100000)
|
#define SEC_SRAM_SIZE ULL(0x00100000)
|
||||||
|
|
||||||
#define SEC_DRAM0_BASE ULL(0x10100000)
|
#define SEC_DRAM0_BASE ULL(0x10100000)
|
||||||
#define SEC_DRAM0_SIZE ULL(0x00200000)
|
#define SEC_DRAM0_SIZE ULL(0x00B00000)
|
||||||
|
|
||||||
#define NS_DRAM0_BASE ULL(0x10300000)
|
#define NS_DRAM0_BASE ULL(0x10C00000)
|
||||||
#define NS_DRAM0_SIZE ULL(0x00D00000)
|
#define NS_DRAM0_SIZE ULL(0x00400000)
|
||||||
/* End of reserved memory */
|
/* End of reserved memory */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue