From cad30e817f7ea0a1abf52587b3423eb3d0a4488a Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 1 Jan 2020 19:42:50 +0900 Subject: [PATCH] arch: arm: Enable CMSIS-Core for Cortex-R by default This commit enables the CMSIS-Core(R) processor interface driver for the Cortex-R platforms by default. The CMSIS-Core component provides a set of standard interface functions to control the Cortex-R series processor cores and will be required by the arch port as well as other CMSIS library components (e.g. CMSIS-DSP and CMSIS-NN). Signed-off-by: Stephanos Ioannidis --- arch/arm/core/aarch32/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/core/aarch32/Kconfig b/arch/arm/core/aarch32/Kconfig index afbb799543f..18368038f30 100644 --- a/arch/arm/core/aarch32/Kconfig +++ b/arch/arm/core/aarch32/Kconfig @@ -28,6 +28,7 @@ config CPU_CORTEX_M config CPU_CORTEX_R bool select CPU_CORTEX + select HAS_CMSIS_CORE select HAS_FLASH_LOAD_OFFSET help This option signifies the use of a CPU of the Cortex-R family.