2008-02-19 23:17:34 +00:00
|
|
|
/*
|
2005-04-16 22:20:36 +00:00
|
|
|
* APIC driver for the IBM "Summit" chipset.
|
|
|
|
*/
|
|
|
|
#define APIC_DEFINITION 1
|
|
|
|
#include <linux/threads.h>
|
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <asm/mpspec.h>
|
|
|
|
#include <asm/genapic.h>
|
|
|
|
#include <asm/fixmap.h>
|
|
|
|
#include <asm/apicdef.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/init.h>
|
2008-07-25 09:17:44 +00:00
|
|
|
#include <asm/summit/apicdef.h>
|
2008-07-12 01:43:10 +00:00
|
|
|
#include <linux/smp.h>
|
2008-07-25 09:17:44 +00:00
|
|
|
#include <asm/summit/apic.h>
|
|
|
|
#include <asm/summit/ipi.h>
|
|
|
|
#include <asm/summit/mpparse.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-11 00:52:44 +00:00
|
|
|
static int probe_summit(void)
|
2008-02-19 23:17:34 +00:00
|
|
|
{
|
2005-04-16 22:20:36 +00:00
|
|
|
/* probed later in mptable/ACPI hooks */
|
|
|
|
return 0;
|
2008-02-19 23:17:34 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-08-20 03:50:28 +00:00
|
|
|
static cpumask_t vector_allocation_domain(int cpu)
|
|
|
|
{
|
|
|
|
/* Careful. Some cpus do not strictly honor the set of cpus
|
|
|
|
* specified in the interrupt destination when using lowest
|
|
|
|
* priority interrupt delivery mode.
|
|
|
|
*
|
|
|
|
* In particular there was a hyperthreading cpu observed to
|
|
|
|
* deliver interrupts to the wrong hyperthread when only one
|
|
|
|
* hyperthread was specified in the interrupt desitination.
|
|
|
|
*/
|
|
|
|
cpumask_t domain = { { [0] = APIC_ALL_CPUS, } };
|
|
|
|
return domain;
|
|
|
|
}
|
|
|
|
|
2008-02-19 23:17:34 +00:00
|
|
|
struct genapic apic_summit = APIC_INIT("summit", probe_summit);
|