blob: 9dbcdf22afe266e35eb40804b267f51c5f2c8e65 [file] [log] [blame]
David Feng0ae76532013-12-14 11:47:35 +08001/*
2 * (C) Copyright 2013
3 * David Feng <fenghua@phytium.com.cn>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <asm/system.h>
10#include <asm/armv8/mmu.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14#ifndef CONFIG_SYS_DCACHE_OFF
York Sun22932ff2014-06-23 15:15:53 -070015void set_pgtable_section(u64 *page_table, u64 index, u64 section,
16 u64 memory_type)
David Feng0ae76532013-12-14 11:47:35 +080017{
David Feng0ae76532013-12-14 11:47:35 +080018 u64 value;
19
York Sun22932ff2014-06-23 15:15:53 -070020 value = section | PMD_TYPE_SECT | PMD_SECT_AF;
David Feng0ae76532013-12-14 11:47:35 +080021 value |= PMD_ATTRINDX(memory_type);
York Sun22932ff2014-06-23 15:15:53 -070022 page_table[index] = value;
David Feng0ae76532013-12-14 11:47:35 +080023}
24
25/* to activate the MMU we need to set up virtual memory */
26static void mmu_setup(void)
27{
28 int i, j, el;
29 bd_t *bd = gd->bd;
York Sun22932ff2014-06-23 15:15:53 -070030 u64 *page_table = (u64 *)gd->arch.tlb_addr;
David Feng0ae76532013-12-14 11:47:35 +080031
32 /* Setup an identity-mapping for all spaces */
York Sun22932ff2014-06-23 15:15:53 -070033 for (i = 0; i < (PGTABLE_SIZE >> 3); i++) {
34 set_pgtable_section(page_table, i, i << SECTION_SHIFT,
35 MT_DEVICE_NGNRNE);
36 }
David Feng0ae76532013-12-14 11:47:35 +080037
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++) {
York Sun22932ff2014-06-23 15:15:53 -070044 set_pgtable_section(page_table, j, j << SECTION_SHIFT,
45 MT_NORMAL);
David Feng0ae76532013-12-14 11:47:35 +080046 }
47 }
48
49 /* load TTBR0 */
50 el = current_el();
York Sunf5222cf2014-02-26 13:26:02 -080051 if (el == 1) {
York Sun22932ff2014-06-23 15:15:53 -070052 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
53 TCR_FLAGS | TCR_EL1_IPS_BITS,
54 MEMORY_ATTRIBUTES);
York Sunf5222cf2014-02-26 13:26:02 -080055 } else if (el == 2) {
York Sun22932ff2014-06-23 15:15:53 -070056 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
57 TCR_FLAGS | TCR_EL2_IPS_BITS,
58 MEMORY_ATTRIBUTES);
York Sunf5222cf2014-02-26 13:26:02 -080059 } else {
York Sun22932ff2014-06-23 15:15:53 -070060 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
61 TCR_FLAGS | TCR_EL3_IPS_BITS,
62 MEMORY_ATTRIBUTES);
York Sunf5222cf2014-02-26 13:26:02 -080063 }
David Feng0ae76532013-12-14 11:47:35 +080064 /* enable the mmu */
65 set_sctlr(get_sctlr() | CR_M);
66}
67
68/*
69 * Performs a invalidation of the entire data cache at all levels
70 */
71void invalidate_dcache_all(void)
72{
York Sun1e6ad552014-02-26 13:26:04 -080073 __asm_invalidate_dcache_all();
David Feng0ae76532013-12-14 11:47:35 +080074}
75
York Sun2f78eae2014-06-23 15:15:54 -070076void __weak flush_l3_cache(void)
77{
78}
79
David Feng0ae76532013-12-14 11:47:35 +080080/*
81 * Performs a clean & invalidation of the entire data cache at all levels
82 */
83void flush_dcache_all(void)
84{
85 __asm_flush_dcache_all();
York Sun2f78eae2014-06-23 15:15:54 -070086 flush_l3_cache();
David Feng0ae76532013-12-14 11:47:35 +080087}
88
89/*
90 * Invalidates range in all levels of D-cache/unified cache
91 */
92void invalidate_dcache_range(unsigned long start, unsigned long stop)
93{
94 __asm_flush_dcache_range(start, stop);
95}
96
97/*
98 * Flush range(clean & invalidate) from all levels of D-cache/unified cache
99 */
100void flush_dcache_range(unsigned long start, unsigned long stop)
101{
102 __asm_flush_dcache_range(start, stop);
103}
104
105void dcache_enable(void)
106{
107 /* The data cache is not active unless the mmu is enabled */
108 if (!(get_sctlr() & CR_M)) {
109 invalidate_dcache_all();
110 __asm_invalidate_tlb_all();
111 mmu_setup();
112 }
113
114 set_sctlr(get_sctlr() | CR_C);
115}
116
117void dcache_disable(void)
118{
119 uint32_t sctlr;
120
121 sctlr = get_sctlr();
122
123 /* if cache isn't enabled no need to disable */
124 if (!(sctlr & CR_C))
125 return;
126
127 set_sctlr(sctlr & ~(CR_C|CR_M));
128
129 flush_dcache_all();
130 __asm_invalidate_tlb_all();
131}
132
133int dcache_status(void)
134{
135 return (get_sctlr() & CR_C) != 0;
136}
137
138#else /* CONFIG_SYS_DCACHE_OFF */
139
140void invalidate_dcache_all(void)
141{
142}
143
144void flush_dcache_all(void)
145{
146}
147
148void invalidate_dcache_range(unsigned long start, unsigned long stop)
149{
150}
151
152void flush_dcache_range(unsigned long start, unsigned long stop)
153{
154}
155
156void dcache_enable(void)
157{
158}
159
160void dcache_disable(void)
161{
162}
163
164int dcache_status(void)
165{
166 return 0;
167}
168
169#endif /* CONFIG_SYS_DCACHE_OFF */
170
171#ifndef CONFIG_SYS_ICACHE_OFF
172
173void icache_enable(void)
174{
York Sun1e6ad552014-02-26 13:26:04 -0800175 __asm_invalidate_icache_all();
David Feng0ae76532013-12-14 11:47:35 +0800176 set_sctlr(get_sctlr() | CR_I);
177}
178
179void icache_disable(void)
180{
181 set_sctlr(get_sctlr() & ~CR_I);
182}
183
184int icache_status(void)
185{
186 return (get_sctlr() & CR_I) != 0;
187}
188
189void invalidate_icache_all(void)
190{
191 __asm_invalidate_icache_all();
192}
193
194#else /* CONFIG_SYS_ICACHE_OFF */
195
196void icache_enable(void)
197{
198}
199
200void icache_disable(void)
201{
202}
203
204int icache_status(void)
205{
206 return 0;
207}
208
209void invalidate_icache_all(void)
210{
211}
212
213#endif /* CONFIG_SYS_ICACHE_OFF */
214
215/*
216 * Enable dCache & iCache, whether cache is actually enabled
217 * depend on CONFIG_SYS_DCACHE_OFF and CONFIG_SYS_ICACHE_OFF
218 */
York Sun2f78eae2014-06-23 15:15:54 -0700219void __weak enable_caches(void)
David Feng0ae76532013-12-14 11:47:35 +0800220{
221 icache_enable();
222 dcache_enable();
223}
224
225/*
226 * Flush range from all levels of d-cache/unified-cache
227 */
228void flush_cache(unsigned long start, unsigned long size)
229{
230 flush_dcache_range(start, start + size);
231}