diff options
| author | Tom Rini <[email protected]> | 2025-08-13 14:55:10 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-10 13:29:34 -0600 |
| commit | 9de2fc9878e7a79752fab26312f9d160b4103e3e (patch) | |
| tree | f247a381a520dace83f7f4cd21eded0931d2c89f | |
| parent | cd01a8164d06fb1f31fddadd78bf17be8d6fa006 (diff) | |
arm: v7m: Allow SYS_ARCH_TIMER here
We have had an implementation of the generic timer found in many v7m
chips since 2017, but as part of the Kconfig migration forgot to allow
it as it wasn't being used at the time. Allow it to be built.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 4965a6d05db..bdb0d47b2ac 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -445,7 +445,7 @@ config ARCH_CPU_INIT config SYS_ARCH_TIMER bool "ARM Generic Timer support" - depends on CPU_V7A || ARM64 + depends on CPU_V7A || CPU_V7M || ARM64 default y if ARM64 help The ARM Generic Timer (aka arch-timer) provides an architected |
