blob: fcd5e41977d176709c3c8d14d89e32e31b4791c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundt5ac54962009-05-08 16:44:00 +09002 * arch/sh/kernel/time.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999 Tetsuya Okada & Niibe Yutaka
5 * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>
Paul Mundt42786002009-04-28 23:12:10 +09006 * Copyright (C) 2002 - 2009 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 2002 M. R. Brown <mrbrown@linux-sh.org>
8 *
Paul Mundt5ac54962009-05-08 16:44:00 +09009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/profile.h>
Paul Mundt65e5d902006-12-06 11:24:48 +090016#include <linux/timex.h>
17#include <linux/sched.h>
Paul Mundt57be2b42007-05-09 17:33:24 +090018#include <linux/clockchips.h>
Magnus Dammeaab8912009-04-15 10:50:12 +000019#include <linux/platform_device.h>
Paul Mundt8c245942008-08-06 18:37:07 +090020#include <linux/smp.h>
Paul Mundt47c8a082009-04-27 17:34:39 +090021#include <linux/rtc.h>
Paul Mundt36ddf312006-01-16 22:14:17 -080022#include <asm/clock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/rtc.h>
Paul Mundt36ddf312006-01-16 22:14:17 -080024
Paul Mundt91550f72006-09-27 17:45:01 +090025/* Dummy RTC ops */
26static void null_rtc_get_time(struct timespec *tv)
27{
28 tv->tv_sec = mktime(2000, 1, 1, 0, 0, 0);
29 tv->tv_nsec = 0;
30}
31
32static int null_rtc_set_time(const time_t secs)
33{
34 return 0;
35}
36
37void (*rtc_sh_get_time)(struct timespec *) = null_rtc_get_time;
38int (*rtc_sh_set_time)(const time_t) = null_rtc_set_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020040void read_persistent_clock(struct timespec *ts)
Paul Mundt6d134b92009-05-08 16:36:13 +090041{
Paul Mundt0ceb4c32009-08-25 07:32:39 +090042 rtc_sh_get_time(ts);
Paul Mundt6d134b92009-05-08 16:36:13 +090043}
44
John Stultz02722822010-03-05 02:04:38 +090045#ifdef CONFIG_GENERIC_CMOS_UPDATE
Paul Mundt6d134b92009-05-08 16:36:13 +090046int update_persistent_clock(struct timespec now)
47{
48 return rtc_sh_set_time(now.tv_sec);
49}
50#endif
51
Arnd Bergmannd4db6872016-05-30 20:57:52 +020052static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
Paul Mundt47c8a082009-04-27 17:34:39 +090053{
Arnd Bergmannd4db6872016-05-30 20:57:52 +020054 struct timespec tv;
Paul Mundt47c8a082009-04-27 17:34:39 +090055
Arnd Bergmannd4db6872016-05-30 20:57:52 +020056 rtc_sh_get_time(&tv);
57 rtc_time_to_tm(tv.tv_sec, tm);
58 return 0;
Paul Mundt47c8a082009-04-27 17:34:39 +090059}
Paul Mundt47c8a082009-04-27 17:34:39 +090060
Arnd Bergmannd4db6872016-05-30 20:57:52 +020061static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
Paul Mundt47c8a082009-04-27 17:34:39 +090062{
63 unsigned long secs;
64
65 rtc_tm_to_time(tm, &secs);
Arnd Bergmannd4db6872016-05-30 20:57:52 +020066 if ((rtc_sh_set_time == null_rtc_set_time) ||
67 (rtc_sh_set_time(secs) < 0))
68 return -EOPNOTSUPP;
69
70 return 0;
Paul Mundt47c8a082009-04-27 17:34:39 +090071}
Arnd Bergmannd4db6872016-05-30 20:57:52 +020072
73static const struct rtc_class_ops rtc_generic_ops = {
74 .read_time = rtc_generic_get_time,
75 .set_time = rtc_generic_set_time,
76};
Paul Mundt47c8a082009-04-27 17:34:39 +090077
Paul Mundt42786002009-04-28 23:12:10 +090078static int __init rtc_generic_init(void)
79{
80 struct platform_device *pdev;
81
82 if (rtc_sh_get_time == null_rtc_get_time)
83 return -ENODEV;
84
Arnd Bergmannd4db6872016-05-30 20:57:52 +020085 pdev = platform_device_register_data(NULL, "rtc-generic", -1,
86 &rtc_generic_ops,
87 sizeof(rtc_generic_ops));
88
Paul Mundt42786002009-04-28 23:12:10 +090089
Fabian Frederick7c036822014-08-06 16:03:43 -070090 return PTR_ERR_OR_ZERO(pdev);
Paul Mundt42786002009-04-28 23:12:10 +090091}
Paul Gortmaker7a65a342016-04-22 14:07:01 -040092device_initcall(rtc_generic_init);
Paul Mundt42786002009-04-28 23:12:10 +090093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094void (*board_time_init)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Paul Mundt82b24222009-07-29 22:43:58 +090096static void __init sh_late_time_init(void)
Magnus Damm8e0b8422009-04-28 08:19:50 +000097{
Paul Mundt1d29ebe2009-06-14 19:45:40 +090098 /*
99 * Make sure all compiled-in early timers register themselves.
Paul Mundt6fe32a42009-06-14 20:02:30 +0900100 *
101 * Run probe() for two "earlytimer" devices, these will be the
102 * clockevents and clocksource devices respectively. In the event
103 * that only a clockevents device is available, we -ENODEV on the
104 * clocksource and the jiffies clocksource is used transparently
105 * instead. No error handling is necessary here.
Paul Mundt1d29ebe2009-06-14 19:45:40 +0900106 */
107 early_platform_driver_register_all("earlytimer");
Paul Mundt6fe32a42009-06-14 20:02:30 +0900108 early_platform_driver_probe("earlytimer", 2, 0);
Magnus Damm8e0b8422009-04-28 08:19:50 +0000109}
Paul Mundt82b24222009-07-29 22:43:58 +0900110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111void __init time_init(void)
112{
113 if (board_time_init)
114 board_time_init();
115
116 clk_init();
117
Paul Mundt82b24222009-07-29 22:43:58 +0900118 late_time_init = sh_late_time_init;
Magnus Damm8e0b8422009-04-28 08:19:50 +0000119}