blob: 049210991014ee9dfdf59bfce09fd5a0d0036a2b [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
Tom Rini03de3052024-05-20 13:35:03 -060016#include <config.h>
wdenk1cb8e982003-03-06 21:55:29 +000017#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,
Chris Packhamf65774e2021-03-03 14:09:44 +130026 ds_1339,
Chris Packhamd425d602017-04-29 15:20:29 +120027 ds_1340,
Heiko Schocher8dd68032019-05-27 08:13:41 +020028 m41t11,
Chris Packhamd425d602017-04-29 15:20:29 +120029 mcp794xx,
30};
wdenk1cb8e982003-03-06 21:55:29 +000031
32/*
33 * RTC register addresses
34 */
35#define RTC_SEC_REG_ADDR 0x00
36#define RTC_MIN_REG_ADDR 0x01
37#define RTC_HR_REG_ADDR 0x02
38#define RTC_DAY_REG_ADDR 0x03
39#define RTC_DATE_REG_ADDR 0x04
40#define RTC_MON_REG_ADDR 0x05
41#define RTC_YR_REG_ADDR 0x06
42#define RTC_CTL_REG_ADDR 0x07
43
Mark Tomlinson07c65242021-09-28 10:10:42 +130044#define DS1337_CTL_REG_ADDR 0x0e
45#define DS1337_STAT_REG_ADDR 0x0f
46#define DS1340_STAT_REG_ADDR 0x09
47
48#define RTC_STAT_BIT_OSF 0x80
49
wdenk1cb8e982003-03-06 21:55:29 +000050#define RTC_SEC_BIT_CH 0x80 /* Clock Halt (in Register 0) */
51
Callum Sinclair223c4492021-08-10 14:51:15 +120052/* DS1307-specific bits */
wdenk1cb8e982003-03-06 21:55:29 +000053#define RTC_CTL_BIT_RS0 0x01 /* Rate select 0 */
54#define RTC_CTL_BIT_RS1 0x02 /* Rate select 1 */
55#define RTC_CTL_BIT_SQWE 0x10 /* Square Wave Enable */
56#define RTC_CTL_BIT_OUT 0x80 /* Output Control */
57
Callum Sinclair223c4492021-08-10 14:51:15 +120058/* DS1337-specific bits */
59#define DS1337_CTL_BIT_RS1 0x08 /* Rate select 1 */
60#define DS1337_CTL_BIT_RS2 0x10 /* Rate select 2 */
61#define DS1337_CTL_BIT_EOSC 0x80 /* Enable Oscillator */
62
63/* DS1340-specific bits */
64#define DS1340_SEC_BIT_EOSC 0x80 /* Enable Oscillator */
65#define DS1340_CTL_BIT_OUT 0x80 /* Output Control */
66
Andy Flemingc79e1c12015-10-21 18:59:06 -050067/* MCP7941X-specific bits */
68#define MCP7941X_BIT_ST 0x80
69#define MCP7941X_BIT_VBATEN 0x08
70
Chris Packhamd425d602017-04-29 15:20:29 +120071#ifndef CONFIG_DM_RTC
72
Chris Packhamd425d602017-04-29 15:20:29 +120073/*---------------------------------------------------------------------*/
74#undef DEBUG_RTC
75
76#ifdef DEBUG_RTC
77#define DEBUGR(fmt, args...) printf(fmt, ##args)
78#else
79#define DEBUGR(fmt, args...)
80#endif
81/*---------------------------------------------------------------------*/
82
Tom Rini65cc0e22022-11-16 13:10:41 -050083#ifndef CFG_SYS_I2C_RTC_ADDR
84# define CFG_SYS_I2C_RTC_ADDR 0x68
Chris Packhamd425d602017-04-29 15:20:29 +120085#endif
86
87#if defined(CONFIG_RTC_DS1307) && (CONFIG_SYS_I2C_SPEED > 100000)
88# error The DS1307 is specified only up to 100kHz!
89#endif
90
wdenk1cb8e982003-03-06 21:55:29 +000091static uchar rtc_read (uchar reg);
92static void rtc_write (uchar reg, uchar val);
wdenk1cb8e982003-03-06 21:55:29 +000093
94/*
95 * Get the current time from the RTC
96 */
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030097int rtc_get (struct rtc_time *tmp)
wdenk1cb8e982003-03-06 21:55:29 +000098{
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030099 int rel = 0;
wdenk1cb8e982003-03-06 21:55:29 +0000100 uchar sec, min, hour, mday, wday, mon, year;
101
Andy Flemingc79e1c12015-10-21 18:59:06 -0500102#ifdef CONFIG_RTC_MCP79411
103read_rtc:
104#endif
wdenk1cb8e982003-03-06 21:55:29 +0000105 sec = rtc_read (RTC_SEC_REG_ADDR);
106 min = rtc_read (RTC_MIN_REG_ADDR);
107 hour = rtc_read (RTC_HR_REG_ADDR);
108 wday = rtc_read (RTC_DAY_REG_ADDR);
109 mday = rtc_read (RTC_DATE_REG_ADDR);
110 mon = rtc_read (RTC_MON_REG_ADDR);
111 year = rtc_read (RTC_YR_REG_ADDR);
112
113 DEBUGR ("Get RTC year: %02x mon: %02x mday: %02x wday: %02x "
114 "hr: %02x min: %02x sec: %02x\n",
115 year, mon, mday, wday, hour, min, sec);
116
Andy Flemingc79e1c12015-10-21 18:59:06 -0500117#ifdef CONFIG_RTC_DS1307
wdenk1cb8e982003-03-06 21:55:29 +0000118 if (sec & RTC_SEC_BIT_CH) {
119 printf ("### Warning: RTC oscillator has stopped\n");
120 /* clear the CH flag */
121 rtc_write (RTC_SEC_REG_ADDR,
122 rtc_read (RTC_SEC_REG_ADDR) & ~RTC_SEC_BIT_CH);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300123 rel = -1;
wdenk1cb8e982003-03-06 21:55:29 +0000124 }
Andy Flemingc79e1c12015-10-21 18:59:06 -0500125#endif
126
127#ifdef CONFIG_RTC_MCP79411
128 /* make sure that the backup battery is enabled */
129 if (!(wday & MCP7941X_BIT_VBATEN)) {
130 rtc_write(RTC_DAY_REG_ADDR,
131 wday | MCP7941X_BIT_VBATEN);
132 }
133
134 /* clock halted? turn it on, so clock can tick. */
135 if (!(sec & MCP7941X_BIT_ST)) {
136 rtc_write(RTC_SEC_REG_ADDR, MCP7941X_BIT_ST);
137 printf("Started RTC\n");
138 goto read_rtc;
139 }
140#endif
141
wdenk1cb8e982003-03-06 21:55:29 +0000142 tmp->tm_sec = bcd2bin (sec & 0x7F);
143 tmp->tm_min = bcd2bin (min & 0x7F);
144 tmp->tm_hour = bcd2bin (hour & 0x3F);
145 tmp->tm_mday = bcd2bin (mday & 0x3F);
146 tmp->tm_mon = bcd2bin (mon & 0x1F);
147 tmp->tm_year = bcd2bin (year) + ( bcd2bin (year) >= 70 ? 1900 : 2000);
148 tmp->tm_wday = bcd2bin ((wday - 1) & 0x07);
149 tmp->tm_yday = 0;
150 tmp->tm_isdst= 0;
151
152 DEBUGR ("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
153 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
154 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300155
156 return rel;
wdenk1cb8e982003-03-06 21:55:29 +0000157}
158
wdenk1cb8e982003-03-06 21:55:29 +0000159/*
160 * Set the RTC
161 */
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200162int rtc_set (struct rtc_time *tmp)
wdenk1cb8e982003-03-06 21:55:29 +0000163{
164 DEBUGR ("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
165 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
166 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
167
168 if (tmp->tm_year < 1970 || tmp->tm_year > 2069)
169 printf("WARNING: year should be between 1970 and 2069!\n");
wdenk8bde7f72003-06-27 21:31:46 +0000170
wdenk1cb8e982003-03-06 21:55:29 +0000171 rtc_write (RTC_YR_REG_ADDR, bin2bcd (tmp->tm_year % 100));
172 rtc_write (RTC_MON_REG_ADDR, bin2bcd (tmp->tm_mon));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500173#ifdef CONFIG_RTC_MCP79411
174 rtc_write (RTC_DAY_REG_ADDR,
175 bin2bcd (tmp->tm_wday + 1) | MCP7941X_BIT_VBATEN);
176#else
wdenk1cb8e982003-03-06 21:55:29 +0000177 rtc_write (RTC_DAY_REG_ADDR, bin2bcd (tmp->tm_wday + 1));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500178#endif
wdenk1cb8e982003-03-06 21:55:29 +0000179 rtc_write (RTC_DATE_REG_ADDR, bin2bcd (tmp->tm_mday));
180 rtc_write (RTC_HR_REG_ADDR, bin2bcd (tmp->tm_hour));
181 rtc_write (RTC_MIN_REG_ADDR, bin2bcd (tmp->tm_min));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500182#ifdef CONFIG_RTC_MCP79411
183 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec) | MCP7941X_BIT_ST);
184#else
wdenk1cb8e982003-03-06 21:55:29 +0000185 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec));
Andy Flemingc79e1c12015-10-21 18:59:06 -0500186#endif
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200187
188 return 0;
wdenk1cb8e982003-03-06 21:55:29 +0000189}
190
wdenk1cb8e982003-03-06 21:55:29 +0000191/*
wdenk8bde7f72003-06-27 21:31:46 +0000192 * Reset the RTC. We setting the date back to 1970-01-01.
193 * We also enable the oscillator output on the SQW/OUT pin and program
wdenk1cb8e982003-03-06 21:55:29 +0000194 * it for 32,768 Hz output. Note that according to the datasheet, turning
195 * on the square wave output increases the current drain on the backup
196 * battery to something between 480nA and 800nA.
197 */
198void rtc_reset (void)
199{
wdenk1cb8e982003-03-06 21:55:29 +0000200 rtc_write (RTC_SEC_REG_ADDR, 0x00); /* clearing Clock Halt */
201 rtc_write (RTC_CTL_REG_ADDR, RTC_CTL_BIT_SQWE | RTC_CTL_BIT_RS1 | RTC_CTL_BIT_RS0);
wdenk1cb8e982003-03-06 21:55:29 +0000202}
203
wdenk1cb8e982003-03-06 21:55:29 +0000204/*
205 * Helper functions
206 */
207
208static
209uchar rtc_read (uchar reg)
210{
Tom Rini65cc0e22022-11-16 13:10:41 -0500211 return (i2c_reg_read (CFG_SYS_I2C_RTC_ADDR, reg));
wdenk1cb8e982003-03-06 21:55:29 +0000212}
213
wdenk1cb8e982003-03-06 21:55:29 +0000214static void rtc_write (uchar reg, uchar val)
215{
Tom Rini65cc0e22022-11-16 13:10:41 -0500216 i2c_reg_write (CFG_SYS_I2C_RTC_ADDR, reg, val);
wdenk1cb8e982003-03-06 21:55:29 +0000217}
Chris Packhamd425d602017-04-29 15:20:29 +1200218
Chris Packhamd425d602017-04-29 15:20:29 +1200219#endif /* !CONFIG_DM_RTC */
220
221#ifdef CONFIG_DM_RTC
222static int ds1307_rtc_set(struct udevice *dev, const struct rtc_time *tm)
223{
224 int ret;
225 uchar buf[7];
226 enum ds_type type = dev_get_driver_data(dev);
227
228 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
229 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
230 tm->tm_hour, tm->tm_min, tm->tm_sec);
231
232 if (tm->tm_year < 1970 || tm->tm_year > 2069)
233 printf("WARNING: year should be between 1970 and 2069!\n");
234
235 buf[RTC_YR_REG_ADDR] = bin2bcd(tm->tm_year % 100);
236 buf[RTC_MON_REG_ADDR] = bin2bcd(tm->tm_mon);
237 buf[RTC_DAY_REG_ADDR] = bin2bcd(tm->tm_wday + 1);
238 buf[RTC_DATE_REG_ADDR] = bin2bcd(tm->tm_mday);
239 buf[RTC_HR_REG_ADDR] = bin2bcd(tm->tm_hour);
240 buf[RTC_MIN_REG_ADDR] = bin2bcd(tm->tm_min);
241 buf[RTC_SEC_REG_ADDR] = bin2bcd(tm->tm_sec);
242
243 if (type == mcp794xx) {
244 buf[RTC_DAY_REG_ADDR] |= MCP7941X_BIT_VBATEN;
245 buf[RTC_SEC_REG_ADDR] |= MCP7941X_BIT_ST;
246 }
247
248 ret = dm_i2c_write(dev, 0, buf, sizeof(buf));
249 if (ret < 0)
250 return ret;
251
Mark Tomlinson07c65242021-09-28 10:10:42 +1300252 if (type == ds_1337) {
253 /* Ensure oscillator is enabled */
254 dm_i2c_reg_write(dev, DS1337_CTL_REG_ADDR, 0);
255 }
256
Chris Packhamd425d602017-04-29 15:20:29 +1200257 return 0;
258}
259
260static int ds1307_rtc_get(struct udevice *dev, struct rtc_time *tm)
261{
262 int ret;
263 uchar buf[7];
264 enum ds_type type = dev_get_driver_data(dev);
265
Chris Packhamd425d602017-04-29 15:20:29 +1200266 ret = dm_i2c_read(dev, 0, buf, sizeof(buf));
267 if (ret < 0)
268 return ret;
269
Mark Tomlinson07c65242021-09-28 10:10:42 +1300270 if (type == ds_1337 || type == ds_1340) {
271 uint reg = (type == ds_1337) ? DS1337_STAT_REG_ADDR :
272 DS1340_STAT_REG_ADDR;
273 int status = dm_i2c_reg_read(dev, reg);
Chris Packhamd425d602017-04-29 15:20:29 +1200274
Mark Tomlinson07c65242021-09-28 10:10:42 +1300275 if (status >= 0 && (status & RTC_STAT_BIT_OSF)) {
276 printf("### Warning: RTC oscillator has stopped\n");
277 /* clear the OSF flag */
278 dm_i2c_reg_write(dev, reg, status & ~RTC_STAT_BIT_OSF);
Chris Packhamd425d602017-04-29 15:20:29 +1200279 }
280 }
281
282 tm->tm_sec = bcd2bin(buf[RTC_SEC_REG_ADDR] & 0x7F);
283 tm->tm_min = bcd2bin(buf[RTC_MIN_REG_ADDR] & 0x7F);
284 tm->tm_hour = bcd2bin(buf[RTC_HR_REG_ADDR] & 0x3F);
285 tm->tm_mday = bcd2bin(buf[RTC_DATE_REG_ADDR] & 0x3F);
286 tm->tm_mon = bcd2bin(buf[RTC_MON_REG_ADDR] & 0x1F);
287 tm->tm_year = bcd2bin(buf[RTC_YR_REG_ADDR]) +
288 (bcd2bin(buf[RTC_YR_REG_ADDR]) >= 70 ?
289 1900 : 2000);
290 tm->tm_wday = bcd2bin((buf[RTC_DAY_REG_ADDR] - 1) & 0x07);
291 tm->tm_yday = 0;
292 tm->tm_isdst = 0;
293
294 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
295 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
296 tm->tm_hour, tm->tm_min, tm->tm_sec);
297
298 return 0;
299}
300
301static int ds1307_rtc_reset(struct udevice *dev)
302{
303 int ret;
Callum Sinclair223c4492021-08-10 14:51:15 +1200304 enum ds_type type = dev_get_driver_data(dev);
Chris Packhamd425d602017-04-29 15:20:29 +1200305
Callum Sinclair223c4492021-08-10 14:51:15 +1200306 /*
307 * reset clock/oscillator in the seconds register:
308 * on DS1307 bit 7 enables Clock Halt (CH),
309 * on DS1340 bit 7 disables the oscillator (not EOSC)
310 * on MCP794xx bit 7 enables Start Oscillator (ST)
311 */
Chris Packhamd425d602017-04-29 15:20:29 +1200312 ret = dm_i2c_reg_write(dev, RTC_SEC_REG_ADDR, 0x00);
313 if (ret < 0)
314 return ret;
Chris Packhamd425d602017-04-29 15:20:29 +1200315
Callum Sinclair223c4492021-08-10 14:51:15 +1200316 if (type == ds_1307) {
317 /* Write control register in order to enable square-wave
318 * output (SQWE) and set a default rate of 32.768kHz (RS1|RS0).
319 */
320 ret = dm_i2c_reg_write(dev, RTC_CTL_REG_ADDR,
321 RTC_CTL_BIT_SQWE | RTC_CTL_BIT_RS1 |
322 RTC_CTL_BIT_RS0);
323 } else if (type == ds_1337) {
324 /* Write control register in order to enable oscillator output
325 * (not EOSC) and set a default rate of 32.768kHz (RS2|RS1).
326 */
Mark Tomlinson07c65242021-09-28 10:10:42 +1300327 ret = dm_i2c_reg_write(dev, DS1337_CTL_REG_ADDR,
Callum Sinclair223c4492021-08-10 14:51:15 +1200328 DS1337_CTL_BIT_RS2 | DS1337_CTL_BIT_RS1);
329 } else if (type == ds_1340 || type == mcp794xx || type == m41t11) {
330 /* Reset clock calibration, frequency test and output level. */
331 ret = dm_i2c_reg_write(dev, RTC_CTL_REG_ADDR, 0x00);
332 }
333
334 return ret;
Chris Packhamd425d602017-04-29 15:20:29 +1200335}
336
337static int ds1307_probe(struct udevice *dev)
338{
339 i2c_set_chip_flags(dev, DM_I2C_CHIP_RD_ADDRESS |
340 DM_I2C_CHIP_WR_ADDRESS);
341
342 return 0;
343}
344
345static const struct rtc_ops ds1307_rtc_ops = {
346 .get = ds1307_rtc_get,
347 .set = ds1307_rtc_set,
348 .reset = ds1307_rtc_reset,
349};
350
351static const struct udevice_id ds1307_rtc_ids[] = {
352 { .compatible = "dallas,ds1307", .data = ds_1307 },
353 { .compatible = "dallas,ds1337", .data = ds_1337 },
Chris Packhamf65774e2021-03-03 14:09:44 +1300354 { .compatible = "dallas,ds1339", .data = ds_1339 },
Chris Packhamd425d602017-04-29 15:20:29 +1200355 { .compatible = "dallas,ds1340", .data = ds_1340 },
Pali Rohár48c144f2022-02-14 11:34:22 +0100356 { .compatible = "microchip,mcp7940x", .data = mcp794xx },
Chris Packhamd425d602017-04-29 15:20:29 +1200357 { .compatible = "microchip,mcp7941x", .data = mcp794xx },
Heiko Schocher8dd68032019-05-27 08:13:41 +0200358 { .compatible = "st,m41t11", .data = m41t11 },
Chris Packhamd425d602017-04-29 15:20:29 +1200359 { }
360};
361
362U_BOOT_DRIVER(rtc_ds1307) = {
363 .name = "rtc-ds1307",
364 .id = UCLASS_RTC,
365 .probe = ds1307_probe,
366 .of_match = ds1307_rtc_ids,
367 .ops = &ds1307_rtc_ops,
368};
369#endif /* CONFIG_DM_RTC */