Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # RTC drivers configuration
  3. #
  4. menu "Real Time Clock"
  5. config DM_RTC
  6. bool "Enable Driver Model for RTC drivers"
  7. depends on DM
  8. help
  9. Enable drver model for real-time-clock drivers. The RTC uclass
  10. then provides the rtc_get()/rtc_set() interface, delegating to
  11. drivers to perform the actual functions. See rtc.h for a
  12. description of the API.
  13. config RTC_PCF2127
  14. bool "Enable PCF2127 driver"
  15. depends on DM_RTC
  16. help
  17. The PCF2127 is a CMOS Real Time Clock (RTC) and calendar with an integrated
  18. Temperature Compensated Crystal (Xtal) Oscillator (TCXO) and a 32.768 kHz quartz
  19. crystal optimized for very high accuracy and very low power consumption. The PCF2127
  20. has a selectable I2C-bus or SPI-bus, a backup battery switch-over circuit, a
  21. programmable watchdog function, a timestamp function, and many other features.
  22. config RTC_DS1307
  23. bool "Enable DS1307 driver"
  24. depends on DM_RTC
  25. help
  26. Support for Dallas Semiconductor (now Maxim) DS1307 and DS1338/9 and
  27. compatible Real Time Clock devices.
  28. endmenu