blob: 4156e297ea64d730629acfd6fc6755f5b8c9994d [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. Srinivasan56b26e62014-07-12 09:48:30 -070035#include <linux/blkdev.h>
Hank Janssenbef4a342009-07-13 16:01:31 -070036#include <scsi/scsi.h>
37#include <scsi/scsi_cmnd.h>
38#include <scsi/scsi_host.h>
39#include <scsi/scsi_device.h>
40#include <scsi/scsi_tcq.h>
41#include <scsi/scsi_eh.h>
42#include <scsi/scsi_devinfo.h>
Hank Janssenbef4a342009-07-13 16:01:31 -070043#include <scsi/scsi_dbg.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070044
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080045/*
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -080046 * All wire protocol details (storage protocol between the guest and the host)
47 * are consolidated here.
48 *
49 * Begin protocol definitions.
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080050 */
51
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080052/*
53 * Version history:
54 * V1 Beta: 0.1
55 * V1 RC < 2008/1/31: 1.0
56 * V1 RC > 2008/1/31: 2.0
57 * Win7: 4.2
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070058 * Win8: 5.1
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080059 */
60
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070061
62#define VMSTOR_WIN7_MAJOR 4
63#define VMSTOR_WIN7_MINOR 2
64
65#define VMSTOR_WIN8_MAJOR 5
66#define VMSTOR_WIN8_MINOR 1
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070067
68
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070069/* Packet structure describing virtual storage requests. */
70enum vstor_packet_operation {
71 VSTOR_OPERATION_COMPLETE_IO = 1,
72 VSTOR_OPERATION_REMOVE_DEVICE = 2,
73 VSTOR_OPERATION_EXECUTE_SRB = 3,
74 VSTOR_OPERATION_RESET_LUN = 4,
75 VSTOR_OPERATION_RESET_ADAPTER = 5,
76 VSTOR_OPERATION_RESET_BUS = 6,
77 VSTOR_OPERATION_BEGIN_INITIALIZATION = 7,
78 VSTOR_OPERATION_END_INITIALIZATION = 8,
79 VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9,
80 VSTOR_OPERATION_QUERY_PROPERTIES = 10,
K. Y. Srinivasan2b9525f2011-11-08 09:01:48 -080081 VSTOR_OPERATION_ENUMERATE_BUS = 11,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070082 VSTOR_OPERATION_FCHBA_DATA = 12,
83 VSTOR_OPERATION_CREATE_SUB_CHANNELS = 13,
84 VSTOR_OPERATION_MAXIMUM = 13
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070085};
86
87/*
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -070088 * WWN packet for Fibre Channel HBA
89 */
90
91struct hv_fc_wwn_packet {
92 bool primary_active;
93 u8 reserved1;
94 u8 reserved2;
95 u8 primary_port_wwn[8];
96 u8 primary_node_wwn[8];
97 u8 secondary_port_wwn[8];
98 u8 secondary_node_wwn[8];
99};
100
101
102
103/*
104 * SRB Flag Bits
105 */
106
107#define SRB_FLAGS_QUEUE_ACTION_ENABLE 0x00000002
108#define SRB_FLAGS_DISABLE_DISCONNECT 0x00000004
109#define SRB_FLAGS_DISABLE_SYNCH_TRANSFER 0x00000008
110#define SRB_FLAGS_BYPASS_FROZEN_QUEUE 0x00000010
111#define SRB_FLAGS_DISABLE_AUTOSENSE 0x00000020
112#define SRB_FLAGS_DATA_IN 0x00000040
113#define SRB_FLAGS_DATA_OUT 0x00000080
114#define SRB_FLAGS_NO_DATA_TRANSFER 0x00000000
115#define SRB_FLAGS_UNSPECIFIED_DIRECTION (SRB_FLAGS_DATA_IN | SRB_FLAGS_DATA_OUT)
116#define SRB_FLAGS_NO_QUEUE_FREEZE 0x00000100
117#define SRB_FLAGS_ADAPTER_CACHE_ENABLE 0x00000200
118#define SRB_FLAGS_FREE_SENSE_BUFFER 0x00000400
119
120/*
121 * This flag indicates the request is part of the workflow for processing a D3.
122 */
123#define SRB_FLAGS_D3_PROCESSING 0x00000800
124#define SRB_FLAGS_IS_ACTIVE 0x00010000
125#define SRB_FLAGS_ALLOCATED_FROM_ZONE 0x00020000
126#define SRB_FLAGS_SGLIST_FROM_POOL 0x00040000
127#define SRB_FLAGS_BYPASS_LOCKED_QUEUE 0x00080000
128#define SRB_FLAGS_NO_KEEP_AWAKE 0x00100000
129#define SRB_FLAGS_PORT_DRIVER_ALLOCSENSE 0x00200000
130#define SRB_FLAGS_PORT_DRIVER_SENSEHASPORT 0x00400000
131#define SRB_FLAGS_DONT_START_NEXT_PACKET 0x00800000
132#define SRB_FLAGS_PORT_DRIVER_RESERVED 0x0F000000
133#define SRB_FLAGS_CLASS_DRIVER_RESERVED 0xF0000000
134
135
136/*
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700137 * Platform neutral description of a scsi request -
138 * this remains the same across the write regardless of 32/64 bit
139 * note: it's patterned off the SCSI_PASS_THROUGH structure
140 */
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800141#define STORVSC_MAX_CMD_LEN 0x10
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700142
143#define POST_WIN7_STORVSC_SENSE_BUFFER_SIZE 0x14
144#define PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE 0x12
145
146#define STORVSC_SENSE_BUFFER_SIZE 0x14
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800147#define STORVSC_MAX_BUF_LEN_WITH_PADDING 0x14
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700148
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700149/*
150 * Sense buffer size changed in win8; have a run-time
151 * variable to track the size we should use.
152 */
153static int sense_buffer_size;
154
155/*
156 * The size of the vmscsi_request has changed in win8. The
157 * additional size is because of new elements added to the
158 * structure. These elements are valid only when we are talking
159 * to a win8 host.
160 * Track the correction to size we need to apply.
161 */
162
163static int vmscsi_size_delta;
164static int vmstor_current_major;
165static int vmstor_current_minor;
166
167struct vmscsi_win8_extension {
168 /*
169 * The following were added in Windows 8
170 */
171 u16 reserve;
172 u8 queue_tag;
173 u8 queue_action;
174 u32 srb_flags;
175 u32 time_out_value;
176 u32 queue_sort_ey;
177} __packed;
178
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700179struct vmscsi_request {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800180 u16 length;
181 u8 srb_status;
182 u8 scsi_status;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700183
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800184 u8 port_number;
185 u8 path_id;
186 u8 target_id;
187 u8 lun;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700188
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800189 u8 cdb_length;
190 u8 sense_info_length;
191 u8 data_in;
192 u8 reserved;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700193
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800194 u32 data_transfer_length;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700195
196 union {
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800197 u8 cdb[STORVSC_MAX_CMD_LEN];
198 u8 sense_data[STORVSC_SENSE_BUFFER_SIZE];
199 u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING];
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700200 };
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700201 /*
202 * The following was added in win8.
203 */
204 struct vmscsi_win8_extension win8_extension;
205
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700206} __attribute((packed));
207
208
209/*
210 * This structure is sent during the intialization phase to get the different
211 * properties of the channel.
212 */
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700213
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700214#define STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL 0x1
215
216struct vmstorage_channel_properties {
217 u32 reserved;
218 u16 max_channel_cnt;
219 u16 reserved1;
220
221 u32 flags;
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800222 u32 max_transfer_bytes;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700223
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700224 u64 reserved2;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700225} __packed;
226
227/* This structure is sent during the storage protocol negotiations. */
228struct vmstorage_protocol_version {
229 /* Major (MSW) and minor (LSW) version numbers. */
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800230 u16 major_minor;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700231
232 /*
233 * Revision number is auto-incremented whenever this file is changed
234 * (See FILL_VMSTOR_REVISION macro above). Mismatch does not
235 * definitely indicate incompatibility--but it does indicate mismatched
236 * builds.
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800237 * This is only used on the windows side. Just set it to 0.
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700238 */
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800239 u16 revision;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700240} __packed;
241
242/* Channel Property Flags */
243#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1
244#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2
245
246struct vstor_packet {
247 /* Requested operation type */
248 enum vstor_packet_operation operation;
249
250 /* Flags - see below for values */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800251 u32 flags;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700252
253 /* Status of the request returned from the server side. */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800254 u32 status;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700255
256 /* Data payload area */
257 union {
258 /*
259 * Structure used to forward SCSI commands from the
260 * client to the server.
261 */
262 struct vmscsi_request vm_srb;
263
264 /* Structure used to query channel properties. */
265 struct vmstorage_channel_properties storage_channel_properties;
266
267 /* Used during version negotiations. */
268 struct vmstorage_protocol_version version;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700269
270 /* Fibre channel address packet */
271 struct hv_fc_wwn_packet wwn_packet;
272
273 /* Number of sub-channels to create */
274 u16 sub_channel_count;
275
276 /* This will be the maximum of the union members */
277 u8 buffer[0x34];
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700278 };
279} __packed;
280
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700281/*
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800282 * Packet Flags:
283 *
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700284 * This flag indicates that the server should send back a completion for this
285 * packet.
286 */
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800287
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700288#define REQUEST_COMPLETION_FLAG 0x1
289
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700290/* Matches Windows-end */
291enum storvsc_request_type {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800292 WRITE_TYPE = 0,
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700293 READ_TYPE,
294 UNKNOWN_TYPE,
295};
296
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800297/*
298 * SRB status codes and masks; a subset of the codes used here.
299 */
300
301#define SRB_STATUS_AUTOSENSE_VALID 0x80
302#define SRB_STATUS_INVALID_LUN 0x20
303#define SRB_STATUS_SUCCESS 0x01
K. Y. Srinivasan67812092013-02-21 12:04:53 -0800304#define SRB_STATUS_ABORTED 0x02
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800305#define SRB_STATUS_ERROR 0x04
306
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800307/*
308 * This is the end of Protocol specific defines.
309 */
310
K. Y. Srinivasanb9ec3a52015-03-27 00:27:14 -0700311static int storvsc_ringbuffer_size = (256 * PAGE_SIZE);
K. Y. Srinivasanf458aad2015-03-27 00:27:15 -0700312static u32 max_outstanding_req_per_channel;
313
314static int storvsc_vcpus_per_sub_channel = 4;
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800315
316module_param(storvsc_ringbuffer_size, int, S_IRUGO);
317MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");
318
K. Y. Srinivasanf458aad2015-03-27 00:27:15 -0700319module_param(storvsc_vcpus_per_sub_channel, int, S_IRUGO);
320MODULE_PARM_DESC(vcpus_per_sub_channel, "Ratio of VCPUs to subchannels");
K. Y. Srinivasan893def32013-06-04 12:05:05 -0700321/*
322 * Timeout in seconds for all devices managed by this driver.
323 */
324static int storvsc_timeout = 180;
325
K. Y. Srinivasanf3cfabc2014-07-21 16:06:01 -0700326static int msft_blist_flags = BLIST_TRY_VPD_PAGES;
327
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800328
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700329static void storvsc_on_channel_callback(void *context);
330
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -0700331#define STORVSC_MAX_LUNS_PER_TARGET 255
332#define STORVSC_MAX_TARGETS 2
333#define STORVSC_MAX_CHANNELS 8
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800334
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -0700335#define STORVSC_FC_MAX_LUNS_PER_TARGET 255
336#define STORVSC_FC_MAX_TARGETS 128
337#define STORVSC_FC_MAX_CHANNELS 8
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800338
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -0700339#define STORVSC_IDE_MAX_LUNS_PER_TARGET 64
340#define STORVSC_IDE_MAX_TARGETS 1
341#define STORVSC_IDE_MAX_CHANNELS 1
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800342
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800343struct storvsc_cmd_request {
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800344 struct scsi_cmnd *cmd;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700345
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800346 unsigned int bounce_sgl_count;
347 struct scatterlist *bounce_sgl;
348
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700349 struct hv_device *device;
350
351 /* Synchronize the request/response if needed */
352 struct completion wait_event;
353
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700354 struct hv_multipage_buffer data_buffer;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700355 struct vstor_packet vstor_packet;
356};
357
358
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700359/* A storvsc device is a device object that contains a vmbus channel */
360struct storvsc_device {
361 struct hv_device *device;
362
363 bool destroy;
364 bool drain_notify;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700365 bool open_sub_channel;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700366 atomic_t num_outstanding_req;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700367 struct Scsi_Host *host;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700368
369 wait_queue_head_t waiting_to_drain;
370
371 /*
372 * Each unique Port/Path/Target represents 1 channel ie scsi
373 * controller. In reality, the pathid, targetid is always 0
374 * and the port is set by us
375 */
376 unsigned int port_number;
377 unsigned char path_id;
378 unsigned char target_id;
379
K. Y. Srinivasan5117b932015-03-27 00:27:17 -0700380 /*
381 * Max I/O, the device can support.
382 */
383 u32 max_transfer_bytes;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700384 /* Used for vsc/vsp channel reset process */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800385 struct storvsc_cmd_request init_request;
386 struct storvsc_cmd_request reset_request;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700387};
388
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800389struct hv_host_device {
390 struct hv_device *dev;
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700391 unsigned int port;
392 unsigned char path;
393 unsigned char target;
394};
395
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800396struct storvsc_scan_work {
397 struct work_struct work;
398 struct Scsi_Host *host;
399 uint lun;
400};
401
K. Y. Srinivasan67812092013-02-21 12:04:53 -0800402static void storvsc_device_scan(struct work_struct *work)
403{
404 struct storvsc_scan_work *wrk;
405 uint lun;
406 struct scsi_device *sdev;
407
408 wrk = container_of(work, struct storvsc_scan_work, work);
409 lun = wrk->lun;
410
411 sdev = scsi_device_lookup(wrk->host, 0, 0, lun);
412 if (!sdev)
413 goto done;
414 scsi_rescan_device(&sdev->sdev_gendev);
415 scsi_device_put(sdev);
416
417done:
418 kfree(wrk);
419}
420
K. Y. Srinivasan2a09ed32014-12-16 13:21:42 -0800421static void storvsc_host_scan(struct work_struct *work)
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800422{
423 struct storvsc_scan_work *wrk;
K. Y. Srinivasan2a09ed32014-12-16 13:21:42 -0800424 struct Scsi_Host *host;
K. Y. Srinivasan34a716b2014-12-16 13:21:43 -0800425 struct scsi_device *sdev;
426 unsigned long flags;
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800427
428 wrk = container_of(work, struct storvsc_scan_work, work);
K. Y. Srinivasan2a09ed32014-12-16 13:21:42 -0800429 host = wrk->host;
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800430
K. Y. Srinivasan34a716b2014-12-16 13:21:43 -0800431 /*
432 * Before scanning the host, first check to see if any of the
433 * currrently known devices have been hot removed. We issue a
434 * "unit ready" command against all currently known devices.
435 * This I/O will result in an error for devices that have been
436 * removed. As part of handling the I/O error, we remove the device.
437 *
438 * When a LUN is added or removed, the host sends us a signal to
439 * scan the host. Thus we are forced to discover the LUNs that
440 * may have been removed this way.
441 */
442 mutex_lock(&host->scan_mutex);
443 spin_lock_irqsave(host->host_lock, flags);
444 list_for_each_entry(sdev, &host->__devices, siblings) {
445 spin_unlock_irqrestore(host->host_lock, flags);
446 scsi_test_unit_ready(sdev, 1, 1, NULL);
447 spin_lock_irqsave(host->host_lock, flags);
448 continue;
449 }
450 spin_unlock_irqrestore(host->host_lock, flags);
451 mutex_unlock(&host->scan_mutex);
452 /*
453 * Now scan the host to discover LUNs that may have been added.
454 */
K. Y. Srinivasan2a09ed32014-12-16 13:21:42 -0800455 scsi_scan_host(host);
456
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800457 kfree(wrk);
458}
459
K. Y. Srinivasanb4017312011-11-08 09:01:50 -0800460static void storvsc_remove_lun(struct work_struct *work)
461{
462 struct storvsc_scan_work *wrk;
463 struct scsi_device *sdev;
464
465 wrk = container_of(work, struct storvsc_scan_work, work);
466 if (!scsi_host_get(wrk->host))
467 goto done;
468
469 sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun);
470
471 if (sdev) {
472 scsi_remove_device(sdev);
473 scsi_device_put(sdev);
474 }
475 scsi_host_put(wrk->host);
476
477done:
478 kfree(wrk);
479}
480
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800481/*
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800482 * Major/minor macros. Minor version is in LSB, meaning that earlier flat
483 * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1).
484 */
485
486static inline u16 storvsc_get_version(u8 major, u8 minor)
487{
488 u16 version;
489
490 version = ((major << 8) | minor);
491 return version;
492}
493
494/*
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800495 * We can get incoming messages from the host that are not in response to
496 * messages that we have sent out. An example of this would be messages
497 * received by the guest to notify dynamic addition/removal of LUNs. To
498 * deal with potential race conditions where the driver may be in the
499 * midst of being unloaded when we might receive an unsolicited message
500 * from the host, we have implemented a mechanism to gurantee sequential
501 * consistency:
502 *
503 * 1) Once the device is marked as being destroyed, we will fail all
504 * outgoing messages.
505 * 2) We permit incoming messages when the device is being destroyed,
506 * only to properly account for messages already sent out.
507 */
508
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700509static inline struct storvsc_device *get_out_stor_device(
510 struct hv_device *device)
511{
512 struct storvsc_device *stor_device;
513
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700514 stor_device = hv_get_drvdata(device);
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700515
516 if (stor_device && stor_device->destroy)
517 stor_device = NULL;
518
519 return stor_device;
520}
521
522
523static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
524{
525 dev->drain_notify = true;
526 wait_event(dev->waiting_to_drain,
527 atomic_read(&dev->num_outstanding_req) == 0);
528 dev->drain_notify = false;
529}
Hank Janssenbef4a342009-07-13 16:01:31 -0700530
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700531static inline struct storvsc_device *get_in_stor_device(
532 struct hv_device *device)
533{
534 struct storvsc_device *stor_device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700535
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700536 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700537
538 if (!stor_device)
539 goto get_in_err;
540
541 /*
542 * If the device is being destroyed; allow incoming
543 * traffic only to cleanup outstanding requests.
544 */
545
546 if (stor_device->destroy &&
547 (atomic_read(&stor_device->num_outstanding_req) == 0))
548 stor_device = NULL;
549
550get_in_err:
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700551 return stor_device;
552
553}
554
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800555static void destroy_bounce_buffer(struct scatterlist *sgl,
556 unsigned int sg_count)
557{
558 int i;
559 struct page *page_buf;
560
561 for (i = 0; i < sg_count; i++) {
562 page_buf = sg_page((&sgl[i]));
563 if (page_buf != NULL)
564 __free_page(page_buf);
565 }
566
567 kfree(sgl);
568}
569
570static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count)
571{
572 int i;
573
574 /* No need to check */
575 if (sg_count < 2)
576 return -1;
577
578 /* We have at least 2 sg entries */
579 for (i = 0; i < sg_count; i++) {
580 if (i == 0) {
581 /* make sure 1st one does not have hole */
582 if (sgl[i].offset + sgl[i].length != PAGE_SIZE)
583 return i;
584 } else if (i == sg_count - 1) {
585 /* make sure last one does not have hole */
586 if (sgl[i].offset != 0)
587 return i;
588 } else {
589 /* make sure no hole in the middle */
590 if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0)
591 return i;
592 }
593 }
594 return -1;
595}
596
597static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl,
598 unsigned int sg_count,
599 unsigned int len,
600 int write)
601{
602 int i;
603 int num_pages;
604 struct scatterlist *bounce_sgl;
605 struct page *page_buf;
606 unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE);
607
608 num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT;
609
610 bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC);
611 if (!bounce_sgl)
612 return NULL;
613
K. Y. Srinivasan9d2696e2013-02-06 05:15:28 -0800614 sg_init_table(bounce_sgl, num_pages);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800615 for (i = 0; i < num_pages; i++) {
616 page_buf = alloc_page(GFP_ATOMIC);
617 if (!page_buf)
618 goto cleanup;
619 sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0);
620 }
621
622 return bounce_sgl;
623
624cleanup:
625 destroy_bounce_buffer(bounce_sgl, num_pages);
626 return NULL;
627}
628
629/* Assume the original sgl has enough room */
630static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl,
631 struct scatterlist *bounce_sgl,
632 unsigned int orig_sgl_count,
633 unsigned int bounce_sgl_count)
634{
635 int i;
636 int j = 0;
637 unsigned long src, dest;
638 unsigned int srclen, destlen, copylen;
639 unsigned int total_copied = 0;
640 unsigned long bounce_addr = 0;
641 unsigned long dest_addr = 0;
642 unsigned long flags;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700643 struct scatterlist *cur_dest_sgl;
644 struct scatterlist *cur_src_sgl;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800645
646 local_irq_save(flags);
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700647 cur_dest_sgl = orig_sgl;
648 cur_src_sgl = bounce_sgl;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800649 for (i = 0; i < orig_sgl_count; i++) {
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700650 dest_addr = (unsigned long)
651 kmap_atomic(sg_page(cur_dest_sgl)) +
652 cur_dest_sgl->offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800653 dest = dest_addr;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700654 destlen = cur_dest_sgl->length;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800655
656 if (bounce_addr == 0)
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700657 bounce_addr = (unsigned long)kmap_atomic(
658 sg_page(cur_src_sgl));
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800659
660 while (destlen) {
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700661 src = bounce_addr + cur_src_sgl->offset;
662 srclen = cur_src_sgl->length - cur_src_sgl->offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800663
664 copylen = min(srclen, destlen);
665 memcpy((void *)dest, (void *)src, copylen);
666
667 total_copied += copylen;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700668 cur_src_sgl->offset += copylen;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800669 destlen -= copylen;
670 dest += copylen;
671
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700672 if (cur_src_sgl->offset == cur_src_sgl->length) {
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800673 /* full */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700674 kunmap_atomic((void *)bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800675 j++;
676
677 /*
678 * It is possible that the number of elements
679 * in the bounce buffer may not be equal to
680 * the number of elements in the original
681 * scatter list. Handle this correctly.
682 */
683
684 if (j == bounce_sgl_count) {
685 /*
686 * We are done; cleanup and return.
687 */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700688 kunmap_atomic((void *)(dest_addr -
689 cur_dest_sgl->offset));
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800690 local_irq_restore(flags);
691 return total_copied;
692 }
693
694 /* if we need to use another bounce buffer */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700695 if (destlen || i != orig_sgl_count - 1) {
696 cur_src_sgl = sg_next(cur_src_sgl);
697 bounce_addr = (unsigned long)
698 kmap_atomic(
699 sg_page(cur_src_sgl));
700 }
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800701 } else if (destlen == 0 && i == orig_sgl_count - 1) {
702 /* unmap the last bounce that is < PAGE_SIZE */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700703 kunmap_atomic((void *)bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800704 }
705 }
706
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700707 kunmap_atomic((void *)(dest_addr - cur_dest_sgl->offset));
708 cur_dest_sgl = sg_next(cur_dest_sgl);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800709 }
710
711 local_irq_restore(flags);
712
713 return total_copied;
714}
715
716/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */
717static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl,
718 struct scatterlist *bounce_sgl,
719 unsigned int orig_sgl_count)
720{
721 int i;
722 int j = 0;
723 unsigned long src, dest;
724 unsigned int srclen, destlen, copylen;
725 unsigned int total_copied = 0;
726 unsigned long bounce_addr = 0;
727 unsigned long src_addr = 0;
728 unsigned long flags;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700729 struct scatterlist *cur_src_sgl;
730 struct scatterlist *cur_dest_sgl;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800731
732 local_irq_save(flags);
733
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700734 cur_src_sgl = orig_sgl;
735 cur_dest_sgl = bounce_sgl;
736
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800737 for (i = 0; i < orig_sgl_count; i++) {
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700738 src_addr = (unsigned long)
739 kmap_atomic(sg_page(cur_src_sgl)) +
740 cur_src_sgl->offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800741 src = src_addr;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700742 srclen = cur_src_sgl->length;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800743
744 if (bounce_addr == 0)
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700745 bounce_addr = (unsigned long)
746 kmap_atomic(sg_page(cur_dest_sgl));
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800747
748 while (srclen) {
749 /* assume bounce offset always == 0 */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700750 dest = bounce_addr + cur_dest_sgl->length;
751 destlen = PAGE_SIZE - cur_dest_sgl->length;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800752
753 copylen = min(srclen, destlen);
754 memcpy((void *)dest, (void *)src, copylen);
755
756 total_copied += copylen;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700757 cur_dest_sgl->length += copylen;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800758 srclen -= copylen;
759 src += copylen;
760
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700761 if (cur_dest_sgl->length == PAGE_SIZE) {
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800762 /* full..move to next entry */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700763 kunmap_atomic((void *)bounce_addr);
K. Y. Srinivasan8de58072015-03-27 00:27:18 -0700764 bounce_addr = 0;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800765 j++;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800766 }
K. Y. Srinivasan8de58072015-03-27 00:27:18 -0700767
768 /* if we need to use another bounce buffer */
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700769 if (srclen && bounce_addr == 0) {
770 cur_dest_sgl = sg_next(cur_dest_sgl);
771 bounce_addr = (unsigned long)
772 kmap_atomic(
773 sg_page(cur_dest_sgl));
774 }
K. Y. Srinivasan8de58072015-03-27 00:27:18 -0700775
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800776 }
777
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700778 kunmap_atomic((void *)(src_addr - cur_src_sgl->offset));
779 cur_src_sgl = sg_next(cur_src_sgl);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800780 }
781
K. Y. Srinivasan8de58072015-03-27 00:27:18 -0700782 if (bounce_addr)
K. Y. Srinivasanaaced992015-03-27 00:27:19 -0700783 kunmap_atomic((void *)bounce_addr);
K. Y. Srinivasan8de58072015-03-27 00:27:18 -0700784
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800785 local_irq_restore(flags);
786
787 return total_copied;
788}
789
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700790static void handle_sc_creation(struct vmbus_channel *new_sc)
791{
792 struct hv_device *device = new_sc->primary_channel->device_obj;
793 struct storvsc_device *stor_device;
794 struct vmstorage_channel_properties props;
795
796 stor_device = get_out_stor_device(device);
797 if (!stor_device)
798 return;
799
800 if (stor_device->open_sub_channel == false)
801 return;
802
803 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
804
805 vmbus_open(new_sc,
806 storvsc_ringbuffer_size,
807 storvsc_ringbuffer_size,
808 (void *)&props,
809 sizeof(struct vmstorage_channel_properties),
810 storvsc_on_channel_callback, new_sc);
811}
812
813static void handle_multichannel_storage(struct hv_device *device, int max_chns)
814{
815 struct storvsc_device *stor_device;
816 int num_cpus = num_online_cpus();
817 int num_sc;
818 struct storvsc_cmd_request *request;
819 struct vstor_packet *vstor_packet;
820 int ret, t;
821
822 num_sc = ((max_chns > num_cpus) ? num_cpus : max_chns);
823 stor_device = get_out_stor_device(device);
824 if (!stor_device)
825 return;
826
827 request = &stor_device->init_request;
828 vstor_packet = &request->vstor_packet;
829
830 stor_device->open_sub_channel = true;
831 /*
832 * Establish a handler for dealing with subchannels.
833 */
834 vmbus_set_sc_create_callback(device->channel, handle_sc_creation);
835
836 /*
837 * Check to see if sub-channels have already been created. This
838 * can happen when this driver is re-loaded after unloading.
839 */
840
841 if (vmbus_are_subchannels_present(device->channel))
842 return;
843
844 stor_device->open_sub_channel = false;
845 /*
846 * Request the host to create sub-channels.
847 */
848 memset(request, 0, sizeof(struct storvsc_cmd_request));
849 init_completion(&request->wait_event);
850 vstor_packet->operation = VSTOR_OPERATION_CREATE_SUB_CHANNELS;
851 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
852 vstor_packet->sub_channel_count = num_sc;
853
854 ret = vmbus_sendpacket(device->channel, vstor_packet,
855 (sizeof(struct vstor_packet) -
856 vmscsi_size_delta),
857 (unsigned long)request,
858 VM_PKT_DATA_INBAND,
859 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
860
861 if (ret != 0)
862 return;
863
864 t = wait_for_completion_timeout(&request->wait_event, 10*HZ);
865 if (t == 0)
866 return;
867
868 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
869 vstor_packet->status != 0)
870 return;
871
872 /*
873 * Now that we created the sub-channels, invoke the check; this
874 * may trigger the callback.
875 */
876 stor_device->open_sub_channel = true;
877 vmbus_are_subchannels_present(device->channel);
878}
879
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700880static int storvsc_channel_init(struct hv_device *device)
881{
882 struct storvsc_device *stor_device;
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800883 struct storvsc_cmd_request *request;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700884 struct vstor_packet *vstor_packet;
885 int ret, t;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700886 int max_chns;
887 bool process_sub_channels = false;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700888
889 stor_device = get_out_stor_device(device);
890 if (!stor_device)
891 return -ENODEV;
892
893 request = &stor_device->init_request;
894 vstor_packet = &request->vstor_packet;
895
896 /*
897 * Now, initiate the vsc/vsp initialization protocol on the open
898 * channel
899 */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800900 memset(request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700901 init_completion(&request->wait_event);
902 vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
903 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
904
905 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700906 (sizeof(struct vstor_packet) -
907 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700908 (unsigned long)request,
909 VM_PKT_DATA_INBAND,
910 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
911 if (ret != 0)
912 goto cleanup;
913
914 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
915 if (t == 0) {
916 ret = -ETIMEDOUT;
917 goto cleanup;
918 }
919
920 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
921 vstor_packet->status != 0)
922 goto cleanup;
923
924
925 /* reuse the packet for version range supported */
926 memset(vstor_packet, 0, sizeof(struct vstor_packet));
927 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
928 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
929
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800930 vstor_packet->version.major_minor =
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700931 storvsc_get_version(vmstor_current_major, vmstor_current_minor);
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800932
933 /*
934 * The revision number is only used in Windows; set it to 0.
935 */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800936 vstor_packet->version.revision = 0;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700937
938 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700939 (sizeof(struct vstor_packet) -
940 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700941 (unsigned long)request,
942 VM_PKT_DATA_INBAND,
943 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
944 if (ret != 0)
945 goto cleanup;
946
947 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
948 if (t == 0) {
949 ret = -ETIMEDOUT;
950 goto cleanup;
951 }
952
953 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
954 vstor_packet->status != 0)
955 goto cleanup;
956
957
958 memset(vstor_packet, 0, sizeof(struct vstor_packet));
959 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
960 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700961
962 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -0700963 (sizeof(struct vstor_packet) -
964 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700965 (unsigned long)request,
966 VM_PKT_DATA_INBAND,
967 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
968
969 if (ret != 0)
970 goto cleanup;
971
972 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
973 if (t == 0) {
974 ret = -ETIMEDOUT;
975 goto cleanup;
976 }
977
978 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
979 vstor_packet->status != 0)
980 goto cleanup;
981
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700982 /*
983 * Check to see if multi-channel support is there.
984 * Hosts that implement protocol version of 5.1 and above
985 * support multi-channel.
986 */
987 max_chns = vstor_packet->storage_channel_properties.max_channel_cnt;
988 if ((vmbus_proto_version != VERSION_WIN7) &&
989 (vmbus_proto_version != VERSION_WS2008)) {
990 if (vstor_packet->storage_channel_properties.flags &
991 STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL)
992 process_sub_channels = true;
993 }
K. Y. Srinivasan5117b932015-03-27 00:27:17 -0700994 stor_device->max_transfer_bytes =
995 vstor_packet->storage_channel_properties.max_transfer_bytes;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -0700996
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700997 memset(vstor_packet, 0, sizeof(struct vstor_packet));
998 vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
999 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1000
1001 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001002 (sizeof(struct vstor_packet) -
1003 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001004 (unsigned long)request,
1005 VM_PKT_DATA_INBAND,
1006 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1007
1008 if (ret != 0)
1009 goto cleanup;
1010
1011 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
1012 if (t == 0) {
1013 ret = -ETIMEDOUT;
1014 goto cleanup;
1015 }
1016
1017 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
1018 vstor_packet->status != 0)
1019 goto cleanup;
1020
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001021 if (process_sub_channels)
1022 handle_multichannel_storage(device, max_chns);
1023
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001024
1025cleanup:
1026 return ret;
1027}
1028
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001029static void storvsc_handle_error(struct vmscsi_request *vm_srb,
1030 struct scsi_cmnd *scmnd,
1031 struct Scsi_Host *host,
1032 u8 asc, u8 ascq)
1033{
1034 struct storvsc_scan_work *wrk;
1035 void (*process_err_fn)(struct work_struct *work);
1036 bool do_work = false;
1037
1038 switch (vm_srb->srb_status) {
1039 case SRB_STATUS_ERROR:
1040 /*
1041 * If there is an error; offline the device since all
1042 * error recovery strategies would have already been
1043 * deployed on the host side. However, if the command
1044 * were a pass-through command deal with it appropriately.
1045 */
1046 switch (scmnd->cmnd[0]) {
1047 case ATA_16:
1048 case ATA_12:
1049 set_host_byte(scmnd, DID_PASSTHROUGH);
1050 break;
K. Y. Srinivasan3533f8602014-07-12 09:48:32 -07001051 /*
1052 * On Some Windows hosts TEST_UNIT_READY command can return
1053 * SRB_STATUS_ERROR, let the upper level code deal with it
1054 * based on the sense information.
1055 */
1056 case TEST_UNIT_READY:
1057 break;
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001058 default:
1059 set_host_byte(scmnd, DID_TARGET_FAILURE);
1060 }
1061 break;
1062 case SRB_STATUS_INVALID_LUN:
1063 do_work = true;
1064 process_err_fn = storvsc_remove_lun;
1065 break;
K. Y. Srinivasan67812092013-02-21 12:04:53 -08001066 case (SRB_STATUS_ABORTED | SRB_STATUS_AUTOSENSE_VALID):
1067 if ((asc == 0x2a) && (ascq == 0x9)) {
1068 do_work = true;
1069 process_err_fn = storvsc_device_scan;
1070 /*
1071 * Retry the I/O that trigerred this.
1072 */
1073 set_host_byte(scmnd, DID_REQUEUE);
1074 }
1075 break;
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001076 }
K. Y. Srinivasan67812092013-02-21 12:04:53 -08001077
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001078 if (!do_work)
1079 return;
1080
1081 /*
1082 * We need to schedule work to process this error; schedule it.
1083 */
1084 wrk = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
1085 if (!wrk) {
1086 set_host_byte(scmnd, DID_TARGET_FAILURE);
1087 return;
1088 }
1089
1090 wrk->host = host;
1091 wrk->lun = vm_srb->lun;
1092 INIT_WORK(&wrk->work, process_err_fn);
1093 schedule_work(&wrk->work);
1094}
1095
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001096
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001097static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request)
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001098{
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001099 struct scsi_cmnd *scmnd = cmd_request->cmd;
1100 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001101 struct scsi_sense_hdr sense_hdr;
1102 struct vmscsi_request *vm_srb;
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001103 struct Scsi_Host *host;
1104 struct storvsc_device *stor_dev;
1105 struct hv_device *dev = host_dev->dev;
1106
1107 stor_dev = get_in_stor_device(dev);
1108 host = stor_dev->host;
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001109
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001110 vm_srb = &cmd_request->vstor_packet.vm_srb;
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001111 if (cmd_request->bounce_sgl_count) {
1112 if (vm_srb->data_in == READ_TYPE)
1113 copy_from_bounce_buffer(scsi_sglist(scmnd),
1114 cmd_request->bounce_sgl,
1115 scsi_sg_count(scmnd),
1116 cmd_request->bounce_sgl_count);
1117 destroy_bounce_buffer(cmd_request->bounce_sgl,
1118 cmd_request->bounce_sgl_count);
1119 }
1120
K. Y. Srinivasan42e22ca2012-04-05 12:26:52 -07001121 scmnd->result = vm_srb->scsi_status;
1122
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001123 if (scmnd->result) {
1124 if (scsi_normalize_sense(scmnd->sense_buffer,
1125 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
Hannes Reinecked811b842014-10-24 14:26:45 +02001126 scsi_print_sense_hdr(scmnd->device, "storvsc",
1127 &sense_hdr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001128 }
1129
K. Y. Srinivasanc50bd442013-02-21 12:04:52 -08001130 if (vm_srb->srb_status != SRB_STATUS_SUCCESS)
1131 storvsc_handle_error(vm_srb, scmnd, host, sense_hdr.asc,
1132 sense_hdr.ascq);
1133
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001134 scsi_set_resid(scmnd,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001135 cmd_request->data_buffer.len -
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001136 vm_srb->data_transfer_length);
1137
Christoph Hellwigead37002014-12-29 20:05:09 -08001138 scmnd->scsi_done(scmnd);
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001139}
1140
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001141static void storvsc_on_io_completion(struct hv_device *device,
1142 struct vstor_packet *vstor_packet,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001143 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001144{
1145 struct storvsc_device *stor_device;
1146 struct vstor_packet *stor_pkt;
1147
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001148 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001149 stor_pkt = &request->vstor_packet;
1150
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -07001151 /*
1152 * The current SCSI handling on the host side does
1153 * not correctly handle:
1154 * INQUIRY command with page code parameter set to 0x80
1155 * MODE_SENSE command with cmd[2] == 0x1c
1156 *
1157 * Setup srb and scsi status so this won't be fatal.
1158 * We do this so we can distinguish truly fatal failues
1159 * (srb status == 0x4) and off-line the device in that case.
1160 */
1161
1162 if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -08001163 (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -07001164 vstor_packet->vm_srb.scsi_status = 0;
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001165 vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS;
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -07001166 }
1167
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001168
1169 /* Copy over the status...etc */
1170 stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
1171 stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
1172 stor_pkt->vm_srb.sense_info_length =
1173 vstor_packet->vm_srb.sense_info_length;
1174
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001175
1176 if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
1177 /* CHECK_CONDITION */
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001178 if (vstor_packet->vm_srb.srb_status &
1179 SRB_STATUS_AUTOSENSE_VALID) {
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001180 /* autosense data available */
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001181
Christoph Hellwigead37002014-12-29 20:05:09 -08001182 memcpy(request->cmd->sense_buffer,
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001183 vstor_packet->vm_srb.sense_data,
1184 vstor_packet->vm_srb.sense_info_length);
1185
1186 }
1187 }
1188
1189 stor_pkt->vm_srb.data_transfer_length =
1190 vstor_packet->vm_srb.data_transfer_length;
1191
K. Y. Srinivasan27073882012-01-12 12:38:01 -08001192 storvsc_command_completion(request);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001193
1194 if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
1195 stor_device->drain_notify)
1196 wake_up(&stor_device->waiting_to_drain);
1197
1198
1199}
1200
1201static void storvsc_on_receive(struct hv_device *device,
1202 struct vstor_packet *vstor_packet,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001203 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001204{
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001205 struct storvsc_scan_work *work;
1206 struct storvsc_device *stor_device;
1207
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001208 switch (vstor_packet->operation) {
1209 case VSTOR_OPERATION_COMPLETE_IO:
1210 storvsc_on_io_completion(device, vstor_packet, request);
1211 break;
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001212
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001213 case VSTOR_OPERATION_REMOVE_DEVICE:
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001214 case VSTOR_OPERATION_ENUMERATE_BUS:
1215 stor_device = get_in_stor_device(device);
1216 work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
1217 if (!work)
1218 return;
1219
K. Y. Srinivasan2a09ed32014-12-16 13:21:42 -08001220 INIT_WORK(&work->work, storvsc_host_scan);
K. Y. Srinivasan12675792011-11-08 09:01:49 -08001221 work->host = stor_device->host;
1222 schedule_work(&work->work);
1223 break;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001224
1225 default:
1226 break;
1227 }
1228}
1229
1230static void storvsc_on_channel_callback(void *context)
1231{
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001232 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1233 struct hv_device *device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001234 struct storvsc_device *stor_device;
1235 u32 bytes_recvd;
1236 u64 request_id;
1237 unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)];
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001238 struct storvsc_cmd_request *request;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001239 int ret;
1240
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001241 if (channel->primary_channel != NULL)
1242 device = channel->primary_channel->device_obj;
1243 else
1244 device = channel->device_obj;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001245
1246 stor_device = get_in_stor_device(device);
1247 if (!stor_device)
1248 return;
1249
1250 do {
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001251 ret = vmbus_recvpacket(channel, packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001252 ALIGN((sizeof(struct vstor_packet) -
1253 vmscsi_size_delta), 8),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001254 &bytes_recvd, &request_id);
1255 if (ret == 0 && bytes_recvd > 0) {
1256
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001257 request = (struct storvsc_cmd_request *)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001258 (unsigned long)request_id;
1259
1260 if ((request == &stor_device->init_request) ||
1261 (request == &stor_device->reset_request)) {
1262
1263 memcpy(&request->vstor_packet, packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001264 (sizeof(struct vstor_packet) -
1265 vmscsi_size_delta));
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001266 complete(&request->wait_event);
1267 } else {
1268 storvsc_on_receive(device,
1269 (struct vstor_packet *)packet,
1270 request);
1271 }
1272 } else {
1273 break;
1274 }
1275 } while (1);
1276
1277 return;
1278}
1279
1280static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
1281{
1282 struct vmstorage_channel_properties props;
1283 int ret;
1284
1285 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
1286
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001287 ret = vmbus_open(device->channel,
1288 ring_size,
1289 ring_size,
1290 (void *)&props,
1291 sizeof(struct vmstorage_channel_properties),
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001292 storvsc_on_channel_callback, device->channel);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001293
1294 if (ret != 0)
1295 return ret;
1296
1297 ret = storvsc_channel_init(device);
1298
1299 return ret;
1300}
1301
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -07001302static int storvsc_dev_remove(struct hv_device *device)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001303{
1304 struct storvsc_device *stor_device;
1305 unsigned long flags;
1306
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001307 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001308
1309 spin_lock_irqsave(&device->channel->inbound_lock, flags);
1310 stor_device->destroy = true;
1311 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1312
1313 /*
1314 * At this point, all outbound traffic should be disable. We
1315 * only allow inbound traffic (responses) to proceed so that
1316 * outstanding requests can be completed.
1317 */
1318
1319 storvsc_wait_to_drain(stor_device);
1320
1321 /*
1322 * Since we have already drained, we don't need to busy wait
1323 * as was done in final_release_stor_device()
1324 * Note that we cannot set the ext pointer to NULL until
1325 * we have drained - to drain the outgoing packets, we need to
1326 * allow incoming packets.
1327 */
1328 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001329 hv_set_drvdata(device, NULL);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001330 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1331
1332 /* Close the channel */
1333 vmbus_close(device->channel);
1334
1335 kfree(stor_device);
1336 return 0;
1337}
1338
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -07001339static int storvsc_do_io(struct hv_device *device,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001340 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001341{
1342 struct storvsc_device *stor_device;
1343 struct vstor_packet *vstor_packet;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001344 struct vmbus_channel *outgoing_channel;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001345 int ret = 0;
1346
1347 vstor_packet = &request->vstor_packet;
1348 stor_device = get_out_stor_device(device);
1349
1350 if (!stor_device)
1351 return -ENODEV;
1352
1353
1354 request->device = device;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001355 /*
1356 * Select an an appropriate channel to send the request out.
1357 */
1358
1359 outgoing_channel = vmbus_get_outgoing_channel(device->channel);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001360
1361
1362 vstor_packet->flags |= REQUEST_COMPLETION_FLAG;
1363
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001364 vstor_packet->vm_srb.length = (sizeof(struct vmscsi_request) -
1365 vmscsi_size_delta);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001366
1367
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001368 vstor_packet->vm_srb.sense_info_length = sense_buffer_size;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001369
1370
1371 vstor_packet->vm_srb.data_transfer_length =
1372 request->data_buffer.len;
1373
1374 vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;
1375
1376 if (request->data_buffer.len) {
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001377 ret = vmbus_sendpacket_multipagebuffer(outgoing_channel,
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001378 &request->data_buffer,
1379 vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001380 (sizeof(struct vstor_packet) -
1381 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001382 (unsigned long)request);
1383 } else {
K. Y. Srinivasan0147dab2015-03-27 00:27:16 -07001384 ret = vmbus_sendpacket(outgoing_channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001385 (sizeof(struct vstor_packet) -
1386 vmscsi_size_delta),
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001387 (unsigned long)request,
1388 VM_PKT_DATA_INBAND,
1389 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1390 }
1391
1392 if (ret != 0)
1393 return ret;
1394
1395 atomic_inc(&stor_device->num_outstanding_req);
1396
1397 return ret;
1398}
1399
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001400static int storvsc_device_configure(struct scsi_device *sdevice)
1401{
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001402
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001403 blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE);
1404
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001405 blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001406
K. Y. Srinivasan893def32013-06-04 12:05:05 -07001407 blk_queue_rq_timeout(sdevice->request_queue, (storvsc_timeout * HZ));
1408
Olaf Hering3e8f4f42013-02-21 12:04:51 -08001409 sdevice->no_write_same = 1;
1410
K. Y. Srinivasanf3cfabc2014-07-21 16:06:01 -07001411 /*
1412 * Add blist flags to permit the reading of the VPD pages even when
1413 * the target may claim SPC-2 compliance. MSFT targets currently
1414 * claim SPC-2 compliance while they implement post SPC-2 features.
1415 * With this patch we can correctly handle WRITE_SAME_16 issues.
1416 */
1417 sdevice->sdev_bflags |= msft_blist_flags;
1418
K. Y. Srinivasanb0a93d92014-12-16 13:21:45 -08001419 /*
1420 * If the host is WIN8 or WIN8 R2, claim conformance to SPC-3
1421 * if the device is a MSFT virtual device.
1422 */
1423 if (!strncmp(sdevice->vendor, "Msft", 4)) {
1424 switch (vmbus_proto_version) {
1425 case VERSION_WIN8:
1426 case VERSION_WIN8_1:
1427 sdevice->scsi_level = SCSI_SPC_3;
1428 break;
1429 }
1430 }
1431
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001432 return 0;
1433}
1434
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001435static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
1436 sector_t capacity, int *info)
1437{
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001438 sector_t nsect = capacity;
1439 sector_t cylinders = nsect;
1440 int heads, sectors_pt;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001441
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001442 /*
1443 * We are making up these values; let us keep it simple.
1444 */
1445 heads = 0xff;
1446 sectors_pt = 0x3f; /* Sectors per track */
1447 sector_div(cylinders, heads * sectors_pt);
1448 if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
1449 cylinders = 0xffff;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001450
1451 info[0] = heads;
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001452 info[1] = sectors_pt;
1453 info[2] = (int)cylinders;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001454
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001455 return 0;
1456}
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001457
K. Y. Srinivasan4b270c82012-01-12 12:37:58 -08001458static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001459{
K. Y. Srinivasan4b270c82012-01-12 12:37:58 -08001460 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
1461 struct hv_device *device = host_dev->dev;
1462
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001463 struct storvsc_device *stor_device;
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001464 struct storvsc_cmd_request *request;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001465 struct vstor_packet *vstor_packet;
1466 int ret, t;
1467
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001468
K. Y. Srinivasan1eaaddf2011-08-27 11:31:03 -07001469 stor_device = get_out_stor_device(device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001470 if (!stor_device)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001471 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001472
1473 request = &stor_device->reset_request;
1474 vstor_packet = &request->vstor_packet;
1475
1476 init_completion(&request->wait_event);
1477
1478 vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
1479 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1480 vstor_packet->vm_srb.path_id = stor_device->path_id;
1481
1482 ret = vmbus_sendpacket(device->channel, vstor_packet,
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001483 (sizeof(struct vstor_packet) -
1484 vmscsi_size_delta),
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001485 (unsigned long)&stor_device->reset_request,
1486 VM_PKT_DATA_INBAND,
1487 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1488 if (ret != 0)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001489 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001490
K. Y. Srinivasan46d2eb62011-06-16 13:16:36 -07001491 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001492 if (t == 0)
1493 return TIMEOUT_ERROR;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001494
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001495
1496 /*
1497 * At this point, all outstanding requests in the adapter
1498 * should have been flushed out and return to us
K. Y. Srinivasan5c1b10a2012-10-02 11:03:31 -07001499 * There is a potential race here where the host may be in
1500 * the process of responding when we return from here.
1501 * Just wait for all in-transit packets to be accounted for
1502 * before we return from here.
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001503 */
K. Y. Srinivasan5c1b10a2012-10-02 11:03:31 -07001504 storvsc_wait_to_drain(stor_device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001505
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001506 return SUCCESS;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001507}
1508
K. Y. Srinivasan56b26e62014-07-12 09:48:30 -07001509/*
1510 * The host guarantees to respond to each command, although I/O latencies might
1511 * be unbounded on Azure. Reset the timer unconditionally to give the host a
1512 * chance to perform EH.
1513 */
1514static enum blk_eh_timer_return storvsc_eh_timed_out(struct scsi_cmnd *scmnd)
1515{
1516 return BLK_EH_RESET_TIMER;
1517}
1518
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001519static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd)
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001520{
1521 bool allowed = true;
1522 u8 scsi_op = scmnd->cmnd[0];
1523
1524 switch (scsi_op) {
Olaf Hering3e8f4f42013-02-21 12:04:51 -08001525 /* the host does not handle WRITE_SAME, log accident usage */
1526 case WRITE_SAME:
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001527 /*
1528 * smartd sends this command and the host does not handle
1529 * this. So, don't send it.
1530 */
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001531 case SET_WINDOW:
K. Y. Srinivasan59e00e72011-11-08 09:01:42 -08001532 scmnd->result = ILLEGAL_REQUEST << 16;
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001533 allowed = false;
1534 break;
1535 default:
1536 break;
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001537 }
1538 return allowed;
1539}
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001540
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001541static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001542{
1543 int ret;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001544 struct hv_host_device *host_dev = shost_priv(host);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001545 struct hv_device *dev = host_dev->dev;
Christoph Hellwigead37002014-12-29 20:05:09 -08001546 struct storvsc_cmd_request *cmd_request = scsi_cmd_priv(scmnd);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001547 int i;
1548 struct scatterlist *sgl;
1549 unsigned int sg_count = 0;
1550 struct vmscsi_request *vm_srb;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -07001551 struct scatterlist *cur_sgl;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001552
K. Y. Srinivasan8caf92d2014-07-12 09:48:28 -07001553 if (vmstor_current_major <= VMSTOR_WIN8_MAJOR) {
1554 /*
1555 * On legacy hosts filter unimplemented commands.
1556 * Future hosts are expected to correctly handle
1557 * unsupported commands. Furthermore, it is
1558 * possible that some of the currently
1559 * unsupported commands maybe supported in
1560 * future versions of the host.
1561 */
1562 if (!storvsc_scsi_cmd_ok(scmnd)) {
1563 scmnd->scsi_done(scmnd);
1564 return 0;
1565 }
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001566 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001567
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001568 /* Setup the cmd request */
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001569 cmd_request->cmd = scmnd;
1570
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001571 vm_srb = &cmd_request->vstor_packet.vm_srb;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001572 vm_srb->win8_extension.time_out_value = 60;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001573
K. Y. Srinivasanf885fb72014-07-12 09:48:31 -07001574 vm_srb->win8_extension.srb_flags |=
1575 (SRB_FLAGS_QUEUE_ACTION_ENABLE |
1576 SRB_FLAGS_DISABLE_SYNCH_TRANSFER);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001577
1578 /* Build the SRB */
1579 switch (scmnd->sc_data_direction) {
1580 case DMA_TO_DEVICE:
1581 vm_srb->data_in = WRITE_TYPE;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001582 vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_OUT;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001583 break;
1584 case DMA_FROM_DEVICE:
1585 vm_srb->data_in = READ_TYPE;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001586 vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_IN;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001587 break;
1588 default:
1589 vm_srb->data_in = UNKNOWN_TYPE;
K. Y. Srinivasanf885fb72014-07-12 09:48:31 -07001590 vm_srb->win8_extension.srb_flags |= (SRB_FLAGS_DATA_IN |
1591 SRB_FLAGS_DATA_OUT);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001592 break;
1593 }
1594
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001595
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001596 vm_srb->port_number = host_dev->port;
1597 vm_srb->path_id = scmnd->device->channel;
1598 vm_srb->target_id = scmnd->device->id;
1599 vm_srb->lun = scmnd->device->lun;
1600
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001601 vm_srb->cdb_length = scmnd->cmd_len;
1602
1603 memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);
1604
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001605 cmd_request->data_buffer.len = scsi_bufflen(scmnd);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001606 if (scsi_sg_count(scmnd)) {
1607 sgl = (struct scatterlist *)scsi_sglist(scmnd);
1608 sg_count = scsi_sg_count(scmnd);
1609
1610 /* check if we need to bounce the sgl */
1611 if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) {
1612 cmd_request->bounce_sgl =
1613 create_bounce_buffer(sgl, scsi_sg_count(scmnd),
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -08001614 scsi_bufflen(scmnd),
1615 vm_srb->data_in);
Christoph Hellwigead37002014-12-29 20:05:09 -08001616 if (!cmd_request->bounce_sgl)
1617 return SCSI_MLQUEUE_HOST_BUSY;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001618
1619 cmd_request->bounce_sgl_count =
1620 ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
1621 PAGE_SHIFT;
1622
K. Y. Srinivasanfa23b8c2011-08-27 11:31:21 -07001623 if (vm_srb->data_in == WRITE_TYPE)
1624 copy_to_bounce_buffer(sgl,
1625 cmd_request->bounce_sgl,
1626 scsi_sg_count(scmnd));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001627
1628 sgl = cmd_request->bounce_sgl;
1629 sg_count = cmd_request->bounce_sgl_count;
1630 }
1631
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001632 cmd_request->data_buffer.offset = sgl[0].offset;
K. Y. Srinivasanaaced992015-03-27 00:27:19 -07001633 cur_sgl = sgl;
1634 for (i = 0; i < sg_count; i++) {
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001635 cmd_request->data_buffer.pfn_array[i] =
K. Y. Srinivasanaaced992015-03-27 00:27:19 -07001636 page_to_pfn(sg_page((cur_sgl)));
1637 cur_sgl = sg_next(cur_sgl);
1638 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001639
1640 } else if (scsi_sglist(scmnd)) {
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001641 cmd_request->data_buffer.offset =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001642 virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1);
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001643 cmd_request->data_buffer.pfn_array[0] =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001644 virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT;
1645 }
1646
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001647 /* Invokes the vsc to start an IO */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001648 ret = storvsc_do_io(dev, cmd_request);
K. Y. Srinivasan636f0fd2011-05-10 07:54:50 -07001649
K. Y. Srinivasand2598f02011-08-25 09:48:58 -07001650 if (ret == -EAGAIN) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001651 /* no more space */
1652
Long Lie86fb5e82014-12-05 19:38:18 -08001653 if (cmd_request->bounce_sgl_count)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001654 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan70691ec2011-08-27 11:31:29 -07001655 cmd_request->bounce_sgl_count);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001656
Christoph Hellwigead37002014-12-29 20:05:09 -08001657 return SCSI_MLQUEUE_DEVICE_BUSY;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001658 }
1659
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001660 return 0;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001661}
1662
Hank Janssenbef4a342009-07-13 16:01:31 -07001663static struct scsi_host_template scsi_driver = {
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001664 .module = THIS_MODULE,
1665 .name = "storvsc_host_t",
Christoph Hellwigead37002014-12-29 20:05:09 -08001666 .cmd_size = sizeof(struct storvsc_cmd_request),
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001667 .bios_param = storvsc_get_chs,
1668 .queuecommand = storvsc_queuecommand,
1669 .eh_host_reset_handler = storvsc_host_reset_handler,
Christoph Hellwigead37002014-12-29 20:05:09 -08001670 .proc_name = "storvsc_host",
K. Y. Srinivasan56b26e62014-07-12 09:48:30 -07001671 .eh_timed_out = storvsc_eh_timed_out,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001672 .slave_configure = storvsc_device_configure,
K. Y. Srinivasan52f96142014-07-12 09:48:27 -07001673 .cmd_per_lun = 255,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001674 .this_id = -1,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001675 /* no use setting to 0 since ll_blk_rw reset it to 1 */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001676 /* currently 32 */
1677 .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT,
K. Y. Srinivasan039db522011-12-01 04:59:16 -08001678 .use_clustering = DISABLE_CLUSTERING,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001679 /* Make sure we dont get a sg segment crosses a page boundary */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001680 .dma_boundary = PAGE_SIZE-1,
Martin K. Petersen54b2b502013-10-23 06:25:40 -04001681 .no_write_same = 1,
Hank Janssenbef4a342009-07-13 16:01:31 -07001682};
1683
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001684enum {
1685 SCSI_GUID,
1686 IDE_GUID,
K. Y. Srinivasanbde6d0f2013-06-04 12:05:08 -07001687 SFC_GUID,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001688};
1689
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001690static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001691 /* SCSI guid */
K. Y. Srinivasan35c3bc22013-01-23 17:42:43 -08001692 { HV_SCSI_GUID,
1693 .driver_data = SCSI_GUID
1694 },
K. Y. Srinivasan21e37742011-08-27 11:31:18 -07001695 /* IDE guid */
K. Y. Srinivasan35c3bc22013-01-23 17:42:43 -08001696 { HV_IDE_GUID,
1697 .driver_data = IDE_GUID
1698 },
K. Y. Srinivasanbde6d0f2013-06-04 12:05:08 -07001699 /* Fibre Channel GUID */
1700 {
1701 HV_SYNTHFC_GUID,
1702 .driver_data = SFC_GUID
1703 },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001704 { },
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001705};
Hank Janssenbef4a342009-07-13 16:01:31 -07001706
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001707MODULE_DEVICE_TABLE(vmbus, id_table);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001708
K. Y. Srinivasan84946892011-09-13 10:59:38 -07001709static int storvsc_probe(struct hv_device *device,
1710 const struct hv_vmbus_device_id *dev_id)
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001711{
1712 int ret;
K. Y. Srinivasanf458aad2015-03-27 00:27:15 -07001713 int num_cpus = num_online_cpus();
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001714 struct Scsi_Host *host;
1715 struct hv_host_device *host_dev;
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001716 bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001717 int target = 0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001718 struct storvsc_device *stor_device;
K. Y. Srinivasan0fb8db22014-12-16 13:21:44 -08001719 int max_luns_per_target;
1720 int max_targets;
1721 int max_channels;
K. Y. Srinivasanf458aad2015-03-27 00:27:15 -07001722 int max_sub_channels = 0;
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001723
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001724 /*
1725 * Based on the windows host we are running on,
1726 * set state to properly communicate with the host.
1727 */
1728
K. Y. Srinivasanadb6f9e2014-07-12 09:48:29 -07001729 switch (vmbus_proto_version) {
1730 case VERSION_WS2008:
1731 case VERSION_WIN7:
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001732 sense_buffer_size = PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE;
1733 vmscsi_size_delta = sizeof(struct vmscsi_win8_extension);
1734 vmstor_current_major = VMSTOR_WIN7_MAJOR;
1735 vmstor_current_minor = VMSTOR_WIN7_MINOR;
K. Y. Srinivasan0fb8db22014-12-16 13:21:44 -08001736 max_luns_per_target = STORVSC_IDE_MAX_LUNS_PER_TARGET;
1737 max_targets = STORVSC_IDE_MAX_TARGETS;
1738 max_channels = STORVSC_IDE_MAX_CHANNELS;
K. Y. Srinivasanadb6f9e2014-07-12 09:48:29 -07001739 break;
1740 default:
1741 sense_buffer_size = POST_WIN7_STORVSC_SENSE_BUFFER_SIZE;
1742 vmscsi_size_delta = 0;
1743 vmstor_current_major = VMSTOR_WIN8_MAJOR;
1744 vmstor_current_minor = VMSTOR_WIN8_MINOR;
K. Y. Srinivasan0fb8db22014-12-16 13:21:44 -08001745 max_luns_per_target = STORVSC_MAX_LUNS_PER_TARGET;
1746 max_targets = STORVSC_MAX_TARGETS;
1747 max_channels = STORVSC_MAX_CHANNELS;
K. Y. Srinivasanf458aad2015-03-27 00:27:15 -07001748 /*
1749 * On Windows8 and above, we support sub-channels for storage.
1750 * The number of sub-channels offerred is based on the number of
1751 * VCPUs in the guest.
1752 */
1753 max_sub_channels = (num_cpus / storvsc_vcpus_per_sub_channel);
K. Y. Srinivasanadb6f9e2014-07-12 09:48:29 -07001754 break;
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001755 }
1756
K. Y. Srinivasanf458aad2015-03-27 00:27:15 -07001757 scsi_driver.can_queue = (max_outstanding_req_per_channel *
1758 (max_sub_channels + 1));
1759
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001760 host = scsi_host_alloc(&scsi_driver,
1761 sizeof(struct hv_host_device));
1762 if (!host)
1763 return -ENOMEM;
1764
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001765 host_dev = shost_priv(host);
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001766 memset(host_dev, 0, sizeof(struct hv_host_device));
1767
1768 host_dev->port = host->host_no;
1769 host_dev->dev = device;
1770
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001771
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001772 stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001773 if (!stor_device) {
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001774 ret = -ENOMEM;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001775 goto err_out0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001776 }
1777
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001778 stor_device->destroy = false;
K. Y. Srinivasan6f94d5d2013-06-04 12:05:07 -07001779 stor_device->open_sub_channel = false;
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001780 init_waitqueue_head(&stor_device->waiting_to_drain);
1781 stor_device->device = device;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001782 stor_device->host = host;
1783 hv_set_drvdata(device, stor_device);
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001784
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001785 stor_device->port_number = host->host_no;
1786 ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001787 if (ret)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001788 goto err_out1;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001789
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001790 host_dev->path = stor_device->path_id;
1791 host_dev->target = stor_device->target_id;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001792
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -07001793 switch (dev_id->driver_data) {
1794 case SFC_GUID:
1795 host->max_lun = STORVSC_FC_MAX_LUNS_PER_TARGET;
1796 host->max_id = STORVSC_FC_MAX_TARGETS;
1797 host->max_channel = STORVSC_FC_MAX_CHANNELS - 1;
1798 break;
1799
1800 case SCSI_GUID:
K. Y. Srinivasan0fb8db22014-12-16 13:21:44 -08001801 host->max_lun = max_luns_per_target;
1802 host->max_id = max_targets;
1803 host->max_channel = max_channels - 1;
K. Y. Srinivasan4cd83ec2014-07-12 09:48:26 -07001804 break;
1805
1806 default:
1807 host->max_lun = STORVSC_IDE_MAX_LUNS_PER_TARGET;
1808 host->max_id = STORVSC_IDE_MAX_TARGETS;
1809 host->max_channel = STORVSC_IDE_MAX_CHANNELS - 1;
1810 break;
1811 }
Mike Sterlingcf55f4a2011-09-06 16:10:55 -07001812 /* max cmd length */
1813 host->max_cmd_len = STORVSC_MAX_CMD_LEN;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001814
1815 /* Register the HBA and start the scsi bus scan */
1816 ret = scsi_add_host(host, &device->device);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001817 if (ret != 0)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001818 goto err_out2;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001819
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001820 if (!dev_is_ide) {
1821 scsi_scan_host(host);
K. Y. Srinivasan59d22952012-01-12 12:37:55 -08001822 } else {
1823 target = (device->dev_instance.b[5] << 8 |
1824 device->dev_instance.b[4]);
1825 ret = scsi_add_device(host, 0, target, 0);
1826 if (ret) {
1827 scsi_remove_host(host);
1828 goto err_out2;
1829 }
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001830 }
1831 return 0;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001832
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001833err_out2:
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001834 /*
1835 * Once we have connected with the host, we would need to
1836 * to invoke storvsc_dev_remove() to rollback this state and
1837 * this call also frees up the stor_device; hence the jump around
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001838 * err_out1 label.
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001839 */
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001840 storvsc_dev_remove(device);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001841 goto err_out0;
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001842
1843err_out1:
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001844 kfree(stor_device);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001845
1846err_out0:
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001847 scsi_host_put(host);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001848 return ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001849}
1850
K. Y. Srinivasanddcbf652012-01-12 12:37:59 -08001851static int storvsc_remove(struct hv_device *dev)
1852{
1853 struct storvsc_device *stor_device = hv_get_drvdata(dev);
1854 struct Scsi_Host *host = stor_device->host;
1855
1856 scsi_remove_host(host);
1857 storvsc_dev_remove(dev);
1858 scsi_host_put(host);
1859
1860 return 0;
1861}
1862
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001863static struct hv_driver storvsc_drv = {
K. Y. Srinivasanfafb0ef2011-11-08 09:01:46 -08001864 .name = KBUILD_MODNAME,
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001865 .id_table = id_table,
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001866 .probe = storvsc_probe,
1867 .remove = storvsc_remove,
K. Y. Srinivasan39ae6fa2011-05-10 07:54:46 -07001868};
K. Y. Srinivasan7bd05b92011-05-10 07:54:45 -07001869
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001870static int __init storvsc_drv_init(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001871{
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001872
1873 /*
1874 * Divide the ring buffer data size (which is 1 page less
1875 * than the ring buffer size since that page is reserved for
1876 * the ring buffer indices) by the max request size (which is
1877 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
1878 */
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001879 max_outstanding_req_per_channel =
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001880 ((storvsc_ringbuffer_size - PAGE_SIZE) /
1881 ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
K. Y. Srinivasan8b612fa2013-06-04 12:05:06 -07001882 sizeof(struct vstor_packet) + sizeof(u64) -
1883 vmscsi_size_delta,
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001884 sizeof(u64)));
Hank Janssenbef4a342009-07-13 16:01:31 -07001885
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001886 return vmbus_driver_register(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001887}
1888
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001889static void __exit storvsc_drv_exit(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001890{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001891 vmbus_driver_unregister(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001892}
1893
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001894MODULE_LICENSE("GPL");
Stephen Hemminger3afc7cc32010-05-06 21:44:45 -07001895MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001896module_init(storvsc_drv_init);
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001897module_exit(storvsc_drv_exit);