Skip to content

Commit

Permalink
x86: convert TSC disabling to generic cpuid disable bitmap
Browse files Browse the repository at this point in the history
Fix from: Ian Campbell <ijc@hellion.org.uk>

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Andi Kleen authored and Ingo Molnar committed Jan 30, 2008
1 parent 8424950 commit 404ee5b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 26 deletions.
2 changes: 1 addition & 1 deletion arch/x86/kernel/cpu/bugs.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static void __init check_config(void)
* If we configured ourselves for a TSC, we'd better have one!
*/
#ifdef CONFIG_X86_TSC
if (!cpu_has_tsc && !tsc_disable)
if (!cpu_has_tsc)
panic("Kernel compiled for Pentium+, requires TSC feature!");
#endif

Expand Down
9 changes: 0 additions & 9 deletions arch/x86/kernel/cpu/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,10 +446,6 @@ void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
* we do "generic changes."
*/

/* TSC disabled? */
if ( tsc_disable )
clear_bit(X86_FEATURE_TSC, c->x86_capability);

/* If the model name is still unset, do table lookup. */
if ( !c->x86_model_id[0] ) {
char *p;
Expand Down Expand Up @@ -650,11 +646,6 @@ void __cpuinit cpu_init(void)

if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
if (tsc_disable && cpu_has_tsc) {
printk(KERN_NOTICE "Disabling TSC...\n");
/**** FIX-HPA: DOES THIS REALLY BELONG HERE? ****/
clear_bit(X86_FEATURE_TSC, boot_cpu_data.x86_capability);
}

load_idt(&idt_descr);
switch_to_new_gdt();
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/kernel/numaq_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static int __init numaq_tsc_disable(void)
{
if (num_online_nodes() > 1) {
printk(KERN_DEBUG "NUMAQ: disabling TSC\n");
tsc_disable = 1;
setup_clear_cpu_cap(X86_FEATURE_TSC);
}
return 0;
}
Expand Down
14 changes: 3 additions & 11 deletions arch/x86/kernel/tsc_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ static int tsc_enabled;
unsigned int tsc_khz;
EXPORT_SYMBOL_GPL(tsc_khz);

int tsc_disable;

#ifdef CONFIG_X86_TSC
static int __init tsc_setup(char *str)
{
Expand All @@ -40,8 +38,7 @@ static int __init tsc_setup(char *str)
*/
static int __init tsc_setup(char *str)
{
tsc_disable = 1;

setup_clear_cpu_cap(X86_FEATURE_TSC);
return 1;
}
#endif
Expand Down Expand Up @@ -395,7 +392,7 @@ void __init tsc_init(void)
{
int cpu;

if (!cpu_has_tsc || tsc_disable)
if (!cpu_has_tsc)
goto out_no_tsc;

cpu_khz = calculate_cpu_khz();
Expand Down Expand Up @@ -439,10 +436,5 @@ void __init tsc_init(void)
return;

out_no_tsc:
/*
* Set the tsc_disable flag if there's no TSC support, this
* makes it a fast flag for the kernel to see whether it
* should be using the TSC.
*/
tsc_disable = 1;
setup_clear_cpu_cap(X86_FEATURE_TSC);
}
2 changes: 1 addition & 1 deletion arch/x86/mach-voyager/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void __init pre_setup_arch_hook(void)
{
/* Voyagers run their CPUs from independent clocks, so disable
* the TSC code because we can't sync them */
tsc_disable = 1;
setup_clear_cpu_cap(X86_FEATURE_TSC);
}

void __init trap_init_hook(void)
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/xen/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ __init void xen_time_init(void)
set_normalized_timespec(&wall_to_monotonic,
-xtime.tv_sec, -xtime.tv_nsec);

tsc_disable = 0;
setup_force_cpu_cap(X86_FEATURE_TSC);

xen_setup_timer(cpu);
xen_setup_cpu_clockevents();
Expand Down
4 changes: 4 additions & 0 deletions include/asm-x86/cpufeature.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@
clear_cpu_cap(&boot_cpu_data, bit); \
set_bit(bit, cleared_cpu_caps); \
} while (0)
#define setup_force_cpu_cap(bit) do { \
set_cpu_cap(&boot_cpu_data, bit); \
clear_bit(bit, cleared_cpu_caps); \
} while (0)

#define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU)
#define cpu_has_vme boot_cpu_has(X86_FEATURE_VME)
Expand Down
2 changes: 0 additions & 2 deletions include/asm-x86/tsc.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ typedef unsigned long long cycles_t;

extern unsigned int cpu_khz;
extern unsigned int tsc_khz;
/* flag for disabling the tsc */
extern int tsc_disable;

extern void disable_TSC(void);

Expand Down

0 comments on commit 404ee5b

Please sign in to comment.