blob: 1cc24cccae730d9af18f92d2b25a495293de9e6c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +00002/*
3 * (C) Copyright 2001
4 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com.
wdenkaffae2b2002-08-17 09:36:01 +00005 */
6
7/*
8 * Date & Time support for ST Electronics M48T35Ax RTC
9 */
10
11/*#define DEBUG */
12
13
14#include <common.h>
15#include <command.h>
16#include <rtc.h>
17#include <config.h>
18
wdenkaffae2b2002-08-17 09:36:01 +000019static uchar rtc_read (uchar reg);
20static void rtc_write (uchar reg, uchar val);
wdenkaffae2b2002-08-17 09:36:01 +000021
22/* ------------------------------------------------------------------------- */
23
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030024int rtc_get (struct rtc_time *tmp)
wdenkaffae2b2002-08-17 09:36:01 +000025{
26 uchar sec, min, hour, cent_day, date, month, year;
27 uchar ccr; /* Clock control register */
28
29 /* Lock RTC for read using clock control register */
30 ccr = rtc_read(0);
31 ccr = ccr | 0x40;
32 rtc_write(0, ccr);
33
34 sec = rtc_read (0x1);
35 min = rtc_read (0x2);
36 hour = rtc_read (0x3);
37 cent_day= rtc_read (0x4);
38 date = rtc_read (0x5);
39 month = rtc_read (0x6);
40 year = rtc_read (0x7);
41
42 /* UNLock RTC */
43 ccr = rtc_read(0);
44 ccr = ccr & 0xBF;
45 rtc_write(0, ccr);
46
47 debug ( "Get RTC year: %02x month: %02x date: %02x cent_day: %02x "
48 "hr: %02x min: %02x sec: %02x\n",
49 year, month, date, cent_day,
50 hour, min, sec );
51
52 tmp->tm_sec = bcd2bin (sec & 0x7F);
53 tmp->tm_min = bcd2bin (min & 0x7F);
54 tmp->tm_hour = bcd2bin (hour & 0x3F);
55 tmp->tm_mday = bcd2bin (date & 0x3F);
56 tmp->tm_mon = bcd2bin (month & 0x1F);
57 tmp->tm_year = bcd2bin (year) + ((cent_day & 0x10) ? 2000 : 1900);
58 tmp->tm_wday = bcd2bin (cent_day & 0x07);
59 tmp->tm_yday = 0;
60 tmp->tm_isdst= 0;
61
62 debug ( "Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
63 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
64 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030065
66 return 0;
wdenkaffae2b2002-08-17 09:36:01 +000067}
68
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +020069int rtc_set (struct rtc_time *tmp)
wdenkaffae2b2002-08-17 09:36:01 +000070{
71 uchar ccr; /* Clock control register */
72 uchar century;
73
74 debug ( "Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
75 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
76 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
77
78 /* Lock RTC for write using clock control register */
79 ccr = rtc_read(0);
80 ccr = ccr | 0x80;
81 rtc_write(0, ccr);
82
83 rtc_write (0x07, bin2bcd(tmp->tm_year % 100));
84 rtc_write (0x06, bin2bcd(tmp->tm_mon));
85 rtc_write (0x05, bin2bcd(tmp->tm_mday));
86
87 century = ((tmp->tm_year >= 2000) ? 0x10 : 0) | 0x20;
88 rtc_write (0x04, bin2bcd(tmp->tm_wday) | century);
89
90 rtc_write (0x03, bin2bcd(tmp->tm_hour));
91 rtc_write (0x02, bin2bcd(tmp->tm_min ));
92 rtc_write (0x01, bin2bcd(tmp->tm_sec ));
93
94 /* UNLock RTC */
95 ccr = rtc_read(0);
96 ccr = ccr & 0x7F;
97 rtc_write(0, ccr);
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +020098
99 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000100}
101
102void rtc_reset (void)
103{
104 uchar val;
105
106 /* Clear all clock control registers */
107 rtc_write (0x0, 0x80); /* No Read Lock or calibration */
108
109 /* Clear stop bit */
110 val = rtc_read (0x1);
111 val &= 0x7f;
112 rtc_write(0x1, val);
113
114 /* Enable century / disable frequency test */
115 val = rtc_read (0x4);
116 val = (val & 0xBF) | 0x20;
117 rtc_write(0x4, val);
118
119 /* Clear write lock */
120 rtc_write(0x0, 0);
121}
122
123/* ------------------------------------------------------------------------- */
124
125static uchar rtc_read (uchar reg)
126{
Masahiro Yamadaa4ca3792016-09-06 22:17:39 +0900127 return *(unsigned char *)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200128 ((CONFIG_SYS_NVRAM_BASE_ADDR + CONFIG_SYS_NVRAM_SIZE - 8) + reg);
wdenkaffae2b2002-08-17 09:36:01 +0000129}
130
131static void rtc_write (uchar reg, uchar val)
132{
133 *(unsigned char *)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134 ((CONFIG_SYS_NVRAM_BASE_ADDR + CONFIG_SYS_NVRAM_SIZE - 8) + reg) = val;
wdenkaffae2b2002-08-17 09:36:01 +0000135}