1 // SPDX-License-Identifier: GPL-2.0+
4 * Matthias Fuchs, esd gmbh, matthias.fuchs@esd-electronics.com.
8 * Epson RX8025 RTC driver.
17 /*---------------------------------------------------------------------*/
21 #define DEBUGR(fmt,args...) printf(fmt ,##args)
23 #define DEBUGR(fmt,args...)
25 /*---------------------------------------------------------------------*/
27 #ifndef CONFIG_SYS_I2C_RTC_ADDR
28 # define CONFIG_SYS_I2C_RTC_ADDR 0x32
32 #define DEV_TYPE struct udevice
39 #define DEV_TYPE struct ludevice
44 * RTC register addresses
46 #define RTC_SEC_REG_ADDR 0x00
47 #define RTC_MIN_REG_ADDR 0x01
48 #define RTC_HR_REG_ADDR 0x02
49 #define RTC_DAY_REG_ADDR 0x03
50 #define RTC_DATE_REG_ADDR 0x04
51 #define RTC_MON_REG_ADDR 0x05
52 #define RTC_YR_REG_ADDR 0x06
54 #define RTC_CTL1_REG_ADDR 0x0e
55 #define RTC_CTL2_REG_ADDR 0x0f
58 * Control register 1 bits
60 #define RTC_CTL1_BIT_2412 0x20
63 * Control register 2 bits
65 #define RTC_CTL2_BIT_PON 0x10
66 #define RTC_CTL2_BIT_VDET 0x40
67 #define RTC_CTL2_BIT_XST 0x20
68 #define RTC_CTL2_BIT_VDSL 0x80
71 * Note: the RX8025 I2C RTC requires register
72 * reads and write to consist of a single bus
73 * cycle. It is not allowed to write the register
74 * address in a first cycle that is terminated by
75 * a STOP condition. The chips needs a 'restart'
76 * sequence (start sequence without a prior stop).
77 * This driver has been written for a 4xx board.
78 * U-Boot's 4xx i2c driver is currently not capable
79 * to generate such cycles to some work arounds
83 /* static uchar rtc_read (uchar reg); */
86 * on mpc85xx based board with DM and offset len 1
87 * accessing rtc works fine. May we can drop this ?
89 #define rtc_read(reg) buf[(reg) & 0xf]
91 #define rtc_read(reg) buf[((reg) + 1) & 0xf]
94 static int rtc_write(DEV_TYPE *dev, uchar reg, uchar val);
97 * Get the current time from the RTC
99 static int rx8025_rtc_get(DEV_TYPE *dev, struct rtc_time *tmp)
102 uchar sec, min, hour, mday, wday, mon, year, ctl2;
106 if (dm_i2c_read(dev, 0, buf, sizeof(buf))) {
108 if (i2c_read(dev->chip, 0, 0, buf, 16)) {
110 printf("Error reading from RTC\n");
114 sec = rtc_read(RTC_SEC_REG_ADDR);
115 min = rtc_read(RTC_MIN_REG_ADDR);
116 hour = rtc_read(RTC_HR_REG_ADDR);
117 wday = rtc_read(RTC_DAY_REG_ADDR);
118 mday = rtc_read(RTC_DATE_REG_ADDR);
119 mon = rtc_read(RTC_MON_REG_ADDR);
120 year = rtc_read(RTC_YR_REG_ADDR);
122 DEBUGR("Get RTC year: %02x mon: %02x mday: %02x wday: %02x "
123 "hr: %02x min: %02x sec: %02x\n",
124 year, mon, mday, wday, hour, min, sec);
127 ctl2 = rtc_read(RTC_CTL2_REG_ADDR);
128 if (ctl2 & RTC_CTL2_BIT_PON) {
129 printf("RTC: power-on detected\n");
133 if (ctl2 & RTC_CTL2_BIT_VDET) {
134 printf("RTC: voltage drop detected\n");
138 if (!(ctl2 & RTC_CTL2_BIT_XST)) {
139 printf("RTC: oscillator stop detected\n");
143 tmp->tm_sec = bcd2bin(sec & 0x7F);
144 tmp->tm_min = bcd2bin(min & 0x7F);
145 if (rtc_read(RTC_CTL1_REG_ADDR) & RTC_CTL1_BIT_2412)
146 tmp->tm_hour = bcd2bin(hour & 0x3F);
148 tmp->tm_hour = bcd2bin(hour & 0x1F) % 12 +
149 ((hour & 0x20) ? 12 : 0);
151 tmp->tm_mday = bcd2bin (mday & 0x3F);
152 tmp->tm_mon = bcd2bin (mon & 0x1F);
153 tmp->tm_year = bcd2bin (year) + ( bcd2bin (year) >= 70 ? 1900 : 2000);
154 tmp->tm_wday = bcd2bin (wday & 0x07);
158 DEBUGR("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
159 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
160 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
168 static int rx8025_rtc_set(DEV_TYPE *dev, const struct rtc_time *tmp)
170 DEBUGR("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
171 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
172 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
174 if (tmp->tm_year < 1970 || tmp->tm_year > 2069)
175 printf("WARNING: year should be between 1970 and 2069!\n");
177 if (rtc_write(dev, RTC_YR_REG_ADDR, bin2bcd(tmp->tm_year % 100)))
180 if (rtc_write(dev, RTC_MON_REG_ADDR, bin2bcd(tmp->tm_mon)))
183 if (rtc_write(dev, RTC_DAY_REG_ADDR, bin2bcd(tmp->tm_wday)))
186 if (rtc_write(dev, RTC_DATE_REG_ADDR, bin2bcd(tmp->tm_mday)))
189 if (rtc_write(dev, RTC_HR_REG_ADDR, bin2bcd(tmp->tm_hour)))
192 if (rtc_write(dev, RTC_MIN_REG_ADDR, bin2bcd(tmp->tm_min)))
195 if (rtc_write(dev, RTC_SEC_REG_ADDR, bin2bcd(tmp->tm_sec)))
198 return rtc_write(dev, RTC_CTL1_REG_ADDR, RTC_CTL1_BIT_2412);
204 static int rx8025_rtc_reset(DEV_TYPE *dev)
210 if (dm_i2c_read(dev, 0, buf, sizeof(buf))) {
212 if (i2c_read(dev->chip, 0, 0, buf, 16)) {
214 printf("Error reading from RTC\n");
218 ctl2 = rtc_read(RTC_CTL2_REG_ADDR);
219 ctl2 &= ~(RTC_CTL2_BIT_PON | RTC_CTL2_BIT_VDET);
220 ctl2 |= RTC_CTL2_BIT_XST | RTC_CTL2_BIT_VDSL;
222 return rtc_write(dev, RTC_CTL2_REG_ADDR, ctl2);
228 static int rtc_write(DEV_TYPE *dev, uchar reg, uchar val)
235 if (dm_i2c_write(dev, 0, buf, 2)) {
237 if (i2c_write(dev->chip, 0, 0, buf, 2) != 0) {
239 printf("Error writing to RTC\n");
247 static int rx8025_probe(struct udevice *dev)
252 if (i2c_get_chip_offset_len(dev) != 1)
253 ret = i2c_set_chip_offset_len(dev, 1);
258 return dm_i2c_read(dev, 0, buf, sizeof(buf));
261 static const struct rtc_ops rx8025_rtc_ops = {
262 .get = rx8025_rtc_get,
263 .set = rx8025_rtc_set,
264 .reset = rx8025_rtc_reset,
267 static const struct udevice_id rx8025_rtc_ids[] = {
268 { .compatible = "epson,rx8025" },
272 U_BOOT_DRIVER(rx8010sj_rtc) = {
273 .name = "rx8025_rtc",
275 .probe = rx8025_probe,
276 .of_match = rx8025_rtc_ids,
277 .ops = &rx8025_rtc_ops,
280 int rtc_get(struct rtc_time *tm)
282 struct ludevice dev = {
283 .chip = CONFIG_SYS_I2C_RTC_ADDR,
286 return rx8025_rtc_get(&dev, tm);
289 int rtc_set(struct rtc_time *tm)
291 struct ludevice dev = {
292 .chip = CONFIG_SYS_I2C_RTC_ADDR,
295 return rx8025_rtc_set(&dev, tm);
300 struct ludevice dev = {
301 .chip = CONFIG_SYS_I2C_RTC_ADDR,
304 rx8025_rtc_reset(&dev);