blob: 7d57521b7e6b42f458a2908f16e0704b018b325e [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
137
138/*
139 * Memory mapping attributes
140 */
141typedef enum {
142 /*
143 * Memory types supported.
144 * These are organised so that, going down the list, the memory types
145 * are getting weaker; conversely going up the list the memory types are
146 * getting stronger.
147 */
148 MT_DEVICE,
149 MT_NON_CACHEABLE,
150 MT_MEMORY,
151 /* Values up to 7 are reserved to add new memory types in the future */
152
Soby Mathew44170c42016-03-22 15:51:08 +0000153 MT_RO = 0 << MT_PERM_SHIFT,
154 MT_RW = 1 << MT_PERM_SHIFT,
155
156 MT_SECURE = 0 << MT_SEC_SHIFT,
157 MT_NS = 1 << MT_SEC_SHIFT,
158} mmap_attr_t;
159
160/*
161 * Structure for specifying a single region of memory.
162 */
163typedef struct mmap_region {
164 unsigned long long base_pa;
165 uintptr_t base_va;
166 size_t size;
167 mmap_attr_t attr;
168} mmap_region_t;
169
170/* Generic translation table APIs */
171void init_xlat_tables(void);
172void mmap_add_region(unsigned long long base_pa, uintptr_t base_va,
173 size_t size, unsigned int attr);
174void mmap_add(const mmap_region_t *mm);
175
176/* AArch64 specific translation table APIs */
177void enable_mmu_el1(unsigned int flags);
178void enable_mmu_el3(unsigned int flags);
179
180#endif /*__ASSEMBLY__*/
181#endif /* __XLAT_TABLES_H__ */