aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/genapic/summit.c
blob: c84f14eddd0372ac553584234ceb217650ecd0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 
 * APIC driver for the IBM "Summit" chipset.
 */
#include <xen/config.h>
#include <xen/cpumask.h>
#include <asm/current.h>
#include <asm/mpspec.h>
#include <asm/genapic.h>
#include <asm/fixmap.h>
#include <asm/apicdef.h>
#include <xen/kernel.h>
#include <xen/string.h>
#include <xen/smp.h>
#include <xen/init.h>
#include <asm/mach-summit/mach_mpparse.h>
#include <asm/io_apic.h>

static __init int probe_summit(void)
{ 
	/* probed later in mptable/ACPI hooks */
	return 0;
} 

const struct genapic apic_summit = {
	APIC_INIT("summit", probe_summit),
	GENAPIC_PHYS
};