blob: 96c696ad65b6a79eceb6bc8ea04639d225e355ad [file] [log] [blame]
wdenka6840a62001-04-09 21:43:07 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenka6840a62001-04-09 21:43:07 +00006 */
7
8/*
9 * Generic RTC interface.
10 */
11#ifndef _RTC_H_
12#define _RTC_H_
13
Albin Tonnerre885fc782009-08-13 15:31:12 +020014/* bcd<->bin functions are needed by almost all the RTC drivers, let's include
15 * it there instead of in evey single driver */
16
17#include <bcd.h>
18
wdenka6840a62001-04-09 21:43:07 +000019/*
20 * The struct used to pass data from the generic interface code to
21 * the hardware dependend low-level code ande vice versa. Identical
22 * to struct rtc_time used by the Linux kernel.
23 *
24 * Note that there are small but significant differences to the
25 * common "struct time":
26 *
Wolfgang Denk53677ef2008-05-20 16:00:29 +020027 * struct time: struct rtc_time:
wdenka6840a62001-04-09 21:43:07 +000028 * tm_mon 0 ... 11 1 ... 12
29 * tm_year years since 1900 years since 0
30 */
31
32struct rtc_time {
33 int tm_sec;
34 int tm_min;
35 int tm_hour;
36 int tm_mday;
37 int tm_mon;
38 int tm_year;
39 int tm_wday;
40 int tm_yday;
41 int tm_isdst;
42};
43
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030044int rtc_get (struct rtc_time *);
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +020045int rtc_set (struct rtc_time *);
wdenka6840a62001-04-09 21:43:07 +000046void rtc_reset (void);
47
wdenka6840a62001-04-09 21:43:07 +000048void to_tm (int, struct rtc_time *);
49unsigned long mktime (unsigned int, unsigned int, unsigned int,
50 unsigned int, unsigned int, unsigned int);
51
Simon Glassc6577f72014-11-14 18:18:26 -070052/**
Simon Glassfc4860c2015-01-19 22:16:10 -070053 * rtc_read8() - Read an 8-bit register
54 *
55 * @reg: Register to read
56 * @return value read
57 */
58int rtc_read8(int reg);
59
60/**
61 * rtc_write8() - Write an 8-bit register
62 *
63 * @reg: Register to write
64 * @value: Value to write
65 */
66void rtc_write8(int reg, uchar val);
67
68/**
69 * rtc_read32() - Read a 32-bit value from the RTC
70 *
71 * @reg: Offset to start reading from
72 * @return value read
73 */
74u32 rtc_read32(int reg);
75
76/**
77 * rtc_write32() - Write a 32-bit value to the RTC
78 *
79 * @reg: Register to start writing to
80 * @value: Value to write
81 */
82void rtc_write32(int reg, u32 value);
83
84/**
Simon Glassc6577f72014-11-14 18:18:26 -070085 * rtc_init() - Set up the real time clock ready for use
86 */
87void rtc_init(void);
88
Simon Glass199e87c2015-04-20 12:37:17 -060089/**
90 * rtc_calc_weekday() - Work out the weekday from a time
91 *
92 * This only works for the Gregorian calendar - i.e. after 1752 (in the UK).
93 * It sets time->tm_wdaay to the correct day of the week.
94 *
95 * @time: Time to inspect. tm_wday is updated
96 * @return 0 if OK, -EINVAL if the weekday could not be determined
97 */
98int rtc_calc_weekday(struct rtc_time *time);
99
wdenka6840a62001-04-09 21:43:07 +0000100#endif /* _RTC_H_ */