blob: f4b70319c67c1014c4a2414814b8fc501e51cccb [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
K. Y. Srinivasan237ecd62011-03-28 09:33:39 -070065 unsigned char *sense_buffer;
K. Y. Srinivasanefb5a662011-03-28 09:33:40 -070066 void *context;
K. Y. Srinivasan0bb71122011-03-28 09:33:41 -070067 void (*on_io_completion)(struct hv_storvsc_request *request);
K. Y. Srinivasane9e936c2011-03-28 09:33:43 -070068 struct hv_multipage_buffer data_buffer;
K. Y. Srinivasan237ecd62011-03-28 09:33:39 -070069
K. Y. Srinivasanbf587a12011-03-28 09:33:26 -070070 struct vstor_packet vstor_packet;
71};
72
Nicolas Palix0b3f6832009-07-29 14:10:19 +020073struct hv_storvsc_request {
Hank Janssenab057782009-07-13 15:19:28 -070074
K. Y. Srinivasan2fd0df22011-03-28 09:33:27 -070075 struct storvsc_request_extension extension;
Hank Janssenab057782009-07-13 15:19:28 -070076
Nicolas Palix0b3f6832009-07-29 14:10:19 +020077};
Hank Janssenab057782009-07-13 15:19:28 -070078
Bill Pemberton454f18a2009-07-27 16:47:24 -040079/* Represents the block vsc driver */
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070080struct storvsc_driver_object {
Hank Janssen8a046022010-12-06 12:26:45 -080081 struct hv_driver base;
Hank Janssenab057782009-07-13 15:19:28 -070082
Bill Pemberton454f18a2009-07-27 16:47:24 -040083 /* Set by caller (in bytes) */
Hank Janssen8a046022010-12-06 12:26:45 -080084 u32 ring_buffer_size;
Hank Janssenab057782009-07-13 15:19:28 -070085
Bill Pemberton454f18a2009-07-27 16:47:24 -040086 /* Maximum # of requests in flight per channel/device */
Hank Janssen8a046022010-12-06 12:26:45 -080087 u32 max_outstanding_req_per_channel;
Hank Janssenab057782009-07-13 15:19:28 -070088
Bill Pemberton454f18a2009-07-27 16:47:24 -040089 /* Specific to this driver */
Hank Janssen8a046022010-12-06 12:26:45 -080090 int (*on_io_request)(struct hv_device *device,
91 struct hv_storvsc_request *request);
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070092};
Hank Janssenab057782009-07-13 15:19:28 -070093
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070094struct storvsc_device_info {
Hank Janssen8a046022010-12-06 12:26:45 -080095 unsigned int port_number;
96 unsigned char path_id;
97 unsigned char target_id;
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070098};
Hank Janssenab057782009-07-13 15:19:28 -070099
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -0700100/* A storvsc device is a device object that contains a vmbus channel */
101struct storvsc_device {
102 struct hv_device *device;
103
104 /* 0 indicates the device is being destroyed */
105 atomic_t ref_count;
106
107 atomic_t num_outstanding_req;
108
109 /*
110 * Each unique Port/Path/Target represents 1 channel ie scsi
111 * controller. In reality, the pathid, targetid is always 0
112 * and the port is set by us
113 */
114 unsigned int port_number;
115 unsigned char path_id;
116 unsigned char target_id;
117
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -0700118 /* Used for vsc/vsp channel reset process */
119 struct storvsc_request_extension init_request;
120 struct storvsc_request_extension reset_request;
121};
122
K. Y. Srinivasan852c16d2011-03-23 10:50:31 -0700123
124/* Get the stordevice object iff exists and its refcount > 1 */
125static inline struct storvsc_device *get_stor_device(struct hv_device *device)
126{
127 struct storvsc_device *stor_device;
128
129 stor_device = (struct storvsc_device *)device->ext;
130 if (stor_device && atomic_read(&stor_device->ref_count) > 1)
131 atomic_inc(&stor_device->ref_count);
132 else
133 stor_device = NULL;
134
135 return stor_device;
136}
137
K. Y. Srinivasan1604b1b2011-03-23 10:50:32 -0700138
139static inline void put_stor_device(struct hv_device *device)
140{
141 struct storvsc_device *stor_device;
142
143 stor_device = (struct storvsc_device *)device->ext;
144
145 atomic_dec(&stor_device->ref_count);
146}
147
K. Y. Srinivasanced01b02011-03-28 09:33:29 -0700148static inline struct storvsc_driver_object *hvdr_to_stordr(struct hv_driver *d)
149{
150 return container_of(d, struct storvsc_driver_object, base);
151}
152
Bill Pemberton454f18a2009-07-27 16:47:24 -0400153/* Interface */
154
K. Y. Srinivasanafa3f3d2011-03-23 10:50:23 -0700155int stor_vsc_on_device_add(struct hv_device *device,
156 void *additional_info);
157int stor_vsc_on_device_remove(struct hv_device *device);
158
159int stor_vsc_on_io_request(struct hv_device *device,
160 struct hv_storvsc_request *request);
161void stor_vsc_on_cleanup(struct hv_driver *driver);
162
163
Bill Pemberton454f18a2009-07-27 16:47:24 -0400164#endif /* _STORVSC_API_H_ */