Commit 94148975 authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] P4 SPIV FOCUS bit

From Zwane Mwaikambo, this diff makes sure we don't
poke reserved bits on the P4.
parent 7a4343e8
......@@ -273,6 +273,9 @@ void __init init_bsp_APIC(void)
value = apic_read(APIC_SPIV);
value &= ~APIC_VECTOR_MASK;
value |= APIC_SPIV_APIC_ENABLED;
if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && (boot_cpu_data.x86 == 15))
value &= ~APIC_SPIV_FOCUS_DISABLED;
else
value |= APIC_SPIV_FOCUS_DISABLED;
value |= SPURIOUS_APIC_VECTOR;
apic_write_around(APIC_SPIV, value);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment