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.


reworked the generic device to handle run time configurability
[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 #include <palacios/vm_dev.h>
9
10 //
11 // The generic device simply hooks ranges of ports, addresses, and irqs
12 // if they are not already hooked
13 //
14 // for each hooked port, it simply executes reads and writes and the same physical port,
15 // for each hooked memory range, it simply executes reads and writes on the same
16 //    physical memory addresses
17 // for each hooked irq, it simply injects the irq into the VM
18 //
19 // These operations are also logged to serial (optionaly)
20 //
21 // If you attach a generic device *last*, you can capture all ops that are not
22 // already hooked, and capture a log of VM activity with respect to them.
23 //
24 // The effects of using the generic device should be identical to 
25 // doing passthrough I/O, but with logging, and, of course, slower
26 //
27
28
29 #define GENERIC_PRINT_AND_PASSTHROUGH 0
30 #define GENERIC_PRINT_AND_IGNORE      1
31
32
33 int v3_generic_add_port_range(struct vm_device * dev, uint_t start, uint_t end, uint_t type);
34 int v3_generic_add_mem_range(struct vm_device * dev, void * start, void * end, uint_t type);
35 int v3_generic_add_irq_range(struct vm_device * dev, uint_t start, uint_t end, uint_t type);
36
37 // The lists given are null terminated
38 struct vm_device * create_generic();  
39
40 #endif