aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/common/mmu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/qualcomm/common/mmu.c')
-rw-r--r--src/soc/qualcomm/common/mmu.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/soc/qualcomm/common/mmu.c b/src/soc/qualcomm/common/mmu.c
index ba1173edf9..0f12555a7f 100644
--- a/src/soc/qualcomm/common/mmu.c
+++ b/src/soc/qualcomm/common/mmu.c
@@ -3,9 +3,9 @@
#include <arch/mmu.h>
#include <soc/mmu.h>
#include <soc/mmu_common.h>
+#include <soc/symbols_common.h>
__weak bool soc_modem_carve_out(void **start, void **end) { return false; }
-__weak void soc_mmu_dram_config_post_dram_init(void) { /* no-op */ }
void qc_mmu_dram_config_post_dram_init(void *ddr_base, size_t ddr_size)
{
@@ -18,5 +18,9 @@ void qc_mmu_dram_config_post_dram_init(void *ddr_base, size_t ddr_size)
mmu_config_range(ddr_base, start - ddr_base, CACHED_RAM);
mmu_config_range(end, ddr_base + ddr_size - end, CACHED_RAM);
}
- soc_mmu_dram_config_post_dram_init();
+
+ mmu_config_range((void *)_aop_code_ram, REGION_SIZE(aop_code_ram),
+ CACHED_RAM);
+ mmu_config_range((void *)_aop_data_ram, REGION_SIZE(aop_data_ram),
+ CACHED_RAM);
}