blob: c84bbc647f5fe78032d76bb02acf56e70ef8c548 [file] [log] [blame]
Markus Klotzbuecher0be62722007-01-09 14:57:12 +01001/*
2 * (C) Copyright 2006
3 * Markus Klotzbuecher, mk@denx.de
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Markus Klotzbuecher0be62722007-01-09 14:57:12 +01006 */
7
8/*
9 * Date & Time support (no alarms) for Dallas Semiconductor (now Maxim)
10 * Extremly Accurate DS3231 Real Time Clock (RTC).
11 *
12 * copied from ds1337.c
13 */
14
15#include <common.h>
16#include <command.h>
17#include <rtc.h>
18#include <i2c.h>
19
Michal Simek871c18d2008-07-14 19:45:37 +020020#if defined(CONFIG_CMD_DATE)
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010021
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010022/*
23 * RTC register addresses
24 */
25#define RTC_SEC_REG_ADDR 0x0
26#define RTC_MIN_REG_ADDR 0x1
27#define RTC_HR_REG_ADDR 0x2
28#define RTC_DAY_REG_ADDR 0x3
29#define RTC_DATE_REG_ADDR 0x4
30#define RTC_MON_REG_ADDR 0x5
31#define RTC_YR_REG_ADDR 0x6
32#define RTC_CTL_REG_ADDR 0x0e
33#define RTC_STAT_REG_ADDR 0x0f
34
35
36/*
37 * RTC control register bits
38 */
39#define RTC_CTL_BIT_A1IE 0x1 /* Alarm 1 interrupt enable */
40#define RTC_CTL_BIT_A2IE 0x2 /* Alarm 2 interrupt enable */
41#define RTC_CTL_BIT_INTCN 0x4 /* Interrupt control */
42#define RTC_CTL_BIT_RS1 0x8 /* Rate select 1 */
43#define RTC_CTL_BIT_RS2 0x10 /* Rate select 2 */
44#define RTC_CTL_BIT_DOSC 0x80 /* Disable Oscillator */
45
46/*
47 * RTC status register bits
48 */
49#define RTC_STAT_BIT_A1F 0x1 /* Alarm 1 flag */
50#define RTC_STAT_BIT_A2F 0x2 /* Alarm 2 flag */
51#define RTC_STAT_BIT_OSF 0x80 /* Oscillator stop flag */
52
53
54static uchar rtc_read (uchar reg);
55static void rtc_write (uchar reg, uchar val);
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010056
57
58/*
59 * Get the current time from the RTC
60 */
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030061int rtc_get (struct rtc_time *tmp)
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010062{
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030063 int rel = 0;
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010064 uchar sec, min, hour, mday, wday, mon_cent, year, control, status;
65
66 control = rtc_read (RTC_CTL_REG_ADDR);
67 status = rtc_read (RTC_STAT_REG_ADDR);
68 sec = rtc_read (RTC_SEC_REG_ADDR);
69 min = rtc_read (RTC_MIN_REG_ADDR);
70 hour = rtc_read (RTC_HR_REG_ADDR);
71 wday = rtc_read (RTC_DAY_REG_ADDR);
72 mday = rtc_read (RTC_DATE_REG_ADDR);
73 mon_cent = rtc_read (RTC_MON_REG_ADDR);
74 year = rtc_read (RTC_YR_REG_ADDR);
75
Wolfgang Denk397b40c2011-11-04 15:55:12 +000076 debug("Get RTC year: %02x mon/cent: %02x mday: %02x wday: %02x "
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010077 "hr: %02x min: %02x sec: %02x control: %02x status: %02x\n",
78 year, mon_cent, mday, wday, hour, min, sec, control, status);
79
80 if (status & RTC_STAT_BIT_OSF) {
81 printf ("### Warning: RTC oscillator has stopped\n");
82 /* clear the OSF flag */
83 rtc_write (RTC_STAT_REG_ADDR,
84 rtc_read (RTC_STAT_REG_ADDR) & ~RTC_STAT_BIT_OSF);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030085 rel = -1;
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010086 }
87
88 tmp->tm_sec = bcd2bin (sec & 0x7F);
89 tmp->tm_min = bcd2bin (min & 0x7F);
90 tmp->tm_hour = bcd2bin (hour & 0x3F);
91 tmp->tm_mday = bcd2bin (mday & 0x3F);
92 tmp->tm_mon = bcd2bin (mon_cent & 0x1F);
93 tmp->tm_year = bcd2bin (year) + ((mon_cent & 0x80) ? 2000 : 1900);
94 tmp->tm_wday = bcd2bin ((wday - 1) & 0x07);
95 tmp->tm_yday = 0;
96 tmp->tm_isdst= 0;
97
Wolfgang Denk397b40c2011-11-04 15:55:12 +000098 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
Markus Klotzbuecher0be62722007-01-09 14:57:12 +010099 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
100 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300101
102 return rel;
Markus Klotzbuecher0be62722007-01-09 14:57:12 +0100103}
104
105
106/*
107 * Set the RTC
108 */
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200109int rtc_set (struct rtc_time *tmp)
Markus Klotzbuecher0be62722007-01-09 14:57:12 +0100110{
111 uchar century;
112
Wolfgang Denk397b40c2011-11-04 15:55:12 +0000113 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
Markus Klotzbuecher0be62722007-01-09 14:57:12 +0100114 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
115 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
116
117 rtc_write (RTC_YR_REG_ADDR, bin2bcd (tmp->tm_year % 100));
118
119 century = (tmp->tm_year >= 2000) ? 0x80 : 0;
120 rtc_write (RTC_MON_REG_ADDR, bin2bcd (tmp->tm_mon) | century);
121
122 rtc_write (RTC_DAY_REG_ADDR, bin2bcd (tmp->tm_wday + 1));
123 rtc_write (RTC_DATE_REG_ADDR, bin2bcd (tmp->tm_mday));
124 rtc_write (RTC_HR_REG_ADDR, bin2bcd (tmp->tm_hour));
125 rtc_write (RTC_MIN_REG_ADDR, bin2bcd (tmp->tm_min));
126 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec));
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200127
128 return 0;
Markus Klotzbuecher0be62722007-01-09 14:57:12 +0100129}
130
131
132/*
133 * Reset the RTC. We also enable the oscillator output on the
134 * SQW/INTB* pin and program it for 32,768 Hz output. Note that
135 * according to the datasheet, turning on the square wave output
136 * increases the current drain on the backup battery from about
137 * 600 nA to 2uA.
138 */
139void rtc_reset (void)
140{
141 rtc_write (RTC_CTL_REG_ADDR, RTC_CTL_BIT_RS1 | RTC_CTL_BIT_RS2);
142}
143
144
145/*
146 * Helper functions
147 */
148
149static
150uchar rtc_read (uchar reg)
151{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152 return (i2c_reg_read (CONFIG_SYS_I2C_RTC_ADDR, reg));
Markus Klotzbuecher0be62722007-01-09 14:57:12 +0100153}
154
155
156static void rtc_write (uchar reg, uchar val)
157{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158 i2c_reg_write (CONFIG_SYS_I2C_RTC_ADDR, reg, val);
Markus Klotzbuecher0be62722007-01-09 14:57:12 +0100159}
160
Jon Loeligera5938142007-07-09 18:10:50 -0500161#endif