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.


Merge branch 'ramdisk' into devel
[palacios.git] / palacios / include / devices / generic.h
1 /* (c) 2008, Peter Dinda <pdinda@northwestern.edu> */
2 /* (c) 2008, Jack Lange <jarusl@northwestern.edu> */
3 /* (c) 2008, The V3VEE Project <http://www.v3vee.org> */
4
5 #ifndef __GENERIC_H__
6 #define __GENERIC_H__
7
8
9 #include <palacios/vm_dev.h>
10
11 //
12 // The generic device simply hooks ranges of ports, addresses, and irqs
13 // if they are not already hooked
14 //
15 // for each hooked port, it simply executes reads and writes and the same physical port,
16 // for each hooked memory range, it simply executes reads and writes on the same
17 //    physical memory addresses
18 // for each hooked irq, it simply injects the irq into the VM
19 //
20 // These operations are also logged to serial (optionaly)
21 //
22 // If you attach a generic device *last*, you can capture all ops that are not
23 // already hooked, and capture a log of VM activity with respect to them.
24 //
25 // The effects of using the generic device should be identical to 
26 // doing passthrough I/O, but with logging, and, of course, slower
27 //
28
29
30 #define GENERIC_PRINT_AND_PASSTHROUGH 0
31 #define GENERIC_PRINT_AND_IGNORE      1
32
33
34 int v3_generic_add_port_range(struct vm_device * dev, uint_t start, uint_t end, uint_t type);
35 int v3_generic_add_mem_range(struct vm_device * dev, void * start, void * end, uint_t type);
36 int v3_generic_add_irq_range(struct vm_device * dev, uint_t start, uint_t end, uint_t type);
37
38 // The lists given are null terminated
39 struct vm_device * create_generic();  
40
41 #endif