diff options
author | Alessandro Zummo <a.zummo@towertech.it> | 2006-03-27 04:16:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:50 -0500 |
commit | c58411e95d7f5062dedd1a3064af4d359da1e633 (patch) | |
tree | 8816ec8e20ae8b1d622b41bc1e7e74c2bbd1f34d /drivers | |
parent | d23ee8fe6e2176a9d4dbfdd18edfa1b5bc3c79a5 (diff) |
[PATCH] RTC Subsystem: library functions
RTC and date/time related functions.
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/Kconfig | 2 | ||||
-rw-r--r-- | drivers/Makefile | 1 | ||||
-rw-r--r-- | drivers/rtc/Kconfig | 6 | ||||
-rw-r--r-- | drivers/rtc/Makefile | 5 | ||||
-rw-r--r-- | drivers/rtc/rtc-lib.c | 101 |
5 files changed, 115 insertions, 0 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig index bddf431bbb72..9f5c0da57c90 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig | |||
@@ -70,4 +70,6 @@ source "drivers/sn/Kconfig" | |||
70 | 70 | ||
71 | source "drivers/edac/Kconfig" | 71 | source "drivers/edac/Kconfig" |
72 | 72 | ||
73 | source "drivers/rtc/Kconfig" | ||
74 | |||
73 | endmenu | 75 | endmenu |
diff --git a/drivers/Makefile b/drivers/Makefile index 5c69b86db624..424955274e60 100644 --- a/drivers/Makefile +++ b/drivers/Makefile | |||
@@ -56,6 +56,7 @@ obj-$(CONFIG_USB_GADGET) += usb/gadget/ | |||
56 | obj-$(CONFIG_GAMEPORT) += input/gameport/ | 56 | obj-$(CONFIG_GAMEPORT) += input/gameport/ |
57 | obj-$(CONFIG_INPUT) += input/ | 57 | obj-$(CONFIG_INPUT) += input/ |
58 | obj-$(CONFIG_I2O) += message/ | 58 | obj-$(CONFIG_I2O) += message/ |
59 | obj-$(CONFIG_RTC_LIB) += rtc/ | ||
59 | obj-$(CONFIG_I2C) += i2c/ | 60 | obj-$(CONFIG_I2C) += i2c/ |
60 | obj-$(CONFIG_W1) += w1/ | 61 | obj-$(CONFIG_W1) += w1/ |
61 | obj-$(CONFIG_HWMON) += hwmon/ | 62 | obj-$(CONFIG_HWMON) += hwmon/ |
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig new file mode 100644 index 000000000000..15df7c130fa6 --- /dev/null +++ b/drivers/rtc/Kconfig | |||
@@ -0,0 +1,6 @@ | |||
1 | # | ||
2 | # RTC class/drivers configuration | ||
3 | # | ||
4 | |||
5 | config RTC_LIB | ||
6 | tristate \ No newline at end of file | ||
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile new file mode 100644 index 000000000000..eb9ad77c3e95 --- /dev/null +++ b/drivers/rtc/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for RTC class/drivers. | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_RTC_LIB) += rtc-lib.o | ||
diff --git a/drivers/rtc/rtc-lib.c b/drivers/rtc/rtc-lib.c new file mode 100644 index 000000000000..cfedc1d28ee1 --- /dev/null +++ b/drivers/rtc/rtc-lib.c | |||
@@ -0,0 +1,101 @@ | |||
1 | /* | ||
2 | * rtc and date/time utility functions | ||
3 | * | ||
4 | * Copyright (C) 2005-06 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * based on arch/arm/common/rtctime.c and other bits | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/rtc.h> | ||
16 | |||
17 | static const unsigned char rtc_days_in_month[] = { | ||
18 | 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 | ||
19 | }; | ||
20 | |||
21 | #define LEAPS_THRU_END_OF(y) ((y)/4 - (y)/100 + (y)/400) | ||
22 | #define LEAP_YEAR(year) ((!(year % 4) && (year % 100)) || !(year % 400)) | ||
23 | |||
24 | int rtc_month_days(unsigned int month, unsigned int year) | ||
25 | { | ||
26 | return rtc_days_in_month[month] + (LEAP_YEAR(year) && month == 1); | ||
27 | } | ||
28 | EXPORT_SYMBOL(rtc_month_days); | ||
29 | |||
30 | /* | ||
31 | * Convert seconds since 01-01-1970 00:00:00 to Gregorian date. | ||
32 | */ | ||
33 | void rtc_time_to_tm(unsigned long time, struct rtc_time *tm) | ||
34 | { | ||
35 | register int days, month, year; | ||
36 | |||
37 | days = time / 86400; | ||
38 | time -= days * 86400; | ||
39 | |||
40 | /* day of the week, 1970-01-01 was a Thursday */ | ||
41 | tm->tm_wday = (days + 4) % 7; | ||
42 | |||
43 | year = 1970 + days / 365; | ||
44 | days -= (year - 1970) * 365 | ||
45 | + LEAPS_THRU_END_OF(year - 1) | ||
46 | - LEAPS_THRU_END_OF(1970 - 1); | ||
47 | if (days < 0) { | ||
48 | year -= 1; | ||
49 | days += 365 + LEAP_YEAR(year); | ||
50 | } | ||
51 | tm->tm_year = year - 1900; | ||
52 | tm->tm_yday = days + 1; | ||
53 | |||
54 | for (month = 0; month < 11; month++) { | ||
55 | int newdays; | ||
56 | |||
57 | newdays = days - rtc_month_days(month, year); | ||
58 | if (newdays < 0) | ||
59 | break; | ||
60 | days = newdays; | ||
61 | } | ||
62 | tm->tm_mon = month; | ||
63 | tm->tm_mday = days + 1; | ||
64 | |||
65 | tm->tm_hour = time / 3600; | ||
66 | time -= tm->tm_hour * 3600; | ||
67 | tm->tm_min = time / 60; | ||
68 | tm->tm_sec = time - tm->tm_min * 60; | ||
69 | } | ||
70 | EXPORT_SYMBOL(rtc_time_to_tm); | ||
71 | |||
72 | /* | ||
73 | * Does the rtc_time represent a valid date/time? | ||
74 | */ | ||
75 | int rtc_valid_tm(struct rtc_time *tm) | ||
76 | { | ||
77 | if (tm->tm_year < 70 | ||
78 | || tm->tm_mon >= 12 | ||
79 | || tm->tm_mday < 1 | ||
80 | || tm->tm_mday > rtc_month_days(tm->tm_mon, tm->tm_year + 1900) | ||
81 | || tm->tm_hour >= 24 | ||
82 | || tm->tm_min >= 60 | ||
83 | || tm->tm_sec >= 60) | ||
84 | return -EINVAL; | ||
85 | |||
86 | return 0; | ||
87 | } | ||
88 | EXPORT_SYMBOL(rtc_valid_tm); | ||
89 | |||
90 | /* | ||
91 | * Convert Gregorian date to seconds since 01-01-1970 00:00:00. | ||
92 | */ | ||
93 | int rtc_tm_to_time(struct rtc_time *tm, unsigned long *time) | ||
94 | { | ||
95 | *time = mktime(tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, | ||
96 | tm->tm_hour, tm->tm_min, tm->tm_sec); | ||
97 | return 0; | ||
98 | } | ||
99 | EXPORT_SYMBOL(rtc_tm_to_time); | ||
100 | |||
101 | MODULE_LICENSE("GPL"); | ||