We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f68cd3 commit 8a9048eCopy full SHA for 8a9048e
arch/arm/core/cortex_r/Kconfig
@@ -22,6 +22,14 @@ config CPU_CORTEX_R4
22
help
23
This option signifies the use of a Cortex-R4 CPU
24
25
+config CPU_CORTEX_R5
26
+ bool
27
+ select CPU_CORTEX_R
28
+ select ARMV7_R
29
+ select ARMV7_R_FP if CPU_HAS_FPU
30
+ help
31
+ This option signifies the use of a Cortex-R5 CPU
32
+
33
if CPU_CORTEX_R
34
35
config ARMV7_R
cmake/gcc-m-cpu.cmake
@@ -24,6 +24,8 @@ if("${ARCH}" STREQUAL "arm")
endif()
elseif(CONFIG_CPU_CORTEX_R4)
set(GCC_M_CPU cortex-r4)
+ elseif(CONFIG_CPU_CORTEX_R5)
+ set(GCC_M_CPU cortex-r5)
else()
message(FATAL_ERROR "Expected CONFIG_CPU_CORTEX_x to be defined")
0 commit comments