blob: a274e089df78b8670e5889753b52788bb2d5a5d0 [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
60/* 0x18 includes the proprietary packet header */
61#define MAX_PAGE_BUFFER_PACKET (0x18 + \
62 (sizeof(struct hv_page_buffer) * \
63 MAX_PAGE_BUFFER_COUNT))
64#define MAX_MULTIPAGE_BUFFER_PACKET (0x18 + \
65 sizeof(struct hv_multipage_buffer))
66
67
68#pragma pack(pop)
69
K. Y. Srinivasan7effffb2011-05-12 19:34:17 -070070struct hv_ring_buffer {
71 /* Offset in bytes from the start of ring data below */
72 u32 write_index;
73
74 /* Offset in bytes from the start of ring data below */
75 u32 read_index;
76
77 u32 interrupt_mask;
78
K. Y. Srinivasan24166032012-12-01 06:46:39 -080079 /*
80 * Win8 uses some of the reserved bits to implement
81 * interrupt driven flow management. On the send side
82 * we can request that the receiver interrupt the sender
83 * when the ring transitions from being full to being able
84 * to handle a message of size "pending_send_sz".
85 *
86 * Add necessary state for this enhancement.
K. Y. Srinivasan7effffb2011-05-12 19:34:17 -070087 */
K. Y. Srinivasan24166032012-12-01 06:46:39 -080088 u32 pending_send_sz;
89
90 u32 reserved1[12];
91
92 union {
93 struct {
94 u32 feat_pending_send_sz:1;
95 };
96 u32 value;
97 } feature_bits;
98
99 /* Pad it to PAGE_SIZE so that data starts on page boundary */
100 u8 reserved2[4028];
K. Y. Srinivasan7effffb2011-05-12 19:34:17 -0700101
102 /*
103 * Ring data starts here + RingDataStartOffset
104 * !!! DO NOT place any fields below this !!!
105 */
106 u8 buffer[0];
107} __packed;
108
109struct hv_ring_buffer_info {
110 struct hv_ring_buffer *ring_buffer;
111 u32 ring_size; /* Include the shared header */
112 spinlock_t ring_lock;
113
114 u32 ring_datasize; /* < ring_size */
115 u32 ring_data_startoffset;
116};
117
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000118/*
119 *
120 * hv_get_ringbuffer_availbytes()
121 *
122 * Get number of bytes available to read and to write to
123 * for the specified ring buffer
124 */
125static inline void
126hv_get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
127 u32 *read, u32 *write)
128{
129 u32 read_loc, write_loc, dsize;
130
131 smp_read_barrier_depends();
132
133 /* Capture the read/write indices before they changed */
134 read_loc = rbi->ring_buffer->read_index;
135 write_loc = rbi->ring_buffer->write_index;
136 dsize = rbi->ring_datasize;
137
138 *write = write_loc >= read_loc ? dsize - (write_loc - read_loc) :
139 read_loc - write_loc;
140 *read = dsize - *write;
141}
142
K. Y. Srinivasaneafa7072012-12-01 06:46:44 -0800143/*
144 * VMBUS version is 32 bit entity broken up into
145 * two 16 bit quantities: major_number. minor_number.
146 *
147 * 0 . 13 (Windows Server 2008)
148 * 1 . 1 (Windows 7)
149 * 2 . 4 (Windows 8)
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -0700150 * 3 . 0 (Windows 8 R2)
K. Y. Srinivasaneafa7072012-12-01 06:46:44 -0800151 */
152
153#define VERSION_WS2008 ((0 << 16) | (13))
154#define VERSION_WIN7 ((1 << 16) | (1))
155#define VERSION_WIN8 ((2 << 16) | (4))
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -0700156#define VERSION_WIN8_1 ((3 << 16) | (0))
K. Y. Srinivasaneafa7072012-12-01 06:46:44 -0800157
158#define VERSION_INVAL -1
159
K. Y. Srinivasan03367ef2014-04-03 18:02:45 -0700160#define VERSION_CURRENT VERSION_WIN8_1
K. Y. Srinivasanf7c6dfd2011-05-12 19:34:18 -0700161
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700162/* Make maximum size of pipe payload of 16K */
163#define MAX_PIPE_DATA_PAYLOAD (sizeof(u8) * 16384)
164
165/* Define PipeMode values. */
166#define VMBUS_PIPE_TYPE_BYTE 0x00000000
167#define VMBUS_PIPE_TYPE_MESSAGE 0x00000004
168
169/* The size of the user defined data buffer for non-pipe offers. */
170#define MAX_USER_DEFINED_BYTES 120
171
172/* The size of the user defined data buffer for pipe offers. */
173#define MAX_PIPE_USER_DEFINED_BYTES 116
174
175/*
176 * At the center of the Channel Management library is the Channel Offer. This
177 * struct contains the fundamental information about an offer.
178 */
179struct vmbus_channel_offer {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700180 uuid_le if_type;
181 uuid_le if_instance;
K. Y. Srinivasan29423b72012-12-01 06:46:40 -0800182
183 /*
184 * These two fields are not currently used.
185 */
186 u64 reserved1;
187 u64 reserved2;
188
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700189 u16 chn_flags;
190 u16 mmio_megabytes; /* in bytes * 1024 * 1024 */
191
192 union {
193 /* Non-pipes: The user has MAX_USER_DEFINED_BYTES bytes. */
194 struct {
195 unsigned char user_def[MAX_USER_DEFINED_BYTES];
196 } std;
197
198 /*
199 * Pipes:
200 * The following sructure is an integrated pipe protocol, which
201 * is implemented on top of standard user-defined data. Pipe
202 * clients have MAX_PIPE_USER_DEFINED_BYTES left for their own
203 * use.
204 */
205 struct {
206 u32 pipe_mode;
207 unsigned char user_def[MAX_PIPE_USER_DEFINED_BYTES];
208 } pipe;
209 } u;
K. Y. Srinivasan29423b72012-12-01 06:46:40 -0800210 /*
211 * The sub_channel_index is defined in win8.
212 */
213 u16 sub_channel_index;
214 u16 reserved3;
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700215} __packed;
216
217/* Server Flags */
218#define VMBUS_CHANNEL_ENUMERATE_DEVICE_INTERFACE 1
219#define VMBUS_CHANNEL_SERVER_SUPPORTS_TRANSFER_PAGES 2
220#define VMBUS_CHANNEL_SERVER_SUPPORTS_GPADLS 4
221#define VMBUS_CHANNEL_NAMED_PIPE_MODE 0x10
222#define VMBUS_CHANNEL_LOOPBACK_OFFER 0x100
223#define VMBUS_CHANNEL_PARENT_OFFER 0x200
224#define VMBUS_CHANNEL_REQUEST_MONITORED_NOTIFICATION 0x400
225
K. Y. Srinivasan50ed40e2011-05-12 19:34:20 -0700226struct vmpacket_descriptor {
227 u16 type;
228 u16 offset8;
229 u16 len8;
230 u16 flags;
231 u64 trans_id;
232} __packed;
233
234struct vmpacket_header {
235 u32 prev_pkt_start_offset;
236 struct vmpacket_descriptor descriptor;
237} __packed;
238
239struct vmtransfer_page_range {
240 u32 byte_count;
241 u32 byte_offset;
242} __packed;
243
244struct vmtransfer_page_packet_header {
245 struct vmpacket_descriptor d;
246 u16 xfer_pageset_id;
K. Y. Srinivasan1508d812012-08-16 08:23:20 -0700247 u8 sender_owns_set;
K. Y. Srinivasan50ed40e2011-05-12 19:34:20 -0700248 u8 reserved;
249 u32 range_cnt;
250 struct vmtransfer_page_range ranges[1];
251} __packed;
252
253struct vmgpadl_packet_header {
254 struct vmpacket_descriptor d;
255 u32 gpadl;
256 u32 reserved;
257} __packed;
258
259struct vmadd_remove_transfer_page_set {
260 struct vmpacket_descriptor d;
261 u32 gpadl;
262 u16 xfer_pageset_id;
263 u16 reserved;
264} __packed;
265
266/*
267 * This structure defines a range in guest physical space that can be made to
268 * look virtually contiguous.
269 */
270struct gpa_range {
271 u32 byte_count;
272 u32 byte_offset;
273 u64 pfn_array[0];
274};
275
276/*
277 * This is the format for an Establish Gpadl packet, which contains a handle by
278 * which this GPADL will be known and a set of GPA ranges associated with it.
279 * This can be converted to a MDL by the guest OS. If there are multiple GPA
280 * ranges, then the resulting MDL will be "chained," representing multiple VA
281 * ranges.
282 */
283struct vmestablish_gpadl {
284 struct vmpacket_descriptor d;
285 u32 gpadl;
286 u32 range_cnt;
287 struct gpa_range range[1];
288} __packed;
289
290/*
291 * This is the format for a Teardown Gpadl packet, which indicates that the
292 * GPADL handle in the Establish Gpadl packet will never be referenced again.
293 */
294struct vmteardown_gpadl {
295 struct vmpacket_descriptor d;
296 u32 gpadl;
297 u32 reserved; /* for alignment to a 8-byte boundary */
298} __packed;
299
300/*
301 * This is the format for a GPA-Direct packet, which contains a set of GPA
302 * ranges, in addition to commands and/or data.
303 */
304struct vmdata_gpa_direct {
305 struct vmpacket_descriptor d;
306 u32 reserved;
307 u32 range_cnt;
308 struct gpa_range range[1];
309} __packed;
310
311/* This is the format for a Additional Data Packet. */
312struct vmadditional_data {
313 struct vmpacket_descriptor d;
314 u64 total_bytes;
315 u32 offset;
316 u32 byte_cnt;
317 unsigned char data[1];
318} __packed;
319
320union vmpacket_largest_possible_header {
321 struct vmpacket_descriptor simple_hdr;
322 struct vmtransfer_page_packet_header xfer_page_hdr;
323 struct vmgpadl_packet_header gpadl_hdr;
324 struct vmadd_remove_transfer_page_set add_rm_xfer_page_hdr;
325 struct vmestablish_gpadl establish_gpadl_hdr;
326 struct vmteardown_gpadl teardown_gpadl_hdr;
327 struct vmdata_gpa_direct data_gpa_direct_hdr;
328};
329
330#define VMPACKET_DATA_START_ADDRESS(__packet) \
331 (void *)(((unsigned char *)__packet) + \
332 ((struct vmpacket_descriptor)__packet)->offset8 * 8)
333
334#define VMPACKET_DATA_LENGTH(__packet) \
335 ((((struct vmpacket_descriptor)__packet)->len8 - \
336 ((struct vmpacket_descriptor)__packet)->offset8) * 8)
337
338#define VMPACKET_TRANSFER_MODE(__packet) \
339 (((struct IMPACT)__packet)->type)
340
341enum vmbus_packet_type {
342 VM_PKT_INVALID = 0x0,
343 VM_PKT_SYNCH = 0x1,
344 VM_PKT_ADD_XFER_PAGESET = 0x2,
345 VM_PKT_RM_XFER_PAGESET = 0x3,
346 VM_PKT_ESTABLISH_GPADL = 0x4,
347 VM_PKT_TEARDOWN_GPADL = 0x5,
348 VM_PKT_DATA_INBAND = 0x6,
349 VM_PKT_DATA_USING_XFER_PAGES = 0x7,
350 VM_PKT_DATA_USING_GPADL = 0x8,
351 VM_PKT_DATA_USING_GPA_DIRECT = 0x9,
352 VM_PKT_CANCEL_REQUEST = 0xa,
353 VM_PKT_COMP = 0xb,
354 VM_PKT_DATA_USING_ADDITIONAL_PKT = 0xc,
355 VM_PKT_ADDITIONAL_DATA = 0xd
356};
357
358#define VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED 1
K. Y. Srinivasan517d8dc2011-05-12 19:34:19 -0700359
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700360
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700361/* Version 1 messages */
362enum vmbus_channel_message_type {
363 CHANNELMSG_INVALID = 0,
364 CHANNELMSG_OFFERCHANNEL = 1,
365 CHANNELMSG_RESCIND_CHANNELOFFER = 2,
366 CHANNELMSG_REQUESTOFFERS = 3,
367 CHANNELMSG_ALLOFFERS_DELIVERED = 4,
368 CHANNELMSG_OPENCHANNEL = 5,
369 CHANNELMSG_OPENCHANNEL_RESULT = 6,
370 CHANNELMSG_CLOSECHANNEL = 7,
371 CHANNELMSG_GPADL_HEADER = 8,
372 CHANNELMSG_GPADL_BODY = 9,
373 CHANNELMSG_GPADL_CREATED = 10,
374 CHANNELMSG_GPADL_TEARDOWN = 11,
375 CHANNELMSG_GPADL_TORNDOWN = 12,
376 CHANNELMSG_RELID_RELEASED = 13,
377 CHANNELMSG_INITIATE_CONTACT = 14,
378 CHANNELMSG_VERSION_RESPONSE = 15,
379 CHANNELMSG_UNLOAD = 16,
380#ifdef VMBUS_FEATURE_PARENT_OR_PEER_MEMORY_MAPPED_INTO_A_CHILD
381 CHANNELMSG_VIEWRANGE_ADD = 17,
382 CHANNELMSG_VIEWRANGE_REMOVE = 18,
383#endif
384 CHANNELMSG_COUNT
385};
386
387struct vmbus_channel_message_header {
388 enum vmbus_channel_message_type msgtype;
389 u32 padding;
390} __packed;
391
392/* Query VMBus Version parameters */
393struct vmbus_channel_query_vmbus_version {
394 struct vmbus_channel_message_header header;
395 u32 version;
396} __packed;
397
398/* VMBus Version Supported parameters */
399struct vmbus_channel_version_supported {
400 struct vmbus_channel_message_header header;
K. Y. Srinivasan1508d812012-08-16 08:23:20 -0700401 u8 version_supported;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700402} __packed;
403
404/* Offer Channel parameters */
405struct vmbus_channel_offer_channel {
406 struct vmbus_channel_message_header header;
407 struct vmbus_channel_offer offer;
408 u32 child_relid;
409 u8 monitorid;
K. Y. Srinivasan29423b72012-12-01 06:46:40 -0800410 /*
411 * win7 and beyond splits this field into a bit field.
412 */
413 u8 monitor_allocated:1;
414 u8 reserved:7;
415 /*
416 * These are new fields added in win7 and later.
417 * Do not access these fields without checking the
418 * negotiated protocol.
419 *
420 * If "is_dedicated_interrupt" is set, we must not set the
421 * associated bit in the channel bitmap while sending the
422 * interrupt to the host.
423 *
424 * connection_id is to be used in signaling the host.
425 */
426 u16 is_dedicated_interrupt:1;
427 u16 reserved1:15;
428 u32 connection_id;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700429} __packed;
430
431/* Rescind Offer parameters */
432struct vmbus_channel_rescind_offer {
433 struct vmbus_channel_message_header header;
434 u32 child_relid;
435} __packed;
436
437/*
438 * Request Offer -- no parameters, SynIC message contains the partition ID
439 * Set Snoop -- no parameters, SynIC message contains the partition ID
440 * Clear Snoop -- no parameters, SynIC message contains the partition ID
441 * All Offers Delivered -- no parameters, SynIC message contains the partition
442 * ID
443 * Flush Client -- no parameters, SynIC message contains the partition ID
444 */
445
446/* Open Channel parameters */
447struct vmbus_channel_open_channel {
448 struct vmbus_channel_message_header header;
449
450 /* Identifies the specific VMBus channel that is being opened. */
451 u32 child_relid;
452
453 /* ID making a particular open request at a channel offer unique. */
454 u32 openid;
455
456 /* GPADL for the channel's ring buffer. */
457 u32 ringbuffer_gpadlhandle;
458
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800459 /*
460 * Starting with win8, this field will be used to specify
461 * the target virtual processor on which to deliver the interrupt for
462 * the host to guest communication.
463 * Prior to win8, incoming channel interrupts would only
464 * be delivered on cpu 0. Setting this value to 0 would
465 * preserve the earlier behavior.
466 */
467 u32 target_vp;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700468
469 /*
470 * The upstream ring buffer begins at offset zero in the memory
471 * described by RingBufferGpadlHandle. The downstream ring buffer
472 * follows it at this offset (in pages).
473 */
474 u32 downstream_ringbuffer_pageoffset;
475
476 /* User-specific data to be passed along to the server endpoint. */
477 unsigned char userdata[MAX_USER_DEFINED_BYTES];
478} __packed;
479
480/* Open Channel Result parameters */
481struct vmbus_channel_open_result {
482 struct vmbus_channel_message_header header;
483 u32 child_relid;
484 u32 openid;
485 u32 status;
486} __packed;
487
488/* Close channel parameters; */
489struct vmbus_channel_close_channel {
490 struct vmbus_channel_message_header header;
491 u32 child_relid;
492} __packed;
493
494/* Channel Message GPADL */
495#define GPADL_TYPE_RING_BUFFER 1
496#define GPADL_TYPE_SERVER_SAVE_AREA 2
497#define GPADL_TYPE_TRANSACTION 8
498
499/*
500 * The number of PFNs in a GPADL message is defined by the number of
501 * pages that would be spanned by ByteCount and ByteOffset. If the
502 * implied number of PFNs won't fit in this packet, there will be a
503 * follow-up packet that contains more.
504 */
505struct vmbus_channel_gpadl_header {
506 struct vmbus_channel_message_header header;
507 u32 child_relid;
508 u32 gpadl;
509 u16 range_buflen;
510 u16 rangecount;
511 struct gpa_range range[0];
512} __packed;
513
514/* This is the followup packet that contains more PFNs. */
515struct vmbus_channel_gpadl_body {
516 struct vmbus_channel_message_header header;
517 u32 msgnumber;
518 u32 gpadl;
519 u64 pfn[0];
520} __packed;
521
522struct vmbus_channel_gpadl_created {
523 struct vmbus_channel_message_header header;
524 u32 child_relid;
525 u32 gpadl;
526 u32 creation_status;
527} __packed;
528
529struct vmbus_channel_gpadl_teardown {
530 struct vmbus_channel_message_header header;
531 u32 child_relid;
532 u32 gpadl;
533} __packed;
534
535struct vmbus_channel_gpadl_torndown {
536 struct vmbus_channel_message_header header;
537 u32 gpadl;
538} __packed;
539
540#ifdef VMBUS_FEATURE_PARENT_OR_PEER_MEMORY_MAPPED_INTO_A_CHILD
541struct vmbus_channel_view_range_add {
542 struct vmbus_channel_message_header header;
543 PHYSICAL_ADDRESS viewrange_base;
544 u64 viewrange_length;
545 u32 child_relid;
546} __packed;
547
548struct vmbus_channel_view_range_remove {
549 struct vmbus_channel_message_header header;
550 PHYSICAL_ADDRESS viewrange_base;
551 u32 child_relid;
552} __packed;
553#endif
554
555struct vmbus_channel_relid_released {
556 struct vmbus_channel_message_header header;
557 u32 child_relid;
558} __packed;
559
560struct vmbus_channel_initiate_contact {
561 struct vmbus_channel_message_header header;
562 u32 vmbus_version_requested;
K. Y. Srinivasane28bab42014-01-15 17:12:58 -0800563 u32 target_vcpu; /* The VCPU the host should respond to */
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700564 u64 interrupt_page;
565 u64 monitor_page1;
566 u64 monitor_page2;
567} __packed;
568
569struct vmbus_channel_version_response {
570 struct vmbus_channel_message_header header;
K. Y. Srinivasan1508d812012-08-16 08:23:20 -0700571 u8 version_supported;
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700572} __packed;
573
574enum vmbus_channel_state {
575 CHANNEL_OFFER_STATE,
576 CHANNEL_OPENING_STATE,
577 CHANNEL_OPEN_STATE,
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700578 CHANNEL_OPENED_STATE,
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700579};
580
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700581/*
582 * Represents each channel msg on the vmbus connection This is a
583 * variable-size data structure depending on the msg type itself
584 */
585struct vmbus_channel_msginfo {
586 /* Bookkeeping stuff */
587 struct list_head msglistentry;
588
589 /* So far, this is only used to handle gpadl body message */
590 struct list_head submsglist;
591
592 /* Synchronize the request/response if needed */
593 struct completion waitevent;
594 union {
595 struct vmbus_channel_version_supported version_supported;
596 struct vmbus_channel_open_result open_result;
597 struct vmbus_channel_gpadl_torndown gpadl_torndown;
598 struct vmbus_channel_gpadl_created gpadl_created;
599 struct vmbus_channel_version_response version_response;
600 } response;
601
602 u32 msgsize;
603 /*
604 * The channel message that goes out on the "wire".
605 * It will contain at minimum the VMBUS_CHANNEL_MESSAGE_HEADER header
606 */
607 unsigned char msg[0];
608};
609
K. Y. Srinivasanf9f1db82011-06-06 15:49:58 -0700610struct vmbus_close_msg {
611 struct vmbus_channel_msginfo info;
612 struct vmbus_channel_close_channel msg;
613};
614
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800615/* Define connection identifier type. */
616union hv_connection_id {
617 u32 asu32;
618 struct {
619 u32 id:24;
620 u32 reserved:8;
621 } u;
622};
623
624/* Definition of the hv_signal_event hypercall input structure. */
625struct hv_input_signal_event {
626 union hv_connection_id connectionid;
627 u16 flag_number;
628 u16 rsvdz;
629};
630
631struct hv_input_signal_event_buffer {
632 u64 align8;
633 struct hv_input_signal_event event;
634};
635
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700636struct vmbus_channel {
637 struct list_head listentry;
638
639 struct hv_device *device_obj;
640
641 struct work_struct work;
642
643 enum vmbus_channel_state state;
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700644
645 struct vmbus_channel_offer_channel offermsg;
646 /*
647 * These are based on the OfferMsg.MonitorId.
648 * Save it here for easy access.
649 */
650 u8 monitor_grp;
651 u8 monitor_bit;
652
653 u32 ringbuffer_gpadlhandle;
654
655 /* Allocated memory for ring buffer */
656 void *ringbuffer_pages;
657 u32 ringbuffer_pagecount;
658 struct hv_ring_buffer_info outbound; /* send to parent */
659 struct hv_ring_buffer_info inbound; /* receive from parent */
660 spinlock_t inbound_lock;
661 struct workqueue_struct *controlwq;
662
K. Y. Srinivasanf9f1db82011-06-06 15:49:58 -0700663 struct vmbus_close_msg close_msg;
664
K. Y. Srinivasan7d7c75c2011-06-06 15:49:57 -0700665 /* Channel callback are invoked in this workqueue context */
666 /* HANDLE dataWorkQueue; */
667
668 void (*onchannel_callback)(void *context);
669 void *channel_callback_context;
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800670
671 /*
672 * A channel can be marked for efficient (batched)
673 * reading:
674 * If batched_reading is set to "true", we read until the
675 * channel is empty and hold off interrupts from the host
676 * during the entire read process.
677 * If batched_reading is set to "false", the client is not
678 * going to perform batched reading.
679 *
680 * By default we will enable batched reading; specific
681 * drivers that don't want this behavior can turn it off.
682 */
683
684 bool batched_reading;
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800685
686 bool is_dedicated_interrupt;
687 struct hv_input_signal_event_buffer sig_buf;
688 struct hv_input_signal_event *sig_event;
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800689
690 /*
691 * Starting with win8, this field will be used to specify
692 * the target virtual processor on which to deliver the interrupt for
693 * the host to guest communication.
694 * Prior to win8, incoming channel interrupts would only
695 * be delivered on cpu 0. Setting this value to 0 would
696 * preserve the earlier behavior.
697 */
698 u32 target_vp;
K. Y. Srinivasand3ba7202014-04-08 18:45:53 -0700699 /* The corresponding CPUID in the guest */
700 u32 target_cpu;
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700701 /*
702 * Support for sub-channels. For high performance devices,
703 * it will be useful to have multiple sub-channels to support
704 * a scalable communication infrastructure with the host.
705 * The support for sub-channels is implemented as an extention
706 * to the current infrastructure.
707 * The initial offer is considered the primary channel and this
708 * offer message will indicate if the host supports sub-channels.
709 * The guest is free to ask for sub-channels to be offerred and can
710 * open these sub-channels as a normal "primary" channel. However,
711 * all sub-channels will have the same type and instance guids as the
712 * primary channel. Requests sent on a given channel will result in a
713 * response on the same channel.
714 */
715
716 /*
717 * Sub-channel creation callback. This callback will be called in
718 * process context when a sub-channel offer is received from the host.
719 * The guest can open the sub-channel in the context of this callback.
720 */
721 void (*sc_creation_callback)(struct vmbus_channel *new_sc);
722
723 spinlock_t sc_lock;
724 /*
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. Srinivasan7d7c75c2011-06-06 15:49:57 -0700737};
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700738
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800739static inline void set_channel_read_state(struct vmbus_channel *c, bool state)
740{
741 c->batched_reading = state;
742}
743
K. Y. Srinivasan8a7206a2014-02-03 12:42:45 -0800744static inline void set_per_channel_state(struct vmbus_channel *c, void *s)
745{
746 c->per_channel_state = s;
747}
748
749static inline void *get_per_channel_state(struct vmbus_channel *c)
750{
751 return c->per_channel_state;
752}
753
K. Y. Srinivasanb56dda02011-05-12 19:34:21 -0700754void vmbus_onmessage(void *context);
755
756int vmbus_request_offers(void);
757
K. Y. Srinivasane68d2972013-05-23 12:02:32 -0700758/*
759 * APIs for managing sub-channels.
760 */
761
762void vmbus_set_sc_create_callback(struct vmbus_channel *primary_channel,
763 void (*sc_cr_cb)(struct vmbus_channel *new_sc));
764
765/*
766 * Retrieve the (sub) channel on which to send an outgoing request.
767 * When a primary channel has multiple sub-channels, we choose a
768 * channel whose VCPU binding is closest to the VCPU on which
769 * this call is being made.
770 */
771struct vmbus_channel *vmbus_get_outgoing_channel(struct vmbus_channel *primary);
772
773/*
774 * Check if sub-channels have already been offerred. This API will be useful
775 * when the driver is unloaded after establishing sub-channels. In this case,
776 * when the driver is re-loaded, the driver would have to check if the
777 * subchannels have already been established before attempting to request
778 * the creation of sub-channels.
779 * This function returns TRUE to indicate that subchannels have already been
780 * created.
781 * This function should be invoked after setting the callback function for
782 * sub-channel creation.
783 */
784bool vmbus_are_subchannels_present(struct vmbus_channel *primary);
785
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700786/* The format must be the same as struct vmdata_gpa_direct */
787struct vmbus_channel_packet_page_buffer {
788 u16 type;
789 u16 dataoffset8;
790 u16 length8;
791 u16 flags;
792 u64 transactionid;
793 u32 reserved;
794 u32 rangecount;
795 struct hv_page_buffer range[MAX_PAGE_BUFFER_COUNT];
796} __packed;
797
798/* The format must be the same as struct vmdata_gpa_direct */
799struct vmbus_channel_packet_multipage_buffer {
800 u16 type;
801 u16 dataoffset8;
802 u16 length8;
803 u16 flags;
804 u64 transactionid;
805 u32 reserved;
806 u32 rangecount; /* Always 1 in this case */
807 struct hv_multipage_buffer range;
808} __packed;
809
810
811extern int vmbus_open(struct vmbus_channel *channel,
812 u32 send_ringbuffersize,
813 u32 recv_ringbuffersize,
814 void *userdata,
815 u32 userdatalen,
816 void(*onchannel_callback)(void *context),
817 void *context);
818
819extern void vmbus_close(struct vmbus_channel *channel);
820
821extern int vmbus_sendpacket(struct vmbus_channel *channel,
K. Y. Srinivasan011a7c32014-02-01 19:02:20 -0800822 void *buffer,
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700823 u32 bufferLen,
824 u64 requestid,
825 enum vmbus_packet_type type,
826 u32 flags);
827
828extern int vmbus_sendpacket_pagebuffer(struct vmbus_channel *channel,
829 struct hv_page_buffer pagebuffers[],
830 u32 pagecount,
831 void *buffer,
832 u32 bufferlen,
833 u64 requestid);
834
835extern int vmbus_sendpacket_multipagebuffer(struct vmbus_channel *channel,
836 struct hv_multipage_buffer *mpb,
837 void *buffer,
838 u32 bufferlen,
839 u64 requestid);
840
841extern int vmbus_establish_gpadl(struct vmbus_channel *channel,
842 void *kbuffer,
843 u32 size,
844 u32 *gpadl_handle);
845
846extern int vmbus_teardown_gpadl(struct vmbus_channel *channel,
847 u32 gpadl_handle);
848
849extern int vmbus_recvpacket(struct vmbus_channel *channel,
850 void *buffer,
851 u32 bufferlen,
852 u32 *buffer_actual_len,
853 u64 *requestid);
854
855extern int vmbus_recvpacket_raw(struct vmbus_channel *channel,
856 void *buffer,
857 u32 bufferlen,
858 u32 *buffer_actual_len,
859 u64 *requestid);
860
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700861
K. Y. Srinivasanc35470b2011-05-12 19:34:22 -0700862extern void vmbus_ontimer(unsigned long data);
863
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700864/* Base driver object */
865struct hv_driver {
866 const char *name;
867
868 /* the device type supported by this driver */
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700869 uuid_le dev_type;
K. Y. Srinivasan2e2c1d12011-08-25 09:48:31 -0700870 const struct hv_vmbus_device_id *id_table;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700871
872 struct device_driver driver;
873
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700874 int (*probe)(struct hv_device *, const struct hv_vmbus_device_id *);
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700875 int (*remove)(struct hv_device *);
876 void (*shutdown)(struct hv_device *);
877
878};
879
880/* Base device object */
881struct hv_device {
882 /* the device type id of this device */
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700883 uuid_le dev_type;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700884
885 /* the device instance id of this device */
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700886 uuid_le dev_instance;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700887
888 struct device device;
889
890 struct vmbus_channel *channel;
K. Y. Srinivasan35ea09c2011-05-12 19:34:24 -0700891};
892
K. Y. Srinivasan27b5b3c2011-05-12 19:34:25 -0700893
894static inline struct hv_device *device_to_hv_device(struct device *d)
895{
896 return container_of(d, struct hv_device, device);
897}
898
899static inline struct hv_driver *drv_to_hv_drv(struct device_driver *d)
900{
901 return container_of(d, struct hv_driver, driver);
902}
903
K. Y. Srinivasanab101e82011-09-13 10:59:40 -0700904static inline void hv_set_drvdata(struct hv_device *dev, void *data)
905{
906 dev_set_drvdata(&dev->device, data);
907}
908
909static inline void *hv_get_drvdata(struct hv_device *dev)
910{
911 return dev_get_drvdata(&dev->device);
912}
K. Y. Srinivasan27b5b3c2011-05-12 19:34:25 -0700913
914/* Vmbus interface */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700915#define vmbus_driver_register(driver) \
916 __vmbus_driver_register(driver, THIS_MODULE, KBUILD_MODNAME)
917int __must_check __vmbus_driver_register(struct hv_driver *hv_driver,
918 struct module *owner,
919 const char *mod_name);
920void vmbus_driver_unregister(struct hv_driver *hv_driver);
K. Y. Srinivasan27b5b3c2011-05-12 19:34:25 -0700921
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -0700922/**
923 * VMBUS_DEVICE - macro used to describe a specific hyperv vmbus device
924 *
925 * This macro is used to create a struct hv_vmbus_device_id that matches a
926 * specific device.
927 */
928#define VMBUS_DEVICE(g0, g1, g2, g3, g4, g5, g6, g7, \
929 g8, g9, ga, gb, gc, gd, ge, gf) \
930 .guid = { g0, g1, g2, g3, g4, g5, g6, g7, \
931 g8, g9, ga, gb, gc, gd, ge, gf },
932
K. Y. Srinivasanb1897022011-05-12 19:34:26 -0700933/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800934 * GUID definitions of various offer types - services offered to the guest.
935 */
936
937/*
938 * Network GUID
939 * {f8615163-df3e-46c5-913f-f2d2f965ed0e}
940 */
941#define HV_NIC_GUID \
942 .guid = { \
943 0x63, 0x51, 0x61, 0xf8, 0x3e, 0xdf, 0xc5, 0x46, \
944 0x91, 0x3f, 0xf2, 0xd2, 0xf9, 0x65, 0xed, 0x0e \
945 }
946
947/*
948 * IDE GUID
949 * {32412632-86cb-44a2-9b5c-50d1417354f5}
950 */
951#define HV_IDE_GUID \
952 .guid = { \
953 0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44, \
954 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5 \
955 }
956
957/*
958 * SCSI GUID
959 * {ba6163d9-04a1-4d29-b605-72e2ffb1dc7f}
960 */
961#define HV_SCSI_GUID \
962 .guid = { \
963 0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d, \
964 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f \
965 }
966
967/*
968 * Shutdown GUID
969 * {0e0b6031-5213-4934-818b-38d90ced39db}
970 */
971#define HV_SHUTDOWN_GUID \
972 .guid = { \
973 0x31, 0x60, 0x0b, 0x0e, 0x13, 0x52, 0x34, 0x49, \
974 0x81, 0x8b, 0x38, 0xd9, 0x0c, 0xed, 0x39, 0xdb \
975 }
976
977/*
978 * Time Synch GUID
979 * {9527E630-D0AE-497b-ADCE-E80AB0175CAF}
980 */
981#define HV_TS_GUID \
982 .guid = { \
983 0x30, 0xe6, 0x27, 0x95, 0xae, 0xd0, 0x7b, 0x49, \
984 0xad, 0xce, 0xe8, 0x0a, 0xb0, 0x17, 0x5c, 0xaf \
985 }
986
987/*
988 * Heartbeat GUID
989 * {57164f39-9115-4e78-ab55-382f3bd5422d}
990 */
991#define HV_HEART_BEAT_GUID \
992 .guid = { \
993 0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e, \
994 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d \
995 }
996
997/*
998 * KVP GUID
999 * {a9a0f4e7-5a45-4d96-b827-8a841e8c03e6}
1000 */
1001#define HV_KVP_GUID \
1002 .guid = { \
1003 0xe7, 0xf4, 0xa0, 0xa9, 0x45, 0x5a, 0x96, 0x4d, \
1004 0xb8, 0x27, 0x8a, 0x84, 0x1e, 0x8c, 0x3, 0xe6 \
1005 }
1006
1007/*
1008 * Dynamic memory GUID
1009 * {525074dc-8985-46e2-8057-a307dc18a502}
1010 */
1011#define HV_DM_GUID \
1012 .guid = { \
1013 0xdc, 0x74, 0x50, 0X52, 0x85, 0x89, 0xe2, 0x46, \
1014 0x80, 0x57, 0xa3, 0x07, 0xdc, 0x18, 0xa5, 0x02 \
1015 }
1016
1017/*
1018 * Mouse GUID
1019 * {cfa8b69e-5b4a-4cc0-b98b-8ba1a1f3f95a}
1020 */
1021#define HV_MOUSE_GUID \
1022 .guid = { \
1023 0x9e, 0xb6, 0xa8, 0xcf, 0x4a, 0x5b, 0xc0, 0x4c, \
1024 0xb9, 0x8b, 0x8b, 0xa1, 0xa1, 0xf3, 0xf9, 0x5a \
1025 }
1026
1027/*
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07001028 * VSS (Backup/Restore) GUID
1029 */
1030#define HV_VSS_GUID \
1031 .guid = { \
1032 0x29, 0x2e, 0xfa, 0x35, 0x23, 0xea, 0x36, 0x42, \
1033 0x96, 0xae, 0x3a, 0x6e, 0xba, 0xcb, 0xa4, 0x40 \
1034 }
1035/*
Haiyang Zhang68a2d20b2013-04-29 15:05:42 -07001036 * Synthetic Video GUID
1037 * {DA0A7802-E377-4aac-8E77-0558EB1073F8}
1038 */
1039#define HV_SYNTHVID_GUID \
1040 .guid = { \
1041 0x02, 0x78, 0x0a, 0xda, 0x77, 0xe3, 0xac, 0x4a, \
1042 0x8e, 0x77, 0x05, 0x58, 0xeb, 0x10, 0x73, 0xf8 \
1043 }
1044
Haiyang Zhang68a2d20b2013-04-29 15:05:42 -07001045/*
K. Y. Srinivasan98b80d82013-05-23 12:02:33 -07001046 * Synthetic FC GUID
1047 * {2f9bcc4a-0069-4af3-b76b-6fd0be528cda}
1048 */
1049#define HV_SYNTHFC_GUID \
1050 .guid = { \
1051 0x4A, 0xCC, 0x9B, 0x2F, 0x69, 0x00, 0xF3, 0x4A, \
1052 0xB7, 0x6B, 0x6F, 0xD0, 0xBE, 0x52, 0x8C, 0xDA \
1053 }
1054
1055/*
K. Y. Srinivasan013254762014-02-16 11:34:30 -08001056 * Guest File Copy Service
1057 * {34D14BE3-DEE4-41c8-9AE7-6B174977C192}
1058 */
1059
1060#define HV_FCOPY_GUID \
1061 .guid = { \
1062 0xE3, 0x4B, 0xD1, 0x34, 0xE4, 0xDE, 0xC8, 0x41, \
1063 0x9A, 0xE7, 0x6B, 0x17, 0x49, 0x77, 0xC1, 0x92 \
1064 }
1065
1066/*
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001067 * Common header for Hyper-V ICs
1068 */
1069
1070#define ICMSGTYPE_NEGOTIATE 0
1071#define ICMSGTYPE_HEARTBEAT 1
1072#define ICMSGTYPE_KVPEXCHANGE 2
1073#define ICMSGTYPE_SHUTDOWN 3
1074#define ICMSGTYPE_TIMESYNC 4
1075#define ICMSGTYPE_VSS 5
1076
1077#define ICMSGHDRFLAG_TRANSACTION 1
1078#define ICMSGHDRFLAG_REQUEST 2
1079#define ICMSGHDRFLAG_RESPONSE 4
1080
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001081
K. Y. Srinivasana29b6432011-09-18 10:31:33 -07001082/*
1083 * While we want to handle util services as regular devices,
1084 * there is only one instance of each of these services; so
1085 * we statically allocate the service specific state.
1086 */
1087
1088struct hv_util_service {
1089 u8 *recv_buffer;
1090 void (*util_cb)(void *);
1091 int (*util_init)(struct hv_util_service *);
1092 void (*util_deinit)(void);
1093};
1094
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001095struct vmbuspipe_hdr {
1096 u32 flags;
1097 u32 msgsize;
1098} __packed;
1099
1100struct ic_version {
1101 u16 major;
1102 u16 minor;
1103} __packed;
1104
1105struct icmsg_hdr {
1106 struct ic_version icverframe;
1107 u16 icmsgtype;
1108 struct ic_version icvermsg;
1109 u16 icmsgsize;
1110 u32 status;
1111 u8 ictransaction_id;
1112 u8 icflags;
1113 u8 reserved[2];
1114} __packed;
1115
1116struct icmsg_negotiate {
1117 u16 icframe_vercnt;
1118 u16 icmsg_vercnt;
1119 u32 reserved;
1120 struct ic_version icversion_data[1]; /* any size array */
1121} __packed;
1122
1123struct shutdown_msg_data {
1124 u32 reason_code;
1125 u32 timeout_seconds;
1126 u32 flags;
1127 u8 display_message[2048];
1128} __packed;
1129
1130struct heartbeat_msg_data {
1131 u64 seq_num;
1132 u32 reserved[8];
1133} __packed;
1134
1135/* Time Sync IC defs */
1136#define ICTIMESYNCFLAG_PROBE 0
1137#define ICTIMESYNCFLAG_SYNC 1
1138#define ICTIMESYNCFLAG_SAMPLE 2
1139
1140#ifdef __x86_64__
1141#define WLTIMEDELTA 116444736000000000L /* in 100ns unit */
1142#else
1143#define WLTIMEDELTA 116444736000000000LL
1144#endif
1145
1146struct ictimesync_data {
1147 u64 parenttime;
1148 u64 childtime;
1149 u64 roundtriptime;
1150 u8 flags;
1151} __packed;
1152
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001153struct hyperv_service_callback {
1154 u8 msg_type;
1155 char *log_msg;
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -07001156 uuid_le data;
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001157 struct vmbus_channel *channel;
1158 void (*callback) (void *context);
1159};
1160
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -07001161#define MAX_SRV_VER 0x7ffffff
K. Y. Srinivasan67413352013-07-02 10:31:30 -07001162extern bool vmbus_prep_negotiate_resp(struct icmsg_hdr *,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -07001163 struct icmsg_negotiate *, u8 *, int,
1164 int);
K. Y. Srinivasanb1897022011-05-12 19:34:26 -07001165
K. Y. Srinivasan29394372012-01-27 15:55:58 -08001166int hv_kvp_init(struct hv_util_service *);
1167void hv_kvp_deinit(void);
1168void hv_kvp_onchannelcallback(void *);
1169
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07001170int hv_vss_init(struct hv_util_service *);
1171void hv_vss_deinit(void);
1172void hv_vss_onchannelcallback(void *);
1173
Gerd Hoffmann90eedf02014-02-24 14:17:09 +01001174extern struct resource hyperv_mmio;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08001175
K. Y. Srinivasan37f72782012-12-01 06:46:41 -08001176/*
1177 * Negotiated version with the Host.
1178 */
1179
1180extern __u32 vmbus_proto_version;
1181
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -07001182#endif /* _HYPERV_H */