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.


Fix interrupt injection bug due to caching irq vectors after vector mappings have...
[palacios.git] / palacios / include / palacios / vmm_intr.h
1 /*
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
11  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Jack Lange <jarusl@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20 #ifndef __VMM_INTR_H_
21 #define __VMM_INTR_H_
22
23
24 #ifdef __V3VEE__
25
26 #include <palacios/vmm_types.h>
27 #include <palacios/vmm_list.h>
28 #include <palacios/vmm_lock.h>
29
30
31 typedef enum {V3_INVALID_INTR, V3_EXTERNAL_IRQ, V3_VIRTUAL_IRQ, V3_NMI, V3_SOFTWARE_INTR} v3_intr_type_t;
32
33 struct guest_info;
34 struct v3_interrupt;
35
36
37
38 struct v3_irq_hook {
39     int (*handler)(struct guest_info * info, struct v3_interrupt * intr, void * priv_data);
40     void * priv_data;
41 };
42
43 #define MAX_IRQ 256
44
45
46
47
48 struct v3_intr_state {
49
50     struct list_head controller_list;
51
52     uint_t irq_pending;
53     uint_t irq_started;
54     uint_t irq_vector;
55
56     uint8_t virq_map[MAX_IRQ / 8];
57
58     v3_lock_t irq_lock;
59
60     /* some way to get the [A]PIC intr */
61     struct v3_irq_hook * hooks[256];
62   
63 };
64
65
66
67 void v3_init_interrupt_state(struct guest_info * info);
68
69
70 int v3_raise_virq(struct guest_info * info, int irq);
71 int v3_lower_virq(struct guest_info * info, int irq);
72
73 int v3_raise_irq(struct guest_info * info, int irq);
74 int v3_lower_irq(struct guest_info * info, int irq);
75
76
77
78 struct intr_ctrl_ops {
79     int (*intr_pending)(struct guest_info * info, void * private_data);
80     int (*get_intr_number)(struct guest_info * info, void * private_data);
81     int (*raise_intr)(struct guest_info * info, void * private_data, int irq);
82     int (*lower_intr)(struct guest_info * info, void * private_data, int irq);
83     int (*begin_irq)(struct guest_info * info, void * private_data, int irq);
84 };
85
86
87 void v3_clear_pending_intr(struct guest_info * core);
88
89 void v3_register_intr_controller(struct guest_info * info, struct intr_ctrl_ops * ops, void * state);
90
91 v3_intr_type_t v3_intr_pending(struct guest_info * info);
92 uint32_t v3_get_intr(struct guest_info * info);
93
94 //intr_type_t v3_get_intr_type(struct guest_info * info);
95
96 int v3_injecting_intr(struct guest_info * info, uint_t intr_num, v3_intr_type_t type);
97
98 /*
99   int start_irq(struct vm_intr * intr);
100   int end_irq(struct vm_intr * intr, int irq);
101 */
102
103
104
105 int v3_hook_irq(struct guest_info * info, 
106                 uint_t irq,
107                 int (*handler)(struct guest_info * info, struct v3_interrupt * intr, void * priv_data),
108                 void  * priv_data);
109
110 int v3_hook_passthrough_irq(struct guest_info *info, uint_t irq);
111
112
113
114 #endif // !__V3VEE__
115
116
117
118 #endif