X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_intr.h;h=8aa4ec7ebf9bdf913d87e45a761ea47f54cc170b;hb=0e3fe455f4c490dc4c5d9412decf2420b905b3e9;hp=fb3f667d87ddd73b7237d61d2b808d8df0bfe767;hpb=fa7a42a55338e5fa49ec760b367225ca752df4fd;p=palacios.git diff --git a/palacios/include/palacios/vmm_intr.h b/palacios/include/palacios/vmm_intr.h index fb3f667..8aa4ec7 100644 --- a/palacios/include/palacios/vmm_intr.h +++ b/palacios/include/palacios/vmm_intr.h @@ -1,6 +1,9 @@ #ifndef __VMM_INTR_H_ #define __VMM_INTR_H_ + +#ifdef __V3VEE__ + #include #include @@ -29,8 +32,6 @@ typedef enum {INVALID_INTR, EXTERNAL_IRQ, NMI, EXCEPTION, SOFTWARE_INTR, VIRTUAL struct guest_info; - - /* We need a way to allow the APIC/PIC to decide when they are supposed to receive interrupts... * Maybe a notification call when they have been turned on, to deliver irqs to them... * We can rehook the guest raise_irq op, to the appropriate controller @@ -53,8 +54,12 @@ struct vm_intr { }; + +void init_interrupt_state(struct guest_info * info); + + int v3_raise_irq(struct guest_info * info, int irq); -int hook_irq(struct guest_info * info, int irq); + struct intr_ctrl_ops { int (*intr_pending)(void * private_data); @@ -65,11 +70,11 @@ struct intr_ctrl_ops { -void init_interrupt_state(struct guest_info * info); + void set_intr_controller(struct guest_info * info, struct intr_ctrl_ops * ops, void * state); -int raise_exception(struct guest_info * info, uint_t excp); -int raise_exception_with_error(struct guest_info * info, uint_t excp, uint_t error_code); +int v3_raise_exception(struct guest_info * info, uint_t excp); +int v3_raise_exception_with_error(struct guest_info * info, uint_t excp, uint_t error_code); int intr_pending(struct guest_info * info); uint_t get_intr_number(struct guest_info * info); @@ -81,4 +86,23 @@ int injecting_intr(struct guest_info * info, uint_t intr_num, intr_type_t type); int start_irq(struct vm_intr * intr); int end_irq(struct vm_intr * intr, int irq); */ + +#endif // !__V3VEE__ + + + + + + + + +struct vmm_intr_state; + +int v3_hook_irq(uint_t irq, + void (*handler)(struct vmm_intr_state *state), + void *opaque); + +int v3_hook_irq_for_guest_injection(struct guest_info *info, int irq); + + #endif