forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.h
223 lines (201 loc) · 5.15 KB
/
cache.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/*
* Copyright (c) 2015 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_CACHE_H_
#define ZEPHYR_INCLUDE_CACHE_H_
#include <kernel.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Common operations for the caches
*
* WB means write-back and intends to transfer dirty cache lines to memory in a
* copy-back cache policy. May be a no-op in write-back cache policy.
*
* INVD means invalidate and will mark cache lines as not valid. A future
* access to the associated address is guaranteed to generate a memory fetch.
*/
#define K_CACHE_WB BIT(0)
#define K_CACHE_INVD BIT(1)
#define K_CACHE_WB_INVD (K_CACHE_WB | K_CACHE_INVD)
/**
*
* @brief Enable d-cache
*
* Enable the d-cache.
*
* @return N/A
*/
void arch_dcache_enable(void);
/**
*
* @brief Disable d-cache
*
* Disable the d-cache.
*
* @return N/A
*/
void arch_dcache_disable(void);
/**
*
* @brief Enable i-cache
*
* Enable the i-cache.
*
* @return N/A
*/
void arch_icache_enable(void);
/**
*
* @brief Disable i-cache
*
* Disable the i-cache.
*
* @return N/A
*/
void arch_icache_disable(void);
/**
*
* @brief Write-back / Invalidate / Write-back + Invalidate all d-cache
*
* Write-back, Invalidate or Write-back + Invalidate the whole d-cache.
*
* @param op Operation to perform (one of the K_CACHE_* operations)
*
* @retval 0 On success
* @retval -ENOTSUP If the operation is not supported
*/
int arch_dcache_all(int op);
/**
*
* @brief Write-back / Invalidate / Write-back + Invalidate d-cache lines
*
* No alignment is required for either addr or size, but since
* arch_dcache_range() iterates on the d-cache lines, a d-cache line alignment
* for both is optimal.
*
* The d-cache line size is specified either via the CONFIG_DCACHE_LINE_SIZE
* kconfig option or it is detected at runtime.
*
* @param addr The pointer to start the multi-line operation
* @param size The number of bytes that are to be acted on
* @param op Operation to perform (one of the K_CACHE_* operations)
*
* @retval 0 On success
* @retval -ENOTSUP If the operation is not supported
*/
int arch_dcache_range(void *addr, size_t size, int op);
/**
*
* @brief Write-back / Invalidate / Write-back + Invalidate all i-cache
*
* Write-back, Invalidate or Write-back + Invalidate the whole i-cache.
*
* @param op Operation to perform (one of the K_CACHE_* operations)
*
* @retval 0 On success
* @retval -ENOTSUP If the operation is not supported
*/
int arch_icache_all(int op);
/**
*
* @brief Write-back / Invalidate / Write-back + Invalidate i-cache lines
*
* No alignment is required for either addr or size, but since
* arch_icache_range() iterates on the i-cache lines, an i-cache line alignment
* for both is optimal.
*
* The i-cache line size is specified either via the CONFIG_ICACHE_LINE_SIZE
* kconfig option or it is detected at runtime.
*
* @param addr The pointer to start the multi-line operation
* @param size The number of bytes that are to be acted on
* @param op Operation to perform (one of the K_CACHE_* operations)
*
* @retval 0 On success
* @retval -ENOTSUP If the operation is not supported
*/
int arch_icache_range(void *addr, size_t size, int op);
__syscall int sys_dcache_all(int op);
static inline int z_impl_sys_dcache_all(int op)
{
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
return arch_dcache_all(op);
}
return -ENOTSUP;
}
__syscall int sys_dcache_range(void *addr, size_t size, int op);
static inline int z_impl_sys_dcache_range(void *addr, size_t size, int op)
{
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
return arch_dcache_range(addr, size, op);
}
return -ENOTSUP;
}
__syscall int sys_icache_all(int op);
static inline int z_impl_sys_icache_all(int op)
{
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
return arch_icache_all(op);
}
return -ENOTSUP;
}
__syscall int sys_icache_range(void *addr, size_t size, int op);
static inline int z_impl_sys_icache_range(void *addr, size_t size, int op)
{
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
return arch_icache_range(addr, size, op);
}
return -ENOTSUP;
}
#ifdef CONFIG_LIBMETAL
static inline void sys_cache_flush(void *addr, size_t size)
{
sys_dcache_range(addr, size, K_CACHE_WB);
}
#endif
#define CPU DT_PATH(cpus, cpu_0)
/**
*
* @brief Get the d-cache line size.
*
* The API is provided to get the d-cache line size.
*
* @return size of the d-cache line or 0 if the d-cache is not enabled.
*/
static inline size_t sys_dcache_line_size_get(void)
{
#ifdef CONFIG_DCACHE_LINE_SIZE_DETECT
return arch_dcache_line_size_get();
#elif (CONFIG_DCACHE_LINE_SIZE != 0)
return CONFIG_DCACHE_LINE_SIZE;
#else
return DT_PROP_OR(CPU, d_cache_line_size, 0);
#endif
}
/*
*
* @brief Get the i-cache line size.
*
* The API is provided to get the i-cache line size.
*
* @return size of the i-cache line or 0 if the i-cache is not enabled.
*/
static inline size_t sys_icache_line_size_get(void)
{
#ifdef CONFIG_ICACHE_LINE_SIZE_DETECT
return arch_icache_line_size_get();
#elif (CONFIG_ICACHE_LINE_SIZE != 0)
return CONFIG_ICACHE_LINE_SIZE;
#else
return DT_PROP_OR(CPU, i_cache_line_size, 0);
#endif
}
#include <syscalls/cache.h>
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_INCLUDE_CACHE_H_ */