aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/genapic/default.c
blob: dbab88fab49be0da47fa9ee89333e8e2921c1330 (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
/* 
 * Default generic APIC driver. This handles upto 8 CPUs.
 */
#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/io_apic.h>
#include <asm/mach-default/mach_mpparse.h>

/* should be called last. */
static __init int probe_default(void)
{ 
	return 1;
} 

const struct genapic apic_default = {
	APIC_INIT("default", probe_default),
	GENAPIC_FLAT
};