blob: 2352ae481e8719d9686d2f6f24406971361bb3d8 [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>
28#include <linux/irq.h>
29#include <linux/interrupt.h>
30#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070032#include <linux/acpi.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000033#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070034#include <linux/hyperv.h>
K. Y. Srinivasanb0209502012-12-01 06:46:54 -080035#include <linux/kernel_stat.h>
Greg Kroah-Hartman407dd1642011-10-11 08:36:44 -060036#include <asm/hyperv.h>
Jason Wang1f94ea82012-08-31 13:32:44 +080037#include <asm/hypervisor.h>
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -080038#include <asm/mshyperv.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070039#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070040
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -070041static struct acpi_device *hv_acpi_dev;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -070042
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -070043static struct tasklet_struct msg_dpc;
K. Y. Srinivasan71a66552011-04-29 13:45:04 -070044static struct completion probe_event;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070045static int irq;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -080046u64 hyperv_mmio_start;
47EXPORT_SYMBOL_GPL(hyperv_mmio_start);
48u64 hyperv_mmio_size;
49EXPORT_SYMBOL_GPL(hyperv_mmio_size);
Hank Janssen3e7ee492009-07-13 16:02:34 -070050
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080051static int vmbus_exists(void)
52{
53 if (hv_acpi_dev == NULL)
54 return -ENODEV;
55
56 return 0;
57}
58
Olaf Heringfd776ba2011-09-02 18:25:56 +020059#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
60static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
61{
62 int i;
63 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
64 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
65}
66
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -070067static u8 channel_monitor_group(struct vmbus_channel *channel)
68{
69 return (u8)channel->offermsg.monitorid / 32;
70}
71
72static u8 channel_monitor_offset(struct vmbus_channel *channel)
73{
74 return (u8)channel->offermsg.monitorid % 32;
75}
76
77static u32 channel_pending(struct vmbus_channel *channel,
78 struct hv_monitor_page *monitor_page)
79{
80 u8 monitor_group = channel_monitor_group(channel);
81 return monitor_page->trigger_group[monitor_group].pending;
82}
83
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -070084static u32 channel_latency(struct vmbus_channel *channel,
85 struct hv_monitor_page *monitor_page)
86{
87 u8 monitor_group = channel_monitor_group(channel);
88 u8 monitor_offset = channel_monitor_offset(channel);
89 return monitor_page->latency[monitor_group][monitor_offset];
90}
91
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -070092static u32 channel_conn_id(struct vmbus_channel *channel,
93 struct hv_monitor_page *monitor_page)
94{
95 u8 monitor_group = channel_monitor_group(channel);
96 u8 monitor_offset = channel_monitor_offset(channel);
97 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
98}
99
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700100static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
101 char *buf)
102{
103 struct hv_device *hv_dev = device_to_hv_device(dev);
104
105 if (!hv_dev->channel)
106 return -ENODEV;
107 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
108}
109static DEVICE_ATTR_RO(id);
110
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700111static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
112 char *buf)
113{
114 struct hv_device *hv_dev = device_to_hv_device(dev);
115
116 if (!hv_dev->channel)
117 return -ENODEV;
118 return sprintf(buf, "%d\n", hv_dev->channel->state);
119}
120static DEVICE_ATTR_RO(state);
121
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700122static ssize_t monitor_id_show(struct device *dev,
123 struct device_attribute *dev_attr, char *buf)
124{
125 struct hv_device *hv_dev = device_to_hv_device(dev);
126
127 if (!hv_dev->channel)
128 return -ENODEV;
129 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
130}
131static DEVICE_ATTR_RO(monitor_id);
132
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700133static ssize_t class_id_show(struct device *dev,
134 struct device_attribute *dev_attr, char *buf)
135{
136 struct hv_device *hv_dev = device_to_hv_device(dev);
137
138 if (!hv_dev->channel)
139 return -ENODEV;
140 return sprintf(buf, "{%pUl}\n",
141 hv_dev->channel->offermsg.offer.if_type.b);
142}
143static DEVICE_ATTR_RO(class_id);
144
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700145static ssize_t device_id_show(struct device *dev,
146 struct device_attribute *dev_attr, char *buf)
147{
148 struct hv_device *hv_dev = device_to_hv_device(dev);
149
150 if (!hv_dev->channel)
151 return -ENODEV;
152 return sprintf(buf, "{%pUl}\n",
153 hv_dev->channel->offermsg.offer.if_instance.b);
154}
155static DEVICE_ATTR_RO(device_id);
156
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700157static ssize_t modalias_show(struct device *dev,
158 struct device_attribute *dev_attr, char *buf)
159{
160 struct hv_device *hv_dev = device_to_hv_device(dev);
161 char alias_name[VMBUS_ALIAS_LEN + 1];
162
163 print_alias_name(hv_dev, alias_name);
164 return sprintf(buf, "vmbus:%s\n", alias_name);
165}
166static DEVICE_ATTR_RO(modalias);
167
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700168static ssize_t server_monitor_pending_show(struct device *dev,
169 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",
177 channel_pending(hv_dev->channel,
178 vmbus_connection.monitor_pages[1]));
179}
180static DEVICE_ATTR_RO(server_monitor_pending);
181
182static ssize_t client_monitor_pending_show(struct device *dev,
183 struct device_attribute *dev_attr,
184 char *buf)
185{
186 struct hv_device *hv_dev = device_to_hv_device(dev);
187
188 if (!hv_dev->channel)
189 return -ENODEV;
190 return sprintf(buf, "%d\n",
191 channel_pending(hv_dev->channel,
192 vmbus_connection.monitor_pages[1]));
193}
194static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700195
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700196static ssize_t server_monitor_latency_show(struct device *dev,
197 struct device_attribute *dev_attr,
198 char *buf)
199{
200 struct hv_device *hv_dev = device_to_hv_device(dev);
201
202 if (!hv_dev->channel)
203 return -ENODEV;
204 return sprintf(buf, "%d\n",
205 channel_latency(hv_dev->channel,
206 vmbus_connection.monitor_pages[0]));
207}
208static DEVICE_ATTR_RO(server_monitor_latency);
209
210static ssize_t client_monitor_latency_show(struct device *dev,
211 struct device_attribute *dev_attr,
212 char *buf)
213{
214 struct hv_device *hv_dev = device_to_hv_device(dev);
215
216 if (!hv_dev->channel)
217 return -ENODEV;
218 return sprintf(buf, "%d\n",
219 channel_latency(hv_dev->channel,
220 vmbus_connection.monitor_pages[1]));
221}
222static DEVICE_ATTR_RO(client_monitor_latency);
223
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700224static ssize_t server_monitor_conn_id_show(struct device *dev,
225 struct device_attribute *dev_attr,
226 char *buf)
227{
228 struct hv_device *hv_dev = device_to_hv_device(dev);
229
230 if (!hv_dev->channel)
231 return -ENODEV;
232 return sprintf(buf, "%d\n",
233 channel_conn_id(hv_dev->channel,
234 vmbus_connection.monitor_pages[0]));
235}
236static DEVICE_ATTR_RO(server_monitor_conn_id);
237
238static ssize_t client_monitor_conn_id_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_conn_id(hv_dev->channel,
248 vmbus_connection.monitor_pages[1]));
249}
250static DEVICE_ATTR_RO(client_monitor_conn_id);
251
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700252static ssize_t out_intr_mask_show(struct device *dev,
253 struct device_attribute *dev_attr, char *buf)
254{
255 struct hv_device *hv_dev = device_to_hv_device(dev);
256 struct hv_ring_buffer_debug_info outbound;
257
258 if (!hv_dev->channel)
259 return -ENODEV;
260 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
261 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
262}
263static DEVICE_ATTR_RO(out_intr_mask);
264
265static ssize_t out_read_index_show(struct device *dev,
266 struct device_attribute *dev_attr, char *buf)
267{
268 struct hv_device *hv_dev = device_to_hv_device(dev);
269 struct hv_ring_buffer_debug_info outbound;
270
271 if (!hv_dev->channel)
272 return -ENODEV;
273 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
274 return sprintf(buf, "%d\n", outbound.current_read_index);
275}
276static DEVICE_ATTR_RO(out_read_index);
277
278static ssize_t out_write_index_show(struct device *dev,
279 struct device_attribute *dev_attr,
280 char *buf)
281{
282 struct hv_device *hv_dev = device_to_hv_device(dev);
283 struct hv_ring_buffer_debug_info outbound;
284
285 if (!hv_dev->channel)
286 return -ENODEV;
287 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
288 return sprintf(buf, "%d\n", outbound.current_write_index);
289}
290static DEVICE_ATTR_RO(out_write_index);
291
292static ssize_t out_read_bytes_avail_show(struct device *dev,
293 struct device_attribute *dev_attr,
294 char *buf)
295{
296 struct hv_device *hv_dev = device_to_hv_device(dev);
297 struct hv_ring_buffer_debug_info outbound;
298
299 if (!hv_dev->channel)
300 return -ENODEV;
301 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
302 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
303}
304static DEVICE_ATTR_RO(out_read_bytes_avail);
305
306static ssize_t out_write_bytes_avail_show(struct device *dev,
307 struct device_attribute *dev_attr,
308 char *buf)
309{
310 struct hv_device *hv_dev = device_to_hv_device(dev);
311 struct hv_ring_buffer_debug_info outbound;
312
313 if (!hv_dev->channel)
314 return -ENODEV;
315 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
316 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
317}
318static DEVICE_ATTR_RO(out_write_bytes_avail);
319
320static ssize_t in_intr_mask_show(struct device *dev,
321 struct device_attribute *dev_attr, char *buf)
322{
323 struct hv_device *hv_dev = device_to_hv_device(dev);
324 struct hv_ring_buffer_debug_info inbound;
325
326 if (!hv_dev->channel)
327 return -ENODEV;
328 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
329 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
330}
331static DEVICE_ATTR_RO(in_intr_mask);
332
333static ssize_t in_read_index_show(struct device *dev,
334 struct device_attribute *dev_attr, char *buf)
335{
336 struct hv_device *hv_dev = device_to_hv_device(dev);
337 struct hv_ring_buffer_debug_info inbound;
338
339 if (!hv_dev->channel)
340 return -ENODEV;
341 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
342 return sprintf(buf, "%d\n", inbound.current_read_index);
343}
344static DEVICE_ATTR_RO(in_read_index);
345
346static ssize_t in_write_index_show(struct device *dev,
347 struct device_attribute *dev_attr, char *buf)
348{
349 struct hv_device *hv_dev = device_to_hv_device(dev);
350 struct hv_ring_buffer_debug_info inbound;
351
352 if (!hv_dev->channel)
353 return -ENODEV;
354 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
355 return sprintf(buf, "%d\n", inbound.current_write_index);
356}
357static DEVICE_ATTR_RO(in_write_index);
358
359static ssize_t in_read_bytes_avail_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 inbound;
365
366 if (!hv_dev->channel)
367 return -ENODEV;
368 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
369 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
370}
371static DEVICE_ATTR_RO(in_read_bytes_avail);
372
373static ssize_t in_write_bytes_avail_show(struct device *dev,
374 struct device_attribute *dev_attr,
375 char *buf)
376{
377 struct hv_device *hv_dev = device_to_hv_device(dev);
378 struct hv_ring_buffer_debug_info inbound;
379
380 if (!hv_dev->channel)
381 return -ENODEV;
382 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
383 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
384}
385static DEVICE_ATTR_RO(in_write_bytes_avail);
386
387/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700388static struct attribute *vmbus_attrs[] = {
389 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700390 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700391 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700392 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700393 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700394 &dev_attr_modalias.attr,
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700395 &dev_attr_server_monitor_pending.attr,
396 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700397 &dev_attr_server_monitor_latency.attr,
398 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700399 &dev_attr_server_monitor_conn_id.attr,
400 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700401 &dev_attr_out_intr_mask.attr,
402 &dev_attr_out_read_index.attr,
403 &dev_attr_out_write_index.attr,
404 &dev_attr_out_read_bytes_avail.attr,
405 &dev_attr_out_write_bytes_avail.attr,
406 &dev_attr_in_intr_mask.attr,
407 &dev_attr_in_read_index.attr,
408 &dev_attr_in_write_index.attr,
409 &dev_attr_in_read_bytes_avail.attr,
410 &dev_attr_in_write_bytes_avail.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700411 NULL,
412};
413ATTRIBUTE_GROUPS(vmbus);
414
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700415/*
416 * vmbus_uevent - add uevent for our device
417 *
418 * This routine is invoked when a device is added or removed on the vmbus to
419 * generate a uevent to udev in the userspace. The udev will then look at its
420 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700421 *
422 * The alias string will be of the form vmbus:guid where guid is the string
423 * representation of the device guid (each byte of the guid will be
424 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700425 */
426static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
427{
428 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200429 int ret;
430 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700431
Olaf Heringfd776ba2011-09-02 18:25:56 +0200432 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700433 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
434 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700435}
436
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700437static uuid_le null_guid;
438
439static inline bool is_null_guid(const __u8 *guid)
440{
441 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
442 return false;
443 return true;
444}
445
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700446/*
447 * Return a matching hv_vmbus_device_id pointer.
448 * If there is no match, return NULL.
449 */
450static const struct hv_vmbus_device_id *hv_vmbus_get_id(
451 const struct hv_vmbus_device_id *id,
452 __u8 *guid)
453{
454 for (; !is_null_guid(id->guid); id++)
455 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
456 return id;
457
458 return NULL;
459}
460
461
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700462
463/*
464 * vmbus_match - Attempt to match the specified device to the specified driver
465 */
466static int vmbus_match(struct device *device, struct device_driver *driver)
467{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700468 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700469 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700470
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700471 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
472 return 1;
K. Y. Srinivasande632a2b2011-04-26 09:20:24 -0700473
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700474 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700475}
476
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700477/*
478 * vmbus_probe - Add the new vmbus's child device
479 */
480static int vmbus_probe(struct device *child_device)
481{
482 int ret = 0;
483 struct hv_driver *drv =
484 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700485 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700486 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700487
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700488 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700489 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700490 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700491 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700492 pr_err("probe failed for device %s (%d)\n",
493 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700494
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700495 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700496 pr_err("probe not set for driver %s\n",
497 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700498 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700499 }
500 return ret;
501}
502
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700503/*
504 * vmbus_remove - Remove a vmbus device
505 */
506static int vmbus_remove(struct device *child_device)
507{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700508 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700509 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700510
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700511 if (drv->remove)
512 drv->remove(dev);
513 else
514 pr_err("remove not set for driver %s\n",
515 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700516
517 return 0;
518}
519
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700520
521/*
522 * vmbus_shutdown - Shutdown a vmbus device
523 */
524static void vmbus_shutdown(struct device *child_device)
525{
526 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700527 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700528
529
530 /* The device may not be attached yet */
531 if (!child_device->driver)
532 return;
533
534 drv = drv_to_hv_drv(child_device->driver);
535
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700536 if (drv->shutdown)
537 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700538
539 return;
540}
541
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700542
543/*
544 * vmbus_device_release - Final callback release of the vmbus child device
545 */
546static void vmbus_device_release(struct device *device)
547{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700548 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700549
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700550 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700551
552}
553
Bill Pemberton454f18a2009-07-27 16:47:24 -0400554/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700555static struct bus_type hv_bus = {
556 .name = "vmbus",
557 .match = vmbus_match,
558 .shutdown = vmbus_shutdown,
559 .remove = vmbus_remove,
560 .probe = vmbus_probe,
561 .uevent = vmbus_uevent,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700562 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700563};
564
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800565static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800566
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800567
Timo Teräsbf6506f2010-12-15 20:48:08 +0200568struct onmessage_work_context {
569 struct work_struct work;
570 struct hv_message msg;
571};
572
573static void vmbus_onmessage_work(struct work_struct *work)
574{
575 struct onmessage_work_context *ctx;
576
577 ctx = container_of(work, struct onmessage_work_context,
578 work);
579 vmbus_onmessage(&ctx->msg);
580 kfree(ctx);
581}
582
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800583static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800584{
585 int cpu = smp_processor_id();
586 void *page_addr = hv_context.synic_message_page[cpu];
587 struct hv_message *msg = (struct hv_message *)page_addr +
588 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200589 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800590
591 while (1) {
592 if (msg->header.message_type == HVMSG_NONE) {
593 /* no msg */
594 break;
595 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200596 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
597 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800598 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200599 INIT_WORK(&ctx->work, vmbus_onmessage_work);
600 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800601 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800602 }
603
604 msg->header.message_type = HVMSG_NONE;
605
606 /*
607 * Make sure the write to MessageType (ie set to
608 * HVMSG_NONE) happens before we read the
609 * MessagePending and EOMing. Otherwise, the EOMing
610 * will not deliver any more messages since there is
611 * no empty slot
612 */
Jason Wang35848f62013-06-18 13:04:23 +0800613 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800614
615 if (msg->header.message_flags.msg_pending) {
616 /*
617 * This will cause message queue rescan to
618 * possibly deliver another msg from the
619 * hypervisor
620 */
621 wrmsrl(HV_X64_MSR_EOM, 0);
622 }
623 }
624}
625
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700626static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800627{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800628 int cpu = smp_processor_id();
629 void *page_addr;
630 struct hv_message *msg;
631 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700632 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800633
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800634 page_addr = hv_context.synic_event_page[cpu];
635 if (page_addr == NULL)
636 return IRQ_NONE;
637
638 event = (union hv_synic_event_flags *)page_addr +
639 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700640 /*
641 * Check for events before checking for messages. This is the order
642 * in which events and messages are checked in Windows guests on
643 * Hyper-V, and the Windows team suggested we do the same.
644 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800645
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -0800646 if ((vmbus_proto_version == VERSION_WS2008) ||
647 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800648
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -0800649 /* Since we are a child, we only need to check bit 0 */
650 if (sync_test_and_clear_bit(0,
651 (unsigned long *) &event->flags32[0])) {
652 handled = true;
653 }
654 } else {
655 /*
656 * Our host is win8 or above. The signaling mechanism
657 * has changed and we can directly look at the event page.
658 * If bit n is set then we have an interrup on the channel
659 * whose id is n.
660 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700661 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700662 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700663
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -0800664 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800665 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -0800666
667
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700668 page_addr = hv_context.synic_message_page[cpu];
669 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
670
671 /* Check if there are actual msgs to be processed */
672 if (msg->header.message_type != HVMSG_NONE) {
673 handled = true;
674 tasklet_schedule(&msg_dpc);
675 }
676
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700677 if (handled)
678 return IRQ_HANDLED;
679 else
680 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700681}
682
Hank Janssen3e189512010-03-04 22:11:00 +0000683/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800684 * vmbus interrupt flow handler:
685 * vmbus interrupts can concurrently occur on multiple CPUs and
686 * can be handled concurrently.
687 */
688
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800689static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800690{
691 kstat_incr_irqs_this_cpu(irq, desc);
692
693 desc->action->handler(irq, desc->action->dev_id);
694}
695
696/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700697 * vmbus_bus_init -Main vmbus driver initialization routine.
698 *
699 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100700 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100701 * - invoke the vmbus hv main init routine
702 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100703 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700704 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700705static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700706{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700707 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700708
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800709 /* Hypervisor initialization...setup hypercall page..etc */
710 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700711 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700712 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700713 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700714 }
715
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700716 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700717
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700718 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700719 if (ret)
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -0700720 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700721
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400722 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700723
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700724 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700725 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700726 irq);
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -0700727 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700728 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700729
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800730 /*
731 * Vmbus interrupts can be handled concurrently on
732 * different CPUs. Establish an appropriate interrupt flow
733 * handler that can support this model.
734 */
735 irq_set_handler(irq, vmbus_flow_handler);
736
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800737 /*
738 * Register our interrupt handler.
739 */
740 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700741
Jason Wang2608fb62013-06-19 11:28:10 +0800742 ret = hv_synic_alloc();
743 if (ret)
744 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700745 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800746 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700747 * connect to the host.
748 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800749 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700750 ret = vmbus_connect();
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -0700751 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800752 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700753
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800754 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000755
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700756 return 0;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -0700757
Jason Wang2608fb62013-06-19 11:28:10 +0800758err_alloc:
759 hv_synic_free();
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -0700760 free_irq(irq, hv_acpi_dev);
761
762err_unregister:
763 bus_unregister(&hv_bus);
764
765err_cleanup:
766 hv_cleanup();
767
768 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700769}
770
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700771/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700772 * __vmbus_child_driver_register - Register a vmbus's driver
773 * @drv: Pointer to driver structure you want to register
774 * @owner: owner module of the drv
775 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000776 *
777 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700778 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000779 * It will return the state of the 'driver_register()' call.
780 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700781 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700782int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700783{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400784 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700785
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700786 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700787
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800788 ret = vmbus_exists();
789 if (ret < 0)
790 return ret;
791
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700792 hv_driver->driver.name = hv_driver->name;
793 hv_driver->driver.owner = owner;
794 hv_driver->driver.mod_name = mod_name;
795 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700797 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700798
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400799 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700800}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700801EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700802
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700803/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700804 * vmbus_driver_unregister() - Unregister a vmbus's driver
805 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000806 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700807 * Un-register the given driver that was previous registered with a call to
808 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700809 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700810void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700811{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700812 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700813
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800814 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800815 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700816}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700817EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700818
Hank Janssen3e189512010-03-04 22:11:00 +0000819/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700820 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000821 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700822 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700823struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700824 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800825 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700826{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200827 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700828
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800829 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
830 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700831 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700832 return NULL;
833 }
834
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700835 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700836 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800837 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700838 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700839
Hank Janssen3e7ee492009-07-13 16:02:34 -0700840
Hank Janssen3e7ee492009-07-13 16:02:34 -0700841 return child_device_obj;
842}
843
Hank Janssen3e189512010-03-04 22:11:00 +0000844/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700845 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700846 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700847int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700848{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700849 int ret = 0;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800850
Bill Pembertonf4888412009-07-29 17:00:12 -0400851 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700852
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800853 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700854 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700855
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700856 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700857 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800858 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700859
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700860 /*
861 * Register with the LDM. This will kick off the driver/device
862 * binding...which will eventually call vmbus_match() and vmbus_probe()
863 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800864 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700865
Hank Janssen3e7ee492009-07-13 16:02:34 -0700866 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700867 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700868 else
Fernando Soto84672362013-06-14 23:13:35 +0000869 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700870 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700871
Hank Janssen3e7ee492009-07-13 16:02:34 -0700872 return ret;
873}
874
Hank Janssen3e189512010-03-04 22:11:00 +0000875/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700876 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000877 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700878 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700879void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700880{
Fernando Soto84672362013-06-14 23:13:35 +0000881 pr_debug("child device %s unregistered\n",
882 dev_name(&device_obj->device));
883
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700884 /*
885 * Kick off the process of unregistering the device.
886 * This will call vmbus_remove() and eventually vmbus_device_release()
887 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800888 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700889}
890
Hank Janssen3e7ee492009-07-13 16:02:34 -0700891
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700892/*
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800893 * VMBUS is an acpi enumerated device. Get the the information we
894 * need from DSDT.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700895 */
896
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800897static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700898{
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800899 switch (res->type) {
900 case ACPI_RESOURCE_TYPE_IRQ:
901 irq = res->data.irq.interrupts[0];
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +0100902 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700903
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800904 case ACPI_RESOURCE_TYPE_ADDRESS64:
905 hyperv_mmio_start = res->data.address64.minimum;
906 hyperv_mmio_size = res->data.address64.address_length;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +0100907 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700908 }
909
910 return AE_OK;
911}
912
913static int vmbus_acpi_add(struct acpi_device *device)
914{
915 acpi_status result;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800916 int ret_val = -ENODEV;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700917
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700918 hv_acpi_dev = device;
919
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700920 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800921 vmbus_walk_resources, NULL);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700922
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800923 if (ACPI_FAILURE(result))
924 goto acpi_walk_err;
925 /*
926 * The parent of the vmbus acpi device (Gen2 firmware) is the VMOD that
927 * has the mmio ranges. Get that.
928 */
929 if (device->parent) {
930 result = acpi_walk_resources(device->parent->handle,
931 METHOD_NAME__CRS,
932 vmbus_walk_resources, NULL);
933
934 if (ACPI_FAILURE(result))
935 goto acpi_walk_err;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700936 }
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800937 ret_val = 0;
938
939acpi_walk_err:
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700940 complete(&probe_event);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800941 return ret_val;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700942}
943
944static const struct acpi_device_id vmbus_acpi_device_ids[] = {
945 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700946 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700947 {"", 0},
948};
949MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
950
951static struct acpi_driver vmbus_acpi_driver = {
952 .name = "vmbus",
953 .ids = vmbus_acpi_device_ids,
954 .ops = {
955 .add = vmbus_acpi_add,
956 },
957};
958
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700959static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700960{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700961 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700962
Jason Wang1f94ea82012-08-31 13:32:44 +0800963 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800964 return -ENODEV;
965
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700966 init_completion(&probe_event);
967
968 /*
969 * Get irq resources first.
970 */
971
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700972 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
973
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700974 if (ret)
975 return ret;
976
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700977 t = wait_for_completion_timeout(&probe_event, 5*HZ);
978 if (t == 0) {
979 ret = -ETIMEDOUT;
980 goto cleanup;
981 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700982
983 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700984 ret = -ENODEV;
985 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700986 }
987
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700988 ret = vmbus_bus_init(irq);
989 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700990 goto cleanup;
991
992 return 0;
993
994cleanup:
995 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800996 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700997 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700998}
999
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001000static void __exit vmbus_exit(void)
1001{
1002
1003 free_irq(irq, hv_acpi_dev);
1004 vmbus_free_channels();
1005 bus_unregister(&hv_bus);
1006 hv_cleanup();
1007 acpi_bus_unregister_driver(&vmbus_acpi_driver);
1008}
1009
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07001010
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001011MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -07001012
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -07001013subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001014module_exit(vmbus_exit);