Merge "feat(imx8mn): add BL31 PIE support" into integration

This commit is contained in:
Madhukar Pappireddy 2022-11-01 15:15:04 +01:00 committed by TrustedFirmware Code Review
commit d81fc8e60e
2 changed files with 2 additions and 1 deletions

View file

@ -182,7 +182,7 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
}
#define MAP_BL31_TOTAL \
MAP_REGION_FLAT(BL31_BASE, BL31_SIZE, MT_MEMORY | MT_RW | MT_SECURE)
MAP_REGION_FLAT(BL31_START, BL31_SIZE, MT_MEMORY | MT_RW | MT_SECURE)
#define MAP_BL31_RO \
MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE, MT_MEMORY | MT_RO | MT_SECURE)
#define MAP_COHERENT_MEM \

View file

@ -48,6 +48,7 @@ BL31_SOURCES += plat/imx/common/imx8_helpers.S \
${IMX_GIC_SOURCES} \
${XLAT_TABLES_LIB_SRCS}
ENABLE_PIE := 1
USE_COHERENT_MEM := 1
RESET_TO_BL31 := 1
A53_DISABLE_NON_TEMPORAL_HINT := 0