From: Keir Fraser Date: Wed, 15 Dec 2010 11:57:54 +0000 (+0000) Subject: x86: adjust x2apic section placement X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1f87cbc575c2465a4ef76da976bf31786aaa0a0e;p=xen.git x86: adjust x2apic section placement Signed-off-by: Jan Beulich --- diff --git a/xen/arch/x86/apic.c b/xen/arch/x86/apic.c index c2a04e4e9f..f48c442e39 100644 --- a/xen/arch/x86/apic.c +++ b/xen/arch/x86/apic.c @@ -948,18 +948,17 @@ no_apic: return -1; } -void x2apic_setup(void) +void x2apic_ap_setup(void) +{ + if ( x2apic_enabled ) + __enable_x2apic(); +} + +void __init x2apic_bsp_setup(void) { struct IO_APIC_route_entry **ioapic_entries = NULL; uint64_t msr_content; - if ( smp_processor_id() != 0 ) - { - if ( x2apic_enabled ) - __enable_x2apic(); - return; - } - if ( !cpu_has_x2apic ) return; diff --git a/xen/arch/x86/genapic/x2apic.c b/xen/arch/x86/genapic/x2apic.c index 91daaa3bf4..f9bb34dfc2 100644 --- a/xen/arch/x86/genapic/x2apic.c +++ b/xen/arch/x86/genapic/x2apic.c @@ -27,7 +27,7 @@ #include #include -static int x2apic_phys; /* By default we use logical cluster mode. */ +static int __initdata x2apic_phys; /* By default we use logical cluster mode. */ boolean_param("x2apic_phys", x2apic_phys); static void init_apic_ldr_x2apic_phys(void) @@ -134,7 +134,7 @@ static const struct genapic apic_x2apic_cluster = { .send_IPI_self = send_IPI_self_x2apic }; -const struct genapic *apic_x2apic_probe(void) +const struct genapic *__init apic_x2apic_probe(void) { return x2apic_phys ? &apic_x2apic_phys : &apic_x2apic_cluster; } diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 053b9c27ed..a577cc0f0f 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -1190,7 +1190,7 @@ void __init __start_xen(unsigned long mbi_p) init_cpu_to_node(); - x2apic_setup(); + x2apic_bsp_setup(); init_IRQ(); diff --git a/xen/arch/x86/smpboot.c b/xen/arch/x86/smpboot.c index e5fc896363..2c8c47d164 100644 --- a/xen/arch/x86/smpboot.c +++ b/xen/arch/x86/smpboot.c @@ -195,7 +195,7 @@ void smp_callin(void) * update until we finish. We are free to set up this CPU: first the APIC. */ Dprintk("CALLIN, before setup_local_APIC().\n"); - x2apic_setup(); + x2apic_ap_setup(); setup_local_APIC(); map_cpu_to_logical_apicid(); diff --git a/xen/include/asm-x86/apic.h b/xen/include/asm-x86/apic.h index 4a825a8793..a014755ae3 100644 --- a/xen/include/asm-x86/apic.h +++ b/xen/include/asm-x86/apic.h @@ -25,7 +25,8 @@ extern int apic_verbosity; extern int x2apic_enabled; extern int directed_eoi_enabled; -void x2apic_setup(void); +void x2apic_bsp_setup(void); +void x2apic_ap_setup(void); const struct genapic *apic_x2apic_probe(void); /*