Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added irq initial setup
[palacios.git] / palacios / include / palacios / vmm_intr.h
index 108c27c..2f3596d 100644 (file)
@@ -34,12 +34,27 @@ struct vm_intr {
   uint_t excp_num;
   uint_t excp_error_code;
   
+  struct intr_ctrl_ops * controller;
+  void * controller_state;
+
   /* some way to get the [A]PIC intr */
 
 };
 
 
-void init_interrupt_state(struct vm_intr * state);
+int raise_irq(struct guest_info * info, int irq, int error_code);
+int hook_irq(struct guest_info * info, int irq);
+
+struct intr_ctrl_ops {
+  int (*intr_pending)(void * private_data);
+  int (*get_intr_number)(void * private_data);
+  int (*raise_intr)(void * private_data, int irq, int error_code);
+};
+
+
+
+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);