blob: 48aad4faea068e88cbe61976aa3444d9c8a80a58 [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>
33#include <acpi/acpi_bus.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000034#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070035#include <linux/hyperv.h>
K. Y. Srinivasanb0209502012-12-01 06:46:54 -080036#include <linux/kernel_stat.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>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070040#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070041
Hank Janssen3e7ee492009-07-13 16:02:34 -070042
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. Srinivasan59c0e4f2011-04-29 13:45:06 -070045static struct tasklet_struct msg_dpc;
K. Y. Srinivasan71a66552011-04-29 13:45:04 -070046static struct completion probe_event;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070047static int irq;
Hank Janssen3e7ee492009-07-13 16:02:34 -070048
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080049static int vmbus_exists(void)
50{
51 if (hv_acpi_dev == NULL)
52 return -ENODEV;
53
54 return 0;
55}
56
Olaf Heringfd776ba2011-09-02 18:25:56 +020057#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
58static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
59{
60 int i;
61 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
62 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
63}
64
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -070065static u8 channel_monitor_group(struct vmbus_channel *channel)
66{
67 return (u8)channel->offermsg.monitorid / 32;
68}
69
70static u8 channel_monitor_offset(struct vmbus_channel *channel)
71{
72 return (u8)channel->offermsg.monitorid % 32;
73}
74
75static u32 channel_pending(struct vmbus_channel *channel,
76 struct hv_monitor_page *monitor_page)
77{
78 u8 monitor_group = channel_monitor_group(channel);
79 return monitor_page->trigger_group[monitor_group].pending;
80}
81
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -070082static u32 channel_latency(struct vmbus_channel *channel,
83 struct hv_monitor_page *monitor_page)
84{
85 u8 monitor_group = channel_monitor_group(channel);
86 u8 monitor_offset = channel_monitor_offset(channel);
87 return monitor_page->latency[monitor_group][monitor_offset];
88}
89
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -070090static u32 channel_conn_id(struct vmbus_channel *channel,
91 struct hv_monitor_page *monitor_page)
92{
93 u8 monitor_group = channel_monitor_group(channel);
94 u8 monitor_offset = channel_monitor_offset(channel);
95 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
96}
97
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -070098static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
99 char *buf)
100{
101 struct hv_device *hv_dev = device_to_hv_device(dev);
102
103 if (!hv_dev->channel)
104 return -ENODEV;
105 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
106}
107static DEVICE_ATTR_RO(id);
108
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700109static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
110 char *buf)
111{
112 struct hv_device *hv_dev = device_to_hv_device(dev);
113
114 if (!hv_dev->channel)
115 return -ENODEV;
116 return sprintf(buf, "%d\n", hv_dev->channel->state);
117}
118static DEVICE_ATTR_RO(state);
119
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700120static ssize_t monitor_id_show(struct device *dev,
121 struct device_attribute *dev_attr, char *buf)
122{
123 struct hv_device *hv_dev = device_to_hv_device(dev);
124
125 if (!hv_dev->channel)
126 return -ENODEV;
127 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
128}
129static DEVICE_ATTR_RO(monitor_id);
130
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700131static ssize_t class_id_show(struct device *dev,
132 struct device_attribute *dev_attr, char *buf)
133{
134 struct hv_device *hv_dev = device_to_hv_device(dev);
135
136 if (!hv_dev->channel)
137 return -ENODEV;
138 return sprintf(buf, "{%pUl}\n",
139 hv_dev->channel->offermsg.offer.if_type.b);
140}
141static DEVICE_ATTR_RO(class_id);
142
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700143static ssize_t device_id_show(struct device *dev,
144 struct device_attribute *dev_attr, char *buf)
145{
146 struct hv_device *hv_dev = device_to_hv_device(dev);
147
148 if (!hv_dev->channel)
149 return -ENODEV;
150 return sprintf(buf, "{%pUl}\n",
151 hv_dev->channel->offermsg.offer.if_instance.b);
152}
153static DEVICE_ATTR_RO(device_id);
154
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700155static ssize_t modalias_show(struct device *dev,
156 struct device_attribute *dev_attr, char *buf)
157{
158 struct hv_device *hv_dev = device_to_hv_device(dev);
159 char alias_name[VMBUS_ALIAS_LEN + 1];
160
161 print_alias_name(hv_dev, alias_name);
162 return sprintf(buf, "vmbus:%s\n", alias_name);
163}
164static DEVICE_ATTR_RO(modalias);
165
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700166static ssize_t server_monitor_pending_show(struct device *dev,
167 struct device_attribute *dev_attr,
168 char *buf)
169{
170 struct hv_device *hv_dev = device_to_hv_device(dev);
171
172 if (!hv_dev->channel)
173 return -ENODEV;
174 return sprintf(buf, "%d\n",
175 channel_pending(hv_dev->channel,
176 vmbus_connection.monitor_pages[1]));
177}
178static DEVICE_ATTR_RO(server_monitor_pending);
179
180static ssize_t client_monitor_pending_show(struct device *dev,
181 struct device_attribute *dev_attr,
182 char *buf)
183{
184 struct hv_device *hv_dev = device_to_hv_device(dev);
185
186 if (!hv_dev->channel)
187 return -ENODEV;
188 return sprintf(buf, "%d\n",
189 channel_pending(hv_dev->channel,
190 vmbus_connection.monitor_pages[1]));
191}
192static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700193
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700194static ssize_t server_monitor_latency_show(struct device *dev,
195 struct device_attribute *dev_attr,
196 char *buf)
197{
198 struct hv_device *hv_dev = device_to_hv_device(dev);
199
200 if (!hv_dev->channel)
201 return -ENODEV;
202 return sprintf(buf, "%d\n",
203 channel_latency(hv_dev->channel,
204 vmbus_connection.monitor_pages[0]));
205}
206static DEVICE_ATTR_RO(server_monitor_latency);
207
208static ssize_t client_monitor_latency_show(struct device *dev,
209 struct device_attribute *dev_attr,
210 char *buf)
211{
212 struct hv_device *hv_dev = device_to_hv_device(dev);
213
214 if (!hv_dev->channel)
215 return -ENODEV;
216 return sprintf(buf, "%d\n",
217 channel_latency(hv_dev->channel,
218 vmbus_connection.monitor_pages[1]));
219}
220static DEVICE_ATTR_RO(client_monitor_latency);
221
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700222static ssize_t server_monitor_conn_id_show(struct device *dev,
223 struct device_attribute *dev_attr,
224 char *buf)
225{
226 struct hv_device *hv_dev = device_to_hv_device(dev);
227
228 if (!hv_dev->channel)
229 return -ENODEV;
230 return sprintf(buf, "%d\n",
231 channel_conn_id(hv_dev->channel,
232 vmbus_connection.monitor_pages[0]));
233}
234static DEVICE_ATTR_RO(server_monitor_conn_id);
235
236static ssize_t client_monitor_conn_id_show(struct device *dev,
237 struct device_attribute *dev_attr,
238 char *buf)
239{
240 struct hv_device *hv_dev = device_to_hv_device(dev);
241
242 if (!hv_dev->channel)
243 return -ENODEV;
244 return sprintf(buf, "%d\n",
245 channel_conn_id(hv_dev->channel,
246 vmbus_connection.monitor_pages[1]));
247}
248static DEVICE_ATTR_RO(client_monitor_conn_id);
249
Greg Kroah-Hartman98f4c6512013-09-13 11:33:01 -0700250static ssize_t out_intr_mask_show(struct device *dev,
251 struct device_attribute *dev_attr, char *buf)
252{
253 struct hv_device *hv_dev = device_to_hv_device(dev);
254 struct hv_ring_buffer_debug_info outbound;
255
256 if (!hv_dev->channel)
257 return -ENODEV;
258 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
259 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
260}
261static DEVICE_ATTR_RO(out_intr_mask);
262
263static ssize_t out_read_index_show(struct device *dev,
264 struct device_attribute *dev_attr, char *buf)
265{
266 struct hv_device *hv_dev = device_to_hv_device(dev);
267 struct hv_ring_buffer_debug_info outbound;
268
269 if (!hv_dev->channel)
270 return -ENODEV;
271 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
272 return sprintf(buf, "%d\n", outbound.current_read_index);
273}
274static DEVICE_ATTR_RO(out_read_index);
275
276static ssize_t out_write_index_show(struct device *dev,
277 struct device_attribute *dev_attr,
278 char *buf)
279{
280 struct hv_device *hv_dev = device_to_hv_device(dev);
281 struct hv_ring_buffer_debug_info outbound;
282
283 if (!hv_dev->channel)
284 return -ENODEV;
285 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
286 return sprintf(buf, "%d\n", outbound.current_write_index);
287}
288static DEVICE_ATTR_RO(out_write_index);
289
290static ssize_t out_read_bytes_avail_show(struct device *dev,
291 struct device_attribute *dev_attr,
292 char *buf)
293{
294 struct hv_device *hv_dev = device_to_hv_device(dev);
295 struct hv_ring_buffer_debug_info outbound;
296
297 if (!hv_dev->channel)
298 return -ENODEV;
299 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
300 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
301}
302static DEVICE_ATTR_RO(out_read_bytes_avail);
303
304static ssize_t out_write_bytes_avail_show(struct device *dev,
305 struct device_attribute *dev_attr,
306 char *buf)
307{
308 struct hv_device *hv_dev = device_to_hv_device(dev);
309 struct hv_ring_buffer_debug_info outbound;
310
311 if (!hv_dev->channel)
312 return -ENODEV;
313 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
314 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
315}
316static DEVICE_ATTR_RO(out_write_bytes_avail);
317
318static ssize_t in_intr_mask_show(struct device *dev,
319 struct device_attribute *dev_attr, char *buf)
320{
321 struct hv_device *hv_dev = device_to_hv_device(dev);
322 struct hv_ring_buffer_debug_info inbound;
323
324 if (!hv_dev->channel)
325 return -ENODEV;
326 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
327 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
328}
329static DEVICE_ATTR_RO(in_intr_mask);
330
331static ssize_t in_read_index_show(struct device *dev,
332 struct device_attribute *dev_attr, char *buf)
333{
334 struct hv_device *hv_dev = device_to_hv_device(dev);
335 struct hv_ring_buffer_debug_info inbound;
336
337 if (!hv_dev->channel)
338 return -ENODEV;
339 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
340 return sprintf(buf, "%d\n", inbound.current_read_index);
341}
342static DEVICE_ATTR_RO(in_read_index);
343
344static ssize_t in_write_index_show(struct device *dev,
345 struct device_attribute *dev_attr, char *buf)
346{
347 struct hv_device *hv_dev = device_to_hv_device(dev);
348 struct hv_ring_buffer_debug_info inbound;
349
350 if (!hv_dev->channel)
351 return -ENODEV;
352 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
353 return sprintf(buf, "%d\n", inbound.current_write_index);
354}
355static DEVICE_ATTR_RO(in_write_index);
356
357static ssize_t in_read_bytes_avail_show(struct device *dev,
358 struct device_attribute *dev_attr,
359 char *buf)
360{
361 struct hv_device *hv_dev = device_to_hv_device(dev);
362 struct hv_ring_buffer_debug_info inbound;
363
364 if (!hv_dev->channel)
365 return -ENODEV;
366 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
367 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
368}
369static DEVICE_ATTR_RO(in_read_bytes_avail);
370
371static ssize_t in_write_bytes_avail_show(struct device *dev,
372 struct device_attribute *dev_attr,
373 char *buf)
374{
375 struct hv_device *hv_dev = device_to_hv_device(dev);
376 struct hv_ring_buffer_debug_info inbound;
377
378 if (!hv_dev->channel)
379 return -ENODEV;
380 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
381 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
382}
383static DEVICE_ATTR_RO(in_write_bytes_avail);
384
385/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700386static struct attribute *vmbus_attrs[] = {
387 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700388 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700389 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700390 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700391 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700392 &dev_attr_modalias.attr,
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700393 &dev_attr_server_monitor_pending.attr,
394 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700395 &dev_attr_server_monitor_latency.attr,
396 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700397 &dev_attr_server_monitor_conn_id.attr,
398 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c6512013-09-13 11:33:01 -0700399 &dev_attr_out_intr_mask.attr,
400 &dev_attr_out_read_index.attr,
401 &dev_attr_out_write_index.attr,
402 &dev_attr_out_read_bytes_avail.attr,
403 &dev_attr_out_write_bytes_avail.attr,
404 &dev_attr_in_intr_mask.attr,
405 &dev_attr_in_read_index.attr,
406 &dev_attr_in_write_index.attr,
407 &dev_attr_in_read_bytes_avail.attr,
408 &dev_attr_in_write_bytes_avail.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700409 NULL,
410};
411ATTRIBUTE_GROUPS(vmbus);
412
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700413/*
414 * vmbus_uevent - add uevent for our device
415 *
416 * This routine is invoked when a device is added or removed on the vmbus to
417 * generate a uevent to udev in the userspace. The udev will then look at its
418 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700419 *
420 * The alias string will be of the form vmbus:guid where guid is the string
421 * representation of the device guid (each byte of the guid will be
422 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700423 */
424static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
425{
426 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200427 int ret;
428 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700429
Olaf Heringfd776ba2011-09-02 18:25:56 +0200430 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700431 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
432 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700433}
434
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700435static uuid_le null_guid;
436
437static inline bool is_null_guid(const __u8 *guid)
438{
439 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
440 return false;
441 return true;
442}
443
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700444/*
445 * Return a matching hv_vmbus_device_id pointer.
446 * If there is no match, return NULL.
447 */
448static const struct hv_vmbus_device_id *hv_vmbus_get_id(
449 const struct hv_vmbus_device_id *id,
450 __u8 *guid)
451{
452 for (; !is_null_guid(id->guid); id++)
453 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
454 return id;
455
456 return NULL;
457}
458
459
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700460
461/*
462 * vmbus_match - Attempt to match the specified device to the specified driver
463 */
464static int vmbus_match(struct device *device, struct device_driver *driver)
465{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700466 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700467 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700468
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700469 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
470 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700471
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700472 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700473}
474
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700475/*
476 * vmbus_probe - Add the new vmbus's child device
477 */
478static int vmbus_probe(struct device *child_device)
479{
480 int ret = 0;
481 struct hv_driver *drv =
482 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700483 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700484 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700485
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700486 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700487 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700488 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700489 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700490 pr_err("probe failed for device %s (%d)\n",
491 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700492
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700493 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700494 pr_err("probe not set for driver %s\n",
495 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700496 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700497 }
498 return ret;
499}
500
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700501/*
502 * vmbus_remove - Remove a vmbus device
503 */
504static int vmbus_remove(struct device *child_device)
505{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700506 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700507 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700508
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700509 if (drv->remove)
510 drv->remove(dev);
511 else
512 pr_err("remove not set for driver %s\n",
513 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700514
515 return 0;
516}
517
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700518
519/*
520 * vmbus_shutdown - Shutdown a vmbus device
521 */
522static void vmbus_shutdown(struct device *child_device)
523{
524 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700525 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700526
527
528 /* The device may not be attached yet */
529 if (!child_device->driver)
530 return;
531
532 drv = drv_to_hv_drv(child_device->driver);
533
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700534 if (drv->shutdown)
535 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700536
537 return;
538}
539
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700540
541/*
542 * vmbus_device_release - Final callback release of the vmbus child device
543 */
544static void vmbus_device_release(struct device *device)
545{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700546 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700547
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700548 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700549
550}
551
Bill Pemberton454f18a2009-07-27 16:47:24 -0400552/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700553static struct bus_type hv_bus = {
554 .name = "vmbus",
555 .match = vmbus_match,
556 .shutdown = vmbus_shutdown,
557 .remove = vmbus_remove,
558 .probe = vmbus_probe,
559 .uevent = vmbus_uevent,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700560 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700561};
562
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800563static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800564
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800565
Timo Teräsbf6506f2010-12-15 20:48:08 +0200566struct onmessage_work_context {
567 struct work_struct work;
568 struct hv_message msg;
569};
570
571static void vmbus_onmessage_work(struct work_struct *work)
572{
573 struct onmessage_work_context *ctx;
574
575 ctx = container_of(work, struct onmessage_work_context,
576 work);
577 vmbus_onmessage(&ctx->msg);
578 kfree(ctx);
579}
580
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800581static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800582{
583 int cpu = smp_processor_id();
584 void *page_addr = hv_context.synic_message_page[cpu];
585 struct hv_message *msg = (struct hv_message *)page_addr +
586 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200587 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800588
589 while (1) {
590 if (msg->header.message_type == HVMSG_NONE) {
591 /* no msg */
592 break;
593 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200594 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
595 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800596 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200597 INIT_WORK(&ctx->work, vmbus_onmessage_work);
598 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800599 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800600 }
601
602 msg->header.message_type = HVMSG_NONE;
603
604 /*
605 * Make sure the write to MessageType (ie set to
606 * HVMSG_NONE) happens before we read the
607 * MessagePending and EOMing. Otherwise, the EOMing
608 * will not deliver any more messages since there is
609 * no empty slot
610 */
Jason Wang35848f62013-06-18 13:04:23 +0800611 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800612
613 if (msg->header.message_flags.msg_pending) {
614 /*
615 * This will cause message queue rescan to
616 * possibly deliver another msg from the
617 * hypervisor
618 */
619 wrmsrl(HV_X64_MSR_EOM, 0);
620 }
621 }
622}
623
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700624static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800625{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800626 int cpu = smp_processor_id();
627 void *page_addr;
628 struct hv_message *msg;
629 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700630 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800631
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800632 page_addr = hv_context.synic_event_page[cpu];
633 if (page_addr == NULL)
634 return IRQ_NONE;
635
636 event = (union hv_synic_event_flags *)page_addr +
637 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700638 /*
639 * Check for events before checking for messages. This is the order
640 * in which events and messages are checked in Windows guests on
641 * Hyper-V, and the Windows team suggested we do the same.
642 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800643
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800644 if ((vmbus_proto_version == VERSION_WS2008) ||
645 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800646
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800647 /* Since we are a child, we only need to check bit 0 */
648 if (sync_test_and_clear_bit(0,
649 (unsigned long *) &event->flags32[0])) {
650 handled = true;
651 }
652 } else {
653 /*
654 * Our host is win8 or above. The signaling mechanism
655 * has changed and we can directly look at the event page.
656 * If bit n is set then we have an interrup on the channel
657 * whose id is n.
658 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700659 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700660 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700661
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800662 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800663 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800664
665
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700666 page_addr = hv_context.synic_message_page[cpu];
667 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
668
669 /* Check if there are actual msgs to be processed */
670 if (msg->header.message_type != HVMSG_NONE) {
671 handled = true;
672 tasklet_schedule(&msg_dpc);
673 }
674
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700675 if (handled)
676 return IRQ_HANDLED;
677 else
678 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700679}
680
Hank Janssen3e189512010-03-04 22:11:00 +0000681/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800682 * vmbus interrupt flow handler:
683 * vmbus interrupts can concurrently occur on multiple CPUs and
684 * can be handled concurrently.
685 */
686
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800687static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800688{
689 kstat_incr_irqs_this_cpu(irq, desc);
690
691 desc->action->handler(irq, desc->action->dev_id);
692}
693
694/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700695 * vmbus_bus_init -Main vmbus driver initialization routine.
696 *
697 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100698 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100699 * - invoke the vmbus hv main init routine
700 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100701 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700702 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700703static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700704{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700705 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700706
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800707 /* Hypervisor initialization...setup hypercall page..etc */
708 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700709 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700710 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700711 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712 }
713
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700714 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700715
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700716 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700717 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700718 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700719
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400720 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700721
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700722 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700723 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700724 irq);
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700725 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700726 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700727
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800728 /*
729 * Vmbus interrupts can be handled concurrently on
730 * different CPUs. Establish an appropriate interrupt flow
731 * handler that can support this model.
732 */
733 irq_set_handler(irq, vmbus_flow_handler);
734
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800735 /*
736 * Register our interrupt handler.
737 */
738 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700739
Jason Wang2608fb62013-06-19 11:28:10 +0800740 ret = hv_synic_alloc();
741 if (ret)
742 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700743 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800744 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700745 * connect to the host.
746 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800747 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700748 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700749 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800750 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700751
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800752 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000753
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700754 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700755
Jason Wang2608fb62013-06-19 11:28:10 +0800756err_alloc:
757 hv_synic_free();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700758 free_irq(irq, hv_acpi_dev);
759
760err_unregister:
761 bus_unregister(&hv_bus);
762
763err_cleanup:
764 hv_cleanup();
765
766 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700767}
768
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700769/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700770 * __vmbus_child_driver_register - Register a vmbus's driver
771 * @drv: Pointer to driver structure you want to register
772 * @owner: owner module of the drv
773 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000774 *
775 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700776 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000777 * It will return the state of the 'driver_register()' call.
778 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700779 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700780int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700781{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400782 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700783
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700784 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700785
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800786 ret = vmbus_exists();
787 if (ret < 0)
788 return ret;
789
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700790 hv_driver->driver.name = hv_driver->name;
791 hv_driver->driver.owner = owner;
792 hv_driver->driver.mod_name = mod_name;
793 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700794
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700795 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400797 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700798}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700799EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700800
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700801/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700802 * vmbus_driver_unregister() - Unregister a vmbus's driver
803 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000804 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700805 * Un-register the given driver that was previous registered with a call to
806 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700807 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700808void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700809{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700810 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700811
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800812 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800813 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700814}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700815EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700816
Hank Janssen3e189512010-03-04 22:11:00 +0000817/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700818 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000819 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700820 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700821struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700822 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800823 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700824{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200825 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700826
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800827 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
828 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700829 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700830 return NULL;
831 }
832
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700833 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700834 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800835 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700836 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700837
Hank Janssen3e7ee492009-07-13 16:02:34 -0700838
Hank Janssen3e7ee492009-07-13 16:02:34 -0700839 return child_device_obj;
840}
841
Hank Janssen3e189512010-03-04 22:11:00 +0000842/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700843 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700844 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700845int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700846{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700847 int ret = 0;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800848
Bill Pembertonf4888412009-07-29 17:00:12 -0400849 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700850
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800851 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700852 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700853
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700854 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700855 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800856 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700857
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700858 /*
859 * Register with the LDM. This will kick off the driver/device
860 * binding...which will eventually call vmbus_match() and vmbus_probe()
861 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800862 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700863
Hank Janssen3e7ee492009-07-13 16:02:34 -0700864 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700865 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700866 else
Fernando Soto84672362013-06-14 23:13:35 +0000867 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700868 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700869
Hank Janssen3e7ee492009-07-13 16:02:34 -0700870 return ret;
871}
872
Hank Janssen3e189512010-03-04 22:11:00 +0000873/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700874 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000875 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700876 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700877void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700878{
Fernando Soto84672362013-06-14 23:13:35 +0000879 pr_debug("child device %s unregistered\n",
880 dev_name(&device_obj->device));
881
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700882 /*
883 * Kick off the process of unregistering the device.
884 * This will call vmbus_remove() and eventually vmbus_device_release()
885 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800886 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700887}
888
Hank Janssen3e7ee492009-07-13 16:02:34 -0700889
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700890/*
891 * VMBUS is an acpi enumerated device. Get the the IRQ information
892 * from DSDT.
893 */
894
895static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *irq)
896{
897
898 if (res->type == ACPI_RESOURCE_TYPE_IRQ) {
899 struct acpi_resource_irq *irqp;
900 irqp = &res->data.irq;
901
902 *((unsigned int *)irq) = irqp->interrupts[0];
903 }
904
905 return AE_OK;
906}
907
908static int vmbus_acpi_add(struct acpi_device *device)
909{
910 acpi_status result;
911
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700912 hv_acpi_dev = device;
913
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700914 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
915 vmbus_walk_resources, &irq);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700916
917 if (ACPI_FAILURE(result)) {
918 complete(&probe_event);
919 return -ENODEV;
920 }
921 complete(&probe_event);
922 return 0;
923}
924
925static const struct acpi_device_id vmbus_acpi_device_ids[] = {
926 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700927 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700928 {"", 0},
929};
930MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
931
932static struct acpi_driver vmbus_acpi_driver = {
933 .name = "vmbus",
934 .ids = vmbus_acpi_device_ids,
935 .ops = {
936 .add = vmbus_acpi_add,
937 },
938};
939
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700940static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700941{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700942 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700943
Jason Wang1f94ea82012-08-31 13:32:44 +0800944 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800945 return -ENODEV;
946
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700947 init_completion(&probe_event);
948
949 /*
950 * Get irq resources first.
951 */
952
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700953 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
954
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700955 if (ret)
956 return ret;
957
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700958 t = wait_for_completion_timeout(&probe_event, 5*HZ);
959 if (t == 0) {
960 ret = -ETIMEDOUT;
961 goto cleanup;
962 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700963
964 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700965 ret = -ENODEV;
966 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700967 }
968
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700969 ret = vmbus_bus_init(irq);
970 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700971 goto cleanup;
972
973 return 0;
974
975cleanup:
976 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800977 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700978 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700979}
980
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800981static void __exit vmbus_exit(void)
982{
983
984 free_irq(irq, hv_acpi_dev);
985 vmbus_free_channels();
986 bus_unregister(&hv_bus);
987 hv_cleanup();
988 acpi_bus_unregister_driver(&vmbus_acpi_driver);
989}
990
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700991
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700992MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700993
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -0700994subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800995module_exit(vmbus_exit);