blob: 446c02379c80b6dafb81461569e25c53dade0009 [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>
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
58 */
59
K. Y. Srinivasan85904a52012-01-12 12:38:04 -080060#define VMSTOR_CURRENT_MAJOR 4
61#define VMSTOR_CURRENT_MINOR 2
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070062
63
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070064/* Packet structure describing virtual storage requests. */
65enum vstor_packet_operation {
66 VSTOR_OPERATION_COMPLETE_IO = 1,
67 VSTOR_OPERATION_REMOVE_DEVICE = 2,
68 VSTOR_OPERATION_EXECUTE_SRB = 3,
69 VSTOR_OPERATION_RESET_LUN = 4,
70 VSTOR_OPERATION_RESET_ADAPTER = 5,
71 VSTOR_OPERATION_RESET_BUS = 6,
72 VSTOR_OPERATION_BEGIN_INITIALIZATION = 7,
73 VSTOR_OPERATION_END_INITIALIZATION = 8,
74 VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9,
75 VSTOR_OPERATION_QUERY_PROPERTIES = 10,
K. Y. Srinivasan2b9525f2011-11-08 09:01:48 -080076 VSTOR_OPERATION_ENUMERATE_BUS = 11,
77 VSTOR_OPERATION_MAXIMUM = 11
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070078};
79
80/*
81 * Platform neutral description of a scsi request -
82 * this remains the same across the write regardless of 32/64 bit
83 * note: it's patterned off the SCSI_PASS_THROUGH structure
84 */
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -080085#define STORVSC_MAX_CMD_LEN 0x10
86#define STORVSC_SENSE_BUFFER_SIZE 0x12
87#define STORVSC_MAX_BUF_LEN_WITH_PADDING 0x14
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070088
89struct vmscsi_request {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080090 u16 length;
91 u8 srb_status;
92 u8 scsi_status;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070093
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080094 u8 port_number;
95 u8 path_id;
96 u8 target_id;
97 u8 lun;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070098
K. Y. Srinivasanc6491142012-01-12 12:38:03 -080099 u8 cdb_length;
100 u8 sense_info_length;
101 u8 data_in;
102 u8 reserved;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700103
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800104 u32 data_transfer_length;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700105
106 union {
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -0800107 u8 cdb[STORVSC_MAX_CMD_LEN];
108 u8 sense_data[STORVSC_SENSE_BUFFER_SIZE];
109 u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING];
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700110 };
111} __attribute((packed));
112
113
114/*
115 * This structure is sent during the intialization phase to get the different
116 * properties of the channel.
117 */
118struct vmstorage_channel_properties {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800119 u16 protocol_version;
120 u8 path_id;
121 u8 target_id;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700122
123 /* Note: port number is only really known on the client side */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800124 u32 port_number;
125 u32 flags;
126 u32 max_transfer_bytes;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700127
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800128 /*
129 * This id is unique for each channel and will correspond with
130 * vendor specific data in the inquiry data.
131 */
132
133 u64 unique_id;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700134} __packed;
135
136/* This structure is sent during the storage protocol negotiations. */
137struct vmstorage_protocol_version {
138 /* Major (MSW) and minor (LSW) version numbers. */
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800139 u16 major_minor;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700140
141 /*
142 * Revision number is auto-incremented whenever this file is changed
143 * (See FILL_VMSTOR_REVISION macro above). Mismatch does not
144 * definitely indicate incompatibility--but it does indicate mismatched
145 * builds.
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800146 * This is only used on the windows side. Just set it to 0.
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700147 */
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800148 u16 revision;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700149} __packed;
150
151/* Channel Property Flags */
152#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1
153#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2
154
155struct vstor_packet {
156 /* Requested operation type */
157 enum vstor_packet_operation operation;
158
159 /* Flags - see below for values */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800160 u32 flags;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700161
162 /* Status of the request returned from the server side. */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800163 u32 status;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700164
165 /* Data payload area */
166 union {
167 /*
168 * Structure used to forward SCSI commands from the
169 * client to the server.
170 */
171 struct vmscsi_request vm_srb;
172
173 /* Structure used to query channel properties. */
174 struct vmstorage_channel_properties storage_channel_properties;
175
176 /* Used during version negotiations. */
177 struct vmstorage_protocol_version version;
178 };
179} __packed;
180
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700181/*
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800182 * Packet Flags:
183 *
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700184 * This flag indicates that the server should send back a completion for this
185 * packet.
186 */
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800187
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700188#define REQUEST_COMPLETION_FLAG 0x1
189
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700190/* Matches Windows-end */
191enum storvsc_request_type {
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800192 WRITE_TYPE = 0,
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700193 READ_TYPE,
194 UNKNOWN_TYPE,
195};
196
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800197/*
198 * SRB status codes and masks; a subset of the codes used here.
199 */
200
201#define SRB_STATUS_AUTOSENSE_VALID 0x80
202#define SRB_STATUS_INVALID_LUN 0x20
203#define SRB_STATUS_SUCCESS 0x01
204#define SRB_STATUS_ERROR 0x04
205
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800206/*
207 * This is the end of Protocol specific defines.
208 */
209
210
211/*
212 * We setup a mempool to allocate request structures for this driver
213 * on a per-lun basis. The following define specifies the number of
214 * elements in the pool.
215 */
216
217#define STORVSC_MIN_BUF_NR 64
218static int storvsc_ringbuffer_size = (20 * PAGE_SIZE);
219
220module_param(storvsc_ringbuffer_size, int, S_IRUGO);
221MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");
222
223#define STORVSC_MAX_IO_REQUESTS 128
224
225/*
226 * In Hyper-V, each port/path/target maps to 1 scsi host adapter. In
227 * reality, the path/target is not used (ie always set to 0) so our
228 * scsi host adapter essentially has 1 bus with 1 target that contains
229 * up to 256 luns.
230 */
231#define STORVSC_MAX_LUNS_PER_TARGET 64
232#define STORVSC_MAX_TARGETS 1
233#define STORVSC_MAX_CHANNELS 1
234
235
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800236
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800237struct storvsc_cmd_request {
238 struct list_head entry;
239 struct scsi_cmnd *cmd;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700240
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800241 unsigned int bounce_sgl_count;
242 struct scatterlist *bounce_sgl;
243
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700244 struct hv_device *device;
245
246 /* Synchronize the request/response if needed */
247 struct completion wait_event;
248
249 unsigned char *sense_buffer;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700250 struct hv_multipage_buffer data_buffer;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700251 struct vstor_packet vstor_packet;
252};
253
254
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700255/* A storvsc device is a device object that contains a vmbus channel */
256struct storvsc_device {
257 struct hv_device *device;
258
259 bool destroy;
260 bool drain_notify;
261 atomic_t num_outstanding_req;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700262 struct Scsi_Host *host;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700263
264 wait_queue_head_t waiting_to_drain;
265
266 /*
267 * Each unique Port/Path/Target represents 1 channel ie scsi
268 * controller. In reality, the pathid, targetid is always 0
269 * and the port is set by us
270 */
271 unsigned int port_number;
272 unsigned char path_id;
273 unsigned char target_id;
274
275 /* Used for vsc/vsp channel reset process */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800276 struct storvsc_cmd_request init_request;
277 struct storvsc_cmd_request reset_request;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700278};
279
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800280struct stor_mem_pools {
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700281 struct kmem_cache *request_pool;
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -0800282 mempool_t *request_mempool;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800283};
284
285struct hv_host_device {
286 struct hv_device *dev;
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700287 unsigned int port;
288 unsigned char path;
289 unsigned char target;
290};
291
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800292struct storvsc_scan_work {
293 struct work_struct work;
294 struct Scsi_Host *host;
295 uint lun;
296};
297
298static void storvsc_bus_scan(struct work_struct *work)
299{
300 struct storvsc_scan_work *wrk;
301 int id, order_id;
302
303 wrk = container_of(work, struct storvsc_scan_work, work);
304 for (id = 0; id < wrk->host->max_id; ++id) {
305 if (wrk->host->reverse_ordering)
306 order_id = wrk->host->max_id - id - 1;
307 else
308 order_id = id;
309
310 scsi_scan_target(&wrk->host->shost_gendev, 0,
311 order_id, SCAN_WILD_CARD, 1);
312 }
313 kfree(wrk);
314}
315
K. Y. Srinivasanb4017312011-11-08 09:01:50 -0800316static void storvsc_remove_lun(struct work_struct *work)
317{
318 struct storvsc_scan_work *wrk;
319 struct scsi_device *sdev;
320
321 wrk = container_of(work, struct storvsc_scan_work, work);
322 if (!scsi_host_get(wrk->host))
323 goto done;
324
325 sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun);
326
327 if (sdev) {
328 scsi_remove_device(sdev);
329 scsi_device_put(sdev);
330 }
331 scsi_host_put(wrk->host);
332
333done:
334 kfree(wrk);
335}
336
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800337/*
K. Y. Srinivasanaf9584b2012-01-12 12:38:08 -0800338 * Major/minor macros. Minor version is in LSB, meaning that earlier flat
339 * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1).
340 */
341
342static inline u16 storvsc_get_version(u8 major, u8 minor)
343{
344 u16 version;
345
346 version = ((major << 8) | minor);
347 return version;
348}
349
350/*
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800351 * We can get incoming messages from the host that are not in response to
352 * messages that we have sent out. An example of this would be messages
353 * received by the guest to notify dynamic addition/removal of LUNs. To
354 * deal with potential race conditions where the driver may be in the
355 * midst of being unloaded when we might receive an unsolicited message
356 * from the host, we have implemented a mechanism to gurantee sequential
357 * consistency:
358 *
359 * 1) Once the device is marked as being destroyed, we will fail all
360 * outgoing messages.
361 * 2) We permit incoming messages when the device is being destroyed,
362 * only to properly account for messages already sent out.
363 */
364
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700365static inline struct storvsc_device *get_out_stor_device(
366 struct hv_device *device)
367{
368 struct storvsc_device *stor_device;
369
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700370 stor_device = hv_get_drvdata(device);
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700371
372 if (stor_device && stor_device->destroy)
373 stor_device = NULL;
374
375 return stor_device;
376}
377
378
379static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
380{
381 dev->drain_notify = true;
382 wait_event(dev->waiting_to_drain,
383 atomic_read(&dev->num_outstanding_req) == 0);
384 dev->drain_notify = false;
385}
Hank Janssenbef4a342009-07-13 16:01:31 -0700386
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700387static inline struct storvsc_device *get_in_stor_device(
388 struct hv_device *device)
389{
390 struct storvsc_device *stor_device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700391
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700392 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700393
394 if (!stor_device)
395 goto get_in_err;
396
397 /*
398 * If the device is being destroyed; allow incoming
399 * traffic only to cleanup outstanding requests.
400 */
401
402 if (stor_device->destroy &&
403 (atomic_read(&stor_device->num_outstanding_req) == 0))
404 stor_device = NULL;
405
406get_in_err:
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700407 return stor_device;
408
409}
410
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800411static void destroy_bounce_buffer(struct scatterlist *sgl,
412 unsigned int sg_count)
413{
414 int i;
415 struct page *page_buf;
416
417 for (i = 0; i < sg_count; i++) {
418 page_buf = sg_page((&sgl[i]));
419 if (page_buf != NULL)
420 __free_page(page_buf);
421 }
422
423 kfree(sgl);
424}
425
426static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count)
427{
428 int i;
429
430 /* No need to check */
431 if (sg_count < 2)
432 return -1;
433
434 /* We have at least 2 sg entries */
435 for (i = 0; i < sg_count; i++) {
436 if (i == 0) {
437 /* make sure 1st one does not have hole */
438 if (sgl[i].offset + sgl[i].length != PAGE_SIZE)
439 return i;
440 } else if (i == sg_count - 1) {
441 /* make sure last one does not have hole */
442 if (sgl[i].offset != 0)
443 return i;
444 } else {
445 /* make sure no hole in the middle */
446 if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0)
447 return i;
448 }
449 }
450 return -1;
451}
452
453static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl,
454 unsigned int sg_count,
455 unsigned int len,
456 int write)
457{
458 int i;
459 int num_pages;
460 struct scatterlist *bounce_sgl;
461 struct page *page_buf;
462 unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE);
463
464 num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT;
465
466 bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC);
467 if (!bounce_sgl)
468 return NULL;
469
K. Y. Srinivasan7d58bfc2013-02-06 05:15:28 -0800470 sg_init_table(bounce_sgl, num_pages);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800471 for (i = 0; i < num_pages; i++) {
472 page_buf = alloc_page(GFP_ATOMIC);
473 if (!page_buf)
474 goto cleanup;
475 sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0);
476 }
477
478 return bounce_sgl;
479
480cleanup:
481 destroy_bounce_buffer(bounce_sgl, num_pages);
482 return NULL;
483}
484
Linus Torvalds9f393832012-03-21 09:40:26 -0700485/* Disgusting wrapper functions */
486static inline unsigned long sg_kmap_atomic(struct scatterlist *sgl, int idx)
487{
488 void *addr = kmap_atomic(sg_page(sgl + idx));
489 return (unsigned long)addr;
490}
491
492static inline void sg_kunmap_atomic(unsigned long addr)
493{
494 kunmap_atomic((void *)addr);
495}
496
497
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800498/* Assume the original sgl has enough room */
499static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl,
500 struct scatterlist *bounce_sgl,
501 unsigned int orig_sgl_count,
502 unsigned int bounce_sgl_count)
503{
504 int i;
505 int j = 0;
506 unsigned long src, dest;
507 unsigned int srclen, destlen, copylen;
508 unsigned int total_copied = 0;
509 unsigned long bounce_addr = 0;
510 unsigned long dest_addr = 0;
511 unsigned long flags;
512
513 local_irq_save(flags);
514
515 for (i = 0; i < orig_sgl_count; i++) {
Linus Torvalds9f393832012-03-21 09:40:26 -0700516 dest_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800517 dest = dest_addr;
518 destlen = orig_sgl[i].length;
519
520 if (bounce_addr == 0)
Linus Torvalds9f393832012-03-21 09:40:26 -0700521 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800522
523 while (destlen) {
524 src = bounce_addr + bounce_sgl[j].offset;
525 srclen = bounce_sgl[j].length - bounce_sgl[j].offset;
526
527 copylen = min(srclen, destlen);
528 memcpy((void *)dest, (void *)src, copylen);
529
530 total_copied += copylen;
531 bounce_sgl[j].offset += copylen;
532 destlen -= copylen;
533 dest += copylen;
534
535 if (bounce_sgl[j].offset == bounce_sgl[j].length) {
536 /* full */
Linus Torvalds9f393832012-03-21 09:40:26 -0700537 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800538 j++;
539
540 /*
541 * It is possible that the number of elements
542 * in the bounce buffer may not be equal to
543 * the number of elements in the original
544 * scatter list. Handle this correctly.
545 */
546
547 if (j == bounce_sgl_count) {
548 /*
549 * We are done; cleanup and return.
550 */
Linus Torvalds9f393832012-03-21 09:40:26 -0700551 sg_kunmap_atomic(dest_addr - orig_sgl[i].offset);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800552 local_irq_restore(flags);
553 return total_copied;
554 }
555
556 /* if we need to use another bounce buffer */
557 if (destlen || i != orig_sgl_count - 1)
Linus Torvalds9f393832012-03-21 09:40:26 -0700558 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800559 } else if (destlen == 0 && i == orig_sgl_count - 1) {
560 /* unmap the last bounce that is < PAGE_SIZE */
Linus Torvalds9f393832012-03-21 09:40:26 -0700561 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800562 }
563 }
564
Linus Torvalds9f393832012-03-21 09:40:26 -0700565 sg_kunmap_atomic(dest_addr - orig_sgl[i].offset);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800566 }
567
568 local_irq_restore(flags);
569
570 return total_copied;
571}
572
573/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */
574static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl,
575 struct scatterlist *bounce_sgl,
576 unsigned int orig_sgl_count)
577{
578 int i;
579 int j = 0;
580 unsigned long src, dest;
581 unsigned int srclen, destlen, copylen;
582 unsigned int total_copied = 0;
583 unsigned long bounce_addr = 0;
584 unsigned long src_addr = 0;
585 unsigned long flags;
586
587 local_irq_save(flags);
588
589 for (i = 0; i < orig_sgl_count; i++) {
Linus Torvalds9f393832012-03-21 09:40:26 -0700590 src_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800591 src = src_addr;
592 srclen = orig_sgl[i].length;
593
594 if (bounce_addr == 0)
Linus Torvalds9f393832012-03-21 09:40:26 -0700595 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800596
597 while (srclen) {
598 /* assume bounce offset always == 0 */
599 dest = bounce_addr + bounce_sgl[j].length;
600 destlen = PAGE_SIZE - bounce_sgl[j].length;
601
602 copylen = min(srclen, destlen);
603 memcpy((void *)dest, (void *)src, copylen);
604
605 total_copied += copylen;
606 bounce_sgl[j].length += copylen;
607 srclen -= copylen;
608 src += copylen;
609
610 if (bounce_sgl[j].length == PAGE_SIZE) {
611 /* full..move to next entry */
Linus Torvalds9f393832012-03-21 09:40:26 -0700612 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800613 j++;
614
615 /* if we need to use another bounce buffer */
616 if (srclen || i != orig_sgl_count - 1)
Linus Torvalds9f393832012-03-21 09:40:26 -0700617 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800618
619 } else if (srclen == 0 && i == orig_sgl_count - 1) {
620 /* unmap the last bounce that is < PAGE_SIZE */
Linus Torvalds9f393832012-03-21 09:40:26 -0700621 sg_kunmap_atomic(bounce_addr);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800622 }
623 }
624
Linus Torvalds9f393832012-03-21 09:40:26 -0700625 sg_kunmap_atomic(src_addr - orig_sgl[i].offset);
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800626 }
627
628 local_irq_restore(flags);
629
630 return total_copied;
631}
632
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700633static int storvsc_channel_init(struct hv_device *device)
634{
635 struct storvsc_device *stor_device;
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800636 struct storvsc_cmd_request *request;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700637 struct vstor_packet *vstor_packet;
638 int ret, t;
639
640 stor_device = get_out_stor_device(device);
641 if (!stor_device)
642 return -ENODEV;
643
644 request = &stor_device->init_request;
645 vstor_packet = &request->vstor_packet;
646
647 /*
648 * Now, initiate the vsc/vsp initialization protocol on the open
649 * channel
650 */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800651 memset(request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700652 init_completion(&request->wait_event);
653 vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
654 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
655
656 ret = vmbus_sendpacket(device->channel, vstor_packet,
657 sizeof(struct vstor_packet),
658 (unsigned long)request,
659 VM_PKT_DATA_INBAND,
660 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
661 if (ret != 0)
662 goto cleanup;
663
664 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
665 if (t == 0) {
666 ret = -ETIMEDOUT;
667 goto cleanup;
668 }
669
670 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
671 vstor_packet->status != 0)
672 goto cleanup;
673
674
675 /* reuse the packet for version range supported */
676 memset(vstor_packet, 0, sizeof(struct vstor_packet));
677 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
678 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
679
K. Y. Srinivasan85904a52012-01-12 12:38:04 -0800680 vstor_packet->version.major_minor =
681 storvsc_get_version(VMSTOR_CURRENT_MAJOR, VMSTOR_CURRENT_MINOR);
682
683 /*
684 * The revision number is only used in Windows; set it to 0.
685 */
K. Y. Srinivasanc6491142012-01-12 12:38:03 -0800686 vstor_packet->version.revision = 0;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700687
688 ret = vmbus_sendpacket(device->channel, vstor_packet,
689 sizeof(struct vstor_packet),
690 (unsigned long)request,
691 VM_PKT_DATA_INBAND,
692 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
693 if (ret != 0)
694 goto cleanup;
695
696 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
697 if (t == 0) {
698 ret = -ETIMEDOUT;
699 goto cleanup;
700 }
701
702 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
703 vstor_packet->status != 0)
704 goto cleanup;
705
706
707 memset(vstor_packet, 0, sizeof(struct vstor_packet));
708 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
709 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
710 vstor_packet->storage_channel_properties.port_number =
711 stor_device->port_number;
712
713 ret = vmbus_sendpacket(device->channel, vstor_packet,
714 sizeof(struct vstor_packet),
715 (unsigned long)request,
716 VM_PKT_DATA_INBAND,
717 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
718
719 if (ret != 0)
720 goto cleanup;
721
722 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
723 if (t == 0) {
724 ret = -ETIMEDOUT;
725 goto cleanup;
726 }
727
728 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
729 vstor_packet->status != 0)
730 goto cleanup;
731
732 stor_device->path_id = vstor_packet->storage_channel_properties.path_id;
733 stor_device->target_id
734 = vstor_packet->storage_channel_properties.target_id;
735
736 memset(vstor_packet, 0, sizeof(struct vstor_packet));
737 vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
738 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
739
740 ret = vmbus_sendpacket(device->channel, vstor_packet,
741 sizeof(struct vstor_packet),
742 (unsigned long)request,
743 VM_PKT_DATA_INBAND,
744 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
745
746 if (ret != 0)
747 goto cleanup;
748
749 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
750 if (t == 0) {
751 ret = -ETIMEDOUT;
752 goto cleanup;
753 }
754
755 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
756 vstor_packet->status != 0)
757 goto cleanup;
758
759
760cleanup:
761 return ret;
762}
763
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800764
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800765static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request)
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800766{
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800767 struct scsi_cmnd *scmnd = cmd_request->cmd;
768 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
769 void (*scsi_done_fn)(struct scsi_cmnd *);
770 struct scsi_sense_hdr sense_hdr;
771 struct vmscsi_request *vm_srb;
772 struct storvsc_scan_work *wrk;
773 struct stor_mem_pools *memp = scmnd->device->hostdata;
774
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800775 vm_srb = &cmd_request->vstor_packet.vm_srb;
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800776 if (cmd_request->bounce_sgl_count) {
777 if (vm_srb->data_in == READ_TYPE)
778 copy_from_bounce_buffer(scsi_sglist(scmnd),
779 cmd_request->bounce_sgl,
780 scsi_sg_count(scmnd),
781 cmd_request->bounce_sgl_count);
782 destroy_bounce_buffer(cmd_request->bounce_sgl,
783 cmd_request->bounce_sgl_count);
784 }
785
786 /*
787 * If there is an error; offline the device since all
788 * error recovery strategies would have already been
789 * deployed on the host side.
790 */
791 if (vm_srb->srb_status == SRB_STATUS_ERROR)
792 scmnd->result = DID_TARGET_FAILURE << 16;
793 else
794 scmnd->result = vm_srb->scsi_status;
795
796 /*
797 * If the LUN is invalid; remove the device.
798 */
799 if (vm_srb->srb_status == SRB_STATUS_INVALID_LUN) {
800 struct storvsc_device *stor_dev;
801 struct hv_device *dev = host_dev->dev;
802 struct Scsi_Host *host;
803
804 stor_dev = get_in_stor_device(dev);
805 host = stor_dev->host;
806
807 wrk = kmalloc(sizeof(struct storvsc_scan_work),
808 GFP_ATOMIC);
809 if (!wrk) {
810 scmnd->result = DID_TARGET_FAILURE << 16;
811 } else {
812 wrk->host = host;
813 wrk->lun = vm_srb->lun;
814 INIT_WORK(&wrk->work, storvsc_remove_lun);
815 schedule_work(&wrk->work);
816 }
817 }
818
819 if (scmnd->result) {
820 if (scsi_normalize_sense(scmnd->sense_buffer,
821 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
822 scsi_print_sense_hdr("storvsc", &sense_hdr);
823 }
824
825 scsi_set_resid(scmnd,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800826 cmd_request->data_buffer.len -
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800827 vm_srb->data_transfer_length);
828
829 scsi_done_fn = scmnd->scsi_done;
830
831 scmnd->host_scribble = NULL;
832 scmnd->scsi_done = NULL;
833
834 scsi_done_fn(scmnd);
835
836 mempool_free(cmd_request, memp->request_mempool);
837}
838
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700839static void storvsc_on_io_completion(struct hv_device *device,
840 struct vstor_packet *vstor_packet,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800841 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700842{
843 struct storvsc_device *stor_device;
844 struct vstor_packet *stor_pkt;
845
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700846 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700847 stor_pkt = &request->vstor_packet;
848
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -0700849 /*
850 * The current SCSI handling on the host side does
851 * not correctly handle:
852 * INQUIRY command with page code parameter set to 0x80
853 * MODE_SENSE command with cmd[2] == 0x1c
854 *
855 * Setup srb and scsi status so this won't be fatal.
856 * We do this so we can distinguish truly fatal failues
857 * (srb status == 0x4) and off-line the device in that case.
858 */
859
860 if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
K. Y. Srinivasana8c18c52012-01-12 12:38:00 -0800861 (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -0700862 vstor_packet->vm_srb.scsi_status = 0;
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800863 vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS;
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -0700864 }
865
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700866
867 /* Copy over the status...etc */
868 stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
869 stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
870 stor_pkt->vm_srb.sense_info_length =
871 vstor_packet->vm_srb.sense_info_length;
872
873 if (vstor_packet->vm_srb.scsi_status != 0 ||
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800874 vstor_packet->vm_srb.srb_status != SRB_STATUS_SUCCESS){
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -0600875 dev_warn(&device->device,
876 "cmd 0x%x scsi status 0x%x srb status 0x%x\n",
877 stor_pkt->vm_srb.cdb[0],
878 vstor_packet->vm_srb.scsi_status,
879 vstor_packet->vm_srb.srb_status);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700880 }
881
882 if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
883 /* CHECK_CONDITION */
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800884 if (vstor_packet->vm_srb.srb_status &
885 SRB_STATUS_AUTOSENSE_VALID) {
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700886 /* autosense data available */
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -0600887 dev_warn(&device->device,
K. Y. Srinivasan41098f82011-10-14 21:31:57 -0700888 "stor pkt %p autosense data valid - len %d\n",
889 request,
890 vstor_packet->vm_srb.sense_info_length);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700891
892 memcpy(request->sense_buffer,
893 vstor_packet->vm_srb.sense_data,
894 vstor_packet->vm_srb.sense_info_length);
895
896 }
897 }
898
899 stor_pkt->vm_srb.data_transfer_length =
900 vstor_packet->vm_srb.data_transfer_length;
901
K. Y. Srinivasan27073882012-01-12 12:38:01 -0800902 storvsc_command_completion(request);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700903
904 if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
905 stor_device->drain_notify)
906 wake_up(&stor_device->waiting_to_drain);
907
908
909}
910
911static void storvsc_on_receive(struct hv_device *device,
912 struct vstor_packet *vstor_packet,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800913 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700914{
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800915 struct storvsc_scan_work *work;
916 struct storvsc_device *stor_device;
917
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700918 switch (vstor_packet->operation) {
919 case VSTOR_OPERATION_COMPLETE_IO:
920 storvsc_on_io_completion(device, vstor_packet, request);
921 break;
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800922
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700923 case VSTOR_OPERATION_REMOVE_DEVICE:
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800924 case VSTOR_OPERATION_ENUMERATE_BUS:
925 stor_device = get_in_stor_device(device);
926 work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
927 if (!work)
928 return;
929
930 INIT_WORK(&work->work, storvsc_bus_scan);
931 work->host = stor_device->host;
932 schedule_work(&work->work);
933 break;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700934
935 default:
936 break;
937 }
938}
939
940static void storvsc_on_channel_callback(void *context)
941{
942 struct hv_device *device = (struct hv_device *)context;
943 struct storvsc_device *stor_device;
944 u32 bytes_recvd;
945 u64 request_id;
946 unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)];
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800947 struct storvsc_cmd_request *request;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700948 int ret;
949
950
951 stor_device = get_in_stor_device(device);
952 if (!stor_device)
953 return;
954
955 do {
956 ret = vmbus_recvpacket(device->channel, packet,
957 ALIGN(sizeof(struct vstor_packet), 8),
958 &bytes_recvd, &request_id);
959 if (ret == 0 && bytes_recvd > 0) {
960
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -0800961 request = (struct storvsc_cmd_request *)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700962 (unsigned long)request_id;
963
964 if ((request == &stor_device->init_request) ||
965 (request == &stor_device->reset_request)) {
966
967 memcpy(&request->vstor_packet, packet,
968 sizeof(struct vstor_packet));
969 complete(&request->wait_event);
970 } else {
971 storvsc_on_receive(device,
972 (struct vstor_packet *)packet,
973 request);
974 }
975 } else {
976 break;
977 }
978 } while (1);
979
980 return;
981}
982
983static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
984{
985 struct vmstorage_channel_properties props;
986 int ret;
987
988 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
989
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700990 ret = vmbus_open(device->channel,
991 ring_size,
992 ring_size,
993 (void *)&props,
994 sizeof(struct vmstorage_channel_properties),
995 storvsc_on_channel_callback, device);
996
997 if (ret != 0)
998 return ret;
999
1000 ret = storvsc_channel_init(device);
1001
1002 return ret;
1003}
1004
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -07001005static int storvsc_dev_remove(struct hv_device *device)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001006{
1007 struct storvsc_device *stor_device;
1008 unsigned long flags;
1009
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001010 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001011
1012 spin_lock_irqsave(&device->channel->inbound_lock, flags);
1013 stor_device->destroy = true;
1014 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1015
1016 /*
1017 * At this point, all outbound traffic should be disable. We
1018 * only allow inbound traffic (responses) to proceed so that
1019 * outstanding requests can be completed.
1020 */
1021
1022 storvsc_wait_to_drain(stor_device);
1023
1024 /*
1025 * Since we have already drained, we don't need to busy wait
1026 * as was done in final_release_stor_device()
1027 * Note that we cannot set the ext pointer to NULL until
1028 * we have drained - to drain the outgoing packets, we need to
1029 * allow incoming packets.
1030 */
1031 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001032 hv_set_drvdata(device, NULL);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001033 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1034
1035 /* Close the channel */
1036 vmbus_close(device->channel);
1037
1038 kfree(stor_device);
1039 return 0;
1040}
1041
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -07001042static int storvsc_do_io(struct hv_device *device,
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001043 struct storvsc_cmd_request *request)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001044{
1045 struct storvsc_device *stor_device;
1046 struct vstor_packet *vstor_packet;
1047 int ret = 0;
1048
1049 vstor_packet = &request->vstor_packet;
1050 stor_device = get_out_stor_device(device);
1051
1052 if (!stor_device)
1053 return -ENODEV;
1054
1055
1056 request->device = device;
1057
1058
1059 vstor_packet->flags |= REQUEST_COMPLETION_FLAG;
1060
1061 vstor_packet->vm_srb.length = sizeof(struct vmscsi_request);
1062
1063
K. Y. Srinivasan6b2f9492012-01-12 12:38:05 -08001064 vstor_packet->vm_srb.sense_info_length = STORVSC_SENSE_BUFFER_SIZE;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -07001065
1066
1067 vstor_packet->vm_srb.data_transfer_length =
1068 request->data_buffer.len;
1069
1070 vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;
1071
1072 if (request->data_buffer.len) {
1073 ret = vmbus_sendpacket_multipagebuffer(device->channel,
1074 &request->data_buffer,
1075 vstor_packet,
1076 sizeof(struct vstor_packet),
1077 (unsigned long)request);
1078 } else {
1079 ret = vmbus_sendpacket(device->channel, vstor_packet,
1080 sizeof(struct vstor_packet),
1081 (unsigned long)request,
1082 VM_PKT_DATA_INBAND,
1083 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1084 }
1085
1086 if (ret != 0)
1087 return ret;
1088
1089 atomic_inc(&stor_device->num_outstanding_req);
1090
1091 return ret;
1092}
1093
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -07001094static int storvsc_device_alloc(struct scsi_device *sdevice)
1095{
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001096 struct stor_mem_pools *memp;
1097 int number = STORVSC_MIN_BUF_NR;
1098
1099 memp = kzalloc(sizeof(struct stor_mem_pools), GFP_KERNEL);
1100 if (!memp)
1101 return -ENOMEM;
1102
1103 memp->request_pool =
1104 kmem_cache_create(dev_name(&sdevice->sdev_dev),
1105 sizeof(struct storvsc_cmd_request), 0,
1106 SLAB_HWCACHE_ALIGN, NULL);
1107
1108 if (!memp->request_pool)
1109 goto err0;
1110
1111 memp->request_mempool = mempool_create(number, mempool_alloc_slab,
1112 mempool_free_slab,
1113 memp->request_pool);
1114
1115 if (!memp->request_mempool)
1116 goto err1;
1117
1118 sdevice->hostdata = memp;
1119
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -07001120 return 0;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001121
1122err1:
1123 kmem_cache_destroy(memp->request_pool);
1124
1125err0:
1126 kfree(memp);
1127 return -ENOMEM;
1128}
1129
1130static void storvsc_device_destroy(struct scsi_device *sdevice)
1131{
1132 struct stor_mem_pools *memp = sdevice->hostdata;
1133
Ales Novak9e199992014-02-27 11:03:30 +01001134 if (!memp)
1135 return;
1136
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001137 mempool_destroy(memp->request_mempool);
1138 kmem_cache_destroy(memp->request_pool);
1139 kfree(memp);
1140 sdevice->hostdata = NULL;
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -07001141}
1142
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001143static int storvsc_device_configure(struct scsi_device *sdevice)
1144{
1145 scsi_adjust_queue_depth(sdevice, MSG_SIMPLE_TAG,
1146 STORVSC_MAX_IO_REQUESTS);
1147
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001148 blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE);
1149
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001150 blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -07001151
1152 return 0;
1153}
1154
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001155static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
1156 sector_t capacity, int *info)
1157{
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001158 sector_t nsect = capacity;
1159 sector_t cylinders = nsect;
1160 int heads, sectors_pt;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001161
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001162 /*
1163 * We are making up these values; let us keep it simple.
1164 */
1165 heads = 0xff;
1166 sectors_pt = 0x3f; /* Sectors per track */
1167 sector_div(cylinders, heads * sectors_pt);
1168 if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
1169 cylinders = 0xffff;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001170
1171 info[0] = heads;
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001172 info[1] = sectors_pt;
1173 info[2] = (int)cylinders;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001174
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001175 return 0;
1176}
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001177
K. Y. Srinivasan4b270c82012-01-12 12:37:58 -08001178static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001179{
K. Y. Srinivasan4b270c82012-01-12 12:37:58 -08001180 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
1181 struct hv_device *device = host_dev->dev;
1182
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001183 struct storvsc_device *stor_device;
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001184 struct storvsc_cmd_request *request;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001185 struct vstor_packet *vstor_packet;
1186 int ret, t;
1187
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001188
K. Y. Srinivasan1eaaddf2011-08-27 11:31:03 -07001189 stor_device = get_out_stor_device(device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001190 if (!stor_device)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001191 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001192
1193 request = &stor_device->reset_request;
1194 vstor_packet = &request->vstor_packet;
1195
1196 init_completion(&request->wait_event);
1197
1198 vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
1199 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1200 vstor_packet->vm_srb.path_id = stor_device->path_id;
1201
1202 ret = vmbus_sendpacket(device->channel, vstor_packet,
1203 sizeof(struct vstor_packet),
1204 (unsigned long)&stor_device->reset_request,
1205 VM_PKT_DATA_INBAND,
1206 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1207 if (ret != 0)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001208 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001209
K. Y. Srinivasan46d2eb62011-06-16 13:16:36 -07001210 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001211 if (t == 0)
1212 return TIMEOUT_ERROR;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001213
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001214
1215 /*
1216 * At this point, all outstanding requests in the adapter
1217 * should have been flushed out and return to us
K. Y. Srinivasanac78e5f2012-10-02 11:03:31 -07001218 * There is a potential race here where the host may be in
1219 * the process of responding when we return from here.
1220 * Just wait for all in-transit packets to be accounted for
1221 * before we return from here.
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001222 */
K. Y. Srinivasanac78e5f2012-10-02 11:03:31 -07001223 storvsc_wait_to_drain(stor_device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001224
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001225 return SUCCESS;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001226}
1227
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001228static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd)
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001229{
1230 bool allowed = true;
1231 u8 scsi_op = scmnd->cmnd[0];
1232
1233 switch (scsi_op) {
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001234 /*
1235 * smartd sends this command and the host does not handle
1236 * this. So, don't send it.
1237 */
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001238 case SET_WINDOW:
K. Y. Srinivasan59e00e72011-11-08 09:01:42 -08001239 scmnd->result = ILLEGAL_REQUEST << 16;
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001240 allowed = false;
1241 break;
1242 default:
1243 break;
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001244 }
1245 return allowed;
1246}
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001247
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001248static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001249{
1250 int ret;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001251 struct hv_host_device *host_dev = shost_priv(host);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001252 struct hv_device *dev = host_dev->dev;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001253 struct storvsc_cmd_request *cmd_request;
1254 unsigned int request_size = 0;
1255 int i;
1256 struct scatterlist *sgl;
1257 unsigned int sg_count = 0;
1258 struct vmscsi_request *vm_srb;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001259 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001260
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001261 if (!storvsc_scsi_cmd_ok(scmnd)) {
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001262 scmnd->scsi_done(scmnd);
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001263 return 0;
1264 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001265
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001266 request_size = sizeof(struct storvsc_cmd_request);
1267
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001268 cmd_request = mempool_alloc(memp->request_mempool,
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001269 GFP_ATOMIC);
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001270
1271 /*
1272 * We might be invoked in an interrupt context; hence
1273 * mempool_alloc() can fail.
1274 */
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001275 if (!cmd_request)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001276 return SCSI_MLQUEUE_DEVICE_BUSY;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001277
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001278 memset(cmd_request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001279
1280 /* Setup the cmd request */
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001281 cmd_request->cmd = scmnd;
1282
1283 scmnd->host_scribble = (unsigned char *)cmd_request;
1284
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001285 vm_srb = &cmd_request->vstor_packet.vm_srb;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001286
1287
1288 /* Build the SRB */
1289 switch (scmnd->sc_data_direction) {
1290 case DMA_TO_DEVICE:
1291 vm_srb->data_in = WRITE_TYPE;
1292 break;
1293 case DMA_FROM_DEVICE:
1294 vm_srb->data_in = READ_TYPE;
1295 break;
1296 default:
1297 vm_srb->data_in = UNKNOWN_TYPE;
1298 break;
1299 }
1300
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001301
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001302 vm_srb->port_number = host_dev->port;
1303 vm_srb->path_id = scmnd->device->channel;
1304 vm_srb->target_id = scmnd->device->id;
1305 vm_srb->lun = scmnd->device->lun;
1306
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001307 vm_srb->cdb_length = scmnd->cmd_len;
1308
1309 memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);
1310
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001311 cmd_request->sense_buffer = scmnd->sense_buffer;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001312
1313
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001314 cmd_request->data_buffer.len = scsi_bufflen(scmnd);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001315 if (scsi_sg_count(scmnd)) {
1316 sgl = (struct scatterlist *)scsi_sglist(scmnd);
1317 sg_count = scsi_sg_count(scmnd);
1318
1319 /* check if we need to bounce the sgl */
1320 if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) {
1321 cmd_request->bounce_sgl =
1322 create_bounce_buffer(sgl, scsi_sg_count(scmnd),
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -08001323 scsi_bufflen(scmnd),
1324 vm_srb->data_in);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001325 if (!cmd_request->bounce_sgl) {
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001326 ret = SCSI_MLQUEUE_HOST_BUSY;
1327 goto queue_error;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001328 }
1329
1330 cmd_request->bounce_sgl_count =
1331 ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
1332 PAGE_SHIFT;
1333
K. Y. Srinivasanfa23b8c2011-08-27 11:31:21 -07001334 if (vm_srb->data_in == WRITE_TYPE)
1335 copy_to_bounce_buffer(sgl,
1336 cmd_request->bounce_sgl,
1337 scsi_sg_count(scmnd));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001338
1339 sgl = cmd_request->bounce_sgl;
1340 sg_count = cmd_request->bounce_sgl_count;
1341 }
1342
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001343 cmd_request->data_buffer.offset = sgl[0].offset;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001344
1345 for (i = 0; i < sg_count; i++)
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001346 cmd_request->data_buffer.pfn_array[i] =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001347 page_to_pfn(sg_page((&sgl[i])));
1348
1349 } else if (scsi_sglist(scmnd)) {
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001350 cmd_request->data_buffer.offset =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001351 virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1);
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001352 cmd_request->data_buffer.pfn_array[0] =
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001353 virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT;
1354 }
1355
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001356 /* Invokes the vsc to start an IO */
K. Y. Srinivasan61eaffc2012-01-12 12:38:07 -08001357 ret = storvsc_do_io(dev, cmd_request);
K. Y. Srinivasan636f0fd2011-05-10 07:54:50 -07001358
K. Y. Srinivasand2598f02011-08-25 09:48:58 -07001359 if (ret == -EAGAIN) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001360 /* no more space */
1361
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001362 if (cmd_request->bounce_sgl_count) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001363 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan70691ec2011-08-27 11:31:29 -07001364 cmd_request->bounce_sgl_count);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001365
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001366 ret = SCSI_MLQUEUE_DEVICE_BUSY;
1367 goto queue_error;
1368 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001369 }
1370
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001371 return 0;
1372
1373queue_error:
1374 mempool_free(cmd_request, memp->request_mempool);
1375 scmnd->host_scribble = NULL;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001376 return ret;
1377}
1378
Hank Janssenbef4a342009-07-13 16:01:31 -07001379static struct scsi_host_template scsi_driver = {
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001380 .module = THIS_MODULE,
1381 .name = "storvsc_host_t",
1382 .bios_param = storvsc_get_chs,
1383 .queuecommand = storvsc_queuecommand,
1384 .eh_host_reset_handler = storvsc_host_reset_handler,
1385 .slave_alloc = storvsc_device_alloc,
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001386 .slave_destroy = storvsc_device_destroy,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001387 .slave_configure = storvsc_device_configure,
1388 .cmd_per_lun = 1,
1389 /* 64 max_queue * 1 target */
Lars Lindley0686e4f2010-03-11 23:51:23 +01001390 .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001391 .this_id = -1,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001392 /* no use setting to 0 since ll_blk_rw reset it to 1 */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001393 /* currently 32 */
1394 .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT,
K. Y. Srinivasan039db522011-12-01 04:59:16 -08001395 .use_clustering = DISABLE_CLUSTERING,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001396 /* Make sure we dont get a sg segment crosses a page boundary */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001397 .dma_boundary = PAGE_SIZE-1,
Hank Janssenbef4a342009-07-13 16:01:31 -07001398};
1399
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001400enum {
1401 SCSI_GUID,
1402 IDE_GUID,
1403};
1404
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001405static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001406 /* SCSI guid */
1407 { VMBUS_DEVICE(0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001408 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f)
1409 .driver_data = SCSI_GUID },
K. Y. Srinivasan21e37742011-08-27 11:31:18 -07001410 /* IDE guid */
1411 { VMBUS_DEVICE(0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001412 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5)
1413 .driver_data = IDE_GUID },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001414 { },
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001415};
Hank Janssenbef4a342009-07-13 16:01:31 -07001416
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001417MODULE_DEVICE_TABLE(vmbus, id_table);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001418
K. Y. Srinivasan84946892011-09-13 10:59:38 -07001419static int storvsc_probe(struct hv_device *device,
1420 const struct hv_vmbus_device_id *dev_id)
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001421{
1422 int ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001423 struct Scsi_Host *host;
1424 struct hv_host_device *host_dev;
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001425 bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001426 int target = 0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001427 struct storvsc_device *stor_device;
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001428
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001429 host = scsi_host_alloc(&scsi_driver,
1430 sizeof(struct hv_host_device));
1431 if (!host)
1432 return -ENOMEM;
1433
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001434 host_dev = shost_priv(host);
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001435 memset(host_dev, 0, sizeof(struct hv_host_device));
1436
1437 host_dev->port = host->host_no;
1438 host_dev->dev = device;
1439
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001440
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001441 stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001442 if (!stor_device) {
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001443 ret = -ENOMEM;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001444 goto err_out0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001445 }
1446
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001447 stor_device->destroy = false;
1448 init_waitqueue_head(&stor_device->waiting_to_drain);
1449 stor_device->device = device;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001450 stor_device->host = host;
1451 hv_set_drvdata(device, stor_device);
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001452
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001453 stor_device->port_number = host->host_no;
1454 ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001455 if (ret)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001456 goto err_out1;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001457
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001458 host_dev->path = stor_device->path_id;
1459 host_dev->target = stor_device->target_id;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001460
1461 /* max # of devices per target */
1462 host->max_lun = STORVSC_MAX_LUNS_PER_TARGET;
1463 /* max # of targets per channel */
1464 host->max_id = STORVSC_MAX_TARGETS;
1465 /* max # of channels */
1466 host->max_channel = STORVSC_MAX_CHANNELS - 1;
Mike Sterlingcf55f4a2011-09-06 16:10:55 -07001467 /* max cmd length */
1468 host->max_cmd_len = STORVSC_MAX_CMD_LEN;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001469
1470 /* Register the HBA and start the scsi bus scan */
1471 ret = scsi_add_host(host, &device->device);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001472 if (ret != 0)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001473 goto err_out2;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001474
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001475 if (!dev_is_ide) {
1476 scsi_scan_host(host);
K. Y. Srinivasan59d22952012-01-12 12:37:55 -08001477 } else {
1478 target = (device->dev_instance.b[5] << 8 |
1479 device->dev_instance.b[4]);
1480 ret = scsi_add_device(host, 0, target, 0);
1481 if (ret) {
1482 scsi_remove_host(host);
1483 goto err_out2;
1484 }
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001485 }
1486 return 0;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001487
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001488err_out2:
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001489 /*
1490 * Once we have connected with the host, we would need to
1491 * to invoke storvsc_dev_remove() to rollback this state and
1492 * this call also frees up the stor_device; hence the jump around
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001493 * err_out1 label.
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001494 */
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001495 storvsc_dev_remove(device);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001496 goto err_out0;
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001497
1498err_out1:
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001499 kfree(stor_device);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001500
1501err_out0:
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001502 scsi_host_put(host);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001503 return ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001504}
1505
K. Y. Srinivasanddcbf652012-01-12 12:37:59 -08001506static int storvsc_remove(struct hv_device *dev)
1507{
1508 struct storvsc_device *stor_device = hv_get_drvdata(dev);
1509 struct Scsi_Host *host = stor_device->host;
1510
1511 scsi_remove_host(host);
1512 storvsc_dev_remove(dev);
1513 scsi_host_put(host);
1514
1515 return 0;
1516}
1517
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001518static struct hv_driver storvsc_drv = {
K. Y. Srinivasanfafb0ef2011-11-08 09:01:46 -08001519 .name = KBUILD_MODNAME,
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001520 .id_table = id_table,
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001521 .probe = storvsc_probe,
1522 .remove = storvsc_remove,
K. Y. Srinivasan39ae6fa2011-05-10 07:54:46 -07001523};
K. Y. Srinivasan7bd05b92011-05-10 07:54:45 -07001524
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001525static int __init storvsc_drv_init(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001526{
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001527 u32 max_outstanding_req_per_channel;
1528
1529 /*
1530 * Divide the ring buffer data size (which is 1 page less
1531 * than the ring buffer size since that page is reserved for
1532 * the ring buffer indices) by the max request size (which is
1533 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
1534 */
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001535 max_outstanding_req_per_channel =
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001536 ((storvsc_ringbuffer_size - PAGE_SIZE) /
1537 ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
1538 sizeof(struct vstor_packet) + sizeof(u64),
1539 sizeof(u64)));
Hank Janssenbef4a342009-07-13 16:01:31 -07001540
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001541 if (max_outstanding_req_per_channel <
K. Y. Srinivasanf8feed02011-05-10 07:54:24 -07001542 STORVSC_MAX_IO_REQUESTS)
K. Y. Srinivasanb06efc12011-08-25 09:49:10 -07001543 return -EINVAL;
Hank Janssenbef4a342009-07-13 16:01:31 -07001544
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001545 return vmbus_driver_register(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001546}
1547
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001548static void __exit storvsc_drv_exit(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001549{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001550 vmbus_driver_unregister(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001551}
1552
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001553MODULE_LICENSE("GPL");
Hank Janssen26c14cc2010-02-11 23:02:42 +00001554MODULE_VERSION(HV_DRV_VERSION);
Stephen Hemminger3afc7cc32010-05-06 21:44:45 -07001555MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001556module_init(storvsc_drv_init);
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001557module_exit(storvsc_drv_exit);