3 * Copyright (c) 2009, Microsoft Corporation.
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.
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
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.
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include <linux/kernel.h>
26 #include <linux/sched.h>
27 #include <linux/wait.h>
28 #include <linux/delay.h>
30 #include <linux/slab.h>
31 #include <linux/vmalloc.h>
32 #include <linux/hyperv.h>
33 #include <linux/export.h>
34 #include <asm/hyperv.h>
35 #include "hyperv_vmbus.h"
38 struct vmbus_connection vmbus_connection
= {
39 .conn_state
= DISCONNECTED
,
40 .next_gpadl_handle
= ATOMIC_INIT(0xE1E10),
42 EXPORT_SYMBOL_GPL(vmbus_connection
);
45 * Negotiated protocol version with the host.
47 __u32 vmbus_proto_version
;
48 EXPORT_SYMBOL_GPL(vmbus_proto_version
);
50 static __u32
vmbus_get_next_version(__u32 current_version
)
52 switch (current_version
) {
54 return VERSION_WS2008
;
59 case (VERSION_WIN8_1
):
63 return VERSION_WIN8_1
;
65 case (VERSION_WS2008
):
71 static int vmbus_negotiate_version(struct vmbus_channel_msginfo
*msginfo
,
75 struct vmbus_channel_initiate_contact
*msg
;
78 init_completion(&msginfo
->waitevent
);
80 msg
= (struct vmbus_channel_initiate_contact
*)msginfo
->msg
;
82 msg
->header
.msgtype
= CHANNELMSG_INITIATE_CONTACT
;
83 msg
->vmbus_version_requested
= version
;
84 msg
->interrupt_page
= virt_to_phys(vmbus_connection
.int_page
);
85 msg
->monitor_page1
= virt_to_phys(vmbus_connection
.monitor_pages
[0]);
86 msg
->monitor_page2
= virt_to_phys(vmbus_connection
.monitor_pages
[1]);
88 * We want all channel messages to be delivered on CPU 0.
89 * This has been the behavior pre-win8. This is not
90 * perf issue and having all channel messages delivered on CPU 0
92 * For post win8 hosts, we support receiving channel messagges on
93 * all the CPUs. This is needed for kexec to work correctly where
94 * the CPU attempting to connect may not be CPU 0.
96 if (version
>= VERSION_WIN8_1
) {
97 msg
->target_vcpu
= hv_context
.vp_index
[get_cpu()];
100 msg
->target_vcpu
= 0;
104 * Add to list before we send the request since we may
105 * receive the response before returning from this routine
107 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
108 list_add_tail(&msginfo
->msglistentry
,
109 &vmbus_connection
.chn_msg_list
);
111 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
113 ret
= vmbus_post_msg(msg
,
114 sizeof(struct vmbus_channel_initiate_contact
));
116 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
117 list_del(&msginfo
->msglistentry
);
118 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
,
123 /* Wait for the connection response */
124 wait_for_completion(&msginfo
->waitevent
);
126 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
127 list_del(&msginfo
->msglistentry
);
128 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
130 /* Check if successful */
131 if (msginfo
->response
.version_response
.version_supported
) {
132 vmbus_connection
.conn_state
= CONNECTED
;
134 return -ECONNREFUSED
;
141 * vmbus_connect - Sends a connect request on the partition service connection
143 int vmbus_connect(void)
146 struct vmbus_channel_msginfo
*msginfo
= NULL
;
149 /* Initialize the vmbus connection */
150 vmbus_connection
.conn_state
= CONNECTING
;
151 vmbus_connection
.work_queue
= create_workqueue("hv_vmbus_con");
152 if (!vmbus_connection
.work_queue
) {
157 INIT_LIST_HEAD(&vmbus_connection
.chn_msg_list
);
158 spin_lock_init(&vmbus_connection
.channelmsg_lock
);
160 INIT_LIST_HEAD(&vmbus_connection
.chn_list
);
161 mutex_init(&vmbus_connection
.channel_mutex
);
164 * Setup the vmbus event connection for channel interrupt
167 vmbus_connection
.int_page
=
168 (void *)__get_free_pages(GFP_KERNEL
|__GFP_ZERO
, 0);
169 if (vmbus_connection
.int_page
== NULL
) {
174 vmbus_connection
.recv_int_page
= vmbus_connection
.int_page
;
175 vmbus_connection
.send_int_page
=
176 (void *)((unsigned long)vmbus_connection
.int_page
+
180 * Setup the monitor notification facility. The 1st page for
181 * parent->child and the 2nd page for child->parent
183 vmbus_connection
.monitor_pages
[0] = (void *)__get_free_pages((GFP_KERNEL
|__GFP_ZERO
), 0);
184 vmbus_connection
.monitor_pages
[1] = (void *)__get_free_pages((GFP_KERNEL
|__GFP_ZERO
), 0);
185 if ((vmbus_connection
.monitor_pages
[0] == NULL
) ||
186 (vmbus_connection
.monitor_pages
[1] == NULL
)) {
191 msginfo
= kzalloc(sizeof(*msginfo
) +
192 sizeof(struct vmbus_channel_initiate_contact
),
194 if (msginfo
== NULL
) {
200 * Negotiate a compatible VMBUS version number with the
201 * host. We start with the highest number we can support
202 * and work our way down until we negotiate a compatible
206 version
= VERSION_CURRENT
;
209 ret
= vmbus_negotiate_version(msginfo
, version
);
210 if (ret
== -ETIMEDOUT
)
213 if (vmbus_connection
.conn_state
== CONNECTED
)
216 version
= vmbus_get_next_version(version
);
217 } while (version
!= VERSION_INVAL
);
219 if (version
== VERSION_INVAL
)
222 vmbus_proto_version
= version
;
223 pr_info("Hyper-V Host Build:%d-%d.%d-%d-%d.%d; Vmbus version:%d.%d\n",
224 host_info_eax
, host_info_ebx
>> 16,
225 host_info_ebx
& 0xFFFF, host_info_ecx
,
226 host_info_edx
>> 24, host_info_edx
& 0xFFFFFF,
227 version
>> 16, version
& 0xFFFF);
233 pr_err("Unable to connect to host\n");
235 vmbus_connection
.conn_state
= DISCONNECTED
;
243 void vmbus_disconnect(void)
246 * First send the unload request to the host.
248 vmbus_initiate_unload(false);
250 if (vmbus_connection
.work_queue
) {
251 drain_workqueue(vmbus_connection
.work_queue
);
252 destroy_workqueue(vmbus_connection
.work_queue
);
255 if (vmbus_connection
.int_page
) {
256 free_pages((unsigned long)vmbus_connection
.int_page
, 0);
257 vmbus_connection
.int_page
= NULL
;
260 free_pages((unsigned long)vmbus_connection
.monitor_pages
[0], 0);
261 free_pages((unsigned long)vmbus_connection
.monitor_pages
[1], 0);
262 vmbus_connection
.monitor_pages
[0] = NULL
;
263 vmbus_connection
.monitor_pages
[1] = NULL
;
267 * Map the given relid to the corresponding channel based on the
268 * per-cpu list of channels that have been affinitized to this CPU.
269 * This will be used in the channel callback path as we can do this
270 * mapping in a lock-free fashion.
272 static struct vmbus_channel
*pcpu_relid2channel(u32 relid
)
274 struct vmbus_channel
*channel
;
275 struct vmbus_channel
*found_channel
= NULL
;
276 int cpu
= smp_processor_id();
277 struct list_head
*pcpu_head
= &hv_context
.percpu_list
[cpu
];
279 list_for_each_entry(channel
, pcpu_head
, percpu_list
) {
280 if (channel
->offermsg
.child_relid
== relid
) {
281 found_channel
= channel
;
286 return found_channel
;
290 * relid2channel - Get the channel object given its
291 * child relative id (ie channel id)
293 struct vmbus_channel
*relid2channel(u32 relid
)
295 struct vmbus_channel
*channel
;
296 struct vmbus_channel
*found_channel
= NULL
;
297 struct list_head
*cur
, *tmp
;
298 struct vmbus_channel
*cur_sc
;
300 BUG_ON(!mutex_is_locked(&vmbus_connection
.channel_mutex
));
302 list_for_each_entry(channel
, &vmbus_connection
.chn_list
, listentry
) {
303 if (channel
->offermsg
.child_relid
== relid
) {
304 found_channel
= channel
;
306 } else if (!list_empty(&channel
->sc_list
)) {
308 * Deal with sub-channels.
310 list_for_each_safe(cur
, tmp
, &channel
->sc_list
) {
311 cur_sc
= list_entry(cur
, struct vmbus_channel
,
313 if (cur_sc
->offermsg
.child_relid
== relid
) {
314 found_channel
= cur_sc
;
321 return found_channel
;
325 * process_chn_event - Process a channel event notification
327 static void process_chn_event(u32 relid
)
329 struct vmbus_channel
*channel
;
335 * Find the channel based on this relid and invokes the
336 * channel callback to process the event
338 channel
= pcpu_relid2channel(relid
);
344 * A channel once created is persistent even when there
345 * is no driver handling the device. An unloading driver
346 * sets the onchannel_callback to NULL on the same CPU
347 * as where this interrupt is handled (in an interrupt context).
348 * Thus, checking and invoking the driver specific callback takes
349 * care of orderly unloading of the driver.
352 if (channel
->onchannel_callback
!= NULL
) {
353 arg
= channel
->channel_callback_context
;
354 read_state
= channel
->batched_reading
;
356 * This callback reads the messages sent by the host.
357 * We can optimize host to guest signaling by ensuring:
358 * 1. While reading the channel, we disable interrupts from
360 * 2. Ensure that we process all posted messages from the host
361 * before returning from this callback.
362 * 3. Once we return, enable signaling from the host. Once this
363 * state is set we check to see if additional packets are
364 * available to read. In this case we repeat the process.
369 hv_begin_read(&channel
->inbound
);
370 channel
->onchannel_callback(arg
);
372 bytes_to_read
= hv_end_read(&channel
->inbound
);
375 } while (read_state
&& (bytes_to_read
!= 0));
380 * vmbus_on_event - Handler for events
382 void vmbus_on_event(unsigned long data
)
388 u32
*recv_int_page
= NULL
;
390 int cpu
= smp_processor_id();
391 union hv_synic_event_flags
*event
;
393 if (vmbus_proto_version
< VERSION_WIN8
) {
394 maxdword
= MAX_NUM_CHANNELS_SUPPORTED
>> 5;
395 recv_int_page
= vmbus_connection
.recv_int_page
;
398 * When the host is win8 and beyond, the event page
399 * can be directly checked to get the id of the channel
400 * that has the interrupt pending.
402 maxdword
= HV_EVENT_FLAGS_DWORD_COUNT
;
403 page_addr
= hv_context
.synic_event_page
[cpu
];
404 event
= (union hv_synic_event_flags
*)page_addr
+
406 recv_int_page
= event
->flags32
;
414 for (dword
= 0; dword
< maxdword
; dword
++) {
415 if (!recv_int_page
[dword
])
417 for (bit
= 0; bit
< 32; bit
++) {
418 if (sync_test_and_clear_bit(bit
,
419 (unsigned long *)&recv_int_page
[dword
])) {
420 relid
= (dword
<< 5) + bit
;
424 * Special case - vmbus
425 * channel protocol msg
429 process_chn_event(relid
);
436 * vmbus_post_msg - Send a msg on the vmbus's message connection
438 int vmbus_post_msg(void *buffer
, size_t buflen
)
440 union hv_connection_id conn_id
;
446 conn_id
.u
.id
= VMBUS_MESSAGE_CONNECTION_ID
;
449 * hv_post_message() can have transient failures because of
450 * insufficient resources. Retry the operation a couple of
451 * times before giving up.
453 while (retries
< 20) {
454 ret
= hv_post_message(conn_id
, 1, buffer
, buflen
);
457 case HV_STATUS_INVALID_CONNECTION_ID
:
459 * We could get this if we send messages too
464 case HV_STATUS_INSUFFICIENT_MEMORY
:
465 case HV_STATUS_INSUFFICIENT_BUFFERS
:
468 case HV_STATUS_SUCCESS
:
471 pr_err("hv_post_msg() failed; error code:%d\n", ret
);
484 * vmbus_set_event - Send an event notification to the parent
486 void vmbus_set_event(struct vmbus_channel
*channel
)
488 u32 child_relid
= channel
->offermsg
.child_relid
;
490 if (!channel
->is_dedicated_interrupt
) {
491 /* Each u32 represents 32 channels */
492 sync_set_bit(child_relid
& 31,
493 (unsigned long *)vmbus_connection
.send_int_page
+
497 hv_do_hypercall(HVCALL_SIGNAL_EVENT
, channel
->sig_event
, NULL
);
499 EXPORT_SYMBOL_GPL(vmbus_set_event
);