blob: 4fc2e8836e60d282d36e6fbf6d9b563aab274b8f [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
21 *
22 */
Hank Janssen0a466182011-03-29 13:58:47 -070023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070025#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080026#include <linux/sched.h>
27#include <linux/wait.h>
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -070028#include <linux/delay.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070029#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070031#include <linux/vmalloc.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070032#include <linux/hyperv.h>
K. Y. Srinivasan37f72782012-12-01 06:46:41 -080033#include <linux/export.h>
Greg Kroah-Hartman407dd162011-10-11 08:36:44 -060034#include <asm/hyperv.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070035#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070036
Hank Janssen3e7ee492009-07-13 16:02:34 -070037
Haiyang Zhangda9fcb72011-01-26 12:12:14 -080038struct vmbus_connection vmbus_connection = {
39 .conn_state = DISCONNECTED,
40 .next_gpadl_handle = ATOMIC_INIT(0xE1E10),
Hank Janssen3e7ee492009-07-13 16:02:34 -070041};
42
Hank Janssen3e189512010-03-04 22:11:00 +000043/*
K. Y. Srinivasan37f72782012-12-01 06:46:41 -080044 * Negotiated protocol version with the host.
45 */
46__u32 vmbus_proto_version;
47EXPORT_SYMBOL_GPL(vmbus_proto_version);
48
K. Y. Srinivasan610071c2012-12-01 06:46:38 -080049static __u32 vmbus_get_next_version(__u32 current_version)
50{
51 switch (current_version) {
52 case (VERSION_WIN7):
53 return VERSION_WS2008;
54
55 case (VERSION_WIN8):
56 return VERSION_WIN7;
57
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -070058 case (VERSION_WIN8_1):
59 return VERSION_WIN8;
60
Keith Mange6c4e5f92015-05-26 14:23:01 -070061 case (VERSION_WIN10):
62 return VERSION_WIN8_1;
63
K. Y. Srinivasan610071c2012-12-01 06:46:38 -080064 case (VERSION_WS2008):
65 default:
66 return VERSION_INVAL;
67 }
68}
69
70static int vmbus_negotiate_version(struct vmbus_channel_msginfo *msginfo,
71 __u32 version)
72{
73 int ret = 0;
74 struct vmbus_channel_initiate_contact *msg;
75 unsigned long flags;
K. Y. Srinivasan610071c2012-12-01 06:46:38 -080076
77 init_completion(&msginfo->waitevent);
78
79 msg = (struct vmbus_channel_initiate_contact *)msginfo->msg;
80
81 msg->header.msgtype = CHANNELMSG_INITIATE_CONTACT;
82 msg->vmbus_version_requested = version;
83 msg->interrupt_page = virt_to_phys(vmbus_connection.int_page);
Greg Kroah-Hartman8681db42013-09-13 11:32:55 -070084 msg->monitor_page1 = virt_to_phys(vmbus_connection.monitor_pages[0]);
85 msg->monitor_page2 = virt_to_phys(vmbus_connection.monitor_pages[1]);
Keith Mange6c4e5f92015-05-26 14:23:01 -070086 if (version >= VERSION_WIN8_1) {
K. Y. Srinivasan87712bf82014-12-14 23:34:51 -080087 msg->target_vcpu = hv_context.vp_index[get_cpu()];
88 put_cpu();
89 }
K. Y. Srinivasan610071c2012-12-01 06:46:38 -080090
91 /*
92 * Add to list before we send the request since we may
93 * receive the response before returning from this routine
94 */
95 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
96 list_add_tail(&msginfo->msglistentry,
97 &vmbus_connection.chn_msg_list);
98
99 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
100
101 ret = vmbus_post_msg(msg,
102 sizeof(struct vmbus_channel_initiate_contact));
103 if (ret != 0) {
104 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
105 list_del(&msginfo->msglistentry);
106 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock,
107 flags);
108 return ret;
109 }
110
111 /* Wait for the connection response */
K. Y. Srinivasan269f9792014-01-16 11:59:58 -0800112 wait_for_completion(&msginfo->waitevent);
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800113
114 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
115 list_del(&msginfo->msglistentry);
116 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
117
118 /* Check if successful */
119 if (msginfo->response.version_response.version_supported) {
120 vmbus_connection.conn_state = CONNECTED;
121 } else {
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800122 return -ECONNREFUSED;
123 }
124
125 return ret;
126}
127
128/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800129 * vmbus_connect - Sends a connect request on the partition service connection
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700130 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800131int vmbus_connect(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700132{
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700133 int ret = 0;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800134 struct vmbus_channel_msginfo *msginfo = NULL;
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800135 __u32 version;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700136
Bill Pemberton454f18a2009-07-27 16:47:24 -0400137 /* Initialize the vmbus connection */
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800138 vmbus_connection.conn_state = CONNECTING;
139 vmbus_connection.work_queue = create_workqueue("hv_vmbus_con");
140 if (!vmbus_connection.work_queue) {
K. Y. Srinivasan3a7546d2011-06-06 15:50:10 -0700141 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700142 goto cleanup;
Bill Pembertonde65a382009-07-29 17:00:09 -0400143 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700144
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800145 INIT_LIST_HEAD(&vmbus_connection.chn_msg_list);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800146 spin_lock_init(&vmbus_connection.channelmsg_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700147
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800148 INIT_LIST_HEAD(&vmbus_connection.chn_list);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800149 spin_lock_init(&vmbus_connection.channel_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700150
Bill Pemberton454f18a2009-07-27 16:47:24 -0400151 /*
152 * Setup the vmbus event connection for channel interrupt
153 * abstraction stuff
154 */
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800155 vmbus_connection.int_page =
156 (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, 0);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800157 if (vmbus_connection.int_page == NULL) {
K. Y. Srinivasan3a7546d2011-06-06 15:50:10 -0700158 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700159 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700160 }
161
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800162 vmbus_connection.recv_int_page = vmbus_connection.int_page;
163 vmbus_connection.send_int_page =
164 (void *)((unsigned long)vmbus_connection.int_page +
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700165 (PAGE_SIZE >> 1));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700166
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700167 /*
168 * Setup the monitor notification facility. The 1st page for
169 * parent->child and the 2nd page for child->parent
Bill Pemberton454f18a2009-07-27 16:47:24 -0400170 */
Greg Kroah-Hartman8681db42013-09-13 11:32:55 -0700171 vmbus_connection.monitor_pages[0] = (void *)__get_free_pages((GFP_KERNEL|__GFP_ZERO), 0);
172 vmbus_connection.monitor_pages[1] = (void *)__get_free_pages((GFP_KERNEL|__GFP_ZERO), 0);
173 if ((vmbus_connection.monitor_pages[0] == NULL) ||
174 (vmbus_connection.monitor_pages[1] == NULL)) {
K. Y. Srinivasan3a7546d2011-06-06 15:50:10 -0700175 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700176 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700177 }
178
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800179 msginfo = kzalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700180 sizeof(struct vmbus_channel_initiate_contact),
181 GFP_KERNEL);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800182 if (msginfo == NULL) {
Bill Pemberton8cad0af2010-05-05 15:27:32 -0400183 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700184 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700185 }
186
Bill Pemberton454f18a2009-07-27 16:47:24 -0400187 /*
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800188 * Negotiate a compatible VMBUS version number with the
189 * host. We start with the highest number we can support
190 * and work our way down until we negotiate a compatible
191 * version.
Bill Pemberton454f18a2009-07-27 16:47:24 -0400192 */
Bill Pemberton53af5452009-09-11 21:46:44 -0400193
K. Y. Srinivasan2a5c43a2012-12-01 06:46:56 -0800194 version = VERSION_CURRENT;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700195
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800196 do {
197 ret = vmbus_negotiate_version(msginfo, version);
K. Y. Srinivasan8bbf9f42013-09-04 15:41:58 -0700198 if (ret == -ETIMEDOUT)
K. Y. Srinivasan666b9ad2013-08-28 14:56:54 -0700199 goto cleanup;
200
201 if (vmbus_connection.conn_state == CONNECTED)
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800202 break;
203
204 version = vmbus_get_next_version(version);
205 } while (version != VERSION_INVAL);
206
207 if (version == VERSION_INVAL)
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700208 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700209
K. Y. Srinivasan37f72782012-12-01 06:46:41 -0800210 vmbus_proto_version = version;
K. Y. Srinivasan3bacaf0c2012-12-01 06:46:59 -0800211 pr_info("Hyper-V Host Build:%d-%d.%d-%d-%d.%d; Vmbus version:%d.%d\n",
212 host_info_eax, host_info_ebx >> 16,
213 host_info_ebx & 0xFFFF, host_info_ecx,
214 host_info_edx >> 24, host_info_edx & 0xFFFFFF,
215 version >> 16, version & 0xFFFF);
216
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800217 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700218 return 0;
219
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700220cleanup:
K. Y. Srinivasan3bacaf0c2012-12-01 06:46:59 -0800221 pr_err("Unable to connect to host\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700222
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -0800223 vmbus_connection.conn_state = DISCONNECTED;
224 vmbus_disconnect();
225
226 kfree(msginfo);
227
228 return ret;
229}
230
231void vmbus_disconnect(void)
232{
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -0700233 /*
234 * First send the unload request to the host.
235 */
236 vmbus_initiate_unload();
237
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -0800238 if (vmbus_connection.work_queue) {
239 drain_workqueue(vmbus_connection.work_queue);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800240 destroy_workqueue(vmbus_connection.work_queue);
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -0800241 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700242
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800243 if (vmbus_connection.int_page) {
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800244 free_pages((unsigned long)vmbus_connection.int_page, 0);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800245 vmbus_connection.int_page = NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700246 }
247
Radim Krčmářa100d88d2014-05-27 19:16:20 +0200248 free_pages((unsigned long)vmbus_connection.monitor_pages[0], 0);
249 free_pages((unsigned long)vmbus_connection.monitor_pages[1], 0);
Greg Kroah-Hartman8681db42013-09-13 11:32:55 -0700250 vmbus_connection.monitor_pages[0] = NULL;
251 vmbus_connection.monitor_pages[1] = NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700252}
253
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700254/*
255 * Map the given relid to the corresponding channel based on the
256 * per-cpu list of channels that have been affinitized to this CPU.
257 * This will be used in the channel callback path as we can do this
258 * mapping in a lock-free fashion.
259 */
260static struct vmbus_channel *pcpu_relid2channel(u32 relid)
261{
262 struct vmbus_channel *channel;
263 struct vmbus_channel *found_channel = NULL;
264 int cpu = smp_processor_id();
265 struct list_head *pcpu_head = &hv_context.percpu_list[cpu];
266
267 list_for_each_entry(channel, pcpu_head, percpu_list) {
268 if (channel->offermsg.child_relid == relid) {
269 found_channel = channel;
270 break;
271 }
272 }
273
274 return found_channel;
275}
Hank Janssen3e7ee492009-07-13 16:02:34 -0700276
Hank Janssen3e189512010-03-04 22:11:00 +0000277/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800278 * relid2channel - Get the channel object given its
279 * child relative id (ie channel id)
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700280 */
Dexuan Cuid43e2fe2015-03-27 09:10:09 -0700281struct vmbus_channel *relid2channel(u32 relid)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700282{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700283 struct vmbus_channel *channel;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800284 struct vmbus_channel *found_channel = NULL;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700285 unsigned long flags;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700286 struct list_head *cur, *tmp;
287 struct vmbus_channel *cur_sc;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700288
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800289 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800290 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800291 if (channel->offermsg.child_relid == relid) {
292 found_channel = channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700293 break;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700294 } else if (!list_empty(&channel->sc_list)) {
295 /*
296 * Deal with sub-channels.
297 */
298 list_for_each_safe(cur, tmp, &channel->sc_list) {
299 cur_sc = list_entry(cur, struct vmbus_channel,
300 sc_list);
301 if (cur_sc->offermsg.child_relid == relid) {
302 found_channel = cur_sc;
303 break;
304 }
305 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700306 }
307 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800308 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700309
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800310 return found_channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700311}
312
Hank Janssen3e189512010-03-04 22:11:00 +0000313/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800314 * process_chn_event - Process a channel event notification
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700315 */
Olaf Hering35436482011-04-16 18:50:40 +0200316static void process_chn_event(u32 relid)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700317{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700318 struct vmbus_channel *channel;
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800319 void *arg;
320 bool read_state;
321 u32 bytes_to_read;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700322
Bill Pemberton454f18a2009-07-27 16:47:24 -0400323 /*
324 * Find the channel based on this relid and invokes the
325 * channel callback to process the event
326 */
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700327 channel = pcpu_relid2channel(relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700328
K. Y. Srinivasan37f492c2015-02-28 11:18:21 -0800329 if (!channel)
K. Y. Srinivasan24326032011-08-31 14:35:57 -0700330 return;
K. Y. Srinivasan24326032011-08-31 14:35:57 -0700331
332 /*
333 * A channel once created is persistent even when there
334 * is no driver handling the device. An unloading driver
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700335 * sets the onchannel_callback to NULL on the same CPU
336 * as where this interrupt is handled (in an interrupt context).
337 * Thus, checking and invoking the driver specific callback takes
338 * care of orderly unloading of the driver.
K. Y. Srinivasan24326032011-08-31 14:35:57 -0700339 */
340
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800341 if (channel->onchannel_callback != NULL) {
342 arg = channel->channel_callback_context;
343 read_state = channel->batched_reading;
344 /*
345 * This callback reads the messages sent by the host.
346 * We can optimize host to guest signaling by ensuring:
347 * 1. While reading the channel, we disable interrupts from
348 * host.
349 * 2. Ensure that we process all posted messages from the host
350 * before returning from this callback.
351 * 3. Once we return, enable signaling from the host. Once this
352 * state is set we check to see if additional packets are
353 * available to read. In this case we repeat the process.
354 */
355
356 do {
K. Y. Srinivasanaffb1af2014-07-07 16:34:24 -0700357 if (read_state)
358 hv_begin_read(&channel->inbound);
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800359 channel->onchannel_callback(arg);
K. Y. Srinivasanaffb1af2014-07-07 16:34:24 -0700360 if (read_state)
361 bytes_to_read = hv_end_read(&channel->inbound);
362 else
363 bytes_to_read = 0;
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800364 } while (read_state && (bytes_to_read != 0));
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800365 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700366}
367
Hank Janssen3e189512010-03-04 22:11:00 +0000368/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800369 * vmbus_on_event - Handler for events
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700370 */
K. Y. Srinivasan6de3d6a2011-03-10 14:05:16 -0800371void vmbus_on_event(unsigned long data)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700372{
Olaf Hering35436482011-04-16 18:50:40 +0200373 u32 dword;
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800374 u32 maxdword;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700375 int bit;
Olaf Hering35436482011-04-16 18:50:40 +0200376 u32 relid;
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800377 u32 *recv_int_page = NULL;
378 void *page_addr;
379 int cpu = smp_processor_id();
380 union hv_synic_event_flags *event;
381
Keith Mange6c4e5f92015-05-26 14:23:01 -0700382 if (vmbus_proto_version < VERSION_WIN8) {
K. Y. Srinivasan6552ecd2012-12-01 06:46:49 -0800383 maxdword = MAX_NUM_CHANNELS_SUPPORTED >> 5;
384 recv_int_page = vmbus_connection.recv_int_page;
385 } else {
386 /*
387 * When the host is win8 and beyond, the event page
388 * can be directly checked to get the id of the channel
389 * that has the interrupt pending.
390 */
391 maxdword = HV_EVENT_FLAGS_DWORD_COUNT;
392 page_addr = hv_context.synic_event_page[cpu];
393 event = (union hv_synic_event_flags *)page_addr +
394 VMBUS_MESSAGE_SINT;
395 recv_int_page = event->flags32;
396 }
397
398
Hank Janssen3e7ee492009-07-13 16:02:34 -0700399
Bill Pemberton454f18a2009-07-27 16:47:24 -0400400 /* Check events */
Olaf Hering242b45a2011-04-16 18:50:39 +0200401 if (!recv_int_page)
402 return;
403 for (dword = 0; dword < maxdword; dword++) {
404 if (!recv_int_page[dword])
405 continue;
406 for (bit = 0; bit < 32; bit++) {
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700407 if (sync_test_and_clear_bit(bit,
408 (unsigned long *)&recv_int_page[dword])) {
Olaf Hering242b45a2011-04-16 18:50:39 +0200409 relid = (dword << 5) + bit;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700410
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700411 if (relid == 0)
K. Y. Srinivasan6d81d332011-05-10 07:55:45 -0700412 /*
413 * Special case - vmbus
414 * channel protocol msg
415 */
Olaf Hering242b45a2011-04-16 18:50:39 +0200416 continue;
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700417
Olaf Hering35436482011-04-16 18:50:40 +0200418 process_chn_event(relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700419 }
Olaf Hering242b45a2011-04-16 18:50:39 +0200420 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700421 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700422}
423
Hank Janssen3e189512010-03-04 22:11:00 +0000424/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800425 * vmbus_post_msg - Send a msg on the vmbus's message connection
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700426 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800427int vmbus_post_msg(void *buffer, size_t buflen)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700428{
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800429 union hv_connection_id conn_id;
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700430 int ret = 0;
431 int retries = 0;
Haiyang Zhange1c0d822015-03-27 09:10:14 -0700432 u32 msec = 1;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700433
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800434 conn_id.asu32 = 0;
435 conn_id.u.id = VMBUS_MESSAGE_CONNECTION_ID;
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700436
437 /*
438 * hv_post_message() can have transient failures because of
439 * insufficient resources. Retry the operation a couple of
440 * times before giving up.
441 */
Haiyang Zhange1c0d822015-03-27 09:10:14 -0700442 while (retries < 20) {
K. Y. Srinivasanfdeebcc2014-08-27 16:25:31 -0700443 ret = hv_post_message(conn_id, 1, buffer, buflen);
444
445 switch (ret) {
Dexuan Cui89f9f672015-02-27 11:25:59 -0800446 case HV_STATUS_INVALID_CONNECTION_ID:
447 /*
448 * We could get this if we send messages too
449 * frequently.
450 */
451 ret = -EAGAIN;
452 break;
453 case HV_STATUS_INSUFFICIENT_MEMORY:
K. Y. Srinivasanfdeebcc2014-08-27 16:25:31 -0700454 case HV_STATUS_INSUFFICIENT_BUFFERS:
455 ret = -ENOMEM;
K. Y. Srinivasanfdeebcc2014-08-27 16:25:31 -0700456 break;
457 case HV_STATUS_SUCCESS:
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700458 return ret;
K. Y. Srinivasanfdeebcc2014-08-27 16:25:31 -0700459 default:
460 pr_err("hv_post_msg() failed; error code:%d\n", ret);
461 return -EINVAL;
462 }
463
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700464 retries++;
Haiyang Zhange1c0d822015-03-27 09:10:14 -0700465 msleep(msec);
466 if (msec < 2048)
467 msec *= 2;
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700468 }
469 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700470}
471
Hank Janssen3e189512010-03-04 22:11:00 +0000472/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800473 * vmbus_set_event - Send an event notification to the parent
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700474 */
K. Y. Srinivasan21c3bef2012-12-01 06:46:43 -0800475int vmbus_set_event(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700476{
K. Y. Srinivasan21c3bef2012-12-01 06:46:43 -0800477 u32 child_relid = channel->offermsg.child_relid;
Bill Pemberton7c369f42009-07-29 17:00:11 -0400478
K. Y. Srinivasan3be77772012-12-01 06:46:46 -0800479 if (!channel->is_dedicated_interrupt) {
480 /* Each u32 represents 32 channels */
481 sync_set_bit(child_relid & 31,
482 (unsigned long *)vmbus_connection.send_int_page +
483 (child_relid >> 5));
484 }
485
486 return hv_signal_event(channel->sig_event);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700487}