blob: 5a44957b7064ccb861444eb7760130ca9ec172e5 [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 u32 server_monitor_latency;
51 u32 server_monitor_conn_id;
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060052 u32 client_monitor_latency;
53 u32 client_monitor_conn_id;
54
55 struct hv_dev_port_info inbound;
56 struct hv_dev_port_info outbound;
57};
58
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -080059static int vmbus_exists(void)
60{
61 if (hv_acpi_dev == NULL)
62 return -ENODEV;
63
64 return 0;
65}
66
Greg Kroah-Hartman15b80d62011-10-11 09:43:14 -060067
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070068static void get_channel_info(struct hv_device *device,
69 struct hv_device_info *info)
70{
71 struct vmbus_channel_debug_info debug_info;
72
73 if (!device->channel)
74 return;
75
76 vmbus_get_debug_info(device->channel, &debug_info);
77
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070078 info->server_monitor_latency = debug_info.servermonitor_latency;
79 info->server_monitor_conn_id = debug_info.servermonitor_connectionid;
80
K. Y. Srinivasan98db4332011-03-15 15:03:44 -070081 info->client_monitor_latency = debug_info.clientmonitor_latency;
82 info->client_monitor_conn_id = debug_info.clientmonitor_connectionid;
83
84 info->inbound.int_mask = debug_info.inbound.current_interrupt_mask;
85 info->inbound.read_idx = debug_info.inbound.current_read_index;
86 info->inbound.write_idx = debug_info.inbound.current_write_index;
87 info->inbound.bytes_avail_toread =
88 debug_info.inbound.bytes_avail_toread;
89 info->inbound.bytes_avail_towrite =
90 debug_info.inbound.bytes_avail_towrite;
91
92 info->outbound.int_mask =
93 debug_info.outbound.current_interrupt_mask;
94 info->outbound.read_idx = debug_info.outbound.current_read_index;
95 info->outbound.write_idx = debug_info.outbound.current_write_index;
96 info->outbound.bytes_avail_toread =
97 debug_info.outbound.bytes_avail_toread;
98 info->outbound.bytes_avail_towrite =
99 debug_info.outbound.bytes_avail_towrite;
100}
101
Olaf Heringfd776ba2011-09-02 18:25:56 +0200102#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
103static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
104{
105 int i;
106 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
107 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
108}
109
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700110/*
111 * vmbus_show_device_attr - Show the device attribute in sysfs.
112 *
113 * This is invoked when user does a
114 * "cat /sys/bus/vmbus/devices/<busdevice>/<attr name>"
115 */
116static ssize_t vmbus_show_device_attr(struct device *dev,
117 struct device_attribute *dev_attr,
118 char *buf)
119{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700120 struct hv_device *hv_dev = device_to_hv_device(dev);
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700121 struct hv_device_info *device_info;
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700122 int ret = 0;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700123
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700124 device_info = kzalloc(sizeof(struct hv_device_info), GFP_KERNEL);
125 if (!device_info)
126 return ret;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700127
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700128 get_channel_info(hv_dev, device_info);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700129
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700130 if (!strcmp(dev_attr->attr.name, "out_intr_mask")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700131 ret = sprintf(buf, "%d\n", device_info->outbound.int_mask);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700132 } else if (!strcmp(dev_attr->attr.name, "out_read_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700133 ret = sprintf(buf, "%d\n", device_info->outbound.read_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700134 } else if (!strcmp(dev_attr->attr.name, "out_write_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700135 ret = sprintf(buf, "%d\n", device_info->outbound.write_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700136 } else if (!strcmp(dev_attr->attr.name, "out_read_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700137 ret = sprintf(buf, "%d\n",
138 device_info->outbound.bytes_avail_toread);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700139 } else if (!strcmp(dev_attr->attr.name, "out_write_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700140 ret = sprintf(buf, "%d\n",
141 device_info->outbound.bytes_avail_towrite);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700142 } else if (!strcmp(dev_attr->attr.name, "in_intr_mask")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700143 ret = sprintf(buf, "%d\n", device_info->inbound.int_mask);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700144 } else if (!strcmp(dev_attr->attr.name, "in_read_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700145 ret = sprintf(buf, "%d\n", device_info->inbound.read_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700146 } else if (!strcmp(dev_attr->attr.name, "in_write_index")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700147 ret = sprintf(buf, "%d\n", device_info->inbound.write_idx);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700148 } else if (!strcmp(dev_attr->attr.name, "in_read_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700149 ret = sprintf(buf, "%d\n",
150 device_info->inbound.bytes_avail_toread);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700151 } else if (!strcmp(dev_attr->attr.name, "in_write_bytes_avail")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700152 ret = sprintf(buf, "%d\n",
153 device_info->inbound.bytes_avail_towrite);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700154 } else if (!strcmp(dev_attr->attr.name, "server_monitor_latency")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700155 ret = sprintf(buf, "%d\n", device_info->server_monitor_latency);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700156 } else if (!strcmp(dev_attr->attr.name, "server_monitor_conn_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700157 ret = sprintf(buf, "%d\n",
158 device_info->server_monitor_conn_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700159 } else if (!strcmp(dev_attr->attr.name, "client_monitor_latency")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700160 ret = sprintf(buf, "%d\n", device_info->client_monitor_latency);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700161 } else if (!strcmp(dev_attr->attr.name, "client_monitor_conn_id")) {
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700162 ret = sprintf(buf, "%d\n",
163 device_info->client_monitor_conn_id);
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700164 }
K. Y. Srinivasan7bb52382011-09-13 10:59:52 -0700165
166 kfree(device_info);
167 return ret;
K. Y. Srinivasan98db4332011-03-15 15:03:44 -0700168}
169
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700170static u8 channel_monitor_group(struct vmbus_channel *channel)
171{
172 return (u8)channel->offermsg.monitorid / 32;
173}
174
175static u8 channel_monitor_offset(struct vmbus_channel *channel)
176{
177 return (u8)channel->offermsg.monitorid % 32;
178}
179
180static u32 channel_pending(struct vmbus_channel *channel,
181 struct hv_monitor_page *monitor_page)
182{
183 u8 monitor_group = channel_monitor_group(channel);
184 return monitor_page->trigger_group[monitor_group].pending;
185}
186
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700187static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
188 char *buf)
189{
190 struct hv_device *hv_dev = device_to_hv_device(dev);
191
192 if (!hv_dev->channel)
193 return -ENODEV;
194 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
195}
196static DEVICE_ATTR_RO(id);
197
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700198static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
199 char *buf)
200{
201 struct hv_device *hv_dev = device_to_hv_device(dev);
202
203 if (!hv_dev->channel)
204 return -ENODEV;
205 return sprintf(buf, "%d\n", hv_dev->channel->state);
206}
207static DEVICE_ATTR_RO(state);
208
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700209static ssize_t monitor_id_show(struct device *dev,
210 struct device_attribute *dev_attr, char *buf)
211{
212 struct hv_device *hv_dev = device_to_hv_device(dev);
213
214 if (!hv_dev->channel)
215 return -ENODEV;
216 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
217}
218static DEVICE_ATTR_RO(monitor_id);
219
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700220static ssize_t class_id_show(struct device *dev,
221 struct device_attribute *dev_attr, char *buf)
222{
223 struct hv_device *hv_dev = device_to_hv_device(dev);
224
225 if (!hv_dev->channel)
226 return -ENODEV;
227 return sprintf(buf, "{%pUl}\n",
228 hv_dev->channel->offermsg.offer.if_type.b);
229}
230static DEVICE_ATTR_RO(class_id);
231
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700232static ssize_t device_id_show(struct device *dev,
233 struct device_attribute *dev_attr, char *buf)
234{
235 struct hv_device *hv_dev = device_to_hv_device(dev);
236
237 if (!hv_dev->channel)
238 return -ENODEV;
239 return sprintf(buf, "{%pUl}\n",
240 hv_dev->channel->offermsg.offer.if_instance.b);
241}
242static DEVICE_ATTR_RO(device_id);
243
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700244static ssize_t modalias_show(struct device *dev,
245 struct device_attribute *dev_attr, char *buf)
246{
247 struct hv_device *hv_dev = device_to_hv_device(dev);
248 char alias_name[VMBUS_ALIAS_LEN + 1];
249
250 print_alias_name(hv_dev, alias_name);
251 return sprintf(buf, "vmbus:%s\n", alias_name);
252}
253static DEVICE_ATTR_RO(modalias);
254
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700255static ssize_t server_monitor_pending_show(struct device *dev,
256 struct device_attribute *dev_attr,
257 char *buf)
258{
259 struct hv_device *hv_dev = device_to_hv_device(dev);
260
261 if (!hv_dev->channel)
262 return -ENODEV;
263 return sprintf(buf, "%d\n",
264 channel_pending(hv_dev->channel,
265 vmbus_connection.monitor_pages[1]));
266}
267static DEVICE_ATTR_RO(server_monitor_pending);
268
269static ssize_t client_monitor_pending_show(struct device *dev,
270 struct device_attribute *dev_attr,
271 char *buf)
272{
273 struct hv_device *hv_dev = device_to_hv_device(dev);
274
275 if (!hv_dev->channel)
276 return -ENODEV;
277 return sprintf(buf, "%d\n",
278 channel_pending(hv_dev->channel,
279 vmbus_connection.monitor_pages[1]));
280}
281static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700282
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700283static struct attribute *vmbus_attrs[] = {
284 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700285 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700286 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700287 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700288 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700289 &dev_attr_modalias.attr,
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700290 &dev_attr_server_monitor_pending.attr,
291 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700292 NULL,
293};
294ATTRIBUTE_GROUPS(vmbus);
295
Bill Pemberton454f18a2009-07-27 16:47:24 -0400296/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700297static struct device_attribute vmbus_device_attrs[] = {
Hank Janssen3e7ee492009-07-13 16:02:34 -0700298 __ATTR(server_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
299 __ATTR(server_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
300
Hank Janssen3e7ee492009-07-13 16:02:34 -0700301 __ATTR(client_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
302 __ATTR(client_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
303
304 __ATTR(out_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
305 __ATTR(out_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
306 __ATTR(out_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
307 __ATTR(out_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
308 __ATTR(out_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
309
310 __ATTR(in_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
311 __ATTR(in_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
312 __ATTR(in_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
313 __ATTR(in_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
314 __ATTR(in_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
315 __ATTR_NULL
316};
Hank Janssen3e7ee492009-07-13 16:02:34 -0700317
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700318
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700319/*
320 * vmbus_uevent - add uevent for our device
321 *
322 * This routine is invoked when a device is added or removed on the vmbus to
323 * generate a uevent to udev in the userspace. The udev will then look at its
324 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700325 *
326 * The alias string will be of the form vmbus:guid where guid is the string
327 * representation of the device guid (each byte of the guid will be
328 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700329 */
330static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
331{
332 struct hv_device *dev = device_to_hv_device(device);
Olaf Heringfd776ba2011-09-02 18:25:56 +0200333 int ret;
334 char alias_name[VMBUS_ALIAS_LEN + 1];
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700335
Olaf Heringfd776ba2011-09-02 18:25:56 +0200336 print_alias_name(dev, alias_name);
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700337 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
338 return ret;
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700339}
340
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700341static uuid_le null_guid;
342
343static inline bool is_null_guid(const __u8 *guid)
344{
345 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
346 return false;
347 return true;
348}
349
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700350/*
351 * Return a matching hv_vmbus_device_id pointer.
352 * If there is no match, return NULL.
353 */
354static const struct hv_vmbus_device_id *hv_vmbus_get_id(
355 const struct hv_vmbus_device_id *id,
356 __u8 *guid)
357{
358 for (; !is_null_guid(id->guid); id++)
359 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
360 return id;
361
362 return NULL;
363}
364
365
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700366
367/*
368 * vmbus_match - Attempt to match the specified device to the specified driver
369 */
370static int vmbus_match(struct device *device, struct device_driver *driver)
371{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700372 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700373 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700374
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700375 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
376 return 1;
K. Y. Srinivasande632a22011-04-26 09:20:24 -0700377
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700378 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700379}
380
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700381/*
382 * vmbus_probe - Add the new vmbus's child device
383 */
384static int vmbus_probe(struct device *child_device)
385{
386 int ret = 0;
387 struct hv_driver *drv =
388 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700389 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700390 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700391
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700392 dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700393 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700394 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700395 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700396 pr_err("probe failed for device %s (%d)\n",
397 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700398
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700399 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700400 pr_err("probe not set for driver %s\n",
401 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700402 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700403 }
404 return ret;
405}
406
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700407/*
408 * vmbus_remove - Remove a vmbus device
409 */
410static int vmbus_remove(struct device *child_device)
411{
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700412 struct hv_driver *drv = drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700413 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700414
K. Y. Srinivasand4372172011-09-13 10:59:44 -0700415 if (drv->remove)
416 drv->remove(dev);
417 else
418 pr_err("remove not set for driver %s\n",
419 dev_name(child_device));
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700420
421 return 0;
422}
423
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700424
425/*
426 * vmbus_shutdown - Shutdown a vmbus device
427 */
428static void vmbus_shutdown(struct device *child_device)
429{
430 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700431 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700432
433
434 /* The device may not be attached yet */
435 if (!child_device->driver)
436 return;
437
438 drv = drv_to_hv_drv(child_device->driver);
439
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700440 if (drv->shutdown)
441 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700442
443 return;
444}
445
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700446
447/*
448 * vmbus_device_release - Final callback release of the vmbus child device
449 */
450static void vmbus_device_release(struct device *device)
451{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700452 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700453
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700454 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700455
456}
457
Bill Pemberton454f18a2009-07-27 16:47:24 -0400458/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700459static struct bus_type hv_bus = {
460 .name = "vmbus",
461 .match = vmbus_match,
462 .shutdown = vmbus_shutdown,
463 .remove = vmbus_remove,
464 .probe = vmbus_probe,
465 .uevent = vmbus_uevent,
466 .dev_attrs = vmbus_device_attrs,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700467 .dev_groups = vmbus_groups,
Hank Janssen3e7ee492009-07-13 16:02:34 -0700468};
469
Haiyang Zhangadf874c2011-01-26 12:12:09 -0800470static const char *driver_name = "hyperv";
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800471
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800472
Timo Teräsbf6506f2010-12-15 20:48:08 +0200473struct onmessage_work_context {
474 struct work_struct work;
475 struct hv_message msg;
476};
477
478static void vmbus_onmessage_work(struct work_struct *work)
479{
480 struct onmessage_work_context *ctx;
481
482 ctx = container_of(work, struct onmessage_work_context,
483 work);
484 vmbus_onmessage(&ctx->msg);
485 kfree(ctx);
486}
487
K. Y. Srinivasan62c10592011-03-10 14:04:53 -0800488static void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800489{
490 int cpu = smp_processor_id();
491 void *page_addr = hv_context.synic_message_page[cpu];
492 struct hv_message *msg = (struct hv_message *)page_addr +
493 VMBUS_MESSAGE_SINT;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200494 struct onmessage_work_context *ctx;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800495
496 while (1) {
497 if (msg->header.message_type == HVMSG_NONE) {
498 /* no msg */
499 break;
500 } else {
Timo Teräsbf6506f2010-12-15 20:48:08 +0200501 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
502 if (ctx == NULL)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800503 continue;
Timo Teräsbf6506f2010-12-15 20:48:08 +0200504 INIT_WORK(&ctx->work, vmbus_onmessage_work);
505 memcpy(&ctx->msg, msg, sizeof(*msg));
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800506 queue_work(vmbus_connection.work_queue, &ctx->work);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800507 }
508
509 msg->header.message_type = HVMSG_NONE;
510
511 /*
512 * Make sure the write to MessageType (ie set to
513 * HVMSG_NONE) happens before we read the
514 * MessagePending and EOMing. Otherwise, the EOMing
515 * will not deliver any more messages since there is
516 * no empty slot
517 */
Jason Wang35848f62013-06-18 13:04:23 +0800518 mb();
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800519
520 if (msg->header.message_flags.msg_pending) {
521 /*
522 * This will cause message queue rescan to
523 * possibly deliver another msg from the
524 * hypervisor
525 */
526 wrmsrl(HV_X64_MSR_EOM, 0);
527 }
528 }
529}
530
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700531static irqreturn_t vmbus_isr(int irq, void *dev_id)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800532{
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800533 int cpu = smp_processor_id();
534 void *page_addr;
535 struct hv_message *msg;
536 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700537 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800538
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -0800539 page_addr = hv_context.synic_event_page[cpu];
540 if (page_addr == NULL)
541 return IRQ_NONE;
542
543 event = (union hv_synic_event_flags *)page_addr +
544 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700545 /*
546 * Check for events before checking for messages. This is the order
547 * in which events and messages are checked in Windows guests on
548 * Hyper-V, and the Windows team suggested we do the same.
549 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800550
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800551 if ((vmbus_proto_version == VERSION_WS2008) ||
552 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -0800553
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800554 /* Since we are a child, we only need to check bit 0 */
555 if (sync_test_and_clear_bit(0,
556 (unsigned long *) &event->flags32[0])) {
557 handled = true;
558 }
559 } else {
560 /*
561 * Our host is win8 or above. The signaling mechanism
562 * has changed and we can directly look at the event page.
563 * If bit n is set then we have an interrup on the channel
564 * whose id is n.
565 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700566 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700567 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700568
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800569 if (handled)
K. Y. Srinivasandb11f122012-12-01 06:46:53 -0800570 tasklet_schedule(hv_context.event_dpc[cpu]);
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800571
572
K. Y. Srinivasan7341d902011-08-31 14:35:56 -0700573 page_addr = hv_context.synic_message_page[cpu];
574 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
575
576 /* Check if there are actual msgs to be processed */
577 if (msg->header.message_type != HVMSG_NONE) {
578 handled = true;
579 tasklet_schedule(&msg_dpc);
580 }
581
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -0700582 if (handled)
583 return IRQ_HANDLED;
584 else
585 return IRQ_NONE;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -0700586}
587
Hank Janssen3e189512010-03-04 22:11:00 +0000588/*
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800589 * vmbus interrupt flow handler:
590 * vmbus interrupts can concurrently occur on multiple CPUs and
591 * can be handled concurrently.
592 */
593
Fengguang Wu83ebf6e2013-01-18 09:09:32 +0800594static void vmbus_flow_handler(unsigned int irq, struct irq_desc *desc)
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800595{
596 kstat_incr_irqs_this_cpu(irq, desc);
597
598 desc->action->handler(irq, desc->action->dev_id);
599}
600
601/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700602 * vmbus_bus_init -Main vmbus driver initialization routine.
603 *
604 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +0100605 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +0100606 * - invoke the vmbus hv main init routine
607 * - get the irq resource
Lars Lindley0686e4f2010-03-11 23:51:23 +0100608 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700609 */
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700610static int vmbus_bus_init(int irq)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700611{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700612 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700613
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -0800614 /* Hypervisor initialization...setup hypercall page..etc */
615 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700616 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700617 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700618 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700619 }
620
K. Y. Srinivasan59c0e4f2011-04-29 13:45:06 -0700621 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700622
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -0700623 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700624 if (ret)
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700625 goto err_cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700626
Theodore Ts'o20ed3ef2012-07-17 13:50:30 -0400627 ret = request_irq(irq, vmbus_isr, 0, driver_name, hv_acpi_dev);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700628
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700629 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700630 pr_err("Unable to request IRQ %d\n",
K. Y. Srinivasan9aaa9952011-06-06 15:49:37 -0700631 irq);
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700632 goto err_unregister;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700633 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700634
K. Y. Srinivasanb0209502012-12-01 06:46:54 -0800635 /*
636 * Vmbus interrupts can be handled concurrently on
637 * different CPUs. Establish an appropriate interrupt flow
638 * handler that can support this model.
639 */
640 irq_set_handler(irq, vmbus_flow_handler);
641
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800642 /*
643 * Register our interrupt handler.
644 */
645 hv_register_vmbus_handler(irq, vmbus_isr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700646
Jason Wang2608fb62013-06-19 11:28:10 +0800647 ret = hv_synic_alloc();
648 if (ret)
649 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700650 /*
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800651 * Initialize the per-cpu interrupt state and
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700652 * connect to the host.
653 */
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800654 on_each_cpu(hv_synic_init, NULL, 1);
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700655 ret = vmbus_connect();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700656 if (ret)
Jason Wang2608fb62013-06-19 11:28:10 +0800657 goto err_alloc;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -0700658
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -0800659 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000660
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -0700661 return 0;
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700662
Jason Wang2608fb62013-06-19 11:28:10 +0800663err_alloc:
664 hv_synic_free();
K. Y. Srinivasan8b9987e2011-08-31 14:35:55 -0700665 free_irq(irq, hv_acpi_dev);
666
667err_unregister:
668 bus_unregister(&hv_bus);
669
670err_cleanup:
671 hv_cleanup();
672
673 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700674}
675
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700676/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700677 * __vmbus_child_driver_register - Register a vmbus's driver
678 * @drv: Pointer to driver structure you want to register
679 * @owner: owner module of the drv
680 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +0000681 *
682 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700683 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +0000684 * It will return the state of the 'driver_register()' call.
685 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700686 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700687int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700688{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400689 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700690
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700691 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700692
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800693 ret = vmbus_exists();
694 if (ret < 0)
695 return ret;
696
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700697 hv_driver->driver.name = hv_driver->name;
698 hv_driver->driver.owner = owner;
699 hv_driver->driver.mod_name = mod_name;
700 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700701
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700702 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700703
Bill Pemberton5d48a1c2009-07-27 16:47:36 -0400704 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700705}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700706EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700707
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700708/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700709 * vmbus_driver_unregister() - Unregister a vmbus's driver
710 * @drv: Pointer to driver structure you want to un-register
Hank Janssen3e189512010-03-04 22:11:00 +0000711 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700712 * Un-register the given driver that was previous registered with a call to
713 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700714 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700715void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700716{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700717 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700718
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800719 if (!vmbus_exists())
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -0800720 driver_unregister(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700721}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700722EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700723
Hank Janssen3e189512010-03-04 22:11:00 +0000724/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700725 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +0000726 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700727 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700728struct hv_device *vmbus_device_create(uuid_le *type,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700729 uuid_le *instance,
Greg Kroah-Hartman89733aa2010-12-02 08:22:41 -0800730 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700731{
Nicolas Palix3d3b5512009-07-28 17:32:53 +0200732 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700733
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800734 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
735 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -0700736 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700737 return NULL;
738 }
739
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -0700740 child_device_obj->channel = channel;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700741 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800742 memcpy(&child_device_obj->dev_instance, instance,
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700743 sizeof(uuid_le));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700744
Hank Janssen3e7ee492009-07-13 16:02:34 -0700745
Hank Janssen3e7ee492009-07-13 16:02:34 -0700746 return child_device_obj;
747}
748
Hank Janssen3e189512010-03-04 22:11:00 +0000749/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700750 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700751 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700752int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700753{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700754 int ret = 0;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800755
Bill Pembertonf4888412009-07-29 17:00:12 -0400756 static atomic_t device_num = ATOMIC_INIT(0);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700757
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800758 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700759 atomic_inc_return(&device_num));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700760
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -0700761 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700762 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800763 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700764
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700765 /*
766 * Register with the LDM. This will kick off the driver/device
767 * binding...which will eventually call vmbus_match() and vmbus_probe()
768 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800769 ret = device_register(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700770
Hank Janssen3e7ee492009-07-13 16:02:34 -0700771 if (ret)
Hank Janssen0a466182011-03-29 13:58:47 -0700772 pr_err("Unable to register child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700773 else
Fernando Soto84672362013-06-14 23:13:35 +0000774 pr_debug("child device %s registered\n",
Hank Janssen0a466182011-03-29 13:58:47 -0700775 dev_name(&child_device_obj->device));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700776
Hank Janssen3e7ee492009-07-13 16:02:34 -0700777 return ret;
778}
779
Hank Janssen3e189512010-03-04 22:11:00 +0000780/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700781 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +0000782 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700783 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700784void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700785{
Fernando Soto84672362013-06-14 23:13:35 +0000786 pr_debug("child device %s unregistered\n",
787 dev_name(&device_obj->device));
788
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700789 /*
790 * Kick off the process of unregistering the device.
791 * This will call vmbus_remove() and eventually vmbus_device_release()
792 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800793 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700794}
795
Hank Janssen3e7ee492009-07-13 16:02:34 -0700796
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700797/*
798 * VMBUS is an acpi enumerated device. Get the the IRQ information
799 * from DSDT.
800 */
801
802static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *irq)
803{
804
805 if (res->type == ACPI_RESOURCE_TYPE_IRQ) {
806 struct acpi_resource_irq *irqp;
807 irqp = &res->data.irq;
808
809 *((unsigned int *)irq) = irqp->interrupts[0];
810 }
811
812 return AE_OK;
813}
814
815static int vmbus_acpi_add(struct acpi_device *device)
816{
817 acpi_status result;
818
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700819 hv_acpi_dev = device;
820
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -0700821 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
822 vmbus_walk_resources, &irq);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700823
824 if (ACPI_FAILURE(result)) {
825 complete(&probe_event);
826 return -ENODEV;
827 }
828 complete(&probe_event);
829 return 0;
830}
831
832static const struct acpi_device_id vmbus_acpi_device_ids[] = {
833 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -0700834 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700835 {"", 0},
836};
837MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
838
839static struct acpi_driver vmbus_acpi_driver = {
840 .name = "vmbus",
841 .ids = vmbus_acpi_device_ids,
842 .ops = {
843 .add = vmbus_acpi_add,
844 },
845};
846
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -0700847static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700848{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700849 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700850
Jason Wang1f94ea82012-08-31 13:32:44 +0800851 if (x86_hyper != &x86_hyper_ms_hyperv)
Jason Wang05929692012-08-17 18:52:43 +0800852 return -ENODEV;
853
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700854 init_completion(&probe_event);
855
856 /*
857 * Get irq resources first.
858 */
859
K. Y. Srinivasan02466042011-06-06 15:49:40 -0700860 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
861
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700862 if (ret)
863 return ret;
864
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700865 t = wait_for_completion_timeout(&probe_event, 5*HZ);
866 if (t == 0) {
867 ret = -ETIMEDOUT;
868 goto cleanup;
869 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700870
871 if (irq <= 0) {
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700872 ret = -ENODEV;
873 goto cleanup;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -0700874 }
875
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700876 ret = vmbus_bus_init(irq);
877 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -0700878 goto cleanup;
879
880 return 0;
881
882cleanup:
883 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800884 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -0700885 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700886}
887
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800888static void __exit vmbus_exit(void)
889{
890
891 free_irq(irq, hv_acpi_dev);
892 vmbus_free_channels();
893 bus_unregister(&hv_bus);
894 hv_cleanup();
895 acpi_bus_unregister_driver(&vmbus_acpi_driver);
896}
897
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -0700898
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -0700899MODULE_LICENSE("GPL");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700900
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -0700901subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800902module_exit(vmbus_exit);