blob: 953fa1613312b313be2bb22e05031e3994922106 [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>
Paul Mundt36ddf312006-01-16 22:14:17 -080014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/profile.h>
Paul Mundt65e5d902006-12-06 11:24:48 +090017#include <linux/timex.h>
18#include <linux/sched.h>
Paul Mundt57be2b42007-05-09 17:33:24 +090019#include <linux/clockchips.h>
Magnus Dammeaab8912009-04-15 10:50:12 +000020#include <linux/platform_device.h>
Paul Mundt8c245942008-08-06 18:37:07 +090021#include <linux/smp.h>
Paul Mundt47c8a082009-04-27 17:34:39 +090022#include <linux/rtc.h>
Paul Mundt36ddf312006-01-16 22:14:17 -080023#include <asm/clock.h>
Magnus Damm79714ac2009-07-03 10:08:05 +000024#include <asm/hwblk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/rtc.h>
Paul Mundt36ddf312006-01-16 22:14:17 -080026
Paul Mundt91550f72006-09-27 17:45:01 +090027/* Dummy RTC ops */
28static void null_rtc_get_time(struct timespec *tv)
29{
30 tv->tv_sec = mktime(2000, 1, 1, 0, 0, 0);
31 tv->tv_nsec = 0;
32}
33
34static int null_rtc_set_time(const time_t secs)
35{
36 return 0;
37}
38
39void (*rtc_sh_get_time)(struct timespec *) = null_rtc_get_time;
40int (*rtc_sh_set_time)(const time_t) = null_rtc_set_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Paul Mundt6d134b92009-05-08 16:36:13 +090042#ifdef CONFIG_GENERIC_CMOS_UPDATE
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020043void read_persistent_clock(struct timespec *ts)
Paul Mundt6d134b92009-05-08 16:36:13 +090044{
Paul Mundt0ceb4c32009-08-25 07:32:39 +090045 rtc_sh_get_time(ts);
Paul Mundt6d134b92009-05-08 16:36:13 +090046}
47
48int update_persistent_clock(struct timespec now)
49{
50 return rtc_sh_set_time(now.tv_sec);
51}
52#endif
53
Paul Mundt47c8a082009-04-27 17:34:39 +090054unsigned int get_rtc_time(struct rtc_time *tm)
55{
56 if (rtc_sh_get_time != null_rtc_get_time) {
57 struct timespec tv;
58
59 rtc_sh_get_time(&tv);
60 rtc_time_to_tm(tv.tv_sec, tm);
61 }
62
63 return RTC_24H;
64}
65EXPORT_SYMBOL(get_rtc_time);
66
67int set_rtc_time(struct rtc_time *tm)
68{
69 unsigned long secs;
70
71 rtc_tm_to_time(tm, &secs);
72 return rtc_sh_set_time(secs);
73}
74EXPORT_SYMBOL(set_rtc_time);
75
Paul Mundt42786002009-04-28 23:12:10 +090076static int __init rtc_generic_init(void)
77{
78 struct platform_device *pdev;
79
80 if (rtc_sh_get_time == null_rtc_get_time)
81 return -ENODEV;
82
83 pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
84 if (IS_ERR(pdev))
85 return PTR_ERR(pdev);
86
87 return 0;
88}
89module_init(rtc_generic_init);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091void (*board_time_init)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Paul Mundt82b24222009-07-29 22:43:58 +090093static void __init sh_late_time_init(void)
Magnus Damm8e0b8422009-04-28 08:19:50 +000094{
Paul Mundt1d29ebe2009-06-14 19:45:40 +090095 /*
96 * Make sure all compiled-in early timers register themselves.
Paul Mundt6fe32a42009-06-14 20:02:30 +090097 *
98 * Run probe() for two "earlytimer" devices, these will be the
99 * clockevents and clocksource devices respectively. In the event
100 * that only a clockevents device is available, we -ENODEV on the
101 * clocksource and the jiffies clocksource is used transparently
102 * instead. No error handling is necessary here.
Paul Mundt1d29ebe2009-06-14 19:45:40 +0900103 */
104 early_platform_driver_register_all("earlytimer");
Paul Mundt6fe32a42009-06-14 20:02:30 +0900105 early_platform_driver_probe("earlytimer", 2, 0);
Magnus Damm8e0b8422009-04-28 08:19:50 +0000106}
Paul Mundt82b24222009-07-29 22:43:58 +0900107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108void __init time_init(void)
109{
110 if (board_time_init)
111 board_time_init();
112
Magnus Damm79714ac2009-07-03 10:08:05 +0000113 hwblk_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 clk_init();
115
116 rtc_sh_get_time(&xtime);
117 set_normalized_timespec(&wall_to_monotonic,
118 -xtime.tv_sec, -xtime.tv_nsec);
119
Paul Mundt82b24222009-07-29 22:43:58 +0900120 late_time_init = sh_late_time_init;
Magnus Damm8e0b8422009-04-28 08:19:50 +0000121}