scsi: storvsc: properly handle SRB_ERROR when sense message is present
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / scsi / storvsc_drv.c
CommitLineData
bef4a34a 1/*
bef4a34a
HJ
2 * 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>
972621c9 20 * K. Y. Srinivasan <kys@microsoft.com>
bef4a34a 21 */
a1be1706
S
22
23#include <linux/kernel.h>
f0d79fe9 24#include <linux/wait.h>
a1be1706
S
25#include <linux/sched.h>
26#include <linux/completion.h>
27#include <linux/string.h>
28#include <linux/mm.h>
29#include <linux/delay.h>
bef4a34a 30#include <linux/init.h>
5a0e3ad6 31#include <linux/slab.h>
bef4a34a
HJ
32#include <linux/module.h>
33#include <linux/device.h>
46a97191 34#include <linux/hyperv.h>
4e03e697 35#include <linux/mempool.h>
7afc3ac1 36#include <linux/blkdev.h>
bef4a34a
HJ
37#include <scsi/scsi.h>
38#include <scsi/scsi_cmnd.h>
39#include <scsi/scsi_host.h>
40#include <scsi/scsi_device.h>
41#include <scsi/scsi_tcq.h>
42#include <scsi/scsi_eh.h>
43#include <scsi/scsi_devinfo.h>
bef4a34a 44#include <scsi/scsi_dbg.h>
3f335ea2 45
09f0355f 46/*
af9584b8
S
47 * All wire protocol details (storage protocol between the guest and the host)
48 * are consolidated here.
49 *
50 * Begin protocol definitions.
09f0355f
S
51 */
52
09f0355f
S
53/*
54 * Version history:
55 * V1 Beta: 0.1
56 * V1 RC < 2008/1/31: 1.0
57 * V1 RC > 2008/1/31: 2.0
58 * Win7: 4.2
59 */
60
85904a5e
S
61#define VMSTOR_CURRENT_MAJOR 4
62#define VMSTOR_CURRENT_MINOR 2
f0d79fe9
S
63
64
f0d79fe9
S
65/* Packet structure describing virtual storage requests. */
66enum vstor_packet_operation {
67 VSTOR_OPERATION_COMPLETE_IO = 1,
68 VSTOR_OPERATION_REMOVE_DEVICE = 2,
69 VSTOR_OPERATION_EXECUTE_SRB = 3,
70 VSTOR_OPERATION_RESET_LUN = 4,
71 VSTOR_OPERATION_RESET_ADAPTER = 5,
72 VSTOR_OPERATION_RESET_BUS = 6,
73 VSTOR_OPERATION_BEGIN_INITIALIZATION = 7,
74 VSTOR_OPERATION_END_INITIALIZATION = 8,
75 VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9,
76 VSTOR_OPERATION_QUERY_PROPERTIES = 10,
2b9525f5
S
77 VSTOR_OPERATION_ENUMERATE_BUS = 11,
78 VSTOR_OPERATION_MAXIMUM = 11
f0d79fe9
S
79};
80
81/*
82 * Platform neutral description of a scsi request -
83 * this remains the same across the write regardless of 32/64 bit
84 * note: it's patterned off the SCSI_PASS_THROUGH structure
85 */
6b2f9495
S
86#define STORVSC_MAX_CMD_LEN 0x10
87#define STORVSC_SENSE_BUFFER_SIZE 0x12
88#define STORVSC_MAX_BUF_LEN_WITH_PADDING 0x14
f0d79fe9
S
89
90struct vmscsi_request {
c649114a
S
91 u16 length;
92 u8 srb_status;
93 u8 scsi_status;
f0d79fe9 94
c649114a
S
95 u8 port_number;
96 u8 path_id;
97 u8 target_id;
98 u8 lun;
f0d79fe9 99
c649114a
S
100 u8 cdb_length;
101 u8 sense_info_length;
102 u8 data_in;
103 u8 reserved;
f0d79fe9 104
c649114a 105 u32 data_transfer_length;
f0d79fe9
S
106
107 union {
6b2f9495
S
108 u8 cdb[STORVSC_MAX_CMD_LEN];
109 u8 sense_data[STORVSC_SENSE_BUFFER_SIZE];
110 u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING];
f0d79fe9
S
111 };
112} __attribute((packed));
113
114
115/*
116 * This structure is sent during the intialization phase to get the different
117 * properties of the channel.
118 */
119struct vmstorage_channel_properties {
c649114a
S
120 u16 protocol_version;
121 u8 path_id;
122 u8 target_id;
f0d79fe9
S
123
124 /* Note: port number is only really known on the client side */
c649114a
S
125 u32 port_number;
126 u32 flags;
127 u32 max_transfer_bytes;
f0d79fe9 128
c649114a
S
129 /*
130 * This id is unique for each channel and will correspond with
131 * vendor specific data in the inquiry data.
132 */
133
134 u64 unique_id;
f0d79fe9
S
135} __packed;
136
137/* This structure is sent during the storage protocol negotiations. */
138struct vmstorage_protocol_version {
139 /* Major (MSW) and minor (LSW) version numbers. */
85904a5e 140 u16 major_minor;
f0d79fe9
S
141
142 /*
143 * Revision number is auto-incremented whenever this file is changed
144 * (See FILL_VMSTOR_REVISION macro above). Mismatch does not
145 * definitely indicate incompatibility--but it does indicate mismatched
146 * builds.
c649114a 147 * This is only used on the windows side. Just set it to 0.
f0d79fe9 148 */
85904a5e 149 u16 revision;
f0d79fe9
S
150} __packed;
151
152/* Channel Property Flags */
153#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1
154#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2
155
156struct vstor_packet {
157 /* Requested operation type */
158 enum vstor_packet_operation operation;
159
160 /* Flags - see below for values */
c649114a 161 u32 flags;
f0d79fe9
S
162
163 /* Status of the request returned from the server side. */
c649114a 164 u32 status;
f0d79fe9
S
165
166 /* Data payload area */
167 union {
168 /*
169 * Structure used to forward SCSI commands from the
170 * client to the server.
171 */
172 struct vmscsi_request vm_srb;
173
174 /* Structure used to query channel properties. */
175 struct vmstorage_channel_properties storage_channel_properties;
176
177 /* Used during version negotiations. */
178 struct vmstorage_protocol_version version;
179 };
180} __packed;
181
f0d79fe9 182/*
09f0355f
S
183 * Packet Flags:
184 *
f0d79fe9
S
185 * This flag indicates that the server should send back a completion for this
186 * packet.
187 */
09f0355f 188
f0d79fe9
S
189#define REQUEST_COMPLETION_FLAG 0x1
190
f0d79fe9
S
191/* Matches Windows-end */
192enum storvsc_request_type {
c649114a 193 WRITE_TYPE = 0,
f0d79fe9
S
194 READ_TYPE,
195 UNKNOWN_TYPE,
196};
197
16046320
S
198/*
199 * SRB status codes and masks; a subset of the codes used here.
200 */
201
202#define SRB_STATUS_AUTOSENSE_VALID 0x80
203#define SRB_STATUS_INVALID_LUN 0x20
204#define SRB_STATUS_SUCCESS 0x01
6781209e 205#define SRB_STATUS_ABORTED 0x02
16046320
S
206#define SRB_STATUS_ERROR 0x04
207
af9584b8
S
208/*
209 * This is the end of Protocol specific defines.
210 */
211
212
213/*
214 * We setup a mempool to allocate request structures for this driver
215 * on a per-lun basis. The following define specifies the number of
216 * elements in the pool.
217 */
218
219#define STORVSC_MIN_BUF_NR 64
220static int storvsc_ringbuffer_size = (20 * PAGE_SIZE);
221
222module_param(storvsc_ringbuffer_size, int, S_IRUGO);
223MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");
224
225#define STORVSC_MAX_IO_REQUESTS 128
226
227/*
228 * In Hyper-V, each port/path/target maps to 1 scsi host adapter. In
229 * reality, the path/target is not used (ie always set to 0) so our
230 * scsi host adapter essentially has 1 bus with 1 target that contains
231 * up to 256 luns.
232 */
233#define STORVSC_MAX_LUNS_PER_TARGET 64
234#define STORVSC_MAX_TARGETS 1
235#define STORVSC_MAX_CHANNELS 1
236
237
16046320 238
61eaffc9
S
239struct storvsc_cmd_request {
240 struct list_head entry;
241 struct scsi_cmnd *cmd;
242
243 unsigned int bounce_sgl_count;
244 struct scatterlist *bounce_sgl;
f0d79fe9 245
f0d79fe9
S
246 struct hv_device *device;
247
248 /* Synchronize the request/response if needed */
249 struct completion wait_event;
250
251 unsigned char *sense_buffer;
f0d79fe9 252 struct hv_multipage_buffer data_buffer;
f0d79fe9
S
253 struct vstor_packet vstor_packet;
254};
255
256
f0d79fe9
S
257/* A storvsc device is a device object that contains a vmbus channel */
258struct storvsc_device {
259 struct hv_device *device;
260
261 bool destroy;
262 bool drain_notify;
263 atomic_t num_outstanding_req;
cd654ea1 264 struct Scsi_Host *host;
f0d79fe9
S
265
266 wait_queue_head_t waiting_to_drain;
267
268 /*
269 * Each unique Port/Path/Target represents 1 channel ie scsi
270 * controller. In reality, the pathid, targetid is always 0
271 * and the port is set by us
272 */
273 unsigned int port_number;
274 unsigned char path_id;
275 unsigned char target_id;
276
277 /* Used for vsc/vsp channel reset process */
61eaffc9
S
278 struct storvsc_cmd_request init_request;
279 struct storvsc_cmd_request reset_request;
f0d79fe9
S
280};
281
ce3e301c 282struct stor_mem_pools {
c1b3d067 283 struct kmem_cache *request_pool;
4e03e697 284 mempool_t *request_mempool;
ce3e301c
S
285};
286
287struct hv_host_device {
288 struct hv_device *dev;
c1b3d067
S
289 unsigned int port;
290 unsigned char path;
291 unsigned char target;
292};
293
12675799
S
294struct storvsc_scan_work {
295 struct work_struct work;
296 struct Scsi_Host *host;
297 uint lun;
298};
299
6781209e
S
300static void storvsc_device_scan(struct work_struct *work)
301{
302 struct storvsc_scan_work *wrk;
303 uint lun;
304 struct scsi_device *sdev;
305
306 wrk = container_of(work, struct storvsc_scan_work, work);
307 lun = wrk->lun;
308
309 sdev = scsi_device_lookup(wrk->host, 0, 0, lun);
310 if (!sdev)
311 goto done;
312 scsi_rescan_device(&sdev->sdev_gendev);
313 scsi_device_put(sdev);
314
315done:
316 kfree(wrk);
317}
318
12675799
S
319static void storvsc_bus_scan(struct work_struct *work)
320{
321 struct storvsc_scan_work *wrk;
322 int id, order_id;
323
324 wrk = container_of(work, struct storvsc_scan_work, work);
325 for (id = 0; id < wrk->host->max_id; ++id) {
326 if (wrk->host->reverse_ordering)
327 order_id = wrk->host->max_id - id - 1;
328 else
329 order_id = id;
330
331 scsi_scan_target(&wrk->host->shost_gendev, 0,
332 order_id, SCAN_WILD_CARD, 1);
333 }
334 kfree(wrk);
335}
336
b4017319
S
337static void storvsc_remove_lun(struct work_struct *work)
338{
339 struct storvsc_scan_work *wrk;
340 struct scsi_device *sdev;
341
342 wrk = container_of(work, struct storvsc_scan_work, work);
343 if (!scsi_host_get(wrk->host))
344 goto done;
345
346 sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun);
347
348 if (sdev) {
349 scsi_remove_device(sdev);
350 scsi_device_put(sdev);
351 }
352 scsi_host_put(wrk->host);
353
354done:
355 kfree(wrk);
356}
357
af9584b8
S
358/*
359 * Major/minor macros. Minor version is in LSB, meaning that earlier flat
360 * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1).
361 */
362
363static inline u16 storvsc_get_version(u8 major, u8 minor)
364{
365 u16 version;
366
367 version = ((major << 8) | minor);
368 return version;
369}
370
a8c18c57
S
371/*
372 * We can get incoming messages from the host that are not in response to
373 * messages that we have sent out. An example of this would be messages
374 * received by the guest to notify dynamic addition/removal of LUNs. To
375 * deal with potential race conditions where the driver may be in the
376 * midst of being unloaded when we might receive an unsolicited message
377 * from the host, we have implemented a mechanism to gurantee sequential
378 * consistency:
379 *
380 * 1) Once the device is marked as being destroyed, we will fail all
381 * outgoing messages.
382 * 2) We permit incoming messages when the device is being destroyed,
383 * only to properly account for messages already sent out.
384 */
385
f0d79fe9
S
386static inline struct storvsc_device *get_out_stor_device(
387 struct hv_device *device)
388{
389 struct storvsc_device *stor_device;
390
cd654ea1 391 stor_device = hv_get_drvdata(device);
f0d79fe9
S
392
393 if (stor_device && stor_device->destroy)
394 stor_device = NULL;
395
396 return stor_device;
397}
398
399
400static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
401{
402 dev->drain_notify = true;
403 wait_event(dev->waiting_to_drain,
404 atomic_read(&dev->num_outstanding_req) == 0);
405 dev->drain_notify = false;
406}
bef4a34a 407
8dcf37d4
S
408static inline struct storvsc_device *get_in_stor_device(
409 struct hv_device *device)
410{
411 struct storvsc_device *stor_device;
8dcf37d4 412
cd654ea1 413 stor_device = hv_get_drvdata(device);
8dcf37d4
S
414
415 if (!stor_device)
416 goto get_in_err;
417
418 /*
419 * If the device is being destroyed; allow incoming
420 * traffic only to cleanup outstanding requests.
421 */
422
423 if (stor_device->destroy &&
424 (atomic_read(&stor_device->num_outstanding_req) == 0))
425 stor_device = NULL;
426
427get_in_err:
8dcf37d4
S
428 return stor_device;
429
430}
431
2707388c
S
432static void destroy_bounce_buffer(struct scatterlist *sgl,
433 unsigned int sg_count)
434{
435 int i;
436 struct page *page_buf;
437
438 for (i = 0; i < sg_count; i++) {
439 page_buf = sg_page((&sgl[i]));
440 if (page_buf != NULL)
441 __free_page(page_buf);
442 }
443
444 kfree(sgl);
445}
446
447static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count)
448{
449 int i;
450
451 /* No need to check */
452 if (sg_count < 2)
453 return -1;
454
455 /* We have at least 2 sg entries */
456 for (i = 0; i < sg_count; i++) {
457 if (i == 0) {
458 /* make sure 1st one does not have hole */
459 if (sgl[i].offset + sgl[i].length != PAGE_SIZE)
460 return i;
461 } else if (i == sg_count - 1) {
462 /* make sure last one does not have hole */
463 if (sgl[i].offset != 0)
464 return i;
465 } else {
466 /* make sure no hole in the middle */
467 if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0)
468 return i;
469 }
470 }
471 return -1;
472}
473
474static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl,
475 unsigned int sg_count,
476 unsigned int len,
477 int write)
478{
479 int i;
480 int num_pages;
481 struct scatterlist *bounce_sgl;
482 struct page *page_buf;
483 unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE);
484
485 num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT;
486
487 bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC);
488 if (!bounce_sgl)
489 return NULL;
490
9d2696e6 491 sg_init_table(bounce_sgl, num_pages);
2707388c
S
492 for (i = 0; i < num_pages; i++) {
493 page_buf = alloc_page(GFP_ATOMIC);
494 if (!page_buf)
495 goto cleanup;
496 sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0);
497 }
498
499 return bounce_sgl;
500
501cleanup:
502 destroy_bounce_buffer(bounce_sgl, num_pages);
503 return NULL;
504}
505
9f393834
LT
506/* Disgusting wrapper functions */
507static inline unsigned long sg_kmap_atomic(struct scatterlist *sgl, int idx)
508{
509 void *addr = kmap_atomic(sg_page(sgl + idx));
510 return (unsigned long)addr;
511}
8dcf37d4 512
9f393834
LT
513static inline void sg_kunmap_atomic(unsigned long addr)
514{
515 kunmap_atomic((void *)addr);
516}
8dcf37d4 517
8dcf37d4 518
2707388c
S
519/* Assume the original sgl has enough room */
520static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl,
521 struct scatterlist *bounce_sgl,
522 unsigned int orig_sgl_count,
523 unsigned int bounce_sgl_count)
524{
525 int i;
526 int j = 0;
527 unsigned long src, dest;
528 unsigned int srclen, destlen, copylen;
529 unsigned int total_copied = 0;
530 unsigned long bounce_addr = 0;
531 unsigned long dest_addr = 0;
532 unsigned long flags;
533
534 local_irq_save(flags);
535
536 for (i = 0; i < orig_sgl_count; i++) {
9f393834 537 dest_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset;
2707388c
S
538 dest = dest_addr;
539 destlen = orig_sgl[i].length;
540
541 if (bounce_addr == 0)
9f393834 542 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
2707388c
S
543
544 while (destlen) {
545 src = bounce_addr + bounce_sgl[j].offset;
546 srclen = bounce_sgl[j].length - bounce_sgl[j].offset;
547
548 copylen = min(srclen, destlen);
549 memcpy((void *)dest, (void *)src, copylen);
550
551 total_copied += copylen;
552 bounce_sgl[j].offset += copylen;
553 destlen -= copylen;
554 dest += copylen;
555
556 if (bounce_sgl[j].offset == bounce_sgl[j].length) {
557 /* full */
9f393834 558 sg_kunmap_atomic(bounce_addr);
2707388c
S
559 j++;
560
561 /*
562 * It is possible that the number of elements
563 * in the bounce buffer may not be equal to
564 * the number of elements in the original
565 * scatter list. Handle this correctly.
566 */
567
568 if (j == bounce_sgl_count) {
569 /*
570 * We are done; cleanup and return.
571 */
9f393834 572 sg_kunmap_atomic(dest_addr - orig_sgl[i].offset);
2707388c
S
573 local_irq_restore(flags);
574 return total_copied;
575 }
576
577 /* if we need to use another bounce buffer */
578 if (destlen || i != orig_sgl_count - 1)
9f393834 579 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
2707388c
S
580 } else if (destlen == 0 && i == orig_sgl_count - 1) {
581 /* unmap the last bounce that is < PAGE_SIZE */
9f393834 582 sg_kunmap_atomic(bounce_addr);
2707388c
S
583 }
584 }
585
9f393834 586 sg_kunmap_atomic(dest_addr - orig_sgl[i].offset);
2707388c
S
587 }
588
589 local_irq_restore(flags);
590
591 return total_copied;
592}
593
594/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */
595static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl,
596 struct scatterlist *bounce_sgl,
597 unsigned int orig_sgl_count)
598{
599 int i;
600 int j = 0;
601 unsigned long src, dest;
602 unsigned int srclen, destlen, copylen;
603 unsigned int total_copied = 0;
604 unsigned long bounce_addr = 0;
605 unsigned long src_addr = 0;
606 unsigned long flags;
607
608 local_irq_save(flags);
609
610 for (i = 0; i < orig_sgl_count; i++) {
9f393834 611 src_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset;
2707388c
S
612 src = src_addr;
613 srclen = orig_sgl[i].length;
614
615 if (bounce_addr == 0)
9f393834 616 bounce_addr = sg_kmap_atomic(bounce_sgl,j);
2707388c
S
617
618 while (srclen) {
619 /* assume bounce offset always == 0 */
620 dest = bounce_addr + bounce_sgl[j].length;
621 destlen = PAGE_SIZE - bounce_sgl[j].length;
622
623 copylen = min(srclen, destlen);
624 memcpy((void *)dest, (void *)src, copylen);
625
626 total_copied += copylen;
627 bounce_sgl[j].length += copylen;
628 srclen -= copylen;
629 src += copylen;
630
631 if (bounce_sgl[j].length == PAGE_SIZE) {
632 /* full..move to next entry */
9f393834 633 sg_kunmap_atomic(bounce_addr);
7c906f06 634 bounce_addr = 0;
2707388c 635 j++;
7c906f06 636 }
2707388c 637
7c906f06
S
638 /* if we need to use another bounce buffer */
639 if (srclen && bounce_addr == 0)
640 bounce_addr = sg_kmap_atomic(bounce_sgl, j);
2707388c 641
2707388c
S
642 }
643
9f393834 644 sg_kunmap_atomic(src_addr - orig_sgl[i].offset);
2707388c
S
645 }
646
7c906f06
S
647 if (bounce_addr)
648 sg_kunmap_atomic(bounce_addr);
649
2707388c
S
650 local_irq_restore(flags);
651
652 return total_copied;
653}
654
8dcf37d4
S
655static int storvsc_channel_init(struct hv_device *device)
656{
657 struct storvsc_device *stor_device;
61eaffc9 658 struct storvsc_cmd_request *request;
8dcf37d4
S
659 struct vstor_packet *vstor_packet;
660 int ret, t;
661
662 stor_device = get_out_stor_device(device);
663 if (!stor_device)
664 return -ENODEV;
665
666 request = &stor_device->init_request;
667 vstor_packet = &request->vstor_packet;
668
669 /*
670 * Now, initiate the vsc/vsp initialization protocol on the open
671 * channel
672 */
61eaffc9 673 memset(request, 0, sizeof(struct storvsc_cmd_request));
8dcf37d4
S
674 init_completion(&request->wait_event);
675 vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
676 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
677
678 ret = vmbus_sendpacket(device->channel, vstor_packet,
679 sizeof(struct vstor_packet),
680 (unsigned long)request,
681 VM_PKT_DATA_INBAND,
682 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
683 if (ret != 0)
684 goto cleanup;
685
686 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
687 if (t == 0) {
688 ret = -ETIMEDOUT;
689 goto cleanup;
690 }
691
692 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
693 vstor_packet->status != 0)
694 goto cleanup;
695
696
697 /* reuse the packet for version range supported */
698 memset(vstor_packet, 0, sizeof(struct vstor_packet));
699 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
700 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
701
85904a5e
S
702 vstor_packet->version.major_minor =
703 storvsc_get_version(VMSTOR_CURRENT_MAJOR, VMSTOR_CURRENT_MINOR);
704
705 /*
706 * The revision number is only used in Windows; set it to 0.
707 */
c649114a 708 vstor_packet->version.revision = 0;
8dcf37d4
S
709
710 ret = vmbus_sendpacket(device->channel, vstor_packet,
711 sizeof(struct vstor_packet),
712 (unsigned long)request,
713 VM_PKT_DATA_INBAND,
714 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
715 if (ret != 0)
716 goto cleanup;
717
718 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
719 if (t == 0) {
720 ret = -ETIMEDOUT;
721 goto cleanup;
722 }
723
724 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
725 vstor_packet->status != 0)
726 goto cleanup;
727
728
729 memset(vstor_packet, 0, sizeof(struct vstor_packet));
730 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
731 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
732 vstor_packet->storage_channel_properties.port_number =
733 stor_device->port_number;
734
735 ret = vmbus_sendpacket(device->channel, vstor_packet,
736 sizeof(struct vstor_packet),
737 (unsigned long)request,
738 VM_PKT_DATA_INBAND,
739 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
740
741 if (ret != 0)
742 goto cleanup;
743
744 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
745 if (t == 0) {
746 ret = -ETIMEDOUT;
747 goto cleanup;
748 }
749
750 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
751 vstor_packet->status != 0)
752 goto cleanup;
753
754 stor_device->path_id = vstor_packet->storage_channel_properties.path_id;
755 stor_device->target_id
756 = vstor_packet->storage_channel_properties.target_id;
757
758 memset(vstor_packet, 0, sizeof(struct vstor_packet));
759 vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
760 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
761
762 ret = vmbus_sendpacket(device->channel, vstor_packet,
763 sizeof(struct vstor_packet),
764 (unsigned long)request,
765 VM_PKT_DATA_INBAND,
766 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
767
768 if (ret != 0)
769 goto cleanup;
770
771 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
772 if (t == 0) {
773 ret = -ETIMEDOUT;
774 goto cleanup;
775 }
776
777 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
778 vstor_packet->status != 0)
779 goto cleanup;
780
781
782cleanup:
783 return ret;
784}
785
c50bd448
S
786static void storvsc_handle_error(struct vmscsi_request *vm_srb,
787 struct scsi_cmnd *scmnd,
788 struct Scsi_Host *host,
789 u8 asc, u8 ascq)
790{
791 struct storvsc_scan_work *wrk;
792 void (*process_err_fn)(struct work_struct *work);
793 bool do_work = false;
794
795 switch (vm_srb->srb_status) {
796 case SRB_STATUS_ERROR:
d9b6a466
LL
797 /*
798 * Let upper layer deal with error when
799 * sense message is present.
800 */
801
802 if (vm_srb->srb_status & SRB_STATUS_AUTOSENSE_VALID)
803 break;
c50bd448
S
804 /*
805 * If there is an error; offline the device since all
806 * error recovery strategies would have already been
807 * deployed on the host side. However, if the command
808 * were a pass-through command deal with it appropriately.
809 */
810 switch (scmnd->cmnd[0]) {
811 case ATA_16:
812 case ATA_12:
813 set_host_byte(scmnd, DID_PASSTHROUGH);
814 break;
8ce6d81a
S
815 /*
816 * On Some Windows hosts TEST_UNIT_READY command can return
817 * SRB_STATUS_ERROR, let the upper level code deal with it
818 * based on the sense information.
819 */
820 case TEST_UNIT_READY:
821 break;
c50bd448
S
822 default:
823 set_host_byte(scmnd, DID_TARGET_FAILURE);
824 }
825 break;
826 case SRB_STATUS_INVALID_LUN:
827 do_work = true;
828 process_err_fn = storvsc_remove_lun;
829 break;
6781209e
S
830 case (SRB_STATUS_ABORTED | SRB_STATUS_AUTOSENSE_VALID):
831 if ((asc == 0x2a) && (ascq == 0x9)) {
832 do_work = true;
833 process_err_fn = storvsc_device_scan;
834 /*
835 * Retry the I/O that trigerred this.
836 */
837 set_host_byte(scmnd, DID_REQUEUE);
838 }
839 break;
c50bd448 840 }
6781209e 841
c50bd448
S
842 if (!do_work)
843 return;
844
845 /*
846 * We need to schedule work to process this error; schedule it.
847 */
848 wrk = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
849 if (!wrk) {
850 set_host_byte(scmnd, DID_TARGET_FAILURE);
851 return;
852 }
853
854 wrk->host = host;
855 wrk->lun = vm_srb->lun;
856 INIT_WORK(&wrk->work, process_err_fn);
857 schedule_work(&wrk->work);
858}
859
2707388c 860
61eaffc9 861static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request)
8dcf37d4 862{
2707388c
S
863 struct scsi_cmnd *scmnd = cmd_request->cmd;
864 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
865 void (*scsi_done_fn)(struct scsi_cmnd *);
866 struct scsi_sense_hdr sense_hdr;
867 struct vmscsi_request *vm_srb;
2707388c 868 struct stor_mem_pools *memp = scmnd->device->hostdata;
c50bd448
S
869 struct Scsi_Host *host;
870 struct storvsc_device *stor_dev;
871 struct hv_device *dev = host_dev->dev;
872
873 stor_dev = get_in_stor_device(dev);
874 host = stor_dev->host;
8dcf37d4 875
61eaffc9 876 vm_srb = &cmd_request->vstor_packet.vm_srb;
2707388c
S
877 if (cmd_request->bounce_sgl_count) {
878 if (vm_srb->data_in == READ_TYPE)
879 copy_from_bounce_buffer(scsi_sglist(scmnd),
880 cmd_request->bounce_sgl,
881 scsi_sg_count(scmnd),
882 cmd_request->bounce_sgl_count);
883 destroy_bounce_buffer(cmd_request->bounce_sgl,
884 cmd_request->bounce_sgl_count);
885 }
8dcf37d4 886
42e22cac
S
887 scmnd->result = vm_srb->scsi_status;
888
2707388c
S
889 if (scmnd->result) {
890 if (scsi_normalize_sense(scmnd->sense_buffer,
891 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
892 scsi_print_sense_hdr("storvsc", &sense_hdr);
893 }
894
c50bd448
S
895 if (vm_srb->srb_status != SRB_STATUS_SUCCESS)
896 storvsc_handle_error(vm_srb, scmnd, host, sense_hdr.asc,
897 sense_hdr.ascq);
898
2707388c 899 scsi_set_resid(scmnd,
61eaffc9 900 cmd_request->data_buffer.len -
2707388c
S
901 vm_srb->data_transfer_length);
902
903 scsi_done_fn = scmnd->scsi_done;
904
905 scmnd->host_scribble = NULL;
906 scmnd->scsi_done = NULL;
907
908 scsi_done_fn(scmnd);
909
910 mempool_free(cmd_request, memp->request_mempool);
911}
912
913static void storvsc_on_io_completion(struct hv_device *device,
914 struct vstor_packet *vstor_packet,
61eaffc9 915 struct storvsc_cmd_request *request)
2707388c
S
916{
917 struct storvsc_device *stor_device;
918 struct vstor_packet *stor_pkt;
919
920 stor_device = hv_get_drvdata(device);
921 stor_pkt = &request->vstor_packet;
922
923 /*
924 * The current SCSI handling on the host side does
925 * not correctly handle:
926 * INQUIRY command with page code parameter set to 0x80
927 * MODE_SENSE command with cmd[2] == 0x1c
928 *
929 * Setup srb and scsi status so this won't be fatal.
930 * We do this so we can distinguish truly fatal failues
4ed51a21
S
931 * (srb status == 0x4) and off-line the device in that case.
932 */
933
934 if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
a8c18c57 935 (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
4ed51a21 936 vstor_packet->vm_srb.scsi_status = 0;
16046320 937 vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS;
4ed51a21
S
938 }
939
8dcf37d4
S
940
941 /* Copy over the status...etc */
942 stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
943 stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
944 stor_pkt->vm_srb.sense_info_length =
945 vstor_packet->vm_srb.sense_info_length;
946
947 if (vstor_packet->vm_srb.scsi_status != 0 ||
16046320 948 vstor_packet->vm_srb.srb_status != SRB_STATUS_SUCCESS){
d181daa0
GKH
949 dev_warn(&device->device,
950 "cmd 0x%x scsi status 0x%x srb status 0x%x\n",
951 stor_pkt->vm_srb.cdb[0],
952 vstor_packet->vm_srb.scsi_status,
953 vstor_packet->vm_srb.srb_status);
8dcf37d4
S
954 }
955
956 if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
957 /* CHECK_CONDITION */
16046320
S
958 if (vstor_packet->vm_srb.srb_status &
959 SRB_STATUS_AUTOSENSE_VALID) {
8dcf37d4 960 /* autosense data available */
d181daa0 961 dev_warn(&device->device,
41098f8f
S
962 "stor pkt %p autosense data valid - len %d\n",
963 request,
964 vstor_packet->vm_srb.sense_info_length);
8dcf37d4
S
965
966 memcpy(request->sense_buffer,
967 vstor_packet->vm_srb.sense_data,
968 vstor_packet->vm_srb.sense_info_length);
969
970 }
971 }
972
973 stor_pkt->vm_srb.data_transfer_length =
974 vstor_packet->vm_srb.data_transfer_length;
975
2707388c 976 storvsc_command_completion(request);
8dcf37d4
S
977
978 if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
979 stor_device->drain_notify)
980 wake_up(&stor_device->waiting_to_drain);
981
982
983}
984
985static void storvsc_on_receive(struct hv_device *device,
986 struct vstor_packet *vstor_packet,
61eaffc9 987 struct storvsc_cmd_request *request)
8dcf37d4 988{
12675799
S
989 struct storvsc_scan_work *work;
990 struct storvsc_device *stor_device;
991
8dcf37d4
S
992 switch (vstor_packet->operation) {
993 case VSTOR_OPERATION_COMPLETE_IO:
994 storvsc_on_io_completion(device, vstor_packet, request);
995 break;
12675799 996
8dcf37d4 997 case VSTOR_OPERATION_REMOVE_DEVICE:
12675799
S
998 case VSTOR_OPERATION_ENUMERATE_BUS:
999 stor_device = get_in_stor_device(device);
1000 work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
1001 if (!work)
1002 return;
1003
1004 INIT_WORK(&work->work, storvsc_bus_scan);
1005 work->host = stor_device->host;
1006 schedule_work(&work->work);
1007 break;
8dcf37d4
S
1008
1009 default:
1010 break;
1011 }
1012}
1013
1014static void storvsc_on_channel_callback(void *context)
1015{
1016 struct hv_device *device = (struct hv_device *)context;
1017 struct storvsc_device *stor_device;
1018 u32 bytes_recvd;
1019 u64 request_id;
1020 unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)];
61eaffc9 1021 struct storvsc_cmd_request *request;
8dcf37d4
S
1022 int ret;
1023
1024
1025 stor_device = get_in_stor_device(device);
1026 if (!stor_device)
1027 return;
1028
1029 do {
1030 ret = vmbus_recvpacket(device->channel, packet,
1031 ALIGN(sizeof(struct vstor_packet), 8),
1032 &bytes_recvd, &request_id);
1033 if (ret == 0 && bytes_recvd > 0) {
1034
61eaffc9 1035 request = (struct storvsc_cmd_request *)
8dcf37d4
S
1036 (unsigned long)request_id;
1037
1038 if ((request == &stor_device->init_request) ||
1039 (request == &stor_device->reset_request)) {
1040
1041 memcpy(&request->vstor_packet, packet,
1042 sizeof(struct vstor_packet));
1043 complete(&request->wait_event);
1044 } else {
1045 storvsc_on_receive(device,
1046 (struct vstor_packet *)packet,
1047 request);
1048 }
1049 } else {
1050 break;
1051 }
1052 } while (1);
1053
1054 return;
1055}
1056
1057static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
1058{
1059 struct vmstorage_channel_properties props;
1060 int ret;
1061
1062 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
1063
8dcf37d4
S
1064 ret = vmbus_open(device->channel,
1065 ring_size,
1066 ring_size,
1067 (void *)&props,
1068 sizeof(struct vmstorage_channel_properties),
1069 storvsc_on_channel_callback, device);
1070
1071 if (ret != 0)
1072 return ret;
1073
1074 ret = storvsc_channel_init(device);
1075
1076 return ret;
1077}
1078
c1b3d067 1079static int storvsc_dev_remove(struct hv_device *device)
8dcf37d4
S
1080{
1081 struct storvsc_device *stor_device;
1082 unsigned long flags;
1083
cd654ea1 1084 stor_device = hv_get_drvdata(device);
8dcf37d4
S
1085
1086 spin_lock_irqsave(&device->channel->inbound_lock, flags);
1087 stor_device->destroy = true;
1088 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1089
1090 /*
1091 * At this point, all outbound traffic should be disable. We
1092 * only allow inbound traffic (responses) to proceed so that
1093 * outstanding requests can be completed.
1094 */
1095
1096 storvsc_wait_to_drain(stor_device);
1097
1098 /*
1099 * Since we have already drained, we don't need to busy wait
1100 * as was done in final_release_stor_device()
1101 * Note that we cannot set the ext pointer to NULL until
1102 * we have drained - to drain the outgoing packets, we need to
1103 * allow incoming packets.
1104 */
1105 spin_lock_irqsave(&device->channel->inbound_lock, flags);
cd654ea1 1106 hv_set_drvdata(device, NULL);
8dcf37d4
S
1107 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
1108
1109 /* Close the channel */
1110 vmbus_close(device->channel);
1111
1112 kfree(stor_device);
1113 return 0;
1114}
1115
c1b3d067 1116static int storvsc_do_io(struct hv_device *device,
61eaffc9 1117 struct storvsc_cmd_request *request)
8dcf37d4
S
1118{
1119 struct storvsc_device *stor_device;
1120 struct vstor_packet *vstor_packet;
1121 int ret = 0;
1122
1123 vstor_packet = &request->vstor_packet;
1124 stor_device = get_out_stor_device(device);
1125
1126 if (!stor_device)
1127 return -ENODEV;
1128
1129
1130 request->device = device;
1131
1132
1133 vstor_packet->flags |= REQUEST_COMPLETION_FLAG;
1134
1135 vstor_packet->vm_srb.length = sizeof(struct vmscsi_request);
1136
1137
6b2f9495 1138 vstor_packet->vm_srb.sense_info_length = STORVSC_SENSE_BUFFER_SIZE;
8dcf37d4
S
1139
1140
1141 vstor_packet->vm_srb.data_transfer_length =
1142 request->data_buffer.len;
1143
1144 vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;
1145
1146 if (request->data_buffer.len) {
1147 ret = vmbus_sendpacket_multipagebuffer(device->channel,
1148 &request->data_buffer,
1149 vstor_packet,
1150 sizeof(struct vstor_packet),
1151 (unsigned long)request);
1152 } else {
1153 ret = vmbus_sendpacket(device->channel, vstor_packet,
1154 sizeof(struct vstor_packet),
1155 (unsigned long)request,
1156 VM_PKT_DATA_INBAND,
1157 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1158 }
1159
1160 if (ret != 0)
1161 return ret;
1162
1163 atomic_inc(&stor_device->num_outstanding_req);
1164
1165 return ret;
1166}
1167
5b60acee
S
1168static int storvsc_device_alloc(struct scsi_device *sdevice)
1169{
ce3e301c
S
1170 struct stor_mem_pools *memp;
1171 int number = STORVSC_MIN_BUF_NR;
1172
1173 memp = kzalloc(sizeof(struct stor_mem_pools), GFP_KERNEL);
1174 if (!memp)
1175 return -ENOMEM;
1176
1177 memp->request_pool =
1178 kmem_cache_create(dev_name(&sdevice->sdev_dev),
1179 sizeof(struct storvsc_cmd_request), 0,
1180 SLAB_HWCACHE_ALIGN, NULL);
1181
1182 if (!memp->request_pool)
1183 goto err0;
1184
1185 memp->request_mempool = mempool_create(number, mempool_alloc_slab,
1186 mempool_free_slab,
1187 memp->request_pool);
1188
1189 if (!memp->request_mempool)
1190 goto err1;
1191
1192 sdevice->hostdata = memp;
1193
5b60acee 1194 return 0;
ce3e301c
S
1195
1196err1:
1197 kmem_cache_destroy(memp->request_pool);
1198
1199err0:
1200 kfree(memp);
1201 return -ENOMEM;
1202}
1203
1204static void storvsc_device_destroy(struct scsi_device *sdevice)
1205{
1206 struct stor_mem_pools *memp = sdevice->hostdata;
1207
535dba0e
AN
1208 if (!memp)
1209 return;
1210
ce3e301c
S
1211 mempool_destroy(memp->request_mempool);
1212 kmem_cache_destroy(memp->request_pool);
1213 kfree(memp);
1214 sdevice->hostdata = NULL;
5b60acee
S
1215}
1216
419f2d03
S
1217static int storvsc_device_configure(struct scsi_device *sdevice)
1218{
1219 scsi_adjust_queue_depth(sdevice, MSG_SIMPLE_TAG,
1220 STORVSC_MAX_IO_REQUESTS);
1221
419f2d03
S
1222 blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE);
1223
419f2d03 1224 blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);
419f2d03 1225
3e8f4f40
OH
1226 sdevice->no_write_same = 1;
1227
419f2d03
S
1228 return 0;
1229}
1230
62838ce2
S
1231static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
1232 sector_t capacity, int *info)
1233{
5326fd5c
S
1234 sector_t nsect = capacity;
1235 sector_t cylinders = nsect;
1236 int heads, sectors_pt;
62838ce2 1237
5326fd5c
S
1238 /*
1239 * We are making up these values; let us keep it simple.
1240 */
1241 heads = 0xff;
1242 sectors_pt = 0x3f; /* Sectors per track */
1243 sector_div(cylinders, heads * sectors_pt);
1244 if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
1245 cylinders = 0xffff;
62838ce2
S
1246
1247 info[0] = heads;
5326fd5c
S
1248 info[1] = sectors_pt;
1249 info[2] = (int)cylinders;
62838ce2 1250
62838ce2
S
1251 return 0;
1252}
aa3d789e 1253
4b270c8b 1254static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
aa3d789e 1255{
4b270c8b
S
1256 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
1257 struct hv_device *device = host_dev->dev;
1258
aa3d789e 1259 struct storvsc_device *stor_device;
61eaffc9 1260 struct storvsc_cmd_request *request;
aa3d789e
S
1261 struct vstor_packet *vstor_packet;
1262 int ret, t;
1263
aa3d789e 1264
1eaaddf9 1265 stor_device = get_out_stor_device(device);
aa3d789e 1266 if (!stor_device)
a00e8224 1267 return FAILED;
aa3d789e
S
1268
1269 request = &stor_device->reset_request;
1270 vstor_packet = &request->vstor_packet;
1271
1272 init_completion(&request->wait_event);
1273
1274 vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
1275 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1276 vstor_packet->vm_srb.path_id = stor_device->path_id;
1277
1278 ret = vmbus_sendpacket(device->channel, vstor_packet,
1279 sizeof(struct vstor_packet),
1280 (unsigned long)&stor_device->reset_request,
1281 VM_PKT_DATA_INBAND,
1282 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1283 if (ret != 0)
a00e8224 1284 return FAILED;
aa3d789e 1285
46d2eb6d 1286 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
a00e8224
S
1287 if (t == 0)
1288 return TIMEOUT_ERROR;
aa3d789e 1289
aa3d789e
S
1290
1291 /*
1292 * At this point, all outstanding requests in the adapter
1293 * should have been flushed out and return to us
5c1b10ab
S
1294 * There is a potential race here where the host may be in
1295 * the process of responding when we return from here.
1296 * Just wait for all in-transit packets to be accounted for
1297 * before we return from here.
aa3d789e 1298 */
5c1b10ab 1299 storvsc_wait_to_drain(stor_device);
aa3d789e 1300
a00e8224 1301 return SUCCESS;
aa3d789e
S
1302}
1303
7afc3ac1
S
1304/*
1305 * The host guarantees to respond to each command, although I/O latencies might
1306 * be unbounded on Azure. Reset the timer unconditionally to give the host a
1307 * chance to perform EH.
1308 */
1309static enum blk_eh_timer_return storvsc_eh_timed_out(struct scsi_cmnd *scmnd)
1310{
1311 return BLK_EH_RESET_TIMER;
1312}
1313
c77b63b6 1314static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd)
92ae4ebd
OH
1315{
1316 bool allowed = true;
1317 u8 scsi_op = scmnd->cmnd[0];
1318
1319 switch (scsi_op) {
3e8f4f40
OH
1320 /* the host does not handle WRITE_SAME, log accident usage */
1321 case WRITE_SAME:
c77b63b6
S
1322 /*
1323 * smartd sends this command and the host does not handle
1324 * this. So, don't send it.
1325 */
41098f8f 1326 case SET_WINDOW:
59e00e74 1327 scmnd->result = ILLEGAL_REQUEST << 16;
41098f8f
S
1328 allowed = false;
1329 break;
1330 default:
1331 break;
92ae4ebd
OH
1332 }
1333 return allowed;
1334}
c5b463ae 1335
bab445e1 1336static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
c5b463ae
S
1337{
1338 int ret;
bab445e1 1339 struct hv_host_device *host_dev = shost_priv(host);
c5b463ae 1340 struct hv_device *dev = host_dev->dev;
c5b463ae
S
1341 struct storvsc_cmd_request *cmd_request;
1342 unsigned int request_size = 0;
1343 int i;
1344 struct scatterlist *sgl;
1345 unsigned int sg_count = 0;
1346 struct vmscsi_request *vm_srb;
ce3e301c 1347 struct stor_mem_pools *memp = scmnd->device->hostdata;
c5b463ae 1348
c77b63b6 1349 if (!storvsc_scsi_cmd_ok(scmnd)) {
bab445e1 1350 scmnd->scsi_done(scmnd);
92ae4ebd
OH
1351 return 0;
1352 }
c5b463ae 1353
c5b463ae
S
1354 request_size = sizeof(struct storvsc_cmd_request);
1355
ce3e301c 1356 cmd_request = mempool_alloc(memp->request_mempool,
c5b463ae 1357 GFP_ATOMIC);
c77b63b6
S
1358
1359 /*
1360 * We might be invoked in an interrupt context; hence
1361 * mempool_alloc() can fail.
1362 */
bab445e1 1363 if (!cmd_request)
c5b463ae 1364 return SCSI_MLQUEUE_DEVICE_BUSY;
bab445e1 1365
4e03e697 1366 memset(cmd_request, 0, sizeof(struct storvsc_cmd_request));
c5b463ae
S
1367
1368 /* Setup the cmd request */
c5b463ae
S
1369 cmd_request->cmd = scmnd;
1370
1371 scmnd->host_scribble = (unsigned char *)cmd_request;
1372
61eaffc9 1373 vm_srb = &cmd_request->vstor_packet.vm_srb;
c5b463ae
S
1374
1375
1376 /* Build the SRB */
1377 switch (scmnd->sc_data_direction) {
1378 case DMA_TO_DEVICE:
1379 vm_srb->data_in = WRITE_TYPE;
1380 break;
1381 case DMA_FROM_DEVICE:
1382 vm_srb->data_in = READ_TYPE;
1383 break;
1384 default:
1385 vm_srb->data_in = UNKNOWN_TYPE;
1386 break;
1387 }
1388
c5b463ae 1389
c5b463ae
S
1390 vm_srb->port_number = host_dev->port;
1391 vm_srb->path_id = scmnd->device->channel;
1392 vm_srb->target_id = scmnd->device->id;
1393 vm_srb->lun = scmnd->device->lun;
1394
c5b463ae
S
1395 vm_srb->cdb_length = scmnd->cmd_len;
1396
1397 memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);
1398
61eaffc9 1399 cmd_request->sense_buffer = scmnd->sense_buffer;
c5b463ae
S
1400
1401
61eaffc9 1402 cmd_request->data_buffer.len = scsi_bufflen(scmnd);
c5b463ae
S
1403 if (scsi_sg_count(scmnd)) {
1404 sgl = (struct scatterlist *)scsi_sglist(scmnd);
1405 sg_count = scsi_sg_count(scmnd);
1406
1407 /* check if we need to bounce the sgl */
1408 if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) {
1409 cmd_request->bounce_sgl =
1410 create_bounce_buffer(sgl, scsi_sg_count(scmnd),
6e8087a4
S
1411 scsi_bufflen(scmnd),
1412 vm_srb->data_in);
c5b463ae 1413 if (!cmd_request->bounce_sgl) {
c77b63b6
S
1414 ret = SCSI_MLQUEUE_HOST_BUSY;
1415 goto queue_error;
c5b463ae
S
1416 }
1417
1418 cmd_request->bounce_sgl_count =
1419 ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
1420 PAGE_SHIFT;
1421
fa23b8c7
S
1422 if (vm_srb->data_in == WRITE_TYPE)
1423 copy_to_bounce_buffer(sgl,
1424 cmd_request->bounce_sgl,
1425 scsi_sg_count(scmnd));
c5b463ae
S
1426
1427 sgl = cmd_request->bounce_sgl;
1428 sg_count = cmd_request->bounce_sgl_count;
1429 }
1430
61eaffc9 1431 cmd_request->data_buffer.offset = sgl[0].offset;
c5b463ae
S
1432
1433 for (i = 0; i < sg_count; i++)
61eaffc9 1434 cmd_request->data_buffer.pfn_array[i] =
c5b463ae
S
1435 page_to_pfn(sg_page((&sgl[i])));
1436
1437 } else if (scsi_sglist(scmnd)) {
61eaffc9 1438 cmd_request->data_buffer.offset =
c5b463ae 1439 virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1);
61eaffc9 1440 cmd_request->data_buffer.pfn_array[0] =
c5b463ae
S
1441 virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT;
1442 }
1443
c5b463ae 1444 /* Invokes the vsc to start an IO */
61eaffc9 1445 ret = storvsc_do_io(dev, cmd_request);
636f0fd1 1446
d2598f01 1447 if (ret == -EAGAIN) {
c5b463ae
S
1448 /* no more space */
1449
14059bc8 1450 if (cmd_request->bounce_sgl_count)
c5b463ae 1451 destroy_bounce_buffer(cmd_request->bounce_sgl,
70691ec6 1452 cmd_request->bounce_sgl_count);
c5b463ae 1453
14059bc8
LL
1454 ret = SCSI_MLQUEUE_DEVICE_BUSY;
1455 goto queue_error;
c5b463ae
S
1456 }
1457
c77b63b6
S
1458 return 0;
1459
1460queue_error:
1461 mempool_free(cmd_request, memp->request_mempool);
1462 scmnd->host_scribble = NULL;
c5b463ae
S
1463 return ret;
1464}
1465
bef4a34a 1466static struct scsi_host_template scsi_driver = {
ff568d3a
GKH
1467 .module = THIS_MODULE,
1468 .name = "storvsc_host_t",
1469 .bios_param = storvsc_get_chs,
1470 .queuecommand = storvsc_queuecommand,
1471 .eh_host_reset_handler = storvsc_host_reset_handler,
7afc3ac1 1472 .eh_timed_out = storvsc_eh_timed_out,
ff568d3a 1473 .slave_alloc = storvsc_device_alloc,
ce3e301c 1474 .slave_destroy = storvsc_device_destroy,
ff568d3a
GKH
1475 .slave_configure = storvsc_device_configure,
1476 .cmd_per_lun = 1,
1477 /* 64 max_queue * 1 target */
0686e4f4 1478 .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS,
ff568d3a 1479 .this_id = -1,
454f18a9 1480 /* no use setting to 0 since ll_blk_rw reset it to 1 */
ff568d3a
GKH
1481 /* currently 32 */
1482 .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT,
039db52d 1483 .use_clustering = DISABLE_CLUSTERING,
454f18a9 1484 /* Make sure we dont get a sg segment crosses a page boundary */
ff568d3a 1485 .dma_boundary = PAGE_SIZE-1,
8562d028 1486 .no_write_same = 1,
bef4a34a
HJ
1487};
1488
ef52a81b
S
1489enum {
1490 SCSI_GUID,
1491 IDE_GUID,
1492};
1493
d847b5fe 1494static const struct hv_vmbus_device_id id_table[] = {
c45cf2d4 1495 /* SCSI guid */
35c3bc20
S
1496 { HV_SCSI_GUID,
1497 .driver_data = SCSI_GUID
1498 },
21e37742 1499 /* IDE guid */
35c3bc20
S
1500 { HV_IDE_GUID,
1501 .driver_data = IDE_GUID
1502 },
c45cf2d4 1503 { },
d847b5fe 1504};
bef4a34a 1505
d847b5fe 1506MODULE_DEVICE_TABLE(vmbus, id_table);
bd1f5d6a 1507
84946899
S
1508static int storvsc_probe(struct hv_device *device,
1509 const struct hv_vmbus_device_id *dev_id)
bef4a34a 1510{
ff568d3a 1511 int ret;
bef4a34a 1512 struct Scsi_Host *host;
795b613d 1513 struct hv_host_device *host_dev;
ef52a81b 1514 bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
bd1f5d6a 1515 int target = 0;
6e4198ce 1516 struct storvsc_device *stor_device;
bd1f5d6a 1517
ff568d3a 1518 host = scsi_host_alloc(&scsi_driver,
972621c9 1519 sizeof(struct hv_host_device));
f8feed06 1520 if (!host)
bef4a34a 1521 return -ENOMEM;
bef4a34a 1522
7f33f30a 1523 host_dev = shost_priv(host);
795b613d 1524 memset(host_dev, 0, sizeof(struct hv_host_device));
bef4a34a 1525
795b613d 1526 host_dev->port = host->host_no;
97c15296 1527 host_dev->dev = device;
bef4a34a 1528
4e03e697 1529
a13d35ab 1530 stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
6e4198ce 1531 if (!stor_device) {
225ce6ea 1532 ret = -ENOMEM;
ce3e301c 1533 goto err_out0;
6e4198ce 1534 }
9efd21e1 1535
a13d35ab
S
1536 stor_device->destroy = false;
1537 init_waitqueue_head(&stor_device->waiting_to_drain);
1538 stor_device->device = device;
cd654ea1
S
1539 stor_device->host = host;
1540 hv_set_drvdata(device, stor_device);
a13d35ab 1541
6e4198ce
S
1542 stor_device->port_number = host->host_no;
1543 ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size);
225ce6ea 1544 if (ret)
ce3e301c 1545 goto err_out1;
bef4a34a 1546
6e4198ce
S
1547 host_dev->path = stor_device->path_id;
1548 host_dev->target = stor_device->target_id;
bef4a34a 1549
ff568d3a
GKH
1550 /* max # of devices per target */
1551 host->max_lun = STORVSC_MAX_LUNS_PER_TARGET;
1552 /* max # of targets per channel */
1553 host->max_id = STORVSC_MAX_TARGETS;
1554 /* max # of channels */
1555 host->max_channel = STORVSC_MAX_CHANNELS - 1;
cf55f4a8
MS
1556 /* max cmd length */
1557 host->max_cmd_len = STORVSC_MAX_CMD_LEN;
bef4a34a 1558
454f18a9 1559 /* Register the HBA and start the scsi bus scan */
9efd21e1 1560 ret = scsi_add_host(host, &device->device);
bd1f5d6a 1561 if (ret != 0)
ce3e301c 1562 goto err_out2;
bef4a34a 1563
bd1f5d6a
S
1564 if (!dev_is_ide) {
1565 scsi_scan_host(host);
59d22950
S
1566 } else {
1567 target = (device->dev_instance.b[5] << 8 |
1568 device->dev_instance.b[4]);
1569 ret = scsi_add_device(host, 0, target, 0);
1570 if (ret) {
1571 scsi_remove_host(host);
1572 goto err_out2;
1573 }
bef4a34a 1574 }
bd1f5d6a 1575 return 0;
bef4a34a 1576
ce3e301c 1577err_out2:
225ce6ea
S
1578 /*
1579 * Once we have connected with the host, we would need to
1580 * to invoke storvsc_dev_remove() to rollback this state and
1581 * this call also frees up the stor_device; hence the jump around
ce3e301c 1582 * err_out1 label.
225ce6ea 1583 */
bd1f5d6a 1584 storvsc_dev_remove(device);
ce3e301c 1585 goto err_out0;
225ce6ea
S
1586
1587err_out1:
ce3e301c 1588 kfree(stor_device);
225ce6ea
S
1589
1590err_out0:
bd1f5d6a 1591 scsi_host_put(host);
225ce6ea 1592 return ret;
bef4a34a
HJ
1593}
1594
ddcbf65e
S
1595static int storvsc_remove(struct hv_device *dev)
1596{
1597 struct storvsc_device *stor_device = hv_get_drvdata(dev);
1598 struct Scsi_Host *host = stor_device->host;
1599
1600 scsi_remove_host(host);
1601 storvsc_dev_remove(dev);
1602 scsi_host_put(host);
1603
1604 return 0;
1605}
1606
40bf63ed 1607static struct hv_driver storvsc_drv = {
fafb0efc 1608 .name = KBUILD_MODNAME,
d847b5fe 1609 .id_table = id_table,
40bf63ed
S
1610 .probe = storvsc_probe,
1611 .remove = storvsc_remove,
39ae6fae 1612};
7bd05b91 1613
d9bbae83 1614static int __init storvsc_drv_init(void)
f5c78872 1615{
01415ab3
S
1616 u32 max_outstanding_req_per_channel;
1617
1618 /*
1619 * Divide the ring buffer data size (which is 1 page less
1620 * than the ring buffer size since that page is reserved for
1621 * the ring buffer indices) by the max request size (which is
1622 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
1623 */
01415ab3 1624 max_outstanding_req_per_channel =
768fa219
GKH
1625 ((storvsc_ringbuffer_size - PAGE_SIZE) /
1626 ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
1627 sizeof(struct vstor_packet) + sizeof(u64),
1628 sizeof(u64)));
f5c78872 1629
01415ab3 1630 if (max_outstanding_req_per_channel <
f5c78872 1631 STORVSC_MAX_IO_REQUESTS)
b06efc19 1632 return -EINVAL;
f5c78872 1633
768fa219 1634 return vmbus_driver_register(&storvsc_drv);
f5c78872
S
1635}
1636
c63ba9e1 1637static void __exit storvsc_drv_exit(void)
f5c78872 1638{
768fa219 1639 vmbus_driver_unregister(&storvsc_drv);
f5c78872
S
1640}
1641
ff568d3a 1642MODULE_LICENSE("GPL");
26c14cc1 1643MODULE_VERSION(HV_DRV_VERSION);
3afc7cc3 1644MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
d9bbae83 1645module_init(storvsc_drv_init);
c63ba9e1 1646module_exit(storvsc_drv_exit);