mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-25 11:25:17 +00:00
rtc/ds1337.c: Allow to set TCR register
This is needed to correctly start the charging of an attached capacitor or battery. Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de> Signed-off-by: Detlev Zundel <dzu@denx.de>
This commit is contained in:
parent
3998c62df0
commit
6b0b181afd
1 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,7 @@
|
|||
#define RTC_YR_REG_ADDR 0x6
|
||||
#define RTC_CTL_REG_ADDR 0x0e
|
||||
#define RTC_STAT_REG_ADDR 0x0f
|
||||
#define RTC_TC_REG_ADDR 0x10
|
||||
|
||||
/*
|
||||
* RTC control register bits
|
||||
|
@ -169,6 +170,9 @@ int rtc_set (struct rtc_time *tmp)
|
|||
void rtc_reset (void)
|
||||
{
|
||||
rtc_write (RTC_CTL_REG_ADDR, RTC_DS1337_RESET_VAL);
|
||||
#ifdef CONFIG_SYS_DS1339_TCR_VAL
|
||||
rtc_write (RTC_TC_REG_ADDR, CONFIG_SYS_DS1339_TCR_VAL);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue