blob: 48258ae3467d37fa826881f323e1035d4cb8be82 [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
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060049struct hv_device_info {
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060050 uuid_le chn_instance;
51
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060052 u32 server_monitor_pending;
53 u32 server_monitor_latency;
54 u32 server_monitor_conn_id;
55 u32 client_monitor_pending;
56 u32 client_monitor_latency;
57 u32 client_monitor_conn_id;
58
59 struct hv_dev_port_info inbound;
60 struct hv_dev_port_info outbound;
61};
62
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080063static int vmbus_exists(void)
64{
65 if (hv_acpi_dev == NULL)
66 return -ENODEV;
67
68 return 0;
69}
70
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060071
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070072static void get_channel_info(struct hv_device *device,
73 struct hv_device_info *info)
74{
75 struct vmbus_channel_debug_info debug_info;
76
77 if (!device->channel)
78 return;
79
80 vmbus_get_debug_info(device->channel, &debug_info);
81
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070082 memcpy(&info->chn_instance, &debug_info.interface_instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -070083 sizeof(uuid_le));
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070084
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070085 info->server_monitor_pending = debug_info.servermonitor_pending;
86 info->server_monitor_latency = debug_info.servermonitor_latency;
87 info->server_monitor_conn_id = debug_info.servermonitor_connectionid;
88
89 info->client_monitor_pending = debug_info.clientmonitor_pending;
90 info->client_monitor_latency = debug_info.clientmonitor_latency;
91 info->client_monitor_conn_id = debug_info.clientmonitor_connectionid;
92
93 info->inbound.int_mask = debug_info.inbound.current_interrupt_mask;
94 info->inbound.read_idx = debug_info.inbound.current_read_index;
95 info->inbound.write_idx = debug_info.inbound.current_write_index;
96 info->inbound.bytes_avail_toread =
97 debug_info.inbound.bytes_avail_toread;
98 info->inbound.bytes_avail_towrite =
99 debug_info.inbound.bytes_avail_towrite;
100
101 info->outbound.int_mask =
102 debug_info.outbound.current_interrupt_mask;
103 info->outbound.read_idx = debug_info.outbound.current_read_index;
104 info->outbound.write_idx = debug_info.outbound.current_write_index;
105 info->outbound.bytes_avail_toread =
106 debug_info.outbound.bytes_avail_toread;
107 info->outbound.bytes_avail_towrite =
108 debug_info.outbound.bytes_avail_towrite;
109}
110
Olaf Heringfd776ba2011-09-02 18:25:56 +0200111#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
112static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
113{
114 int i;
115 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
116 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
117}
118
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700119/*
120 * vmbus_show_device_attr - Show the device attribute in sysfs.
121 *
122 * This is invoked when user does a
123 * "cat /sys/bus/vmbus/devices/<busdevice>/<attr name>"
124 */
125static ssize_t vmbus_show_device_attr(struct device *dev,
126 struct device_attribute *dev_attr,
127 char *buf)
128{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700129 struct hv_device *hv_dev = device_to_hv_device(dev);
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700130 struct hv_device_info *device_info;
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700131 int ret = 0;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700132
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700133 device_info = kzalloc(sizeof(struct hv_device_info), GFP_KERNEL);
134 if (!device_info)
135 return ret;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700136
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700137 get_channel_info(hv_dev, device_info);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700138
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700139 if (!strcmp(dev_attr->attr.name, "device_id")) {
K. Y. Srinivasan2221f6e2012-08-13 10:06:50 -0700140 ret = sprintf(buf, "{%pUl}\n", device_info->chn_instance.b);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700141 } else if (!strcmp(dev_attr->attr.name, "out_intr_mask")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700142 ret = sprintf(buf, "%d\n", device_info->outbound.int_mask);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700143 } else if (!strcmp(dev_attr->attr.name, "out_read_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700144 ret = sprintf(buf, "%d\n", device_info->outbound.read_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700145 } else if (!strcmp(dev_attr->attr.name, "out_write_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700146 ret = sprintf(buf, "%d\n", device_info->outbound.write_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700147 } else if (!strcmp(dev_attr->attr.name, "out_read_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700148 ret = sprintf(buf, "%d\n",
149 device_info->outbound.bytes_avail_toread);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700150 } else if (!strcmp(dev_attr->attr.name, "out_write_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700151 ret = sprintf(buf, "%d\n",
152 device_info->outbound.bytes_avail_towrite);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700153 } else if (!strcmp(dev_attr->attr.name, "in_intr_mask")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700154 ret = sprintf(buf, "%d\n", device_info->inbound.int_mask);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700155 } else if (!strcmp(dev_attr->attr.name, "in_read_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700156 ret = sprintf(buf, "%d\n", device_info->inbound.read_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700157 } else if (!strcmp(dev_attr->attr.name, "in_write_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700158 ret = sprintf(buf, "%d\n", device_info->inbound.write_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700159 } else if (!strcmp(dev_attr->attr.name, "in_read_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700160 ret = sprintf(buf, "%d\n",
161 device_info->inbound.bytes_avail_toread);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700162 } else if (!strcmp(dev_attr->attr.name, "in_write_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700163 ret = sprintf(buf, "%d\n",
164 device_info->inbound.bytes_avail_towrite);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700165 } else if (!strcmp(dev_attr->attr.name, "server_monitor_pending")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700166 ret = sprintf(buf, "%d\n", device_info->server_monitor_pending);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700167 } else if (!strcmp(dev_attr->attr.name, "server_monitor_latency")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700168 ret = sprintf(buf, "%d\n", device_info->server_monitor_latency);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700169 } else if (!strcmp(dev_attr->attr.name, "server_monitor_conn_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700170 ret = sprintf(buf, "%d\n",
171 device_info->server_monitor_conn_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700172 } else if (!strcmp(dev_attr->attr.name, "client_monitor_pending")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700173 ret = sprintf(buf, "%d\n", device_info->client_monitor_pending);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700174 } else if (!strcmp(dev_attr->attr.name, "client_monitor_latency")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700175 ret = sprintf(buf, "%d\n", device_info->client_monitor_latency);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700176 } else if (!strcmp(dev_attr->attr.name, "client_monitor_conn_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700177 ret = sprintf(buf, "%d\n",
178 device_info->client_monitor_conn_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700179 }
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700180
181 kfree(device_info);
182 return ret;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700183}
184
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700185static ssize_t id_show(struct device *dev, 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", hv_dev->channel->offermsg.child_relid);
193}
194static DEVICE_ATTR_RO(id);
195
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700196static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
197 char *buf)
198{
199 struct hv_device *hv_dev = device_to_hv_device(dev);
200
201 if (!hv_dev->channel)
202 return -ENODEV;
203 return sprintf(buf, "%d\n", hv_dev->channel->state);
204}
205static DEVICE_ATTR_RO(state);
206
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700207static ssize_t monitor_id_show(struct device *dev,
208 struct device_attribute *dev_attr, 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", hv_dev->channel->offermsg.monitorid);
215}
216static DEVICE_ATTR_RO(monitor_id);
217
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700218static ssize_t class_id_show(struct device *dev,
219 struct device_attribute *dev_attr, char *buf)
220{
221 struct hv_device *hv_dev = device_to_hv_device(dev);
222
223 if (!hv_dev->channel)
224 return -ENODEV;
225 return sprintf(buf, "{%pUl}\n",
226 hv_dev->channel->offermsg.offer.if_type.b);
227}
228static DEVICE_ATTR_RO(class_id);
229
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700230static ssize_t modalias_show(struct device *dev,
231 struct device_attribute *dev_attr, char *buf)
232{
233 struct hv_device *hv_dev = device_to_hv_device(dev);
234 char alias_name[VMBUS_ALIAS_LEN + 1];
235
236 print_alias_name(hv_dev, alias_name);
237 return sprintf(buf, "vmbus:%s\n", alias_name);
238}
239static DEVICE_ATTR_RO(modalias);
240
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700241
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700242static struct attribute *vmbus_attrs[] = {
243 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700244 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700245 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700246 &dev_attr_class_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700247 &dev_attr_modalias.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700248 NULL,
249};
250ATTRIBUTE_GROUPS(vmbus);
251
Bill Pemberton454f18a2009-07-27 16:47:24 -0400252/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700253static struct device_attribute vmbus_device_attrs[] = {
Hank Janssen3e7ee492009-07-13 16:02:34 -0700254 __ATTR(device_id, S_IRUGO, vmbus_show_device_attr, NULL),
Hank Janssen3e7ee492009-07-13 16:02:34 -0700255
256 __ATTR(server_monitor_pending, S_IRUGO, vmbus_show_device_attr, NULL),
257 __ATTR(server_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
258 __ATTR(server_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
259
260 __ATTR(client_monitor_pending, S_IRUGO, vmbus_show_device_attr, NULL),
261 __ATTR(client_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
262 __ATTR(client_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
263
264 __ATTR(out_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
265 __ATTR(out_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
266 __ATTR(out_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
267 __ATTR(out_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
268 __ATTR(out_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
269
270 __ATTR(in_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
271 __ATTR(in_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
272 __ATTR(in_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
273 __ATTR(in_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
274 __ATTR(in_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
275 __ATTR_NULL
276};
Hank Janssen3e7ee492009-07-13 16:02:34 -0700277
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700278
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700279/*
280 * vmbus_uevent - add uevent for our device
281 *
282 * This routine is invoked when a device is added or removed on the vmbus to
283 * generate a uevent to udev in the userspace. The udev will then look at its
284 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700285 *
286 * The alias string will be of the form vmbus:guid where guid is the string
287 * representation of the device guid (each byte of the guid will be
288 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700289 */
290static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
291{
292 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200293 int ret;
294 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700295
Olaf Heringfd776ba2011-09-02 18:25:56 +0200296 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700297 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
298 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700299}
300
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700301static uuid_le null_guid;
302
303static inline bool is_null_guid(const __u8 *guid)
304{
305 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
306 return false;
307 return true;
308}
309
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700310/*
311 * Return a matching hv_vmbus_device_id pointer.
312 * If there is no match, return NULL.
313 */
314static const struct hv_vmbus_device_id *hv_vmbus_get_id(
315 const struct hv_vmbus_device_id *id,
316 __u8 *guid)
317{
318 for (; !is_null_guid(id->guid); id++)
319 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
320 return id;
321
322 return NULL;
323}
324
325
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700326
327/*
328 * vmbus_match - Attempt to match the specified device to the specified driver
329 */
330static int vmbus_match(struct device *device, struct device_driver *driver)
331{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700332 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700333 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700334
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700335 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
336 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700337
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700338 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700339}
340
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700341/*
342 * vmbus_probe - Add the new vmbus's child device
343 */
344static int vmbus_probe(struct device *child_device)
345{
346 int ret = 0;
347 struct hv_driver *drv =
348 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700349 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700350 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700351
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700352 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700353 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700354 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700355 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700356 pr_err("probe failed for device %s (%d)\n",
357 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700358
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700359 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700360 pr_err("probe not set for driver %s\n",
361 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700362 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700363 }
364 return ret;
365}
366
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700367/*
368 * vmbus_remove - Remove a vmbus device
369 */
370static int vmbus_remove(struct device *child_device)
371{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700372 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700373 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700374
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700375 if (drv->remove)
376 drv->remove(dev);
377 else
378 pr_err("remove not set for driver %s\n",
379 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700380
381 return 0;
382}
383
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700384
385/*
386 * vmbus_shutdown - Shutdown a vmbus device
387 */
388static void vmbus_shutdown(struct device *child_device)
389{
390 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700391 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700392
393
394 /* The device may not be attached yet */
395 if (!child_device->driver)
396 return;
397
398 drv = drv_to_hv_drv(child_device->driver);
399
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700400 if (drv->shutdown)
401 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700402
403 return;
404}
405
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700406
407/*
408 * vmbus_device_release - Final callback release of the vmbus child device
409 */
410static void vmbus_device_release(struct device *device)
411{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700412 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700413
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700414 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700415
416}
417
Bill Pemberton454f18a2009-07-27 16:47:24 -0400418/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700419static struct bus_type hv_bus = {
420 .name = "vmbus",
421 .match = vmbus_match,
422 .shutdown = vmbus_shutdown,
423 .remove = vmbus_remove,
424 .probe = vmbus_probe,
425 .uevent = vmbus_uevent,
426 .dev_attrs = vmbus_device_attrs,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700427 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700428};
429
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800430static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800431
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800432
Timo Teräsbf6506f2010-12-15 20:48:08 +0200433struct onmessage_work_context {
434 struct work_struct work;
435 struct hv_message msg;
436};
437
438static void vmbus_onmessage_work(struct work_struct *work)
439{
440 struct onmessage_work_context *ctx;
441
442 ctx = container_of(work, struct onmessage_work_context,
443 work);
444 vmbus_onmessage(&ctx->msg);
445 kfree(ctx);
446}
447
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800448static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800449{
450 int cpu = smp_processor_id();
451 void *page_addr = hv_context.synic_message_page[cpu];
452 struct hv_message *msg = (struct hv_message *)page_addr +
453 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200454 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800455
456 while (1) {
457 if (msg->header.message_type == HVMSG_NONE) {
458 /* no msg */
459 break;
460 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200461 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
462 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800463 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200464 INIT_WORK(&ctx->work, vmbus_onmessage_work);
465 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800466 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800467 }
468
469 msg->header.message_type = HVMSG_NONE;
470
471 /*
472 * Make sure the write to MessageType (ie set to
473 * HVMSG_NONE) happens before we read the
474 * MessagePending and EOMing. Otherwise, the EOMing
475 * will not deliver any more messages since there is
476 * no empty slot
477 */
Jason Wang35848f62013-06-18 13:04:23 +0800478 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800479
480 if (msg->header.message_flags.msg_pending) {
481 /*
482 * This will cause message queue rescan to
483 * possibly deliver another msg from the
484 * hypervisor
485 */
486 wrmsrl(HV_X64_MSR_EOM, 0);
487 }
488 }
489}
490
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700491static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800492{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800493 int cpu = smp_processor_id();
494 void *page_addr;
495 struct hv_message *msg;
496 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700497 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800498
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800499 page_addr = hv_context.synic_event_page[cpu];
500 if (page_addr == NULL)
501 return IRQ_NONE;
502
503 event = (union hv_synic_event_flags *)page_addr +
504 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700505 /*
506 * Check for events before checking for messages. This is the order
507 * in which events and messages are checked in Windows guests on
508 * Hyper-V, and the Windows team suggested we do the same.
509 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800510
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800511 if ((vmbus_proto_version == VERSION_WS2008) ||
512 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800513
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800514 /* Since we are a child, we only need to check bit 0 */
515 if (sync_test_and_clear_bit(0,
516 (unsigned long *) &event->flags32[0])) {
517 handled = true;
518 }
519 } else {
520 /*
521 * Our host is win8 or above. The signaling mechanism
522 * has changed and we can directly look at the event page.
523 * If bit n is set then we have an interrup on the channel
524 * whose id is n.
525 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700526 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700527 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700528
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800529 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800530 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800531
532
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700533 page_addr = hv_context.synic_message_page[cpu];
534 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
535
536 /* Check if there are actual msgs to be processed */
537 if (msg->header.message_type != HVMSG_NONE) {
538 handled = true;
539 tasklet_schedule(&msg_dpc);
540 }
541
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700542 if (handled)
543 return IRQ_HANDLED;
544 else
545 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700546}
547
Hank Janssen3e189512010-03-04 22:11:00 +0000548/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800549 * vmbus interrupt flow handler:
550 * vmbus interrupts can concurrently occur on multiple CPUs and
551 * can be handled concurrently.
552 */
553
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800554static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800555{
556 kstat_incr_irqs_this_cpu(irq, desc);
557
558 desc->action->handler(irq, desc->action->dev_id);
559}
560
561/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700562 * vmbus_bus_init -Main vmbus driver initialization routine.
563 *
564 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100565 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100566 * - invoke the vmbus hv main init routine
567 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100568 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700569 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700570static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700571{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700572 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700573
Greg Kroah-Hartman6d26e382010-12-02 12:08:08 -0800574 /* Hypervisor initialization...setup hypercall page..etc */
575 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700576 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700577 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700578 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700579 }
580
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700581 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700582
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700583 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700584 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700585 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700586
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400587 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700588
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700589 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700590 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700591 irq);
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700592 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700593 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700594
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800595 /*
596 * Vmbus interrupts can be handled concurrently on
597 * different CPUs. Establish an appropriate interrupt flow
598 * handler that can support this model.
599 */
600 irq_set_handler(irq, vmbus_flow_handler);
601
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800602 /*
603 * Register our interrupt handler.
604 */
605 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700606
Jason Wang2608fb62013-06-19 11:28:10 +0800607 ret = hv_synic_alloc();
608 if (ret)
609 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700610 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800611 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700612 * connect to the host.
613 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800614 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700615 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700616 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800617 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700618
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800619 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000620
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700621 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700622
Jason Wang2608fb62013-06-19 11:28:10 +0800623err_alloc:
624 hv_synic_free();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700625 free_irq(irq, hv_acpi_dev);
626
627err_unregister:
628 bus_unregister(&hv_bus);
629
630err_cleanup:
631 hv_cleanup();
632
633 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700634}
635
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700636/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700637 * __vmbus_child_driver_register - Register a vmbus's driver
638 * @drv: Pointer to driver structure you want to register
639 * @owner: owner module of the drv
640 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000641 *
642 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700643 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000644 * It will return the state of the 'driver_register()' call.
645 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700646 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700647int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700648{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400649 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700650
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700651 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700652
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800653 ret = vmbus_exists();
654 if (ret < 0)
655 return ret;
656
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700657 hv_driver->driver.name = hv_driver->name;
658 hv_driver->driver.owner = owner;
659 hv_driver->driver.mod_name = mod_name;
660 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700661
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700662 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700663
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400664 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700665}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700666EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700667
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700668/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700669 * vmbus_driver_unregister() - Unregister a vmbus's driver
670 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000671 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700672 * Un-register the given driver that was previous registered with a call to
673 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700674 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700675void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700676{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700677 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700678
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800679 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800680 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700681}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700682EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700683
Hank Janssen3e189512010-03-04 22:11:00 +0000684/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700685 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000686 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700687 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700688struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700689 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800690 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700691{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200692 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700693
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800694 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
695 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700696 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700697 return NULL;
698 }
699
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700700 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700701 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800702 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700703 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700704
Hank Janssen3e7ee492009-07-13 16:02:34 -0700705
Hank Janssen3e7ee492009-07-13 16:02:34 -0700706 return child_device_obj;
707}
708
Hank Janssen3e189512010-03-04 22:11:00 +0000709/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700710 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700711 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700712int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700713{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700714 int ret = 0;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800715
Bill Pembertonf4888412009-07-29 17:00:12 -0400716 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700717
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800718 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700719 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700720
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700721 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700722 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800723 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700724
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700725 /*
726 * Register with the LDM. This will kick off the driver/device
727 * binding...which will eventually call vmbus_match() and vmbus_probe()
728 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800729 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700730
Hank Janssen3e7ee492009-07-13 16:02:34 -0700731 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700732 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700733 else
Fernando Soto84672362013-06-14 23:13:35 +0000734 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700735 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700736
Hank Janssen3e7ee492009-07-13 16:02:34 -0700737 return ret;
738}
739
Hank Janssen3e189512010-03-04 22:11:00 +0000740/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700741 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000742 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700743 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700744void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700745{
Fernando Soto84672362013-06-14 23:13:35 +0000746 pr_debug("child device %s unregistered\n",
747 dev_name(&device_obj->device));
748
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700749 /*
750 * Kick off the process of unregistering the device.
751 * This will call vmbus_remove() and eventually vmbus_device_release()
752 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800753 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700754}
755
Hank Janssen3e7ee492009-07-13 16:02:34 -0700756
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700757/*
758 * VMBUS is an acpi enumerated device. Get the the IRQ information
759 * from DSDT.
760 */
761
762static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *irq)
763{
764
765 if (res->type == ACPI_RESOURCE_TYPE_IRQ) {
766 struct acpi_resource_irq *irqp;
767 irqp = &res->data.irq;
768
769 *((unsigned int *)irq) = irqp->interrupts[0];
770 }
771
772 return AE_OK;
773}
774
775static int vmbus_acpi_add(struct acpi_device *device)
776{
777 acpi_status result;
778
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700779 hv_acpi_dev = device;
780
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700781 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
782 vmbus_walk_resources, &irq);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700783
784 if (ACPI_FAILURE(result)) {
785 complete(&probe_event);
786 return -ENODEV;
787 }
788 complete(&probe_event);
789 return 0;
790}
791
792static const struct acpi_device_id vmbus_acpi_device_ids[] = {
793 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700794 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700795 {"", 0},
796};
797MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
798
799static struct acpi_driver vmbus_acpi_driver = {
800 .name = "vmbus",
801 .ids = vmbus_acpi_device_ids,
802 .ops = {
803 .add = vmbus_acpi_add,
804 },
805};
806
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700807static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700808{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700809 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700810
Jason Wang1f94ea82012-08-31 13:32:44 +0800811 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800812 return -ENODEV;
813
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700814 init_completion(&probe_event);
815
816 /*
817 * Get irq resources first.
818 */
819
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700820 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
821
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700822 if (ret)
823 return ret;
824
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700825 t = wait_for_completion_timeout(&probe_event, 5*HZ);
826 if (t == 0) {
827 ret = -ETIMEDOUT;
828 goto cleanup;
829 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700830
831 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700832 ret = -ENODEV;
833 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700834 }
835
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700836 ret = vmbus_bus_init(irq);
837 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700838 goto cleanup;
839
840 return 0;
841
842cleanup:
843 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800844 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700845 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700846}
847
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800848static void __exit vmbus_exit(void)
849{
850
851 free_irq(irq, hv_acpi_dev);
852 vmbus_free_channels();
853 bus_unregister(&hv_bus);
854 hv_cleanup();
855 acpi_bus_unregister_driver(&vmbus_acpi_driver);
856}
857
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700858
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700859MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700860
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -0700861subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800862module_exit(vmbus_exit);