aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sc7180/mmu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/qualcomm/sc7180/mmu.c')
-rw-r--r--src/soc/qualcomm/sc7180/mmu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/qualcomm/sc7180/mmu.c b/src/soc/qualcomm/sc7180/mmu.c
index b33baca0f1..8447c01b72 100644
--- a/src/soc/qualcomm/sc7180/mmu.c
+++ b/src/soc/qualcomm/sc7180/mmu.c
@@ -22,5 +22,6 @@ void sc7180_mmu_init(void)
void soc_mmu_dram_config_post_dram_init(void)
{
- mmu_config_range((void *)_aop, REGION_SIZE(aop), CACHED_RAM);
+ 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);
}