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.


15bcb7dd8b1ec0611a66093e254c8b0713002e89
[palacios.git] / palacios / include / palacios / vmm_host_events.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_HOST_EVENTS_H__
21 #define __VMM_HOST_EVENTS_H__
22
23
24 struct v3_keyboard_event {
25     unsigned char status;
26     unsigned char scan_code;
27 };
28
29 struct v3_mouse_event {
30     unsigned char data[3];
31 };
32
33 struct v3_timer_event {
34     unsigned int period_us;
35 };
36
37 struct v3_serial_event {
38     unsigned char data[128];
39     unsigned int len;
40 };
41
42 struct v3_console_event {
43     unsigned int cmd;
44 };
45
46 struct v3_packet_event {
47     unsigned char * pkt;
48     unsigned int size;
49 };
50
51 #ifdef __V3VEE__
52
53 #include <palacios/vmm_list.h>
54
55 struct v3_vm_info;
56
57 typedef enum { HOST_KEYBOARD_EVT, 
58                HOST_MOUSE_EVT, 
59                HOST_TIMER_EVT,
60                HOST_CONSOLE_EVT,
61                HOST_SERIAL_EVT,
62                HOST_PACKET_EVT} v3_host_evt_type_t;
63
64
65 union v3_host_event_handler {
66     int (*keyboard_handler)(struct v3_vm_info * vm, struct v3_keyboard_event * evt, void * priv_data);
67     int (*mouse_handler)(struct v3_vm_info * vm, struct v3_mouse_event * evt, void * priv_data);
68     int (*timer_handler)(struct v3_vm_info * vm, struct v3_timer_event * evt, void * priv_data);
69     int (*serial_handler)(struct v3_vm_info * vm, struct v3_serial_event * evt, void * priv_data);
70     int (*console_handler)(struct v3_vm_info * vm, struct v3_console_event * evt, void * priv_data);
71     int (*packet_handler)(struct v3_vm_info * vm, struct v3_packet_event * evt, void * priv_data);
72 };
73
74
75 struct v3_host_event_hook {
76     union v3_host_event_handler cb;
77     void * private_data;
78     struct list_head link;
79 };
80
81
82
83 struct v3_host_events {
84     struct list_head keyboard_events;
85     struct list_head mouse_events;
86     struct list_head timer_events;
87     struct list_head serial_events;
88     struct list_head console_events;
89     struct list_head packet_events;
90 };
91
92
93
94 int v3_init_host_events(struct v3_vm_info * vm);
95 int v3_deinit_host_events(struct v3_vm_info * vm);
96
97 #define V3_HOST_EVENT_HANDLER(cb) ((union v3_host_event_handler)cb)
98
99 int v3_hook_host_event(struct v3_vm_info * vm, 
100                        v3_host_evt_type_t event_type, 
101                        union v3_host_event_handler cb, 
102                        void * private_data);
103
104 #endif /* ! __V3VEE__ */
105
106
107
108 int v3_deliver_keyboard_event(struct v3_vm_info * vm, struct v3_keyboard_event * evt);
109 int v3_deliver_mouse_event(struct v3_vm_info * vm, struct v3_mouse_event * evt);
110 int v3_deliver_timer_event(struct v3_vm_info * vm, struct v3_timer_event * evt);
111 int v3_deliver_serial_event(struct v3_vm_info * vm, struct v3_serial_event * evt);
112 int v3_deliver_console_event(struct v3_vm_info * vm, struct v3_console_event * evt);
113 int v3_deliver_packet_event(struct v3_vm_info * vm, struct v3_packet_event * evt);
114
115
116 #endif