X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm.h;h=e1a883d9a0be8468967ceb5f8e7b943d9bf33589;hb=2e8b584de26a975655d20d5e94a047a4b286b339;hp=f5bad18ebfe19d0e13fe022f9e5beec647ee3155;hpb=a7dc3322984b3c76fe990de506418e180ec1b0de;p=palacios.git diff --git a/palacios/include/palacios/vmm.h b/palacios/include/palacios/vmm.h index f5bad18..e1a883d 100644 --- a/palacios/include/palacios/vmm.h +++ b/palacios/include/palacios/vmm.h @@ -221,7 +221,10 @@ // Maybe make this a define.... -typedef enum v3_cpu_arch {V3_INVALID_CPU, V3_SVM_CPU, V3_SVM_REV3_CPU, V3_VMX_CPU} v3_cpu_arch_t; +typedef enum v3_cpu_arch {V3_INVALID_CPU, V3_SVM_CPU, V3_SVM_REV3_CPU, V3_VMX_CPU, V3_VMX_EPT_CPU} v3_cpu_arch_t; + + +v3_cpu_mode_t v3_get_host_cpu_mode(); #endif //!__V3VEE__ @@ -257,9 +260,31 @@ struct v3_os_hooks { void (*start_kernel_thread)(int (*fn)(void * arg), void * arg, char * thread_name); void (*yield_cpu)(void); + + void *(*mutex_alloc)(void); + void (*mutex_free)(void * mutex); + void (*mutex_lock)(void * mutex, int must_spin); + void (*mutex_unlock)(void * mutex); }; + +typedef enum {NONE, HARDDRIVE, CDROM, VIRTIO} v3_disk_type_t; +typedef enum {RAM, NETWORK} v3_disk_connection_t; + +union v3_disk_info { + struct { + void * data_ptr; + int size; + } ram; + + struct { + char * ip_str; + int port; + char * disk_name; + } net; +}; + struct v3_vm_config { void * rombios; int rombios_size; @@ -271,17 +296,20 @@ struct v3_vm_config { // so we can specify maximum physical address size // (We're screwed if we want to do 32 bit host/64 bit guest) - int enable_profiling; int enable_nested_paging; int enable_pci; - - int use_ram_cd; - int use_ram_hd; - void * ramdisk; - int ramdisk_size; + int enable_swap; + + v3_disk_type_t pri_disk_type; + v3_disk_connection_t pri_disk_con; + union v3_disk_info pri_disk_info; + + v3_disk_type_t sec_disk_type; + v3_disk_connection_t sec_disk_con; + union v3_disk_info sec_disk_info; }; @@ -290,8 +318,7 @@ struct v3_vm_config { struct v3_ctrl_ops { struct guest_info *(*allocate_guest)(void); - int (*config_guest)(struct guest_info * info, struct v3_vm_config * config_ptr); - int (*init_guest)(struct guest_info * info); + int (*init_guest)(struct guest_info * info, struct v3_vm_config * config_ptr); int (*start_guest)(struct guest_info * info); // int (*stop_vm)(uint_t vm_id); @@ -321,7 +348,7 @@ struct v3_interrupt { void Init_V3(struct v3_os_hooks * hooks, struct v3_ctrl_ops * vmm_ops); int v3_deliver_irq(struct guest_info * vm, struct v3_interrupt * intr); -int v3_deliver_keyboard_evt(struct guest_info * vm); + #endif