1 // SPDX-License-Identifier: GPL-2.0+
8 * Epson RX8025 RTC driver.
16 /*---------------------------------------------------------------------*/
20 #define DEBUGR(fmt,args...) printf(fmt ,##args)
22 #define DEBUGR(fmt,args...)
24 /*---------------------------------------------------------------------*/
26 #ifndef CONFIG_SYS_I2C_RTC_ADDR
27 # define CONFIG_SYS_I2C_RTC_ADDR 0x32
31 * RTC register addresses
33 #define RTC_SEC_REG_ADDR 0x00
34 #define RTC_MIN_REG_ADDR 0x01
35 #define RTC_HR_REG_ADDR 0x02
36 #define RTC_DAY_REG_ADDR 0x03
37 #define RTC_DATE_REG_ADDR 0x04
38 #define RTC_MON_REG_ADDR 0x05
39 #define RTC_YR_REG_ADDR 0x06
41 #define RTC_CTL1_REG_ADDR 0x0e
42 #define RTC_CTL2_REG_ADDR 0x0f
45 * Control register 1 bits
47 #define RTC_CTL1_BIT_2412 0x20
50 * Control register 2 bits
52 #define RTC_CTL2_BIT_PON 0x10
53 #define RTC_CTL2_BIT_VDET 0x40
54 #define RTC_CTL2_BIT_XST 0x20
55 #define RTC_CTL2_BIT_VDSL 0x80
58 * Note: the RX8025 I2C RTC requires register
59 * reads and write to consist of a single bus
60 * cycle. It is not allowed to write the register
61 * address in a first cycle that is terminated by
62 * a STOP condition. The chips needs a 'restart'
63 * sequence (start sequence without a prior stop).
64 * This driver has been written for a 4xx board.
65 * U-Boot's 4xx i2c driver is currently not capable
66 * to generate such cycles to some work arounds
70 /* static uchar rtc_read (uchar reg); */
71 #define rtc_read(reg) buf[((reg) + 1) & 0xf]
73 static void rtc_write (uchar reg, uchar val);
76 * Get the current time from the RTC
78 int rtc_get (struct rtc_time *tmp)
81 uchar sec, min, hour, mday, wday, mon, year, ctl2;
84 if (i2c_read(CONFIG_SYS_I2C_RTC_ADDR, 0, 0, buf, 16))
85 printf("Error reading from RTC\n");
87 sec = rtc_read(RTC_SEC_REG_ADDR);
88 min = rtc_read(RTC_MIN_REG_ADDR);
89 hour = rtc_read(RTC_HR_REG_ADDR);
90 wday = rtc_read(RTC_DAY_REG_ADDR);
91 mday = rtc_read(RTC_DATE_REG_ADDR);
92 mon = rtc_read(RTC_MON_REG_ADDR);
93 year = rtc_read(RTC_YR_REG_ADDR);
95 DEBUGR ("Get RTC year: %02x mon: %02x mday: %02x wday: %02x "
96 "hr: %02x min: %02x sec: %02x\n",
97 year, mon, mday, wday, hour, min, sec);
100 ctl2 = rtc_read(RTC_CTL2_REG_ADDR);
101 if (ctl2 & RTC_CTL2_BIT_PON) {
102 printf("RTC: power-on detected\n");
106 if (ctl2 & RTC_CTL2_BIT_VDET) {
107 printf("RTC: voltage drop detected\n");
111 if (!(ctl2 & RTC_CTL2_BIT_XST)) {
112 printf("RTC: oscillator stop detected\n");
116 tmp->tm_sec = bcd2bin (sec & 0x7F);
117 tmp->tm_min = bcd2bin (min & 0x7F);
118 if (rtc_read(RTC_CTL1_REG_ADDR) & RTC_CTL1_BIT_2412)
119 tmp->tm_hour = bcd2bin (hour & 0x3F);
121 tmp->tm_hour = bcd2bin (hour & 0x1F) % 12 +
122 ((hour & 0x20) ? 12 : 0);
123 tmp->tm_mday = bcd2bin (mday & 0x3F);
124 tmp->tm_mon = bcd2bin (mon & 0x1F);
125 tmp->tm_year = bcd2bin (year) + ( bcd2bin (year) >= 70 ? 1900 : 2000);
126 tmp->tm_wday = bcd2bin (wday & 0x07);
130 DEBUGR ("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
131 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
132 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
140 int rtc_set (struct rtc_time *tmp)
142 DEBUGR ("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
143 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
144 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
146 if (tmp->tm_year < 1970 || tmp->tm_year > 2069)
147 printf("WARNING: year should be between 1970 and 2069!\n");
149 rtc_write (RTC_YR_REG_ADDR, bin2bcd (tmp->tm_year % 100));
150 rtc_write (RTC_MON_REG_ADDR, bin2bcd (tmp->tm_mon));
151 rtc_write (RTC_DAY_REG_ADDR, bin2bcd (tmp->tm_wday));
152 rtc_write (RTC_DATE_REG_ADDR, bin2bcd (tmp->tm_mday));
153 rtc_write (RTC_HR_REG_ADDR, bin2bcd (tmp->tm_hour));
154 rtc_write (RTC_MIN_REG_ADDR, bin2bcd (tmp->tm_min));
155 rtc_write (RTC_SEC_REG_ADDR, bin2bcd (tmp->tm_sec));
157 rtc_write (RTC_CTL1_REG_ADDR, RTC_CTL1_BIT_2412);
165 void rtc_reset (void)
170 if (i2c_read(CONFIG_SYS_I2C_RTC_ADDR, 0, 0, buf, 16))
171 printf("Error reading from RTC\n");
173 ctl2 = rtc_read(RTC_CTL2_REG_ADDR);
174 ctl2 &= ~(RTC_CTL2_BIT_PON | RTC_CTL2_BIT_VDET);
175 ctl2 |= RTC_CTL2_BIT_XST | RTC_CTL2_BIT_VDSL;
176 rtc_write (RTC_CTL2_REG_ADDR, ctl2);
182 static void rtc_write (uchar reg, uchar val)
187 if (i2c_write(CONFIG_SYS_I2C_RTC_ADDR, 0, 0, buf, 2) != 0)
188 printf("Error writing to RTC\n");