Line | |
---|
1 | /* |
---|
2 | * APIC driver for the IBM "Summit" chipset. |
---|
3 | */ |
---|
4 | #include <xen/config.h> |
---|
5 | #include <xen/cpumask.h> |
---|
6 | #include <asm/current.h> |
---|
7 | #include <asm/mpspec.h> |
---|
8 | #include <asm/genapic.h> |
---|
9 | #include <asm/fixmap.h> |
---|
10 | #include <asm/apicdef.h> |
---|
11 | #include <xen/kernel.h> |
---|
12 | #include <xen/string.h> |
---|
13 | #include <xen/smp.h> |
---|
14 | #include <xen/init.h> |
---|
15 | #include <asm/mach-summit/mach_mpparse.h> |
---|
16 | |
---|
17 | static __init int probe_summit(void) |
---|
18 | { |
---|
19 | /* probed later in mptable/ACPI hooks */ |
---|
20 | return 0; |
---|
21 | } |
---|
22 | |
---|
23 | struct genapic apic_summit = { |
---|
24 | APIC_INIT("summit", probe_summit), |
---|
25 | GENAPIC_PHYS |
---|
26 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.