blob: e29ccddc6300ec571bcb96f6ee669593568860e9 [file] [log] [blame]
K. Y. Srinivasan5c473402011-05-12 19:34:14 -07001/*
2 *
3 * Copyright (c) 2011, 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 * K. Y. Srinivasan <kys@microsoft.com>
22 *
23 */
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070024
25#ifndef _HYPERV_H
26#define _HYPERV_H
27
Bjarke Istrup Pedersen5267cf02014-01-22 09:16:58 +000028#include <uapi/linux/hyperv.h>
29
K. Y. Srinivasan29394372012-01-27 15:55:58 -080030#include <linux/types.h>
K. Y. Srinivasan8ff3e6f2011-05-12 19:34:27 -070031#include <linux/scatterlist.h>
32#include <linux/list.h>
33#include <linux/timer.h>
34#include <linux/workqueue.h>
35#include <linux/completion.h>
36#include <linux/device.h>
K. Y. Srinivasan2e2c1d12011-08-25 09:48:31 -070037#include <linux/mod_devicetable.h>
K. Y. Srinivasan8ff3e6f2011-05-12 19:34:27 -070038
39
K. Y. Srinivasan7e5ec362014-03-07 00:10:34 -080040#define MAX_PAGE_BUFFER_COUNT 32
K. Y. Srinivasana363bf72011-05-12 19:34:16 -070041#define MAX_MULTIPAGE_BUFFER_COUNT 32 /* 128K */
42
43#pragma pack(push, 1)
44
45/* Single-page buffer */
46struct hv_page_buffer {
47 u32 len;
48 u32 offset;
49 u64 pfn;
50};
51
52/* Multiple-page buffer */
53struct hv_multipage_buffer {
54 /* Length and Offset determines the # of pfns in the array */
55 u32 len;
56 u32 offset;
57 u64 pfn_array[MAX_MULTIPAGE_BUFFER_COUNT];
58};
59
K. Y. Srinivasand61031e2015-01-09 23:54:34 -080060/*
61 * Multiple-page buffer array; the pfn array is variable size:
62 * The number of entries in the PFN array is determined by
63 * "len" and "offset".
64 */
65struct hv_mpb_array {
66 /* Length and Offset determines the # of pfns in the array */
67 u32 len;
68 u32 offset;
69 u64 pfn_array[];
70};
71
K. Y. Srinivasana363bf72011-05-12 19:34:16 -070072/* 0x18 includes the proprietary packet header */
73#define MAX_PAGE_BUFFER_PACKET (0x18 + \
74 (sizeof(struct hv_page_buffer) * \
75 MAX_PAGE_BUFFER_COUNT))
76#define MAX_MULTIPAGE_BUFFER_PACKET (0x18 + \
77 sizeof(struct hv_multipage_buffer))
78
79
80#pragma pack(pop)
81
K. Y. Srinivasan7effffb2011-05-12 19:34:17 -070082struct hv_ring_buffer {
83 /* Offset in bytes from the start of ring data below */
84 u32 write_index;
85
86 /* Offset in bytes from the start of ring data below */
87 u32 read_index;
88
89 u32 interrupt_mask;
90
K. Y. Srinivasan24166032012-12-01 06:46:39 -080091 /*
92 * Win8 uses some of the reserved bits to implement
93 * interrupt driven flow management. On the send side
94 * we can request that the receiver interrupt the sender
95 * when the ring transitions from being full to being able
96 * to handle a message of size "pending_send_sz".
97 *
98 * Add necessary state for this enhancement.
K. Y. Srinivasan7effffb2011-05-12 19:34:17 -070099 */
K. Y. Srinivasan24166032012-12-01 06:46:39 -0800100 u32 pending_send_sz;
101
102 u32 reserved1[12];
103
104 union {
105 struct {
106 u32 feat_pending_send_sz:1;
107 };
108 u32 value;
109 } feature_bits;
110
111 /* Pad it to PAGE_SIZE so that data starts on page boundary */
112 u8 reserved2[4028];
K. Y. Srinivasan7effffb2011-05-12 19:34:17 -0700113
114 /*
115 * Ring data starts here + RingDataStartOffset
116 * !!! DO NOT place any fields below this !!!
117 */
118 u8 buffer[0];
119} __packed;
120
121struct hv_ring_buffer_info {
122 struct hv_ring_buffer *ring_buffer;
123 u32 ring_size; /* Include the shared header */
124 spinlock_t ring_lock;
125
126 u32 ring_datasize; /* < ring_size */
127 u32 ring_data_startoffset;
128};
129
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000130/*
131 *
132 * hv_get_ringbuffer_availbytes()
133 *
134 * Get number of bytes available to read and to write to
135 * for the specified ring buffer
136 */
137static inline void
138hv_get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
139 u32 *read, u32 *write)
140{
141 u32 read_loc, write_loc, dsize;
142
143 smp_read_barrier_depends();
144
145 /* Capture the read/write indices before they changed */
146 read_loc = rbi->ring_buffer->read_index;
147 write_loc = rbi->ring_buffer->write_index;
148 dsize = rbi->ring_datasize;
149
150 *write = write_loc >= read_loc ? dsize - (write_loc - read_loc) :
151 read_loc - write_loc;
152 *read = dsize - *write;
153}
154
K. Y. Srinivasaneafa7072012-12-01 06:46:44 -0800155/*
156 * VMBUS version is 32 bit entity broken up into
157 * two 16 bit quantities: major_number. minor_number.
158 *
159 * 0 . 13 (Windows Server 2008)
160 * 1 . 1 (Windows 7)
161 * 2 . 4 (Windows 8)
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -0700162 * 3 . 0 (Windows 8 R2)
K. Y. Srinivasaneafa7072012-12-01 06:46:44 -0800163 */
164
165#define VERSION_WS2008 ((0 << 16) | (13))
166#define VERSION_WIN7 ((1 << 16) | (1))
167#define VERSION_WIN8 ((2 << 16) | (4))
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -0700168#define VERSION_WIN8_1 ((3 << 16) | (0))
K. Y. Srinivasaneafa7072012-12-01 06:46:44 -0800169
170#define VERSION_INVAL -1
171
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -0700172#define VERSION_CURRENT VERSION_WIN8_1
K. Y. Srinivasanf7c6dfd2011-05-12 19:34:18 -0700173
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700174/* Make maximum size of pipe payload of 16K */
175#define MAX_PIPE_DATA_PAYLOAD (sizeof(u8) * 16384)
176
177/* Define PipeMode values. */
178#define VMBUS_PIPE_TYPE_BYTE 0x00000000
179#define VMBUS_PIPE_TYPE_MESSAGE 0x00000004
180
181/* The size of the user defined data buffer for non-pipe offers. */
182#define MAX_USER_DEFINED_BYTES 120
183
184/* The size of the user defined data buffer for pipe offers. */
185#define MAX_PIPE_USER_DEFINED_BYTES 116
186
187/*
188 * At the center of the Channel Management library is the Channel Offer. This
189 * struct contains the fundamental information about an offer.
190 */
191struct vmbus_channel_offer {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700192 uuid_le if_type;
193 uuid_le if_instance;
K. Y. Srinivasan29423b72012-12-01 06:46:40 -0800194
195 /*
196 * These two fields are not currently used.
197 */
198 u64 reserved1;
199 u64 reserved2;
200
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700201 u16 chn_flags;
202 u16 mmio_megabytes; /* in bytes * 1024 * 1024 */
203
204 union {
205 /* Non-pipes: The user has MAX_USER_DEFINED_BYTES bytes. */
206 struct {
207 unsigned char user_def[MAX_USER_DEFINED_BYTES];
208 } std;
209
210 /*
211 * Pipes:
212 * The following sructure is an integrated pipe protocol, which
213 * is implemented on top of standard user-defined data. Pipe
214 * clients have MAX_PIPE_USER_DEFINED_BYTES left for their own
215 * use.
216 */
217 struct {
218 u32 pipe_mode;
219 unsigned char user_def[MAX_PIPE_USER_DEFINED_BYTES];
220 } pipe;
221 } u;
K. Y. Srinivasan29423b72012-12-01 06:46:40 -0800222 /*
223 * The sub_channel_index is defined in win8.
224 */
225 u16 sub_channel_index;
226 u16 reserved3;
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700227} __packed;
228
229/* Server Flags */
230#define VMBUS_CHANNEL_ENUMERATE_DEVICE_INTERFACE 1
231#define VMBUS_CHANNEL_SERVER_SUPPORTS_TRANSFER_PAGES 2
232#define VMBUS_CHANNEL_SERVER_SUPPORTS_GPADLS 4
233#define VMBUS_CHANNEL_NAMED_PIPE_MODE 0x10
234#define VMBUS_CHANNEL_LOOPBACK_OFFER 0x100
235#define VMBUS_CHANNEL_PARENT_OFFER 0x200
236#define VMBUS_CHANNEL_REQUEST_MONITORED_NOTIFICATION 0x400
237
K. Y. Srinivasan50ed40e02011-05-12 19:34:20 -0700238struct vmpacket_descriptor {
239 u16 type;
240 u16 offset8;
241 u16 len8;
242 u16 flags;
243 u64 trans_id;
244} __packed;
245
246struct vmpacket_header {
247 u32 prev_pkt_start_offset;
248 struct vmpacket_descriptor descriptor;
249} __packed;
250
251struct vmtransfer_page_range {
252 u32 byte_count;
253 u32 byte_offset;
254} __packed;
255
256struct vmtransfer_page_packet_header {
257 struct vmpacket_descriptor d;
258 u16 xfer_pageset_id;
K. Y. Srinivasan1508d812012-08-16 08:23:20 -0700259 u8 sender_owns_set;
K. Y. Srinivasan50ed40e02011-05-12 19:34:20 -0700260 u8 reserved;
261 u32 range_cnt;
262 struct vmtransfer_page_range ranges[1];
263} __packed;
264
265struct vmgpadl_packet_header {
266 struct vmpacket_descriptor d;
267 u32 gpadl;
268 u32 reserved;
269} __packed;
270
271struct vmadd_remove_transfer_page_set {
272 struct vmpacket_descriptor d;
273 u32 gpadl;
274 u16 xfer_pageset_id;
275 u16 reserved;
276} __packed;
277
278/*
279 * This structure defines a range in guest physical space that can be made to
280 * look virtually contiguous.
281 */
282struct gpa_range {
283 u32 byte_count;
284 u32 byte_offset;
285 u64 pfn_array[0];
286};
287
288/*
289 * This is the format for an Establish Gpadl packet, which contains a handle by
290 * which this GPADL will be known and a set of GPA ranges associated with it.
291 * This can be converted to a MDL by the guest OS. If there are multiple GPA
292 * ranges, then the resulting MDL will be "chained," representing multiple VA
293 * ranges.
294 */
295struct vmestablish_gpadl {
296 struct vmpacket_descriptor d;
297 u32 gpadl;
298 u32 range_cnt;
299 struct gpa_range range[1];
300} __packed;
301
302/*
303 * This is the format for a Teardown Gpadl packet, which indicates that the
304 * GPADL handle in the Establish Gpadl packet will never be referenced again.
305 */
306struct vmteardown_gpadl {
307 struct vmpacket_descriptor d;
308 u32 gpadl;
309 u32 reserved; /* for alignment to a 8-byte boundary */
310} __packed;
311
312/*
313 * This is the format for a GPA-Direct packet, which contains a set of GPA
314 * ranges, in addition to commands and/or data.
315 */
316struct vmdata_gpa_direct {
317 struct vmpacket_descriptor d;
318 u32 reserved;
319 u32 range_cnt;
320 struct gpa_range range[1];
321} __packed;
322
323/* This is the format for a Additional Data Packet. */
324struct vmadditional_data {
325 struct vmpacket_descriptor d;
326 u64 total_bytes;
327 u32 offset;
328 u32 byte_cnt;
329 unsigned char data[1];
330} __packed;
331
332union vmpacket_largest_possible_header {
333 struct vmpacket_descriptor simple_hdr;
334 struct vmtransfer_page_packet_header xfer_page_hdr;
335 struct vmgpadl_packet_header gpadl_hdr;
336 struct vmadd_remove_transfer_page_set add_rm_xfer_page_hdr;
337 struct vmestablish_gpadl establish_gpadl_hdr;
338 struct vmteardown_gpadl teardown_gpadl_hdr;
339 struct vmdata_gpa_direct data_gpa_direct_hdr;
340};
341
342#define VMPACKET_DATA_START_ADDRESS(__packet) \
343 (void *)(((unsigned char *)__packet) + \
344 ((struct vmpacket_descriptor)__packet)->offset8 * 8)
345
346#define VMPACKET_DATA_LENGTH(__packet) \
347 ((((struct vmpacket_descriptor)__packet)->len8 - \
348 ((struct vmpacket_descriptor)__packet)->offset8) * 8)
349
350#define VMPACKET_TRANSFER_MODE(__packet) \
351 (((struct IMPACT)__packet)->type)
352
353enum vmbus_packet_type {
354 VM_PKT_INVALID = 0x0,
355 VM_PKT_SYNCH = 0x1,
356 VM_PKT_ADD_XFER_PAGESET = 0x2,
357 VM_PKT_RM_XFER_PAGESET = 0x3,
358 VM_PKT_ESTABLISH_GPADL = 0x4,
359 VM_PKT_TEARDOWN_GPADL = 0x5,
360 VM_PKT_DATA_INBAND = 0x6,
361 VM_PKT_DATA_USING_XFER_PAGES = 0x7,
362 VM_PKT_DATA_USING_GPADL = 0x8,
363 VM_PKT_DATA_USING_GPA_DIRECT = 0x9,
364 VM_PKT_CANCEL_REQUEST = 0xa,
365 VM_PKT_COMP = 0xb,
366 VM_PKT_DATA_USING_ADDITIONAL_PKT = 0xc,
367 VM_PKT_ADDITIONAL_DATA = 0xd
368};
369
370#define VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED 1
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700371
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700372
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700373/* Version 1 messages */
374enum vmbus_channel_message_type {
375 CHANNELMSG_INVALID = 0,
376 CHANNELMSG_OFFERCHANNEL = 1,
377 CHANNELMSG_RESCIND_CHANNELOFFER = 2,
378 CHANNELMSG_REQUESTOFFERS = 3,
379 CHANNELMSG_ALLOFFERS_DELIVERED = 4,
380 CHANNELMSG_OPENCHANNEL = 5,
381 CHANNELMSG_OPENCHANNEL_RESULT = 6,
382 CHANNELMSG_CLOSECHANNEL = 7,
383 CHANNELMSG_GPADL_HEADER = 8,
384 CHANNELMSG_GPADL_BODY = 9,
385 CHANNELMSG_GPADL_CREATED = 10,
386 CHANNELMSG_GPADL_TEARDOWN = 11,
387 CHANNELMSG_GPADL_TORNDOWN = 12,
388 CHANNELMSG_RELID_RELEASED = 13,
389 CHANNELMSG_INITIATE_CONTACT = 14,
390 CHANNELMSG_VERSION_RESPONSE = 15,
391 CHANNELMSG_UNLOAD = 16,
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700392 CHANNELMSG_COUNT
393};
394
395struct vmbus_channel_message_header {
396 enum vmbus_channel_message_type msgtype;
397 u32 padding;
398} __packed;
399
400/* Query VMBus Version parameters */
401struct vmbus_channel_query_vmbus_version {
402 struct vmbus_channel_message_header header;
403 u32 version;
404} __packed;
405
406/* VMBus Version Supported parameters */
407struct vmbus_channel_version_supported {
408 struct vmbus_channel_message_header header;
K. Y. Srinivasan1508d812012-08-16 08:23:20 -0700409 u8 version_supported;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700410} __packed;
411
412/* Offer Channel parameters */
413struct vmbus_channel_offer_channel {
414 struct vmbus_channel_message_header header;
415 struct vmbus_channel_offer offer;
416 u32 child_relid;
417 u8 monitorid;
K. Y. Srinivasan29423b72012-12-01 06:46:40 -0800418 /*
419 * win7 and beyond splits this field into a bit field.
420 */
421 u8 monitor_allocated:1;
422 u8 reserved:7;
423 /*
424 * These are new fields added in win7 and later.
425 * Do not access these fields without checking the
426 * negotiated protocol.
427 *
428 * If "is_dedicated_interrupt" is set, we must not set the
429 * associated bit in the channel bitmap while sending the
430 * interrupt to the host.
431 *
432 * connection_id is to be used in signaling the host.
433 */
434 u16 is_dedicated_interrupt:1;
435 u16 reserved1:15;
436 u32 connection_id;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700437} __packed;
438
439/* Rescind Offer parameters */
440struct vmbus_channel_rescind_offer {
441 struct vmbus_channel_message_header header;
442 u32 child_relid;
443} __packed;
444
445/*
446 * Request Offer -- no parameters, SynIC message contains the partition ID
447 * Set Snoop -- no parameters, SynIC message contains the partition ID
448 * Clear Snoop -- no parameters, SynIC message contains the partition ID
449 * All Offers Delivered -- no parameters, SynIC message contains the partition
450 * ID
451 * Flush Client -- no parameters, SynIC message contains the partition ID
452 */
453
454/* Open Channel parameters */
455struct vmbus_channel_open_channel {
456 struct vmbus_channel_message_header header;
457
458 /* Identifies the specific VMBus channel that is being opened. */
459 u32 child_relid;
460
461 /* ID making a particular open request at a channel offer unique. */
462 u32 openid;
463
464 /* GPADL for the channel's ring buffer. */
465 u32 ringbuffer_gpadlhandle;
466
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800467 /*
468 * Starting with win8, this field will be used to specify
469 * the target virtual processor on which to deliver the interrupt for
470 * the host to guest communication.
471 * Prior to win8, incoming channel interrupts would only
472 * be delivered on cpu 0. Setting this value to 0 would
473 * preserve the earlier behavior.
474 */
475 u32 target_vp;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700476
477 /*
478 * The upstream ring buffer begins at offset zero in the memory
479 * described by RingBufferGpadlHandle. The downstream ring buffer
480 * follows it at this offset (in pages).
481 */
482 u32 downstream_ringbuffer_pageoffset;
483
484 /* User-specific data to be passed along to the server endpoint. */
485 unsigned char userdata[MAX_USER_DEFINED_BYTES];
486} __packed;
487
488/* Open Channel Result parameters */
489struct vmbus_channel_open_result {
490 struct vmbus_channel_message_header header;
491 u32 child_relid;
492 u32 openid;
493 u32 status;
494} __packed;
495
496/* Close channel parameters; */
497struct vmbus_channel_close_channel {
498 struct vmbus_channel_message_header header;
499 u32 child_relid;
500} __packed;
501
502/* Channel Message GPADL */
503#define GPADL_TYPE_RING_BUFFER 1
504#define GPADL_TYPE_SERVER_SAVE_AREA 2
505#define GPADL_TYPE_TRANSACTION 8
506
507/*
508 * The number of PFNs in a GPADL message is defined by the number of
509 * pages that would be spanned by ByteCount and ByteOffset. If the
510 * implied number of PFNs won't fit in this packet, there will be a
511 * follow-up packet that contains more.
512 */
513struct vmbus_channel_gpadl_header {
514 struct vmbus_channel_message_header header;
515 u32 child_relid;
516 u32 gpadl;
517 u16 range_buflen;
518 u16 rangecount;
519 struct gpa_range range[0];
520} __packed;
521
522/* This is the followup packet that contains more PFNs. */
523struct vmbus_channel_gpadl_body {
524 struct vmbus_channel_message_header header;
525 u32 msgnumber;
526 u32 gpadl;
527 u64 pfn[0];
528} __packed;
529
530struct vmbus_channel_gpadl_created {
531 struct vmbus_channel_message_header header;
532 u32 child_relid;
533 u32 gpadl;
534 u32 creation_status;
535} __packed;
536
537struct vmbus_channel_gpadl_teardown {
538 struct vmbus_channel_message_header header;
539 u32 child_relid;
540 u32 gpadl;
541} __packed;
542
543struct vmbus_channel_gpadl_torndown {
544 struct vmbus_channel_message_header header;
545 u32 gpadl;
546} __packed;
547
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700548struct vmbus_channel_relid_released {
549 struct vmbus_channel_message_header header;
550 u32 child_relid;
551} __packed;
552
553struct vmbus_channel_initiate_contact {
554 struct vmbus_channel_message_header header;
555 u32 vmbus_version_requested;
K. Y. Srinivasane28bab42014-01-15 17:12:58 -0800556 u32 target_vcpu; /* The VCPU the host should respond to */
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700557 u64 interrupt_page;
558 u64 monitor_page1;
559 u64 monitor_page2;
560} __packed;
561
562struct vmbus_channel_version_response {
563 struct vmbus_channel_message_header header;
K. Y. Srinivasan1508d812012-08-16 08:23:20 -0700564 u8 version_supported;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700565} __packed;
566
567enum vmbus_channel_state {
568 CHANNEL_OFFER_STATE,
569 CHANNEL_OPENING_STATE,
570 CHANNEL_OPEN_STATE,
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700571 CHANNEL_OPENED_STATE,
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700572};
573
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700574/*
575 * Represents each channel msg on the vmbus connection This is a
576 * variable-size data structure depending on the msg type itself
577 */
578struct vmbus_channel_msginfo {
579 /* Bookkeeping stuff */
580 struct list_head msglistentry;
581
582 /* So far, this is only used to handle gpadl body message */
583 struct list_head submsglist;
584
585 /* Synchronize the request/response if needed */
586 struct completion waitevent;
587 union {
588 struct vmbus_channel_version_supported version_supported;
589 struct vmbus_channel_open_result open_result;
590 struct vmbus_channel_gpadl_torndown gpadl_torndown;
591 struct vmbus_channel_gpadl_created gpadl_created;
592 struct vmbus_channel_version_response version_response;
593 } response;
594
595 u32 msgsize;
596 /*
597 * The channel message that goes out on the "wire".
598 * It will contain at minimum the VMBUS_CHANNEL_MESSAGE_HEADER header
599 */
600 unsigned char msg[0];
601};
602
K. Y. Srinivasanf9f1db82011-06-06 15:49:58 -0700603struct vmbus_close_msg {
604 struct vmbus_channel_msginfo info;
605 struct vmbus_channel_close_channel msg;
606};
607
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800608/* Define connection identifier type. */
609union hv_connection_id {
610 u32 asu32;
611 struct {
612 u32 id:24;
613 u32 reserved:8;
614 } u;
615};
616
617/* Definition of the hv_signal_event hypercall input structure. */
618struct hv_input_signal_event {
619 union hv_connection_id connectionid;
620 u16 flag_number;
621 u16 rsvdz;
622};
623
624struct hv_input_signal_event_buffer {
625 u64 align8;
626 struct hv_input_signal_event event;
627};
628
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700629struct vmbus_channel {
Vitaly Kuznetsovbc63b6f2015-02-27 11:25:52 -0800630 /* Unique channel id */
631 int id;
632
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700633 struct list_head listentry;
634
635 struct hv_device *device_obj;
636
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700637 enum vmbus_channel_state state;
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700638
639 struct vmbus_channel_offer_channel offermsg;
640 /*
641 * These are based on the OfferMsg.MonitorId.
642 * Save it here for easy access.
643 */
644 u8 monitor_grp;
645 u8 monitor_bit;
646
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800647 bool rescind; /* got rescind msg */
648
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700649 u32 ringbuffer_gpadlhandle;
650
651 /* Allocated memory for ring buffer */
652 void *ringbuffer_pages;
653 u32 ringbuffer_pagecount;
654 struct hv_ring_buffer_info outbound; /* send to parent */
655 struct hv_ring_buffer_info inbound; /* receive from parent */
656 spinlock_t inbound_lock;
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700657
K. Y. Srinivasanf9f1db82011-06-06 15:49:58 -0700658 struct vmbus_close_msg close_msg;
659
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700660 /* Channel callback are invoked in this workqueue context */
661 /* HANDLE dataWorkQueue; */
662
663 void (*onchannel_callback)(void *context);
664 void *channel_callback_context;
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800665
666 /*
667 * A channel can be marked for efficient (batched)
668 * reading:
669 * If batched_reading is set to "true", we read until the
670 * channel is empty and hold off interrupts from the host
671 * during the entire read process.
672 * If batched_reading is set to "false", the client is not
673 * going to perform batched reading.
674 *
675 * By default we will enable batched reading; specific
676 * drivers that don't want this behavior can turn it off.
677 */
678
679 bool batched_reading;
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800680
681 bool is_dedicated_interrupt;
682 struct hv_input_signal_event_buffer sig_buf;
683 struct hv_input_signal_event *sig_event;
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800684
685 /*
686 * Starting with win8, this field will be used to specify
687 * the target virtual processor on which to deliver the interrupt for
688 * the host to guest communication.
689 * Prior to win8, incoming channel interrupts would only
690 * be delivered on cpu 0. Setting this value to 0 would
691 * preserve the earlier behavior.
692 */
693 u32 target_vp;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700694 /* The corresponding CPUID in the guest */
695 u32 target_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700696 /*
697 * Support for sub-channels. For high performance devices,
698 * it will be useful to have multiple sub-channels to support
699 * a scalable communication infrastructure with the host.
700 * The support for sub-channels is implemented as an extention
701 * to the current infrastructure.
702 * The initial offer is considered the primary channel and this
703 * offer message will indicate if the host supports sub-channels.
704 * The guest is free to ask for sub-channels to be offerred and can
705 * open these sub-channels as a normal "primary" channel. However,
706 * all sub-channels will have the same type and instance guids as the
707 * primary channel. Requests sent on a given channel will result in a
708 * response on the same channel.
709 */
710
711 /*
712 * Sub-channel creation callback. This callback will be called in
713 * process context when a sub-channel offer is received from the host.
714 * The guest can open the sub-channel in the context of this callback.
715 */
716 void (*sc_creation_callback)(struct vmbus_channel *new_sc);
717
Vitaly Kuznetsov67fae052015-01-20 16:45:05 +0100718 /*
719 * The spinlock to protect the structure. It is being used to protect
720 * test-and-set access to various attributes of the structure as well
721 * as all sc_list operations.
722 */
723 spinlock_t lock;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700724 /*
725 * All Sub-channels of a primary channel are linked here.
726 */
727 struct list_head sc_list;
728 /*
729 * The primary channel this sub-channel belongs to.
730 * This will be NULL for the primary channel.
731 */
732 struct vmbus_channel *primary_channel;
K. Y. Srinivasan8a7206a2014-02-03 12:42:45 -0800733 /*
734 * Support per-channel state for use by vmbus drivers.
735 */
736 void *per_channel_state;
K. Y. Srinivasan3a28fa32014-04-08 18:45:54 -0700737 /*
738 * To support per-cpu lookup mapping of relid to channel,
739 * link up channels based on their CPU affinity.
740 */
741 struct list_head percpu_list;
K. Y. Srinivasana13e8bb2015-02-28 11:39:02 -0800742
743 int num_sc;
744 int next_oc;
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700745};
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700746
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800747static inline void set_channel_read_state(struct vmbus_channel *c, bool state)
748{
749 c->batched_reading = state;
750}
751
K. Y. Srinivasan8a7206a2014-02-03 12:42:45 -0800752static inline void set_per_channel_state(struct vmbus_channel *c, void *s)
753{
754 c->per_channel_state = s;
755}
756
757static inline void *get_per_channel_state(struct vmbus_channel *c)
758{
759 return c->per_channel_state;
760}
761
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700762void vmbus_onmessage(void *context);
763
764int vmbus_request_offers(void);
765
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700766/*
767 * APIs for managing sub-channels.
768 */
769
770void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
771 void (*sc_cr_cb)(struct vmbus_channel *new_sc));
772
773/*
774 * Retrieve the (sub) channel on which to send an outgoing request.
775 * When a primary channel has multiple sub-channels, we choose a
776 * channel whose VCPU binding is closest to the VCPU on which
777 * this call is being made.
778 */
779struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary);
780
781/*
782 * Check if sub-channels have already been offerred. This API will be useful
783 * when the driver is unloaded after establishing sub-channels. In this case,
784 * when the driver is re-loaded, the driver would have to check if the
785 * subchannels have already been established before attempting to request
786 * the creation of sub-channels.
787 * This function returns TRUE to indicate that subchannels have already been
788 * created.
789 * This function should be invoked after setting the callback function for
790 * sub-channel creation.
791 */
792bool vmbus_are_subchannels_present(struct vmbus_channel *primary);
793
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700794/* The format must be the same as struct vmdata_gpa_direct */
795struct vmbus_channel_packet_page_buffer {
796 u16 type;
797 u16 dataoffset8;
798 u16 length8;
799 u16 flags;
800 u64 transactionid;
801 u32 reserved;
802 u32 rangecount;
803 struct hv_page_buffer range[MAX_PAGE_BUFFER_COUNT];
804} __packed;
805
806/* The format must be the same as struct vmdata_gpa_direct */
807struct vmbus_channel_packet_multipage_buffer {
808 u16 type;
809 u16 dataoffset8;
810 u16 length8;
811 u16 flags;
812 u64 transactionid;
813 u32 reserved;
814 u32 rangecount; /* Always 1 in this case */
815 struct hv_multipage_buffer range;
816} __packed;
817
K. Y. Srinivasand61031e2015-01-09 23:54:34 -0800818/* The format must be the same as struct vmdata_gpa_direct */
819struct vmbus_packet_mpb_array {
820 u16 type;
821 u16 dataoffset8;
822 u16 length8;
823 u16 flags;
824 u64 transactionid;
825 u32 reserved;
826 u32 rangecount; /* Always 1 in this case */
827 struct hv_mpb_array range;
828} __packed;
829
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700830
831extern int vmbus_open(struct vmbus_channel *channel,
832 u32 send_ringbuffersize,
833 u32 recv_ringbuffersize,
834 void *userdata,
835 u32 userdatalen,
836 void(*onchannel_callback)(void *context),
837 void *context);
838
839extern void vmbus_close(struct vmbus_channel *channel);
840
841extern int vmbus_sendpacket(struct vmbus_channel *channel,
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800842 void *buffer,
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700843 u32 bufferLen,
844 u64 requestid,
845 enum vmbus_packet_type type,
846 u32 flags);
847
K. Y. Srinivasane9395e32015-02-28 11:39:04 -0800848extern int vmbus_sendpacket_ctl(struct vmbus_channel *channel,
849 void *buffer,
850 u32 bufferLen,
851 u64 requestid,
852 enum vmbus_packet_type type,
853 u32 flags,
854 bool kick_q);
855
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700856extern int vmbus_sendpacket_pagebuffer(struct vmbus_channel *channel,
857 struct hv_page_buffer pagebuffers[],
858 u32 pagecount,
859 void *buffer,
860 u32 bufferlen,
861 u64 requestid);
862
K. Y. Srinivasan87e93d62015-02-28 11:39:03 -0800863extern int vmbus_sendpacket_pagebuffer_ctl(struct vmbus_channel *channel,
864 struct hv_page_buffer pagebuffers[],
865 u32 pagecount,
866 void *buffer,
867 u32 bufferlen,
868 u64 requestid,
869 u32 flags,
870 bool kick_q);
871
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700872extern int vmbus_sendpacket_multipagebuffer(struct vmbus_channel *channel,
873 struct hv_multipage_buffer *mpb,
874 void *buffer,
875 u32 bufferlen,
876 u64 requestid);
877
K. Y. Srinivasand61031e2015-01-09 23:54:34 -0800878extern int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel,
879 struct vmbus_packet_mpb_array *mpb,
880 u32 desc_size,
881 void *buffer,
882 u32 bufferlen,
883 u64 requestid);
884
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700885extern int vmbus_establish_gpadl(struct vmbus_channel *channel,
886 void *kbuffer,
887 u32 size,
888 u32 *gpadl_handle);
889
890extern int vmbus_teardown_gpadl(struct vmbus_channel *channel,
891 u32 gpadl_handle);
892
893extern int vmbus_recvpacket(struct vmbus_channel *channel,
894 void *buffer,
895 u32 bufferlen,
896 u32 *buffer_actual_len,
897 u64 *requestid);
898
899extern int vmbus_recvpacket_raw(struct vmbus_channel *channel,
900 void *buffer,
901 u32 bufferlen,
902 u32 *buffer_actual_len,
903 u64 *requestid);
904
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700905
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700906extern void vmbus_ontimer(unsigned long data);
907
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700908/* Base driver object */
909struct hv_driver {
910 const char *name;
911
912 /* the device type supported by this driver */
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700913 uuid_le dev_type;
K. Y. Srinivasan2e2c1d12011-08-25 09:48:31 -0700914 const struct hv_vmbus_device_id *id_table;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700915
916 struct device_driver driver;
917
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700918 int (*probe)(struct hv_device *, const struct hv_vmbus_device_id *);
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700919 int (*remove)(struct hv_device *);
920 void (*shutdown)(struct hv_device *);
921
922};
923
924/* Base device object */
925struct hv_device {
926 /* the device type id of this device */
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700927 uuid_le dev_type;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700928
929 /* the device instance id of this device */
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700930 uuid_le dev_instance;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700931
932 struct device device;
933
934 struct vmbus_channel *channel;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700935};
936
K. Y. Srinivasan27b5b3c2011-05-12 19:34:25 -0700937
938static inline struct hv_device *device_to_hv_device(struct device *d)
939{
940 return container_of(d, struct hv_device, device);
941}
942
943static inline struct hv_driver *drv_to_hv_drv(struct device_driver *d)
944{
945 return container_of(d, struct hv_driver, driver);
946}
947
K. Y. Srinivasanab101e82011-09-13 10:59:40 -0700948static inline void hv_set_drvdata(struct hv_device *dev, void *data)
949{
950 dev_set_drvdata(&dev->device, data);
951}
952
953static inline void *hv_get_drvdata(struct hv_device *dev)
954{
955 return dev_get_drvdata(&dev->device);
956}
K. Y. Srinivasan27b5b3c2011-05-12 19:34:25 -0700957
958/* Vmbus interface */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700959#define vmbus_driver_register(driver) \
960 __vmbus_driver_register(driver, THIS_MODULE, KBUILD_MODNAME)
961int __must_check __vmbus_driver_register(struct hv_driver *hv_driver,
962 struct module *owner,
963 const char *mod_name);
964void vmbus_driver_unregister(struct hv_driver *hv_driver);
K. Y. Srinivasan27b5b3c2011-05-12 19:34:25 -0700965
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -0700966/**
967 * VMBUS_DEVICE - macro used to describe a specific hyperv vmbus device
968 *
969 * This macro is used to create a struct hv_vmbus_device_id that matches a
970 * specific device.
971 */
972#define VMBUS_DEVICE(g0, g1, g2, g3, g4, g5, g6, g7, \
973 g8, g9, ga, gb, gc, gd, ge, gf) \
974 .guid = { g0, g1, g2, g3, g4, g5, g6, g7, \
975 g8, g9, ga, gb, gc, gd, ge, gf },
976
K. Y. Srinivasanb1897022011-05-12 19:34:26 -0700977/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800978 * GUID definitions of various offer types - services offered to the guest.
979 */
980
981/*
982 * Network GUID
983 * {f8615163-df3e-46c5-913f-f2d2f965ed0e}
984 */
985#define HV_NIC_GUID \
986 .guid = { \
987 0x63, 0x51, 0x61, 0xf8, 0x3e, 0xdf, 0xc5, 0x46, \
988 0x91, 0x3f, 0xf2, 0xd2, 0xf9, 0x65, 0xed, 0x0e \
989 }
990
991/*
992 * IDE GUID
993 * {32412632-86cb-44a2-9b5c-50d1417354f5}
994 */
995#define HV_IDE_GUID \
996 .guid = { \
997 0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44, \
998 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5 \
999 }
1000
1001/*
1002 * SCSI GUID
1003 * {ba6163d9-04a1-4d29-b605-72e2ffb1dc7f}
1004 */
1005#define HV_SCSI_GUID \
1006 .guid = { \
1007 0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d, \
1008 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f \
1009 }
1010
1011/*
1012 * Shutdown GUID
1013 * {0e0b6031-5213-4934-818b-38d90ced39db}
1014 */
1015#define HV_SHUTDOWN_GUID \
1016 .guid = { \
1017 0x31, 0x60, 0x0b, 0x0e, 0x13, 0x52, 0x34, 0x49, \
1018 0x81, 0x8b, 0x38, 0xd9, 0x0c, 0xed, 0x39, 0xdb \
1019 }
1020
1021/*
1022 * Time Synch GUID
1023 * {9527E630-D0AE-497b-ADCE-E80AB0175CAF}
1024 */
1025#define HV_TS_GUID \
1026 .guid = { \
1027 0x30, 0xe6, 0x27, 0x95, 0xae, 0xd0, 0x7b, 0x49, \
1028 0xad, 0xce, 0xe8, 0x0a, 0xb0, 0x17, 0x5c, 0xaf \
1029 }
1030
1031/*
1032 * Heartbeat GUID
1033 * {57164f39-9115-4e78-ab55-382f3bd5422d}
1034 */
1035#define HV_HEART_BEAT_GUID \
1036 .guid = { \
1037 0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e, \
1038 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d \
1039 }
1040
1041/*
1042 * KVP GUID
1043 * {a9a0f4e7-5a45-4d96-b827-8a841e8c03e6}
1044 */
1045#define HV_KVP_GUID \
1046 .guid = { \
1047 0xe7, 0xf4, 0xa0, 0xa9, 0x45, 0x5a, 0x96, 0x4d, \
1048 0xb8, 0x27, 0x8a, 0x84, 0x1e, 0x8c, 0x3, 0xe6 \
1049 }
1050
1051/*
1052 * Dynamic memory GUID
1053 * {525074dc-8985-46e2-8057-a307dc18a502}
1054 */
1055#define HV_DM_GUID \
1056 .guid = { \
1057 0xdc, 0x74, 0x50, 0X52, 0x85, 0x89, 0xe2, 0x46, \
1058 0x80, 0x57, 0xa3, 0x07, 0xdc, 0x18, 0xa5, 0x02 \
1059 }
1060
1061/*
1062 * Mouse GUID
1063 * {cfa8b69e-5b4a-4cc0-b98b-8ba1a1f3f95a}
1064 */
1065#define HV_MOUSE_GUID \
1066 .guid = { \
1067 0x9e, 0xb6, 0xa8, 0xcf, 0x4a, 0x5b, 0xc0, 0x4c, \
1068 0xb9, 0x8b, 0x8b, 0xa1, 0xa1, 0xf3, 0xf9, 0x5a \
1069 }
1070
1071/*
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07001072 * VSS (Backup/Restore) GUID
1073 */
1074#define HV_VSS_GUID \
1075 .guid = { \
1076 0x29, 0x2e, 0xfa, 0x35, 0x23, 0xea, 0x36, 0x42, \
1077 0x96, 0xae, 0x3a, 0x6e, 0xba, 0xcb, 0xa4, 0x40 \
1078 }
1079/*
Haiyang Zhang68a2d20b2013-04-29 15:05:42 -07001080 * Synthetic Video GUID
1081 * {DA0A7802-E377-4aac-8E77-0558EB1073F8}
1082 */
1083#define HV_SYNTHVID_GUID \
1084 .guid = { \
1085 0x02, 0x78, 0x0a, 0xda, 0x77, 0xe3, 0xac, 0x4a, \
1086 0x8e, 0x77, 0x05, 0x58, 0xeb, 0x10, 0x73, 0xf8 \
1087 }
1088
Haiyang Zhang68a2d20b2013-04-29 15:05:42 -07001089/*
K. Y. Srinivasan98b80d82013-05-23 12:02:33 -07001090 * Synthetic FC GUID
1091 * {2f9bcc4a-0069-4af3-b76b-6fd0be528cda}
1092 */
1093#define HV_SYNTHFC_GUID \
1094 .guid = { \
1095 0x4A, 0xCC, 0x9B, 0x2F, 0x69, 0x00, 0xF3, 0x4A, \
1096 0xB7, 0x6B, 0x6F, 0xD0, 0xBE, 0x52, 0x8C, 0xDA \
1097 }
1098
1099/*
K. Y. Srinivasan013254762014-02-16 11:34:30 -08001100 * Guest File Copy Service
1101 * {34D14BE3-DEE4-41c8-9AE7-6B174977C192}
1102 */
1103
1104#define HV_FCOPY_GUID \
1105 .guid = { \
1106 0xE3, 0x4B, 0xD1, 0x34, 0xE4, 0xDE, 0xC8, 0x41, \
1107 0x9A, 0xE7, 0x6B, 0x17, 0x49, 0x77, 0xC1, 0x92 \
1108 }
1109
1110/*
K. Y. Srinivasan04653a02015-02-27 11:26:05 -08001111 * NetworkDirect. This is the guest RDMA service.
1112 * {8c2eaf3d-32a7-4b09-ab99-bd1f1c86b501}
1113 */
1114#define HV_ND_GUID \
1115 .guid = { \
1116 0x3d, 0xaf, 0x2e, 0x8c, 0xa7, 0x32, 0x09, 0x4b, \
1117 0xab, 0x99, 0xbd, 0x1f, 0x1c, 0x86, 0xb5, 0x01 \
1118 }
1119
1120/*
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001121 * Common header for Hyper-V ICs
1122 */
1123
1124#define ICMSGTYPE_NEGOTIATE 0
1125#define ICMSGTYPE_HEARTBEAT 1
1126#define ICMSGTYPE_KVPEXCHANGE 2
1127#define ICMSGTYPE_SHUTDOWN 3
1128#define ICMSGTYPE_TIMESYNC 4
1129#define ICMSGTYPE_VSS 5
1130
1131#define ICMSGHDRFLAG_TRANSACTION 1
1132#define ICMSGHDRFLAG_REQUEST 2
1133#define ICMSGHDRFLAG_RESPONSE 4
1134
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001135
K. Y. Srinivasana29b6432011-09-18 10:31:33 -07001136/*
1137 * While we want to handle util services as regular devices,
1138 * there is only one instance of each of these services; so
1139 * we statically allocate the service specific state.
1140 */
1141
1142struct hv_util_service {
1143 u8 *recv_buffer;
1144 void (*util_cb)(void *);
1145 int (*util_init)(struct hv_util_service *);
1146 void (*util_deinit)(void);
1147};
1148
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001149struct vmbuspipe_hdr {
1150 u32 flags;
1151 u32 msgsize;
1152} __packed;
1153
1154struct ic_version {
1155 u16 major;
1156 u16 minor;
1157} __packed;
1158
1159struct icmsg_hdr {
1160 struct ic_version icverframe;
1161 u16 icmsgtype;
1162 struct ic_version icvermsg;
1163 u16 icmsgsize;
1164 u32 status;
1165 u8 ictransaction_id;
1166 u8 icflags;
1167 u8 reserved[2];
1168} __packed;
1169
1170struct icmsg_negotiate {
1171 u16 icframe_vercnt;
1172 u16 icmsg_vercnt;
1173 u32 reserved;
1174 struct ic_version icversion_data[1]; /* any size array */
1175} __packed;
1176
1177struct shutdown_msg_data {
1178 u32 reason_code;
1179 u32 timeout_seconds;
1180 u32 flags;
1181 u8 display_message[2048];
1182} __packed;
1183
1184struct heartbeat_msg_data {
1185 u64 seq_num;
1186 u32 reserved[8];
1187} __packed;
1188
1189/* Time Sync IC defs */
1190#define ICTIMESYNCFLAG_PROBE 0
1191#define ICTIMESYNCFLAG_SYNC 1
1192#define ICTIMESYNCFLAG_SAMPLE 2
1193
1194#ifdef __x86_64__
1195#define WLTIMEDELTA 116444736000000000L /* in 100ns unit */
1196#else
1197#define WLTIMEDELTA 116444736000000000LL
1198#endif
1199
1200struct ictimesync_data {
1201 u64 parenttime;
1202 u64 childtime;
1203 u64 roundtriptime;
1204 u8 flags;
1205} __packed;
1206
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001207struct hyperv_service_callback {
1208 u8 msg_type;
1209 char *log_msg;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -07001210 uuid_le data;
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001211 struct vmbus_channel *channel;
1212 void (*callback) (void *context);
1213};
1214
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -07001215#define MAX_SRV_VER 0x7ffffff
K. Y. Srinivasan67413352013-07-02 10:31:30 -07001216extern bool vmbus_prep_negotiate_resp(struct icmsg_hdr *,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -07001217 struct icmsg_negotiate *, u8 *, int,
1218 int);
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001219
K. Y. Srinivasaned6cfcc2015-02-28 11:18:17 -08001220void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07001221
Gerd Hoffmann90eedf02014-02-24 14:17:09 +01001222extern struct resource hyperv_mmio;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08001223
K. Y. Srinivasan37f72782012-12-01 06:46:41 -08001224/*
1225 * Negotiated version with the Host.
1226 */
1227
1228extern __u32 vmbus_proto_version;
1229
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -07001230#endif /* _HYPERV_H */