blob: 1633b032b5f44fe643c8cc9fec46e1eaabb6ff90 [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
260
261struct hv_storvsc_request {
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700262 struct hv_device *device;
263
264 /* Synchronize the request/response if needed */
265 struct completion wait_event;
266
267 unsigned char *sense_buffer;
268 void *context;
269 void (*on_io_completion)(struct hv_storvsc_request *request);
270 struct hv_multipage_buffer data_buffer;
271
272 struct vstor_packet vstor_packet;
273};
274
275
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700276/* A storvsc device is a device object that contains a vmbus channel */
277struct storvsc_device {
278 struct hv_device *device;
279
280 bool destroy;
281 bool drain_notify;
282 atomic_t num_outstanding_req;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700283 struct Scsi_Host *host;
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700284
285 wait_queue_head_t waiting_to_drain;
286
287 /*
288 * Each unique Port/Path/Target represents 1 channel ie scsi
289 * controller. In reality, the pathid, targetid is always 0
290 * and the port is set by us
291 */
292 unsigned int port_number;
293 unsigned char path_id;
294 unsigned char target_id;
295
296 /* Used for vsc/vsp channel reset process */
297 struct hv_storvsc_request init_request;
298 struct hv_storvsc_request reset_request;
299};
300
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800301struct stor_mem_pools {
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700302 struct kmem_cache *request_pool;
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -0800303 mempool_t *request_mempool;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800304};
305
306struct hv_host_device {
307 struct hv_device *dev;
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700308 unsigned int port;
309 unsigned char path;
310 unsigned char target;
311};
312
313struct storvsc_cmd_request {
314 struct list_head entry;
315 struct scsi_cmnd *cmd;
316
317 unsigned int bounce_sgl_count;
318 struct scatterlist *bounce_sgl;
319
320 struct hv_storvsc_request request;
321};
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700322
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800323struct storvsc_scan_work {
324 struct work_struct work;
325 struct Scsi_Host *host;
326 uint lun;
327};
328
329static void storvsc_bus_scan(struct work_struct *work)
330{
331 struct storvsc_scan_work *wrk;
332 int id, order_id;
333
334 wrk = container_of(work, struct storvsc_scan_work, work);
335 for (id = 0; id < wrk->host->max_id; ++id) {
336 if (wrk->host->reverse_ordering)
337 order_id = wrk->host->max_id - id - 1;
338 else
339 order_id = id;
340
341 scsi_scan_target(&wrk->host->shost_gendev, 0,
342 order_id, SCAN_WILD_CARD, 1);
343 }
344 kfree(wrk);
345}
346
K. Y. Srinivasanb4017312011-11-08 09:01:50 -0800347static void storvsc_remove_lun(struct work_struct *work)
348{
349 struct storvsc_scan_work *wrk;
350 struct scsi_device *sdev;
351
352 wrk = container_of(work, struct storvsc_scan_work, work);
353 if (!scsi_host_get(wrk->host))
354 goto done;
355
356 sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun);
357
358 if (sdev) {
359 scsi_remove_device(sdev);
360 scsi_device_put(sdev);
361 }
362 scsi_host_put(wrk->host);
363
364done:
365 kfree(wrk);
366}
367
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700368static inline struct storvsc_device *get_out_stor_device(
369 struct hv_device *device)
370{
371 struct storvsc_device *stor_device;
372
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700373 stor_device = hv_get_drvdata(device);
K. Y. Srinivasanf0d79fe2011-08-27 11:31:24 -0700374
375 if (stor_device && stor_device->destroy)
376 stor_device = NULL;
377
378 return stor_device;
379}
380
381
382static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
383{
384 dev->drain_notify = true;
385 wait_event(dev->waiting_to_drain,
386 atomic_read(&dev->num_outstanding_req) == 0);
387 dev->drain_notify = false;
388}
Hank Janssenbef4a342009-07-13 16:01:31 -0700389
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700390static inline struct storvsc_device *get_in_stor_device(
391 struct hv_device *device)
392{
393 struct storvsc_device *stor_device;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700394
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700395 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700396
397 if (!stor_device)
398 goto get_in_err;
399
400 /*
401 * If the device is being destroyed; allow incoming
402 * traffic only to cleanup outstanding requests.
403 */
404
405 if (stor_device->destroy &&
406 (atomic_read(&stor_device->num_outstanding_req) == 0))
407 stor_device = NULL;
408
409get_in_err:
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700410 return stor_device;
411
412}
413
414static int storvsc_channel_init(struct hv_device *device)
415{
416 struct storvsc_device *stor_device;
417 struct hv_storvsc_request *request;
418 struct vstor_packet *vstor_packet;
419 int ret, t;
420
421 stor_device = get_out_stor_device(device);
422 if (!stor_device)
423 return -ENODEV;
424
425 request = &stor_device->init_request;
426 vstor_packet = &request->vstor_packet;
427
428 /*
429 * Now, initiate the vsc/vsp initialization protocol on the open
430 * channel
431 */
432 memset(request, 0, sizeof(struct hv_storvsc_request));
433 init_completion(&request->wait_event);
434 vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
435 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
436
437 ret = vmbus_sendpacket(device->channel, vstor_packet,
438 sizeof(struct vstor_packet),
439 (unsigned long)request,
440 VM_PKT_DATA_INBAND,
441 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
442 if (ret != 0)
443 goto cleanup;
444
445 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
446 if (t == 0) {
447 ret = -ETIMEDOUT;
448 goto cleanup;
449 }
450
451 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
452 vstor_packet->status != 0)
453 goto cleanup;
454
455
456 /* reuse the packet for version range supported */
457 memset(vstor_packet, 0, sizeof(struct vstor_packet));
458 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
459 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
460
461 vstor_packet->version.major_minor = VMSTOR_PROTOCOL_VERSION_CURRENT;
462 FILL_VMSTOR_REVISION(vstor_packet->version.revision);
463
464 ret = vmbus_sendpacket(device->channel, vstor_packet,
465 sizeof(struct vstor_packet),
466 (unsigned long)request,
467 VM_PKT_DATA_INBAND,
468 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
469 if (ret != 0)
470 goto cleanup;
471
472 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
473 if (t == 0) {
474 ret = -ETIMEDOUT;
475 goto cleanup;
476 }
477
478 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
479 vstor_packet->status != 0)
480 goto cleanup;
481
482
483 memset(vstor_packet, 0, sizeof(struct vstor_packet));
484 vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
485 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
486 vstor_packet->storage_channel_properties.port_number =
487 stor_device->port_number;
488
489 ret = vmbus_sendpacket(device->channel, vstor_packet,
490 sizeof(struct vstor_packet),
491 (unsigned long)request,
492 VM_PKT_DATA_INBAND,
493 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
494
495 if (ret != 0)
496 goto cleanup;
497
498 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
499 if (t == 0) {
500 ret = -ETIMEDOUT;
501 goto cleanup;
502 }
503
504 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
505 vstor_packet->status != 0)
506 goto cleanup;
507
508 stor_device->path_id = vstor_packet->storage_channel_properties.path_id;
509 stor_device->target_id
510 = vstor_packet->storage_channel_properties.target_id;
511
512 memset(vstor_packet, 0, sizeof(struct vstor_packet));
513 vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
514 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
515
516 ret = vmbus_sendpacket(device->channel, vstor_packet,
517 sizeof(struct vstor_packet),
518 (unsigned long)request,
519 VM_PKT_DATA_INBAND,
520 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
521
522 if (ret != 0)
523 goto cleanup;
524
525 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
526 if (t == 0) {
527 ret = -ETIMEDOUT;
528 goto cleanup;
529 }
530
531 if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
532 vstor_packet->status != 0)
533 goto cleanup;
534
535
536cleanup:
537 return ret;
538}
539
540static void storvsc_on_io_completion(struct hv_device *device,
541 struct vstor_packet *vstor_packet,
542 struct hv_storvsc_request *request)
543{
544 struct storvsc_device *stor_device;
545 struct vstor_packet *stor_pkt;
546
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700547 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700548 stor_pkt = &request->vstor_packet;
549
K. Y. Srinivasan4ed51a22011-08-27 11:31:26 -0700550 /*
551 * The current SCSI handling on the host side does
552 * not correctly handle:
553 * INQUIRY command with page code parameter set to 0x80
554 * MODE_SENSE command with cmd[2] == 0x1c
555 *
556 * Setup srb and scsi status so this won't be fatal.
557 * We do this so we can distinguish truly fatal failues
558 * (srb status == 0x4) and off-line the device in that case.
559 */
560
561 if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
562 (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
563 vstor_packet->vm_srb.scsi_status = 0;
564 vstor_packet->vm_srb.srb_status = 0x1;
565 }
566
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700567
568 /* Copy over the status...etc */
569 stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
570 stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
571 stor_pkt->vm_srb.sense_info_length =
572 vstor_packet->vm_srb.sense_info_length;
573
574 if (vstor_packet->vm_srb.scsi_status != 0 ||
575 vstor_packet->vm_srb.srb_status != 1){
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -0600576 dev_warn(&device->device,
577 "cmd 0x%x scsi status 0x%x srb status 0x%x\n",
578 stor_pkt->vm_srb.cdb[0],
579 vstor_packet->vm_srb.scsi_status,
580 vstor_packet->vm_srb.srb_status);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700581 }
582
583 if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
584 /* CHECK_CONDITION */
585 if (vstor_packet->vm_srb.srb_status & 0x80) {
586 /* autosense data available */
Greg Kroah-Hartmand181daa2011-10-11 09:20:31 -0600587 dev_warn(&device->device,
K. Y. Srinivasan41098f82011-10-14 21:31:57 -0700588 "stor pkt %p autosense data valid - len %d\n",
589 request,
590 vstor_packet->vm_srb.sense_info_length);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700591
592 memcpy(request->sense_buffer,
593 vstor_packet->vm_srb.sense_data,
594 vstor_packet->vm_srb.sense_info_length);
595
596 }
597 }
598
599 stor_pkt->vm_srb.data_transfer_length =
600 vstor_packet->vm_srb.data_transfer_length;
601
602 request->on_io_completion(request);
603
604 if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
605 stor_device->drain_notify)
606 wake_up(&stor_device->waiting_to_drain);
607
608
609}
610
611static void storvsc_on_receive(struct hv_device *device,
612 struct vstor_packet *vstor_packet,
613 struct hv_storvsc_request *request)
614{
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800615 struct storvsc_scan_work *work;
616 struct storvsc_device *stor_device;
617
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700618 switch (vstor_packet->operation) {
619 case VSTOR_OPERATION_COMPLETE_IO:
620 storvsc_on_io_completion(device, vstor_packet, request);
621 break;
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800622
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700623 case VSTOR_OPERATION_REMOVE_DEVICE:
K. Y. Srinivasan12675792011-11-08 09:01:49 -0800624 case VSTOR_OPERATION_ENUMERATE_BUS:
625 stor_device = get_in_stor_device(device);
626 work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
627 if (!work)
628 return;
629
630 INIT_WORK(&work->work, storvsc_bus_scan);
631 work->host = stor_device->host;
632 schedule_work(&work->work);
633 break;
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700634
635 default:
636 break;
637 }
638}
639
640static void storvsc_on_channel_callback(void *context)
641{
642 struct hv_device *device = (struct hv_device *)context;
643 struct storvsc_device *stor_device;
644 u32 bytes_recvd;
645 u64 request_id;
646 unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)];
647 struct hv_storvsc_request *request;
648 int ret;
649
650
651 stor_device = get_in_stor_device(device);
652 if (!stor_device)
653 return;
654
655 do {
656 ret = vmbus_recvpacket(device->channel, packet,
657 ALIGN(sizeof(struct vstor_packet), 8),
658 &bytes_recvd, &request_id);
659 if (ret == 0 && bytes_recvd > 0) {
660
661 request = (struct hv_storvsc_request *)
662 (unsigned long)request_id;
663
664 if ((request == &stor_device->init_request) ||
665 (request == &stor_device->reset_request)) {
666
667 memcpy(&request->vstor_packet, packet,
668 sizeof(struct vstor_packet));
669 complete(&request->wait_event);
670 } else {
671 storvsc_on_receive(device,
672 (struct vstor_packet *)packet,
673 request);
674 }
675 } else {
676 break;
677 }
678 } while (1);
679
680 return;
681}
682
683static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
684{
685 struct vmstorage_channel_properties props;
686 int ret;
687
688 memset(&props, 0, sizeof(struct vmstorage_channel_properties));
689
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700690 ret = vmbus_open(device->channel,
691 ring_size,
692 ring_size,
693 (void *)&props,
694 sizeof(struct vmstorage_channel_properties),
695 storvsc_on_channel_callback, device);
696
697 if (ret != 0)
698 return ret;
699
700 ret = storvsc_channel_init(device);
701
702 return ret;
703}
704
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700705static int storvsc_dev_remove(struct hv_device *device)
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700706{
707 struct storvsc_device *stor_device;
708 unsigned long flags;
709
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700710 stor_device = hv_get_drvdata(device);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700711
712 spin_lock_irqsave(&device->channel->inbound_lock, flags);
713 stor_device->destroy = true;
714 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
715
716 /*
717 * At this point, all outbound traffic should be disable. We
718 * only allow inbound traffic (responses) to proceed so that
719 * outstanding requests can be completed.
720 */
721
722 storvsc_wait_to_drain(stor_device);
723
724 /*
725 * Since we have already drained, we don't need to busy wait
726 * as was done in final_release_stor_device()
727 * Note that we cannot set the ext pointer to NULL until
728 * we have drained - to drain the outgoing packets, we need to
729 * allow incoming packets.
730 */
731 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -0700732 hv_set_drvdata(device, NULL);
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700733 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
734
735 /* Close the channel */
736 vmbus_close(device->channel);
737
738 kfree(stor_device);
739 return 0;
740}
741
K. Y. Srinivasanc1b3d062011-08-27 11:31:25 -0700742static int storvsc_do_io(struct hv_device *device,
K. Y. Srinivasan8dcf37d2011-08-27 11:31:22 -0700743 struct hv_storvsc_request *request)
744{
745 struct storvsc_device *stor_device;
746 struct vstor_packet *vstor_packet;
747 int ret = 0;
748
749 vstor_packet = &request->vstor_packet;
750 stor_device = get_out_stor_device(device);
751
752 if (!stor_device)
753 return -ENODEV;
754
755
756 request->device = device;
757
758
759 vstor_packet->flags |= REQUEST_COMPLETION_FLAG;
760
761 vstor_packet->vm_srb.length = sizeof(struct vmscsi_request);
762
763
764 vstor_packet->vm_srb.sense_info_length = SENSE_BUFFER_SIZE;
765
766
767 vstor_packet->vm_srb.data_transfer_length =
768 request->data_buffer.len;
769
770 vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;
771
772 if (request->data_buffer.len) {
773 ret = vmbus_sendpacket_multipagebuffer(device->channel,
774 &request->data_buffer,
775 vstor_packet,
776 sizeof(struct vstor_packet),
777 (unsigned long)request);
778 } else {
779 ret = vmbus_sendpacket(device->channel, vstor_packet,
780 sizeof(struct vstor_packet),
781 (unsigned long)request,
782 VM_PKT_DATA_INBAND,
783 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
784 }
785
786 if (ret != 0)
787 return ret;
788
789 atomic_inc(&stor_device->num_outstanding_req);
790
791 return ret;
792}
793
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -0700794static void storvsc_get_ide_info(struct hv_device *dev, int *target, int *path)
795{
796 *target =
797 dev->dev_instance.b[5] << 8 | dev->dev_instance.b[4];
798
799 *path =
800 dev->dev_instance.b[3] << 24 |
801 dev->dev_instance.b[2] << 16 |
802 dev->dev_instance.b[1] << 8 | dev->dev_instance.b[0];
803}
804
Hank Janssenbef4a342009-07-13 16:01:31 -0700805
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -0700806static int storvsc_device_alloc(struct scsi_device *sdevice)
807{
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800808 struct stor_mem_pools *memp;
809 int number = STORVSC_MIN_BUF_NR;
810
811 memp = kzalloc(sizeof(struct stor_mem_pools), GFP_KERNEL);
812 if (!memp)
813 return -ENOMEM;
814
815 memp->request_pool =
816 kmem_cache_create(dev_name(&sdevice->sdev_dev),
817 sizeof(struct storvsc_cmd_request), 0,
818 SLAB_HWCACHE_ALIGN, NULL);
819
820 if (!memp->request_pool)
821 goto err0;
822
823 memp->request_mempool = mempool_create(number, mempool_alloc_slab,
824 mempool_free_slab,
825 memp->request_pool);
826
827 if (!memp->request_mempool)
828 goto err1;
829
830 sdevice->hostdata = memp;
831
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -0700832 return 0;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -0800833
834err1:
835 kmem_cache_destroy(memp->request_pool);
836
837err0:
838 kfree(memp);
839 return -ENOMEM;
840}
841
842static void storvsc_device_destroy(struct scsi_device *sdevice)
843{
844 struct stor_mem_pools *memp = sdevice->hostdata;
845
846 mempool_destroy(memp->request_mempool);
847 kmem_cache_destroy(memp->request_pool);
848 kfree(memp);
849 sdevice->hostdata = NULL;
K. Y. Srinivasan5b60ace2011-05-10 07:54:25 -0700850}
851
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700852static int storvsc_device_configure(struct scsi_device *sdevice)
853{
854 scsi_adjust_queue_depth(sdevice, MSG_SIMPLE_TAG,
855 STORVSC_MAX_IO_REQUESTS);
856
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700857 blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE);
858
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700859 blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);
K. Y. Srinivasan419f2d02011-05-10 07:54:27 -0700860
861 return 0;
862}
863
K. Y. Srinivasan49a3c7a2011-05-10 07:54:28 -0700864static void destroy_bounce_buffer(struct scatterlist *sgl,
865 unsigned int sg_count)
866{
867 int i;
868 struct page *page_buf;
869
870 for (i = 0; i < sg_count; i++) {
871 page_buf = sg_page((&sgl[i]));
872 if (page_buf != NULL)
873 __free_page(page_buf);
874 }
875
876 kfree(sgl);
877}
878
K. Y. Srinivasan3862ef32011-05-10 07:54:29 -0700879static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count)
880{
881 int i;
882
883 /* No need to check */
884 if (sg_count < 2)
885 return -1;
886
887 /* We have at least 2 sg entries */
888 for (i = 0; i < sg_count; i++) {
889 if (i == 0) {
890 /* make sure 1st one does not have hole */
891 if (sgl[i].offset + sgl[i].length != PAGE_SIZE)
892 return i;
893 } else if (i == sg_count - 1) {
894 /* make sure last one does not have hole */
895 if (sgl[i].offset != 0)
896 return i;
897 } else {
898 /* make sure no hole in the middle */
899 if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0)
900 return i;
901 }
902 }
903 return -1;
904}
905
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700906static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl,
907 unsigned int sg_count,
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -0800908 unsigned int len,
909 int write)
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700910{
911 int i;
912 int num_pages;
913 struct scatterlist *bounce_sgl;
914 struct page *page_buf;
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -0800915 unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE);
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700916
917 num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT;
918
919 bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC);
920 if (!bounce_sgl)
921 return NULL;
922
923 for (i = 0; i < num_pages; i++) {
924 page_buf = alloc_page(GFP_ATOMIC);
925 if (!page_buf)
926 goto cleanup;
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -0800927 sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0);
K. Y. Srinivasana9753cb2011-05-10 07:54:30 -0700928 }
929
930 return bounce_sgl;
931
932cleanup:
933 destroy_bounce_buffer(bounce_sgl, num_pages);
934 return NULL;
935}
936
K. Y. Srinivasan29fe2c92011-05-10 07:54:31 -0700937
938/* Assume the original sgl has enough room */
939static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl,
940 struct scatterlist *bounce_sgl,
K. Y. Srinivasan10c43dd42011-12-01 04:59:19 -0800941 unsigned int orig_sgl_count,
942 unsigned int bounce_sgl_count)
K. Y. Srinivasan29fe2c92011-05-10 07:54:31 -0700943{
944 int i;
945 int j = 0;
946 unsigned long src, dest;
947 unsigned int srclen, destlen, copylen;
948 unsigned int total_copied = 0;
949 unsigned long bounce_addr = 0;
950 unsigned long dest_addr = 0;
951 unsigned long flags;
952
953 local_irq_save(flags);
954
955 for (i = 0; i < orig_sgl_count; i++) {
956 dest_addr = (unsigned long)kmap_atomic(sg_page((&orig_sgl[i])),
957 KM_IRQ0) + orig_sgl[i].offset;
958 dest = dest_addr;
959 destlen = orig_sgl[i].length;
960
961 if (bounce_addr == 0)
962 bounce_addr =
963 (unsigned long)kmap_atomic(sg_page((&bounce_sgl[j])),
964 KM_IRQ0);
965
966 while (destlen) {
967 src = bounce_addr + bounce_sgl[j].offset;
968 srclen = bounce_sgl[j].length - bounce_sgl[j].offset;
969
970 copylen = min(srclen, destlen);
971 memcpy((void *)dest, (void *)src, copylen);
972
973 total_copied += copylen;
974 bounce_sgl[j].offset += copylen;
975 destlen -= copylen;
976 dest += copylen;
977
978 if (bounce_sgl[j].offset == bounce_sgl[j].length) {
979 /* full */
980 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
981 j++;
982
K. Y. Srinivasan10c43dd42011-12-01 04:59:19 -0800983 /*
984 * It is possible that the number of elements
985 * in the bounce buffer may not be equal to
986 * the number of elements in the original
987 * scatter list. Handle this correctly.
988 */
989
990 if (j == bounce_sgl_count) {
991 /*
992 * We are done; cleanup and return.
993 */
994 kunmap_atomic((void *)(dest_addr -
995 orig_sgl[i].offset),
996 KM_IRQ0);
997 local_irq_restore(flags);
998 return total_copied;
999 }
1000
K. Y. Srinivasan29fe2c92011-05-10 07:54:31 -07001001 /* if we need to use another bounce buffer */
1002 if (destlen || i != orig_sgl_count - 1)
1003 bounce_addr =
1004 (unsigned long)kmap_atomic(
1005 sg_page((&bounce_sgl[j])), KM_IRQ0);
1006 } else if (destlen == 0 && i == orig_sgl_count - 1) {
1007 /* unmap the last bounce that is < PAGE_SIZE */
1008 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
1009 }
1010 }
1011
1012 kunmap_atomic((void *)(dest_addr - orig_sgl[i].offset),
1013 KM_IRQ0);
1014 }
1015
1016 local_irq_restore(flags);
1017
1018 return total_copied;
1019}
1020
K. Y. Srinivasan6a8ff442011-05-10 07:54:32 -07001021
1022/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */
1023static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl,
1024 struct scatterlist *bounce_sgl,
1025 unsigned int orig_sgl_count)
1026{
1027 int i;
1028 int j = 0;
1029 unsigned long src, dest;
1030 unsigned int srclen, destlen, copylen;
1031 unsigned int total_copied = 0;
1032 unsigned long bounce_addr = 0;
1033 unsigned long src_addr = 0;
1034 unsigned long flags;
1035
1036 local_irq_save(flags);
1037
1038 for (i = 0; i < orig_sgl_count; i++) {
1039 src_addr = (unsigned long)kmap_atomic(sg_page((&orig_sgl[i])),
1040 KM_IRQ0) + orig_sgl[i].offset;
1041 src = src_addr;
1042 srclen = orig_sgl[i].length;
1043
1044 if (bounce_addr == 0)
1045 bounce_addr =
1046 (unsigned long)kmap_atomic(sg_page((&bounce_sgl[j])),
1047 KM_IRQ0);
1048
1049 while (srclen) {
1050 /* assume bounce offset always == 0 */
1051 dest = bounce_addr + bounce_sgl[j].length;
1052 destlen = PAGE_SIZE - bounce_sgl[j].length;
1053
1054 copylen = min(srclen, destlen);
1055 memcpy((void *)dest, (void *)src, copylen);
1056
1057 total_copied += copylen;
1058 bounce_sgl[j].length += copylen;
1059 srclen -= copylen;
1060 src += copylen;
1061
1062 if (bounce_sgl[j].length == PAGE_SIZE) {
1063 /* full..move to next entry */
1064 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
1065 j++;
1066
1067 /* if we need to use another bounce buffer */
1068 if (srclen || i != orig_sgl_count - 1)
1069 bounce_addr =
1070 (unsigned long)kmap_atomic(
1071 sg_page((&bounce_sgl[j])), KM_IRQ0);
1072
1073 } else if (srclen == 0 && i == orig_sgl_count - 1) {
1074 /* unmap the last bounce that is < PAGE_SIZE */
1075 kunmap_atomic((void *)bounce_addr, KM_IRQ0);
1076 }
1077 }
1078
1079 kunmap_atomic((void *)(src_addr - orig_sgl[i].offset), KM_IRQ0);
1080 }
1081
1082 local_irq_restore(flags);
1083
1084 return total_copied;
1085}
1086
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001087
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001088static int storvsc_remove(struct hv_device *dev)
1089{
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001090 struct storvsc_device *stor_device = hv_get_drvdata(dev);
1091 struct Scsi_Host *host = stor_device->host;
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001092
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001093 scsi_remove_host(host);
1094
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001095 scsi_host_put(host);
K. Y. Srinivasand36b0a02011-06-06 15:49:29 -07001096
K. Y. Srinivasan2935a402011-06-06 15:49:28 -07001097 storvsc_dev_remove(dev);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001098
K. Y. Srinivasan5c5c0232011-05-10 07:54:33 -07001099 return 0;
1100}
1101
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001102
1103static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
1104 sector_t capacity, int *info)
1105{
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001106 sector_t nsect = capacity;
1107 sector_t cylinders = nsect;
1108 int heads, sectors_pt;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001109
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001110 /*
1111 * We are making up these values; let us keep it simple.
1112 */
1113 heads = 0xff;
1114 sectors_pt = 0x3f; /* Sectors per track */
1115 sector_div(cylinders, heads * sectors_pt);
1116 if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
1117 cylinders = 0xffff;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001118
1119 info[0] = heads;
K. Y. Srinivasan5326fd52011-05-10 07:54:52 -07001120 info[1] = sectors_pt;
1121 info[2] = (int)cylinders;
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001122
K. Y. Srinivasan62838ce2011-05-10 07:54:34 -07001123 return 0;
1124}
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001125
1126static int storvsc_host_reset(struct hv_device *device)
1127{
1128 struct storvsc_device *stor_device;
1129 struct hv_storvsc_request *request;
1130 struct vstor_packet *vstor_packet;
1131 int ret, t;
1132
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001133
K. Y. Srinivasan1eaaddf2011-08-27 11:31:03 -07001134 stor_device = get_out_stor_device(device);
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001135 if (!stor_device)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001136 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001137
1138 request = &stor_device->reset_request;
1139 vstor_packet = &request->vstor_packet;
1140
1141 init_completion(&request->wait_event);
1142
1143 vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
1144 vstor_packet->flags = REQUEST_COMPLETION_FLAG;
1145 vstor_packet->vm_srb.path_id = stor_device->path_id;
1146
1147 ret = vmbus_sendpacket(device->channel, vstor_packet,
1148 sizeof(struct vstor_packet),
1149 (unsigned long)&stor_device->reset_request,
1150 VM_PKT_DATA_INBAND,
1151 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
1152 if (ret != 0)
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001153 return FAILED;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001154
K. Y. Srinivasan46d2eb62011-06-16 13:16:36 -07001155 t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001156 if (t == 0)
1157 return TIMEOUT_ERROR;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001158
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001159
1160 /*
1161 * At this point, all outstanding requests in the adapter
1162 * should have been flushed out and return to us
1163 */
1164
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001165 return SUCCESS;
K. Y. Srinivasanaa3d7892011-05-10 07:54:37 -07001166}
1167
1168
K. Y. Srinivasan96e690be2011-05-10 07:54:38 -07001169static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
1170{
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001171 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
K. Y. Srinivasan96e690be2011-05-10 07:54:38 -07001172 struct hv_device *dev = host_dev->dev;
1173
K. Y. Srinivasana00e8222011-11-08 09:01:43 -08001174 return storvsc_host_reset(dev);
K. Y. Srinivasan96e690be2011-05-10 07:54:38 -07001175}
1176
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001177
K. Y. Srinivasanb8de73d2011-08-27 11:31:27 -07001178static void storvsc_command_completion(struct hv_storvsc_request *request)
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001179{
1180 struct storvsc_cmd_request *cmd_request =
1181 (struct storvsc_cmd_request *)request->context;
1182 struct scsi_cmnd *scmnd = cmd_request->cmd;
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001183 struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001184 void (*scsi_done_fn)(struct scsi_cmnd *);
1185 struct scsi_sense_hdr sense_hdr;
1186 struct vmscsi_request *vm_srb;
K. Y. Srinivasanb4017312011-11-08 09:01:50 -08001187 struct storvsc_scan_work *wrk;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001188 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001189
K. Y. Srinivasan3612ef92011-08-27 11:31:20 -07001190 vm_srb = &request->vstor_packet.vm_srb;
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001191 if (cmd_request->bounce_sgl_count) {
K. Y. Srinivasana768a762011-12-01 04:59:18 -08001192 if (vm_srb->data_in == READ_TYPE)
K. Y. Srinivasan3612ef92011-08-27 11:31:20 -07001193 copy_from_bounce_buffer(scsi_sglist(scmnd),
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001194 cmd_request->bounce_sgl,
K. Y. Srinivasan10c43dd42011-12-01 04:59:19 -08001195 scsi_sg_count(scmnd),
1196 cmd_request->bounce_sgl_count);
K. Y. Srinivasana768a762011-12-01 04:59:18 -08001197 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan3612ef92011-08-27 11:31:20 -07001198 cmd_request->bounce_sgl_count);
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001199 }
1200
K. Y. Srinivasan2544b792011-08-27 11:31:28 -07001201 /*
1202 * If there is an error; offline the device since all
1203 * error recovery strategies would have already been
1204 * deployed on the host side.
1205 */
1206 if (vm_srb->srb_status == 0x4)
1207 scmnd->result = DID_TARGET_FAILURE << 16;
1208 else
1209 scmnd->result = vm_srb->scsi_status;
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001210
K. Y. Srinivasanb4017312011-11-08 09:01:50 -08001211 /*
1212 * If the LUN is invalid; remove the device.
1213 */
1214 if (vm_srb->srb_status == 0x20) {
1215 struct storvsc_device *stor_dev;
1216 struct hv_device *dev = host_dev->dev;
1217 struct Scsi_Host *host;
1218
1219 stor_dev = get_in_stor_device(dev);
1220 host = stor_dev->host;
1221
1222 wrk = kmalloc(sizeof(struct storvsc_scan_work),
1223 GFP_ATOMIC);
1224 if (!wrk) {
1225 scmnd->result = DID_TARGET_FAILURE << 16;
1226 } else {
1227 wrk->host = host;
1228 wrk->lun = vm_srb->lun;
1229 INIT_WORK(&wrk->work, storvsc_remove_lun);
1230 schedule_work(&wrk->work);
1231 }
1232 }
1233
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001234 if (scmnd->result) {
1235 if (scsi_normalize_sense(scmnd->sense_buffer,
1236 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
1237 scsi_print_sense_hdr("storvsc", &sense_hdr);
1238 }
1239
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001240 scsi_set_resid(scmnd,
1241 request->data_buffer.len -
1242 vm_srb->data_transfer_length);
1243
1244 scsi_done_fn = scmnd->scsi_done;
1245
1246 scmnd->host_scribble = NULL;
1247 scmnd->scsi_done = NULL;
1248
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001249 scsi_done_fn(scmnd);
1250
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001251 mempool_free(cmd_request, memp->request_mempool);
K. Y. Srinivasan8a411ba2011-05-10 07:54:41 -07001252}
1253
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001254static bool storvsc_check_scsi_cmd(struct scsi_cmnd *scmnd)
1255{
1256 bool allowed = true;
1257 u8 scsi_op = scmnd->cmnd[0];
1258
1259 switch (scsi_op) {
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001260 /* smartd sends this command, which will offline the device */
1261 case SET_WINDOW:
K. Y. Srinivasan59e00e72011-11-08 09:01:42 -08001262 scmnd->result = ILLEGAL_REQUEST << 16;
K. Y. Srinivasan41098f82011-10-14 21:31:57 -07001263 allowed = false;
1264 break;
1265 default:
1266 break;
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001267 }
1268 return allowed;
1269}
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001270
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001271static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001272{
1273 int ret;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001274 struct hv_host_device *host_dev = shost_priv(host);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001275 struct hv_device *dev = host_dev->dev;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001276 struct hv_storvsc_request *request;
1277 struct storvsc_cmd_request *cmd_request;
1278 unsigned int request_size = 0;
1279 int i;
1280 struct scatterlist *sgl;
1281 unsigned int sg_count = 0;
1282 struct vmscsi_request *vm_srb;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001283 struct stor_mem_pools *memp = scmnd->device->hostdata;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001284
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001285 if (storvsc_check_scsi_cmd(scmnd) == false) {
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001286 scmnd->scsi_done(scmnd);
Olaf Hering92ae4eb2011-10-10 09:37:39 +02001287 return 0;
1288 }
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001289
1290 /* If retrying, no need to prep the cmd */
1291 if (scmnd->host_scribble) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001292
1293 cmd_request =
1294 (struct storvsc_cmd_request *)scmnd->host_scribble;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001295
1296 goto retry_request;
1297 }
1298
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001299 request_size = sizeof(struct storvsc_cmd_request);
1300
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001301 cmd_request = mempool_alloc(memp->request_mempool,
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001302 GFP_ATOMIC);
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001303 if (!cmd_request)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001304 return SCSI_MLQUEUE_DEVICE_BUSY;
K. Y. Srinivasanbab445e2011-11-08 09:01:45 -08001305
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001306 memset(cmd_request, 0, sizeof(struct storvsc_cmd_request));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001307
1308 /* Setup the cmd request */
1309 cmd_request->bounce_sgl_count = 0;
1310 cmd_request->bounce_sgl = NULL;
1311 cmd_request->cmd = scmnd;
1312
1313 scmnd->host_scribble = (unsigned char *)cmd_request;
1314
1315 request = &cmd_request->request;
1316 vm_srb = &request->vstor_packet.vm_srb;
1317
1318
1319 /* Build the SRB */
1320 switch (scmnd->sc_data_direction) {
1321 case DMA_TO_DEVICE:
1322 vm_srb->data_in = WRITE_TYPE;
1323 break;
1324 case DMA_FROM_DEVICE:
1325 vm_srb->data_in = READ_TYPE;
1326 break;
1327 default:
1328 vm_srb->data_in = UNKNOWN_TYPE;
1329 break;
1330 }
1331
K. Y. Srinivasanb8de73d2011-08-27 11:31:27 -07001332 request->on_io_completion = storvsc_command_completion;
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001333 request->context = cmd_request;/* scmnd; */
1334
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001335 vm_srb->port_number = host_dev->port;
1336 vm_srb->path_id = scmnd->device->channel;
1337 vm_srb->target_id = scmnd->device->id;
1338 vm_srb->lun = scmnd->device->lun;
1339
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001340 vm_srb->cdb_length = scmnd->cmd_len;
1341
1342 memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);
1343
1344 request->sense_buffer = scmnd->sense_buffer;
1345
1346
1347 request->data_buffer.len = scsi_bufflen(scmnd);
1348 if (scsi_sg_count(scmnd)) {
1349 sgl = (struct scatterlist *)scsi_sglist(scmnd);
1350 sg_count = scsi_sg_count(scmnd);
1351
1352 /* check if we need to bounce the sgl */
1353 if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) {
1354 cmd_request->bounce_sgl =
1355 create_bounce_buffer(sgl, scsi_sg_count(scmnd),
K. Y. Srinivasan6e8087a2011-12-07 07:15:52 -08001356 scsi_bufflen(scmnd),
1357 vm_srb->data_in);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001358 if (!cmd_request->bounce_sgl) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001359 scmnd->host_scribble = NULL;
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001360 mempool_free(cmd_request,
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001361 memp->request_mempool);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001362
1363 return SCSI_MLQUEUE_HOST_BUSY;
1364 }
1365
1366 cmd_request->bounce_sgl_count =
1367 ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
1368 PAGE_SHIFT;
1369
K. Y. Srinivasanfa23b8c2011-08-27 11:31:21 -07001370 if (vm_srb->data_in == WRITE_TYPE)
1371 copy_to_bounce_buffer(sgl,
1372 cmd_request->bounce_sgl,
1373 scsi_sg_count(scmnd));
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001374
1375 sgl = cmd_request->bounce_sgl;
1376 sg_count = cmd_request->bounce_sgl_count;
1377 }
1378
1379 request->data_buffer.offset = sgl[0].offset;
1380
1381 for (i = 0; i < sg_count; i++)
1382 request->data_buffer.pfn_array[i] =
1383 page_to_pfn(sg_page((&sgl[i])));
1384
1385 } else if (scsi_sglist(scmnd)) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001386 request->data_buffer.offset =
1387 virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1);
1388 request->data_buffer.pfn_array[0] =
1389 virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT;
1390 }
1391
1392retry_request:
1393 /* Invokes the vsc to start an IO */
K. Y. Srinivasan636f0fd2011-05-10 07:54:50 -07001394 ret = storvsc_do_io(dev, &cmd_request->request);
1395
K. Y. Srinivasand2598f02011-08-25 09:48:58 -07001396 if (ret == -EAGAIN) {
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001397 /* no more space */
1398
K. Y. Srinivasan70691ec2011-08-27 11:31:29 -07001399 if (cmd_request->bounce_sgl_count)
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001400 destroy_bounce_buffer(cmd_request->bounce_sgl,
K. Y. Srinivasan70691ec2011-08-27 11:31:29 -07001401 cmd_request->bounce_sgl_count);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001402
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001403 mempool_free(cmd_request, memp->request_mempool);
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001404
K. Y. Srinivasanc5b463a2011-05-10 07:54:42 -07001405 scmnd->host_scribble = NULL;
1406
1407 ret = SCSI_MLQUEUE_DEVICE_BUSY;
1408 }
1409
1410 return ret;
1411}
1412
Hank Janssenbef4a342009-07-13 16:01:31 -07001413static struct scsi_host_template scsi_driver = {
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001414 .module = THIS_MODULE,
1415 .name = "storvsc_host_t",
1416 .bios_param = storvsc_get_chs,
1417 .queuecommand = storvsc_queuecommand,
1418 .eh_host_reset_handler = storvsc_host_reset_handler,
1419 .slave_alloc = storvsc_device_alloc,
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001420 .slave_destroy = storvsc_device_destroy,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001421 .slave_configure = storvsc_device_configure,
1422 .cmd_per_lun = 1,
1423 /* 64 max_queue * 1 target */
Lars Lindley0686e4f2010-03-11 23:51:23 +01001424 .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS,
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001425 .this_id = -1,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001426 /* no use setting to 0 since ll_blk_rw reset it to 1 */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001427 /* currently 32 */
1428 .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT,
K. Y. Srinivasan039db522011-12-01 04:59:16 -08001429 .use_clustering = DISABLE_CLUSTERING,
Bill Pemberton454f18a2009-07-27 16:47:24 -04001430 /* Make sure we dont get a sg segment crosses a page boundary */
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001431 .dma_boundary = PAGE_SIZE-1,
Hank Janssenbef4a342009-07-13 16:01:31 -07001432};
1433
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001434enum {
1435 SCSI_GUID,
1436 IDE_GUID,
1437};
1438
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001439static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001440 /* SCSI guid */
1441 { VMBUS_DEVICE(0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001442 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f)
1443 .driver_data = SCSI_GUID },
K. Y. Srinivasan21e37742011-08-27 11:31:18 -07001444 /* IDE guid */
1445 { VMBUS_DEVICE(0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44,
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001446 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5)
1447 .driver_data = IDE_GUID },
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -07001448 { },
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001449};
Hank Janssenbef4a342009-07-13 16:01:31 -07001450
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001451MODULE_DEVICE_TABLE(vmbus, id_table);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001452
K. Y. Srinivasan84946892011-09-13 10:59:38 -07001453static int storvsc_probe(struct hv_device *device,
1454 const struct hv_vmbus_device_id *dev_id)
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001455{
1456 int ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001457 struct Scsi_Host *host;
1458 struct hv_host_device *host_dev;
K. Y. Srinivasanef52a812011-09-13 10:59:39 -07001459 bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001460 int path = 0;
1461 int target = 0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001462 struct storvsc_device *stor_device;
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001463
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001464 host = scsi_host_alloc(&scsi_driver,
1465 sizeof(struct hv_host_device));
1466 if (!host)
1467 return -ENOMEM;
1468
K. Y. Srinivasan7f33f302011-11-08 09:01:44 -08001469 host_dev = shost_priv(host);
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001470 memset(host_dev, 0, sizeof(struct hv_host_device));
1471
1472 host_dev->port = host->host_no;
1473 host_dev->dev = device;
1474
K. Y. Srinivasan4e03e692011-11-08 09:01:40 -08001475
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001476 stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001477 if (!stor_device) {
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001478 ret = -ENOMEM;
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001479 goto err_out0;
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001480 }
1481
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001482 stor_device->destroy = false;
1483 init_waitqueue_head(&stor_device->waiting_to_drain);
1484 stor_device->device = device;
K. Y. Srinivasancd654ea2011-09-13 10:59:48 -07001485 stor_device->host = host;
1486 hv_set_drvdata(device, stor_device);
K. Y. Srinivasana13d35a2011-09-13 10:59:46 -07001487
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001488 stor_device->port_number = host->host_no;
1489 ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001490 if (ret)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001491 goto err_out1;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001492
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001493 if (dev_is_ide)
1494 storvsc_get_ide_info(device, &target, &path);
1495
K. Y. Srinivasan6e4198c2011-09-13 10:59:45 -07001496 host_dev->path = stor_device->path_id;
1497 host_dev->target = stor_device->target_id;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001498
1499 /* max # of devices per target */
1500 host->max_lun = STORVSC_MAX_LUNS_PER_TARGET;
1501 /* max # of targets per channel */
1502 host->max_id = STORVSC_MAX_TARGETS;
1503 /* max # of channels */
1504 host->max_channel = STORVSC_MAX_CHANNELS - 1;
Mike Sterlingcf55f4a2011-09-06 16:10:55 -07001505 /* max cmd length */
1506 host->max_cmd_len = STORVSC_MAX_CMD_LEN;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001507
1508 /* Register the HBA and start the scsi bus scan */
1509 ret = scsi_add_host(host, &device->device);
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001510 if (ret != 0)
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001511 goto err_out2;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001512
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001513 if (!dev_is_ide) {
1514 scsi_scan_host(host);
1515 return 0;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001516 }
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001517 ret = scsi_add_device(host, 0, target, 0);
1518 if (ret) {
1519 scsi_remove_host(host);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001520 goto err_out2;
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001521 }
1522 return 0;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001523
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001524err_out2:
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001525 /*
1526 * Once we have connected with the host, we would need to
1527 * to invoke storvsc_dev_remove() to rollback this state and
1528 * this call also frees up the stor_device; hence the jump around
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001529 * err_out1 label.
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001530 */
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001531 storvsc_dev_remove(device);
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001532 goto err_out0;
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001533
1534err_out1:
K. Y. Srinivasance3e3012011-12-01 04:59:20 -08001535 kfree(stor_device);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001536
1537err_out0:
K. Y. Srinivasanbd1f5d62011-08-27 11:31:17 -07001538 scsi_host_put(host);
K. Y. Srinivasan225ce6e2011-11-08 09:01:41 -08001539 return ret;
K. Y. Srinivasanf5c78872011-05-10 07:54:43 -07001540}
1541
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001542static struct hv_driver storvsc_drv = {
K. Y. Srinivasanfafb0ef2011-11-08 09:01:46 -08001543 .name = KBUILD_MODNAME,
K. Y. Srinivasand847b5f2011-08-25 09:48:33 -07001544 .id_table = id_table,
K. Y. Srinivasan40bf63e2011-05-10 07:56:09 -07001545 .probe = storvsc_probe,
1546 .remove = storvsc_remove,
K. Y. Srinivasan39ae6fa2011-05-10 07:54:46 -07001547};
K. Y. Srinivasan7bd05b92011-05-10 07:54:45 -07001548
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001549static int __init storvsc_drv_init(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001550{
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001551 u32 max_outstanding_req_per_channel;
1552
1553 /*
1554 * Divide the ring buffer data size (which is 1 page less
1555 * than the ring buffer size since that page is reserved for
1556 * the ring buffer indices) by the max request size (which is
1557 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
1558 */
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001559 max_outstanding_req_per_channel =
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001560 ((storvsc_ringbuffer_size - PAGE_SIZE) /
1561 ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
1562 sizeof(struct vstor_packet) + sizeof(u64),
1563 sizeof(u64)));
Hank Janssenbef4a342009-07-13 16:01:31 -07001564
K. Y. Srinivasan01415ab32011-05-10 07:55:58 -07001565 if (max_outstanding_req_per_channel <
K. Y. Srinivasanf8feed02011-05-10 07:54:24 -07001566 STORVSC_MAX_IO_REQUESTS)
K. Y. Srinivasanb06efc12011-08-25 09:49:10 -07001567 return -EINVAL;
Hank Janssenbef4a342009-07-13 16:01:31 -07001568
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001569 return vmbus_driver_register(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001570}
1571
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001572static void __exit storvsc_drv_exit(void)
Hank Janssenbef4a342009-07-13 16:01:31 -07001573{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001574 vmbus_driver_unregister(&storvsc_drv);
Hank Janssenbef4a342009-07-13 16:01:31 -07001575}
1576
Greg Kroah-Hartmanff568d32009-09-02 08:37:47 -07001577MODULE_LICENSE("GPL");
Hank Janssen26c14cc2010-02-11 23:02:42 +00001578MODULE_VERSION(HV_DRV_VERSION);
Stephen Hemminger3afc7cc32010-05-06 21:44:45 -07001579MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
K. Y. Srinivasand9bbae82011-06-06 15:49:27 -07001580module_init(storvsc_drv_init);
K. Y. Srinivasanc63ba9e2011-06-06 15:49:26 -07001581module_exit(storvsc_drv_exit);