| Rev | Line | |
|---|
| [34] | 1 | /* |
|---|
| 2 | * APIC driver for the Unisys ES7000 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 <asm/atomic.h> |
|---|
| 12 | #include <xen/kernel.h> |
|---|
| 13 | #include <xen/string.h> |
|---|
| 14 | #include <xen/smp.h> |
|---|
| 15 | #include <xen/init.h> |
|---|
| 16 | #include <asm/mach-es7000/mach_mpparse.h> |
|---|
| 17 | |
|---|
| 18 | static __init int probe_es7000(void) |
|---|
| 19 | { |
|---|
| 20 | /* probed later in mptable/ACPI hooks */ |
|---|
| 21 | return 0; |
|---|
| 22 | } |
|---|
| 23 | |
|---|
| 24 | struct genapic apic_es7000 = { |
|---|
| 25 | APIC_INIT("es7000", probe_es7000), |
|---|
| 26 | GENAPIC_PHYS |
|---|
| 27 | }; |
|---|
Note: See
TracBrowser
for help on using the repository browser.