Zephyr Project API 3.7.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
arm_mmu.h
Go to the documentation of this file.
1/*
2 * Copyright 2019 Broadcom
3 * The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7#ifndef ZEPHYR_INCLUDE_ARCH_ARM64_ARM_MMU_H_
8#define ZEPHYR_INCLUDE_ARCH_ARM64_ARM_MMU_H_
9
10#ifndef _ASMLANGUAGE
11#include <stdint.h>
12#include <stdlib.h>
13#endif
14
15/* Following Memory types supported through MAIR encodings can be passed
16 * by user through "attrs"(attributes) field of specified memory region.
17 * As MAIR supports such 8 encodings, we will reserve attrs[2:0];
18 * so that we can provide encodings upto 7 if needed in future.
19 */
20#define MT_TYPE_MASK 0x7U
21#define MT_TYPE(attr) (attr & MT_TYPE_MASK)
22#define MT_DEVICE_nGnRnE 0U
23#define MT_DEVICE_nGnRE 1U
24#define MT_DEVICE_GRE 2U
25#define MT_NORMAL_NC 3U
26#define MT_NORMAL 4U
27#define MT_NORMAL_WT 5U
28
29#define MEMORY_ATTRIBUTES ((0x00 << (MT_DEVICE_nGnRnE * 8)) | \
30 (0x04 << (MT_DEVICE_nGnRE * 8)) | \
31 (0x0c << (MT_DEVICE_GRE * 8)) | \
32 (0x44 << (MT_NORMAL_NC * 8)) | \
33 (0xffUL << (MT_NORMAL * 8)) | \
34 (0xbbUL << (MT_NORMAL_WT * 8)))
35
36/* More flags from user's perspective are supported using remaining bits
37 * of "attrs" field, i.e. attrs[31:3], underlying code will take care
38 * of setting PTE fields correctly.
39 *
40 * current usage of attrs[31:3] is:
41 * attrs[3] : Access Permissions
42 * attrs[4] : Memory access from secure/ns state
43 * attrs[5] : Execute Permissions privileged mode (PXN)
44 * attrs[6] : Execute Permissions unprivileged mode (UXN)
45 * attrs[7] : Mirror RO/RW permissions to EL0
46 * attrs[8] : Overwrite existing mapping if any
47 * attrs[9] : non-Global mapping (nG)
48 *
49 */
50#define MT_PERM_SHIFT 3U
51#define MT_SEC_SHIFT 4U
52#define MT_P_EXECUTE_SHIFT 5U
53#define MT_U_EXECUTE_SHIFT 6U
54#define MT_RW_AP_SHIFT 7U
55#define MT_NO_OVERWRITE_SHIFT 8U
56#define MT_NON_GLOBAL_SHIFT 9U
57
58#define MT_RO (0U << MT_PERM_SHIFT)
59#define MT_RW (1U << MT_PERM_SHIFT)
60
61#define MT_RW_AP_ELx (1U << MT_RW_AP_SHIFT)
62#define MT_RW_AP_EL_HIGHER (0U << MT_RW_AP_SHIFT)
63
64#define MT_SECURE (0U << MT_SEC_SHIFT)
65#define MT_NS (1U << MT_SEC_SHIFT)
66
67#define MT_P_EXECUTE (0U << MT_P_EXECUTE_SHIFT)
68#define MT_P_EXECUTE_NEVER (1U << MT_P_EXECUTE_SHIFT)
69
70#define MT_U_EXECUTE (0U << MT_U_EXECUTE_SHIFT)
71#define MT_U_EXECUTE_NEVER (1U << MT_U_EXECUTE_SHIFT)
72
73#define MT_NO_OVERWRITE (1U << MT_NO_OVERWRITE_SHIFT)
74
75#define MT_G (0U << MT_NON_GLOBAL_SHIFT)
76#define MT_NG (1U << MT_NON_GLOBAL_SHIFT)
77
78#define MT_P_RW_U_RW (MT_RW | MT_RW_AP_ELx | MT_P_EXECUTE_NEVER | MT_U_EXECUTE_NEVER)
79#define MT_P_RW_U_NA (MT_RW | MT_RW_AP_EL_HIGHER | MT_P_EXECUTE_NEVER | MT_U_EXECUTE_NEVER)
80#define MT_P_RO_U_RO (MT_RO | MT_RW_AP_ELx | MT_P_EXECUTE_NEVER | MT_U_EXECUTE_NEVER)
81#define MT_P_RO_U_NA (MT_RO | MT_RW_AP_EL_HIGHER | MT_P_EXECUTE_NEVER | MT_U_EXECUTE_NEVER)
82#define MT_P_RO_U_RX (MT_RO | MT_RW_AP_ELx | MT_P_EXECUTE_NEVER | MT_U_EXECUTE)
83#define MT_P_RX_U_RX (MT_RO | MT_RW_AP_ELx | MT_P_EXECUTE | MT_U_EXECUTE)
84#define MT_P_RX_U_NA (MT_RO | MT_RW_AP_EL_HIGHER | MT_P_EXECUTE | MT_U_EXECUTE_NEVER)
85
86#ifdef CONFIG_ARMV8_A_NS
87#define MT_DEFAULT_SECURE_STATE MT_NS
88#else
89#define MT_DEFAULT_SECURE_STATE MT_SECURE
90#endif
91
92#ifndef _ASMLANGUAGE
93
94/* Region definition data structure */
95struct arm_mmu_region {
96 /* Region Base Physical Address */
98 /* Region Base Virtual Address */
100 /* Region size */
101 size_t size;
102 /* Region Name */
103 const char *name;
104 /* Region Attributes */
106};
107
108/* MMU configuration data structure */
109struct arm_mmu_config {
110 /* Number of regions */
111 unsigned int num_regions;
112 /* Regions */
113 const struct arm_mmu_region *mmu_regions;
114};
115
120
121/* Convenience macros to represent the ARMv8-A-specific
122 * configuration for memory access permission and
123 * cache-ability attribution.
124 */
125
126#define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \
127 {\
128 .name = _name, \
129 .base_pa = _base_pa, \
130 .base_va = _base_va, \
131 .size = _size, \
132 .attrs = _attrs, \
133 }
134
135#define MMU_REGION_FLAT_ENTRY(name, adr, sz, attrs) \
136 MMU_REGION_ENTRY(name, adr, adr, sz, attrs)
137
138/*
139 * @brief Auto generate mmu region entry for node_id
140 *
141 * Example usage:
142 *
143 * @code{.c}
144 * DT_FOREACH_STATUS_OKAY_VARGS(nxp_imx_gpio,
145 * MMU_REGION_DT_FLAT_ENTRY,
146 * (MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS))
147 * @endcode
148 *
149 * @note Since devicetree_generated.h does not include
150 * node_id##_P_reg_FOREACH_PROP_ELEM* definitions,
151 * we can't automate dts node with multiple reg
152 * entries.
153 */
154#define MMU_REGION_DT_FLAT_ENTRY(node_id, attrs) \
155 MMU_REGION_FLAT_ENTRY(DT_NODE_FULL_NAME(node_id), \
156 DT_REG_ADDR(node_id), \
157 DT_REG_SIZE(node_id), \
158 attrs),
159
160/*
161 * @brief Auto generate mmu region entry for status = "okay"
162 * nodes compatible to a driver
163 *
164 * Example usage:
165 *
166 * @code{.c}
167 * MMU_REGION_DT_COMPAT_FOREACH_FLAT_ENTRY(nxp_imx_gpio,
168 * (MT_DEVICE_nGnRnE | MT_P_RW_U_NA | MT_NS))
169 * @endcode
170 *
171 * @note This is a wrapper of @ref MMU_REGION_DT_FLAT_ENTRY
172 */
173#define MMU_REGION_DT_COMPAT_FOREACH_FLAT_ENTRY(compat, attr) \
174 DT_FOREACH_STATUS_OKAY_VARGS(compat, \
175 MMU_REGION_DT_FLAT_ENTRY, attr)
176
177/* Kernel macros for memory attribution
178 * (access permissions and cache-ability).
179 *
180 * The macros are to be stored in k_mem_partition_attr_t
181 * objects. The format of a k_mem_partition_attr_t object
182 * is an uint32_t composed by permission and attribute flags
183 * located in include/arch/arm64/arm_mmu.h
184 */
185
186/* Read-Write access permission attributes */
187#define K_MEM_PARTITION_P_RW_U_RW ((k_mem_partition_attr_t) \
188 {MT_P_RW_U_RW})
189#define K_MEM_PARTITION_P_RW_U_NA ((k_mem_partition_attr_t) \
190 {MT_P_RW_U_NA})
191#define K_MEM_PARTITION_P_RO_U_RO ((k_mem_partition_attr_t) \
192 {MT_P_RO_U_RO})
193#define K_MEM_PARTITION_P_RO_U_NA ((k_mem_partition_attr_t) \
194 {MT_P_RO_U_NA})
195/* Execution-allowed attributes */
196#define K_MEM_PARTITION_P_RX_U_RX ((k_mem_partition_attr_t) \
197 {MT_P_RX_U_RX})
198/* Typedef for the k_mem_partition attribute */
200
201/* Reference to the MMU configuration.
202 *
203 * This struct is defined and populated for each SoC (in the SoC definition),
204 * and holds the build-time configuration information for the fixed MMU
205 * regions enabled during kernel initialization.
206 */
207extern const struct arm_mmu_config mmu_config;
208
209#endif /* _ASMLANGUAGE */
210
211#endif /* ZEPHYR_INCLUDE_ARCH_ARM64_ARM_MMU_H_ */
const struct arm_mmu_config mmu_config
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINTPTR_TYPE__ uintptr_t
Definition stdint.h:105
Definition arm_mmu.h:124
const struct arm_mmu_region * mmu_regions
Definition arm_mmu.h:128
unsigned int num_regions
Definition arm_mmu.h:111
Definition arm_mmu.h:116
uint64_t ttbr0
Definition arm_mmu.h:118
uint64_t * base_xlat_table
Definition arm_mmu.h:117
Definition arm_mmu.h:110
uintptr_t base_va
Definition arm_mmu.h:114
size_t size
Definition arm_mmu.h:116
uintptr_t base_pa
Definition arm_mmu.h:112
const char * name
Definition arm_mmu.h:118
uint32_t attrs
Definition arm_mmu.h:120
Definition arm_mpu_v7m.h:160
uint32_t attrs
Definition arm_mmu.h:199