[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH 8/8] x86/hyperv: setup VP assist page


  • To: Wei Liu <wl@xxxxxxx>, Xen Development List <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • From: Michael Kelley <mikelley@xxxxxxxxxxxxx>
  • Date: Sun, 29 Dec 2019 19:59:48 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=microsoft.com; dmarc=pass action=none header.from=microsoft.com; dkim=pass header.d=microsoft.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=2l7Tf0BFa7dg9xBnDzjxQ+nm/GcI4ng2IwwUko0PfMY=; b=a1OI8OJM7LkEN8pG73G5BH3/OaZufCTPcWU5RfoYGKmRIccVqfECP1MSc4x6LqjduqE+c7j56KgoEMModRr5xEzxVbJjXR0W3b3OloY6gUfLDkFT4dBwp/+9oeUSSKlY8gLQEWmx6Wm/Hv0NXjttgFvTwoytWeCSXS2ybOCUxz/nsg4xEgmw3CJcA2GsdLje+1peThTszBaNDBE5CJ4XGqO9Ec0Fkki5baE9bfGU04y6uIglcgWe3ywZq2meLMmU+rZYu3GUKDwOAs8gqn3U26FepWeNx1gQT/Sm/ZYI4Rn7We8OWO0OVZbvDccg6Mcekh0FzHaqUgsgclqasI8j/Q==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=MY9V4EXmM4YI3fOrfktXHx50m474ust6lU71nIVAM6EBdBVnmUGSRv0+dlUvUoBjXTxwkyW6p4B2DWWsNN4kWLB4nw4AqjvcWP3NTI0Wg5402PK9pdB0X22/NjOSSz9OiQFvidZgNviSrzYMEPLjLAJSQcOfFnXsgssD71oY2THRQuaVIjXhC4QnquKHV1K54MlREYq8sLYABSnVyy74vIeOcVvxC/HfVrkMzjdwDgxHX6qQQDBDGwmrqwCMXQEhHAMS2EJBjzBMQ6PUTgNPErofsbzLeycQbOUp+nOUi9bPBxEKKMTUj/tBxpG6gbSIB7+t8bzUKi9iMmjFD1MRTQ==
  • Authentication-results: spf=none (sender IP is ) smtp.mailfrom=mikelley@xxxxxxxxxxxxx;
  • Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Wei Liu <liuwe@xxxxxxxxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Paul Durrant <paul@xxxxxxx>
  • Delivery-date: Sun, 29 Dec 2019 19:59:58 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Msip_labels: MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_Enabled=True; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_SiteId=72f988bf-86f1-41af-91ab-2d7cd011db47; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_Owner=mikelley@xxxxxxxxxxxxxxxxxxx; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_SetDate=2019-12-29T19:59:46.3677382Z; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_Name=General; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_Application=Microsoft Azure Information Protection; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_ActionId=2cb998df-6eac-446a-a63e-56c7f952be0d; MSIP_Label_f42aa342-8706-4288-bd11-ebb85995028c_Extended_MSFT_Method=Automatic
  • Thread-index: AQHVvnaL1q8QIGGzKUezNGpYS7GdM6fRhquQ
  • Thread-topic: [PATCH 8/8] x86/hyperv: setup VP assist page

From: Wei Liu <wei.liu.xen@xxxxxxxxx> On Behalf Of Wei Liu  Sent: Sunday, 
December 29, 2019 10:34 AM
> 
> VP assist page is rather important as we need to toggle some bits in
> that page such that L1 guest can make hypercalls directly to L0 Hyper-V.
> 
> Preemptively split out set_vp_assist page which will be used in the resume
> path.
> 
> Signed-off-by: Wei Liu <liuwe@xxxxxxxxxxxxx>
> ---
>  xen/arch/x86/guest/hyperv/hyperv.c | 35 ++++++++++++++++++++++++++++++
>  xen/include/asm-x86/guest/hyperv.h |  1 +
>  2 files changed, 36 insertions(+)
> 
> diff --git a/xen/arch/x86/guest/hyperv/hyperv.c 
> b/xen/arch/x86/guest/hyperv/hyperv.c
> index da3a8cd85d..a88b9ae6d9 100644
> --- a/xen/arch/x86/guest/hyperv/hyperv.c
> +++ b/xen/arch/x86/guest/hyperv/hyperv.c
> @@ -30,6 +30,7 @@ void *hv_hypercall;
>  static struct page_info *hv_hypercall_page;
>  DEFINE_PER_CPU_READ_MOSTLY(struct hyperv_pcpu_page, hv_pcpu_input_arg);
>  DEFINE_PER_CPU_READ_MOSTLY(unsigned int, hv_vp_index);
> +DEFINE_PER_CPU_READ_MOSTLY(struct hyperv_pcpu_page, hv_vp_assist);
> 
>  static const struct hypervisor_ops ops;
>  const struct hypervisor_ops *__init hyperv_probe(void)
> @@ -125,17 +126,51 @@ static void setup_vp_index(void)
>      this_cpu(hv_vp_index) = vp_index_msr;
>  }
> 
> +static void set_vp_assist(void)
> +{
> +    uint64_t val = paddr_to_pfn(this_cpu(hv_vp_assist).maddr);
> +
> +    val = (val << HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_SHIFT) | 

I'd recommend using HV_HYP_PAGE_SHIFT instead of
HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_SHIFT.  On the Linux side,
I'm planning to remove that #define and the similar
*_PAGE_ADDRESS_MASK in favor of the newer HV_HYP_PAGE_* values.
There's nothing special about the VP assist page, so using the generic
#defines based on the Hyper-V page size is reasonable.

Michael

> +        HV_X64_MSR_VP_ASSIST_PAGE_ENABLE;
> +
> +    wrmsrl(HV_X64_MSR_VP_ASSIST_PAGE, val);
> +}
> +
> +static void setup_vp_assist(void)
> +{
> +    struct page_info *pg;
> +    void *mapping;
> +    unsigned int cpu = smp_processor_id();
> +
> +    pg = alloc_domheap_page(NULL, 0);
> +    if ( !pg )
> +        panic("Failed to allocate vp_assist page for %u\n", cpu);
> +
> +    mapping = __map_domain_page_global(pg);
> +    if ( !mapping )
> +        panic("Failed to map vp_assist page for %u\n", cpu);
> +
> +    clear_page(mapping);
> +
> +    this_cpu(hv_vp_assist).maddr = page_to_maddr(pg);
> +    this_cpu(hv_vp_assist).mapping = mapping;
> +
> +    set_vp_assist();
> +}
> +
>  static void __init setup(void)
>  {
>      setup_hypercall_page();
>      setup_hypercall_pcpu_arg();
>      setup_vp_index();
> +    setup_vp_assist();
>  }
> 
>  static void ap_setup(void)
>  {
>      setup_hypercall_pcpu_arg();
>      setup_vp_index();
> +    setup_vp_assist();
>  }
> 
>  static const struct hypervisor_ops ops = {
> diff --git a/xen/include/asm-x86/guest/hyperv.h 
> b/xen/include/asm-x86/guest/hyperv.h
> index 4b635829f3..917f4e02c2 100644
> --- a/xen/include/asm-x86/guest/hyperv.h
> +++ b/xen/include/asm-x86/guest/hyperv.h
> @@ -71,6 +71,7 @@ struct hyperv_pcpu_page {
>  };
>  DECLARE_PER_CPU(struct hyperv_pcpu_page, hv_pcpu_input_arg);
>  DECLARE_PER_CPU(unsigned int, hv_vp_index);
> +DECLARE_PER_CPU(struct hyperv_pcpu_page, hv_vp_assist);
> 
>  const struct hypervisor_ops *hyperv_probe(void);
> 
> --
> 2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.