blob: 8313e25378cb2804262b00fa3d5bbdccc1213a3e [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
Hank Janssen3e7ee492009-07-13 16:02:34 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070020 * K. Y. Srinivasan <kys@microsoft.com>
K. Y. Srinivasan52e5c1c2011-03-15 15:03:34 -070021 *
Hank Janssen3e7ee492009-07-13 16:02:34 -070022 */
Hank Janssen0a466182011-03-29 13:58:47 -070023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Hank Janssen3e7ee492009-07-13 16:02:34 -070025#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/device.h>
Hank Janssen3e7ee492009-07-13 16:02:34 -070028#include <linux/interrupt.h>
29#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070031#include <linux/acpi.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000032#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070033#include <linux/hyperv.h>
K. Y. Srinivasanb0209502012-12-01 06:46:54 -080034#include <linux/kernel_stat.h>
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -080035#include <linux/clockchips.h>
Vitaly Kuznetsove5132292015-02-27 11:25:51 -080036#include <linux/cpu.h>
Greg Kroah-Hartman407dd162011-10-11 08:36:44 -060037#include <asm/hyperv.h>
Jason Wang1f94ea82012-08-31 13:32:44 +080038#include <asm/hypervisor.h>
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -080039#include <asm/mshyperv.h>
Nick Meier96c1d052015-02-28 11:39:01 -080040#include <linux/notifier.h>
41#include <linux/ptrace.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070042#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070043
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -070044static struct acpi_device *hv_acpi_dev;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -070045
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -070046static struct tasklet_struct msg_dpc;
K. Y. Srinivasan71a66552011-04-29 13:45:04 -070047static struct completion probe_event;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070048static int irq;
Hank Janssen3e7ee492009-07-13 16:02:34 -070049
Nick Meier96c1d052015-02-28 11:39:01 -080050
kbuild test roboted99d842015-03-02 11:49:23 +080051static int hyperv_panic_event(struct notifier_block *nb,
Nick Meier96c1d052015-02-28 11:39:01 -080052 unsigned long event, void *ptr)
53{
54 struct pt_regs *regs;
55
56 regs = current_pt_regs();
57
58 wrmsrl(HV_X64_MSR_CRASH_P0, regs->ip);
59 wrmsrl(HV_X64_MSR_CRASH_P1, regs->ax);
60 wrmsrl(HV_X64_MSR_CRASH_P2, regs->bx);
61 wrmsrl(HV_X64_MSR_CRASH_P3, regs->cx);
62 wrmsrl(HV_X64_MSR_CRASH_P4, regs->dx);
63
64 /*
65 * Let Hyper-V know there is crash data available
66 */
67 wrmsrl(HV_X64_MSR_CRASH_CTL, HV_CRASH_CTL_CRASH_NOTIFY);
68 return NOTIFY_DONE;
69}
70
71static struct notifier_block hyperv_panic_block = {
72 .notifier_call = hyperv_panic_event,
73};
74
Gerd Hoffmann90eedf02014-02-24 14:17:09 +010075struct resource hyperv_mmio = {
76 .name = "hyperv mmio",
77 .flags = IORESOURCE_MEM,
78};
79EXPORT_SYMBOL_GPL(hyperv_mmio);
Hank Janssen3e7ee492009-07-13 16:02:34 -070080
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080081static int vmbus_exists(void)
82{
83 if (hv_acpi_dev == NULL)
84 return -ENODEV;
85
86 return 0;
87}
88
Olaf Heringfd776ba2011-09-02 18:25:56 +020089#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
90static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
91{
92 int i;
93 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
94 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
95}
96
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -070097static u8 channel_monitor_group(struct vmbus_channel *channel)
98{
99 return (u8)channel->offermsg.monitorid / 32;
100}
101
102static u8 channel_monitor_offset(struct vmbus_channel *channel)
103{
104 return (u8)channel->offermsg.monitorid % 32;
105}
106
107static u32 channel_pending(struct vmbus_channel *channel,
108 struct hv_monitor_page *monitor_page)
109{
110 u8 monitor_group = channel_monitor_group(channel);
111 return monitor_page->trigger_group[monitor_group].pending;
112}
113
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700114static u32 channel_latency(struct vmbus_channel *channel,
115 struct hv_monitor_page *monitor_page)
116{
117 u8 monitor_group = channel_monitor_group(channel);
118 u8 monitor_offset = channel_monitor_offset(channel);
119 return monitor_page->latency[monitor_group][monitor_offset];
120}
121
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700122static u32 channel_conn_id(struct vmbus_channel *channel,
123 struct hv_monitor_page *monitor_page)
124{
125 u8 monitor_group = channel_monitor_group(channel);
126 u8 monitor_offset = channel_monitor_offset(channel);
127 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
128}
129
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700130static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
131 char *buf)
132{
133 struct hv_device *hv_dev = device_to_hv_device(dev);
134
135 if (!hv_dev->channel)
136 return -ENODEV;
137 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
138}
139static DEVICE_ATTR_RO(id);
140
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700141static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
142 char *buf)
143{
144 struct hv_device *hv_dev = device_to_hv_device(dev);
145
146 if (!hv_dev->channel)
147 return -ENODEV;
148 return sprintf(buf, "%d\n", hv_dev->channel->state);
149}
150static DEVICE_ATTR_RO(state);
151
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700152static ssize_t monitor_id_show(struct device *dev,
153 struct device_attribute *dev_attr, char *buf)
154{
155 struct hv_device *hv_dev = device_to_hv_device(dev);
156
157 if (!hv_dev->channel)
158 return -ENODEV;
159 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
160}
161static DEVICE_ATTR_RO(monitor_id);
162
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700163static ssize_t class_id_show(struct device *dev,
164 struct device_attribute *dev_attr, char *buf)
165{
166 struct hv_device *hv_dev = device_to_hv_device(dev);
167
168 if (!hv_dev->channel)
169 return -ENODEV;
170 return sprintf(buf, "{%pUl}\n",
171 hv_dev->channel->offermsg.offer.if_type.b);
172}
173static DEVICE_ATTR_RO(class_id);
174
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700175static ssize_t device_id_show(struct device *dev,
176 struct device_attribute *dev_attr, char *buf)
177{
178 struct hv_device *hv_dev = device_to_hv_device(dev);
179
180 if (!hv_dev->channel)
181 return -ENODEV;
182 return sprintf(buf, "{%pUl}\n",
183 hv_dev->channel->offermsg.offer.if_instance.b);
184}
185static DEVICE_ATTR_RO(device_id);
186
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700187static ssize_t modalias_show(struct device *dev,
188 struct device_attribute *dev_attr, char *buf)
189{
190 struct hv_device *hv_dev = device_to_hv_device(dev);
191 char alias_name[VMBUS_ALIAS_LEN + 1];
192
193 print_alias_name(hv_dev, alias_name);
194 return sprintf(buf, "vmbus:%s\n", alias_name);
195}
196static DEVICE_ATTR_RO(modalias);
197
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700198static ssize_t server_monitor_pending_show(struct device *dev,
199 struct device_attribute *dev_attr,
200 char *buf)
201{
202 struct hv_device *hv_dev = device_to_hv_device(dev);
203
204 if (!hv_dev->channel)
205 return -ENODEV;
206 return sprintf(buf, "%d\n",
207 channel_pending(hv_dev->channel,
208 vmbus_connection.monitor_pages[1]));
209}
210static DEVICE_ATTR_RO(server_monitor_pending);
211
212static ssize_t client_monitor_pending_show(struct device *dev,
213 struct device_attribute *dev_attr,
214 char *buf)
215{
216 struct hv_device *hv_dev = device_to_hv_device(dev);
217
218 if (!hv_dev->channel)
219 return -ENODEV;
220 return sprintf(buf, "%d\n",
221 channel_pending(hv_dev->channel,
222 vmbus_connection.monitor_pages[1]));
223}
224static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700225
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700226static ssize_t server_monitor_latency_show(struct device *dev,
227 struct device_attribute *dev_attr,
228 char *buf)
229{
230 struct hv_device *hv_dev = device_to_hv_device(dev);
231
232 if (!hv_dev->channel)
233 return -ENODEV;
234 return sprintf(buf, "%d\n",
235 channel_latency(hv_dev->channel,
236 vmbus_connection.monitor_pages[0]));
237}
238static DEVICE_ATTR_RO(server_monitor_latency);
239
240static ssize_t client_monitor_latency_show(struct device *dev,
241 struct device_attribute *dev_attr,
242 char *buf)
243{
244 struct hv_device *hv_dev = device_to_hv_device(dev);
245
246 if (!hv_dev->channel)
247 return -ENODEV;
248 return sprintf(buf, "%d\n",
249 channel_latency(hv_dev->channel,
250 vmbus_connection.monitor_pages[1]));
251}
252static DEVICE_ATTR_RO(client_monitor_latency);
253
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700254static ssize_t server_monitor_conn_id_show(struct device *dev,
255 struct device_attribute *dev_attr,
256 char *buf)
257{
258 struct hv_device *hv_dev = device_to_hv_device(dev);
259
260 if (!hv_dev->channel)
261 return -ENODEV;
262 return sprintf(buf, "%d\n",
263 channel_conn_id(hv_dev->channel,
264 vmbus_connection.monitor_pages[0]));
265}
266static DEVICE_ATTR_RO(server_monitor_conn_id);
267
268static ssize_t client_monitor_conn_id_show(struct device *dev,
269 struct device_attribute *dev_attr,
270 char *buf)
271{
272 struct hv_device *hv_dev = device_to_hv_device(dev);
273
274 if (!hv_dev->channel)
275 return -ENODEV;
276 return sprintf(buf, "%d\n",
277 channel_conn_id(hv_dev->channel,
278 vmbus_connection.monitor_pages[1]));
279}
280static DEVICE_ATTR_RO(client_monitor_conn_id);
281
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700282static ssize_t out_intr_mask_show(struct device *dev,
283 struct device_attribute *dev_attr, char *buf)
284{
285 struct hv_device *hv_dev = device_to_hv_device(dev);
286 struct hv_ring_buffer_debug_info outbound;
287
288 if (!hv_dev->channel)
289 return -ENODEV;
290 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
291 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
292}
293static DEVICE_ATTR_RO(out_intr_mask);
294
295static ssize_t out_read_index_show(struct device *dev,
296 struct device_attribute *dev_attr, char *buf)
297{
298 struct hv_device *hv_dev = device_to_hv_device(dev);
299 struct hv_ring_buffer_debug_info outbound;
300
301 if (!hv_dev->channel)
302 return -ENODEV;
303 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
304 return sprintf(buf, "%d\n", outbound.current_read_index);
305}
306static DEVICE_ATTR_RO(out_read_index);
307
308static ssize_t out_write_index_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 struct hv_ring_buffer_debug_info outbound;
314
315 if (!hv_dev->channel)
316 return -ENODEV;
317 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
318 return sprintf(buf, "%d\n", outbound.current_write_index);
319}
320static DEVICE_ATTR_RO(out_write_index);
321
322static ssize_t out_read_bytes_avail_show(struct device *dev,
323 struct device_attribute *dev_attr,
324 char *buf)
325{
326 struct hv_device *hv_dev = device_to_hv_device(dev);
327 struct hv_ring_buffer_debug_info outbound;
328
329 if (!hv_dev->channel)
330 return -ENODEV;
331 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
332 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
333}
334static DEVICE_ATTR_RO(out_read_bytes_avail);
335
336static ssize_t out_write_bytes_avail_show(struct device *dev,
337 struct device_attribute *dev_attr,
338 char *buf)
339{
340 struct hv_device *hv_dev = device_to_hv_device(dev);
341 struct hv_ring_buffer_debug_info outbound;
342
343 if (!hv_dev->channel)
344 return -ENODEV;
345 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
346 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
347}
348static DEVICE_ATTR_RO(out_write_bytes_avail);
349
350static ssize_t in_intr_mask_show(struct device *dev,
351 struct device_attribute *dev_attr, char *buf)
352{
353 struct hv_device *hv_dev = device_to_hv_device(dev);
354 struct hv_ring_buffer_debug_info inbound;
355
356 if (!hv_dev->channel)
357 return -ENODEV;
358 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
359 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
360}
361static DEVICE_ATTR_RO(in_intr_mask);
362
363static ssize_t in_read_index_show(struct device *dev,
364 struct device_attribute *dev_attr, char *buf)
365{
366 struct hv_device *hv_dev = device_to_hv_device(dev);
367 struct hv_ring_buffer_debug_info inbound;
368
369 if (!hv_dev->channel)
370 return -ENODEV;
371 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
372 return sprintf(buf, "%d\n", inbound.current_read_index);
373}
374static DEVICE_ATTR_RO(in_read_index);
375
376static ssize_t in_write_index_show(struct device *dev,
377 struct device_attribute *dev_attr, char *buf)
378{
379 struct hv_device *hv_dev = device_to_hv_device(dev);
380 struct hv_ring_buffer_debug_info inbound;
381
382 if (!hv_dev->channel)
383 return -ENODEV;
384 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
385 return sprintf(buf, "%d\n", inbound.current_write_index);
386}
387static DEVICE_ATTR_RO(in_write_index);
388
389static ssize_t in_read_bytes_avail_show(struct device *dev,
390 struct device_attribute *dev_attr,
391 char *buf)
392{
393 struct hv_device *hv_dev = device_to_hv_device(dev);
394 struct hv_ring_buffer_debug_info inbound;
395
396 if (!hv_dev->channel)
397 return -ENODEV;
398 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
399 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
400}
401static DEVICE_ATTR_RO(in_read_bytes_avail);
402
403static ssize_t in_write_bytes_avail_show(struct device *dev,
404 struct device_attribute *dev_attr,
405 char *buf)
406{
407 struct hv_device *hv_dev = device_to_hv_device(dev);
408 struct hv_ring_buffer_debug_info inbound;
409
410 if (!hv_dev->channel)
411 return -ENODEV;
412 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
413 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
414}
415static DEVICE_ATTR_RO(in_write_bytes_avail);
416
417/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700418static struct attribute *vmbus_attrs[] = {
419 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700420 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700421 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700422 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700423 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700424 &dev_attr_modalias.attr,
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700425 &dev_attr_server_monitor_pending.attr,
426 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700427 &dev_attr_server_monitor_latency.attr,
428 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700429 &dev_attr_server_monitor_conn_id.attr,
430 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700431 &dev_attr_out_intr_mask.attr,
432 &dev_attr_out_read_index.attr,
433 &dev_attr_out_write_index.attr,
434 &dev_attr_out_read_bytes_avail.attr,
435 &dev_attr_out_write_bytes_avail.attr,
436 &dev_attr_in_intr_mask.attr,
437 &dev_attr_in_read_index.attr,
438 &dev_attr_in_write_index.attr,
439 &dev_attr_in_read_bytes_avail.attr,
440 &dev_attr_in_write_bytes_avail.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700441 NULL,
442};
443ATTRIBUTE_GROUPS(vmbus);
444
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700445/*
446 * vmbus_uevent - add uevent for our device
447 *
448 * This routine is invoked when a device is added or removed on the vmbus to
449 * generate a uevent to udev in the userspace. The udev will then look at its
450 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700451 *
452 * The alias string will be of the form vmbus:guid where guid is the string
453 * representation of the device guid (each byte of the guid will be
454 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700455 */
456static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
457{
458 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200459 int ret;
460 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700461
Olaf Heringfd776ba2011-09-02 18:25:56 +0200462 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700463 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
464 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700465}
466
stephen hemminger1b9d48f2014-06-03 08:38:15 -0700467static const uuid_le null_guid;
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700468
469static inline bool is_null_guid(const __u8 *guid)
470{
471 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
472 return false;
473 return true;
474}
475
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700476/*
477 * Return a matching hv_vmbus_device_id pointer.
478 * If there is no match, return NULL.
479 */
480static const struct hv_vmbus_device_id *hv_vmbus_get_id(
481 const struct hv_vmbus_device_id *id,
stephen hemminger1b9d48f2014-06-03 08:38:15 -0700482 const __u8 *guid)
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700483{
484 for (; !is_null_guid(id->guid); id++)
485 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
486 return id;
487
488 return NULL;
489}
490
491
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700492
493/*
494 * vmbus_match - Attempt to match the specified device to the specified driver
495 */
496static int vmbus_match(struct device *device, struct device_driver *driver)
497{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700498 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700499 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700500
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700501 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
502 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700503
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700504 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700505}
506
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700507/*
508 * vmbus_probe - Add the new vmbus's child device
509 */
510static int vmbus_probe(struct device *child_device)
511{
512 int ret = 0;
513 struct hv_driver *drv =
514 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700515 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700516 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700517
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700518 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700519 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700520 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700521 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700522 pr_err("probe failed for device %s (%d)\n",
523 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700524
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700525 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700526 pr_err("probe not set for driver %s\n",
527 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700528 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700529 }
530 return ret;
531}
532
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700533/*
534 * vmbus_remove - Remove a vmbus device
535 */
536static int vmbus_remove(struct device *child_device)
537{
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800538 struct hv_driver *drv;
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700539 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800540 u32 relid = dev->channel->offermsg.child_relid;
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700541
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800542 if (child_device->driver) {
543 drv = drv_to_hv_drv(child_device->driver);
544 if (drv->remove)
545 drv->remove(dev);
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800546 else {
547 hv_process_channel_removal(dev->channel, relid);
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800548 pr_err("remove not set for driver %s\n",
549 dev_name(child_device));
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -0800550 }
551 } else {
552 /*
553 * We don't have a driver for this device; deal with the
554 * rescind message by removing the channel.
555 */
556 hv_process_channel_removal(dev->channel, relid);
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800557 }
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700558
559 return 0;
560}
561
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700562
563/*
564 * vmbus_shutdown - Shutdown a vmbus device
565 */
566static void vmbus_shutdown(struct device *child_device)
567{
568 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700569 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700570
571
572 /* The device may not be attached yet */
573 if (!child_device->driver)
574 return;
575
576 drv = drv_to_hv_drv(child_device->driver);
577
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700578 if (drv->shutdown)
579 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700580
581 return;
582}
583
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700584
585/*
586 * vmbus_device_release - Final callback release of the vmbus child device
587 */
588static void vmbus_device_release(struct device *device)
589{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700590 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700591
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700592 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700593
594}
595
Bill Pemberton454f18a2009-07-27 16:47:24 -0400596/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700597static struct bus_type hv_bus = {
598 .name = "vmbus",
599 .match = vmbus_match,
600 .shutdown = vmbus_shutdown,
601 .remove = vmbus_remove,
602 .probe = vmbus_probe,
603 .uevent = vmbus_uevent,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700604 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700605};
606
Timo Teräsbf6506f2010-12-15 20:48:08 +0200607struct onmessage_work_context {
608 struct work_struct work;
609 struct hv_message msg;
610};
611
612static void vmbus_onmessage_work(struct work_struct *work)
613{
614 struct onmessage_work_context *ctx;
615
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -0800616 /* Do not process messages if we're in DISCONNECTED state */
617 if (vmbus_connection.conn_state == DISCONNECTED)
618 return;
619
Timo Teräsbf6506f2010-12-15 20:48:08 +0200620 ctx = container_of(work, struct onmessage_work_context,
621 work);
622 vmbus_onmessage(&ctx->msg);
623 kfree(ctx);
624}
625
kbuild test robotd8a60e02015-01-26 01:17:54 +0800626static void hv_process_timer_expiration(struct hv_message *msg, int cpu)
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800627{
628 struct clock_event_device *dev = hv_context.clk_evt[cpu];
629
630 if (dev->event_handler)
631 dev->event_handler(dev);
632
633 msg->header.message_type = HVMSG_NONE;
634
635 /*
636 * Make sure the write to MessageType (ie set to
637 * HVMSG_NONE) happens before we read the
638 * MessagePending and EOMing. Otherwise, the EOMing
639 * will not deliver any more messages since there is
640 * no empty slot
641 */
642 mb();
643
644 if (msg->header.message_flags.msg_pending) {
645 /*
646 * This will cause message queue rescan to
647 * possibly deliver another msg from the
648 * hypervisor
649 */
650 wrmsrl(HV_X64_MSR_EOM, 0);
651 }
652}
653
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800654static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800655{
656 int cpu = smp_processor_id();
657 void *page_addr = hv_context.synic_message_page[cpu];
658 struct hv_message *msg = (struct hv_message *)page_addr +
659 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200660 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800661
662 while (1) {
663 if (msg->header.message_type == HVMSG_NONE) {
664 /* no msg */
665 break;
666 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200667 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
668 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800669 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200670 INIT_WORK(&ctx->work, vmbus_onmessage_work);
671 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800672 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800673 }
674
675 msg->header.message_type = HVMSG_NONE;
676
677 /*
678 * Make sure the write to MessageType (ie set to
679 * HVMSG_NONE) happens before we read the
680 * MessagePending and EOMing. Otherwise, the EOMing
681 * will not deliver any more messages since there is
682 * no empty slot
683 */
Jason Wang35848f62013-06-18 13:04:23 +0800684 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800685
686 if (msg->header.message_flags.msg_pending) {
687 /*
688 * This will cause message queue rescan to
689 * possibly deliver another msg from the
690 * hypervisor
691 */
692 wrmsrl(HV_X64_MSR_EOM, 0);
693 }
694 }
695}
696
Thomas Gleixner76d388c2014-03-05 13:42:14 +0100697static void vmbus_isr(void)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800698{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800699 int cpu = smp_processor_id();
700 void *page_addr;
701 struct hv_message *msg;
702 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700703 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800704
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800705 page_addr = hv_context.synic_event_page[cpu];
706 if (page_addr == NULL)
Thomas Gleixner76d388c2014-03-05 13:42:14 +0100707 return;
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800708
709 event = (union hv_synic_event_flags *)page_addr +
710 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700711 /*
712 * Check for events before checking for messages. This is the order
713 * in which events and messages are checked in Windows guests on
714 * Hyper-V, and the Windows team suggested we do the same.
715 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800716
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800717 if ((vmbus_proto_version == VERSION_WS2008) ||
718 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800719
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800720 /* Since we are a child, we only need to check bit 0 */
721 if (sync_test_and_clear_bit(0,
722 (unsigned long *) &event->flags32[0])) {
723 handled = true;
724 }
725 } else {
726 /*
727 * Our host is win8 or above. The signaling mechanism
728 * has changed and we can directly look at the event page.
729 * If bit n is set then we have an interrup on the channel
730 * whose id is n.
731 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700732 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700733 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700734
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800735 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800736 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800737
738
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700739 page_addr = hv_context.synic_message_page[cpu];
740 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
741
742 /* Check if there are actual msgs to be processed */
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800743 if (msg->header.message_type != HVMSG_NONE) {
744 if (msg->header.message_type == HVMSG_TIMER_EXPIRED)
745 hv_process_timer_expiration(msg, cpu);
746 else
747 tasklet_schedule(&msg_dpc);
748 }
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700749}
750
Vitaly Kuznetsove5132292015-02-27 11:25:51 -0800751#ifdef CONFIG_HOTPLUG_CPU
752static int hyperv_cpu_disable(void)
753{
754 return -ENOSYS;
755}
756
757static void hv_cpu_hotplug_quirk(bool vmbus_loaded)
758{
759 static void *previous_cpu_disable;
760
761 /*
762 * Offlining a CPU when running on newer hypervisors (WS2012R2, Win8,
763 * ...) is not supported at this moment as channel interrupts are
764 * distributed across all of them.
765 */
766
767 if ((vmbus_proto_version == VERSION_WS2008) ||
768 (vmbus_proto_version == VERSION_WIN7))
769 return;
770
771 if (vmbus_loaded) {
772 previous_cpu_disable = smp_ops.cpu_disable;
773 smp_ops.cpu_disable = hyperv_cpu_disable;
774 pr_notice("CPU offlining is not supported by hypervisor\n");
775 } else if (previous_cpu_disable)
776 smp_ops.cpu_disable = previous_cpu_disable;
777}
778#else
779static void hv_cpu_hotplug_quirk(bool vmbus_loaded)
780{
781}
782#endif
783
Hank Janssen3e189512010-03-04 22:11:00 +0000784/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700785 * vmbus_bus_init -Main vmbus driver initialization routine.
786 *
787 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100788 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100789 * - invoke the vmbus hv main init routine
790 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100791 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700792 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700793static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700794{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700795 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800797 /* Hypervisor initialization...setup hypercall page..etc */
798 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700799 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700800 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700801 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700802 }
803
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700804 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700805
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700806 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700807 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700808 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700809
Thomas Gleixner76d388c2014-03-05 13:42:14 +0100810 hv_setup_vmbus_irq(vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700811
Jason Wang2608fb62013-06-19 11:28:10 +0800812 ret = hv_synic_alloc();
813 if (ret)
814 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700815 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800816 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700817 * connect to the host.
818 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800819 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700820 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700821 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800822 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700823
Vitaly Kuznetsove5132292015-02-27 11:25:51 -0800824 hv_cpu_hotplug_quirk(true);
Nick Meier96c1d052015-02-28 11:39:01 -0800825
826 /*
827 * Only register if the crash MSRs are available
828 */
829 if (ms_hyperv.features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
830 atomic_notifier_chain_register(&panic_notifier_list,
831 &hyperv_panic_block);
832 }
833
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800834 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000835
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700836 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700837
Jason Wang2608fb62013-06-19 11:28:10 +0800838err_alloc:
839 hv_synic_free();
Thomas Gleixner76d388c2014-03-05 13:42:14 +0100840 hv_remove_vmbus_irq();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700841
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700842 bus_unregister(&hv_bus);
843
844err_cleanup:
845 hv_cleanup();
846
847 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700848}
849
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700850/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700851 * __vmbus_child_driver_register - Register a vmbus's driver
852 * @drv: Pointer to driver structure you want to register
853 * @owner: owner module of the drv
854 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000855 *
856 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700857 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000858 * It will return the state of the 'driver_register()' call.
859 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700860 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700861int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700862{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400863 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700864
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700865 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700866
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800867 ret = vmbus_exists();
868 if (ret < 0)
869 return ret;
870
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700871 hv_driver->driver.name = hv_driver->name;
872 hv_driver->driver.owner = owner;
873 hv_driver->driver.mod_name = mod_name;
874 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700875
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700876 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700877
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400878 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700879}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700880EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700881
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700882/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700883 * vmbus_driver_unregister() - Unregister a vmbus's driver
884 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000885 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700886 * Un-register the given driver that was previous registered with a call to
887 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700888 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700889void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700890{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700891 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700892
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800893 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800894 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700895}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700896EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700897
Hank Janssen3e189512010-03-04 22:11:00 +0000898/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700899 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000900 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700901 */
stephen hemminger1b9d48f2014-06-03 08:38:15 -0700902struct hv_device *vmbus_device_create(const uuid_le *type,
903 const uuid_le *instance,
904 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700905{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200906 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700907
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800908 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
909 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700910 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700911 return NULL;
912 }
913
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700914 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700915 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800916 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700917 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700918
Hank Janssen3e7ee492009-07-13 16:02:34 -0700919
Hank Janssen3e7ee492009-07-13 16:02:34 -0700920 return child_device_obj;
921}
922
Hank Janssen3e189512010-03-04 22:11:00 +0000923/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700924 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700925 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700926int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700927{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700928 int ret = 0;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800929
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800930 dev_set_name(&child_device_obj->device, "vmbus_%d",
931 child_device_obj->channel->id);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700932
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700933 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700934 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800935 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700936
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700937 /*
938 * Register with the LDM. This will kick off the driver/device
939 * binding...which will eventually call vmbus_match() and vmbus_probe()
940 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800941 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700942
Hank Janssen3e7ee492009-07-13 16:02:34 -0700943 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700944 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700945 else
Fernando Soto84672362013-06-14 23:13:35 +0000946 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700947 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700948
Hank Janssen3e7ee492009-07-13 16:02:34 -0700949 return ret;
950}
951
Hank Janssen3e189512010-03-04 22:11:00 +0000952/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700953 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000954 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700955 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700956void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700957{
Fernando Soto84672362013-06-14 23:13:35 +0000958 pr_debug("child device %s unregistered\n",
959 dev_name(&device_obj->device));
960
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700961 /*
962 * Kick off the process of unregistering the device.
963 * This will call vmbus_remove() and eventually vmbus_device_release()
964 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800965 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700966}
967
Hank Janssen3e7ee492009-07-13 16:02:34 -0700968
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700969/*
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800970 * VMBUS is an acpi enumerated device. Get the the information we
971 * need from DSDT.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700972 */
973
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800974static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700975{
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800976 switch (res->type) {
977 case ACPI_RESOURCE_TYPE_IRQ:
978 irq = res->data.irq.interrupts[0];
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +0100979 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700980
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800981 case ACPI_RESOURCE_TYPE_ADDRESS64:
Lv Zhenga45de932015-01-26 16:58:56 +0800982 hyperv_mmio.start = res->data.address64.address.minimum;
983 hyperv_mmio.end = res->data.address64.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +0100984 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700985 }
986
987 return AE_OK;
988}
989
990static int vmbus_acpi_add(struct acpi_device *device)
991{
992 acpi_status result;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800993 int ret_val = -ENODEV;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700994
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700995 hv_acpi_dev = device;
996
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700997 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800998 vmbus_walk_resources, NULL);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700999
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08001000 if (ACPI_FAILURE(result))
1001 goto acpi_walk_err;
1002 /*
1003 * The parent of the vmbus acpi device (Gen2 firmware) is the VMOD that
1004 * has the mmio ranges. Get that.
1005 */
1006 if (device->parent) {
1007 result = acpi_walk_resources(device->parent->handle,
1008 METHOD_NAME__CRS,
1009 vmbus_walk_resources, NULL);
1010
1011 if (ACPI_FAILURE(result))
1012 goto acpi_walk_err;
Gerd Hoffmann90eedf02014-02-24 14:17:09 +01001013 if (hyperv_mmio.start && hyperv_mmio.end)
1014 request_resource(&iomem_resource, &hyperv_mmio);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001015 }
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08001016 ret_val = 0;
1017
1018acpi_walk_err:
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001019 complete(&probe_event);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08001020 return ret_val;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001021}
1022
1023static const struct acpi_device_id vmbus_acpi_device_ids[] = {
1024 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -07001025 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001026 {"", 0},
1027};
1028MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
1029
1030static struct acpi_driver vmbus_acpi_driver = {
1031 .name = "vmbus",
1032 .ids = vmbus_acpi_device_ids,
1033 .ops = {
1034 .add = vmbus_acpi_add,
1035 },
1036};
1037
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07001038static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07001039{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07001040 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001041
Jason Wang1f94ea82012-08-31 13:32:44 +08001042 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +08001043 return -ENODEV;
1044
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001045 init_completion(&probe_event);
1046
1047 /*
1048 * Get irq resources first.
1049 */
K. Y. Srinivasan02466042011-06-06 15:49:40 -07001050 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
1051
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001052 if (ret)
1053 return ret;
1054
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07001055 t = wait_for_completion_timeout(&probe_event, 5*HZ);
1056 if (t == 0) {
1057 ret = -ETIMEDOUT;
1058 goto cleanup;
1059 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001060
1061 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07001062 ret = -ENODEV;
1063 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07001064 }
1065
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07001066 ret = vmbus_bus_init(irq);
1067 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07001068 goto cleanup;
1069
1070 return 0;
1071
1072cleanup:
1073 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08001074 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07001075 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07001076}
1077
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001078static void __exit vmbus_exit(void)
1079{
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -08001080 int cpu;
1081
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08001082 vmbus_connection.conn_state = DISCONNECTED;
Vitaly Kuznetsove0867482015-02-27 11:25:57 -08001083 hv_synic_clockevents_cleanup();
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001084 hv_remove_vmbus_irq();
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001085 vmbus_free_channels();
1086 bus_unregister(&hv_bus);
1087 hv_cleanup();
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -08001088 for_each_online_cpu(cpu)
1089 smp_call_function_single(cpu, hv_synic_cleanup, NULL, 1);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001090 acpi_bus_unregister_driver(&vmbus_acpi_driver);
Vitaly Kuznetsove5132292015-02-27 11:25:51 -08001091 hv_cpu_hotplug_quirk(false);
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08001092 vmbus_disconnect();
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001093}
1094
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07001095
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001096MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -07001097
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -07001098subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001099module_exit(vmbus_exit);