1# SPDX-License-Identifier: Apache-2.0
2# Copyright (c) 2023 Linumiz
3# Author: Sri Surya  <srisurya@linumiz.com>
4
5config RTC_AM1805
6	bool "AMBIQ AM1805 RTC driver"
7	default y
8	depends on DT_HAS_AMBIQ_AM1805_ENABLED
9	select I2C
10	help
11	  Enable the AMBIQ AM1805 RTC driver.
12
13if RTC_AM1805
14
15config RTC_AM1805_THREAD_STACK_SIZE
16	int "Stack size for the am1805 interrupt thread"
17	default 512
18	help
19	  Size of the stack used for the thread handling interrupts and dispatching callbacks.
20
21config RTC_AM1805_THREAD_PRIO
22	int "Priority for the am1805 interrupt thread"
23	default 0
24	help
25	  Priority level for the thread handling interrupts and dispatching callbacks.
26
27endif
28