aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-01-11 16:42:45 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-11 22:01:12 -0500
commit39b3a7910556005a7a0d042ecb7ff98bfa84ea57 (patch)
treeefcb2602e6fd198c9af34e726741eb389fa4e292 /arch/x86_64
parent2d52ede9876ba566b583f255fdc43800eea81baa (diff)
[PATCH] i386/x86-64: Generalize X86_FEATURE_CONSTANT_TSC flag
Define it for i386 too. This is a synthetic flag that signifies that the CPU's TSC runs at a constant P state invariant frequency. Fix up the logic on x86-64/i386 to set it on all known CPUs. Use the AMD defined bit to set it on future AMD CPUs. Cc: venkatesh.pallipadi@intel.com Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/kernel/setup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c
index 754a05f9b4db..d9c1c3bd6150 100644
--- a/arch/x86_64/kernel/setup.c
+++ b/arch/x86_64/kernel/setup.c
@@ -1032,7 +1032,8 @@ static void __cpuinit init_intel(struct cpuinfo_x86 *c)
1032 1032
1033 if (c->x86 == 15) 1033 if (c->x86 == 15)
1034 c->x86_cache_alignment = c->x86_clflush_size * 2; 1034 c->x86_cache_alignment = c->x86_clflush_size * 2;
1035 if (c->x86 >= 15) 1035 if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
1036 (c->x86 == 0x6 && c->x86_model >= 0x0e))
1036 set_bit(X86_FEATURE_CONSTANT_TSC, &c->x86_capability); 1037 set_bit(X86_FEATURE_CONSTANT_TSC, &c->x86_capability);
1037 c->x86_max_cores = intel_num_cpu_cores(c); 1038 c->x86_max_cores = intel_num_cpu_cores(c);
1038 1039
@@ -1273,7 +1274,7 @@ static int show_cpuinfo(struct seq_file *m, void *v)
1273 "tm", 1274 "tm",
1274 "stc" 1275 "stc"
1275 "?", 1276 "?",
1276 "constant_tsc", 1277 /* nothing */ /* constant_tsc - moved to flags */
1277 }; 1278 };
1278 1279
1279 1280