3 * David Feng <fenghua@phytium.com.cn>
5 * SPDX-License-Identifier: GPL-2.0+
9 #include <asm/system.h>
10 #include <asm/armv8/mmu.h>
12 DECLARE_GLOBAL_DATA_PTR;
14 #ifndef CONFIG_SYS_DCACHE_OFF
15 void set_pgtable_section(u64 *page_table, u64 index, u64 section,
20 value = section | PMD_TYPE_SECT | PMD_SECT_AF;
21 value |= PMD_ATTRINDX(memory_type);
22 page_table[index] = value;
25 /* to activate the MMU we need to set up virtual memory */
26 static void mmu_setup(void)
30 u64 *page_table = (u64 *)gd->arch.tlb_addr;
32 /* Setup an identity-mapping for all spaces */
33 for (i = 0; i < (PGTABLE_SIZE >> 3); i++) {
34 set_pgtable_section(page_table, i, i << SECTION_SHIFT,
38 /* Setup an identity-mapping for all RAM space */
39 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
40 ulong start = bd->bi_dram[i].start;
41 ulong end = bd->bi_dram[i].start + bd->bi_dram[i].size;
42 for (j = start >> SECTION_SHIFT;
43 j < end >> SECTION_SHIFT; j++) {
44 set_pgtable_section(page_table, j, j << SECTION_SHIFT,
52 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
53 TCR_FLAGS | TCR_EL1_IPS_BITS,
56 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
57 TCR_FLAGS | TCR_EL2_IPS_BITS,
60 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
61 TCR_FLAGS | TCR_EL3_IPS_BITS,
65 set_sctlr(get_sctlr() | CR_M);
69 * Performs a invalidation of the entire data cache at all levels
71 void invalidate_dcache_all(void)
73 __asm_invalidate_dcache_all();
77 * Performs a clean & invalidation of the entire data cache at all levels.
78 * This function needs to be inline to avoid using stack.
79 * __asm_flush_l3_cache return status of timeout
81 inline void flush_dcache_all(void)
85 __asm_flush_dcache_all();
86 ret = __asm_flush_l3_cache();
88 debug("flushing dcache returns 0x%x\n", ret);
90 debug("flushing dcache successfully.\n");
94 * Invalidates range in all levels of D-cache/unified cache
96 void invalidate_dcache_range(unsigned long start, unsigned long stop)
98 __asm_flush_dcache_range(start, stop);
102 * Flush range(clean & invalidate) from all levels of D-cache/unified cache
104 void flush_dcache_range(unsigned long start, unsigned long stop)
106 __asm_flush_dcache_range(start, stop);
109 void dcache_enable(void)
111 /* The data cache is not active unless the mmu is enabled */
112 if (!(get_sctlr() & CR_M)) {
113 invalidate_dcache_all();
114 __asm_invalidate_tlb_all();
118 set_sctlr(get_sctlr() | CR_C);
121 void dcache_disable(void)
127 /* if cache isn't enabled no need to disable */
131 set_sctlr(sctlr & ~(CR_C|CR_M));
134 __asm_invalidate_tlb_all();
137 int dcache_status(void)
139 return (get_sctlr() & CR_C) != 0;
142 #else /* CONFIG_SYS_DCACHE_OFF */
144 void invalidate_dcache_all(void)
148 void flush_dcache_all(void)
152 void invalidate_dcache_range(unsigned long start, unsigned long stop)
156 void flush_dcache_range(unsigned long start, unsigned long stop)
160 void dcache_enable(void)
164 void dcache_disable(void)
168 int dcache_status(void)
173 #endif /* CONFIG_SYS_DCACHE_OFF */
175 #ifndef CONFIG_SYS_ICACHE_OFF
177 void icache_enable(void)
179 __asm_invalidate_icache_all();
180 set_sctlr(get_sctlr() | CR_I);
183 void icache_disable(void)
185 set_sctlr(get_sctlr() & ~CR_I);
188 int icache_status(void)
190 return (get_sctlr() & CR_I) != 0;
193 void invalidate_icache_all(void)
195 __asm_invalidate_icache_all();
198 #else /* CONFIG_SYS_ICACHE_OFF */
200 void icache_enable(void)
204 void icache_disable(void)
208 int icache_status(void)
213 void invalidate_icache_all(void)
217 #endif /* CONFIG_SYS_ICACHE_OFF */
220 * Enable dCache & iCache, whether cache is actually enabled
221 * depend on CONFIG_SYS_DCACHE_OFF and CONFIG_SYS_ICACHE_OFF
223 void __weak enable_caches(void)
230 * Flush range from all levels of d-cache/unified-cache
232 void flush_cache(unsigned long start, unsigned long size)
234 flush_dcache_range(start, start + size);