aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/genapic.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 10:15:16 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:32 -0500
commitabfa584c8df8b691cf18f51c7d4af27e5b32be4a (patch)
tree064743591bf01c4a85fa6f55f770e9ac8555ef24 /arch/x86/include/asm/genapic.h
parent6f177c01db6b865181fbc6c948381b290ee09718 (diff)
x86: set ->trampoline_phys_low/high on 64-bit too
64-bit x86 has zero for ->trampoline_phys_low/high, but the smpboot code can use these values - so it's better to set them up to their correct values. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/genapic.h')
-rw-r--r--arch/x86/include/asm/genapic.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/include/asm/genapic.h b/arch/x86/include/asm/genapic.h
index 8bb1c73c55b7..90e83a769a1c 100644
--- a/arch/x86/include/asm/genapic.h
+++ b/arch/x86/include/asm/genapic.h
@@ -88,6 +88,12 @@ struct genapic {
88 88
89extern struct genapic *apic; 89extern struct genapic *apic;
90 90
91/*
92 * Warm reset vector default position:
93 */
94#define DEFAULT_TRAMPOLINE_PHYS_LOW 0x467
95#define DEFAULT_TRAMPOLINE_PHYS_HIGH 0x469
96
91#ifdef CONFIG_X86_32 97#ifdef CONFIG_X86_32
92extern void es7000_update_genapic_to_cluster(void); 98extern void es7000_update_genapic_to_cluster(void);
93#else 99#else