Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / hv / vmbus_packet_format.h
CommitLineData
565e7dc8
HJ
1/*
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 */
23
4bedd6be 24#ifndef _VMBUSPACKETFORMAT_H_
c88c4e4c 25#define _VMBUSPACKETFORMAT_H_
565e7dc8 26
8dc0a06a 27struct vmpacket_descriptor {
4bedd6be
GKH
28 u16 Type;
29 u16 DataOffset8;
30 u16 Length8;
31 u16 Flags;
32 u64 TransactionId;
8dc0a06a 33} __attribute__((packed));
565e7dc8 34
8dc0a06a
GKH
35struct vmpacket_header {
36 u32 PreviousPacketStartOffset;
37 struct vmpacket_descriptor Descriptor;
38} __attribute__((packed));
565e7dc8 39
8dc0a06a 40struct vmtransfer_page_range {
4bedd6be
GKH
41 u32 ByteCount;
42 u32 ByteOffset;
8dc0a06a 43} __attribute__((packed));
565e7dc8 44
8dc0a06a
GKH
45struct vmtransfer_page_packet_header {
46 struct vmpacket_descriptor d;
4bedd6be
GKH
47 u16 TransferPageSetId;
48 bool SenderOwnsSet;
49 u8 Reserved;
50 u32 RangeCount;
8dc0a06a
GKH
51 struct vmtransfer_page_range Ranges[1];
52} __attribute__((packed));
565e7dc8 53
8dc0a06a
GKH
54struct vmgpadl_packet_header {
55 struct vmpacket_descriptor d;
4bedd6be
GKH
56 u32 Gpadl;
57 u32 Reserved;
8dc0a06a 58} __attribute__((packed));
565e7dc8 59
8dc0a06a
GKH
60struct vmadd_remove_transfer_page_set {
61 struct vmpacket_descriptor d;
4bedd6be
GKH
62 u32 Gpadl;
63 u16 TransferPageSetId;
64 u16 Reserved;
8dc0a06a 65} __attribute__((packed));
565e7dc8 66
4bedd6be
GKH
67/*
68 * This structure defines a range in guest physical space that can be made to
69 * look virtually contiguous.
70 */
8dc0a06a 71struct gpa_range {
4bedd6be
GKH
72 u32 ByteCount;
73 u32 ByteOffset;
74 u64 PfnArray[0];
8dc0a06a 75};
565e7dc8 76
4bedd6be
GKH
77/*
78 * This is the format for an Establish Gpadl packet, which contains a handle by
79 * which this GPADL will be known and a set of GPA ranges associated with it.
80 * This can be converted to a MDL by the guest OS. If there are multiple GPA
81 * ranges, then the resulting MDL will be "chained," representing multiple VA
82 * ranges.
83 */
8dc0a06a
GKH
84struct vmestablish_gpadl {
85 struct vmpacket_descriptor d;
4bedd6be
GKH
86 u32 Gpadl;
87 u32 RangeCount;
8dc0a06a
GKH
88 struct gpa_range Range[1];
89} __attribute__((packed));
565e7dc8 90
4bedd6be
GKH
91/*
92 * This is the format for a Teardown Gpadl packet, which indicates that the
93 * GPADL handle in the Establish Gpadl packet will never be referenced again.
94 */
8dc0a06a
GKH
95struct vmteardown_gpadl {
96 struct vmpacket_descriptor d;
4bedd6be
GKH
97 u32 Gpadl;
98 u32 Reserved; /* for alignment to a 8-byte boundary */
8dc0a06a 99} __attribute__((packed));
565e7dc8 100
4bedd6be
GKH
101/*
102 * This is the format for a GPA-Direct packet, which contains a set of GPA
103 * ranges, in addition to commands and/or data.
104 */
8dc0a06a
GKH
105struct vmdata_gpa_direct {
106 struct vmpacket_descriptor d;
4bedd6be
GKH
107 u32 Reserved;
108 u32 RangeCount;
8dc0a06a
GKH
109 struct gpa_range Range[1];
110} __attribute__((packed));
454f18a9
BP
111
112/* This is the format for a Additional Data Packet. */
8dc0a06a
GKH
113struct vmadditional_data {
114 struct vmpacket_descriptor d;
4bedd6be
GKH
115 u64 TotalBytes;
116 u32 ByteOffset;
117 u32 ByteCount;
118 unsigned char Data[1];
8dc0a06a
GKH
119} __attribute__((packed));
120
121union vmpacket_largest_possible_header {
122 struct vmpacket_descriptor SimpleHeader;
123 struct vmtransfer_page_packet_header TransferPageHeader;
124 struct vmgpadl_packet_header GpadlHeader;
125 struct vmadd_remove_transfer_page_set AddRemoveTransferPageHeader;
126 struct vmestablish_gpadl EstablishGpadlHeader;
127 struct vmteardown_gpadl TeardownGpadlHeader;
128 struct vmdata_gpa_direct DataGpaDirectHeader;
129};
565e7dc8 130
4bedd6be
GKH
131#define VMPACKET_DATA_START_ADDRESS(__packet) \
132 (void *)(((unsigned char *)__packet) + \
8dc0a06a 133 ((struct vmpacket_descriptor)__packet)->DataOffset8 * 8)
565e7dc8 134
4bedd6be 135#define VMPACKET_DATA_LENGTH(__packet) \
8dc0a06a
GKH
136 ((((struct vmpacket_descriptor)__packet)->Length8 - \
137 ((struct vmpacket_descriptor)__packet)->DataOffset8) * 8)
565e7dc8 138
4bedd6be 139#define VMPACKET_TRANSFER_MODE(__packet) \
8dc0a06a 140 (((struct IMPACT)__packet)->Type)
565e7dc8 141
8dc0a06a 142enum vmbus_packet_type {
4bedd6be
GKH
143 VmbusPacketTypeInvalid = 0x0,
144 VmbusPacketTypeSynch = 0x1,
145 VmbusPacketTypeAddTransferPageSet = 0x2,
146 VmbusPacketTypeRemoveTransferPageSet = 0x3,
147 VmbusPacketTypeEstablishGpadl = 0x4,
148 VmbusPacketTypeTearDownGpadl = 0x5,
149 VmbusPacketTypeDataInBand = 0x6,
150 VmbusPacketTypeDataUsingTransferPages = 0x7,
151 VmbusPacketTypeDataUsingGpadl = 0x8,
152 VmbusPacketTypeDataUsingGpaDirect = 0x9,
153 VmbusPacketTypeCancelRequest = 0xa,
154 VmbusPacketTypeCompletion = 0xb,
155 VmbusPacketTypeDataUsingAdditionalPackets = 0xc,
156 VmbusPacketTypeAdditionalData = 0xd
8dc0a06a 157};
565e7dc8 158
4bedd6be
GKH
159#define VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED 1
160
161#endif