diff options
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/apb_timer.c | 10 | ||||
-rw-r--r-- | arch/x86/kernel/i8253.c | 6 | ||||
-rw-r--r-- | arch/x86/kernel/kvmclock.c | 6 |
3 files changed, 3 insertions, 19 deletions
diff --git a/arch/x86/kernel/apb_timer.c b/arch/x86/kernel/apb_timer.c index 51ef31a89be9..29ebf5a3b192 100644 --- a/arch/x86/kernel/apb_timer.c +++ b/arch/x86/kernel/apb_timer.c | |||
@@ -177,7 +177,6 @@ static struct clocksource clocksource_apbt = { | |||
177 | .rating = APBT_CLOCKSOURCE_RATING, | 177 | .rating = APBT_CLOCKSOURCE_RATING, |
178 | .read = apbt_read_clocksource, | 178 | .read = apbt_read_clocksource, |
179 | .mask = APBT_MASK, | 179 | .mask = APBT_MASK, |
180 | .shift = APBT_SHIFT, | ||
181 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 180 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
182 | .resume = apbt_restart_clocksource, | 181 | .resume = apbt_restart_clocksource, |
183 | }; | 182 | }; |
@@ -595,14 +594,7 @@ static int apbt_clocksource_register(void) | |||
595 | if (t1 == apbt_read_clocksource(&clocksource_apbt)) | 594 | if (t1 == apbt_read_clocksource(&clocksource_apbt)) |
596 | panic("APBT counter not counting. APBT disabled\n"); | 595 | panic("APBT counter not counting. APBT disabled\n"); |
597 | 596 | ||
598 | /* | 597 | clocksource_register_khz(&clocksource_apbt, (u32)apbt_freq*1000); |
599 | * initialize and register APBT clocksource | ||
600 | * convert that to ns/clock cycle | ||
601 | * mult = (ns/c) * 2^APBT_SHIFT | ||
602 | */ | ||
603 | clocksource_apbt.mult = div_sc(MSEC_PER_SEC, | ||
604 | (unsigned long) apbt_freq, APBT_SHIFT); | ||
605 | clocksource_register(&clocksource_apbt); | ||
606 | 598 | ||
607 | return 0; | 599 | return 0; |
608 | } | 600 | } |
diff --git a/arch/x86/kernel/i8253.c b/arch/x86/kernel/i8253.c index 2dfd31597443..212fe6590aab 100644 --- a/arch/x86/kernel/i8253.c +++ b/arch/x86/kernel/i8253.c | |||
@@ -188,8 +188,6 @@ static struct clocksource pit_cs = { | |||
188 | .rating = 110, | 188 | .rating = 110, |
189 | .read = pit_read, | 189 | .read = pit_read, |
190 | .mask = CLOCKSOURCE_MASK(32), | 190 | .mask = CLOCKSOURCE_MASK(32), |
191 | .mult = 0, | ||
192 | .shift = 20, | ||
193 | }; | 191 | }; |
194 | 192 | ||
195 | static int __init init_pit_clocksource(void) | 193 | static int __init init_pit_clocksource(void) |
@@ -205,9 +203,7 @@ static int __init init_pit_clocksource(void) | |||
205 | pit_ce.mode != CLOCK_EVT_MODE_PERIODIC) | 203 | pit_ce.mode != CLOCK_EVT_MODE_PERIODIC) |
206 | return 0; | 204 | return 0; |
207 | 205 | ||
208 | pit_cs.mult = clocksource_hz2mult(CLOCK_TICK_RATE, pit_cs.shift); | 206 | return clocksource_register_hz(&pit_cs, CLOCK_TICK_RATE); |
209 | |||
210 | return clocksource_register(&pit_cs); | ||
211 | } | 207 | } |
212 | arch_initcall(init_pit_clocksource); | 208 | arch_initcall(init_pit_clocksource); |
213 | 209 | ||
diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmclock.c index f98d3eafe07a..6389a6bca11b 100644 --- a/arch/x86/kernel/kvmclock.c +++ b/arch/x86/kernel/kvmclock.c | |||
@@ -26,8 +26,6 @@ | |||
26 | #include <asm/x86_init.h> | 26 | #include <asm/x86_init.h> |
27 | #include <asm/reboot.h> | 27 | #include <asm/reboot.h> |
28 | 28 | ||
29 | #define KVM_SCALE 22 | ||
30 | |||
31 | static int kvmclock = 1; | 29 | static int kvmclock = 1; |
32 | static int msr_kvm_system_time = MSR_KVM_SYSTEM_TIME; | 30 | static int msr_kvm_system_time = MSR_KVM_SYSTEM_TIME; |
33 | static int msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK; | 31 | static int msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK; |
@@ -120,8 +118,6 @@ static struct clocksource kvm_clock = { | |||
120 | .read = kvm_clock_get_cycles, | 118 | .read = kvm_clock_get_cycles, |
121 | .rating = 400, | 119 | .rating = 400, |
122 | .mask = CLOCKSOURCE_MASK(64), | 120 | .mask = CLOCKSOURCE_MASK(64), |
123 | .mult = 1 << KVM_SCALE, | ||
124 | .shift = KVM_SCALE, | ||
125 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 121 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
126 | }; | 122 | }; |
127 | 123 | ||
@@ -203,7 +199,7 @@ void __init kvmclock_init(void) | |||
203 | machine_ops.crash_shutdown = kvm_crash_shutdown; | 199 | machine_ops.crash_shutdown = kvm_crash_shutdown; |
204 | #endif | 200 | #endif |
205 | kvm_get_preset_lpj(); | 201 | kvm_get_preset_lpj(); |
206 | clocksource_register(&kvm_clock); | 202 | clocksource_register_hz(&kvm_clock, NSEC_PER_SEC); |
207 | pv_info.paravirt_enabled = 1; | 203 | pv_info.paravirt_enabled = 1; |
208 | pv_info.name = "KVM"; | 204 | pv_info.name = "KVM"; |
209 | 205 | ||