blob: d7db94929494273d16e151aca9c5c3f1acff59f6 [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
K. Y. Srinivasand7a1bdb2011-03-28 09:33:44 -070058struct hv_storvsc_request {
K. Y. Srinivasanbf587a12011-03-28 09:33:26 -070059 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
Hank Janssenab057782009-07-13 15:19:28 -070073
Bill Pemberton454f18a2009-07-27 16:47:24 -040074/* Represents the block vsc driver */
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070075struct storvsc_driver_object {
Hank Janssen8a046022010-12-06 12:26:45 -080076 struct hv_driver base;
Hank Janssenab057782009-07-13 15:19:28 -070077
Bill Pemberton454f18a2009-07-27 16:47:24 -040078 /* Set by caller (in bytes) */
Hank Janssen8a046022010-12-06 12:26:45 -080079 u32 ring_buffer_size;
Hank Janssenab057782009-07-13 15:19:28 -070080
Bill Pemberton454f18a2009-07-27 16:47:24 -040081 /* Maximum # of requests in flight per channel/device */
Hank Janssen8a046022010-12-06 12:26:45 -080082 u32 max_outstanding_req_per_channel;
Hank Janssenab057782009-07-13 15:19:28 -070083
Bill Pemberton454f18a2009-07-27 16:47:24 -040084 /* Specific to this driver */
Hank Janssen8a046022010-12-06 12:26:45 -080085 int (*on_io_request)(struct hv_device *device,
86 struct hv_storvsc_request *request);
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070087};
Hank Janssenab057782009-07-13 15:19:28 -070088
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070089struct storvsc_device_info {
Hank Janssen8a046022010-12-06 12:26:45 -080090 unsigned int port_number;
91 unsigned char path_id;
92 unsigned char target_id;
Greg Kroah-Hartman9f0c7d22009-08-28 16:20:07 -070093};
Hank Janssenab057782009-07-13 15:19:28 -070094
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -070095/* A storvsc device is a device object that contains a vmbus channel */
96struct storvsc_device {
97 struct hv_device *device;
98
99 /* 0 indicates the device is being destroyed */
100 atomic_t ref_count;
101
102 atomic_t num_outstanding_req;
103
104 /*
105 * Each unique Port/Path/Target represents 1 channel ie scsi
106 * controller. In reality, the pathid, targetid is always 0
107 * and the port is set by us
108 */
109 unsigned int port_number;
110 unsigned char path_id;
111 unsigned char target_id;
112
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -0700113 /* Used for vsc/vsp channel reset process */
K. Y. Srinivasand7a1bdb2011-03-28 09:33:44 -0700114 struct hv_storvsc_request init_request;
115 struct hv_storvsc_request reset_request;
K. Y. Srinivasanf24eeb02011-03-23 10:50:21 -0700116};
117
K. Y. Srinivasan852c16d2011-03-23 10:50:31 -0700118
119/* Get the stordevice object iff exists and its refcount > 1 */
120static inline struct storvsc_device *get_stor_device(struct hv_device *device)
121{
122 struct storvsc_device *stor_device;
123
124 stor_device = (struct storvsc_device *)device->ext;
125 if (stor_device && atomic_read(&stor_device->ref_count) > 1)
126 atomic_inc(&stor_device->ref_count);
127 else
128 stor_device = NULL;
129
130 return stor_device;
131}
132
K. Y. Srinivasan1604b1b2011-03-23 10:50:32 -0700133
134static inline void put_stor_device(struct hv_device *device)
135{
136 struct storvsc_device *stor_device;
137
138 stor_device = (struct storvsc_device *)device->ext;
139
140 atomic_dec(&stor_device->ref_count);
141}
142
K. Y. Srinivasanced01b02011-03-28 09:33:29 -0700143static inline struct storvsc_driver_object *hvdr_to_stordr(struct hv_driver *d)
144{
145 return container_of(d, struct storvsc_driver_object, base);
146}
147
Bill Pemberton454f18a2009-07-27 16:47:24 -0400148/* Interface */
149
K. Y. Srinivasanafa3f3d2011-03-23 10:50:23 -0700150int stor_vsc_on_device_add(struct hv_device *device,
151 void *additional_info);
152int stor_vsc_on_device_remove(struct hv_device *device);
153
154int stor_vsc_on_io_request(struct hv_device *device,
155 struct hv_storvsc_request *request);
156void stor_vsc_on_cleanup(struct hv_driver *driver);
157
158
Bill Pemberton454f18a2009-07-27 16:47:24 -0400159#endif /* _STORVSC_API_H_ */