source: trunk/packages/xen-3.1/xen-3.1/xen/arch/x86/genapic/es7000.c @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 562 bytes
Line 
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
18static __init int probe_es7000(void)
19{
20        /* probed later in mptable/ACPI hooks */
21        return 0;
22}
23
24struct genapic apic_es7000 = {
25        APIC_INIT("es7000", probe_es7000),
26        GENAPIC_PHYS
27};
Note: See TracBrowser for help on using the repository browser.