diff options
author | Patrick Georgi <pgeorgi@google.com> | 2020-04-23 12:46:02 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-04-23 23:12:21 +0000 |
commit | 956f56d645fd620274516a13d538a77f4fc4365d (patch) | |
tree | 1f2d9a7236b3e4271fde7d6c8af76793f337c70c /src/mainboard/google/smaug | |
parent | a4faec3b014b54d4619dad31c6d6ede58700d862 (diff) |
mb/google/smaug: Always add RTC driver
The device is always there, the Chromium OS config always enables it,
so let's mirror that here for a better out of the box experience.
Change-Id: Ic43a314aaed635ae2943df02abc5d163cc3c4ffd
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40658
Reviewed-by: Michael Niewöhner
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/smaug')
-rw-r--r-- | src/mainboard/google/smaug/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/google/smaug/Kconfig b/src/mainboard/google/smaug/Kconfig index fa2313c154..0d3e879572 100644 --- a/src/mainboard/google/smaug/Kconfig +++ b/src/mainboard/google/smaug/Kconfig @@ -30,6 +30,7 @@ config BOARD_SPECIFIC_OPTIONS select MAINBOARD_HAS_CHROMEOS select MAINBOARD_HAS_I2C_TPM_GENERIC select MAINBOARD_HAS_TPM1 + select DRIVERS_TI_TPS65913_RTC config VBOOT select EC_GOOGLE_CHROMEEC_SWITCHES @@ -85,4 +86,12 @@ config EC_GOOGLE_CHROMEEC_I2C_BUS hex default 0x1 +config DRIVERS_TI_TPS65913_RTC_BUS + int + default 4 + +config DRIVERS_TI_TPS65913_RTC_ADDR + hex + default 0x58 + endif # BOARD_GOOGLE_SMAUG |