blob: cbd6c094dd0a05b7431160f6b3f004990edbd4d5 [file] [log] [blame]
Angel Ponse67ab182020-04-04 18:51:11 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tristan Shiehc645a5a2018-07-04 13:37:39 +08002
3#include <arch/mmu.h>
Tristan Shiehc645a5a2018-07-04 13:37:39 +08004#include <symbols.h>
5#include <soc/emi.h>
6#include <soc/mmu_operations.h>
7
8__weak void mtk_soc_after_dram(void) { /* do nothing */ }
9
10void mtk_mmu_init(void)
11{
Yidi Linc68176c2024-01-16 15:08:41 +080012 static bool mmu_inited;
13
14 if (mmu_inited)
15 return;
16
17 mmu_inited = true;
18
Tristan Shiehc645a5a2018-07-04 13:37:39 +080019 mmu_init();
20
Tristan Shieh1efe2572018-08-09 15:14:15 +080021 /*
Huayang Duan4bcb63b2020-07-23 13:44:17 +080022 * Set 0x0 to 8GB address as device memory. We want to config IO_PHYS
Tristan Shieh1efe2572018-08-09 15:14:15 +080023 * address to DEV_MEM, and map a proper range of dram for the memory
24 * test during calibration.
25 */
Huayang Duan4bcb63b2020-07-23 13:44:17 +080026 mmu_config_range((void *)0, (uintptr_t)8U * GiB, DEV_MEM);
Tristan Shiehc645a5a2018-07-04 13:37:39 +080027
28 /* SRAM is cached */
Julius Werner7e0dea62019-02-20 18:39:22 -080029 mmu_config_range(_sram, REGION_SIZE(sram), SECURE_CACHED_MEM);
Tristan Shiehc645a5a2018-07-04 13:37:39 +080030
31 /* L2C SRAM is cached */
Julius Werner7e0dea62019-02-20 18:39:22 -080032 mmu_config_range(_sram_l2c, REGION_SIZE(sram_l2c), SECURE_CACHED_MEM);
Tristan Shiehc645a5a2018-07-04 13:37:39 +080033
34 /* DMA is non-cached and is reserved for TPM & da9212 I2C DMA */
Julius Werner7e0dea62019-02-20 18:39:22 -080035 mmu_config_range(_dma_coherent, REGION_SIZE(dma_coherent),
Tristan Shieh1efe2572018-08-09 15:14:15 +080036 SECURE_UNCACHED_MEM);
Tristan Shiehc645a5a2018-07-04 13:37:39 +080037
38 mmu_enable();
39}
40
41void mtk_mmu_after_dram(void)
42{
43 /* Map DRAM as cached now that it's up and running */
Tristan Shieh1efe2572018-08-09 15:14:15 +080044 mmu_config_range(_dram, (uintptr_t)sdram_size(), NONSECURE_CACHED_MEM);
Tristan Shiehc645a5a2018-07-04 13:37:39 +080045
46 mtk_soc_after_dram();
47}
48
49void mtk_mmu_disable_l2c_sram(void)
50{
51 /* Unmap L2C SRAM so it can be reclaimed by L2 cache */
52 /* TODO: Implement true unmapping, and also use it for the zero-page! */
Julius Werner7e0dea62019-02-20 18:39:22 -080053 mmu_config_range(_sram_l2c, REGION_SIZE(sram_l2c), DEV_MEM);
Tristan Shiehc645a5a2018-07-04 13:37:39 +080054
55 /* Careful: changing cache geometry while it's active is a bad idea! */
56 mmu_disable();
57
58 mtk_soc_disable_l2c_sram();
59
Martin Roth26f97f92021-10-01 14:53:22 -060060 /* Re-enable MMU with now enlarged L2 cache. Page tables still valid. */
Tristan Shiehc645a5a2018-07-04 13:37:39 +080061 mmu_enable();
62}