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.


Added first cut at options processing for the palacios module
[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
17 #define V3_ADD_PCI_HW_DEV 55
18 #define V3_ADD_PCI_USER_DEV 56
19
20 /* VM Specific IOCTLs */
21 #define V3_VM_CONSOLE_CONNECT 20
22 #define V3_VM_STREAM_CONNECT 21
23
24 #define V3_VM_PAUSE 23
25 #define V3_VM_CONTINUE 24
26
27 #define V3_VM_LAUNCH 25
28 #define V3_VM_STOP 26
29 #define V3_VM_LOAD 27
30 #define V3_VM_SAVE 28
31 #define V3_VM_SIMULATE 29
32
33 #define V3_VM_INSPECT 30
34 #define V3_VM_DEBUG 31
35
36 #define V3_VM_MOVE_CORE 33
37
38 #define V3_VM_SEND    34
39 #define V3_VM_RECEIVE 35
40
41 #define V3_VM_FB_INPUT 257
42 #define V3_VM_FB_QUERY 258
43
44 #define V3_VM_HOST_DEV_CONNECT 10245
45
46 #define V3_VM_KSTREAM_USER_CONNECT 11245
47
48
49 struct v3_guest_img {
50     unsigned long long size;
51     void * guest_data;
52     char name[128];
53 } __attribute__((packed));
54
55 struct v3_mem_region {
56     unsigned long long base_addr;
57     unsigned long long num_pages;
58 } __attribute__((packed));
59
60 struct v3_debug_cmd {
61     unsigned int core; 
62     unsigned int cmd;
63 } __attribute__((packed));
64
65 struct v3_core_move_cmd {
66     unsigned short vcore_id;
67     unsigned short pcore_id;
68 } __attribute__((packed));
69
70 struct v3_chkpt_info {
71     char store[128];
72     char url[256]; /* This might need to be bigger... */
73 } __attribute__((packed));
74
75
76 struct v3_hw_pci_dev {
77     char name[128];
78     unsigned int bus;
79     unsigned int dev;
80     unsigned int func;
81 } __attribute__((packed));
82
83 struct v3_user_pci_dev {
84     char name[128];
85     unsigned short vendor_id;
86     unsigned short dev_id;
87 } __attribute__((packed));
88
89
90
91 void * trace_malloc(size_t size, gfp_t flags);
92 void trace_free(const void * objp);
93
94
95 struct v3_guest {
96     void * v3_ctx;
97
98     void * img; 
99     u32 img_size;
100
101     char name[128];
102
103
104     struct rb_root vm_ctrls;
105     struct list_head exts;
106
107     dev_t vm_dev; 
108     struct cdev cdev;
109 };
110
111 // For now MAX_VMS must be a multiple of 8
112 // This is due to the minor number bitmap
113 #define MAX_VMS 32
114
115
116
117 int palacios_vmm_init( char *options );
118 int palacios_vmm_exit( void );
119
120
121 // This is how a component finds the proc dir we are using for global state
122 struct proc_dir_entry *palacios_get_procdir(void);
123
124 // Selected exported stubs, for use in other palacios components, like vnet
125 // The idea is that everything uses the same stubs
126 void  palacios_print_scoped(void *vm, int vcore, const char *fmt, ...);
127 #define palacios_print(...) palacios_print_scoped(0,-1, __VA_ARGS__)
128 void *palacios_allocate_pages(int num_pages, unsigned int alignment);
129 void  palacios_free_pages(void *page_addr, int num_pages);
130 void *palacios_alloc(unsigned int size);
131 void *palacios_alloc_extended(unsigned int size, unsigned int flags);
132 void  palacios_free(void *);
133 void *palacios_vaddr_to_paddr(void *vaddr);
134 void *palacios_paddr_to_vaddr(void *paddr);
135 void *palacios_start_kernel_thread(int (*fn)(void * arg), void *arg, char *thread_name);
136 void *palacios_start_thread_on_cpu(int cpu_id, int (*fn)(void * arg), void *arg, char *thread_name);
137 int   palacios_move_thread_to_cpu(int new_cpu_id, void *thread_ptr);
138 void  palacios_yield_cpu(void);
139 void  palacios_yield_cpu_timed(unsigned int us);
140 unsigned int palacios_get_cpu(void);
141 unsigned int palacios_get_cpu_khz(void);
142 void *palacios_mutex_alloc(void);
143 void  palacios_mutex_free(void *mutex);
144 void  palacios_mutex_lock(void *mutex, int must_spin);
145 void  palacios_mutex_unlock(void *mutex);
146 void *palacios_mutex_lock_irqsave(void *mutex, int must_spin);
147 void  palacios_mutex_unlock_irqrestore(void *mutex, void *flags);
148
149
150
151 // Palacios Printing Support
152
153 // These macros affect how palacios_print will generate output
154 // Turn this on for unprefaced output from palacios_print
155 #define V3_PRINTK_OLD_STYLE_OUTPUT 0
156 // Maximum length output from palacios_print
157 #define V3_PRINTK_BUF_SIZE 1024
158 // Turn this on to check if new-style output for palacios_print  contains only 7-bit chars
159 #define V3_PRINTK_CHECK_7BIT 1
160
161 //
162 // The following macros are for printing in the linux module itself, even before
163 // Palacios is initialized and after it it deinitialized
164 // All printk's in linux_module use these macros, for easier control
165 #define ERROR(fmt, args...) printk((KERN_ERR "palacios (pcore %u) %s(%d): " fmt), palacios_get_cpu(), __FILE__, __LINE__, ##args)
166 #define WARNING(fmt, args...) printk((KERN_WARNING "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
167 #define NOTICE(fmt, args...) printk((KERN_NOTICE "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
168 #define INFO(fmt, args...) printk((KERN_INFO "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
169 #define DEBUG(fmt, args...) printk((KERN_DEBUG "palacios (pcore %u): " fmt), palacios_get_cpu(), ##args)
170
171
172 #endif