Staging: hv: vmbus: Introduce a utility function to match hv_vmbus_device_id
[deliverable/linux.git] / drivers / staging / hv / vmbus_drv.c
CommitLineData
3e7ee490 1/*
3e7ee490
HJ
2 * 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>
b0069f43 20 * K. Y. Srinivasan <kys@microsoft.com>
52e5c1ce 21 *
3e7ee490 22 */
0a46618d
HJ
23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
3e7ee490
HJ
25#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>
5a0e3ad6 31#include <linux/slab.h>
b0069f43
S
32#include <linux/acpi.h>
33#include <acpi/acpi_bus.h>
8b5d6d3b 34#include <linux/completion.h>
3f335ea2
S
35
36#include "hyperv.h"
0f2a6619 37#include "hyperv_vmbus.h"
3e7ee490 38
3e7ee490 39
607c1a11 40static struct acpi_device *hv_acpi_dev;
1168ac22 41
59c0e4f0 42static struct tasklet_struct msg_dpc;
66d9229c 43static struct tasklet_struct event_dpc;
59c0e4f0 44
98db4335
S
45unsigned int vmbus_loglevel = (ALL_MODULES << 16 | INFO_LVL);
46EXPORT_SYMBOL(vmbus_loglevel);
98db4335 47
71a6655d 48static struct completion probe_event;
b0069f43 49static int irq;
98db4335
S
50
51static void get_channel_info(struct hv_device *device,
52 struct hv_device_info *info)
53{
54 struct vmbus_channel_debug_info debug_info;
55
56 if (!device->channel)
57 return;
58
59 vmbus_get_debug_info(device->channel, &debug_info);
60
61 info->chn_id = debug_info.relid;
62 info->chn_state = debug_info.state;
63 memcpy(&info->chn_type, &debug_info.interfacetype,
358d2ee2 64 sizeof(uuid_le));
98db4335 65 memcpy(&info->chn_instance, &debug_info.interface_instance,
358d2ee2 66 sizeof(uuid_le));
98db4335
S
67
68 info->monitor_id = debug_info.monitorid;
69
70 info->server_monitor_pending = debug_info.servermonitor_pending;
71 info->server_monitor_latency = debug_info.servermonitor_latency;
72 info->server_monitor_conn_id = debug_info.servermonitor_connectionid;
73
74 info->client_monitor_pending = debug_info.clientmonitor_pending;
75 info->client_monitor_latency = debug_info.clientmonitor_latency;
76 info->client_monitor_conn_id = debug_info.clientmonitor_connectionid;
77
78 info->inbound.int_mask = debug_info.inbound.current_interrupt_mask;
79 info->inbound.read_idx = debug_info.inbound.current_read_index;
80 info->inbound.write_idx = debug_info.inbound.current_write_index;
81 info->inbound.bytes_avail_toread =
82 debug_info.inbound.bytes_avail_toread;
83 info->inbound.bytes_avail_towrite =
84 debug_info.inbound.bytes_avail_towrite;
3e7ee490 85
98db4335
S
86 info->outbound.int_mask =
87 debug_info.outbound.current_interrupt_mask;
88 info->outbound.read_idx = debug_info.outbound.current_read_index;
89 info->outbound.write_idx = debug_info.outbound.current_write_index;
90 info->outbound.bytes_avail_toread =
91 debug_info.outbound.bytes_avail_toread;
92 info->outbound.bytes_avail_towrite =
93 debug_info.outbound.bytes_avail_towrite;
94}
3e7ee490 95
fd776ba9
OH
96#define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2)
97static void print_alias_name(struct hv_device *hv_dev, char *alias_name)
98{
99 int i;
100 for (i = 0; i < VMBUS_ALIAS_LEN; i += 2)
101 sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]);
102}
103
98db4335
S
104/*
105 * vmbus_show_device_attr - Show the device attribute in sysfs.
106 *
107 * This is invoked when user does a
108 * "cat /sys/bus/vmbus/devices/<busdevice>/<attr name>"
109 */
90c9960e
GKH
110static ssize_t vmbus_show_device_attr(struct device *dev,
111 struct device_attribute *dev_attr,
98db4335
S
112 char *buf)
113{
e8e27047 114 struct hv_device *hv_dev = device_to_hv_device(dev);
98db4335 115 struct hv_device_info device_info;
fd776ba9 116 char alias_name[VMBUS_ALIAS_LEN + 1];
3e7ee490 117
98db4335 118 memset(&device_info, 0, sizeof(struct hv_device_info));
3e7ee490 119
e8e27047 120 get_channel_info(hv_dev, &device_info);
3e7ee490 121
98db4335
S
122 if (!strcmp(dev_attr->attr.name, "class_id")) {
123 return sprintf(buf, "{%02x%02x%02x%02x-%02x%02x-%02x%02x-"
124 "%02x%02x%02x%02x%02x%02x%02x%02x}\n",
358d2ee2
S
125 device_info.chn_type.b[3],
126 device_info.chn_type.b[2],
127 device_info.chn_type.b[1],
128 device_info.chn_type.b[0],
129 device_info.chn_type.b[5],
130 device_info.chn_type.b[4],
131 device_info.chn_type.b[7],
132 device_info.chn_type.b[6],
133 device_info.chn_type.b[8],
134 device_info.chn_type.b[9],
135 device_info.chn_type.b[10],
136 device_info.chn_type.b[11],
137 device_info.chn_type.b[12],
138 device_info.chn_type.b[13],
139 device_info.chn_type.b[14],
140 device_info.chn_type.b[15]);
98db4335
S
141 } else if (!strcmp(dev_attr->attr.name, "device_id")) {
142 return sprintf(buf, "{%02x%02x%02x%02x-%02x%02x-%02x%02x-"
143 "%02x%02x%02x%02x%02x%02x%02x%02x}\n",
358d2ee2
S
144 device_info.chn_instance.b[3],
145 device_info.chn_instance.b[2],
146 device_info.chn_instance.b[1],
147 device_info.chn_instance.b[0],
148 device_info.chn_instance.b[5],
149 device_info.chn_instance.b[4],
150 device_info.chn_instance.b[7],
151 device_info.chn_instance.b[6],
152 device_info.chn_instance.b[8],
153 device_info.chn_instance.b[9],
154 device_info.chn_instance.b[10],
155 device_info.chn_instance.b[11],
156 device_info.chn_instance.b[12],
157 device_info.chn_instance.b[13],
158 device_info.chn_instance.b[14],
159 device_info.chn_instance.b[15]);
fd776ba9
OH
160 } else if (!strcmp(dev_attr->attr.name, "modalias")) {
161 print_alias_name(hv_dev, alias_name);
162 return sprintf(buf, "vmbus:%s\n", alias_name);
98db4335
S
163 } else if (!strcmp(dev_attr->attr.name, "state")) {
164 return sprintf(buf, "%d\n", device_info.chn_state);
165 } else if (!strcmp(dev_attr->attr.name, "id")) {
166 return sprintf(buf, "%d\n", device_info.chn_id);
167 } else if (!strcmp(dev_attr->attr.name, "out_intr_mask")) {
168 return sprintf(buf, "%d\n", device_info.outbound.int_mask);
169 } else if (!strcmp(dev_attr->attr.name, "out_read_index")) {
170 return sprintf(buf, "%d\n", device_info.outbound.read_idx);
171 } else if (!strcmp(dev_attr->attr.name, "out_write_index")) {
172 return sprintf(buf, "%d\n", device_info.outbound.write_idx);
173 } else if (!strcmp(dev_attr->attr.name, "out_read_bytes_avail")) {
174 return sprintf(buf, "%d\n",
175 device_info.outbound.bytes_avail_toread);
176 } else if (!strcmp(dev_attr->attr.name, "out_write_bytes_avail")) {
177 return sprintf(buf, "%d\n",
178 device_info.outbound.bytes_avail_towrite);
179 } else if (!strcmp(dev_attr->attr.name, "in_intr_mask")) {
180 return sprintf(buf, "%d\n", device_info.inbound.int_mask);
181 } else if (!strcmp(dev_attr->attr.name, "in_read_index")) {
182 return sprintf(buf, "%d\n", device_info.inbound.read_idx);
183 } else if (!strcmp(dev_attr->attr.name, "in_write_index")) {
184 return sprintf(buf, "%d\n", device_info.inbound.write_idx);
185 } else if (!strcmp(dev_attr->attr.name, "in_read_bytes_avail")) {
186 return sprintf(buf, "%d\n",
187 device_info.inbound.bytes_avail_toread);
188 } else if (!strcmp(dev_attr->attr.name, "in_write_bytes_avail")) {
189 return sprintf(buf, "%d\n",
190 device_info.inbound.bytes_avail_towrite);
191 } else if (!strcmp(dev_attr->attr.name, "monitor_id")) {
192 return sprintf(buf, "%d\n", device_info.monitor_id);
193 } else if (!strcmp(dev_attr->attr.name, "server_monitor_pending")) {
194 return sprintf(buf, "%d\n", device_info.server_monitor_pending);
195 } else if (!strcmp(dev_attr->attr.name, "server_monitor_latency")) {
196 return sprintf(buf, "%d\n", device_info.server_monitor_latency);
197 } else if (!strcmp(dev_attr->attr.name, "server_monitor_conn_id")) {
198 return sprintf(buf, "%d\n",
199 device_info.server_monitor_conn_id);
200 } else if (!strcmp(dev_attr->attr.name, "client_monitor_pending")) {
201 return sprintf(buf, "%d\n", device_info.client_monitor_pending);
202 } else if (!strcmp(dev_attr->attr.name, "client_monitor_latency")) {
203 return sprintf(buf, "%d\n", device_info.client_monitor_latency);
204 } else if (!strcmp(dev_attr->attr.name, "client_monitor_conn_id")) {
205 return sprintf(buf, "%d\n",
206 device_info.client_monitor_conn_id);
207 } else {
208 return 0;
209 }
210}
3e7ee490 211
454f18a9 212/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
3e7ee490
HJ
213static struct device_attribute vmbus_device_attrs[] = {
214 __ATTR(id, S_IRUGO, vmbus_show_device_attr, NULL),
215 __ATTR(state, S_IRUGO, vmbus_show_device_attr, NULL),
216 __ATTR(class_id, S_IRUGO, vmbus_show_device_attr, NULL),
217 __ATTR(device_id, S_IRUGO, vmbus_show_device_attr, NULL),
218 __ATTR(monitor_id, S_IRUGO, vmbus_show_device_attr, NULL),
fd776ba9 219 __ATTR(modalias, S_IRUGO, vmbus_show_device_attr, NULL),
3e7ee490
HJ
220
221 __ATTR(server_monitor_pending, S_IRUGO, vmbus_show_device_attr, NULL),
222 __ATTR(server_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
223 __ATTR(server_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
224
225 __ATTR(client_monitor_pending, S_IRUGO, vmbus_show_device_attr, NULL),
226 __ATTR(client_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL),
227 __ATTR(client_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL),
228
229 __ATTR(out_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
230 __ATTR(out_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
231 __ATTR(out_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
232 __ATTR(out_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
233 __ATTR(out_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
234
235 __ATTR(in_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL),
236 __ATTR(in_read_index, S_IRUGO, vmbus_show_device_attr, NULL),
237 __ATTR(in_write_index, S_IRUGO, vmbus_show_device_attr, NULL),
238 __ATTR(in_read_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
239 __ATTR(in_write_bytes_avail, S_IRUGO, vmbus_show_device_attr, NULL),
240 __ATTR_NULL
241};
3e7ee490 242
793be9c7 243
adde2487
S
244/*
245 * vmbus_uevent - add uevent for our device
246 *
247 * This routine is invoked when a device is added or removed on the vmbus to
248 * generate a uevent to udev in the userspace. The udev will then look at its
249 * rule and the uevent generated here to load the appropriate driver
0ddda660
S
250 *
251 * The alias string will be of the form vmbus:guid where guid is the string
252 * representation of the device guid (each byte of the guid will be
253 * represented with two hex characters.
adde2487
S
254 */
255static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
256{
257 struct hv_device *dev = device_to_hv_device(device);
fd776ba9
OH
258 int ret;
259 char alias_name[VMBUS_ALIAS_LEN + 1];
0ddda660 260
fd776ba9 261 print_alias_name(dev, alias_name);
0ddda660
S
262 ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name);
263 return ret;
adde2487
S
264}
265
5841a829
S
266static uuid_le null_guid;
267
268static inline bool is_null_guid(const __u8 *guid)
269{
270 if (memcmp(guid, &null_guid, sizeof(uuid_le)))
271 return false;
272 return true;
273}
274
3037a7b6
S
275/*
276 * Return a matching hv_vmbus_device_id pointer.
277 * If there is no match, return NULL.
278 */
279static const struct hv_vmbus_device_id *hv_vmbus_get_id(
280 const struct hv_vmbus_device_id *id,
281 __u8 *guid)
282{
283 for (; !is_null_guid(id->guid); id++)
284 if (!memcmp(&id->guid, guid, sizeof(uuid_le)))
285 return id;
286
287 return NULL;
288}
289
290
b7fc147b
S
291
292/*
293 * vmbus_match - Attempt to match the specified device to the specified driver
294 */
295static int vmbus_match(struct device *device, struct device_driver *driver)
296{
b7fc147b 297 struct hv_driver *drv = drv_to_hv_drv(driver);
e8e27047 298 struct hv_device *hv_dev = device_to_hv_device(device);
b7fc147b 299
3037a7b6
S
300 if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b))
301 return 1;
de632a2b 302
5841a829 303 return 0;
b7fc147b
S
304}
305
f1f0d67b
S
306/*
307 * vmbus_probe - Add the new vmbus's child device
308 */
309static int vmbus_probe(struct device *child_device)
310{
311 int ret = 0;
312 struct hv_driver *drv =
313 drv_to_hv_drv(child_device->driver);
9efd21e1 314 struct hv_device *dev = device_to_hv_device(child_device);
f1f0d67b 315
9efd21e1
S
316 if (drv->probe) {
317 ret = drv->probe(dev);
b14a7b30 318 if (ret != 0)
0a46618d
HJ
319 pr_err("probe failed for device %s (%d)\n",
320 dev_name(child_device), ret);
f1f0d67b 321
f1f0d67b 322 } else {
0a46618d
HJ
323 pr_err("probe not set for driver %s\n",
324 dev_name(child_device));
6de925b1 325 ret = -ENODEV;
f1f0d67b
S
326 }
327 return ret;
328}
329
c5dce3db
S
330/*
331 * vmbus_remove - Remove a vmbus device
332 */
333static int vmbus_remove(struct device *child_device)
334{
335 int ret;
336 struct hv_driver *drv;
337
415b023a 338 struct hv_device *dev = device_to_hv_device(child_device);
c5dce3db
S
339
340 if (child_device->driver) {
341 drv = drv_to_hv_drv(child_device->driver);
342
415b023a
S
343 if (drv->remove) {
344 ret = drv->remove(dev);
c5dce3db 345 } else {
0a46618d
HJ
346 pr_err("remove not set for driver %s\n",
347 dev_name(child_device));
6de925b1 348 ret = -ENODEV;
c5dce3db
S
349 }
350 }
351
352 return 0;
353}
354
eb1bb259
S
355
356/*
357 * vmbus_shutdown - Shutdown a vmbus device
358 */
359static void vmbus_shutdown(struct device *child_device)
360{
361 struct hv_driver *drv;
ca6887fb 362 struct hv_device *dev = device_to_hv_device(child_device);
eb1bb259
S
363
364
365 /* The device may not be attached yet */
366 if (!child_device->driver)
367 return;
368
369 drv = drv_to_hv_drv(child_device->driver);
370
ca6887fb
S
371 if (drv->shutdown)
372 drv->shutdown(dev);
eb1bb259
S
373
374 return;
375}
376
086e7a56
S
377
378/*
379 * vmbus_device_release - Final callback release of the vmbus child device
380 */
381static void vmbus_device_release(struct device *device)
382{
e8e27047 383 struct hv_device *hv_dev = device_to_hv_device(device);
086e7a56 384
e8e27047 385 kfree(hv_dev);
086e7a56
S
386
387}
388
454f18a9 389/* The one and only one */
9adcac5c
S
390static struct bus_type hv_bus = {
391 .name = "vmbus",
392 .match = vmbus_match,
393 .shutdown = vmbus_shutdown,
394 .remove = vmbus_remove,
395 .probe = vmbus_probe,
396 .uevent = vmbus_uevent,
397 .dev_attrs = vmbus_device_attrs,
3e7ee490
HJ
398};
399
adf874cb 400static const char *driver_name = "hyperv";
36199a99 401
36199a99 402
bf6506f6
TT
403struct onmessage_work_context {
404 struct work_struct work;
405 struct hv_message msg;
406};
407
408static void vmbus_onmessage_work(struct work_struct *work)
409{
410 struct onmessage_work_context *ctx;
411
412 ctx = container_of(work, struct onmessage_work_context,
413 work);
414 vmbus_onmessage(&ctx->msg);
415 kfree(ctx);
416}
417
62c1059d 418static void vmbus_on_msg_dpc(unsigned long data)
36199a99
GKH
419{
420 int cpu = smp_processor_id();
421 void *page_addr = hv_context.synic_message_page[cpu];
422 struct hv_message *msg = (struct hv_message *)page_addr +
423 VMBUS_MESSAGE_SINT;
bf6506f6 424 struct onmessage_work_context *ctx;
36199a99
GKH
425
426 while (1) {
427 if (msg->header.message_type == HVMSG_NONE) {
428 /* no msg */
429 break;
430 } else {
bf6506f6
TT
431 ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC);
432 if (ctx == NULL)
36199a99 433 continue;
bf6506f6
TT
434 INIT_WORK(&ctx->work, vmbus_onmessage_work);
435 memcpy(&ctx->msg, msg, sizeof(*msg));
da9fcb72 436 queue_work(vmbus_connection.work_queue, &ctx->work);
36199a99
GKH
437 }
438
439 msg->header.message_type = HVMSG_NONE;
440
441 /*
442 * Make sure the write to MessageType (ie set to
443 * HVMSG_NONE) happens before we read the
444 * MessagePending and EOMing. Otherwise, the EOMing
445 * will not deliver any more messages since there is
446 * no empty slot
447 */
e826f1d5 448 smp_mb();
36199a99
GKH
449
450 if (msg->header.message_flags.msg_pending) {
451 /*
452 * This will cause message queue rescan to
453 * possibly deliver another msg from the
454 * hypervisor
455 */
456 wrmsrl(HV_X64_MSR_EOM, 0);
457 }
458 }
459}
460
ae4636e6 461static irqreturn_t vmbus_isr(int irq, void *dev_id)
36199a99 462{
36199a99
GKH
463 int cpu = smp_processor_id();
464 void *page_addr;
465 struct hv_message *msg;
466 union hv_synic_event_flags *event;
ae4636e6 467 bool handled = false;
36199a99 468
7341d908
S
469 /*
470 * Check for events before checking for messages. This is the order
471 * in which events and messages are checked in Windows guests on
472 * Hyper-V, and the Windows team suggested we do the same.
473 */
36199a99 474
36199a99
GKH
475 page_addr = hv_context.synic_event_page[cpu];
476 event = (union hv_synic_event_flags *)page_addr + VMBUS_MESSAGE_SINT;
477
478 /* Since we are a child, we only need to check bit 0 */
ae4636e6
S
479 if (sync_test_and_clear_bit(0, (unsigned long *) &event->flags32[0])) {
480 handled = true;
481 tasklet_schedule(&event_dpc);
482 }
793be9c7 483
7341d908
S
484 page_addr = hv_context.synic_message_page[cpu];
485 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
486
487 /* Check if there are actual msgs to be processed */
488 if (msg->header.message_type != HVMSG_NONE) {
489 handled = true;
490 tasklet_schedule(&msg_dpc);
491 }
492
ae4636e6 493 if (handled)
793be9c7 494 return IRQ_HANDLED;
ae4636e6 495 else
793be9c7 496 return IRQ_NONE;
793be9c7
S
497}
498
3e189519 499/*
90c9960e
GKH
500 * vmbus_bus_init -Main vmbus driver initialization routine.
501 *
502 * Here, we
0686e4f4 503 * - initialize the vmbus driver context
0686e4f4
LL
504 * - invoke the vmbus hv main init routine
505 * - get the irq resource
0686e4f4 506 * - retrieve the channel offers
90c9960e 507 */
9aaa995e 508static int vmbus_bus_init(int irq)
3e7ee490 509{
90c9960e
GKH
510 int ret;
511 unsigned int vector;
3e7ee490 512
6d26e38f
GKH
513 /* Hypervisor initialization...setup hypercall page..etc */
514 ret = hv_init();
90c9960e 515 if (ret != 0) {
0a46618d 516 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
d6c1c5de 517 return ret;
3e7ee490
HJ
518 }
519
59c0e4f0 520 tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0);
66d9229c 521 tasklet_init(&event_dpc, vmbus_on_event, 0);
3e7ee490 522
9adcac5c 523 ret = bus_register(&hv_bus);
d6c1c5de 524 if (ret)
8b9987e9 525 goto err_cleanup;
3e7ee490 526
3d2de267 527 ret = request_irq(irq, vmbus_isr, IRQF_SAMPLE_RANDOM,
607c1a11 528 driver_name, hv_acpi_dev);
3e7ee490 529
90c9960e 530 if (ret != 0) {
0a46618d 531 pr_err("Unable to request IRQ %d\n",
9aaa995e 532 irq);
8b9987e9 533 goto err_unregister;
3e7ee490 534 }
3e7ee490 535
9aaa995e 536 vector = IRQ0_VECTOR + irq;
3e7ee490 537
800b6902
S
538 /*
539 * Notify the hypervisor of our irq and
540 * connect to the host.
541 */
542 on_each_cpu(hv_synic_init, (void *)&vector, 1);
543 ret = vmbus_connect();
8b9987e9
S
544 if (ret)
545 goto err_irq;
800b6902 546
2d6e882b 547 vmbus_request_offers();
8b5d6d3b 548
d6c1c5de 549 return 0;
8b9987e9
S
550
551err_irq:
552 free_irq(irq, hv_acpi_dev);
553
554err_unregister:
555 bus_unregister(&hv_bus);
556
557err_cleanup:
558 hv_cleanup();
559
560 return ret;
3e7ee490
HJ
561}
562
90c9960e 563/**
768fa219
GKH
564 * __vmbus_child_driver_register - Register a vmbus's driver
565 * @drv: Pointer to driver structure you want to register
566 * @owner: owner module of the drv
567 * @mod_name: module name string
3e189519
HJ
568 *
569 * Registers the given driver with Linux through the 'driver_register()' call
768fa219 570 * and sets up the hyper-v vmbus handling for this driver.
3e189519
HJ
571 * It will return the state of the 'driver_register()' call.
572 *
90c9960e 573 */
768fa219 574int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
3e7ee490 575{
5d48a1c2 576 int ret;
3e7ee490 577
768fa219 578 pr_info("registering driver %s\n", hv_driver->name);
3e7ee490 579
768fa219
GKH
580 hv_driver->driver.name = hv_driver->name;
581 hv_driver->driver.owner = owner;
582 hv_driver->driver.mod_name = mod_name;
583 hv_driver->driver.bus = &hv_bus;
3e7ee490 584
768fa219 585 ret = driver_register(&hv_driver->driver);
3e7ee490 586
2d6e882b 587 vmbus_request_offers();
3e7ee490 588
5d48a1c2 589 return ret;
3e7ee490 590}
768fa219 591EXPORT_SYMBOL_GPL(__vmbus_driver_register);
3e7ee490 592
90c9960e 593/**
768fa219
GKH
594 * vmbus_driver_unregister() - Unregister a vmbus's driver
595 * @drv: Pointer to driver structure you want to un-register
3e189519 596 *
768fa219
GKH
597 * Un-register the given driver that was previous registered with a call to
598 * vmbus_driver_register()
90c9960e 599 */
768fa219 600void vmbus_driver_unregister(struct hv_driver *hv_driver)
3e7ee490 601{
768fa219 602 pr_info("unregistering driver %s\n", hv_driver->name);
3e7ee490 603
768fa219 604 driver_unregister(&hv_driver->driver);
3e7ee490 605
3e7ee490 606}
768fa219 607EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
3e7ee490 608
3e189519 609/*
f2c73011 610 * vmbus_device_create - Creates and registers a new child device
3e189519 611 * on the vmbus.
90c9960e 612 */
f2c73011 613struct hv_device *vmbus_device_create(uuid_le *type,
358d2ee2 614 uuid_le *instance,
89733aa9 615 struct vmbus_channel *channel)
3e7ee490 616{
3d3b5518 617 struct hv_device *child_device_obj;
3e7ee490 618
6bad88da
S
619 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
620 if (!child_device_obj) {
0a46618d 621 pr_err("Unable to allocate device object for child device\n");
3e7ee490
HJ
622 return NULL;
623 }
624
cae5b843 625 child_device_obj->channel = channel;
358d2ee2 626 memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le));
ca623ad3 627 memcpy(&child_device_obj->dev_instance, instance,
358d2ee2 628 sizeof(uuid_le));
3e7ee490 629
3e7ee490 630
3e7ee490
HJ
631 return child_device_obj;
632}
633
3e189519 634/*
22794281 635 * vmbus_device_register - Register the child device
90c9960e 636 */
22794281 637int vmbus_device_register(struct hv_device *child_device_obj)
3e7ee490 638{
90c9960e 639 int ret = 0;
6bad88da 640
f4888417 641 static atomic_t device_num = ATOMIC_INIT(0);
3e7ee490 642
6bad88da 643 dev_set_name(&child_device_obj->device, "vmbus_0_%d",
90c9960e 644 atomic_inc_return(&device_num));
3e7ee490 645
0bce28b6 646 child_device_obj->device.bus = &hv_bus;
607c1a11 647 child_device_obj->device.parent = &hv_acpi_dev->dev;
6bad88da 648 child_device_obj->device.release = vmbus_device_release;
3e7ee490 649
90c9960e
GKH
650 /*
651 * Register with the LDM. This will kick off the driver/device
652 * binding...which will eventually call vmbus_match() and vmbus_probe()
653 */
6bad88da 654 ret = device_register(&child_device_obj->device);
3e7ee490 655
3e7ee490 656 if (ret)
0a46618d 657 pr_err("Unable to register child device\n");
3e7ee490 658 else
0a46618d
HJ
659 pr_info("child device %s registered\n",
660 dev_name(&child_device_obj->device));
3e7ee490 661
3e7ee490
HJ
662 return ret;
663}
664
3e189519 665/*
696453ba 666 * vmbus_device_unregister - Remove the specified child device
3e189519 667 * from the vmbus.
90c9960e 668 */
696453ba 669void vmbus_device_unregister(struct hv_device *device_obj)
3e7ee490 670{
90c9960e
GKH
671 /*
672 * Kick off the process of unregistering the device.
673 * This will call vmbus_remove() and eventually vmbus_device_release()
674 */
6bad88da 675 device_unregister(&device_obj->device);
3e7ee490 676
0a46618d
HJ
677 pr_info("child device %s unregistered\n",
678 dev_name(&device_obj->device));
3e7ee490
HJ
679}
680
3e7ee490 681
b0069f43
S
682/*
683 * VMBUS is an acpi enumerated device. Get the the IRQ information
684 * from DSDT.
685 */
686
687static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *irq)
688{
689
690 if (res->type == ACPI_RESOURCE_TYPE_IRQ) {
691 struct acpi_resource_irq *irqp;
692 irqp = &res->data.irq;
693
694 *((unsigned int *)irq) = irqp->interrupts[0];
695 }
696
697 return AE_OK;
698}
699
700static int vmbus_acpi_add(struct acpi_device *device)
701{
702 acpi_status result;
703
607c1a11
S
704 hv_acpi_dev = device;
705
0a4425b6
S
706 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
707 vmbus_walk_resources, &irq);
b0069f43
S
708
709 if (ACPI_FAILURE(result)) {
710 complete(&probe_event);
711 return -ENODEV;
712 }
713 complete(&probe_event);
714 return 0;
715}
716
717static const struct acpi_device_id vmbus_acpi_device_ids[] = {
718 {"VMBUS", 0},
9d7b18d1 719 {"VMBus", 0},
b0069f43
S
720 {"", 0},
721};
722MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
723
724static struct acpi_driver vmbus_acpi_driver = {
725 .name = "vmbus",
726 .ids = vmbus_acpi_device_ids,
727 .ops = {
728 .add = vmbus_acpi_add,
729 },
730};
731
607c1a11 732static int __init hv_acpi_init(void)
1168ac22 733{
2dda95f8 734 int ret, t;
b0069f43
S
735
736 init_completion(&probe_event);
737
738 /*
739 * Get irq resources first.
740 */
741
0246604c
S
742 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
743
b0069f43
S
744 if (ret)
745 return ret;
746
2dda95f8
S
747 t = wait_for_completion_timeout(&probe_event, 5*HZ);
748 if (t == 0) {
749 ret = -ETIMEDOUT;
750 goto cleanup;
751 }
b0069f43
S
752
753 if (irq <= 0) {
2dda95f8
S
754 ret = -ENODEV;
755 goto cleanup;
b0069f43
S
756 }
757
91fd799e
S
758 ret = vmbus_bus_init(irq);
759 if (ret)
2dda95f8
S
760 goto cleanup;
761
762 return 0;
763
764cleanup:
765 acpi_bus_unregister_driver(&vmbus_acpi_driver);
91fd799e 766 return ret;
1168ac22
S
767}
768
1168ac22 769
90c9960e 770MODULE_LICENSE("GPL");
26c14cc1 771MODULE_VERSION(HV_DRV_VERSION);
13399cba 772module_param(vmbus_loglevel, int, S_IRUGO|S_IWUSR);
3e7ee490 773
607c1a11 774module_init(hv_acpi_init);
This page took 0.285221 seconds and 5 git commands to generate.