blob: cdef1c7d650fb3ff6cfea33dc08f71391c3b6a43 [file] [log] [blame]
Hank Janssenab057782009-07-13 15:19:28 -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
24
25#ifndef _STORVSC_API_H_
26#define _STORVSC_API_H_
27
K. Y. Srinivasanced01b02011-03-28 09:33:29 -070028#include <linux/kernel.h>
K. Y. Srinivasan036bbed2011-03-23 10:50:20 -070029#include "vstorage.h"
Greg Kroah-Hartman447fc672010-05-05 22:43:02 -070030#include "vmbus_api.h"
Hank Janssenab057782009-07-13 15:19:28 -070031
Bill Pemberton454f18a2009-07-27 16:47:24 -040032/* Defines */
Hank Janssen15dd1c92010-08-05 19:30:31 +000033#define STORVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
Greg Kroah-Hartman9bcd7862009-08-28 16:19:17 -070034#define BLKVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
Hank Janssenab057782009-07-13 15:19:28 -070035
Hank Janssen15dd1c92010-08-05 19:30:31 +000036#define STORVSC_MAX_IO_REQUESTS 128
Hank Janssenab057782009-07-13 15:19:28 -070037
Bill Pemberton454f18a2009-07-27 16:47:24 -040038/*
39 * In Hyper-V, each port/path/target maps to 1 scsi host adapter. In
40 * reality, the path/target is not used (ie always set to 0) so our
41 * scsi host adapter essentially has 1 bus with 1 target that contains
42 * up to 256 luns.
43 */
Hank Janssenab057782009-07-13 15:19:28 -070044#define STORVSC_MAX_LUNS_PER_TARGET 64
Greg Kroah-Hartman9bcd7862009-08-28 16:19:17 -070045#define STORVSC_MAX_TARGETS 1
Hank Janssenab057782009-07-13 15:19:28 -070046#define STORVSC_MAX_CHANNELS 1
47
Nicolas Palix0b3f6832009-07-29 14:10:19 +020048struct hv_storvsc_request;
Hank Janssenab057782009-07-13 15:19:28 -070049
Bill Pemberton454f18a2009-07-27 16:47:24 -040050/* Matches Windows-end */
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070051enum storvsc_request_type{
Hank Janssenab057782009-07-13 15:19:28 -070052 WRITE_TYPE,
53 READ_TYPE,
54 UNKNOWN_TYPE,
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070055};
Hank Janssenab057782009-07-13 15:19:28 -070056
K. Y. Srinivasanbf587a12011-03-28 09:33:26 -070057
58struct storvsc_request_extension {
59 struct hv_storvsc_request *request;
60 struct hv_device *device;
61
62 /* Synchronize the request/response if needed */
K. Y. Srinivasan939584652011-03-28 09:33:30 -070063 struct completion wait_event;
K. Y. Srinivasanbf587a12011-03-28 09:33:26 -070064
65 struct vstor_packet vstor_packet;
66};
67
Nicolas Palix0b3f6832009-07-29 14:10:19 +020068struct hv_storvsc_request {
Hank Janssen8a046022010-12-06 12:26:45 -080069 enum storvsc_request_type type;
70 u32 host;
71 u32 bus;
72 u32 target_id;
73 u32 lun_id;
74 u8 *cdb;
75 u32 cdb_len;
76 u32 status;
77 u32 bytes_xfer;
Hank Janssenab057782009-07-13 15:19:28 -070078
Hank Janssen8a046022010-12-06 12:26:45 -080079 unsigned char *sense_buffer;
80 u32 sense_buffer_size;
Hank Janssenab057782009-07-13 15:19:28 -070081
Hank Janssen8a046022010-12-06 12:26:45 -080082 void *context;
Hank Janssenab057782009-07-13 15:19:28 -070083
Hank Janssen8a046022010-12-06 12:26:45 -080084 void (*on_io_completion)(struct hv_storvsc_request *request);
Hank Janssenab057782009-07-13 15:19:28 -070085
K. Y. Srinivasan2fd0df22011-03-28 09:33:27 -070086 struct storvsc_request_extension extension;
Hank Janssenab057782009-07-13 15:19:28 -070087
Hank Janssen8a046022010-12-06 12:26:45 -080088 struct hv_multipage_buffer data_buffer;
Nicolas Palix0b3f6832009-07-29 14:10:19 +020089};
Hank Janssenab057782009-07-13 15:19:28 -070090
Bill Pemberton454f18a2009-07-27 16:47:24 -040091/* Represents the block vsc driver */
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070092struct storvsc_driver_object {
Hank Janssen8a046022010-12-06 12:26:45 -080093 struct hv_driver base;
Hank Janssenab057782009-07-13 15:19:28 -070094
Bill Pemberton454f18a2009-07-27 16:47:24 -040095 /* Set by caller (in bytes) */
Hank Janssen8a046022010-12-06 12:26:45 -080096 u32 ring_buffer_size;
Hank Janssenab057782009-07-13 15:19:28 -070097
Bill Pemberton454f18a2009-07-27 16:47:24 -040098 /* Maximum # of requests in flight per channel/device */
Hank Janssen8a046022010-12-06 12:26:45 -080099 u32 max_outstanding_req_per_channel;
Hank Janssenab057782009-07-13 15:19:28 -0700100
Bill Pemberton454f18a2009-07-27 16:47:24 -0400101 /* Specific to this driver */
Hank Janssen8a046022010-12-06 12:26:45 -0800102 int (*on_io_request)(struct hv_device *device,
103 struct hv_storvsc_request *request);
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -0700104};
Hank Janssenab057782009-07-13 15:19:28 -0700105
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -0700106struct storvsc_device_info {
Hank Janssen8a046022010-12-06 12:26:45 -0800107 unsigned int port_number;
108 unsigned char path_id;
109 unsigned char target_id;
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -0700110};
Hank Janssenab057782009-07-13 15:19:28 -0700111
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -0700112/* A storvsc device is a device object that contains a vmbus channel */
113struct storvsc_device {
114 struct hv_device *device;
115
116 /* 0 indicates the device is being destroyed */
117 atomic_t ref_count;
118
119 atomic_t num_outstanding_req;
120
121 /*
122 * Each unique Port/Path/Target represents 1 channel ie scsi
123 * controller. In reality, the pathid, targetid is always 0
124 * and the port is set by us
125 */
126 unsigned int port_number;
127 unsigned char path_id;
128 unsigned char target_id;
129
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -0700130 /* Used for vsc/vsp channel reset process */
131 struct storvsc_request_extension init_request;
132 struct storvsc_request_extension reset_request;
133};
134
K. Y. Srinivasan852c16d2011-03-23 10:50:31 -0700135
136/* Get the stordevice object iff exists and its refcount > 1 */
137static inline struct storvsc_device *get_stor_device(struct hv_device *device)
138{
139 struct storvsc_device *stor_device;
140
141 stor_device = (struct storvsc_device *)device->ext;
142 if (stor_device && atomic_read(&stor_device->ref_count) > 1)
143 atomic_inc(&stor_device->ref_count);
144 else
145 stor_device = NULL;
146
147 return stor_device;
148}
149
K. Y. Srinivasan1604b1b2011-03-23 10:50:32 -0700150
151static inline void put_stor_device(struct hv_device *device)
152{
153 struct storvsc_device *stor_device;
154
155 stor_device = (struct storvsc_device *)device->ext;
156
157 atomic_dec(&stor_device->ref_count);
158}
159
K. Y. Srinivasanced01b02011-03-28 09:33:29 -0700160static inline struct storvsc_driver_object *hvdr_to_stordr(struct hv_driver *d)
161{
162 return container_of(d, struct storvsc_driver_object, base);
163}
164
Bill Pemberton454f18a2009-07-27 16:47:24 -0400165/* Interface */
166
K. Y. Srinivasanafa3f3d2011-03-23 10:50:23 -0700167int stor_vsc_on_device_add(struct hv_device *device,
168 void *additional_info);
169int stor_vsc_on_device_remove(struct hv_device *device);
170
171int stor_vsc_on_io_request(struct hv_device *device,
172 struct hv_storvsc_request *request);
173void stor_vsc_on_cleanup(struct hv_driver *driver);
174
175
Bill Pemberton454f18a2009-07-27 16:47:24 -0400176#endif /* _STORVSC_API_H_ */