diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 20:10:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 20:10:06 -0400 |
commit | 7d02093e29de9efc4a72d5e93baae9506969b789 (patch) | |
tree | a6fc2450132ae419934f6eb9d223baa338b7d782 /arch/mn10300 | |
parent | 6e0b7b2c39b91b467270dd0bc383914f99e1fb28 (diff) | |
parent | e9ddbc075d95b2edf111247cdde16f33c31654a8 (diff) |
Merge branch 'timers-for-linus-cleanups' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'timers-for-linus-cleanups' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
avr32: Fix typo in read_persistent_clock()
sparc: Convert sparc to use read/update_persistent_clock
cris: Convert cris to use read/update_persistent_clock
m68k: Convert m68k to use read/update_persistent_clock
m32r: Convert m32r to use read/update_peristent_clock
blackfin: Convert blackfin to use read/update_persistent_clock
ia64: Convert ia64 to use read/update_persistent_clock
avr32: Convert avr32 to use read/update_persistent_clock
h8300: Convert h8300 to use read/update_persistent_clock
frv: Convert frv to use read/update_persistent_clock
mn10300: Convert mn10300 to use read/update_persistent_clock
alpha: Convert alpha to use read/update_persistent_clock
xtensa: Fix unnecessary setting of xtime
time: Clean up direct xtime usage in xen
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/Kconfig | 3 | ||||
-rw-r--r-- | arch/mn10300/kernel/rtc.c | 27 | ||||
-rw-r--r-- | arch/mn10300/kernel/time.c | 4 |
3 files changed, 8 insertions, 26 deletions
diff --git a/arch/mn10300/Kconfig b/arch/mn10300/Kconfig index 89faacad5d17..1c4565a9102b 100644 --- a/arch/mn10300/Kconfig +++ b/arch/mn10300/Kconfig | |||
@@ -37,6 +37,9 @@ config GENERIC_HARDIRQS_NO__DO_IRQ | |||
37 | config GENERIC_CALIBRATE_DELAY | 37 | config GENERIC_CALIBRATE_DELAY |
38 | def_bool y | 38 | def_bool y |
39 | 39 | ||
40 | config GENERIC_CMOS_UPDATE | ||
41 | def_bool y | ||
42 | |||
40 | config GENERIC_FIND_NEXT_BIT | 43 | config GENERIC_FIND_NEXT_BIT |
41 | def_bool y | 44 | def_bool y |
42 | 45 | ||
diff --git a/arch/mn10300/kernel/rtc.c b/arch/mn10300/kernel/rtc.c index 7978470b5749..815a933aafa8 100644 --- a/arch/mn10300/kernel/rtc.c +++ b/arch/mn10300/kernel/rtc.c | |||
@@ -26,17 +26,15 @@ static long last_rtc_update; | |||
26 | /* time for RTC to update itself in ioclks */ | 26 | /* time for RTC to update itself in ioclks */ |
27 | static unsigned long mn10300_rtc_update_period; | 27 | static unsigned long mn10300_rtc_update_period; |
28 | 28 | ||
29 | /* | 29 | void read_persistent_clock(struct timespec *ts) |
30 | * read the current RTC time | ||
31 | */ | ||
32 | unsigned long __init get_initial_rtc_time(void) | ||
33 | { | 30 | { |
34 | struct rtc_time tm; | 31 | struct rtc_time tm; |
35 | 32 | ||
36 | get_rtc_time(&tm); | 33 | get_rtc_time(&tm); |
37 | 34 | ||
38 | return mktime(tm.tm_year, tm.tm_mon, tm.tm_mday, | 35 | ts->tv_sec = mktime(tm.tm_year, tm.tm_mon, tm.tm_mday, |
39 | tm.tm_hour, tm.tm_min, tm.tm_sec); | 36 | tm.tm_hour, tm.tm_min, tm.tm_sec); |
37 | ts->tv_nsec = 0; | ||
40 | } | 38 | } |
41 | 39 | ||
42 | /* | 40 | /* |
@@ -110,24 +108,9 @@ static int set_rtc_mmss(unsigned long nowtime) | |||
110 | return retval; | 108 | return retval; |
111 | } | 109 | } |
112 | 110 | ||
113 | void check_rtc_time(void) | 111 | int update_persistent_clock(struct timespec now) |
114 | { | 112 | { |
115 | /* the RTC clock just finished ticking over again this second | 113 | return set_rtc_mms(now.tv_sec); |
116 | * - if we have an externally synchronized Linux clock, then update | ||
117 | * RTC clock accordingly every ~11 minutes. set_rtc_mmss() has to be | ||
118 | * called as close as possible to 500 ms before the new second starts. | ||
119 | */ | ||
120 | if ((time_status & STA_UNSYNC) == 0 && | ||
121 | xtime.tv_sec > last_rtc_update + 660 && | ||
122 | xtime.tv_nsec / 1000 >= 500000 - ((unsigned) TICK_SIZE) / 2 && | ||
123 | xtime.tv_nsec / 1000 <= 500000 + ((unsigned) TICK_SIZE) / 2 | ||
124 | ) { | ||
125 | if (set_rtc_mmss(xtime.tv_sec) == 0) | ||
126 | last_rtc_update = xtime.tv_sec; | ||
127 | else | ||
128 | /* do it again in 60s */ | ||
129 | last_rtc_update = xtime.tv_sec - 600; | ||
130 | } | ||
131 | } | 114 | } |
132 | 115 | ||
133 | /* | 116 | /* |
diff --git a/arch/mn10300/kernel/time.c b/arch/mn10300/kernel/time.c index 395caf01b909..8f7f6d22783d 100644 --- a/arch/mn10300/kernel/time.c +++ b/arch/mn10300/kernel/time.c | |||
@@ -111,7 +111,6 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
111 | /* advance the kernel's time tracking system */ | 111 | /* advance the kernel's time tracking system */ |
112 | profile_tick(CPU_PROFILING); | 112 | profile_tick(CPU_PROFILING); |
113 | do_timer(1); | 113 | do_timer(1); |
114 | check_rtc_time(); | ||
115 | } | 114 | } |
116 | 115 | ||
117 | write_sequnlock(&xtime_lock); | 116 | write_sequnlock(&xtime_lock); |
@@ -139,9 +138,6 @@ void __init time_init(void) | |||
139 | " (calibrated against RTC)\n", | 138 | " (calibrated against RTC)\n", |
140 | MN10300_TSCCLK / 1000000, (MN10300_TSCCLK / 10000) % 100); | 139 | MN10300_TSCCLK / 1000000, (MN10300_TSCCLK / 10000) % 100); |
141 | 140 | ||
142 | xtime.tv_sec = get_initial_rtc_time(); | ||
143 | xtime.tv_nsec = 0; | ||
144 | |||
145 | mn10300_last_tsc = TMTSCBC; | 141 | mn10300_last_tsc = TMTSCBC; |
146 | 142 | ||
147 | /* use timer 0 & 1 cascaded to tick at as close to HZ as possible */ | 143 | /* use timer 0 & 1 cascaded to tick at as close to HZ as possible */ |