blob: b51a1de5c413fd976c1ae8d97730a87587f936dd [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#ifndef __XLAT_TABLES_H__
32#define __XLAT_TABLES_H__
33
34/* Miscellaneous MMU related constants */
35#define NUM_2MB_IN_GB (1 << 9)
36#define NUM_4K_IN_2MB (1 << 9)
37#define NUM_GB_IN_4GB (1 << 2)
38
39#define TWO_MB_SHIFT 21
40#define ONE_GB_SHIFT 30
41#define FOUR_KB_SHIFT 12
42
43#define ONE_GB_INDEX(x) ((x) >> ONE_GB_SHIFT)
44#define TWO_MB_INDEX(x) ((x) >> TWO_MB_SHIFT)
45#define FOUR_KB_INDEX(x) ((x) >> FOUR_KB_SHIFT)
46
47#define INVALID_DESC 0x0
48#define BLOCK_DESC 0x1
49#define TABLE_DESC 0x3
50
51#define FIRST_LEVEL_DESC_N ONE_GB_SHIFT
52#define SECOND_LEVEL_DESC_N TWO_MB_SHIFT
53#define THIRD_LEVEL_DESC_N FOUR_KB_SHIFT
54
55#define LEVEL1 1
56#define LEVEL2 2
57#define LEVEL3 3
58
59#define XN (1ull << 2)
60#define PXN (1ull << 1)
61#define CONT_HINT (1ull << 0)
62
63#define UPPER_ATTRS(x) (x & 0x7) << 52
64#define NON_GLOBAL (1 << 9)
65#define ACCESS_FLAG (1 << 8)
66#define NSH (0x0 << 6)
67#define OSH (0x2 << 6)
68#define ISH (0x3 << 6)
69
70#define PAGE_SIZE_SHIFT FOUR_KB_SHIFT
71#define PAGE_SIZE (1 << PAGE_SIZE_SHIFT)
72#define PAGE_SIZE_MASK (PAGE_SIZE - 1)
73#define IS_PAGE_ALIGNED(addr) (((addr) & PAGE_SIZE_MASK) == 0)
74
75#define XLAT_ENTRY_SIZE_SHIFT 3 /* Each MMU table entry is 8 bytes (1 << 3) */
76#define XLAT_ENTRY_SIZE (1 << XLAT_ENTRY_SIZE_SHIFT)
77
78#define XLAT_TABLE_SIZE_SHIFT PAGE_SIZE_SHIFT
79#define XLAT_TABLE_SIZE (1 << XLAT_TABLE_SIZE_SHIFT)
80
81/* Values for number of entries in each MMU translation table */
82#define XLAT_TABLE_ENTRIES_SHIFT (XLAT_TABLE_SIZE_SHIFT - XLAT_ENTRY_SIZE_SHIFT)
83#define XLAT_TABLE_ENTRIES (1 << XLAT_TABLE_ENTRIES_SHIFT)
84#define XLAT_TABLE_ENTRIES_MASK (XLAT_TABLE_ENTRIES - 1)
85
86/* Values to convert a memory address to an index into a translation table */
87#define L3_XLAT_ADDRESS_SHIFT PAGE_SIZE_SHIFT
88#define L2_XLAT_ADDRESS_SHIFT (L3_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
89#define L1_XLAT_ADDRESS_SHIFT (L2_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
90
91/*
92 * AP[1] bit is ignored by hardware and is
93 * treated as if it is One in EL2/EL3
94 */
95#define AP_RO (0x1 << 5)
96#define AP_RW (0x0 << 5)
97
98#define NS (0x1 << 3)
99#define ATTR_NON_CACHEABLE_INDEX 0x2
100#define ATTR_DEVICE_INDEX 0x1
101#define ATTR_IWBWA_OWBWA_NTR_INDEX 0x0
102#define LOWER_ATTRS(x) (((x) & 0xfff) << 2)
103#define ATTR_NON_CACHEABLE (0x44)
104#define ATTR_DEVICE (0x4)
105#define ATTR_IWBWA_OWBWA_NTR (0xff)
106#define MAIR_ATTR_SET(attr, index) (attr << (index << 3))
107
108/*
109 * Flags to override default values used to program system registers while
110 * enabling the MMU.
111 */
112#define DISABLE_DCACHE (1 << 0)
113
114#ifndef __ASSEMBLY__
115#include <stddef.h>
116#include <stdint.h>
117
118/* Helper macro to define entries for mmap_region_t. It creates
119 * identity mappings for each region.
120 */
121#define MAP_REGION_FLAT(adr, sz, attr) MAP_REGION(adr, adr, sz, attr)
122
123/* Helper macro to define entries for mmap_region_t. It allows to
124 * re-map address mappings from 'pa' to 'va' for each region.
125 */
126#define MAP_REGION(pa, va, sz, attr) {(pa), (va), (sz), (attr)}
127
128/*
129 * Shifts and masks to access fields of an mmap_attr_t
130 */
131#define MT_TYPE_MASK 0x7
132#define MT_TYPE(_attr) ((_attr) & MT_TYPE_MASK)
133/* Access permissions (RO/RW) */
134#define MT_PERM_SHIFT 3
135/* Security state (SECURE/NS) */
136#define MT_SEC_SHIFT 4
Sandrine Bailleuxac3aa682016-06-14 16:31:09 +0100137/* Access permissions for instruction execution (EXECUTE/EXECUTE_NEVER) */
138#define MT_EXECUTE_SHIFT 5
Soby Mathew44170c42016-03-22 15:51:08 +0000139
140/*
141 * Memory mapping attributes
142 */
143typedef enum {
144 /*
145 * Memory types supported.
146 * These are organised so that, going down the list, the memory types
147 * are getting weaker; conversely going up the list the memory types are
148 * getting stronger.
149 */
150 MT_DEVICE,
151 MT_NON_CACHEABLE,
152 MT_MEMORY,
153 /* Values up to 7 are reserved to add new memory types in the future */
154
Soby Mathew44170c42016-03-22 15:51:08 +0000155 MT_RO = 0 << MT_PERM_SHIFT,
156 MT_RW = 1 << MT_PERM_SHIFT,
157
158 MT_SECURE = 0 << MT_SEC_SHIFT,
159 MT_NS = 1 << MT_SEC_SHIFT,
Sandrine Bailleuxac3aa682016-06-14 16:31:09 +0100160
161 /*
162 * Access permissions for instruction execution are only relevant for
163 * normal read-only memory, i.e. MT_MEMORY | MT_RO. They are ignored
164 * (and potentially overridden) otherwise:
165 * - Device memory is always marked as execute-never.
166 * - Read-write normal memory is always marked as execute-never.
167 */
168 MT_EXECUTE = 0 << MT_EXECUTE_SHIFT,
169 MT_EXECUTE_NEVER = 1 << MT_EXECUTE_SHIFT,
Soby Mathew44170c42016-03-22 15:51:08 +0000170} mmap_attr_t;
171
Sandrine Bailleuxac3aa682016-06-14 16:31:09 +0100172#define MT_CODE (MT_MEMORY | MT_RO | MT_EXECUTE)
173#define MT_RO_DATA (MT_MEMORY | MT_RO | MT_EXECUTE_NEVER)
174
Soby Mathew44170c42016-03-22 15:51:08 +0000175/*
176 * Structure for specifying a single region of memory.
177 */
178typedef struct mmap_region {
179 unsigned long long base_pa;
180 uintptr_t base_va;
181 size_t size;
182 mmap_attr_t attr;
183} mmap_region_t;
184
185/* Generic translation table APIs */
186void init_xlat_tables(void);
187void mmap_add_region(unsigned long long base_pa, uintptr_t base_va,
188 size_t size, unsigned int attr);
189void mmap_add(const mmap_region_t *mm);
190
191/* AArch64 specific translation table APIs */
192void enable_mmu_el1(unsigned int flags);
193void enable_mmu_el3(unsigned int flags);
194
195#endif /*__ASSEMBLY__*/
196#endif /* __XLAT_TABLES_H__ */