diff options
author | Ravi Kumar Bokka <rbokka@codeaurora.org> | 2021-10-15 23:02:41 +0530 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2021-10-25 21:14:22 +0000 |
commit | 64f7eaafa7ca8e5908e6e1dd1be6f6df6cae06d9 (patch) | |
tree | 406654dd76cc68875f423e4adaf400269a415c34 /src/soc/qualcomm/sc7180/mmu.c | |
parent | f8e4ba0085cb8f0d54236825abe0487c733bb25d (diff) |
soc/qualcomm: Commonize AOP firmware support
Move AOP firmware support from qualcomm/sc7180 into qualcomm/common
BUG=b:182963902
TEST=Validated on qualcomm sc7180 development board
Change-Id: I90b0f48e15df390970e027bff2065b7a89b14cec
Signed-off-by: Ravi Kumar Bokka <rbokka@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49767
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/soc/qualcomm/sc7180/mmu.c')
-rw-r--r-- | src/soc/qualcomm/sc7180/mmu.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/soc/qualcomm/sc7180/mmu.c b/src/soc/qualcomm/sc7180/mmu.c index 03e62e507e..6aff9a99f4 100644 --- a/src/soc/qualcomm/sc7180/mmu.c +++ b/src/soc/qualcomm/sc7180/mmu.c @@ -19,9 +19,3 @@ void sc7180_mmu_init(void) mmu_enable(); } - -void soc_mmu_dram_config_post_dram_init(void) -{ - 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); -} |