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