1# Copyright (c) 2016 Intel Corporation
2# Copyright 2025 Arm Limited and/or its affiliates <open-source-office@arm.com>
3# SPDX-License-Identifier: Apache-2.0
4
5config ZEPHYR_CMSIS_6_MODULE
6	bool
7
8config HAS_CMSIS_CORE
9	bool
10	select HAS_CMSIS_CORE_M if CPU_CORTEX_M
11
12if HAS_CMSIS_CORE
13
14config HAS_CMSIS_CORE_M
15	bool
16
17config CMSIS_M_CHECK_DEVICE_DEFINES
18	bool "Check device defines"
19	depends on HAS_CMSIS_CORE_M
20	help
21	  This options enables the validation of CMSIS configuration flags.
22
23config CMSIS_CORE_HAS_SYSTEM_CORE_CLOCK
24	bool
25	help
26	  Enable this option if CMSIS SystemCoreClock symbols is available.
27
28endif
29