xref: /linux/arch/sh/kernel/time.c (revision 084b3600e2d98ebbab968f91b8b8f48ffbbf2ecb)
1 /*
2  *  arch/sh/kernel/time.c
3  *
4  *  Copyright (C) 1999  Tetsuya Okada & Niibe Yutaka
5  *  Copyright (C) 2000  Philipp Rumpf <prumpf@tux.org>
6  *  Copyright (C) 2002 - 2009  Paul Mundt
7  *  Copyright (C) 2002  M. R. Brown  <mrbrown@linux-sh.org>
8  *
9  * This file is subject to the terms and conditions of the GNU General Public
10  * License.  See the file "COPYING" in the main directory of this archive
11  * for more details.
12  */
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/profile.h>
17 #include <linux/timex.h>
18 #include <linux/sched.h>
19 #include <linux/clockchips.h>
20 #include <linux/platform_device.h>
21 #include <linux/smp.h>
22 #include <linux/rtc.h>
23 #include <asm/clock.h>
24 #include <asm/rtc.h>
25 
26 /* Dummy RTC ops */
27 static void null_rtc_get_time(struct timespec *tv)
28 {
29 	tv->tv_sec = mktime(2000, 1, 1, 0, 0, 0);
30 	tv->tv_nsec = 0;
31 }
32 
33 static int null_rtc_set_time(const time_t secs)
34 {
35 	return 0;
36 }
37 
38 void (*rtc_sh_get_time)(struct timespec *) = null_rtc_get_time;
39 int (*rtc_sh_set_time)(const time_t) = null_rtc_set_time;
40 
41 void read_persistent_clock(struct timespec *ts)
42 {
43 	rtc_sh_get_time(ts);
44 }
45 
46 #ifdef CONFIG_GENERIC_CMOS_UPDATE
47 int update_persistent_clock(struct timespec now)
48 {
49 	return rtc_sh_set_time(now.tv_sec);
50 }
51 #endif
52 
53 static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
54 {
55 	struct timespec tv;
56 
57 	rtc_sh_get_time(&tv);
58 	rtc_time_to_tm(tv.tv_sec, tm);
59 	return 0;
60 }
61 
62 static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
63 {
64 	unsigned long secs;
65 
66 	rtc_tm_to_time(tm, &secs);
67 	if ((rtc_sh_set_time == null_rtc_set_time) ||
68 	    (rtc_sh_set_time(secs) < 0))
69 		return -EOPNOTSUPP;
70 
71 	return 0;
72 }
73 
74 static const struct rtc_class_ops rtc_generic_ops = {
75 	.read_time = rtc_generic_get_time,
76 	.set_time = rtc_generic_set_time,
77 };
78 
79 static int __init rtc_generic_init(void)
80 {
81 	struct platform_device *pdev;
82 
83 	if (rtc_sh_get_time == null_rtc_get_time)
84 		return -ENODEV;
85 
86 	pdev = platform_device_register_data(NULL, "rtc-generic", -1,
87 					     &rtc_generic_ops,
88 					     sizeof(rtc_generic_ops));
89 
90 
91 	return PTR_ERR_OR_ZERO(pdev);
92 }
93 module_init(rtc_generic_init);
94 
95 void (*board_time_init)(void);
96 
97 static void __init sh_late_time_init(void)
98 {
99 	/*
100 	 * Make sure all compiled-in early timers register themselves.
101 	 *
102 	 * Run probe() for two "earlytimer" devices, these will be the
103 	 * clockevents and clocksource devices respectively. In the event
104 	 * that only a clockevents device is available, we -ENODEV on the
105 	 * clocksource and the jiffies clocksource is used transparently
106 	 * instead. No error handling is necessary here.
107 	 */
108 	early_platform_driver_register_all("earlytimer");
109 	early_platform_driver_probe("earlytimer", 2, 0);
110 }
111 
112 void __init time_init(void)
113 {
114 	if (board_time_init)
115 		board_time_init();
116 
117 	clk_init();
118 
119 	late_time_init = sh_late_time_init;
120 }
121