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.


77d3822052b5bb8b5b5552f15bbab11c7d2e0ba6
[palacios.git] / palacios / include / devices / generic.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, Peter Dinda <pdinda@northwestern.edu> 
11  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
12  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
13  * All rights reserved.
14  *
15  * Author: Peter Dinda <pdinda@northwestern.edu>
16  * Author: Jack Lange <jarusl@cs.northwestern.edu>
17  *
18  * This is free software.  You are permitted to use,
19  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20  */
21
22
23 #ifndef __DEVICES_GENERIC_H__
24 #define __DEVICES_GENERIC_H__
25
26 #ifdef __V3VEE__
27
28 #include <palacios/vmm_dev_mgr.h>
29
30
31 //
32 // The generic device simply hooks ranges of ports, addresses, and irqs
33 // if they are not already hooked
34 //
35 // for each hooked port, it simply executes reads and writes and the same physical port,
36 // for each hooked memory range, it simply executes reads and writes on the same
37 //    physical memory addresses
38 // for each hooked irq, it simply injects the irq into the VM
39 //
40 // These operations are also logged to serial (optionaly)
41 //
42 // If you attach a generic device *last*, you can capture all ops that are not
43 // already hooked, and capture a log of VM activity with respect to them.
44 //
45 // The effects of using the generic device should be identical to 
46 // doing passthrough I/O, but with logging, and, of course, slower
47 //
48
49
50 #define GENERIC_PRINT_AND_PASSTHROUGH 0
51 #define GENERIC_PRINT_AND_IGNORE      1
52
53
54 int v3_generic_add_port_range(struct vm_device * dev, uint_t start, uint_t end, uint_t type);
55
56  
57
58
59 #endif // ! __V3VEE__
60
61 #endif