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.


be407c15aa771e377c67038d202e36099e175559
[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
29 #define DE_EXCEPTION          0x00  
30 #define DB_EXCEPTION          0x01
31 #define NMI_EXCEPTION         0x02
32 #define BP_EXCEPTION          0x03
33 #define OF_EXCEPTION          0x04
34 #define BR_EXCEPTION          0x05
35 #define UD_EXCEPTION          0x06
36 #define NM_EXCEPTION          0x07
37 #define DF_EXCEPTION          0x08
38 #define TS_EXCEPTION          0x0a
39 #define NP_EXCEPTION          0x0b
40 #define SS_EXCEPTION          0x0c
41 #define GPF_EXCEPTION         0x0d
42 #define PF_EXCEPTION          0x0e
43 #define MF_EXCEPTION          0x10
44 #define AC_EXCEPTION          0x11
45 #define MC_EXCEPTION          0x12
46 #define XF_EXCEPTION          0x13
47 #define SX_EXCEPTION          0x1e
48
49
50 typedef enum {INVALID_INTR, EXTERNAL_IRQ, NMI, EXCEPTION, SOFTWARE_INTR, VIRTUAL_INTR} intr_type_t;
51
52 struct guest_info;
53 struct v3_interrupt;
54
55
56
57 struct v3_irq_hook {
58     int (*handler)(struct guest_info * info, struct v3_interrupt * intr, void * priv_data);
59     void * priv_data;
60 };
61
62
63
64
65
66 struct v3_intr_state {
67
68     /* We need to rework the exception state, to handle stacking */
69     uint_t excp_pending;
70     uint_t excp_num;
71     uint_t excp_error_code_valid : 1;
72     uint_t excp_error_code;
73   
74     struct list_head controller_list;
75
76
77     uint_t irq_pending;
78     uint_t irq_vector;
79
80     /* some way to get the [A]PIC intr */
81     struct v3_irq_hook * hooks[256];
82   
83 };
84
85
86
87 void v3_init_interrupt_state(struct guest_info * info);
88
89
90 int v3_raise_irq(struct guest_info * info, int irq);
91 int v3_lower_irq(struct guest_info * info, int irq);
92
93
94
95 struct intr_ctrl_ops {
96     int (*intr_pending)(void * private_data);
97     int (*get_intr_number)(void * private_data);
98     int (*raise_intr)(void * private_data, int irq);
99     int (*lower_intr)(void * private_data, int irq);
100     int (*begin_irq)(void * private_data, int irq);
101 };
102
103
104
105
106 void v3_register_intr_controller(struct guest_info * info, struct intr_ctrl_ops * ops, void * state);
107
108 int v3_raise_exception(struct guest_info * info, uint_t excp);
109 int v3_raise_exception_with_error(struct guest_info * info, uint_t excp, uint_t error_code);
110
111 int v3_intr_pending(struct guest_info * info);
112 uint_t v3_get_intr_number(struct guest_info * info);
113 intr_type_t v3_get_intr_type(struct guest_info * info);
114
115 int v3_injecting_intr(struct guest_info * info, uint_t intr_num, intr_type_t type);
116
117 /*
118   int start_irq(struct vm_intr * intr);
119   int end_irq(struct vm_intr * intr, int irq);
120 */
121
122
123
124 int v3_hook_irq(struct guest_info * info, 
125                 uint_t irq,
126                 int (*handler)(struct guest_info * info, struct v3_interrupt * intr, void * priv_data),
127                 void  * priv_data);
128
129 int v3_hook_passthrough_irq(struct guest_info *info, uint_t irq);
130
131
132
133 #endif // !__V3VEE__
134
135
136
137 #endif