summaryrefslogtreecommitdiff
path: root/zephyr/drivers/cros_rtc/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/drivers/cros_rtc/Kconfig')
-rw-r--r--zephyr/drivers/cros_rtc/Kconfig14
1 files changed, 13 insertions, 1 deletions
diff --git a/zephyr/drivers/cros_rtc/Kconfig b/zephyr/drivers/cros_rtc/Kconfig
index 2839b03c62..2f064b4db8 100644
--- a/zephyr/drivers/cros_rtc/Kconfig
+++ b/zephyr/drivers/cros_rtc/Kconfig
@@ -6,7 +6,12 @@ if PLATFORM_EC_RTC && !ARCH_POSIX
choice CROS_RTC_TYPE
prompt "Select the RTC to use"
- default CROS_RTC_NPCX if SOC_FAMILY_NPCX
+ # List standalone controllers before embedded once so that they get
+ # higher priority.
+ default CROS_RTC_NXP_PCF85063A if DT_HAS_NXP_RTC_PCF85063A_ENABLED
+ default CROS_RTC_RENESAS_IDT1337AG if DT_HAS_RENESAS_RTC_IDT1337AG_ENABLED
+ default CROS_RTC_NPCX if DT_HAS_NUVOTON_NPCX_CROS_MTC_ENABLED
+ default CROS_RTC_XEC if DT_HAS_MICROCHIP_XEC_CROS_RTC_ENABLED
help
Select the RTC used on the board.
@@ -40,4 +45,11 @@ config CROS_RTC_RENESAS_IDT1337AG
endchoice # CROS_RTC_TYPE
+config PLATFORM_EC_PCF85063A_CAP_SEL
+ bool "Set CAP_SEL of PCF85063A"
+ depends on CROS_RTC_NXP_PCF85063A
+ help
+ This option select the internal oscillator capacitor to 12.5 pF,
+ default is 7 pF.
+
endif # PLATFORM_EC_RTC