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.


1b5cf44f241d8f7589673165e120f48d9bd96b90
[palacios.git] / linux_module / palacios.h
1 #ifndef _PALACIOS_H
2 #define _PALACIOS_H
3
4 #include <linux/cdev.h>
5 #include <linux/list.h>
6 #include <linux/sched.h>
7 #include <linux/slab.h>
8
9
10 /* Global Control IOCTLs */
11 #define V3_CREATE_GUEST 12
12 #define V3_FREE_GUEST 13
13
14 #define V3_ADD_MEMORY    50
15 #define V3_RESET_MEMORY  51
16 #define V3_REMOVE_MEMORY 52
17
18 #define V3_ADD_PCI_HW_DEV 55
19 #define V3_ADD_PCI_USER_DEV 56
20
21 #define V3_DVFS_CTRL  60
22
23
24 /* VM Specific IOCTLs */
25 #define V3_VM_CONSOLE_CONNECT 20
26 #define V3_VM_STREAM_CONNECT 21
27
28 #define V3_VM_PAUSE 23
29 #define V3_VM_CONTINUE 24
30
31 #define V3_VM_LAUNCH 25
32 #define V3_VM_STOP 26
33 #define V3_VM_LOAD 27
34 #define V3_VM_SAVE 28
35 #define V3_VM_SIMULATE 29
36
37 #define V3_VM_INSPECT 30
38 #define V3_VM_DEBUG 31
39
40 #define V3_VM_MOVE_CORE 33
41
42 #define V3_VM_SEND    34
43 #define V3_VM_RECEIVE 35
44
45 #define V3_VM_MOVE_MEM 36
46
47 #define V3_VM_FB_INPUT 257
48 #define V3_VM_FB_QUERY 258
49
50 #define V3_VM_MEM_TRACK_SIZE 300
51 #define V3_VM_MEM_TRACK_CMD  301
52 #define V3_VM_MEM_TRACK_SNAP 302
53
54 #define V3_VM_HOST_DEV_CONNECT 10245
55
56 #define V3_VM_KSTREAM_USER_CONNECT 11245
57
58
59 struct v3_guest_img {
60     unsigned long long size;
61     void * guest_data;
62     char name[128];
63 } __attribute__((packed));
64
65 typedef enum { PREALLOCATED=0,          // user space-allocated (e.g. hot remove)
66               REQUESTED,               // kernel will attempt allocation (anywhere)
67               REQUESTED32,             // kernel will attempt allocation (<4GB)
68
69 } v3_mem_region_type_t;
70
71 struct v3_mem_region {
72     v3_mem_region_type_t type;         // 
73     int                  node;         // numa node for REQUESTED (-1 = any)
74     unsigned long long   base_addr;    // region start (hpa) for PREALLOCATED
75     unsigned long long   num_pages;    // size for PREALLOCATED or request size for REQUESTED
76                                        // should be power of 2 and > V3_CONFIG_MEM_BLOCK
77 } __attribute__((packed));
78
79 struct v3_debug_cmd {
80     unsigned int core; 
81     unsigned int cmd;
82 } __attribute__((packed));
83
84 struct v3_core_move_cmd {
85     unsigned short vcore_id;
86     unsigned short pcore_id;
87 } __attribute__((packed));
88
89 struct v3_mem_move_cmd{
90     unsigned long long gpa;
91     unsigned short     pcore_id;
92 } __attribute__((packed));
93
94 struct v3_chkpt_info {
95     char store[128];
96     char url[256]; /* This might need to be bigger... */
97     unsigned long long opts;
98 #define V3_CHKPT_OPT_NONE         0
99 #define V3_CHKPT_OPT_SKIP_MEM     1  // don't write memory to store
100 #define V3_CHKPT_OPT_SKIP_DEVS    2  // don't write devices to store
101 #define V3_CHKPT_OPT_SKIP_CORES   4  // don't write core arch ind data to store
102 #define V3_CHKPT_OPT_SKIP_ARCHDEP 8  // don't write core arch dep data to store
103 } __attribute__((packed));
104
105
106 struct v3_hw_pci_dev {
107     char name[128];
108     unsigned int bus;
109     unsigned int dev;
110     unsigned int func;
111 } __attribute__((packed));
112
113 struct v3_user_pci_dev {
114     char name[128];
115     unsigned short vendor_id;
116     unsigned short dev_id;
117 } __attribute__((packed));
118
119
120
121 void * trace_malloc(size_t size, gfp_t flags);
122 void trace_free(const void * objp);
123
124
125 struct v3_guest {
126     void * v3_ctx;
127
128     void * img; 
129     u32 img_size;
130
131     char name[128];
132
133
134     struct rb_root vm_ctrls;
135     struct list_head exts;
136
137     dev_t vm_dev; 
138     struct cdev cdev;
139 };
140
141 // For now MAX_VMS must be a multiple of 8
142 // This is due to the minor number bitmap
143 #define MAX_VMS 32
144
145
146
147 int palacios_vmm_init( char *options );
148 int palacios_vmm_exit( void );
149
150
151 // This is how a component finds the proc dir we are using for global state
152 struct proc_dir_entry *palacios_get_procdir(void);
153
154 // Selected exported stubs, for use in other palacios components, like vnet
155 // The idea is that everything uses the same stubs
156 void  palacios_print_scoped(void *vm, int vcore, const char *fmt, ...);
157 #define palacios_print(...) palacios_print_scoped(0,-1, __VA_ARGS__)
158 // node_id=-1 => no node constraint
159 void *palacios_allocate_pages(int num_pages, unsigned int alignment, int node_id, int constraints);
160 void  palacios_free_pages(void *page_addr, int num_pages);
161 void *palacios_alloc(unsigned int size);
162 // node_id=-1 => no node constraint
163 void *palacios_alloc_extended(unsigned int size, unsigned int flags, int node_id);
164 void  palacios_free(void *);
165 void *palacios_valloc(unsigned int size); // use instead of vmalloc
166 void  palacios_vfree(void *);             // use instead of vfree
167 void *palacios_vaddr_to_paddr(void *vaddr);
168 void *palacios_paddr_to_vaddr(void *paddr);
169 void  palacios_xcall(int cpu_id, void (*fn)(void *arg), void *arg);
170 void *palacios_create_and_start_kernel_thread(int (*fn)(void * arg), void *arg, char *thread_name);
171 void *palacios_create_thread_on_cpu(int cpu_id, int (*fn)(void * arg), void *arg, char *thread_name);
172 void  palacios_start_thread(void *thread_ptr);
173 void *palacios_creeate_and_start_thread_on_cpu(int cpu_id, int (*fn)(void * arg), void *arg, char *thread_name);
174 int   palacios_move_thread_to_cpu(int new_cpu_id, void *thread_ptr);
175 void  palacios_yield_cpu(void);
176 void  palacios_sleep_cpu(unsigned int us);
177 unsigned int palacios_get_cpu(void);
178 unsigned int palacios_get_cpu_khz(void);
179 void  palacios_used_fpu(void);
180 void  palacios_need_fpu(void);
181 void *palacios_mutex_alloc(void);         // allocates and inits a lock
182 void  palacios_mutex_init(void *mutex);   // only inits a lock
183 void  palacios_mutex_deinit(void *mutex); // only deinits a lock
184 void  palacios_mutex_free(void *mutex);   // deinits and frees a lock
185 void  palacios_mutex_lock(void *mutex, int must_spin);
186 void  palacios_mutex_unlock(void *mutex);
187 void *palacios_mutex_lock_irqsave(void *mutex, int must_spin);
188 void  palacios_mutex_unlock_irqrestore(void *mutex, void *flags);
189 // Macros for spin-locks in the module code
190 // By using these macros, the lock checker will be able
191 // to see the module code as well as the core VMM
192 #define palacios_spinlock_init(l) palacios_mutex_init(l)
193 #define palacios_spinlock_deinit(l) palacios_mutex_deinit(l)
194 #define palacios_spinlock_lock(l) palacios_mutex_lock(l,0)
195 #define palacios_spinlock_unlock(l) palacios_mutex_unlock(l)
196 #define palacios_spinlock_lock_irqsave(l,f) do { f=(unsigned long)palacios_mutex_lock_irqsave(l,0); } while (0)
197 #define palacios_spinlock_unlock_irqrestore(l,f) palacios_mutex_unlock_irqrestore(l,(void*)f)
198
199
200 // Palacios Printing Support
201
202 // These macros affect how palacios_print will generate output
203 // Turn this on for unprefaced output from palacios_print
204 #define V3_PRINTK_OLD_STYLE_OUTPUT 0
205 // Maximum length output from palacios_print
206 #define V3_PRINTK_BUF_SIZE 1024
207 // Turn this on to check if new-style output for palacios_print  contains only 7-bit chars
208 #define V3_PRINTK_CHECK_7BIT 1
209
210 //
211 // The following macros are for printing in the linux module itself, even before
212 // Palacios is initialized and after it it deinitialized
213 // All printk's in linux_module use these macros, for easier control
214 #define ERROR(fmt, args...) printk((KERN_ERR "palacios (pcore %u) %s(%d): " fmt), palacios_get_cpu(), __FILE__, __LINE__, ##args)
215 #define WARNING(fmt, args...) printk((KERN_WARNING "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
216 #define NOTICE(fmt, args...) printk((KERN_NOTICE "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
217 #define INFO(fmt, args...) printk((KERN_INFO "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
218 #define DEBUG(fmt, args...) printk((KERN_DEBUG "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
219
220
221 #endif