From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8A4D1C433ED for ; Tue, 13 Apr 2021 21:51:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5C45461027 for ; Tue, 13 Apr 2021 21:51:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232228AbhDMVvy (ORCPT ); Tue, 13 Apr 2021 17:51:54 -0400 Received: from smtp-fw-33001.amazon.com ([207.171.190.10]:47320 "EHLO smtp-fw-33001.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230491AbhDMVvy (ORCPT ); Tue, 13 Apr 2021 17:51:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.de; i=@amazon.de; q=dns/txt; s=amazon201209; t=1618350695; x=1649886695; h=from:to:cc:subject:date:message-id:mime-version; bh=/DkrO2gUg58Vl2JO3PCW7Y+6kEN3IaedAlHDNnqPV3Y=; b=dS2kZyNa6iLKFD+SrtXiS00y4NFbyAGB11Pe9IF99kgnuxrSPAWk9E/D XNJJluxSWpVmuAr6xjan5J66OF4hEsYMdlr/ZIK77Ra2G+NuvSwG6Wrid QIvzsp8MwVCFVR/gxM25Q5hMEbeP+t5YR1lHMthMln51KOznGsDFqKTjx Q=; X-IronPort-AV: E=Sophos;i="5.82,220,1613433600"; d="scan'208";a="118207171" Received: from pdx4-co-svc-p1-lb2-vlan2.amazon.com (HELO email-inbound-relay-2b-81e76b79.us-west-2.amazon.com) ([10.25.36.210]) by smtp-border-fw-out-33001.sea14.amazon.com with ESMTP; 13 Apr 2021 21:51:28 +0000 Received: from EX13D28EUC003.ant.amazon.com (pdx1-ws-svc-p6-lb9-vlan3.pdx.amazon.com [10.236.137.198]) by email-inbound-relay-2b-81e76b79.us-west-2.amazon.com (Postfix) with ESMTPS id EE0FEA1BE6; Tue, 13 Apr 2021 21:51:25 +0000 (UTC) Received: from uc8bbc9586ea454.ant.amazon.com (10.43.161.39) by EX13D28EUC003.ant.amazon.com (10.43.164.43) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 13 Apr 2021 21:51:16 +0000 From: Siddharth Chandrasekaran To: "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , Wei Liu , Thomas Gleixner , Ingo Molnar , Borislav Petkov , , "H. Peter Anvin" , Paolo Bonzini , "Sean Christopherson" , Vitaly Kuznetsov , Wanpeng Li , Jim Mattson , "Joerg Roedel" CC: Siddharth Chandrasekaran , Alexander Graf , Evgeny Iakovlev , Liran Alon , Ioannis Aslanidis , , , Subject: [PATCH v3 0/4] Add support for XMM fast hypercalls Date: Tue, 13 Apr 2021 23:50:53 +0200 Message-ID: X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.43.161.39] X-ClientProxiedBy: EX13D30UWC002.ant.amazon.com (10.43.162.235) To EX13D28EUC003.ant.amazon.com (10.43.164.43) Precedence: bulk List-ID: X-Mailing-List: linux-hyperv@vger.kernel.org Hyper-V supports the use of XMM registers to perform fast hypercalls. This allows guests to take advantage of the improved performance of the fast hypercall interface even though a hypercall may require more than (the current maximum of) two general purpose registers. The XMM fast hypercall interface uses an additional six XMM registers (XMM0 to XMM5) to allow the caller to pass an input parameter block of up to 112 bytes. Hyper-V can also return data back to the guest in the remaining XMM registers that are not used by the current hypercall. Although the Hyper-v TLFS mentions that a guest cannot use this feature unless the hypervisor advertises support for it, some hypercalls which we plan on upstreaming in future uses them anyway. This patchset adds necessary infrastructure for handling input/output via XMM registers and patches kvm_hv_flush_tlb() to use xmm input arguments. ~ Sid. v3: - Remove inline for kvm_hv_hypercall_{read,write}_xmm() - Fix typo: s/ouput/output/ - Remove sse128_t from kvm_emulate.h - Reword comment to match TLFS wording - Move num XMM registers macro to hyperv-tlfs.h - Stop advertising HV_X64_HYPERCALL_XMM_OUTPUT_AVAILABLE v2: - Remove inline for kvm_hv_hypercall_{read,write}_xmm() - Fix typo: s/ouput/output/ - Remove sse128_t from kvm_emulate.h - Reword comment to match TLFS wording - Move num XMM registers macro to hyperv-tlfs.h - Stop advertising HV_X64_HYPERCALL_XMM_OUTPUT_AVAILABLE Siddharth Chandrasekaran (4): KVM: x86: Move FPU register accessors into fpu.h KVM: hyper-v: Collect hypercall params into struct KVM: x86: kvm_hv_flush_tlb use inputs from XMM registers KVM: hyper-v: Advertise support for fast XMM hypercalls arch/x86/include/asm/hyperv-tlfs.h | 9 +- arch/x86/kvm/emulate.c | 137 +++--------------- arch/x86/kvm/fpu.h | 140 ++++++++++++++++++ arch/x86/kvm/hyperv.c | 222 +++++++++++++++++++---------- arch/x86/kvm/kvm_emulate.h | 3 +- 5 files changed, 309 insertions(+), 202 deletions(-) create mode 100644 arch/x86/kvm/fpu.h -- 2.17.1 Amazon Development Center Germany GmbH Krausenstr. 38 10117 Berlin Geschaeftsfuehrung: Christian Schlaeger, Jonathan Weiss Eingetragen am Amtsgericht Charlottenburg unter HRB 149173 B Sitz: Berlin Ust-ID: DE 289 237 879