aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/verify_cpu.S
Commit message (Collapse)AuthorAge
* x86_64: prepare shared kernel/verify_cpu.SThomas Gleixner2007-10-11
| | | | | Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
* Unify the CPU features vectors between i386 and x86-64H. Peter Anvin2007-07-12
| | | | | | | | | Unify the handling of the CPU features vectors between i386 and x86-64. This also adopts the collapsing of features which are required at compile-time into constant tests from x86-64 to i386. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* [PATCH] x86-64: Use symbolic CPU features in early CPUID checkAndi Kleen2007-05-02
| | | | | | | | Dead to magic numbers! Generated code is the same. Signed-off-by: Andi Kleen <ak@suse.de>
* [PATCH] x86-64: Move cpu verification code to common fileVivek Goyal2007-05-02
o This patch moves the code to verify long mode and SSE to a common file. This code is now shared by trampoline.S, wakeup.S, boot/setup.S and boot/compressed/head.S o So far we used to do very limited check in trampoline.S, wakeup.S and in 32bit entry point. Now all the entry paths are forced to do the exhaustive check, including SSE because verify_cpu is shared. o I am keeping this patch as last in the x86 relocatable series because previous patches have got quite some amount of testing done and don't want to distrub that. So that if there is problem introduced by this patch, at least it can be easily isolated. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com> Signed-off-by: Andi Kleen <ak@suse.de>