Merge "refactor(ast2700): update memory layout" into integration

This commit is contained in:
Manish V Badarkhe 2023-08-30 12:19:38 +02:00 committed by TrustedFirmware Code Review
commit cf6371bc34

View file

@ -41,13 +41,13 @@
#define MAX_MMAP_REGIONS U(32)
/* BL31 region */
#define BL31_BASE ULL(0x400000000)
#define BL31_SIZE ULL(0x400000)
#define BL31_BASE ULL(0x430000000)
#define BL31_SIZE SZ_512K
#define BL31_LIMIT (BL31_BASE + BL31_SIZE)
/* BL32 region */
#define BL32_BASE BL31_LIMIT
#define BL32_SIZE ULL(0x400000)
#define BL32_SIZE SZ_16M
#define BL32_LIMIT (BL32_BASE + BL32_SIZE)
/* console */