blob: 17344d4d4ff2d5bafc13b160cf0c2a24c79d0ac4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk1cb8e982003-03-06 21:55:29 +00002/*
3 * (C) Copyright 2001, 2002, 2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Keith Outwater, keith_outwater@mvis.com`
6 * Steven Scholz, steven.scholz@imc-berlin.de
wdenk1cb8e982003-03-06 21:55:29 +00007 */
8
9/*
10 * Date & Time support (no alarms) for Dallas Semiconductor (now Maxim)
Markus Niebel412921d2014-07-21 11:06:16 +020011 * DS1307 and DS1338/9 Real Time Clock (RTC).
wdenk1cb8e982003-03-06 21:55:29 +000012 *
13 * based on ds1337.c
14 */
15
16#include <common.h>
17#include <command.h>
Chris Packhamd425d602017-04-29 15:20:29 +120018#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060019#include <log.h>
wdenk1cb8e982003-03-06 21:55:29 +000020#include <rtc.h>
21#include <i2c.h>
22
Chris Packhamd425d602017-04-29 15:20:29 +120023enum ds_type {
24 ds_1307,
25 ds_1337,
26 ds_1340,
Heiko Schocher8dd68032019-05-27 08:13:41 +020027 m41t11,
Chris Packhamd425d602017-04-29 15:20:29 +120028 mcp794xx,
29};
wdenk1cb8e982003-03-06 21:55:29 +000030
31/*
32 * RTC register addresses
33 */
34#define RTC_SEC_REG_ADDR 0x00
35#define RTC_MIN_REG_ADDR 0x01
36#define RTC_HR_REG_ADDR 0x02
37#define RTC_DAY_REG_ADDR 0x03
38#define RTC_DATE_REG_ADDR 0x04
39#define RTC_MON_REG_ADDR 0x05
40#define RTC_YR_REG_ADDR 0x06
41#define RTC_CTL_REG_ADDR 0x07
42
43#define RTC_SEC_BIT_CH 0x80 /* Clock Halt (in Register 0) */
44
45#define RTC_CTL_BIT_RS0 0x01 /* Rate select 0 */
46#define RTC_CTL_BIT_RS1 0x02 /* Rate select 1 */
47#define RTC_CTL_BIT_SQWE 0x10 /* Square Wave Enable */
48#define RTC_CTL_BIT_OUT 0x80 /* Output Control */
49
Andy Flemingc79e1c12015-10-21 18:59:06 -050050/* MCP7941X-specific bits */
51#define MCP7941X_BIT_ST 0x80
52#define MCP7941X_BIT_VBATEN 0x08
53
Chris Packhamd425d602017-04-29 15:20:29 +120054#ifndef CONFIG_DM_RTC
55
Chris Packhamd425d602017-04-29 15:20:29 +120056/*---------------------------------------------------------------------*/
57#undef DEBUG_RTC
58
59#ifdef DEBUG_RTC
60#define DEBUGR(fmt, args...) printf(fmt, ##args)
61#else
62#define DEBUGR(fmt, args...)
63#endif
64/*---------------------------------------------------------------------*/
65
66#ifndef CONFIG_SYS_I2C_RTC_ADDR
67# define CONFIG_SYS_I2C_RTC_ADDR 0x68
68#endif
69
70#if defined(CONFIG_RTC_DS1307) && (CONFIG_SYS_I2C_SPEED > 100000)
71# error The DS1307 is specified only up to 100kHz!
72#endif
73
wdenk1cb8e982003-03-06 21:55:29 +000074static uchar rtc_read (uchar reg);
75static void rtc_write (uchar reg, uchar val);
wdenk1cb8e982003-03-06 21:55:29 +000076
77/*
78 * Get the current time from the RTC
79 */
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030080int rtc_get (struct rtc_time *tmp)
wdenk1cb8e982003-03-06 21:55:29 +000081{
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030082 int rel = 0;
wdenk1cb8e982003-03-06 21:55:29 +000083 uchar sec, min, hour, mday, wday, mon, year;
84
Andy Flemingc79e1c12015-10-21 18:59:06 -050085#ifdef CONFIG_RTC_MCP79411
86read_rtc:
87#endif
wdenk1cb8e982003-03-06 21:55:29 +000088 sec = rtc_read (RTC_SEC_REG_ADDR);
89 min = rtc_read (RTC_MIN_REG_ADDR);
90 hour = rtc_read (RTC_HR_REG_ADDR);
91 wday = rtc_read (RTC_DAY_REG_ADDR);
92 mday = rtc_read (RTC_DATE_REG_ADDR);
93 mon = rtc_read (RTC_MON_REG_ADDR);
94 year = rtc_read (RTC_YR_REG_ADDR);
95
96 DEBUGR ("Get RTC year: %02x mon: %02x mday: %02x wday: %02x "
97 "hr: %02x min: %02x sec: %02x\n",
98 year, mon, mday, wday, hour, min, sec);
99
Andy Flemingc79e1c12015-10-21 18:59:06 -0500100#ifdef CONFIG_RTC_DS1307
wdenk1cb8e982003-03-06 21:55:29 +0000101 if (sec & RTC_SEC_BIT_CH) {
102 printf ("### Warning: RTC oscillator has stopped\n");
103 /* clear the CH flag */
104 rtc_write (RTC_SEC_REG_ADDR,
105 rtc_read (RTC_SEC_REG_ADDR) & ~RTC_SEC_BIT_CH);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300106 rel = -1;
wdenk1cb8e982003-03-06 21:55:29 +0000107 }
Andy Flemingc79e1c12015-10-21 18:59:06 -0500108#endif
109
110#ifdef CONFIG_RTC_MCP79411
111 /* make sure that the backup battery is enabled */
112 if (!(wday & MCP7941X_BIT_VBATEN)) {
113 rtc_write(RTC_DAY_REG_ADDR,
114 wday | MCP7941X_BIT_VBATEN);
115 }
116
117 /* clock halted? turn it on, so clock can tick. */
118 if (!(sec & MCP7941X_BIT_ST)) {
119 rtc_write(RTC_SEC_REG_ADDR, MCP7941X_BIT_ST);
120 printf("Started RTC\n");
121 goto read_rtc;
122 }
123#endif
124
wdenk8bde7f72003-06-27 21:31:46 +0000125
wdenk1cb8e982003-03-06 21:55:29 +0000126 tmp->tm_sec = bcd2bin (sec & 0x7F);
127 tmp->tm_min = bcd2bin (min & 0x7F);
128 tmp->tm_hour = bcd2bin (hour & 0x3F);
129 tmp->tm_mday = bcd2bin (mday & 0x3F);
130 tmp->tm_mon = bcd2bin (mon & 0x1F);
131 tmp->tm_year = bcd2bin (year) + ( bcd2bin (year) >= 70 ? 1900 : 2000);
132 tmp->tm_wday = bcd2bin ((wday - 1) & 0x07);
133 tmp->tm_yday = 0;
134 tmp->tm_isdst= 0;
135
136 DEBUGR ("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
137 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
138 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300139
140 return rel;
wdenk1cb8e982003-03-06 21:55:29 +0000141}
142
143
144/*
145 * Set the RTC
146 */
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200147int rtc_set (struct rtc_time *tmp)
wdenk1cb8e982003-03-06 21:55:29 +0000148{
149 DEBUGR ("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
150 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
151 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
152
153 if (tmp->tm_year < 1970 || tmp->tm_year > 2069)
154 printf("WARNING: year should be between 1970 and 2069!\n");
wdenk8bde7f72003-06-27 21:31:46 +0000155
wdenk1cb8e982003-03-06 21:55:29 +0000156 rtc_write (RTC_YR_REG_ADDR, bin2bcd (tmp->tm_year % 100));
157 rtc_write (RTC_MON_REG_ADDR, bin2bcd (tmp->tm_mon));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500158#ifdef CONFIG_RTC_MCP79411
159 rtc_write (RTC_DAY_REG_ADDR,
160 bin2bcd (tmp->tm_wday + 1) | MCP7941X_BIT_VBATEN);
161#else
wdenk1cb8e982003-03-06 21:55:29 +0000162 rtc_write (RTC_DAY_REG_ADDR, bin2bcd (tmp->tm_wday + 1));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500163#endif
wdenk1cb8e982003-03-06 21:55:29 +0000164 rtc_write (RTC_DATE_REG_ADDR, bin2bcd (tmp->tm_mday));
165 rtc_write (RTC_HR_REG_ADDR, bin2bcd (tmp->tm_hour));
166 rtc_write (RTC_MIN_REG_ADDR, bin2bcd (tmp->tm_min));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500167#ifdef CONFIG_RTC_MCP79411
168 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec) | MCP7941X_BIT_ST);
169#else
wdenk1cb8e982003-03-06 21:55:29 +0000170 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500171#endif
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200172
173 return 0;
wdenk1cb8e982003-03-06 21:55:29 +0000174}
175
176
177/*
wdenk8bde7f72003-06-27 21:31:46 +0000178 * Reset the RTC. We setting the date back to 1970-01-01.
179 * We also enable the oscillator output on the SQW/OUT pin and program
wdenk1cb8e982003-03-06 21:55:29 +0000180 * it for 32,768 Hz output. Note that according to the datasheet, turning
181 * on the square wave output increases the current drain on the backup
182 * battery to something between 480nA and 800nA.
183 */
184void rtc_reset (void)
185{
wdenk1cb8e982003-03-06 21:55:29 +0000186 rtc_write (RTC_SEC_REG_ADDR, 0x00); /* clearing Clock Halt */
187 rtc_write (RTC_CTL_REG_ADDR, RTC_CTL_BIT_SQWE | RTC_CTL_BIT_RS1 | RTC_CTL_BIT_RS0);
wdenk1cb8e982003-03-06 21:55:29 +0000188}
189
190
191/*
192 * Helper functions
193 */
194
195static
196uchar rtc_read (uchar reg)
197{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198 return (i2c_reg_read (CONFIG_SYS_I2C_RTC_ADDR, reg));
wdenk1cb8e982003-03-06 21:55:29 +0000199}
200
201
202static void rtc_write (uchar reg, uchar val)
203{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200204 i2c_reg_write (CONFIG_SYS_I2C_RTC_ADDR, reg, val);
wdenk1cb8e982003-03-06 21:55:29 +0000205}
Chris Packhamd425d602017-04-29 15:20:29 +1200206
Chris Packhamd425d602017-04-29 15:20:29 +1200207#endif /* !CONFIG_DM_RTC */
208
209#ifdef CONFIG_DM_RTC
210static int ds1307_rtc_set(struct udevice *dev, const struct rtc_time *tm)
211{
212 int ret;
213 uchar buf[7];
214 enum ds_type type = dev_get_driver_data(dev);
215
216 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
217 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
218 tm->tm_hour, tm->tm_min, tm->tm_sec);
219
220 if (tm->tm_year < 1970 || tm->tm_year > 2069)
221 printf("WARNING: year should be between 1970 and 2069!\n");
222
223 buf[RTC_YR_REG_ADDR] = bin2bcd(tm->tm_year % 100);
224 buf[RTC_MON_REG_ADDR] = bin2bcd(tm->tm_mon);
225 buf[RTC_DAY_REG_ADDR] = bin2bcd(tm->tm_wday + 1);
226 buf[RTC_DATE_REG_ADDR] = bin2bcd(tm->tm_mday);
227 buf[RTC_HR_REG_ADDR] = bin2bcd(tm->tm_hour);
228 buf[RTC_MIN_REG_ADDR] = bin2bcd(tm->tm_min);
229 buf[RTC_SEC_REG_ADDR] = bin2bcd(tm->tm_sec);
230
231 if (type == mcp794xx) {
232 buf[RTC_DAY_REG_ADDR] |= MCP7941X_BIT_VBATEN;
233 buf[RTC_SEC_REG_ADDR] |= MCP7941X_BIT_ST;
234 }
235
236 ret = dm_i2c_write(dev, 0, buf, sizeof(buf));
237 if (ret < 0)
238 return ret;
239
240 return 0;
241}
242
243static int ds1307_rtc_get(struct udevice *dev, struct rtc_time *tm)
244{
245 int ret;
246 uchar buf[7];
247 enum ds_type type = dev_get_driver_data(dev);
248
249read_rtc:
250 ret = dm_i2c_read(dev, 0, buf, sizeof(buf));
251 if (ret < 0)
252 return ret;
253
254 if (type == ds_1307) {
255 if (buf[RTC_SEC_REG_ADDR] & RTC_SEC_BIT_CH) {
256 printf("### Warning: RTC oscillator has stopped\n");
257 /* clear the CH flag */
258 buf[RTC_SEC_REG_ADDR] &= ~RTC_SEC_BIT_CH;
259 dm_i2c_reg_write(dev, RTC_SEC_REG_ADDR,
260 buf[RTC_SEC_REG_ADDR]);
261 return -1;
262 }
263 }
264
Heiko Schocher8dd68032019-05-27 08:13:41 +0200265 if (type == m41t11) {
266 /* clock halted? turn it on, so clock can tick. */
267 if (buf[RTC_SEC_REG_ADDR] & RTC_SEC_BIT_CH) {
268 buf[RTC_SEC_REG_ADDR] &= ~RTC_SEC_BIT_CH;
269 dm_i2c_reg_write(dev, RTC_SEC_REG_ADDR,
270 MCP7941X_BIT_ST);
271 dm_i2c_reg_write(dev, RTC_SEC_REG_ADDR,
272 buf[RTC_SEC_REG_ADDR]);
273 goto read_rtc;
274 }
275 }
276
Chris Packhamd425d602017-04-29 15:20:29 +1200277 if (type == mcp794xx) {
278 /* make sure that the backup battery is enabled */
279 if (!(buf[RTC_DAY_REG_ADDR] & MCP7941X_BIT_VBATEN)) {
280 dm_i2c_reg_write(dev, RTC_DAY_REG_ADDR,
281 buf[RTC_DAY_REG_ADDR] |
282 MCP7941X_BIT_VBATEN);
283 }
284
285 /* clock halted? turn it on, so clock can tick. */
286 if (!(buf[RTC_SEC_REG_ADDR] & MCP7941X_BIT_ST)) {
287 dm_i2c_reg_write(dev, RTC_SEC_REG_ADDR,
288 MCP7941X_BIT_ST);
289 printf("Started RTC\n");
290 goto read_rtc;
291 }
292 }
293
294 tm->tm_sec = bcd2bin(buf[RTC_SEC_REG_ADDR] & 0x7F);
295 tm->tm_min = bcd2bin(buf[RTC_MIN_REG_ADDR] & 0x7F);
296 tm->tm_hour = bcd2bin(buf[RTC_HR_REG_ADDR] & 0x3F);
297 tm->tm_mday = bcd2bin(buf[RTC_DATE_REG_ADDR] & 0x3F);
298 tm->tm_mon = bcd2bin(buf[RTC_MON_REG_ADDR] & 0x1F);
299 tm->tm_year = bcd2bin(buf[RTC_YR_REG_ADDR]) +
300 (bcd2bin(buf[RTC_YR_REG_ADDR]) >= 70 ?
301 1900 : 2000);
302 tm->tm_wday = bcd2bin((buf[RTC_DAY_REG_ADDR] - 1) & 0x07);
303 tm->tm_yday = 0;
304 tm->tm_isdst = 0;
305
306 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
307 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
308 tm->tm_hour, tm->tm_min, tm->tm_sec);
309
310 return 0;
311}
312
313static int ds1307_rtc_reset(struct udevice *dev)
314{
315 int ret;
Chris Packhamd425d602017-04-29 15:20:29 +1200316
317 /* clear Clock Halt */
318 ret = dm_i2c_reg_write(dev, RTC_SEC_REG_ADDR, 0x00);
319 if (ret < 0)
320 return ret;
321 ret = dm_i2c_reg_write(dev, RTC_CTL_REG_ADDR,
322 RTC_CTL_BIT_SQWE | RTC_CTL_BIT_RS1 |
323 RTC_CTL_BIT_RS0);
324 if (ret < 0)
325 return ret;
326
Chris Packhamd425d602017-04-29 15:20:29 +1200327 return 0;
328}
329
330static int ds1307_probe(struct udevice *dev)
331{
332 i2c_set_chip_flags(dev, DM_I2C_CHIP_RD_ADDRESS |
333 DM_I2C_CHIP_WR_ADDRESS);
334
335 return 0;
336}
337
338static const struct rtc_ops ds1307_rtc_ops = {
339 .get = ds1307_rtc_get,
340 .set = ds1307_rtc_set,
341 .reset = ds1307_rtc_reset,
342};
343
344static const struct udevice_id ds1307_rtc_ids[] = {
345 { .compatible = "dallas,ds1307", .data = ds_1307 },
346 { .compatible = "dallas,ds1337", .data = ds_1337 },
347 { .compatible = "dallas,ds1340", .data = ds_1340 },
348 { .compatible = "microchip,mcp7941x", .data = mcp794xx },
Heiko Schocher8dd68032019-05-27 08:13:41 +0200349 { .compatible = "st,m41t11", .data = m41t11 },
Chris Packhamd425d602017-04-29 15:20:29 +1200350 { }
351};
352
353U_BOOT_DRIVER(rtc_ds1307) = {
354 .name = "rtc-ds1307",
355 .id = UCLASS_RTC,
356 .probe = ds1307_probe,
357 .of_match = ds1307_rtc_ids,
358 .ops = &ds1307_rtc_ops,
359};
360#endif /* CONFIG_DM_RTC */