1# SPDX-License-Identifier: Apache-2.0
2#
3# Copyright (c) 2023 Antmicro <www.antmicro.com>
4
5config AMBIQ_HAL
6	bool "Ambiq HAL drivers support"
7	depends on SOC_SERIES_APOLLO4X
8	help
9	  Use the Ambiq HAL
10
11if AMBIQ_HAL
12
13config AMBIQ_HAL_USE_GPIO
14	bool
15	help
16	  Use the GPIO driver from Ambiq HAL
17
18config AMBIQ_HAL_USE_STIMER
19	bool
20	help
21	  Use the STIMER driver from Ambiq HAL
22
23config AMBIQ_HAL_USE_TIMER
24	bool
25	help
26	  Use the TIMER driver from Ambiq HAL
27
28config AMBIQ_HAL_USE_WDT
29	bool
30	help
31	  Use the WDT driver from Ambiq HAL
32
33config AMBIQ_HAL_USE_I2C
34	bool
35	help
36	  Use the I2C driver from Ambiq HAL
37
38config AMBIQ_HAL_USE_SPI
39	bool
40	help
41	  Use the SPI driver from Ambiq HAL
42
43config AMBIQ_HAL_USE_MSPI
44	bool
45	help
46	  Use the MSPI driver from Ambiq HAL
47
48endif # AMBIQ_HAL
49