source: trunk/packages/xen-3.1/xen-3.1/xen/arch/x86/genapic/summit.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: 540 bytes
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
17static __init int probe_summit(void)
18{ 
19        /* probed later in mptable/ACPI hooks */
20        return 0;
21} 
22
23struct genapic apic_summit = {
24        APIC_INIT("summit", probe_summit),
25        GENAPIC_PHYS
26};
Note: See TracBrowser for help on using the repository browser.