]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/xen/xen-ops.h
xen: add p2m mfn_list_list
[linux-2.6-omap-h63xx.git] / arch / x86 / xen / xen-ops.h
1 #ifndef XEN_OPS_H
2 #define XEN_OPS_H
3
4 #include <linux/init.h>
5 #include <linux/irqreturn.h>
6 #include <xen/xen-ops.h>
7
8 /* These are code, but not functions.  Defined in entry.S */
9 extern const char xen_hypervisor_callback[];
10 extern const char xen_failsafe_callback[];
11
12 void xen_copy_trap_info(struct trap_info *traps);
13
14 DECLARE_PER_CPU(unsigned long, xen_cr3);
15 DECLARE_PER_CPU(unsigned long, xen_current_cr3);
16
17 extern struct start_info *xen_start_info;
18 extern struct shared_info xen_dummy_shared_info;
19 extern struct shared_info *HYPERVISOR_shared_info;
20
21 void xen_setup_mfn_list_list(void);
22
23 char * __init xen_memory_setup(void);
24 void __init xen_arch_setup(void);
25 void __init xen_init_IRQ(void);
26 void xen_enable_sysenter(void);
27
28 void __init xen_build_dynamic_phys_to_machine(void);
29
30 void xen_setup_timer(int cpu);
31 void xen_setup_cpu_clockevents(void);
32 unsigned long xen_cpu_khz(void);
33 void __init xen_time_init(void);
34 unsigned long xen_get_wallclock(void);
35 int xen_set_wallclock(unsigned long time);
36 unsigned long long xen_sched_clock(void);
37
38 irqreturn_t xen_debug_interrupt(int irq, void *dev_id);
39
40 bool xen_vcpu_stolen(int vcpu);
41
42 void xen_mark_init_mm_pinned(void);
43
44 void __init xen_fill_possible_map(void);
45
46 void __init xen_setup_vcpu_info_placement(void);
47 void xen_smp_prepare_boot_cpu(void);
48 void xen_smp_prepare_cpus(unsigned int max_cpus);
49 int xen_cpu_up(unsigned int cpu);
50 void xen_smp_cpus_done(unsigned int max_cpus);
51
52 void xen_smp_send_stop(void);
53 void xen_smp_send_reschedule(int cpu);
54 int xen_smp_call_function (void (*func) (void *info), void *info, int nonatomic,
55                            int wait);
56 int xen_smp_call_function_single(int cpu, void (*func) (void *info), void *info,
57                                  int nonatomic, int wait);
58
59 int xen_smp_call_function_mask(cpumask_t mask, void (*func)(void *),
60                                void *info, int wait);
61
62
63 /* Declare an asm function, along with symbols needed to make it
64    inlineable */
65 #define DECL_ASM(ret, name, ...)                \
66         ret name(__VA_ARGS__);                  \
67         extern char name##_end[];               \
68         extern char name##_reloc[]              \
69
70 DECL_ASM(void, xen_irq_enable_direct, void);
71 DECL_ASM(void, xen_irq_disable_direct, void);
72 DECL_ASM(unsigned long, xen_save_fl_direct, void);
73 DECL_ASM(void, xen_restore_fl_direct, unsigned long);
74
75 void xen_iret(void);
76 void xen_sysexit(void);
77
78 #endif /* XEN_OPS_H */