1 // SPDX-License-Identifier: GPL-2.0
3 * rtc and date/time utility functions
5 * Copyright (C) 2005-06 Tower Technologies
6 * Author: Alessandro Zummo <a.zummo@towertech.it>
8 * based on arch/arm/common/rtctime.c and other bits
11 #include <linux/export.h>
12 #include <linux/rtc.h>
14 static const unsigned char rtc_days_in_month
[] = {
15 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
18 static const unsigned short rtc_ydays
[2][13] = {
20 { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
22 { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
25 #define LEAPS_THRU_END_OF(y) ((y) / 4 - (y) / 100 + (y) / 400)
28 * The number of days in the month.
30 int rtc_month_days(unsigned int month
, unsigned int year
)
32 return rtc_days_in_month
[month
] + (is_leap_year(year
) && month
== 1);
34 EXPORT_SYMBOL(rtc_month_days
);
37 * The number of days since January 1. (0 to 365)
39 int rtc_year_days(unsigned int day
, unsigned int month
, unsigned int year
)
41 return rtc_ydays
[is_leap_year(year
)][month
] + day
- 1;
43 EXPORT_SYMBOL(rtc_year_days
);
46 * rtc_time64_to_tm - Converts time64_t to rtc_time.
47 * Convert seconds since 01-01-1970 00:00:00 to Gregorian date.
49 void rtc_time64_to_tm(time64_t time
, struct rtc_time
*tm
)
51 unsigned int month
, year
, secs
;
54 /* time must be positive */
55 days
= div_s64_rem(time
, 86400, &secs
);
57 /* day of the week, 1970-01-01 was a Thursday */
58 tm
->tm_wday
= (days
+ 4) % 7;
60 year
= 1970 + days
/ 365;
61 days
-= (year
- 1970) * 365
62 + LEAPS_THRU_END_OF(year
- 1)
63 - LEAPS_THRU_END_OF(1970 - 1);
66 days
+= 365 + is_leap_year(year
);
68 tm
->tm_year
= year
- 1900;
69 tm
->tm_yday
= days
+ 1;
71 for (month
= 0; month
< 11; month
++) {
74 newdays
= days
- rtc_month_days(month
, year
);
80 tm
->tm_mday
= days
+ 1;
82 tm
->tm_hour
= secs
/ 3600;
83 secs
-= tm
->tm_hour
* 3600;
84 tm
->tm_min
= secs
/ 60;
85 tm
->tm_sec
= secs
- tm
->tm_min
* 60;
89 EXPORT_SYMBOL(rtc_time64_to_tm
);
92 * Does the rtc_time represent a valid date/time?
94 int rtc_valid_tm(struct rtc_time
*tm
)
96 if (tm
->tm_year
< 70 ||
97 tm
->tm_year
> (INT_MAX
- 1900) ||
98 ((unsigned int)tm
->tm_mon
) >= 12 ||
100 tm
->tm_mday
> rtc_month_days(tm
->tm_mon
,
101 ((unsigned int)tm
->tm_year
+ 1900)) ||
102 ((unsigned int)tm
->tm_hour
) >= 24 ||
103 ((unsigned int)tm
->tm_min
) >= 60 ||
104 ((unsigned int)tm
->tm_sec
) >= 60)
109 EXPORT_SYMBOL(rtc_valid_tm
);
112 * rtc_tm_to_time64 - Converts rtc_time to time64_t.
113 * Convert Gregorian date to seconds since 01-01-1970 00:00:00.
115 time64_t
rtc_tm_to_time64(struct rtc_time
*tm
)
117 return mktime64(((unsigned int)tm
->tm_year
+ 1900), tm
->tm_mon
+ 1,
118 tm
->tm_mday
, tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
120 EXPORT_SYMBOL(rtc_tm_to_time64
);
123 * Convert rtc_time to ktime
125 ktime_t
rtc_tm_to_ktime(struct rtc_time tm
)
127 return ktime_set(rtc_tm_to_time64(&tm
), 0);
129 EXPORT_SYMBOL_GPL(rtc_tm_to_ktime
);
132 * Convert ktime to rtc_time
134 struct rtc_time
rtc_ktime_to_tm(ktime_t kt
)
136 struct timespec64 ts
;
139 ts
= ktime_to_timespec64(kt
);
140 /* Round up any ns */
143 rtc_time64_to_tm(ts
.tv_sec
, &ret
);
146 EXPORT_SYMBOL_GPL(rtc_ktime_to_tm
);