blob: b3504e1e2ceb9e9735bf138b6e81e678c0290ff9 [file] [log] [blame]
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +00001/*
Antonio Nino Diazb9ae5db2018-05-02 11:23:56 +01002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +00005 */
6
7#include <arch.h>
8#include <arch_helpers.h>
9#include <assert.h>
10#include <bl_common.h>
11#include <cassert.h>
12#include <common_def.h>
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000013#include <sys/types.h>
14#include <utils.h>
Isla Mitchellc4a1a072017-08-07 11:20:13 +010015#include <utils_def.h>
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000016#include <xlat_tables_v2.h>
17#include "../xlat_tables_private.h"
18
Antonio Nino Diazbafc7532017-10-25 11:53:25 +010019unsigned long long tcr_physical_addr_size_bits(unsigned long long max_addr)
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000020{
21 /* Physical address can't exceed 48 bits */
22 assert((max_addr & ADDR_MASK_48_TO_63) == 0);
23
24 /* 48 bits address */
25 if (max_addr & ADDR_MASK_44_TO_47)
26 return TCR_PS_BITS_256TB;
27
28 /* 44 bits address */
29 if (max_addr & ADDR_MASK_42_TO_43)
30 return TCR_PS_BITS_16TB;
31
32 /* 42 bits address */
33 if (max_addr & ADDR_MASK_40_TO_41)
34 return TCR_PS_BITS_4TB;
35
36 /* 40 bits address */
37 if (max_addr & ADDR_MASK_36_TO_39)
38 return TCR_PS_BITS_1TB;
39
40 /* 36 bits address */
41 if (max_addr & ADDR_MASK_32_TO_35)
42 return TCR_PS_BITS_64GB;
43
44 return TCR_PS_BITS_4GB;
45}
46
Antonio Nino Diaz3759e3f2017-03-22 15:48:51 +000047#if ENABLE_ASSERTIONS
Antonio Nino Diazb9ae5db2018-05-02 11:23:56 +010048/*
49 * Physical Address ranges supported in the AArch64 Memory Model. Value 0b110 is
50 * supported in ARMv8.2 onwards.
51 */
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000052static const unsigned int pa_range_bits_arr[] = {
53 PARANGE_0000, PARANGE_0001, PARANGE_0010, PARANGE_0011, PARANGE_0100,
Antonio Nino Diazb9ae5db2018-05-02 11:23:56 +010054 PARANGE_0101, PARANGE_0110
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000055};
56
Sandrine Bailleuxc5b63772017-05-31 13:31:48 +010057unsigned long long xlat_arch_get_max_supported_pa(void)
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000058{
59 u_register_t pa_range = read_id_aa64mmfr0_el1() &
60 ID_AA64MMFR0_EL1_PARANGE_MASK;
61
62 /* All other values are reserved */
63 assert(pa_range < ARRAY_SIZE(pa_range_bits_arr));
64
David Cunadoc1503122018-02-16 21:12:58 +000065 return (1ULL << pa_range_bits_arr[pa_range]) - 1ULL;
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000066}
Antonio Nino Diaz3759e3f2017-03-22 15:48:51 +000067#endif /* ENABLE_ASSERTIONS*/
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000068
Antonio Nino Diazdcf9d922017-10-04 16:52:15 +010069int is_mmu_enabled_ctx(const xlat_ctx_t *ctx)
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000070{
Antonio Nino Diazdcf9d922017-10-04 16:52:15 +010071 if (ctx->xlat_regime == EL1_EL0_REGIME) {
72 assert(xlat_arch_current_el() >= 1);
73 return (read_sctlr_el1() & SCTLR_M_BIT) != 0;
74 } else {
75 assert(ctx->xlat_regime == EL3_REGIME);
76 assert(xlat_arch_current_el() >= 3);
77 return (read_sctlr_el3() & SCTLR_M_BIT) != 0;
78 }
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +000079}
80
Antonio Nino Diazdcf9d922017-10-04 16:52:15 +010081
Antonio Nino Diazac998032017-02-27 17:23:54 +000082void xlat_arch_tlbi_va(uintptr_t va)
83{
Douglas Raillard2d545792017-09-25 15:23:22 +010084#if IMAGE_EL == 1
85 assert(IS_IN_EL(1));
86 xlat_arch_tlbi_va_regime(va, EL1_EL0_REGIME);
87#elif IMAGE_EL == 3
88 assert(IS_IN_EL(3));
89 xlat_arch_tlbi_va_regime(va, EL3_REGIME);
90#endif
91}
92
93void xlat_arch_tlbi_va_regime(uintptr_t va, xlat_regime_t xlat_regime)
94{
Antonio Nino Diazac998032017-02-27 17:23:54 +000095 /*
96 * Ensure the translation table write has drained into memory before
97 * invalidating the TLB entry.
98 */
99 dsbishst();
100
Douglas Raillard2d545792017-09-25 15:23:22 +0100101 /*
102 * This function only supports invalidation of TLB entries for the EL3
103 * and EL1&0 translation regimes.
104 *
105 * Also, it is architecturally UNDEFINED to invalidate TLBs of a higher
106 * exception level (see section D4.9.2 of the ARM ARM rev B.a).
107 */
108 if (xlat_regime == EL1_EL0_REGIME) {
109 assert(xlat_arch_current_el() >= 1);
110 tlbivaae1is(TLBI_ADDR(va));
111 } else {
112 assert(xlat_regime == EL3_REGIME);
113 assert(xlat_arch_current_el() >= 3);
114 tlbivae3is(TLBI_ADDR(va));
115 }
Antonio Nino Diazac998032017-02-27 17:23:54 +0000116}
117
118void xlat_arch_tlbi_va_sync(void)
119{
120 /*
121 * A TLB maintenance instruction can complete at any time after
122 * it is issued, but is only guaranteed to be complete after the
123 * execution of DSB by the PE that executed the TLB maintenance
124 * instruction. After the TLB invalidate instruction is
125 * complete, no new memory accesses using the invalidated TLB
126 * entries will be observed by any observer of the system
127 * domain. See section D4.8.2 of the ARMv8 (issue k), paragraph
128 * "Ordering and completion of TLB maintenance instructions".
129 */
130 dsbish();
131
132 /*
133 * The effects of a completed TLB maintenance instruction are
134 * only guaranteed to be visible on the PE that executed the
135 * instruction after the execution of an ISB instruction by the
136 * PE that executed the TLB maintenance instruction.
137 */
138 isb();
139}
140
Antonio Nino Diazefabaa92017-04-27 13:30:22 +0100141int xlat_arch_current_el(void)
142{
143 int el = GET_EL(read_CurrentEl());
144
145 assert(el > 0);
146
147 return el;
148}
149
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000150/*******************************************************************************
151 * Macro generating the code for the function enabling the MMU in the given
152 * exception level, assuming that the pagetables have already been created.
153 *
154 * _el: Exception level at which the function will run
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000155 * _tlbi_fct: Function to invalidate the TLBs at the current
156 * exception level
157 ******************************************************************************/
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100158#define DEFINE_ENABLE_MMU_EL(_el, _tlbi_fct) \
159 static void enable_mmu_internal_el##_el(int flags, \
160 uint64_t mair, \
161 uint64_t tcr, \
162 uint64_t ttbr) \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000163 { \
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100164 uint32_t sctlr = read_sctlr_el##_el(); \
165 assert((sctlr & SCTLR_M_BIT) == 0); \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000166 \
167 /* Invalidate TLBs at the current exception level */ \
168 _tlbi_fct(); \
169 \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000170 write_mair_el##_el(mair); \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000171 write_tcr_el##_el(tcr); \
Isla Mitchellc4a1a072017-08-07 11:20:13 +0100172 \
173 /* Set TTBR bits as well */ \
174 if (ARM_ARCH_AT_LEAST(8, 2)) { \
175 /* Enable CnP bit so as to share page tables */ \
176 /* with all PEs. This is mandatory for */ \
177 /* ARMv8.2 implementations. */ \
178 ttbr |= TTBR_CNP_BIT; \
179 } \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000180 write_ttbr0_el##_el(ttbr); \
181 \
182 /* Ensure all translation table writes have drained */ \
183 /* into memory, the TLB invalidation is complete, */ \
184 /* and translation register writes are committed */ \
185 /* before enabling the MMU */ \
Antonio Nino Diaz3f13c352017-02-24 11:39:22 +0000186 dsbish(); \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000187 isb(); \
188 \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000189 sctlr |= SCTLR_WXN_BIT | SCTLR_M_BIT; \
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000190 if (flags & DISABLE_DCACHE) \
191 sctlr &= ~SCTLR_C_BIT; \
192 else \
193 sctlr |= SCTLR_C_BIT; \
194 \
195 write_sctlr_el##_el(sctlr); \
196 \
197 /* Ensure the MMU enable takes effect immediately */ \
198 isb(); \
199 }
200
201/* Define EL1 and EL3 variants of the function enabling the MMU */
202#if IMAGE_EL == 1
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100203DEFINE_ENABLE_MMU_EL(1, tlbivmalle1)
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000204#elif IMAGE_EL == 3
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100205DEFINE_ENABLE_MMU_EL(3, tlbialle3)
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000206#endif
207
Sandrine Bailleuxc5b63772017-05-31 13:31:48 +0100208void enable_mmu_arch(unsigned int flags,
209 uint64_t *base_table,
Sandrine Bailleux46c53a22017-07-11 15:11:10 +0100210 unsigned long long max_pa,
211 uintptr_t max_va)
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000212{
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100213 uint64_t mair, ttbr, tcr;
214
215 /* Set attributes in the right indices of the MAIR. */
216 mair = MAIR_ATTR_SET(ATTR_DEVICE, ATTR_DEVICE_INDEX);
217 mair |= MAIR_ATTR_SET(ATTR_IWBWA_OWBWA_NTR, ATTR_IWBWA_OWBWA_NTR_INDEX);
218 mair |= MAIR_ATTR_SET(ATTR_NON_CACHEABLE, ATTR_NON_CACHEABLE_INDEX);
219
220 ttbr = (uint64_t) base_table;
221
222 /*
223 * Set TCR bits as well.
224 */
225
226 /*
227 * Limit the input address ranges and memory region sizes translated
228 * using TTBR0 to the given virtual address space size.
229 */
Sandrine Bailleux46c53a22017-07-11 15:11:10 +0100230 assert(max_va < UINTPTR_MAX);
231 uintptr_t virtual_addr_space_size = max_va + 1;
232 assert(CHECK_VIRT_ADDR_SPACE_SIZE(virtual_addr_space_size));
233 /*
Sandrine Bailleux12e86442017-07-19 10:11:13 +0100234 * __builtin_ctzll(0) is undefined but here we are guaranteed that
Sandrine Bailleux46c53a22017-07-11 15:11:10 +0100235 * virtual_addr_space_size is in the range [1,UINTPTR_MAX].
236 */
Sandrine Bailleux12e86442017-07-19 10:11:13 +0100237 tcr = 64 - __builtin_ctzll(virtual_addr_space_size);
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100238
239 /*
240 * Set the cacheability and shareability attributes for memory
241 * associated with translation table walks.
242 */
243 if (flags & XLAT_TABLE_NC) {
244 /* Inner & outer non-cacheable non-shareable. */
245 tcr |= TCR_SH_NON_SHAREABLE |
246 TCR_RGN_OUTER_NC | TCR_RGN_INNER_NC;
247 } else {
248 /* Inner & outer WBWA & shareable. */
249 tcr |= TCR_SH_INNER_SHAREABLE |
250 TCR_RGN_OUTER_WBA | TCR_RGN_INNER_WBA;
251 }
252
Sandrine Bailleuxc5b63772017-05-31 13:31:48 +0100253 /*
254 * It is safer to restrict the max physical address accessible by the
255 * hardware as much as possible.
256 */
Antonio Nino Diazbafc7532017-10-25 11:53:25 +0100257 unsigned long long tcr_ps_bits = tcr_physical_addr_size_bits(max_pa);
Sandrine Bailleuxc5b63772017-05-31 13:31:48 +0100258
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000259#if IMAGE_EL == 1
260 assert(IS_IN_EL(1));
Antonio Nino Diazc8274a82017-09-15 10:30:34 +0100261 /*
262 * TCR_EL1.EPD1: Disable translation table walk for addresses that are
263 * translated using TTBR1_EL1.
264 */
265 tcr |= TCR_EPD1_BIT | (tcr_ps_bits << TCR_EL1_IPS_SHIFT);
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100266 enable_mmu_internal_el1(flags, mair, tcr, ttbr);
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000267#elif IMAGE_EL == 3
268 assert(IS_IN_EL(3));
Sandrine Bailleux1423d052017-05-31 13:38:51 +0100269 tcr |= TCR_EL3_RES1 | (tcr_ps_bits << TCR_EL3_PS_SHIFT);
270 enable_mmu_internal_el3(flags, mair, tcr, ttbr);
Antonio Nino Diaz233c7c12017-03-08 14:40:23 +0000271#endif
272}