blob: 9749cbce33d40a01aff81eb4de901179ca500f84 [file] [log] [blame]
Thomas Gleixner3b20eb22019-05-29 16:57:35 -07001// SPDX-License-Identifier: GPL-2.0-only
Hank Janssen3e7ee492009-07-13 16:02:34 -07002/*
Hank Janssen3e7ee492009-07-13 16:02:34 -07003 * Copyright (c) 2009, Microsoft Corporation.
4 *
Hank Janssen3e7ee492009-07-13 16:02:34 -07005 * Authors:
6 * Haiyang Zhang <haiyangz@microsoft.com>
7 * Hank Janssen <hjanssen@microsoft.com>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07008 * K. Y. Srinivasan <kys@microsoft.com>
Hank Janssen3e7ee492009-07-13 16:02:34 -07009 */
Hank Janssen0a466182011-03-29 13:58:47 -070010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Hank Janssen3e7ee492009-07-13 16:02:34 -070012#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/device.h>
Hank Janssen3e7ee492009-07-13 16:02:34 -070015#include <linux/interrupt.h>
16#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070018#include <linux/acpi.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000019#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070020#include <linux/hyperv.h>
K. Y. Srinivasanb0209502012-12-01 06:46:54 -080021#include <linux/kernel_stat.h>
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -080022#include <linux/clockchips.h>
Vitaly Kuznetsove5132292015-02-27 11:25:51 -080023#include <linux/cpu.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010024#include <linux/sched/task_stack.h>
25
Dexuan Cui1f48dcf2019-09-05 23:01:20 +000026#include <linux/delay.h>
Nick Meier96c1d052015-02-28 11:39:01 -080027#include <linux/notifier.h>
28#include <linux/ptrace.h>
Jake Oshins35464482015-08-05 00:52:37 -070029#include <linux/screen_info.h>
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070030#include <linux/kdebug.h>
Jake Oshins6d146ae2016-04-05 10:22:55 -070031#include <linux/efi.h>
Stephan Mueller4b44f2d2016-05-02 02:14:34 -040032#include <linux/random.h>
Tianyu Lanf3a99e72020-04-06 08:53:31 -070033#include <linux/kernel.h>
Dexuan Cui63ecc6d2019-09-05 23:01:16 +000034#include <linux/syscore_ops.h>
Michael Kelleyfd1fea62019-07-01 04:25:56 +000035#include <clocksource/hyperv_timer.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070036#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070037
Stephen Hemmingerfc769362016-12-03 12:34:39 -080038struct vmbus_dynid {
39 struct list_head node;
40 struct hv_vmbus_device_id id;
41};
42
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -070043static struct acpi_device *hv_acpi_dev;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -070044
K. Y. Srinivasan71a66552011-04-29 13:45:04 -070045static struct completion probe_event;
Hank Janssen3e7ee492009-07-13 16:02:34 -070046
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -080047static int hyperv_cpuhp_online;
Nick Meier96c1d052015-02-28 11:39:01 -080048
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +000049static void *hv_panic_page;
50
Michael Kelley626b9012020-08-14 12:45:04 -070051/* Values parsed from ACPI DSDT */
52static int vmbus_irq;
53int vmbus_interrupt;
54
Tianyu Lan040026d2020-04-06 08:53:30 -070055/*
56 * Boolean to control whether to report panic messages over Hyper-V.
57 *
Matheus Castellob18e3582020-11-15 16:57:29 -030058 * It can be set via /proc/sys/kernel/hyperv_record_panic_msg
Tianyu Lan040026d2020-04-06 08:53:30 -070059 */
60static int sysctl_record_panic_msg = 1;
61
62static int hyperv_report_reg(void)
63{
64 return !sysctl_record_panic_msg || !hv_panic_page;
65}
66
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070067static int hyperv_panic_event(struct notifier_block *nb, unsigned long val,
68 void *args)
69{
70 struct pt_regs *regs;
71
Tianyu Lan74347a92020-04-06 08:53:26 -070072 vmbus_initiate_unload(true);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070073
Tianyu Lan73f26e52020-04-06 08:53:28 -070074 /*
75 * Hyper-V should be notified only once about a panic. If we will be
76 * doing hyperv_report_panic_msg() later with kmsg data, don't do
77 * the notification here.
78 */
79 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE
Tianyu Lan040026d2020-04-06 08:53:30 -070080 && hyperv_report_reg()) {
Tianyu Lan74347a92020-04-06 08:53:26 -070081 regs = current_pt_regs();
Tianyu Lanf3a99e72020-04-06 08:53:31 -070082 hyperv_report_panic(regs, val, false);
Tianyu Lan74347a92020-04-06 08:53:26 -070083 }
Nick Meier96c1d052015-02-28 11:39:01 -080084 return NOTIFY_DONE;
85}
86
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070087static int hyperv_die_event(struct notifier_block *nb, unsigned long val,
88 void *args)
89{
Olaf Hering49971e62020-08-19 11:05:09 +020090 struct die_args *die = args;
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070091 struct pt_regs *regs = die->regs;
92
Michael Kelley608a9732020-08-06 09:22:15 -070093 /* Don't notify Hyper-V if the die event is other than oops */
94 if (val != DIE_OOPS)
95 return NOTIFY_DONE;
96
Tianyu Lan73f26e52020-04-06 08:53:28 -070097 /*
98 * Hyper-V should be notified only once about a panic. If we will be
99 * doing hyperv_report_panic_msg() later with kmsg data, don't do
100 * the notification here.
101 */
Tianyu Lan040026d2020-04-06 08:53:30 -0700102 if (hyperv_report_reg())
Tianyu Lanf3a99e72020-04-06 08:53:31 -0700103 hyperv_report_panic(regs, val, true);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -0700104 return NOTIFY_DONE;
105}
106
107static struct notifier_block hyperv_die_block = {
108 .notifier_call = hyperv_die_event,
109};
Nick Meier96c1d052015-02-28 11:39:01 -0800110static struct notifier_block hyperv_panic_block = {
111 .notifier_call = hyperv_panic_event,
112};
113
Jake Oshins6d146ae2016-04-05 10:22:55 -0700114static const char *fb_mmio_name = "fb_range";
115static struct resource *fb_mmio;
Stephen Hemmingere2e80842016-09-07 05:39:33 -0700116static struct resource *hyperv_mmio;
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -0700117static DEFINE_MUTEX(hyperv_mmio_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700118
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800119static int vmbus_exists(void)
120{
121 if (hv_acpi_dev == NULL)
122 return -ENODEV;
123
124 return 0;
125}
126
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700127static u8 channel_monitor_group(const struct vmbus_channel *channel)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700128{
129 return (u8)channel->offermsg.monitorid / 32;
130}
131
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700132static u8 channel_monitor_offset(const struct vmbus_channel *channel)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700133{
134 return (u8)channel->offermsg.monitorid % 32;
135}
136
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700137static u32 channel_pending(const struct vmbus_channel *channel,
138 const struct hv_monitor_page *monitor_page)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700139{
140 u8 monitor_group = channel_monitor_group(channel);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700141
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700142 return monitor_page->trigger_group[monitor_group].pending;
143}
144
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700145static u32 channel_latency(const struct vmbus_channel *channel,
146 const struct hv_monitor_page *monitor_page)
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700147{
148 u8 monitor_group = channel_monitor_group(channel);
149 u8 monitor_offset = channel_monitor_offset(channel);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700150
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700151 return monitor_page->latency[monitor_group][monitor_offset];
152}
153
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700154static u32 channel_conn_id(struct vmbus_channel *channel,
155 struct hv_monitor_page *monitor_page)
156{
157 u8 monitor_group = channel_monitor_group(channel);
158 u8 monitor_offset = channel_monitor_offset(channel);
Matheus Castelloe4f22122020-11-15 16:57:31 -0300159
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700160 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
161}
162
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700163static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
164 char *buf)
165{
166 struct hv_device *hv_dev = device_to_hv_device(dev);
167
168 if (!hv_dev->channel)
169 return -ENODEV;
170 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
171}
172static DEVICE_ATTR_RO(id);
173
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700174static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
175 char *buf)
176{
177 struct hv_device *hv_dev = device_to_hv_device(dev);
178
179 if (!hv_dev->channel)
180 return -ENODEV;
181 return sprintf(buf, "%d\n", hv_dev->channel->state);
182}
183static DEVICE_ATTR_RO(state);
184
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700185static ssize_t monitor_id_show(struct device *dev,
186 struct device_attribute *dev_attr, char *buf)
187{
188 struct hv_device *hv_dev = device_to_hv_device(dev);
189
190 if (!hv_dev->channel)
191 return -ENODEV;
192 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
193}
194static DEVICE_ATTR_RO(monitor_id);
195
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700196static ssize_t class_id_show(struct device *dev,
197 struct device_attribute *dev_attr, char *buf)
198{
199 struct hv_device *hv_dev = device_to_hv_device(dev);
200
201 if (!hv_dev->channel)
202 return -ENODEV;
203 return sprintf(buf, "{%pUl}\n",
Andy Shevchenko458c4472020-04-23 16:45:03 +0300204 &hv_dev->channel->offermsg.offer.if_type);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700205}
206static DEVICE_ATTR_RO(class_id);
207
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700208static ssize_t device_id_show(struct device *dev,
209 struct device_attribute *dev_attr, char *buf)
210{
211 struct hv_device *hv_dev = device_to_hv_device(dev);
212
213 if (!hv_dev->channel)
214 return -ENODEV;
215 return sprintf(buf, "{%pUl}\n",
Andy Shevchenko458c4472020-04-23 16:45:03 +0300216 &hv_dev->channel->offermsg.offer.if_instance);
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700217}
218static DEVICE_ATTR_RO(device_id);
219
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700220static ssize_t modalias_show(struct device *dev,
221 struct device_attribute *dev_attr, char *buf)
222{
223 struct hv_device *hv_dev = device_to_hv_device(dev);
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700224
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300225 return sprintf(buf, "vmbus:%*phN\n", UUID_SIZE, &hv_dev->dev_type);
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700226}
227static DEVICE_ATTR_RO(modalias);
228
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000229#ifdef CONFIG_NUMA
230static ssize_t numa_node_show(struct device *dev,
231 struct device_attribute *attr, char *buf)
232{
233 struct hv_device *hv_dev = device_to_hv_device(dev);
234
235 if (!hv_dev->channel)
236 return -ENODEV;
237
Andrea Parri (Microsoft)458d0902020-06-17 18:46:36 +0200238 return sprintf(buf, "%d\n", cpu_to_node(hv_dev->channel->target_cpu));
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000239}
240static DEVICE_ATTR_RO(numa_node);
241#endif
242
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700243static ssize_t server_monitor_pending_show(struct device *dev,
244 struct device_attribute *dev_attr,
245 char *buf)
246{
247 struct hv_device *hv_dev = device_to_hv_device(dev);
248
249 if (!hv_dev->channel)
250 return -ENODEV;
251 return sprintf(buf, "%d\n",
252 channel_pending(hv_dev->channel,
Kimberly Brownfd8e3c32019-02-19 00:38:06 -0500253 vmbus_connection.monitor_pages[0]));
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700254}
255static DEVICE_ATTR_RO(server_monitor_pending);
256
257static ssize_t client_monitor_pending_show(struct device *dev,
258 struct device_attribute *dev_attr,
259 char *buf)
260{
261 struct hv_device *hv_dev = device_to_hv_device(dev);
262
263 if (!hv_dev->channel)
264 return -ENODEV;
265 return sprintf(buf, "%d\n",
266 channel_pending(hv_dev->channel,
267 vmbus_connection.monitor_pages[1]));
268}
269static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700270
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700271static ssize_t server_monitor_latency_show(struct device *dev,
272 struct device_attribute *dev_attr,
273 char *buf)
274{
275 struct hv_device *hv_dev = device_to_hv_device(dev);
276
277 if (!hv_dev->channel)
278 return -ENODEV;
279 return sprintf(buf, "%d\n",
280 channel_latency(hv_dev->channel,
281 vmbus_connection.monitor_pages[0]));
282}
283static DEVICE_ATTR_RO(server_monitor_latency);
284
285static ssize_t client_monitor_latency_show(struct device *dev,
286 struct device_attribute *dev_attr,
287 char *buf)
288{
289 struct hv_device *hv_dev = device_to_hv_device(dev);
290
291 if (!hv_dev->channel)
292 return -ENODEV;
293 return sprintf(buf, "%d\n",
294 channel_latency(hv_dev->channel,
295 vmbus_connection.monitor_pages[1]));
296}
297static DEVICE_ATTR_RO(client_monitor_latency);
298
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700299static ssize_t server_monitor_conn_id_show(struct device *dev,
300 struct device_attribute *dev_attr,
301 char *buf)
302{
303 struct hv_device *hv_dev = device_to_hv_device(dev);
304
305 if (!hv_dev->channel)
306 return -ENODEV;
307 return sprintf(buf, "%d\n",
308 channel_conn_id(hv_dev->channel,
309 vmbus_connection.monitor_pages[0]));
310}
311static DEVICE_ATTR_RO(server_monitor_conn_id);
312
313static ssize_t client_monitor_conn_id_show(struct device *dev,
314 struct device_attribute *dev_attr,
315 char *buf)
316{
317 struct hv_device *hv_dev = device_to_hv_device(dev);
318
319 if (!hv_dev->channel)
320 return -ENODEV;
321 return sprintf(buf, "%d\n",
322 channel_conn_id(hv_dev->channel,
323 vmbus_connection.monitor_pages[1]));
324}
325static DEVICE_ATTR_RO(client_monitor_conn_id);
326
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700327static ssize_t out_intr_mask_show(struct device *dev,
328 struct device_attribute *dev_attr, char *buf)
329{
330 struct hv_device *hv_dev = device_to_hv_device(dev);
331 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000332 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700333
334 if (!hv_dev->channel)
335 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000336
337 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
338 &outbound);
339 if (ret < 0)
340 return ret;
341
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700342 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
343}
344static DEVICE_ATTR_RO(out_intr_mask);
345
346static ssize_t out_read_index_show(struct device *dev,
347 struct device_attribute *dev_attr, char *buf)
348{
349 struct hv_device *hv_dev = device_to_hv_device(dev);
350 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000351 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700352
353 if (!hv_dev->channel)
354 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000355
356 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
357 &outbound);
358 if (ret < 0)
359 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700360 return sprintf(buf, "%d\n", outbound.current_read_index);
361}
362static DEVICE_ATTR_RO(out_read_index);
363
364static ssize_t out_write_index_show(struct device *dev,
365 struct device_attribute *dev_attr,
366 char *buf)
367{
368 struct hv_device *hv_dev = device_to_hv_device(dev);
369 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000370 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700371
372 if (!hv_dev->channel)
373 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000374
375 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
376 &outbound);
377 if (ret < 0)
378 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700379 return sprintf(buf, "%d\n", outbound.current_write_index);
380}
381static DEVICE_ATTR_RO(out_write_index);
382
383static ssize_t out_read_bytes_avail_show(struct device *dev,
384 struct device_attribute *dev_attr,
385 char *buf)
386{
387 struct hv_device *hv_dev = device_to_hv_device(dev);
388 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000389 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700390
391 if (!hv_dev->channel)
392 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000393
394 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
395 &outbound);
396 if (ret < 0)
397 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700398 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
399}
400static DEVICE_ATTR_RO(out_read_bytes_avail);
401
402static ssize_t out_write_bytes_avail_show(struct device *dev,
403 struct device_attribute *dev_attr,
404 char *buf)
405{
406 struct hv_device *hv_dev = device_to_hv_device(dev);
407 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000408 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700409
410 if (!hv_dev->channel)
411 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000412
413 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
414 &outbound);
415 if (ret < 0)
416 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700417 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
418}
419static DEVICE_ATTR_RO(out_write_bytes_avail);
420
421static ssize_t in_intr_mask_show(struct device *dev,
422 struct device_attribute *dev_attr, char *buf)
423{
424 struct hv_device *hv_dev = device_to_hv_device(dev);
425 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000426 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700427
428 if (!hv_dev->channel)
429 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000430
431 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
432 if (ret < 0)
433 return ret;
434
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700435 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
436}
437static DEVICE_ATTR_RO(in_intr_mask);
438
439static ssize_t in_read_index_show(struct device *dev,
440 struct device_attribute *dev_attr, char *buf)
441{
442 struct hv_device *hv_dev = device_to_hv_device(dev);
443 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000444 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700445
446 if (!hv_dev->channel)
447 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000448
449 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
450 if (ret < 0)
451 return ret;
452
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700453 return sprintf(buf, "%d\n", inbound.current_read_index);
454}
455static DEVICE_ATTR_RO(in_read_index);
456
457static ssize_t in_write_index_show(struct device *dev,
458 struct device_attribute *dev_attr, char *buf)
459{
460 struct hv_device *hv_dev = device_to_hv_device(dev);
461 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000462 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700463
464 if (!hv_dev->channel)
465 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000466
467 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
468 if (ret < 0)
469 return ret;
470
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700471 return sprintf(buf, "%d\n", inbound.current_write_index);
472}
473static DEVICE_ATTR_RO(in_write_index);
474
475static ssize_t in_read_bytes_avail_show(struct device *dev,
476 struct device_attribute *dev_attr,
477 char *buf)
478{
479 struct hv_device *hv_dev = device_to_hv_device(dev);
480 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000481 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700482
483 if (!hv_dev->channel)
484 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000485
486 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
487 if (ret < 0)
488 return ret;
489
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700490 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
491}
492static DEVICE_ATTR_RO(in_read_bytes_avail);
493
494static ssize_t in_write_bytes_avail_show(struct device *dev,
495 struct device_attribute *dev_attr,
496 char *buf)
497{
498 struct hv_device *hv_dev = device_to_hv_device(dev);
499 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000500 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700501
502 if (!hv_dev->channel)
503 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000504
505 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
506 if (ret < 0)
507 return ret;
508
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700509 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
510}
511static DEVICE_ATTR_RO(in_write_bytes_avail);
512
Dexuan Cui042ab032015-08-05 00:52:43 -0700513static ssize_t channel_vp_mapping_show(struct device *dev,
514 struct device_attribute *dev_attr,
515 char *buf)
516{
517 struct hv_device *hv_dev = device_to_hv_device(dev);
518 struct vmbus_channel *channel = hv_dev->channel, *cur_sc;
Dexuan Cui042ab032015-08-05 00:52:43 -0700519 int buf_size = PAGE_SIZE, n_written, tot_written;
520 struct list_head *cur;
521
522 if (!channel)
523 return -ENODEV;
524
Andrea Parri (Microsoft)3eb0ac82020-06-17 18:46:39 +0200525 mutex_lock(&vmbus_connection.channel_mutex);
526
Dexuan Cui042ab032015-08-05 00:52:43 -0700527 tot_written = snprintf(buf, buf_size, "%u:%u\n",
528 channel->offermsg.child_relid, channel->target_cpu);
529
Dexuan Cui042ab032015-08-05 00:52:43 -0700530 list_for_each(cur, &channel->sc_list) {
531 if (tot_written >= buf_size - 1)
532 break;
533
534 cur_sc = list_entry(cur, struct vmbus_channel, sc_list);
535 n_written = scnprintf(buf + tot_written,
536 buf_size - tot_written,
537 "%u:%u\n",
538 cur_sc->offermsg.child_relid,
539 cur_sc->target_cpu);
540 tot_written += n_written;
541 }
542
Andrea Parri (Microsoft)3eb0ac82020-06-17 18:46:39 +0200543 mutex_unlock(&vmbus_connection.channel_mutex);
Dexuan Cui042ab032015-08-05 00:52:43 -0700544
545 return tot_written;
546}
547static DEVICE_ATTR_RO(channel_vp_mapping);
548
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800549static ssize_t vendor_show(struct device *dev,
550 struct device_attribute *dev_attr,
551 char *buf)
552{
553 struct hv_device *hv_dev = device_to_hv_device(dev);
Matheus Castelloe4f22122020-11-15 16:57:31 -0300554
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800555 return sprintf(buf, "0x%x\n", hv_dev->vendor_id);
556}
557static DEVICE_ATTR_RO(vendor);
558
559static ssize_t device_show(struct device *dev,
560 struct device_attribute *dev_attr,
561 char *buf)
562{
563 struct hv_device *hv_dev = device_to_hv_device(dev);
Matheus Castelloe4f22122020-11-15 16:57:31 -0300564
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800565 return sprintf(buf, "0x%x\n", hv_dev->device_id);
566}
567static DEVICE_ATTR_RO(device);
568
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000569static ssize_t driver_override_store(struct device *dev,
570 struct device_attribute *attr,
571 const char *buf, size_t count)
572{
573 struct hv_device *hv_dev = device_to_hv_device(dev);
574 char *driver_override, *old, *cp;
575
576 /* We need to keep extra room for a newline */
577 if (count >= (PAGE_SIZE - 1))
578 return -EINVAL;
579
580 driver_override = kstrndup(buf, count, GFP_KERNEL);
581 if (!driver_override)
582 return -ENOMEM;
583
584 cp = strchr(driver_override, '\n');
585 if (cp)
586 *cp = '\0';
587
588 device_lock(dev);
589 old = hv_dev->driver_override;
590 if (strlen(driver_override)) {
591 hv_dev->driver_override = driver_override;
592 } else {
593 kfree(driver_override);
594 hv_dev->driver_override = NULL;
595 }
596 device_unlock(dev);
597
598 kfree(old);
599
600 return count;
601}
602
603static ssize_t driver_override_show(struct device *dev,
604 struct device_attribute *attr, char *buf)
605{
606 struct hv_device *hv_dev = device_to_hv_device(dev);
607 ssize_t len;
608
609 device_lock(dev);
610 len = snprintf(buf, PAGE_SIZE, "%s\n", hv_dev->driver_override);
611 device_unlock(dev);
612
613 return len;
614}
615static DEVICE_ATTR_RW(driver_override);
616
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700617/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800618static struct attribute *vmbus_dev_attrs[] = {
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700619 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700620 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700621 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700622 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700623 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700624 &dev_attr_modalias.attr,
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000625#ifdef CONFIG_NUMA
626 &dev_attr_numa_node.attr,
627#endif
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700628 &dev_attr_server_monitor_pending.attr,
629 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700630 &dev_attr_server_monitor_latency.attr,
631 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700632 &dev_attr_server_monitor_conn_id.attr,
633 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700634 &dev_attr_out_intr_mask.attr,
635 &dev_attr_out_read_index.attr,
636 &dev_attr_out_write_index.attr,
637 &dev_attr_out_read_bytes_avail.attr,
638 &dev_attr_out_write_bytes_avail.attr,
639 &dev_attr_in_intr_mask.attr,
640 &dev_attr_in_read_index.attr,
641 &dev_attr_in_write_index.attr,
642 &dev_attr_in_read_bytes_avail.attr,
643 &dev_attr_in_write_bytes_avail.attr,
Dexuan Cui042ab032015-08-05 00:52:43 -0700644 &dev_attr_channel_vp_mapping.attr,
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800645 &dev_attr_vendor.attr,
646 &dev_attr_device.attr,
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000647 &dev_attr_driver_override.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700648 NULL,
649};
Kimberly Brown46fc1542019-03-19 00:04:01 -0400650
651/*
652 * Device-level attribute_group callback function. Returns the permission for
653 * each attribute, and returns 0 if an attribute is not visible.
654 */
655static umode_t vmbus_dev_attr_is_visible(struct kobject *kobj,
656 struct attribute *attr, int idx)
657{
658 struct device *dev = kobj_to_dev(kobj);
659 const struct hv_device *hv_dev = device_to_hv_device(dev);
660
661 /* Hide the monitor attributes if the monitor mechanism is not used. */
662 if (!hv_dev->channel->offermsg.monitor_allocated &&
663 (attr == &dev_attr_monitor_id.attr ||
664 attr == &dev_attr_server_monitor_pending.attr ||
665 attr == &dev_attr_client_monitor_pending.attr ||
666 attr == &dev_attr_server_monitor_latency.attr ||
667 attr == &dev_attr_client_monitor_latency.attr ||
668 attr == &dev_attr_server_monitor_conn_id.attr ||
669 attr == &dev_attr_client_monitor_conn_id.attr))
670 return 0;
671
672 return attr->mode;
673}
674
675static const struct attribute_group vmbus_dev_group = {
676 .attrs = vmbus_dev_attrs,
677 .is_visible = vmbus_dev_attr_is_visible
678};
679__ATTRIBUTE_GROUPS(vmbus_dev);
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700680
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700681/*
682 * vmbus_uevent - add uevent for our device
683 *
684 * This routine is invoked when a device is added or removed on the vmbus to
685 * generate a uevent to udev in the userspace. The udev will then look at its
686 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700687 *
688 * The alias string will be of the form vmbus:guid where guid is the string
689 * representation of the device guid (each byte of the guid will be
690 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700691 */
692static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
693{
694 struct hv_device *dev = device_to_hv_device(device);
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300695 const char *format = "MODALIAS=vmbus:%*phN";
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700696
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300697 return add_uevent_var(env, format, UUID_SIZE, &dev->dev_type);
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700698}
699
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000700static const struct hv_vmbus_device_id *
Andy Shevchenko593db802019-01-10 16:25:32 +0200701hv_vmbus_dev_match(const struct hv_vmbus_device_id *id, const guid_t *guid)
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000702{
703 if (id == NULL)
704 return NULL; /* empty device table */
705
Andy Shevchenko593db802019-01-10 16:25:32 +0200706 for (; !guid_is_null(&id->guid); id++)
707 if (guid_equal(&id->guid, guid))
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000708 return id;
709
710 return NULL;
711}
712
713static const struct hv_vmbus_device_id *
Andy Shevchenko593db802019-01-10 16:25:32 +0200714hv_vmbus_dynid_match(struct hv_driver *drv, const guid_t *guid)
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700715{
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800716 const struct hv_vmbus_device_id *id = NULL;
717 struct vmbus_dynid *dynid;
718
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800719 spin_lock(&drv->dynids.lock);
720 list_for_each_entry(dynid, &drv->dynids.list, node) {
Andy Shevchenko593db802019-01-10 16:25:32 +0200721 if (guid_equal(&dynid->id.guid, guid)) {
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800722 id = &dynid->id;
723 break;
724 }
725 }
726 spin_unlock(&drv->dynids.lock);
727
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000728 return id;
729}
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800730
Andy Shevchenko593db802019-01-10 16:25:32 +0200731static const struct hv_vmbus_device_id vmbus_device_null;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800732
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000733/*
734 * Return a matching hv_vmbus_device_id pointer.
735 * If there is no match, return NULL.
736 */
737static const struct hv_vmbus_device_id *hv_vmbus_get_id(struct hv_driver *drv,
738 struct hv_device *dev)
739{
Andy Shevchenko593db802019-01-10 16:25:32 +0200740 const guid_t *guid = &dev->dev_type;
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000741 const struct hv_vmbus_device_id *id;
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700742
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000743 /* When driver_override is set, only bind to the matching driver */
744 if (dev->driver_override && strcmp(dev->driver_override, drv->name))
745 return NULL;
746
747 /* Look at the dynamic ids first, before the static ones */
748 id = hv_vmbus_dynid_match(drv, guid);
749 if (!id)
750 id = hv_vmbus_dev_match(drv->id_table, guid);
751
752 /* driver_override will always match, send a dummy id */
753 if (!id && dev->driver_override)
754 id = &vmbus_device_null;
755
756 return id;
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700757}
758
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800759/* vmbus_add_dynid - add a new device ID to this driver and re-probe devices */
Andy Shevchenko593db802019-01-10 16:25:32 +0200760static int vmbus_add_dynid(struct hv_driver *drv, guid_t *guid)
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800761{
762 struct vmbus_dynid *dynid;
763
764 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
765 if (!dynid)
766 return -ENOMEM;
767
768 dynid->id.guid = *guid;
769
770 spin_lock(&drv->dynids.lock);
771 list_add_tail(&dynid->node, &drv->dynids.list);
772 spin_unlock(&drv->dynids.lock);
773
774 return driver_attach(&drv->driver);
775}
776
777static void vmbus_free_dynids(struct hv_driver *drv)
778{
779 struct vmbus_dynid *dynid, *n;
780
781 spin_lock(&drv->dynids.lock);
782 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
783 list_del(&dynid->node);
784 kfree(dynid);
785 }
786 spin_unlock(&drv->dynids.lock);
787}
788
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800789/*
790 * store_new_id - sysfs frontend to vmbus_add_dynid()
791 *
792 * Allow GUIDs to be added to an existing driver via sysfs.
793 */
794static ssize_t new_id_store(struct device_driver *driver, const char *buf,
795 size_t count)
796{
797 struct hv_driver *drv = drv_to_hv_drv(driver);
Andy Shevchenko593db802019-01-10 16:25:32 +0200798 guid_t guid;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800799 ssize_t retval;
800
Andy Shevchenko593db802019-01-10 16:25:32 +0200801 retval = guid_parse(buf, &guid);
Andy Shevchenko31100102017-05-18 10:46:06 -0700802 if (retval)
803 return retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800804
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000805 if (hv_vmbus_dynid_match(drv, &guid))
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800806 return -EEXIST;
807
808 retval = vmbus_add_dynid(drv, &guid);
809 if (retval)
810 return retval;
811 return count;
812}
813static DRIVER_ATTR_WO(new_id);
814
815/*
816 * store_remove_id - remove a PCI device ID from this driver
817 *
818 * Removes a dynamic pci device ID to this driver.
819 */
820static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
821 size_t count)
822{
823 struct hv_driver *drv = drv_to_hv_drv(driver);
824 struct vmbus_dynid *dynid, *n;
Andy Shevchenko593db802019-01-10 16:25:32 +0200825 guid_t guid;
Andy Shevchenko31100102017-05-18 10:46:06 -0700826 ssize_t retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800827
Andy Shevchenko593db802019-01-10 16:25:32 +0200828 retval = guid_parse(buf, &guid);
Andy Shevchenko31100102017-05-18 10:46:06 -0700829 if (retval)
830 return retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800831
Andy Shevchenko31100102017-05-18 10:46:06 -0700832 retval = -ENODEV;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800833 spin_lock(&drv->dynids.lock);
834 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
835 struct hv_vmbus_device_id *id = &dynid->id;
836
Andy Shevchenko593db802019-01-10 16:25:32 +0200837 if (guid_equal(&id->guid, &guid)) {
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800838 list_del(&dynid->node);
839 kfree(dynid);
840 retval = count;
841 break;
842 }
843 }
844 spin_unlock(&drv->dynids.lock);
845
846 return retval;
847}
848static DRIVER_ATTR_WO(remove_id);
849
850static struct attribute *vmbus_drv_attrs[] = {
851 &driver_attr_new_id.attr,
852 &driver_attr_remove_id.attr,
853 NULL,
854};
855ATTRIBUTE_GROUPS(vmbus_drv);
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700856
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700857
858/*
859 * vmbus_match - Attempt to match the specified device to the specified driver
860 */
861static int vmbus_match(struct device *device, struct device_driver *driver)
862{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700863 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700864 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700865
Dexuan Cui8981da32016-01-27 22:29:41 -0800866 /* The hv_sock driver handles all hv_sock offers. */
867 if (is_hvsock_channel(hv_dev->channel))
868 return drv->hvsock;
869
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000870 if (hv_vmbus_get_id(drv, hv_dev))
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700871 return 1;
K. Y. Srinivasande632a2b2011-04-26 09:20:24 -0700872
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700873 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700874}
875
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700876/*
877 * vmbus_probe - Add the new vmbus's child device
878 */
879static int vmbus_probe(struct device *child_device)
880{
881 int ret = 0;
882 struct hv_driver *drv =
883 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700884 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700885 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700886
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000887 dev_id = hv_vmbus_get_id(drv, dev);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700888 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700889 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700890 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700891 pr_err("probe failed for device %s (%d)\n",
892 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700893
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700894 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700895 pr_err("probe not set for driver %s\n",
896 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700897 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700898 }
899 return ret;
900}
901
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700902/*
903 * vmbus_remove - Remove a vmbus device
904 */
905static int vmbus_remove(struct device *child_device)
906{
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800907 struct hv_driver *drv;
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700908 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700909
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800910 if (child_device->driver) {
911 drv = drv_to_hv_drv(child_device->driver);
912 if (drv->remove)
913 drv->remove(dev);
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800914 }
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700915
916 return 0;
917}
918
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700919
920/*
921 * vmbus_shutdown - Shutdown a vmbus device
922 */
923static void vmbus_shutdown(struct device *child_device)
924{
925 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700926 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700927
928
929 /* The device may not be attached yet */
930 if (!child_device->driver)
931 return;
932
933 drv = drv_to_hv_drv(child_device->driver);
934
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700935 if (drv->shutdown)
936 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700937}
938
Dexuan Cui83b50f82019-09-19 21:46:12 +0000939#ifdef CONFIG_PM_SLEEP
Dexuan Cui271b2222019-09-05 23:01:17 +0000940/*
941 * vmbus_suspend - Suspend a vmbus device
942 */
943static int vmbus_suspend(struct device *child_device)
944{
945 struct hv_driver *drv;
946 struct hv_device *dev = device_to_hv_device(child_device);
947
948 /* The device may not be attached yet */
949 if (!child_device->driver)
950 return 0;
951
952 drv = drv_to_hv_drv(child_device->driver);
953 if (!drv->suspend)
954 return -EOPNOTSUPP;
955
956 return drv->suspend(dev);
957}
958
959/*
960 * vmbus_resume - Resume a vmbus device
961 */
962static int vmbus_resume(struct device *child_device)
963{
964 struct hv_driver *drv;
965 struct hv_device *dev = device_to_hv_device(child_device);
966
967 /* The device may not be attached yet */
968 if (!child_device->driver)
969 return 0;
970
971 drv = drv_to_hv_drv(child_device->driver);
972 if (!drv->resume)
973 return -EOPNOTSUPP;
974
975 return drv->resume(dev);
976}
Dexuan Cui1a06d012020-04-11 20:50:35 -0700977#else
978#define vmbus_suspend NULL
979#define vmbus_resume NULL
Dexuan Cui83b50f82019-09-19 21:46:12 +0000980#endif /* CONFIG_PM_SLEEP */
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700981
982/*
983 * vmbus_device_release - Final callback release of the vmbus child device
984 */
985static void vmbus_device_release(struct device *device)
986{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700987 struct hv_device *hv_dev = device_to_hv_device(device);
Dexuan Cui34c68012015-12-14 16:01:49 -0800988 struct vmbus_channel *channel = hv_dev->channel;
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700989
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -0400990 hv_debug_rm_dev_dir(hv_dev);
991
K. Y. Srinivasan54a662652017-04-30 16:21:18 -0700992 mutex_lock(&vmbus_connection.channel_mutex);
Stephen Hemminger800b9322018-09-14 09:10:15 -0700993 hv_process_channel_removal(channel);
K. Y. Srinivasan54a662652017-04-30 16:21:18 -0700994 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700995 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700996}
997
Dexuan Cui271b2222019-09-05 23:01:17 +0000998/*
Dexuan Cui1a06d012020-04-11 20:50:35 -0700999 * Note: we must use the "noirq" ops: see the comment before vmbus_bus_pm.
1000 *
1001 * suspend_noirq/resume_noirq are set to NULL to support Suspend-to-Idle: we
1002 * shouldn't suspend the vmbus devices upon Suspend-to-Idle, otherwise there
1003 * is no way to wake up a Generation-2 VM.
1004 *
1005 * The other 4 ops are for hibernation.
Dexuan Cui271b2222019-09-05 23:01:17 +00001006 */
Dexuan Cui1a06d012020-04-11 20:50:35 -07001007
Dexuan Cui271b2222019-09-05 23:01:17 +00001008static const struct dev_pm_ops vmbus_pm = {
Dexuan Cui1a06d012020-04-11 20:50:35 -07001009 .suspend_noirq = NULL,
1010 .resume_noirq = NULL,
1011 .freeze_noirq = vmbus_suspend,
1012 .thaw_noirq = vmbus_resume,
1013 .poweroff_noirq = vmbus_suspend,
1014 .restore_noirq = vmbus_resume,
Dexuan Cui271b2222019-09-05 23:01:17 +00001015};
1016
Bill Pemberton454f18a2009-07-27 16:47:24 -04001017/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -07001018static struct bus_type hv_bus = {
1019 .name = "vmbus",
1020 .match = vmbus_match,
1021 .shutdown = vmbus_shutdown,
1022 .remove = vmbus_remove,
1023 .probe = vmbus_probe,
1024 .uevent = vmbus_uevent,
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001025 .dev_groups = vmbus_dev_groups,
1026 .drv_groups = vmbus_drv_groups,
Dexuan Cui271b2222019-09-05 23:01:17 +00001027 .pm = &vmbus_pm,
Hank Janssen3e7ee492009-07-13 16:02:34 -07001028};
1029
Timo Teräsbf6506f2010-12-15 20:48:08 +02001030struct onmessage_work_context {
1031 struct work_struct work;
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001032 struct {
1033 struct hv_message_header header;
1034 u8 payload[];
1035 } msg;
Timo Teräsbf6506f2010-12-15 20:48:08 +02001036};
1037
1038static void vmbus_onmessage_work(struct work_struct *work)
1039{
1040 struct onmessage_work_context *ctx;
1041
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08001042 /* Do not process messages if we're in DISCONNECTED state */
1043 if (vmbus_connection.conn_state == DISCONNECTED)
1044 return;
1045
Timo Teräsbf6506f2010-12-15 20:48:08 +02001046 ctx = container_of(work, struct onmessage_work_context,
1047 work);
Vitaly Kuznetsov5cc41502020-04-06 12:41:52 +02001048 vmbus_onmessage((struct vmbus_channel_message_header *)
1049 &ctx->msg.payload);
Timo Teräsbf6506f2010-12-15 20:48:08 +02001050 kfree(ctx);
1051}
1052
K. Y. Srinivasand81274a2016-02-26 15:13:21 -08001053void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001054{
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001055 struct hv_per_cpu_context *hv_cpu = (void *)data;
1056 void *page_addr = hv_cpu->synic_message_page;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001057 struct hv_message *msg = (struct hv_message *)page_addr +
1058 VMBUS_MESSAGE_SINT;
Dexuan Cui652594c2015-03-27 09:10:08 -07001059 struct vmbus_channel_message_header *hdr;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001060 enum vmbus_channel_message_type msgtype;
Stephen Hemmingere6242fa2017-03-04 18:27:16 -07001061 const struct vmbus_channel_message_table_entry *entry;
Timo Teräsbf6506f2010-12-15 20:48:08 +02001062 struct onmessage_work_context *ctx;
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001063 u32 message_type = msg->header.message_type;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001064 __u8 payload_size;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001065
Vitaly Kuznetsovb0a284d2020-04-06 12:43:15 +02001066 /*
1067 * 'enum vmbus_channel_message_type' is supposed to always be 'u32' as
1068 * it is being used in 'struct vmbus_channel_message_header' definition
1069 * which is supposed to match hypervisor ABI.
1070 */
1071 BUILD_BUG_ON(sizeof(enum vmbus_channel_message_type) != sizeof(u32));
1072
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001073 if (message_type == HVMSG_NONE)
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001074 /* no msg */
1075 return;
Dexuan Cui652594c2015-03-27 09:10:08 -07001076
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001077 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001078 msgtype = hdr->msgtype;
Dexuan Cui652594c2015-03-27 09:10:08 -07001079
Vitaly Kuznetsovc9fe0f82017-10-29 12:21:00 -07001080 trace_vmbus_on_msg_dpc(hdr);
1081
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001082 if (msgtype >= CHANNELMSG_COUNT) {
1083 WARN_ONCE(1, "unknown msgtype=%d\n", msgtype);
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001084 goto msg_handled;
1085 }
Dexuan Cui652594c2015-03-27 09:10:08 -07001086
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001087 payload_size = msg->header.payload_size;
1088 if (payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT) {
1089 WARN_ONCE(1, "payload size is too large (%d)\n", payload_size);
Vitaly Kuznetsovac0f7d422020-04-06 12:41:50 +02001090 goto msg_handled;
1091 }
1092
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001093 entry = &channel_message_table[msgtype];
Dexuan Cuiddc9d352020-01-19 15:29:22 -08001094
1095 if (!entry->message_handler)
1096 goto msg_handled;
1097
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001098 if (payload_size < entry->min_payload_len) {
1099 WARN_ONCE(1, "message too short: msgtype=%d len=%d\n", msgtype, payload_size);
Vitaly Kuznetsov52c78032020-04-06 12:43:26 +02001100 goto msg_handled;
1101 }
1102
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001103 if (entry->handler_type == VMHT_BLOCKING) {
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001104 ctx = kmalloc(sizeof(*ctx) + payload_size, GFP_ATOMIC);
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001105 if (ctx == NULL)
1106 return;
Dexuan Cui652594c2015-03-27 09:10:08 -07001107
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001108 INIT_WORK(&ctx->work, vmbus_onmessage_work);
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001109 memcpy(&ctx->msg, msg, sizeof(msg->header) + payload_size);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001110
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001111 /*
1112 * The host can generate a rescind message while we
1113 * may still be handling the original offer. We deal with
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001114 * this condition by relying on the synchronization provided
1115 * by offer_in_progress and by channel_mutex. See also the
1116 * inline comments in vmbus_onoffer_rescind().
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001117 */
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001118 switch (msgtype) {
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001119 case CHANNELMSG_RESCIND_CHANNELOFFER:
1120 /*
1121 * If we are handling the rescind message;
1122 * schedule the work on the global work queue.
Andrea Parri (Microsoft)8a857c52020-04-06 02:15:04 +02001123 *
1124 * The OFFER message and the RESCIND message should
1125 * not be handled by the same serialized work queue,
1126 * because the OFFER handler may call vmbus_open(),
1127 * which tries to open the channel by sending an
1128 * OPEN_CHANNEL message to the host and waits for
1129 * the host's response; however, if the host has
1130 * rescinded the channel before it receives the
1131 * OPEN_CHANNEL message, the host just silently
1132 * ignores the OPEN_CHANNEL message; as a result,
1133 * the guest's OFFER handler hangs for ever, if we
1134 * handle the RESCIND message in the same serialized
1135 * work queue: the RESCIND handler can not start to
1136 * run before the OFFER handler finishes.
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001137 */
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001138 schedule_work(&ctx->work);
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001139 break;
1140
1141 case CHANNELMSG_OFFERCHANNEL:
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001142 /*
1143 * The host sends the offer message of a given channel
1144 * before sending the rescind message of the same
1145 * channel. These messages are sent to the guest's
1146 * connect CPU; the guest then starts processing them
1147 * in the tasklet handler on this CPU:
1148 *
1149 * VMBUS_CONNECT_CPU
1150 *
1151 * [vmbus_on_msg_dpc()]
1152 * atomic_inc() // CHANNELMSG_OFFERCHANNEL
1153 * queue_work()
1154 * ...
1155 * [vmbus_on_msg_dpc()]
1156 * schedule_work() // CHANNELMSG_RESCIND_CHANNELOFFER
1157 *
1158 * We rely on the memory-ordering properties of the
1159 * queue_work() and schedule_work() primitives, which
1160 * guarantee that the atomic increment will be visible
1161 * to the CPUs which will execute the offer & rescind
1162 * works by the time these works will start execution.
1163 */
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001164 atomic_inc(&vmbus_connection.offer_in_progress);
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001165 fallthrough;
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001166
1167 default:
1168 queue_work(vmbus_connection.work_queue, &ctx->work);
1169 }
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001170 } else
1171 entry->message_handler(hdr);
Dexuan Cui652594c2015-03-27 09:10:08 -07001172
1173msg_handled:
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001174 vmbus_signal_eom(msg, message_type);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001175}
1176
Dexuan Cui83b50f82019-09-19 21:46:12 +00001177#ifdef CONFIG_PM_SLEEP
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001178/*
1179 * Fake RESCIND_CHANNEL messages to clean up hv_sock channels by force for
1180 * hibernation, because hv_sock connections can not persist across hibernation.
1181 */
1182static void vmbus_force_channel_rescinded(struct vmbus_channel *channel)
1183{
1184 struct onmessage_work_context *ctx;
1185 struct vmbus_channel_rescind_offer *rescind;
1186
1187 WARN_ON(!is_hvsock_channel(channel));
1188
1189 /*
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001190 * Allocation size is small and the allocation should really not fail,
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001191 * otherwise the state of the hv_sock connections ends up in limbo.
1192 */
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001193 ctx = kzalloc(sizeof(*ctx) + sizeof(*rescind),
1194 GFP_KERNEL | __GFP_NOFAIL);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001195
1196 /*
1197 * So far, these are not really used by Linux. Just set them to the
1198 * reasonable values conforming to the definitions of the fields.
1199 */
1200 ctx->msg.header.message_type = 1;
1201 ctx->msg.header.payload_size = sizeof(*rescind);
1202
1203 /* These values are actually used by Linux. */
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001204 rescind = (struct vmbus_channel_rescind_offer *)ctx->msg.payload;
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001205 rescind->header.msgtype = CHANNELMSG_RESCIND_CHANNELOFFER;
1206 rescind->child_relid = channel->offermsg.child_relid;
1207
1208 INIT_WORK(&ctx->work, vmbus_onmessage_work);
1209
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001210 queue_work(vmbus_connection.work_queue, &ctx->work);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001211}
Dexuan Cui83b50f82019-09-19 21:46:12 +00001212#endif /* CONFIG_PM_SLEEP */
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001213
1214/*
1215 * Schedule all channels with events pending
1216 */
1217static void vmbus_chan_sched(struct hv_per_cpu_context *hv_cpu)
1218{
1219 unsigned long *recv_int_page;
1220 u32 maxbits, relid;
1221
1222 if (vmbus_proto_version < VERSION_WIN8) {
1223 maxbits = MAX_NUM_CHANNELS_SUPPORTED;
1224 recv_int_page = vmbus_connection.recv_int_page;
1225 } else {
1226 /*
1227 * When the host is win8 and beyond, the event page
1228 * can be directly checked to get the id of the channel
1229 * that has the interrupt pending.
1230 */
1231 void *page_addr = hv_cpu->synic_event_page;
1232 union hv_synic_event_flags *event
1233 = (union hv_synic_event_flags *)page_addr +
1234 VMBUS_MESSAGE_SINT;
1235
1236 maxbits = HV_EVENT_FLAGS_COUNT;
1237 recv_int_page = event->flags;
1238 }
1239
1240 if (unlikely(!recv_int_page))
1241 return;
1242
1243 for_each_set_bit(relid, recv_int_page, maxbits) {
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001244 void (*callback_fn)(void *context);
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001245 struct vmbus_channel *channel;
1246
1247 if (!sync_test_and_clear_bit(relid, recv_int_page))
1248 continue;
1249
1250 /* Special case - vmbus channel protocol msg */
1251 if (relid == 0)
1252 continue;
1253
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001254 /*
1255 * Pairs with the kfree_rcu() in vmbus_chan_release().
1256 * Guarantees that the channel data structure doesn't
1257 * get freed while the channel pointer below is being
1258 * dereferenced.
1259 */
Stephen Hemminger8200f202017-03-04 18:13:57 -07001260 rcu_read_lock();
1261
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001262 /* Find channel based on relid */
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001263 channel = relid2channel(relid);
1264 if (channel == NULL)
1265 goto sched_unlock_rcu;
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001266
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001267 if (channel->rescind)
1268 goto sched_unlock_rcu;
K. Y. Srinivasan6f3d7912017-08-11 10:03:59 -07001269
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001270 /*
1271 * Make sure that the ring buffer data structure doesn't get
1272 * freed while we dereference the ring buffer pointer. Test
1273 * for the channel's onchannel_callback being NULL within a
1274 * sched_lock critical section. See also the inline comments
1275 * in vmbus_reset_channel_cb().
1276 */
1277 spin_lock(&channel->sched_lock);
Vitaly Kuznetsov991f8f12017-10-29 12:21:16 -07001278
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001279 callback_fn = channel->onchannel_callback;
1280 if (unlikely(callback_fn == NULL))
1281 goto sched_unlock;
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001282
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001283 trace_vmbus_chan_sched(channel);
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001284
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001285 ++channel->interrupts;
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001286
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001287 switch (channel->callback_mode) {
1288 case HV_CALL_ISR:
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001289 (*callback_fn)(channel->channel_callback_context);
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001290 break;
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001291
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001292 case HV_CALL_BATCHED:
1293 hv_begin_read(&channel->inbound);
1294 fallthrough;
1295 case HV_CALL_DIRECT:
1296 tasklet_schedule(&channel->callback_event);
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001297 }
Stephen Hemminger8200f202017-03-04 18:13:57 -07001298
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001299sched_unlock:
1300 spin_unlock(&channel->sched_lock);
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001301sched_unlock_rcu:
Stephen Hemminger8200f202017-03-04 18:13:57 -07001302 rcu_read_unlock();
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001303 }
1304}
1305
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001306static void vmbus_isr(void)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001307{
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001308 struct hv_per_cpu_context *hv_cpu
1309 = this_cpu_ptr(hv_context.cpu_context);
1310 void *page_addr = hv_cpu->synic_event_page;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001311 struct hv_message *msg;
1312 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001313 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001314
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001315 if (unlikely(page_addr == NULL))
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001316 return;
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -08001317
1318 event = (union hv_synic_event_flags *)page_addr +
1319 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -07001320 /*
1321 * Check for events before checking for messages. This is the order
1322 * in which events and messages are checked in Windows guests on
1323 * Hyper-V, and the Windows team suggested we do the same.
1324 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001325
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001326 if ((vmbus_proto_version == VERSION_WS2008) ||
1327 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001328
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001329 /* Since we are a child, we only need to check bit 0 */
Stephen Hemminger5c1bec62017-02-05 17:20:31 -07001330 if (sync_test_and_clear_bit(0, event->flags))
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001331 handled = true;
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001332 } else {
1333 /*
1334 * Our host is win8 or above. The signaling mechanism
1335 * has changed and we can directly look at the event page.
1336 * If bit n is set then we have an interrup on the channel
1337 * whose id is n.
1338 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001339 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -07001340 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001341
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001342 if (handled)
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001343 vmbus_chan_sched(hv_cpu);
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001344
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001345 page_addr = hv_cpu->synic_message_page;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -07001346 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
1347
1348 /* Check if there are actual msgs to be processed */
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -08001349 if (msg->header.message_type != HVMSG_NONE) {
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001350 if (msg->header.message_type == HVMSG_TIMER_EXPIRED) {
1351 hv_stimer0_isr();
1352 vmbus_signal_eom(msg, HVMSG_TIMER_EXPIRED);
1353 } else
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001354 tasklet_schedule(&hv_cpu->msg_dpc);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -08001355 }
Stephan Mueller4b44f2d2016-05-02 02:14:34 -04001356
Michael Kelley626b9012020-08-14 12:45:04 -07001357 add_interrupt_randomness(hv_get_vector(), 0);
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -07001358}
1359
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001360/*
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001361 * Callback from kmsg_dump. Grab as much as possible from the end of the kmsg
1362 * buffer and call into Hyper-V to transfer the data.
1363 */
1364static void hv_kmsg_dump(struct kmsg_dumper *dumper,
1365 enum kmsg_dump_reason reason)
1366{
1367 size_t bytes_written;
1368 phys_addr_t panic_pa;
1369
1370 /* We are only interested in panics. */
1371 if ((reason != KMSG_DUMP_PANIC) || (!sysctl_record_panic_msg))
1372 return;
1373
1374 panic_pa = virt_to_phys(hv_panic_page);
1375
1376 /*
1377 * Write dump contents to the page. No need to synchronize; panic should
1378 * be single-threaded.
1379 */
Joseph Salisbury77b48be2020-06-26 15:28:17 -07001380 kmsg_dump_get_buffer(dumper, false, hv_panic_page, HV_HYP_PAGE_SIZE,
Sunil Muthuswamyddcaf3c2018-07-28 21:58:45 +00001381 &bytes_written);
1382 if (bytes_written)
1383 hyperv_report_panic_msg(panic_pa, bytes_written);
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001384}
1385
1386static struct kmsg_dumper hv_kmsg_dumper = {
1387 .dump = hv_kmsg_dump,
1388};
1389
Matheus Castellob0c03ef2020-11-25 00:29:26 -03001390static void hv_kmsg_dump_register(void)
1391{
1392 int ret;
1393
1394 hv_panic_page = hv_alloc_hyperv_zeroed_page();
1395 if (!hv_panic_page) {
1396 pr_err("Hyper-V: panic message page memory allocation failed\n");
1397 return;
1398 }
1399
1400 ret = kmsg_dump_register(&hv_kmsg_dumper);
1401 if (ret) {
1402 pr_err("Hyper-V: kmsg dump register error 0x%x\n", ret);
1403 hv_free_hyperv_page((unsigned long)hv_panic_page);
1404 hv_panic_page = NULL;
1405 }
1406}
1407
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001408static struct ctl_table_header *hv_ctl_table_hdr;
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001409
1410/*
1411 * sysctl option to allow the user to control whether kmsg data should be
1412 * reported to Hyper-V on panic.
1413 */
1414static struct ctl_table hv_ctl_table[] = {
1415 {
1416 .procname = "hyperv_record_panic_msg",
1417 .data = &sysctl_record_panic_msg,
1418 .maxlen = sizeof(int),
1419 .mode = 0644,
1420 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07001421 .extra1 = SYSCTL_ZERO,
1422 .extra2 = SYSCTL_ONE
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001423 },
1424 {}
1425};
1426
1427static struct ctl_table hv_root_table[] = {
1428 {
1429 .procname = "kernel",
1430 .mode = 0555,
1431 .child = hv_ctl_table
1432 },
1433 {}
1434};
Vitaly Kuznetsove5132292015-02-27 11:25:51 -08001435
Hank Janssen3e189512010-03-04 22:11:00 +00001436/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001437 * vmbus_bus_init -Main vmbus driver initialization routine.
1438 *
1439 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +01001440 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +01001441 * - invoke the vmbus hv main init routine
Lars Lindley0686e4f2010-03-11 23:51:23 +01001442 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001443 */
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08001444static int vmbus_bus_init(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001445{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001446 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001447
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -08001448 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001449 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -07001450 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001451 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001452 }
1453
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -07001454 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001455 if (ret)
Vitaly Kuznetsovd6f36092017-01-28 12:37:14 -07001456 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001457
Michael Kelley626b9012020-08-14 12:45:04 -07001458 ret = hv_setup_vmbus_irq(vmbus_irq, vmbus_isr);
1459 if (ret)
1460 goto err_setup;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001461
Jason Wang2608fb62013-06-19 11:28:10 +08001462 ret = hv_synic_alloc();
1463 if (ret)
1464 goto err_alloc;
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001465
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001466 /*
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001467 * Initialize the per-cpu interrupt state and stimer state.
1468 * Then connect to the host.
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001469 */
Michael Kelley4a5f3cd2017-12-22 11:19:02 -07001470 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "hyperv/vmbus:online",
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001471 hv_synic_init, hv_synic_cleanup);
1472 if (ret < 0)
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001473 goto err_cpuhp;
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001474 hyperv_cpuhp_online = ret;
1475
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001476 ret = vmbus_connect();
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001477 if (ret)
Andrey Smetanin17efbee2015-12-14 16:01:38 -08001478 goto err_connect;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001479
Nick Meier96c1d052015-02-28 11:39:01 -08001480 /*
1481 * Only register if the crash MSRs are available
1482 */
Denis V. Lunevcc2dd402015-08-01 16:08:20 -07001483 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001484 u64 hyperv_crash_ctl;
1485 /*
1486 * Sysctl registration is not fatal, since by default
1487 * reporting is enabled.
1488 */
1489 hv_ctl_table_hdr = register_sysctl_table(hv_root_table);
1490 if (!hv_ctl_table_hdr)
1491 pr_err("Hyper-V: sysctl table register error");
1492
1493 /*
1494 * Register for panic kmsg callback only if the right
1495 * capability is supported by the hypervisor.
1496 */
Sunil Muthuswamy9d9c9652018-07-28 21:58:47 +00001497 hv_get_crash_ctl(hyperv_crash_ctl);
Matheus Castellob0c03ef2020-11-25 00:29:26 -03001498 if (hyperv_crash_ctl & HV_CRASH_CTL_CRASH_NOTIFY_MSG)
1499 hv_kmsg_dump_register();
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001500
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -07001501 register_die_notifier(&hyperv_die_block);
Nick Meier96c1d052015-02-28 11:39:01 -08001502 }
1503
Tianyu Lan74347a92020-04-06 08:53:26 -07001504 /*
1505 * Always register the panic notifier because we need to unload
1506 * the VMbus channel connection to prevent any VMbus
1507 * activity after the VM panics.
1508 */
1509 atomic_notifier_chain_register(&panic_notifier_list,
1510 &hyperv_panic_block);
1511
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -08001512 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +00001513
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001514 return 0;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001515
Andrey Smetanin17efbee2015-12-14 16:01:38 -08001516err_connect:
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001517 cpuhp_remove_state(hyperv_cpuhp_online);
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001518err_cpuhp:
Jason Wang2608fb62013-06-19 11:28:10 +08001519 hv_synic_free();
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00001520err_alloc:
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001521 hv_remove_vmbus_irq();
Michael Kelley626b9012020-08-14 12:45:04 -07001522err_setup:
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001523 bus_unregister(&hv_bus);
Sunil Muthuswamy8afc06d2018-07-28 21:58:46 +00001524 unregister_sysctl_table(hv_ctl_table_hdr);
1525 hv_ctl_table_hdr = NULL;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001526 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001527}
1528
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001529/**
Jake Oshins35464482015-08-05 00:52:37 -07001530 * __vmbus_child_driver_register() - Register a vmbus's driver
1531 * @hv_driver: Pointer to driver structure you want to register
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001532 * @owner: owner module of the drv
1533 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +00001534 *
1535 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001536 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +00001537 * It will return the state of the 'driver_register()' call.
1538 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001539 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001540int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001541{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -04001542 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001543
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001544 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001545
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08001546 ret = vmbus_exists();
1547 if (ret < 0)
1548 return ret;
1549
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001550 hv_driver->driver.name = hv_driver->name;
1551 hv_driver->driver.owner = owner;
1552 hv_driver->driver.mod_name = mod_name;
1553 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001554
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001555 spin_lock_init(&hv_driver->dynids.lock);
1556 INIT_LIST_HEAD(&hv_driver->dynids.list);
1557
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001558 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001559
Bill Pemberton5d48a1c2009-07-27 16:47:36 -04001560 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001561}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001562EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001563
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001564/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001565 * vmbus_driver_unregister() - Unregister a vmbus's driver
Jake Oshins35464482015-08-05 00:52:37 -07001566 * @hv_driver: Pointer to driver structure you want to
1567 * un-register
Hank Janssen3e189512010-03-04 22:11:00 +00001568 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001569 * Un-register the given driver that was previous registered with a call to
1570 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001571 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001572void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001573{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001574 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001575
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001576 if (!vmbus_exists()) {
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -08001577 driver_unregister(&hv_driver->driver);
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001578 vmbus_free_dynids(hv_driver);
1579 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07001580}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001581EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001582
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001583
1584/*
1585 * Called when last reference to channel is gone.
1586 */
1587static void vmbus_chan_release(struct kobject *kobj)
1588{
1589 struct vmbus_channel *channel
1590 = container_of(kobj, struct vmbus_channel, kobj);
1591
1592 kfree_rcu(channel, rcu);
1593}
1594
1595struct vmbus_chan_attribute {
1596 struct attribute attr;
Kimberly Brown14948e32019-03-14 16:05:15 -04001597 ssize_t (*show)(struct vmbus_channel *chan, char *buf);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001598 ssize_t (*store)(struct vmbus_channel *chan,
1599 const char *buf, size_t count);
1600};
1601#define VMBUS_CHAN_ATTR(_name, _mode, _show, _store) \
1602 struct vmbus_chan_attribute chan_attr_##_name \
1603 = __ATTR(_name, _mode, _show, _store)
1604#define VMBUS_CHAN_ATTR_RW(_name) \
1605 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_RW(_name)
1606#define VMBUS_CHAN_ATTR_RO(_name) \
1607 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_RO(_name)
1608#define VMBUS_CHAN_ATTR_WO(_name) \
1609 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_WO(_name)
1610
1611static ssize_t vmbus_chan_attr_show(struct kobject *kobj,
1612 struct attribute *attr, char *buf)
1613{
1614 const struct vmbus_chan_attribute *attribute
1615 = container_of(attr, struct vmbus_chan_attribute, attr);
Kimberly Brown14948e32019-03-14 16:05:15 -04001616 struct vmbus_channel *chan
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001617 = container_of(kobj, struct vmbus_channel, kobj);
1618
1619 if (!attribute->show)
1620 return -EIO;
1621
1622 return attribute->show(chan, buf);
1623}
1624
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001625static ssize_t vmbus_chan_attr_store(struct kobject *kobj,
1626 struct attribute *attr, const char *buf,
1627 size_t count)
1628{
1629 const struct vmbus_chan_attribute *attribute
1630 = container_of(attr, struct vmbus_chan_attribute, attr);
1631 struct vmbus_channel *chan
1632 = container_of(kobj, struct vmbus_channel, kobj);
1633
1634 if (!attribute->store)
1635 return -EIO;
1636
1637 return attribute->store(chan, buf, count);
1638}
1639
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001640static const struct sysfs_ops vmbus_chan_sysfs_ops = {
1641 .show = vmbus_chan_attr_show,
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001642 .store = vmbus_chan_attr_store,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001643};
1644
Kimberly Brown14948e32019-03-14 16:05:15 -04001645static ssize_t out_mask_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001646{
Kimberly Brown14948e32019-03-14 16:05:15 -04001647 struct hv_ring_buffer_info *rbi = &channel->outbound;
1648 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001649
Kimberly Brown14948e32019-03-14 16:05:15 -04001650 mutex_lock(&rbi->ring_buffer_mutex);
1651 if (!rbi->ring_buffer) {
1652 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001653 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001654 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001655
Kimberly Brown14948e32019-03-14 16:05:15 -04001656 ret = sprintf(buf, "%u\n", rbi->ring_buffer->interrupt_mask);
1657 mutex_unlock(&rbi->ring_buffer_mutex);
1658 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001659}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001660static VMBUS_CHAN_ATTR_RO(out_mask);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001661
Kimberly Brown14948e32019-03-14 16:05:15 -04001662static ssize_t in_mask_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001663{
Kimberly Brown14948e32019-03-14 16:05:15 -04001664 struct hv_ring_buffer_info *rbi = &channel->inbound;
1665 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001666
Kimberly Brown14948e32019-03-14 16:05:15 -04001667 mutex_lock(&rbi->ring_buffer_mutex);
1668 if (!rbi->ring_buffer) {
1669 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001670 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001671 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001672
Kimberly Brown14948e32019-03-14 16:05:15 -04001673 ret = sprintf(buf, "%u\n", rbi->ring_buffer->interrupt_mask);
1674 mutex_unlock(&rbi->ring_buffer_mutex);
1675 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001676}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001677static VMBUS_CHAN_ATTR_RO(in_mask);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001678
Kimberly Brown14948e32019-03-14 16:05:15 -04001679static ssize_t read_avail_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001680{
Kimberly Brown14948e32019-03-14 16:05:15 -04001681 struct hv_ring_buffer_info *rbi = &channel->inbound;
1682 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001683
Kimberly Brown14948e32019-03-14 16:05:15 -04001684 mutex_lock(&rbi->ring_buffer_mutex);
1685 if (!rbi->ring_buffer) {
1686 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001687 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001688 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001689
Kimberly Brown14948e32019-03-14 16:05:15 -04001690 ret = sprintf(buf, "%u\n", hv_get_bytes_to_read(rbi));
1691 mutex_unlock(&rbi->ring_buffer_mutex);
1692 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001693}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001694static VMBUS_CHAN_ATTR_RO(read_avail);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001695
Kimberly Brown14948e32019-03-14 16:05:15 -04001696static ssize_t write_avail_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001697{
Kimberly Brown14948e32019-03-14 16:05:15 -04001698 struct hv_ring_buffer_info *rbi = &channel->outbound;
1699 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001700
Kimberly Brown14948e32019-03-14 16:05:15 -04001701 mutex_lock(&rbi->ring_buffer_mutex);
1702 if (!rbi->ring_buffer) {
1703 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001704 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001705 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001706
Kimberly Brown14948e32019-03-14 16:05:15 -04001707 ret = sprintf(buf, "%u\n", hv_get_bytes_to_write(rbi));
1708 mutex_unlock(&rbi->ring_buffer_mutex);
1709 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001710}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001711static VMBUS_CHAN_ATTR_RO(write_avail);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001712
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001713static ssize_t target_cpu_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001714{
1715 return sprintf(buf, "%u\n", channel->target_cpu);
1716}
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001717static ssize_t target_cpu_store(struct vmbus_channel *channel,
1718 const char *buf, size_t count)
1719{
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001720 u32 target_cpu, origin_cpu;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001721 ssize_t ret = count;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001722
1723 if (vmbus_proto_version < VERSION_WIN10_V4_1)
1724 return -EIO;
1725
1726 if (sscanf(buf, "%uu", &target_cpu) != 1)
1727 return -EIO;
1728
1729 /* Validate target_cpu for the cpumask_test_cpu() operation below. */
1730 if (target_cpu >= nr_cpumask_bits)
1731 return -EINVAL;
1732
1733 /* No CPUs should come up or down during this. */
1734 cpus_read_lock();
1735
Andrea Parri (Microsoft)0a968202020-06-17 18:46:37 +02001736 if (!cpu_online(target_cpu)) {
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001737 cpus_read_unlock();
1738 return -EINVAL;
1739 }
1740
1741 /*
1742 * Synchronizes target_cpu_store() and channel closure:
1743 *
1744 * { Initially: state = CHANNEL_OPENED }
1745 *
1746 * CPU1 CPU2
1747 *
1748 * [target_cpu_store()] [vmbus_disconnect_ring()]
1749 *
1750 * LOCK channel_mutex LOCK channel_mutex
1751 * LOAD r1 = state LOAD r2 = state
1752 * IF (r1 == CHANNEL_OPENED) IF (r2 == CHANNEL_OPENED)
1753 * SEND MODIFYCHANNEL STORE state = CHANNEL_OPEN
1754 * [...] SEND CLOSECHANNEL
1755 * UNLOCK channel_mutex UNLOCK channel_mutex
1756 *
1757 * Forbids: r1 == r2 == CHANNEL_OPENED (i.e., CPU1's LOCK precedes
1758 * CPU2's LOCK) && CPU2's SEND precedes CPU1's SEND
1759 *
1760 * Note. The host processes the channel messages "sequentially", in
1761 * the order in which they are received on a per-partition basis.
1762 */
1763 mutex_lock(&vmbus_connection.channel_mutex);
1764
1765 /*
1766 * Hyper-V will ignore MODIFYCHANNEL messages for "non-open" channels;
1767 * avoid sending the message and fail here for such channels.
1768 */
1769 if (channel->state != CHANNEL_OPENED_STATE) {
1770 ret = -EIO;
1771 goto cpu_store_unlock;
1772 }
1773
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001774 origin_cpu = channel->target_cpu;
1775 if (target_cpu == origin_cpu)
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001776 goto cpu_store_unlock;
1777
1778 if (vmbus_send_modifychannel(channel->offermsg.child_relid,
1779 hv_cpu_number_to_vp_number(target_cpu))) {
1780 ret = -EIO;
1781 goto cpu_store_unlock;
1782 }
1783
1784 /*
1785 * Warning. At this point, there is *no* guarantee that the host will
1786 * have successfully processed the vmbus_send_modifychannel() request.
1787 * See the header comment of vmbus_send_modifychannel() for more info.
1788 *
1789 * Lags in the processing of the above vmbus_send_modifychannel() can
1790 * result in missed interrupts if the "old" target CPU is taken offline
1791 * before Hyper-V starts sending interrupts to the "new" target CPU.
1792 * But apart from this offlining scenario, the code tolerates such
1793 * lags. It will function correctly even if a channel interrupt comes
1794 * in on a CPU that is different from the channel target_cpu value.
1795 */
1796
1797 channel->target_cpu = target_cpu;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001798
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001799 /* See init_vp_index(). */
1800 if (hv_is_perf_channel(channel))
1801 hv_update_alloced_cpus(origin_cpu, target_cpu);
1802
1803 /* Currently set only for storvsc channels. */
1804 if (channel->change_target_cpu_callback) {
1805 (*channel->change_target_cpu_callback)(channel,
1806 origin_cpu, target_cpu);
1807 }
1808
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001809cpu_store_unlock:
1810 mutex_unlock(&vmbus_connection.channel_mutex);
1811 cpus_read_unlock();
1812 return ret;
1813}
1814static VMBUS_CHAN_ATTR(cpu, 0644, target_cpu_show, target_cpu_store);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001815
Kimberly Brown14948e32019-03-14 16:05:15 -04001816static ssize_t channel_pending_show(struct vmbus_channel *channel,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001817 char *buf)
1818{
1819 return sprintf(buf, "%d\n",
1820 channel_pending(channel,
1821 vmbus_connection.monitor_pages[1]));
1822}
Matheus Castellof0434de42020-11-15 16:57:30 -03001823static VMBUS_CHAN_ATTR(pending, 0444, channel_pending_show, NULL);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001824
Kimberly Brown14948e32019-03-14 16:05:15 -04001825static ssize_t channel_latency_show(struct vmbus_channel *channel,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001826 char *buf)
1827{
1828 return sprintf(buf, "%d\n",
1829 channel_latency(channel,
1830 vmbus_connection.monitor_pages[1]));
1831}
Matheus Castellof0434de42020-11-15 16:57:30 -03001832static VMBUS_CHAN_ATTR(latency, 0444, channel_latency_show, NULL);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001833
Kimberly Brown14948e32019-03-14 16:05:15 -04001834static ssize_t channel_interrupts_show(struct vmbus_channel *channel, char *buf)
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001835{
1836 return sprintf(buf, "%llu\n", channel->interrupts);
1837}
Matheus Castellof0434de42020-11-15 16:57:30 -03001838static VMBUS_CHAN_ATTR(interrupts, 0444, channel_interrupts_show, NULL);
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001839
Kimberly Brown14948e32019-03-14 16:05:15 -04001840static ssize_t channel_events_show(struct vmbus_channel *channel, char *buf)
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001841{
1842 return sprintf(buf, "%llu\n", channel->sig_events);
1843}
Matheus Castellof0434de42020-11-15 16:57:30 -03001844static VMBUS_CHAN_ATTR(events, 0444, channel_events_show, NULL);
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001845
Kimberly Brown14948e32019-03-14 16:05:15 -04001846static ssize_t channel_intr_in_full_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001847 char *buf)
1848{
1849 return sprintf(buf, "%llu\n",
1850 (unsigned long long)channel->intr_in_full);
1851}
1852static VMBUS_CHAN_ATTR(intr_in_full, 0444, channel_intr_in_full_show, NULL);
1853
Kimberly Brown14948e32019-03-14 16:05:15 -04001854static ssize_t channel_intr_out_empty_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001855 char *buf)
1856{
1857 return sprintf(buf, "%llu\n",
1858 (unsigned long long)channel->intr_out_empty);
1859}
1860static VMBUS_CHAN_ATTR(intr_out_empty, 0444, channel_intr_out_empty_show, NULL);
1861
Kimberly Brown14948e32019-03-14 16:05:15 -04001862static ssize_t channel_out_full_first_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001863 char *buf)
1864{
1865 return sprintf(buf, "%llu\n",
1866 (unsigned long long)channel->out_full_first);
1867}
1868static VMBUS_CHAN_ATTR(out_full_first, 0444, channel_out_full_first_show, NULL);
1869
Kimberly Brown14948e32019-03-14 16:05:15 -04001870static ssize_t channel_out_full_total_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001871 char *buf)
1872{
1873 return sprintf(buf, "%llu\n",
1874 (unsigned long long)channel->out_full_total);
1875}
1876static VMBUS_CHAN_ATTR(out_full_total, 0444, channel_out_full_total_show, NULL);
1877
Kimberly Brown14948e32019-03-14 16:05:15 -04001878static ssize_t subchannel_monitor_id_show(struct vmbus_channel *channel,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001879 char *buf)
1880{
1881 return sprintf(buf, "%u\n", channel->offermsg.monitorid);
1882}
Matheus Castellof0434de42020-11-15 16:57:30 -03001883static VMBUS_CHAN_ATTR(monitor_id, 0444, subchannel_monitor_id_show, NULL);
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001884
Kimberly Brown14948e32019-03-14 16:05:15 -04001885static ssize_t subchannel_id_show(struct vmbus_channel *channel,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001886 char *buf)
1887{
1888 return sprintf(buf, "%u\n",
1889 channel->offermsg.offer.sub_channel_index);
1890}
1891static VMBUS_CHAN_ATTR_RO(subchannel_id);
1892
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001893static struct attribute *vmbus_chan_attrs[] = {
1894 &chan_attr_out_mask.attr,
1895 &chan_attr_in_mask.attr,
1896 &chan_attr_read_avail.attr,
1897 &chan_attr_write_avail.attr,
1898 &chan_attr_cpu.attr,
1899 &chan_attr_pending.attr,
1900 &chan_attr_latency.attr,
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001901 &chan_attr_interrupts.attr,
1902 &chan_attr_events.attr,
Kimberly Brown396ae572019-02-04 02:13:09 -05001903 &chan_attr_intr_in_full.attr,
1904 &chan_attr_intr_out_empty.attr,
1905 &chan_attr_out_full_first.attr,
1906 &chan_attr_out_full_total.attr,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001907 &chan_attr_monitor_id.attr,
1908 &chan_attr_subchannel_id.attr,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001909 NULL
1910};
1911
Kimberly Brown46fc1542019-03-19 00:04:01 -04001912/*
1913 * Channel-level attribute_group callback function. Returns the permission for
1914 * each attribute, and returns 0 if an attribute is not visible.
1915 */
1916static umode_t vmbus_chan_attr_is_visible(struct kobject *kobj,
1917 struct attribute *attr, int idx)
1918{
1919 const struct vmbus_channel *channel =
1920 container_of(kobj, struct vmbus_channel, kobj);
1921
1922 /* Hide the monitor attributes if the monitor mechanism is not used. */
1923 if (!channel->offermsg.monitor_allocated &&
1924 (attr == &chan_attr_pending.attr ||
1925 attr == &chan_attr_latency.attr ||
1926 attr == &chan_attr_monitor_id.attr))
1927 return 0;
1928
1929 return attr->mode;
1930}
1931
1932static struct attribute_group vmbus_chan_group = {
1933 .attrs = vmbus_chan_attrs,
1934 .is_visible = vmbus_chan_attr_is_visible
1935};
1936
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001937static struct kobj_type vmbus_chan_ktype = {
1938 .sysfs_ops = &vmbus_chan_sysfs_ops,
1939 .release = vmbus_chan_release,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001940};
1941
1942/*
1943 * vmbus_add_channel_kobj - setup a sub-directory under device/channels
1944 */
1945int vmbus_add_channel_kobj(struct hv_device *dev, struct vmbus_channel *channel)
1946{
Kimberly Brown46fc1542019-03-19 00:04:01 -04001947 const struct device *device = &dev->device;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001948 struct kobject *kobj = &channel->kobj;
1949 u32 relid = channel->offermsg.child_relid;
1950 int ret;
1951
1952 kobj->kset = dev->channels_kset;
1953 ret = kobject_init_and_add(kobj, &vmbus_chan_ktype, NULL,
1954 "%u", relid);
1955 if (ret)
1956 return ret;
1957
Kimberly Brown46fc1542019-03-19 00:04:01 -04001958 ret = sysfs_create_group(kobj, &vmbus_chan_group);
1959
1960 if (ret) {
1961 /*
1962 * The calling functions' error handling paths will cleanup the
1963 * empty channel directory.
1964 */
1965 dev_err(device, "Unable to set up channel sysfs files\n");
1966 return ret;
1967 }
1968
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001969 kobject_uevent(kobj, KOBJ_ADD);
1970
1971 return 0;
1972}
1973
Hank Janssen3e189512010-03-04 22:11:00 +00001974/*
Kimberly Brown46fc1542019-03-19 00:04:01 -04001975 * vmbus_remove_channel_attr_group - remove the channel's attribute group
1976 */
1977void vmbus_remove_channel_attr_group(struct vmbus_channel *channel)
1978{
1979 sysfs_remove_group(&channel->kobj, &vmbus_chan_group);
1980}
1981
1982/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -07001983 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +00001984 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001985 */
Andy Shevchenko593db802019-01-10 16:25:32 +02001986struct hv_device *vmbus_device_create(const guid_t *type,
1987 const guid_t *instance,
stephen hemminger1b9d48f2014-06-03 08:38:15 -07001988 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001989{
Nicolas Palix3d3b5512009-07-28 17:32:53 +02001990 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001991
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08001992 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
1993 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -07001994 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -07001995 return NULL;
1996 }
1997
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -07001998 child_device_obj->channel = channel;
Andy Shevchenko593db802019-01-10 16:25:32 +02001999 guid_copy(&child_device_obj->dev_type, type);
2000 guid_copy(&child_device_obj->dev_instance, instance);
K. Y. Srinivasan7047f172015-12-25 20:00:30 -08002001 child_device_obj->vendor_id = 0x1414; /* MSFT vendor ID */
Hank Janssen3e7ee492009-07-13 16:02:34 -07002002
Hank Janssen3e7ee492009-07-13 16:02:34 -07002003 return child_device_obj;
2004}
2005
Hank Janssen3e189512010-03-04 22:11:00 +00002006/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -07002007 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002008 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -07002009int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -07002010{
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002011 struct kobject *kobj = &child_device_obj->device.kobj;
2012 int ret;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002013
Stephen Hemmingerf6b2db02016-11-01 00:01:59 -07002014 dev_set_name(&child_device_obj->device, "%pUl",
Andy Shevchenko458c4472020-04-23 16:45:03 +03002015 &child_device_obj->channel->offermsg.offer.if_instance);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002016
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -07002017 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002018 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002019 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -07002020
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002021 /*
2022 * Register with the LDM. This will kick off the driver/device
2023 * binding...which will eventually call vmbus_match() and vmbus_probe()
2024 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002025 ret = device_register(&child_device_obj->device);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002026 if (ret) {
Hank Janssen0a466182011-03-29 13:58:47 -07002027 pr_err("Unable to register child device\n");
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002028 return ret;
2029 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07002030
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002031 child_device_obj->channels_kset = kset_create_and_add("channels",
2032 NULL, kobj);
2033 if (!child_device_obj->channels_kset) {
2034 ret = -ENOMEM;
2035 goto err_dev_unregister;
2036 }
2037
2038 ret = vmbus_add_channel_kobj(child_device_obj,
2039 child_device_obj->channel);
2040 if (ret) {
2041 pr_err("Unable to register primary channeln");
2042 goto err_kset_unregister;
2043 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002044 hv_debug_add_dev_dir(child_device_obj);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002045
2046 return 0;
2047
2048err_kset_unregister:
2049 kset_unregister(child_device_obj->channels_kset);
2050
2051err_dev_unregister:
2052 device_unregister(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002053 return ret;
2054}
2055
Hank Janssen3e189512010-03-04 22:11:00 +00002056/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -07002057 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +00002058 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002059 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -07002060void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -07002061{
Fernando Soto84672362013-06-14 23:13:35 +00002062 pr_debug("child device %s unregistered\n",
2063 dev_name(&device_obj->device));
2064
Dexuan Cui869b5562017-11-14 06:53:32 -07002065 kset_unregister(device_obj->channels_kset);
2066
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002067 /*
2068 * Kick off the process of unregistering the device.
2069 * This will call vmbus_remove() and eventually vmbus_device_release()
2070 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002071 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002072}
2073
Hank Janssen3e7ee492009-07-13 16:02:34 -07002074
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002075/*
Jake Oshins7f163a62015-08-05 00:52:36 -07002076 * VMBUS is an acpi enumerated device. Get the information we
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002077 * need from DSDT.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002078 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002079#define VTPM_BASE_ADDRESS 0xfed40000
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002080static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002081{
Jake Oshins7f163a62015-08-05 00:52:36 -07002082 resource_size_t start = 0;
2083 resource_size_t end = 0;
2084 struct resource *new_res;
2085 struct resource **old_res = &hyperv_mmio;
2086 struct resource **prev_res = NULL;
Michael Kelley626b9012020-08-14 12:45:04 -07002087 struct resource r;
Jake Oshins7f163a62015-08-05 00:52:36 -07002088
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002089 switch (res->type) {
Jake Oshins7f163a62015-08-05 00:52:36 -07002090
2091 /*
2092 * "Address" descriptors are for bus windows. Ignore
2093 * "memory" descriptors, which are for registers on
2094 * devices.
2095 */
2096 case ACPI_RESOURCE_TYPE_ADDRESS32:
2097 start = res->data.address32.address.minimum;
2098 end = res->data.address32.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +01002099 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002100
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002101 case ACPI_RESOURCE_TYPE_ADDRESS64:
Jake Oshins7f163a62015-08-05 00:52:36 -07002102 start = res->data.address64.address.minimum;
2103 end = res->data.address64.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +01002104 break;
Jake Oshins7f163a62015-08-05 00:52:36 -07002105
Michael Kelley626b9012020-08-14 12:45:04 -07002106 /*
2107 * The IRQ information is needed only on ARM64, which Hyper-V
2108 * sets up in the extended format. IRQ information is present
2109 * on x86/x64 in the non-extended format but it is not used by
2110 * Linux. So don't bother checking for the non-extended format.
2111 */
2112 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
2113 if (!acpi_dev_resource_interrupt(res, 0, &r)) {
2114 pr_err("Unable to parse Hyper-V ACPI interrupt\n");
2115 return AE_ERROR;
2116 }
2117 /* ARM64 INTID for VMbus */
2118 vmbus_interrupt = res->data.extended_irq.interrupts[0];
2119 /* Linux IRQ number */
2120 vmbus_irq = r.start;
2121 return AE_OK;
2122
Jake Oshins7f163a62015-08-05 00:52:36 -07002123 default:
2124 /* Unused resource type */
2125 return AE_OK;
2126
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002127 }
Jake Oshins7f163a62015-08-05 00:52:36 -07002128 /*
2129 * Ignore ranges that are below 1MB, as they're not
2130 * necessary or useful here.
2131 */
2132 if (end < 0x100000)
2133 return AE_OK;
2134
2135 new_res = kzalloc(sizeof(*new_res), GFP_ATOMIC);
2136 if (!new_res)
2137 return AE_NO_MEMORY;
2138
2139 /* If this range overlaps the virtual TPM, truncate it. */
2140 if (end > VTPM_BASE_ADDRESS && start < VTPM_BASE_ADDRESS)
2141 end = VTPM_BASE_ADDRESS;
2142
2143 new_res->name = "hyperv mmio";
2144 new_res->flags = IORESOURCE_MEM;
2145 new_res->start = start;
2146 new_res->end = end;
2147
Jake Oshins40f26f32015-12-14 16:01:52 -08002148 /*
Jake Oshins40f26f32015-12-14 16:01:52 -08002149 * If two ranges are adjacent, merge them.
2150 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002151 do {
2152 if (!*old_res) {
2153 *old_res = new_res;
2154 break;
2155 }
2156
Jake Oshins40f26f32015-12-14 16:01:52 -08002157 if (((*old_res)->end + 1) == new_res->start) {
2158 (*old_res)->end = new_res->end;
2159 kfree(new_res);
2160 break;
2161 }
2162
2163 if ((*old_res)->start == new_res->end + 1) {
2164 (*old_res)->start = new_res->start;
2165 kfree(new_res);
2166 break;
2167 }
2168
Jake Oshins23a06832016-04-05 10:22:53 -07002169 if ((*old_res)->start > new_res->end) {
Jake Oshins7f163a62015-08-05 00:52:36 -07002170 new_res->sibling = *old_res;
2171 if (prev_res)
2172 (*prev_res)->sibling = new_res;
2173 *old_res = new_res;
2174 break;
2175 }
2176
2177 prev_res = old_res;
2178 old_res = &(*old_res)->sibling;
2179
2180 } while (1);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002181
2182 return AE_OK;
2183}
2184
Jake Oshins7f163a62015-08-05 00:52:36 -07002185static int vmbus_acpi_remove(struct acpi_device *device)
2186{
2187 struct resource *cur_res;
2188 struct resource *next_res;
2189
2190 if (hyperv_mmio) {
Jake Oshins6d146ae2016-04-05 10:22:55 -07002191 if (fb_mmio) {
2192 __release_region(hyperv_mmio, fb_mmio->start,
2193 resource_size(fb_mmio));
2194 fb_mmio = NULL;
2195 }
2196
Jake Oshins7f163a62015-08-05 00:52:36 -07002197 for (cur_res = hyperv_mmio; cur_res; cur_res = next_res) {
2198 next_res = cur_res->sibling;
2199 kfree(cur_res);
2200 }
2201 }
2202
2203 return 0;
2204}
2205
Jake Oshins6d146ae2016-04-05 10:22:55 -07002206static void vmbus_reserve_fb(void)
2207{
2208 int size;
2209 /*
2210 * Make a claim for the frame buffer in the resource tree under the
2211 * first node, which will be the one below 4GB. The length seems to
2212 * be underreported, particularly in a Generation 1 VM. So start out
2213 * reserving a larger area and make it smaller until it succeeds.
2214 */
2215
2216 if (screen_info.lfb_base) {
2217 if (efi_enabled(EFI_BOOT))
2218 size = max_t(__u32, screen_info.lfb_size, 0x800000);
2219 else
2220 size = max_t(__u32, screen_info.lfb_size, 0x4000000);
2221
2222 for (; !fb_mmio && (size >= 0x100000); size >>= 1) {
2223 fb_mmio = __request_region(hyperv_mmio,
2224 screen_info.lfb_base, size,
2225 fb_mmio_name, 0);
2226 }
2227 }
2228}
2229
Jake Oshins35464482015-08-05 00:52:37 -07002230/**
2231 * vmbus_allocate_mmio() - Pick a memory-mapped I/O range.
2232 * @new: If successful, supplied a pointer to the
2233 * allocated MMIO space.
2234 * @device_obj: Identifies the caller
2235 * @min: Minimum guest physical address of the
2236 * allocation
2237 * @max: Maximum guest physical address
2238 * @size: Size of the range to be allocated
2239 * @align: Alignment of the range to be allocated
2240 * @fb_overlap_ok: Whether this allocation can be allowed
2241 * to overlap the video frame buffer.
2242 *
2243 * This function walks the resources granted to VMBus by the
2244 * _CRS object in the ACPI namespace underneath the parent
2245 * "bridge" whether that's a root PCI bus in the Generation 1
2246 * case or a Module Device in the Generation 2 case. It then
2247 * attempts to allocate from the global MMIO pool in a way that
2248 * matches the constraints supplied in these parameters and by
2249 * that _CRS.
2250 *
2251 * Return: 0 on success, -errno on failure
2252 */
2253int vmbus_allocate_mmio(struct resource **new, struct hv_device *device_obj,
2254 resource_size_t min, resource_size_t max,
2255 resource_size_t size, resource_size_t align,
2256 bool fb_overlap_ok)
2257{
Jake Oshinsbe000f92016-04-05 10:22:54 -07002258 struct resource *iter, *shadow;
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002259 resource_size_t range_min, range_max, start;
Jake Oshins35464482015-08-05 00:52:37 -07002260 const char *dev_n = dev_name(&device_obj->device);
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002261 int retval;
Jake Oshinse16dad62016-04-05 10:22:50 -07002262
2263 retval = -ENXIO;
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002264 mutex_lock(&hyperv_mmio_lock);
Jake Oshins35464482015-08-05 00:52:37 -07002265
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002266 /*
2267 * If overlaps with frame buffers are allowed, then first attempt to
2268 * make the allocation from within the reserved region. Because it
2269 * is already reserved, no shadow allocation is necessary.
2270 */
2271 if (fb_overlap_ok && fb_mmio && !(min > fb_mmio->end) &&
2272 !(max < fb_mmio->start)) {
2273
2274 range_min = fb_mmio->start;
2275 range_max = fb_mmio->end;
2276 start = (range_min + align - 1) & ~(align - 1);
2277 for (; start + size - 1 <= range_max; start += align) {
2278 *new = request_mem_region_exclusive(start, size, dev_n);
2279 if (*new) {
2280 retval = 0;
2281 goto exit;
2282 }
2283 }
2284 }
2285
Jake Oshins35464482015-08-05 00:52:37 -07002286 for (iter = hyperv_mmio; iter; iter = iter->sibling) {
2287 if ((iter->start >= max) || (iter->end <= min))
2288 continue;
2289
2290 range_min = iter->start;
2291 range_max = iter->end;
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002292 start = (range_min + align - 1) & ~(align - 1);
2293 for (; start + size - 1 <= range_max; start += align) {
2294 shadow = __request_region(iter, start, size, NULL,
2295 IORESOURCE_BUSY);
2296 if (!shadow)
2297 continue;
Jake Oshins35464482015-08-05 00:52:37 -07002298
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002299 *new = request_mem_region_exclusive(start, size, dev_n);
2300 if (*new) {
2301 shadow->name = (char *)*new;
2302 retval = 0;
2303 goto exit;
Jake Oshins35464482015-08-05 00:52:37 -07002304 }
2305
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002306 __release_region(iter, start, size);
Jake Oshins35464482015-08-05 00:52:37 -07002307 }
2308 }
2309
Jake Oshinse16dad62016-04-05 10:22:50 -07002310exit:
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002311 mutex_unlock(&hyperv_mmio_lock);
Jake Oshinse16dad62016-04-05 10:22:50 -07002312 return retval;
Jake Oshins35464482015-08-05 00:52:37 -07002313}
2314EXPORT_SYMBOL_GPL(vmbus_allocate_mmio);
2315
Jake Oshins619848b2015-12-14 16:01:39 -08002316/**
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002317 * vmbus_free_mmio() - Free a memory-mapped I/O range.
2318 * @start: Base address of region to release.
2319 * @size: Size of the range to be allocated
2320 *
2321 * This function releases anything requested by
2322 * vmbus_mmio_allocate().
2323 */
2324void vmbus_free_mmio(resource_size_t start, resource_size_t size)
2325{
Jake Oshinsbe000f92016-04-05 10:22:54 -07002326 struct resource *iter;
2327
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002328 mutex_lock(&hyperv_mmio_lock);
Jake Oshinsbe000f92016-04-05 10:22:54 -07002329 for (iter = hyperv_mmio; iter; iter = iter->sibling) {
2330 if ((iter->start >= start + size) || (iter->end <= start))
2331 continue;
2332
2333 __release_region(iter, start, size);
2334 }
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002335 release_mem_region(start, size);
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002336 mutex_unlock(&hyperv_mmio_lock);
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002337
2338}
2339EXPORT_SYMBOL_GPL(vmbus_free_mmio);
2340
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002341static int vmbus_acpi_add(struct acpi_device *device)
2342{
2343 acpi_status result;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002344 int ret_val = -ENODEV;
Jake Oshins7f163a62015-08-05 00:52:36 -07002345 struct acpi_device *ancestor;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002346
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002347 hv_acpi_dev = device;
2348
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -07002349 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002350 vmbus_walk_resources, NULL);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002351
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002352 if (ACPI_FAILURE(result))
2353 goto acpi_walk_err;
2354 /*
Jake Oshins7f163a62015-08-05 00:52:36 -07002355 * Some ancestor of the vmbus acpi device (Gen1 or Gen2
2356 * firmware) is the VMOD that has the mmio ranges. Get that.
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002357 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002358 for (ancestor = device->parent; ancestor; ancestor = ancestor->parent) {
2359 result = acpi_walk_resources(ancestor->handle, METHOD_NAME__CRS,
2360 vmbus_walk_resources, NULL);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002361
2362 if (ACPI_FAILURE(result))
Jake Oshins7f163a62015-08-05 00:52:36 -07002363 continue;
Jake Oshins6d146ae2016-04-05 10:22:55 -07002364 if (hyperv_mmio) {
2365 vmbus_reserve_fb();
Jake Oshins7f163a62015-08-05 00:52:36 -07002366 break;
Jake Oshins6d146ae2016-04-05 10:22:55 -07002367 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002368 }
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002369 ret_val = 0;
2370
2371acpi_walk_err:
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002372 complete(&probe_event);
Jake Oshins7f163a62015-08-05 00:52:36 -07002373 if (ret_val)
2374 vmbus_acpi_remove(device);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002375 return ret_val;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002376}
2377
Dexuan Cui83b50f82019-09-19 21:46:12 +00002378#ifdef CONFIG_PM_SLEEP
Dexuan Cuif53335e2019-09-05 23:01:19 +00002379static int vmbus_bus_suspend(struct device *dev)
2380{
Dexuan Cuib307b382019-09-05 23:01:21 +00002381 struct vmbus_channel *channel, *sc;
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00002382
2383 while (atomic_read(&vmbus_connection.offer_in_progress) != 0) {
2384 /*
2385 * We wait here until the completion of any channel
2386 * offers that are currently in progress.
2387 */
Matheus Castello14c685d2020-11-15 16:57:34 -03002388 usleep_range(1000, 2000);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00002389 }
2390
2391 mutex_lock(&vmbus_connection.channel_mutex);
2392 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
2393 if (!is_hvsock_channel(channel))
2394 continue;
2395
2396 vmbus_force_channel_rescinded(channel);
2397 }
2398 mutex_unlock(&vmbus_connection.channel_mutex);
2399
Dexuan Cuib307b382019-09-05 23:01:21 +00002400 /*
2401 * Wait until all the sub-channels and hv_sock channels have been
2402 * cleaned up. Sub-channels should be destroyed upon suspend, otherwise
2403 * they would conflict with the new sub-channels that will be created
2404 * in the resume path. hv_sock channels should also be destroyed, but
2405 * a hv_sock channel of an established hv_sock connection can not be
2406 * really destroyed since it may still be referenced by the userspace
2407 * application, so we just force the hv_sock channel to be rescinded
2408 * by vmbus_force_channel_rescinded(), and the userspace application
2409 * will thoroughly destroy the channel after hibernation.
2410 *
2411 * Note: the counter nr_chan_close_on_suspend may never go above 0 if
2412 * the VM has no sub-channel and hv_sock channel, e.g. a 1-vCPU VM.
2413 */
2414 if (atomic_read(&vmbus_connection.nr_chan_close_on_suspend) > 0)
2415 wait_for_completion(&vmbus_connection.ready_for_suspend_event);
2416
Dexuan Cui19873eec2020-09-04 19:55:55 -07002417 if (atomic_read(&vmbus_connection.nr_chan_fixup_on_resume) != 0) {
2418 pr_err("Can not suspend due to a previous failed resuming\n");
2419 return -EBUSY;
2420 }
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002421
Dexuan Cuib307b382019-09-05 23:01:21 +00002422 mutex_lock(&vmbus_connection.channel_mutex);
2423
2424 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002425 /*
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002426 * Remove the channel from the array of channels and invalidate
2427 * the channel's relid. Upon resume, vmbus_onoffer() will fix
2428 * up the relid (and other fields, if necessary) and add the
2429 * channel back to the array.
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002430 */
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002431 vmbus_channel_unmap_relid(channel);
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002432 channel->offermsg.child_relid = INVALID_RELID;
2433
Dexuan Cuib307b382019-09-05 23:01:21 +00002434 if (is_hvsock_channel(channel)) {
2435 if (!channel->rescind) {
2436 pr_err("hv_sock channel not rescinded!\n");
2437 WARN_ON_ONCE(1);
2438 }
2439 continue;
2440 }
2441
Dexuan Cuib307b382019-09-05 23:01:21 +00002442 list_for_each_entry(sc, &channel->sc_list, sc_list) {
2443 pr_err("Sub-channel not deleted!\n");
2444 WARN_ON_ONCE(1);
2445 }
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002446
2447 atomic_inc(&vmbus_connection.nr_chan_fixup_on_resume);
Dexuan Cuib307b382019-09-05 23:01:21 +00002448 }
2449
2450 mutex_unlock(&vmbus_connection.channel_mutex);
2451
Dexuan Cuif53335e2019-09-05 23:01:19 +00002452 vmbus_initiate_unload(false);
2453
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002454 /* Reset the event for the next resume. */
2455 reinit_completion(&vmbus_connection.ready_for_resume_event);
2456
Dexuan Cuif53335e2019-09-05 23:01:19 +00002457 return 0;
2458}
2459
2460static int vmbus_bus_resume(struct device *dev)
2461{
2462 struct vmbus_channel_msginfo *msginfo;
2463 size_t msgsize;
2464 int ret;
2465
2466 /*
2467 * We only use the 'vmbus_proto_version', which was in use before
2468 * hibernation, to re-negotiate with the host.
2469 */
Andrea Parribedc61a2019-10-15 13:46:44 +02002470 if (!vmbus_proto_version) {
Dexuan Cuif53335e2019-09-05 23:01:19 +00002471 pr_err("Invalid proto version = 0x%x\n", vmbus_proto_version);
2472 return -EINVAL;
2473 }
2474
2475 msgsize = sizeof(*msginfo) +
2476 sizeof(struct vmbus_channel_initiate_contact);
2477
2478 msginfo = kzalloc(msgsize, GFP_KERNEL);
2479
2480 if (msginfo == NULL)
2481 return -ENOMEM;
2482
2483 ret = vmbus_negotiate_version(msginfo, vmbus_proto_version);
2484
2485 kfree(msginfo);
2486
2487 if (ret != 0)
2488 return ret;
2489
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002490 WARN_ON(atomic_read(&vmbus_connection.nr_chan_fixup_on_resume) == 0);
2491
Dexuan Cuif53335e2019-09-05 23:01:19 +00002492 vmbus_request_offers();
2493
Dexuan Cui19873eec2020-09-04 19:55:55 -07002494 if (wait_for_completion_timeout(
2495 &vmbus_connection.ready_for_resume_event, 10 * HZ) == 0)
2496 pr_err("Some vmbus device is missing after suspending?\n");
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002497
Dexuan Cuib307b382019-09-05 23:01:21 +00002498 /* Reset the event for the next suspend. */
2499 reinit_completion(&vmbus_connection.ready_for_suspend_event);
2500
Dexuan Cuif53335e2019-09-05 23:01:19 +00002501 return 0;
2502}
Dexuan Cui1a06d012020-04-11 20:50:35 -07002503#else
2504#define vmbus_bus_suspend NULL
2505#define vmbus_bus_resume NULL
Dexuan Cui83b50f82019-09-19 21:46:12 +00002506#endif /* CONFIG_PM_SLEEP */
Dexuan Cuif53335e2019-09-05 23:01:19 +00002507
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002508static const struct acpi_device_id vmbus_acpi_device_ids[] = {
2509 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -07002510 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002511 {"", 0},
2512};
2513MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
2514
Dexuan Cuif53335e2019-09-05 23:01:19 +00002515/*
Dexuan Cui1a06d012020-04-11 20:50:35 -07002516 * Note: we must use the "no_irq" ops, otherwise hibernation can not work with
2517 * PCI device assignment, because "pci_dev_pm_ops" uses the "noirq" ops: in
2518 * the resume path, the pci "noirq" restore op runs before "non-noirq" op (see
Dexuan Cuif53335e2019-09-05 23:01:19 +00002519 * resume_target_kernel() -> dpm_resume_start(), and hibernation_restore() ->
2520 * dpm_resume_end()). This means vmbus_bus_resume() and the pci-hyperv's
Dexuan Cui1a06d012020-04-11 20:50:35 -07002521 * resume callback must also run via the "noirq" ops.
2522 *
2523 * Set suspend_noirq/resume_noirq to NULL for Suspend-to-Idle: see the comment
2524 * earlier in this file before vmbus_pm.
Dexuan Cuif53335e2019-09-05 23:01:19 +00002525 */
Dexuan Cui1a06d012020-04-11 20:50:35 -07002526
Dexuan Cuif53335e2019-09-05 23:01:19 +00002527static const struct dev_pm_ops vmbus_bus_pm = {
Dexuan Cui1a06d012020-04-11 20:50:35 -07002528 .suspend_noirq = NULL,
2529 .resume_noirq = NULL,
2530 .freeze_noirq = vmbus_bus_suspend,
2531 .thaw_noirq = vmbus_bus_resume,
2532 .poweroff_noirq = vmbus_bus_suspend,
2533 .restore_noirq = vmbus_bus_resume
Dexuan Cuif53335e2019-09-05 23:01:19 +00002534};
2535
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002536static struct acpi_driver vmbus_acpi_driver = {
2537 .name = "vmbus",
2538 .ids = vmbus_acpi_device_ids,
2539 .ops = {
2540 .add = vmbus_acpi_add,
Vitaly Kuznetsove4ecb412015-04-22 21:31:28 -07002541 .remove = vmbus_acpi_remove,
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002542 },
Dexuan Cuif53335e2019-09-05 23:01:19 +00002543 .drv.pm = &vmbus_bus_pm,
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002544};
2545
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002546static void hv_kexec_handler(void)
2547{
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002548 hv_stimer_global_cleanup();
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -08002549 vmbus_initiate_unload(false);
Vitaly Kuznetsov523b9402016-12-07 14:53:12 -08002550 /* Make sure conn_state is set as hv_synic_cleanup checks for it */
2551 mb();
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08002552 cpuhp_remove_state(hyperv_cpuhp_online);
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002553};
2554
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002555static void hv_crash_handler(struct pt_regs *regs)
2556{
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002557 int cpu;
2558
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -08002559 vmbus_initiate_unload(true);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002560 /*
2561 * In crash handler we can't schedule synic cleanup for all CPUs,
2562 * doing the cleanup for current CPU only. This should be sufficient
2563 * for kdump.
2564 */
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002565 cpu = smp_processor_id();
2566 hv_stimer_cleanup(cpu);
Michael Kelley7a1323b2019-11-14 06:32:01 +00002567 hv_synic_disable_regs(cpu);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002568};
2569
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002570static int hv_synic_suspend(void)
2571{
2572 /*
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002573 * When we reach here, all the non-boot CPUs have been offlined.
2574 * If we're in a legacy configuration where stimer Direct Mode is
2575 * not enabled, the stimers on the non-boot CPUs have been unbound
2576 * in hv_synic_cleanup() -> hv_stimer_legacy_cleanup() ->
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002577 * hv_stimer_cleanup() -> clockevents_unbind_device().
2578 *
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002579 * hv_synic_suspend() only runs on CPU0 with interrupts disabled.
2580 * Here we do not call hv_stimer_legacy_cleanup() on CPU0 because:
2581 * 1) it's unnecessary as interrupts remain disabled between
2582 * syscore_suspend() and syscore_resume(): see create_image() and
2583 * resume_target_kernel()
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002584 * 2) the stimer on CPU0 is automatically disabled later by
2585 * syscore_suspend() -> timekeeping_suspend() -> tick_suspend() -> ...
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002586 * -> clockevents_shutdown() -> ... -> hv_ce_shutdown()
2587 * 3) a warning would be triggered if we call
2588 * clockevents_unbind_device(), which may sleep, in an
2589 * interrupts-disabled context.
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002590 */
2591
2592 hv_synic_disable_regs(0);
2593
2594 return 0;
2595}
2596
2597static void hv_synic_resume(void)
2598{
2599 hv_synic_enable_regs(0);
2600
2601 /*
2602 * Note: we don't need to call hv_stimer_init(0), because the timer
2603 * on CPU0 is not unbound in hv_synic_suspend(), and the timer is
2604 * automatically re-enabled in timekeeping_resume().
2605 */
2606}
2607
2608/* The callbacks run only on CPU0, with irqs_disabled. */
2609static struct syscore_ops hv_synic_syscore_ops = {
2610 .suspend = hv_synic_suspend,
2611 .resume = hv_synic_resume,
2612};
2613
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002614static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002615{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002616 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002617
Michael Kelley4a5f3cd2017-12-22 11:19:02 -07002618 if (!hv_is_hyperv_initialized())
Jason Wang05929692012-08-17 18:52:43 +08002619 return -ENODEV;
2620
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002621 init_completion(&probe_event);
2622
2623 /*
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08002624 * Get ACPI resources first.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002625 */
K. Y. Srinivasan02466042011-06-06 15:49:40 -07002626 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
2627
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002628 if (ret)
2629 return ret;
2630
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002631 t = wait_for_completion_timeout(&probe_event, 5*HZ);
2632 if (t == 0) {
2633 ret = -ETIMEDOUT;
2634 goto cleanup;
2635 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002636 hv_debug_init();
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002637
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08002638 ret = vmbus_bus_init();
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07002639 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002640 goto cleanup;
2641
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002642 hv_setup_kexec_handler(hv_kexec_handler);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002643 hv_setup_crash_handler(hv_crash_handler);
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002644
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002645 register_syscore_ops(&hv_synic_syscore_ops);
2646
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002647 return 0;
2648
2649cleanup:
2650 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08002651 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07002652 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002653}
2654
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002655static void __exit vmbus_exit(void)
2656{
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -08002657 int cpu;
2658
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002659 unregister_syscore_ops(&hv_synic_syscore_ops);
2660
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002661 hv_remove_kexec_handler();
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002662 hv_remove_crash_handler();
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08002663 vmbus_connection.conn_state = DISCONNECTED;
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002664 hv_stimer_global_cleanup();
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -07002665 vmbus_disconnect();
Thomas Gleixner76d388c2014-03-05 13:42:14 +01002666 hv_remove_vmbus_irq();
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002667 for_each_online_cpu(cpu) {
2668 struct hv_per_cpu_context *hv_cpu
2669 = per_cpu_ptr(hv_context.cpu_context, cpu);
2670
2671 tasklet_kill(&hv_cpu->msg_dpc);
2672 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002673 hv_debug_rm_all_dir();
2674
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002675 vmbus_free_channels();
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002676 kfree(vmbus_connection.channels);
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002677
Denis V. Lunevcc2dd402015-08-01 16:08:20 -07002678 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00002679 kmsg_dump_unregister(&hv_kmsg_dumper);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -07002680 unregister_die_notifier(&hyperv_die_block);
Vitaly Kuznetsov096c6052015-04-22 21:31:29 -07002681 atomic_notifier_chain_unregister(&panic_notifier_list,
2682 &hyperv_panic_block);
2683 }
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00002684
2685 free_page((unsigned long)hv_panic_page);
Sunil Muthuswamy8afc06d2018-07-28 21:58:46 +00002686 unregister_sysctl_table(hv_ctl_table_hdr);
2687 hv_ctl_table_hdr = NULL;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002688 bus_unregister(&hv_bus);
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002689
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08002690 cpuhp_remove_state(hyperv_cpuhp_online);
Vitaly Kuznetsov06210b42015-08-01 16:08:05 -07002691 hv_synic_free();
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002692 acpi_bus_unregister_driver(&vmbus_acpi_driver);
2693}
2694
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002695
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002696MODULE_LICENSE("GPL");
Joseph Salisbury674eecb2019-04-23 03:47:27 +00002697MODULE_DESCRIPTION("Microsoft Hyper-V VMBus Driver");
Hank Janssen3e7ee492009-07-13 16:02:34 -07002698
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -07002699subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002700module_exit(vmbus_exit);