[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH for-4.5 v6 02/16] tools: Add vmware_hw support
This is used to set HVM_PARAM_VMWARE_HW. It is set to the VMware virtual hardware version. Currently 0, 3-4, 6-11 are good values. However the code only checks for == 0 or != 0. If non-zero then default VGA to VMware's VGA. Also now allows vga=vmware Signed-off-by: Don Slutz <dslutz@xxxxxxxxxxx> --- v5: Anything looking for Xen according to the Xen cpuid instructions... Adjusted doc to new wording. docs/man/xl.cfg.pod.5 | 21 +++++++++++++++++++-- docs/misc/hypervisor-cpuid.markdown | 28 ++++++++++++++++++++++++++++ tools/libxc/xc_domain_restore.c | 14 ++++++++++++++ tools/libxc/xc_domain_save.c | 11 +++++++++++ tools/libxc/xg_save_restore.h | 2 ++ tools/libxl/libxl.h | 10 ++++++++++ tools/libxl/libxl_create.c | 4 +++- tools/libxl/libxl_dm.c | 10 +++++++++- tools/libxl/libxl_dom.c | 2 ++ tools/libxl/libxl_types.idl | 2 ++ tools/libxl/xl_cmdimpl.c | 11 ++++++++++- 11 files changed, 110 insertions(+), 5 deletions(-) create mode 100644 docs/misc/hypervisor-cpuid.markdown diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 517ae2f..367b401 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1147,6 +1147,23 @@ some other Operating Systems and in some circumstance can prevent Xen's own paravirtualisation interfaces for HVM guests from being used. +=item B<vmware_hw=NUMBER> + +Turns on or off the exposure of VMware cpuid. The number is the +VMware's hardware version number, where 0 is off. If not zero it +changes the default VGA to VMware's VGA. + +The hardware version number (vmware_hw) come from VMware config files. + +=over 4 + +In a .vmx it is virtualHW.version + +In a .ovf it is part of the value of vssd:VirtualSystemType. +For vssd:VirtualSystemType == vmx-07, vmware_hw = 7. + +=back + =back =head3 Emulated VGA Graphics Device @@ -1185,8 +1202,8 @@ This option is deprecated, use vga="stdvga" instead. =item B<vga="STRING"> -Selects the emulated video card (none|stdvga|cirrus). -The default is cirrus. +Selects the emulated video card (none|stdvga|cirrus|vmware). +The default is cirrus (or vmware if B<vmware_hw> is not zero). =item B<vnc=BOOLEAN> diff --git a/docs/misc/hypervisor-cpuid.markdown b/docs/misc/hypervisor-cpuid.markdown new file mode 100644 index 0000000..901a4e1 --- /dev/null +++ b/docs/misc/hypervisor-cpuid.markdown @@ -0,0 +1,28 @@ +Hypervisor Cpuid +================ + +The support of hypervisor cpuid leaves has not been agreed to. +Other then the range 0x40000000 to 0x400000ff can be used by +hypervisors. + +MicroSoft Hyper-V (AKA viridian) currently must be at 0x40000000. + +VMware currently must be at 0x40000000. + +KVM currently must be at 0x40000000 (from Seabios). + +Xen can be found at the first otherwise unused 0x100 aligned +offset between 0x40000000 and 0x40010000. + +http://download.microsoft.com/download/F/B/0/FB0D01A3-8E3A-4F5F-AA59-08C8026D3B8A/requirements-for-implementing-microsoft-hypervisor-interface.docx + +http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1009458 + +http://lwn.net/Articles/301888/ + Attempted to get this cleaned up. + +So if Viridian or VMware_hw is selected, return their format for the +range 0x40000000 to 0x400000ff. And return Xen format for the range +0x40000100 to 0x400001ff. + +Otherwise return Xen format for the range 0x40000000 to 0x400000ff. diff --git a/tools/libxc/xc_domain_restore.c b/tools/libxc/xc_domain_restore.c index b9a56d5..bc5cd57 100644 --- a/tools/libxc/xc_domain_restore.c +++ b/tools/libxc/xc_domain_restore.c @@ -743,6 +743,7 @@ typedef struct { uint64_t vm_generationid_addr; uint64_t ioreq_server_pfn; uint64_t nr_ioreq_server_pages; + uint64_t vmware_hw; struct toolstack_data_t tdata; } pagebuf_t; @@ -927,6 +928,16 @@ static int pagebuf_get_one(xc_interface *xch, struct restore_ctx *ctx, } return pagebuf_get_one(xch, ctx, buf, fd, dom); + case XC_SAVE_ID_HVM_VMWARE_HW: + /* Skip padding 4 bytes then read the vmware hw version. */ + if ( RDEXACT(fd, &buf->vmware_hw, sizeof(uint32_t)) || + RDEXACT(fd, &buf->vmware_hw, sizeof(uint64_t)) ) + { + PERROR("error read the vmware_hw value"); + return -1; + } + return pagebuf_get_one(xch, ctx, buf, fd, dom); + case XC_SAVE_ID_TOOLSTACK: { if ( RDEXACT(fd, &buf->tdata.len, sizeof(buf->tdata.len)) ) @@ -1760,6 +1771,9 @@ int xc_domain_restore(xc_interface *xch, int io_fd, uint32_t dom, } } + if (pagebuf.vmware_hw != 0) + xc_set_hvm_param(xch, dom, HVM_PARAM_VMWARE_HW, pagebuf.vmware_hw); + if (pagebuf.acpi_ioport_location == 1) { DBGPRINTF("Use new firmware ioport from the checkpoint\n"); xc_hvm_param_set(xch, dom, HVM_PARAM_ACPI_IOPORTS_LOCATION, 1); diff --git a/tools/libxc/xc_domain_save.c b/tools/libxc/xc_domain_save.c index 254fdb3..76dc307 100644 --- a/tools/libxc/xc_domain_save.c +++ b/tools/libxc/xc_domain_save.c @@ -1750,6 +1750,17 @@ int xc_domain_save(xc_interface *xch, int io_fd, uint32_t dom, uint32_t max_iter PERROR("Error when writing the ioreq server gmfn count"); goto out; } + + chunk.id = XC_SAVE_ID_HVM_VMWARE_HW; + chunk.data = 0; + xc_hvm_param_get(xch, dom, HVM_PARAM_VMWARE_HW, &chunk.data); + + if ( (chunk.data != 0) && + wrexact(io_fd, &chunk, sizeof(chunk)) ) + { + PERROR("Error when writing the vmware_hw value"); + goto out; + } } if ( callbacks != NULL && callbacks->toolstack_save != NULL ) diff --git a/tools/libxc/xg_save_restore.h b/tools/libxc/xg_save_restore.h index bdd9009..d185ba9 100644 --- a/tools/libxc/xg_save_restore.h +++ b/tools/libxc/xg_save_restore.h @@ -262,6 +262,8 @@ /* These are a pair; it is an error for one to exist without the other */ #define XC_SAVE_ID_HVM_IOREQ_SERVER_PFN -19 #define XC_SAVE_ID_HVM_NR_IOREQ_SERVER_PAGES -20 +/* VMware data */ +#define XC_SAVE_ID_HVM_VMWARE_HW -21 /* ** We process save/restore/migrate in batches of pages; the below diff --git a/tools/libxl/libxl.h b/tools/libxl/libxl.h index bc68cac..14048e4 100644 --- a/tools/libxl/libxl.h +++ b/tools/libxl/libxl.h @@ -145,6 +145,16 @@ #define LIBXL_HAVE_BUILDINFO_IOMEM_START_GFN 1 /* + * The libxl_vga_interface_type has the type for vmware. + */ +#define LIBXL_HAVE_LIBXL_VGA_INTERFACE_TYPE_VMWARE 1 + +/* + * libxl_domain_build_info has the u.hvm.vmware_hw field. + */ +#define LIBXL_HAVE_BUILDINFO_HVM_VMWARE_HW 1 + +/* * libxl ABI compatibility * * The only guarantee which libxl makes regarding ABI compatibility diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c index f7f178e..da79a18 100644 --- a/tools/libxl/libxl_create.c +++ b/tools/libxl/libxl_create.c @@ -428,13 +428,15 @@ int libxl__domain_build(libxl__gc *gc, vments[4] = "start_time"; vments[5] = libxl__sprintf(gc, "%lu.%02d", start_time.tv_sec,(int)start_time.tv_usec/10000); - localents = libxl__calloc(gc, 7, sizeof(char *)); + localents = libxl__calloc(gc, 9, sizeof(char *)); localents[0] = "platform/acpi"; localents[1] = libxl_defbool_val(info->u.hvm.acpi) ? "1" : "0"; localents[2] = "platform/acpi_s3"; localents[3] = libxl_defbool_val(info->u.hvm.acpi_s3) ? "1" : "0"; localents[4] = "platform/acpi_s4"; localents[5] = libxl_defbool_val(info->u.hvm.acpi_s4) ? "1" : "0"; + localents[6] = "platform/vmware_hw"; + localents[7] = libxl__sprintf(gc, "%"PRId64, info->u.hvm.vmware_hw); break; case LIBXL_DOMAIN_TYPE_PV: diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index 103cbca..d27b364 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -243,6 +243,9 @@ static char ** libxl__build_device_model_args_old(libxl__gc *gc, case LIBXL_VGA_INTERFACE_TYPE_NONE: flexarray_append_pair(dm_args, "-vga", "none"); break; + case LIBXL_VGA_INTERFACE_TYPE_VMWARE: + flexarray_append_pair(dm_args, "-vga", "vmware"); + break; } if (b_info->u.hvm.boot) { @@ -555,7 +558,12 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, break; case LIBXL_VGA_INTERFACE_TYPE_NONE: break; - } + case LIBXL_VGA_INTERFACE_TYPE_VMWARE: + flexarray_append_pair(dm_args, "-device", + GCSPRINTF("vmware-svga,vgamem_mb=%d", + libxl__sizekb_to_mb(b_info->video_memkb))); + break; + } if (b_info->u.hvm.boot) { flexarray_vappend(dm_args, "-boot", diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c index ce0c4ac..be55d5f 100644 --- a/tools/libxl/libxl_dom.c +++ b/tools/libxl/libxl_dom.c @@ -219,6 +219,8 @@ static void hvm_set_conf_params(xc_interface *handle, uint32_t domid, libxl_defbool_val(info->u.hvm.viridian)); xc_hvm_param_set(handle, domid, HVM_PARAM_HPET_ENABLED, libxl_defbool_val(info->u.hvm.hpet)); + xc_set_hvm_param(handle, domid, HVM_PARAM_VMWARE_HW, + info->u.hvm.vmware_hw); #endif xc_hvm_param_set(handle, domid, HVM_PARAM_TIMER_MODE, timer_mode(info)); xc_hvm_param_set(handle, domid, HVM_PARAM_VPT_ALIGN, diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl index f1fcbc3..907572c 100644 --- a/tools/libxl/libxl_types.idl +++ b/tools/libxl/libxl_types.idl @@ -172,6 +172,7 @@ libxl_vga_interface_type = Enumeration("vga_interface_type", [ (1, "CIRRUS"), (2, "STD"), (3, "NONE"), + (4, "VMWARE"), ], init_val = "LIBXL_VGA_INTERFACE_TYPE_CIRRUS") libxl_vendor_device = Enumeration("vendor_device", [ @@ -378,6 +379,7 @@ libxl_domain_build_info = Struct("domain_build_info",[ ("timeoffset", string), ("hpet", libxl_defbool), ("vpt_align", libxl_defbool), + ("vmware_hw", UInt(64, init_val = 0)), ("timer_mode", libxl_timer_mode), ("nested_hvm", libxl_defbool), ("smbios_firmware", string), diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 698b3bc..2119bd6 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -1038,6 +1038,8 @@ static void parse_config_data(const char *config_source, xlu_cfg_get_defbool(config, "hpet", &b_info->u.hvm.hpet, 0); xlu_cfg_get_defbool(config, "vpt_align", &b_info->u.hvm.vpt_align, 0); + if (!xlu_cfg_get_long(config, "vmware_hw", &l, 1)) + b_info->u.hvm.vmware_hw = l; if (!xlu_cfg_get_long(config, "timer_mode", &l, 1)) { const char *s = libxl_timer_mode_to_string(l); fprintf(stderr, "WARNING: specifying \"timer_mode\" as an integer is deprecated. " @@ -1676,13 +1678,20 @@ skip_vfb: b_info->u.hvm.vga.kind = LIBXL_VGA_INTERFACE_TYPE_CIRRUS; } else if (!strcmp(buf, "none")) { b_info->u.hvm.vga.kind = LIBXL_VGA_INTERFACE_TYPE_NONE; + } else if (!strcmp(buf, "vmware")) { + b_info->u.hvm.vga.kind = LIBXL_VGA_INTERFACE_TYPE_VMWARE; } else { fprintf(stderr, "Unknown vga \"%s\" specified\n", buf); exit(1); } } else if (!xlu_cfg_get_long(config, "stdvga", &l, 0)) b_info->u.hvm.vga.kind = l ? LIBXL_VGA_INTERFACE_TYPE_STD : - LIBXL_VGA_INTERFACE_TYPE_CIRRUS; + b_info->u.hvm.vmware_hw ? LIBXL_VGA_INTERFACE_TYPE_VMWARE : + LIBXL_VGA_INTERFACE_TYPE_CIRRUS; + else + b_info->u.hvm.vga.kind = + b_info->u.hvm.vmware_hw ? LIBXL_VGA_INTERFACE_TYPE_VMWARE : + LIBXL_VGA_INTERFACE_TYPE_CIRRUS; xlu_cfg_replace_string (config, "keymap", &b_info->u.hvm.keymap, 0); xlu_cfg_get_defbool (config, "spice", &b_info->u.hvm.spice.enable, 0); -- 1.8.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |