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.


large page changes
[palacios.git] / palacios / include / palacios / vmm_mem.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
21 #ifndef __VMM_MEM_H
22 #define __VMM_MEM_H
23
24
25 #ifdef __V3VEE__ 
26
27
28 #include <palacios/vmm_types.h>
29
30 #include <palacios/vmm_paging.h>
31 #include <palacios/vmm_rbtree.h>
32 #include <palacios/vmm_list.h>
33
34 struct guest_info;
35 struct v3_vm_info;
36
37
38
39 #define V3_MEM_CORE_ANY ((uint16_t)-1)
40
41
42
43 typedef struct {
44     union {
45         uint16_t value;
46         struct {
47             uint8_t read   : 1;
48             uint8_t write  : 1;
49             uint8_t exec   : 1;
50             uint8_t base   : 1;
51             uint8_t alloced : 1;
52         } __attribute__((packed));
53     } __attribute__((packed));
54 } __attribute__((packed)) v3_mem_flags_t;
55
56
57
58 struct v3_mem_region {
59     addr_t                  guest_start; 
60     addr_t                  guest_end; 
61
62     v3_mem_flags_t          flags;
63
64     addr_t                  host_addr; // This either points to a host address mapping
65
66     int (*unhandled)(struct guest_info * info, addr_t guest_va, addr_t guest_pa, 
67                      struct v3_mem_region * reg, pf_error_t access_info);
68
69     void * priv_data;
70
71     int core_id;
72
73     struct rb_node tree_node; // This for memory regions mapped to the global map
74 };
75
76
77 struct v3_mem_map {
78     struct v3_mem_region base_region;
79
80     struct rb_root mem_regions;
81 };
82
83
84 int v3_init_mem_map(struct v3_vm_info * vm);
85 void v3_delete_mem_map(struct v3_vm_info * vm);
86
87
88
89
90
91 struct v3_mem_region * v3_create_mem_region(struct v3_vm_info * vm, uint16_t core_id, 
92                                                addr_t guest_addr_start, addr_t guest_addr_end);
93
94 int v3_insert_mem_region(struct v3_vm_info * vm, struct v3_mem_region * reg);
95
96 void v3_delete_mem_region(struct v3_vm_info * vm, struct v3_mem_region * reg);
97
98
99 /* This is a shortcut function for creating + inserting a memory region which redirects to host memory */
100 int v3_add_shadow_mem(struct v3_vm_info * vm, uint16_t core_id,
101                       addr_t guest_addr_start, addr_t guest_addr_end, addr_t host_addr);
102
103
104
105 struct v3_mem_region * v3_get_mem_region(struct v3_vm_info * vm, uint16_t core_id, addr_t guest_addr);
106
107
108 uint32_t v3_get_max_page_size(struct guest_info * core, addr_t fault_addr, v3_cpu_mode_t mode);
109
110
111 void v3_print_mem_map(struct v3_vm_info * vm);
112
113
114
115 #endif // ! __V3VEE__
116
117
118 #endif