blob: 187809977360531834bf0b4cdd65155c238ae4fb [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
Tianyu Lan040026d2020-04-06 08:53:30 -070051/*
52 * Boolean to control whether to report panic messages over Hyper-V.
53 *
54 * It can be set via /proc/sys/kernel/hyperv/record_panic_msg
55 */
56static int sysctl_record_panic_msg = 1;
57
58static int hyperv_report_reg(void)
59{
60 return !sysctl_record_panic_msg || !hv_panic_page;
61}
62
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070063static int hyperv_panic_event(struct notifier_block *nb, unsigned long val,
64 void *args)
65{
66 struct pt_regs *regs;
67
Tianyu Lan74347a92020-04-06 08:53:26 -070068 vmbus_initiate_unload(true);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070069
Tianyu Lan73f26e52020-04-06 08:53:28 -070070 /*
71 * Hyper-V should be notified only once about a panic. If we will be
72 * doing hyperv_report_panic_msg() later with kmsg data, don't do
73 * the notification here.
74 */
75 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE
Tianyu Lan040026d2020-04-06 08:53:30 -070076 && hyperv_report_reg()) {
Tianyu Lan74347a92020-04-06 08:53:26 -070077 regs = current_pt_regs();
Tianyu Lanf3a99e72020-04-06 08:53:31 -070078 hyperv_report_panic(regs, val, false);
Tianyu Lan74347a92020-04-06 08:53:26 -070079 }
Nick Meier96c1d052015-02-28 11:39:01 -080080 return NOTIFY_DONE;
81}
82
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070083static int hyperv_die_event(struct notifier_block *nb, unsigned long val,
84 void *args)
85{
Olaf Hering49971e62020-08-19 11:05:09 +020086 struct die_args *die = args;
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070087 struct pt_regs *regs = die->regs;
88
Michael Kelley608a9732020-08-06 09:22:15 -070089 /* Don't notify Hyper-V if the die event is other than oops */
90 if (val != DIE_OOPS)
91 return NOTIFY_DONE;
92
Tianyu Lan73f26e52020-04-06 08:53:28 -070093 /*
94 * Hyper-V should be notified only once about a panic. If we will be
95 * doing hyperv_report_panic_msg() later with kmsg data, don't do
96 * the notification here.
97 */
Tianyu Lan040026d2020-04-06 08:53:30 -070098 if (hyperv_report_reg())
Tianyu Lanf3a99e72020-04-06 08:53:31 -070099 hyperv_report_panic(regs, val, true);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -0700100 return NOTIFY_DONE;
101}
102
103static struct notifier_block hyperv_die_block = {
104 .notifier_call = hyperv_die_event,
105};
Nick Meier96c1d052015-02-28 11:39:01 -0800106static struct notifier_block hyperv_panic_block = {
107 .notifier_call = hyperv_panic_event,
108};
109
Jake Oshins6d146ae2016-04-05 10:22:55 -0700110static const char *fb_mmio_name = "fb_range";
111static struct resource *fb_mmio;
Stephen Hemmingere2e80842016-09-07 05:39:33 -0700112static struct resource *hyperv_mmio;
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -0700113static DEFINE_MUTEX(hyperv_mmio_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700114
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800115static int vmbus_exists(void)
116{
117 if (hv_acpi_dev == NULL)
118 return -ENODEV;
119
120 return 0;
121}
122
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700123static u8 channel_monitor_group(const struct vmbus_channel *channel)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700124{
125 return (u8)channel->offermsg.monitorid / 32;
126}
127
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700128static u8 channel_monitor_offset(const struct vmbus_channel *channel)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700129{
130 return (u8)channel->offermsg.monitorid % 32;
131}
132
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700133static u32 channel_pending(const struct vmbus_channel *channel,
134 const struct hv_monitor_page *monitor_page)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700135{
136 u8 monitor_group = channel_monitor_group(channel);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700137
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700138 return monitor_page->trigger_group[monitor_group].pending;
139}
140
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700141static u32 channel_latency(const struct vmbus_channel *channel,
142 const struct hv_monitor_page *monitor_page)
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700143{
144 u8 monitor_group = channel_monitor_group(channel);
145 u8 monitor_offset = channel_monitor_offset(channel);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700146
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700147 return monitor_page->latency[monitor_group][monitor_offset];
148}
149
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700150static u32 channel_conn_id(struct vmbus_channel *channel,
151 struct hv_monitor_page *monitor_page)
152{
153 u8 monitor_group = channel_monitor_group(channel);
154 u8 monitor_offset = channel_monitor_offset(channel);
155 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
156}
157
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700158static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
159 char *buf)
160{
161 struct hv_device *hv_dev = device_to_hv_device(dev);
162
163 if (!hv_dev->channel)
164 return -ENODEV;
165 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
166}
167static DEVICE_ATTR_RO(id);
168
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700169static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
170 char *buf)
171{
172 struct hv_device *hv_dev = device_to_hv_device(dev);
173
174 if (!hv_dev->channel)
175 return -ENODEV;
176 return sprintf(buf, "%d\n", hv_dev->channel->state);
177}
178static DEVICE_ATTR_RO(state);
179
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700180static ssize_t monitor_id_show(struct device *dev,
181 struct device_attribute *dev_attr, char *buf)
182{
183 struct hv_device *hv_dev = device_to_hv_device(dev);
184
185 if (!hv_dev->channel)
186 return -ENODEV;
187 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
188}
189static DEVICE_ATTR_RO(monitor_id);
190
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700191static ssize_t class_id_show(struct device *dev,
192 struct device_attribute *dev_attr, char *buf)
193{
194 struct hv_device *hv_dev = device_to_hv_device(dev);
195
196 if (!hv_dev->channel)
197 return -ENODEV;
198 return sprintf(buf, "{%pUl}\n",
Andy Shevchenko458c4472020-04-23 16:45:03 +0300199 &hv_dev->channel->offermsg.offer.if_type);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700200}
201static DEVICE_ATTR_RO(class_id);
202
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700203static ssize_t device_id_show(struct device *dev,
204 struct device_attribute *dev_attr, char *buf)
205{
206 struct hv_device *hv_dev = device_to_hv_device(dev);
207
208 if (!hv_dev->channel)
209 return -ENODEV;
210 return sprintf(buf, "{%pUl}\n",
Andy Shevchenko458c4472020-04-23 16:45:03 +0300211 &hv_dev->channel->offermsg.offer.if_instance);
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700212}
213static DEVICE_ATTR_RO(device_id);
214
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700215static ssize_t modalias_show(struct device *dev,
216 struct device_attribute *dev_attr, char *buf)
217{
218 struct hv_device *hv_dev = device_to_hv_device(dev);
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700219
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300220 return sprintf(buf, "vmbus:%*phN\n", UUID_SIZE, &hv_dev->dev_type);
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700221}
222static DEVICE_ATTR_RO(modalias);
223
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000224#ifdef CONFIG_NUMA
225static ssize_t numa_node_show(struct device *dev,
226 struct device_attribute *attr, char *buf)
227{
228 struct hv_device *hv_dev = device_to_hv_device(dev);
229
230 if (!hv_dev->channel)
231 return -ENODEV;
232
Andrea Parri (Microsoft)458d0902020-06-17 18:46:36 +0200233 return sprintf(buf, "%d\n", cpu_to_node(hv_dev->channel->target_cpu));
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000234}
235static DEVICE_ATTR_RO(numa_node);
236#endif
237
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700238static ssize_t server_monitor_pending_show(struct device *dev,
239 struct device_attribute *dev_attr,
240 char *buf)
241{
242 struct hv_device *hv_dev = device_to_hv_device(dev);
243
244 if (!hv_dev->channel)
245 return -ENODEV;
246 return sprintf(buf, "%d\n",
247 channel_pending(hv_dev->channel,
Kimberly Brownfd8e3c32019-02-19 00:38:06 -0500248 vmbus_connection.monitor_pages[0]));
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700249}
250static DEVICE_ATTR_RO(server_monitor_pending);
251
252static ssize_t client_monitor_pending_show(struct device *dev,
253 struct device_attribute *dev_attr,
254 char *buf)
255{
256 struct hv_device *hv_dev = device_to_hv_device(dev);
257
258 if (!hv_dev->channel)
259 return -ENODEV;
260 return sprintf(buf, "%d\n",
261 channel_pending(hv_dev->channel,
262 vmbus_connection.monitor_pages[1]));
263}
264static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700265
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700266static ssize_t server_monitor_latency_show(struct device *dev,
267 struct device_attribute *dev_attr,
268 char *buf)
269{
270 struct hv_device *hv_dev = device_to_hv_device(dev);
271
272 if (!hv_dev->channel)
273 return -ENODEV;
274 return sprintf(buf, "%d\n",
275 channel_latency(hv_dev->channel,
276 vmbus_connection.monitor_pages[0]));
277}
278static DEVICE_ATTR_RO(server_monitor_latency);
279
280static ssize_t client_monitor_latency_show(struct device *dev,
281 struct device_attribute *dev_attr,
282 char *buf)
283{
284 struct hv_device *hv_dev = device_to_hv_device(dev);
285
286 if (!hv_dev->channel)
287 return -ENODEV;
288 return sprintf(buf, "%d\n",
289 channel_latency(hv_dev->channel,
290 vmbus_connection.monitor_pages[1]));
291}
292static DEVICE_ATTR_RO(client_monitor_latency);
293
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700294static ssize_t server_monitor_conn_id_show(struct device *dev,
295 struct device_attribute *dev_attr,
296 char *buf)
297{
298 struct hv_device *hv_dev = device_to_hv_device(dev);
299
300 if (!hv_dev->channel)
301 return -ENODEV;
302 return sprintf(buf, "%d\n",
303 channel_conn_id(hv_dev->channel,
304 vmbus_connection.monitor_pages[0]));
305}
306static DEVICE_ATTR_RO(server_monitor_conn_id);
307
308static ssize_t client_monitor_conn_id_show(struct device *dev,
309 struct device_attribute *dev_attr,
310 char *buf)
311{
312 struct hv_device *hv_dev = device_to_hv_device(dev);
313
314 if (!hv_dev->channel)
315 return -ENODEV;
316 return sprintf(buf, "%d\n",
317 channel_conn_id(hv_dev->channel,
318 vmbus_connection.monitor_pages[1]));
319}
320static DEVICE_ATTR_RO(client_monitor_conn_id);
321
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700322static ssize_t out_intr_mask_show(struct device *dev,
323 struct device_attribute *dev_attr, char *buf)
324{
325 struct hv_device *hv_dev = device_to_hv_device(dev);
326 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000327 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700328
329 if (!hv_dev->channel)
330 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000331
332 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
333 &outbound);
334 if (ret < 0)
335 return ret;
336
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700337 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
338}
339static DEVICE_ATTR_RO(out_intr_mask);
340
341static ssize_t out_read_index_show(struct device *dev,
342 struct device_attribute *dev_attr, char *buf)
343{
344 struct hv_device *hv_dev = device_to_hv_device(dev);
345 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000346 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700347
348 if (!hv_dev->channel)
349 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000350
351 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
352 &outbound);
353 if (ret < 0)
354 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700355 return sprintf(buf, "%d\n", outbound.current_read_index);
356}
357static DEVICE_ATTR_RO(out_read_index);
358
359static ssize_t out_write_index_show(struct device *dev,
360 struct device_attribute *dev_attr,
361 char *buf)
362{
363 struct hv_device *hv_dev = device_to_hv_device(dev);
364 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000365 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700366
367 if (!hv_dev->channel)
368 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000369
370 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
371 &outbound);
372 if (ret < 0)
373 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700374 return sprintf(buf, "%d\n", outbound.current_write_index);
375}
376static DEVICE_ATTR_RO(out_write_index);
377
378static ssize_t out_read_bytes_avail_show(struct device *dev,
379 struct device_attribute *dev_attr,
380 char *buf)
381{
382 struct hv_device *hv_dev = device_to_hv_device(dev);
383 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000384 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700385
386 if (!hv_dev->channel)
387 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000388
389 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
390 &outbound);
391 if (ret < 0)
392 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700393 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
394}
395static DEVICE_ATTR_RO(out_read_bytes_avail);
396
397static ssize_t out_write_bytes_avail_show(struct device *dev,
398 struct device_attribute *dev_attr,
399 char *buf)
400{
401 struct hv_device *hv_dev = device_to_hv_device(dev);
402 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000403 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700404
405 if (!hv_dev->channel)
406 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000407
408 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
409 &outbound);
410 if (ret < 0)
411 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700412 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
413}
414static DEVICE_ATTR_RO(out_write_bytes_avail);
415
416static ssize_t in_intr_mask_show(struct device *dev,
417 struct device_attribute *dev_attr, char *buf)
418{
419 struct hv_device *hv_dev = device_to_hv_device(dev);
420 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000421 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700422
423 if (!hv_dev->channel)
424 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000425
426 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
427 if (ret < 0)
428 return ret;
429
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700430 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
431}
432static DEVICE_ATTR_RO(in_intr_mask);
433
434static ssize_t in_read_index_show(struct device *dev,
435 struct device_attribute *dev_attr, char *buf)
436{
437 struct hv_device *hv_dev = device_to_hv_device(dev);
438 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000439 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700440
441 if (!hv_dev->channel)
442 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000443
444 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
445 if (ret < 0)
446 return ret;
447
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700448 return sprintf(buf, "%d\n", inbound.current_read_index);
449}
450static DEVICE_ATTR_RO(in_read_index);
451
452static ssize_t in_write_index_show(struct device *dev,
453 struct device_attribute *dev_attr, char *buf)
454{
455 struct hv_device *hv_dev = device_to_hv_device(dev);
456 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000457 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700458
459 if (!hv_dev->channel)
460 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000461
462 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
463 if (ret < 0)
464 return ret;
465
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700466 return sprintf(buf, "%d\n", inbound.current_write_index);
467}
468static DEVICE_ATTR_RO(in_write_index);
469
470static ssize_t in_read_bytes_avail_show(struct device *dev,
471 struct device_attribute *dev_attr,
472 char *buf)
473{
474 struct hv_device *hv_dev = device_to_hv_device(dev);
475 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000476 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700477
478 if (!hv_dev->channel)
479 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000480
481 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
482 if (ret < 0)
483 return ret;
484
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700485 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
486}
487static DEVICE_ATTR_RO(in_read_bytes_avail);
488
489static ssize_t in_write_bytes_avail_show(struct device *dev,
490 struct device_attribute *dev_attr,
491 char *buf)
492{
493 struct hv_device *hv_dev = device_to_hv_device(dev);
494 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000495 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700496
497 if (!hv_dev->channel)
498 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000499
500 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
501 if (ret < 0)
502 return ret;
503
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700504 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
505}
506static DEVICE_ATTR_RO(in_write_bytes_avail);
507
Dexuan Cui042ab032015-08-05 00:52:43 -0700508static ssize_t channel_vp_mapping_show(struct device *dev,
509 struct device_attribute *dev_attr,
510 char *buf)
511{
512 struct hv_device *hv_dev = device_to_hv_device(dev);
513 struct vmbus_channel *channel = hv_dev->channel, *cur_sc;
Dexuan Cui042ab032015-08-05 00:52:43 -0700514 int buf_size = PAGE_SIZE, n_written, tot_written;
515 struct list_head *cur;
516
517 if (!channel)
518 return -ENODEV;
519
Andrea Parri (Microsoft)3eb0ac82020-06-17 18:46:39 +0200520 mutex_lock(&vmbus_connection.channel_mutex);
521
Dexuan Cui042ab032015-08-05 00:52:43 -0700522 tot_written = snprintf(buf, buf_size, "%u:%u\n",
523 channel->offermsg.child_relid, channel->target_cpu);
524
Dexuan Cui042ab032015-08-05 00:52:43 -0700525 list_for_each(cur, &channel->sc_list) {
526 if (tot_written >= buf_size - 1)
527 break;
528
529 cur_sc = list_entry(cur, struct vmbus_channel, sc_list);
530 n_written = scnprintf(buf + tot_written,
531 buf_size - tot_written,
532 "%u:%u\n",
533 cur_sc->offermsg.child_relid,
534 cur_sc->target_cpu);
535 tot_written += n_written;
536 }
537
Andrea Parri (Microsoft)3eb0ac82020-06-17 18:46:39 +0200538 mutex_unlock(&vmbus_connection.channel_mutex);
Dexuan Cui042ab032015-08-05 00:52:43 -0700539
540 return tot_written;
541}
542static DEVICE_ATTR_RO(channel_vp_mapping);
543
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800544static ssize_t vendor_show(struct device *dev,
545 struct device_attribute *dev_attr,
546 char *buf)
547{
548 struct hv_device *hv_dev = device_to_hv_device(dev);
549 return sprintf(buf, "0x%x\n", hv_dev->vendor_id);
550}
551static DEVICE_ATTR_RO(vendor);
552
553static ssize_t device_show(struct device *dev,
554 struct device_attribute *dev_attr,
555 char *buf)
556{
557 struct hv_device *hv_dev = device_to_hv_device(dev);
558 return sprintf(buf, "0x%x\n", hv_dev->device_id);
559}
560static DEVICE_ATTR_RO(device);
561
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000562static ssize_t driver_override_store(struct device *dev,
563 struct device_attribute *attr,
564 const char *buf, size_t count)
565{
566 struct hv_device *hv_dev = device_to_hv_device(dev);
567 char *driver_override, *old, *cp;
568
569 /* We need to keep extra room for a newline */
570 if (count >= (PAGE_SIZE - 1))
571 return -EINVAL;
572
573 driver_override = kstrndup(buf, count, GFP_KERNEL);
574 if (!driver_override)
575 return -ENOMEM;
576
577 cp = strchr(driver_override, '\n');
578 if (cp)
579 *cp = '\0';
580
581 device_lock(dev);
582 old = hv_dev->driver_override;
583 if (strlen(driver_override)) {
584 hv_dev->driver_override = driver_override;
585 } else {
586 kfree(driver_override);
587 hv_dev->driver_override = NULL;
588 }
589 device_unlock(dev);
590
591 kfree(old);
592
593 return count;
594}
595
596static ssize_t driver_override_show(struct device *dev,
597 struct device_attribute *attr, char *buf)
598{
599 struct hv_device *hv_dev = device_to_hv_device(dev);
600 ssize_t len;
601
602 device_lock(dev);
603 len = snprintf(buf, PAGE_SIZE, "%s\n", hv_dev->driver_override);
604 device_unlock(dev);
605
606 return len;
607}
608static DEVICE_ATTR_RW(driver_override);
609
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700610/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800611static struct attribute *vmbus_dev_attrs[] = {
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700612 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700613 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700614 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700615 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700616 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700617 &dev_attr_modalias.attr,
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000618#ifdef CONFIG_NUMA
619 &dev_attr_numa_node.attr,
620#endif
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700621 &dev_attr_server_monitor_pending.attr,
622 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700623 &dev_attr_server_monitor_latency.attr,
624 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700625 &dev_attr_server_monitor_conn_id.attr,
626 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700627 &dev_attr_out_intr_mask.attr,
628 &dev_attr_out_read_index.attr,
629 &dev_attr_out_write_index.attr,
630 &dev_attr_out_read_bytes_avail.attr,
631 &dev_attr_out_write_bytes_avail.attr,
632 &dev_attr_in_intr_mask.attr,
633 &dev_attr_in_read_index.attr,
634 &dev_attr_in_write_index.attr,
635 &dev_attr_in_read_bytes_avail.attr,
636 &dev_attr_in_write_bytes_avail.attr,
Dexuan Cui042ab032015-08-05 00:52:43 -0700637 &dev_attr_channel_vp_mapping.attr,
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800638 &dev_attr_vendor.attr,
639 &dev_attr_device.attr,
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000640 &dev_attr_driver_override.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700641 NULL,
642};
Kimberly Brown46fc1542019-03-19 00:04:01 -0400643
644/*
645 * Device-level attribute_group callback function. Returns the permission for
646 * each attribute, and returns 0 if an attribute is not visible.
647 */
648static umode_t vmbus_dev_attr_is_visible(struct kobject *kobj,
649 struct attribute *attr, int idx)
650{
651 struct device *dev = kobj_to_dev(kobj);
652 const struct hv_device *hv_dev = device_to_hv_device(dev);
653
654 /* Hide the monitor attributes if the monitor mechanism is not used. */
655 if (!hv_dev->channel->offermsg.monitor_allocated &&
656 (attr == &dev_attr_monitor_id.attr ||
657 attr == &dev_attr_server_monitor_pending.attr ||
658 attr == &dev_attr_client_monitor_pending.attr ||
659 attr == &dev_attr_server_monitor_latency.attr ||
660 attr == &dev_attr_client_monitor_latency.attr ||
661 attr == &dev_attr_server_monitor_conn_id.attr ||
662 attr == &dev_attr_client_monitor_conn_id.attr))
663 return 0;
664
665 return attr->mode;
666}
667
668static const struct attribute_group vmbus_dev_group = {
669 .attrs = vmbus_dev_attrs,
670 .is_visible = vmbus_dev_attr_is_visible
671};
672__ATTRIBUTE_GROUPS(vmbus_dev);
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700673
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700674/*
675 * vmbus_uevent - add uevent for our device
676 *
677 * This routine is invoked when a device is added or removed on the vmbus to
678 * generate a uevent to udev in the userspace. The udev will then look at its
679 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700680 *
681 * The alias string will be of the form vmbus:guid where guid is the string
682 * representation of the device guid (each byte of the guid will be
683 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700684 */
685static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
686{
687 struct hv_device *dev = device_to_hv_device(device);
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300688 const char *format = "MODALIAS=vmbus:%*phN";
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700689
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300690 return add_uevent_var(env, format, UUID_SIZE, &dev->dev_type);
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700691}
692
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000693static const struct hv_vmbus_device_id *
Andy Shevchenko593db802019-01-10 16:25:32 +0200694hv_vmbus_dev_match(const struct hv_vmbus_device_id *id, const guid_t *guid)
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000695{
696 if (id == NULL)
697 return NULL; /* empty device table */
698
Andy Shevchenko593db802019-01-10 16:25:32 +0200699 for (; !guid_is_null(&id->guid); id++)
700 if (guid_equal(&id->guid, guid))
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000701 return id;
702
703 return NULL;
704}
705
706static const struct hv_vmbus_device_id *
Andy Shevchenko593db802019-01-10 16:25:32 +0200707hv_vmbus_dynid_match(struct hv_driver *drv, const guid_t *guid)
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700708{
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800709 const struct hv_vmbus_device_id *id = NULL;
710 struct vmbus_dynid *dynid;
711
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800712 spin_lock(&drv->dynids.lock);
713 list_for_each_entry(dynid, &drv->dynids.list, node) {
Andy Shevchenko593db802019-01-10 16:25:32 +0200714 if (guid_equal(&dynid->id.guid, guid)) {
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800715 id = &dynid->id;
716 break;
717 }
718 }
719 spin_unlock(&drv->dynids.lock);
720
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000721 return id;
722}
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800723
Andy Shevchenko593db802019-01-10 16:25:32 +0200724static const struct hv_vmbus_device_id vmbus_device_null;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800725
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000726/*
727 * Return a matching hv_vmbus_device_id pointer.
728 * If there is no match, return NULL.
729 */
730static const struct hv_vmbus_device_id *hv_vmbus_get_id(struct hv_driver *drv,
731 struct hv_device *dev)
732{
Andy Shevchenko593db802019-01-10 16:25:32 +0200733 const guid_t *guid = &dev->dev_type;
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000734 const struct hv_vmbus_device_id *id;
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700735
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000736 /* When driver_override is set, only bind to the matching driver */
737 if (dev->driver_override && strcmp(dev->driver_override, drv->name))
738 return NULL;
739
740 /* Look at the dynamic ids first, before the static ones */
741 id = hv_vmbus_dynid_match(drv, guid);
742 if (!id)
743 id = hv_vmbus_dev_match(drv->id_table, guid);
744
745 /* driver_override will always match, send a dummy id */
746 if (!id && dev->driver_override)
747 id = &vmbus_device_null;
748
749 return id;
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700750}
751
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800752/* vmbus_add_dynid - add a new device ID to this driver and re-probe devices */
Andy Shevchenko593db802019-01-10 16:25:32 +0200753static int vmbus_add_dynid(struct hv_driver *drv, guid_t *guid)
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800754{
755 struct vmbus_dynid *dynid;
756
757 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
758 if (!dynid)
759 return -ENOMEM;
760
761 dynid->id.guid = *guid;
762
763 spin_lock(&drv->dynids.lock);
764 list_add_tail(&dynid->node, &drv->dynids.list);
765 spin_unlock(&drv->dynids.lock);
766
767 return driver_attach(&drv->driver);
768}
769
770static void vmbus_free_dynids(struct hv_driver *drv)
771{
772 struct vmbus_dynid *dynid, *n;
773
774 spin_lock(&drv->dynids.lock);
775 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
776 list_del(&dynid->node);
777 kfree(dynid);
778 }
779 spin_unlock(&drv->dynids.lock);
780}
781
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800782/*
783 * store_new_id - sysfs frontend to vmbus_add_dynid()
784 *
785 * Allow GUIDs to be added to an existing driver via sysfs.
786 */
787static ssize_t new_id_store(struct device_driver *driver, const char *buf,
788 size_t count)
789{
790 struct hv_driver *drv = drv_to_hv_drv(driver);
Andy Shevchenko593db802019-01-10 16:25:32 +0200791 guid_t guid;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800792 ssize_t retval;
793
Andy Shevchenko593db802019-01-10 16:25:32 +0200794 retval = guid_parse(buf, &guid);
Andy Shevchenko31100102017-05-18 10:46:06 -0700795 if (retval)
796 return retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800797
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000798 if (hv_vmbus_dynid_match(drv, &guid))
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800799 return -EEXIST;
800
801 retval = vmbus_add_dynid(drv, &guid);
802 if (retval)
803 return retval;
804 return count;
805}
806static DRIVER_ATTR_WO(new_id);
807
808/*
809 * store_remove_id - remove a PCI device ID from this driver
810 *
811 * Removes a dynamic pci device ID to this driver.
812 */
813static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
814 size_t count)
815{
816 struct hv_driver *drv = drv_to_hv_drv(driver);
817 struct vmbus_dynid *dynid, *n;
Andy Shevchenko593db802019-01-10 16:25:32 +0200818 guid_t guid;
Andy Shevchenko31100102017-05-18 10:46:06 -0700819 ssize_t retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800820
Andy Shevchenko593db802019-01-10 16:25:32 +0200821 retval = guid_parse(buf, &guid);
Andy Shevchenko31100102017-05-18 10:46:06 -0700822 if (retval)
823 return retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800824
Andy Shevchenko31100102017-05-18 10:46:06 -0700825 retval = -ENODEV;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800826 spin_lock(&drv->dynids.lock);
827 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
828 struct hv_vmbus_device_id *id = &dynid->id;
829
Andy Shevchenko593db802019-01-10 16:25:32 +0200830 if (guid_equal(&id->guid, &guid)) {
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800831 list_del(&dynid->node);
832 kfree(dynid);
833 retval = count;
834 break;
835 }
836 }
837 spin_unlock(&drv->dynids.lock);
838
839 return retval;
840}
841static DRIVER_ATTR_WO(remove_id);
842
843static struct attribute *vmbus_drv_attrs[] = {
844 &driver_attr_new_id.attr,
845 &driver_attr_remove_id.attr,
846 NULL,
847};
848ATTRIBUTE_GROUPS(vmbus_drv);
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700849
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700850
851/*
852 * vmbus_match - Attempt to match the specified device to the specified driver
853 */
854static int vmbus_match(struct device *device, struct device_driver *driver)
855{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700856 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700857 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700858
Dexuan Cui8981da32016-01-27 22:29:41 -0800859 /* The hv_sock driver handles all hv_sock offers. */
860 if (is_hvsock_channel(hv_dev->channel))
861 return drv->hvsock;
862
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000863 if (hv_vmbus_get_id(drv, hv_dev))
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700864 return 1;
K. Y. Srinivasande632a2b2011-04-26 09:20:24 -0700865
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700866 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700867}
868
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700869/*
870 * vmbus_probe - Add the new vmbus's child device
871 */
872static int vmbus_probe(struct device *child_device)
873{
874 int ret = 0;
875 struct hv_driver *drv =
876 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700877 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700878 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700879
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000880 dev_id = hv_vmbus_get_id(drv, dev);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700881 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700882 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700883 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700884 pr_err("probe failed for device %s (%d)\n",
885 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700886
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700887 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700888 pr_err("probe not set for driver %s\n",
889 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700890 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700891 }
892 return ret;
893}
894
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700895/*
896 * vmbus_remove - Remove a vmbus device
897 */
898static int vmbus_remove(struct device *child_device)
899{
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800900 struct hv_driver *drv;
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700901 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700902
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800903 if (child_device->driver) {
904 drv = drv_to_hv_drv(child_device->driver);
905 if (drv->remove)
906 drv->remove(dev);
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800907 }
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700908
909 return 0;
910}
911
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700912
913/*
914 * vmbus_shutdown - Shutdown a vmbus device
915 */
916static void vmbus_shutdown(struct device *child_device)
917{
918 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700919 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700920
921
922 /* The device may not be attached yet */
923 if (!child_device->driver)
924 return;
925
926 drv = drv_to_hv_drv(child_device->driver);
927
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700928 if (drv->shutdown)
929 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700930}
931
Dexuan Cui83b50f82019-09-19 21:46:12 +0000932#ifdef CONFIG_PM_SLEEP
Dexuan Cui271b2222019-09-05 23:01:17 +0000933/*
934 * vmbus_suspend - Suspend a vmbus device
935 */
936static int vmbus_suspend(struct device *child_device)
937{
938 struct hv_driver *drv;
939 struct hv_device *dev = device_to_hv_device(child_device);
940
941 /* The device may not be attached yet */
942 if (!child_device->driver)
943 return 0;
944
945 drv = drv_to_hv_drv(child_device->driver);
946 if (!drv->suspend)
947 return -EOPNOTSUPP;
948
949 return drv->suspend(dev);
950}
951
952/*
953 * vmbus_resume - Resume a vmbus device
954 */
955static int vmbus_resume(struct device *child_device)
956{
957 struct hv_driver *drv;
958 struct hv_device *dev = device_to_hv_device(child_device);
959
960 /* The device may not be attached yet */
961 if (!child_device->driver)
962 return 0;
963
964 drv = drv_to_hv_drv(child_device->driver);
965 if (!drv->resume)
966 return -EOPNOTSUPP;
967
968 return drv->resume(dev);
969}
Dexuan Cui1a06d012020-04-11 20:50:35 -0700970#else
971#define vmbus_suspend NULL
972#define vmbus_resume NULL
Dexuan Cui83b50f82019-09-19 21:46:12 +0000973#endif /* CONFIG_PM_SLEEP */
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700974
975/*
976 * vmbus_device_release - Final callback release of the vmbus child device
977 */
978static void vmbus_device_release(struct device *device)
979{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700980 struct hv_device *hv_dev = device_to_hv_device(device);
Dexuan Cui34c68012015-12-14 16:01:49 -0800981 struct vmbus_channel *channel = hv_dev->channel;
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700982
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -0400983 hv_debug_rm_dev_dir(hv_dev);
984
K. Y. Srinivasan54a662652017-04-30 16:21:18 -0700985 mutex_lock(&vmbus_connection.channel_mutex);
Stephen Hemminger800b9322018-09-14 09:10:15 -0700986 hv_process_channel_removal(channel);
K. Y. Srinivasan54a662652017-04-30 16:21:18 -0700987 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700988 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700989}
990
Dexuan Cui271b2222019-09-05 23:01:17 +0000991/*
Dexuan Cui1a06d012020-04-11 20:50:35 -0700992 * Note: we must use the "noirq" ops: see the comment before vmbus_bus_pm.
993 *
994 * suspend_noirq/resume_noirq are set to NULL to support Suspend-to-Idle: we
995 * shouldn't suspend the vmbus devices upon Suspend-to-Idle, otherwise there
996 * is no way to wake up a Generation-2 VM.
997 *
998 * The other 4 ops are for hibernation.
Dexuan Cui271b2222019-09-05 23:01:17 +0000999 */
Dexuan Cui1a06d012020-04-11 20:50:35 -07001000
Dexuan Cui271b2222019-09-05 23:01:17 +00001001static const struct dev_pm_ops vmbus_pm = {
Dexuan Cui1a06d012020-04-11 20:50:35 -07001002 .suspend_noirq = NULL,
1003 .resume_noirq = NULL,
1004 .freeze_noirq = vmbus_suspend,
1005 .thaw_noirq = vmbus_resume,
1006 .poweroff_noirq = vmbus_suspend,
1007 .restore_noirq = vmbus_resume,
Dexuan Cui271b2222019-09-05 23:01:17 +00001008};
1009
Bill Pemberton454f18a2009-07-27 16:47:24 -04001010/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -07001011static struct bus_type hv_bus = {
1012 .name = "vmbus",
1013 .match = vmbus_match,
1014 .shutdown = vmbus_shutdown,
1015 .remove = vmbus_remove,
1016 .probe = vmbus_probe,
1017 .uevent = vmbus_uevent,
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001018 .dev_groups = vmbus_dev_groups,
1019 .drv_groups = vmbus_drv_groups,
Dexuan Cui271b2222019-09-05 23:01:17 +00001020 .pm = &vmbus_pm,
Hank Janssen3e7ee492009-07-13 16:02:34 -07001021};
1022
Timo Teräsbf6506f2010-12-15 20:48:08 +02001023struct onmessage_work_context {
1024 struct work_struct work;
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001025 struct {
1026 struct hv_message_header header;
1027 u8 payload[];
1028 } msg;
Timo Teräsbf6506f2010-12-15 20:48:08 +02001029};
1030
1031static void vmbus_onmessage_work(struct work_struct *work)
1032{
1033 struct onmessage_work_context *ctx;
1034
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08001035 /* Do not process messages if we're in DISCONNECTED state */
1036 if (vmbus_connection.conn_state == DISCONNECTED)
1037 return;
1038
Timo Teräsbf6506f2010-12-15 20:48:08 +02001039 ctx = container_of(work, struct onmessage_work_context,
1040 work);
Vitaly Kuznetsov5cc41502020-04-06 12:41:52 +02001041 vmbus_onmessage((struct vmbus_channel_message_header *)
1042 &ctx->msg.payload);
Timo Teräsbf6506f2010-12-15 20:48:08 +02001043 kfree(ctx);
1044}
1045
K. Y. Srinivasand81274a2016-02-26 15:13:21 -08001046void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001047{
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001048 struct hv_per_cpu_context *hv_cpu = (void *)data;
1049 void *page_addr = hv_cpu->synic_message_page;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001050 struct hv_message *msg = (struct hv_message *)page_addr +
1051 VMBUS_MESSAGE_SINT;
Dexuan Cui652594c2015-03-27 09:10:08 -07001052 struct vmbus_channel_message_header *hdr;
Stephen Hemmingere6242fa2017-03-04 18:27:16 -07001053 const struct vmbus_channel_message_table_entry *entry;
Timo Teräsbf6506f2010-12-15 20:48:08 +02001054 struct onmessage_work_context *ctx;
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001055 u32 message_type = msg->header.message_type;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001056
Vitaly Kuznetsovb0a284d2020-04-06 12:43:15 +02001057 /*
1058 * 'enum vmbus_channel_message_type' is supposed to always be 'u32' as
1059 * it is being used in 'struct vmbus_channel_message_header' definition
1060 * which is supposed to match hypervisor ABI.
1061 */
1062 BUILD_BUG_ON(sizeof(enum vmbus_channel_message_type) != sizeof(u32));
1063
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001064 if (message_type == HVMSG_NONE)
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001065 /* no msg */
1066 return;
Dexuan Cui652594c2015-03-27 09:10:08 -07001067
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001068 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
Dexuan Cui652594c2015-03-27 09:10:08 -07001069
Vitaly Kuznetsovc9fe0f82017-10-29 12:21:00 -07001070 trace_vmbus_on_msg_dpc(hdr);
1071
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001072 if (hdr->msgtype >= CHANNELMSG_COUNT) {
1073 WARN_ONCE(1, "unknown msgtype=%d\n", hdr->msgtype);
1074 goto msg_handled;
1075 }
Dexuan Cui652594c2015-03-27 09:10:08 -07001076
Vitaly Kuznetsovac0f7d422020-04-06 12:41:50 +02001077 if (msg->header.payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT) {
1078 WARN_ONCE(1, "payload size is too large (%d)\n",
1079 msg->header.payload_size);
1080 goto msg_handled;
1081 }
1082
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001083 entry = &channel_message_table[hdr->msgtype];
Dexuan Cuiddc9d352020-01-19 15:29:22 -08001084
1085 if (!entry->message_handler)
1086 goto msg_handled;
1087
Vitaly Kuznetsov52c78032020-04-06 12:43:26 +02001088 if (msg->header.payload_size < entry->min_payload_len) {
1089 WARN_ONCE(1, "message too short: msgtype=%d len=%d\n",
1090 hdr->msgtype, msg->header.payload_size);
1091 goto msg_handled;
1092 }
1093
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001094 if (entry->handler_type == VMHT_BLOCKING) {
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001095 ctx = kmalloc(sizeof(*ctx) + msg->header.payload_size,
1096 GFP_ATOMIC);
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001097 if (ctx == NULL)
1098 return;
Dexuan Cui652594c2015-03-27 09:10:08 -07001099
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001100 INIT_WORK(&ctx->work, vmbus_onmessage_work);
Vitaly Kuznetsovac0f7d422020-04-06 12:41:50 +02001101 memcpy(&ctx->msg, msg, sizeof(msg->header) +
1102 msg->header.payload_size);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001103
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001104 /*
1105 * The host can generate a rescind message while we
1106 * may still be handling the original offer. We deal with
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001107 * this condition by relying on the synchronization provided
1108 * by offer_in_progress and by channel_mutex. See also the
1109 * inline comments in vmbus_onoffer_rescind().
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001110 */
1111 switch (hdr->msgtype) {
1112 case CHANNELMSG_RESCIND_CHANNELOFFER:
1113 /*
1114 * If we are handling the rescind message;
1115 * schedule the work on the global work queue.
Andrea Parri (Microsoft)8a857c52020-04-06 02:15:04 +02001116 *
1117 * The OFFER message and the RESCIND message should
1118 * not be handled by the same serialized work queue,
1119 * because the OFFER handler may call vmbus_open(),
1120 * which tries to open the channel by sending an
1121 * OPEN_CHANNEL message to the host and waits for
1122 * the host's response; however, if the host has
1123 * rescinded the channel before it receives the
1124 * OPEN_CHANNEL message, the host just silently
1125 * ignores the OPEN_CHANNEL message; as a result,
1126 * the guest's OFFER handler hangs for ever, if we
1127 * handle the RESCIND message in the same serialized
1128 * work queue: the RESCIND handler can not start to
1129 * run before the OFFER handler finishes.
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001130 */
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001131 schedule_work(&ctx->work);
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001132 break;
1133
1134 case CHANNELMSG_OFFERCHANNEL:
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001135 /*
1136 * The host sends the offer message of a given channel
1137 * before sending the rescind message of the same
1138 * channel. These messages are sent to the guest's
1139 * connect CPU; the guest then starts processing them
1140 * in the tasklet handler on this CPU:
1141 *
1142 * VMBUS_CONNECT_CPU
1143 *
1144 * [vmbus_on_msg_dpc()]
1145 * atomic_inc() // CHANNELMSG_OFFERCHANNEL
1146 * queue_work()
1147 * ...
1148 * [vmbus_on_msg_dpc()]
1149 * schedule_work() // CHANNELMSG_RESCIND_CHANNELOFFER
1150 *
1151 * We rely on the memory-ordering properties of the
1152 * queue_work() and schedule_work() primitives, which
1153 * guarantee that the atomic increment will be visible
1154 * to the CPUs which will execute the offer & rescind
1155 * works by the time these works will start execution.
1156 */
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001157 atomic_inc(&vmbus_connection.offer_in_progress);
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001158 fallthrough;
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001159
1160 default:
1161 queue_work(vmbus_connection.work_queue, &ctx->work);
1162 }
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001163 } else
1164 entry->message_handler(hdr);
Dexuan Cui652594c2015-03-27 09:10:08 -07001165
1166msg_handled:
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001167 vmbus_signal_eom(msg, message_type);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001168}
1169
Dexuan Cui83b50f82019-09-19 21:46:12 +00001170#ifdef CONFIG_PM_SLEEP
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001171/*
1172 * Fake RESCIND_CHANNEL messages to clean up hv_sock channels by force for
1173 * hibernation, because hv_sock connections can not persist across hibernation.
1174 */
1175static void vmbus_force_channel_rescinded(struct vmbus_channel *channel)
1176{
1177 struct onmessage_work_context *ctx;
1178 struct vmbus_channel_rescind_offer *rescind;
1179
1180 WARN_ON(!is_hvsock_channel(channel));
1181
1182 /*
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001183 * Allocation size is small and the allocation should really not fail,
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001184 * otherwise the state of the hv_sock connections ends up in limbo.
1185 */
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001186 ctx = kzalloc(sizeof(*ctx) + sizeof(*rescind),
1187 GFP_KERNEL | __GFP_NOFAIL);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001188
1189 /*
1190 * So far, these are not really used by Linux. Just set them to the
1191 * reasonable values conforming to the definitions of the fields.
1192 */
1193 ctx->msg.header.message_type = 1;
1194 ctx->msg.header.payload_size = sizeof(*rescind);
1195
1196 /* These values are actually used by Linux. */
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001197 rescind = (struct vmbus_channel_rescind_offer *)ctx->msg.payload;
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001198 rescind->header.msgtype = CHANNELMSG_RESCIND_CHANNELOFFER;
1199 rescind->child_relid = channel->offermsg.child_relid;
1200
1201 INIT_WORK(&ctx->work, vmbus_onmessage_work);
1202
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001203 queue_work(vmbus_connection.work_queue, &ctx->work);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001204}
Dexuan Cui83b50f82019-09-19 21:46:12 +00001205#endif /* CONFIG_PM_SLEEP */
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001206
1207/*
1208 * Schedule all channels with events pending
1209 */
1210static void vmbus_chan_sched(struct hv_per_cpu_context *hv_cpu)
1211{
1212 unsigned long *recv_int_page;
1213 u32 maxbits, relid;
1214
1215 if (vmbus_proto_version < VERSION_WIN8) {
1216 maxbits = MAX_NUM_CHANNELS_SUPPORTED;
1217 recv_int_page = vmbus_connection.recv_int_page;
1218 } else {
1219 /*
1220 * When the host is win8 and beyond, the event page
1221 * can be directly checked to get the id of the channel
1222 * that has the interrupt pending.
1223 */
1224 void *page_addr = hv_cpu->synic_event_page;
1225 union hv_synic_event_flags *event
1226 = (union hv_synic_event_flags *)page_addr +
1227 VMBUS_MESSAGE_SINT;
1228
1229 maxbits = HV_EVENT_FLAGS_COUNT;
1230 recv_int_page = event->flags;
1231 }
1232
1233 if (unlikely(!recv_int_page))
1234 return;
1235
1236 for_each_set_bit(relid, recv_int_page, maxbits) {
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001237 void (*callback_fn)(void *context);
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001238 struct vmbus_channel *channel;
1239
1240 if (!sync_test_and_clear_bit(relid, recv_int_page))
1241 continue;
1242
1243 /* Special case - vmbus channel protocol msg */
1244 if (relid == 0)
1245 continue;
1246
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001247 /*
1248 * Pairs with the kfree_rcu() in vmbus_chan_release().
1249 * Guarantees that the channel data structure doesn't
1250 * get freed while the channel pointer below is being
1251 * dereferenced.
1252 */
Stephen Hemminger8200f202017-03-04 18:13:57 -07001253 rcu_read_lock();
1254
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001255 /* Find channel based on relid */
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001256 channel = relid2channel(relid);
1257 if (channel == NULL)
1258 goto sched_unlock_rcu;
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001259
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001260 if (channel->rescind)
1261 goto sched_unlock_rcu;
K. Y. Srinivasan6f3d7912017-08-11 10:03:59 -07001262
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001263 /*
1264 * Make sure that the ring buffer data structure doesn't get
1265 * freed while we dereference the ring buffer pointer. Test
1266 * for the channel's onchannel_callback being NULL within a
1267 * sched_lock critical section. See also the inline comments
1268 * in vmbus_reset_channel_cb().
1269 */
1270 spin_lock(&channel->sched_lock);
Vitaly Kuznetsov991f8f12017-10-29 12:21:16 -07001271
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001272 callback_fn = channel->onchannel_callback;
1273 if (unlikely(callback_fn == NULL))
1274 goto sched_unlock;
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001275
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001276 trace_vmbus_chan_sched(channel);
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001277
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001278 ++channel->interrupts;
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001279
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001280 switch (channel->callback_mode) {
1281 case HV_CALL_ISR:
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001282 (*callback_fn)(channel->channel_callback_context);
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001283 break;
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001284
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001285 case HV_CALL_BATCHED:
1286 hv_begin_read(&channel->inbound);
1287 fallthrough;
1288 case HV_CALL_DIRECT:
1289 tasklet_schedule(&channel->callback_event);
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001290 }
Stephen Hemminger8200f202017-03-04 18:13:57 -07001291
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001292sched_unlock:
1293 spin_unlock(&channel->sched_lock);
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001294sched_unlock_rcu:
Stephen Hemminger8200f202017-03-04 18:13:57 -07001295 rcu_read_unlock();
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001296 }
1297}
1298
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001299static void vmbus_isr(void)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001300{
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001301 struct hv_per_cpu_context *hv_cpu
1302 = this_cpu_ptr(hv_context.cpu_context);
1303 void *page_addr = hv_cpu->synic_event_page;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001304 struct hv_message *msg;
1305 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001306 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001307
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001308 if (unlikely(page_addr == NULL))
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001309 return;
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -08001310
1311 event = (union hv_synic_event_flags *)page_addr +
1312 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -07001313 /*
1314 * Check for events before checking for messages. This is the order
1315 * in which events and messages are checked in Windows guests on
1316 * Hyper-V, and the Windows team suggested we do the same.
1317 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001318
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001319 if ((vmbus_proto_version == VERSION_WS2008) ||
1320 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001321
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001322 /* Since we are a child, we only need to check bit 0 */
Stephen Hemminger5c1bec62017-02-05 17:20:31 -07001323 if (sync_test_and_clear_bit(0, event->flags))
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001324 handled = true;
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001325 } else {
1326 /*
1327 * Our host is win8 or above. The signaling mechanism
1328 * has changed and we can directly look at the event page.
1329 * If bit n is set then we have an interrup on the channel
1330 * whose id is n.
1331 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001332 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -07001333 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001334
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001335 if (handled)
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001336 vmbus_chan_sched(hv_cpu);
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001337
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001338 page_addr = hv_cpu->synic_message_page;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -07001339 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
1340
1341 /* Check if there are actual msgs to be processed */
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -08001342 if (msg->header.message_type != HVMSG_NONE) {
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001343 if (msg->header.message_type == HVMSG_TIMER_EXPIRED) {
1344 hv_stimer0_isr();
1345 vmbus_signal_eom(msg, HVMSG_TIMER_EXPIRED);
1346 } else
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001347 tasklet_schedule(&hv_cpu->msg_dpc);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -08001348 }
Stephan Mueller4b44f2d2016-05-02 02:14:34 -04001349
1350 add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0);
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -07001351}
1352
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001353/*
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001354 * Callback from kmsg_dump. Grab as much as possible from the end of the kmsg
1355 * buffer and call into Hyper-V to transfer the data.
1356 */
1357static void hv_kmsg_dump(struct kmsg_dumper *dumper,
1358 enum kmsg_dump_reason reason)
1359{
1360 size_t bytes_written;
1361 phys_addr_t panic_pa;
1362
1363 /* We are only interested in panics. */
1364 if ((reason != KMSG_DUMP_PANIC) || (!sysctl_record_panic_msg))
1365 return;
1366
1367 panic_pa = virt_to_phys(hv_panic_page);
1368
1369 /*
1370 * Write dump contents to the page. No need to synchronize; panic should
1371 * be single-threaded.
1372 */
Joseph Salisbury77b48be2020-06-26 15:28:17 -07001373 kmsg_dump_get_buffer(dumper, false, hv_panic_page, HV_HYP_PAGE_SIZE,
Sunil Muthuswamyddcaf3c2018-07-28 21:58:45 +00001374 &bytes_written);
1375 if (bytes_written)
1376 hyperv_report_panic_msg(panic_pa, bytes_written);
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001377}
1378
1379static struct kmsg_dumper hv_kmsg_dumper = {
1380 .dump = hv_kmsg_dump,
1381};
1382
1383static struct ctl_table_header *hv_ctl_table_hdr;
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001384
1385/*
1386 * sysctl option to allow the user to control whether kmsg data should be
1387 * reported to Hyper-V on panic.
1388 */
1389static struct ctl_table hv_ctl_table[] = {
1390 {
1391 .procname = "hyperv_record_panic_msg",
1392 .data = &sysctl_record_panic_msg,
1393 .maxlen = sizeof(int),
1394 .mode = 0644,
1395 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07001396 .extra1 = SYSCTL_ZERO,
1397 .extra2 = SYSCTL_ONE
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001398 },
1399 {}
1400};
1401
1402static struct ctl_table hv_root_table[] = {
1403 {
1404 .procname = "kernel",
1405 .mode = 0555,
1406 .child = hv_ctl_table
1407 },
1408 {}
1409};
Vitaly Kuznetsove5132292015-02-27 11:25:51 -08001410
Hank Janssen3e189512010-03-04 22:11:00 +00001411/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001412 * vmbus_bus_init -Main vmbus driver initialization routine.
1413 *
1414 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +01001415 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +01001416 * - invoke the vmbus hv main init routine
Lars Lindley0686e4f2010-03-11 23:51:23 +01001417 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001418 */
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08001419static int vmbus_bus_init(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001420{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001421 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001422
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -08001423 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001424 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -07001425 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001426 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001427 }
1428
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -07001429 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001430 if (ret)
Vitaly Kuznetsovd6f36092017-01-28 12:37:14 -07001431 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001432
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001433 hv_setup_vmbus_irq(vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001434
Jason Wang2608fb62013-06-19 11:28:10 +08001435 ret = hv_synic_alloc();
1436 if (ret)
1437 goto err_alloc;
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001438
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001439 /*
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001440 * Initialize the per-cpu interrupt state and stimer state.
1441 * Then connect to the host.
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001442 */
Michael Kelley4a5f3cd2017-12-22 11:19:02 -07001443 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "hyperv/vmbus:online",
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001444 hv_synic_init, hv_synic_cleanup);
1445 if (ret < 0)
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001446 goto err_cpuhp;
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001447 hyperv_cpuhp_online = ret;
1448
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001449 ret = vmbus_connect();
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001450 if (ret)
Andrey Smetanin17efbee2015-12-14 16:01:38 -08001451 goto err_connect;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001452
Nick Meier96c1d052015-02-28 11:39:01 -08001453 /*
1454 * Only register if the crash MSRs are available
1455 */
Denis V. Lunevcc2dd402015-08-01 16:08:20 -07001456 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001457 u64 hyperv_crash_ctl;
1458 /*
1459 * Sysctl registration is not fatal, since by default
1460 * reporting is enabled.
1461 */
1462 hv_ctl_table_hdr = register_sysctl_table(hv_root_table);
1463 if (!hv_ctl_table_hdr)
1464 pr_err("Hyper-V: sysctl table register error");
1465
1466 /*
1467 * Register for panic kmsg callback only if the right
1468 * capability is supported by the hypervisor.
1469 */
Sunil Muthuswamy9d9c9652018-07-28 21:58:47 +00001470 hv_get_crash_ctl(hyperv_crash_ctl);
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001471 if (hyperv_crash_ctl & HV_CRASH_CTL_CRASH_NOTIFY_MSG) {
Himadri Pandya53edce02019-07-30 09:49:44 +00001472 hv_panic_page = (void *)hv_alloc_hyperv_zeroed_page();
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001473 if (hv_panic_page) {
1474 ret = kmsg_dump_register(&hv_kmsg_dumper);
Tianyu Lan7f11a2c2020-04-06 08:53:27 -07001475 if (ret) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001476 pr_err("Hyper-V: kmsg dump register "
1477 "error 0x%x\n", ret);
Tianyu Lan7f11a2c2020-04-06 08:53:27 -07001478 hv_free_hyperv_page(
1479 (unsigned long)hv_panic_page);
1480 hv_panic_page = NULL;
1481 }
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001482 } else
1483 pr_err("Hyper-V: panic message page memory "
1484 "allocation failed");
1485 }
1486
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -07001487 register_die_notifier(&hyperv_die_block);
Nick Meier96c1d052015-02-28 11:39:01 -08001488 }
1489
Tianyu Lan74347a92020-04-06 08:53:26 -07001490 /*
1491 * Always register the panic notifier because we need to unload
1492 * the VMbus channel connection to prevent any VMbus
1493 * activity after the VM panics.
1494 */
1495 atomic_notifier_chain_register(&panic_notifier_list,
1496 &hyperv_panic_block);
1497
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -08001498 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +00001499
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001500 return 0;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001501
Andrey Smetanin17efbee2015-12-14 16:01:38 -08001502err_connect:
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001503 cpuhp_remove_state(hyperv_cpuhp_online);
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001504err_cpuhp:
Jason Wang2608fb62013-06-19 11:28:10 +08001505 hv_synic_free();
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00001506err_alloc:
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001507 hv_remove_vmbus_irq();
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001508
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001509 bus_unregister(&hv_bus);
Sunil Muthuswamy8afc06d2018-07-28 21:58:46 +00001510 unregister_sysctl_table(hv_ctl_table_hdr);
1511 hv_ctl_table_hdr = NULL;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001512 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001513}
1514
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001515/**
Jake Oshins35464482015-08-05 00:52:37 -07001516 * __vmbus_child_driver_register() - Register a vmbus's driver
1517 * @hv_driver: Pointer to driver structure you want to register
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001518 * @owner: owner module of the drv
1519 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +00001520 *
1521 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001522 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +00001523 * It will return the state of the 'driver_register()' call.
1524 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001525 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001526int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001527{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -04001528 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001529
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001530 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001531
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08001532 ret = vmbus_exists();
1533 if (ret < 0)
1534 return ret;
1535
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001536 hv_driver->driver.name = hv_driver->name;
1537 hv_driver->driver.owner = owner;
1538 hv_driver->driver.mod_name = mod_name;
1539 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001540
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001541 spin_lock_init(&hv_driver->dynids.lock);
1542 INIT_LIST_HEAD(&hv_driver->dynids.list);
1543
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001544 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001545
Bill Pemberton5d48a1c2009-07-27 16:47:36 -04001546 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001547}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001548EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001549
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001550/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001551 * vmbus_driver_unregister() - Unregister a vmbus's driver
Jake Oshins35464482015-08-05 00:52:37 -07001552 * @hv_driver: Pointer to driver structure you want to
1553 * un-register
Hank Janssen3e189512010-03-04 22:11:00 +00001554 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001555 * Un-register the given driver that was previous registered with a call to
1556 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001557 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001558void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001559{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001560 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001561
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001562 if (!vmbus_exists()) {
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -08001563 driver_unregister(&hv_driver->driver);
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001564 vmbus_free_dynids(hv_driver);
1565 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07001566}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001567EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001568
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001569
1570/*
1571 * Called when last reference to channel is gone.
1572 */
1573static void vmbus_chan_release(struct kobject *kobj)
1574{
1575 struct vmbus_channel *channel
1576 = container_of(kobj, struct vmbus_channel, kobj);
1577
1578 kfree_rcu(channel, rcu);
1579}
1580
1581struct vmbus_chan_attribute {
1582 struct attribute attr;
Kimberly Brown14948e32019-03-14 16:05:15 -04001583 ssize_t (*show)(struct vmbus_channel *chan, char *buf);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001584 ssize_t (*store)(struct vmbus_channel *chan,
1585 const char *buf, size_t count);
1586};
1587#define VMBUS_CHAN_ATTR(_name, _mode, _show, _store) \
1588 struct vmbus_chan_attribute chan_attr_##_name \
1589 = __ATTR(_name, _mode, _show, _store)
1590#define VMBUS_CHAN_ATTR_RW(_name) \
1591 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_RW(_name)
1592#define VMBUS_CHAN_ATTR_RO(_name) \
1593 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_RO(_name)
1594#define VMBUS_CHAN_ATTR_WO(_name) \
1595 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_WO(_name)
1596
1597static ssize_t vmbus_chan_attr_show(struct kobject *kobj,
1598 struct attribute *attr, char *buf)
1599{
1600 const struct vmbus_chan_attribute *attribute
1601 = container_of(attr, struct vmbus_chan_attribute, attr);
Kimberly Brown14948e32019-03-14 16:05:15 -04001602 struct vmbus_channel *chan
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001603 = container_of(kobj, struct vmbus_channel, kobj);
1604
1605 if (!attribute->show)
1606 return -EIO;
1607
1608 return attribute->show(chan, buf);
1609}
1610
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001611static ssize_t vmbus_chan_attr_store(struct kobject *kobj,
1612 struct attribute *attr, const char *buf,
1613 size_t count)
1614{
1615 const struct vmbus_chan_attribute *attribute
1616 = container_of(attr, struct vmbus_chan_attribute, attr);
1617 struct vmbus_channel *chan
1618 = container_of(kobj, struct vmbus_channel, kobj);
1619
1620 if (!attribute->store)
1621 return -EIO;
1622
1623 return attribute->store(chan, buf, count);
1624}
1625
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001626static const struct sysfs_ops vmbus_chan_sysfs_ops = {
1627 .show = vmbus_chan_attr_show,
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001628 .store = vmbus_chan_attr_store,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001629};
1630
Kimberly Brown14948e32019-03-14 16:05:15 -04001631static ssize_t out_mask_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001632{
Kimberly Brown14948e32019-03-14 16:05:15 -04001633 struct hv_ring_buffer_info *rbi = &channel->outbound;
1634 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001635
Kimberly Brown14948e32019-03-14 16:05:15 -04001636 mutex_lock(&rbi->ring_buffer_mutex);
1637 if (!rbi->ring_buffer) {
1638 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001639 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001640 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001641
Kimberly Brown14948e32019-03-14 16:05:15 -04001642 ret = sprintf(buf, "%u\n", rbi->ring_buffer->interrupt_mask);
1643 mutex_unlock(&rbi->ring_buffer_mutex);
1644 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001645}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001646static VMBUS_CHAN_ATTR_RO(out_mask);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001647
Kimberly Brown14948e32019-03-14 16:05:15 -04001648static ssize_t in_mask_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001649{
Kimberly Brown14948e32019-03-14 16:05:15 -04001650 struct hv_ring_buffer_info *rbi = &channel->inbound;
1651 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001652
Kimberly Brown14948e32019-03-14 16:05:15 -04001653 mutex_lock(&rbi->ring_buffer_mutex);
1654 if (!rbi->ring_buffer) {
1655 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001656 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001657 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001658
Kimberly Brown14948e32019-03-14 16:05:15 -04001659 ret = sprintf(buf, "%u\n", rbi->ring_buffer->interrupt_mask);
1660 mutex_unlock(&rbi->ring_buffer_mutex);
1661 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001662}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001663static VMBUS_CHAN_ATTR_RO(in_mask);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001664
Kimberly Brown14948e32019-03-14 16:05:15 -04001665static ssize_t read_avail_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001666{
Kimberly Brown14948e32019-03-14 16:05:15 -04001667 struct hv_ring_buffer_info *rbi = &channel->inbound;
1668 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001669
Kimberly Brown14948e32019-03-14 16:05:15 -04001670 mutex_lock(&rbi->ring_buffer_mutex);
1671 if (!rbi->ring_buffer) {
1672 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001673 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001674 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001675
Kimberly Brown14948e32019-03-14 16:05:15 -04001676 ret = sprintf(buf, "%u\n", hv_get_bytes_to_read(rbi));
1677 mutex_unlock(&rbi->ring_buffer_mutex);
1678 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001679}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001680static VMBUS_CHAN_ATTR_RO(read_avail);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001681
Kimberly Brown14948e32019-03-14 16:05:15 -04001682static ssize_t write_avail_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001683{
Kimberly Brown14948e32019-03-14 16:05:15 -04001684 struct hv_ring_buffer_info *rbi = &channel->outbound;
1685 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001686
Kimberly Brown14948e32019-03-14 16:05:15 -04001687 mutex_lock(&rbi->ring_buffer_mutex);
1688 if (!rbi->ring_buffer) {
1689 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001690 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001691 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001692
Kimberly Brown14948e32019-03-14 16:05:15 -04001693 ret = sprintf(buf, "%u\n", hv_get_bytes_to_write(rbi));
1694 mutex_unlock(&rbi->ring_buffer_mutex);
1695 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001696}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001697static VMBUS_CHAN_ATTR_RO(write_avail);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001698
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001699static ssize_t target_cpu_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001700{
1701 return sprintf(buf, "%u\n", channel->target_cpu);
1702}
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001703static ssize_t target_cpu_store(struct vmbus_channel *channel,
1704 const char *buf, size_t count)
1705{
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001706 u32 target_cpu, origin_cpu;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001707 ssize_t ret = count;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001708
1709 if (vmbus_proto_version < VERSION_WIN10_V4_1)
1710 return -EIO;
1711
1712 if (sscanf(buf, "%uu", &target_cpu) != 1)
1713 return -EIO;
1714
1715 /* Validate target_cpu for the cpumask_test_cpu() operation below. */
1716 if (target_cpu >= nr_cpumask_bits)
1717 return -EINVAL;
1718
1719 /* No CPUs should come up or down during this. */
1720 cpus_read_lock();
1721
Andrea Parri (Microsoft)0a968202020-06-17 18:46:37 +02001722 if (!cpu_online(target_cpu)) {
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001723 cpus_read_unlock();
1724 return -EINVAL;
1725 }
1726
1727 /*
1728 * Synchronizes target_cpu_store() and channel closure:
1729 *
1730 * { Initially: state = CHANNEL_OPENED }
1731 *
1732 * CPU1 CPU2
1733 *
1734 * [target_cpu_store()] [vmbus_disconnect_ring()]
1735 *
1736 * LOCK channel_mutex LOCK channel_mutex
1737 * LOAD r1 = state LOAD r2 = state
1738 * IF (r1 == CHANNEL_OPENED) IF (r2 == CHANNEL_OPENED)
1739 * SEND MODIFYCHANNEL STORE state = CHANNEL_OPEN
1740 * [...] SEND CLOSECHANNEL
1741 * UNLOCK channel_mutex UNLOCK channel_mutex
1742 *
1743 * Forbids: r1 == r2 == CHANNEL_OPENED (i.e., CPU1's LOCK precedes
1744 * CPU2's LOCK) && CPU2's SEND precedes CPU1's SEND
1745 *
1746 * Note. The host processes the channel messages "sequentially", in
1747 * the order in which they are received on a per-partition basis.
1748 */
1749 mutex_lock(&vmbus_connection.channel_mutex);
1750
1751 /*
1752 * Hyper-V will ignore MODIFYCHANNEL messages for "non-open" channels;
1753 * avoid sending the message and fail here for such channels.
1754 */
1755 if (channel->state != CHANNEL_OPENED_STATE) {
1756 ret = -EIO;
1757 goto cpu_store_unlock;
1758 }
1759
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001760 origin_cpu = channel->target_cpu;
1761 if (target_cpu == origin_cpu)
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001762 goto cpu_store_unlock;
1763
1764 if (vmbus_send_modifychannel(channel->offermsg.child_relid,
1765 hv_cpu_number_to_vp_number(target_cpu))) {
1766 ret = -EIO;
1767 goto cpu_store_unlock;
1768 }
1769
1770 /*
1771 * Warning. At this point, there is *no* guarantee that the host will
1772 * have successfully processed the vmbus_send_modifychannel() request.
1773 * See the header comment of vmbus_send_modifychannel() for more info.
1774 *
1775 * Lags in the processing of the above vmbus_send_modifychannel() can
1776 * result in missed interrupts if the "old" target CPU is taken offline
1777 * before Hyper-V starts sending interrupts to the "new" target CPU.
1778 * But apart from this offlining scenario, the code tolerates such
1779 * lags. It will function correctly even if a channel interrupt comes
1780 * in on a CPU that is different from the channel target_cpu value.
1781 */
1782
1783 channel->target_cpu = target_cpu;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001784
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001785 /* See init_vp_index(). */
1786 if (hv_is_perf_channel(channel))
1787 hv_update_alloced_cpus(origin_cpu, target_cpu);
1788
1789 /* Currently set only for storvsc channels. */
1790 if (channel->change_target_cpu_callback) {
1791 (*channel->change_target_cpu_callback)(channel,
1792 origin_cpu, target_cpu);
1793 }
1794
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001795cpu_store_unlock:
1796 mutex_unlock(&vmbus_connection.channel_mutex);
1797 cpus_read_unlock();
1798 return ret;
1799}
1800static VMBUS_CHAN_ATTR(cpu, 0644, target_cpu_show, target_cpu_store);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001801
Kimberly Brown14948e32019-03-14 16:05:15 -04001802static ssize_t channel_pending_show(struct vmbus_channel *channel,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001803 char *buf)
1804{
1805 return sprintf(buf, "%d\n",
1806 channel_pending(channel,
1807 vmbus_connection.monitor_pages[1]));
1808}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001809static VMBUS_CHAN_ATTR(pending, S_IRUGO, channel_pending_show, NULL);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001810
Kimberly Brown14948e32019-03-14 16:05:15 -04001811static ssize_t channel_latency_show(struct vmbus_channel *channel,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001812 char *buf)
1813{
1814 return sprintf(buf, "%d\n",
1815 channel_latency(channel,
1816 vmbus_connection.monitor_pages[1]));
1817}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001818static VMBUS_CHAN_ATTR(latency, S_IRUGO, channel_latency_show, NULL);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001819
Kimberly Brown14948e32019-03-14 16:05:15 -04001820static ssize_t channel_interrupts_show(struct vmbus_channel *channel, char *buf)
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001821{
1822 return sprintf(buf, "%llu\n", channel->interrupts);
1823}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001824static VMBUS_CHAN_ATTR(interrupts, S_IRUGO, channel_interrupts_show, NULL);
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001825
Kimberly Brown14948e32019-03-14 16:05:15 -04001826static ssize_t channel_events_show(struct vmbus_channel *channel, char *buf)
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001827{
1828 return sprintf(buf, "%llu\n", channel->sig_events);
1829}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001830static VMBUS_CHAN_ATTR(events, S_IRUGO, channel_events_show, NULL);
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001831
Kimberly Brown14948e32019-03-14 16:05:15 -04001832static ssize_t channel_intr_in_full_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001833 char *buf)
1834{
1835 return sprintf(buf, "%llu\n",
1836 (unsigned long long)channel->intr_in_full);
1837}
1838static VMBUS_CHAN_ATTR(intr_in_full, 0444, channel_intr_in_full_show, NULL);
1839
Kimberly Brown14948e32019-03-14 16:05:15 -04001840static ssize_t channel_intr_out_empty_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001841 char *buf)
1842{
1843 return sprintf(buf, "%llu\n",
1844 (unsigned long long)channel->intr_out_empty);
1845}
1846static VMBUS_CHAN_ATTR(intr_out_empty, 0444, channel_intr_out_empty_show, NULL);
1847
Kimberly Brown14948e32019-03-14 16:05:15 -04001848static ssize_t channel_out_full_first_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001849 char *buf)
1850{
1851 return sprintf(buf, "%llu\n",
1852 (unsigned long long)channel->out_full_first);
1853}
1854static VMBUS_CHAN_ATTR(out_full_first, 0444, channel_out_full_first_show, NULL);
1855
Kimberly Brown14948e32019-03-14 16:05:15 -04001856static ssize_t channel_out_full_total_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001857 char *buf)
1858{
1859 return sprintf(buf, "%llu\n",
1860 (unsigned long long)channel->out_full_total);
1861}
1862static VMBUS_CHAN_ATTR(out_full_total, 0444, channel_out_full_total_show, NULL);
1863
Kimberly Brown14948e32019-03-14 16:05:15 -04001864static ssize_t subchannel_monitor_id_show(struct vmbus_channel *channel,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001865 char *buf)
1866{
1867 return sprintf(buf, "%u\n", channel->offermsg.monitorid);
1868}
1869static VMBUS_CHAN_ATTR(monitor_id, S_IRUGO, subchannel_monitor_id_show, NULL);
1870
Kimberly Brown14948e32019-03-14 16:05:15 -04001871static ssize_t subchannel_id_show(struct vmbus_channel *channel,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001872 char *buf)
1873{
1874 return sprintf(buf, "%u\n",
1875 channel->offermsg.offer.sub_channel_index);
1876}
1877static VMBUS_CHAN_ATTR_RO(subchannel_id);
1878
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001879static struct attribute *vmbus_chan_attrs[] = {
1880 &chan_attr_out_mask.attr,
1881 &chan_attr_in_mask.attr,
1882 &chan_attr_read_avail.attr,
1883 &chan_attr_write_avail.attr,
1884 &chan_attr_cpu.attr,
1885 &chan_attr_pending.attr,
1886 &chan_attr_latency.attr,
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001887 &chan_attr_interrupts.attr,
1888 &chan_attr_events.attr,
Kimberly Brown396ae572019-02-04 02:13:09 -05001889 &chan_attr_intr_in_full.attr,
1890 &chan_attr_intr_out_empty.attr,
1891 &chan_attr_out_full_first.attr,
1892 &chan_attr_out_full_total.attr,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001893 &chan_attr_monitor_id.attr,
1894 &chan_attr_subchannel_id.attr,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001895 NULL
1896};
1897
Kimberly Brown46fc1542019-03-19 00:04:01 -04001898/*
1899 * Channel-level attribute_group callback function. Returns the permission for
1900 * each attribute, and returns 0 if an attribute is not visible.
1901 */
1902static umode_t vmbus_chan_attr_is_visible(struct kobject *kobj,
1903 struct attribute *attr, int idx)
1904{
1905 const struct vmbus_channel *channel =
1906 container_of(kobj, struct vmbus_channel, kobj);
1907
1908 /* Hide the monitor attributes if the monitor mechanism is not used. */
1909 if (!channel->offermsg.monitor_allocated &&
1910 (attr == &chan_attr_pending.attr ||
1911 attr == &chan_attr_latency.attr ||
1912 attr == &chan_attr_monitor_id.attr))
1913 return 0;
1914
1915 return attr->mode;
1916}
1917
1918static struct attribute_group vmbus_chan_group = {
1919 .attrs = vmbus_chan_attrs,
1920 .is_visible = vmbus_chan_attr_is_visible
1921};
1922
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001923static struct kobj_type vmbus_chan_ktype = {
1924 .sysfs_ops = &vmbus_chan_sysfs_ops,
1925 .release = vmbus_chan_release,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001926};
1927
1928/*
1929 * vmbus_add_channel_kobj - setup a sub-directory under device/channels
1930 */
1931int vmbus_add_channel_kobj(struct hv_device *dev, struct vmbus_channel *channel)
1932{
Kimberly Brown46fc1542019-03-19 00:04:01 -04001933 const struct device *device = &dev->device;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001934 struct kobject *kobj = &channel->kobj;
1935 u32 relid = channel->offermsg.child_relid;
1936 int ret;
1937
1938 kobj->kset = dev->channels_kset;
1939 ret = kobject_init_and_add(kobj, &vmbus_chan_ktype, NULL,
1940 "%u", relid);
1941 if (ret)
1942 return ret;
1943
Kimberly Brown46fc1542019-03-19 00:04:01 -04001944 ret = sysfs_create_group(kobj, &vmbus_chan_group);
1945
1946 if (ret) {
1947 /*
1948 * The calling functions' error handling paths will cleanup the
1949 * empty channel directory.
1950 */
1951 dev_err(device, "Unable to set up channel sysfs files\n");
1952 return ret;
1953 }
1954
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001955 kobject_uevent(kobj, KOBJ_ADD);
1956
1957 return 0;
1958}
1959
Hank Janssen3e189512010-03-04 22:11:00 +00001960/*
Kimberly Brown46fc1542019-03-19 00:04:01 -04001961 * vmbus_remove_channel_attr_group - remove the channel's attribute group
1962 */
1963void vmbus_remove_channel_attr_group(struct vmbus_channel *channel)
1964{
1965 sysfs_remove_group(&channel->kobj, &vmbus_chan_group);
1966}
1967
1968/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -07001969 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +00001970 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001971 */
Andy Shevchenko593db802019-01-10 16:25:32 +02001972struct hv_device *vmbus_device_create(const guid_t *type,
1973 const guid_t *instance,
stephen hemminger1b9d48f2014-06-03 08:38:15 -07001974 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001975{
Nicolas Palix3d3b5512009-07-28 17:32:53 +02001976 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001977
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08001978 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
1979 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -07001980 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -07001981 return NULL;
1982 }
1983
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -07001984 child_device_obj->channel = channel;
Andy Shevchenko593db802019-01-10 16:25:32 +02001985 guid_copy(&child_device_obj->dev_type, type);
1986 guid_copy(&child_device_obj->dev_instance, instance);
K. Y. Srinivasan7047f172015-12-25 20:00:30 -08001987 child_device_obj->vendor_id = 0x1414; /* MSFT vendor ID */
Hank Janssen3e7ee492009-07-13 16:02:34 -07001988
Hank Janssen3e7ee492009-07-13 16:02:34 -07001989 return child_device_obj;
1990}
1991
Hank Janssen3e189512010-03-04 22:11:00 +00001992/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -07001993 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001994 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -07001995int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001996{
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001997 struct kobject *kobj = &child_device_obj->device.kobj;
1998 int ret;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08001999
Stephen Hemmingerf6b2db02016-11-01 00:01:59 -07002000 dev_set_name(&child_device_obj->device, "%pUl",
Andy Shevchenko458c4472020-04-23 16:45:03 +03002001 &child_device_obj->channel->offermsg.offer.if_instance);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002002
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -07002003 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002004 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002005 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -07002006
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002007 /*
2008 * Register with the LDM. This will kick off the driver/device
2009 * binding...which will eventually call vmbus_match() and vmbus_probe()
2010 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002011 ret = device_register(&child_device_obj->device);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002012 if (ret) {
Hank Janssen0a466182011-03-29 13:58:47 -07002013 pr_err("Unable to register child device\n");
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002014 return ret;
2015 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07002016
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002017 child_device_obj->channels_kset = kset_create_and_add("channels",
2018 NULL, kobj);
2019 if (!child_device_obj->channels_kset) {
2020 ret = -ENOMEM;
2021 goto err_dev_unregister;
2022 }
2023
2024 ret = vmbus_add_channel_kobj(child_device_obj,
2025 child_device_obj->channel);
2026 if (ret) {
2027 pr_err("Unable to register primary channeln");
2028 goto err_kset_unregister;
2029 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002030 hv_debug_add_dev_dir(child_device_obj);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002031
2032 return 0;
2033
2034err_kset_unregister:
2035 kset_unregister(child_device_obj->channels_kset);
2036
2037err_dev_unregister:
2038 device_unregister(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002039 return ret;
2040}
2041
Hank Janssen3e189512010-03-04 22:11:00 +00002042/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -07002043 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +00002044 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002045 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -07002046void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -07002047{
Fernando Soto84672362013-06-14 23:13:35 +00002048 pr_debug("child device %s unregistered\n",
2049 dev_name(&device_obj->device));
2050
Dexuan Cui869b5562017-11-14 06:53:32 -07002051 kset_unregister(device_obj->channels_kset);
2052
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002053 /*
2054 * Kick off the process of unregistering the device.
2055 * This will call vmbus_remove() and eventually vmbus_device_release()
2056 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002057 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002058}
2059
Hank Janssen3e7ee492009-07-13 16:02:34 -07002060
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002061/*
Jake Oshins7f163a62015-08-05 00:52:36 -07002062 * VMBUS is an acpi enumerated device. Get the information we
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002063 * need from DSDT.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002064 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002065#define VTPM_BASE_ADDRESS 0xfed40000
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002066static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002067{
Jake Oshins7f163a62015-08-05 00:52:36 -07002068 resource_size_t start = 0;
2069 resource_size_t end = 0;
2070 struct resource *new_res;
2071 struct resource **old_res = &hyperv_mmio;
2072 struct resource **prev_res = NULL;
2073
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002074 switch (res->type) {
Jake Oshins7f163a62015-08-05 00:52:36 -07002075
2076 /*
2077 * "Address" descriptors are for bus windows. Ignore
2078 * "memory" descriptors, which are for registers on
2079 * devices.
2080 */
2081 case ACPI_RESOURCE_TYPE_ADDRESS32:
2082 start = res->data.address32.address.minimum;
2083 end = res->data.address32.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +01002084 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002085
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002086 case ACPI_RESOURCE_TYPE_ADDRESS64:
Jake Oshins7f163a62015-08-05 00:52:36 -07002087 start = res->data.address64.address.minimum;
2088 end = res->data.address64.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +01002089 break;
Jake Oshins7f163a62015-08-05 00:52:36 -07002090
2091 default:
2092 /* Unused resource type */
2093 return AE_OK;
2094
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002095 }
Jake Oshins7f163a62015-08-05 00:52:36 -07002096 /*
2097 * Ignore ranges that are below 1MB, as they're not
2098 * necessary or useful here.
2099 */
2100 if (end < 0x100000)
2101 return AE_OK;
2102
2103 new_res = kzalloc(sizeof(*new_res), GFP_ATOMIC);
2104 if (!new_res)
2105 return AE_NO_MEMORY;
2106
2107 /* If this range overlaps the virtual TPM, truncate it. */
2108 if (end > VTPM_BASE_ADDRESS && start < VTPM_BASE_ADDRESS)
2109 end = VTPM_BASE_ADDRESS;
2110
2111 new_res->name = "hyperv mmio";
2112 new_res->flags = IORESOURCE_MEM;
2113 new_res->start = start;
2114 new_res->end = end;
2115
Jake Oshins40f26f32015-12-14 16:01:52 -08002116 /*
Jake Oshins40f26f32015-12-14 16:01:52 -08002117 * If two ranges are adjacent, merge them.
2118 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002119 do {
2120 if (!*old_res) {
2121 *old_res = new_res;
2122 break;
2123 }
2124
Jake Oshins40f26f32015-12-14 16:01:52 -08002125 if (((*old_res)->end + 1) == new_res->start) {
2126 (*old_res)->end = new_res->end;
2127 kfree(new_res);
2128 break;
2129 }
2130
2131 if ((*old_res)->start == new_res->end + 1) {
2132 (*old_res)->start = new_res->start;
2133 kfree(new_res);
2134 break;
2135 }
2136
Jake Oshins23a06832016-04-05 10:22:53 -07002137 if ((*old_res)->start > new_res->end) {
Jake Oshins7f163a62015-08-05 00:52:36 -07002138 new_res->sibling = *old_res;
2139 if (prev_res)
2140 (*prev_res)->sibling = new_res;
2141 *old_res = new_res;
2142 break;
2143 }
2144
2145 prev_res = old_res;
2146 old_res = &(*old_res)->sibling;
2147
2148 } while (1);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002149
2150 return AE_OK;
2151}
2152
Jake Oshins7f163a62015-08-05 00:52:36 -07002153static int vmbus_acpi_remove(struct acpi_device *device)
2154{
2155 struct resource *cur_res;
2156 struct resource *next_res;
2157
2158 if (hyperv_mmio) {
Jake Oshins6d146ae2016-04-05 10:22:55 -07002159 if (fb_mmio) {
2160 __release_region(hyperv_mmio, fb_mmio->start,
2161 resource_size(fb_mmio));
2162 fb_mmio = NULL;
2163 }
2164
Jake Oshins7f163a62015-08-05 00:52:36 -07002165 for (cur_res = hyperv_mmio; cur_res; cur_res = next_res) {
2166 next_res = cur_res->sibling;
2167 kfree(cur_res);
2168 }
2169 }
2170
2171 return 0;
2172}
2173
Jake Oshins6d146ae2016-04-05 10:22:55 -07002174static void vmbus_reserve_fb(void)
2175{
2176 int size;
2177 /*
2178 * Make a claim for the frame buffer in the resource tree under the
2179 * first node, which will be the one below 4GB. The length seems to
2180 * be underreported, particularly in a Generation 1 VM. So start out
2181 * reserving a larger area and make it smaller until it succeeds.
2182 */
2183
2184 if (screen_info.lfb_base) {
2185 if (efi_enabled(EFI_BOOT))
2186 size = max_t(__u32, screen_info.lfb_size, 0x800000);
2187 else
2188 size = max_t(__u32, screen_info.lfb_size, 0x4000000);
2189
2190 for (; !fb_mmio && (size >= 0x100000); size >>= 1) {
2191 fb_mmio = __request_region(hyperv_mmio,
2192 screen_info.lfb_base, size,
2193 fb_mmio_name, 0);
2194 }
2195 }
2196}
2197
Jake Oshins35464482015-08-05 00:52:37 -07002198/**
2199 * vmbus_allocate_mmio() - Pick a memory-mapped I/O range.
2200 * @new: If successful, supplied a pointer to the
2201 * allocated MMIO space.
2202 * @device_obj: Identifies the caller
2203 * @min: Minimum guest physical address of the
2204 * allocation
2205 * @max: Maximum guest physical address
2206 * @size: Size of the range to be allocated
2207 * @align: Alignment of the range to be allocated
2208 * @fb_overlap_ok: Whether this allocation can be allowed
2209 * to overlap the video frame buffer.
2210 *
2211 * This function walks the resources granted to VMBus by the
2212 * _CRS object in the ACPI namespace underneath the parent
2213 * "bridge" whether that's a root PCI bus in the Generation 1
2214 * case or a Module Device in the Generation 2 case. It then
2215 * attempts to allocate from the global MMIO pool in a way that
2216 * matches the constraints supplied in these parameters and by
2217 * that _CRS.
2218 *
2219 * Return: 0 on success, -errno on failure
2220 */
2221int vmbus_allocate_mmio(struct resource **new, struct hv_device *device_obj,
2222 resource_size_t min, resource_size_t max,
2223 resource_size_t size, resource_size_t align,
2224 bool fb_overlap_ok)
2225{
Jake Oshinsbe000f92016-04-05 10:22:54 -07002226 struct resource *iter, *shadow;
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002227 resource_size_t range_min, range_max, start;
Jake Oshins35464482015-08-05 00:52:37 -07002228 const char *dev_n = dev_name(&device_obj->device);
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002229 int retval;
Jake Oshinse16dad62016-04-05 10:22:50 -07002230
2231 retval = -ENXIO;
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002232 mutex_lock(&hyperv_mmio_lock);
Jake Oshins35464482015-08-05 00:52:37 -07002233
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002234 /*
2235 * If overlaps with frame buffers are allowed, then first attempt to
2236 * make the allocation from within the reserved region. Because it
2237 * is already reserved, no shadow allocation is necessary.
2238 */
2239 if (fb_overlap_ok && fb_mmio && !(min > fb_mmio->end) &&
2240 !(max < fb_mmio->start)) {
2241
2242 range_min = fb_mmio->start;
2243 range_max = fb_mmio->end;
2244 start = (range_min + align - 1) & ~(align - 1);
2245 for (; start + size - 1 <= range_max; start += align) {
2246 *new = request_mem_region_exclusive(start, size, dev_n);
2247 if (*new) {
2248 retval = 0;
2249 goto exit;
2250 }
2251 }
2252 }
2253
Jake Oshins35464482015-08-05 00:52:37 -07002254 for (iter = hyperv_mmio; iter; iter = iter->sibling) {
2255 if ((iter->start >= max) || (iter->end <= min))
2256 continue;
2257
2258 range_min = iter->start;
2259 range_max = iter->end;
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002260 start = (range_min + align - 1) & ~(align - 1);
2261 for (; start + size - 1 <= range_max; start += align) {
2262 shadow = __request_region(iter, start, size, NULL,
2263 IORESOURCE_BUSY);
2264 if (!shadow)
2265 continue;
Jake Oshins35464482015-08-05 00:52:37 -07002266
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002267 *new = request_mem_region_exclusive(start, size, dev_n);
2268 if (*new) {
2269 shadow->name = (char *)*new;
2270 retval = 0;
2271 goto exit;
Jake Oshins35464482015-08-05 00:52:37 -07002272 }
2273
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002274 __release_region(iter, start, size);
Jake Oshins35464482015-08-05 00:52:37 -07002275 }
2276 }
2277
Jake Oshinse16dad62016-04-05 10:22:50 -07002278exit:
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002279 mutex_unlock(&hyperv_mmio_lock);
Jake Oshinse16dad62016-04-05 10:22:50 -07002280 return retval;
Jake Oshins35464482015-08-05 00:52:37 -07002281}
2282EXPORT_SYMBOL_GPL(vmbus_allocate_mmio);
2283
Jake Oshins619848b2015-12-14 16:01:39 -08002284/**
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002285 * vmbus_free_mmio() - Free a memory-mapped I/O range.
2286 * @start: Base address of region to release.
2287 * @size: Size of the range to be allocated
2288 *
2289 * This function releases anything requested by
2290 * vmbus_mmio_allocate().
2291 */
2292void vmbus_free_mmio(resource_size_t start, resource_size_t size)
2293{
Jake Oshinsbe000f92016-04-05 10:22:54 -07002294 struct resource *iter;
2295
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002296 mutex_lock(&hyperv_mmio_lock);
Jake Oshinsbe000f92016-04-05 10:22:54 -07002297 for (iter = hyperv_mmio; iter; iter = iter->sibling) {
2298 if ((iter->start >= start + size) || (iter->end <= start))
2299 continue;
2300
2301 __release_region(iter, start, size);
2302 }
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002303 release_mem_region(start, size);
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002304 mutex_unlock(&hyperv_mmio_lock);
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002305
2306}
2307EXPORT_SYMBOL_GPL(vmbus_free_mmio);
2308
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002309static int vmbus_acpi_add(struct acpi_device *device)
2310{
2311 acpi_status result;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002312 int ret_val = -ENODEV;
Jake Oshins7f163a62015-08-05 00:52:36 -07002313 struct acpi_device *ancestor;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002314
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002315 hv_acpi_dev = device;
2316
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -07002317 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002318 vmbus_walk_resources, NULL);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002319
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002320 if (ACPI_FAILURE(result))
2321 goto acpi_walk_err;
2322 /*
Jake Oshins7f163a62015-08-05 00:52:36 -07002323 * Some ancestor of the vmbus acpi device (Gen1 or Gen2
2324 * firmware) is the VMOD that has the mmio ranges. Get that.
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002325 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002326 for (ancestor = device->parent; ancestor; ancestor = ancestor->parent) {
2327 result = acpi_walk_resources(ancestor->handle, METHOD_NAME__CRS,
2328 vmbus_walk_resources, NULL);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002329
2330 if (ACPI_FAILURE(result))
Jake Oshins7f163a62015-08-05 00:52:36 -07002331 continue;
Jake Oshins6d146ae2016-04-05 10:22:55 -07002332 if (hyperv_mmio) {
2333 vmbus_reserve_fb();
Jake Oshins7f163a62015-08-05 00:52:36 -07002334 break;
Jake Oshins6d146ae2016-04-05 10:22:55 -07002335 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002336 }
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002337 ret_val = 0;
2338
2339acpi_walk_err:
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002340 complete(&probe_event);
Jake Oshins7f163a62015-08-05 00:52:36 -07002341 if (ret_val)
2342 vmbus_acpi_remove(device);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002343 return ret_val;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002344}
2345
Dexuan Cui83b50f82019-09-19 21:46:12 +00002346#ifdef CONFIG_PM_SLEEP
Dexuan Cuif53335e2019-09-05 23:01:19 +00002347static int vmbus_bus_suspend(struct device *dev)
2348{
Dexuan Cuib307b382019-09-05 23:01:21 +00002349 struct vmbus_channel *channel, *sc;
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00002350
2351 while (atomic_read(&vmbus_connection.offer_in_progress) != 0) {
2352 /*
2353 * We wait here until the completion of any channel
2354 * offers that are currently in progress.
2355 */
2356 msleep(1);
2357 }
2358
2359 mutex_lock(&vmbus_connection.channel_mutex);
2360 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
2361 if (!is_hvsock_channel(channel))
2362 continue;
2363
2364 vmbus_force_channel_rescinded(channel);
2365 }
2366 mutex_unlock(&vmbus_connection.channel_mutex);
2367
Dexuan Cuib307b382019-09-05 23:01:21 +00002368 /*
2369 * Wait until all the sub-channels and hv_sock channels have been
2370 * cleaned up. Sub-channels should be destroyed upon suspend, otherwise
2371 * they would conflict with the new sub-channels that will be created
2372 * in the resume path. hv_sock channels should also be destroyed, but
2373 * a hv_sock channel of an established hv_sock connection can not be
2374 * really destroyed since it may still be referenced by the userspace
2375 * application, so we just force the hv_sock channel to be rescinded
2376 * by vmbus_force_channel_rescinded(), and the userspace application
2377 * will thoroughly destroy the channel after hibernation.
2378 *
2379 * Note: the counter nr_chan_close_on_suspend may never go above 0 if
2380 * the VM has no sub-channel and hv_sock channel, e.g. a 1-vCPU VM.
2381 */
2382 if (atomic_read(&vmbus_connection.nr_chan_close_on_suspend) > 0)
2383 wait_for_completion(&vmbus_connection.ready_for_suspend_event);
2384
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002385 WARN_ON(atomic_read(&vmbus_connection.nr_chan_fixup_on_resume) != 0);
2386
Dexuan Cuib307b382019-09-05 23:01:21 +00002387 mutex_lock(&vmbus_connection.channel_mutex);
2388
2389 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002390 /*
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002391 * Remove the channel from the array of channels and invalidate
2392 * the channel's relid. Upon resume, vmbus_onoffer() will fix
2393 * up the relid (and other fields, if necessary) and add the
2394 * channel back to the array.
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002395 */
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002396 vmbus_channel_unmap_relid(channel);
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002397 channel->offermsg.child_relid = INVALID_RELID;
2398
Dexuan Cuib307b382019-09-05 23:01:21 +00002399 if (is_hvsock_channel(channel)) {
2400 if (!channel->rescind) {
2401 pr_err("hv_sock channel not rescinded!\n");
2402 WARN_ON_ONCE(1);
2403 }
2404 continue;
2405 }
2406
Dexuan Cuib307b382019-09-05 23:01:21 +00002407 list_for_each_entry(sc, &channel->sc_list, sc_list) {
2408 pr_err("Sub-channel not deleted!\n");
2409 WARN_ON_ONCE(1);
2410 }
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002411
2412 atomic_inc(&vmbus_connection.nr_chan_fixup_on_resume);
Dexuan Cuib307b382019-09-05 23:01:21 +00002413 }
2414
2415 mutex_unlock(&vmbus_connection.channel_mutex);
2416
Dexuan Cuif53335e2019-09-05 23:01:19 +00002417 vmbus_initiate_unload(false);
2418
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002419 /* Reset the event for the next resume. */
2420 reinit_completion(&vmbus_connection.ready_for_resume_event);
2421
Dexuan Cuif53335e2019-09-05 23:01:19 +00002422 return 0;
2423}
2424
2425static int vmbus_bus_resume(struct device *dev)
2426{
2427 struct vmbus_channel_msginfo *msginfo;
2428 size_t msgsize;
2429 int ret;
2430
2431 /*
2432 * We only use the 'vmbus_proto_version', which was in use before
2433 * hibernation, to re-negotiate with the host.
2434 */
Andrea Parribedc61a2019-10-15 13:46:44 +02002435 if (!vmbus_proto_version) {
Dexuan Cuif53335e2019-09-05 23:01:19 +00002436 pr_err("Invalid proto version = 0x%x\n", vmbus_proto_version);
2437 return -EINVAL;
2438 }
2439
2440 msgsize = sizeof(*msginfo) +
2441 sizeof(struct vmbus_channel_initiate_contact);
2442
2443 msginfo = kzalloc(msgsize, GFP_KERNEL);
2444
2445 if (msginfo == NULL)
2446 return -ENOMEM;
2447
2448 ret = vmbus_negotiate_version(msginfo, vmbus_proto_version);
2449
2450 kfree(msginfo);
2451
2452 if (ret != 0)
2453 return ret;
2454
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002455 WARN_ON(atomic_read(&vmbus_connection.nr_chan_fixup_on_resume) == 0);
2456
Dexuan Cuif53335e2019-09-05 23:01:19 +00002457 vmbus_request_offers();
2458
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002459 wait_for_completion(&vmbus_connection.ready_for_resume_event);
2460
Dexuan Cuib307b382019-09-05 23:01:21 +00002461 /* Reset the event for the next suspend. */
2462 reinit_completion(&vmbus_connection.ready_for_suspend_event);
2463
Dexuan Cuif53335e2019-09-05 23:01:19 +00002464 return 0;
2465}
Dexuan Cui1a06d012020-04-11 20:50:35 -07002466#else
2467#define vmbus_bus_suspend NULL
2468#define vmbus_bus_resume NULL
Dexuan Cui83b50f82019-09-19 21:46:12 +00002469#endif /* CONFIG_PM_SLEEP */
Dexuan Cuif53335e2019-09-05 23:01:19 +00002470
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002471static const struct acpi_device_id vmbus_acpi_device_ids[] = {
2472 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -07002473 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002474 {"", 0},
2475};
2476MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
2477
Dexuan Cuif53335e2019-09-05 23:01:19 +00002478/*
Dexuan Cui1a06d012020-04-11 20:50:35 -07002479 * Note: we must use the "no_irq" ops, otherwise hibernation can not work with
2480 * PCI device assignment, because "pci_dev_pm_ops" uses the "noirq" ops: in
2481 * the resume path, the pci "noirq" restore op runs before "non-noirq" op (see
Dexuan Cuif53335e2019-09-05 23:01:19 +00002482 * resume_target_kernel() -> dpm_resume_start(), and hibernation_restore() ->
2483 * dpm_resume_end()). This means vmbus_bus_resume() and the pci-hyperv's
Dexuan Cui1a06d012020-04-11 20:50:35 -07002484 * resume callback must also run via the "noirq" ops.
2485 *
2486 * Set suspend_noirq/resume_noirq to NULL for Suspend-to-Idle: see the comment
2487 * earlier in this file before vmbus_pm.
Dexuan Cuif53335e2019-09-05 23:01:19 +00002488 */
Dexuan Cui1a06d012020-04-11 20:50:35 -07002489
Dexuan Cuif53335e2019-09-05 23:01:19 +00002490static const struct dev_pm_ops vmbus_bus_pm = {
Dexuan Cui1a06d012020-04-11 20:50:35 -07002491 .suspend_noirq = NULL,
2492 .resume_noirq = NULL,
2493 .freeze_noirq = vmbus_bus_suspend,
2494 .thaw_noirq = vmbus_bus_resume,
2495 .poweroff_noirq = vmbus_bus_suspend,
2496 .restore_noirq = vmbus_bus_resume
Dexuan Cuif53335e2019-09-05 23:01:19 +00002497};
2498
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002499static struct acpi_driver vmbus_acpi_driver = {
2500 .name = "vmbus",
2501 .ids = vmbus_acpi_device_ids,
2502 .ops = {
2503 .add = vmbus_acpi_add,
Vitaly Kuznetsove4ecb412015-04-22 21:31:28 -07002504 .remove = vmbus_acpi_remove,
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002505 },
Dexuan Cuif53335e2019-09-05 23:01:19 +00002506 .drv.pm = &vmbus_bus_pm,
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002507};
2508
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002509static void hv_kexec_handler(void)
2510{
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002511 hv_stimer_global_cleanup();
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -08002512 vmbus_initiate_unload(false);
Vitaly Kuznetsov523b9402016-12-07 14:53:12 -08002513 /* Make sure conn_state is set as hv_synic_cleanup checks for it */
2514 mb();
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08002515 cpuhp_remove_state(hyperv_cpuhp_online);
Vitaly Kuznetsovd6f36092017-01-28 12:37:14 -07002516 hyperv_cleanup();
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002517};
2518
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002519static void hv_crash_handler(struct pt_regs *regs)
2520{
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002521 int cpu;
2522
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -08002523 vmbus_initiate_unload(true);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002524 /*
2525 * In crash handler we can't schedule synic cleanup for all CPUs,
2526 * doing the cleanup for current CPU only. This should be sufficient
2527 * for kdump.
2528 */
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002529 cpu = smp_processor_id();
2530 hv_stimer_cleanup(cpu);
Michael Kelley7a1323b2019-11-14 06:32:01 +00002531 hv_synic_disable_regs(cpu);
Vitaly Kuznetsovd6f36092017-01-28 12:37:14 -07002532 hyperv_cleanup();
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002533};
2534
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002535static int hv_synic_suspend(void)
2536{
2537 /*
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002538 * When we reach here, all the non-boot CPUs have been offlined.
2539 * If we're in a legacy configuration where stimer Direct Mode is
2540 * not enabled, the stimers on the non-boot CPUs have been unbound
2541 * in hv_synic_cleanup() -> hv_stimer_legacy_cleanup() ->
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002542 * hv_stimer_cleanup() -> clockevents_unbind_device().
2543 *
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002544 * hv_synic_suspend() only runs on CPU0 with interrupts disabled.
2545 * Here we do not call hv_stimer_legacy_cleanup() on CPU0 because:
2546 * 1) it's unnecessary as interrupts remain disabled between
2547 * syscore_suspend() and syscore_resume(): see create_image() and
2548 * resume_target_kernel()
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002549 * 2) the stimer on CPU0 is automatically disabled later by
2550 * syscore_suspend() -> timekeeping_suspend() -> tick_suspend() -> ...
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002551 * -> clockevents_shutdown() -> ... -> hv_ce_shutdown()
2552 * 3) a warning would be triggered if we call
2553 * clockevents_unbind_device(), which may sleep, in an
2554 * interrupts-disabled context.
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002555 */
2556
2557 hv_synic_disable_regs(0);
2558
2559 return 0;
2560}
2561
2562static void hv_synic_resume(void)
2563{
2564 hv_synic_enable_regs(0);
2565
2566 /*
2567 * Note: we don't need to call hv_stimer_init(0), because the timer
2568 * on CPU0 is not unbound in hv_synic_suspend(), and the timer is
2569 * automatically re-enabled in timekeeping_resume().
2570 */
2571}
2572
2573/* The callbacks run only on CPU0, with irqs_disabled. */
2574static struct syscore_ops hv_synic_syscore_ops = {
2575 .suspend = hv_synic_suspend,
2576 .resume = hv_synic_resume,
2577};
2578
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002579static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002580{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002581 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002582
Michael Kelley4a5f3cd2017-12-22 11:19:02 -07002583 if (!hv_is_hyperv_initialized())
Jason Wang05929692012-08-17 18:52:43 +08002584 return -ENODEV;
2585
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002586 init_completion(&probe_event);
2587
2588 /*
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08002589 * Get ACPI resources first.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002590 */
K. Y. Srinivasan02466042011-06-06 15:49:40 -07002591 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
2592
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002593 if (ret)
2594 return ret;
2595
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002596 t = wait_for_completion_timeout(&probe_event, 5*HZ);
2597 if (t == 0) {
2598 ret = -ETIMEDOUT;
2599 goto cleanup;
2600 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002601 hv_debug_init();
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002602
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08002603 ret = vmbus_bus_init();
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07002604 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002605 goto cleanup;
2606
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002607 hv_setup_kexec_handler(hv_kexec_handler);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002608 hv_setup_crash_handler(hv_crash_handler);
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002609
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002610 register_syscore_ops(&hv_synic_syscore_ops);
2611
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002612 return 0;
2613
2614cleanup:
2615 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08002616 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07002617 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002618}
2619
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002620static void __exit vmbus_exit(void)
2621{
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -08002622 int cpu;
2623
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002624 unregister_syscore_ops(&hv_synic_syscore_ops);
2625
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002626 hv_remove_kexec_handler();
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002627 hv_remove_crash_handler();
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08002628 vmbus_connection.conn_state = DISCONNECTED;
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002629 hv_stimer_global_cleanup();
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -07002630 vmbus_disconnect();
Thomas Gleixner76d388c2014-03-05 13:42:14 +01002631 hv_remove_vmbus_irq();
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002632 for_each_online_cpu(cpu) {
2633 struct hv_per_cpu_context *hv_cpu
2634 = per_cpu_ptr(hv_context.cpu_context, cpu);
2635
2636 tasklet_kill(&hv_cpu->msg_dpc);
2637 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002638 hv_debug_rm_all_dir();
2639
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002640 vmbus_free_channels();
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002641 kfree(vmbus_connection.channels);
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002642
Denis V. Lunevcc2dd402015-08-01 16:08:20 -07002643 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00002644 kmsg_dump_unregister(&hv_kmsg_dumper);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -07002645 unregister_die_notifier(&hyperv_die_block);
Vitaly Kuznetsov096c6052015-04-22 21:31:29 -07002646 atomic_notifier_chain_unregister(&panic_notifier_list,
2647 &hyperv_panic_block);
2648 }
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00002649
2650 free_page((unsigned long)hv_panic_page);
Sunil Muthuswamy8afc06d2018-07-28 21:58:46 +00002651 unregister_sysctl_table(hv_ctl_table_hdr);
2652 hv_ctl_table_hdr = NULL;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002653 bus_unregister(&hv_bus);
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002654
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08002655 cpuhp_remove_state(hyperv_cpuhp_online);
Vitaly Kuznetsov06210b42015-08-01 16:08:05 -07002656 hv_synic_free();
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002657 acpi_bus_unregister_driver(&vmbus_acpi_driver);
2658}
2659
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002660
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002661MODULE_LICENSE("GPL");
Joseph Salisbury674eecb2019-04-23 03:47:27 +00002662MODULE_DESCRIPTION("Microsoft Hyper-V VMBus Driver");
Hank Janssen3e7ee492009-07-13 16:02:34 -07002663
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -07002664subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002665module_exit(vmbus_exit);