blob: 979f25b33858992f742d2ea1d1d1c3824f7e9c64 [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. Srinivasanf0d79fe2011-08-27 11:31:24 -070045
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -080046#define STORVSC_MIN_BUF_NR 64
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -070047#define STORVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
48static int storvsc_ringbuffer_size = STORVSC_RING_BUFFER_SIZE;
49
50module_param(storvsc_ringbuffer_size, int, S_IRUGO);
51MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");
52
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080053/*
54 * To alert the user that structure sizes may be mismatched even though the
55 * protocol versions match.
56 */
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070057
58
59#define REVISION_STRING(REVISION_) #REVISION_
60#define FILL_VMSTOR_REVISION(RESULT_LVALUE_) \
61 do { \
62 char *revision_string \
63 = REVISION_STRING($Rev : 6 $) + 6; \
64 RESULT_LVALUE_ = 0; \
65 while (*revision_string >= '0' \
66 && *revision_string <= '9') { \
67 RESULT_LVALUE_ *= 10; \
68 RESULT_LVALUE_ += *revision_string - '0'; \
69 revision_string++; \
70 } \
71 } while (0)
72
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080073/*
74 * Major/minor macros. Minor version is in LSB, meaning that earlier flat
75 * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1).
76 */
77
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070078#define VMSTOR_PROTOCOL_MAJOR(VERSION_) (((VERSION_) >> 8) & 0xff)
79#define VMSTOR_PROTOCOL_MINOR(VERSION_) (((VERSION_)) & 0xff)
80#define VMSTOR_PROTOCOL_VERSION(MAJOR_, MINOR_) ((((MAJOR_) & 0xff) << 8) | \
81 (((MINOR_) & 0xff)))
82#define VMSTOR_INVALID_PROTOCOL_VERSION (-1)
83
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080084/*
85 * Version history:
86 * V1 Beta: 0.1
87 * V1 RC < 2008/1/31: 1.0
88 * V1 RC > 2008/1/31: 2.0
89 * Win7: 4.2
90 */
91
K. Y. Srinivasan2b9525f2011-11-08 09:01:48 -080092#define VMSTOR_PROTOCOL_VERSION_CURRENT VMSTOR_PROTOCOL_VERSION(4, 2)
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -070093
94
95
96
K. Y. Srinivasan09f03552012-01-12 12:37:54 -080097/*
98 * This will get replaced with the max transfer length that is possible on
99 * the host adapter.
100 * The max transfer length will be published when we offer a vmbus channel.
101 */
102
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700103#define MAX_TRANSFER_LENGTH 0x40000
104#define DEFAULT_PACKET_SIZE (sizeof(struct vmdata_gpa_direct) + \
105 sizeof(struct vstor_packet) + \
106 sizesizeof(u64) * (MAX_TRANSFER_LENGTH / PAGE_SIZE)))
107
108
109/* Packet structure describing virtual storage requests. */
110enum vstor_packet_operation {
111 VSTOR_OPERATION_COMPLETE_IO = 1,
112 VSTOR_OPERATION_REMOVE_DEVICE = 2,
113 VSTOR_OPERATION_EXECUTE_SRB = 3,
114 VSTOR_OPERATION_RESET_LUN = 4,
115 VSTOR_OPERATION_RESET_ADAPTER = 5,
116 VSTOR_OPERATION_RESET_BUS = 6,
117 VSTOR_OPERATION_BEGIN_INITIALIZATION = 7,
118 VSTOR_OPERATION_END_INITIALIZATION = 8,
119 VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9,
120 VSTOR_OPERATION_QUERY_PROPERTIES = 10,
K. Y. Srinivasan2b9525f2011-11-08 09:01:48 -0800121 VSTOR_OPERATION_ENUMERATE_BUS = 11,
122 VSTOR_OPERATION_MAXIMUM = 11
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700123};
124
125/*
126 * Platform neutral description of a scsi request -
127 * this remains the same across the write regardless of 32/64 bit
128 * note: it's patterned off the SCSI_PASS_THROUGH structure
129 */
130#define CDB16GENERIC_LENGTH 0x10
131
132#ifndef SENSE_BUFFER_SIZE
133#define SENSE_BUFFER_SIZE 0x12
134#endif
135
136#define MAX_DATA_BUF_LEN_WITH_PADDING 0x14
137
138struct vmscsi_request {
139 unsigned short length;
140 unsigned char srb_status;
141 unsigned char scsi_status;
142
143 unsigned char port_number;
144 unsigned char path_id;
145 unsigned char target_id;
146 unsigned char lun;
147
148 unsigned char cdb_length;
149 unsigned char sense_info_length;
150 unsigned char data_in;
151 unsigned char reserved;
152
153 unsigned int data_transfer_length;
154
155 union {
156 unsigned char cdb[CDB16GENERIC_LENGTH];
157 unsigned char sense_data[SENSE_BUFFER_SIZE];
158 unsigned char reserved_array[MAX_DATA_BUF_LEN_WITH_PADDING];
159 };
160} __attribute((packed));
161
162
163/*
164 * This structure is sent during the intialization phase to get the different
165 * properties of the channel.
166 */
167struct vmstorage_channel_properties {
168 unsigned short protocol_version;
169 unsigned char path_id;
170 unsigned char target_id;
171
172 /* Note: port number is only really known on the client side */
173 unsigned int port_number;
174 unsigned int flags;
175 unsigned int max_transfer_bytes;
176
177 /* This id is unique for each channel and will correspond with */
178 /* vendor specific data in the inquirydata */
179 unsigned long long unique_id;
180} __packed;
181
182/* This structure is sent during the storage protocol negotiations. */
183struct vmstorage_protocol_version {
184 /* Major (MSW) and minor (LSW) version numbers. */
185 unsigned short major_minor;
186
187 /*
188 * Revision number is auto-incremented whenever this file is changed
189 * (See FILL_VMSTOR_REVISION macro above). Mismatch does not
190 * definitely indicate incompatibility--but it does indicate mismatched
191 * builds.
192 */
193 unsigned short revision;
194} __packed;
195
196/* Channel Property Flags */
197#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1
198#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2
199
200struct vstor_packet {
201 /* Requested operation type */
202 enum vstor_packet_operation operation;
203
204 /* Flags - see below for values */
205 unsigned int flags;
206
207 /* Status of the request returned from the server side. */
208 unsigned int status;
209
210 /* Data payload area */
211 union {
212 /*
213 * Structure used to forward SCSI commands from the
214 * client to the server.
215 */
216 struct vmscsi_request vm_srb;
217
218 /* Structure used to query channel properties. */
219 struct vmstorage_channel_properties storage_channel_properties;
220
221 /* Used during version negotiations. */
222 struct vmstorage_protocol_version version;
223 };
224} __packed;
225
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700226/*
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800227 * Packet Flags:
228 *
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700229 * This flag indicates that the server should send back a completion for this
230 * packet.
231 */
K. Y. Srinivasan09f03552012-01-12 12:37:54 -0800232
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700233#define REQUEST_COMPLETION_FLAG 0x1
234
235/* This is the set of flags that the vsc can set in any packets it sends */
236#define VSC_LEGAL_FLAGS (REQUEST_COMPLETION_FLAG)
237
238
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700239
240#define STORVSC_MAX_IO_REQUESTS 128
241
242/*
243 * In Hyper-V, each port/path/target maps to 1 scsi host adapter. In
244 * reality, the path/target is not used (ie always set to 0) so our
245 * scsi host adapter essentially has 1 bus with 1 target that contains
246 * up to 256 luns.
247 */
248#define STORVSC_MAX_LUNS_PER_TARGET 64
249#define STORVSC_MAX_TARGETS 1
250#define STORVSC_MAX_CHANNELS 1
Mike Sterlingcf55f4a2011-09-06 16:10:55 -0700251#define STORVSC_MAX_CMD_LEN 16
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700252
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700253/* Matches Windows-end */
254enum storvsc_request_type {
255 WRITE_TYPE,
256 READ_TYPE,
257 UNKNOWN_TYPE,
258};
259
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800260/*
261 * SRB status codes and masks; a subset of the codes used here.
262 */
263
264#define SRB_STATUS_AUTOSENSE_VALID 0x80
265#define SRB_STATUS_INVALID_LUN 0x20
266#define SRB_STATUS_SUCCESS 0x01
267#define SRB_STATUS_ERROR 0x04
268
269
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700270
271struct hv_storvsc_request {
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700272 struct hv_device *device;
273
274 /* Synchronize the request/response if needed */
275 struct completion wait_event;
276
277 unsigned char *sense_buffer;
278 void *context;
279 void (*on_io_completion)(struct hv_storvsc_request *request);
280 struct hv_multipage_buffer data_buffer;
281
282 struct vstor_packet vstor_packet;
283};
284
285
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700286/* A storvsc device is a device object that contains a vmbus channel */
287struct storvsc_device {
288 struct hv_device *device;
289
290 bool destroy;
291 bool drain_notify;
292 atomic_t num_outstanding_req;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700293 struct Scsi_Host *host;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700294
295 wait_queue_head_t waiting_to_drain;
296
297 /*
298 * Each unique Port/Path/Target represents 1 channel ie scsi
299 * controller. In reality, the pathid, targetid is always 0
300 * and the port is set by us
301 */
302 unsigned int port_number;
303 unsigned char path_id;
304 unsigned char target_id;
305
306 /* Used for vsc/vsp channel reset process */
307 struct hv_storvsc_request init_request;
308 struct hv_storvsc_request reset_request;
309};
310
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800311struct stor_mem_pools {
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700312 struct kmem_cache *request_pool;
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -0800313 mempool_t *request_mempool;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800314};
315
316struct hv_host_device {
317 struct hv_device *dev;
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700318 unsigned int port;
319 unsigned char path;
320 unsigned char target;
321};
322
323struct storvsc_cmd_request {
324 struct list_head entry;
325 struct scsi_cmnd *cmd;
326
327 unsigned int bounce_sgl_count;
328 struct scatterlist *bounce_sgl;
329
330 struct hv_storvsc_request request;
331};
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700332
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800333struct storvsc_scan_work {
334 struct work_struct work;
335 struct Scsi_Host *host;
336 uint lun;
337};
338
339static void storvsc_bus_scan(struct work_struct *work)
340{
341 struct storvsc_scan_work *wrk;
342 int id, order_id;
343
344 wrk = container_of(work, struct storvsc_scan_work, work);
345 for (id = 0; id < wrk->host->max_id; ++id) {
346 if (wrk->host->reverse_ordering)
347 order_id = wrk->host->max_id - id - 1;
348 else
349 order_id = id;
350
351 scsi_scan_target(&wrk->host->shost_gendev, 0,
352 order_id, SCAN_WILD_CARD, 1);
353 }
354 kfree(wrk);
355}
356
K. Y. Srinivasanb4017312011-11-08 09:01:50 -0800357static void storvsc_remove_lun(struct work_struct *work)
358{
359 struct storvsc_scan_work *wrk;
360 struct scsi_device *sdev;
361
362 wrk = container_of(work, struct storvsc_scan_work, work);
363 if (!scsi_host_get(wrk->host))
364 goto done;
365
366 sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun);
367
368 if (sdev) {
369 scsi_remove_device(sdev);
370 scsi_device_put(sdev);
371 }
372 scsi_host_put(wrk->host);
373
374done:
375 kfree(wrk);
376}
377
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700378static inline struct storvsc_device *get_out_stor_device(
379 struct hv_device *device)
380{
381 struct storvsc_device *stor_device;
382
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700383 stor_device = hv_get_drvdata(device);
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700384
385 if (stor_device && stor_device->destroy)
386 stor_device = NULL;
387
388 return stor_device;
389}
390
391
392static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
393{
394 dev->drain_notify = true;
395 wait_event(dev->waiting_to_drain,
396 atomic_read(&dev->num_outstanding_req) == 0);
397 dev->drain_notify = false;
398}
Hank Janssenbef4a342009-07-13 16:01:31 -0700399
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700400static inline struct storvsc_device *get_in_stor_device(
401 struct hv_device *device)
402{
403 struct storvsc_device *stor_device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700404
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700405 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700406
407 if (!stor_device)
408 goto get_in_err;
409
410 /*
411 * If the device is being destroyed; allow incoming
412 * traffic only to cleanup outstanding requests.
413 */
414
415 if (stor_device->destroy &&
416 (atomic_read(&stor_device->num_outstanding_req) == 0))
417 stor_device = NULL;
418
419get_in_err:
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700420 return stor_device;
421
422}
423
424static int storvsc_channel_init(struct hv_device *device)
425{
426 struct storvsc_device *stor_device;
427 struct hv_storvsc_request *request;
428 struct vstor_packet *vstor_packet;
429 int ret, t;
430
431 stor_device = get_out_stor_device(device);
432 if (!stor_device)
433 return -ENODEV;
434
435 request = &stor_device->init_request;
436 vstor_packet = &request->vstor_packet;
437
438 /*
439 * Now, initiate the vsc/vsp initialization protocol on the open
440 * channel
441 */
442 memset(request, 0, sizeof(struct hv_storvsc_request));
443 init_completion(&request->wait_event);
444 vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
445 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
446
447 ret = vmbus_sendpacket(device->channel, vstor_packet,
448 sizeof(struct vstor_packet),
449 (unsigned long)request,
450 VM_PKT_DATA_INBAND,
451 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
452 if (ret != 0)
453 goto cleanup;
454
455 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
456 if (t == 0) {
457 ret = -ETIMEDOUT;
458 goto cleanup;
459 }
460
461 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
462 vstor_packet->status != 0)
463 goto cleanup;
464
465
466 /* reuse the packet for version range supported */
467 memset(vstor_packet, 0, sizeof(struct vstor_packet));
468 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
469 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
470
471 vstor_packet->version.major_minor = VMSTOR_PROTOCOL_VERSION_CURRENT;
472 FILL_VMSTOR_REVISION(vstor_packet->version.revision);
473
474 ret = vmbus_sendpacket(device->channel, vstor_packet,
475 sizeof(struct vstor_packet),
476 (unsigned long)request,
477 VM_PKT_DATA_INBAND,
478 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
479 if (ret != 0)
480 goto cleanup;
481
482 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
483 if (t == 0) {
484 ret = -ETIMEDOUT;
485 goto cleanup;
486 }
487
488 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
489 vstor_packet->status != 0)
490 goto cleanup;
491
492
493 memset(vstor_packet, 0, sizeof(struct vstor_packet));
494 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
495 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
496 vstor_packet->storage_channel_properties.port_number =
497 stor_device->port_number;
498
499 ret = vmbus_sendpacket(device->channel, vstor_packet,
500 sizeof(struct vstor_packet),
501 (unsigned long)request,
502 VM_PKT_DATA_INBAND,
503 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
504
505 if (ret != 0)
506 goto cleanup;
507
508 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
509 if (t == 0) {
510 ret = -ETIMEDOUT;
511 goto cleanup;
512 }
513
514 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
515 vstor_packet->status != 0)
516 goto cleanup;
517
518 stor_device->path_id = vstor_packet->storage_channel_properties.path_id;
519 stor_device->target_id
520 = vstor_packet->storage_channel_properties.target_id;
521
522 memset(vstor_packet, 0, sizeof(struct vstor_packet));
523 vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
524 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
525
526 ret = vmbus_sendpacket(device->channel, vstor_packet,
527 sizeof(struct vstor_packet),
528 (unsigned long)request,
529 VM_PKT_DATA_INBAND,
530 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
531
532 if (ret != 0)
533 goto cleanup;
534
535 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
536 if (t == 0) {
537 ret = -ETIMEDOUT;
538 goto cleanup;
539 }
540
541 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
542 vstor_packet->status != 0)
543 goto cleanup;
544
545
546cleanup:
547 return ret;
548}
549
550static void storvsc_on_io_completion(struct hv_device *device,
551 struct vstor_packet *vstor_packet,
552 struct hv_storvsc_request *request)
553{
554 struct storvsc_device *stor_device;
555 struct vstor_packet *stor_pkt;
556
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700557 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700558 stor_pkt = &request->vstor_packet;
559
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -0700560 /*
561 * The current SCSI handling on the host side does
562 * not correctly handle:
563 * INQUIRY command with page code parameter set to 0x80
564 * MODE_SENSE command with cmd[2] == 0x1c
565 *
566 * Setup srb and scsi status so this won't be fatal.
567 * We do this so we can distinguish truly fatal failues
568 * (srb status == 0x4) and off-line the device in that case.
569 */
570
571 if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
572 (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
573 vstor_packet->vm_srb.scsi_status = 0;
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800574 vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS;
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -0700575 }
576
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700577
578 /* Copy over the status...etc */
579 stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
580 stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
581 stor_pkt->vm_srb.sense_info_length =
582 vstor_packet->vm_srb.sense_info_length;
583
584 if (vstor_packet->vm_srb.scsi_status != 0 ||
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800585 vstor_packet->vm_srb.srb_status != SRB_STATUS_SUCCESS){
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -0600586 dev_warn(&device->device,
587 "cmd 0x%x scsi status 0x%x srb status 0x%x\n",
588 stor_pkt->vm_srb.cdb[0],
589 vstor_packet->vm_srb.scsi_status,
590 vstor_packet->vm_srb.srb_status);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700591 }
592
593 if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
594 /* CHECK_CONDITION */
K. Y. Srinivasan16046322012-01-12 12:37:57 -0800595 if (vstor_packet->vm_srb.srb_status &
596 SRB_STATUS_AUTOSENSE_VALID) {
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700597 /* autosense data available */
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -0600598 dev_warn(&device->device,
K. Y. Srinivasan41098f82011-10-14 21:31:57 -0700599 "stor pkt %p autosense data valid - len %d\n",
600 request,
601 vstor_packet->vm_srb.sense_info_length);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700602
603 memcpy(request->sense_buffer,
604 vstor_packet->vm_srb.sense_data,
605 vstor_packet->vm_srb.sense_info_length);
606
607 }
608 }
609
610 stor_pkt->vm_srb.data_transfer_length =
611 vstor_packet->vm_srb.data_transfer_length;
612
613 request->on_io_completion(request);
614
615 if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
616 stor_device->drain_notify)
617 wake_up(&stor_device->waiting_to_drain);
618
619
620}
621
622static void storvsc_on_receive(struct hv_device *device,
623 struct vstor_packet *vstor_packet,
624 struct hv_storvsc_request *request)
625{
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800626 struct storvsc_scan_work *work;
627 struct storvsc_device *stor_device;
628
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700629 switch (vstor_packet->operation) {
630 case VSTOR_OPERATION_COMPLETE_IO:
631 storvsc_on_io_completion(device, vstor_packet, request);
632 break;
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800633
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700634 case VSTOR_OPERATION_REMOVE_DEVICE:
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800635 case VSTOR_OPERATION_ENUMERATE_BUS:
636 stor_device = get_in_stor_device(device);
637 work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
638 if (!work)
639 return;
640
641 INIT_WORK(&work->work, storvsc_bus_scan);
642 work->host = stor_device->host;
643 schedule_work(&work->work);
644 break;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700645
646 default:
647 break;
648 }
649}
650
651static void storvsc_on_channel_callback(void *context)
652{
653 struct hv_device *device = (struct hv_device *)context;
654 struct storvsc_device *stor_device;
655 u32 bytes_recvd;
656 u64 request_id;
657 unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)];
658 struct hv_storvsc_request *request;
659 int ret;
660
661
662 stor_device = get_in_stor_device(device);
663 if (!stor_device)
664 return;
665
666 do {
667 ret = vmbus_recvpacket(device->channel, packet,
668 ALIGN(sizeof(struct vstor_packet), 8),
669 &bytes_recvd, &request_id);
670 if (ret == 0 && bytes_recvd > 0) {
671
672 request = (struct hv_storvsc_request *)
673 (unsigned long)request_id;
674
675 if ((request == &stor_device->init_request) ||
676 (request == &stor_device->reset_request)) {
677
678 memcpy(&request->vstor_packet, packet,
679 sizeof(struct vstor_packet));
680 complete(&request->wait_event);
681 } else {
682 storvsc_on_receive(device,
683 (struct vstor_packet *)packet,
684 request);
685 }
686 } else {
687 break;
688 }
689 } while (1);
690
691 return;
692}
693
694static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
695{
696 struct vmstorage_channel_properties props;
697 int ret;
698
699 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
700
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700701 ret = vmbus_open(device->channel,
702 ring_size,
703 ring_size,
704 (void *)&props,
705 sizeof(struct vmstorage_channel_properties),
706 storvsc_on_channel_callback, device);
707
708 if (ret != 0)
709 return ret;
710
711 ret = storvsc_channel_init(device);
712
713 return ret;
714}
715
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700716static int storvsc_dev_remove(struct hv_device *device)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700717{
718 struct storvsc_device *stor_device;
719 unsigned long flags;
720
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700721 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700722
723 spin_lock_irqsave(&device->channel->inbound_lock, flags);
724 stor_device->destroy = true;
725 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
726
727 /*
728 * At this point, all outbound traffic should be disable. We
729 * only allow inbound traffic (responses) to proceed so that
730 * outstanding requests can be completed.
731 */
732
733 storvsc_wait_to_drain(stor_device);
734
735 /*
736 * Since we have already drained, we don't need to busy wait
737 * as was done in final_release_stor_device()
738 * Note that we cannot set the ext pointer to NULL until
739 * we have drained - to drain the outgoing packets, we need to
740 * allow incoming packets.
741 */
742 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700743 hv_set_drvdata(device, NULL);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700744 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
745
746 /* Close the channel */
747 vmbus_close(device->channel);
748
749 kfree(stor_device);
750 return 0;
751}
752
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700753static int storvsc_do_io(struct hv_device *device,
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700754 struct hv_storvsc_request *request)
755{
756 struct storvsc_device *stor_device;
757 struct vstor_packet *vstor_packet;
758 int ret = 0;
759
760 vstor_packet = &request->vstor_packet;
761 stor_device = get_out_stor_device(device);
762
763 if (!stor_device)
764 return -ENODEV;
765
766
767 request->device = device;
768
769
770 vstor_packet->flags |= REQUEST_COMPLETION_FLAG;
771
772 vstor_packet->vm_srb.length = sizeof(struct vmscsi_request);
773
774
775 vstor_packet->vm_srb.sense_info_length = SENSE_BUFFER_SIZE;
776
777
778 vstor_packet->vm_srb.data_transfer_length =
779 request->data_buffer.len;
780
781 vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;
782
783 if (request->data_buffer.len) {
784 ret = vmbus_sendpacket_multipagebuffer(device->channel,
785 &request->data_buffer,
786 vstor_packet,
787 sizeof(struct vstor_packet),
788 (unsigned long)request);
789 } else {
790 ret = vmbus_sendpacket(device->channel, vstor_packet,
791 sizeof(struct vstor_packet),
792 (unsigned long)request,
793 VM_PKT_DATA_INBAND,
794 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
795 }
796
797 if (ret != 0)
798 return ret;
799
800 atomic_inc(&stor_device->num_outstanding_req);
801
802 return ret;
803}
804
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -0700805static int storvsc_device_alloc(struct scsi_device *sdevice)
806{
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800807 struct stor_mem_pools *memp;
808 int number = STORVSC_MIN_BUF_NR;
809
810 memp = kzalloc(sizeof(struct stor_mem_pools), GFP_KERNEL);
811 if (!memp)
812 return -ENOMEM;
813
814 memp->request_pool =
815 kmem_cache_create(dev_name(&sdevice->sdev_dev),
816 sizeof(struct storvsc_cmd_request), 0,
817 SLAB_HWCACHE_ALIGN, NULL);
818
819 if (!memp->request_pool)
820 goto err0;
821
822 memp->request_mempool = mempool_create(number, mempool_alloc_slab,
823 mempool_free_slab,
824 memp->request_pool);
825
826 if (!memp->request_mempool)
827 goto err1;
828
829 sdevice->hostdata = memp;
830
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -0700831 return 0;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800832
833err1:
834 kmem_cache_destroy(memp->request_pool);
835
836err0:
837 kfree(memp);
838 return -ENOMEM;
839}
840
841static void storvsc_device_destroy(struct scsi_device *sdevice)
842{
843 struct stor_mem_pools *memp = sdevice->hostdata;
844
845 mempool_destroy(memp->request_mempool);
846 kmem_cache_destroy(memp->request_pool);
847 kfree(memp);
848 sdevice->hostdata = NULL;
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -0700849}
850
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700851static int storvsc_device_configure(struct scsi_device *sdevice)
852{
853 scsi_adjust_queue_depth(sdevice, MSG_SIMPLE_TAG,
854 STORVSC_MAX_IO_REQUESTS);
855
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700856 blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE);
857
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700858 blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700859
860 return 0;
861}
862
K. Y. Srinivasan49a3c7a2011-05-10 07:54:28 -0700863static void destroy_bounce_buffer(struct scatterlist *sgl,
864 unsigned int sg_count)
865{
866 int i;
867 struct page *page_buf;
868
869 for (i = 0; i < sg_count; i++) {
870 page_buf = sg_page((&sgl[i]));
871 if (page_buf != NULL)
872 __free_page(page_buf);
873 }
874
875 kfree(sgl);
876}
877
K. Y. Srinivasan3862ef32011-05-10 07:54:29 -0700878static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count)
879{
880 int i;
881
882 /* No need to check */
883 if (sg_count < 2)
884 return -1;
885
886 /* We have at least 2 sg entries */
887 for (i = 0; i < sg_count; i++) {
888 if (i == 0) {
889 /* make sure 1st one does not have hole */
890 if (sgl[i].offset + sgl[i].length != PAGE_SIZE)
891 return i;
892 } else if (i == sg_count - 1) {
893 /* make sure last one does not have hole */
894 if (sgl[i].offset != 0)
895 return i;
896 } else {
897 /* make sure no hole in the middle */
898 if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0)
899 return i;
900 }
901 }
902 return -1;
903}
904
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700905static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl,
906 unsigned int sg_count,
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -0800907 unsigned int len,
908 int write)
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700909{
910 int i;
911 int num_pages;
912 struct scatterlist *bounce_sgl;
913 struct page *page_buf;
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -0800914 unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE);
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700915
916 num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT;
917
918 bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC);
919 if (!bounce_sgl)
920 return NULL;
921
922 for (i = 0; i < num_pages; i++) {
923 page_buf = alloc_page(GFP_ATOMIC);
924 if (!page_buf)
925 goto cleanup;
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -0800926 sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0);
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700927 }
928
929 return bounce_sgl;
930
931cleanup:
932 destroy_bounce_buffer(bounce_sgl, num_pages);
933 return NULL;
934}
935
K. Y. Srinivasan29fe2c92011-05-10 07:54:31 -0700936
937/* Assume the original sgl has enough room */
938static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl,
939 struct scatterlist *bounce_sgl,
K. Y. Srinivasan10c43dd42011-12-01 04:59:19 -0800940 unsigned int orig_sgl_count,
941 unsigned int bounce_sgl_count)
K. Y. Srinivasan29fe2c92011-05-10 07:54:31 -0700942{
943 int i;
944 int j = 0;
945 unsigned long src, dest;
946 unsigned int srclen, destlen, copylen;
947 unsigned int total_copied = 0;
948 unsigned long bounce_addr = 0;
949 unsigned long dest_addr = 0;
950 unsigned long flags;
951
952 local_irq_save(flags);
953
954 for (i = 0; i < orig_sgl_count; i++) {
955 dest_addr = (unsigned long)kmap_atomic(sg_page((&orig_sgl[i])),
956 KM_IRQ0) + orig_sgl[i].offset;
957 dest = dest_addr;
958 destlen = orig_sgl[i].length;
959
960 if (bounce_addr == 0)
961 bounce_addr =
962 (unsigned long)kmap_atomic(sg_page((&bounce_sgl[j])),
963 KM_IRQ0);
964
965 while (destlen) {
966 src = bounce_addr + bounce_sgl[j].offset;
967 srclen = bounce_sgl[j].length - bounce_sgl[j].offset;
968
969 copylen = min(srclen, destlen);
970 memcpy((void *)dest, (void *)src, copylen);
971
972 total_copied += copylen;
973 bounce_sgl[j].offset += copylen;
974 destlen -= copylen;
975 dest += copylen;
976
977 if (bounce_sgl[j].offset == bounce_sgl[j].length) {
978 /* full */
979 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
980 j++;
981
K. Y. Srinivasan10c43dd42011-12-01 04:59:19 -0800982 /*
983 * It is possible that the number of elements
984 * in the bounce buffer may not be equal to
985 * the number of elements in the original
986 * scatter list. Handle this correctly.
987 */
988
989 if (j == bounce_sgl_count) {
990 /*
991 * We are done; cleanup and return.
992 */
993 kunmap_atomic((void *)(dest_addr -
994 orig_sgl[i].offset),
995 KM_IRQ0);
996 local_irq_restore(flags);
997 return total_copied;
998 }
999
K. Y. Srinivasan29fe2c92011-05-10 07:54:31 -07001000 /* if we need to use another bounce buffer */
1001 if (destlen || i != orig_sgl_count - 1)
1002 bounce_addr =
1003 (unsigned long)kmap_atomic(
1004 sg_page((&bounce_sgl[j])), KM_IRQ0);
1005 } else if (destlen == 0 && i == orig_sgl_count - 1) {
1006 /* unmap the last bounce that is < PAGE_SIZE */
1007 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
1008 }
1009 }
1010
1011 kunmap_atomic((void *)(dest_addr - orig_sgl[i].offset),
1012 KM_IRQ0);
1013 }
1014
1015 local_irq_restore(flags);
1016
1017 return total_copied;
1018}
1019
K. Y. Srinivasan6a8ff442011-05-10 07:54:32 -07001020
1021/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */
1022static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl,
1023 struct scatterlist *bounce_sgl,
1024 unsigned int orig_sgl_count)
1025{
1026 int i;
1027 int j = 0;
1028 unsigned long src, dest;
1029 unsigned int srclen, destlen, copylen;
1030 unsigned int total_copied = 0;
1031 unsigned long bounce_addr = 0;
1032 unsigned long src_addr = 0;
1033 unsigned long flags;
1034
1035 local_irq_save(flags);
1036
1037 for (i = 0; i < orig_sgl_count; i++) {
1038 src_addr = (unsigned long)kmap_atomic(sg_page((&orig_sgl[i])),
1039 KM_IRQ0) + orig_sgl[i].offset;
1040 src = src_addr;
1041 srclen = orig_sgl[i].length;
1042
1043 if (bounce_addr == 0)
1044 bounce_addr =
1045 (unsigned long)kmap_atomic(sg_page((&bounce_sgl[j])),
1046 KM_IRQ0);
1047
1048 while (srclen) {
1049 /* assume bounce offset always == 0 */
1050 dest = bounce_addr + bounce_sgl[j].length;
1051 destlen = PAGE_SIZE - bounce_sgl[j].length;
1052
1053 copylen = min(srclen, destlen);
1054 memcpy((void *)dest, (void *)src, copylen);
1055
1056 total_copied += copylen;
1057 bounce_sgl[j].length += copylen;
1058 srclen -= copylen;
1059 src += copylen;
1060
1061 if (bounce_sgl[j].length == PAGE_SIZE) {
1062 /* full..move to next entry */
1063 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
1064 j++;
1065
1066 /* if we need to use another bounce buffer */
1067 if (srclen || i != orig_sgl_count - 1)
1068 bounce_addr =
1069 (unsigned long)kmap_atomic(
1070 sg_page((&bounce_sgl[j])), KM_IRQ0);
1071
1072 } else if (srclen == 0 && i == orig_sgl_count - 1) {
1073 /* unmap the last bounce that is < PAGE_SIZE */
1074 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
1075 }
1076 }
1077
1078 kunmap_atomic((void *)(src_addr - orig_sgl[i].offset), KM_IRQ0);
1079 }
1080
1081 local_irq_restore(flags);
1082
1083 return total_copied;
1084}
1085
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001086
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001087static int storvsc_remove(struct hv_device *dev)
1088{
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001089 struct storvsc_device *stor_device = hv_get_drvdata(dev);
1090 struct Scsi_Host *host = stor_device->host;
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001091
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001092 scsi_remove_host(host);
1093
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001094 scsi_host_put(host);
K. Y. Srinivasand36b0a02011-06-06 15:49:29 -07001095
K. Y. Srinivasan2935a402011-06-06 15:49:28 -07001096 storvsc_dev_remove(dev);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001097
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001098 return 0;
1099}
1100
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001101
1102static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
1103 sector_t capacity, int *info)
1104{
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001105 sector_t nsect = capacity;
1106 sector_t cylinders = nsect;
1107 int heads, sectors_pt;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001108
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001109 /*
1110 * We are making up these values; let us keep it simple.
1111 */
1112 heads = 0xff;
1113 sectors_pt = 0x3f; /* Sectors per track */
1114 sector_div(cylinders, heads * sectors_pt);
1115 if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
1116 cylinders = 0xffff;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001117
1118 info[0] = heads;
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001119 info[1] = sectors_pt;
1120 info[2] = (int)cylinders;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001121
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001122 return 0;
1123}
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001124
1125static int storvsc_host_reset(struct hv_device *device)
1126{
1127 struct storvsc_device *stor_device;
1128 struct hv_storvsc_request *request;
1129 struct vstor_packet *vstor_packet;
1130 int ret, t;
1131
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001132
K. Y. Srinivasan1eaaddf2011-08-27 11:31:03 -07001133 stor_device = get_out_stor_device(device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001134 if (!stor_device)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001135 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001136
1137 request = &stor_device->reset_request;
1138 vstor_packet = &request->vstor_packet;
1139
1140 init_completion(&request->wait_event);
1141
1142 vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
1143 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1144 vstor_packet->vm_srb.path_id = stor_device->path_id;
1145
1146 ret = vmbus_sendpacket(device->channel, vstor_packet,
1147 sizeof(struct vstor_packet),
1148 (unsigned long)&stor_device->reset_request,
1149 VM_PKT_DATA_INBAND,
1150 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1151 if (ret != 0)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001152 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001153
K. Y. Srinivasan46d2eb62011-06-16 13:16:36 -07001154 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001155 if (t == 0)
1156 return TIMEOUT_ERROR;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001157
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001158
1159 /*
1160 * At this point, all outstanding requests in the adapter
1161 * should have been flushed out and return to us
1162 */
1163
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001164 return SUCCESS;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001165}
1166
1167
K. Y. Srinivasan96e690be2011-05-10 07:54:38 -07001168static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
1169{
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001170 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
K. Y. Srinivasan96e690be2011-05-10 07:54:38 -07001171 struct hv_device *dev = host_dev->dev;
1172
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001173 return storvsc_host_reset(dev);
K. Y. Srinivasan96e690be2011-05-10 07:54:38 -07001174}
1175
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001176
K. Y. Srinivasanb8de73d2011-08-27 11:31:27 -07001177static void storvsc_command_completion(struct hv_storvsc_request *request)
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001178{
1179 struct storvsc_cmd_request *cmd_request =
1180 (struct storvsc_cmd_request *)request->context;
1181 struct scsi_cmnd *scmnd = cmd_request->cmd;
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001182 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001183 void (*scsi_done_fn)(struct scsi_cmnd *);
1184 struct scsi_sense_hdr sense_hdr;
1185 struct vmscsi_request *vm_srb;
K. Y. Srinivasanb4017312011-11-08 09:01:50 -08001186 struct storvsc_scan_work *wrk;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001187 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001188
K. Y. Srinivasan3612ef92011-08-27 11:31:20 -07001189 vm_srb = &request->vstor_packet.vm_srb;
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001190 if (cmd_request->bounce_sgl_count) {
K. Y. Srinivasana768a762011-12-01 04:59:18 -08001191 if (vm_srb->data_in == READ_TYPE)
K. Y. Srinivasan3612ef92011-08-27 11:31:20 -07001192 copy_from_bounce_buffer(scsi_sglist(scmnd),
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001193 cmd_request->bounce_sgl,
K. Y. Srinivasan10c43dd42011-12-01 04:59:19 -08001194 scsi_sg_count(scmnd),
1195 cmd_request->bounce_sgl_count);
K. Y. Srinivasana768a762011-12-01 04:59:18 -08001196 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan3612ef92011-08-27 11:31:20 -07001197 cmd_request->bounce_sgl_count);
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001198 }
1199
K. Y. Srinivasan2544b792011-08-27 11:31:28 -07001200 /*
1201 * If there is an error; offline the device since all
1202 * error recovery strategies would have already been
1203 * deployed on the host side.
1204 */
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001205 if (vm_srb->srb_status == SRB_STATUS_ERROR)
K. Y. Srinivasan2544b792011-08-27 11:31:28 -07001206 scmnd->result = DID_TARGET_FAILURE << 16;
1207 else
1208 scmnd->result = vm_srb->scsi_status;
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001209
K. Y. Srinivasanb4017312011-11-08 09:01:50 -08001210 /*
1211 * If the LUN is invalid; remove the device.
1212 */
K. Y. Srinivasan16046322012-01-12 12:37:57 -08001213 if (vm_srb->srb_status == SRB_STATUS_INVALID_LUN) {
K. Y. Srinivasanb4017312011-11-08 09:01:50 -08001214 struct storvsc_device *stor_dev;
1215 struct hv_device *dev = host_dev->dev;
1216 struct Scsi_Host *host;
1217
1218 stor_dev = get_in_stor_device(dev);
1219 host = stor_dev->host;
1220
1221 wrk = kmalloc(sizeof(struct storvsc_scan_work),
1222 GFP_ATOMIC);
1223 if (!wrk) {
1224 scmnd->result = DID_TARGET_FAILURE << 16;
1225 } else {
1226 wrk->host = host;
1227 wrk->lun = vm_srb->lun;
1228 INIT_WORK(&wrk->work, storvsc_remove_lun);
1229 schedule_work(&wrk->work);
1230 }
1231 }
1232
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001233 if (scmnd->result) {
1234 if (scsi_normalize_sense(scmnd->sense_buffer,
1235 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
1236 scsi_print_sense_hdr("storvsc", &sense_hdr);
1237 }
1238
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001239 scsi_set_resid(scmnd,
1240 request->data_buffer.len -
1241 vm_srb->data_transfer_length);
1242
1243 scsi_done_fn = scmnd->scsi_done;
1244
1245 scmnd->host_scribble = NULL;
1246 scmnd->scsi_done = NULL;
1247
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001248 scsi_done_fn(scmnd);
1249
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001250 mempool_free(cmd_request, memp->request_mempool);
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001251}
1252
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001253static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd)
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001254{
1255 bool allowed = true;
1256 u8 scsi_op = scmnd->cmnd[0];
1257
1258 switch (scsi_op) {
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001259 /*
1260 * smartd sends this command and the host does not handle
1261 * this. So, don't send it.
1262 */
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001263 case SET_WINDOW:
K. Y. Srinivasan59e00e72011-11-08 09:01:42 -08001264 scmnd->result = ILLEGAL_REQUEST << 16;
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001265 allowed = false;
1266 break;
1267 default:
1268 break;
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001269 }
1270 return allowed;
1271}
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001272
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001273static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001274{
1275 int ret;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001276 struct hv_host_device *host_dev = shost_priv(host);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001277 struct hv_device *dev = host_dev->dev;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001278 struct hv_storvsc_request *request;
1279 struct storvsc_cmd_request *cmd_request;
1280 unsigned int request_size = 0;
1281 int i;
1282 struct scatterlist *sgl;
1283 unsigned int sg_count = 0;
1284 struct vmscsi_request *vm_srb;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001285 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001286
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001287 if (!storvsc_scsi_cmd_ok(scmnd)) {
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001288 scmnd->scsi_done(scmnd);
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001289 return 0;
1290 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001291
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001292 request_size = sizeof(struct storvsc_cmd_request);
1293
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001294 cmd_request = mempool_alloc(memp->request_mempool,
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001295 GFP_ATOMIC);
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001296
1297 /*
1298 * We might be invoked in an interrupt context; hence
1299 * mempool_alloc() can fail.
1300 */
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001301 if (!cmd_request)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001302 return SCSI_MLQUEUE_DEVICE_BUSY;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001303
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001304 memset(cmd_request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001305
1306 /* Setup the cmd request */
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001307 cmd_request->cmd = scmnd;
1308
1309 scmnd->host_scribble = (unsigned char *)cmd_request;
1310
1311 request = &cmd_request->request;
1312 vm_srb = &request->vstor_packet.vm_srb;
1313
1314
1315 /* Build the SRB */
1316 switch (scmnd->sc_data_direction) {
1317 case DMA_TO_DEVICE:
1318 vm_srb->data_in = WRITE_TYPE;
1319 break;
1320 case DMA_FROM_DEVICE:
1321 vm_srb->data_in = READ_TYPE;
1322 break;
1323 default:
1324 vm_srb->data_in = UNKNOWN_TYPE;
1325 break;
1326 }
1327
K. Y. Srinivasanb8de73d2011-08-27 11:31:27 -07001328 request->on_io_completion = storvsc_command_completion;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001329 request->context = cmd_request;/* scmnd; */
1330
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001331 vm_srb->port_number = host_dev->port;
1332 vm_srb->path_id = scmnd->device->channel;
1333 vm_srb->target_id = scmnd->device->id;
1334 vm_srb->lun = scmnd->device->lun;
1335
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001336 vm_srb->cdb_length = scmnd->cmd_len;
1337
1338 memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);
1339
1340 request->sense_buffer = scmnd->sense_buffer;
1341
1342
1343 request->data_buffer.len = scsi_bufflen(scmnd);
1344 if (scsi_sg_count(scmnd)) {
1345 sgl = (struct scatterlist *)scsi_sglist(scmnd);
1346 sg_count = scsi_sg_count(scmnd);
1347
1348 /* check if we need to bounce the sgl */
1349 if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) {
1350 cmd_request->bounce_sgl =
1351 create_bounce_buffer(sgl, scsi_sg_count(scmnd),
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -08001352 scsi_bufflen(scmnd),
1353 vm_srb->data_in);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001354 if (!cmd_request->bounce_sgl) {
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001355 ret = SCSI_MLQUEUE_HOST_BUSY;
1356 goto queue_error;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001357 }
1358
1359 cmd_request->bounce_sgl_count =
1360 ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
1361 PAGE_SHIFT;
1362
K. Y. Srinivasanfa23b8c2011-08-27 11:31:21 -07001363 if (vm_srb->data_in == WRITE_TYPE)
1364 copy_to_bounce_buffer(sgl,
1365 cmd_request->bounce_sgl,
1366 scsi_sg_count(scmnd));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001367
1368 sgl = cmd_request->bounce_sgl;
1369 sg_count = cmd_request->bounce_sgl_count;
1370 }
1371
1372 request->data_buffer.offset = sgl[0].offset;
1373
1374 for (i = 0; i < sg_count; i++)
1375 request->data_buffer.pfn_array[i] =
1376 page_to_pfn(sg_page((&sgl[i])));
1377
1378 } else if (scsi_sglist(scmnd)) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001379 request->data_buffer.offset =
1380 virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1);
1381 request->data_buffer.pfn_array[0] =
1382 virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT;
1383 }
1384
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001385 /* Invokes the vsc to start an IO */
K. Y. Srinivasan636f0fd2011-05-10 07:54:50 -07001386 ret = storvsc_do_io(dev, &cmd_request->request);
1387
K. Y. Srinivasand2598f02011-08-25 09:48:58 -07001388 if (ret == -EAGAIN) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001389 /* no more space */
1390
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001391 if (cmd_request->bounce_sgl_count) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001392 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan70691ec2011-08-27 11:31:29 -07001393 cmd_request->bounce_sgl_count);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001394
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001395 ret = SCSI_MLQUEUE_DEVICE_BUSY;
1396 goto queue_error;
1397 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001398 }
1399
K. Y. Srinivasanc77b63b2012-01-12 12:37:56 -08001400 return 0;
1401
1402queue_error:
1403 mempool_free(cmd_request, memp->request_mempool);
1404 scmnd->host_scribble = NULL;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001405 return ret;
1406}
1407
Hank Janssenbef4a342009-07-13 16:01:31 -07001408static struct scsi_host_template scsi_driver = {
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001409 .module = THIS_MODULE,
1410 .name = "storvsc_host_t",
1411 .bios_param = storvsc_get_chs,
1412 .queuecommand = storvsc_queuecommand,
1413 .eh_host_reset_handler = storvsc_host_reset_handler,
1414 .slave_alloc = storvsc_device_alloc,
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001415 .slave_destroy = storvsc_device_destroy,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001416 .slave_configure = storvsc_device_configure,
1417 .cmd_per_lun = 1,
1418 /* 64 max_queue * 1 target */
Lars Lindley0686e4f2010-03-11 23:51:23 +01001419 .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001420 .this_id = -1,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001421 /* no use setting to 0 since ll_blk_rw reset it to 1 */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001422 /* currently 32 */
1423 .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT,
K. Y. Srinivasan039db522011-12-01 04:59:16 -08001424 .use_clustering = DISABLE_CLUSTERING,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001425 /* Make sure we dont get a sg segment crosses a page boundary */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001426 .dma_boundary = PAGE_SIZE-1,
Hank Janssenbef4a342009-07-13 16:01:31 -07001427};
1428
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001429enum {
1430 SCSI_GUID,
1431 IDE_GUID,
1432};
1433
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001434static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001435 /* SCSI guid */
1436 { VMBUS_DEVICE(0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001437 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f)
1438 .driver_data = SCSI_GUID },
K. Y. Srinivasan21e37742011-08-27 11:31:18 -07001439 /* IDE guid */
1440 { VMBUS_DEVICE(0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001441 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5)
1442 .driver_data = IDE_GUID },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001443 { },
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001444};
Hank Janssenbef4a342009-07-13 16:01:31 -07001445
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001446MODULE_DEVICE_TABLE(vmbus, id_table);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001447
K. Y. Srinivasan84946892011-09-13 10:59:38 -07001448static int storvsc_probe(struct hv_device *device,
1449 const struct hv_vmbus_device_id *dev_id)
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001450{
1451 int ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001452 struct Scsi_Host *host;
1453 struct hv_host_device *host_dev;
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001454 bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001455 int target = 0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001456 struct storvsc_device *stor_device;
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001457
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001458 host = scsi_host_alloc(&scsi_driver,
1459 sizeof(struct hv_host_device));
1460 if (!host)
1461 return -ENOMEM;
1462
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001463 host_dev = shost_priv(host);
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001464 memset(host_dev, 0, sizeof(struct hv_host_device));
1465
1466 host_dev->port = host->host_no;
1467 host_dev->dev = device;
1468
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001469
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001470 stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001471 if (!stor_device) {
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001472 ret = -ENOMEM;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001473 goto err_out0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001474 }
1475
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001476 stor_device->destroy = false;
1477 init_waitqueue_head(&stor_device->waiting_to_drain);
1478 stor_device->device = device;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001479 stor_device->host = host;
1480 hv_set_drvdata(device, stor_device);
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001481
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001482 stor_device->port_number = host->host_no;
1483 ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001484 if (ret)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001485 goto err_out1;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001486
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001487 host_dev->path = stor_device->path_id;
1488 host_dev->target = stor_device->target_id;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001489
1490 /* max # of devices per target */
1491 host->max_lun = STORVSC_MAX_LUNS_PER_TARGET;
1492 /* max # of targets per channel */
1493 host->max_id = STORVSC_MAX_TARGETS;
1494 /* max # of channels */
1495 host->max_channel = STORVSC_MAX_CHANNELS - 1;
Mike Sterlingcf55f4a2011-09-06 16:10:55 -07001496 /* max cmd length */
1497 host->max_cmd_len = STORVSC_MAX_CMD_LEN;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001498
1499 /* Register the HBA and start the scsi bus scan */
1500 ret = scsi_add_host(host, &device->device);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001501 if (ret != 0)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001502 goto err_out2;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001503
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001504 if (!dev_is_ide) {
1505 scsi_scan_host(host);
K. Y. Srinivasan59d22952012-01-12 12:37:55 -08001506 } else {
1507 target = (device->dev_instance.b[5] << 8 |
1508 device->dev_instance.b[4]);
1509 ret = scsi_add_device(host, 0, target, 0);
1510 if (ret) {
1511 scsi_remove_host(host);
1512 goto err_out2;
1513 }
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001514 }
1515 return 0;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001516
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001517err_out2:
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001518 /*
1519 * Once we have connected with the host, we would need to
1520 * to invoke storvsc_dev_remove() to rollback this state and
1521 * this call also frees up the stor_device; hence the jump around
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001522 * err_out1 label.
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001523 */
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001524 storvsc_dev_remove(device);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001525 goto err_out0;
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001526
1527err_out1:
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001528 kfree(stor_device);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001529
1530err_out0:
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001531 scsi_host_put(host);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001532 return ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001533}
1534
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001535static struct hv_driver storvsc_drv = {
K. Y. Srinivasanfafb0ef2011-11-08 09:01:46 -08001536 .name = KBUILD_MODNAME,
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001537 .id_table = id_table,
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001538 .probe = storvsc_probe,
1539 .remove = storvsc_remove,
K. Y. Srinivasan39ae6fa2011-05-10 07:54:46 -07001540};
K. Y. Srinivasan7bd05b92011-05-10 07:54:45 -07001541
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001542static int __init storvsc_drv_init(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001543{
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001544 u32 max_outstanding_req_per_channel;
1545
1546 /*
1547 * Divide the ring buffer data size (which is 1 page less
1548 * than the ring buffer size since that page is reserved for
1549 * the ring buffer indices) by the max request size (which is
1550 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
1551 */
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001552 max_outstanding_req_per_channel =
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001553 ((storvsc_ringbuffer_size - PAGE_SIZE) /
1554 ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
1555 sizeof(struct vstor_packet) + sizeof(u64),
1556 sizeof(u64)));
Hank Janssenbef4a342009-07-13 16:01:31 -07001557
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001558 if (max_outstanding_req_per_channel <
K. Y. Srinivasanf8feed02011-05-10 07:54:24 -07001559 STORVSC_MAX_IO_REQUESTS)
K. Y. Srinivasanb06efc12011-08-25 09:49:10 -07001560 return -EINVAL;
Hank Janssenbef4a342009-07-13 16:01:31 -07001561
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001562 return vmbus_driver_register(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001563}
1564
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001565static void __exit storvsc_drv_exit(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001566{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001567 vmbus_driver_unregister(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001568}
1569
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001570MODULE_LICENSE("GPL");
Hank Janssen26c14cc2010-02-11 23:02:42 +00001571MODULE_VERSION(HV_DRV_VERSION);
Stephen Hemminger3afc7cc32010-05-06 21:44:45 -07001572MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001573module_init(storvsc_drv_init);
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001574module_exit(storvsc_drv_exit);