diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-05-28 12:38:28 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 06:48:22 -0400 |
commit | b5841765a2e735a38612c4e4a82170c33d701b3c (patch) | |
tree | ba37dfbe602349e507ce38723eb0ee679af878a7 /arch/x86/kernel/apic_64.c | |
parent | 3fde690011a84e19f98f77bfaa349b2119ddd2d2 (diff) |
x86: provide connect_bsp_APIC for x86_64
Although it is not really needed, we provide it to get
closer to i386. ifdefs around it are removed in smpboot.c
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic_64.c')
-rw-r--r-- | arch/x86/kernel/apic_64.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic_64.c b/arch/x86/kernel/apic_64.c index d9d663ffa641..5279dc924381 100644 --- a/arch/x86/kernel/apic_64.c +++ b/arch/x86/kernel/apic_64.c | |||
@@ -918,6 +918,8 @@ int __init APIC_init_uniprocessor(void) | |||
918 | 918 | ||
919 | verify_local_APIC(); | 919 | verify_local_APIC(); |
920 | 920 | ||
921 | connect_bsp_APIC(); | ||
922 | |||
921 | physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map); | 923 | physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map); |
922 | apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid)); | 924 | apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid)); |
923 | 925 | ||
@@ -999,6 +1001,14 @@ asmlinkage void smp_error_interrupt(void) | |||
999 | irq_exit(); | 1001 | irq_exit(); |
1000 | } | 1002 | } |
1001 | 1003 | ||
1004 | /** | ||
1005 | * * connect_bsp_APIC - attach the APIC to the interrupt system | ||
1006 | * */ | ||
1007 | void __init connect_bsp_APIC(void) | ||
1008 | { | ||
1009 | enable_apic_mode(); | ||
1010 | } | ||
1011 | |||
1002 | void disconnect_bsp_APIC(int virt_wire_setup) | 1012 | void disconnect_bsp_APIC(int virt_wire_setup) |
1003 | { | 1013 | { |
1004 | /* Go back to Virtual Wire compatibility mode */ | 1014 | /* Go back to Virtual Wire compatibility mode */ |