blob: c9d318c0a7eb2d83e992ded95615bd550310d1e9 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
2 * (C) Copyright 2001
3 * Denis Peter MPL AG Switzerland. d.peter@mpl.ch
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +00006 */
7
8/*
9 * Date & Time support for the MC146818 (PIXX4) RTC
10 */
11
12/*#define DEBUG*/
13
14#include <common.h>
15#include <command.h>
16#include <rtc.h>
Simon Glassc6577f72014-11-14 18:18:26 -070017#include <version.h>
wdenkaffae2b2002-08-17 09:36:01 +000018
Paul Burton3ced12a2013-11-08 11:18:55 +000019#if defined(__I386__) || defined(CONFIG_MALTA)
Graeme Russ21831002011-02-12 15:11:43 +110020#include <asm/io.h>
21#define in8(p) inb(p)
22#define out8(p, v) outb(v, p)
23#endif
24
Michal Simek871c18d2008-07-14 19:45:37 +020025#if defined(CONFIG_CMD_DATE)
wdenkaffae2b2002-08-17 09:36:01 +000026
Simon Glassc6577f72014-11-14 18:18:26 -070027/* Set this to 1 to clear the CMOS RAM */
28#define CLEAR_CMOS 0
29
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020030#define RTC_PORT_MC146818 CONFIG_SYS_ISA_IO_BASE_ADDRESS + 0x70
Wolfgang Denk53677ef2008-05-20 16:00:29 +020031#define RTC_SECONDS 0x00
32#define RTC_SECONDS_ALARM 0x01
33#define RTC_MINUTES 0x02
34#define RTC_MINUTES_ALARM 0x03
35#define RTC_HOURS 0x04
36#define RTC_HOURS_ALARM 0x05
37#define RTC_DAY_OF_WEEK 0x06
38#define RTC_DATE_OF_MONTH 0x07
39#define RTC_MONTH 0x08
40#define RTC_YEAR 0x09
41#define RTC_CONFIG_A 0x0A
42#define RTC_CONFIG_B 0x0B
43#define RTC_CONFIG_C 0x0C
44#define RTC_CONFIG_D 0x0D
Simon Glassc6577f72014-11-14 18:18:26 -070045#define RTC_REG_SIZE 0x80
wdenkaffae2b2002-08-17 09:36:01 +000046
Simon Glassc6577f72014-11-14 18:18:26 -070047#define RTC_CONFIG_A_REF_CLCK_32KHZ (1 << 5)
48#define RTC_CONFIG_A_RATE_1024HZ 6
49
50#define RTC_CONFIG_B_24H (1 << 1)
51
52#define RTC_CONFIG_D_VALID_RAM_AND_TIME 0x80
wdenkaffae2b2002-08-17 09:36:01 +000053
54/* ------------------------------------------------------------------------- */
55
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030056int rtc_get (struct rtc_time *tmp)
wdenkaffae2b2002-08-17 09:36:01 +000057{
58 uchar sec, min, hour, mday, wday, mon, year;
59 /* here check if rtc can be accessed */
Simon Glassfc4860c2015-01-19 22:16:10 -070060 while ((rtc_read8(RTC_CONFIG_A) & 0x80) == 0x80);
61 sec = rtc_read8(RTC_SECONDS);
62 min = rtc_read8(RTC_MINUTES);
63 hour = rtc_read8(RTC_HOURS);
64 mday = rtc_read8(RTC_DATE_OF_MONTH);
65 wday = rtc_read8(RTC_DAY_OF_WEEK);
66 mon = rtc_read8(RTC_MONTH);
67 year = rtc_read8(RTC_YEAR);
wdenkaffae2b2002-08-17 09:36:01 +000068#ifdef RTC_DEBUG
69 printf ( "Get RTC year: %02x mon/cent: %02x mday: %02x wday: %02x "
70 "hr: %02x min: %02x sec: %02x\n",
wdenkc7de8292002-11-19 11:04:11 +000071 year, mon, mday, wday,
wdenkaffae2b2002-08-17 09:36:01 +000072 hour, min, sec );
73 printf ( "Alarms: month: %02x hour: %02x min: %02x sec: %02x\n",
Simon Glassfc4860c2015-01-19 22:16:10 -070074 rtc_read8(RTC_CONFIG_D) & 0x3F,
75 rtc_read8(RTC_HOURS_ALARM),
76 rtc_read8(RTC_MINUTES_ALARM),
77 rtc_read8(RTC_SECONDS_ALARM));
wdenkaffae2b2002-08-17 09:36:01 +000078#endif
79 tmp->tm_sec = bcd2bin (sec & 0x7F);
80 tmp->tm_min = bcd2bin (min & 0x7F);
81 tmp->tm_hour = bcd2bin (hour & 0x3F);
82 tmp->tm_mday = bcd2bin (mday & 0x3F);
83 tmp->tm_mon = bcd2bin (mon & 0x1F);
84 tmp->tm_year = bcd2bin (year);
85 tmp->tm_wday = bcd2bin (wday & 0x07);
86 if(tmp->tm_year<70)
87 tmp->tm_year+=2000;
88 else
89 tmp->tm_year+=1900;
90 tmp->tm_yday = 0;
91 tmp->tm_isdst= 0;
92#ifdef RTC_DEBUG
93 printf ( "Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
94 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
95 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
96#endif
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030097
98 return 0;
wdenkaffae2b2002-08-17 09:36:01 +000099}
100
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200101int rtc_set (struct rtc_time *tmp)
wdenkaffae2b2002-08-17 09:36:01 +0000102{
103#ifdef RTC_DEBUG
104 printf ( "Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
105 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
106 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
107#endif
Simon Glassfc4860c2015-01-19 22:16:10 -0700108 rtc_write8(RTC_CONFIG_B, 0x82); /* disable the RTC to update the regs */
wdenkaffae2b2002-08-17 09:36:01 +0000109
Simon Glassfc4860c2015-01-19 22:16:10 -0700110 rtc_write8(RTC_YEAR, bin2bcd(tmp->tm_year % 100));
111 rtc_write8(RTC_MONTH, bin2bcd(tmp->tm_mon));
112 rtc_write8(RTC_DAY_OF_WEEK, bin2bcd(tmp->tm_wday));
113 rtc_write8(RTC_DATE_OF_MONTH, bin2bcd(tmp->tm_mday));
114 rtc_write8(RTC_HOURS, bin2bcd(tmp->tm_hour));
115 rtc_write8(RTC_MINUTES, bin2bcd(tmp->tm_min));
116 rtc_write8(RTC_SECONDS, bin2bcd(tmp->tm_sec));
117 rtc_write8(RTC_CONFIG_B, 0x02); /* enable the RTC to update the regs */
wdenkaffae2b2002-08-17 09:36:01 +0000118
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200119 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000120}
121
122void rtc_reset (void)
123{
Simon Glassfc4860c2015-01-19 22:16:10 -0700124 rtc_write8(RTC_CONFIG_B, 0x82); /* disable the RTC to update the regs */
125 rtc_write8(RTC_CONFIG_A, 0x20); /* Normal OP */
126 rtc_write8(RTC_CONFIG_B, 0x00);
127 rtc_write8(RTC_CONFIG_B, 0x00);
128 rtc_write8(RTC_CONFIG_B, 0x02); /* enable the RTC to update the regs */
wdenkaffae2b2002-08-17 09:36:01 +0000129}
130
131/* ------------------------------------------------------------------------- */
132
wdenkaffae2b2002-08-17 09:36:01 +0000133/*
134 * use direct memory access
135 */
Simon Glassfc4860c2015-01-19 22:16:10 -0700136int rtc_read8(int reg)
wdenkaffae2b2002-08-17 09:36:01 +0000137{
Simon Glassfc4860c2015-01-19 22:16:10 -0700138#ifdef CONFIG_SYS_RTC_REG_BASE_ADDR
Simon Glassc6577f72014-11-14 18:18:26 -0700139 return in8(CONFIG_SYS_RTC_REG_BASE_ADDR + reg);
wdenkaffae2b2002-08-17 09:36:01 +0000140#else
Simon Glassfc4860c2015-01-19 22:16:10 -0700141 int ofs = 0;
142
143 if (reg >= 128) {
144 ofs = 2;
145 reg -= 128;
146 }
147 out8(RTC_PORT_MC146818 + ofs, reg);
148
149 return in8(RTC_PORT_MC146818 + ofs + 1);
150#endif
wdenkaffae2b2002-08-17 09:36:01 +0000151}
152
Simon Glassfc4860c2015-01-19 22:16:10 -0700153void rtc_write8(int reg, uchar val)
wdenkaffae2b2002-08-17 09:36:01 +0000154{
Simon Glassfc4860c2015-01-19 22:16:10 -0700155#ifdef CONFIG_SYS_RTC_REG_BASE_ADDR
156 out8(CONFIG_SYS_RTC_REG_BASE_ADDR + reg, val);
157#else
158 int ofs = 0;
159
160 if (reg >= 128) {
161 ofs = 2;
162 reg -= 128;
163 }
164 out8(RTC_PORT_MC146818 + ofs, reg);
165 out8(RTC_PORT_MC146818 + ofs + 1, val);
wdenkaffae2b2002-08-17 09:36:01 +0000166#endif
Simon Glassfc4860c2015-01-19 22:16:10 -0700167}
168
169u32 rtc_read32(int reg)
170{
171 u32 value = 0;
172 int i;
173
174 for (i = 0; i < sizeof(value); i++)
175 value |= rtc_read8(reg + i) << (i << 3);
176
177 return value;
178}
179
180void rtc_write32(int reg, u32 value)
181{
182 int i;
183
184 for (i = 0; i < sizeof(value); i++)
185 rtc_write8(reg + i, (value >> (i << 3)) & 0xff);
186}
wdenkaffae2b2002-08-17 09:36:01 +0000187
Simon Glassc6577f72014-11-14 18:18:26 -0700188void rtc_init(void)
189{
190#if CLEAR_CMOS
191 int i;
192
Simon Glassfc4860c2015-01-19 22:16:10 -0700193 rtc_write8(RTC_SECONDS_ALARM, 0);
194 rtc_write8(RTC_MINUTES_ALARM, 0);
195 rtc_write8(RTC_HOURS_ALARM, 0);
Simon Glassc6577f72014-11-14 18:18:26 -0700196 for (i = RTC_CONFIG_A; i < RTC_REG_SIZE; i++)
Simon Glassfc4860c2015-01-19 22:16:10 -0700197 rtc_write8(i, 0);
Simon Glassc6577f72014-11-14 18:18:26 -0700198 printf("RTC: zeroing CMOS RAM\n");
199#endif
200
201 /* Setup the real time clock */
Simon Glassfc4860c2015-01-19 22:16:10 -0700202 rtc_write8(RTC_CONFIG_B, RTC_CONFIG_B_24H);
Simon Glassc6577f72014-11-14 18:18:26 -0700203 /* Setup the frequency it operates at */
Simon Glassfc4860c2015-01-19 22:16:10 -0700204 rtc_write8(RTC_CONFIG_A, RTC_CONFIG_A_REF_CLCK_32KHZ |
Simon Glassc6577f72014-11-14 18:18:26 -0700205 RTC_CONFIG_A_RATE_1024HZ);
206 /* Ensure all reserved bits are 0 in register D */
Simon Glassfc4860c2015-01-19 22:16:10 -0700207 rtc_write8(RTC_CONFIG_D, RTC_CONFIG_D_VALID_RAM_AND_TIME);
Simon Glassc6577f72014-11-14 18:18:26 -0700208
209 /* Clear any pending interrupts */
Simon Glassfc4860c2015-01-19 22:16:10 -0700210 rtc_read8(RTC_CONFIG_C);
Simon Glassc6577f72014-11-14 18:18:26 -0700211}
Jon Loeliger068b60a2007-07-10 10:27:39 -0500212#endif