2019-05-30 07:57:35 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-07-14 07:02:34 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009, Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Haiyang Zhang <haiyangz@microsoft.com>
|
|
|
|
* Hank Janssen <hjanssen@microsoft.com>
|
|
|
|
*/
|
2011-03-30 04:58:47 +08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2009-08-18 08:22:08 +08: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 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2009-07-30 05:00:13 +08:00
|
|
|
#include <linux/vmalloc.h>
|
2011-10-05 03:29:52 +08:00
|
|
|
#include <linux/hyperv.h>
|
2012-07-25 07:11:58 +08:00
|
|
|
#include <linux/version.h>
|
2018-03-05 13:17:18 +08:00
|
|
|
#include <linux/random.h>
|
2015-01-10 15:54:32 +08:00
|
|
|
#include <linux/clockchips.h>
|
2019-07-01 12:25:56 +08:00
|
|
|
#include <clocksource/hyperv_timer.h>
|
2015-01-10 15:54:32 +08:00
|
|
|
#include <asm/mshyperv.h>
|
2011-05-13 10:34:28 +08:00
|
|
|
#include "hyperv_vmbus.h"
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2009-07-28 04:47:24 +08:00
|
|
|
/* The one and only */
|
2018-10-18 13:09:28 +08:00
|
|
|
struct hv_context hv_context;
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2010-03-05 06:11:00 +08:00
|
|
|
/*
|
2010-11-09 06:04:42 +08:00
|
|
|
* hv_init - Main initialization routine.
|
2009-09-01 11:23:33 +08:00
|
|
|
*
|
|
|
|
* This routine must be called before any other routines in here are called
|
|
|
|
*/
|
2010-11-09 06:04:42 +08:00
|
|
|
int hv_init(void)
|
2009-07-14 07:02:34 +08:00
|
|
|
{
|
2017-02-12 14:02:19 +08:00
|
|
|
hv_context.cpu_context = alloc_percpu(struct hv_per_cpu_context);
|
|
|
|
if (!hv_context.cpu_context)
|
|
|
|
return -ENOMEM;
|
2011-08-26 00:48:51 +08:00
|
|
|
return 0;
|
2009-07-14 07:02:34 +08:00
|
|
|
}
|
|
|
|
|
2021-03-03 05:38:13 +08:00
|
|
|
/*
|
|
|
|
* Functions for allocating and freeing memory with size and
|
|
|
|
* alignment HV_HYP_PAGE_SIZE. These functions are needed because
|
|
|
|
* the guest page size may not be the same as the Hyper-V page
|
|
|
|
* size. We depend upon kmalloc() aligning power-of-two size
|
|
|
|
* allocations to the allocation size boundary, so that the
|
|
|
|
* allocated memory appears to Hyper-V as a page of the size
|
|
|
|
* it expects.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void *hv_alloc_hyperv_page(void)
|
|
|
|
{
|
|
|
|
BUILD_BUG_ON(PAGE_SIZE < HV_HYP_PAGE_SIZE);
|
|
|
|
|
|
|
|
if (PAGE_SIZE == HV_HYP_PAGE_SIZE)
|
|
|
|
return (void *)__get_free_page(GFP_KERNEL);
|
|
|
|
else
|
|
|
|
return kmalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *hv_alloc_hyperv_zeroed_page(void)
|
|
|
|
{
|
|
|
|
if (PAGE_SIZE == HV_HYP_PAGE_SIZE)
|
|
|
|
return (void *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
|
|
|
|
else
|
|
|
|
return kzalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void hv_free_hyperv_page(unsigned long addr)
|
|
|
|
{
|
|
|
|
if (PAGE_SIZE == HV_HYP_PAGE_SIZE)
|
|
|
|
free_page(addr);
|
|
|
|
else
|
|
|
|
kfree((void *)addr);
|
|
|
|
}
|
|
|
|
|
2010-03-05 06:11:00 +08:00
|
|
|
/*
|
2010-11-09 06:04:42 +08:00
|
|
|
* hv_post_message - Post a message using the hypervisor message IPC.
|
2009-09-01 11:23:33 +08:00
|
|
|
*
|
|
|
|
* This involves a hypercall.
|
|
|
|
*/
|
2012-03-28 14:58:07 +08:00
|
|
|
int hv_post_message(union hv_connection_id connection_id,
|
2010-11-09 06:04:41 +08:00
|
|
|
enum hv_message_type message_type,
|
|
|
|
void *payload, size_t payload_size)
|
2009-07-14 07:02:34 +08:00
|
|
|
{
|
2010-11-09 06:04:41 +08:00
|
|
|
struct hv_input_post_message *aligned_msg;
|
2017-02-12 14:02:19 +08:00
|
|
|
struct hv_per_cpu_context *hv_cpu;
|
2015-12-15 08:01:40 +08:00
|
|
|
u64 status;
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2010-11-09 06:04:41 +08:00
|
|
|
if (payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT)
|
2011-06-07 06:50:09 +08:00
|
|
|
return -EMSGSIZE;
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2017-02-12 14:02:19 +08:00
|
|
|
hv_cpu = get_cpu_ptr(hv_context.cpu_context);
|
|
|
|
aligned_msg = hv_cpu->post_msg_page;
|
2010-11-09 06:04:41 +08:00
|
|
|
aligned_msg->connectionid = connection_id;
|
2014-08-29 09:29:52 +08:00
|
|
|
aligned_msg->reserved = 0;
|
2010-11-09 06:04:41 +08:00
|
|
|
aligned_msg->message_type = message_type;
|
|
|
|
aligned_msg->payload_size = payload_size;
|
|
|
|
memcpy((void *)aligned_msg->payload, payload, payload_size);
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2015-12-15 08:01:40 +08:00
|
|
|
status = hv_do_hypercall(HVCALL_POST_MESSAGE, aligned_msg, NULL);
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2017-05-19 01:46:07 +08:00
|
|
|
/* Preemption must remain disabled until after the hypercall
|
|
|
|
* so some other thread can't get scheduled onto this cpu and
|
|
|
|
* corrupt the per-cpu post_msg_page
|
|
|
|
*/
|
|
|
|
put_cpu_ptr(hv_cpu);
|
|
|
|
|
2015-12-15 08:01:40 +08:00
|
|
|
return status & 0xFFFF;
|
2009-07-14 07:02:34 +08:00
|
|
|
}
|
|
|
|
|
2013-06-19 11:28:10 +08:00
|
|
|
int hv_synic_alloc(void)
|
|
|
|
{
|
|
|
|
int cpu;
|
2018-08-11 07:06:11 +08: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 11:28:10 +08: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-13 05:03:40 +08:00
|
|
|
hv_context.hv_numa_map = kcalloc(nr_node_ids, sizeof(struct cpumask),
|
2018-03-05 13:17:12 +08:00
|
|
|
GFP_KERNEL);
|
2015-08-05 15:52:38 +08:00
|
|
|
if (hv_context.hv_numa_map == NULL) {
|
|
|
|
pr_err("Unable to allocate NUMA map\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2016-12-07 17:16:25 +08:00
|
|
|
for_each_present_cpu(cpu) {
|
2018-08-11 07:06:11 +08:00
|
|
|
hv_cpu = per_cpu_ptr(hv_context.cpu_context, cpu);
|
2017-02-12 14:02:19 +08:00
|
|
|
|
|
|
|
tasklet_init(&hv_cpu->msg_dpc,
|
|
|
|
vmbus_on_msg_dpc, (unsigned long) hv_cpu);
|
|
|
|
|
|
|
|
hv_cpu->synic_message_page =
|
2013-06-19 11:28:10 +08:00
|
|
|
(void *)get_zeroed_page(GFP_ATOMIC);
|
2017-02-12 14:02:19 +08:00
|
|
|
if (hv_cpu->synic_message_page == NULL) {
|
2013-06-19 11:28:10 +08:00
|
|
|
pr_err("Unable to allocate SYNIC message page\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2017-02-12 14:02:19 +08:00
|
|
|
hv_cpu->synic_event_page = (void *)get_zeroed_page(GFP_ATOMIC);
|
|
|
|
if (hv_cpu->synic_event_page == NULL) {
|
2013-06-19 11:28:10 +08:00
|
|
|
pr_err("Unable to allocate SYNIC event page\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2014-08-29 09:29:52 +08:00
|
|
|
|
2017-02-12 14:02:19 +08:00
|
|
|
hv_cpu->post_msg_page = (void *)get_zeroed_page(GFP_ATOMIC);
|
|
|
|
if (hv_cpu->post_msg_page == NULL) {
|
2014-08-29 09:29:52 +08:00
|
|
|
pr_err("Unable to allocate post msg page\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2013-06-19 11:28:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
2018-08-02 11:08:25 +08:00
|
|
|
/*
|
|
|
|
* Any memory allocations that succeeded will be freed when
|
|
|
|
* the caller cleans up by calling hv_synic_free()
|
|
|
|
*/
|
2013-06-19 11:28:10 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void hv_synic_free(void)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
|
2017-02-12 14:02:19 +08:00
|
|
|
for_each_present_cpu(cpu) {
|
|
|
|
struct hv_per_cpu_context *hv_cpu
|
|
|
|
= per_cpu_ptr(hv_context.cpu_context, cpu);
|
|
|
|
|
2018-08-02 11:08:25 +08:00
|
|
|
free_page((unsigned long)hv_cpu->synic_event_page);
|
|
|
|
free_page((unsigned long)hv_cpu->synic_message_page);
|
|
|
|
free_page((unsigned long)hv_cpu->post_msg_page);
|
2017-02-12 14:02:19 +08:00
|
|
|
}
|
|
|
|
|
2015-08-05 15:52:38 +08:00
|
|
|
kfree(hv_context.hv_numa_map);
|
2013-06-19 11:28:10 +08:00
|
|
|
}
|
|
|
|
|
2010-03-05 06:11:00 +08:00
|
|
|
/*
|
2018-03-05 13:17:13 +08:00
|
|
|
* hv_synic_init - Initialize the Synthetic Interrupt Controller.
|
2009-09-01 11:23:33 +08: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-06 07:01:15 +08:00
|
|
|
void hv_synic_enable_regs(unsigned int cpu)
|
2009-07-14 07:02:34 +08:00
|
|
|
{
|
2017-02-12 14:02:19 +08:00
|
|
|
struct hv_per_cpu_context *hv_cpu
|
|
|
|
= per_cpu_ptr(hv_context.cpu_context, cpu);
|
2009-08-21 03:11:26 +08:00
|
|
|
union hv_synic_simp simp;
|
|
|
|
union hv_synic_siefp siefp;
|
2010-11-09 06:04:41 +08:00
|
|
|
union hv_synic_sint shared_sint;
|
2009-08-21 03:11:26 +08:00
|
|
|
union hv_synic_scontrol sctrl;
|
2010-01-23 03:17:50 +08:00
|
|
|
|
|
|
|
/* Setup the Synic's message page */
|
2017-01-20 02:51:54 +08:00
|
|
|
hv_get_simp(simp.as_uint64);
|
2010-11-09 06:04:39 +08:00
|
|
|
simp.simp_enabled = 1;
|
2017-02-12 14:02:19 +08:00
|
|
|
simp.base_simp_gpa = virt_to_phys(hv_cpu->synic_message_page)
|
2020-09-16 11:48:10 +08:00
|
|
|
>> HV_HYP_PAGE_SHIFT;
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2017-01-20 02:51:54 +08:00
|
|
|
hv_set_simp(simp.as_uint64);
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2010-01-23 03:17:50 +08:00
|
|
|
/* Setup the Synic's event page */
|
2017-01-20 02:51:55 +08:00
|
|
|
hv_get_siefp(siefp.as_uint64);
|
2010-11-09 06:04:39 +08:00
|
|
|
siefp.siefp_enabled = 1;
|
2017-02-12 14:02:19 +08:00
|
|
|
siefp.base_siefp_gpa = virt_to_phys(hv_cpu->synic_event_page)
|
2020-09-16 11:48:10 +08:00
|
|
|
>> HV_HYP_PAGE_SHIFT;
|
2010-01-23 03:17:50 +08:00
|
|
|
|
2017-01-20 02:51:55 +08:00
|
|
|
hv_set_siefp(siefp.as_uint64);
|
2009-09-01 11:23:33 +08:00
|
|
|
|
|
|
|
/* Setup the shared SINT. */
|
2018-06-06 04:37:53 +08:00
|
|
|
hv_get_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2020-08-15 03:45:04 +08:00
|
|
|
shared_sint.vector = hv_get_vector();
|
2010-11-09 06:04:41 +08:00
|
|
|
shared_sint.masked = false;
|
2020-04-21 00:49:26 +08:00
|
|
|
shared_sint.auto_eoi = hv_recommend_using_aeoi();
|
2018-06-06 04:37:53 +08:00
|
|
|
hv_set_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2009-07-28 04:47:24 +08:00
|
|
|
/* Enable the global synic bit */
|
2017-01-20 02:51:56 +08:00
|
|
|
hv_get_synic_state(sctrl.as_uint64);
|
2010-11-09 06:04:39 +08:00
|
|
|
sctrl.enable = 1;
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2017-01-20 02:51:56 +08:00
|
|
|
hv_set_synic_state(sctrl.as_uint64);
|
2019-09-06 07:01:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int hv_synic_init(unsigned int cpu)
|
|
|
|
{
|
|
|
|
hv_synic_enable_regs(cpu);
|
2009-07-14 07:02:34 +08: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 09:11:49 +08:00
|
|
|
hv_stimer_legacy_init(cpu, VMBUS_MESSAGE_SINT);
|
2015-02-28 03:25:57 +08:00
|
|
|
|
2019-07-01 12:25:56 +08:00
|
|
|
return 0;
|
2015-02-28 03:25:57 +08:00
|
|
|
}
|
|
|
|
|
2010-03-05 06:11:00 +08:00
|
|
|
/*
|
2010-11-09 06:04:42 +08:00
|
|
|
* hv_synic_cleanup - Cleanup routine for hv_synic_init().
|
2009-09-01 11:23:33 +08:00
|
|
|
*/
|
2019-09-06 07:01:15 +08:00
|
|
|
void hv_synic_disable_regs(unsigned int cpu)
|
2009-07-14 07:02:34 +08:00
|
|
|
{
|
2010-11-09 06:04:41 +08:00
|
|
|
union hv_synic_sint shared_sint;
|
2009-08-21 03:11:26 +08:00
|
|
|
union hv_synic_simp simp;
|
|
|
|
union hv_synic_siefp siefp;
|
2015-02-28 03:25:55 +08:00
|
|
|
union hv_synic_scontrol sctrl;
|
2019-09-06 07:01:15 +08:00
|
|
|
|
|
|
|
hv_get_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
|
|
|
|
|
|
|
|
shared_sint.masked = 1;
|
|
|
|
|
|
|
|
/* Need to correctly cleanup in the case of SMP!!! */
|
|
|
|
/* Disable the interrupt */
|
|
|
|
hv_set_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
|
|
|
|
|
|
|
|
hv_get_simp(simp.as_uint64);
|
|
|
|
simp.simp_enabled = 0;
|
|
|
|
simp.base_simp_gpa = 0;
|
|
|
|
|
|
|
|
hv_set_simp(simp.as_uint64);
|
|
|
|
|
|
|
|
hv_get_siefp(siefp.as_uint64);
|
|
|
|
siefp.siefp_enabled = 0;
|
|
|
|
siefp.base_siefp_gpa = 0;
|
|
|
|
|
|
|
|
hv_set_siefp(siefp.as_uint64);
|
|
|
|
|
|
|
|
/* Disable the global synic bit */
|
|
|
|
hv_get_synic_state(sctrl.as_uint64);
|
|
|
|
sctrl.enable = 0;
|
|
|
|
hv_set_synic_state(sctrl.as_uint64);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hv_synic_cleanup(unsigned int cpu)
|
|
|
|
{
|
2016-12-08 06:53:12 +08:00
|
|
|
struct vmbus_channel *channel, *sc;
|
|
|
|
bool channel_found = false;
|
2009-07-14 07:02:34 +08:00
|
|
|
|
2020-04-06 08:15:04 +08:00
|
|
|
/*
|
|
|
|
* Hyper-V does not provide a way to change the connect CPU once
|
2020-11-11 03:01:18 +08: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 08:15:04 +08:00
|
|
|
*/
|
2020-11-11 03:01:18 +08:00
|
|
|
if (cpu == VMBUS_CONNECT_CPU &&
|
|
|
|
vmbus_connection.conn_state == CONNECTED)
|
2020-04-06 08:15:04 +08:00
|
|
|
return -EBUSY;
|
|
|
|
|
2016-12-08 06:53:12 +08:00
|
|
|
/*
|
|
|
|
* Search for channels which are bound to the CPU we're about to
|
2020-04-06 08:15:12 +08: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-08 06:53:12 +08: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);
|
|
|
|
|
|
|
|
if (channel_found && vmbus_connection.conn_state == CONNECTED)
|
|
|
|
return -EBUSY;
|
|
|
|
|
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 09:11:49 +08:00
|
|
|
hv_stimer_legacy_cleanup(cpu);
|
2015-02-28 03:25:57 +08:00
|
|
|
|
2019-09-06 07:01:15 +08:00
|
|
|
hv_synic_disable_regs(cpu);
|
2016-12-08 06:53:11 +08:00
|
|
|
|
|
|
|
return 0;
|
2009-07-14 07:02:34 +08:00
|
|
|
}
|