blob: f006e7a5cd5fe62db316b80ae0b2325e1b057a18 [file] [log] [blame]
Marc Jones3cc685f2014-12-29 21:31:44 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Marc Jones3cc685f2014-12-29 21:31:44 -070014 */
15
16#ifndef _RTC_H_
17#define _RTC_H_
18
Lee Leahy6625ecc2017-03-07 15:11:07 -080019struct rtc_time {
Marc Jones3cc685f2014-12-29 21:31:44 -070020 int sec;
21 int min;
22 int hour;
23 int mday;
24 int mon;
25 int year;
26 int wday;
27};
28
Simon Glass2cf99e12016-06-10 20:58:24 -060029/* Implemented by the RTC driver (there can be only one) */
Gabe Black03abaee212014-04-30 21:31:44 -070030int rtc_set(const struct rtc_time *time);
31int rtc_get(struct rtc_time *time);
Marc Jones3cc685f2014-12-29 21:31:44 -070032
Simon Glass2cf99e12016-06-10 20:58:24 -060033/* Common functions */
34int rtc_to_tm(int tim, struct rtc_time *tm);
35unsigned long rtc_mktime(const struct rtc_time *tm);
36void rtc_display(const struct rtc_time *tm);
37
Marc Jones3cc685f2014-12-29 21:31:44 -070038#endif /* _RTC_H_ */