mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
dbeda5b225
Add a uclass for real-time clocks which support getting the current time, setting it and resetting the chip to a known-working state. Some RTCs have additional registers which can be used to store settings, so also provide an interface to these. Signed-off-by: Simon Glass <sjg@chromium.org>
8 lines
298 B
Text
8 lines
298 B
Text
config DM_RTC
|
|
bool "Enable Driver Model for RTC drivers"
|
|
depends on DM
|
|
help
|
|
Enable drver model for real-time-clock drivers. The RTC uclass
|
|
then provides the rtc_get()/rtc_set() interface, delegating to
|
|
drivers to perform the actual functions. See rtc.h for a
|
|
description of the API.
|