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

#include <linux/init.h>
5
#include <linux/irqreturn.h>
6

J
Jeremy Fitzhardinge 已提交
7 8 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[];

void xen_copy_trap_info(struct trap_info *traps);

13 14
DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
DECLARE_PER_CPU(unsigned long, xen_cr3);
15
DECLARE_PER_CPU(unsigned long, xen_current_cr3);
16 17 18 19 20 21 22

extern struct start_info *xen_start_info;
extern struct shared_info *HYPERVISOR_shared_info;

char * __init xen_memory_setup(void);
void __init xen_arch_setup(void);
void __init xen_init_IRQ(void);
23
void xen_enable_sysenter(void);
24

J
Jeremy Fitzhardinge 已提交
25 26
void xen_setup_timer(int cpu);
void xen_setup_cpu_clockevents(void);
27 28 29 30
unsigned long xen_cpu_khz(void);
void __init xen_time_init(void);
unsigned long xen_get_wallclock(void);
int xen_set_wallclock(unsigned long time);
J
Jeremy Fitzhardinge 已提交
31
unsigned long long xen_sched_clock(void);
32

33 34
irqreturn_t xen_debug_interrupt(int irq, void *dev_id);

35 36
bool xen_vcpu_stolen(int vcpu);

37 38
void xen_mark_init_mm_pinned(void);

J
Jeremy Fitzhardinge 已提交
39 40
void __init xen_fill_possible_map(void);

41
void __init xen_setup_vcpu_info_placement(void);
J
Jeremy Fitzhardinge 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55
void xen_smp_prepare_boot_cpu(void);
void xen_smp_prepare_cpus(unsigned int max_cpus);
int xen_cpu_up(unsigned int cpu);
void xen_smp_cpus_done(unsigned int max_cpus);

void xen_smp_send_stop(void);
void xen_smp_send_reschedule(int cpu);
int xen_smp_call_function (void (*func) (void *info), void *info, int nonatomic,
			   int wait);
int xen_smp_call_function_single(int cpu, void (*func) (void *info), void *info,
				 int nonatomic, int wait);

int xen_smp_call_function_mask(cpumask_t mask, void (*func)(void *),
			       void *info, int wait);
56

57 58 59 60 61 62 63 64 65 66 67 68 69

/* 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);

70
void xen_iret(void);
71 72
void xen_sysexit(void);

73
#endif /* XEN_OPS_H */