blob: f4322375c049d46d7afc7e7678fe3df831cfb222 [file] [log] [blame]
Soby Mathew44170c42016-03-22 15:51:08 +00001/*
2 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <arch.h>
32#include <arch_helpers.h>
33#include <assert.h>
34#include <cassert.h>
35#include <platform_def.h>
Sandrine Bailleux7659a262016-07-05 09:55:03 +010036#include <utils.h>
Soby Mathew44170c42016-03-22 15:51:08 +000037#include <xlat_tables.h>
38#include "../xlat_tables_private.h"
39
Soby Mathew44170c42016-03-22 15:51:08 +000040/*
41 * The virtual address space size must be a power of two (as set in TCR.T0SZ).
42 * As we start the initial lookup at level 1, it must also be between 2 GB and
43 * 512 GB (with the virtual address size therefore 31 to 39 bits). See section
44 * D4.2.5 in the ARMv8-A Architecture Reference Manual (DDI 0487A.i) for more
45 * information.
46 */
47CASSERT(ADDR_SPACE_SIZE >= (1ull << 31) && ADDR_SPACE_SIZE <= (1ull << 39) &&
48 IS_POWER_OF_TWO(ADDR_SPACE_SIZE), assert_valid_addr_space_size);
49
Soby Mathew44170c42016-03-22 15:51:08 +000050#define NUM_L1_ENTRIES (ADDR_SPACE_SIZE >> L1_XLAT_ADDRESS_SHIFT)
51
52static uint64_t l1_xlation_table[NUM_L1_ENTRIES]
53 __aligned(NUM_L1_ENTRIES * sizeof(uint64_t));
54
55static unsigned long long tcr_ps_bits;
56
57static unsigned long long calc_physical_addr_size_bits(
58 unsigned long long max_addr)
59{
60 /* Physical address can't exceed 48 bits */
61 assert((max_addr & ADDR_MASK_48_TO_63) == 0);
62
63 /* 48 bits address */
64 if (max_addr & ADDR_MASK_44_TO_47)
65 return TCR_PS_BITS_256TB;
66
67 /* 44 bits address */
68 if (max_addr & ADDR_MASK_42_TO_43)
69 return TCR_PS_BITS_16TB;
70
71 /* 42 bits address */
72 if (max_addr & ADDR_MASK_40_TO_41)
73 return TCR_PS_BITS_4TB;
74
75 /* 40 bits address */
76 if (max_addr & ADDR_MASK_36_TO_39)
77 return TCR_PS_BITS_1TB;
78
79 /* 36 bits address */
80 if (max_addr & ADDR_MASK_32_TO_35)
81 return TCR_PS_BITS_64GB;
82
83 return TCR_PS_BITS_4GB;
84}
85
86void init_xlat_tables(void)
87{
88 unsigned long long max_pa;
89 uintptr_t max_va;
90 print_mmap();
91 init_xlation_table(0, l1_xlation_table, 1, &max_va, &max_pa);
92 tcr_ps_bits = calc_physical_addr_size_bits(max_pa);
93 assert(max_va < ADDR_SPACE_SIZE);
94}
95
96/*******************************************************************************
97 * Macro generating the code for the function enabling the MMU in the given
98 * exception level, assuming that the pagetables have already been created.
99 *
100 * _el: Exception level at which the function will run
101 * _tcr_extra: Extra bits to set in the TCR register. This mask will
102 * be OR'ed with the default TCR value.
103 * _tlbi_fct: Function to invalidate the TLBs at the current
104 * exception level
105 ******************************************************************************/
106#define DEFINE_ENABLE_MMU_EL(_el, _tcr_extra, _tlbi_fct) \
107 void enable_mmu_el##_el(unsigned int flags) \
108 { \
109 uint64_t mair, tcr, ttbr; \
110 uint32_t sctlr; \
111 \
112 assert(IS_IN_EL(_el)); \
113 assert((read_sctlr_el##_el() & SCTLR_M_BIT) == 0); \
114 \
115 /* Set attributes in the right indices of the MAIR */ \
116 mair = MAIR_ATTR_SET(ATTR_DEVICE, ATTR_DEVICE_INDEX); \
117 mair |= MAIR_ATTR_SET(ATTR_IWBWA_OWBWA_NTR, \
118 ATTR_IWBWA_OWBWA_NTR_INDEX); \
119 mair |= MAIR_ATTR_SET(ATTR_NON_CACHEABLE, \
120 ATTR_NON_CACHEABLE_INDEX); \
121 write_mair_el##_el(mair); \
122 \
123 /* Invalidate TLBs at the current exception level */ \
124 _tlbi_fct(); \
125 \
126 /* Set TCR bits as well. */ \
127 /* Inner & outer WBWA & shareable + T0SZ = 32 */ \
128 tcr = TCR_SH_INNER_SHAREABLE | TCR_RGN_OUTER_WBA | \
129 TCR_RGN_INNER_WBA | \
130 (64 - __builtin_ctzl(ADDR_SPACE_SIZE)); \
131 tcr |= _tcr_extra; \
132 write_tcr_el##_el(tcr); \
133 \
134 /* Set TTBR bits as well */ \
135 ttbr = (uint64_t) l1_xlation_table; \
136 write_ttbr0_el##_el(ttbr); \
137 \
138 /* Ensure all translation table writes have drained */ \
139 /* into memory, the TLB invalidation is complete, */ \
140 /* and translation register writes are committed */ \
141 /* before enabling the MMU */ \
142 dsb(); \
143 isb(); \
144 \
145 sctlr = read_sctlr_el##_el(); \
146 sctlr |= SCTLR_WXN_BIT | SCTLR_M_BIT; \
147 \
148 if (flags & DISABLE_DCACHE) \
149 sctlr &= ~SCTLR_C_BIT; \
150 else \
151 sctlr |= SCTLR_C_BIT; \
152 \
153 write_sctlr_el##_el(sctlr); \
154 \
155 /* Ensure the MMU enable takes effect immediately */ \
156 isb(); \
157 }
158
159/* Define EL1 and EL3 variants of the function enabling the MMU */
160DEFINE_ENABLE_MMU_EL(1,
161 (tcr_ps_bits << TCR_EL1_IPS_SHIFT),
162 tlbivmalle1)
163DEFINE_ENABLE_MMU_EL(3,
164 TCR_EL3_RES1 | (tcr_ps_bits << TCR_EL3_PS_SHIFT),
165 tlbialle3)