blob: 2c63c1f9179a3ad58579fb9b4064348b209c68df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Default generic APIC driver. This handles upto 8 CPUs.
*/
#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>
/* should be called last. */
const struct genapic __initconstrel apic_default = {
APIC_INIT("default", NULL),
GENAPIC_FLAT
};
|