blob: 6d160a53914e3bb6540060c0913189bb8ff8f8b3 [file] [log] [blame]
Hank Janssen565e7dc2009-07-13 15:15:47 -07001/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
21 *
22 */
23
Bill Pemberton454f18a2009-07-27 16:47:24 -040024/* vstorage.w revision number. This is used in the case of a version match, */
25/* to alert the user that structure sizes may be mismatched even though the */
26/* protocol versions match. */
27
Hank Janssen565e7dc2009-07-13 15:15:47 -070028#define REVISION_STRING(REVISION_) #REVISION_
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070029#define FILL_VMSTOR_REVISION(RESULT_LVALUE_) \
30{ \
31 char *revisionString = REVISION_STRING($Revision: 6 $) + 11; \
32 RESULT_LVALUE_ = 0; \
33 while (*revisionString >= '0' && *revisionString <= '9') { \
34 RESULT_LVALUE_ *= 10; \
35 RESULT_LVALUE_ += *revisionString - '0'; \
36 revisionString++; \
37 } \
Hank Janssen565e7dc2009-07-13 15:15:47 -070038}
39
Bill Pemberton454f18a2009-07-27 16:47:24 -040040/* Major/minor macros. Minor version is in LSB, meaning that earlier flat */
41/* version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1). */
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070042#define VMSTOR_PROTOCOL_MAJOR(VERSION_) (((VERSION_) >> 8) & 0xff)
43#define VMSTOR_PROTOCOL_MINOR(VERSION_) (((VERSION_)) & 0xff)
44#define VMSTOR_PROTOCOL_VERSION(MAJOR_, MINOR_) ((((MAJOR_) & 0xff) << 8) | \
45 (((MINOR_) & 0xff)))
46#define VMSTOR_INVALID_PROTOCOL_VERSION (-1)
Bill Pemberton454f18a2009-07-27 16:47:24 -040047
48/* Version history: */
49/* V1 Beta 0.1 */
50/* V1 RC < 2008/1/31 1.0 */
51/* V1 RC > 2008/1/31 2.0 */
Hank Janssen565e7dc2009-07-13 15:15:47 -070052#define VMSTOR_PROTOCOL_VERSION_CURRENT VMSTOR_PROTOCOL_VERSION(2, 0)
53
54
Bill Pemberton454f18a2009-07-27 16:47:24 -040055
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070056
Bill Pemberton454f18a2009-07-27 16:47:24 -040057/* This will get replaced with the max transfer length that is possible on */
58/* the host adapter. */
59/* The max transfer length will be published when we offer a vmbus channel. */
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070060#define MAX_TRANSFER_LENGTH 0x40000
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -070061#define DEFAULT_PACKET_SIZE (sizeof(struct vmdata_gpa_direct) + \
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -070062 sizeof(struct vstor_packet) + \
63 sizesizeof(u64) * (MAX_TRANSFER_LENGTH / PAGE_SIZE)))
Hank Janssen565e7dc2009-07-13 15:15:47 -070064
65
Bill Pemberton454f18a2009-07-27 16:47:24 -040066/* Packet structure describing virtual storage requests. */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -070067enum vstor_packet_operation {
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070068 VStorOperationCompleteIo = 1,
69 VStorOperationRemoveDevice = 2,
70 VStorOperationExecuteSRB = 3,
71 VStorOperationResetLun = 4,
72 VStorOperationResetAdapter = 5,
73 VStorOperationResetBus = 6,
74 VStorOperationBeginInitialization = 7,
75 VStorOperationEndInitialization = 8,
76 VStorOperationQueryProtocolVersion = 9,
77 VStorOperationQueryProperties = 10,
78 VStorOperationMaximum = 10
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -070079};
Bill Pemberton454f18a2009-07-27 16:47:24 -040080
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070081/*
82 * Platform neutral description of a scsi request -
83 * this remains the same across the write regardless of 32/64 bit
84 * note: it's patterned off the SCSI_PASS_THROUGH structure
85 */
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070086#define CDB16GENERIC_LENGTH 0x10
Hank Janssen565e7dc2009-07-13 15:15:47 -070087
88#ifndef SENSE_BUFFER_SIZE
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070089#define SENSE_BUFFER_SIZE 0x12
Hank Janssen565e7dc2009-07-13 15:15:47 -070090#endif
Hank Janssen565e7dc2009-07-13 15:15:47 -070091
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070092#define MAX_DATA_BUFFER_LENGTH_WITH_PADDING 0x14
Hank Janssen565e7dc2009-07-13 15:15:47 -070093
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -070094struct vmscsi_request {
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070095 unsigned short Length;
96 unsigned char SrbStatus;
97 unsigned char ScsiStatus;
Hank Janssen565e7dc2009-07-13 15:15:47 -070098
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -070099 unsigned char PortNumber;
100 unsigned char PathId;
101 unsigned char TargetId;
102 unsigned char Lun;
Hank Janssen565e7dc2009-07-13 15:15:47 -0700103
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700104 unsigned char CdbLength;
105 unsigned char SenseInfoLength;
106 unsigned char DataIn;
107 unsigned char Reserved;
Hank Janssen565e7dc2009-07-13 15:15:47 -0700108
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700109 unsigned int DataTransferLength;
Hank Janssen565e7dc2009-07-13 15:15:47 -0700110
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700111 union {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400112 unsigned char Cdb[CDB16GENERIC_LENGTH];
Hank Janssen565e7dc2009-07-13 15:15:47 -0700113
Bill Pemberton454f18a2009-07-27 16:47:24 -0400114 unsigned char SenseData[SENSE_BUFFER_SIZE];
Hank Janssen565e7dc2009-07-13 15:15:47 -0700115
Bill Pemberton454f18a2009-07-27 16:47:24 -0400116 unsigned char ReservedArray[MAX_DATA_BUFFER_LENGTH_WITH_PADDING];
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700117 };
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700118} __attribute((packed));
Hank Janssen565e7dc2009-07-13 15:15:47 -0700119
120
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700121/*
122 * This structure is sent during the intialization phase to get the different
123 * properties of the channel.
124 */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700125struct vmstorage_channel_properties {
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700126 unsigned short ProtocolVersion;
127 unsigned char PathId;
128 unsigned char TargetId;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400129
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700130 /* Note: port number is only really known on the client side */
131 unsigned int PortNumber;
132 unsigned int Flags;
133 unsigned int MaxTransferBytes;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400134
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700135 /* This id is unique for each channel and will correspond with */
136 /* vendor specific data in the inquirydata */
137 unsigned long long UniqueId;
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700138} __attribute__((packed));
Bill Pemberton454f18a2009-07-27 16:47:24 -0400139
140/* This structure is sent during the storage protocol negotiations. */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700141struct vmstorage_protocol_version {
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700142 /* Major (MSW) and minor (LSW) version numbers. */
143 unsigned short MajorMinor;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400144
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700145 /*
146 * Revision number is auto-incremented whenever this file is changed
147 * (See FILL_VMSTOR_REVISION macro above). Mismatch does not
148 * definitely indicate incompatibility--but it does indicate mismatched
149 * builds.
150 */
151 unsigned short Revision;
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700152} __attribute__((packed));
Bill Pemberton454f18a2009-07-27 16:47:24 -0400153
154/* Channel Property Flags */
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700155#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1
156#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2
Bill Pemberton454f18a2009-07-27 16:47:24 -0400157
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700158struct vstor_packet {
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700159 /* Requested operation type */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700160 enum vstor_packet_operation Operation;
Hank Janssen565e7dc2009-07-13 15:15:47 -0700161
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700162 /* Flags - see below for values */
163 unsigned int Flags;
Hank Janssen565e7dc2009-07-13 15:15:47 -0700164
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700165 /* Status of the request returned from the server side. */
166 unsigned int Status;
Hank Janssen565e7dc2009-07-13 15:15:47 -0700167
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700168 /* Data payload area */
169 union {
170 /*
171 * Structure used to forward SCSI commands from the
172 * client to the server.
173 */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700174 struct vmscsi_request VmSrb;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400175
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700176 /* Structure used to query channel properties. */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700177 struct vmstorage_channel_properties StorageChannelProperties;
Bill Pemberton454f18a2009-07-27 16:47:24 -0400178
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700179 /* Used during version negotiations. */
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700180 struct vmstorage_protocol_version Version;
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700181 };
Greg Kroah-Hartmanb3715ee2009-08-27 16:00:24 -0700182} __attribute__((packed));
Bill Pemberton454f18a2009-07-27 16:47:24 -0400183
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700184/* Packet flags */
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700185/*
186 * This flag indicates that the server should send back a completion for this
187 * packet.
188 */
189#define REQUEST_COMPLETION_FLAG 0x1
Bill Pemberton454f18a2009-07-27 16:47:24 -0400190
191/* This is the set of flags that the vsc can set in any packets it sends */
Greg Kroah-Hartmand7363a12009-08-18 15:21:19 -0700192#define VSC_LEGAL_FLAGS (REQUEST_COMPLETION_FLAG)