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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/profile.h> |
Paul Mundt | 65e5d90 | 2006-12-06 11:24:48 +0900 | [diff] [blame] | 16 | #include <linux/timex.h> |
| 17 | #include <linux/sched.h> |
Paul Mundt | 57be2b4 | 2007-05-09 17:33:24 +0900 | [diff] [blame] | 18 | #include <linux/clockchips.h> |
Magnus Damm | eaab891 | 2009-04-15 10:50:12 +0000 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
Paul Mundt | 8c24594 | 2008-08-06 18:37:07 +0900 | [diff] [blame] | 20 | #include <linux/smp.h> |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 21 | #include <linux/rtc.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 22 | #include <asm/clock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/rtc.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 24 | |
Paul Mundt | 91550f7 | 2006-09-27 17:45:01 +0900 | [diff] [blame] | 25 | /* Dummy RTC ops */ |
| 26 | static 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 | |
| 32 | static int null_rtc_set_time(const time_t secs) |
| 33 | { |
| 34 | return 0; |
| 35 | } |
| 36 | |
| 37 | void (*rtc_sh_get_time)(struct timespec *) = null_rtc_get_time; |
| 38 | int (*rtc_sh_set_time)(const time_t) = null_rtc_set_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Martin Schwidefsky | d4f587c | 2009-08-14 15:47:31 +0200 | [diff] [blame] | 40 | void read_persistent_clock(struct timespec *ts) |
Paul Mundt | 6d134b9 | 2009-05-08 16:36:13 +0900 | [diff] [blame] | 41 | { |
Paul Mundt | 0ceb4c3 | 2009-08-25 07:32:39 +0900 | [diff] [blame] | 42 | rtc_sh_get_time(ts); |
Paul Mundt | 6d134b9 | 2009-05-08 16:36:13 +0900 | [diff] [blame] | 43 | } |
| 44 | |
John Stultz | 0272282 | 2010-03-05 02:04:38 +0900 | [diff] [blame] | 45 | #ifdef CONFIG_GENERIC_CMOS_UPDATE |
Paul Mundt | 6d134b9 | 2009-05-08 16:36:13 +0900 | [diff] [blame] | 46 | int update_persistent_clock(struct timespec now) |
| 47 | { |
| 48 | return rtc_sh_set_time(now.tv_sec); |
| 49 | } |
| 50 | #endif |
| 51 | |
Arnd Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 52 | static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm) |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 53 | { |
Arnd Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 54 | struct timespec tv; |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 55 | |
Arnd Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 56 | rtc_sh_get_time(&tv); |
| 57 | rtc_time_to_tm(tv.tv_sec, tm); |
| 58 | return 0; |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 59 | } |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 60 | |
Arnd Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 61 | static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm) |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 62 | { |
| 63 | unsigned long secs; |
| 64 | |
| 65 | rtc_tm_to_time(tm, &secs); |
Arnd Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 66 | if ((rtc_sh_set_time == null_rtc_set_time) || |
| 67 | (rtc_sh_set_time(secs) < 0)) |
| 68 | return -EOPNOTSUPP; |
| 69 | |
| 70 | return 0; |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 71 | } |
Arnd Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 72 | |
| 73 | static const struct rtc_class_ops rtc_generic_ops = { |
| 74 | .read_time = rtc_generic_get_time, |
| 75 | .set_time = rtc_generic_set_time, |
| 76 | }; |
Paul Mundt | 47c8a08 | 2009-04-27 17:34:39 +0900 | [diff] [blame] | 77 | |
Paul Mundt | 4278600 | 2009-04-28 23:12:10 +0900 | [diff] [blame] | 78 | static 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 Bergmann | d4db687 | 2016-05-30 20:57:52 +0200 | [diff] [blame] | 85 | pdev = platform_device_register_data(NULL, "rtc-generic", -1, |
| 86 | &rtc_generic_ops, |
| 87 | sizeof(rtc_generic_ops)); |
| 88 | |
Paul Mundt | 4278600 | 2009-04-28 23:12:10 +0900 | [diff] [blame] | 89 | |
Fabian Frederick | 7c03682 | 2014-08-06 16:03:43 -0700 | [diff] [blame] | 90 | return PTR_ERR_OR_ZERO(pdev); |
Paul Mundt | 4278600 | 2009-04-28 23:12:10 +0900 | [diff] [blame] | 91 | } |
Paul Gortmaker | 7a65a34 | 2016-04-22 14:07:01 -0400 | [diff] [blame] | 92 | device_initcall(rtc_generic_init); |
Paul Mundt | 4278600 | 2009-04-28 23:12:10 +0900 | [diff] [blame] | 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | void (*board_time_init)(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Paul Mundt | 82b2422 | 2009-07-29 22:43:58 +0900 | [diff] [blame] | 96 | static void __init sh_late_time_init(void) |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 97 | { |
Paul Mundt | 1d29ebe | 2009-06-14 19:45:40 +0900 | [diff] [blame] | 98 | /* |
| 99 | * Make sure all compiled-in early timers register themselves. |
Paul Mundt | 6fe32a4 | 2009-06-14 20:02:30 +0900 | [diff] [blame] | 100 | * |
| 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 Mundt | 1d29ebe | 2009-06-14 19:45:40 +0900 | [diff] [blame] | 106 | */ |
| 107 | early_platform_driver_register_all("earlytimer"); |
Paul Mundt | 6fe32a4 | 2009-06-14 20:02:30 +0900 | [diff] [blame] | 108 | early_platform_driver_probe("earlytimer", 2, 0); |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 109 | } |
Paul Mundt | 82b2422 | 2009-07-29 22:43:58 +0900 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | void __init time_init(void) |
| 112 | { |
| 113 | if (board_time_init) |
| 114 | board_time_init(); |
| 115 | |
| 116 | clk_init(); |
| 117 | |
Paul Mundt | 82b2422 | 2009-07-29 22:43:58 +0900 | [diff] [blame] | 118 | late_time_init = sh_late_time_init; |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 119 | } |