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;
#include <xen/smp.h>
#include <asm/mach-default/mach_mpparse.h>
-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)
.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;
}
init_cpu_to_node();
- x2apic_setup();
+ x2apic_bsp_setup();
init_IRQ();
* 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();
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);
/*