blob: 6341be8739ae6e3a4931912a6fcd3139a0314c4c [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
Hank Janssen3e7ee492009-07-13 16:02:34 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
20 *
21 */
Hank Janssen0a466182011-03-29 13:58:47 -070022#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070024#include <linux/kernel.h>
25#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Bill Pembertonb7c947f2009-07-29 17:00:13 -040027#include <linux/vmalloc.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070028#include <linux/hyperv.h>
K. Y. Srinivasan83ba0c42012-07-24 16:11:58 -070029#include <linux/version.h>
K. Y. Srinivasandb11f122012-12-01 06:46:53 -080030#include <linux/interrupt.h>
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -080031#include <linux/clockchips.h>
Greg Kroah-Hartman407dd162011-10-11 08:36:44 -060032#include <asm/hyperv.h>
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -080033#include <asm/mshyperv.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070034#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070035
Bill Pemberton454f18a2009-07-27 16:47:24 -040036/* The one and only */
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -080037struct hv_context hv_context = {
38 .synic_initialized = false,
39 .hypercall_page = NULL,
Hank Janssen3e7ee492009-07-13 16:02:34 -070040};
41
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -080042#define HV_TIMER_FREQUENCY (10 * 1000 * 1000) /* 100ns period */
43#define HV_MAX_MAX_DELTA_TICKS 0xffffffff
44#define HV_MIN_DELTA_TICKS 1
45
Hank Janssen3e189512010-03-04 22:11:00 +000046/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -080047 * query_hypervisor_info - Get version info of the windows hypervisor
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070048 */
K. Y. Srinivasan5fbebb22012-12-01 06:46:58 -080049unsigned int host_info_eax;
50unsigned int host_info_ebx;
51unsigned int host_info_ecx;
52unsigned int host_info_edx;
53
Haiyang Zhangd44890c2010-11-08 14:04:42 -080054static int query_hypervisor_info(void)
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070055{
56 unsigned int eax;
57 unsigned int ebx;
58 unsigned int ecx;
59 unsigned int edx;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -080060 unsigned int max_leaf;
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070061 unsigned int op;
Hank Janssen3e7ee492009-07-13 16:02:34 -070062
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070063 /*
64 * Its assumed that this is called after confirming that Viridian
65 * is present. Query id and revision.
66 */
67 eax = 0;
68 ebx = 0;
69 ecx = 0;
70 edx = 0;
Haiyang Zhangf6feebe2010-11-08 14:04:39 -080071 op = HVCPUID_VENDOR_MAXFUNCTION;
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070072 cpuid(op, &eax, &ebx, &ecx, &edx);
Hank Janssen3e7ee492009-07-13 16:02:34 -070073
Haiyang Zhangb8dfb262010-11-08 14:04:41 -080074 max_leaf = eax;
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070075
Haiyang Zhangb8dfb262010-11-08 14:04:41 -080076 if (max_leaf >= HVCPUID_VERSION) {
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070077 eax = 0;
78 ebx = 0;
79 ecx = 0;
80 edx = 0;
Haiyang Zhangf6feebe2010-11-08 14:04:39 -080081 op = HVCPUID_VERSION;
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070082 cpuid(op, &eax, &ebx, &ecx, &edx);
K. Y. Srinivasan5fbebb22012-12-01 06:46:58 -080083 host_info_eax = eax;
84 host_info_ebx = ebx;
85 host_info_ecx = ecx;
86 host_info_edx = edx;
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070087 }
Haiyang Zhangb8dfb262010-11-08 14:04:41 -080088 return max_leaf;
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070089}
90
Hank Janssen3e189512010-03-04 22:11:00 +000091/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -080092 * do_hypercall- Invoke the specified hypercall
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -070093 */
Haiyang Zhangd44890c2010-11-08 14:04:42 -080094static u64 do_hypercall(u64 control, void *input, void *output)
Hank Janssen3e7ee492009-07-13 16:02:34 -070095{
Haiyang Zhangb8dfb262010-11-08 14:04:41 -080096 u64 input_address = (input) ? virt_to_phys(input) : 0;
97 u64 output_address = (output) ? virt_to_phys(output) : 0;
K. Y. Srinivasandec317f2011-07-19 11:44:21 -070098 void *hypercall_page = hv_context.hypercall_page;
Vitaly Kuznetsovd7646ea2015-08-01 16:08:08 -070099#ifdef CONFIG_X86_64
100 u64 hv_status = 0;
101
102 if (!hypercall_page)
103 return (u64)ULLONG_MAX;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700104
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800105 __asm__ __volatile__("mov %0, %%r8" : : "r" (output_address) : "r8");
106 __asm__ __volatile__("call *%3" : "=a" (hv_status) :
107 "c" (control), "d" (input_address),
108 "m" (hypercall_page));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700109
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800110 return hv_status;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700111
112#else
113
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800114 u32 control_hi = control >> 32;
115 u32 control_lo = control & 0xFFFFFFFF;
116 u32 hv_status_hi = 1;
117 u32 hv_status_lo = 1;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800118 u32 input_address_hi = input_address >> 32;
119 u32 input_address_lo = input_address & 0xFFFFFFFF;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800120 u32 output_address_hi = output_address >> 32;
121 u32 output_address_lo = output_address & 0xFFFFFFFF;
Vitaly Kuznetsovd7646ea2015-08-01 16:08:08 -0700122
123 if (!hypercall_page)
124 return (u64)ULLONG_MAX;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700125
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800126 __asm__ __volatile__ ("call *%8" : "=d"(hv_status_hi),
127 "=a"(hv_status_lo) : "d" (control_hi),
128 "a" (control_lo), "b" (input_address_hi),
129 "c" (input_address_lo), "D"(output_address_hi),
130 "S"(output_address_lo), "m" (hypercall_page));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700131
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800132 return hv_status_lo | ((u64)hv_status_hi << 32);
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700133#endif /* !x86_64 */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700134}
135
K. Y. Srinivasanca9357b2015-08-05 00:52:42 -0700136#ifdef CONFIG_X86_64
137static cycle_t read_hv_clock_tsc(struct clocksource *arg)
138{
139 cycle_t current_tick;
140 struct ms_hyperv_tsc_page *tsc_pg = hv_context.tsc_page;
141
142 if (tsc_pg->tsc_sequence != -1) {
143 /*
144 * Use the tsc page to compute the value.
145 */
146
147 while (1) {
148 cycle_t tmp;
149 u32 sequence = tsc_pg->tsc_sequence;
150 u64 cur_tsc;
151 u64 scale = tsc_pg->tsc_scale;
152 s64 offset = tsc_pg->tsc_offset;
153
154 rdtscll(cur_tsc);
155 /* current_tick = ((cur_tsc *scale) >> 64) + offset */
156 asm("mulq %3"
157 : "=d" (current_tick), "=a" (tmp)
158 : "a" (cur_tsc), "r" (scale));
159
160 current_tick += offset;
161 if (tsc_pg->tsc_sequence == sequence)
162 return current_tick;
163
164 if (tsc_pg->tsc_sequence != -1)
165 continue;
166 /*
167 * Fallback using MSR method.
168 */
169 break;
170 }
171 }
172 rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick);
173 return current_tick;
174}
175
176static struct clocksource hyperv_cs_tsc = {
177 .name = "hyperv_clocksource_tsc_page",
178 .rating = 425,
179 .read = read_hv_clock_tsc,
180 .mask = CLOCKSOURCE_MASK(64),
181 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
182};
183#endif
184
185
Hank Janssen3e189512010-03-04 22:11:00 +0000186/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800187 * hv_init - Main initialization routine.
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700188 *
189 * This routine must be called before any other routines in here are called
190 */
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800191int hv_init(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700192{
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800193 int max_leaf;
194 union hv_x64_msr_hypercall_contents hypercall_msr;
K. Y. Srinivasanca9357b2015-08-05 00:52:42 -0700195 union hv_x64_msr_hypercall_contents tsc_msr;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800196 void *virtaddr = NULL;
K. Y. Srinivasanca9357b2015-08-05 00:52:42 -0700197 void *va_tsc = NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700198
K. Y. Srinivasan14c1bf82012-02-02 16:56:51 -0800199 memset(hv_context.synic_event_page, 0, sizeof(void *) * NR_CPUS);
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800200 memset(hv_context.synic_message_page, 0,
K. Y. Srinivasan14c1bf82012-02-02 16:56:51 -0800201 sizeof(void *) * NR_CPUS);
K. Y. Srinivasanb29ef352014-08-28 18:29:52 -0700202 memset(hv_context.post_msg_page, 0,
203 sizeof(void *) * NR_CPUS);
K. Y. Srinivasan917ea422012-12-01 06:46:47 -0800204 memset(hv_context.vp_index, 0,
205 sizeof(int) * NR_CPUS);
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800206 memset(hv_context.event_dpc, 0,
207 sizeof(void *) * NR_CPUS);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800208 memset(hv_context.clk_evt, 0,
209 sizeof(void *) * NR_CPUS);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700210
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800211 max_leaf = query_hypervisor_info();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700212
K. Y. Srinivasan83ba0c42012-07-24 16:11:58 -0700213 /*
214 * Write our OS ID.
215 */
216 hv_context.guestid = generate_guest_id(0, LINUX_VERSION_CODE, 0);
217 wrmsrl(HV_X64_MSR_GUEST_OS_ID, hv_context.guestid);
Hank Janssena73e6b72010-01-22 19:17:50 +0000218
219 /* See if the hypercall page is already set */
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800220 rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
Hank Janssena73e6b72010-01-22 19:17:50 +0000221
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800222 virtaddr = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL_EXEC);
Hank Janssena73e6b72010-01-22 19:17:50 +0000223
Hank Janssen98e08702011-03-29 13:58:44 -0700224 if (!virtaddr)
K. Y. Srinivasan44939d32011-05-10 07:55:47 -0700225 goto cleanup;
Hank Janssena73e6b72010-01-22 19:17:50 +0000226
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800227 hypercall_msr.enable = 1;
Hank Janssena73e6b72010-01-22 19:17:50 +0000228
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800229 hypercall_msr.guest_physical_address = vmalloc_to_pfn(virtaddr);
230 wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
Hank Janssena73e6b72010-01-22 19:17:50 +0000231
232 /* Confirm that hypercall page did get setup. */
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800233 hypercall_msr.as_uint64 = 0;
234 rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
Hank Janssena73e6b72010-01-22 19:17:50 +0000235
Hank Janssen98e08702011-03-29 13:58:44 -0700236 if (!hypercall_msr.enable)
K. Y. Srinivasan44939d32011-05-10 07:55:47 -0700237 goto cleanup;
Hank Janssena73e6b72010-01-22 19:17:50 +0000238
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800239 hv_context.hypercall_page = virtaddr;
Hank Janssena73e6b72010-01-22 19:17:50 +0000240
K. Y. Srinivasanca9357b2015-08-05 00:52:42 -0700241#ifdef CONFIG_X86_64
242 if (ms_hyperv.features & HV_X64_MSR_REFERENCE_TSC_AVAILABLE) {
243 va_tsc = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL);
244 if (!va_tsc)
245 goto cleanup;
246 hv_context.tsc_page = va_tsc;
247
248 rdmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr.as_uint64);
249
250 tsc_msr.enable = 1;
251 tsc_msr.guest_physical_address = vmalloc_to_pfn(va_tsc);
252
253 wrmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr.as_uint64);
254 clocksource_register_hz(&hyperv_cs_tsc, NSEC_PER_SEC/100);
255 }
256#endif
K. Y. Srinivasan5433e002011-08-25 09:48:51 -0700257 return 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700258
K. Y. Srinivasan44939d32011-05-10 07:55:47 -0700259cleanup:
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800260 if (virtaddr) {
261 if (hypercall_msr.enable) {
262 hypercall_msr.as_uint64 = 0;
263 wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700264 }
265
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800266 vfree(virtaddr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700267 }
K. Y. Srinivasan5433e002011-08-25 09:48:51 -0700268
269 return -ENOTSUPP;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700270}
271
Hank Janssen3e189512010-03-04 22:11:00 +0000272/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800273 * hv_cleanup - Cleanup routine.
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700274 *
275 * This routine is called normally during driver unloading or exiting.
276 */
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800277void hv_cleanup(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700278{
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800279 union hv_x64_msr_hypercall_contents hypercall_msr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700280
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800281 /* Reset our OS id */
282 wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0);
283
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800284 if (hv_context.hypercall_page) {
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800285 hypercall_msr.as_uint64 = 0;
286 wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800287 vfree(hv_context.hypercall_page);
288 hv_context.hypercall_page = NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700289 }
K. Y. Srinivasanca9357b2015-08-05 00:52:42 -0700290
291#ifdef CONFIG_X86_64
292 /*
293 * Cleanup the TSC page based CS.
294 */
295 if (ms_hyperv.features & HV_X64_MSR_REFERENCE_TSC_AVAILABLE) {
296 clocksource_change_rating(&hyperv_cs_tsc, 10);
297 clocksource_unregister(&hyperv_cs_tsc);
298
299 hypercall_msr.as_uint64 = 0;
300 wrmsrl(HV_X64_MSR_REFERENCE_TSC, hypercall_msr.as_uint64);
301 vfree(hv_context.tsc_page);
302 hv_context.tsc_page = NULL;
303 }
304#endif
Hank Janssen3e7ee492009-07-13 16:02:34 -0700305}
306
Hank Janssen3e189512010-03-04 22:11:00 +0000307/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800308 * hv_post_message - Post a message using the hypervisor message IPC.
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700309 *
310 * This involves a hypercall.
311 */
Dan Carpenter415f0a02012-03-28 09:58:07 +0300312int hv_post_message(union hv_connection_id connection_id,
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800313 enum hv_message_type message_type,
314 void *payload, size_t payload_size)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700315{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700316
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800317 struct hv_input_post_message *aligned_msg;
Greg Kroah-Hartman034469e2009-08-20 12:14:11 -0700318 u16 status;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700319
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800320 if (payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT)
K. Y. Srinivasan39594ab2011-06-06 15:50:09 -0700321 return -EMSGSIZE;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700322
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800323 aligned_msg = (struct hv_input_post_message *)
K. Y. Srinivasanb29ef352014-08-28 18:29:52 -0700324 hv_context.post_msg_page[get_cpu()];
Hank Janssen3e7ee492009-07-13 16:02:34 -0700325
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800326 aligned_msg->connectionid = connection_id;
K. Y. Srinivasanb29ef352014-08-28 18:29:52 -0700327 aligned_msg->reserved = 0;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800328 aligned_msg->message_type = message_type;
329 aligned_msg->payload_size = payload_size;
330 memcpy((void *)aligned_msg->payload, payload, payload_size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700331
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800332 status = do_hypercall(HVCALL_POST_MESSAGE, aligned_msg, NULL)
333 & 0xFFFF;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700334
K. Y. Srinivasanb29ef352014-08-28 18:29:52 -0700335 put_cpu();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700336 return status;
337}
338
339
Hank Janssen3e189512010-03-04 22:11:00 +0000340/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800341 * hv_signal_event -
342 * Signal an event on the specified connection using the hypervisor event IPC.
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700343 *
344 * This involves a hypercall.
345 */
K. Y. Srinivasan1f422482012-12-01 06:46:42 -0800346u16 hv_signal_event(void *con_id)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700347{
Greg Kroah-Hartman034469e2009-08-20 12:14:11 -0700348 u16 status;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700349
K. Y. Srinivasan1f422482012-12-01 06:46:42 -0800350 status = (do_hypercall(HVCALL_SIGNAL_EVENT, con_id, NULL) & 0xFFFF);
351
Hank Janssen3e7ee492009-07-13 16:02:34 -0700352 return status;
353}
354
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800355static int hv_ce_set_next_event(unsigned long delta,
356 struct clock_event_device *evt)
357{
358 cycle_t current_tick;
359
Viresh Kumarbc609cb2015-08-05 00:52:41 -0700360 WARN_ON(!clockevent_state_oneshot(evt));
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800361
362 rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick);
363 current_tick += delta;
364 wrmsrl(HV_X64_MSR_STIMER0_COUNT, current_tick);
365 return 0;
366}
367
Viresh Kumarbc609cb2015-08-05 00:52:41 -0700368static int hv_ce_shutdown(struct clock_event_device *evt)
369{
370 wrmsrl(HV_X64_MSR_STIMER0_COUNT, 0);
371 wrmsrl(HV_X64_MSR_STIMER0_CONFIG, 0);
372
373 return 0;
374}
375
376static int hv_ce_set_oneshot(struct clock_event_device *evt)
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800377{
378 union hv_timer_config timer_cfg;
379
Viresh Kumarbc609cb2015-08-05 00:52:41 -0700380 timer_cfg.enable = 1;
381 timer_cfg.auto_enable = 1;
382 timer_cfg.sintx = VMBUS_MESSAGE_SINT;
383 wrmsrl(HV_X64_MSR_STIMER0_CONFIG, timer_cfg.as_uint64);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800384
Viresh Kumarbc609cb2015-08-05 00:52:41 -0700385 return 0;
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800386}
387
388static void hv_init_clockevent_device(struct clock_event_device *dev, int cpu)
389{
390 dev->name = "Hyper-V clockevent";
391 dev->features = CLOCK_EVT_FEAT_ONESHOT;
392 dev->cpumask = cpumask_of(cpu);
393 dev->rating = 1000;
Vitaly Kuznetsove0867482015-02-27 11:25:57 -0800394 /*
395 * Avoid settint dev->owner = THIS_MODULE deliberately as doing so will
396 * result in clockevents_config_and_register() taking additional
397 * references to the hv_vmbus module making it impossible to unload.
398 */
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800399
Viresh Kumarbc609cb2015-08-05 00:52:41 -0700400 dev->set_state_shutdown = hv_ce_shutdown;
401 dev->set_state_oneshot = hv_ce_set_oneshot;
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800402 dev->set_next_event = hv_ce_set_next_event;
403}
404
Jason Wang2608fb62013-06-19 11:28:10 +0800405
406int hv_synic_alloc(void)
407{
408 size_t size = sizeof(struct tasklet_struct);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800409 size_t ced_size = sizeof(struct clock_event_device);
Jason Wang2608fb62013-06-19 11:28:10 +0800410 int cpu;
411
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700412 hv_context.hv_numa_map = kzalloc(sizeof(struct cpumask) * nr_node_ids,
413 GFP_ATOMIC);
414 if (hv_context.hv_numa_map == NULL) {
415 pr_err("Unable to allocate NUMA map\n");
416 goto err;
417 }
418
Jason Wang2608fb62013-06-19 11:28:10 +0800419 for_each_online_cpu(cpu) {
420 hv_context.event_dpc[cpu] = kmalloc(size, GFP_ATOMIC);
421 if (hv_context.event_dpc[cpu] == NULL) {
422 pr_err("Unable to allocate event dpc\n");
423 goto err;
424 }
425 tasklet_init(hv_context.event_dpc[cpu], vmbus_on_event, cpu);
426
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800427 hv_context.clk_evt[cpu] = kzalloc(ced_size, GFP_ATOMIC);
428 if (hv_context.clk_evt[cpu] == NULL) {
429 pr_err("Unable to allocate clock event device\n");
430 goto err;
431 }
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700432
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800433 hv_init_clockevent_device(hv_context.clk_evt[cpu], cpu);
434
Jason Wang2608fb62013-06-19 11:28:10 +0800435 hv_context.synic_message_page[cpu] =
436 (void *)get_zeroed_page(GFP_ATOMIC);
437
438 if (hv_context.synic_message_page[cpu] == NULL) {
439 pr_err("Unable to allocate SYNIC message page\n");
440 goto err;
441 }
442
443 hv_context.synic_event_page[cpu] =
444 (void *)get_zeroed_page(GFP_ATOMIC);
445
446 if (hv_context.synic_event_page[cpu] == NULL) {
447 pr_err("Unable to allocate SYNIC event page\n");
448 goto err;
449 }
K. Y. Srinivasanb29ef352014-08-28 18:29:52 -0700450
451 hv_context.post_msg_page[cpu] =
452 (void *)get_zeroed_page(GFP_ATOMIC);
453
454 if (hv_context.post_msg_page[cpu] == NULL) {
455 pr_err("Unable to allocate post msg page\n");
456 goto err;
457 }
Jason Wang2608fb62013-06-19 11:28:10 +0800458 }
459
460 return 0;
461err:
462 return -ENOMEM;
463}
464
Rashika Kheria87129542013-12-14 19:00:06 +0530465static void hv_synic_free_cpu(int cpu)
Jason Wang2608fb62013-06-19 11:28:10 +0800466{
467 kfree(hv_context.event_dpc[cpu]);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800468 kfree(hv_context.clk_evt[cpu]);
Felipe Penafdf91da2013-10-15 20:22:32 -0300469 if (hv_context.synic_event_page[cpu])
Jason Wang2608fb62013-06-19 11:28:10 +0800470 free_page((unsigned long)hv_context.synic_event_page[cpu]);
471 if (hv_context.synic_message_page[cpu])
472 free_page((unsigned long)hv_context.synic_message_page[cpu]);
K. Y. Srinivasanb29ef352014-08-28 18:29:52 -0700473 if (hv_context.post_msg_page[cpu])
474 free_page((unsigned long)hv_context.post_msg_page[cpu]);
Jason Wang2608fb62013-06-19 11:28:10 +0800475}
476
477void hv_synic_free(void)
478{
479 int cpu;
480
K. Y. Srinivasan9f01ec532015-08-05 00:52:38 -0700481 kfree(hv_context.hv_numa_map);
Jason Wang2608fb62013-06-19 11:28:10 +0800482 for_each_online_cpu(cpu)
483 hv_synic_free_cpu(cpu);
484}
485
Hank Janssen3e189512010-03-04 22:11:00 +0000486/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800487 * hv_synic_init - Initialize the Synthethic Interrupt Controller.
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700488 *
489 * If it is already initialized by another entity (ie x2v shim), we need to
490 * retrieve the initialized message and event pages. Otherwise, we create and
491 * initialize the message and event pages.
492 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800493void hv_synic_init(void *arg)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700494{
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700495 u64 version;
Greg Kroah-Hartmaneacb1b42009-08-20 12:11:26 -0700496 union hv_synic_simp simp;
497 union hv_synic_siefp siefp;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800498 union hv_synic_sint shared_sint;
Greg Kroah-Hartmaneacb1b42009-08-20 12:11:26 -0700499 union hv_synic_scontrol sctrl;
K. Y. Srinivasan917ea422012-12-01 06:46:47 -0800500 u64 vp_index;
Hank Janssena73e6b72010-01-22 19:17:50 +0000501
Greg Kroah-Hartman7692fd42010-01-08 09:06:40 -0800502 int cpu = smp_processor_id();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700503
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800504 if (!hv_context.hypercall_page)
Greg Kroah-Hartman7692fd42010-01-08 09:06:40 -0800505 return;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700506
Bill Pemberton454f18a2009-07-27 16:47:24 -0400507 /* Check the version */
Greg Kroah-Hartmana51ed7d2009-08-17 17:20:02 -0700508 rdmsrl(HV_X64_MSR_SVERSION, version);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700509
Hank Janssena73e6b72010-01-22 19:17:50 +0000510 /* Setup the Synic's message page */
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800511 rdmsrl(HV_X64_MSR_SIMP, simp.as_uint64);
512 simp.simp_enabled = 1;
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800513 simp.base_simp_gpa = virt_to_phys(hv_context.synic_message_page[cpu])
Hank Janssena73e6b72010-01-22 19:17:50 +0000514 >> PAGE_SHIFT;
515
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800516 wrmsrl(HV_X64_MSR_SIMP, simp.as_uint64);
Hank Janssena73e6b72010-01-22 19:17:50 +0000517
518 /* Setup the Synic's event page */
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800519 rdmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64);
520 siefp.siefp_enabled = 1;
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800521 siefp.base_siefp_gpa = virt_to_phys(hv_context.synic_event_page[cpu])
Hank Janssena73e6b72010-01-22 19:17:50 +0000522 >> PAGE_SHIFT;
523
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800524 wrmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64);
Hank Janssena73e6b72010-01-22 19:17:50 +0000525
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700526 /* Setup the shared SINT. */
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800527 rdmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700528
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800529 shared_sint.as_uint64 = 0;
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800530 shared_sint.vector = HYPERVISOR_CALLBACK_VECTOR;
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800531 shared_sint.masked = false;
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800532 shared_sint.auto_eoi = true;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700533
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800534 wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700535
Bill Pemberton454f18a2009-07-27 16:47:24 -0400536 /* Enable the global synic bit */
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800537 rdmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64);
538 sctrl.enable = 1;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700539
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800540 wrmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700541
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800542 hv_context.synic_initialized = true;
K. Y. Srinivasan917ea422012-12-01 06:46:47 -0800543
544 /*
545 * Setup the mapping between Hyper-V's notion
546 * of cpuid and Linux' notion of cpuid.
547 * This array will be indexed using Linux cpuid.
548 */
549 rdmsrl(HV_X64_MSR_VP_INDEX, vp_index);
550 hv_context.vp_index[cpu] = (u32)vp_index;
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700551
552 INIT_LIST_HEAD(&hv_context.percpu_list[cpu]);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800553
554 /*
555 * Register the per-cpu clockevent source.
556 */
557 if (ms_hyperv.features & HV_X64_MSR_SYNTIMER_AVAILABLE)
558 clockevents_config_and_register(hv_context.clk_evt[cpu],
559 HV_TIMER_FREQUENCY,
560 HV_MIN_DELTA_TICKS,
561 HV_MAX_MAX_DELTA_TICKS);
Greg Kroah-Hartman7692fd42010-01-08 09:06:40 -0800562 return;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700563}
564
Hank Janssen3e189512010-03-04 22:11:00 +0000565/*
Vitaly Kuznetsove0867482015-02-27 11:25:57 -0800566 * hv_synic_clockevents_cleanup - Cleanup clockevent devices
567 */
568void hv_synic_clockevents_cleanup(void)
569{
570 int cpu;
571
572 if (!(ms_hyperv.features & HV_X64_MSR_SYNTIMER_AVAILABLE))
573 return;
574
575 for_each_online_cpu(cpu)
576 clockevents_unbind_device(hv_context.clk_evt[cpu], cpu);
577}
578
579/*
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800580 * hv_synic_cleanup - Cleanup routine for hv_synic_init().
Greg Kroah-Hartman0831ad02009-08-31 20:23:33 -0700581 */
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800582void hv_synic_cleanup(void *arg)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700583{
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800584 union hv_synic_sint shared_sint;
Greg Kroah-Hartmaneacb1b42009-08-20 12:11:26 -0700585 union hv_synic_simp simp;
586 union hv_synic_siefp siefp;
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -0800587 union hv_synic_scontrol sctrl;
Greg Kroah-Hartman7692fd42010-01-08 09:06:40 -0800588 int cpu = smp_processor_id();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700589
Haiyang Zhang6a0aaa12010-11-08 14:04:40 -0800590 if (!hv_context.synic_initialized)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700591 return;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700592
Vitaly Kuznetsove0867482015-02-27 11:25:57 -0800593 /* Turn off clockevent device */
594 if (ms_hyperv.features & HV_X64_MSR_SYNTIMER_AVAILABLE)
Viresh Kumarbc609cb2015-08-05 00:52:41 -0700595 hv_ce_shutdown(hv_context.clk_evt[cpu]);
Vitaly Kuznetsove0867482015-02-27 11:25:57 -0800596
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800597 rdmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700598
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800599 shared_sint.masked = 1;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700600
Greg Kroah-Hartman7692fd42010-01-08 09:06:40 -0800601 /* Need to correctly cleanup in the case of SMP!!! */
Bill Pemberton454f18a2009-07-27 16:47:24 -0400602 /* Disable the interrupt */
Haiyang Zhangb8dfb262010-11-08 14:04:41 -0800603 wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700604
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800605 rdmsrl(HV_X64_MSR_SIMP, simp.as_uint64);
606 simp.simp_enabled = 0;
607 simp.base_simp_gpa = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700608
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800609 wrmsrl(HV_X64_MSR_SIMP, simp.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700610
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800611 rdmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64);
612 siefp.siefp_enabled = 0;
613 siefp.base_siefp_gpa = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700614
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800615 wrmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700616
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -0800617 /* Disable the global synic bit */
618 rdmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64);
619 sctrl.enable = 0;
620 wrmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700621}