aboutsummaryrefslogtreecommitdiff
path: root/drivers/rtc/Makefile
diff options
context:
space:
mode:
authorHan Nandor <nandor.han@vaisala.com>2019-11-12 08:39:38 +0000
committerTom Rini <trini@konsulko.com>2020-01-10 10:25:13 -0500
commit0b326fc296435ce27aa41320b6f7eb9266da39ef (patch)
tree7125947dd7a3b9d2a192cc44134cd36c3677c4c4 /drivers/rtc/Makefile
parentc82abaa5d63f5259fd64c59bd70010310b4c4e4b (diff)
downloadu-boot-0b326fc296435ce27aa41320b6f7eb9266da39ef.zip
u-boot-0b326fc296435ce27aa41320b6f7eb9266da39ef.tar.gz
u-boot-0b326fc296435ce27aa41320b6f7eb9266da39ef.tar.bz2
rtc: add support for DS3232 device
DS3232 is an i2c RTC with 236 bytes of battery-backed SRAM. Add an RTC driver for DS3232 device, which provides time and date support. Also read and write functions are provided, which can be used to access the SRAM memory. Signed-off-by: Nandor Han <nandor.han@vaisala.com>
Diffstat (limited to 'drivers/rtc/Makefile')
-rw-r--r--drivers/rtc/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile
index e8875ce..12eb449 100644
--- a/drivers/rtc/Makefile
+++ b/drivers/rtc/Makefile
@@ -21,6 +21,7 @@ obj-$(CONFIG_RTC_DS1556) += ds1556.o
obj-$(CONFIG_RTC_DS164x) += ds164x.o
obj-$(CONFIG_RTC_DS174x) += ds174x.o
obj-$(CONFIG_RTC_DS3231) += ds3231.o
+obj-$(CONFIG_RTC_DS3232) += ds3232.o
obj-$(CONFIG_RTC_FTRTC010) += ftrtc010.o
obj-$(CONFIG_SANDBOX) += i2c_rtc_emul.o
obj-$(CONFIG_RTC_IMXDI) += imxdi.o