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.


reformatting include files
[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     /* some way to get the [A]PIC intr */
78     struct v3_irq_hook * hooks[256];
79   
80 };
81
82
83
84 void v3_init_interrupt_state(struct guest_info * info);
85
86
87 int v3_raise_irq(struct guest_info * info, int irq);
88 int v3_lower_irq(struct guest_info * info, int irq);
89
90
91
92 struct intr_ctrl_ops {
93     int (*intr_pending)(void * private_data);
94     int (*get_intr_number)(void * private_data);
95     int (*raise_intr)(void * private_data, int irq);
96     int (*lower_intr)(void * private_data, int irq);
97     int (*begin_irq)(void * private_data, int irq);
98 };
99
100
101
102
103 void v3_register_intr_controller(struct guest_info * info, struct intr_ctrl_ops * ops, void * state);
104
105 int v3_raise_exception(struct guest_info * info, uint_t excp);
106 int v3_raise_exception_with_error(struct guest_info * info, uint_t excp, uint_t error_code);
107
108 int v3_intr_pending(struct guest_info * info);
109 uint_t v3_get_intr_number(struct guest_info * info);
110 intr_type_t v3_get_intr_type(struct guest_info * info);
111
112 int v3_injecting_intr(struct guest_info * info, uint_t intr_num, intr_type_t type);
113
114 /*
115   int start_irq(struct vm_intr * intr);
116   int end_irq(struct vm_intr * intr, int irq);
117 */
118
119
120
121 int v3_hook_irq(struct guest_info * info, 
122                 uint_t irq,
123                 int (*handler)(struct guest_info * info, struct v3_interrupt * intr, void * priv_data),
124                 void  * priv_data);
125
126 int v3_hook_passthrough_irq(struct guest_info *info, uint_t irq);
127
128
129
130 #endif // !__V3VEE__
131
132
133
134 #endif