xen-ops.h 2.6 KB
Newer Older
1 2 3 4
#ifndef XEN_OPS_H
#define XEN_OPS_H

#include <linux/init.h>
5
#include <linux/clocksource.h>
6
#include <linux/irqreturn.h>
7
#include <xen/xen-ops.h>
8

J
Jeremy Fitzhardinge 已提交
9 10 11 12
/* These are code, but not functions.  Defined in entry.S */
extern const char xen_hypervisor_callback[];
extern const char xen_failsafe_callback[];

13
struct trap_info;
J
Jeremy Fitzhardinge 已提交
14 15
void xen_copy_trap_info(struct trap_info *traps);

16
DECLARE_PER_CPU(struct vcpu_info, xen_vcpu_info);
17
DECLARE_PER_CPU(unsigned long, xen_cr3);
18
DECLARE_PER_CPU(unsigned long, xen_current_cr3);
19 20

extern struct start_info *xen_start_info;
21
extern struct shared_info xen_dummy_shared_info;
22 23
extern struct shared_info *HYPERVISOR_shared_info;

J
Jeremy Fitzhardinge 已提交
24
void xen_setup_mfn_list_list(void);
25
void xen_setup_shared_info(void);
26 27 28 29 30 31 32
void xen_setup_machphys_mapping(void);
pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn);
void xen_ident_map_ISA(void);
void xen_reserve_top(void);

void xen_leave_lazy(void);
void xen_post_allocator_init(void);
J
Jeremy Fitzhardinge 已提交
33

34 35 36
char * __init xen_memory_setup(void);
void __init xen_arch_setup(void);
void __init xen_init_IRQ(void);
37
void xen_enable_sysenter(void);
38
void xen_enable_syscall(void);
39
void xen_vcpu_restore(void);
40

41 42
void __init xen_build_dynamic_phys_to_machine(void);

43
void xen_init_irq_ops(void);
J
Jeremy Fitzhardinge 已提交
44
void xen_setup_timer(int cpu);
A
Alex Nixon 已提交
45
void xen_teardown_timer(int cpu);
46
cycle_t xen_clocksource_read(void);
J
Jeremy Fitzhardinge 已提交
47
void xen_setup_cpu_clockevents(void);
48
unsigned long xen_tsc_khz(void);
49 50 51
void __init xen_time_init(void);
unsigned long xen_get_wallclock(void);
int xen_set_wallclock(unsigned long time);
J
Jeremy Fitzhardinge 已提交
52
unsigned long long xen_sched_clock(void);
53

54 55
irqreturn_t xen_debug_interrupt(int irq, void *dev_id);

56 57
bool xen_vcpu_stolen(int vcpu);

58 59
void xen_mark_init_mm_pinned(void);

60
void xen_setup_vcpu_info_placement(void);
J
Jeremy Fitzhardinge 已提交
61

62 63
#ifdef CONFIG_SMP
void xen_smp_init(void);
64

65 66
void __init xen_init_spinlocks(void);
__cpuinit void xen_init_lock_cpu(int cpu);
A
Alex Nixon 已提交
67
void xen_uninit_lock_cpu(int cpu);
68

69
extern cpumask_var_t xen_cpu_initialized_map;
70 71 72
#else
static inline void xen_smp_init(void) {}
#endif
73

74 75 76 77 78 79 80 81 82 83 84 85 86

/* Declare an asm function, along with symbols needed to make it
   inlineable */
#define DECL_ASM(ret, name, ...)		\
	ret name(__VA_ARGS__);			\
	extern char name##_end[];		\
	extern char name##_reloc[]		\

DECL_ASM(void, xen_irq_enable_direct, void);
DECL_ASM(void, xen_irq_disable_direct, void);
DECL_ASM(unsigned long, xen_save_fl_direct, void);
DECL_ASM(void, xen_restore_fl_direct, unsigned long);

87
/* These are not functions, and cannot be called normally */
88
void xen_iret(void);
89
void xen_sysexit(void);
90 91
void xen_sysret32(void);
void xen_sysret64(void);
92
void xen_adjust_exception_frame(void);
93

94
#endif /* XEN_OPS_H */