]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/staging/hv/blkvsc_drv.c
drivers: autoconvert trivial BKL users to private mutex
[net-next-2.6.git] / drivers / staging / hv / blkvsc_drv.c
CommitLineData
f82bd046 1/*
f82bd046
HJ
2 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
d0e94d17 18 * Haiyang Zhang <haiyangz@microsoft.com>
f82bd046 19 * Hank Janssen <hjanssen@microsoft.com>
f82bd046 20 */
f82bd046
HJ
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/device.h>
24#include <linux/blkdev.h>
25#include <linux/major.h>
26#include <linux/delay.h>
27#include <linux/hdreg.h>
6e9624b8 28#include <linux/smp_lock.h>
5a0e3ad6 29#include <linux/slab.h>
f82bd046
HJ
30#include <scsi/scsi.h>
31#include <scsi/scsi_cmnd.h>
32#include <scsi/scsi_eh.h>
33#include <scsi/scsi_dbg.h>
4983b39a 34#include "osd.h"
645954c5 35#include "logging.h"
2d82f6c7 36#include "version_info.h"
870cde80 37#include "vmbus.h"
bb969793 38#include "storvsc_api.h"
f82bd046 39
454f18a9 40
f82bd046
HJ
41#define BLKVSC_MINORS 64
42
f82bd046
HJ
43enum blkvsc_device_type {
44 UNKNOWN_DEV_TYPE,
45 HARDDISK_TYPE,
46 DVD_TYPE,
47};
48
454f18a9
BP
49/*
50 * This request ties the struct request and struct
0b3f6834 51 * blkvsc_request/hv_storvsc_request together A struct request may be
454f18a9
BP
52 * represented by 1 or more struct blkvsc_request
53 */
f82bd046 54struct blkvsc_request_group {
8a280399
GKH
55 int outstanding;
56 int status;
57 struct list_head blkvsc_req_list; /* list of blkvsc_requests */
f82bd046
HJ
58};
59
f82bd046 60struct blkvsc_request {
8a280399
GKH
61 /* blkvsc_request_group.blkvsc_req_list */
62 struct list_head req_entry;
63
64 /* block_device_context.pending_list */
65 struct list_head pend_entry;
66
67 /* This may be null if we generate a request internally */
68 struct request *req;
f82bd046 69
8a280399 70 struct block_device_context *dev;
f82bd046 71
8a280399
GKH
72 /* The group this request is part of. Maybe null */
73 struct blkvsc_request_group *group;
f82bd046 74
8a280399 75 wait_queue_head_t wevent;
f82bd046
HJ
76 int cond;
77
8a280399
GKH
78 int write;
79 sector_t sector_start;
80 unsigned long sector_count;
f82bd046
HJ
81
82 unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE];
83 unsigned char cmd_len;
84 unsigned char cmnd[MAX_COMMAND_SIZE];
85
0b3f6834 86 struct hv_storvsc_request request;
8a280399
GKH
87 /*
88 * !!!DO NOT ADD ANYTHING BELOW HERE!!! Otherwise, memory can overlap,
89 * because - The extension buffer falls right here and is pointed to by
90 * request.Extension;
91 * Which sounds like a horrible idea, who designed this?
92 */
f82bd046
HJ
93};
94
454f18a9 95/* Per device structure */
f82bd046 96struct block_device_context {
8a280399 97 /* point back to our device context */
f916a34d 98 struct vm_device *device_ctx;
8a280399
GKH
99 struct kmem_cache *request_pool;
100 spinlock_t lock;
101 struct gendisk *gd;
f82bd046 102 enum blkvsc_device_type device_type;
8a280399
GKH
103 struct list_head pending_list;
104
105 unsigned char device_id[64];
106 unsigned int device_id_len;
107 int num_outstanding_reqs;
108 int shutting_down;
109 int media_not_present;
110 unsigned int sector_size;
111 sector_t capacity;
112 unsigned int port;
113 unsigned char path;
114 unsigned char target;
115 int users;
f82bd046
HJ
116};
117
454f18a9 118/* Per driver */
f82bd046 119struct blkvsc_driver_context {
454f18a9 120 /* !! These must be the first 2 fields !! */
8a280399
GKH
121 /* FIXME this is a bug! */
122 struct driver_context drv_ctx;
9f0c7d2c 123 struct storvsc_driver_object drv_obj;
f82bd046
HJ
124};
125
454f18a9 126/* Static decl */
f82bd046
HJ
127static int blkvsc_probe(struct device *dev);
128static int blkvsc_remove(struct device *device);
129static void blkvsc_shutdown(struct device *device);
130
39635f7d 131static int blkvsc_open(struct block_device *bdev, fmode_t mode);
77d2d9da 132static int blkvsc_release(struct gendisk *disk, fmode_t mode);
f82bd046
HJ
133static int blkvsc_media_changed(struct gendisk *gd);
134static int blkvsc_revalidate_disk(struct gendisk *gd);
135static int blkvsc_getgeo(struct block_device *bd, struct hd_geometry *hg);
dfe8b2d9
BP
136static int blkvsc_ioctl(struct block_device *bd, fmode_t mode,
137 unsigned cmd, unsigned long argument);
f82bd046 138static void blkvsc_request(struct request_queue *queue);
0b3f6834 139static void blkvsc_request_completion(struct hv_storvsc_request *request);
8a280399
GKH
140static int blkvsc_do_request(struct block_device_context *blkdev,
141 struct request *req);
142static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,
143 void (*request_completion)(struct hv_storvsc_request *));
f82bd046 144static void blkvsc_init_rw(struct blkvsc_request *blkvsc_req);
0b3f6834 145static void blkvsc_cmd_completion(struct hv_storvsc_request *request);
f82bd046
HJ
146static int blkvsc_do_inquiry(struct block_device_context *blkdev);
147static int blkvsc_do_read_capacity(struct block_device_context *blkdev);
148static int blkvsc_do_read_capacity16(struct block_device_context *blkdev);
149static int blkvsc_do_flush(struct block_device_context *blkdev);
150static int blkvsc_cancel_pending_reqs(struct block_device_context *blkdev);
151static int blkvsc_do_pending_reqs(struct block_device_context *blkdev);
152
f82bd046 153static int blkvsc_ringbuffer_size = BLKVSC_RING_BUFFER_SIZE;
1ec28abb
SH
154module_param(blkvsc_ringbuffer_size, int, S_IRUGO);
155MODULE_PARM_DESC(ring_size, "Ring buffer size (in bytes)");
f82bd046 156
454f18a9 157/* The one and only one */
f82bd046
HJ
158static struct blkvsc_driver_context g_blkvsc_drv;
159
48c9f7c3 160static const struct block_device_operations block_ops = {
f82bd046
HJ
161 .owner = THIS_MODULE,
162 .open = blkvsc_open,
163 .release = blkvsc_release,
164 .media_changed = blkvsc_media_changed,
165 .revalidate_disk = blkvsc_revalidate_disk,
166 .getgeo = blkvsc_getgeo,
167 .ioctl = blkvsc_ioctl,
168};
169
3e189519 170/*
8a280399
GKH
171 * blkvsc_drv_init - BlkVsc driver initialization.
172 */
21707bed 173static int blkvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
f82bd046 174{
9f0c7d2c 175 struct storvsc_driver_object *storvsc_drv_obj = &g_blkvsc_drv.drv_obj;
8a280399
GKH
176 struct driver_context *drv_ctx = &g_blkvsc_drv.drv_ctx;
177 int ret;
f82bd046 178
f82bd046
HJ
179 vmbus_get_interface(&storvsc_drv_obj->Base.VmbusChannelInterface);
180
181 storvsc_drv_obj->RingBufferSize = blkvsc_ringbuffer_size;
182
454f18a9 183 /* Callback to client driver to complete the initialization */
21707bed 184 drv_init(&storvsc_drv_obj->Base);
f82bd046
HJ
185
186 drv_ctx->driver.name = storvsc_drv_obj->Base.name;
8a280399
GKH
187 memcpy(&drv_ctx->class_id, &storvsc_drv_obj->Base.deviceType,
188 sizeof(struct hv_guid));
f82bd046 189
f82bd046
HJ
190 drv_ctx->probe = blkvsc_probe;
191 drv_ctx->remove = blkvsc_remove;
192 drv_ctx->shutdown = blkvsc_shutdown;
f82bd046 193
454f18a9 194 /* The driver belongs to vmbus */
5d48a1c2 195 ret = vmbus_child_driver_register(drv_ctx);
f82bd046 196
f82bd046
HJ
197 return ret;
198}
199
f82bd046
HJ
200static int blkvsc_drv_exit_cb(struct device *dev, void *data)
201{
202 struct device **curr = (struct device **)data;
203 *curr = dev;
454f18a9 204 return 1; /* stop iterating */
f82bd046
HJ
205}
206
bd1de709 207static void blkvsc_drv_exit(void)
f82bd046 208{
9f0c7d2c 209 struct storvsc_driver_object *storvsc_drv_obj = &g_blkvsc_drv.drv_obj;
8a280399
GKH
210 struct driver_context *drv_ctx = &g_blkvsc_drv.drv_ctx;
211 struct device *current_dev;
2295ba2e 212 int ret;
f82bd046 213
8a280399 214 while (1) {
f82bd046
HJ
215 current_dev = NULL;
216
454f18a9 217 /* Get the device */
2295ba2e
BP
218 ret = driver_for_each_device(&drv_ctx->driver, NULL,
219 (void *) &current_dev,
220 blkvsc_drv_exit_cb);
221
222 if (ret)
223 DPRINT_WARN(BLKVSC_DRV,
224 "driver_for_each_device returned %d", ret);
225
f82bd046
HJ
226
227 if (current_dev == NULL)
228 break;
229
454f18a9 230 /* Initiate removal from the top-down */
f82bd046
HJ
231 device_unregister(current_dev);
232 }
233
234 if (storvsc_drv_obj->Base.OnCleanup)
235 storvsc_drv_obj->Base.OnCleanup(&storvsc_drv_obj->Base);
236
237 vmbus_child_driver_unregister(drv_ctx);
238
f82bd046
HJ
239 return;
240}
241
3e189519 242/*
8a280399
GKH
243 * blkvsc_probe - Add a new device for this driver
244 */
f82bd046
HJ
245static int blkvsc_probe(struct device *device)
246{
8a280399
GKH
247 struct driver_context *driver_ctx =
248 driver_to_driver_context(device->driver);
249 struct blkvsc_driver_context *blkvsc_drv_ctx =
250 (struct blkvsc_driver_context *)driver_ctx;
251 struct storvsc_driver_object *storvsc_drv_obj =
252 &blkvsc_drv_ctx->drv_obj;
f916a34d 253 struct vm_device *device_ctx = device_to_vm_device(device);
3d3b5518 254 struct hv_device *device_obj = &device_ctx->device_obj;
f82bd046 255
8a280399 256 struct block_device_context *blkdev = NULL;
9f0c7d2c 257 struct storvsc_device_info device_info;
8a280399
GKH
258 int major = 0;
259 int devnum = 0;
260 int ret = 0;
261 static int ide0_registered;
262 static int ide1_registered;
f82bd046 263
f82bd046
HJ
264 DPRINT_DBG(BLKVSC_DRV, "blkvsc_probe - enter");
265
8a280399 266 if (!storvsc_drv_obj->Base.OnDeviceAdd) {
f82bd046 267 DPRINT_ERR(BLKVSC_DRV, "OnDeviceAdd() not set");
f82bd046
HJ
268 ret = -1;
269 goto Cleanup;
270 }
271
272 blkdev = kzalloc(sizeof(struct block_device_context), GFP_KERNEL);
8a280399 273 if (!blkdev) {
f82bd046
HJ
274 ret = -ENOMEM;
275 goto Cleanup;
276 }
277
278 INIT_LIST_HEAD(&blkdev->pending_list);
279
454f18a9 280 /* Initialize what we can here */
f82bd046
HJ
281 spin_lock_init(&blkdev->lock);
282
4e5166b5
BP
283 /* ASSERT(sizeof(struct blkvsc_request_group) <= */
284 /* sizeof(struct blkvsc_request)); */
f82bd046 285
454f18a9 286 blkdev->request_pool = kmem_cache_create(dev_name(&device_ctx->device),
8a280399
GKH
287 sizeof(struct blkvsc_request) +
288 storvsc_drv_obj->RequestExtSize, 0,
289 SLAB_HWCACHE_ALIGN, NULL);
290 if (!blkdev->request_pool) {
f82bd046
HJ
291 ret = -ENOMEM;
292 goto Cleanup;
293 }
294
295
454f18a9 296 /* Call to the vsc driver to add the device */
f82bd046 297 ret = storvsc_drv_obj->Base.OnDeviceAdd(device_obj, &device_info);
8a280399 298 if (ret != 0) {
f82bd046
HJ
299 DPRINT_ERR(BLKVSC_DRV, "unable to add blkvsc device");
300 goto Cleanup;
301 }
302
303 blkdev->device_ctx = device_ctx;
8a280399
GKH
304 /* this identified the device 0 or 1 */
305 blkdev->target = device_info.TargetId;
306 /* this identified the ide ctrl 0 or 1 */
307 blkdev->path = device_info.PathId;
f82bd046 308
b57a68dc 309 dev_set_drvdata(device, blkdev);
f82bd046 310
454f18a9 311 /* Calculate the major and device num */
8a280399 312 if (blkdev->path == 0) {
f82bd046 313 major = IDE0_MAJOR;
454f18a9 314 devnum = blkdev->path + blkdev->target; /* 0 or 1 */
f82bd046 315
8a280399 316 if (!ide0_registered) {
f82bd046 317 ret = register_blkdev(major, "ide");
8a280399
GKH
318 if (ret != 0) {
319 DPRINT_ERR(BLKVSC_DRV,
320 "register_blkdev() failed! ret %d",
321 ret);
f82bd046
HJ
322 goto Remove;
323 }
324
325 ide0_registered = 1;
326 }
8a280399 327 } else if (blkdev->path == 1) {
f82bd046 328 major = IDE1_MAJOR;
454f18a9 329 devnum = blkdev->path + blkdev->target + 1; /* 2 or 3 */
f82bd046 330
8a280399 331 if (!ide1_registered) {
f82bd046 332 ret = register_blkdev(major, "ide");
8a280399
GKH
333 if (ret != 0) {
334 DPRINT_ERR(BLKVSC_DRV,
335 "register_blkdev() failed! ret %d",
336 ret);
f82bd046
HJ
337 goto Remove;
338 }
339
340 ide1_registered = 1;
341 }
8a280399 342 } else {
f82bd046
HJ
343 DPRINT_ERR(BLKVSC_DRV, "invalid pathid");
344 ret = -1;
345 goto Cleanup;
346 }
347
348 DPRINT_INFO(BLKVSC_DRV, "blkvsc registered for major %d!!", major);
349
350 blkdev->gd = alloc_disk(BLKVSC_MINORS);
8a280399 351 if (!blkdev->gd) {
f82bd046
HJ
352 DPRINT_ERR(BLKVSC_DRV, "register_blkdev() failed! ret %d", ret);
353 ret = -1;
354 goto Cleanup;
355 }
356
357 blkdev->gd->queue = blk_init_queue(blkvsc_request, &blkdev->lock);
358
359 blk_queue_max_segment_size(blkdev->gd->queue, PAGE_SIZE);
8a78362c 360 blk_queue_max_segments(blkdev->gd->queue, MAX_MULTIPAGE_BUFFER_COUNT);
f82bd046
HJ
361 blk_queue_segment_boundary(blkdev->gd->queue, PAGE_SIZE-1);
362 blk_queue_bounce_limit(blkdev->gd->queue, BLK_BOUNCE_ANY);
363 blk_queue_dma_alignment(blkdev->gd->queue, 511);
364
365 blkdev->gd->major = major;
366 if (devnum == 1 || devnum == 3)
367 blkdev->gd->first_minor = BLKVSC_MINORS;
368 else
369 blkdev->gd->first_minor = 0;
370 blkdev->gd->fops = &block_ops;
371 blkdev->gd->private_data = blkdev;
8a280399 372 sprintf(blkdev->gd->disk_name, "hd%c", 'a' + devnum);
f82bd046
HJ
373
374 blkvsc_do_inquiry(blkdev);
8a280399 375 if (blkdev->device_type == DVD_TYPE) {
f82bd046
HJ
376 set_disk_ro(blkdev->gd, 1);
377 blkdev->gd->flags |= GENHD_FL_REMOVABLE;
378 blkvsc_do_read_capacity(blkdev);
8a280399 379 } else {
f82bd046
HJ
380 blkvsc_do_read_capacity16(blkdev);
381 }
382
383 set_capacity(blkdev->gd, blkdev->capacity * (blkdev->sector_size/512));
0fce4c2f 384 blk_queue_logical_block_size(blkdev->gd->queue, blkdev->sector_size);
454f18a9 385 /* go! */
f82bd046
HJ
386 add_disk(blkdev->gd);
387
8a280399
GKH
388 DPRINT_INFO(BLKVSC_DRV, "%s added!! capacity %lu sector_size %d",
389 blkdev->gd->disk_name, (unsigned long)blkdev->capacity,
390 blkdev->sector_size);
f82bd046
HJ
391
392 return ret;
393
394Remove:
395 storvsc_drv_obj->Base.OnDeviceRemove(device_obj);
396
397Cleanup:
8a280399
GKH
398 if (blkdev) {
399 if (blkdev->request_pool) {
f82bd046
HJ
400 kmem_cache_destroy(blkdev->request_pool);
401 blkdev->request_pool = NULL;
402 }
403 kfree(blkdev);
404 blkdev = NULL;
405 }
406
f82bd046
HJ
407 return ret;
408}
409
410static void blkvsc_shutdown(struct device *device)
411{
b57a68dc 412 struct block_device_context *blkdev = dev_get_drvdata(device);
f82bd046
HJ
413 unsigned long flags;
414
415 if (!blkdev)
416 return;
417
8a280399
GKH
418 DPRINT_DBG(BLKVSC_DRV, "blkvsc_shutdown - users %d disk %s\n",
419 blkdev->users, blkdev->gd->disk_name);
f82bd046
HJ
420
421 spin_lock_irqsave(&blkdev->lock, flags);
422
423 blkdev->shutting_down = 1;
424
425 blk_stop_queue(blkdev->gd->queue);
426
427 spin_unlock_irqrestore(&blkdev->lock, flags);
428
8a280399
GKH
429 while (blkdev->num_outstanding_reqs) {
430 DPRINT_INFO(STORVSC, "waiting for %d requests to complete...",
431 blkdev->num_outstanding_reqs);
f82bd046
HJ
432 udelay(100);
433 }
434
435 blkvsc_do_flush(blkdev);
436
437 spin_lock_irqsave(&blkdev->lock, flags);
438
439 blkvsc_cancel_pending_reqs(blkdev);
440
441 spin_unlock_irqrestore(&blkdev->lock, flags);
442}
443
444static int blkvsc_do_flush(struct block_device_context *blkdev)
445{
8a280399 446 struct blkvsc_request *blkvsc_req;
f82bd046
HJ
447
448 DPRINT_DBG(BLKVSC_DRV, "blkvsc_do_flush()\n");
449
450 if (blkdev->device_type != HARDDISK_TYPE)
451 return 0;
452
453 blkvsc_req = kmem_cache_alloc(blkdev->request_pool, GFP_KERNEL);
454 if (!blkvsc_req)
f82bd046 455 return -ENOMEM;
f82bd046
HJ
456
457 memset(blkvsc_req, 0, sizeof(struct blkvsc_request));
458 init_waitqueue_head(&blkvsc_req->wevent);
459 blkvsc_req->dev = blkdev;
460 blkvsc_req->req = NULL;
461 blkvsc_req->write = 0;
462
463 blkvsc_req->request.DataBuffer.PfnArray[0] = 0;
464 blkvsc_req->request.DataBuffer.Offset = 0;
465 blkvsc_req->request.DataBuffer.Length = 0;
466
467 blkvsc_req->cmnd[0] = SYNCHRONIZE_CACHE;
468 blkvsc_req->cmd_len = 10;
469
8a280399
GKH
470 /*
471 * Set this here since the completion routine may be invoked and
472 * completed before we return
473 */
474 blkvsc_req->cond = 0;
f82bd046
HJ
475 blkvsc_submit_request(blkvsc_req, blkvsc_cmd_completion);
476
477 wait_event_interruptible(blkvsc_req->wevent, blkvsc_req->cond);
478
479 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
480
481 return 0;
482}
483
454f18a9 484/* Do a scsi INQUIRY cmd here to get the device type (ie disk or dvd) */
f82bd046
HJ
485static int blkvsc_do_inquiry(struct block_device_context *blkdev)
486{
8a280399 487 struct blkvsc_request *blkvsc_req;
f82bd046
HJ
488 struct page *page_buf;
489 unsigned char *buf;
490 unsigned char device_type;
491
492 DPRINT_DBG(BLKVSC_DRV, "blkvsc_do_inquiry()\n");
493
494 blkvsc_req = kmem_cache_alloc(blkdev->request_pool, GFP_KERNEL);
495 if (!blkvsc_req)
f82bd046 496 return -ENOMEM;
f82bd046
HJ
497
498 memset(blkvsc_req, 0, sizeof(struct blkvsc_request));
499 page_buf = alloc_page(GFP_KERNEL);
8a280399 500 if (!page_buf) {
f82bd046
HJ
501 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
502 return -ENOMEM;
503 }
504
505 init_waitqueue_head(&blkvsc_req->wevent);
506 blkvsc_req->dev = blkdev;
507 blkvsc_req->req = NULL;
508 blkvsc_req->write = 0;
509
510 blkvsc_req->request.DataBuffer.PfnArray[0] = page_to_pfn(page_buf);
511 blkvsc_req->request.DataBuffer.Offset = 0;
512 blkvsc_req->request.DataBuffer.Length = 64;
513
514 blkvsc_req->cmnd[0] = INQUIRY;
454f18a9
BP
515 blkvsc_req->cmnd[1] = 0x1; /* Get product data */
516 blkvsc_req->cmnd[2] = 0x83; /* mode page 83 */
f82bd046
HJ
517 blkvsc_req->cmnd[4] = 64;
518 blkvsc_req->cmd_len = 6;
519
8a280399
GKH
520 /*
521 * Set this here since the completion routine may be invoked and
522 * completed before we return
523 */
524 blkvsc_req->cond = 0;
f82bd046
HJ
525
526 blkvsc_submit_request(blkvsc_req, blkvsc_cmd_completion);
527
8a280399
GKH
528 DPRINT_DBG(BLKVSC_DRV, "waiting %p to complete - cond %d\n",
529 blkvsc_req, blkvsc_req->cond);
f82bd046
HJ
530
531 wait_event_interruptible(blkvsc_req->wevent, blkvsc_req->cond);
532
533 buf = kmap(page_buf);
534
04f50c4d 535 /* print_hex_dump_bytes("", DUMP_PREFIX_NONE, buf, 64); */
454f18a9 536 /* be to le */
f82bd046
HJ
537 device_type = buf[0] & 0x1F;
538
8a280399 539 if (device_type == 0x0) {
f82bd046 540 blkdev->device_type = HARDDISK_TYPE;
8a280399 541 } else if (device_type == 0x5) {
f82bd046 542 blkdev->device_type = DVD_TYPE;
8a280399 543 } else {
454f18a9 544 /* TODO: this is currently unsupported device type */
f82bd046
HJ
545 blkdev->device_type = UNKNOWN_DEV_TYPE;
546 }
547
0686e4f4 548 DPRINT_DBG(BLKVSC_DRV, "device type %d\n", device_type);
f82bd046
HJ
549
550 blkdev->device_id_len = buf[7];
551 if (blkdev->device_id_len > 64)
552 blkdev->device_id_len = 64;
553
554 memcpy(blkdev->device_id, &buf[8], blkdev->device_id_len);
04f50c4d 555 /* printk_hex_dump_bytes("", DUMP_PREFIX_NONE, blkdev->device_id,
454f18a9 556 * blkdev->device_id_len); */
f82bd046
HJ
557
558 kunmap(page_buf);
559
560 __free_page(page_buf);
561
562 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
563
564 return 0;
565}
566
454f18a9 567/* Do a scsi READ_CAPACITY cmd here to get the size of the disk */
f82bd046
HJ
568static int blkvsc_do_read_capacity(struct block_device_context *blkdev)
569{
8a280399 570 struct blkvsc_request *blkvsc_req;
f82bd046
HJ
571 struct page *page_buf;
572 unsigned char *buf;
573 struct scsi_sense_hdr sense_hdr;
574
575 DPRINT_DBG(BLKVSC_DRV, "blkvsc_do_read_capacity()\n");
576
577 blkdev->sector_size = 0;
578 blkdev->capacity = 0;
454f18a9 579 blkdev->media_not_present = 0; /* assume a disk is present */
f82bd046
HJ
580
581 blkvsc_req = kmem_cache_alloc(blkdev->request_pool, GFP_KERNEL);
582 if (!blkvsc_req)
f82bd046 583 return -ENOMEM;
f82bd046
HJ
584
585 memset(blkvsc_req, 0, sizeof(struct blkvsc_request));
586 page_buf = alloc_page(GFP_KERNEL);
8a280399 587 if (!page_buf) {
f82bd046
HJ
588 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
589 return -ENOMEM;
590 }
591
592 init_waitqueue_head(&blkvsc_req->wevent);
593 blkvsc_req->dev = blkdev;
594 blkvsc_req->req = NULL;
595 blkvsc_req->write = 0;
596
597 blkvsc_req->request.DataBuffer.PfnArray[0] = page_to_pfn(page_buf);
598 blkvsc_req->request.DataBuffer.Offset = 0;
599 blkvsc_req->request.DataBuffer.Length = 8;
600
601 blkvsc_req->cmnd[0] = READ_CAPACITY;
602 blkvsc_req->cmd_len = 16;
603
454f18a9
BP
604 /*
605 * Set this here since the completion routine may be invoked
606 * and completed before we return
607 */
8a280399 608 blkvsc_req->cond = 0;
f82bd046
HJ
609
610 blkvsc_submit_request(blkvsc_req, blkvsc_cmd_completion);
611
8a280399
GKH
612 DPRINT_DBG(BLKVSC_DRV, "waiting %p to complete - cond %d\n",
613 blkvsc_req, blkvsc_req->cond);
f82bd046
HJ
614
615 wait_event_interruptible(blkvsc_req->wevent, blkvsc_req->cond);
616
454f18a9 617 /* check error */
8a280399
GKH
618 if (blkvsc_req->request.Status) {
619 scsi_normalize_sense(blkvsc_req->sense_buffer,
620 SCSI_SENSE_BUFFERSIZE, &sense_hdr);
f82bd046 621
8a280399
GKH
622 if (sense_hdr.asc == 0x3A) {
623 /* Medium not present */
f82bd046
HJ
624 blkdev->media_not_present = 1;
625 }
f82bd046
HJ
626 return 0;
627 }
628 buf = kmap(page_buf);
629
454f18a9 630 /* be to le */
8a280399
GKH
631 blkdev->capacity = ((buf[0] << 24) | (buf[1] << 16) |
632 (buf[2] << 8) | buf[3]) + 1;
633 blkdev->sector_size = (buf[4] << 24) | (buf[5] << 16) |
634 (buf[6] << 8) | buf[7];
f82bd046
HJ
635
636 kunmap(page_buf);
637
638 __free_page(page_buf);
639
640 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
641
642 return 0;
643}
644
f82bd046
HJ
645static int blkvsc_do_read_capacity16(struct block_device_context *blkdev)
646{
8a280399 647 struct blkvsc_request *blkvsc_req;
f82bd046
HJ
648 struct page *page_buf;
649 unsigned char *buf;
650 struct scsi_sense_hdr sense_hdr;
651
652 DPRINT_DBG(BLKVSC_DRV, "blkvsc_do_read_capacity16()\n");
653
654 blkdev->sector_size = 0;
655 blkdev->capacity = 0;
454f18a9 656 blkdev->media_not_present = 0; /* assume a disk is present */
f82bd046
HJ
657
658 blkvsc_req = kmem_cache_alloc(blkdev->request_pool, GFP_KERNEL);
659 if (!blkvsc_req)
f82bd046 660 return -ENOMEM;
f82bd046
HJ
661
662 memset(blkvsc_req, 0, sizeof(struct blkvsc_request));
663 page_buf = alloc_page(GFP_KERNEL);
8a280399 664 if (!page_buf) {
f82bd046
HJ
665 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
666 return -ENOMEM;
667 }
668
669 init_waitqueue_head(&blkvsc_req->wevent);
670 blkvsc_req->dev = blkdev;
671 blkvsc_req->req = NULL;
672 blkvsc_req->write = 0;
673
674 blkvsc_req->request.DataBuffer.PfnArray[0] = page_to_pfn(page_buf);
675 blkvsc_req->request.DataBuffer.Offset = 0;
676 blkvsc_req->request.DataBuffer.Length = 12;
677
454f18a9 678 blkvsc_req->cmnd[0] = 0x9E; /* READ_CAPACITY16; */
f82bd046
HJ
679 blkvsc_req->cmd_len = 16;
680
454f18a9
BP
681 /*
682 * Set this here since the completion routine may be invoked
683 * and completed before we return
684 */
8a280399 685 blkvsc_req->cond = 0;
f82bd046
HJ
686
687 blkvsc_submit_request(blkvsc_req, blkvsc_cmd_completion);
688
8a280399
GKH
689 DPRINT_DBG(BLKVSC_DRV, "waiting %p to complete - cond %d\n",
690 blkvsc_req, blkvsc_req->cond);
f82bd046
HJ
691
692 wait_event_interruptible(blkvsc_req->wevent, blkvsc_req->cond);
693
454f18a9 694 /* check error */
8a280399
GKH
695 if (blkvsc_req->request.Status) {
696 scsi_normalize_sense(blkvsc_req->sense_buffer,
697 SCSI_SENSE_BUFFERSIZE, &sense_hdr);
698 if (sense_hdr.asc == 0x3A) {
699 /* Medium not present */
f82bd046
HJ
700 blkdev->media_not_present = 1;
701 }
f82bd046
HJ
702 return 0;
703 }
704 buf = kmap(page_buf);
705
454f18a9 706 /* be to le */
8a280399
GKH
707 blkdev->capacity = be64_to_cpu(*(unsigned long long *) &buf[0]) + 1;
708 blkdev->sector_size = be32_to_cpu(*(unsigned int *)&buf[8]);
f82bd046 709
8a280399
GKH
710#if 0
711 blkdev->capacity = ((buf[0] << 24) | (buf[1] << 16) |
712 (buf[2] << 8) | buf[3]) + 1;
713 blkdev->sector_size = (buf[4] << 24) | (buf[5] << 16) |
714 (buf[6] << 8) | buf[7];
715#endif
f82bd046
HJ
716
717 kunmap(page_buf);
718
719 __free_page(page_buf);
720
721 kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);
722
723 return 0;
724}
725
3e189519 726/*
8a280399
GKH
727 * blkvsc_remove() - Callback when our device is removed
728 */
f82bd046
HJ
729static int blkvsc_remove(struct device *device)
730{
8a280399
GKH
731 struct driver_context *driver_ctx =
732 driver_to_driver_context(device->driver);
733 struct blkvsc_driver_context *blkvsc_drv_ctx =
734 (struct blkvsc_driver_context *)driver_ctx;
735 struct storvsc_driver_object *storvsc_drv_obj =
736 &blkvsc_drv_ctx->drv_obj;
f916a34d 737 struct vm_device *device_ctx = device_to_vm_device(device);
3d3b5518 738 struct hv_device *device_obj = &device_ctx->device_obj;
b57a68dc 739 struct block_device_context *blkdev = dev_get_drvdata(device);
f82bd046 740 unsigned long flags;
8a280399 741 int ret;
f82bd046 742
f82bd046
HJ
743 DPRINT_DBG(BLKVSC_DRV, "blkvsc_remove()\n");
744
83c720ea 745 if (!storvsc_drv_obj->Base.OnDeviceRemove)
f82bd046 746 return -1;
f82bd046 747
8a280399
GKH
748 /*
749 * Call to the vsc driver to let it know that the device is being
750 * removed
751 */
f82bd046 752 ret = storvsc_drv_obj->Base.OnDeviceRemove(device_obj);
8a280399 753 if (ret != 0) {
454f18a9 754 /* TODO: */
8a280399
GKH
755 DPRINT_ERR(BLKVSC_DRV,
756 "unable to remove blkvsc device (ret %d)", ret);
f82bd046
HJ
757 }
758
454f18a9 759 /* Get to a known state */
f82bd046
HJ
760 spin_lock_irqsave(&blkdev->lock, flags);
761
762 blkdev->shutting_down = 1;
763
764 blk_stop_queue(blkdev->gd->queue);
765
766 spin_unlock_irqrestore(&blkdev->lock, flags);
767
8a280399
GKH
768 while (blkdev->num_outstanding_reqs) {
769 DPRINT_INFO(STORVSC, "waiting for %d requests to complete...",
770 blkdev->num_outstanding_reqs);
f82bd046
HJ
771 udelay(100);
772 }
773
774 blkvsc_do_flush(blkdev);
775
776 spin_lock_irqsave(&blkdev->lock, flags);
777
778 blkvsc_cancel_pending_reqs(blkdev);
779
780 spin_unlock_irqrestore(&blkdev->lock, flags);
781
782 blk_cleanup_queue(blkdev->gd->queue);
783
784 del_gendisk(blkdev->gd);
785
786 kmem_cache_destroy(blkdev->request_pool);
787
788 kfree(blkdev);
789
f82bd046
HJ
790 return ret;
791}
792
793static void blkvsc_init_rw(struct blkvsc_request *blkvsc_req)
794{
4e5166b5
BP
795 /* ASSERT(blkvsc_req->req); */
796 /* ASSERT(blkvsc_req->sector_count <= (MAX_MULTIPAGE_BUFFER_COUNT*8)); */
f82bd046
HJ
797
798 blkvsc_req->cmd_len = 16;
799
8a280399
GKH
800 if (blkvsc_req->sector_start > 0xffffffff) {
801 if (rq_data_dir(blkvsc_req->req)) {
f82bd046
HJ
802 blkvsc_req->write = 1;
803 blkvsc_req->cmnd[0] = WRITE_16;
8a280399 804 } else {
f82bd046
HJ
805 blkvsc_req->write = 0;
806 blkvsc_req->cmnd[0] = READ_16;
807 }
808
33659ebb
CH
809 blkvsc_req->cmnd[1] |=
810 (blkvsc_req->req->cmd_flags & REQ_FUA) ? 0x8 : 0;
f82bd046 811
8a280399
GKH
812 *(unsigned long long *)&blkvsc_req->cmnd[2] =
813 cpu_to_be64(blkvsc_req->sector_start);
814 *(unsigned int *)&blkvsc_req->cmnd[10] =
815 cpu_to_be32(blkvsc_req->sector_count);
816 } else if ((blkvsc_req->sector_count > 0xff) ||
817 (blkvsc_req->sector_start > 0x1fffff)) {
818 if (rq_data_dir(blkvsc_req->req)) {
f82bd046
HJ
819 blkvsc_req->write = 1;
820 blkvsc_req->cmnd[0] = WRITE_10;
8a280399 821 } else {
f82bd046
HJ
822 blkvsc_req->write = 0;
823 blkvsc_req->cmnd[0] = READ_10;
824 }
825
33659ebb
CH
826 blkvsc_req->cmnd[1] |=
827 (blkvsc_req->req->cmd_flags & REQ_FUA) ? 0x8 : 0;
f82bd046 828
8a280399
GKH
829 *(unsigned int *)&blkvsc_req->cmnd[2] =
830 cpu_to_be32(blkvsc_req->sector_start);
831 *(unsigned short *)&blkvsc_req->cmnd[7] =
832 cpu_to_be16(blkvsc_req->sector_count);
833 } else {
834 if (rq_data_dir(blkvsc_req->req)) {
f82bd046
HJ
835 blkvsc_req->write = 1;
836 blkvsc_req->cmnd[0] = WRITE_6;
8a280399 837 } else {
f82bd046
HJ
838 blkvsc_req->write = 0;
839 blkvsc_req->cmnd[0] = READ_6;
840 }
841
8a280399
GKH
842 *(unsigned int *)&blkvsc_req->cmnd[1] =
843 cpu_to_be32(blkvsc_req->sector_start) >> 8;
f82bd046 844 blkvsc_req->cmnd[1] &= 0x1f;
8a280399 845 blkvsc_req->cmnd[4] = (unsigned char)blkvsc_req->sector_count;
f82bd046
HJ
846 }
847}
848
8a280399
GKH
849static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,
850 void (*request_completion)(struct hv_storvsc_request *))
f82bd046
HJ
851{
852 struct block_device_context *blkdev = blkvsc_req->dev;
f916a34d 853 struct vm_device *device_ctx = blkdev->device_ctx;
8a280399
GKH
854 struct driver_context *driver_ctx =
855 driver_to_driver_context(device_ctx->device.driver);
856 struct blkvsc_driver_context *blkvsc_drv_ctx =
857 (struct blkvsc_driver_context *)driver_ctx;
858 struct storvsc_driver_object *storvsc_drv_obj =
859 &blkvsc_drv_ctx->drv_obj;
0b3f6834 860 struct hv_storvsc_request *storvsc_req;
8a280399 861 int ret;
f82bd046 862
8a280399
GKH
863 DPRINT_DBG(BLKVSC_DRV, "blkvsc_submit_request() - "
864 "req %p type %s start_sector %lu count %ld offset %d "
865 "len %d\n", blkvsc_req,
866 (blkvsc_req->write) ? "WRITE" : "READ",
867 (unsigned long) blkvsc_req->sector_start,
868 blkvsc_req->sector_count,
869 blkvsc_req->request.DataBuffer.Offset,
870 blkvsc_req->request.DataBuffer.Length);
871#if 0
872 for (i = 0; i < (blkvsc_req->request.DataBuffer.Length >> 12); i++) {
873 DPRINT_DBG(BLKVSC_DRV, "blkvsc_submit_request() - "
874 "req %p pfn[%d] %llx\n",
875 blkvsc_req, i,
876 blkvsc_req->request.DataBuffer.PfnArray[i]);
877 }
878#endif
f82bd046
HJ
879
880 storvsc_req = &blkvsc_req->request;
8a280399
GKH
881 storvsc_req->Extension = (void *)((unsigned long)blkvsc_req +
882 sizeof(struct blkvsc_request));
f82bd046 883
8a280399 884 storvsc_req->Type = blkvsc_req->write ? WRITE_TYPE : READ_TYPE;
f82bd046
HJ
885
886 storvsc_req->OnIOCompletion = request_completion;
887 storvsc_req->Context = blkvsc_req;
888
889 storvsc_req->Host = blkdev->port;
890 storvsc_req->Bus = blkdev->path;
891 storvsc_req->TargetId = blkdev->target;
454f18a9 892 storvsc_req->LunId = 0; /* this is not really used at all */
f82bd046
HJ
893
894 storvsc_req->CdbLen = blkvsc_req->cmd_len;
895 storvsc_req->Cdb = blkvsc_req->cmnd;
896
897 storvsc_req->SenseBuffer = blkvsc_req->sense_buffer;
898 storvsc_req->SenseBufferSize = SCSI_SENSE_BUFFERSIZE;
899
8a280399
GKH
900 ret = storvsc_drv_obj->OnIORequest(&blkdev->device_ctx->device_obj,
901 &blkvsc_req->request);
f82bd046 902 if (ret == 0)
f82bd046 903 blkdev->num_outstanding_reqs++;
f82bd046
HJ
904
905 return ret;
906}
907
454f18a9
BP
908/*
909 * We break the request into 1 or more blkvsc_requests and submit
910 * them. If we cant submit them all, we put them on the
911 * pending_list. The blkvsc_request() will work on the pending_list.
912 */
8a280399
GKH
913static int blkvsc_do_request(struct block_device_context *blkdev,
914 struct request *req)
f82bd046 915{
8a280399
GKH
916 struct bio *bio = NULL;
917 struct bio_vec *bvec = NULL;
918 struct bio_vec *prev_bvec = NULL;
919 struct blkvsc_request *blkvsc_req = NULL;
f82bd046 920 struct blkvsc_request *tmp;
8a280399
GKH
921 int databuf_idx = 0;
922 int seg_idx = 0;
f82bd046
HJ
923 sector_t start_sector;
924 unsigned long num_sectors = 0;
8a280399
GKH
925 int ret = 0;
926 int pending = 0;
927 struct blkvsc_request_group *group = NULL;
f82bd046 928
0686e4f4 929 DPRINT_DBG(BLKVSC_DRV, "blkdev %p req %p sect %lu\n", blkdev, req,
8a280399 930 (unsigned long)blk_rq_pos(req));
f82bd046 931
454f18a9 932 /* Create a group to tie req to list of blkvsc_reqs */
8a280399 933 group = kmem_cache_alloc(blkdev->request_pool, GFP_ATOMIC);
f82bd046 934 if (!group)
f82bd046 935 return -ENOMEM;
f82bd046
HJ
936
937 INIT_LIST_HEAD(&group->blkvsc_req_list);
938 group->outstanding = group->status = 0;
939
0fce4c2f 940 start_sector = blk_rq_pos(req);
f82bd046 941
454f18a9 942 /* foreach bio in the request */
8a280399
GKH
943 if (req->bio) {
944 for (bio = req->bio; bio; bio = bio->bi_next) {
945 /*
946 * Map this bio into an existing or new storvsc request
947 */
948 bio_for_each_segment(bvec, bio, seg_idx) {
949 DPRINT_DBG(BLKVSC_DRV, "bio_for_each_segment() "
950 "- req %p bio %p bvec %p seg_idx %d "
951 "databuf_idx %d\n", req, bio, bvec,
952 seg_idx, databuf_idx);
953
954 /* Get a new storvsc request */
955 /* 1st-time */
956 if ((!blkvsc_req) ||
957 (databuf_idx >= MAX_MULTIPAGE_BUFFER_COUNT)
958 /* hole at the begin of page */
959 || (bvec->bv_offset != 0) ||
960 /* hold at the end of page */
961 (prev_bvec &&
962 (prev_bvec->bv_len != PAGE_SIZE))) {
963 /* submit the prev one */
964 if (blkvsc_req) {
965 blkvsc_req->sector_start = start_sector;
966 sector_div(blkvsc_req->sector_start, (blkdev->sector_size >> 9));
967
968 blkvsc_req->sector_count = num_sectors / (blkdev->sector_size >> 9);
969 blkvsc_init_rw(blkvsc_req);
f82bd046
HJ
970 }
971
8a280399
GKH
972 /*
973 * Create new blkvsc_req to represent
974 * the current bvec
975 */
976 blkvsc_req = kmem_cache_alloc(blkdev->request_pool, GFP_ATOMIC);
977 if (!blkvsc_req) {
978 /* free up everything */
979 list_for_each_entry_safe(
980 blkvsc_req, tmp,
981 &group->blkvsc_req_list,
982 req_entry) {
983 list_del(&blkvsc_req->req_entry);
984 kmem_cache_free(blkdev->request_pool, blkvsc_req);
985 }
986
987 kmem_cache_free(blkdev->request_pool, group);
988 return -ENOMEM;
989 }
f82bd046 990
8a280399
GKH
991 memset(blkvsc_req, 0,
992 sizeof(struct blkvsc_request));
f82bd046 993
8a280399
GKH
994 blkvsc_req->dev = blkdev;
995 blkvsc_req->req = req;
996 blkvsc_req->request.DataBuffer.Offset = bvec->bv_offset;
997 blkvsc_req->request.DataBuffer.Length = 0;
f82bd046 998
8a280399
GKH
999 /* Add to the group */
1000 blkvsc_req->group = group;
1001 blkvsc_req->group->outstanding++;
1002 list_add_tail(&blkvsc_req->req_entry,
1003 &blkvsc_req->group->blkvsc_req_list);
f82bd046 1004
8a280399
GKH
1005 start_sector += num_sectors;
1006 num_sectors = 0;
1007 databuf_idx = 0;
1008 }
f82bd046 1009
8a280399
GKH
1010 /* Add the curr bvec/segment to the curr blkvsc_req */
1011 blkvsc_req->request.DataBuffer.PfnArray[databuf_idx] = page_to_pfn(bvec->bv_page);
1012 blkvsc_req->request.DataBuffer.Length += bvec->bv_len;
f82bd046 1013
8a280399 1014 prev_bvec = bvec;
f82bd046 1015
8a280399
GKH
1016 databuf_idx++;
1017 num_sectors += bvec->bv_len >> 9;
f82bd046 1018
8a280399 1019 } /* bio_for_each_segment */
f82bd046 1020
8a280399
GKH
1021 } /* rq_for_each_bio */
1022 }
f82bd046 1023
454f18a9 1024 /* Handle the last one */
8a280399
GKH
1025 if (blkvsc_req) {
1026 DPRINT_DBG(BLKVSC_DRV, "blkdev %p req %p group %p count %d\n",
1027 blkdev, req, blkvsc_req->group,
1028 blkvsc_req->group->outstanding);
f82bd046
HJ
1029
1030 blkvsc_req->sector_start = start_sector;
8a280399
GKH
1031 sector_div(blkvsc_req->sector_start,
1032 (blkdev->sector_size >> 9));
f82bd046 1033
8a280399
GKH
1034 blkvsc_req->sector_count = num_sectors /
1035 (blkdev->sector_size >> 9);
f82bd046
HJ
1036
1037 blkvsc_init_rw(blkvsc_req);
1038 }
1039
8a280399
GKH
1040 list_for_each_entry(blkvsc_req, &group->blkvsc_req_list, req_entry) {
1041 if (pending) {
1042 DPRINT_DBG(BLKVSC_DRV, "adding blkvsc_req to "
1043 "pending_list - blkvsc_req %p start_sect %lu"
1044 " sect_count %ld (%lu %ld)\n", blkvsc_req,
1045 (unsigned long)blkvsc_req->sector_start,
1046 blkvsc_req->sector_count,
1047 (unsigned long)start_sector,
1048 (unsigned long)num_sectors);
1049
1050 list_add_tail(&blkvsc_req->pend_entry,
1051 &blkdev->pending_list);
1052 } else {
1053 ret = blkvsc_submit_request(blkvsc_req,
1054 blkvsc_request_completion);
1055 if (ret == -1) {
f82bd046 1056 pending = 1;
8a280399
GKH
1057 list_add_tail(&blkvsc_req->pend_entry,
1058 &blkdev->pending_list);
f82bd046
HJ
1059 }
1060
8a280399
GKH
1061 DPRINT_DBG(BLKVSC_DRV, "submitted blkvsc_req %p "
1062 "start_sect %lu sect_count %ld (%lu %ld) "
1063 "ret %d\n", blkvsc_req,
1064 (unsigned long)blkvsc_req->sector_start,
1065 blkvsc_req->sector_count,
1066 (unsigned long)start_sector,
1067 num_sectors, ret);
f82bd046
HJ
1068 }
1069 }
1070
1071 return pending;
1072}
1073
0b3f6834 1074static void blkvsc_cmd_completion(struct hv_storvsc_request *request)
f82bd046 1075{
8a280399
GKH
1076 struct blkvsc_request *blkvsc_req =
1077 (struct blkvsc_request *)request->Context;
1078 struct block_device_context *blkdev =
1079 (struct block_device_context *)blkvsc_req->dev;
f82bd046
HJ
1080 struct scsi_sense_hdr sense_hdr;
1081
8a280399
GKH
1082 DPRINT_DBG(BLKVSC_DRV, "blkvsc_cmd_completion() - req %p\n",
1083 blkvsc_req);
f82bd046
HJ
1084
1085 blkdev->num_outstanding_reqs--;
1086
1087 if (blkvsc_req->request.Status)
8a280399
GKH
1088 if (scsi_normalize_sense(blkvsc_req->sense_buffer,
1089 SCSI_SENSE_BUFFERSIZE, &sense_hdr))
f82bd046 1090 scsi_print_sense_hdr("blkvsc", &sense_hdr);
f82bd046 1091
8a280399 1092 blkvsc_req->cond = 1;
f82bd046
HJ
1093 wake_up_interruptible(&blkvsc_req->wevent);
1094}
1095
0b3f6834 1096static void blkvsc_request_completion(struct hv_storvsc_request *request)
f82bd046 1097{
8a280399
GKH
1098 struct blkvsc_request *blkvsc_req =
1099 (struct blkvsc_request *)request->Context;
1100 struct block_device_context *blkdev =
1101 (struct block_device_context *)blkvsc_req->dev;
f82bd046
HJ
1102 unsigned long flags;
1103 struct blkvsc_request *comp_req, *tmp;
1104
4e5166b5 1105 /* ASSERT(blkvsc_req->group); */
f82bd046 1106
8a280399
GKH
1107 DPRINT_DBG(BLKVSC_DRV, "blkdev %p blkvsc_req %p group %p type %s "
1108 "sect_start %lu sect_count %ld len %d group outstd %d "
1109 "total outstd %d\n",
1110 blkdev, blkvsc_req, blkvsc_req->group,
1111 (blkvsc_req->write) ? "WRITE" : "READ",
1112 (unsigned long)blkvsc_req->sector_start,
1113 blkvsc_req->sector_count,
1114 blkvsc_req->request.DataBuffer.Length,
1115 blkvsc_req->group->outstanding,
1116 blkdev->num_outstanding_reqs);
f82bd046
HJ
1117
1118 spin_lock_irqsave(&blkdev->lock, flags);
1119
1120 blkdev->num_outstanding_reqs--;
1121 blkvsc_req->group->outstanding--;
1122
454f18a9
BP
1123 /*
1124 * Only start processing when all the blkvsc_reqs are
1125 * completed. This guarantees no out-of-order blkvsc_req
1126 * completion when calling end_that_request_first()
1127 */
8a280399
GKH
1128 if (blkvsc_req->group->outstanding == 0) {
1129 list_for_each_entry_safe(comp_req, tmp,
1130 &blkvsc_req->group->blkvsc_req_list,
1131 req_entry) {
1132 DPRINT_DBG(BLKVSC_DRV, "completing blkvsc_req %p "
0686e4f4 1133 "sect_start %lu sect_count %ld\n",
8a280399
GKH
1134 comp_req,
1135 (unsigned long)comp_req->sector_start,
1136 comp_req->sector_count);
f82bd046
HJ
1137
1138 list_del(&comp_req->req_entry);
1139
8a280399
GKH
1140 if (!__blk_end_request(comp_req->req,
1141 (!comp_req->request.Status ? 0 : -EIO),
1142 comp_req->sector_count * blkdev->sector_size)) {
1143 /*
1144 * All the sectors have been xferred ie the
1145 * request is done
1146 */
1147 DPRINT_DBG(BLKVSC_DRV, "req %p COMPLETED\n",
1148 comp_req->req);
1149 kmem_cache_free(blkdev->request_pool,
1150 comp_req->group);
f82bd046 1151 }
f82bd046
HJ
1152
1153 kmem_cache_free(blkdev->request_pool, comp_req);
1154 }
1155
8a280399 1156 if (!blkdev->shutting_down) {
f82bd046
HJ
1157 blkvsc_do_pending_reqs(blkdev);
1158 blk_start_queue(blkdev->gd->queue);
1159 blkvsc_request(blkdev->gd->queue);
1160 }
1161 }
1162
1163 spin_unlock_irqrestore(&blkdev->lock, flags);
1164}
1165
1166static int blkvsc_cancel_pending_reqs(struct block_device_context *blkdev)
1167{
1168 struct blkvsc_request *pend_req, *tmp;
1169 struct blkvsc_request *comp_req, *tmp2;
1170
8a280399 1171 int ret = 0;
f82bd046
HJ
1172
1173 DPRINT_DBG(BLKVSC_DRV, "blkvsc_cancel_pending_reqs()");
1174
454f18a9 1175 /* Flush the pending list first */
8a280399
GKH
1176 list_for_each_entry_safe(pend_req, tmp, &blkdev->pending_list,
1177 pend_entry) {
454f18a9
BP
1178 /*
1179 * The pend_req could be part of a partially completed
1180 * request. If so, complete those req first until we
1181 * hit the pend_req
1182 */
8a280399
GKH
1183 list_for_each_entry_safe(comp_req, tmp2,
1184 &pend_req->group->blkvsc_req_list,
1185 req_entry) {
1186 DPRINT_DBG(BLKVSC_DRV, "completing blkvsc_req %p "
0686e4f4 1187 "sect_start %lu sect_count %ld\n",
8a280399
GKH
1188 comp_req,
1189 (unsigned long) comp_req->sector_start,
1190 comp_req->sector_count);
f82bd046
HJ
1191
1192 if (comp_req == pend_req)
1193 break;
1194
1195 list_del(&comp_req->req_entry);
1196
8a280399
GKH
1197 if (comp_req->req) {
1198 ret = __blk_end_request(comp_req->req,
1199 (!comp_req->request.Status ? 0 : -EIO),
1200 comp_req->sector_count *
1201 blkdev->sector_size);
ee350376
BP
1202
1203 /* FIXME: shouldn't this do more than return? */
1204 if (ret)
1205 goto out;
f82bd046
HJ
1206 }
1207
1208 kmem_cache_free(blkdev->request_pool, comp_req);
1209 }
1210
8a280399
GKH
1211 DPRINT_DBG(BLKVSC_DRV, "cancelling pending request - %p\n",
1212 pend_req);
f82bd046
HJ
1213
1214 list_del(&pend_req->pend_entry);
1215
1216 list_del(&pend_req->req_entry);
1217
8a280399
GKH
1218 if (comp_req->req) {
1219 if (!__blk_end_request(pend_req->req, -EIO,
1220 pend_req->sector_count *
1221 blkdev->sector_size)) {
1222 /*
1223 * All the sectors have been xferred ie the
1224 * request is done
1225 */
1226 DPRINT_DBG(BLKVSC_DRV,
1227 "blkvsc_cancel_pending_reqs() - "
1228 "req %p COMPLETED\n", pend_req->req);
1229 kmem_cache_free(blkdev->request_pool,
1230 pend_req->group);
1231 }
f82bd046
HJ
1232 }
1233
1234 kmem_cache_free(blkdev->request_pool, pend_req);
1235 }
1236
ee350376 1237out:
f82bd046
HJ
1238 return ret;
1239}
1240
1241static int blkvsc_do_pending_reqs(struct block_device_context *blkdev)
1242{
1243 struct blkvsc_request *pend_req, *tmp;
8a280399 1244 int ret = 0;
f82bd046 1245
454f18a9 1246 /* Flush the pending list first */
8a280399
GKH
1247 list_for_each_entry_safe(pend_req, tmp, &blkdev->pending_list,
1248 pend_entry) {
1249 DPRINT_DBG(BLKVSC_DRV, "working off pending_list - %p\n",
1250 pend_req);
f82bd046 1251
8a280399
GKH
1252 ret = blkvsc_submit_request(pend_req,
1253 blkvsc_request_completion);
f82bd046 1254 if (ret != 0)
f82bd046 1255 break;
f82bd046 1256 else
f82bd046 1257 list_del(&pend_req->pend_entry);
f82bd046
HJ
1258 }
1259
1260 return ret;
1261}
1262
1263static void blkvsc_request(struct request_queue *queue)
1264{
1265 struct block_device_context *blkdev = NULL;
1266 struct request *req;
8a280399 1267 int ret = 0;
f82bd046 1268
0686e4f4 1269 DPRINT_DBG(BLKVSC_DRV, "- enter\n");
8a280399 1270 while ((req = blk_peek_request(queue)) != NULL) {
f82bd046
HJ
1271 DPRINT_DBG(BLKVSC_DRV, "- req %p\n", req);
1272
1273 blkdev = req->rq_disk->private_data;
33659ebb 1274 if (blkdev->shutting_down || req->cmd_type != REQ_TYPE_FS ||
8a280399 1275 blkdev->media_not_present) {
0fce4c2f 1276 __blk_end_request_cur(req, 0);
f82bd046
HJ
1277 continue;
1278 }
1279
1280 ret = blkvsc_do_pending_reqs(blkdev);
1281
8a280399
GKH
1282 if (ret != 0) {
1283 DPRINT_DBG(BLKVSC_DRV,
1284 "- stop queue - pending_list not empty\n");
f82bd046
HJ
1285 blk_stop_queue(queue);
1286 break;
1287 }
1288
0fce4c2f 1289 blk_start_request(req);
f82bd046
HJ
1290
1291 ret = blkvsc_do_request(blkdev, req);
8a280399 1292 if (ret > 0) {
f82bd046
HJ
1293 DPRINT_DBG(BLKVSC_DRV, "- stop queue - no room\n");
1294 blk_stop_queue(queue);
1295 break;
8a280399 1296 } else if (ret < 0) {
f82bd046
HJ
1297 DPRINT_DBG(BLKVSC_DRV, "- stop queue - no mem\n");
1298 blk_requeue_request(queue, req);
1299 blk_stop_queue(queue);
1300 break;
1301 }
1302 }
1303}
1304
8a280399 1305static int blkvsc_open(struct block_device *bdev, fmode_t mode)
f82bd046 1306{
39635f7d 1307 struct block_device_context *blkdev = bdev->bd_disk->private_data;
f82bd046 1308
8a280399
GKH
1309 DPRINT_DBG(BLKVSC_DRV, "- users %d disk %s\n", blkdev->users,
1310 blkdev->gd->disk_name);
f82bd046 1311
6e9624b8 1312 lock_kernel();
f82bd046
HJ
1313 spin_lock(&blkdev->lock);
1314
8a280399 1315 if (!blkdev->users && blkdev->device_type == DVD_TYPE) {
f82bd046 1316 spin_unlock(&blkdev->lock);
39635f7d 1317 check_disk_change(bdev);
f82bd046
HJ
1318 spin_lock(&blkdev->lock);
1319 }
1320
1321 blkdev->users++;
1322
1323 spin_unlock(&blkdev->lock);
6e9624b8 1324 unlock_kernel();
f82bd046
HJ
1325 return 0;
1326}
1327
77d2d9da 1328static int blkvsc_release(struct gendisk *disk, fmode_t mode)
f82bd046 1329{
77d2d9da 1330 struct block_device_context *blkdev = disk->private_data;
f82bd046 1331
8a280399
GKH
1332 DPRINT_DBG(BLKVSC_DRV, "- users %d disk %s\n", blkdev->users,
1333 blkdev->gd->disk_name);
f82bd046 1334
6e9624b8 1335 lock_kernel();
f82bd046 1336 spin_lock(&blkdev->lock);
8a280399 1337 if (blkdev->users == 1) {
f82bd046
HJ
1338 spin_unlock(&blkdev->lock);
1339 blkvsc_do_flush(blkdev);
1340 spin_lock(&blkdev->lock);
1341 }
1342
1343 blkdev->users--;
1344
1345 spin_unlock(&blkdev->lock);
6e9624b8 1346 unlock_kernel();
f82bd046
HJ
1347 return 0;
1348}
1349
1350static int blkvsc_media_changed(struct gendisk *gd)
1351{
1352 DPRINT_DBG(BLKVSC_DRV, "- enter\n");
f82bd046
HJ
1353 return 1;
1354}
1355
1356static int blkvsc_revalidate_disk(struct gendisk *gd)
1357{
1358 struct block_device_context *blkdev = gd->private_data;
1359
1360 DPRINT_DBG(BLKVSC_DRV, "- enter\n");
1361
8a280399 1362 if (blkdev->device_type == DVD_TYPE) {
f82bd046 1363 blkvsc_do_read_capacity(blkdev);
8a280399
GKH
1364 set_capacity(blkdev->gd, blkdev->capacity *
1365 (blkdev->sector_size/512));
0fce4c2f 1366 blk_queue_logical_block_size(gd->queue, blkdev->sector_size);
f82bd046
HJ
1367 }
1368 return 0;
1369}
1370
bd1de709 1371static int blkvsc_getgeo(struct block_device *bd, struct hd_geometry *hg)
f82bd046
HJ
1372{
1373 sector_t total_sectors = get_capacity(bd->bd_disk);
8a280399
GKH
1374 sector_t cylinder_times_heads = 0;
1375 sector_t temp = 0;
f82bd046 1376
8a280399
GKH
1377 int sectors_per_track = 0;
1378 int heads = 0;
1379 int cylinders = 0;
1380 int rem = 0;
f82bd046 1381
8a280399
GKH
1382 if (total_sectors > (65535 * 16 * 255))
1383 total_sectors = (65535 * 16 * 255);
f82bd046 1384
8a280399
GKH
1385 if (total_sectors >= (65535 * 16 * 63)) {
1386 sectors_per_track = 255;
1387 heads = 16;
f82bd046
HJ
1388
1389 cylinder_times_heads = total_sectors;
8a280399
GKH
1390 /* sector_div stores the quotient in cylinder_times_heads */
1391 rem = sector_div(cylinder_times_heads, sectors_per_track);
1392 } else {
1393 sectors_per_track = 17;
f82bd046
HJ
1394
1395 cylinder_times_heads = total_sectors;
8a280399
GKH
1396 /* sector_div stores the quotient in cylinder_times_heads */
1397 rem = sector_div(cylinder_times_heads, sectors_per_track);
f82bd046
HJ
1398
1399 temp = cylinder_times_heads + 1023;
8a280399
GKH
1400 /* sector_div stores the quotient in temp */
1401 rem = sector_div(temp, 1024);
f82bd046
HJ
1402
1403 heads = temp;
1404
8a280399
GKH
1405 if (heads < 4)
1406 heads = 4;
1407
f82bd046 1408
8a280399
GKH
1409 if (cylinder_times_heads >= (heads * 1024) || (heads > 16)) {
1410 sectors_per_track = 31;
1411 heads = 16;
f82bd046
HJ
1412
1413 cylinder_times_heads = total_sectors;
8a280399
GKH
1414 /*
1415 * sector_div stores the quotient in
1416 * cylinder_times_heads
1417 */
1418 rem = sector_div(cylinder_times_heads,
1419 sectors_per_track);
1420 }
f82bd046 1421
8a280399
GKH
1422 if (cylinder_times_heads >= (heads * 1024)) {
1423 sectors_per_track = 63;
1424 heads = 16;
f82bd046
HJ
1425
1426 cylinder_times_heads = total_sectors;
8a280399
GKH
1427 /*
1428 * sector_div stores the quotient in
1429 * cylinder_times_heads
1430 */
1431 rem = sector_div(cylinder_times_heads,
1432 sectors_per_track);
1433 }
454f18a9 1434 }
f82bd046
HJ
1435
1436 temp = cylinder_times_heads;
8a280399
GKH
1437 /* sector_div stores the quotient in temp */
1438 rem = sector_div(temp, heads);
f82bd046
HJ
1439 cylinders = temp;
1440
1441 hg->heads = heads;
8a280399
GKH
1442 hg->sectors = sectors_per_track;
1443 hg->cylinders = cylinders;
f82bd046 1444
8a280399
GKH
1445 DPRINT_INFO(BLKVSC_DRV, "CHS (%d, %d, %d)", cylinders, heads,
1446 sectors_per_track);
f82bd046
HJ
1447
1448 return 0;
1449}
1450
dfe8b2d9
BP
1451static int blkvsc_ioctl(struct block_device *bd, fmode_t mode,
1452 unsigned cmd, unsigned long argument)
f82bd046 1453{
b5788529 1454/* struct block_device_context *blkdev = bd->bd_disk->private_data; */
8a280399 1455 int ret;
f82bd046 1456
8a280399
GKH
1457 switch (cmd) {
1458 /*
1459 * TODO: I think there is certain format for HDIO_GET_IDENTITY rather
1460 * than just a GUID. Commented it out for now.
1461 */
1462#if 0
1463 case HDIO_GET_IDENTITY:
f82bd046 1464 DPRINT_INFO(BLKVSC_DRV, "HDIO_GET_IDENTITY\n");
8a280399
GKH
1465 if (copy_to_user((void __user *)arg, blkdev->device_id,
1466 blkdev->device_id_len))
f82bd046 1467 ret = -EFAULT;
8a280399
GKH
1468 break;
1469#endif
f82bd046
HJ
1470 default:
1471 ret = -EINVAL;
1472 break;
1473 }
1474
1475 return ret;
1476}
1477
f82bd046
HJ
1478static int __init blkvsc_init(void)
1479{
1480 int ret;
1481
5afd06cc 1482 BUILD_BUG_ON(sizeof(sector_t) != 8);
f82bd046 1483
f82bd046
HJ
1484 DPRINT_INFO(BLKVSC_DRV, "Blkvsc initializing....");
1485
1486 ret = blkvsc_drv_init(BlkVscInitialize);
1487
f82bd046
HJ
1488 return ret;
1489}
1490
1491static void __exit blkvsc_exit(void)
1492{
f82bd046 1493 blkvsc_drv_exit();
f82bd046
HJ
1494}
1495
8a280399 1496MODULE_LICENSE("GPL");
26c14cc1 1497MODULE_VERSION(HV_DRV_VERSION);
1ec28abb 1498MODULE_DESCRIPTION("Microsoft Hyper-V virtual block driver");
f82bd046
HJ
1499module_init(blkvsc_init);
1500module_exit(blkvsc_exit);