cache: Introduce external cache controller system support
The cache API currently shipped in Zephyr is assuming that the cache controller is always on-core thus managed at the arch level. This is not always the case because many SoCs rely on external cache controllers as a peripheral external to the core (for example PL310 cache controller and the L2Cxxx family). In some cases you also want a single driver to control a whole set of cache controllers. Rework the cache code introducing support for external cache controllers. Signed-off-by: Carlo Caione <ccaione@baylibre.com>
This commit is contained in:
parent
3b00571160
commit
e2333269ae
10 changed files with 243 additions and 115 deletions
|
@ -184,6 +184,7 @@
|
||||||
/drivers/adc/ @anangl
|
/drivers/adc/ @anangl
|
||||||
/drivers/adc/adc_stm32.c @cybertale
|
/drivers/adc/adc_stm32.c @cybertale
|
||||||
/drivers/bluetooth/ @joerchan @jhedberg @Vudentz
|
/drivers/bluetooth/ @joerchan @jhedberg @Vudentz
|
||||||
|
/drivers/cache/ @carlocaione
|
||||||
/drivers/can/ @alexanderwachter
|
/drivers/can/ @alexanderwachter
|
||||||
/drivers/can/*mcp2515* @karstenkoenig
|
/drivers/can/*mcp2515* @karstenkoenig
|
||||||
/drivers/clock_control/*nrf* @nordic-krch
|
/drivers/clock_control/*nrf* @nordic-krch
|
||||||
|
|
17
arch/Kconfig
17
arch/Kconfig
|
@ -919,6 +919,23 @@ config ICACHE_LINE_SIZE
|
||||||
|
|
||||||
Detect automatically at runtime by selecting ICACHE_LINE_SIZE_DETECT.
|
Detect automatically at runtime by selecting ICACHE_LINE_SIZE_DETECT.
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Cache type"
|
||||||
|
depends on CACHE_MANAGEMENT
|
||||||
|
default HAS_ARCH_CACHE
|
||||||
|
|
||||||
|
config HAS_ARCH_CACHE
|
||||||
|
bool "Integrated cache controller"
|
||||||
|
help
|
||||||
|
"Integrade on-core cache controller"
|
||||||
|
|
||||||
|
config HAS_EXTERNAL_CACHE
|
||||||
|
bool "External cache controller"
|
||||||
|
help
|
||||||
|
"External cache controller or cache management system"
|
||||||
|
|
||||||
|
endchoice
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
config ARCH
|
config ARCH
|
||||||
|
|
|
@ -56,3 +56,4 @@ add_subdirectory_ifdef(CONFIG_SYS_CLOCK_EXISTS timer)
|
||||||
add_subdirectory_ifdef(CONFIG_NEURAL_NET_ACCEL neural_net)
|
add_subdirectory_ifdef(CONFIG_NEURAL_NET_ACCEL neural_net)
|
||||||
add_subdirectory_ifdef(CONFIG_PTP_CLOCK ptp_clock)
|
add_subdirectory_ifdef(CONFIG_PTP_CLOCK ptp_clock)
|
||||||
add_subdirectory_ifdef(CONFIG_EDAC edac)
|
add_subdirectory_ifdef(CONFIG_EDAC edac)
|
||||||
|
add_subdirectory_ifdef(CONFIG_CACHE_MANAGEMENT cache)
|
||||||
|
|
|
@ -113,4 +113,6 @@ source "drivers/misc/Kconfig"
|
||||||
|
|
||||||
source "drivers/disk/Kconfig"
|
source "drivers/disk/Kconfig"
|
||||||
|
|
||||||
|
source "drivers/cache/Kconfig"
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
1
drivers/cache/CMakeLists.txt
vendored
Normal file
1
drivers/cache/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
18
drivers/cache/Kconfig
vendored
Normal file
18
drivers/cache/Kconfig
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
menuconfig CACHE
|
||||||
|
bool "External cache controllers drivers"
|
||||||
|
help
|
||||||
|
Enable support for external cache controllers drivers
|
||||||
|
|
||||||
|
if CACHE
|
||||||
|
|
||||||
|
module = CACHE
|
||||||
|
module-str = cache
|
||||||
|
source "subsys/logging/Kconfig.template.log_config"
|
||||||
|
|
||||||
|
config CACHE_HAS_DRIVER
|
||||||
|
bool
|
||||||
|
|
||||||
|
endif # CACHE
|
165
include/cache.h
165
include/cache.h
|
@ -8,6 +8,7 @@
|
||||||
#define ZEPHYR_INCLUDE_CACHE_H_
|
#define ZEPHYR_INCLUDE_CACHE_H_
|
||||||
|
|
||||||
#include <kernel.h>
|
#include <kernel.h>
|
||||||
|
#include <kernel_structs.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -22,149 +23,89 @@ extern "C" {
|
||||||
* INVD means invalidate and will mark cache lines as not valid. A future
|
* 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.
|
* access to the associated address is guaranteed to generate a memory fetch.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define K_CACHE_WB BIT(0)
|
#define K_CACHE_WB BIT(0)
|
||||||
#define K_CACHE_INVD BIT(1)
|
#define K_CACHE_INVD BIT(1)
|
||||||
#define K_CACHE_WB_INVD (K_CACHE_WB | K_CACHE_INVD)
|
#define K_CACHE_WB_INVD (K_CACHE_WB | K_CACHE_INVD)
|
||||||
|
|
||||||
/**
|
#if defined(CONFIG_HAS_EXTERNAL_CACHE)
|
||||||
*
|
|
||||||
* @brief Enable d-cache
|
|
||||||
*
|
|
||||||
* Enable the d-cache.
|
|
||||||
*
|
|
||||||
* @return N/A
|
|
||||||
*/
|
|
||||||
void arch_dcache_enable(void);
|
|
||||||
|
|
||||||
/**
|
/* Driver interface mirrored in include/drivers/cache.h */
|
||||||
*
|
|
||||||
* @brief Disable d-cache
|
|
||||||
*
|
|
||||||
* Disable the d-cache.
|
|
||||||
*
|
|
||||||
* @return N/A
|
|
||||||
*/
|
|
||||||
void arch_dcache_disable(void);
|
|
||||||
|
|
||||||
/**
|
/* Enable d-cache */
|
||||||
*
|
extern void dcache_enable(void);
|
||||||
* @brief Enable i-cache
|
|
||||||
*
|
|
||||||
* Enable the i-cache.
|
|
||||||
*
|
|
||||||
* @return N/A
|
|
||||||
*/
|
|
||||||
void arch_icache_enable(void);
|
|
||||||
|
|
||||||
/**
|
/* Disable d-cache */
|
||||||
*
|
extern void dcache_disable(void);
|
||||||
* @brief Disable i-cache
|
|
||||||
*
|
|
||||||
* Disable the i-cache.
|
|
||||||
*
|
|
||||||
* @return N/A
|
|
||||||
*/
|
|
||||||
void arch_icache_disable(void);
|
|
||||||
|
|
||||||
/**
|
/* Enable i-cache */
|
||||||
*
|
extern void icache_enable(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);
|
|
||||||
|
|
||||||
/**
|
/* Disable i-cache */
|
||||||
*
|
extern void icache_disable(void);
|
||||||
* @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);
|
|
||||||
|
|
||||||
/**
|
/* Write-back / Invalidate / Write-back + Invalidate all d-cache */
|
||||||
*
|
extern int dcache_all(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);
|
|
||||||
|
|
||||||
/**
|
/* Write-back / Invalidate / Write-back + Invalidate d-cache lines */
|
||||||
*
|
extern int dcache_range(void *addr, size_t size, int op);
|
||||||
* @brief Write-back / Invalidate / Write-back + Invalidate i-cache lines
|
|
||||||
*
|
/* Write-back / Invalidate / Write-back + Invalidate all i-cache */
|
||||||
* No alignment is required for either addr or size, but since
|
extern int icache_all(int op);
|
||||||
* arch_icache_range() iterates on the i-cache lines, an i-cache line alignment
|
|
||||||
* for both is optimal.
|
/* Write-back / Invalidate / Write-back + Invalidate i-cache lines */
|
||||||
*
|
extern int icache_range(void *addr, size_t size, int op);
|
||||||
* The i-cache line size is specified either via the CONFIG_ICACHE_LINE_SIZE
|
|
||||||
* kconfig option or it is detected at runtime.
|
#else
|
||||||
*
|
|
||||||
* @param addr The pointer to start the multi-line operation
|
/* Hooks into arch code */
|
||||||
* @param size The number of bytes that are to be acted on
|
|
||||||
* @param op Operation to perform (one of the K_CACHE_* operations)
|
#define dcache_enable arch_dcache_enable
|
||||||
*
|
#define dcache_disable arch_dcache_disable
|
||||||
* @retval 0 On success
|
#define icache_enable arch_icache_enable
|
||||||
* @retval -ENOTSUP If the operation is not supported
|
#define icache_disable arch_icache_disable
|
||||||
*/
|
#define dcache_all(op) arch_dcache_all(op)
|
||||||
int arch_icache_range(void *addr, size_t size, int op);
|
#define dcache_range(addr, size, op) arch_dcache_range(addr, size, op)
|
||||||
|
#define icache_all(op) arch_icache_all(op)
|
||||||
|
#define icache_range(addr, size, op) arch_icache_range(addr, size, op)
|
||||||
|
#define dcache_line_size_get arch_dcache_line_size_get
|
||||||
|
#define icache_line_size_get arch_icache_line_size_get
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
__syscall int sys_dcache_all(int op);
|
__syscall int sys_dcache_all(int op);
|
||||||
static inline int z_impl_sys_dcache_all(int op)
|
static inline int z_impl_sys_dcache_all(int op)
|
||||||
{
|
{
|
||||||
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
|
#if defined(CONFIG_CACHE_MANAGEMENT)
|
||||||
return arch_dcache_all(op);
|
return dcache_all(op);
|
||||||
}
|
#endif
|
||||||
return -ENOTSUP;
|
return -ENOTSUP;
|
||||||
}
|
}
|
||||||
|
|
||||||
__syscall int sys_dcache_range(void *addr, size_t size, int op);
|
__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)
|
static inline int z_impl_sys_dcache_range(void *addr, size_t size, int op)
|
||||||
{
|
{
|
||||||
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
|
#if defined(CONFIG_CACHE_MANAGEMENT)
|
||||||
return arch_dcache_range(addr, size, op);
|
return dcache_range(addr, size, op);
|
||||||
}
|
#endif
|
||||||
return -ENOTSUP;
|
return -ENOTSUP;
|
||||||
}
|
}
|
||||||
|
|
||||||
__syscall int sys_icache_all(int op);
|
__syscall int sys_icache_all(int op);
|
||||||
static inline int z_impl_sys_icache_all(int op)
|
static inline int z_impl_sys_icache_all(int op)
|
||||||
{
|
{
|
||||||
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
|
#if defined(CONFIG_CACHE_MANAGEMENT)
|
||||||
return arch_icache_all(op);
|
return icache_all(op);
|
||||||
}
|
#endif
|
||||||
return -ENOTSUP;
|
return -ENOTSUP;
|
||||||
}
|
}
|
||||||
|
|
||||||
__syscall int sys_icache_range(void *addr, size_t size, int op);
|
__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)
|
static inline int z_impl_sys_icache_range(void *addr, size_t size, int op)
|
||||||
{
|
{
|
||||||
if (IS_ENABLED(CONFIG_CACHE_MANAGEMENT)) {
|
#if defined(CONFIG_CACHE_MANAGEMENT)
|
||||||
return arch_icache_range(addr, size, op);
|
return icache_range(addr, size, op);
|
||||||
}
|
#endif
|
||||||
return -ENOTSUP;
|
return -ENOTSUP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -188,7 +129,7 @@ static inline void sys_cache_flush(void *addr, size_t size)
|
||||||
static inline size_t sys_dcache_line_size_get(void)
|
static inline size_t sys_dcache_line_size_get(void)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_DCACHE_LINE_SIZE_DETECT
|
#ifdef CONFIG_DCACHE_LINE_SIZE_DETECT
|
||||||
return arch_dcache_line_size_get();
|
return dcache_line_size_get();
|
||||||
#elif (CONFIG_DCACHE_LINE_SIZE != 0)
|
#elif (CONFIG_DCACHE_LINE_SIZE != 0)
|
||||||
return CONFIG_DCACHE_LINE_SIZE;
|
return CONFIG_DCACHE_LINE_SIZE;
|
||||||
#else
|
#else
|
||||||
|
@ -207,7 +148,7 @@ static inline size_t sys_dcache_line_size_get(void)
|
||||||
static inline size_t sys_icache_line_size_get(void)
|
static inline size_t sys_icache_line_size_get(void)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_ICACHE_LINE_SIZE_DETECT
|
#ifdef CONFIG_ICACHE_LINE_SIZE_DETECT
|
||||||
return arch_icache_line_size_get();
|
return icache_line_size_get();
|
||||||
#elif (CONFIG_ICACHE_LINE_SIZE != 0)
|
#elif (CONFIG_ICACHE_LINE_SIZE != 0)
|
||||||
return CONFIG_ICACHE_LINE_SIZE;
|
return CONFIG_ICACHE_LINE_SIZE;
|
||||||
#else
|
#else
|
||||||
|
|
144
include/drivers/cache.h
Normal file
144
include/drivers/cache.h
Normal file
|
@ -0,0 +1,144 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Carlo Caione <ccaione@baylibre.com>
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef ZEPHYR_INCLUDE_DRIVERS_CACHE_H_
|
||||||
|
#define ZEPHYR_INCLUDE_DRIVERS_CACHE_H_
|
||||||
|
|
||||||
|
#include <cache.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief Enable d-cache
|
||||||
|
*
|
||||||
|
* Enable the d-cache.
|
||||||
|
*
|
||||||
|
* @return N/A
|
||||||
|
*/
|
||||||
|
void dcache_enable(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief Disable d-cache
|
||||||
|
*
|
||||||
|
* Disable the d-cache.
|
||||||
|
*
|
||||||
|
* @return N/A
|
||||||
|
*/
|
||||||
|
void dcache_disable(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief Enable i-cache
|
||||||
|
*
|
||||||
|
* Enable the i-cache.
|
||||||
|
*
|
||||||
|
* @return N/A
|
||||||
|
*/
|
||||||
|
void icache_enable(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief Disable i-cache
|
||||||
|
*
|
||||||
|
* Disable the i-cache.
|
||||||
|
*
|
||||||
|
* @return N/A
|
||||||
|
*/
|
||||||
|
void 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 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 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 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 icache_range(void *addr, size_t size, int op);
|
||||||
|
|
||||||
|
#ifdef CONFIG_DCACHE_LINE_SIZE_DETECT
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @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.
|
||||||
|
*/
|
||||||
|
size_t dcache_line_size_get(void);
|
||||||
|
|
||||||
|
#endif /* CONFIG_DCACHE_LINE_SIZE_DETECT */
|
||||||
|
|
||||||
|
#ifdef CONFIG_ICACHE_LINE_SIZE_DETECT
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @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.
|
||||||
|
*/
|
||||||
|
size_t icache_line_size_get(void);
|
||||||
|
|
||||||
|
#endif /* CONFIG_ICACHE_LINE_SIZE_DETECT */
|
||||||
|
|
||||||
|
#endif /* ZEPHYR_INCLUDE_DRIVERS_CACHE_H_ */
|
|
@ -820,7 +820,7 @@ void arch_gdb_step(void);
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef CONFIG_CACHE_MANAGEMENT
|
#if defined(CONFIG_CACHE_MANAGEMENT) && defined(CONFIG_HAS_ARCH_CACHE)
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @brief Enable d-cache
|
* @brief Enable d-cache
|
||||||
|
@ -905,7 +905,7 @@ size_t arch_dcache_line_size_get(void);
|
||||||
size_t arch_icache_line_size_get(void);
|
size_t arch_icache_line_size_get(void);
|
||||||
#endif /* CONFIG_ICACHE_LINE_SIZE_DETECT */
|
#endif /* CONFIG_ICACHE_LINE_SIZE_DETECT */
|
||||||
|
|
||||||
#endif /* CONFIG_CACHE_MANAGEMENT */
|
#endif /* CONFIG_CACHE_MANAGEMENT && CONFIG_HAS_ARCH_CACHE */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
|
|
|
@ -79,11 +79,14 @@ target_sources_ifdef(
|
||||||
kernel PRIVATE
|
kernel PRIVATE
|
||||||
futex.c
|
futex.c
|
||||||
mem_domain.c
|
mem_domain.c
|
||||||
cache_handlers.c
|
|
||||||
userspace_handler.c
|
userspace_handler.c
|
||||||
userspace.c
|
userspace.c
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(CONFIG_CACHE_MANAGEMENT AND CONFIG_USERSPACE)
|
||||||
|
target_sources(kernel PRIVATE cache_handlers.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
target_include_directories(kernel PRIVATE
|
target_include_directories(kernel PRIVATE
|
||||||
${ZEPHYR_BASE}/kernel/include
|
${ZEPHYR_BASE}/kernel/include
|
||||||
${ARCH_DIR}/${ARCH}/include
|
${ARCH_DIR}/${ARCH}/include
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue