Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 1 | /* |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 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> |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 20 | * K. Y. Srinivasan <kys@microsoft.com> |
K. Y. Srinivasan | 52e5c1c | 2011-03-15 15:03:34 -0700 | [diff] [blame] | 21 | * |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 22 | */ |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 23 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 24 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 25 | #include <linux/init.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/device.h> |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 28 | #include <linux/interrupt.h> |
| 29 | #include <linux/sysctl.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 31 | #include <linux/acpi.h> |
Haiyang Zhang | 8b5d6d3 | 2010-05-28 23:22:44 +0000 | [diff] [blame] | 32 | #include <linux/completion.h> |
Greg Kroah-Hartman | 46a9719 | 2011-10-04 12:29:52 -0700 | [diff] [blame] | 33 | #include <linux/hyperv.h> |
K. Y. Srinivasan | b020950 | 2012-12-01 06:46:54 -0800 | [diff] [blame] | 34 | #include <linux/kernel_stat.h> |
Greg Kroah-Hartman | 407dd16 | 2011-10-11 08:36:44 -0600 | [diff] [blame] | 35 | #include <asm/hyperv.h> |
Jason Wang | 1f94ea8 | 2012-08-31 13:32:44 +0800 | [diff] [blame] | 36 | #include <asm/hypervisor.h> |
K. Y. Srinivasan | 302a3c0 | 2013-02-17 11:30:44 -0800 | [diff] [blame] | 37 | #include <asm/mshyperv.h> |
K. Y. Srinivasan | 0f2a661 | 2011-05-12 19:34:28 -0700 | [diff] [blame] | 38 | #include "hyperv_vmbus.h" |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 39 | |
K. Y. Srinivasan | 607c1a1 | 2011-06-06 15:49:39 -0700 | [diff] [blame] | 40 | static struct acpi_device *hv_acpi_dev; |
K. Y. Srinivasan | 1168ac2 | 2011-03-15 15:03:32 -0700 | [diff] [blame] | 41 | |
K. Y. Srinivasan | 59c0e4f | 2011-04-29 13:45:06 -0700 | [diff] [blame] | 42 | static struct tasklet_struct msg_dpc; |
K. Y. Srinivasan | 71a6655 | 2011-04-29 13:45:04 -0700 | [diff] [blame] | 43 | static struct completion probe_event; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 44 | static int irq; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 45 | |
Gerd Hoffmann | 90eedf0 | 2014-02-24 14:17:09 +0100 | [diff] [blame] | 46 | struct resource hyperv_mmio = { |
| 47 | .name = "hyperv mmio", |
| 48 | .flags = IORESOURCE_MEM, |
| 49 | }; |
| 50 | EXPORT_SYMBOL_GPL(hyperv_mmio); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 51 | |
K. Y. Srinivasan | cf6a2ea | 2011-12-01 09:59:34 -0800 | [diff] [blame] | 52 | static int vmbus_exists(void) |
| 53 | { |
| 54 | if (hv_acpi_dev == NULL) |
| 55 | return -ENODEV; |
| 56 | |
| 57 | return 0; |
| 58 | } |
| 59 | |
Olaf Hering | fd776ba | 2011-09-02 18:25:56 +0200 | [diff] [blame] | 60 | #define VMBUS_ALIAS_LEN ((sizeof((struct hv_vmbus_device_id *)0)->guid) * 2) |
| 61 | static void print_alias_name(struct hv_device *hv_dev, char *alias_name) |
| 62 | { |
| 63 | int i; |
| 64 | for (i = 0; i < VMBUS_ALIAS_LEN; i += 2) |
| 65 | sprintf(&alias_name[i], "%02x", hv_dev->dev_type.b[i/2]); |
| 66 | } |
| 67 | |
Greg Kroah-Hartman | 76c52bb | 2013-09-13 11:32:56 -0700 | [diff] [blame] | 68 | static u8 channel_monitor_group(struct vmbus_channel *channel) |
| 69 | { |
| 70 | return (u8)channel->offermsg.monitorid / 32; |
| 71 | } |
| 72 | |
| 73 | static u8 channel_monitor_offset(struct vmbus_channel *channel) |
| 74 | { |
| 75 | return (u8)channel->offermsg.monitorid % 32; |
| 76 | } |
| 77 | |
| 78 | static u32 channel_pending(struct vmbus_channel *channel, |
| 79 | struct hv_monitor_page *monitor_page) |
| 80 | { |
| 81 | u8 monitor_group = channel_monitor_group(channel); |
| 82 | return monitor_page->trigger_group[monitor_group].pending; |
| 83 | } |
| 84 | |
Greg Kroah-Hartman | 1cee272 | 2013-09-13 11:32:57 -0700 | [diff] [blame] | 85 | static u32 channel_latency(struct vmbus_channel *channel, |
| 86 | struct hv_monitor_page *monitor_page) |
| 87 | { |
| 88 | u8 monitor_group = channel_monitor_group(channel); |
| 89 | u8 monitor_offset = channel_monitor_offset(channel); |
| 90 | return monitor_page->latency[monitor_group][monitor_offset]; |
| 91 | } |
| 92 | |
Greg Kroah-Hartman | 4947c74 | 2013-09-13 11:32:58 -0700 | [diff] [blame] | 93 | static u32 channel_conn_id(struct vmbus_channel *channel, |
| 94 | struct hv_monitor_page *monitor_page) |
| 95 | { |
| 96 | u8 monitor_group = channel_monitor_group(channel); |
| 97 | u8 monitor_offset = channel_monitor_offset(channel); |
| 98 | return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id; |
| 99 | } |
| 100 | |
Greg Kroah-Hartman | 03f3a91 | 2013-09-13 11:32:49 -0700 | [diff] [blame] | 101 | static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr, |
| 102 | char *buf) |
| 103 | { |
| 104 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 105 | |
| 106 | if (!hv_dev->channel) |
| 107 | return -ENODEV; |
| 108 | return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid); |
| 109 | } |
| 110 | static DEVICE_ATTR_RO(id); |
| 111 | |
Greg Kroah-Hartman | a8fb5f3 | 2013-09-13 11:32:50 -0700 | [diff] [blame] | 112 | static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr, |
| 113 | char *buf) |
| 114 | { |
| 115 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 116 | |
| 117 | if (!hv_dev->channel) |
| 118 | return -ENODEV; |
| 119 | return sprintf(buf, "%d\n", hv_dev->channel->state); |
| 120 | } |
| 121 | static DEVICE_ATTR_RO(state); |
| 122 | |
Greg Kroah-Hartman | 5ffd00e | 2013-09-13 11:32:51 -0700 | [diff] [blame] | 123 | static ssize_t monitor_id_show(struct device *dev, |
| 124 | struct device_attribute *dev_attr, char *buf) |
| 125 | { |
| 126 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 127 | |
| 128 | if (!hv_dev->channel) |
| 129 | return -ENODEV; |
| 130 | return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid); |
| 131 | } |
| 132 | static DEVICE_ATTR_RO(monitor_id); |
| 133 | |
Greg Kroah-Hartman | 68234c0 | 2013-09-13 11:32:53 -0700 | [diff] [blame] | 134 | static ssize_t class_id_show(struct device *dev, |
| 135 | struct device_attribute *dev_attr, char *buf) |
| 136 | { |
| 137 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 138 | |
| 139 | if (!hv_dev->channel) |
| 140 | return -ENODEV; |
| 141 | return sprintf(buf, "{%pUl}\n", |
| 142 | hv_dev->channel->offermsg.offer.if_type.b); |
| 143 | } |
| 144 | static DEVICE_ATTR_RO(class_id); |
| 145 | |
Greg Kroah-Hartman | 7c55e1d | 2013-09-13 11:32:54 -0700 | [diff] [blame] | 146 | static ssize_t device_id_show(struct device *dev, |
| 147 | struct device_attribute *dev_attr, char *buf) |
| 148 | { |
| 149 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 150 | |
| 151 | if (!hv_dev->channel) |
| 152 | return -ENODEV; |
| 153 | return sprintf(buf, "{%pUl}\n", |
| 154 | hv_dev->channel->offermsg.offer.if_instance.b); |
| 155 | } |
| 156 | static DEVICE_ATTR_RO(device_id); |
| 157 | |
Greg Kroah-Hartman | 647fa37 | 2013-09-13 11:32:52 -0700 | [diff] [blame] | 158 | static ssize_t modalias_show(struct device *dev, |
| 159 | struct device_attribute *dev_attr, char *buf) |
| 160 | { |
| 161 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 162 | char alias_name[VMBUS_ALIAS_LEN + 1]; |
| 163 | |
| 164 | print_alias_name(hv_dev, alias_name); |
| 165 | return sprintf(buf, "vmbus:%s\n", alias_name); |
| 166 | } |
| 167 | static DEVICE_ATTR_RO(modalias); |
| 168 | |
Greg Kroah-Hartman | 76c52bb | 2013-09-13 11:32:56 -0700 | [diff] [blame] | 169 | static ssize_t server_monitor_pending_show(struct device *dev, |
| 170 | struct device_attribute *dev_attr, |
| 171 | char *buf) |
| 172 | { |
| 173 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 174 | |
| 175 | if (!hv_dev->channel) |
| 176 | return -ENODEV; |
| 177 | return sprintf(buf, "%d\n", |
| 178 | channel_pending(hv_dev->channel, |
| 179 | vmbus_connection.monitor_pages[1])); |
| 180 | } |
| 181 | static DEVICE_ATTR_RO(server_monitor_pending); |
| 182 | |
| 183 | static ssize_t client_monitor_pending_show(struct device *dev, |
| 184 | struct device_attribute *dev_attr, |
| 185 | char *buf) |
| 186 | { |
| 187 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 188 | |
| 189 | if (!hv_dev->channel) |
| 190 | return -ENODEV; |
| 191 | return sprintf(buf, "%d\n", |
| 192 | channel_pending(hv_dev->channel, |
| 193 | vmbus_connection.monitor_pages[1])); |
| 194 | } |
| 195 | static DEVICE_ATTR_RO(client_monitor_pending); |
Greg Kroah-Hartman | 68234c0 | 2013-09-13 11:32:53 -0700 | [diff] [blame] | 196 | |
Greg Kroah-Hartman | 1cee272 | 2013-09-13 11:32:57 -0700 | [diff] [blame] | 197 | static ssize_t server_monitor_latency_show(struct device *dev, |
| 198 | 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", |
| 206 | channel_latency(hv_dev->channel, |
| 207 | vmbus_connection.monitor_pages[0])); |
| 208 | } |
| 209 | static DEVICE_ATTR_RO(server_monitor_latency); |
| 210 | |
| 211 | static ssize_t client_monitor_latency_show(struct device *dev, |
| 212 | struct device_attribute *dev_attr, |
| 213 | char *buf) |
| 214 | { |
| 215 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 216 | |
| 217 | if (!hv_dev->channel) |
| 218 | return -ENODEV; |
| 219 | return sprintf(buf, "%d\n", |
| 220 | channel_latency(hv_dev->channel, |
| 221 | vmbus_connection.monitor_pages[1])); |
| 222 | } |
| 223 | static DEVICE_ATTR_RO(client_monitor_latency); |
| 224 | |
Greg Kroah-Hartman | 4947c74 | 2013-09-13 11:32:58 -0700 | [diff] [blame] | 225 | static ssize_t server_monitor_conn_id_show(struct device *dev, |
| 226 | struct device_attribute *dev_attr, |
| 227 | char *buf) |
| 228 | { |
| 229 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 230 | |
| 231 | if (!hv_dev->channel) |
| 232 | return -ENODEV; |
| 233 | return sprintf(buf, "%d\n", |
| 234 | channel_conn_id(hv_dev->channel, |
| 235 | vmbus_connection.monitor_pages[0])); |
| 236 | } |
| 237 | static DEVICE_ATTR_RO(server_monitor_conn_id); |
| 238 | |
| 239 | static ssize_t client_monitor_conn_id_show(struct device *dev, |
| 240 | struct device_attribute *dev_attr, |
| 241 | char *buf) |
| 242 | { |
| 243 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 244 | |
| 245 | if (!hv_dev->channel) |
| 246 | return -ENODEV; |
| 247 | return sprintf(buf, "%d\n", |
| 248 | channel_conn_id(hv_dev->channel, |
| 249 | vmbus_connection.monitor_pages[1])); |
| 250 | } |
| 251 | static DEVICE_ATTR_RO(client_monitor_conn_id); |
| 252 | |
Greg Kroah-Hartman | 98f4c651 | 2013-09-13 11:33:01 -0700 | [diff] [blame] | 253 | static ssize_t out_intr_mask_show(struct device *dev, |
| 254 | struct device_attribute *dev_attr, char *buf) |
| 255 | { |
| 256 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 257 | struct hv_ring_buffer_debug_info outbound; |
| 258 | |
| 259 | if (!hv_dev->channel) |
| 260 | return -ENODEV; |
| 261 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound); |
| 262 | return sprintf(buf, "%d\n", outbound.current_interrupt_mask); |
| 263 | } |
| 264 | static DEVICE_ATTR_RO(out_intr_mask); |
| 265 | |
| 266 | static ssize_t out_read_index_show(struct device *dev, |
| 267 | struct device_attribute *dev_attr, char *buf) |
| 268 | { |
| 269 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 270 | struct hv_ring_buffer_debug_info outbound; |
| 271 | |
| 272 | if (!hv_dev->channel) |
| 273 | return -ENODEV; |
| 274 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound); |
| 275 | return sprintf(buf, "%d\n", outbound.current_read_index); |
| 276 | } |
| 277 | static DEVICE_ATTR_RO(out_read_index); |
| 278 | |
| 279 | static ssize_t out_write_index_show(struct device *dev, |
| 280 | struct device_attribute *dev_attr, |
| 281 | char *buf) |
| 282 | { |
| 283 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 284 | struct hv_ring_buffer_debug_info outbound; |
| 285 | |
| 286 | if (!hv_dev->channel) |
| 287 | return -ENODEV; |
| 288 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound); |
| 289 | return sprintf(buf, "%d\n", outbound.current_write_index); |
| 290 | } |
| 291 | static DEVICE_ATTR_RO(out_write_index); |
| 292 | |
| 293 | static ssize_t out_read_bytes_avail_show(struct device *dev, |
| 294 | struct device_attribute *dev_attr, |
| 295 | char *buf) |
| 296 | { |
| 297 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 298 | struct hv_ring_buffer_debug_info outbound; |
| 299 | |
| 300 | if (!hv_dev->channel) |
| 301 | return -ENODEV; |
| 302 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound); |
| 303 | return sprintf(buf, "%d\n", outbound.bytes_avail_toread); |
| 304 | } |
| 305 | static DEVICE_ATTR_RO(out_read_bytes_avail); |
| 306 | |
| 307 | static ssize_t out_write_bytes_avail_show(struct device *dev, |
| 308 | struct device_attribute *dev_attr, |
| 309 | char *buf) |
| 310 | { |
| 311 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 312 | struct hv_ring_buffer_debug_info outbound; |
| 313 | |
| 314 | if (!hv_dev->channel) |
| 315 | return -ENODEV; |
| 316 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, &outbound); |
| 317 | return sprintf(buf, "%d\n", outbound.bytes_avail_towrite); |
| 318 | } |
| 319 | static DEVICE_ATTR_RO(out_write_bytes_avail); |
| 320 | |
| 321 | static ssize_t in_intr_mask_show(struct device *dev, |
| 322 | struct device_attribute *dev_attr, char *buf) |
| 323 | { |
| 324 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 325 | struct hv_ring_buffer_debug_info inbound; |
| 326 | |
| 327 | if (!hv_dev->channel) |
| 328 | return -ENODEV; |
| 329 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound); |
| 330 | return sprintf(buf, "%d\n", inbound.current_interrupt_mask); |
| 331 | } |
| 332 | static DEVICE_ATTR_RO(in_intr_mask); |
| 333 | |
| 334 | static ssize_t in_read_index_show(struct device *dev, |
| 335 | struct device_attribute *dev_attr, char *buf) |
| 336 | { |
| 337 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 338 | struct hv_ring_buffer_debug_info inbound; |
| 339 | |
| 340 | if (!hv_dev->channel) |
| 341 | return -ENODEV; |
| 342 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound); |
| 343 | return sprintf(buf, "%d\n", inbound.current_read_index); |
| 344 | } |
| 345 | static DEVICE_ATTR_RO(in_read_index); |
| 346 | |
| 347 | static ssize_t in_write_index_show(struct device *dev, |
| 348 | struct device_attribute *dev_attr, char *buf) |
| 349 | { |
| 350 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 351 | struct hv_ring_buffer_debug_info inbound; |
| 352 | |
| 353 | if (!hv_dev->channel) |
| 354 | return -ENODEV; |
| 355 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound); |
| 356 | return sprintf(buf, "%d\n", inbound.current_write_index); |
| 357 | } |
| 358 | static DEVICE_ATTR_RO(in_write_index); |
| 359 | |
| 360 | static ssize_t in_read_bytes_avail_show(struct device *dev, |
| 361 | struct device_attribute *dev_attr, |
| 362 | char *buf) |
| 363 | { |
| 364 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 365 | struct hv_ring_buffer_debug_info inbound; |
| 366 | |
| 367 | if (!hv_dev->channel) |
| 368 | return -ENODEV; |
| 369 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound); |
| 370 | return sprintf(buf, "%d\n", inbound.bytes_avail_toread); |
| 371 | } |
| 372 | static DEVICE_ATTR_RO(in_read_bytes_avail); |
| 373 | |
| 374 | static ssize_t in_write_bytes_avail_show(struct device *dev, |
| 375 | struct device_attribute *dev_attr, |
| 376 | char *buf) |
| 377 | { |
| 378 | struct hv_device *hv_dev = device_to_hv_device(dev); |
| 379 | struct hv_ring_buffer_debug_info inbound; |
| 380 | |
| 381 | if (!hv_dev->channel) |
| 382 | return -ENODEV; |
| 383 | hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound); |
| 384 | return sprintf(buf, "%d\n", inbound.bytes_avail_towrite); |
| 385 | } |
| 386 | static DEVICE_ATTR_RO(in_write_bytes_avail); |
| 387 | |
| 388 | /* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */ |
Greg Kroah-Hartman | 03f3a91 | 2013-09-13 11:32:49 -0700 | [diff] [blame] | 389 | static struct attribute *vmbus_attrs[] = { |
| 390 | &dev_attr_id.attr, |
Greg Kroah-Hartman | a8fb5f3 | 2013-09-13 11:32:50 -0700 | [diff] [blame] | 391 | &dev_attr_state.attr, |
Greg Kroah-Hartman | 5ffd00e | 2013-09-13 11:32:51 -0700 | [diff] [blame] | 392 | &dev_attr_monitor_id.attr, |
Greg Kroah-Hartman | 68234c0 | 2013-09-13 11:32:53 -0700 | [diff] [blame] | 393 | &dev_attr_class_id.attr, |
Greg Kroah-Hartman | 7c55e1d | 2013-09-13 11:32:54 -0700 | [diff] [blame] | 394 | &dev_attr_device_id.attr, |
Greg Kroah-Hartman | 647fa37 | 2013-09-13 11:32:52 -0700 | [diff] [blame] | 395 | &dev_attr_modalias.attr, |
Greg Kroah-Hartman | 76c52bb | 2013-09-13 11:32:56 -0700 | [diff] [blame] | 396 | &dev_attr_server_monitor_pending.attr, |
| 397 | &dev_attr_client_monitor_pending.attr, |
Greg Kroah-Hartman | 1cee272 | 2013-09-13 11:32:57 -0700 | [diff] [blame] | 398 | &dev_attr_server_monitor_latency.attr, |
| 399 | &dev_attr_client_monitor_latency.attr, |
Greg Kroah-Hartman | 4947c74 | 2013-09-13 11:32:58 -0700 | [diff] [blame] | 400 | &dev_attr_server_monitor_conn_id.attr, |
| 401 | &dev_attr_client_monitor_conn_id.attr, |
Greg Kroah-Hartman | 98f4c651 | 2013-09-13 11:33:01 -0700 | [diff] [blame] | 402 | &dev_attr_out_intr_mask.attr, |
| 403 | &dev_attr_out_read_index.attr, |
| 404 | &dev_attr_out_write_index.attr, |
| 405 | &dev_attr_out_read_bytes_avail.attr, |
| 406 | &dev_attr_out_write_bytes_avail.attr, |
| 407 | &dev_attr_in_intr_mask.attr, |
| 408 | &dev_attr_in_read_index.attr, |
| 409 | &dev_attr_in_write_index.attr, |
| 410 | &dev_attr_in_read_bytes_avail.attr, |
| 411 | &dev_attr_in_write_bytes_avail.attr, |
Greg Kroah-Hartman | 03f3a91 | 2013-09-13 11:32:49 -0700 | [diff] [blame] | 412 | NULL, |
| 413 | }; |
| 414 | ATTRIBUTE_GROUPS(vmbus); |
| 415 | |
K. Y. Srinivasan | adde248 | 2011-03-15 15:03:37 -0700 | [diff] [blame] | 416 | /* |
| 417 | * vmbus_uevent - add uevent for our device |
| 418 | * |
| 419 | * This routine is invoked when a device is added or removed on the vmbus to |
| 420 | * generate a uevent to udev in the userspace. The udev will then look at its |
| 421 | * rule and the uevent generated here to load the appropriate driver |
K. Y. Srinivasan | 0ddda66 | 2011-08-25 09:48:38 -0700 | [diff] [blame] | 422 | * |
| 423 | * The alias string will be of the form vmbus:guid where guid is the string |
| 424 | * representation of the device guid (each byte of the guid will be |
| 425 | * represented with two hex characters. |
K. Y. Srinivasan | adde248 | 2011-03-15 15:03:37 -0700 | [diff] [blame] | 426 | */ |
| 427 | static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env) |
| 428 | { |
| 429 | struct hv_device *dev = device_to_hv_device(device); |
Olaf Hering | fd776ba | 2011-09-02 18:25:56 +0200 | [diff] [blame] | 430 | int ret; |
| 431 | char alias_name[VMBUS_ALIAS_LEN + 1]; |
K. Y. Srinivasan | adde248 | 2011-03-15 15:03:37 -0700 | [diff] [blame] | 432 | |
Olaf Hering | fd776ba | 2011-09-02 18:25:56 +0200 | [diff] [blame] | 433 | print_alias_name(dev, alias_name); |
K. Y. Srinivasan | 0ddda66 | 2011-08-25 09:48:38 -0700 | [diff] [blame] | 434 | ret = add_uevent_var(env, "MODALIAS=vmbus:%s", alias_name); |
| 435 | return ret; |
K. Y. Srinivasan | adde248 | 2011-03-15 15:03:37 -0700 | [diff] [blame] | 436 | } |
| 437 | |
K. Y. Srinivasan | 5841a82 | 2011-08-25 09:48:39 -0700 | [diff] [blame] | 438 | static uuid_le null_guid; |
| 439 | |
| 440 | static inline bool is_null_guid(const __u8 *guid) |
| 441 | { |
| 442 | if (memcmp(guid, &null_guid, sizeof(uuid_le))) |
| 443 | return false; |
| 444 | return true; |
| 445 | } |
| 446 | |
K. Y. Srinivasan | 3037a7b | 2011-09-13 10:59:37 -0700 | [diff] [blame] | 447 | /* |
| 448 | * Return a matching hv_vmbus_device_id pointer. |
| 449 | * If there is no match, return NULL. |
| 450 | */ |
| 451 | static const struct hv_vmbus_device_id *hv_vmbus_get_id( |
| 452 | const struct hv_vmbus_device_id *id, |
| 453 | __u8 *guid) |
| 454 | { |
| 455 | for (; !is_null_guid(id->guid); id++) |
| 456 | if (!memcmp(&id->guid, guid, sizeof(uuid_le))) |
| 457 | return id; |
| 458 | |
| 459 | return NULL; |
| 460 | } |
| 461 | |
| 462 | |
K. Y. Srinivasan | b7fc147 | 2011-03-15 15:03:38 -0700 | [diff] [blame] | 463 | |
| 464 | /* |
| 465 | * vmbus_match - Attempt to match the specified device to the specified driver |
| 466 | */ |
| 467 | static int vmbus_match(struct device *device, struct device_driver *driver) |
| 468 | { |
K. Y. Srinivasan | b7fc147 | 2011-03-15 15:03:38 -0700 | [diff] [blame] | 469 | struct hv_driver *drv = drv_to_hv_drv(driver); |
K. Y. Srinivasan | e8e2704 | 2011-06-06 15:50:04 -0700 | [diff] [blame] | 470 | struct hv_device *hv_dev = device_to_hv_device(device); |
K. Y. Srinivasan | b7fc147 | 2011-03-15 15:03:38 -0700 | [diff] [blame] | 471 | |
K. Y. Srinivasan | 3037a7b | 2011-09-13 10:59:37 -0700 | [diff] [blame] | 472 | if (hv_vmbus_get_id(drv->id_table, hv_dev->dev_type.b)) |
| 473 | return 1; |
K. Y. Srinivasan | de632a2 | 2011-04-26 09:20:24 -0700 | [diff] [blame] | 474 | |
K. Y. Srinivasan | 5841a82 | 2011-08-25 09:48:39 -0700 | [diff] [blame] | 475 | return 0; |
K. Y. Srinivasan | b7fc147 | 2011-03-15 15:03:38 -0700 | [diff] [blame] | 476 | } |
| 477 | |
K. Y. Srinivasan | f1f0d67 | 2011-03-15 15:03:39 -0700 | [diff] [blame] | 478 | /* |
| 479 | * vmbus_probe - Add the new vmbus's child device |
| 480 | */ |
| 481 | static int vmbus_probe(struct device *child_device) |
| 482 | { |
| 483 | int ret = 0; |
| 484 | struct hv_driver *drv = |
| 485 | drv_to_hv_drv(child_device->driver); |
K. Y. Srinivasan | 9efd21e | 2011-04-29 13:45:10 -0700 | [diff] [blame] | 486 | struct hv_device *dev = device_to_hv_device(child_device); |
K. Y. Srinivasan | 8494689 | 2011-09-13 10:59:38 -0700 | [diff] [blame] | 487 | const struct hv_vmbus_device_id *dev_id; |
K. Y. Srinivasan | f1f0d67 | 2011-03-15 15:03:39 -0700 | [diff] [blame] | 488 | |
K. Y. Srinivasan | 8494689 | 2011-09-13 10:59:38 -0700 | [diff] [blame] | 489 | dev_id = hv_vmbus_get_id(drv->id_table, dev->dev_type.b); |
K. Y. Srinivasan | 9efd21e | 2011-04-29 13:45:10 -0700 | [diff] [blame] | 490 | if (drv->probe) { |
K. Y. Srinivasan | 8494689 | 2011-09-13 10:59:38 -0700 | [diff] [blame] | 491 | ret = drv->probe(dev, dev_id); |
K. Y. Srinivasan | b14a7b3 | 2011-04-29 13:45:03 -0700 | [diff] [blame] | 492 | if (ret != 0) |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 493 | pr_err("probe failed for device %s (%d)\n", |
| 494 | dev_name(child_device), ret); |
K. Y. Srinivasan | f1f0d67 | 2011-03-15 15:03:39 -0700 | [diff] [blame] | 495 | |
K. Y. Srinivasan | f1f0d67 | 2011-03-15 15:03:39 -0700 | [diff] [blame] | 496 | } else { |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 497 | pr_err("probe not set for driver %s\n", |
| 498 | dev_name(child_device)); |
K. Y. Srinivasan | 6de925b | 2011-06-06 15:50:07 -0700 | [diff] [blame] | 499 | ret = -ENODEV; |
K. Y. Srinivasan | f1f0d67 | 2011-03-15 15:03:39 -0700 | [diff] [blame] | 500 | } |
| 501 | return ret; |
| 502 | } |
| 503 | |
K. Y. Srinivasan | c5dce3d | 2011-03-15 15:03:40 -0700 | [diff] [blame] | 504 | /* |
| 505 | * vmbus_remove - Remove a vmbus device |
| 506 | */ |
| 507 | static int vmbus_remove(struct device *child_device) |
| 508 | { |
K. Y. Srinivasan | d437217 | 2011-09-13 10:59:44 -0700 | [diff] [blame] | 509 | struct hv_driver *drv = drv_to_hv_drv(child_device->driver); |
K. Y. Srinivasan | 415b023 | 2011-04-29 13:45:12 -0700 | [diff] [blame] | 510 | struct hv_device *dev = device_to_hv_device(child_device); |
K. Y. Srinivasan | c5dce3d | 2011-03-15 15:03:40 -0700 | [diff] [blame] | 511 | |
K. Y. Srinivasan | d437217 | 2011-09-13 10:59:44 -0700 | [diff] [blame] | 512 | if (drv->remove) |
| 513 | drv->remove(dev); |
| 514 | else |
| 515 | pr_err("remove not set for driver %s\n", |
| 516 | dev_name(child_device)); |
K. Y. Srinivasan | c5dce3d | 2011-03-15 15:03:40 -0700 | [diff] [blame] | 517 | |
| 518 | return 0; |
| 519 | } |
| 520 | |
K. Y. Srinivasan | eb1bb25 | 2011-03-15 15:03:41 -0700 | [diff] [blame] | 521 | |
| 522 | /* |
| 523 | * vmbus_shutdown - Shutdown a vmbus device |
| 524 | */ |
| 525 | static void vmbus_shutdown(struct device *child_device) |
| 526 | { |
| 527 | struct hv_driver *drv; |
K. Y. Srinivasan | ca6887f | 2011-04-29 13:45:14 -0700 | [diff] [blame] | 528 | struct hv_device *dev = device_to_hv_device(child_device); |
K. Y. Srinivasan | eb1bb25 | 2011-03-15 15:03:41 -0700 | [diff] [blame] | 529 | |
| 530 | |
| 531 | /* The device may not be attached yet */ |
| 532 | if (!child_device->driver) |
| 533 | return; |
| 534 | |
| 535 | drv = drv_to_hv_drv(child_device->driver); |
| 536 | |
K. Y. Srinivasan | ca6887f | 2011-04-29 13:45:14 -0700 | [diff] [blame] | 537 | if (drv->shutdown) |
| 538 | drv->shutdown(dev); |
K. Y. Srinivasan | eb1bb25 | 2011-03-15 15:03:41 -0700 | [diff] [blame] | 539 | |
| 540 | return; |
| 541 | } |
| 542 | |
K. Y. Srinivasan | 086e7a5 | 2011-03-15 15:03:42 -0700 | [diff] [blame] | 543 | |
| 544 | /* |
| 545 | * vmbus_device_release - Final callback release of the vmbus child device |
| 546 | */ |
| 547 | static void vmbus_device_release(struct device *device) |
| 548 | { |
K. Y. Srinivasan | e8e2704 | 2011-06-06 15:50:04 -0700 | [diff] [blame] | 549 | struct hv_device *hv_dev = device_to_hv_device(device); |
K. Y. Srinivasan | 086e7a5 | 2011-03-15 15:03:42 -0700 | [diff] [blame] | 550 | |
K. Y. Srinivasan | e8e2704 | 2011-06-06 15:50:04 -0700 | [diff] [blame] | 551 | kfree(hv_dev); |
K. Y. Srinivasan | 086e7a5 | 2011-03-15 15:03:42 -0700 | [diff] [blame] | 552 | |
| 553 | } |
| 554 | |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 555 | /* The one and only one */ |
K. Y. Srinivasan | 9adcac5 | 2011-04-29 13:45:08 -0700 | [diff] [blame] | 556 | static struct bus_type hv_bus = { |
| 557 | .name = "vmbus", |
| 558 | .match = vmbus_match, |
| 559 | .shutdown = vmbus_shutdown, |
| 560 | .remove = vmbus_remove, |
| 561 | .probe = vmbus_probe, |
| 562 | .uevent = vmbus_uevent, |
Greg Kroah-Hartman | 03f3a91 | 2013-09-13 11:32:49 -0700 | [diff] [blame] | 563 | .dev_groups = vmbus_groups, |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 564 | }; |
| 565 | |
Timo Teräs | bf6506f | 2010-12-15 20:48:08 +0200 | [diff] [blame] | 566 | struct onmessage_work_context { |
| 567 | struct work_struct work; |
| 568 | struct hv_message msg; |
| 569 | }; |
| 570 | |
| 571 | static void vmbus_onmessage_work(struct work_struct *work) |
| 572 | { |
| 573 | struct onmessage_work_context *ctx; |
| 574 | |
| 575 | ctx = container_of(work, struct onmessage_work_context, |
| 576 | work); |
| 577 | vmbus_onmessage(&ctx->msg); |
| 578 | kfree(ctx); |
| 579 | } |
| 580 | |
K. Y. Srinivasan | 62c1059 | 2011-03-10 14:04:53 -0800 | [diff] [blame] | 581 | static void vmbus_on_msg_dpc(unsigned long data) |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 582 | { |
| 583 | int cpu = smp_processor_id(); |
| 584 | void *page_addr = hv_context.synic_message_page[cpu]; |
| 585 | struct hv_message *msg = (struct hv_message *)page_addr + |
| 586 | VMBUS_MESSAGE_SINT; |
Timo Teräs | bf6506f | 2010-12-15 20:48:08 +0200 | [diff] [blame] | 587 | struct onmessage_work_context *ctx; |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 588 | |
| 589 | while (1) { |
| 590 | if (msg->header.message_type == HVMSG_NONE) { |
| 591 | /* no msg */ |
| 592 | break; |
| 593 | } else { |
Timo Teräs | bf6506f | 2010-12-15 20:48:08 +0200 | [diff] [blame] | 594 | ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC); |
| 595 | if (ctx == NULL) |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 596 | continue; |
Timo Teräs | bf6506f | 2010-12-15 20:48:08 +0200 | [diff] [blame] | 597 | INIT_WORK(&ctx->work, vmbus_onmessage_work); |
| 598 | memcpy(&ctx->msg, msg, sizeof(*msg)); |
Haiyang Zhang | da9fcb7 | 2011-01-26 12:12:14 -0800 | [diff] [blame] | 599 | queue_work(vmbus_connection.work_queue, &ctx->work); |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | msg->header.message_type = HVMSG_NONE; |
| 603 | |
| 604 | /* |
| 605 | * Make sure the write to MessageType (ie set to |
| 606 | * HVMSG_NONE) happens before we read the |
| 607 | * MessagePending and EOMing. Otherwise, the EOMing |
| 608 | * will not deliver any more messages since there is |
| 609 | * no empty slot |
| 610 | */ |
Jason Wang | 35848f6 | 2013-06-18 13:04:23 +0800 | [diff] [blame] | 611 | mb(); |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 612 | |
| 613 | if (msg->header.message_flags.msg_pending) { |
| 614 | /* |
| 615 | * This will cause message queue rescan to |
| 616 | * possibly deliver another msg from the |
| 617 | * hypervisor |
| 618 | */ |
| 619 | wrmsrl(HV_X64_MSR_EOM, 0); |
| 620 | } |
| 621 | } |
| 622 | } |
| 623 | |
Thomas Gleixner | 76d388c | 2014-03-05 13:42:14 +0100 | [diff] [blame] | 624 | static void vmbus_isr(void) |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 625 | { |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 626 | int cpu = smp_processor_id(); |
| 627 | void *page_addr; |
| 628 | struct hv_message *msg; |
| 629 | union hv_synic_event_flags *event; |
K. Y. Srinivasan | ae4636e | 2011-08-27 11:31:35 -0700 | [diff] [blame] | 630 | bool handled = false; |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 631 | |
K. Y. Srinivasan | 5ab0595 | 2012-12-01 06:46:55 -0800 | [diff] [blame] | 632 | page_addr = hv_context.synic_event_page[cpu]; |
| 633 | if (page_addr == NULL) |
Thomas Gleixner | 76d388c | 2014-03-05 13:42:14 +0100 | [diff] [blame] | 634 | return; |
K. Y. Srinivasan | 5ab0595 | 2012-12-01 06:46:55 -0800 | [diff] [blame] | 635 | |
| 636 | event = (union hv_synic_event_flags *)page_addr + |
| 637 | VMBUS_MESSAGE_SINT; |
K. Y. Srinivasan | 7341d90 | 2011-08-31 14:35:56 -0700 | [diff] [blame] | 638 | /* |
| 639 | * Check for events before checking for messages. This is the order |
| 640 | * in which events and messages are checked in Windows guests on |
| 641 | * Hyper-V, and the Windows team suggested we do the same. |
| 642 | */ |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 643 | |
K. Y. Srinivasan | 6552ecd | 2012-12-01 06:46:49 -0800 | [diff] [blame] | 644 | if ((vmbus_proto_version == VERSION_WS2008) || |
| 645 | (vmbus_proto_version == VERSION_WIN7)) { |
Greg Kroah-Hartman | 36199a9 | 2010-12-02 11:59:22 -0800 | [diff] [blame] | 646 | |
K. Y. Srinivasan | 6552ecd | 2012-12-01 06:46:49 -0800 | [diff] [blame] | 647 | /* Since we are a child, we only need to check bit 0 */ |
| 648 | if (sync_test_and_clear_bit(0, |
| 649 | (unsigned long *) &event->flags32[0])) { |
| 650 | handled = true; |
| 651 | } |
| 652 | } else { |
| 653 | /* |
| 654 | * Our host is win8 or above. The signaling mechanism |
| 655 | * has changed and we can directly look at the event page. |
| 656 | * If bit n is set then we have an interrup on the channel |
| 657 | * whose id is n. |
| 658 | */ |
K. Y. Srinivasan | ae4636e | 2011-08-27 11:31:35 -0700 | [diff] [blame] | 659 | handled = true; |
K. Y. Srinivasan | 793be9c | 2011-03-15 15:03:43 -0700 | [diff] [blame] | 660 | } |
K. Y. Srinivasan | ae4636e | 2011-08-27 11:31:35 -0700 | [diff] [blame] | 661 | |
K. Y. Srinivasan | 6552ecd | 2012-12-01 06:46:49 -0800 | [diff] [blame] | 662 | if (handled) |
K. Y. Srinivasan | db11f12 | 2012-12-01 06:46:53 -0800 | [diff] [blame] | 663 | tasklet_schedule(hv_context.event_dpc[cpu]); |
K. Y. Srinivasan | 6552ecd | 2012-12-01 06:46:49 -0800 | [diff] [blame] | 664 | |
| 665 | |
K. Y. Srinivasan | 7341d90 | 2011-08-31 14:35:56 -0700 | [diff] [blame] | 666 | page_addr = hv_context.synic_message_page[cpu]; |
| 667 | msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT; |
| 668 | |
| 669 | /* Check if there are actual msgs to be processed */ |
Thomas Gleixner | 76d388c | 2014-03-05 13:42:14 +0100 | [diff] [blame] | 670 | if (msg->header.message_type != HVMSG_NONE) |
K. Y. Srinivasan | 7341d90 | 2011-08-31 14:35:56 -0700 | [diff] [blame] | 671 | tasklet_schedule(&msg_dpc); |
K. Y. Srinivasan | 793be9c | 2011-03-15 15:03:43 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 674 | /* |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 675 | * vmbus_bus_init -Main vmbus driver initialization routine. |
| 676 | * |
| 677 | * Here, we |
Lars Lindley | 0686e4f | 2010-03-11 23:51:23 +0100 | [diff] [blame] | 678 | * - initialize the vmbus driver context |
Lars Lindley | 0686e4f | 2010-03-11 23:51:23 +0100 | [diff] [blame] | 679 | * - invoke the vmbus hv main init routine |
| 680 | * - get the irq resource |
Lars Lindley | 0686e4f | 2010-03-11 23:51:23 +0100 | [diff] [blame] | 681 | * - retrieve the channel offers |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 682 | */ |
K. Y. Srinivasan | 9aaa995 | 2011-06-06 15:49:37 -0700 | [diff] [blame] | 683 | static int vmbus_bus_init(int irq) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 684 | { |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 685 | int ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 686 | |
Greg Kroah-Hartman | 6d26e38fa2 | 2010-12-02 12:08:08 -0800 | [diff] [blame] | 687 | /* Hypervisor initialization...setup hypercall page..etc */ |
| 688 | ret = hv_init(); |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 689 | if (ret != 0) { |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 690 | pr_err("Unable to initialize the hypervisor - 0x%x\n", ret); |
K. Y. Srinivasan | d6c1c5d | 2011-06-06 15:50:08 -0700 | [diff] [blame] | 691 | return ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 692 | } |
| 693 | |
K. Y. Srinivasan | 59c0e4f | 2011-04-29 13:45:06 -0700 | [diff] [blame] | 694 | tasklet_init(&msg_dpc, vmbus_on_msg_dpc, 0); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 695 | |
K. Y. Srinivasan | 9adcac5 | 2011-04-29 13:45:08 -0700 | [diff] [blame] | 696 | ret = bus_register(&hv_bus); |
K. Y. Srinivasan | d6c1c5d | 2011-06-06 15:50:08 -0700 | [diff] [blame] | 697 | if (ret) |
K. Y. Srinivasan | 8b9987e | 2011-08-31 14:35:55 -0700 | [diff] [blame] | 698 | goto err_cleanup; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 699 | |
Thomas Gleixner | 76d388c | 2014-03-05 13:42:14 +0100 | [diff] [blame] | 700 | hv_setup_vmbus_irq(vmbus_isr); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 701 | |
Jason Wang | 2608fb6 | 2013-06-19 11:28:10 +0800 | [diff] [blame] | 702 | ret = hv_synic_alloc(); |
| 703 | if (ret) |
| 704 | goto err_alloc; |
K. Y. Srinivasan | 800b690 | 2011-03-15 15:03:33 -0700 | [diff] [blame] | 705 | /* |
K. Y. Srinivasan | 302a3c0 | 2013-02-17 11:30:44 -0800 | [diff] [blame] | 706 | * Initialize the per-cpu interrupt state and |
K. Y. Srinivasan | 800b690 | 2011-03-15 15:03:33 -0700 | [diff] [blame] | 707 | * connect to the host. |
| 708 | */ |
K. Y. Srinivasan | 302a3c0 | 2013-02-17 11:30:44 -0800 | [diff] [blame] | 709 | on_each_cpu(hv_synic_init, NULL, 1); |
K. Y. Srinivasan | 800b690 | 2011-03-15 15:03:33 -0700 | [diff] [blame] | 710 | ret = vmbus_connect(); |
K. Y. Srinivasan | 8b9987e | 2011-08-31 14:35:55 -0700 | [diff] [blame] | 711 | if (ret) |
Jason Wang | 2608fb6 | 2013-06-19 11:28:10 +0800 | [diff] [blame] | 712 | goto err_alloc; |
K. Y. Srinivasan | 800b690 | 2011-03-15 15:03:33 -0700 | [diff] [blame] | 713 | |
Greg Kroah-Hartman | 2d6e882 | 2010-12-02 08:50:58 -0800 | [diff] [blame] | 714 | vmbus_request_offers(); |
Haiyang Zhang | 8b5d6d3 | 2010-05-28 23:22:44 +0000 | [diff] [blame] | 715 | |
K. Y. Srinivasan | d6c1c5d | 2011-06-06 15:50:08 -0700 | [diff] [blame] | 716 | return 0; |
K. Y. Srinivasan | 8b9987e | 2011-08-31 14:35:55 -0700 | [diff] [blame] | 717 | |
Jason Wang | 2608fb6 | 2013-06-19 11:28:10 +0800 | [diff] [blame] | 718 | err_alloc: |
| 719 | hv_synic_free(); |
Thomas Gleixner | 76d388c | 2014-03-05 13:42:14 +0100 | [diff] [blame] | 720 | hv_remove_vmbus_irq(); |
K. Y. Srinivasan | 8b9987e | 2011-08-31 14:35:55 -0700 | [diff] [blame] | 721 | |
K. Y. Srinivasan | 8b9987e | 2011-08-31 14:35:55 -0700 | [diff] [blame] | 722 | bus_unregister(&hv_bus); |
| 723 | |
| 724 | err_cleanup: |
| 725 | hv_cleanup(); |
| 726 | |
| 727 | return ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 728 | } |
| 729 | |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 730 | /** |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 731 | * __vmbus_child_driver_register - Register a vmbus's driver |
| 732 | * @drv: Pointer to driver structure you want to register |
| 733 | * @owner: owner module of the drv |
| 734 | * @mod_name: module name string |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 735 | * |
| 736 | * Registers the given driver with Linux through the 'driver_register()' call |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 737 | * and sets up the hyper-v vmbus handling for this driver. |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 738 | * It will return the state of the 'driver_register()' call. |
| 739 | * |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 740 | */ |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 741 | int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 742 | { |
Bill Pemberton | 5d48a1c | 2009-07-27 16:47:36 -0400 | [diff] [blame] | 743 | int ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 744 | |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 745 | pr_info("registering driver %s\n", hv_driver->name); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 746 | |
K. Y. Srinivasan | cf6a2ea | 2011-12-01 09:59:34 -0800 | [diff] [blame] | 747 | ret = vmbus_exists(); |
| 748 | if (ret < 0) |
| 749 | return ret; |
| 750 | |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 751 | hv_driver->driver.name = hv_driver->name; |
| 752 | hv_driver->driver.owner = owner; |
| 753 | hv_driver->driver.mod_name = mod_name; |
| 754 | hv_driver->driver.bus = &hv_bus; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 755 | |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 756 | ret = driver_register(&hv_driver->driver); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 757 | |
Bill Pemberton | 5d48a1c | 2009-07-27 16:47:36 -0400 | [diff] [blame] | 758 | return ret; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 759 | } |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 760 | EXPORT_SYMBOL_GPL(__vmbus_driver_register); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 761 | |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 762 | /** |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 763 | * vmbus_driver_unregister() - Unregister a vmbus's driver |
| 764 | * @drv: Pointer to driver structure you want to un-register |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 765 | * |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 766 | * Un-register the given driver that was previous registered with a call to |
| 767 | * vmbus_driver_register() |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 768 | */ |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 769 | void vmbus_driver_unregister(struct hv_driver *hv_driver) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 770 | { |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 771 | pr_info("unregistering driver %s\n", hv_driver->name); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 772 | |
K. Y. Srinivasan | cf6a2ea | 2011-12-01 09:59:34 -0800 | [diff] [blame] | 773 | if (!vmbus_exists()) |
K. Y. Srinivasan | 8f257a1 | 2011-12-27 13:49:37 -0800 | [diff] [blame] | 774 | driver_unregister(&hv_driver->driver); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 775 | } |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 776 | EXPORT_SYMBOL_GPL(vmbus_driver_unregister); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 777 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 778 | /* |
K. Y. Srinivasan | f2c7301 | 2011-09-08 07:24:12 -0700 | [diff] [blame] | 779 | * vmbus_device_create - Creates and registers a new child device |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 780 | * on the vmbus. |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 781 | */ |
K. Y. Srinivasan | f2c7301 | 2011-09-08 07:24:12 -0700 | [diff] [blame] | 782 | struct hv_device *vmbus_device_create(uuid_le *type, |
K. Y. Srinivasan | 358d2ee | 2011-08-25 09:48:28 -0700 | [diff] [blame] | 783 | uuid_le *instance, |
Greg Kroah-Hartman | 89733aa | 2010-12-02 08:22:41 -0800 | [diff] [blame] | 784 | struct vmbus_channel *channel) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 785 | { |
Nicolas Palix | 3d3b551 | 2009-07-28 17:32:53 +0200 | [diff] [blame] | 786 | struct hv_device *child_device_obj; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 787 | |
K. Y. Srinivasan | 6bad88d | 2011-03-07 13:35:48 -0800 | [diff] [blame] | 788 | child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL); |
| 789 | if (!child_device_obj) { |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 790 | pr_err("Unable to allocate device object for child device\n"); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 791 | return NULL; |
| 792 | } |
| 793 | |
Greg Kroah-Hartman | cae5b84 | 2010-10-21 09:05:27 -0700 | [diff] [blame] | 794 | child_device_obj->channel = channel; |
K. Y. Srinivasan | 358d2ee | 2011-08-25 09:48:28 -0700 | [diff] [blame] | 795 | memcpy(&child_device_obj->dev_type, type, sizeof(uuid_le)); |
Haiyang Zhang | ca623ad | 2011-01-26 12:12:11 -0800 | [diff] [blame] | 796 | memcpy(&child_device_obj->dev_instance, instance, |
K. Y. Srinivasan | 358d2ee | 2011-08-25 09:48:28 -0700 | [diff] [blame] | 797 | sizeof(uuid_le)); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 798 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 799 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 800 | return child_device_obj; |
| 801 | } |
| 802 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 803 | /* |
K. Y. Srinivasan | 22794281 | 2011-09-08 07:24:13 -0700 | [diff] [blame] | 804 | * vmbus_device_register - Register the child device |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 805 | */ |
K. Y. Srinivasan | 22794281 | 2011-09-08 07:24:13 -0700 | [diff] [blame] | 806 | int vmbus_device_register(struct hv_device *child_device_obj) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 807 | { |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 808 | int ret = 0; |
K. Y. Srinivasan | 6bad88d | 2011-03-07 13:35:48 -0800 | [diff] [blame] | 809 | |
Bill Pemberton | f488841 | 2009-07-29 17:00:12 -0400 | [diff] [blame] | 810 | static atomic_t device_num = ATOMIC_INIT(0); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 811 | |
K. Y. Srinivasan | 6bad88d | 2011-03-07 13:35:48 -0800 | [diff] [blame] | 812 | dev_set_name(&child_device_obj->device, "vmbus_0_%d", |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 813 | atomic_inc_return(&device_num)); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 814 | |
K. Y. Srinivasan | 0bce28b | 2011-08-27 11:31:39 -0700 | [diff] [blame] | 815 | child_device_obj->device.bus = &hv_bus; |
K. Y. Srinivasan | 607c1a1 | 2011-06-06 15:49:39 -0700 | [diff] [blame] | 816 | child_device_obj->device.parent = &hv_acpi_dev->dev; |
K. Y. Srinivasan | 6bad88d | 2011-03-07 13:35:48 -0800 | [diff] [blame] | 817 | child_device_obj->device.release = vmbus_device_release; |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 818 | |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 819 | /* |
| 820 | * Register with the LDM. This will kick off the driver/device |
| 821 | * binding...which will eventually call vmbus_match() and vmbus_probe() |
| 822 | */ |
K. Y. Srinivasan | 6bad88d | 2011-03-07 13:35:48 -0800 | [diff] [blame] | 823 | ret = device_register(&child_device_obj->device); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 824 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 825 | if (ret) |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 826 | pr_err("Unable to register child device\n"); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 827 | else |
Fernando Soto | 8467236 | 2013-06-14 23:13:35 +0000 | [diff] [blame] | 828 | pr_debug("child device %s registered\n", |
Hank Janssen | 0a46618 | 2011-03-29 13:58:47 -0700 | [diff] [blame] | 829 | dev_name(&child_device_obj->device)); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 830 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 831 | return ret; |
| 832 | } |
| 833 | |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 834 | /* |
K. Y. Srinivasan | 696453b | 2011-09-08 07:24:14 -0700 | [diff] [blame] | 835 | * vmbus_device_unregister - Remove the specified child device |
Hank Janssen | 3e18951 | 2010-03-04 22:11:00 +0000 | [diff] [blame] | 836 | * from the vmbus. |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 837 | */ |
K. Y. Srinivasan | 696453b | 2011-09-08 07:24:14 -0700 | [diff] [blame] | 838 | void vmbus_device_unregister(struct hv_device *device_obj) |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 839 | { |
Fernando Soto | 8467236 | 2013-06-14 23:13:35 +0000 | [diff] [blame] | 840 | pr_debug("child device %s unregistered\n", |
| 841 | dev_name(&device_obj->device)); |
| 842 | |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 843 | /* |
| 844 | * Kick off the process of unregistering the device. |
| 845 | * This will call vmbus_remove() and eventually vmbus_device_release() |
| 846 | */ |
K. Y. Srinivasan | 6bad88d | 2011-03-07 13:35:48 -0800 | [diff] [blame] | 847 | device_unregister(&device_obj->device); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 848 | } |
| 849 | |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 850 | |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 851 | /* |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 852 | * VMBUS is an acpi enumerated device. Get the the information we |
| 853 | * need from DSDT. |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 854 | */ |
| 855 | |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 856 | static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx) |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 857 | { |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 858 | switch (res->type) { |
| 859 | case ACPI_RESOURCE_TYPE_IRQ: |
| 860 | irq = res->data.irq.interrupts[0]; |
Gerd Hoffmann | 4eb923f | 2014-02-24 14:17:08 +0100 | [diff] [blame] | 861 | break; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 862 | |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 863 | case ACPI_RESOURCE_TYPE_ADDRESS64: |
Gerd Hoffmann | 90eedf0 | 2014-02-24 14:17:09 +0100 | [diff] [blame] | 864 | hyperv_mmio.start = res->data.address64.minimum; |
| 865 | hyperv_mmio.end = res->data.address64.maximum; |
Gerd Hoffmann | 4eb923f | 2014-02-24 14:17:08 +0100 | [diff] [blame] | 866 | break; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | return AE_OK; |
| 870 | } |
| 871 | |
| 872 | static int vmbus_acpi_add(struct acpi_device *device) |
| 873 | { |
| 874 | acpi_status result; |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 875 | int ret_val = -ENODEV; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 876 | |
K. Y. Srinivasan | 607c1a1 | 2011-06-06 15:49:39 -0700 | [diff] [blame] | 877 | hv_acpi_dev = device; |
| 878 | |
K. Y. Srinivasan | 0a4425b | 2011-08-27 11:31:38 -0700 | [diff] [blame] | 879 | result = acpi_walk_resources(device->handle, METHOD_NAME__CRS, |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 880 | vmbus_walk_resources, NULL); |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 881 | |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 882 | if (ACPI_FAILURE(result)) |
| 883 | goto acpi_walk_err; |
| 884 | /* |
| 885 | * The parent of the vmbus acpi device (Gen2 firmware) is the VMOD that |
| 886 | * has the mmio ranges. Get that. |
| 887 | */ |
| 888 | if (device->parent) { |
| 889 | result = acpi_walk_resources(device->parent->handle, |
| 890 | METHOD_NAME__CRS, |
| 891 | vmbus_walk_resources, NULL); |
| 892 | |
| 893 | if (ACPI_FAILURE(result)) |
| 894 | goto acpi_walk_err; |
Gerd Hoffmann | 90eedf0 | 2014-02-24 14:17:09 +0100 | [diff] [blame] | 895 | if (hyperv_mmio.start && hyperv_mmio.end) |
| 896 | request_resource(&iomem_resource, &hyperv_mmio); |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 897 | } |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 898 | ret_val = 0; |
| 899 | |
| 900 | acpi_walk_err: |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 901 | complete(&probe_event); |
K. Y. Srinivasan | 90f3453 | 2014-01-29 18:14:39 -0800 | [diff] [blame] | 902 | return ret_val; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | static const struct acpi_device_id vmbus_acpi_device_ids[] = { |
| 906 | {"VMBUS", 0}, |
K. Y. Srinivasan | 9d7b18d | 2011-06-06 15:49:42 -0700 | [diff] [blame] | 907 | {"VMBus", 0}, |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 908 | {"", 0}, |
| 909 | }; |
| 910 | MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids); |
| 911 | |
| 912 | static struct acpi_driver vmbus_acpi_driver = { |
| 913 | .name = "vmbus", |
| 914 | .ids = vmbus_acpi_device_ids, |
| 915 | .ops = { |
| 916 | .add = vmbus_acpi_add, |
| 917 | }, |
| 918 | }; |
| 919 | |
K. Y. Srinivasan | 607c1a1 | 2011-06-06 15:49:39 -0700 | [diff] [blame] | 920 | static int __init hv_acpi_init(void) |
K. Y. Srinivasan | 1168ac2 | 2011-03-15 15:03:32 -0700 | [diff] [blame] | 921 | { |
K. Y. Srinivasan | 2dda95f | 2011-07-15 13:38:56 -0700 | [diff] [blame] | 922 | int ret, t; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 923 | |
Jason Wang | 1f94ea8 | 2012-08-31 13:32:44 +0800 | [diff] [blame] | 924 | if (x86_hyper != &x86_hyper_ms_hyperv) |
Jason Wang | 0592969 | 2012-08-17 18:52:43 +0800 | [diff] [blame] | 925 | return -ENODEV; |
| 926 | |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 927 | init_completion(&probe_event); |
| 928 | |
| 929 | /* |
| 930 | * Get irq resources first. |
| 931 | */ |
K. Y. Srinivasan | 0246604 | 2011-06-06 15:49:40 -0700 | [diff] [blame] | 932 | ret = acpi_bus_register_driver(&vmbus_acpi_driver); |
| 933 | |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 934 | if (ret) |
| 935 | return ret; |
| 936 | |
K. Y. Srinivasan | 2dda95f | 2011-07-15 13:38:56 -0700 | [diff] [blame] | 937 | t = wait_for_completion_timeout(&probe_event, 5*HZ); |
| 938 | if (t == 0) { |
| 939 | ret = -ETIMEDOUT; |
| 940 | goto cleanup; |
| 941 | } |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 942 | |
| 943 | if (irq <= 0) { |
K. Y. Srinivasan | 2dda95f | 2011-07-15 13:38:56 -0700 | [diff] [blame] | 944 | ret = -ENODEV; |
| 945 | goto cleanup; |
K. Y. Srinivasan | b0069f4 | 2011-04-29 13:45:15 -0700 | [diff] [blame] | 946 | } |
| 947 | |
K. Y. Srinivasan | 91fd799 | 2011-06-16 13:16:38 -0700 | [diff] [blame] | 948 | ret = vmbus_bus_init(irq); |
| 949 | if (ret) |
K. Y. Srinivasan | 2dda95f | 2011-07-15 13:38:56 -0700 | [diff] [blame] | 950 | goto cleanup; |
| 951 | |
| 952 | return 0; |
| 953 | |
| 954 | cleanup: |
| 955 | acpi_bus_unregister_driver(&vmbus_acpi_driver); |
K. Y. Srinivasan | cf6a2ea | 2011-12-01 09:59:34 -0800 | [diff] [blame] | 956 | hv_acpi_dev = NULL; |
K. Y. Srinivasan | 91fd799 | 2011-06-16 13:16:38 -0700 | [diff] [blame] | 957 | return ret; |
K. Y. Srinivasan | 1168ac2 | 2011-03-15 15:03:32 -0700 | [diff] [blame] | 958 | } |
| 959 | |
K. Y. Srinivasan | 93e5bd0 | 2011-12-12 09:29:17 -0800 | [diff] [blame] | 960 | static void __exit vmbus_exit(void) |
| 961 | { |
Thomas Gleixner | 76d388c | 2014-03-05 13:42:14 +0100 | [diff] [blame] | 962 | hv_remove_vmbus_irq(); |
K. Y. Srinivasan | 93e5bd0 | 2011-12-12 09:29:17 -0800 | [diff] [blame] | 963 | vmbus_free_channels(); |
| 964 | bus_unregister(&hv_bus); |
| 965 | hv_cleanup(); |
| 966 | acpi_bus_unregister_driver(&vmbus_acpi_driver); |
| 967 | } |
| 968 | |
K. Y. Srinivasan | 1168ac2 | 2011-03-15 15:03:32 -0700 | [diff] [blame] | 969 | |
Greg Kroah-Hartman | 90c9960 | 2009-09-02 07:11:14 -0700 | [diff] [blame] | 970 | MODULE_LICENSE("GPL"); |
Hank Janssen | 3e7ee49 | 2009-07-13 16:02:34 -0700 | [diff] [blame] | 971 | |
K. Y. Srinivasan | 43d4e11 | 2011-10-24 11:28:12 -0700 | [diff] [blame] | 972 | subsys_initcall(hv_acpi_init); |
K. Y. Srinivasan | 93e5bd0 | 2011-12-12 09:29:17 -0800 | [diff] [blame] | 973 | module_exit(vmbus_exit); |