Kconfig 504 B

12345678910111213141516171819202122
  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. Enable pcf2127 driver which provides rtc get and set function
  18. endmenu