STM32 RTC driver for the new RTC API. Can't coexist with old COUNTER based RTC Though supported by HW, RTC_ALARM still to be supported by driver Signed-off-by: Kim Bøndergaard <kim.bondergaard@prevas.dk>
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
# Copyright (c) 2022 Bjarki Arge Andreasen
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig RTC
|
|
bool "Real-Time Clock (RTC) drivers"
|
|
help
|
|
Enable RTC driver configuration.
|
|
|
|
if RTC
|
|
|
|
module = RTC
|
|
module-str = rtc
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config RTC_INIT_PRIORITY
|
|
int "RTC init priority"
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
help
|
|
RTC device driver initialization priority.
|
|
|
|
config RTC_ALARM
|
|
bool "RTC driver alarm support"
|
|
help
|
|
This is an option which enables driver support for RTC alarms.
|
|
|
|
config RTC_UPDATE
|
|
bool "RTC driver update event callback support"
|
|
help
|
|
This is an option which enables driver support for the RTC
|
|
update event callback.
|
|
|
|
config RTC_CALIBRATION
|
|
bool "RTC driver clock calibration support"
|
|
help
|
|
This is an option which enables driver support for RTC clock
|
|
calibration.
|
|
|
|
source "drivers/rtc/Kconfig.emul"
|
|
source "drivers/rtc/Kconfig.pcf8523"
|
|
source "drivers/rtc/Kconfig.pcf8563"
|
|
source "drivers/rtc/Kconfig.mc146818"
|
|
source "drivers/rtc/Kconfig.stm32"
|
|
|
|
endif # RTC
|