blob: 1e5bc9c49c63b13b5c3153b3bdb69a051e2cf96a [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_type;
51 uuid_le chn_instance;
52
53 u32 monitor_id;
54 u32 server_monitor_pending;
55 u32 server_monitor_latency;
56 u32 server_monitor_conn_id;
57 u32 client_monitor_pending;
58 u32 client_monitor_latency;
59 u32 client_monitor_conn_id;
60
61 struct hv_dev_port_info inbound;
62 struct hv_dev_port_info outbound;
63};
64
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080065static int vmbus_exists(void)
66{
67 if (hv_acpi_dev == NULL)
68 return -ENODEV;
69
70 return 0;
71}
72
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060073
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070074static void get_channel_info(struct hv_device *device,
75 struct hv_device_info *info)
76{
77 struct vmbus_channel_debug_info debug_info;
78
79 if (!device->channel)
80 return;
81
82 vmbus_get_debug_info(device->channel, &debug_info);
83
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070084 memcpy(&info->chn_type, &debug_info.interfacetype,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -070085 sizeof(uuid_le));
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070086 memcpy(&info->chn_instance, &debug_info.interface_instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -070087 sizeof(uuid_le));
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070088
89 info->monitor_id = debug_info.monitorid;
90
91 info->server_monitor_pending = debug_info.servermonitor_pending;
92 info->server_monitor_latency = debug_info.servermonitor_latency;
93 info->server_monitor_conn_id = debug_info.servermonitor_connectionid;
94
95 info->client_monitor_pending = debug_info.clientmonitor_pending;
96 info->client_monitor_latency = debug_info.clientmonitor_latency;
97 info->client_monitor_conn_id = debug_info.clientmonitor_connectionid;
98
99 info->inbound.int_mask = debug_info.inbound.current_interrupt_mask;
100 info->inbound.read_idx = debug_info.inbound.current_read_index;
101 info->inbound.write_idx = debug_info.inbound.current_write_index;
102 info->inbound.bytes_avail_toread =
103 debug_info.inbound.bytes_avail_toread;
104 info->inbound.bytes_avail_towrite =
105 debug_info.inbound.bytes_avail_towrite;
106
107 info->outbound.int_mask =
108 debug_info.outbound.current_interrupt_mask;
109 info->outbound.read_idx = debug_info.outbound.current_read_index;
110 info->outbound.write_idx = debug_info.outbound.current_write_index;
111 info->outbound.bytes_avail_toread =
112 debug_info.outbound.bytes_avail_toread;
113 info->outbound.bytes_avail_towrite =
114 debug_info.outbound.bytes_avail_towrite;
115}
116
Olaf Heringfd776ba2011-09-02 18:25:56 +0200117#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
118static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
119{
120 int i;
121 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
122 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
123}
124
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700125/*
126 * vmbus_show_device_attr - Show the device attribute in sysfs.
127 *
128 * This is invoked when user does a
129 * "cat /sys/bus/vmbus/devices/<busdevice>/<attr name>"
130 */
131static ssize_t vmbus_show_device_attr(struct device *dev,
132 struct device_attribute *dev_attr,
133 char *buf)
134{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700135 struct hv_device *hv_dev = device_to_hv_device(dev);
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700136 struct hv_device_info *device_info;
Olaf Heringfd776ba2011-09-02 18:25:56 +0200137 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700138 int ret = 0;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700139
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700140 device_info = kzalloc(sizeof(struct hv_device_info), GFP_KERNEL);
141 if (!device_info)
142 return ret;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700143
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700144 get_channel_info(hv_dev, device_info);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700145
146 if (!strcmp(dev_attr->attr.name, "class_id")) {
K. Y. Srinivasan2221f6e2012-08-13 10:06:50 -0700147 ret = sprintf(buf, "{%pUl}\n", device_info->chn_type.b);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700148 } else if (!strcmp(dev_attr->attr.name, "device_id")) {
K. Y. Srinivasan2221f6e2012-08-13 10:06:50 -0700149 ret = sprintf(buf, "{%pUl}\n", device_info->chn_instance.b);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200150 } else if (!strcmp(dev_attr->attr.name, "modalias")) {
151 print_alias_name(hv_dev, alias_name);
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700152 ret = sprintf(buf, "vmbus:%s\n", alias_name);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700153 } else if (!strcmp(dev_attr->attr.name, "out_intr_mask")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700154 ret = sprintf(buf, "%d\n", device_info->outbound.int_mask);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700155 } else if (!strcmp(dev_attr->attr.name, "out_read_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700156 ret = sprintf(buf, "%d\n", device_info->outbound.read_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700157 } else if (!strcmp(dev_attr->attr.name, "out_write_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700158 ret = sprintf(buf, "%d\n", device_info->outbound.write_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700159 } else if (!strcmp(dev_attr->attr.name, "out_read_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700160 ret = sprintf(buf, "%d\n",
161 device_info->outbound.bytes_avail_toread);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700162 } else if (!strcmp(dev_attr->attr.name, "out_write_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700163 ret = sprintf(buf, "%d\n",
164 device_info->outbound.bytes_avail_towrite);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700165 } else if (!strcmp(dev_attr->attr.name, "in_intr_mask")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700166 ret = sprintf(buf, "%d\n", device_info->inbound.int_mask);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700167 } else if (!strcmp(dev_attr->attr.name, "in_read_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700168 ret = sprintf(buf, "%d\n", device_info->inbound.read_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700169 } else if (!strcmp(dev_attr->attr.name, "in_write_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700170 ret = sprintf(buf, "%d\n", device_info->inbound.write_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700171 } else if (!strcmp(dev_attr->attr.name, "in_read_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700172 ret = sprintf(buf, "%d\n",
173 device_info->inbound.bytes_avail_toread);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700174 } else if (!strcmp(dev_attr->attr.name, "in_write_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700175 ret = sprintf(buf, "%d\n",
176 device_info->inbound.bytes_avail_towrite);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700177 } else if (!strcmp(dev_attr->attr.name, "monitor_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700178 ret = sprintf(buf, "%d\n", device_info->monitor_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700179 } else if (!strcmp(dev_attr->attr.name, "server_monitor_pending")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700180 ret = sprintf(buf, "%d\n", device_info->server_monitor_pending);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700181 } else if (!strcmp(dev_attr->attr.name, "server_monitor_latency")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700182 ret = sprintf(buf, "%d\n", device_info->server_monitor_latency);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700183 } else if (!strcmp(dev_attr->attr.name, "server_monitor_conn_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700184 ret = sprintf(buf, "%d\n",
185 device_info->server_monitor_conn_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700186 } else if (!strcmp(dev_attr->attr.name, "client_monitor_pending")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700187 ret = sprintf(buf, "%d\n", device_info->client_monitor_pending);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700188 } else if (!strcmp(dev_attr->attr.name, "client_monitor_latency")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700189 ret = sprintf(buf, "%d\n", device_info->client_monitor_latency);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700190 } else if (!strcmp(dev_attr->attr.name, "client_monitor_conn_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700191 ret = sprintf(buf, "%d\n",
192 device_info->client_monitor_conn_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700193 }
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700194
195 kfree(device_info);
196 return ret;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700197}
198
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700199static ssize_t id_show(struct device *dev, 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", hv_dev->channel->offermsg.child_relid);
207}
208static DEVICE_ATTR_RO(id);
209
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700210static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
211 char *buf)
212{
213 struct hv_device *hv_dev = device_to_hv_device(dev);
214
215 if (!hv_dev->channel)
216 return -ENODEV;
217 return sprintf(buf, "%d\n", hv_dev->channel->state);
218}
219static DEVICE_ATTR_RO(state);
220
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700221static struct attribute *vmbus_attrs[] = {
222 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700223 &dev_attr_state.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700224 NULL,
225};
226ATTRIBUTE_GROUPS(vmbus);
227
Bill Pemberton454f18a2009-07-27 16:47:24 -0400228/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700229static struct device_attribute vmbus_device_attrs[] = {
Hank Janssen3e7ee492009-07-13 16:02:34 -0700230 __ATTR(class_id, S_IRUGO, vmbus_show_device_attr, NULL),
231 __ATTR(device_id, S_IRUGO, vmbus_show_device_attr, NULL),
232 __ATTR(monitor_id, S_IRUGO, vmbus_show_device_attr, NULL),
Olaf Heringfd776ba2011-09-02 18:25:56 +0200233 __ATTR(modalias, S_IRUGO, vmbus_show_device_attr, NULL),
Hank Janssen3e7ee492009-07-13 16:02:34 -0700234
235 __ATTR(server_monitor_pending, S_IRUGO, vmbus_show_device_attr, NULL),
236 __ATTR(server_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
237 __ATTR(server_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
238
239 __ATTR(client_monitor_pending, S_IRUGO, vmbus_show_device_attr, NULL),
240 __ATTR(client_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
241 __ATTR(client_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
242
243 __ATTR(out_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
244 __ATTR(out_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
245 __ATTR(out_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
246 __ATTR(out_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
247 __ATTR(out_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
248
249 __ATTR(in_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
250 __ATTR(in_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
251 __ATTR(in_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
252 __ATTR(in_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
253 __ATTR(in_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
254 __ATTR_NULL
255};
Hank Janssen3e7ee492009-07-13 16:02:34 -0700256
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700257
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700258/*
259 * vmbus_uevent - add uevent for our device
260 *
261 * This routine is invoked when a device is added or removed on the vmbus to
262 * generate a uevent to udev in the userspace. The udev will then look at its
263 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700264 *
265 * The alias string will be of the form vmbus:guid where guid is the string
266 * representation of the device guid (each byte of the guid will be
267 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700268 */
269static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
270{
271 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200272 int ret;
273 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700274
Olaf Heringfd776ba2011-09-02 18:25:56 +0200275 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700276 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
277 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700278}
279
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700280static uuid_le null_guid;
281
282static inline bool is_null_guid(const __u8 *guid)
283{
284 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
285 return false;
286 return true;
287}
288
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700289/*
290 * Return a matching hv_vmbus_device_id pointer.
291 * If there is no match, return NULL.
292 */
293static const struct hv_vmbus_device_id *hv_vmbus_get_id(
294 const struct hv_vmbus_device_id *id,
295 __u8 *guid)
296{
297 for (; !is_null_guid(id->guid); id++)
298 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
299 return id;
300
301 return NULL;
302}
303
304
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700305
306/*
307 * vmbus_match - Attempt to match the specified device to the specified driver
308 */
309static int vmbus_match(struct device *device, struct device_driver *driver)
310{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700311 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700312 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700313
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700314 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
315 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700316
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700317 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700318}
319
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700320/*
321 * vmbus_probe - Add the new vmbus's child device
322 */
323static int vmbus_probe(struct device *child_device)
324{
325 int ret = 0;
326 struct hv_driver *drv =
327 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700328 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700329 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700330
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700331 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700332 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700333 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700334 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700335 pr_err("probe failed for device %s (%d)\n",
336 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700337
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700338 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700339 pr_err("probe not set for driver %s\n",
340 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700341 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700342 }
343 return ret;
344}
345
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700346/*
347 * vmbus_remove - Remove a vmbus device
348 */
349static int vmbus_remove(struct device *child_device)
350{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700351 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700352 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700353
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700354 if (drv->remove)
355 drv->remove(dev);
356 else
357 pr_err("remove not set for driver %s\n",
358 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700359
360 return 0;
361}
362
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700363
364/*
365 * vmbus_shutdown - Shutdown a vmbus device
366 */
367static void vmbus_shutdown(struct device *child_device)
368{
369 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700370 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700371
372
373 /* The device may not be attached yet */
374 if (!child_device->driver)
375 return;
376
377 drv = drv_to_hv_drv(child_device->driver);
378
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700379 if (drv->shutdown)
380 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700381
382 return;
383}
384
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700385
386/*
387 * vmbus_device_release - Final callback release of the vmbus child device
388 */
389static void vmbus_device_release(struct device *device)
390{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700391 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700392
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700393 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700394
395}
396
Bill Pemberton454f18a2009-07-27 16:47:24 -0400397/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700398static struct bus_type hv_bus = {
399 .name = "vmbus",
400 .match = vmbus_match,
401 .shutdown = vmbus_shutdown,
402 .remove = vmbus_remove,
403 .probe = vmbus_probe,
404 .uevent = vmbus_uevent,
405 .dev_attrs = vmbus_device_attrs,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700406 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700407};
408
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800409static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800410
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800411
Timo Teräsbf6506f2010-12-15 20:48:08 +0200412struct onmessage_work_context {
413 struct work_struct work;
414 struct hv_message msg;
415};
416
417static void vmbus_onmessage_work(struct work_struct *work)
418{
419 struct onmessage_work_context *ctx;
420
421 ctx = container_of(work, struct onmessage_work_context,
422 work);
423 vmbus_onmessage(&ctx->msg);
424 kfree(ctx);
425}
426
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800427static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800428{
429 int cpu = smp_processor_id();
430 void *page_addr = hv_context.synic_message_page[cpu];
431 struct hv_message *msg = (struct hv_message *)page_addr +
432 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200433 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800434
435 while (1) {
436 if (msg->header.message_type == HVMSG_NONE) {
437 /* no msg */
438 break;
439 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200440 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
441 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800442 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200443 INIT_WORK(&ctx->work, vmbus_onmessage_work);
444 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800445 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800446 }
447
448 msg->header.message_type = HVMSG_NONE;
449
450 /*
451 * Make sure the write to MessageType (ie set to
452 * HVMSG_NONE) happens before we read the
453 * MessagePending and EOMing. Otherwise, the EOMing
454 * will not deliver any more messages since there is
455 * no empty slot
456 */
Jason Wang35848f62013-06-18 13:04:23 +0800457 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800458
459 if (msg->header.message_flags.msg_pending) {
460 /*
461 * This will cause message queue rescan to
462 * possibly deliver another msg from the
463 * hypervisor
464 */
465 wrmsrl(HV_X64_MSR_EOM, 0);
466 }
467 }
468}
469
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700470static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800471{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800472 int cpu = smp_processor_id();
473 void *page_addr;
474 struct hv_message *msg;
475 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700476 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800477
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800478 page_addr = hv_context.synic_event_page[cpu];
479 if (page_addr == NULL)
480 return IRQ_NONE;
481
482 event = (union hv_synic_event_flags *)page_addr +
483 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700484 /*
485 * Check for events before checking for messages. This is the order
486 * in which events and messages are checked in Windows guests on
487 * Hyper-V, and the Windows team suggested we do the same.
488 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800489
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800490 if ((vmbus_proto_version == VERSION_WS2008) ||
491 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800492
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800493 /* Since we are a child, we only need to check bit 0 */
494 if (sync_test_and_clear_bit(0,
495 (unsigned long *) &event->flags32[0])) {
496 handled = true;
497 }
498 } else {
499 /*
500 * Our host is win8 or above. The signaling mechanism
501 * has changed and we can directly look at the event page.
502 * If bit n is set then we have an interrup on the channel
503 * whose id is n.
504 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700505 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700506 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700507
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800508 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800509 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800510
511
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700512 page_addr = hv_context.synic_message_page[cpu];
513 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
514
515 /* Check if there are actual msgs to be processed */
516 if (msg->header.message_type != HVMSG_NONE) {
517 handled = true;
518 tasklet_schedule(&msg_dpc);
519 }
520
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700521 if (handled)
522 return IRQ_HANDLED;
523 else
524 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700525}
526
Hank Janssen3e189512010-03-04 22:11:00 +0000527/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800528 * vmbus interrupt flow handler:
529 * vmbus interrupts can concurrently occur on multiple CPUs and
530 * can be handled concurrently.
531 */
532
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800533static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800534{
535 kstat_incr_irqs_this_cpu(irq, desc);
536
537 desc->action->handler(irq, desc->action->dev_id);
538}
539
540/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700541 * vmbus_bus_init -Main vmbus driver initialization routine.
542 *
543 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100544 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100545 * - invoke the vmbus hv main init routine
546 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100547 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700548 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700549static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700550{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700551 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700552
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800553 /* Hypervisor initialization...setup hypercall page..etc */
554 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700555 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700556 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700557 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700558 }
559
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700560 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700561
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700562 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700563 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700564 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700565
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400566 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700567
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700568 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700569 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700570 irq);
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700571 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700572 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700573
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800574 /*
575 * Vmbus interrupts can be handled concurrently on
576 * different CPUs. Establish an appropriate interrupt flow
577 * handler that can support this model.
578 */
579 irq_set_handler(irq, vmbus_flow_handler);
580
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800581 /*
582 * Register our interrupt handler.
583 */
584 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700585
Jason Wang2608fb62013-06-19 11:28:10 +0800586 ret = hv_synic_alloc();
587 if (ret)
588 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700589 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800590 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700591 * connect to the host.
592 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800593 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700594 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700595 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800596 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700597
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800598 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000599
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700600 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700601
Jason Wang2608fb62013-06-19 11:28:10 +0800602err_alloc:
603 hv_synic_free();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700604 free_irq(irq, hv_acpi_dev);
605
606err_unregister:
607 bus_unregister(&hv_bus);
608
609err_cleanup:
610 hv_cleanup();
611
612 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700613}
614
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700615/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700616 * __vmbus_child_driver_register - Register a vmbus's driver
617 * @drv: Pointer to driver structure you want to register
618 * @owner: owner module of the drv
619 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000620 *
621 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700622 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000623 * It will return the state of the 'driver_register()' call.
624 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700625 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700626int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700627{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400628 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700629
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700630 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700631
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800632 ret = vmbus_exists();
633 if (ret < 0)
634 return ret;
635
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700636 hv_driver->driver.name = hv_driver->name;
637 hv_driver->driver.owner = owner;
638 hv_driver->driver.mod_name = mod_name;
639 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700640
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700641 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700642
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400643 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700644}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700645EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700646
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700647/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700648 * vmbus_driver_unregister() - Unregister a vmbus's driver
649 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000650 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700651 * Un-register the given driver that was previous registered with a call to
652 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700653 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700654void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700655{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700656 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700657
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800658 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800659 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700660}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700661EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700662
Hank Janssen3e189512010-03-04 22:11:00 +0000663/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700664 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000665 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700666 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700667struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700668 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800669 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700670{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200671 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700672
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800673 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
674 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700675 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700676 return NULL;
677 }
678
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700679 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700680 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800681 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700682 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700683
Hank Janssen3e7ee492009-07-13 16:02:34 -0700684
Hank Janssen3e7ee492009-07-13 16:02:34 -0700685 return child_device_obj;
686}
687
Hank Janssen3e189512010-03-04 22:11:00 +0000688/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700689 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700690 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700691int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700692{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700693 int ret = 0;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800694
Bill Pembertonf4888412009-07-29 17:00:12 -0400695 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700696
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800697 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700698 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700699
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700700 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700701 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800702 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700703
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700704 /*
705 * Register with the LDM. This will kick off the driver/device
706 * binding...which will eventually call vmbus_match() and vmbus_probe()
707 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800708 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700709
Hank Janssen3e7ee492009-07-13 16:02:34 -0700710 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700711 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700712 else
Fernando Soto84672362013-06-14 23:13:35 +0000713 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700714 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700715
Hank Janssen3e7ee492009-07-13 16:02:34 -0700716 return ret;
717}
718
Hank Janssen3e189512010-03-04 22:11:00 +0000719/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700720 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000721 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700722 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700723void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700724{
Fernando Soto84672362013-06-14 23:13:35 +0000725 pr_debug("child device %s unregistered\n",
726 dev_name(&device_obj->device));
727
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700728 /*
729 * Kick off the process of unregistering the device.
730 * This will call vmbus_remove() and eventually vmbus_device_release()
731 */
K. Y. Srinivasan6bad88d2011-03-07 13:35:48 -0800732 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700733}
734
Hank Janssen3e7ee492009-07-13 16:02:34 -0700735
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700736/*
737 * VMBUS is an acpi enumerated device. Get the the IRQ information
738 * from DSDT.
739 */
740
741static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *irq)
742{
743
744 if (res->type == ACPI_RESOURCE_TYPE_IRQ) {
745 struct acpi_resource_irq *irqp;
746 irqp = &res->data.irq;
747
748 *((unsigned int *)irq) = irqp->interrupts[0];
749 }
750
751 return AE_OK;
752}
753
754static int vmbus_acpi_add(struct acpi_device *device)
755{
756 acpi_status result;
757
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700758 hv_acpi_dev = device;
759
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700760 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
761 vmbus_walk_resources, &irq);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700762
763 if (ACPI_FAILURE(result)) {
764 complete(&probe_event);
765 return -ENODEV;
766 }
767 complete(&probe_event);
768 return 0;
769}
770
771static const struct acpi_device_id vmbus_acpi_device_ids[] = {
772 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700773 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700774 {"", 0},
775};
776MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
777
778static struct acpi_driver vmbus_acpi_driver = {
779 .name = "vmbus",
780 .ids = vmbus_acpi_device_ids,
781 .ops = {
782 .add = vmbus_acpi_add,
783 },
784};
785
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700786static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700787{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700788 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700789
Jason Wang1f94ea82012-08-31 13:32:44 +0800790 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800791 return -ENODEV;
792
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700793 init_completion(&probe_event);
794
795 /*
796 * Get irq resources first.
797 */
798
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700799 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
800
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700801 if (ret)
802 return ret;
803
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700804 t = wait_for_completion_timeout(&probe_event, 5*HZ);
805 if (t == 0) {
806 ret = -ETIMEDOUT;
807 goto cleanup;
808 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700809
810 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700811 ret = -ENODEV;
812 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700813 }
814
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700815 ret = vmbus_bus_init(irq);
816 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700817 goto cleanup;
818
819 return 0;
820
821cleanup:
822 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800823 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700824 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700825}
826
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800827static void __exit vmbus_exit(void)
828{
829
830 free_irq(irq, hv_acpi_dev);
831 vmbus_free_channels();
832 bus_unregister(&hv_bus);
833 hv_cleanup();
834 acpi_bus_unregister_driver(&vmbus_acpi_driver);
835}
836
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700837
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700838MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700839
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -0700840subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800841module_exit(vmbus_exit);