X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvm_guest.h;h=a4fca43e1e38a63ee252dc29e328d638e4c374f1;hb=ce0f119828348c3c57a00c4aa268a8a223ccd7f8;hp=9e6ea21cc640b7868919bac357c40b390f890f59;hpb=e8069ad305c7b50fefb0cc602d9ca53324e6cc9e;p=palacios.git diff --git a/palacios/include/palacios/vm_guest.h b/palacios/include/palacios/vm_guest.h index 9e6ea21..a4fca43 100644 --- a/palacios/include/palacios/vm_guest.h +++ b/palacios/include/palacios/vm_guest.h @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -41,17 +42,33 @@ #include #include #include +#include +#include +#include +#include + #ifdef V3_CONFIG_TELEMETRY #include #endif +#ifdef V3_CONFIG_PMU_TELEMETRY +#include +#endif + +#ifdef V3_CONFIG_PWRSTAT_TELEMETRY +#include +#endif #ifdef V3_CONFIG_SYMBIOTIC #include struct v3_sym_core_state; #endif +#ifdef V3_CONFIG_MEM_TRACK +#include +#endif + #include @@ -71,10 +88,19 @@ struct guest_info { struct vm_core_time time_state; struct v3_core_timeouts timeouts; + void * sched_priv_data; v3_paging_mode_t shdw_pg_mode; + // arch-independent state of shadow pager struct v3_shdw_pg_state shdw_pg_state; + // arch-indepedent state of the passthrough pager addr_t direct_map_pt; + // arch-independent state of the nested pager (currently none) + // struct v3_nested_pg_state nested_pg_state; + // per-core state of the swapper (currently none) + //#ifdef V3_CONFIG_SWAPPING + // struct v3_swap_impl_state swap_impl; + //#endif union { @@ -104,7 +130,9 @@ struct guest_info { struct v3_segments segments; struct v3_msrs msrs; + struct v3_fp_state fp_state; + // the arch-dependent state (SVM or VMX) void * vmm_data; uint64_t yield_start_cycle; @@ -115,7 +143,17 @@ struct guest_info { struct v3_core_telemetry core_telem; #endif +#ifdef V3_CONFIG_PMU_TELEMETRY + struct v3_core_pmu_telemetry pmu_telem; +#endif + +#ifdef V3_CONFIG_PWRSTAT_TELEMETRY + struct v3_core_pwrstat_telemetry pwrstat_telem; +#endif +#ifdef V3_CONFIG_MEM_TRACK + struct v3_core_mem_track memtrack_state; +#endif /* struct v3_core_dev_mgr core_dev_mgr; */ void * decoder_state; @@ -139,7 +177,7 @@ struct guest_info { /* The virtual core # of this cpu (what the guest sees this core as) */ uint32_t vcpu_id; - + }; @@ -149,6 +187,7 @@ struct v3_vm_info { char name[128]; v3_vm_class_t vm_class; + struct v3_fw_cfg_state fw_cfg_state; addr_t mem_size; /* In bytes for now */ uint32_t mem_align; @@ -156,7 +195,18 @@ struct v3_vm_info { struct v3_mem_hooks mem_hooks; + // arch-indepentent state of shadow pager struct v3_shdw_impl_state shdw_impl; + // arch-independent state of passthrough pager (currently none) + struct v3_passthrough_impl_state passthrough_impl; + // arch-independent state of the nested pager + struct v3_nested_impl_state nested_impl; +#ifdef V3_CONFIG_SWAPPING + // swapping state, if enabled + struct v3_swap_impl_state swap_state; +#endif + + void * sched_priv_data; struct v3_io_map io_map; struct v3_msr_map msr_map; @@ -185,6 +235,8 @@ struct v3_vm_info { struct v3_extensions extensions; + struct v3_perf_options perf_options; + #ifdef V3_CONFIG_SYMBIOTIC /* Symbiotic state */ struct v3_sym_vm_state sym_vm_state; @@ -195,6 +247,9 @@ struct v3_vm_info { struct v3_telemetry_state telemetry; #endif +#ifdef V3_CONFIG_MEM_TRACK + struct v3_vm_mem_track memtrack_state; +#endif uint64_t yield_cycle_period; @@ -203,6 +258,8 @@ struct v3_vm_info { int num_cores; + int avail_cores; // Available logical cores + // JRL: This MUST be the last entry... struct guest_info cores[0]; };