]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
95c6bc7d MF |
2 | /* |
3 | * (C) Copyright 2007 | |
4 | * Matthias Fuchs, esd gmbh, [email protected]. | |
95c6bc7d MF |
5 | */ |
6 | ||
7 | /* | |
8 | * Epson RX8025 RTC driver. | |
9 | */ | |
10 | ||
11 | #include <common.h> | |
12 | #include <command.h> | |
0c4e81e0 | 13 | #include <dm.h> |
95c6bc7d | 14 | #include <i2c.h> |
0c4e81e0 | 15 | #include <rtc.h> |
95c6bc7d | 16 | |
95c6bc7d MF |
17 | /*---------------------------------------------------------------------*/ |
18 | #undef DEBUG_RTC | |
19 | ||
20 | #ifdef DEBUG_RTC | |
21 | #define DEBUGR(fmt,args...) printf(fmt ,##args) | |
22 | #else | |
23 | #define DEBUGR(fmt,args...) | |
24 | #endif | |
25 | /*---------------------------------------------------------------------*/ | |
26 | ||
9ca4ae2d MM |
27 | enum rx_model { |
28 | model_rx_8025, | |
29 | model_rx_8035, | |
30 | }; | |
31 | ||
95c6bc7d MF |
32 | /* |
33 | * RTC register addresses | |
34 | */ | |
35 | #define RTC_SEC_REG_ADDR 0x00 | |
36 | #define RTC_MIN_REG_ADDR 0x01 | |
37 | #define RTC_HR_REG_ADDR 0x02 | |
38 | #define RTC_DAY_REG_ADDR 0x03 | |
39 | #define RTC_DATE_REG_ADDR 0x04 | |
40 | #define RTC_MON_REG_ADDR 0x05 | |
41 | #define RTC_YR_REG_ADDR 0x06 | |
771fc0c0 | 42 | #define RTC_OFFSET_REG_ADDR 0x07 |
95c6bc7d MF |
43 | |
44 | #define RTC_CTL1_REG_ADDR 0x0e | |
45 | #define RTC_CTL2_REG_ADDR 0x0f | |
46 | ||
47 | /* | |
48 | * Control register 1 bits | |
49 | */ | |
50 | #define RTC_CTL1_BIT_2412 0x20 | |
51 | ||
52 | /* | |
53 | * Control register 2 bits | |
54 | */ | |
55 | #define RTC_CTL2_BIT_PON 0x10 | |
56 | #define RTC_CTL2_BIT_VDET 0x40 | |
57 | #define RTC_CTL2_BIT_XST 0x20 | |
58 | #define RTC_CTL2_BIT_VDSL 0x80 | |
59 | ||
60 | /* | |
61 | * Note: the RX8025 I2C RTC requires register | |
62 | * reads and write to consist of a single bus | |
63 | * cycle. It is not allowed to write the register | |
64 | * address in a first cycle that is terminated by | |
65 | * a STOP condition. The chips needs a 'restart' | |
66 | * sequence (start sequence without a prior stop). | |
95c6bc7d MF |
67 | */ |
68 | ||
0c4e81e0 | 69 | #define rtc_read(reg) buf[(reg) & 0xf] |
95c6bc7d | 70 | |
152ef916 | 71 | static int rtc_write(struct udevice *dev, uchar reg, uchar val); |
95c6bc7d | 72 | |
9ca4ae2d MM |
73 | static int rx8025_is_osc_stopped(enum rx_model model, int ctrl2) |
74 | { | |
75 | int xstp = ctrl2 & RTC_CTL2_BIT_XST; | |
76 | /* XSTP bit has different polarity on RX-8025 vs RX-8035. | |
77 | * RX-8025: 0 == oscillator stopped | |
78 | * RX-8035: 1 == oscillator stopped | |
79 | */ | |
80 | ||
81 | if (model == model_rx_8025) | |
82 | xstp = !xstp; | |
83 | ||
84 | return xstp; | |
85 | } | |
86 | ||
95c6bc7d MF |
87 | /* |
88 | * Get the current time from the RTC | |
89 | */ | |
152ef916 | 90 | static int rx8025_rtc_get(struct udevice *dev, struct rtc_time *tmp) |
95c6bc7d | 91 | { |
b73a19e1 | 92 | int rel = 0; |
95c6bc7d MF |
93 | uchar sec, min, hour, mday, wday, mon, year, ctl2; |
94 | uchar buf[16]; | |
95 | ||
0c4e81e0 | 96 | if (dm_i2c_read(dev, 0, buf, sizeof(buf))) { |
95c6bc7d | 97 | printf("Error reading from RTC\n"); |
0c4e81e0 HS |
98 | return -EIO; |
99 | } | |
95c6bc7d MF |
100 | |
101 | sec = rtc_read(RTC_SEC_REG_ADDR); | |
102 | min = rtc_read(RTC_MIN_REG_ADDR); | |
103 | hour = rtc_read(RTC_HR_REG_ADDR); | |
104 | wday = rtc_read(RTC_DAY_REG_ADDR); | |
105 | mday = rtc_read(RTC_DATE_REG_ADDR); | |
106 | mon = rtc_read(RTC_MON_REG_ADDR); | |
107 | year = rtc_read(RTC_YR_REG_ADDR); | |
108 | ||
f91fb724 HS |
109 | DEBUGR("Get RTC year: %02x mon: %02x mday: %02x wday: %02x " |
110 | "hr: %02x min: %02x sec: %02x\n", | |
111 | year, mon, mday, wday, hour, min, sec); | |
95c6bc7d MF |
112 | |
113 | /* dump status */ | |
114 | ctl2 = rtc_read(RTC_CTL2_REG_ADDR); | |
b73a19e1 | 115 | if (ctl2 & RTC_CTL2_BIT_PON) { |
95c6bc7d | 116 | printf("RTC: power-on detected\n"); |
b73a19e1 YT |
117 | rel = -1; |
118 | } | |
95c6bc7d | 119 | |
b73a19e1 | 120 | if (ctl2 & RTC_CTL2_BIT_VDET) { |
95c6bc7d | 121 | printf("RTC: voltage drop detected\n"); |
b73a19e1 YT |
122 | rel = -1; |
123 | } | |
9ca4ae2d | 124 | if (rx8025_is_osc_stopped(dev->driver_data, ctl2)) { |
95c6bc7d | 125 | printf("RTC: oscillator stop detected\n"); |
b73a19e1 YT |
126 | rel = -1; |
127 | } | |
95c6bc7d | 128 | |
f91fb724 HS |
129 | tmp->tm_sec = bcd2bin(sec & 0x7F); |
130 | tmp->tm_min = bcd2bin(min & 0x7F); | |
5875d358 | 131 | if (rtc_read(RTC_CTL1_REG_ADDR) & RTC_CTL1_BIT_2412) |
f91fb724 | 132 | tmp->tm_hour = bcd2bin(hour & 0x3F); |
5875d358 | 133 | else |
f91fb724 | 134 | tmp->tm_hour = bcd2bin(hour & 0x1F) % 12 + |
5875d358 | 135 | ((hour & 0x20) ? 12 : 0); |
f91fb724 | 136 | |
95c6bc7d MF |
137 | tmp->tm_mday = bcd2bin (mday & 0x3F); |
138 | tmp->tm_mon = bcd2bin (mon & 0x1F); | |
139 | tmp->tm_year = bcd2bin (year) + ( bcd2bin (year) >= 70 ? 1900 : 2000); | |
140 | tmp->tm_wday = bcd2bin (wday & 0x07); | |
141 | tmp->tm_yday = 0; | |
142 | tmp->tm_isdst= 0; | |
143 | ||
f91fb724 HS |
144 | DEBUGR("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n", |
145 | tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday, | |
146 | tmp->tm_hour, tmp->tm_min, tmp->tm_sec); | |
b73a19e1 YT |
147 | |
148 | return rel; | |
95c6bc7d MF |
149 | } |
150 | ||
95c6bc7d MF |
151 | /* |
152 | * Set the RTC | |
153 | */ | |
152ef916 | 154 | static int rx8025_rtc_set(struct udevice *dev, const struct rtc_time *tmp) |
95c6bc7d | 155 | { |
771fc0c0 MM |
156 | /* To work around the read/write cycle issue mentioned |
157 | * at the top of this file, write all the time registers | |
158 | * in one I2C transaction | |
159 | */ | |
160 | u8 write_op[8]; | |
161 | ||
162 | /* 2412 flag must be set before doing a RTC write, | |
163 | * otherwise the seconds and minute register | |
164 | * will be cleared when the flag is set | |
165 | */ | |
166 | if (rtc_write(dev, RTC_CTL1_REG_ADDR, RTC_CTL1_BIT_2412)) | |
167 | return -EIO; | |
168 | ||
f91fb724 HS |
169 | DEBUGR("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n", |
170 | tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday, | |
171 | tmp->tm_hour, tmp->tm_min, tmp->tm_sec); | |
95c6bc7d MF |
172 | |
173 | if (tmp->tm_year < 1970 || tmp->tm_year > 2069) | |
174 | printf("WARNING: year should be between 1970 and 2069!\n"); | |
175 | ||
771fc0c0 MM |
176 | write_op[RTC_SEC_REG_ADDR] = bin2bcd(tmp->tm_sec); |
177 | write_op[RTC_MIN_REG_ADDR] = bin2bcd(tmp->tm_min); | |
178 | write_op[RTC_HR_REG_ADDR] = bin2bcd(tmp->tm_hour); | |
179 | write_op[RTC_DAY_REG_ADDR] = bin2bcd(tmp->tm_wday); | |
180 | write_op[RTC_DATE_REG_ADDR] = bin2bcd(tmp->tm_mday); | |
181 | write_op[RTC_MON_REG_ADDR] = bin2bcd(tmp->tm_mon); | |
182 | write_op[RTC_YR_REG_ADDR] = bin2bcd(tmp->tm_year % 100); | |
183 | write_op[RTC_OFFSET_REG_ADDR] = 0; | |
0c4e81e0 | 184 | |
771fc0c0 | 185 | return dm_i2c_write(dev, 0, &write_op[0], 8); |
95c6bc7d MF |
186 | } |
187 | ||
95c6bc7d | 188 | /* |
402c8fd5 | 189 | * Reset the RTC |
95c6bc7d | 190 | */ |
152ef916 | 191 | static int rx8025_rtc_reset(struct udevice *dev) |
95c6bc7d | 192 | { |
95c6bc7d MF |
193 | uchar buf[16]; |
194 | uchar ctl2; | |
195 | ||
0c4e81e0 | 196 | if (dm_i2c_read(dev, 0, buf, sizeof(buf))) { |
95c6bc7d | 197 | printf("Error reading from RTC\n"); |
0c4e81e0 HS |
198 | return -EIO; |
199 | } | |
95c6bc7d MF |
200 | |
201 | ctl2 = rtc_read(RTC_CTL2_REG_ADDR); | |
202 | ctl2 &= ~(RTC_CTL2_BIT_PON | RTC_CTL2_BIT_VDET); | |
9ca4ae2d MM |
203 | |
204 | if (dev->driver_data == model_rx_8035) | |
205 | ctl2 &= ~(RTC_CTL2_BIT_XST); | |
206 | else | |
207 | ctl2 |= RTC_CTL2_BIT_XST; | |
0c4e81e0 HS |
208 | |
209 | return rtc_write(dev, RTC_CTL2_REG_ADDR, ctl2); | |
95c6bc7d MF |
210 | } |
211 | ||
95c6bc7d MF |
212 | /* |
213 | * Helper functions | |
214 | */ | |
152ef916 | 215 | static int rtc_write(struct udevice *dev, uchar reg, uchar val) |
95c6bc7d | 216 | { |
701c04f3 MM |
217 | /* The RX8025/RX8035 uses the top 4 bits of the |
218 | * 'offset' byte as the start register address, | |
219 | * and the bottom 4 bits as a 'transfer' mode setting | |
220 | * (only applicable for reads) | |
221 | */ | |
222 | u8 offset = (reg << 4); | |
0c4e81e0 | 223 | |
701c04f3 | 224 | if (dm_i2c_reg_write(dev, offset, val)) { |
95c6bc7d | 225 | printf("Error writing to RTC\n"); |
0c4e81e0 HS |
226 | return -EIO; |
227 | } | |
228 | ||
229 | return 0; | |
230 | } | |
231 | ||
0c4e81e0 HS |
232 | static int rx8025_probe(struct udevice *dev) |
233 | { | |
234 | uchar buf[16]; | |
235 | int ret = 0; | |
236 | ||
237 | if (i2c_get_chip_offset_len(dev) != 1) | |
238 | ret = i2c_set_chip_offset_len(dev, 1); | |
239 | ||
240 | if (ret) | |
241 | return ret; | |
242 | ||
243 | return dm_i2c_read(dev, 0, buf, sizeof(buf)); | |
244 | } | |
245 | ||
246 | static const struct rtc_ops rx8025_rtc_ops = { | |
247 | .get = rx8025_rtc_get, | |
248 | .set = rx8025_rtc_set, | |
249 | .reset = rx8025_rtc_reset, | |
250 | }; | |
251 | ||
252 | static const struct udevice_id rx8025_rtc_ids[] = { | |
9ca4ae2d MM |
253 | { .compatible = "epson,rx8025", .data = model_rx_8025 }, |
254 | { .compatible = "epson,rx8035", .data = model_rx_8035 }, | |
0c4e81e0 HS |
255 | { } |
256 | }; | |
257 | ||
9ca4ae2d | 258 | U_BOOT_DRIVER(rx8025_rtc) = { |
0c4e81e0 HS |
259 | .name = "rx8025_rtc", |
260 | .id = UCLASS_RTC, | |
261 | .probe = rx8025_probe, | |
262 | .of_match = rx8025_rtc_ids, | |
263 | .ops = &rx8025_rtc_ops, | |
264 | }; |