blob: 9a0a214386ab286402edef9b4ab67db2d79f02c8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk5d3207d2002-08-21 22:08:56 +00002/*
Wolfgang Denk5b5eb9c2008-03-26 15:38:47 +01003 * (C) Copyright 2001-2008
wdenk5d3207d2002-08-21 22:08:56 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Keith Outwater, keith_outwater@mvis.com`
wdenk5d3207d2002-08-21 22:08:56 +00006 */
7
8/*
9 * Date & Time support (no alarms) for Dallas Semiconductor (now Maxim)
10 * DS1337 Real Time Clock (RTC).
11 */
12
13#include <common.h>
14#include <command.h>
15#include <rtc.h>
16#include <i2c.h>
17
Michal Simek871c18d2008-07-14 19:45:37 +020018#if defined(CONFIG_CMD_DATE)
wdenk5d3207d2002-08-21 22:08:56 +000019
wdenk5d3207d2002-08-21 22:08:56 +000020/*
21 * RTC register addresses
22 */
Kenth Eriksson8fde2f32012-07-12 19:59:44 +000023#if defined CONFIG_RTC_DS1337
wdenk5d3207d2002-08-21 22:08:56 +000024#define RTC_SEC_REG_ADDR 0x0
25#define RTC_MIN_REG_ADDR 0x1
26#define RTC_HR_REG_ADDR 0x2
27#define RTC_DAY_REG_ADDR 0x3
28#define RTC_DATE_REG_ADDR 0x4
29#define RTC_MON_REG_ADDR 0x5
30#define RTC_YR_REG_ADDR 0x6
31#define RTC_CTL_REG_ADDR 0x0e
32#define RTC_STAT_REG_ADDR 0x0f
Werner Pfisterb0078c82009-09-21 14:49:55 +020033#define RTC_TC_REG_ADDR 0x10
Kenth Eriksson8fde2f32012-07-12 19:59:44 +000034#elif defined CONFIG_RTC_DS1388
35#define RTC_SEC_REG_ADDR 0x1
36#define RTC_MIN_REG_ADDR 0x2
37#define RTC_HR_REG_ADDR 0x3
38#define RTC_DAY_REG_ADDR 0x4
39#define RTC_DATE_REG_ADDR 0x5
40#define RTC_MON_REG_ADDR 0x6
41#define RTC_YR_REG_ADDR 0x7
42#define RTC_CTL_REG_ADDR 0x0c
43#define RTC_STAT_REG_ADDR 0x0b
44#define RTC_TC_REG_ADDR 0x0a
45#endif
wdenk5d3207d2002-08-21 22:08:56 +000046
47/*
48 * RTC control register bits
49 */
Wolfgang Denk5b5eb9c2008-03-26 15:38:47 +010050#define RTC_CTL_BIT_A1IE 0x1 /* Alarm 1 interrupt enable */
51#define RTC_CTL_BIT_A2IE 0x2 /* Alarm 2 interrupt enable */
52#define RTC_CTL_BIT_INTCN 0x4 /* Interrupt control */
53#define RTC_CTL_BIT_RS1 0x8 /* Rate select 1 */
54#define RTC_CTL_BIT_RS2 0x10 /* Rate select 2 */
55#define RTC_CTL_BIT_DOSC 0x80 /* Disable Oscillator */
wdenk5d3207d2002-08-21 22:08:56 +000056
57/*
58 * RTC status register bits
59 */
Wolfgang Denk5b5eb9c2008-03-26 15:38:47 +010060#define RTC_STAT_BIT_A1F 0x1 /* Alarm 1 flag */
61#define RTC_STAT_BIT_A2F 0x2 /* Alarm 2 flag */
62#define RTC_STAT_BIT_OSF 0x80 /* Oscillator stop flag */
wdenk5d3207d2002-08-21 22:08:56 +000063
64
65static uchar rtc_read (uchar reg);
66static void rtc_write (uchar reg, uchar val);
wdenk5d3207d2002-08-21 22:08:56 +000067
68/*
69 * Get the current time from the RTC
70 */
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030071int rtc_get (struct rtc_time *tmp)
wdenk5d3207d2002-08-21 22:08:56 +000072{
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030073 int rel = 0;
wdenk5d3207d2002-08-21 22:08:56 +000074 uchar sec, min, hour, mday, wday, mon_cent, year, control, status;
75
76 control = rtc_read (RTC_CTL_REG_ADDR);
77 status = rtc_read (RTC_STAT_REG_ADDR);
78 sec = rtc_read (RTC_SEC_REG_ADDR);
79 min = rtc_read (RTC_MIN_REG_ADDR);
80 hour = rtc_read (RTC_HR_REG_ADDR);
81 wday = rtc_read (RTC_DAY_REG_ADDR);
82 mday = rtc_read (RTC_DATE_REG_ADDR);
83 mon_cent = rtc_read (RTC_MON_REG_ADDR);
84 year = rtc_read (RTC_YR_REG_ADDR);
85
Kenth Eriksson8fde2f32012-07-12 19:59:44 +000086 /* No century bit, assume year 2000 */
87#ifdef CONFIG_RTC_DS1388
88 mon_cent |= 0x80;
89#endif
90
Wolfgang Denk88b25332011-10-29 09:39:11 +000091 debug("Get RTC year: %02x mon/cent: %02x mday: %02x wday: %02x "
wdenk5d3207d2002-08-21 22:08:56 +000092 "hr: %02x min: %02x sec: %02x control: %02x status: %02x\n",
93 year, mon_cent, mday, wday, hour, min, sec, control, status);
94
95 if (status & RTC_STAT_BIT_OSF) {
96 printf ("### Warning: RTC oscillator has stopped\n");
97 /* clear the OSF flag */
98 rtc_write (RTC_STAT_REG_ADDR,
99 rtc_read (RTC_STAT_REG_ADDR) & ~RTC_STAT_BIT_OSF);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300100 rel = -1;
wdenk5d3207d2002-08-21 22:08:56 +0000101 }
102
103 tmp->tm_sec = bcd2bin (sec & 0x7F);
104 tmp->tm_min = bcd2bin (min & 0x7F);
105 tmp->tm_hour = bcd2bin (hour & 0x3F);
106 tmp->tm_mday = bcd2bin (mday & 0x3F);
107 tmp->tm_mon = bcd2bin (mon_cent & 0x1F);
108 tmp->tm_year = bcd2bin (year) + ((mon_cent & 0x80) ? 2000 : 1900);
109 tmp->tm_wday = bcd2bin ((wday - 1) & 0x07);
110 tmp->tm_yday = 0;
111 tmp->tm_isdst= 0;
112
Wolfgang Denk88b25332011-10-29 09:39:11 +0000113 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
wdenk5d3207d2002-08-21 22:08:56 +0000114 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
115 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300116
117 return rel;
wdenk5d3207d2002-08-21 22:08:56 +0000118}
119
120
121/*
122 * Set the RTC
123 */
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200124int rtc_set (struct rtc_time *tmp)
wdenk5d3207d2002-08-21 22:08:56 +0000125{
126 uchar century;
127
Wolfgang Denk88b25332011-10-29 09:39:11 +0000128 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
wdenk5d3207d2002-08-21 22:08:56 +0000129 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
130 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
131
132 rtc_write (RTC_YR_REG_ADDR, bin2bcd (tmp->tm_year % 100));
133
134 century = (tmp->tm_year >= 2000) ? 0x80 : 0;
135 rtc_write (RTC_MON_REG_ADDR, bin2bcd (tmp->tm_mon) | century);
136
137 rtc_write (RTC_DAY_REG_ADDR, bin2bcd (tmp->tm_wday + 1));
138 rtc_write (RTC_DATE_REG_ADDR, bin2bcd (tmp->tm_mday));
139 rtc_write (RTC_HR_REG_ADDR, bin2bcd (tmp->tm_hour));
140 rtc_write (RTC_MIN_REG_ADDR, bin2bcd (tmp->tm_min));
141 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec));
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200142
143 return 0;
wdenk5d3207d2002-08-21 22:08:56 +0000144}
145
146
147/*
148 * Reset the RTC. We also enable the oscillator output on the
149 * SQW/INTB* pin and program it for 32,768 Hz output. Note that
150 * according to the datasheet, turning on the square wave output
151 * increases the current drain on the backup battery from about
Chris Packham2bd3cab2017-05-30 12:03:33 +1200152 * 600 nA to 2uA. Define CONFIG_RTC_DS1337_NOOSC if you wish to turn
Joakim Tjernlundda8808d2008-03-26 13:02:13 +0100153 * off the OSC output.
wdenk5d3207d2002-08-21 22:08:56 +0000154 */
Kenth Eriksson8fde2f32012-07-12 19:59:44 +0000155
Chris Packham2bd3cab2017-05-30 12:03:33 +1200156#ifdef CONFIG_RTC_DS1337_NOOSC
Joakim Tjernlundda8808d2008-03-26 13:02:13 +0100157 #define RTC_DS1337_RESET_VAL \
Wolfgang Denk5b5eb9c2008-03-26 15:38:47 +0100158 (RTC_CTL_BIT_INTCN | RTC_CTL_BIT_RS1 | RTC_CTL_BIT_RS2)
Joakim Tjernlundda8808d2008-03-26 13:02:13 +0100159#else
160 #define RTC_DS1337_RESET_VAL (RTC_CTL_BIT_RS1 | RTC_CTL_BIT_RS2)
161#endif
wdenk5d3207d2002-08-21 22:08:56 +0000162void rtc_reset (void)
163{
Chris Packham2bd3cab2017-05-30 12:03:33 +1200164#ifdef CONFIG_RTC_DS1337
Joakim Tjernlundda8808d2008-03-26 13:02:13 +0100165 rtc_write (RTC_CTL_REG_ADDR, RTC_DS1337_RESET_VAL);
Chris Packham2bd3cab2017-05-30 12:03:33 +1200166#elif defined CONFIG_RTC_DS1388
Kenth Eriksson8fde2f32012-07-12 19:59:44 +0000167 rtc_write(RTC_CTL_REG_ADDR, 0x0); /* hw default */
168#endif
Chris Packham2bd3cab2017-05-30 12:03:33 +1200169#ifdef CONFIG_RTC_DS1339_TCR_VAL
170 rtc_write (RTC_TC_REG_ADDR, CONFIG_RTC_DS1339_TCR_VAL);
Werner Pfisterb0078c82009-09-21 14:49:55 +0200171#endif
Chris Packham2bd3cab2017-05-30 12:03:33 +1200172#ifdef CONFIG_RTC_DS1388_TCR_VAL
173 rtc_write(RTC_TC_REG_ADDR, CONFIG_RTC_DS1388_TCR_VAL);
Kenth Eriksson8fde2f32012-07-12 19:59:44 +0000174#endif
wdenk5d3207d2002-08-21 22:08:56 +0000175}
176
177
178/*
179 * Helper functions
180 */
181
182static
183uchar rtc_read (uchar reg)
184{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185 return (i2c_reg_read (CONFIG_SYS_I2C_RTC_ADDR, reg));
wdenk5d3207d2002-08-21 22:08:56 +0000186}
187
188
189static void rtc_write (uchar reg, uchar val)
190{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191 i2c_reg_write (CONFIG_SYS_I2C_RTC_ADDR, reg, val);
wdenk5d3207d2002-08-21 22:08:56 +0000192}
193
Jon Loeliger068b60a2007-07-10 10:27:39 -0500194#endif