3 * Denis Peter MPL AG Switzerland. d.peter@mpl.ch
5 * SPDX-License-Identifier: GPL-2.0+
9 * Date & Time support for the MC146818 (PIXX4) RTC
18 #if defined(__I386__) || defined(CONFIG_MALTA)
21 #define out8(p, v) outb(v, p)
24 #if defined(CONFIG_CMD_DATE)
26 /* Set this to 1 to clear the CMOS RAM */
29 #define RTC_PORT_MC146818 CONFIG_SYS_ISA_IO_BASE_ADDRESS + 0x70
30 #define RTC_SECONDS 0x00
31 #define RTC_SECONDS_ALARM 0x01
32 #define RTC_MINUTES 0x02
33 #define RTC_MINUTES_ALARM 0x03
34 #define RTC_HOURS 0x04
35 #define RTC_HOURS_ALARM 0x05
36 #define RTC_DAY_OF_WEEK 0x06
37 #define RTC_DATE_OF_MONTH 0x07
38 #define RTC_MONTH 0x08
40 #define RTC_CONFIG_A 0x0A
41 #define RTC_CONFIG_B 0x0B
42 #define RTC_CONFIG_C 0x0C
43 #define RTC_CONFIG_D 0x0D
44 #define RTC_REG_SIZE 0x80
46 #define RTC_CONFIG_A_REF_CLCK_32KHZ (1 << 5)
47 #define RTC_CONFIG_A_RATE_1024HZ 6
49 #define RTC_CONFIG_B_24H (1 << 1)
51 #define RTC_CONFIG_D_VALID_RAM_AND_TIME 0x80
53 /* ------------------------------------------------------------------------- */
55 int rtc_get (struct rtc_time *tmp)
57 uchar sec, min, hour, mday, wday, mon, year;
58 /* here check if rtc can be accessed */
59 while ((rtc_read8(RTC_CONFIG_A) & 0x80) == 0x80);
60 sec = rtc_read8(RTC_SECONDS);
61 min = rtc_read8(RTC_MINUTES);
62 hour = rtc_read8(RTC_HOURS);
63 mday = rtc_read8(RTC_DATE_OF_MONTH);
64 wday = rtc_read8(RTC_DAY_OF_WEEK);
65 mon = rtc_read8(RTC_MONTH);
66 year = rtc_read8(RTC_YEAR);
68 printf ( "Get RTC year: %02x mon/cent: %02x mday: %02x wday: %02x "
69 "hr: %02x min: %02x sec: %02x\n",
70 year, mon, mday, wday,
72 printf ( "Alarms: month: %02x hour: %02x min: %02x sec: %02x\n",
73 rtc_read8(RTC_CONFIG_D) & 0x3F,
74 rtc_read8(RTC_HOURS_ALARM),
75 rtc_read8(RTC_MINUTES_ALARM),
76 rtc_read8(RTC_SECONDS_ALARM));
78 tmp->tm_sec = bcd2bin (sec & 0x7F);
79 tmp->tm_min = bcd2bin (min & 0x7F);
80 tmp->tm_hour = bcd2bin (hour & 0x3F);
81 tmp->tm_mday = bcd2bin (mday & 0x3F);
82 tmp->tm_mon = bcd2bin (mon & 0x1F);
83 tmp->tm_year = bcd2bin (year);
84 tmp->tm_wday = bcd2bin (wday & 0x07);
92 printf ( "Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
93 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
94 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
100 int rtc_set (struct rtc_time *tmp)
103 printf ( "Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
104 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
105 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
107 rtc_write8(RTC_CONFIG_B, 0x82); /* disable the RTC to update the regs */
109 rtc_write8(RTC_YEAR, bin2bcd(tmp->tm_year % 100));
110 rtc_write8(RTC_MONTH, bin2bcd(tmp->tm_mon));
111 rtc_write8(RTC_DAY_OF_WEEK, bin2bcd(tmp->tm_wday));
112 rtc_write8(RTC_DATE_OF_MONTH, bin2bcd(tmp->tm_mday));
113 rtc_write8(RTC_HOURS, bin2bcd(tmp->tm_hour));
114 rtc_write8(RTC_MINUTES, bin2bcd(tmp->tm_min));
115 rtc_write8(RTC_SECONDS, bin2bcd(tmp->tm_sec));
116 rtc_write8(RTC_CONFIG_B, 0x02); /* enable the RTC to update the regs */
121 void rtc_reset (void)
123 rtc_write8(RTC_CONFIG_B, 0x82); /* disable the RTC to update the regs */
124 rtc_write8(RTC_CONFIG_A, 0x20); /* Normal OP */
125 rtc_write8(RTC_CONFIG_B, 0x00);
126 rtc_write8(RTC_CONFIG_B, 0x00);
127 rtc_write8(RTC_CONFIG_B, 0x02); /* enable the RTC to update the regs */
130 /* ------------------------------------------------------------------------- */
133 * use direct memory access
135 int rtc_read8(int reg)
137 #ifdef CONFIG_SYS_RTC_REG_BASE_ADDR
138 return in8(CONFIG_SYS_RTC_REG_BASE_ADDR + reg);
146 out8(RTC_PORT_MC146818 + ofs, reg);
148 return in8(RTC_PORT_MC146818 + ofs + 1);
152 void rtc_write8(int reg, uchar val)
154 #ifdef CONFIG_SYS_RTC_REG_BASE_ADDR
155 out8(CONFIG_SYS_RTC_REG_BASE_ADDR + reg, val);
163 out8(RTC_PORT_MC146818 + ofs, reg);
164 out8(RTC_PORT_MC146818 + ofs + 1, val);
168 u32 rtc_read32(int reg)
173 for (i = 0; i < sizeof(value); i++)
174 value |= rtc_read8(reg + i) << (i << 3);
179 void rtc_write32(int reg, u32 value)
183 for (i = 0; i < sizeof(value); i++)
184 rtc_write8(reg + i, (value >> (i << 3)) & 0xff);
192 rtc_write8(RTC_SECONDS_ALARM, 0);
193 rtc_write8(RTC_MINUTES_ALARM, 0);
194 rtc_write8(RTC_HOURS_ALARM, 0);
195 for (i = RTC_CONFIG_A; i < RTC_REG_SIZE; i++)
197 printf("RTC: zeroing CMOS RAM\n");
200 /* Setup the real time clock */
201 rtc_write8(RTC_CONFIG_B, RTC_CONFIG_B_24H);
202 /* Setup the frequency it operates at */
203 rtc_write8(RTC_CONFIG_A, RTC_CONFIG_A_REF_CLCK_32KHZ |
204 RTC_CONFIG_A_RATE_1024HZ);
205 /* Ensure all reserved bits are 0 in register D */
206 rtc_write8(RTC_CONFIG_D, RTC_CONFIG_D_VALID_RAM_AND_TIME);
208 /* Clear any pending interrupts */
209 rtc_read8(RTC_CONFIG_C);