1# HW spinlock configuration options
2
3# Copyright (c) 2023 Sequans Communications.
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig HWSPINLOCK
7	bool "HW spinlock Support"
8	help
9	  Include support for HW spinlock.
10
11if HWSPINLOCK
12
13module = HWSPINLOCK
14module-str = hwspinlock
15source "subsys/logging/Kconfig.template.log_config"
16
17config HWSPINLOCK_INIT_PRIORITY
18	int "HW spinlock init priority"
19	default KERNEL_INIT_PRIORITY_DEFAULT
20	help
21	  HW spinlock driver device initialization priority.
22
23# zephyr-keep-sorted-start
24source "drivers/hwspinlock/Kconfig.sqn"
25source "drivers/hwspinlock/Kconfig.test"
26# zephyr-keep-sorted-stop
27
28endif
29