]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
a6840a6e WD |
2 | /* |
3 | * (C) Copyright 2001 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
a6840a6e WD |
5 | */ |
6 | ||
7 | /* | |
8 | * Generic RTC interface. | |
9 | */ | |
10 | #ifndef _RTC_H_ | |
11 | #define _RTC_H_ | |
12 | ||
885fc78c AT |
13 | /* bcd<->bin functions are needed by almost all the RTC drivers, let's include |
14 | * it there instead of in evey single driver */ | |
15 | ||
16 | #include <bcd.h> | |
aac51198 | 17 | #include <rtc_def.h> |
640aecb4 | 18 | #include <linux/errno.h> |
1e8ce11a | 19 | #include <linux/types.h> |
a6840a6e | 20 | |
90c52423 | 21 | typedef int64_t time64_t; |
09030e03 AT |
22 | struct udevice; |
23 | ||
640aecb4 | 24 | #if CONFIG_IS_ENABLED(DM_RTC) |
dbeda5b2 SG |
25 | struct rtc_ops { |
26 | /** | |
27 | * get() - get the current time | |
28 | * | |
29 | * Returns the current time read from the RTC device. The driver | |
30 | * is responsible for setting up every field in the structure. | |
31 | * | |
32 | * @dev: Device to read from | |
33 | * @time: Place to put the time that is read | |
34 | */ | |
35 | int (*get)(struct udevice *dev, struct rtc_time *time); | |
36 | ||
37 | /** | |
38 | * set() - set the current time | |
39 | * | |
40 | * Sets the time in the RTC device. The driver can expect every | |
41 | * field to be set correctly. | |
42 | * | |
43 | * @dev: Device to read from | |
44 | * @time: Time to write | |
45 | */ | |
46 | int (*set)(struct udevice *dev, const struct rtc_time *time); | |
47 | ||
48 | /** | |
49 | * reset() - reset the RTC to a known-good state | |
50 | * | |
51 | * This function resets the RTC to a known-good state. The time may | |
52 | * be unset by this method, so should be set after this method is | |
53 | * called. | |
54 | * | |
55 | * @dev: Device to read from | |
56 | * @return 0 if OK, -ve on error | |
57 | */ | |
58 | int (*reset)(struct udevice *dev); | |
59 | ||
d8be0880 RV |
60 | /** |
61 | * read() - Read multiple 8-bit registers | |
62 | * | |
63 | * @dev: Device to read from | |
64 | * @reg: First register to read | |
65 | * @buf: Output buffer | |
66 | * @len: Number of registers to read | |
67 | * @return 0 if OK, -ve on error | |
68 | */ | |
69 | int (*read)(struct udevice *dev, unsigned int reg, | |
70 | u8 *buf, unsigned int len); | |
71 | ||
09381829 RV |
72 | /** |
73 | * write() - Write multiple 8-bit registers | |
74 | * | |
75 | * @dev: Device to write to | |
76 | * @reg: First register to write | |
77 | * @buf: Input buffer | |
78 | * @len: Number of registers to write | |
79 | * @return 0 if OK, -ve on error | |
80 | */ | |
81 | int (*write)(struct udevice *dev, unsigned int reg, | |
82 | const u8 *buf, unsigned int len); | |
83 | ||
dbeda5b2 SG |
84 | /** |
85 | * read8() - Read an 8-bit register | |
86 | * | |
87 | * @dev: Device to read from | |
88 | * @reg: Register to read | |
89 | * @return value read, or -ve on error | |
90 | */ | |
91 | int (*read8)(struct udevice *dev, unsigned int reg); | |
92 | ||
93 | /** | |
94 | * write8() - Write an 8-bit register | |
95 | * | |
96 | * @dev: Device to write to | |
97 | * @reg: Register to write | |
98 | * @value: Value to write | |
185f812c | 99 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
100 | */ |
101 | int (*write8)(struct udevice *dev, unsigned int reg, int val); | |
102 | }; | |
103 | ||
104 | /* Access the operations for an RTC device */ | |
105 | #define rtc_get_ops(dev) ((struct rtc_ops *)(dev)->driver->ops) | |
106 | ||
107 | /** | |
108 | * dm_rtc_get() - Read the time from an RTC | |
109 | * | |
110 | * @dev: Device to read from | |
111 | * @time: Place to put the current time | |
185f812c | 112 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
113 | */ |
114 | int dm_rtc_get(struct udevice *dev, struct rtc_time *time); | |
115 | ||
116 | /** | |
a4b33c5a | 117 | * dm_rtc_set() - Write a time to an RTC |
dbeda5b2 SG |
118 | * |
119 | * @dev: Device to read from | |
120 | * @time: Time to write into the RTC | |
185f812c | 121 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
122 | */ |
123 | int dm_rtc_set(struct udevice *dev, struct rtc_time *time); | |
124 | ||
125 | /** | |
126 | * dm_rtc_reset() - reset the RTC to a known-good state | |
127 | * | |
128 | * If the RTC appears to be broken (e.g. it is not counting up in seconds) | |
129 | * it may need to be reset to a known good state. This function achieves this. | |
130 | * After resetting the RTC the time should then be set to a known value by | |
131 | * the caller. | |
132 | * | |
133 | * @dev: Device to read from | |
185f812c | 134 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
135 | */ |
136 | int dm_rtc_reset(struct udevice *dev); | |
137 | ||
d8be0880 RV |
138 | /** |
139 | * dm_rtc_read() - Read multiple 8-bit registers | |
140 | * | |
141 | * @dev: Device to read from | |
142 | * @reg: First register to read | |
143 | * @buf: Output buffer | |
144 | * @len: Number of registers to read | |
185f812c | 145 | * Return: 0 if OK, -ve on error |
d8be0880 RV |
146 | */ |
147 | int dm_rtc_read(struct udevice *dev, unsigned int reg, u8 *buf, unsigned int len); | |
148 | ||
09381829 RV |
149 | /** |
150 | * dm_rtc_write() - Write multiple 8-bit registers | |
151 | * | |
152 | * @dev: Device to write to | |
153 | * @reg: First register to write | |
154 | * @buf: Input buffer | |
155 | * @len: Number of registers to write | |
185f812c | 156 | * Return: 0 if OK, -ve on error |
09381829 RV |
157 | */ |
158 | int dm_rtc_write(struct udevice *dev, unsigned int reg, | |
159 | const u8 *buf, unsigned int len); | |
160 | ||
dbeda5b2 SG |
161 | /** |
162 | * rtc_read8() - Read an 8-bit register | |
163 | * | |
164 | * @dev: Device to read from | |
165 | * @reg: Register to read | |
185f812c | 166 | * Return: value read, or -ve on error |
dbeda5b2 SG |
167 | */ |
168 | int rtc_read8(struct udevice *dev, unsigned int reg); | |
169 | ||
170 | /** | |
171 | * rtc_write8() - Write an 8-bit register | |
172 | * | |
173 | * @dev: Device to write to | |
174 | * @reg: Register to write | |
175 | * @value: Value to write | |
185f812c | 176 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
177 | */ |
178 | int rtc_write8(struct udevice *dev, unsigned int reg, int val); | |
179 | ||
d24c7fbc BM |
180 | /** |
181 | * rtc_read16() - Read a 16-bit value from the RTC | |
182 | * | |
183 | * @dev: Device to read from | |
184 | * @reg: Offset to start reading from | |
185 | * @valuep: Place to put the value that is read | |
185f812c | 186 | * Return: 0 if OK, -ve on error |
d24c7fbc BM |
187 | */ |
188 | int rtc_read16(struct udevice *dev, unsigned int reg, u16 *valuep); | |
189 | ||
190 | /** | |
191 | * rtc_write16() - Write a 16-bit value to the RTC | |
192 | * | |
193 | * @dev: Device to write to | |
194 | * @reg: Register to start writing to | |
195 | * @value: Value to write | |
185f812c | 196 | * Return: 0 if OK, -ve on error |
d24c7fbc BM |
197 | */ |
198 | int rtc_write16(struct udevice *dev, unsigned int reg, u16 value); | |
199 | ||
dbeda5b2 SG |
200 | /** |
201 | * rtc_read32() - Read a 32-bit value from the RTC | |
202 | * | |
203 | * @dev: Device to read from | |
204 | * @reg: Offset to start reading from | |
205 | * @valuep: Place to put the value that is read | |
185f812c | 206 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
207 | */ |
208 | int rtc_read32(struct udevice *dev, unsigned int reg, u32 *valuep); | |
209 | ||
210 | /** | |
211 | * rtc_write32() - Write a 32-bit value to the RTC | |
212 | * | |
213 | * @dev: Device to write to | |
214 | * @reg: Register to start writing to | |
215 | * @value: Value to write | |
185f812c | 216 | * Return: 0 if OK, -ve on error |
dbeda5b2 SG |
217 | */ |
218 | int rtc_write32(struct udevice *dev, unsigned int reg, u32 value); | |
219 | ||
db07c447 CH |
220 | #ifdef CONFIG_RTC_ENABLE_32KHZ_OUTPUT |
221 | int rtc_enable_32khz_output(int busnum, int chip_addr); | |
222 | #endif | |
223 | ||
dbeda5b2 | 224 | #else |
640aecb4 SA |
225 | static inline int dm_rtc_get(struct udevice *dev, struct rtc_time *time) |
226 | { | |
227 | return -ENOSYS; | |
228 | } | |
229 | ||
230 | static inline int dm_rtc_set(struct udevice *dev, struct rtc_time *time) | |
231 | { | |
232 | return -ENOSYS; | |
233 | } | |
234 | ||
235 | static inline int dm_rtc_reset(struct udevice *dev) | |
236 | { | |
237 | return -ENOSYS; | |
238 | } | |
239 | ||
240 | static inline int dm_rtc_read(struct udevice *dev, unsigned int reg, u8 *buf, | |
241 | unsigned int len) | |
242 | { | |
243 | return -ENOSYS; | |
244 | } | |
245 | ||
246 | static inline int dm_rtc_write(struct udevice *dev, unsigned int reg, | |
247 | const u8 *buf, unsigned int len) | |
248 | { | |
249 | return -ENOSYS; | |
250 | } | |
251 | ||
b73a19e1 | 252 | int rtc_get (struct rtc_time *); |
d1e23194 | 253 | int rtc_set (struct rtc_time *); |
a6840a6e | 254 | void rtc_reset (void); |
db07c447 | 255 | #ifdef CONFIG_RTC_ENABLE_32KHZ_OUTPUT |
c340941e | 256 | void rtc_enable_32khz_output(void); |
db07c447 | 257 | #endif |
a6840a6e | 258 | |
fc4860c0 SG |
259 | /** |
260 | * rtc_read8() - Read an 8-bit register | |
261 | * | |
262 | * @reg: Register to read | |
185f812c | 263 | * Return: value read |
fc4860c0 SG |
264 | */ |
265 | int rtc_read8(int reg); | |
266 | ||
267 | /** | |
268 | * rtc_write8() - Write an 8-bit register | |
269 | * | |
270 | * @reg: Register to write | |
271 | * @value: Value to write | |
272 | */ | |
273 | void rtc_write8(int reg, uchar val); | |
274 | ||
275 | /** | |
276 | * rtc_read32() - Read a 32-bit value from the RTC | |
277 | * | |
278 | * @reg: Offset to start reading from | |
185f812c | 279 | * Return: value read |
fc4860c0 SG |
280 | */ |
281 | u32 rtc_read32(int reg); | |
282 | ||
283 | /** | |
284 | * rtc_write32() - Write a 32-bit value to the RTC | |
285 | * | |
286 | * @reg: Register to start writing to | |
287 | * @value: Value to write | |
288 | */ | |
289 | void rtc_write32(int reg, u32 value); | |
290 | ||
c6577f72 SG |
291 | /** |
292 | * rtc_init() - Set up the real time clock ready for use | |
293 | */ | |
294 | void rtc_init(void); | |
992c1db4 HS |
295 | #endif /* CONFIG_DM_RTC */ |
296 | ||
297 | /** | |
298 | * is_leap_year - Check if year is a leap year | |
299 | * | |
300 | * @year Year | |
185f812c | 301 | * Return: 1 if leap year |
992c1db4 HS |
302 | */ |
303 | static inline bool is_leap_year(unsigned int year) | |
304 | { | |
305 | return (!(year % 4) && (year % 100)) || !(year % 400); | |
306 | } | |
c6577f72 | 307 | |
199e87c3 SG |
308 | /** |
309 | * rtc_calc_weekday() - Work out the weekday from a time | |
310 | * | |
311 | * This only works for the Gregorian calendar - i.e. after 1752 (in the UK). | |
312 | * It sets time->tm_wdaay to the correct day of the week. | |
313 | * | |
314 | * @time: Time to inspect. tm_wday is updated | |
185f812c | 315 | * Return: 0 if OK, -EINVAL if the weekday could not be determined |
199e87c3 SG |
316 | */ |
317 | int rtc_calc_weekday(struct rtc_time *time); | |
318 | ||
9f9276c3 SG |
319 | /** |
320 | * rtc_to_tm() - Convert a time_t value into a broken-out time | |
321 | * | |
322 | * The following fields are set up by this function: | |
323 | * tm_sec, tm_min, tm_hour, tm_mday, tm_mon, tm_year, tm_wday | |
324 | * | |
325 | * Note that tm_yday and tm_isdst are set to 0. | |
326 | * | |
327 | * @time_t: Number of seconds since 1970-01-01 00:00:00 | |
328 | * @time: Place to put the broken-out time | |
9f9276c3 | 329 | */ |
992c1db4 | 330 | void rtc_to_tm(u64 time_t, struct rtc_time *time); |
9f9276c3 | 331 | |
71420983 | 332 | /** |
90c52423 | 333 | * rtc_mktime() - Convert a broken-out time into a time64_t value |
71420983 SG |
334 | * |
335 | * The following fields need to be valid for this function to work: | |
336 | * tm_sec, tm_min, tm_hour, tm_mday, tm_mon, tm_year | |
337 | * | |
338 | * Note that tm_wday and tm_yday are ignored. | |
339 | * | |
340 | * @time: Broken-out time to convert | |
90c52423 | 341 | * Return: corresponding time64_t value, seconds since 1970-01-01 00:00:00 |
71420983 | 342 | */ |
90c52423 | 343 | time64_t rtc_mktime(const struct rtc_time *time); |
71420983 | 344 | |
3c1889e6 HS |
345 | /** |
346 | * rtc_month_days() - The number of days in the month | |
347 | * | |
348 | * @month: month (January = 0) | |
349 | * @year: year (4 digits) | |
350 | */ | |
351 | int rtc_month_days(unsigned int month, unsigned int year); | |
352 | ||
a6840a6e | 353 | #endif /* _RTC_H_ */ |