Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
arm_mmu.h
Go to the documentation of this file.
1/*
2 * ARMv7 MMU support
3 *
4 * Copyright (c) 2021 Weidmueller Interface GmbH & Co. KG
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef ZEPHYR_INCLUDE_ARCH_AARCH32_ARM_MMU_H_
9#define ZEPHYR_INCLUDE_ARCH_AARCH32_ARM_MMU_H_
10
11#ifndef _ASMLANGUAGE
12
13/*
14 * Comp.:
15 * ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition,
16 * ARM document ID DDI0406C Rev. d, March 2018
17 * Memory type definitions:
18 * Table B3-10, chap. B3.8.2, p. B3-1363f.
19 * Outer / inner cache attributes for cacheable memory:
20 * Table B3-11, chap. B3.8.2, p. B3-1364
21 */
22
23/*
24 * The following definitions are used when specifying a memory
25 * range to be mapped at boot time using the MMU_REGION_ENTRY
26 * macro.
27 */
28#define MT_STRONGLY_ORDERED BIT(0)
29#define MT_DEVICE BIT(1)
30#define MT_NORMAL BIT(2)
31#define MT_MASK 0x7
32
33#define MPERM_R BIT(3)
34#define MPERM_W BIT(4)
35#define MPERM_X BIT(5)
36#define MPERM_UNPRIVILEGED BIT(6)
37
38#define MATTR_NON_SECURE BIT(7)
39#define MATTR_NON_GLOBAL BIT(8)
40#define MATTR_SHARED BIT(9)
41#define MATTR_CACHE_OUTER_WB_WA BIT(10)
42#define MATTR_CACHE_OUTER_WT_nWA BIT(11)
43#define MATTR_CACHE_OUTER_WB_nWA BIT(12)
44#define MATTR_CACHE_INNER_WB_WA BIT(13)
45#define MATTR_CACHE_INNER_WT_nWA BIT(14)
46#define MATTR_CACHE_INNER_WB_nWA BIT(15)
47
48#define MATTR_MAY_MAP_L1_SECTION BIT(16)
49
50/*
51 * The following macros are used for adding constant entries
52 * mmu_regions array of the mmu_config struct. Use MMU_REGION_ENTRY
53 * for the specification of mappings whose PA and VA differ,
54 * the use of MMU_REGION_FLAT_ENTRY always results in an identity
55 * mapping, which are used for the mappings of the Zephyr image's
56 * code and data.
57 */
58#define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \
59 {\
60 .name = _name, \
61 .base_pa = _base_pa, \
62 .base_va = _base_va, \
63 .size = _size, \
64 .attrs = _attrs, \
65 }
66
67#define MMU_REGION_FLAT_ENTRY(name, adr, sz, attrs) \
68 MMU_REGION_ENTRY(name, adr, adr, sz, attrs)
69
70/* Region definition data structure */
72 /* Region Base Physical Address */
74 /* Region Base Virtual Address */
76 /* Region size */
77 size_t size;
78 /* Region Name */
79 const char *name;
80 /* Region Attributes */
82};
83
84/* MMU configuration data structure */
86 /* Number of regions */
88 /* Regions */
90};
91
92/*
93 * Reference to the MMU configuration.
94 *
95 * This struct is defined and populated for each SoC (in the SoC definition),
96 * and holds the build-time configuration information for the fixed MMU
97 * regions enabled during kernel initialization.
98 */
99extern const struct arm_mmu_config mmu_config;
100
101int z_arm_mmu_init(void);
102
103#endif /* _ASMLANGUAGE */
104
105#endif /* ZEPHYR_INCLUDE_ARCH_AARCH32_ARM_MMU_H_ */
const struct arm_mmu_config mmu_config
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINTPTR_TYPE__ uintptr_t
Definition: stdint.h:105
Definition: arm_mmu.h:85
const struct arm_mmu_region * mmu_regions
Definition: arm_mmu.h:89
uint32_t num_regions
Definition: arm_mmu.h:87
Definition: arm_mmu.h:71
uintptr_t base_va
Definition: arm_mmu.h:75
size_t size
Definition: arm_mmu.h:77
uintptr_t base_pa
Definition: arm_mmu.h:73
const char * name
Definition: arm_mmu.h:79
uint32_t attrs
Definition: arm_mmu.h:81