commit | 4bef6b05666dfe384193703e3f7d3694a36bc25b | [log] [tgz] |
---|---|---|
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | Tue Aug 07 16:35:54 2018 +0100 |
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | Fri Aug 10 13:47:37 2018 +0100 |
tree | addad08ccb4ba60e38b56cd453364969c8ced056 | |
parent | 533d3a8a93d6c6970ee4618b1cd6764b67fb061b [diff] |
layerscape: stm32mp1: Migrate to enable_mmu_svc_mon() Change-Id: I3d16b247a0fa457e6293e2d2c4503dfde1e51c1d Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
diff --git a/plat/layerscape/common/ls_bl1_setup.c b/plat/layerscape/common/ls_bl1_setup.c index 43f7450..0642b5e 100644 --- a/plat/layerscape/common/ls_bl1_setup.c +++ b/plat/layerscape/common/ls_bl1_setup.c
@@ -59,7 +59,7 @@ ); VERBOSE("After setup the page tables\n"); #ifdef AARCH32 - enable_mmu_secure(0); + enable_mmu_svc_mon(0); #else enable_mmu_el3(0); #endif /* AARCH32 */
diff --git a/plat/layerscape/common/ls_bl2_setup.c b/plat/layerscape/common/ls_bl2_setup.c index 6e6ad6e..4b2dc72 100644 --- a/plat/layerscape/common/ls_bl2_setup.c +++ b/plat/layerscape/common/ls_bl2_setup.c
@@ -53,7 +53,7 @@ ); #ifdef AARCH32 - enable_mmu_secure(0); + enable_mmu_svc_mon(0); #else enable_mmu_el1(0); #endif
diff --git a/plat/st/stm32mp1/stm32mp1_common.c b/plat/st/stm32mp1/stm32mp1_common.c index 68ca7db..7d84da1 100644 --- a/plat/st/stm32mp1/stm32mp1_common.c +++ b/plat/st/stm32mp1/stm32mp1_common.c
@@ -74,7 +74,7 @@ mmap_add(stm32mp1_mmap); init_xlat_tables(); - enable_mmu_secure(0); + enable_mmu_svc_mon(0); } uintptr_t plat_get_ns_image_entrypoint(void)