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