Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Paul Mundt | 5ac5496 | 2009-05-08 16:44:00 +0900 | [diff] [blame] | 2 | * arch/sh/kernel/time.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 1999 Tetsuya Okada & Niibe Yutaka |
| 5 | * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org> |
Paul Mundt | 4278600 | 2009-04-28 23:12:10 +0900 | [diff] [blame] | 6 | * Copyright (C) 2002 - 2009 Paul Mundt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (C) 2002 M. R. Brown <mrbrown@linux-sh.org> |
| 8 | * |
Paul Mundt | 5ac5496 | 2009-05-08 16:44:00 +0900 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 14 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/profile.h> |
Paul Mundt | 65e5d90 | 2006-12-06 11:24:48 +0900 | [diff] [blame] | 17 | #include <linux/timex.h> |
| 18 | #include <linux/sched.h> |
Paul Mundt | 57be2b4 | 2007-05-09 17:33:24 +0900 | [diff] [blame] | 19 | #include <linux/clockchips.h> |
Magnus Damm | eaab891 | 2009-04-15 10:50:12 +0000 | [diff] [blame] | 20 | #include <linux/platform_device.h> |
Paul Mundt | 8c24594 | 2008-08-06 18:37:07 +0900 | [diff] [blame] | 21 | #include <linux/smp.h> |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 22 | #include <linux/rtc.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 23 | #include <asm/clock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/rtc.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 25 | |
Paul Mundt | 91550f7 | 2006-09-27 17:45:01 +0900 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Paul Mundt | 6d134b9 | 2009-05-08 16:36:13 +0900 | [diff] [blame] | 41 | #ifdef CONFIG_GENERIC_CMOS_UPDATE |
| 42 | unsigned long read_persistent_clock(void) |
| 43 | { |
| 44 | struct timespec tv; |
| 45 | rtc_sh_get_time(&tv); |
| 46 | return tv.tv_sec; |
| 47 | } |
| 48 | |
| 49 | int update_persistent_clock(struct timespec now) |
| 50 | { |
| 51 | return rtc_sh_set_time(now.tv_sec); |
| 52 | } |
| 53 | #endif |
| 54 | |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 55 | unsigned int get_rtc_time(struct rtc_time *tm) |
| 56 | { |
| 57 | if (rtc_sh_get_time != null_rtc_get_time) { |
| 58 | struct timespec tv; |
| 59 | |
| 60 | rtc_sh_get_time(&tv); |
| 61 | rtc_time_to_tm(tv.tv_sec, tm); |
| 62 | } |
| 63 | |
| 64 | return RTC_24H; |
| 65 | } |
| 66 | EXPORT_SYMBOL(get_rtc_time); |
| 67 | |
| 68 | int set_rtc_time(struct rtc_time *tm) |
| 69 | { |
| 70 | unsigned long secs; |
| 71 | |
| 72 | rtc_tm_to_time(tm, &secs); |
| 73 | return rtc_sh_set_time(secs); |
| 74 | } |
| 75 | EXPORT_SYMBOL(set_rtc_time); |
| 76 | |
Paul Mundt | 4278600 | 2009-04-28 23:12:10 +0900 | [diff] [blame] | 77 | static int __init rtc_generic_init(void) |
| 78 | { |
| 79 | struct platform_device *pdev; |
| 80 | |
| 81 | if (rtc_sh_get_time == null_rtc_get_time) |
| 82 | return -ENODEV; |
| 83 | |
| 84 | pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0); |
| 85 | if (IS_ERR(pdev)) |
| 86 | return PTR_ERR(pdev); |
| 87 | |
| 88 | return 0; |
| 89 | } |
| 90 | module_init(rtc_generic_init); |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | void (*board_time_init)(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Paul Mundt | 57be2b4 | 2007-05-09 17:33:24 +0900 | [diff] [blame] | 94 | unsigned long long sched_clock(void) |
| 95 | { |
Paul Mundt | 8be5f1a | 2009-05-12 19:53:55 +0900 | [diff] [blame] | 96 | return (jiffies_64 - INITIAL_JIFFIES) * (NSEC_PER_SEC / HZ); |
Paul Mundt | 57be2b4 | 2007-05-09 17:33:24 +0900 | [diff] [blame] | 97 | } |
Paul Mundt | 57be2b4 | 2007-05-09 17:33:24 +0900 | [diff] [blame] | 98 | |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 99 | void __init time_init(void) |
| 100 | { |
| 101 | if (board_time_init) |
| 102 | board_time_init(); |
| 103 | |
| 104 | clk_init(); |
| 105 | |
| 106 | rtc_sh_get_time(&xtime); |
| 107 | set_normalized_timespec(&wall_to_monotonic, |
| 108 | -xtime.tv_sec, -xtime.tv_nsec); |
| 109 | |
| 110 | #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST |
| 111 | local_timer_setup(smp_processor_id()); |
| 112 | #endif |
| 113 | |
Paul Mundt | 1d29ebe | 2009-06-14 19:45:40 +0900 | [diff] [blame^] | 114 | /* |
| 115 | * Make sure all compiled-in early timers register themselves. |
| 116 | * Run probe() for one "earlytimer" device. |
| 117 | */ |
| 118 | early_platform_driver_register_all("earlytimer"); |
| 119 | early_platform_driver_probe("earlytimer", 1, 0); |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 120 | } |