blob: a14f60340bfc4701d9fb455a2ce01c413f3b4ab6 [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;
Gerd Hoffmann90eedf02014-02-24 14:17:09 +010046
47struct resource hyperv_mmio = {
48 .name = "hyperv mmio",
49 .flags = IORESOURCE_MEM,
50};
51EXPORT_SYMBOL_GPL(hyperv_mmio);
Hank Janssen3e7ee492009-07-13 16:02:34 -070052
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080053static int vmbus_exists(void)
54{
55 if (hv_acpi_dev == NULL)
56 return -ENODEV;
57
58 return 0;
59}
60
Olaf Heringfd776ba2011-09-02 18:25:56 +020061#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
62static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
63{
64 int i;
65 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
66 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
67}
68
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -070069static u8 channel_monitor_group(struct vmbus_channel *channel)
70{
71 return (u8)channel->offermsg.monitorid / 32;
72}
73
74static u8 channel_monitor_offset(struct vmbus_channel *channel)
75{
76 return (u8)channel->offermsg.monitorid % 32;
77}
78
79static u32 channel_pending(struct vmbus_channel *channel,
80 struct hv_monitor_page *monitor_page)
81{
82 u8 monitor_group = channel_monitor_group(channel);
83 return monitor_page->trigger_group[monitor_group].pending;
84}
85
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -070086static u32 channel_latency(struct vmbus_channel *channel,
87 struct hv_monitor_page *monitor_page)
88{
89 u8 monitor_group = channel_monitor_group(channel);
90 u8 monitor_offset = channel_monitor_offset(channel);
91 return monitor_page->latency[monitor_group][monitor_offset];
92}
93
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -070094static u32 channel_conn_id(struct vmbus_channel *channel,
95 struct hv_monitor_page *monitor_page)
96{
97 u8 monitor_group = channel_monitor_group(channel);
98 u8 monitor_offset = channel_monitor_offset(channel);
99 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
100}
101
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700102static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
103 char *buf)
104{
105 struct hv_device *hv_dev = device_to_hv_device(dev);
106
107 if (!hv_dev->channel)
108 return -ENODEV;
109 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
110}
111static DEVICE_ATTR_RO(id);
112
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700113static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
114 char *buf)
115{
116 struct hv_device *hv_dev = device_to_hv_device(dev);
117
118 if (!hv_dev->channel)
119 return -ENODEV;
120 return sprintf(buf, "%d\n", hv_dev->channel->state);
121}
122static DEVICE_ATTR_RO(state);
123
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700124static ssize_t monitor_id_show(struct device *dev,
125 struct device_attribute *dev_attr, char *buf)
126{
127 struct hv_device *hv_dev = device_to_hv_device(dev);
128
129 if (!hv_dev->channel)
130 return -ENODEV;
131 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
132}
133static DEVICE_ATTR_RO(monitor_id);
134
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700135static ssize_t class_id_show(struct device *dev,
136 struct device_attribute *dev_attr, char *buf)
137{
138 struct hv_device *hv_dev = device_to_hv_device(dev);
139
140 if (!hv_dev->channel)
141 return -ENODEV;
142 return sprintf(buf, "{%pUl}\n",
143 hv_dev->channel->offermsg.offer.if_type.b);
144}
145static DEVICE_ATTR_RO(class_id);
146
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700147static ssize_t device_id_show(struct device *dev,
148 struct device_attribute *dev_attr, char *buf)
149{
150 struct hv_device *hv_dev = device_to_hv_device(dev);
151
152 if (!hv_dev->channel)
153 return -ENODEV;
154 return sprintf(buf, "{%pUl}\n",
155 hv_dev->channel->offermsg.offer.if_instance.b);
156}
157static DEVICE_ATTR_RO(device_id);
158
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700159static ssize_t modalias_show(struct device *dev,
160 struct device_attribute *dev_attr, char *buf)
161{
162 struct hv_device *hv_dev = device_to_hv_device(dev);
163 char alias_name[VMBUS_ALIAS_LEN + 1];
164
165 print_alias_name(hv_dev, alias_name);
166 return sprintf(buf, "vmbus:%s\n", alias_name);
167}
168static DEVICE_ATTR_RO(modalias);
169
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700170static ssize_t server_monitor_pending_show(struct device *dev,
171 struct device_attribute *dev_attr,
172 char *buf)
173{
174 struct hv_device *hv_dev = device_to_hv_device(dev);
175
176 if (!hv_dev->channel)
177 return -ENODEV;
178 return sprintf(buf, "%d\n",
179 channel_pending(hv_dev->channel,
180 vmbus_connection.monitor_pages[1]));
181}
182static DEVICE_ATTR_RO(server_monitor_pending);
183
184static ssize_t client_monitor_pending_show(struct device *dev,
185 struct device_attribute *dev_attr,
186 char *buf)
187{
188 struct hv_device *hv_dev = device_to_hv_device(dev);
189
190 if (!hv_dev->channel)
191 return -ENODEV;
192 return sprintf(buf, "%d\n",
193 channel_pending(hv_dev->channel,
194 vmbus_connection.monitor_pages[1]));
195}
196static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700197
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700198static ssize_t server_monitor_latency_show(struct device *dev,
199 struct device_attribute *dev_attr,
200 char *buf)
201{
202 struct hv_device *hv_dev = device_to_hv_device(dev);
203
204 if (!hv_dev->channel)
205 return -ENODEV;
206 return sprintf(buf, "%d\n",
207 channel_latency(hv_dev->channel,
208 vmbus_connection.monitor_pages[0]));
209}
210static DEVICE_ATTR_RO(server_monitor_latency);
211
212static ssize_t client_monitor_latency_show(struct device *dev,
213 struct device_attribute *dev_attr,
214 char *buf)
215{
216 struct hv_device *hv_dev = device_to_hv_device(dev);
217
218 if (!hv_dev->channel)
219 return -ENODEV;
220 return sprintf(buf, "%d\n",
221 channel_latency(hv_dev->channel,
222 vmbus_connection.monitor_pages[1]));
223}
224static DEVICE_ATTR_RO(client_monitor_latency);
225
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700226static ssize_t server_monitor_conn_id_show(struct device *dev,
227 struct device_attribute *dev_attr,
228 char *buf)
229{
230 struct hv_device *hv_dev = device_to_hv_device(dev);
231
232 if (!hv_dev->channel)
233 return -ENODEV;
234 return sprintf(buf, "%d\n",
235 channel_conn_id(hv_dev->channel,
236 vmbus_connection.monitor_pages[0]));
237}
238static DEVICE_ATTR_RO(server_monitor_conn_id);
239
240static ssize_t client_monitor_conn_id_show(struct device *dev,
241 struct device_attribute *dev_attr,
242 char *buf)
243{
244 struct hv_device *hv_dev = device_to_hv_device(dev);
245
246 if (!hv_dev->channel)
247 return -ENODEV;
248 return sprintf(buf, "%d\n",
249 channel_conn_id(hv_dev->channel,
250 vmbus_connection.monitor_pages[1]));
251}
252static DEVICE_ATTR_RO(client_monitor_conn_id);
253
Greg Kroah-Hartman98f4c6512013-09-13 11:33:01 -0700254static ssize_t out_intr_mask_show(struct device *dev,
255 struct device_attribute *dev_attr, char *buf)
256{
257 struct hv_device *hv_dev = device_to_hv_device(dev);
258 struct hv_ring_buffer_debug_info outbound;
259
260 if (!hv_dev->channel)
261 return -ENODEV;
262 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
263 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
264}
265static DEVICE_ATTR_RO(out_intr_mask);
266
267static ssize_t out_read_index_show(struct device *dev,
268 struct device_attribute *dev_attr, char *buf)
269{
270 struct hv_device *hv_dev = device_to_hv_device(dev);
271 struct hv_ring_buffer_debug_info outbound;
272
273 if (!hv_dev->channel)
274 return -ENODEV;
275 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
276 return sprintf(buf, "%d\n", outbound.current_read_index);
277}
278static DEVICE_ATTR_RO(out_read_index);
279
280static ssize_t out_write_index_show(struct device *dev,
281 struct device_attribute *dev_attr,
282 char *buf)
283{
284 struct hv_device *hv_dev = device_to_hv_device(dev);
285 struct hv_ring_buffer_debug_info outbound;
286
287 if (!hv_dev->channel)
288 return -ENODEV;
289 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
290 return sprintf(buf, "%d\n", outbound.current_write_index);
291}
292static DEVICE_ATTR_RO(out_write_index);
293
294static ssize_t out_read_bytes_avail_show(struct device *dev,
295 struct device_attribute *dev_attr,
296 char *buf)
297{
298 struct hv_device *hv_dev = device_to_hv_device(dev);
299 struct hv_ring_buffer_debug_info outbound;
300
301 if (!hv_dev->channel)
302 return -ENODEV;
303 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
304 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
305}
306static DEVICE_ATTR_RO(out_read_bytes_avail);
307
308static ssize_t out_write_bytes_avail_show(struct device *dev,
309 struct device_attribute *dev_attr,
310 char *buf)
311{
312 struct hv_device *hv_dev = device_to_hv_device(dev);
313 struct hv_ring_buffer_debug_info outbound;
314
315 if (!hv_dev->channel)
316 return -ENODEV;
317 hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound);
318 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
319}
320static DEVICE_ATTR_RO(out_write_bytes_avail);
321
322static ssize_t in_intr_mask_show(struct device *dev,
323 struct device_attribute *dev_attr, char *buf)
324{
325 struct hv_device *hv_dev = device_to_hv_device(dev);
326 struct hv_ring_buffer_debug_info inbound;
327
328 if (!hv_dev->channel)
329 return -ENODEV;
330 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
331 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
332}
333static DEVICE_ATTR_RO(in_intr_mask);
334
335static ssize_t in_read_index_show(struct device *dev,
336 struct device_attribute *dev_attr, char *buf)
337{
338 struct hv_device *hv_dev = device_to_hv_device(dev);
339 struct hv_ring_buffer_debug_info inbound;
340
341 if (!hv_dev->channel)
342 return -ENODEV;
343 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
344 return sprintf(buf, "%d\n", inbound.current_read_index);
345}
346static DEVICE_ATTR_RO(in_read_index);
347
348static ssize_t in_write_index_show(struct device *dev,
349 struct device_attribute *dev_attr, char *buf)
350{
351 struct hv_device *hv_dev = device_to_hv_device(dev);
352 struct hv_ring_buffer_debug_info inbound;
353
354 if (!hv_dev->channel)
355 return -ENODEV;
356 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
357 return sprintf(buf, "%d\n", inbound.current_write_index);
358}
359static DEVICE_ATTR_RO(in_write_index);
360
361static ssize_t in_read_bytes_avail_show(struct device *dev,
362 struct device_attribute *dev_attr,
363 char *buf)
364{
365 struct hv_device *hv_dev = device_to_hv_device(dev);
366 struct hv_ring_buffer_debug_info inbound;
367
368 if (!hv_dev->channel)
369 return -ENODEV;
370 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
371 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
372}
373static DEVICE_ATTR_RO(in_read_bytes_avail);
374
375static ssize_t in_write_bytes_avail_show(struct device *dev,
376 struct device_attribute *dev_attr,
377 char *buf)
378{
379 struct hv_device *hv_dev = device_to_hv_device(dev);
380 struct hv_ring_buffer_debug_info inbound;
381
382 if (!hv_dev->channel)
383 return -ENODEV;
384 hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
385 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
386}
387static DEVICE_ATTR_RO(in_write_bytes_avail);
388
389/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700390static struct attribute *vmbus_attrs[] = {
391 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700392 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700393 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700394 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700395 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700396 &dev_attr_modalias.attr,
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700397 &dev_attr_server_monitor_pending.attr,
398 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700399 &dev_attr_server_monitor_latency.attr,
400 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700401 &dev_attr_server_monitor_conn_id.attr,
402 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c6512013-09-13 11:33:01 -0700403 &dev_attr_out_intr_mask.attr,
404 &dev_attr_out_read_index.attr,
405 &dev_attr_out_write_index.attr,
406 &dev_attr_out_read_bytes_avail.attr,
407 &dev_attr_out_write_bytes_avail.attr,
408 &dev_attr_in_intr_mask.attr,
409 &dev_attr_in_read_index.attr,
410 &dev_attr_in_write_index.attr,
411 &dev_attr_in_read_bytes_avail.attr,
412 &dev_attr_in_write_bytes_avail.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700413 NULL,
414};
415ATTRIBUTE_GROUPS(vmbus);
416
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700417/*
418 * vmbus_uevent - add uevent for our device
419 *
420 * This routine is invoked when a device is added or removed on the vmbus to
421 * generate a uevent to udev in the userspace. The udev will then look at its
422 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700423 *
424 * The alias string will be of the form vmbus:guid where guid is the string
425 * representation of the device guid (each byte of the guid will be
426 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700427 */
428static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
429{
430 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200431 int ret;
432 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700433
Olaf Heringfd776ba2011-09-02 18:25:56 +0200434 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700435 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
436 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700437}
438
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700439static uuid_le null_guid;
440
441static inline bool is_null_guid(const __u8 *guid)
442{
443 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
444 return false;
445 return true;
446}
447
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700448/*
449 * Return a matching hv_vmbus_device_id pointer.
450 * If there is no match, return NULL.
451 */
452static const struct hv_vmbus_device_id *hv_vmbus_get_id(
453 const struct hv_vmbus_device_id *id,
454 __u8 *guid)
455{
456 for (; !is_null_guid(id->guid); id++)
457 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
458 return id;
459
460 return NULL;
461}
462
463
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700464
465/*
466 * vmbus_match - Attempt to match the specified device to the specified driver
467 */
468static int vmbus_match(struct device *device, struct device_driver *driver)
469{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700470 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700471 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700472
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700473 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
474 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700475
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700476 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700477}
478
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700479/*
480 * vmbus_probe - Add the new vmbus's child device
481 */
482static int vmbus_probe(struct device *child_device)
483{
484 int ret = 0;
485 struct hv_driver *drv =
486 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700487 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700488 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700489
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700490 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700491 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700492 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700493 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700494 pr_err("probe failed for device %s (%d)\n",
495 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700496
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700497 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700498 pr_err("probe not set for driver %s\n",
499 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700500 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700501 }
502 return ret;
503}
504
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700505/*
506 * vmbus_remove - Remove a vmbus device
507 */
508static int vmbus_remove(struct device *child_device)
509{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700510 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700511 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700512
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700513 if (drv->remove)
514 drv->remove(dev);
515 else
516 pr_err("remove not set for driver %s\n",
517 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700518
519 return 0;
520}
521
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700522
523/*
524 * vmbus_shutdown - Shutdown a vmbus device
525 */
526static void vmbus_shutdown(struct device *child_device)
527{
528 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700529 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700530
531
532 /* The device may not be attached yet */
533 if (!child_device->driver)
534 return;
535
536 drv = drv_to_hv_drv(child_device->driver);
537
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700538 if (drv->shutdown)
539 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700540
541 return;
542}
543
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700544
545/*
546 * vmbus_device_release - Final callback release of the vmbus child device
547 */
548static void vmbus_device_release(struct device *device)
549{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700550 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700551
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700552 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700553
554}
555
Bill Pemberton454f18a2009-07-27 16:47:24 -0400556/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700557static struct bus_type hv_bus = {
558 .name = "vmbus",
559 .match = vmbus_match,
560 .shutdown = vmbus_shutdown,
561 .remove = vmbus_remove,
562 .probe = vmbus_probe,
563 .uevent = vmbus_uevent,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700564 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700565};
566
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800567static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800568
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800569
Timo Teräsbf6506f2010-12-15 20:48:08 +0200570struct onmessage_work_context {
571 struct work_struct work;
572 struct hv_message msg;
573};
574
575static void vmbus_onmessage_work(struct work_struct *work)
576{
577 struct onmessage_work_context *ctx;
578
579 ctx = container_of(work, struct onmessage_work_context,
580 work);
581 vmbus_onmessage(&ctx->msg);
582 kfree(ctx);
583}
584
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800585static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800586{
587 int cpu = smp_processor_id();
588 void *page_addr = hv_context.synic_message_page[cpu];
589 struct hv_message *msg = (struct hv_message *)page_addr +
590 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200591 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800592
593 while (1) {
594 if (msg->header.message_type == HVMSG_NONE) {
595 /* no msg */
596 break;
597 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200598 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
599 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800600 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200601 INIT_WORK(&ctx->work, vmbus_onmessage_work);
602 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800603 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800604 }
605
606 msg->header.message_type = HVMSG_NONE;
607
608 /*
609 * Make sure the write to MessageType (ie set to
610 * HVMSG_NONE) happens before we read the
611 * MessagePending and EOMing. Otherwise, the EOMing
612 * will not deliver any more messages since there is
613 * no empty slot
614 */
Jason Wang35848f62013-06-18 13:04:23 +0800615 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800616
617 if (msg->header.message_flags.msg_pending) {
618 /*
619 * This will cause message queue rescan to
620 * possibly deliver another msg from the
621 * hypervisor
622 */
623 wrmsrl(HV_X64_MSR_EOM, 0);
624 }
625 }
626}
627
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700628static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800629{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800630 int cpu = smp_processor_id();
631 void *page_addr;
632 struct hv_message *msg;
633 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700634 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800635
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800636 page_addr = hv_context.synic_event_page[cpu];
637 if (page_addr == NULL)
638 return IRQ_NONE;
639
640 event = (union hv_synic_event_flags *)page_addr +
641 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700642 /*
643 * Check for events before checking for messages. This is the order
644 * in which events and messages are checked in Windows guests on
645 * Hyper-V, and the Windows team suggested we do the same.
646 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800647
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800648 if ((vmbus_proto_version == VERSION_WS2008) ||
649 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800650
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800651 /* Since we are a child, we only need to check bit 0 */
652 if (sync_test_and_clear_bit(0,
653 (unsigned long *) &event->flags32[0])) {
654 handled = true;
655 }
656 } else {
657 /*
658 * Our host is win8 or above. The signaling mechanism
659 * has changed and we can directly look at the event page.
660 * If bit n is set then we have an interrup on the channel
661 * whose id is n.
662 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700663 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700664 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700665
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800666 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800667 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800668
669
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700670 page_addr = hv_context.synic_message_page[cpu];
671 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
672
673 /* Check if there are actual msgs to be processed */
674 if (msg->header.message_type != HVMSG_NONE) {
675 handled = true;
676 tasklet_schedule(&msg_dpc);
677 }
678
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700679 if (handled)
680 return IRQ_HANDLED;
681 else
682 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700683}
684
Hank Janssen3e189512010-03-04 22:11:00 +0000685/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800686 * vmbus interrupt flow handler:
687 * vmbus interrupts can concurrently occur on multiple CPUs and
688 * can be handled concurrently.
689 */
690
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800691static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800692{
693 kstat_incr_irqs_this_cpu(irq, desc);
694
695 desc->action->handler(irq, desc->action->dev_id);
696}
697
698/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700699 * vmbus_bus_init -Main vmbus driver initialization routine.
700 *
701 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100702 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100703 * - invoke the vmbus hv main init routine
704 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100705 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700706 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700707static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700708{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700709 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700710
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800711 /* Hypervisor initialization...setup hypercall page..etc */
712 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700713 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700714 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700715 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700716 }
717
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700718 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700719
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700720 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700721 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700722 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700723
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400724 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700725
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700726 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700727 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700728 irq);
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700729 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700730 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700731
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800732 /*
733 * Vmbus interrupts can be handled concurrently on
734 * different CPUs. Establish an appropriate interrupt flow
735 * handler that can support this model.
736 */
737 irq_set_handler(irq, vmbus_flow_handler);
738
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800739 /*
740 * Register our interrupt handler.
741 */
742 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700743
Jason Wang2608fb62013-06-19 11:28:10 +0800744 ret = hv_synic_alloc();
745 if (ret)
746 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700747 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800748 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700749 * connect to the host.
750 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800751 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700752 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700753 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800754 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700755
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800756 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000757
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700758 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700759
Jason Wang2608fb62013-06-19 11:28:10 +0800760err_alloc:
761 hv_synic_free();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700762 free_irq(irq, hv_acpi_dev);
763
764err_unregister:
765 bus_unregister(&hv_bus);
766
767err_cleanup:
768 hv_cleanup();
769
770 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700771}
772
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700773/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700774 * __vmbus_child_driver_register - Register a vmbus's driver
775 * @drv: Pointer to driver structure you want to register
776 * @owner: owner module of the drv
777 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000778 *
779 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700780 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000781 * It will return the state of the 'driver_register()' call.
782 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700783 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700784int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700785{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400786 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700787
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700788 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700789
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800790 ret = vmbus_exists();
791 if (ret < 0)
792 return ret;
793
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700794 hv_driver->driver.name = hv_driver->name;
795 hv_driver->driver.owner = owner;
796 hv_driver->driver.mod_name = mod_name;
797 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700798
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700799 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700800
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400801 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700802}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700803EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700804
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700805/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700806 * vmbus_driver_unregister() - Unregister a vmbus's driver
807 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000808 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700809 * Un-register the given driver that was previous registered with a call to
810 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700811 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700812void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700813{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700814 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700815
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800816 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800817 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700818}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700819EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700820
Hank Janssen3e189512010-03-04 22:11:00 +0000821/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700822 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000823 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700824 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700825struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700826 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800827 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700828{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200829 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700830
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800831 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
832 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700833 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700834 return NULL;
835 }
836
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700837 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700838 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800839 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700840 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700841
Hank Janssen3e7ee492009-07-13 16:02:34 -0700842
Hank Janssen3e7ee492009-07-13 16:02:34 -0700843 return child_device_obj;
844}
845
Hank Janssen3e189512010-03-04 22:11:00 +0000846/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700847 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700848 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700849int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700850{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700851 int ret = 0;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800852
Bill Pembertonf4888412009-07-29 17:00:12 -0400853 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700854
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800855 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700856 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700857
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700858 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700859 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800860 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700861
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700862 /*
863 * Register with the LDM. This will kick off the driver/device
864 * binding...which will eventually call vmbus_match() and vmbus_probe()
865 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800866 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700867
Hank Janssen3e7ee492009-07-13 16:02:34 -0700868 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700869 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700870 else
Fernando Soto84672362013-06-14 23:13:35 +0000871 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700872 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700873
Hank Janssen3e7ee492009-07-13 16:02:34 -0700874 return ret;
875}
876
Hank Janssen3e189512010-03-04 22:11:00 +0000877/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700878 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000879 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700880 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700881void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700882{
Fernando Soto84672362013-06-14 23:13:35 +0000883 pr_debug("child device %s unregistered\n",
884 dev_name(&device_obj->device));
885
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700886 /*
887 * Kick off the process of unregistering the device.
888 * This will call vmbus_remove() and eventually vmbus_device_release()
889 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800890 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700891}
892
Hank Janssen3e7ee492009-07-13 16:02:34 -0700893
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700894/*
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800895 * VMBUS is an acpi enumerated device. Get the the information we
896 * need from DSDT.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700897 */
898
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800899static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700900{
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800901 switch (res->type) {
902 case ACPI_RESOURCE_TYPE_IRQ:
903 irq = res->data.irq.interrupts[0];
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +0100904 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700905
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800906 case ACPI_RESOURCE_TYPE_ADDRESS64:
Gerd Hoffmann90eedf02014-02-24 14:17:09 +0100907 hyperv_mmio.start = res->data.address64.minimum;
908 hyperv_mmio.end = res->data.address64.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +0100909 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700910 }
911
912 return AE_OK;
913}
914
915static int vmbus_acpi_add(struct acpi_device *device)
916{
917 acpi_status result;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800918 int ret_val = -ENODEV;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700919
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700920 hv_acpi_dev = device;
921
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700922 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800923 vmbus_walk_resources, NULL);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700924
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800925 if (ACPI_FAILURE(result))
926 goto acpi_walk_err;
927 /*
928 * The parent of the vmbus acpi device (Gen2 firmware) is the VMOD that
929 * has the mmio ranges. Get that.
930 */
931 if (device->parent) {
932 result = acpi_walk_resources(device->parent->handle,
933 METHOD_NAME__CRS,
934 vmbus_walk_resources, NULL);
935
936 if (ACPI_FAILURE(result))
937 goto acpi_walk_err;
Gerd Hoffmann90eedf02014-02-24 14:17:09 +0100938 if (hyperv_mmio.start && hyperv_mmio.end)
939 request_resource(&iomem_resource, &hyperv_mmio);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700940 }
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800941 ret_val = 0;
942
943acpi_walk_err:
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700944 complete(&probe_event);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -0800945 return ret_val;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700946}
947
948static const struct acpi_device_id vmbus_acpi_device_ids[] = {
949 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700950 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700951 {"", 0},
952};
953MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
954
955static struct acpi_driver vmbus_acpi_driver = {
956 .name = "vmbus",
957 .ids = vmbus_acpi_device_ids,
958 .ops = {
959 .add = vmbus_acpi_add,
960 },
961};
962
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700963static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700964{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700965 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700966
Jason Wang1f94ea82012-08-31 13:32:44 +0800967 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800968 return -ENODEV;
969
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700970 init_completion(&probe_event);
971
972 /*
973 * Get irq resources first.
974 */
975
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700976 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
977
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700978 if (ret)
979 return ret;
980
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700981 t = wait_for_completion_timeout(&probe_event, 5*HZ);
982 if (t == 0) {
983 ret = -ETIMEDOUT;
984 goto cleanup;
985 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700986
987 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700988 ret = -ENODEV;
989 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700990 }
991
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700992 ret = vmbus_bus_init(irq);
993 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700994 goto cleanup;
995
996 return 0;
997
998cleanup:
999 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08001000 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07001001 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07001002}
1003
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001004static void __exit vmbus_exit(void)
1005{
1006
1007 free_irq(irq, hv_acpi_dev);
1008 vmbus_free_channels();
1009 bus_unregister(&hv_bus);
1010 hv_cleanup();
1011 acpi_bus_unregister_driver(&vmbus_acpi_driver);
1012}
1013
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07001014
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001015MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -07001016
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -07001017subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08001018module_exit(vmbus_exit);