Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq
[oweals/u-boot.git] / drivers / rtc / Kconfig
index fd0009b2e2d18593017f8f326950d6330807b32f..59e2fc44ba94e71454c8caed39d0ab6428023449 100644 (file)
@@ -7,6 +7,7 @@ menu "Real Time Clock"
 config DM_RTC
        bool "Enable Driver Model for RTC drivers"
        depends on DM
+       select LIB_DATE
        help
          Enable drver model for real-time-clock drivers. The RTC uclass
          then provides the rtc_get()/rtc_set() interface, delegating to
@@ -31,6 +32,12 @@ config TPL_DM_RTC
          drivers to perform the actual functions. See rtc.h for a
          description of the API.
 
+config RTC_ENABLE_32KHZ_OUTPUT
+       bool "Enable RTC 32Khz output"
+       help
+          Some real-time clocks support the output of 32kHz square waves (such as ds3231),
+          the config symbol choose Real Time Clock device 32Khz output feature.
+
 config RTC_PCF2127
        bool "Enable PCF2127 driver"
        depends on DM_RTC
@@ -48,6 +55,14 @@ config RTC_DS1307
          Support for Dallas Semiconductor (now Maxim) DS1307 and DS1338/9 and
          compatible Real Time Clock devices.
 
+config RTC_DS3232
+       bool "Enable DS3232 driver"
+       depends on DM_RTC
+       depends on DM_I2C
+       help
+         Support for Dallas Semiconductor (now Maxim) DS3232 compatible
+         Real Time Clock devices.
+
 config RTC_ISL1208
        bool "Enable ISL1208 driver"
        depends on DM_RTC
@@ -70,12 +85,27 @@ config RTC_RV3029
          This driver supports reading and writing the RTC/calendar and the
          battery-baced SRAM section.
 
+config RTC_RV8803
+       bool "Enable RV8803 driver"
+       depends on DM_RTC
+       help
+         The Micro Crystal RV8803 is a high accuracy, ultra-low power I2C
+         Real Time Clock (RTC) with temperature compensation.
+
+         This driver supports reading and writing the RTC/calendar and
+         detects total power failures.
+
 config RTC_RX8010SJ
        bool "Enable RX8010SJ driver"
        depends on DM_RTC
        help
          Support for Epson RX8010SJ Real Time Clock devices.
 
+config RTC_RX8025
+       bool "Enable RX8025 driver"
+       help
+         Support for Epson RX8025 Real Time Clock devices.
+
 config RTC_PL031
        bool "Enable ARM AMBA PL031 RTC driver"
        help
@@ -110,4 +140,10 @@ config RTC_M41T62
          Enable driver for ST's M41T62 compatible RTC devices (like RV-4162).
          It is a serial (I2C) real-time clock (RTC) with alarm.
 
+config RTC_STM32
+       bool "Enable STM32 RTC driver"
+       depends on DM_RTC
+       help
+         Enable STM32 RTC driver. This driver supports the rtc that is present
+         on some STM32 SoCs.
 endmenu