2008-02-19 18:17:34 -05:00
|
|
|
/*
|
2005-04-16 18:20:36 -04: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 05:17:44 -04:00
|
|
|
#include <asm/summit/apicdef.h>
|
2008-07-11 21:43:10 -04:00
|
|
|
#include <linux/smp.h>
|
2008-07-25 05:17:44 -04:00
|
|
|
#include <asm/summit/apic.h>
|
|
|
|
#include <asm/summit/ipi.h>
|
|
|
|
#include <asm/summit/mpparse.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2007-01-10 19:52:44 -05:00
|
|
|
static int probe_summit(void)
|
2008-02-19 18:17:34 -05:00
|
|
|
{
|
2005-04-16 18:20:36 -04:00
|
|
|
/* probed later in mptable/ACPI hooks */
|
|
|
|
return 0;
|
2008-02-19 18:17:34 -05:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2008-02-19 18:17:34 -05:00
|
|
|
struct genapic apic_summit = APIC_INIT("summit", probe_summit);
|