blob: 077bb1bdac34ef4ed87c65c7bf0d204fd42001b4 [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-Hartman407dd162011-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;
Hank Janssen3e7ee492009-07-13 16:02:34 -070046
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080047static int vmbus_exists(void)
48{
49 if (hv_acpi_dev == NULL)
50 return -ENODEV;
51
52 return 0;
53}
54
Olaf Heringfd776ba2011-09-02 18:25:56 +020055#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
56static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
57{
58 int i;
59 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
60 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
61}
62
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -070063static u8 channel_monitor_group(struct vmbus_channel *channel)
64{
65 return (u8)channel->offermsg.monitorid / 32;
66}
67
68static u8 channel_monitor_offset(struct vmbus_channel *channel)
69{
70 return (u8)channel->offermsg.monitorid % 32;
71}
72
73static u32 channel_pending(struct vmbus_channel *channel,
74 struct hv_monitor_page *monitor_page)
75{
76 u8 monitor_group = channel_monitor_group(channel);
77 return monitor_page->trigger_group[monitor_group].pending;
78}
79
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -070080static u32 channel_latency(struct vmbus_channel *channel,
81 struct hv_monitor_page *monitor_page)
82{
83 u8 monitor_group = channel_monitor_group(channel);
84 u8 monitor_offset = channel_monitor_offset(channel);
85 return monitor_page->latency[monitor_group][monitor_offset];
86}
87
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -070088static u32 channel_conn_id(struct vmbus_channel *channel,
89 struct hv_monitor_page *monitor_page)
90{
91 u8 monitor_group = channel_monitor_group(channel);
92 u8 monitor_offset = channel_monitor_offset(channel);
93 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
94}
95
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -070096static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
97 char *buf)
98{
99 struct hv_device *hv_dev = device_to_hv_device(dev);
100
101 if (!hv_dev->channel)
102 return -ENODEV;
103 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
104}
105static DEVICE_ATTR_RO(id);
106
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700107static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
108 char *buf)
109{
110 struct hv_device *hv_dev = device_to_hv_device(dev);
111
112 if (!hv_dev->channel)
113 return -ENODEV;
114 return sprintf(buf, "%d\n", hv_dev->channel->state);
115}
116static DEVICE_ATTR_RO(state);
117
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700118static ssize_t monitor_id_show(struct device *dev,
119 struct device_attribute *dev_attr, char *buf)
120{
121 struct hv_device *hv_dev = device_to_hv_device(dev);
122
123 if (!hv_dev->channel)
124 return -ENODEV;
125 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
126}
127static DEVICE_ATTR_RO(monitor_id);
128
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700129static ssize_t class_id_show(struct device *dev,
130 struct device_attribute *dev_attr, char *buf)
131{
132 struct hv_device *hv_dev = device_to_hv_device(dev);
133
134 if (!hv_dev->channel)
135 return -ENODEV;
136 return sprintf(buf, "{%pUl}\n",
137 hv_dev->channel->offermsg.offer.if_type.b);
138}
139static DEVICE_ATTR_RO(class_id);
140
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700141static ssize_t device_id_show(struct device *dev,
142 struct device_attribute *dev_attr, 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, "{%pUl}\n",
149 hv_dev->channel->offermsg.offer.if_instance.b);
150}
151static DEVICE_ATTR_RO(device_id);
152
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700153static ssize_t modalias_show(struct device *dev,
154 struct device_attribute *dev_attr, char *buf)
155{
156 struct hv_device *hv_dev = device_to_hv_device(dev);
157 char alias_name[VMBUS_ALIAS_LEN + 1];
158
159 print_alias_name(hv_dev, alias_name);
160 return sprintf(buf, "vmbus:%s\n", alias_name);
161}
162static DEVICE_ATTR_RO(modalias);
163
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700164static ssize_t server_monitor_pending_show(struct device *dev,
165 struct device_attribute *dev_attr,
166 char *buf)
167{
168 struct hv_device *hv_dev = device_to_hv_device(dev);
169
170 if (!hv_dev->channel)
171 return -ENODEV;
172 return sprintf(buf, "%d\n",
173 channel_pending(hv_dev->channel,
174 vmbus_connection.monitor_pages[1]));
175}
176static DEVICE_ATTR_RO(server_monitor_pending);
177
178static ssize_t client_monitor_pending_show(struct device *dev,
179 struct device_attribute *dev_attr,
180 char *buf)
181{
182 struct hv_device *hv_dev = device_to_hv_device(dev);
183
184 if (!hv_dev->channel)
185 return -ENODEV;
186 return sprintf(buf, "%d\n",
187 channel_pending(hv_dev->channel,
188 vmbus_connection.monitor_pages[1]));
189}
190static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700191
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700192static ssize_t server_monitor_latency_show(struct device *dev,
193 struct device_attribute *dev_attr,
194 char *buf)
195{
196 struct hv_device *hv_dev = device_to_hv_device(dev);
197
198 if (!hv_dev->channel)
199 return -ENODEV;
200 return sprintf(buf, "%d\n",
201 channel_latency(hv_dev->channel,
202 vmbus_connection.monitor_pages[0]));
203}
204static DEVICE_ATTR_RO(server_monitor_latency);
205
206static ssize_t client_monitor_latency_show(struct device *dev,
207 struct device_attribute *dev_attr,
208 char *buf)
209{
210 struct hv_device *hv_dev = device_to_hv_device(dev);
211
212 if (!hv_dev->channel)
213 return -ENODEV;
214 return sprintf(buf, "%d\n",
215 channel_latency(hv_dev->channel,
216 vmbus_connection.monitor_pages[1]));
217}
218static DEVICE_ATTR_RO(client_monitor_latency);
219
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700220static ssize_t server_monitor_conn_id_show(struct device *dev,
221 struct device_attribute *dev_attr,
222 char *buf)
223{
224 struct hv_device *hv_dev = device_to_hv_device(dev);
225
226 if (!hv_dev->channel)
227 return -ENODEV;
228 return sprintf(buf, "%d\n",
229 channel_conn_id(hv_dev->channel,
230 vmbus_connection.monitor_pages[0]));
231}
232static DEVICE_ATTR_RO(server_monitor_conn_id);
233
234static ssize_t client_monitor_conn_id_show(struct device *dev,
235 struct device_attribute *dev_attr,
236 char *buf)
237{
238 struct hv_device *hv_dev = device_to_hv_device(dev);
239
240 if (!hv_dev->channel)
241 return -ENODEV;
242 return sprintf(buf, "%d\n",
243 channel_conn_id(hv_dev->channel,
244 vmbus_connection.monitor_pages[1]));
245}
246static DEVICE_ATTR_RO(client_monitor_conn_id);
247
Greg Kroah-Hartman98f4c6512013-09-13 11:33:01 -0700248static ssize_t out_intr_mask_show(struct device *dev,
249 struct device_attribute *dev_attr, char *buf)
250{
251 struct hv_device *hv_dev = device_to_hv_device(dev);
252 struct hv_ring_buffer_debug_info outbound;
253
254 if (!hv_dev->channel)
255 return -ENODEV;
256 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
257 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
258}
259static DEVICE_ATTR_RO(out_intr_mask);
260
261static ssize_t out_read_index_show(struct device *dev,
262 struct device_attribute *dev_attr, char *buf)
263{
264 struct hv_device *hv_dev = device_to_hv_device(dev);
265 struct hv_ring_buffer_debug_info outbound;
266
267 if (!hv_dev->channel)
268 return -ENODEV;
269 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
270 return sprintf(buf, "%d\n", outbound.current_read_index);
271}
272static DEVICE_ATTR_RO(out_read_index);
273
274static ssize_t out_write_index_show(struct device *dev,
275 struct device_attribute *dev_attr,
276 char *buf)
277{
278 struct hv_device *hv_dev = device_to_hv_device(dev);
279 struct hv_ring_buffer_debug_info outbound;
280
281 if (!hv_dev->channel)
282 return -ENODEV;
283 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
284 return sprintf(buf, "%d\n", outbound.current_write_index);
285}
286static DEVICE_ATTR_RO(out_write_index);
287
288static ssize_t out_read_bytes_avail_show(struct device *dev,
289 struct device_attribute *dev_attr,
290 char *buf)
291{
292 struct hv_device *hv_dev = device_to_hv_device(dev);
293 struct hv_ring_buffer_debug_info outbound;
294
295 if (!hv_dev->channel)
296 return -ENODEV;
297 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
298 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
299}
300static DEVICE_ATTR_RO(out_read_bytes_avail);
301
302static ssize_t out_write_bytes_avail_show(struct device *dev,
303 struct device_attribute *dev_attr,
304 char *buf)
305{
306 struct hv_device *hv_dev = device_to_hv_device(dev);
307 struct hv_ring_buffer_debug_info outbound;
308
309 if (!hv_dev->channel)
310 return -ENODEV;
311 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
312 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
313}
314static DEVICE_ATTR_RO(out_write_bytes_avail);
315
316static ssize_t in_intr_mask_show(struct device *dev,
317 struct device_attribute *dev_attr, char *buf)
318{
319 struct hv_device *hv_dev = device_to_hv_device(dev);
320 struct hv_ring_buffer_debug_info inbound;
321
322 if (!hv_dev->channel)
323 return -ENODEV;
324 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
325 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
326}
327static DEVICE_ATTR_RO(in_intr_mask);
328
329static ssize_t in_read_index_show(struct device *dev,
330 struct device_attribute *dev_attr, char *buf)
331{
332 struct hv_device *hv_dev = device_to_hv_device(dev);
333 struct hv_ring_buffer_debug_info inbound;
334
335 if (!hv_dev->channel)
336 return -ENODEV;
337 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
338 return sprintf(buf, "%d\n", inbound.current_read_index);
339}
340static DEVICE_ATTR_RO(in_read_index);
341
342static ssize_t in_write_index_show(struct device *dev,
343 struct device_attribute *dev_attr, char *buf)
344{
345 struct hv_device *hv_dev = device_to_hv_device(dev);
346 struct hv_ring_buffer_debug_info inbound;
347
348 if (!hv_dev->channel)
349 return -ENODEV;
350 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
351 return sprintf(buf, "%d\n", inbound.current_write_index);
352}
353static DEVICE_ATTR_RO(in_write_index);
354
355static ssize_t in_read_bytes_avail_show(struct device *dev,
356 struct device_attribute *dev_attr,
357 char *buf)
358{
359 struct hv_device *hv_dev = device_to_hv_device(dev);
360 struct hv_ring_buffer_debug_info inbound;
361
362 if (!hv_dev->channel)
363 return -ENODEV;
364 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
365 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
366}
367static DEVICE_ATTR_RO(in_read_bytes_avail);
368
369static ssize_t in_write_bytes_avail_show(struct device *dev,
370 struct device_attribute *dev_attr,
371 char *buf)
372{
373 struct hv_device *hv_dev = device_to_hv_device(dev);
374 struct hv_ring_buffer_debug_info inbound;
375
376 if (!hv_dev->channel)
377 return -ENODEV;
378 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
379 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
380}
381static DEVICE_ATTR_RO(in_write_bytes_avail);
382
383/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700384static struct attribute *vmbus_attrs[] = {
385 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700386 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700387 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700388 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700389 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700390 &dev_attr_modalias.attr,
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700391 &dev_attr_server_monitor_pending.attr,
392 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700393 &dev_attr_server_monitor_latency.attr,
394 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700395 &dev_attr_server_monitor_conn_id.attr,
396 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c6512013-09-13 11:33:01 -0700397 &dev_attr_out_intr_mask.attr,
398 &dev_attr_out_read_index.attr,
399 &dev_attr_out_write_index.attr,
400 &dev_attr_out_read_bytes_avail.attr,
401 &dev_attr_out_write_bytes_avail.attr,
402 &dev_attr_in_intr_mask.attr,
403 &dev_attr_in_read_index.attr,
404 &dev_attr_in_write_index.attr,
405 &dev_attr_in_read_bytes_avail.attr,
406 &dev_attr_in_write_bytes_avail.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700407 NULL,
408};
409ATTRIBUTE_GROUPS(vmbus);
410
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700411/*
412 * vmbus_uevent - add uevent for our device
413 *
414 * This routine is invoked when a device is added or removed on the vmbus to
415 * generate a uevent to udev in the userspace. The udev will then look at its
416 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700417 *
418 * The alias string will be of the form vmbus:guid where guid is the string
419 * representation of the device guid (each byte of the guid will be
420 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700421 */
422static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
423{
424 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200425 int ret;
426 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700427
Olaf Heringfd776ba2011-09-02 18:25:56 +0200428 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700429 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
430 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700431}
432
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700433static uuid_le null_guid;
434
435static inline bool is_null_guid(const __u8 *guid)
436{
437 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
438 return false;
439 return true;
440}
441
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700442/*
443 * Return a matching hv_vmbus_device_id pointer.
444 * If there is no match, return NULL.
445 */
446static const struct hv_vmbus_device_id *hv_vmbus_get_id(
447 const struct hv_vmbus_device_id *id,
448 __u8 *guid)
449{
450 for (; !is_null_guid(id->guid); id++)
451 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
452 return id;
453
454 return NULL;
455}
456
457
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700458
459/*
460 * vmbus_match - Attempt to match the specified device to the specified driver
461 */
462static int vmbus_match(struct device *device, struct device_driver *driver)
463{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700464 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700465 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700466
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700467 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
468 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700469
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700470 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700471}
472
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700473/*
474 * vmbus_probe - Add the new vmbus's child device
475 */
476static int vmbus_probe(struct device *child_device)
477{
478 int ret = 0;
479 struct hv_driver *drv =
480 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700481 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700482 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700483
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700484 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700485 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700486 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700487 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700488 pr_err("probe failed for device %s (%d)\n",
489 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700490
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700491 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700492 pr_err("probe not set for driver %s\n",
493 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700494 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700495 }
496 return ret;
497}
498
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700499/*
500 * vmbus_remove - Remove a vmbus device
501 */
502static int vmbus_remove(struct device *child_device)
503{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700504 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700505 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700506
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700507 if (drv->remove)
508 drv->remove(dev);
509 else
510 pr_err("remove not set for driver %s\n",
511 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700512
513 return 0;
514}
515
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700516
517/*
518 * vmbus_shutdown - Shutdown a vmbus device
519 */
520static void vmbus_shutdown(struct device *child_device)
521{
522 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700523 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700524
525
526 /* The device may not be attached yet */
527 if (!child_device->driver)
528 return;
529
530 drv = drv_to_hv_drv(child_device->driver);
531
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700532 if (drv->shutdown)
533 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700534
535 return;
536}
537
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700538
539/*
540 * vmbus_device_release - Final callback release of the vmbus child device
541 */
542static void vmbus_device_release(struct device *device)
543{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700544 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700545
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700546 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700547
548}
549
Bill Pemberton454f18a2009-07-27 16:47:24 -0400550/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700551static struct bus_type hv_bus = {
552 .name = "vmbus",
553 .match = vmbus_match,
554 .shutdown = vmbus_shutdown,
555 .remove = vmbus_remove,
556 .probe = vmbus_probe,
557 .uevent = vmbus_uevent,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700558 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700559};
560
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800561static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800562
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800563
Timo Teräsbf6506f2010-12-15 20:48:08 +0200564struct onmessage_work_context {
565 struct work_struct work;
566 struct hv_message msg;
567};
568
569static void vmbus_onmessage_work(struct work_struct *work)
570{
571 struct onmessage_work_context *ctx;
572
573 ctx = container_of(work, struct onmessage_work_context,
574 work);
575 vmbus_onmessage(&ctx->msg);
576 kfree(ctx);
577}
578
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800579static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800580{
581 int cpu = smp_processor_id();
582 void *page_addr = hv_context.synic_message_page[cpu];
583 struct hv_message *msg = (struct hv_message *)page_addr +
584 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200585 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800586
587 while (1) {
588 if (msg->header.message_type == HVMSG_NONE) {
589 /* no msg */
590 break;
591 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200592 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
593 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800594 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200595 INIT_WORK(&ctx->work, vmbus_onmessage_work);
596 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800597 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800598 }
599
600 msg->header.message_type = HVMSG_NONE;
601
602 /*
603 * Make sure the write to MessageType (ie set to
604 * HVMSG_NONE) happens before we read the
605 * MessagePending and EOMing. Otherwise, the EOMing
606 * will not deliver any more messages since there is
607 * no empty slot
608 */
Jason Wang35848f62013-06-18 13:04:23 +0800609 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800610
611 if (msg->header.message_flags.msg_pending) {
612 /*
613 * This will cause message queue rescan to
614 * possibly deliver another msg from the
615 * hypervisor
616 */
617 wrmsrl(HV_X64_MSR_EOM, 0);
618 }
619 }
620}
621
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700622static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800623{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800624 int cpu = smp_processor_id();
625 void *page_addr;
626 struct hv_message *msg;
627 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700628 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800629
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800630 page_addr = hv_context.synic_event_page[cpu];
631 if (page_addr == NULL)
632 return IRQ_NONE;
633
634 event = (union hv_synic_event_flags *)page_addr +
635 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700636 /*
637 * Check for events before checking for messages. This is the order
638 * in which events and messages are checked in Windows guests on
639 * Hyper-V, and the Windows team suggested we do the same.
640 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800641
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800642 if ((vmbus_proto_version == VERSION_WS2008) ||
643 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800644
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800645 /* Since we are a child, we only need to check bit 0 */
646 if (sync_test_and_clear_bit(0,
647 (unsigned long *) &event->flags32[0])) {
648 handled = true;
649 }
650 } else {
651 /*
652 * Our host is win8 or above. The signaling mechanism
653 * has changed and we can directly look at the event page.
654 * If bit n is set then we have an interrup on the channel
655 * whose id is n.
656 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700657 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700658 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700659
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800660 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800661 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800662
663
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700664 page_addr = hv_context.synic_message_page[cpu];
665 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
666
667 /* Check if there are actual msgs to be processed */
668 if (msg->header.message_type != HVMSG_NONE) {
669 handled = true;
670 tasklet_schedule(&msg_dpc);
671 }
672
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700673 if (handled)
674 return IRQ_HANDLED;
675 else
676 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700677}
678
Hank Janssen3e189512010-03-04 22:11:00 +0000679/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800680 * vmbus interrupt flow handler:
681 * vmbus interrupts can concurrently occur on multiple CPUs and
682 * can be handled concurrently.
683 */
684
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800685static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800686{
687 kstat_incr_irqs_this_cpu(irq, desc);
688
689 desc->action->handler(irq, desc->action->dev_id);
690}
691
692/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700693 * vmbus_bus_init -Main vmbus driver initialization routine.
694 *
695 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100696 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100697 * - invoke the vmbus hv main init routine
698 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100699 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700700 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700701static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700702{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700703 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700704
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800705 /* Hypervisor initialization...setup hypercall page..etc */
706 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700707 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700708 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700709 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700710 }
711
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700712 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700713
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700714 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700715 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700716 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700717
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400718 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700719
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700720 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700721 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700722 irq);
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700723 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700724 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700725
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800726 /*
727 * Vmbus interrupts can be handled concurrently on
728 * different CPUs. Establish an appropriate interrupt flow
729 * handler that can support this model.
730 */
731 irq_set_handler(irq, vmbus_flow_handler);
732
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800733 /*
734 * Register our interrupt handler.
735 */
736 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700737
Jason Wang2608fb62013-06-19 11:28:10 +0800738 ret = hv_synic_alloc();
739 if (ret)
740 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700741 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800742 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700743 * connect to the host.
744 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800745 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700746 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700747 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800748 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700749
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800750 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000751
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700752 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700753
Jason Wang2608fb62013-06-19 11:28:10 +0800754err_alloc:
755 hv_synic_free();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700756 free_irq(irq, hv_acpi_dev);
757
758err_unregister:
759 bus_unregister(&hv_bus);
760
761err_cleanup:
762 hv_cleanup();
763
764 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700765}
766
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700767/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700768 * __vmbus_child_driver_register - Register a vmbus's driver
769 * @drv: Pointer to driver structure you want to register
770 * @owner: owner module of the drv
771 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000772 *
773 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700774 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000775 * It will return the state of the 'driver_register()' call.
776 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700777 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700778int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700779{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400780 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700781
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700782 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700783
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800784 ret = vmbus_exists();
785 if (ret < 0)
786 return ret;
787
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700788 hv_driver->driver.name = hv_driver->name;
789 hv_driver->driver.owner = owner;
790 hv_driver->driver.mod_name = mod_name;
791 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700792
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700793 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700794
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400795 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700797EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700798
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700799/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700800 * vmbus_driver_unregister() - Unregister a vmbus's driver
801 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000802 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700803 * Un-register the given driver that was previous registered with a call to
804 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700805 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700806void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700807{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700808 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700809
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800810 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800811 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700812}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700813EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700814
Hank Janssen3e189512010-03-04 22:11:00 +0000815/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700816 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000817 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700818 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700819struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700820 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800821 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700822{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200823 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700824
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800825 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
826 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700827 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700828 return NULL;
829 }
830
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700831 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700832 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800833 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700834 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700835
Hank Janssen3e7ee492009-07-13 16:02:34 -0700836
Hank Janssen3e7ee492009-07-13 16:02:34 -0700837 return child_device_obj;
838}
839
Hank Janssen3e189512010-03-04 22:11:00 +0000840/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700841 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700842 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700843int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700844{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700845 int ret = 0;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800846
Bill Pembertonf4888412009-07-29 17:00:12 -0400847 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700848
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800849 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700850 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700851
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700852 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700853 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800854 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700855
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700856 /*
857 * Register with the LDM. This will kick off the driver/device
858 * binding...which will eventually call vmbus_match() and vmbus_probe()
859 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800860 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700861
Hank Janssen3e7ee492009-07-13 16:02:34 -0700862 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700863 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700864 else
Fernando Soto84672362013-06-14 23:13:35 +0000865 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700866 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700867
Hank Janssen3e7ee492009-07-13 16:02:34 -0700868 return ret;
869}
870
Hank Janssen3e189512010-03-04 22:11:00 +0000871/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700872 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000873 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700874 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700875void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700876{
Fernando Soto84672362013-06-14 23:13:35 +0000877 pr_debug("child device %s unregistered\n",
878 dev_name(&device_obj->device));
879
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700880 /*
881 * Kick off the process of unregistering the device.
882 * This will call vmbus_remove() and eventually vmbus_device_release()
883 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800884 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700885}
886
Hank Janssen3e7ee492009-07-13 16:02:34 -0700887
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700888/*
889 * VMBUS is an acpi enumerated device. Get the the IRQ information
890 * from DSDT.
891 */
892
893static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *irq)
894{
895
896 if (res->type == ACPI_RESOURCE_TYPE_IRQ) {
897 struct acpi_resource_irq *irqp;
898 irqp = &res->data.irq;
899
900 *((unsigned int *)irq) = irqp->interrupts[0];
901 }
902
903 return AE_OK;
904}
905
906static int vmbus_acpi_add(struct acpi_device *device)
907{
908 acpi_status result;
909
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700910 hv_acpi_dev = device;
911
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700912 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
913 vmbus_walk_resources, &irq);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700914
915 if (ACPI_FAILURE(result)) {
916 complete(&probe_event);
917 return -ENODEV;
918 }
919 complete(&probe_event);
920 return 0;
921}
922
923static const struct acpi_device_id vmbus_acpi_device_ids[] = {
924 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700925 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700926 {"", 0},
927};
928MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
929
930static struct acpi_driver vmbus_acpi_driver = {
931 .name = "vmbus",
932 .ids = vmbus_acpi_device_ids,
933 .ops = {
934 .add = vmbus_acpi_add,
935 },
936};
937
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700938static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700939{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700940 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700941
Jason Wang1f94ea82012-08-31 13:32:44 +0800942 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800943 return -ENODEV;
944
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700945 init_completion(&probe_event);
946
947 /*
948 * Get irq resources first.
949 */
950
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700951 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
952
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700953 if (ret)
954 return ret;
955
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700956 t = wait_for_completion_timeout(&probe_event, 5*HZ);
957 if (t == 0) {
958 ret = -ETIMEDOUT;
959 goto cleanup;
960 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700961
962 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700963 ret = -ENODEV;
964 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700965 }
966
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700967 ret = vmbus_bus_init(irq);
968 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700969 goto cleanup;
970
971 return 0;
972
973cleanup:
974 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800975 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700976 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700977}
978
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800979static void __exit vmbus_exit(void)
980{
981
982 free_irq(irq, hv_acpi_dev);
983 vmbus_free_channels();
984 bus_unregister(&hv_bus);
985 hv_cleanup();
986 acpi_bus_unregister_driver(&vmbus_acpi_driver);
987}
988
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700989
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700990MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700991
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -0700992subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800993module_exit(vmbus_exit);