x86/mm/pat: Don't report PAT on CPUs that don't support it
[linux/fpc-iii.git] / arch / sh / kernel / time.c
blobfcd5e41977d176709c3c8d14d89e32e31b4791c8
1 /*
2 * arch/sh/kernel/time.c
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>
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.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/profile.h>
16 #include <linux/timex.h>
17 #include <linux/sched.h>
18 #include <linux/clockchips.h>
19 #include <linux/platform_device.h>
20 #include <linux/smp.h>
21 #include <linux/rtc.h>
22 #include <asm/clock.h>
23 #include <asm/rtc.h>
25 /* Dummy RTC ops */
26 static void null_rtc_get_time(struct timespec *tv)
28 tv->tv_sec = mktime(2000, 1, 1, 0, 0, 0);
29 tv->tv_nsec = 0;
32 static int null_rtc_set_time(const time_t secs)
34 return 0;
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;
40 void read_persistent_clock(struct timespec *ts)
42 rtc_sh_get_time(ts);
45 #ifdef CONFIG_GENERIC_CMOS_UPDATE
46 int update_persistent_clock(struct timespec now)
48 return rtc_sh_set_time(now.tv_sec);
50 #endif
52 static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
54 struct timespec tv;
56 rtc_sh_get_time(&tv);
57 rtc_time_to_tm(tv.tv_sec, tm);
58 return 0;
61 static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
63 unsigned long secs;
65 rtc_tm_to_time(tm, &secs);
66 if ((rtc_sh_set_time == null_rtc_set_time) ||
67 (rtc_sh_set_time(secs) < 0))
68 return -EOPNOTSUPP;
70 return 0;
73 static const struct rtc_class_ops rtc_generic_ops = {
74 .read_time = rtc_generic_get_time,
75 .set_time = rtc_generic_set_time,
78 static int __init rtc_generic_init(void)
80 struct platform_device *pdev;
82 if (rtc_sh_get_time == null_rtc_get_time)
83 return -ENODEV;
85 pdev = platform_device_register_data(NULL, "rtc-generic", -1,
86 &rtc_generic_ops,
87 sizeof(rtc_generic_ops));
90 return PTR_ERR_OR_ZERO(pdev);
92 device_initcall(rtc_generic_init);
94 void (*board_time_init)(void);
96 static void __init sh_late_time_init(void)
99 * Make sure all compiled-in early timers register themselves.
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.
107 early_platform_driver_register_all("earlytimer");
108 early_platform_driver_probe("earlytimer", 2, 0);
111 void __init time_init(void)
113 if (board_time_init)
114 board_time_init();
116 clk_init();
118 late_time_init = sh_late_time_init;