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