2019-05-29 23:57:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-07-13 23:02:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009, Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Haiyang Zhang <haiyangz@microsoft.com>
|
|
|
|
* Hank Janssen <hjanssen@microsoft.com>
|
|
|
|
*/
|
2011-03-29 20:58:47 +00:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2021-10-25 12:21:11 +00:00
|
|
|
#include <linux/io.h>
|
2009-08-18 00:22:08 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2009-07-29 21:00:13 +00:00
|
|
|
#include <linux/vmalloc.h>
|
2011-10-04 19:29:52 +00:00
|
|
|
#include <linux/hyperv.h>
|
2018-03-05 05:17:18 +00:00
|
|
|
#include <linux/random.h>
|
2015-01-10 07:54:32 +00:00
|
|
|
#include <linux/clockchips.h>
|
2021-04-16 14:34:49 +00:00
|
|
|
#include <linux/delay.h>
|
2021-03-02 21:38:18 +00:00
|
|
|
#include <linux/interrupt.h>
|
2019-07-01 04:25:56 +00:00
|
|
|
#include <clocksource/hyperv_timer.h>
|
2015-01-10 07:54:32 +00:00
|
|
|
#include <asm/mshyperv.h>
|
2023-08-18 10:29:14 +00:00
|
|
|
#include <linux/set_memory.h>
|
2011-05-13 02:34:28 +00:00
|
|
|
#include "hyperv_vmbus.h"
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2009-07-27 20:47:24 +00:00
|
|
|
/* The one and only */
|
2018-10-18 05:09:28 +00:00
|
|
|
struct hv_context hv_context;
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2010-03-04 22:11:00 +00:00
|
|
|
/*
|
2010-11-08 22:04:42 +00:00
|
|
|
* hv_init - Main initialization routine.
|
2009-09-01 03:23:33 +00:00
|
|
|
*
|
|
|
|
* This routine must be called before any other routines in here are called
|
|
|
|
*/
|
2010-11-08 22:04:42 +00:00
|
|
|
int hv_init(void)
|
2009-07-13 23:02:34 +00:00
|
|
|
{
|
2017-02-12 06:02:19 +00:00
|
|
|
hv_context.cpu_context = alloc_percpu(struct hv_per_cpu_context);
|
|
|
|
if (!hv_context.cpu_context)
|
|
|
|
return -ENOMEM;
|
2011-08-25 16:48:51 +00:00
|
|
|
return 0;
|
2009-07-13 23:02:34 +00:00
|
|
|
}
|
|
|
|
|
2010-03-04 22:11:00 +00:00
|
|
|
/*
|
2010-11-08 22:04:42 +00:00
|
|
|
* hv_post_message - Post a message using the hypervisor message IPC.
|
2009-09-01 03:23:33 +00:00
|
|
|
*
|
|
|
|
* This involves a hypercall.
|
|
|
|
*/
|
2012-03-28 06:58:07 +00:00
|
|
|
int hv_post_message(union hv_connection_id connection_id,
|
2024-05-31 10:48:41 +00:00
|
|
|
enum hv_message_type message_type,
|
|
|
|
void *payload, size_t payload_size)
|
2009-07-13 23:02:34 +00:00
|
|
|
{
|
2010-11-08 22:04:41 +00:00
|
|
|
struct hv_input_post_message *aligned_msg;
|
2023-04-08 21:34:41 +00:00
|
|
|
unsigned long flags;
|
2015-12-15 00:01:40 +00:00
|
|
|
u64 status;
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2010-11-08 22:04:41 +00:00
|
|
|
if (payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT)
|
2011-06-06 22:50:09 +00:00
|
|
|
return -EMSGSIZE;
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2023-04-08 21:34:41 +00:00
|
|
|
local_irq_save(flags);
|
|
|
|
|
2023-08-24 08:07:09 +00:00
|
|
|
/*
|
|
|
|
* A TDX VM with the paravisor must use the decrypted post_msg_page: see
|
|
|
|
* the comment in struct hv_per_cpu_context. A SNP VM with the paravisor
|
|
|
|
* can use the encrypted hyperv_pcpu_input_arg because it copies the
|
|
|
|
* input into the GHCB page, which has been decrypted by the paravisor.
|
|
|
|
*/
|
|
|
|
if (hv_isolation_type_tdx() && ms_hyperv.paravisor_present)
|
|
|
|
aligned_msg = this_cpu_ptr(hv_context.cpu_context)->post_msg_page;
|
|
|
|
else
|
|
|
|
aligned_msg = *this_cpu_ptr(hyperv_pcpu_input_arg);
|
|
|
|
|
2010-11-08 22:04:41 +00:00
|
|
|
aligned_msg->connectionid = connection_id;
|
2014-08-29 01:29:52 +00:00
|
|
|
aligned_msg->reserved = 0;
|
2010-11-08 22:04:41 +00:00
|
|
|
aligned_msg->message_type = message_type;
|
|
|
|
aligned_msg->payload_size = payload_size;
|
|
|
|
memcpy((void *)aligned_msg->payload, payload, payload_size);
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2023-08-24 08:07:09 +00:00
|
|
|
if (ms_hyperv.paravisor_present) {
|
|
|
|
if (hv_isolation_type_tdx())
|
|
|
|
status = hv_tdx_hypercall(HVCALL_POST_MESSAGE,
|
|
|
|
virt_to_phys(aligned_msg), 0);
|
|
|
|
else if (hv_isolation_type_snp())
|
|
|
|
status = hv_ghcb_hypercall(HVCALL_POST_MESSAGE,
|
|
|
|
aligned_msg, NULL,
|
|
|
|
sizeof(*aligned_msg));
|
|
|
|
else
|
|
|
|
status = HV_STATUS_INVALID_PARAMETER;
|
|
|
|
} else {
|
2021-10-25 12:21:12 +00:00
|
|
|
status = hv_do_hypercall(HVCALL_POST_MESSAGE,
|
2024-05-31 10:48:41 +00:00
|
|
|
aligned_msg, NULL);
|
2023-08-24 08:07:09 +00:00
|
|
|
}
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2023-04-08 21:34:41 +00:00
|
|
|
local_irq_restore(flags);
|
2017-05-18 17:46:07 +00:00
|
|
|
|
2021-04-17 00:43:03 +00:00
|
|
|
return hv_result(status);
|
2009-07-13 23:02:34 +00:00
|
|
|
}
|
|
|
|
|
2013-06-19 03:28:10 +00:00
|
|
|
int hv_synic_alloc(void)
|
|
|
|
{
|
2023-08-18 10:29:14 +00:00
|
|
|
int cpu, ret = -ENOMEM;
|
2018-08-10 23:06:11 +00:00
|
|
|
struct hv_per_cpu_context *hv_cpu;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, zero all per-cpu memory areas so hv_synic_free() can
|
|
|
|
* detect what memory has been allocated and cleanup properly
|
|
|
|
* after any failures.
|
|
|
|
*/
|
|
|
|
for_each_present_cpu(cpu) {
|
|
|
|
hv_cpu = per_cpu_ptr(hv_context.cpu_context, cpu);
|
|
|
|
memset(hv_cpu, 0, sizeof(*hv_cpu));
|
|
|
|
}
|
2013-06-19 03:28:10 +00:00
|
|
|
|
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-12 21:03:40 +00:00
|
|
|
hv_context.hv_numa_map = kcalloc(nr_node_ids, sizeof(struct cpumask),
|
2018-03-05 05:17:12 +00:00
|
|
|
GFP_KERNEL);
|
2024-05-31 10:48:41 +00:00
|
|
|
if (!hv_context.hv_numa_map) {
|
2015-08-05 07:52:38 +00:00
|
|
|
pr_err("Unable to allocate NUMA map\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2016-12-07 09:16:25 +00:00
|
|
|
for_each_present_cpu(cpu) {
|
2018-08-10 23:06:11 +00:00
|
|
|
hv_cpu = per_cpu_ptr(hv_context.cpu_context, cpu);
|
2017-02-12 06:02:19 +00:00
|
|
|
|
|
|
|
tasklet_init(&hv_cpu->msg_dpc,
|
2024-05-31 10:48:41 +00:00
|
|
|
vmbus_on_msg_dpc, (unsigned long)hv_cpu);
|
2017-02-12 06:02:19 +00:00
|
|
|
|
2023-08-24 08:07:09 +00:00
|
|
|
if (ms_hyperv.paravisor_present && hv_isolation_type_tdx()) {
|
|
|
|
hv_cpu->post_msg_page = (void *)get_zeroed_page(GFP_ATOMIC);
|
2024-05-31 10:48:41 +00:00
|
|
|
if (!hv_cpu->post_msg_page) {
|
2023-08-24 08:07:09 +00:00
|
|
|
pr_err("Unable to allocate post msg page\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = set_memory_decrypted((unsigned long)hv_cpu->post_msg_page, 1);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to decrypt post msg page: %d\n", ret);
|
|
|
|
/* Just leak the page, as it's unsafe to free the page. */
|
|
|
|
hv_cpu->post_msg_page = NULL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(hv_cpu->post_msg_page, 0, PAGE_SIZE);
|
|
|
|
}
|
|
|
|
|
2021-10-25 12:21:11 +00:00
|
|
|
/*
|
|
|
|
* Synic message and event pages are allocated by paravisor.
|
|
|
|
* Skip these pages allocation here.
|
|
|
|
*/
|
x86/hyperv: Introduce a global variable hyperv_paravisor_present
The new variable hyperv_paravisor_present is set only when the VM
is a SNP/TDX VM with the paravisor running: see ms_hyperv_init_platform().
We introduce hyperv_paravisor_present because we can not use
ms_hyperv.paravisor_present in arch/x86/include/asm/mshyperv.h:
struct ms_hyperv_info is defined in include/asm-generic/mshyperv.h, which
is included at the end of arch/x86/include/asm/mshyperv.h, but at the
beginning of arch/x86/include/asm/mshyperv.h, we would already need to use
struct ms_hyperv_info in hv_do_hypercall().
We use hyperv_paravisor_present only in include/asm-generic/mshyperv.h,
and use ms_hyperv.paravisor_present elsewhere. In the future, we'll
introduce a hypercall function structure for different VM types, and
at boot time, the right function pointers would be written into the
structure so that runtime testing of TDX vs. SNP vs. normal will be
avoided and hyperv_paravisor_present will no longer be needed.
Call hv_vtom_init() when it's a VBS VM or when ms_hyperv.paravisor_present
is true, i.e. the VM is a SNP VM or TDX VM with the paravisor.
Enhance hv_vtom_init() for a TDX VM with the paravisor.
In hv_common_cpu_init(), don't decrypt the hyperv_pcpu_input_arg
for a TDX VM with the paravisor, just like we don't decrypt the page
for a SNP VM with the paravisor.
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Tianyu Lan <tiala@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20230824080712.30327-7-decui@microsoft.com
2023-08-24 08:07:08 +00:00
|
|
|
if (!ms_hyperv.paravisor_present && !hv_root_partition) {
|
2021-10-25 12:21:11 +00:00
|
|
|
hv_cpu->synic_message_page =
|
|
|
|
(void *)get_zeroed_page(GFP_ATOMIC);
|
2024-05-31 10:48:41 +00:00
|
|
|
if (!hv_cpu->synic_message_page) {
|
2021-10-25 12:21:11 +00:00
|
|
|
pr_err("Unable to allocate SYNIC message page\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
hv_cpu->synic_event_page =
|
|
|
|
(void *)get_zeroed_page(GFP_ATOMIC);
|
2024-05-31 10:48:41 +00:00
|
|
|
if (!hv_cpu->synic_event_page) {
|
2021-10-25 12:21:11 +00:00
|
|
|
pr_err("Unable to allocate SYNIC event page\n");
|
2023-08-24 08:07:05 +00:00
|
|
|
|
|
|
|
free_page((unsigned long)hv_cpu->synic_message_page);
|
|
|
|
hv_cpu->synic_message_page = NULL;
|
2021-10-25 12:21:11 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2013-06-19 03:28:10 +00:00
|
|
|
}
|
2023-08-18 10:29:14 +00:00
|
|
|
|
2023-08-24 08:07:05 +00:00
|
|
|
if (!ms_hyperv.paravisor_present &&
|
2023-08-24 08:07:11 +00:00
|
|
|
(hv_isolation_type_snp() || hv_isolation_type_tdx())) {
|
2023-08-18 10:29:14 +00:00
|
|
|
ret = set_memory_decrypted((unsigned long)
|
|
|
|
hv_cpu->synic_message_page, 1);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to decrypt SYNIC msg page: %d\n", ret);
|
|
|
|
hv_cpu->synic_message_page = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free the event page here so that hv_synic_free()
|
|
|
|
* won't later try to re-encrypt it.
|
|
|
|
*/
|
|
|
|
free_page((unsigned long)hv_cpu->synic_event_page);
|
|
|
|
hv_cpu->synic_event_page = NULL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = set_memory_decrypted((unsigned long)
|
|
|
|
hv_cpu->synic_event_page, 1);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to decrypt SYNIC event page: %d\n", ret);
|
|
|
|
hv_cpu->synic_event_page = NULL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(hv_cpu->synic_message_page, 0, PAGE_SIZE);
|
|
|
|
memset(hv_cpu->synic_event_page, 0, PAGE_SIZE);
|
|
|
|
}
|
2013-06-19 03:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2023-08-18 10:29:14 +00:00
|
|
|
|
2013-06-19 03:28:10 +00:00
|
|
|
err:
|
2018-08-02 03:08:25 +00:00
|
|
|
/*
|
|
|
|
* Any memory allocations that succeeded will be freed when
|
|
|
|
* the caller cleans up by calling hv_synic_free()
|
|
|
|
*/
|
2023-08-18 10:29:14 +00:00
|
|
|
return ret;
|
2013-06-19 03:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void hv_synic_free(void)
|
|
|
|
{
|
2023-08-18 10:29:14 +00:00
|
|
|
int cpu, ret;
|
2013-06-19 03:28:10 +00:00
|
|
|
|
2017-02-12 06:02:19 +00:00
|
|
|
for_each_present_cpu(cpu) {
|
2024-05-31 10:48:41 +00:00
|
|
|
struct hv_per_cpu_context *hv_cpu =
|
|
|
|
per_cpu_ptr(hv_context.cpu_context, cpu);
|
2017-02-12 06:02:19 +00:00
|
|
|
|
2023-08-18 10:29:14 +00:00
|
|
|
/* It's better to leak the page if the encryption fails. */
|
2023-08-24 08:07:09 +00:00
|
|
|
if (ms_hyperv.paravisor_present && hv_isolation_type_tdx()) {
|
|
|
|
if (hv_cpu->post_msg_page) {
|
|
|
|
ret = set_memory_encrypted((unsigned long)
|
|
|
|
hv_cpu->post_msg_page, 1);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to encrypt post msg page: %d\n", ret);
|
|
|
|
hv_cpu->post_msg_page = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-24 08:07:05 +00:00
|
|
|
if (!ms_hyperv.paravisor_present &&
|
2023-08-24 08:07:11 +00:00
|
|
|
(hv_isolation_type_snp() || hv_isolation_type_tdx())) {
|
2023-08-18 10:29:14 +00:00
|
|
|
if (hv_cpu->synic_message_page) {
|
|
|
|
ret = set_memory_encrypted((unsigned long)
|
|
|
|
hv_cpu->synic_message_page, 1);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to encrypt SYNIC msg page: %d\n", ret);
|
|
|
|
hv_cpu->synic_message_page = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hv_cpu->synic_event_page) {
|
|
|
|
ret = set_memory_encrypted((unsigned long)
|
|
|
|
hv_cpu->synic_event_page, 1);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to encrypt SYNIC event page: %d\n", ret);
|
|
|
|
hv_cpu->synic_event_page = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-24 08:07:09 +00:00
|
|
|
free_page((unsigned long)hv_cpu->post_msg_page);
|
2018-08-02 03:08:25 +00:00
|
|
|
free_page((unsigned long)hv_cpu->synic_event_page);
|
|
|
|
free_page((unsigned long)hv_cpu->synic_message_page);
|
2017-02-12 06:02:19 +00:00
|
|
|
}
|
|
|
|
|
2015-08-05 07:52:38 +00:00
|
|
|
kfree(hv_context.hv_numa_map);
|
2013-06-19 03:28:10 +00:00
|
|
|
}
|
|
|
|
|
2010-03-04 22:11:00 +00:00
|
|
|
/*
|
2018-03-05 05:17:13 +00:00
|
|
|
* hv_synic_init - Initialize the Synthetic Interrupt Controller.
|
2009-09-01 03:23:33 +00:00
|
|
|
*
|
|
|
|
* If it is already initialized by another entity (ie x2v shim), we need to
|
|
|
|
* retrieve the initialized message and event pages. Otherwise, we create and
|
|
|
|
* initialize the message and event pages.
|
|
|
|
*/
|
2019-09-05 23:01:15 +00:00
|
|
|
void hv_synic_enable_regs(unsigned int cpu)
|
2009-07-13 23:02:34 +00:00
|
|
|
{
|
2024-05-31 10:48:41 +00:00
|
|
|
struct hv_per_cpu_context *hv_cpu =
|
|
|
|
per_cpu_ptr(hv_context.cpu_context, cpu);
|
2009-08-20 19:11:26 +00:00
|
|
|
union hv_synic_simp simp;
|
|
|
|
union hv_synic_siefp siefp;
|
2010-11-08 22:04:41 +00:00
|
|
|
union hv_synic_sint shared_sint;
|
2009-08-20 19:11:26 +00:00
|
|
|
union hv_synic_scontrol sctrl;
|
2010-01-22 19:17:50 +00:00
|
|
|
|
|
|
|
/* Setup the Synic's message page */
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
simp.as_uint64 = hv_get_msr(HV_MSR_SIMP);
|
2010-11-08 22:04:39 +00:00
|
|
|
simp.simp_enabled = 1;
|
2021-10-25 12:21:11 +00:00
|
|
|
|
x86/hyperv: Introduce a global variable hyperv_paravisor_present
The new variable hyperv_paravisor_present is set only when the VM
is a SNP/TDX VM with the paravisor running: see ms_hyperv_init_platform().
We introduce hyperv_paravisor_present because we can not use
ms_hyperv.paravisor_present in arch/x86/include/asm/mshyperv.h:
struct ms_hyperv_info is defined in include/asm-generic/mshyperv.h, which
is included at the end of arch/x86/include/asm/mshyperv.h, but at the
beginning of arch/x86/include/asm/mshyperv.h, we would already need to use
struct ms_hyperv_info in hv_do_hypercall().
We use hyperv_paravisor_present only in include/asm-generic/mshyperv.h,
and use ms_hyperv.paravisor_present elsewhere. In the future, we'll
introduce a hypercall function structure for different VM types, and
at boot time, the right function pointers would be written into the
structure so that runtime testing of TDX vs. SNP vs. normal will be
avoided and hyperv_paravisor_present will no longer be needed.
Call hv_vtom_init() when it's a VBS VM or when ms_hyperv.paravisor_present
is true, i.e. the VM is a SNP VM or TDX VM with the paravisor.
Enhance hv_vtom_init() for a TDX VM with the paravisor.
In hv_common_cpu_init(), don't decrypt the hyperv_pcpu_input_arg
for a TDX VM with the paravisor, just like we don't decrypt the page
for a SNP VM with the paravisor.
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Tianyu Lan <tiala@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20230824080712.30327-7-decui@microsoft.com
2023-08-24 08:07:08 +00:00
|
|
|
if (ms_hyperv.paravisor_present || hv_root_partition) {
|
2023-03-26 13:52:06 +00:00
|
|
|
/* Mask out vTOM bit. ioremap_cache() maps decrypted */
|
|
|
|
u64 base = (simp.base_simp_gpa << HV_HYP_PAGE_SHIFT) &
|
|
|
|
~ms_hyperv.shared_gpa_boundary;
|
2024-05-31 10:48:41 +00:00
|
|
|
hv_cpu->synic_message_page =
|
|
|
|
(void *)ioremap_cache(base, HV_HYP_PAGE_SIZE);
|
2021-10-25 12:21:11 +00:00
|
|
|
if (!hv_cpu->synic_message_page)
|
2023-03-26 13:52:06 +00:00
|
|
|
pr_err("Fail to map synic message page.\n");
|
2021-10-25 12:21:11 +00:00
|
|
|
} else {
|
|
|
|
simp.base_simp_gpa = virt_to_phys(hv_cpu->synic_message_page)
|
|
|
|
>> HV_HYP_PAGE_SHIFT;
|
|
|
|
}
|
2009-07-13 23:02:34 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SIMP, simp.as_uint64);
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2010-01-22 19:17:50 +00:00
|
|
|
/* Setup the Synic's event page */
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
siefp.as_uint64 = hv_get_msr(HV_MSR_SIEFP);
|
2010-11-08 22:04:39 +00:00
|
|
|
siefp.siefp_enabled = 1;
|
2021-10-25 12:21:11 +00:00
|
|
|
|
x86/hyperv: Introduce a global variable hyperv_paravisor_present
The new variable hyperv_paravisor_present is set only when the VM
is a SNP/TDX VM with the paravisor running: see ms_hyperv_init_platform().
We introduce hyperv_paravisor_present because we can not use
ms_hyperv.paravisor_present in arch/x86/include/asm/mshyperv.h:
struct ms_hyperv_info is defined in include/asm-generic/mshyperv.h, which
is included at the end of arch/x86/include/asm/mshyperv.h, but at the
beginning of arch/x86/include/asm/mshyperv.h, we would already need to use
struct ms_hyperv_info in hv_do_hypercall().
We use hyperv_paravisor_present only in include/asm-generic/mshyperv.h,
and use ms_hyperv.paravisor_present elsewhere. In the future, we'll
introduce a hypercall function structure for different VM types, and
at boot time, the right function pointers would be written into the
structure so that runtime testing of TDX vs. SNP vs. normal will be
avoided and hyperv_paravisor_present will no longer be needed.
Call hv_vtom_init() when it's a VBS VM or when ms_hyperv.paravisor_present
is true, i.e. the VM is a SNP VM or TDX VM with the paravisor.
Enhance hv_vtom_init() for a TDX VM with the paravisor.
In hv_common_cpu_init(), don't decrypt the hyperv_pcpu_input_arg
for a TDX VM with the paravisor, just like we don't decrypt the page
for a SNP VM with the paravisor.
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Tianyu Lan <tiala@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20230824080712.30327-7-decui@microsoft.com
2023-08-24 08:07:08 +00:00
|
|
|
if (ms_hyperv.paravisor_present || hv_root_partition) {
|
2023-03-26 13:52:06 +00:00
|
|
|
/* Mask out vTOM bit. ioremap_cache() maps decrypted */
|
|
|
|
u64 base = (siefp.base_siefp_gpa << HV_HYP_PAGE_SHIFT) &
|
|
|
|
~ms_hyperv.shared_gpa_boundary;
|
2024-05-31 10:48:41 +00:00
|
|
|
hv_cpu->synic_event_page =
|
|
|
|
(void *)ioremap_cache(base, HV_HYP_PAGE_SIZE);
|
2021-10-25 12:21:11 +00:00
|
|
|
if (!hv_cpu->synic_event_page)
|
2023-03-26 13:52:06 +00:00
|
|
|
pr_err("Fail to map synic event page.\n");
|
2021-10-25 12:21:11 +00:00
|
|
|
} else {
|
|
|
|
siefp.base_siefp_gpa = virt_to_phys(hv_cpu->synic_event_page)
|
|
|
|
>> HV_HYP_PAGE_SHIFT;
|
|
|
|
}
|
2010-01-22 19:17:50 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SIEFP, siefp.as_uint64);
|
2009-09-01 03:23:33 +00:00
|
|
|
|
|
|
|
/* Setup the shared SINT. */
|
2021-03-02 21:38:18 +00:00
|
|
|
if (vmbus_irq != -1)
|
|
|
|
enable_percpu_irq(vmbus_irq, 0);
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
shared_sint.as_uint64 = hv_get_msr(HV_MSR_SINT0 + VMBUS_MESSAGE_SINT);
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2021-03-02 21:38:18 +00:00
|
|
|
shared_sint.vector = vmbus_interrupt;
|
2010-11-08 22:04:41 +00:00
|
|
|
shared_sint.masked = false;
|
2021-03-02 21:38:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* On architectures where Hyper-V doesn't support AEOI (e.g., ARM64),
|
|
|
|
* it doesn't provide a recommendation flag and AEOI must be disabled.
|
|
|
|
*/
|
|
|
|
#ifdef HV_DEPRECATING_AEOI_RECOMMENDED
|
|
|
|
shared_sint.auto_eoi =
|
|
|
|
!(ms_hyperv.hints & HV_DEPRECATING_AEOI_RECOMMENDED);
|
|
|
|
#else
|
|
|
|
shared_sint.auto_eoi = 0;
|
|
|
|
#endif
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2009-07-27 20:47:24 +00:00
|
|
|
/* Enable the global synic bit */
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
sctrl.as_uint64 = hv_get_msr(HV_MSR_SCONTROL);
|
2010-11-08 22:04:39 +00:00
|
|
|
sctrl.enable = 1;
|
2009-07-13 23:02:34 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SCONTROL, sctrl.as_uint64);
|
2019-09-05 23:01:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int hv_synic_init(unsigned int cpu)
|
|
|
|
{
|
|
|
|
hv_synic_enable_regs(cpu);
|
2009-07-13 23:02:34 +00:00
|
|
|
|
x86/hyperv: Initialize clockevents earlier in CPU onlining
Hyper-V has historically initialized stimer-based clockevents late in the
process of onlining a CPU because clockevents depend on stimer
interrupts. In the original Hyper-V design, stimer interrupts generate a
VMbus message, so the VMbus machinery must be running first, and VMbus
can't be initialized until relatively late. On x86/64, LAPIC timer based
clockevents are used during early initialization before VMbus and
stimer-based clockevents are ready, and again during CPU offlining after
the stimer clockevents have been shut down.
Unfortunately, this design creates problems when offlining CPUs for
hibernation or other purposes. stimer-based clockevents are shut down
relatively early in the offlining process, so clockevents_unbind_device()
must be used to fallback to the LAPIC-based clockevents for the remainder
of the offlining process. Furthermore, the late initialization and early
shutdown of stimer-based clockevents doesn't work well on ARM64 since there
is no other timer like the LAPIC to fallback to. So CPU onlining and
offlining doesn't work properly.
Fix this by recognizing that stimer Direct Mode is the normal path for
newer versions of Hyper-V on x86/64, and the only path on other
architectures. With stimer Direct Mode, stimer interrupts don't require any
VMbus machinery. stimer clockevents can be initialized and shut down
consistent with how it is done for other clockevent devices. While the old
VMbus-based stimer interrupts must still be supported for backward
compatibility on x86, that mode of operation can be treated as legacy.
So add a new Hyper-V stimer entry in the CPU hotplug state list, and use
that new state when in Direct Mode. Update the Hyper-V clocksource driver
to allocate and initialize stimer clockevents earlier during boot. Update
Hyper-V initialization and the VMbus driver to use this new design. As a
result, the LAPIC timer is no longer used during boot or CPU
onlining/offlining and clockevents_unbind_device() is not called. But
retain the old design as a legacy implementation for older versions of
Hyper-V that don't support Direct Mode.
Signed-off-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Dexuan Cui <decui@microsoft.com>
Link: https://lkml.kernel.org/r/1573607467-9456-1-git-send-email-mikelley@microsoft.com
2019-11-13 01:11:49 +00:00
|
|
|
hv_stimer_legacy_init(cpu, VMBUS_MESSAGE_SINT);
|
2015-02-27 19:25:57 +00:00
|
|
|
|
2019-07-01 04:25:56 +00:00
|
|
|
return 0;
|
2015-02-27 19:25:57 +00:00
|
|
|
}
|
|
|
|
|
2010-03-04 22:11:00 +00:00
|
|
|
/*
|
2010-11-08 22:04:42 +00:00
|
|
|
* hv_synic_cleanup - Cleanup routine for hv_synic_init().
|
2009-09-01 03:23:33 +00:00
|
|
|
*/
|
2019-09-05 23:01:15 +00:00
|
|
|
void hv_synic_disable_regs(unsigned int cpu)
|
2009-07-13 23:02:34 +00:00
|
|
|
{
|
2024-05-31 10:48:41 +00:00
|
|
|
struct hv_per_cpu_context *hv_cpu =
|
|
|
|
per_cpu_ptr(hv_context.cpu_context, cpu);
|
2010-11-08 22:04:41 +00:00
|
|
|
union hv_synic_sint shared_sint;
|
2009-08-20 19:11:26 +00:00
|
|
|
union hv_synic_simp simp;
|
|
|
|
union hv_synic_siefp siefp;
|
2015-02-27 19:25:55 +00:00
|
|
|
union hv_synic_scontrol sctrl;
|
2019-09-05 23:01:15 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
shared_sint.as_uint64 = hv_get_msr(HV_MSR_SINT0 + VMBUS_MESSAGE_SINT);
|
2019-09-05 23:01:15 +00:00
|
|
|
|
|
|
|
shared_sint.masked = 1;
|
|
|
|
|
|
|
|
/* Need to correctly cleanup in the case of SMP!!! */
|
|
|
|
/* Disable the interrupt */
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
|
2019-09-05 23:01:15 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
simp.as_uint64 = hv_get_msr(HV_MSR_SIMP);
|
2021-10-25 12:21:11 +00:00
|
|
|
/*
|
|
|
|
* In Isolation VM, sim and sief pages are allocated by
|
|
|
|
* paravisor. These pages also will be used by kdump
|
|
|
|
* kernel. So just reset enable bit here and keep page
|
|
|
|
* addresses.
|
|
|
|
*/
|
2019-09-05 23:01:15 +00:00
|
|
|
simp.simp_enabled = 0;
|
x86/hyperv: Introduce a global variable hyperv_paravisor_present
The new variable hyperv_paravisor_present is set only when the VM
is a SNP/TDX VM with the paravisor running: see ms_hyperv_init_platform().
We introduce hyperv_paravisor_present because we can not use
ms_hyperv.paravisor_present in arch/x86/include/asm/mshyperv.h:
struct ms_hyperv_info is defined in include/asm-generic/mshyperv.h, which
is included at the end of arch/x86/include/asm/mshyperv.h, but at the
beginning of arch/x86/include/asm/mshyperv.h, we would already need to use
struct ms_hyperv_info in hv_do_hypercall().
We use hyperv_paravisor_present only in include/asm-generic/mshyperv.h,
and use ms_hyperv.paravisor_present elsewhere. In the future, we'll
introduce a hypercall function structure for different VM types, and
at boot time, the right function pointers would be written into the
structure so that runtime testing of TDX vs. SNP vs. normal will be
avoided and hyperv_paravisor_present will no longer be needed.
Call hv_vtom_init() when it's a VBS VM or when ms_hyperv.paravisor_present
is true, i.e. the VM is a SNP VM or TDX VM with the paravisor.
Enhance hv_vtom_init() for a TDX VM with the paravisor.
In hv_common_cpu_init(), don't decrypt the hyperv_pcpu_input_arg
for a TDX VM with the paravisor, just like we don't decrypt the page
for a SNP VM with the paravisor.
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Tianyu Lan <tiala@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20230824080712.30327-7-decui@microsoft.com
2023-08-24 08:07:08 +00:00
|
|
|
if (ms_hyperv.paravisor_present || hv_root_partition) {
|
2023-03-26 13:52:06 +00:00
|
|
|
iounmap(hv_cpu->synic_message_page);
|
2023-01-02 07:12:52 +00:00
|
|
|
hv_cpu->synic_message_page = NULL;
|
|
|
|
} else {
|
2021-10-25 12:21:11 +00:00
|
|
|
simp.base_simp_gpa = 0;
|
2023-01-02 07:12:52 +00:00
|
|
|
}
|
2019-09-05 23:01:15 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SIMP, simp.as_uint64);
|
2019-09-05 23:01:15 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
siefp.as_uint64 = hv_get_msr(HV_MSR_SIEFP);
|
2019-09-05 23:01:15 +00:00
|
|
|
siefp.siefp_enabled = 0;
|
2021-10-25 12:21:11 +00:00
|
|
|
|
x86/hyperv: Introduce a global variable hyperv_paravisor_present
The new variable hyperv_paravisor_present is set only when the VM
is a SNP/TDX VM with the paravisor running: see ms_hyperv_init_platform().
We introduce hyperv_paravisor_present because we can not use
ms_hyperv.paravisor_present in arch/x86/include/asm/mshyperv.h:
struct ms_hyperv_info is defined in include/asm-generic/mshyperv.h, which
is included at the end of arch/x86/include/asm/mshyperv.h, but at the
beginning of arch/x86/include/asm/mshyperv.h, we would already need to use
struct ms_hyperv_info in hv_do_hypercall().
We use hyperv_paravisor_present only in include/asm-generic/mshyperv.h,
and use ms_hyperv.paravisor_present elsewhere. In the future, we'll
introduce a hypercall function structure for different VM types, and
at boot time, the right function pointers would be written into the
structure so that runtime testing of TDX vs. SNP vs. normal will be
avoided and hyperv_paravisor_present will no longer be needed.
Call hv_vtom_init() when it's a VBS VM or when ms_hyperv.paravisor_present
is true, i.e. the VM is a SNP VM or TDX VM with the paravisor.
Enhance hv_vtom_init() for a TDX VM with the paravisor.
In hv_common_cpu_init(), don't decrypt the hyperv_pcpu_input_arg
for a TDX VM with the paravisor, just like we don't decrypt the page
for a SNP VM with the paravisor.
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Tianyu Lan <tiala@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20230824080712.30327-7-decui@microsoft.com
2023-08-24 08:07:08 +00:00
|
|
|
if (ms_hyperv.paravisor_present || hv_root_partition) {
|
2023-03-26 13:52:06 +00:00
|
|
|
iounmap(hv_cpu->synic_event_page);
|
2023-01-02 07:12:52 +00:00
|
|
|
hv_cpu->synic_event_page = NULL;
|
|
|
|
} else {
|
2021-10-25 12:21:11 +00:00
|
|
|
siefp.base_siefp_gpa = 0;
|
2023-01-02 07:12:52 +00:00
|
|
|
}
|
2019-09-05 23:01:15 +00:00
|
|
|
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SIEFP, siefp.as_uint64);
|
2019-09-05 23:01:15 +00:00
|
|
|
|
|
|
|
/* Disable the global synic bit */
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
sctrl.as_uint64 = hv_get_msr(HV_MSR_SCONTROL);
|
2019-09-05 23:01:15 +00:00
|
|
|
sctrl.enable = 0;
|
hyperv-tlfs: Change prefix of generic HV_REGISTER_* MSRs to HV_MSR_*
The HV_REGISTER_ are used as arguments to hv_set/get_register(), which
delegate to arch-specific mechanisms for getting/setting synthetic
Hyper-V MSRs.
On arm64, HV_REGISTER_ defines are synthetic VP registers accessed via
the get/set vp registers hypercalls. The naming matches the TLFS
document, although these register names are not specific to arm64.
However, on x86 the prefix HV_REGISTER_ indicates Hyper-V MSRs accessed
via rdmsrl()/wrmsrl(). This is not consistent with the TLFS doc, where
HV_REGISTER_ is *only* used for used for VP register names used by
the get/set register hypercalls.
To fix this inconsistency and prevent future confusion, change the
arch-generic aliases used by callers of hv_set/get_register() to have
the prefix HV_MSR_ instead of HV_REGISTER_.
Use the prefix HV_X64_MSR_ for the x86-only Hyper-V MSRs. On x86, the
generic HV_MSR_'s point to the corresponding HV_X64_MSR_.
Move the arm64 HV_REGISTER_* defines to the asm-generic hyperv-tlfs.h,
since these are not specific to arm64. On arm64, the generic HV_MSR_'s
point to the corresponding HV_REGISTER_.
While at it, rename hv_get/set_registers() and related functions to
hv_get/set_msr(), hv_get/set_nested_msr(), etc. These are only used for
Hyper-V MSRs and this naming makes that clear.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1708440933-27125-1-git-send-email-nunodasneves@linux.microsoft.com>
2024-02-20 14:55:33 +00:00
|
|
|
hv_set_msr(HV_MSR_SCONTROL, sctrl.as_uint64);
|
2021-03-02 21:38:18 +00:00
|
|
|
|
|
|
|
if (vmbus_irq != -1)
|
|
|
|
disable_percpu_irq(vmbus_irq);
|
2019-09-05 23:01:15 +00:00
|
|
|
}
|
|
|
|
|
2021-04-16 14:34:49 +00:00
|
|
|
#define HV_MAX_TRIES 3
|
|
|
|
/*
|
|
|
|
* Scan the event flags page of 'this' CPU looking for any bit that is set. If we find one
|
|
|
|
* bit set, then wait for a few milliseconds. Repeat these steps for a maximum of 3 times.
|
|
|
|
* Return 'true', if there is still any set bit after this operation; 'false', otherwise.
|
|
|
|
*
|
|
|
|
* If a bit is set, that means there is a pending channel interrupt. The expectation is
|
|
|
|
* that the normal interrupt handling mechanism will find and process the channel interrupt
|
|
|
|
* "very soon", and in the process clear the bit.
|
|
|
|
*/
|
|
|
|
static bool hv_synic_event_pending(void)
|
|
|
|
{
|
|
|
|
struct hv_per_cpu_context *hv_cpu = this_cpu_ptr(hv_context.cpu_context);
|
|
|
|
union hv_synic_event_flags *event =
|
|
|
|
(union hv_synic_event_flags *)hv_cpu->synic_event_page + VMBUS_MESSAGE_SINT;
|
|
|
|
unsigned long *recv_int_page = event->flags; /* assumes VMBus version >= VERSION_WIN8 */
|
|
|
|
bool pending;
|
|
|
|
u32 relid;
|
|
|
|
int tries = 0;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
pending = false;
|
|
|
|
for_each_set_bit(relid, recv_int_page, HV_EVENT_FLAGS_COUNT) {
|
|
|
|
/* Special case - VMBus channel protocol messages */
|
|
|
|
if (relid == 0)
|
|
|
|
continue;
|
|
|
|
pending = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (pending && tries++ < HV_MAX_TRIES) {
|
|
|
|
usleep_range(10000, 20000);
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
return pending;
|
|
|
|
}
|
2021-03-02 21:38:15 +00:00
|
|
|
|
2019-09-05 23:01:15 +00:00
|
|
|
int hv_synic_cleanup(unsigned int cpu)
|
|
|
|
{
|
2016-12-07 22:53:12 +00:00
|
|
|
struct vmbus_channel *channel, *sc;
|
|
|
|
bool channel_found = false;
|
2009-07-13 23:02:34 +00:00
|
|
|
|
2021-04-16 14:34:49 +00:00
|
|
|
if (vmbus_connection.conn_state != CONNECTED)
|
|
|
|
goto always_cleanup;
|
|
|
|
|
2020-04-06 00:15:04 +00:00
|
|
|
/*
|
|
|
|
* Hyper-V does not provide a way to change the connect CPU once
|
2020-11-10 19:01:18 +00:00
|
|
|
* it is set; we must prevent the connect CPU from going offline
|
|
|
|
* while the VM is running normally. But in the panic or kexec()
|
|
|
|
* path where the vmbus is already disconnected, the CPU must be
|
|
|
|
* allowed to shut down.
|
2020-04-06 00:15:04 +00:00
|
|
|
*/
|
2021-04-16 14:34:49 +00:00
|
|
|
if (cpu == VMBUS_CONNECT_CPU)
|
2020-04-06 00:15:04 +00:00
|
|
|
return -EBUSY;
|
|
|
|
|
2016-12-07 22:53:12 +00:00
|
|
|
/*
|
|
|
|
* Search for channels which are bound to the CPU we're about to
|
2020-04-06 00:15:12 +00:00
|
|
|
* cleanup. In case we find one and vmbus is still connected, we
|
|
|
|
* fail; this will effectively prevent CPU offlining.
|
|
|
|
*
|
|
|
|
* TODO: Re-bind the channels to different CPUs.
|
2016-12-07 22:53:12 +00:00
|
|
|
*/
|
|
|
|
mutex_lock(&vmbus_connection.channel_mutex);
|
|
|
|
list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
|
|
|
|
if (channel->target_cpu == cpu) {
|
|
|
|
channel_found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
list_for_each_entry(sc, &channel->sc_list, sc_list) {
|
|
|
|
if (sc->target_cpu == cpu) {
|
|
|
|
channel_found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (channel_found)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mutex_unlock(&vmbus_connection.channel_mutex);
|
|
|
|
|
2021-04-16 14:34:49 +00:00
|
|
|
if (channel_found)
|
|
|
|
return -EBUSY;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* channel_found == false means that any channels that were previously
|
|
|
|
* assigned to the CPU have been reassigned elsewhere with a call of
|
|
|
|
* vmbus_send_modifychannel(). Scan the event flags page looking for
|
|
|
|
* bits that are set and waiting with a timeout for vmbus_chan_sched()
|
|
|
|
* to process such bits. If bits are still set after this operation
|
|
|
|
* and VMBus is connected, fail the CPU offlining operation.
|
|
|
|
*/
|
|
|
|
if (vmbus_proto_version >= VERSION_WIN10_V4_1 && hv_synic_event_pending())
|
2016-12-07 22:53:12 +00:00
|
|
|
return -EBUSY;
|
|
|
|
|
2021-04-16 14:34:49 +00:00
|
|
|
always_cleanup:
|
x86/hyperv: Initialize clockevents earlier in CPU onlining
Hyper-V has historically initialized stimer-based clockevents late in the
process of onlining a CPU because clockevents depend on stimer
interrupts. In the original Hyper-V design, stimer interrupts generate a
VMbus message, so the VMbus machinery must be running first, and VMbus
can't be initialized until relatively late. On x86/64, LAPIC timer based
clockevents are used during early initialization before VMbus and
stimer-based clockevents are ready, and again during CPU offlining after
the stimer clockevents have been shut down.
Unfortunately, this design creates problems when offlining CPUs for
hibernation or other purposes. stimer-based clockevents are shut down
relatively early in the offlining process, so clockevents_unbind_device()
must be used to fallback to the LAPIC-based clockevents for the remainder
of the offlining process. Furthermore, the late initialization and early
shutdown of stimer-based clockevents doesn't work well on ARM64 since there
is no other timer like the LAPIC to fallback to. So CPU onlining and
offlining doesn't work properly.
Fix this by recognizing that stimer Direct Mode is the normal path for
newer versions of Hyper-V on x86/64, and the only path on other
architectures. With stimer Direct Mode, stimer interrupts don't require any
VMbus machinery. stimer clockevents can be initialized and shut down
consistent with how it is done for other clockevent devices. While the old
VMbus-based stimer interrupts must still be supported for backward
compatibility on x86, that mode of operation can be treated as legacy.
So add a new Hyper-V stimer entry in the CPU hotplug state list, and use
that new state when in Direct Mode. Update the Hyper-V clocksource driver
to allocate and initialize stimer clockevents earlier during boot. Update
Hyper-V initialization and the VMbus driver to use this new design. As a
result, the LAPIC timer is no longer used during boot or CPU
onlining/offlining and clockevents_unbind_device() is not called. But
retain the old design as a legacy implementation for older versions of
Hyper-V that don't support Direct Mode.
Signed-off-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Dexuan Cui <decui@microsoft.com>
Link: https://lkml.kernel.org/r/1573607467-9456-1-git-send-email-mikelley@microsoft.com
2019-11-13 01:11:49 +00:00
|
|
|
hv_stimer_legacy_cleanup(cpu);
|
2015-02-27 19:25:57 +00:00
|
|
|
|
2019-09-05 23:01:15 +00:00
|
|
|
hv_synic_disable_regs(cpu);
|
2016-12-07 22:53:11 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-07-13 23:02:34 +00:00
|
|
|
}
|