From: Wei Liu <wl@xen.org>
To: Xen Development List <xen-devel@lists.xenproject.org>
Cc: "Wei Liu" <liuwe@microsoft.com>, "Wei Liu" <wl@xen.org>,
"Paul Durrant" <paul@xen.org>,
"Andrew Cooper" <andrew.cooper3@citrix.com>,
"Michael Kelley" <mikelley@microsoft.com>,
"Jan Beulich" <jbeulich@suse.com>,
"Roger Pau Monné" <roger.pau@citrix.com>
Subject: [Xen-devel] [PATCH v2 5/8] x86/hyperv: provide Hyper-V hypercall functions
Date: Fri, 3 Jan 2020 16:08:22 +0000 [thread overview]
Message-ID: <20200103160825.19377-6-liuwe@microsoft.com> (raw)
In-Reply-To: <20200103160825.19377-1-liuwe@microsoft.com>
These functions will be used later to make hypercalls to Hyper-V.
I couldn't find reference in TLFS that Hyper-V clobbers flags and
r9-r11, but Linux's commit message says it does. Err on the safe side.
Signed-off-by: Wei Liu <liuwe@microsoft.com>
---
v2:
1. Use direct call
---
xen/include/asm-x86/guest/hyperv-hypercall.h | 95 ++++++++++++++++++++
1 file changed, 95 insertions(+)
create mode 100644 xen/include/asm-x86/guest/hyperv-hypercall.h
diff --git a/xen/include/asm-x86/guest/hyperv-hypercall.h b/xen/include/asm-x86/guest/hyperv-hypercall.h
new file mode 100644
index 0000000000..928d85ae7e
--- /dev/null
+++ b/xen/include/asm-x86/guest/hyperv-hypercall.h
@@ -0,0 +1,95 @@
+/******************************************************************************
+ * asm-x86/guest/hyperv-hypercall.h
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms and conditions of the GNU General Public
+ * License, version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (c) 2019 Microsoft.
+ */
+
+#ifndef __X86_HYPERV_HYPERCALL_H__
+#define __X86_HYPERV_HYPERCALL_H__
+
+#include <xen/types.h>
+
+#include <asm/asm_defns.h>
+#include <asm/guest/hyperv-tlfs.h>
+#include <asm/page.h>
+
+static inline uint64_t hv_do_hypercall(uint64_t control, paddr_t input, paddr_t output)
+{
+ uint64_t status;
+
+ asm volatile ("mov %[output], %%r8\n"
+ "call hv_hypercall_page"
+ : "=a" (status), "+c" (control),
+ "+d" (input) ASM_CALL_CONSTRAINT
+ : [output] "rm" (output)
+ : "cc", "memory", "r8", "r9", "r10", "r11");
+
+ return status;
+}
+
+static inline uint64_t hv_do_fast_hypercall(uint16_t code,
+ uint64_t input1, uint64_t input2)
+{
+ uint64_t status;
+ uint64_t control = (uint64_t)code | HV_HYPERCALL_FAST_BIT;
+
+ asm volatile ("mov %[input2], %%r8\n"
+ "call hv_hypercall_page"
+ : "=a" (status), "+c" (control),
+ "+d" (input1) ASM_CALL_CONSTRAINT
+ : [input2] "rm" (input2)
+ : "cc", "r8", "r9", "r10", "r11");
+
+ return status;
+}
+
+static inline uint64_t hv_do_rep_hypercall(uint16_t code, uint16_t rep_count,
+ uint16_t varhead_size,
+ paddr_t input, paddr_t output)
+{
+ uint64_t control = code;
+ uint64_t status;
+ uint16_t rep_comp;
+
+ control |= (uint64_t)varhead_size << HV_HYPERCALL_VARHEAD_OFFSET;
+ control |= (uint64_t)rep_count << HV_HYPERCALL_REP_COMP_OFFSET;
+
+ do {
+ status = hv_do_hypercall(control, input, output);
+ if ( (status & HV_HYPERCALL_RESULT_MASK) != HV_STATUS_SUCCESS )
+ break;
+
+ rep_comp = (status & HV_HYPERCALL_REP_COMP_MASK) >>
+ HV_HYPERCALL_REP_COMP_OFFSET;
+
+ control &= ~HV_HYPERCALL_REP_START_MASK;
+ control |= (uint64_t)rep_comp << HV_HYPERCALL_REP_COMP_OFFSET;
+
+ } while ( rep_comp < rep_count );
+
+ return status;
+}
+
+#endif /* __X86_HYPERV_HYPERCALL_H__ */
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */
--
2.20.1
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2020-01-03 16:09 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-03 16:08 [Xen-devel] [PATCH v2 0/8] More Hyper-V infrastructure Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 1/8] x86: include xen/lib.h in guest/pvh-boot.h Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 2/8] x86/hyperv: detect absolutely necessary MSRs Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 3/8] x86: rename guest/hypercall.h to guest/xen-hypercall.h Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 4/8] x86/hyperv: setup hypercall page Wei Liu
2020-01-03 16:08 ` Wei Liu [this message]
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 6/8] x86/hyperv: provide percpu hypercall input page Wei Liu
2020-01-03 16:30 ` Andrew Cooper
2020-01-03 16:55 ` Wei Liu
2020-01-03 16:57 ` Andrew Cooper
2020-01-03 17:02 ` Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 7/8] x86/hyperv: retrieve vp_index from Hyper-V Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 8/8] x86/hyperv: setup VP assist page Wei Liu
2020-01-05 16:41 ` Wei Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200103160825.19377-6-liuwe@microsoft.com \
--to=wl@xen.org \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.com \
--cc=liuwe@microsoft.com \
--cc=mikelley@microsoft.com \
--cc=paul@xen.org \
--cc=roger.pau@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.