blob: 2b8595b7ad45d6c5116038b573d10eb58daaaacc [file] [log] [blame]
Hank Janssenbef4a342009-07-13 16:01:31 -07001/*
Hank Janssenbef4a342009-07-13 16:01:31 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
K. Y. Srinivasan972621c2011-05-10 07:54:19 -070020 * K. Y. Srinivasan <kys@microsoft.com>
Hank Janssenbef4a342009-07-13 16:01:31 -070021 */
K. Y. Srinivasana1be1702011-08-27 11:31:23 -070022
23#include <linux/kernel.h>
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070024#include <linux/wait.h>
K. Y. Srinivasana1be1702011-08-27 11:31:23 -070025#include <linux/sched.h>
26#include <linux/completion.h>
27#include <linux/string.h>
28#include <linux/mm.h>
29#include <linux/delay.h>
Hank Janssenbef4a342009-07-13 16:01:31 -070030#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Hank Janssenbef4a342009-07-13 16:01:31 -070032#include <linux/module.h>
33#include <linux/device.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070034#include <linux/hyperv.h>
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -080035#include <linux/mempool.h>
K. Y. Srinivasan56b26e62014-07-12 09:48:30 -070036#include <linux/blkdev.h>
Hank Janssenbef4a342009-07-13 16:01:31 -070037#include <scsi/scsi.h>
38#include <scsi/scsi_cmnd.h>
39#include <scsi/scsi_host.h>
40#include <scsi/scsi_device.h>
41#include <scsi/scsi_tcq.h>
42#include <scsi/scsi_eh.h>
43#include <scsi/scsi_devinfo.h>
Hank Janssenbef4a342009-07-13 16:01:31 -070044#include <scsi/scsi_dbg.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070045
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080046/*
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -080047 * All wire protocol details (storage protocol between the guest and the host)
48 * are consolidated here.
49 *
50 * Begin protocol definitions.
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080051 */
52
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080053/*
54 * Version history:
55 * V1 Beta: 0.1
56 * V1 RC < 2008/1/31: 1.0
57 * V1 RC > 2008/1/31: 2.0
58 * Win7: 4.2
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070059 * Win8: 5.1
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080060 */
61
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070062
63#define VMSTOR_WIN7_MAJOR 4
64#define VMSTOR_WIN7_MINOR 2
65
66#define VMSTOR_WIN8_MAJOR 5
67#define VMSTOR_WIN8_MINOR 1
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070068
69
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070070/* Packet structure describing virtual storage requests. */
71enum vstor_packet_operation {
72 VSTOR_OPERATION_COMPLETE_IO = 1,
73 VSTOR_OPERATION_REMOVE_DEVICE = 2,
74 VSTOR_OPERATION_EXECUTE_SRB = 3,
75 VSTOR_OPERATION_RESET_LUN = 4,
76 VSTOR_OPERATION_RESET_ADAPTER = 5,
77 VSTOR_OPERATION_RESET_BUS = 6,
78 VSTOR_OPERATION_BEGIN_INITIALIZATION = 7,
79 VSTOR_OPERATION_END_INITIALIZATION = 8,
80 VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9,
81 VSTOR_OPERATION_QUERY_PROPERTIES = 10,
K. Y. Srinivasan2b9525f2011-11-08 09:01:48 -080082 VSTOR_OPERATION_ENUMERATE_BUS = 11,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070083 VSTOR_OPERATION_FCHBA_DATA = 12,
84 VSTOR_OPERATION_CREATE_SUB_CHANNELS = 13,
85 VSTOR_OPERATION_MAXIMUM = 13
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070086};
87
88/*
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070089 * WWN packet for Fibre Channel HBA
90 */
91
92struct hv_fc_wwn_packet {
93 bool primary_active;
94 u8 reserved1;
95 u8 reserved2;
96 u8 primary_port_wwn[8];
97 u8 primary_node_wwn[8];
98 u8 secondary_port_wwn[8];
99 u8 secondary_node_wwn[8];
100};
101
102
103
104/*
105 * SRB Flag Bits
106 */
107
108#define SRB_FLAGS_QUEUE_ACTION_ENABLE 0x00000002
109#define SRB_FLAGS_DISABLE_DISCONNECT 0x00000004
110#define SRB_FLAGS_DISABLE_SYNCH_TRANSFER 0x00000008
111#define SRB_FLAGS_BYPASS_FROZEN_QUEUE 0x00000010
112#define SRB_FLAGS_DISABLE_AUTOSENSE 0x00000020
113#define SRB_FLAGS_DATA_IN 0x00000040
114#define SRB_FLAGS_DATA_OUT 0x00000080
115#define SRB_FLAGS_NO_DATA_TRANSFER 0x00000000
116#define SRB_FLAGS_UNSPECIFIED_DIRECTION (SRB_FLAGS_DATA_IN | SRB_FLAGS_DATA_OUT)
117#define SRB_FLAGS_NO_QUEUE_FREEZE 0x00000100
118#define SRB_FLAGS_ADAPTER_CACHE_ENABLE 0x00000200
119#define SRB_FLAGS_FREE_SENSE_BUFFER 0x00000400
120
121/*
122 * This flag indicates the request is part of the workflow for processing a D3.
123 */
124#define SRB_FLAGS_D3_PROCESSING 0x00000800
125#define SRB_FLAGS_IS_ACTIVE 0x00010000
126#define SRB_FLAGS_ALLOCATED_FROM_ZONE 0x00020000
127#define SRB_FLAGS_SGLIST_FROM_POOL 0x00040000
128#define SRB_FLAGS_BYPASS_LOCKED_QUEUE 0x00080000
129#define SRB_FLAGS_NO_KEEP_AWAKE 0x00100000
130#define SRB_FLAGS_PORT_DRIVER_ALLOCSENSE 0x00200000
131#define SRB_FLAGS_PORT_DRIVER_SENSEHASPORT 0x00400000
132#define SRB_FLAGS_DONT_START_NEXT_PACKET 0x00800000
133#define SRB_FLAGS_PORT_DRIVER_RESERVED 0x0F000000
134#define SRB_FLAGS_CLASS_DRIVER_RESERVED 0xF0000000
135
136
137/*
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700138 * Platform neutral description of a scsi request -
139 * this remains the same across the write regardless of 32/64 bit
140 * note: it's patterned off the SCSI_PASS_THROUGH structure
141 */
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800142#define STORVSC_MAX_CMD_LEN 0x10
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700143
144#define POST_WIN7_STORVSC_SENSE_BUFFER_SIZE 0x14
145#define PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE 0x12
146
147#define STORVSC_SENSE_BUFFER_SIZE 0x14
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800148#define STORVSC_MAX_BUF_LEN_WITH_PADDING 0x14
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700149
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700150/*
151 * Sense buffer size changed in win8; have a run-time
152 * variable to track the size we should use.
153 */
154static int sense_buffer_size;
155
156/*
157 * The size of the vmscsi_request has changed in win8. The
158 * additional size is because of new elements added to the
159 * structure. These elements are valid only when we are talking
160 * to a win8 host.
161 * Track the correction to size we need to apply.
162 */
163
164static int vmscsi_size_delta;
165static int vmstor_current_major;
166static int vmstor_current_minor;
167
168struct vmscsi_win8_extension {
169 /*
170 * The following were added in Windows 8
171 */
172 u16 reserve;
173 u8 queue_tag;
174 u8 queue_action;
175 u32 srb_flags;
176 u32 time_out_value;
177 u32 queue_sort_ey;
178} __packed;
179
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700180struct vmscsi_request {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800181 u16 length;
182 u8 srb_status;
183 u8 scsi_status;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700184
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800185 u8 port_number;
186 u8 path_id;
187 u8 target_id;
188 u8 lun;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700189
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800190 u8 cdb_length;
191 u8 sense_info_length;
192 u8 data_in;
193 u8 reserved;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700194
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800195 u32 data_transfer_length;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700196
197 union {
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800198 u8 cdb[STORVSC_MAX_CMD_LEN];
199 u8 sense_data[STORVSC_SENSE_BUFFER_SIZE];
200 u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING];
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700201 };
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700202 /*
203 * The following was added in win8.
204 */
205 struct vmscsi_win8_extension win8_extension;
206
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700207} __attribute((packed));
208
209
210/*
211 * This structure is sent during the intialization phase to get the different
212 * properties of the channel.
213 */
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700214
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700215#define STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL 0x1
216
217struct vmstorage_channel_properties {
218 u32 reserved;
219 u16 max_channel_cnt;
220 u16 reserved1;
221
222 u32 flags;
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800223 u32 max_transfer_bytes;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700224
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700225 u64 reserved2;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700226} __packed;
227
228/* This structure is sent during the storage protocol negotiations. */
229struct vmstorage_protocol_version {
230 /* Major (MSW) and minor (LSW) version numbers. */
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800231 u16 major_minor;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700232
233 /*
234 * Revision number is auto-incremented whenever this file is changed
235 * (See FILL_VMSTOR_REVISION macro above). Mismatch does not
236 * definitely indicate incompatibility--but it does indicate mismatched
237 * builds.
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800238 * This is only used on the windows side. Just set it to 0.
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700239 */
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800240 u16 revision;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700241} __packed;
242
243/* Channel Property Flags */
244#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1
245#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2
246
247struct vstor_packet {
248 /* Requested operation type */
249 enum vstor_packet_operation operation;
250
251 /* Flags - see below for values */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800252 u32 flags;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700253
254 /* Status of the request returned from the server side. */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800255 u32 status;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700256
257 /* Data payload area */
258 union {
259 /*
260 * Structure used to forward SCSI commands from the
261 * client to the server.
262 */
263 struct vmscsi_request vm_srb;
264
265 /* Structure used to query channel properties. */
266 struct vmstorage_channel_properties storage_channel_properties;
267
268 /* Used during version negotiations. */
269 struct vmstorage_protocol_version version;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700270
271 /* Fibre channel address packet */
272 struct hv_fc_wwn_packet wwn_packet;
273
274 /* Number of sub-channels to create */
275 u16 sub_channel_count;
276
277 /* This will be the maximum of the union members */
278 u8 buffer[0x34];
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700279 };
280} __packed;
281
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700282/*
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800283 * Packet Flags:
284 *
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700285 * This flag indicates that the server should send back a completion for this
286 * packet.
287 */
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800288
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700289#define REQUEST_COMPLETION_FLAG 0x1
290
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700291/* Matches Windows-end */
292enum storvsc_request_type {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800293 WRITE_TYPE = 0,
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700294 READ_TYPE,
295 UNKNOWN_TYPE,
296};
297
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800298/*
299 * SRB status codes and masks; a subset of the codes used here.
300 */
301
302#define SRB_STATUS_AUTOSENSE_VALID 0x80
303#define SRB_STATUS_INVALID_LUN 0x20
304#define SRB_STATUS_SUCCESS 0x01
K. Y. Srinivasan67812092013-02-21 12:04:53 -0800305#define SRB_STATUS_ABORTED 0x02
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800306#define SRB_STATUS_ERROR 0x04
307
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800308/*
309 * This is the end of Protocol specific defines.
310 */
311
312
313/*
314 * We setup a mempool to allocate request structures for this driver
315 * on a per-lun basis. The following define specifies the number of
316 * elements in the pool.
317 */
318
319#define STORVSC_MIN_BUF_NR 64
320static int storvsc_ringbuffer_size = (20 * PAGE_SIZE);
321
322module_param(storvsc_ringbuffer_size, int, S_IRUGO);
323MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");
324
K. Y. Srinivasan893def32013-06-04 12:05:05 -0700325/*
326 * Timeout in seconds for all devices managed by this driver.
327 */
328static int storvsc_timeout = 180;
329
K. Y. Srinivasanbb6a4df2013-06-04 12:05:09 -0700330#define STORVSC_MAX_IO_REQUESTS 200
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800331
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700332static void storvsc_on_channel_callback(void *context);
333
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -0700334#define STORVSC_MAX_LUNS_PER_TARGET 255
335#define STORVSC_MAX_TARGETS 2
336#define STORVSC_MAX_CHANNELS 8
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800337
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -0700338#define STORVSC_FC_MAX_LUNS_PER_TARGET 255
339#define STORVSC_FC_MAX_TARGETS 128
340#define STORVSC_FC_MAX_CHANNELS 8
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800341
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -0700342#define STORVSC_IDE_MAX_LUNS_PER_TARGET 64
343#define STORVSC_IDE_MAX_TARGETS 1
344#define STORVSC_IDE_MAX_CHANNELS 1
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800345
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800346struct storvsc_cmd_request {
347 struct list_head entry;
348 struct scsi_cmnd *cmd;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700349
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800350 unsigned int bounce_sgl_count;
351 struct scatterlist *bounce_sgl;
352
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700353 struct hv_device *device;
354
355 /* Synchronize the request/response if needed */
356 struct completion wait_event;
357
358 unsigned char *sense_buffer;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700359 struct hv_multipage_buffer data_buffer;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700360 struct vstor_packet vstor_packet;
361};
362
363
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700364/* A storvsc device is a device object that contains a vmbus channel */
365struct storvsc_device {
366 struct hv_device *device;
367
368 bool destroy;
369 bool drain_notify;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700370 bool open_sub_channel;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700371 atomic_t num_outstanding_req;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700372 struct Scsi_Host *host;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700373
374 wait_queue_head_t waiting_to_drain;
375
376 /*
377 * Each unique Port/Path/Target represents 1 channel ie scsi
378 * controller. In reality, the pathid, targetid is always 0
379 * and the port is set by us
380 */
381 unsigned int port_number;
382 unsigned char path_id;
383 unsigned char target_id;
384
385 /* Used for vsc/vsp channel reset process */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800386 struct storvsc_cmd_request init_request;
387 struct storvsc_cmd_request reset_request;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700388};
389
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800390struct stor_mem_pools {
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700391 struct kmem_cache *request_pool;
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -0800392 mempool_t *request_mempool;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800393};
394
395struct hv_host_device {
396 struct hv_device *dev;
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700397 unsigned int port;
398 unsigned char path;
399 unsigned char target;
400};
401
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800402struct storvsc_scan_work {
403 struct work_struct work;
404 struct Scsi_Host *host;
405 uint lun;
406};
407
K. Y. Srinivasan67812092013-02-21 12:04:53 -0800408static void storvsc_device_scan(struct work_struct *work)
409{
410 struct storvsc_scan_work *wrk;
411 uint lun;
412 struct scsi_device *sdev;
413
414 wrk = container_of(work, struct storvsc_scan_work, work);
415 lun = wrk->lun;
416
417 sdev = scsi_device_lookup(wrk->host, 0, 0, lun);
418 if (!sdev)
419 goto done;
420 scsi_rescan_device(&sdev->sdev_gendev);
421 scsi_device_put(sdev);
422
423done:
424 kfree(wrk);
425}
426
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800427static void storvsc_bus_scan(struct work_struct *work)
428{
429 struct storvsc_scan_work *wrk;
430 int id, order_id;
431
432 wrk = container_of(work, struct storvsc_scan_work, work);
433 for (id = 0; id < wrk->host->max_id; ++id) {
434 if (wrk->host->reverse_ordering)
435 order_id = wrk->host->max_id - id - 1;
436 else
437 order_id = id;
438
439 scsi_scan_target(&wrk->host->shost_gendev, 0,
440 order_id, SCAN_WILD_CARD, 1);
441 }
442 kfree(wrk);
443}
444
K. Y. Srinivasanb4017312011-11-08 09:01:50 -0800445static void storvsc_remove_lun(struct work_struct *work)
446{
447 struct storvsc_scan_work *wrk;
448 struct scsi_device *sdev;
449
450 wrk = container_of(work, struct storvsc_scan_work, work);
451 if (!scsi_host_get(wrk->host))
452 goto done;
453
454 sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun);
455
456 if (sdev) {
457 scsi_remove_device(sdev);
458 scsi_device_put(sdev);
459 }
460 scsi_host_put(wrk->host);
461
462done:
463 kfree(wrk);
464}
465
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800466/*
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800467 * Major/minor macros. Minor version is in LSB, meaning that earlier flat
468 * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1).
469 */
470
471static inline u16 storvsc_get_version(u8 major, u8 minor)
472{
473 u16 version;
474
475 version = ((major << 8) | minor);
476 return version;
477}
478
479/*
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800480 * We can get incoming messages from the host that are not in response to
481 * messages that we have sent out. An example of this would be messages
482 * received by the guest to notify dynamic addition/removal of LUNs. To
483 * deal with potential race conditions where the driver may be in the
484 * midst of being unloaded when we might receive an unsolicited message
485 * from the host, we have implemented a mechanism to gurantee sequential
486 * consistency:
487 *
488 * 1) Once the device is marked as being destroyed, we will fail all
489 * outgoing messages.
490 * 2) We permit incoming messages when the device is being destroyed,
491 * only to properly account for messages already sent out.
492 */
493
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700494static inline struct storvsc_device *get_out_stor_device(
495 struct hv_device *device)
496{
497 struct storvsc_device *stor_device;
498
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700499 stor_device = hv_get_drvdata(device);
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700500
501 if (stor_device && stor_device->destroy)
502 stor_device = NULL;
503
504 return stor_device;
505}
506
507
508static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
509{
510 dev->drain_notify = true;
511 wait_event(dev->waiting_to_drain,
512 atomic_read(&dev->num_outstanding_req) == 0);
513 dev->drain_notify = false;
514}
Hank Janssenbef4a342009-07-13 16:01:31 -0700515
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700516static inline struct storvsc_device *get_in_stor_device(
517 struct hv_device *device)
518{
519 struct storvsc_device *stor_device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700520
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700521 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700522
523 if (!stor_device)
524 goto get_in_err;
525
526 /*
527 * If the device is being destroyed; allow incoming
528 * traffic only to cleanup outstanding requests.
529 */
530
531 if (stor_device->destroy &&
532 (atomic_read(&stor_device->num_outstanding_req) == 0))
533 stor_device = NULL;
534
535get_in_err:
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700536 return stor_device;
537
538}
539
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800540static void destroy_bounce_buffer(struct scatterlist *sgl,
541 unsigned int sg_count)
542{
543 int i;
544 struct page *page_buf;
545
546 for (i = 0; i < sg_count; i++) {
547 page_buf = sg_page((&sgl[i]));
548 if (page_buf != NULL)
549 __free_page(page_buf);
550 }
551
552 kfree(sgl);
553}
554
555static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count)
556{
557 int i;
558
559 /* No need to check */
560 if (sg_count < 2)
561 return -1;
562
563 /* We have at least 2 sg entries */
564 for (i = 0; i < sg_count; i++) {
565 if (i == 0) {
566 /* make sure 1st one does not have hole */
567 if (sgl[i].offset + sgl[i].length != PAGE_SIZE)
568 return i;
569 } else if (i == sg_count - 1) {
570 /* make sure last one does not have hole */
571 if (sgl[i].offset != 0)
572 return i;
573 } else {
574 /* make sure no hole in the middle */
575 if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0)
576 return i;
577 }
578 }
579 return -1;
580}
581
582static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl,
583 unsigned int sg_count,
584 unsigned int len,
585 int write)
586{
587 int i;
588 int num_pages;
589 struct scatterlist *bounce_sgl;
590 struct page *page_buf;
591 unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE);
592
593 num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT;
594
595 bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC);
596 if (!bounce_sgl)
597 return NULL;
598
K. Y. Srinivasan9d2696e2013-02-06 05:15:28 -0800599 sg_init_table(bounce_sgl, num_pages);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800600 for (i = 0; i < num_pages; i++) {
601 page_buf = alloc_page(GFP_ATOMIC);
602 if (!page_buf)
603 goto cleanup;
604 sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0);
605 }
606
607 return bounce_sgl;
608
609cleanup:
610 destroy_bounce_buffer(bounce_sgl, num_pages);
611 return NULL;
612}
613
Linus Torvalds9f393832012-03-21 09:40:26 -0700614/* Disgusting wrapper functions */
615static inline unsigned long sg_kmap_atomic(struct scatterlist *sgl, int idx)
616{
617 void *addr = kmap_atomic(sg_page(sgl + idx));
618 return (unsigned long)addr;
619}
620
621static inline void sg_kunmap_atomic(unsigned long addr)
622{
623 kunmap_atomic((void *)addr);
624}
625
626
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800627/* Assume the original sgl has enough room */
628static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl,
629 struct scatterlist *bounce_sgl,
630 unsigned int orig_sgl_count,
631 unsigned int bounce_sgl_count)
632{
633 int i;
634 int j = 0;
635 unsigned long src, dest;
636 unsigned int srclen, destlen, copylen;
637 unsigned int total_copied = 0;
638 unsigned long bounce_addr = 0;
639 unsigned long dest_addr = 0;
640 unsigned long flags;
641
642 local_irq_save(flags);
643
644 for (i = 0; i < orig_sgl_count; i++) {
Linus Torvalds9f393832012-03-21 09:40:26 -0700645 dest_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800646 dest = dest_addr;
647 destlen = orig_sgl[i].length;
648
649 if (bounce_addr == 0)
Linus Torvalds9f393832012-03-21 09:40:26 -0700650 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800651
652 while (destlen) {
653 src = bounce_addr + bounce_sgl[j].offset;
654 srclen = bounce_sgl[j].length - bounce_sgl[j].offset;
655
656 copylen = min(srclen, destlen);
657 memcpy((void *)dest, (void *)src, copylen);
658
659 total_copied += copylen;
660 bounce_sgl[j].offset += copylen;
661 destlen -= copylen;
662 dest += copylen;
663
664 if (bounce_sgl[j].offset == bounce_sgl[j].length) {
665 /* full */
Linus Torvalds9f393832012-03-21 09:40:26 -0700666 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800667 j++;
668
669 /*
670 * It is possible that the number of elements
671 * in the bounce buffer may not be equal to
672 * the number of elements in the original
673 * scatter list. Handle this correctly.
674 */
675
676 if (j == bounce_sgl_count) {
677 /*
678 * We are done; cleanup and return.
679 */
Linus Torvalds9f393832012-03-21 09:40:26 -0700680 sg_kunmap_atomic(dest_addr - orig_sgl[i].offset);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800681 local_irq_restore(flags);
682 return total_copied;
683 }
684
685 /* if we need to use another bounce buffer */
686 if (destlen || i != orig_sgl_count - 1)
Linus Torvalds9f393832012-03-21 09:40:26 -0700687 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800688 } else if (destlen == 0 && i == orig_sgl_count - 1) {
689 /* unmap the last bounce that is < PAGE_SIZE */
Linus Torvalds9f393832012-03-21 09:40:26 -0700690 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800691 }
692 }
693
Linus Torvalds9f393832012-03-21 09:40:26 -0700694 sg_kunmap_atomic(dest_addr - orig_sgl[i].offset);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800695 }
696
697 local_irq_restore(flags);
698
699 return total_copied;
700}
701
702/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */
703static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl,
704 struct scatterlist *bounce_sgl,
705 unsigned int orig_sgl_count)
706{
707 int i;
708 int j = 0;
709 unsigned long src, dest;
710 unsigned int srclen, destlen, copylen;
711 unsigned int total_copied = 0;
712 unsigned long bounce_addr = 0;
713 unsigned long src_addr = 0;
714 unsigned long flags;
715
716 local_irq_save(flags);
717
718 for (i = 0; i < orig_sgl_count; i++) {
Linus Torvalds9f393832012-03-21 09:40:26 -0700719 src_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800720 src = src_addr;
721 srclen = orig_sgl[i].length;
722
723 if (bounce_addr == 0)
Linus Torvalds9f393832012-03-21 09:40:26 -0700724 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800725
726 while (srclen) {
727 /* assume bounce offset always == 0 */
728 dest = bounce_addr + bounce_sgl[j].length;
729 destlen = PAGE_SIZE - bounce_sgl[j].length;
730
731 copylen = min(srclen, destlen);
732 memcpy((void *)dest, (void *)src, copylen);
733
734 total_copied += copylen;
735 bounce_sgl[j].length += copylen;
736 srclen -= copylen;
737 src += copylen;
738
739 if (bounce_sgl[j].length == PAGE_SIZE) {
740 /* full..move to next entry */
Linus Torvalds9f393832012-03-21 09:40:26 -0700741 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800742 j++;
743
744 /* if we need to use another bounce buffer */
745 if (srclen || i != orig_sgl_count - 1)
Linus Torvalds9f393832012-03-21 09:40:26 -0700746 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800747
748 } else if (srclen == 0 && i == orig_sgl_count - 1) {
749 /* unmap the last bounce that is < PAGE_SIZE */
Linus Torvalds9f393832012-03-21 09:40:26 -0700750 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800751 }
752 }
753
Linus Torvalds9f393832012-03-21 09:40:26 -0700754 sg_kunmap_atomic(src_addr - orig_sgl[i].offset);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800755 }
756
757 local_irq_restore(flags);
758
759 return total_copied;
760}
761
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700762static void handle_sc_creation(struct vmbus_channel *new_sc)
763{
764 struct hv_device *device = new_sc->primary_channel->device_obj;
765 struct storvsc_device *stor_device;
766 struct vmstorage_channel_properties props;
767
768 stor_device = get_out_stor_device(device);
769 if (!stor_device)
770 return;
771
772 if (stor_device->open_sub_channel == false)
773 return;
774
775 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
776
777 vmbus_open(new_sc,
778 storvsc_ringbuffer_size,
779 storvsc_ringbuffer_size,
780 (void *)&props,
781 sizeof(struct vmstorage_channel_properties),
782 storvsc_on_channel_callback, new_sc);
783}
784
785static void handle_multichannel_storage(struct hv_device *device, int max_chns)
786{
787 struct storvsc_device *stor_device;
788 int num_cpus = num_online_cpus();
789 int num_sc;
790 struct storvsc_cmd_request *request;
791 struct vstor_packet *vstor_packet;
792 int ret, t;
793
794 num_sc = ((max_chns > num_cpus) ? num_cpus : max_chns);
795 stor_device = get_out_stor_device(device);
796 if (!stor_device)
797 return;
798
799 request = &stor_device->init_request;
800 vstor_packet = &request->vstor_packet;
801
802 stor_device->open_sub_channel = true;
803 /*
804 * Establish a handler for dealing with subchannels.
805 */
806 vmbus_set_sc_create_callback(device->channel, handle_sc_creation);
807
808 /*
809 * Check to see if sub-channels have already been created. This
810 * can happen when this driver is re-loaded after unloading.
811 */
812
813 if (vmbus_are_subchannels_present(device->channel))
814 return;
815
816 stor_device->open_sub_channel = false;
817 /*
818 * Request the host to create sub-channels.
819 */
820 memset(request, 0, sizeof(struct storvsc_cmd_request));
821 init_completion(&request->wait_event);
822 vstor_packet->operation = VSTOR_OPERATION_CREATE_SUB_CHANNELS;
823 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
824 vstor_packet->sub_channel_count = num_sc;
825
826 ret = vmbus_sendpacket(device->channel, vstor_packet,
827 (sizeof(struct vstor_packet) -
828 vmscsi_size_delta),
829 (unsigned long)request,
830 VM_PKT_DATA_INBAND,
831 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
832
833 if (ret != 0)
834 return;
835
836 t = wait_for_completion_timeout(&request->wait_event, 10*HZ);
837 if (t == 0)
838 return;
839
840 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
841 vstor_packet->status != 0)
842 return;
843
844 /*
845 * Now that we created the sub-channels, invoke the check; this
846 * may trigger the callback.
847 */
848 stor_device->open_sub_channel = true;
849 vmbus_are_subchannels_present(device->channel);
850}
851
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700852static int storvsc_channel_init(struct hv_device *device)
853{
854 struct storvsc_device *stor_device;
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800855 struct storvsc_cmd_request *request;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700856 struct vstor_packet *vstor_packet;
857 int ret, t;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700858 int max_chns;
859 bool process_sub_channels = false;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700860
861 stor_device = get_out_stor_device(device);
862 if (!stor_device)
863 return -ENODEV;
864
865 request = &stor_device->init_request;
866 vstor_packet = &request->vstor_packet;
867
868 /*
869 * Now, initiate the vsc/vsp initialization protocol on the open
870 * channel
871 */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800872 memset(request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700873 init_completion(&request->wait_event);
874 vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
875 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
876
877 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700878 (sizeof(struct vstor_packet) -
879 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700880 (unsigned long)request,
881 VM_PKT_DATA_INBAND,
882 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
883 if (ret != 0)
884 goto cleanup;
885
886 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
887 if (t == 0) {
888 ret = -ETIMEDOUT;
889 goto cleanup;
890 }
891
892 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
893 vstor_packet->status != 0)
894 goto cleanup;
895
896
897 /* reuse the packet for version range supported */
898 memset(vstor_packet, 0, sizeof(struct vstor_packet));
899 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
900 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
901
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800902 vstor_packet->version.major_minor =
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700903 storvsc_get_version(vmstor_current_major, vmstor_current_minor);
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800904
905 /*
906 * The revision number is only used in Windows; set it to 0.
907 */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800908 vstor_packet->version.revision = 0;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700909
910 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700911 (sizeof(struct vstor_packet) -
912 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700913 (unsigned long)request,
914 VM_PKT_DATA_INBAND,
915 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
916 if (ret != 0)
917 goto cleanup;
918
919 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
920 if (t == 0) {
921 ret = -ETIMEDOUT;
922 goto cleanup;
923 }
924
925 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
926 vstor_packet->status != 0)
927 goto cleanup;
928
929
930 memset(vstor_packet, 0, sizeof(struct vstor_packet));
931 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
932 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700933
934 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700935 (sizeof(struct vstor_packet) -
936 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700937 (unsigned long)request,
938 VM_PKT_DATA_INBAND,
939 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
940
941 if (ret != 0)
942 goto cleanup;
943
944 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
945 if (t == 0) {
946 ret = -ETIMEDOUT;
947 goto cleanup;
948 }
949
950 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
951 vstor_packet->status != 0)
952 goto cleanup;
953
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700954 /*
955 * Check to see if multi-channel support is there.
956 * Hosts that implement protocol version of 5.1 and above
957 * support multi-channel.
958 */
959 max_chns = vstor_packet->storage_channel_properties.max_channel_cnt;
960 if ((vmbus_proto_version != VERSION_WIN7) &&
961 (vmbus_proto_version != VERSION_WS2008)) {
962 if (vstor_packet->storage_channel_properties.flags &
963 STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL)
964 process_sub_channels = true;
965 }
966
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700967 memset(vstor_packet, 0, sizeof(struct vstor_packet));
968 vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
969 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
970
971 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700972 (sizeof(struct vstor_packet) -
973 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700974 (unsigned long)request,
975 VM_PKT_DATA_INBAND,
976 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
977
978 if (ret != 0)
979 goto cleanup;
980
981 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
982 if (t == 0) {
983 ret = -ETIMEDOUT;
984 goto cleanup;
985 }
986
987 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
988 vstor_packet->status != 0)
989 goto cleanup;
990
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700991 if (process_sub_channels)
992 handle_multichannel_storage(device, max_chns);
993
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700994
995cleanup:
996 return ret;
997}
998
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -0800999static void storvsc_handle_error(struct vmscsi_request *vm_srb,
1000 struct scsi_cmnd *scmnd,
1001 struct Scsi_Host *host,
1002 u8 asc, u8 ascq)
1003{
1004 struct storvsc_scan_work *wrk;
1005 void (*process_err_fn)(struct work_struct *work);
1006 bool do_work = false;
1007
1008 switch (vm_srb->srb_status) {
1009 case SRB_STATUS_ERROR:
1010 /*
1011 * If there is an error; offline the device since all
1012 * error recovery strategies would have already been
1013 * deployed on the host side. However, if the command
1014 * were a pass-through command deal with it appropriately.
1015 */
1016 switch (scmnd->cmnd[0]) {
1017 case ATA_16:
1018 case ATA_12:
1019 set_host_byte(scmnd, DID_PASSTHROUGH);
1020 break;
1021 default:
1022 set_host_byte(scmnd, DID_TARGET_FAILURE);
1023 }
1024 break;
1025 case SRB_STATUS_INVALID_LUN:
1026 do_work = true;
1027 process_err_fn = storvsc_remove_lun;
1028 break;
K. Y. Srinivasan67812092013-02-21 12:04:53 -08001029 case (SRB_STATUS_ABORTED | SRB_STATUS_AUTOSENSE_VALID):
1030 if ((asc == 0x2a) && (ascq == 0x9)) {
1031 do_work = true;
1032 process_err_fn = storvsc_device_scan;
1033 /*
1034 * Retry the I/O that trigerred this.
1035 */
1036 set_host_byte(scmnd, DID_REQUEUE);
1037 }
1038 break;
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001039 }
K. Y. Srinivasan67812092013-02-21 12:04:53 -08001040
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001041 if (!do_work)
1042 return;
1043
1044 /*
1045 * We need to schedule work to process this error; schedule it.
1046 */
1047 wrk = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
1048 if (!wrk) {
1049 set_host_byte(scmnd, DID_TARGET_FAILURE);
1050 return;
1051 }
1052
1053 wrk->host = host;
1054 wrk->lun = vm_srb->lun;
1055 INIT_WORK(&wrk->work, process_err_fn);
1056 schedule_work(&wrk->work);
1057}
1058
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001059
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001060static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request)
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001061{
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001062 struct scsi_cmnd *scmnd = cmd_request->cmd;
1063 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
1064 void (*scsi_done_fn)(struct scsi_cmnd *);
1065 struct scsi_sense_hdr sense_hdr;
1066 struct vmscsi_request *vm_srb;
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001067 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001068 struct Scsi_Host *host;
1069 struct storvsc_device *stor_dev;
1070 struct hv_device *dev = host_dev->dev;
1071
1072 stor_dev = get_in_stor_device(dev);
1073 host = stor_dev->host;
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001074
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001075 vm_srb = &cmd_request->vstor_packet.vm_srb;
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001076 if (cmd_request->bounce_sgl_count) {
1077 if (vm_srb->data_in == READ_TYPE)
1078 copy_from_bounce_buffer(scsi_sglist(scmnd),
1079 cmd_request->bounce_sgl,
1080 scsi_sg_count(scmnd),
1081 cmd_request->bounce_sgl_count);
1082 destroy_bounce_buffer(cmd_request->bounce_sgl,
1083 cmd_request->bounce_sgl_count);
1084 }
1085
K. Y. Srinivasan42e22ca2012-04-05 12:26:52 -07001086 scmnd->result = vm_srb->scsi_status;
1087
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001088 if (scmnd->result) {
1089 if (scsi_normalize_sense(scmnd->sense_buffer,
1090 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
1091 scsi_print_sense_hdr("storvsc", &sense_hdr);
1092 }
1093
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001094 if (vm_srb->srb_status != SRB_STATUS_SUCCESS)
1095 storvsc_handle_error(vm_srb, scmnd, host, sense_hdr.asc,
1096 sense_hdr.ascq);
1097
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001098 scsi_set_resid(scmnd,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001099 cmd_request->data_buffer.len -
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001100 vm_srb->data_transfer_length);
1101
1102 scsi_done_fn = scmnd->scsi_done;
1103
1104 scmnd->host_scribble = NULL;
1105 scmnd->scsi_done = NULL;
1106
1107 scsi_done_fn(scmnd);
1108
1109 mempool_free(cmd_request, memp->request_mempool);
1110}
1111
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001112static void storvsc_on_io_completion(struct hv_device *device,
1113 struct vstor_packet *vstor_packet,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001114 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001115{
1116 struct storvsc_device *stor_device;
1117 struct vstor_packet *stor_pkt;
1118
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001119 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001120 stor_pkt = &request->vstor_packet;
1121
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -07001122 /*
1123 * The current SCSI handling on the host side does
1124 * not correctly handle:
1125 * INQUIRY command with page code parameter set to 0x80
1126 * MODE_SENSE command with cmd[2] == 0x1c
1127 *
1128 * Setup srb and scsi status so this won't be fatal.
1129 * We do this so we can distinguish truly fatal failues
1130 * (srb status == 0x4) and off-line the device in that case.
1131 */
1132
1133 if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -08001134 (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -07001135 vstor_packet->vm_srb.scsi_status = 0;
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001136 vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS;
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -07001137 }
1138
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001139
1140 /* Copy over the status...etc */
1141 stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
1142 stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
1143 stor_pkt->vm_srb.sense_info_length =
1144 vstor_packet->vm_srb.sense_info_length;
1145
1146 if (vstor_packet->vm_srb.scsi_status != 0 ||
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001147 vstor_packet->vm_srb.srb_status != SRB_STATUS_SUCCESS){
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -06001148 dev_warn(&device->device,
1149 "cmd 0x%x scsi status 0x%x srb status 0x%x\n",
1150 stor_pkt->vm_srb.cdb[0],
1151 vstor_packet->vm_srb.scsi_status,
1152 vstor_packet->vm_srb.srb_status);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001153 }
1154
1155 if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
1156 /* CHECK_CONDITION */
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001157 if (vstor_packet->vm_srb.srb_status &
1158 SRB_STATUS_AUTOSENSE_VALID) {
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001159 /* autosense data available */
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -06001160 dev_warn(&device->device,
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001161 "stor pkt %p autosense data valid - len %d\n",
1162 request,
1163 vstor_packet->vm_srb.sense_info_length);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001164
1165 memcpy(request->sense_buffer,
1166 vstor_packet->vm_srb.sense_data,
1167 vstor_packet->vm_srb.sense_info_length);
1168
1169 }
1170 }
1171
1172 stor_pkt->vm_srb.data_transfer_length =
1173 vstor_packet->vm_srb.data_transfer_length;
1174
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001175 storvsc_command_completion(request);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001176
1177 if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
1178 stor_device->drain_notify)
1179 wake_up(&stor_device->waiting_to_drain);
1180
1181
1182}
1183
1184static void storvsc_on_receive(struct hv_device *device,
1185 struct vstor_packet *vstor_packet,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001186 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001187{
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001188 struct storvsc_scan_work *work;
1189 struct storvsc_device *stor_device;
1190
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001191 switch (vstor_packet->operation) {
1192 case VSTOR_OPERATION_COMPLETE_IO:
1193 storvsc_on_io_completion(device, vstor_packet, request);
1194 break;
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001195
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001196 case VSTOR_OPERATION_REMOVE_DEVICE:
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001197 case VSTOR_OPERATION_ENUMERATE_BUS:
1198 stor_device = get_in_stor_device(device);
1199 work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
1200 if (!work)
1201 return;
1202
1203 INIT_WORK(&work->work, storvsc_bus_scan);
1204 work->host = stor_device->host;
1205 schedule_work(&work->work);
1206 break;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001207
1208 default:
1209 break;
1210 }
1211}
1212
1213static void storvsc_on_channel_callback(void *context)
1214{
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001215 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1216 struct hv_device *device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001217 struct storvsc_device *stor_device;
1218 u32 bytes_recvd;
1219 u64 request_id;
1220 unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)];
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001221 struct storvsc_cmd_request *request;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001222 int ret;
1223
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001224 if (channel->primary_channel != NULL)
1225 device = channel->primary_channel->device_obj;
1226 else
1227 device = channel->device_obj;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001228
1229 stor_device = get_in_stor_device(device);
1230 if (!stor_device)
1231 return;
1232
1233 do {
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001234 ret = vmbus_recvpacket(channel, packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001235 ALIGN((sizeof(struct vstor_packet) -
1236 vmscsi_size_delta), 8),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001237 &bytes_recvd, &request_id);
1238 if (ret == 0 && bytes_recvd > 0) {
1239
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001240 request = (struct storvsc_cmd_request *)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001241 (unsigned long)request_id;
1242
1243 if ((request == &stor_device->init_request) ||
1244 (request == &stor_device->reset_request)) {
1245
1246 memcpy(&request->vstor_packet, packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001247 (sizeof(struct vstor_packet) -
1248 vmscsi_size_delta));
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001249 complete(&request->wait_event);
1250 } else {
1251 storvsc_on_receive(device,
1252 (struct vstor_packet *)packet,
1253 request);
1254 }
1255 } else {
1256 break;
1257 }
1258 } while (1);
1259
1260 return;
1261}
1262
1263static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
1264{
1265 struct vmstorage_channel_properties props;
1266 int ret;
1267
1268 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
1269
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001270 ret = vmbus_open(device->channel,
1271 ring_size,
1272 ring_size,
1273 (void *)&props,
1274 sizeof(struct vmstorage_channel_properties),
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001275 storvsc_on_channel_callback, device->channel);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001276
1277 if (ret != 0)
1278 return ret;
1279
1280 ret = storvsc_channel_init(device);
1281
1282 return ret;
1283}
1284
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -07001285static int storvsc_dev_remove(struct hv_device *device)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001286{
1287 struct storvsc_device *stor_device;
1288 unsigned long flags;
1289
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001290 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001291
1292 spin_lock_irqsave(&device->channel->inbound_lock, flags);
1293 stor_device->destroy = true;
1294 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1295
1296 /*
1297 * At this point, all outbound traffic should be disable. We
1298 * only allow inbound traffic (responses) to proceed so that
1299 * outstanding requests can be completed.
1300 */
1301
1302 storvsc_wait_to_drain(stor_device);
1303
1304 /*
1305 * Since we have already drained, we don't need to busy wait
1306 * as was done in final_release_stor_device()
1307 * Note that we cannot set the ext pointer to NULL until
1308 * we have drained - to drain the outgoing packets, we need to
1309 * allow incoming packets.
1310 */
1311 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001312 hv_set_drvdata(device, NULL);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001313 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1314
1315 /* Close the channel */
1316 vmbus_close(device->channel);
1317
1318 kfree(stor_device);
1319 return 0;
1320}
1321
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -07001322static int storvsc_do_io(struct hv_device *device,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001323 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001324{
1325 struct storvsc_device *stor_device;
1326 struct vstor_packet *vstor_packet;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001327 struct vmbus_channel *outgoing_channel;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001328 int ret = 0;
1329
1330 vstor_packet = &request->vstor_packet;
1331 stor_device = get_out_stor_device(device);
1332
1333 if (!stor_device)
1334 return -ENODEV;
1335
1336
1337 request->device = device;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001338 /*
1339 * Select an an appropriate channel to send the request out.
1340 */
1341
1342 outgoing_channel = vmbus_get_outgoing_channel(device->channel);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001343
1344
1345 vstor_packet->flags |= REQUEST_COMPLETION_FLAG;
1346
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001347 vstor_packet->vm_srb.length = (sizeof(struct vmscsi_request) -
1348 vmscsi_size_delta);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001349
1350
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001351 vstor_packet->vm_srb.sense_info_length = sense_buffer_size;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001352
1353
1354 vstor_packet->vm_srb.data_transfer_length =
1355 request->data_buffer.len;
1356
1357 vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;
1358
1359 if (request->data_buffer.len) {
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001360 ret = vmbus_sendpacket_multipagebuffer(outgoing_channel,
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001361 &request->data_buffer,
1362 vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001363 (sizeof(struct vstor_packet) -
1364 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001365 (unsigned long)request);
1366 } else {
1367 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001368 (sizeof(struct vstor_packet) -
1369 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001370 (unsigned long)request,
1371 VM_PKT_DATA_INBAND,
1372 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1373 }
1374
1375 if (ret != 0)
1376 return ret;
1377
1378 atomic_inc(&stor_device->num_outstanding_req);
1379
1380 return ret;
1381}
1382
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -07001383static int storvsc_device_alloc(struct scsi_device *sdevice)
1384{
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001385 struct stor_mem_pools *memp;
1386 int number = STORVSC_MIN_BUF_NR;
1387
1388 memp = kzalloc(sizeof(struct stor_mem_pools), GFP_KERNEL);
1389 if (!memp)
1390 return -ENOMEM;
1391
1392 memp->request_pool =
1393 kmem_cache_create(dev_name(&sdevice->sdev_dev),
1394 sizeof(struct storvsc_cmd_request), 0,
1395 SLAB_HWCACHE_ALIGN, NULL);
1396
1397 if (!memp->request_pool)
1398 goto err0;
1399
1400 memp->request_mempool = mempool_create(number, mempool_alloc_slab,
1401 mempool_free_slab,
1402 memp->request_pool);
1403
1404 if (!memp->request_mempool)
1405 goto err1;
1406
1407 sdevice->hostdata = memp;
1408
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -07001409 return 0;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001410
1411err1:
1412 kmem_cache_destroy(memp->request_pool);
1413
1414err0:
1415 kfree(memp);
1416 return -ENOMEM;
1417}
1418
1419static void storvsc_device_destroy(struct scsi_device *sdevice)
1420{
1421 struct stor_mem_pools *memp = sdevice->hostdata;
1422
Ales Novakb12bb602014-02-27 11:03:30 +01001423 if (!memp)
1424 return;
1425
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001426 mempool_destroy(memp->request_mempool);
1427 kmem_cache_destroy(memp->request_pool);
1428 kfree(memp);
1429 sdevice->hostdata = NULL;
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -07001430}
1431
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001432static int storvsc_device_configure(struct scsi_device *sdevice)
1433{
1434 scsi_adjust_queue_depth(sdevice, MSG_SIMPLE_TAG,
1435 STORVSC_MAX_IO_REQUESTS);
1436
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001437 blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE);
1438
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001439 blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001440
K. Y. Srinivasan893def32013-06-04 12:05:05 -07001441 blk_queue_rq_timeout(sdevice->request_queue, (storvsc_timeout * HZ));
1442
Olaf Hering3e8f4f42013-02-21 12:04:51 -08001443 sdevice->no_write_same = 1;
1444
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001445 return 0;
1446}
1447
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001448static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
1449 sector_t capacity, int *info)
1450{
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001451 sector_t nsect = capacity;
1452 sector_t cylinders = nsect;
1453 int heads, sectors_pt;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001454
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001455 /*
1456 * We are making up these values; let us keep it simple.
1457 */
1458 heads = 0xff;
1459 sectors_pt = 0x3f; /* Sectors per track */
1460 sector_div(cylinders, heads * sectors_pt);
1461 if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
1462 cylinders = 0xffff;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001463
1464 info[0] = heads;
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001465 info[1] = sectors_pt;
1466 info[2] = (int)cylinders;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001467
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001468 return 0;
1469}
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001470
K. Y. Srinivasan4b270c82012-01-12 12:37:58 -08001471static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001472{
K. Y. Srinivasan4b270c82012-01-12 12:37:58 -08001473 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
1474 struct hv_device *device = host_dev->dev;
1475
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001476 struct storvsc_device *stor_device;
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001477 struct storvsc_cmd_request *request;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001478 struct vstor_packet *vstor_packet;
1479 int ret, t;
1480
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001481
K. Y. Srinivasan1eaaddf2011-08-27 11:31:03 -07001482 stor_device = get_out_stor_device(device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001483 if (!stor_device)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001484 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001485
1486 request = &stor_device->reset_request;
1487 vstor_packet = &request->vstor_packet;
1488
1489 init_completion(&request->wait_event);
1490
1491 vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
1492 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1493 vstor_packet->vm_srb.path_id = stor_device->path_id;
1494
1495 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001496 (sizeof(struct vstor_packet) -
1497 vmscsi_size_delta),
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001498 (unsigned long)&stor_device->reset_request,
1499 VM_PKT_DATA_INBAND,
1500 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1501 if (ret != 0)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001502 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001503
K. Y. Srinivasan46d2eb62011-06-16 13:16:36 -07001504 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001505 if (t == 0)
1506 return TIMEOUT_ERROR;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001507
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001508
1509 /*
1510 * At this point, all outstanding requests in the adapter
1511 * should have been flushed out and return to us
K. Y. Srinivasan5c1b10a2012-10-02 11:03:31 -07001512 * There is a potential race here where the host may be in
1513 * the process of responding when we return from here.
1514 * Just wait for all in-transit packets to be accounted for
1515 * before we return from here.
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001516 */
K. Y. Srinivasan5c1b10a2012-10-02 11:03:31 -07001517 storvsc_wait_to_drain(stor_device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001518
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001519 return SUCCESS;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001520}
1521
K. Y. Srinivasan56b26e62014-07-12 09:48:30 -07001522/*
1523 * The host guarantees to respond to each command, although I/O latencies might
1524 * be unbounded on Azure. Reset the timer unconditionally to give the host a
1525 * chance to perform EH.
1526 */
1527static enum blk_eh_timer_return storvsc_eh_timed_out(struct scsi_cmnd *scmnd)
1528{
1529 return BLK_EH_RESET_TIMER;
1530}
1531
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001532static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd)
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001533{
1534 bool allowed = true;
1535 u8 scsi_op = scmnd->cmnd[0];
1536
1537 switch (scsi_op) {
Olaf Hering3e8f4f42013-02-21 12:04:51 -08001538 /* the host does not handle WRITE_SAME, log accident usage */
1539 case WRITE_SAME:
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001540 /*
1541 * smartd sends this command and the host does not handle
1542 * this. So, don't send it.
1543 */
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001544 case SET_WINDOW:
K. Y. Srinivasan59e00e72011-11-08 09:01:42 -08001545 scmnd->result = ILLEGAL_REQUEST << 16;
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001546 allowed = false;
1547 break;
1548 default:
1549 break;
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001550 }
1551 return allowed;
1552}
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001553
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001554static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001555{
1556 int ret;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001557 struct hv_host_device *host_dev = shost_priv(host);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001558 struct hv_device *dev = host_dev->dev;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001559 struct storvsc_cmd_request *cmd_request;
1560 unsigned int request_size = 0;
1561 int i;
1562 struct scatterlist *sgl;
1563 unsigned int sg_count = 0;
1564 struct vmscsi_request *vm_srb;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001565 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001566
K. Y. Srinivasan8caf92d2014-07-12 09:48:28 -07001567 if (vmstor_current_major <= VMSTOR_WIN8_MAJOR) {
1568 /*
1569 * On legacy hosts filter unimplemented commands.
1570 * Future hosts are expected to correctly handle
1571 * unsupported commands. Furthermore, it is
1572 * possible that some of the currently
1573 * unsupported commands maybe supported in
1574 * future versions of the host.
1575 */
1576 if (!storvsc_scsi_cmd_ok(scmnd)) {
1577 scmnd->scsi_done(scmnd);
1578 return 0;
1579 }
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001580 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001581
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001582 request_size = sizeof(struct storvsc_cmd_request);
1583
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001584 cmd_request = mempool_alloc(memp->request_mempool,
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001585 GFP_ATOMIC);
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001586
1587 /*
1588 * We might be invoked in an interrupt context; hence
1589 * mempool_alloc() can fail.
1590 */
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001591 if (!cmd_request)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001592 return SCSI_MLQUEUE_DEVICE_BUSY;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001593
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001594 memset(cmd_request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001595
1596 /* Setup the cmd request */
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001597 cmd_request->cmd = scmnd;
1598
1599 scmnd->host_scribble = (unsigned char *)cmd_request;
1600
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001601 vm_srb = &cmd_request->vstor_packet.vm_srb;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001602 vm_srb->win8_extension.time_out_value = 60;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001603
1604
1605 /* Build the SRB */
1606 switch (scmnd->sc_data_direction) {
1607 case DMA_TO_DEVICE:
1608 vm_srb->data_in = WRITE_TYPE;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001609 vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_OUT;
1610 vm_srb->win8_extension.srb_flags |=
1611 (SRB_FLAGS_QUEUE_ACTION_ENABLE |
1612 SRB_FLAGS_DISABLE_SYNCH_TRANSFER);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001613 break;
1614 case DMA_FROM_DEVICE:
1615 vm_srb->data_in = READ_TYPE;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001616 vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_IN;
1617 vm_srb->win8_extension.srb_flags |=
1618 (SRB_FLAGS_QUEUE_ACTION_ENABLE |
1619 SRB_FLAGS_DISABLE_SYNCH_TRANSFER);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001620 break;
1621 default:
1622 vm_srb->data_in = UNKNOWN_TYPE;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001623 vm_srb->win8_extension.srb_flags = 0;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001624 break;
1625 }
1626
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001627
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001628 vm_srb->port_number = host_dev->port;
1629 vm_srb->path_id = scmnd->device->channel;
1630 vm_srb->target_id = scmnd->device->id;
1631 vm_srb->lun = scmnd->device->lun;
1632
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001633 vm_srb->cdb_length = scmnd->cmd_len;
1634
1635 memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);
1636
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001637 cmd_request->sense_buffer = scmnd->sense_buffer;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001638
1639
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001640 cmd_request->data_buffer.len = scsi_bufflen(scmnd);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001641 if (scsi_sg_count(scmnd)) {
1642 sgl = (struct scatterlist *)scsi_sglist(scmnd);
1643 sg_count = scsi_sg_count(scmnd);
1644
1645 /* check if we need to bounce the sgl */
1646 if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) {
1647 cmd_request->bounce_sgl =
1648 create_bounce_buffer(sgl, scsi_sg_count(scmnd),
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -08001649 scsi_bufflen(scmnd),
1650 vm_srb->data_in);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001651 if (!cmd_request->bounce_sgl) {
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001652 ret = SCSI_MLQUEUE_HOST_BUSY;
1653 goto queue_error;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001654 }
1655
1656 cmd_request->bounce_sgl_count =
1657 ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
1658 PAGE_SHIFT;
1659
K. Y. Srinivasanfa23b8c2011-08-27 11:31:21 -07001660 if (vm_srb->data_in == WRITE_TYPE)
1661 copy_to_bounce_buffer(sgl,
1662 cmd_request->bounce_sgl,
1663 scsi_sg_count(scmnd));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001664
1665 sgl = cmd_request->bounce_sgl;
1666 sg_count = cmd_request->bounce_sgl_count;
1667 }
1668
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001669 cmd_request->data_buffer.offset = sgl[0].offset;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001670
1671 for (i = 0; i < sg_count; i++)
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001672 cmd_request->data_buffer.pfn_array[i] =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001673 page_to_pfn(sg_page((&sgl[i])));
1674
1675 } else if (scsi_sglist(scmnd)) {
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001676 cmd_request->data_buffer.offset =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001677 virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1);
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001678 cmd_request->data_buffer.pfn_array[0] =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001679 virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT;
1680 }
1681
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001682 /* Invokes the vsc to start an IO */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001683 ret = storvsc_do_io(dev, cmd_request);
K. Y. Srinivasan636f0fd2011-05-10 07:54:50 -07001684
K. Y. Srinivasand2598f02011-08-25 09:48:58 -07001685 if (ret == -EAGAIN) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001686 /* no more space */
1687
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001688 if (cmd_request->bounce_sgl_count) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001689 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan70691ec2011-08-27 11:31:29 -07001690 cmd_request->bounce_sgl_count);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001691
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001692 ret = SCSI_MLQUEUE_DEVICE_BUSY;
1693 goto queue_error;
1694 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001695 }
1696
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001697 return 0;
1698
1699queue_error:
1700 mempool_free(cmd_request, memp->request_mempool);
1701 scmnd->host_scribble = NULL;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001702 return ret;
1703}
1704
Hank Janssenbef4a342009-07-13 16:01:31 -07001705static struct scsi_host_template scsi_driver = {
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001706 .module = THIS_MODULE,
1707 .name = "storvsc_host_t",
1708 .bios_param = storvsc_get_chs,
1709 .queuecommand = storvsc_queuecommand,
1710 .eh_host_reset_handler = storvsc_host_reset_handler,
K. Y. Srinivasan56b26e62014-07-12 09:48:30 -07001711 .eh_timed_out = storvsc_eh_timed_out,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001712 .slave_alloc = storvsc_device_alloc,
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001713 .slave_destroy = storvsc_device_destroy,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001714 .slave_configure = storvsc_device_configure,
K. Y. Srinivasan52f96142014-07-12 09:48:27 -07001715 .cmd_per_lun = 255,
Lars Lindley0686e4f2010-03-11 23:51:23 +01001716 .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001717 .this_id = -1,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001718 /* no use setting to 0 since ll_blk_rw reset it to 1 */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001719 /* currently 32 */
1720 .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT,
K. Y. Srinivasan039db522011-12-01 04:59:16 -08001721 .use_clustering = DISABLE_CLUSTERING,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001722 /* Make sure we dont get a sg segment crosses a page boundary */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001723 .dma_boundary = PAGE_SIZE-1,
Martin K. Petersen54b2b502013-10-23 06:25:40 -04001724 .no_write_same = 1,
Hank Janssenbef4a342009-07-13 16:01:31 -07001725};
1726
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001727enum {
1728 SCSI_GUID,
1729 IDE_GUID,
K. Y. Srinivasanbde6d0f2013-06-04 12:05:08 -07001730 SFC_GUID,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001731};
1732
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001733static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001734 /* SCSI guid */
K. Y. Srinivasan35c3bc22013-01-23 17:42:43 -08001735 { HV_SCSI_GUID,
1736 .driver_data = SCSI_GUID
1737 },
K. Y. Srinivasan21e37742011-08-27 11:31:18 -07001738 /* IDE guid */
K. Y. Srinivasan35c3bc22013-01-23 17:42:43 -08001739 { HV_IDE_GUID,
1740 .driver_data = IDE_GUID
1741 },
K. Y. Srinivasanbde6d0f2013-06-04 12:05:08 -07001742 /* Fibre Channel GUID */
1743 {
1744 HV_SYNTHFC_GUID,
1745 .driver_data = SFC_GUID
1746 },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001747 { },
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001748};
Hank Janssenbef4a342009-07-13 16:01:31 -07001749
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001750MODULE_DEVICE_TABLE(vmbus, id_table);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001751
K. Y. Srinivasan84946892011-09-13 10:59:38 -07001752static int storvsc_probe(struct hv_device *device,
1753 const struct hv_vmbus_device_id *dev_id)
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001754{
1755 int ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001756 struct Scsi_Host *host;
1757 struct hv_host_device *host_dev;
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001758 bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001759 int target = 0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001760 struct storvsc_device *stor_device;
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001761
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001762 /*
1763 * Based on the windows host we are running on,
1764 * set state to properly communicate with the host.
1765 */
1766
K. Y. Srinivasanadb6f9e2014-07-12 09:48:29 -07001767 switch (vmbus_proto_version) {
1768 case VERSION_WS2008:
1769 case VERSION_WIN7:
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001770 sense_buffer_size = PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE;
1771 vmscsi_size_delta = sizeof(struct vmscsi_win8_extension);
1772 vmstor_current_major = VMSTOR_WIN7_MAJOR;
1773 vmstor_current_minor = VMSTOR_WIN7_MINOR;
K. Y. Srinivasanadb6f9e2014-07-12 09:48:29 -07001774 break;
1775 default:
1776 sense_buffer_size = POST_WIN7_STORVSC_SENSE_BUFFER_SIZE;
1777 vmscsi_size_delta = 0;
1778 vmstor_current_major = VMSTOR_WIN8_MAJOR;
1779 vmstor_current_minor = VMSTOR_WIN8_MINOR;
1780 break;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001781 }
1782
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -07001783 if (dev_id->driver_data == SFC_GUID)
1784 scsi_driver.can_queue = (STORVSC_MAX_IO_REQUESTS *
1785 STORVSC_FC_MAX_TARGETS);
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001786 host = scsi_host_alloc(&scsi_driver,
1787 sizeof(struct hv_host_device));
1788 if (!host)
1789 return -ENOMEM;
1790
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001791 host_dev = shost_priv(host);
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001792 memset(host_dev, 0, sizeof(struct hv_host_device));
1793
1794 host_dev->port = host->host_no;
1795 host_dev->dev = device;
1796
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001797
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001798 stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001799 if (!stor_device) {
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001800 ret = -ENOMEM;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001801 goto err_out0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001802 }
1803
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001804 stor_device->destroy = false;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001805 stor_device->open_sub_channel = false;
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001806 init_waitqueue_head(&stor_device->waiting_to_drain);
1807 stor_device->device = device;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001808 stor_device->host = host;
1809 hv_set_drvdata(device, stor_device);
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001810
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001811 stor_device->port_number = host->host_no;
1812 ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001813 if (ret)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001814 goto err_out1;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001815
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001816 host_dev->path = stor_device->path_id;
1817 host_dev->target = stor_device->target_id;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001818
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -07001819 switch (dev_id->driver_data) {
1820 case SFC_GUID:
1821 host->max_lun = STORVSC_FC_MAX_LUNS_PER_TARGET;
1822 host->max_id = STORVSC_FC_MAX_TARGETS;
1823 host->max_channel = STORVSC_FC_MAX_CHANNELS - 1;
1824 break;
1825
1826 case SCSI_GUID:
1827 host->max_lun = STORVSC_MAX_LUNS_PER_TARGET;
1828 host->max_id = STORVSC_MAX_TARGETS;
1829 host->max_channel = STORVSC_MAX_CHANNELS - 1;
1830 break;
1831
1832 default:
1833 host->max_lun = STORVSC_IDE_MAX_LUNS_PER_TARGET;
1834 host->max_id = STORVSC_IDE_MAX_TARGETS;
1835 host->max_channel = STORVSC_IDE_MAX_CHANNELS - 1;
1836 break;
1837 }
Mike Sterlingcf55f4a2011-09-06 16:10:55 -07001838 /* max cmd length */
1839 host->max_cmd_len = STORVSC_MAX_CMD_LEN;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001840
1841 /* Register the HBA and start the scsi bus scan */
1842 ret = scsi_add_host(host, &device->device);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001843 if (ret != 0)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001844 goto err_out2;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001845
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001846 if (!dev_is_ide) {
1847 scsi_scan_host(host);
K. Y. Srinivasan59d22952012-01-12 12:37:55 -08001848 } else {
1849 target = (device->dev_instance.b[5] << 8 |
1850 device->dev_instance.b[4]);
1851 ret = scsi_add_device(host, 0, target, 0);
1852 if (ret) {
1853 scsi_remove_host(host);
1854 goto err_out2;
1855 }
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001856 }
1857 return 0;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001858
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001859err_out2:
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001860 /*
1861 * Once we have connected with the host, we would need to
1862 * to invoke storvsc_dev_remove() to rollback this state and
1863 * this call also frees up the stor_device; hence the jump around
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001864 * err_out1 label.
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001865 */
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001866 storvsc_dev_remove(device);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001867 goto err_out0;
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001868
1869err_out1:
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001870 kfree(stor_device);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001871
1872err_out0:
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001873 scsi_host_put(host);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001874 return ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001875}
1876
K. Y. Srinivasanddcbf652012-01-12 12:37:59 -08001877static int storvsc_remove(struct hv_device *dev)
1878{
1879 struct storvsc_device *stor_device = hv_get_drvdata(dev);
1880 struct Scsi_Host *host = stor_device->host;
1881
1882 scsi_remove_host(host);
1883 storvsc_dev_remove(dev);
1884 scsi_host_put(host);
1885
1886 return 0;
1887}
1888
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001889static struct hv_driver storvsc_drv = {
K. Y. Srinivasanfafb0ef2011-11-08 09:01:46 -08001890 .name = KBUILD_MODNAME,
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001891 .id_table = id_table,
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001892 .probe = storvsc_probe,
1893 .remove = storvsc_remove,
K. Y. Srinivasan39ae6fa2011-05-10 07:54:46 -07001894};
K. Y. Srinivasan7bd05b92011-05-10 07:54:45 -07001895
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001896static int __init storvsc_drv_init(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001897{
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001898 u32 max_outstanding_req_per_channel;
1899
1900 /*
1901 * Divide the ring buffer data size (which is 1 page less
1902 * than the ring buffer size since that page is reserved for
1903 * the ring buffer indices) by the max request size (which is
1904 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
1905 */
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001906 max_outstanding_req_per_channel =
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001907 ((storvsc_ringbuffer_size - PAGE_SIZE) /
1908 ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001909 sizeof(struct vstor_packet) + sizeof(u64) -
1910 vmscsi_size_delta,
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001911 sizeof(u64)));
Hank Janssenbef4a342009-07-13 16:01:31 -07001912
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001913 if (max_outstanding_req_per_channel <
K. Y. Srinivasanf8feed02011-05-10 07:54:24 -07001914 STORVSC_MAX_IO_REQUESTS)
K. Y. Srinivasanb06efc12011-08-25 09:49:10 -07001915 return -EINVAL;
Hank Janssenbef4a342009-07-13 16:01:31 -07001916
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001917 return vmbus_driver_register(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001918}
1919
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001920static void __exit storvsc_drv_exit(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001921{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001922 vmbus_driver_unregister(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001923}
1924
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001925MODULE_LICENSE("GPL");
Stephen Hemminger3afc7cc32010-05-06 21:44:45 -07001926MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001927module_init(storvsc_drv_init);
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001928module_exit(storvsc_drv_exit);