mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
0b326fc296
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>
56 lines
2 KiB
Makefile
56 lines
2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2001-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#ccflags-y += -DDEBUG
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)DM_RTC) += rtc-uclass.o
|
|
|
|
obj-$(CONFIG_RTC_AT91SAM9_RTT) += at91sam9_rtt.o
|
|
obj-y += rtc-lib.o
|
|
obj-$(CONFIG_RTC_DAVINCI) += davinci.o
|
|
obj-$(CONFIG_RTC_DS1302) += ds1302.o
|
|
obj-$(CONFIG_RTC_DS1306) += ds1306.o
|
|
obj-$(CONFIG_RTC_DS1307) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1338) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1339) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1337) += ds1337.o
|
|
obj-$(CONFIG_RTC_DS1374) += ds1374.o
|
|
obj-$(CONFIG_RTC_DS1388) += ds1337.o
|
|
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
|
|
obj-$(CONFIG_RTC_ISL1208) += isl1208.o
|
|
obj-$(CONFIG_RTC_M41T11) += m41t11.o
|
|
obj-$(CONFIG_RTC_M41T60) += m41t60.o
|
|
obj-$(CONFIG_RTC_M41T62) += m41t62.o
|
|
obj-$(CONFIG_RTC_M41T94) += m41t94.o
|
|
obj-$(CONFIG_RTC_M48T35A) += m48t35ax.o
|
|
obj-$(CONFIG_RTC_MAX6900) += max6900.o
|
|
obj-$(CONFIG_RTC_MC13XXX) += mc13xxx-rtc.o
|
|
obj-$(CONFIG_RTC_MC146818) += mc146818.o
|
|
obj-$(CONFIG_RTC_MCP79411) += ds1307.o
|
|
obj-$(CONFIG_MCFRTC) += mcfrtc.o
|
|
obj-$(CONFIG_RTC_MK48T59) += mk48t59.o
|
|
obj-$(CONFIG_RTC_MV) += mvrtc.o
|
|
obj-$(CONFIG_RTC_MX27) += mx27rtc.o
|
|
obj-$(CONFIG_RTC_MXS) += mxsrtc.o
|
|
obj-$(CONFIG_RTC_PCF8563) += pcf8563.o
|
|
obj-$(CONFIG_RTC_PCF2127) += pcf2127.o
|
|
obj-$(CONFIG_RTC_PL031) += pl031.o
|
|
obj-$(CONFIG_RTC_PT7C4338) += pt7c4338.o
|
|
obj-$(CONFIG_RTC_RS5C372A) += rs5c372.o
|
|
obj-$(CONFIG_RTC_RV3029) += rv3029.o
|
|
obj-$(CONFIG_RTC_RV8803) += rv8803.o
|
|
obj-$(CONFIG_RTC_RX8025) += rx8025.o
|
|
obj-$(CONFIG_RTC_RX8010SJ) += rx8010sj.o
|
|
obj-$(CONFIG_RTC_S3C24X0) += s3c24x0_rtc.o
|
|
obj-$(CONFIG_RTC_S35392A) += s35392a.o
|
|
obj-$(CONFIG_RTC_STM32) += stm32_rtc.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox_rtc.o
|
|
obj-$(CONFIG_RTC_X1205) += x1205.o
|