2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Copyright 2004 James Cleverdon, IBM.
|
|
|
|
* Subject to the GNU Public License, v.2
|
|
|
|
*
|
|
|
|
* Generic APIC sub-arch probe layer.
|
|
|
|
*
|
|
|
|
* Hacked for x86-64 by James Cleverdon from i386 architecture code by
|
|
|
|
* Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
|
|
|
|
* James Cleverdon.
|
|
|
|
*/
|
|
|
|
#include <linux/threads.h>
|
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <linux/string.h>
|
2007-05-02 13:27:04 -04:00
|
|
|
#include <linux/module.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/ctype.h>
|
|
|
|
#include <linux/init.h>
|
2008-03-28 15:12:16 -04:00
|
|
|
#include <linux/hardirq.h>
|
2008-07-25 22:39:03 -04:00
|
|
|
#include <linux/dmar.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
#include <asm/smp.h>
|
2009-02-17 07:58:15 -05:00
|
|
|
#include <asm/apic.h>
|
2009-02-17 02:02:14 -05:00
|
|
|
#include <asm/ipi.h>
|
2008-11-17 18:19:53 -05:00
|
|
|
#include <asm/setup.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2009-02-17 10:28:46 -05:00
|
|
|
extern struct apic apic_flat;
|
|
|
|
extern struct apic apic_physflat;
|
|
|
|
extern struct apic apic_x2xpic_uv_x;
|
|
|
|
extern struct apic apic_x2apic_phys;
|
|
|
|
extern struct apic apic_x2apic_cluster;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2009-02-17 10:28:46 -05:00
|
|
|
struct apic __read_mostly *apic = &apic_flat;
|
2009-02-17 06:33:20 -05:00
|
|
|
EXPORT_SYMBOL_GPL(apic);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2009-02-17 10:28:46 -05:00
|
|
|
static struct apic *apic_probe[] __initdata = {
|
2009-01-19 22:36:04 -05:00
|
|
|
#ifdef CONFIG_X86_UV
|
2008-07-22 01:08:21 -04:00
|
|
|
&apic_x2apic_uv_x,
|
2009-01-19 22:36:04 -05:00
|
|
|
#endif
|
2009-02-16 20:29:58 -05:00
|
|
|
#ifdef CONFIG_X86_X2APIC
|
2008-07-22 01:08:21 -04:00
|
|
|
&apic_x2apic_phys,
|
|
|
|
&apic_x2apic_cluster,
|
2009-02-16 20:29:58 -05:00
|
|
|
#endif
|
2008-07-22 01:08:21 -04:00
|
|
|
&apic_physflat,
|
|
|
|
NULL,
|
|
|
|
};
|
2008-03-28 15:12:06 -04:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Check the APIC IDs in bios_cpu_apicid and choose the APIC mode.
|
|
|
|
*/
|
2009-01-28 00:50:47 -05:00
|
|
|
void __init default_setup_apic_routing(void)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2009-02-16 20:29:58 -05:00
|
|
|
#ifdef CONFIG_X86_X2APIC
|
2009-02-21 17:23:21 -05:00
|
|
|
if (x2apic && (apic != &apic_x2apic_phys &&
|
|
|
|
#ifdef CONFIG_X86_UV
|
|
|
|
apic != &apic_x2apic_uv_x &&
|
|
|
|
#endif
|
|
|
|
apic != &apic_x2apic_cluster)) {
|
|
|
|
if (x2apic_phys)
|
|
|
|
apic = &apic_x2apic_phys;
|
|
|
|
else
|
|
|
|
apic = &apic_x2apic_cluster;
|
|
|
|
printk(KERN_INFO "Setting APIC routing to %s\n", apic->name);
|
2008-07-25 22:39:03 -04:00
|
|
|
}
|
2009-02-16 20:29:58 -05:00
|
|
|
#endif
|
2008-07-25 22:39:03 -04:00
|
|
|
|
2009-01-27 18:14:11 -05:00
|
|
|
if (apic == &apic_flat) {
|
2008-07-22 01:08:21 -04:00
|
|
|
if (max_physical_apicid >= 8)
|
2009-01-27 18:14:11 -05:00
|
|
|
apic = &apic_physflat;
|
|
|
|
printk(KERN_INFO "Setting APIC routing to %s\n", apic->name);
|
2008-07-22 01:08:21 -04:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2007-05-02 13:27:04 -04:00
|
|
|
/* Same for both flat and physical. */
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2008-07-10 14:16:53 -04:00
|
|
|
void apic_send_IPI_self(int vector)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2009-01-28 09:42:24 -05:00
|
|
|
__default_send_IPI_shortcut(APIC_DEST_SELF, vector, APIC_DEST_PHYSICAL);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
2008-03-28 15:12:06 -04:00
|
|
|
|
2009-01-27 21:43:47 -05:00
|
|
|
int __init default_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
|
2008-03-28 15:12:06 -04:00
|
|
|
{
|
2008-07-22 01:08:21 -04:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; apic_probe[i]; ++i) {
|
|
|
|
if (apic_probe[i]->acpi_madt_oem_check(oem_id, oem_table_id)) {
|
2009-01-27 18:14:11 -05:00
|
|
|
apic = apic_probe[i];
|
2008-07-22 01:08:21 -04:00
|
|
|
printk(KERN_INFO "Setting APIC routing to %s.\n",
|
2009-01-27 18:14:11 -05:00
|
|
|
apic->name);
|
2008-07-22 01:08:21 -04:00
|
|
|
return 1;
|
|
|
|
}
|
2008-03-28 15:12:06 -04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|