Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
3.5.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
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 */
71
struct
arm_mmu_region
{
72
/* Region Base Physical Address */
73
uintptr_t
base_pa
;
74
/* Region Base Virtual Address */
75
uintptr_t
base_va
;
76
/* Region size */
77
size_t
size
;
78
/* Region Name */
79
const
char
*
name
;
80
/* Region Attributes */
81
uint32_t
attrs
;
82
};
83
84
/* MMU configuration data structure */
85
struct
arm_mmu_config
{
86
/* Number of regions */
87
uint32_t
num_regions
;
88
/* Regions */
89
const
struct
arm_mmu_region
*
mmu_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
*/
99
extern
const
struct
arm_mmu_config
mmu_config
;
100
101
int
z_arm_mmu_init(
void
);
102
103
#endif
/* _ASMLANGUAGE */
104
105
#endif
/* ZEPHYR_INCLUDE_ARCH_AARCH32_ARM_MMU_H_ */
mmu_config
const struct arm_mmu_config mmu_config
uint32_t
__UINT32_TYPE__ uint32_t
Definition:
stdint.h:90
uintptr_t
__UINTPTR_TYPE__ uintptr_t
Definition:
stdint.h:105
arm_mmu_config
Definition:
arm_mmu.h:85
arm_mmu_config::mmu_regions
const struct arm_mmu_region * mmu_regions
Definition:
arm_mmu.h:89
arm_mmu_config::num_regions
uint32_t num_regions
Definition:
arm_mmu.h:87
arm_mmu_region
Definition:
arm_mmu.h:71
arm_mmu_region::base_va
uintptr_t base_va
Definition:
arm_mmu.h:75
arm_mmu_region::size
size_t size
Definition:
arm_mmu.h:77
arm_mmu_region::base_pa
uintptr_t base_pa
Definition:
arm_mmu.h:73
arm_mmu_region::name
const char * name
Definition:
arm_mmu.h:79
arm_mmu_region::attrs
uint32_t attrs
Definition:
arm_mmu.h:81
zephyr
arch
arm
mmu
arm_mmu.h
Generated on Fri Oct 20 2023 10:27:11 for Zephyr API Documentation by
1.9.6