blob: 8320490226b78145f95c7e7801a15080419adc19 [file] [log] [blame]
Rusty Russelle467cde2007-10-22 11:03:38 +10001//#define DEBUG
2#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/slab.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10004#include <linux/blkdev.h>
5#include <linux/hdreg.h>
6#include <linux/virtio.h>
7#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +02008#include <linux/scatterlist.h>
9
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010010#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100011
Christian Borntraegerd50ed902008-02-01 09:05:00 +010012static int major, index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010013
Rusty Russelle467cde2007-10-22 11:03:38 +100014struct virtio_blk
15{
16 spinlock_t lock;
17
18 struct virtio_device *vdev;
19 struct virtqueue *vq;
20
21 /* The disk structure for the kernel. */
22 struct gendisk *disk;
23
24 /* Request tracking. */
25 struct list_head reqs;
26
27 mempool_t *pool;
28
Rusty Russell0864b792008-12-30 09:26:05 -060029 /* What host tells us, plus 2 for header & tailer. */
30 unsigned int sg_elems;
31
Rusty Russelle467cde2007-10-22 11:03:38 +100032 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060033 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100034};
35
36struct virtblk_req
37{
38 struct list_head list;
39 struct request *req;
40 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020041 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050042 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100043};
44
Rusty Russell18445c42008-02-04 23:49:57 -050045static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100046{
47 struct virtio_blk *vblk = vq->vdev->priv;
48 struct virtblk_req *vbr;
49 unsigned int len;
50 unsigned long flags;
51
52 spin_lock_irqsave(&vblk->lock, flags);
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +030053 while ((vbr = virtqueue_get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040054 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020055
Rusty Russellcb38fa22008-05-02 21:50:45 -050056 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100057 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040058 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100059 break;
60 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040061 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100062 break;
63 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040064 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100065 break;
66 }
67
Christoph Hellwig33659eb2010-08-07 18:17:56 +020068 switch (vbr->req->cmd_type) {
69 case REQ_TYPE_BLOCK_PC:
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020070 vbr->req->resid_len = vbr->in_hdr.residual;
71 vbr->req->sense_len = vbr->in_hdr.sense_len;
72 vbr->req->errors = vbr->in_hdr.errors;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020073 break;
74 case REQ_TYPE_SPECIAL:
john cooper4cb2ea22010-03-25 01:33:33 -040075 vbr->req->errors = (error != 0);
Christoph Hellwig33659eb2010-08-07 18:17:56 +020076 break;
Jens Axboe15fa6e82010-06-18 12:10:18 +020077 default:
78 break;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020079 }
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020080
Tejun Heo40cbbb72009-04-23 11:05:19 +090081 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +100082 list_del(&vbr->list);
83 mempool_free(vbr, vblk->pool);
84 }
85 /* In case queue is stopped waiting for more buffers. */
86 blk_start_queue(vblk->disk->queue);
87 spin_unlock_irqrestore(&vblk->lock, flags);
Rusty Russelle467cde2007-10-22 11:03:38 +100088}
89
90static bool do_req(struct request_queue *q, struct virtio_blk *vblk,
91 struct request *req)
92{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020093 unsigned long num, out = 0, in = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100094 struct virtblk_req *vbr;
95
96 vbr = mempool_alloc(vblk->pool, GFP_ATOMIC);
97 if (!vbr)
98 /* When another request finishes we'll try again. */
99 return false;
100
101 vbr->req = req;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900102
103 if (req->cmd_flags & REQ_FLUSH) {
104 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
Rusty Russelle467cde2007-10-22 11:03:38 +1000105 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200106 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900107 } else {
108 switch (req->cmd_type) {
109 case REQ_TYPE_FS:
110 vbr->out_hdr.type = 0;
111 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
112 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
113 break;
114 case REQ_TYPE_BLOCK_PC:
115 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200116 vbr->out_hdr.sector = 0;
117 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
118 break;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900119 case REQ_TYPE_SPECIAL:
120 vbr->out_hdr.type = VIRTIO_BLK_T_GET_ID;
121 vbr->out_hdr.sector = 0;
122 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
123 break;
124 default:
125 /* We don't put anything else in the queue. */
126 BUG();
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200127 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000128 }
129
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200130 if (vbr->req->cmd_flags & REQ_HARDBARRIER)
Rusty Russelle467cde2007-10-22 11:03:38 +1000131 vbr->out_hdr.type |= VIRTIO_BLK_T_BARRIER;
132
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200133 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000134
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200135 /*
136 * If this is a packet command we need a couple of additional headers.
137 * Behind the normal outhdr we put a segment with the scsi command
138 * block, and before the normal inhdr we put the sense data and the
139 * inhdr with additional status information before the normal inhdr.
140 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200141 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC)
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200142 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
143
144 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
145
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200146 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC) {
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200147 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, 96);
148 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
149 sizeof(vbr->in_hdr));
150 }
151
152 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
153 sizeof(vbr->status));
154
155 if (num) {
156 if (rq_data_dir(vbr->req) == WRITE) {
157 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
158 out += num;
159 } else {
160 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
161 in += num;
162 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000163 }
164
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300165 if (virtqueue_add_buf(vblk->vq, vblk->sg, out, in, vbr) < 0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000166 mempool_free(vbr, vblk->pool);
167 return false;
168 }
169
170 list_add_tail(&vbr->list, &vblk->reqs);
171 return true;
172}
173
174static void do_virtblk_request(struct request_queue *q)
175{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200176 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000177 struct request *req;
178 unsigned int issued = 0;
179
Tejun Heo9934c8c2009-05-08 11:54:16 +0900180 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600181 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000182
183 /* If this request fails, stop queue and wait for something to
184 finish to restart it. */
185 if (!do_req(q, vblk, req)) {
186 blk_stop_queue(q);
187 break;
188 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900189 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000190 issued++;
191 }
192
193 if (issued)
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300194 virtqueue_kick(vblk->vq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000195}
196
john cooper4cb2ea22010-03-25 01:33:33 -0400197/* return id (s/n) string for *disk to *id_str
198 */
199static int virtblk_get_id(struct gendisk *disk, char *id_str)
200{
201 struct virtio_blk *vblk = disk->private_data;
202 struct request *req;
203 struct bio *bio;
Mike Snitzere4c47762010-10-09 12:12:13 +1030204 int err;
john cooper4cb2ea22010-03-25 01:33:33 -0400205
206 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
207 GFP_KERNEL);
208 if (IS_ERR(bio))
209 return PTR_ERR(bio);
210
211 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
212 if (IS_ERR(req)) {
213 bio_put(bio);
214 return PTR_ERR(req);
215 }
216
217 req->cmd_type = REQ_TYPE_SPECIAL;
Mike Snitzere4c47762010-10-09 12:12:13 +1030218 err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
219 blk_put_request(req);
220
221 return err;
john cooper4cb2ea22010-03-25 01:33:33 -0400222}
223
Christoph Hellwigfe5a50a2010-09-15 01:27:23 +0200224static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
225 unsigned int cmd, unsigned long data)
Rusty Russelle467cde2007-10-22 11:03:38 +1000226{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200227 struct gendisk *disk = bdev->bd_disk;
228 struct virtio_blk *vblk = disk->private_data;
229
230 /*
231 * Only allow the generic SCSI ioctls if the host can support it.
232 */
233 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200234 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200235
Rusty Russell3225bea2009-10-22 16:39:28 -0600236 return scsi_cmd_ioctl(disk->queue, disk, mode, cmd,
237 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000238}
239
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100240/* We provide getgeo only to please some old bootloader/partitioning tools */
241static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
242{
Ryan Harper48e40432008-04-16 13:56:37 -0500243 struct virtio_blk *vblk = bd->bd_disk->private_data;
244 struct virtio_blk_geometry vgeo;
245 int err;
246
247 /* see if the host passed in geometry config */
248 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
249 offsetof(struct virtio_blk_config, geometry),
250 &vgeo);
251
252 if (!err) {
253 geo->heads = vgeo.heads;
254 geo->sectors = vgeo.sectors;
255 geo->cylinders = vgeo.cylinders;
256 } else {
257 /* some standard values, similar to sd */
258 geo->heads = 1 << 6;
259 geo->sectors = 1 << 5;
260 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
261 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100262 return 0;
263}
264
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700265static const struct block_device_operations virtblk_fops = {
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200266 .ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100267 .owner = THIS_MODULE,
268 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000269};
270
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100271static int index_to_minor(int index)
272{
273 return index << PART_BITS;
274}
275
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500276static ssize_t virtblk_serial_show(struct device *dev,
277 struct device_attribute *attr, char *buf)
278{
279 struct gendisk *disk = dev_to_disk(dev);
280 int err;
281
282 /* sysfs gives us a PAGE_SIZE buffer */
283 BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
284
285 buf[VIRTIO_BLK_ID_BYTES] = '\0';
286 err = virtblk_get_id(disk, buf);
287 if (!err)
288 return strlen(buf);
289
290 if (err == -EIO) /* Unsupported? Make it empty. */
291 return 0;
292
293 return err;
294}
295DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
296
Mike Frysinger98e94442009-05-18 03:39:09 -0400297static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000298{
299 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600300 struct request_queue *q;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100301 int err;
Rusty Russelle467cde2007-10-22 11:03:38 +1000302 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600303 u32 v, blk_size, sg_elems, opt_io_size;
304 u16 min_io_size;
305 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000306
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100307 if (index_to_minor(index) >= 1 << MINORBITS)
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100308 return -ENOSPC;
309
Rusty Russell0864b792008-12-30 09:26:05 -0600310 /* We need to know how many segments before we allocate. */
311 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
312 offsetof(struct virtio_blk_config, seg_max),
313 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200314
315 /* We need at least one SG element, whatever they say. */
316 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600317 sg_elems = 1;
318
319 /* We need an extra sg elements at head and tail. */
320 sg_elems += 2;
321 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
322 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000323 if (!vblk) {
324 err = -ENOMEM;
325 goto out;
326 }
327
328 INIT_LIST_HEAD(&vblk->reqs);
329 spin_lock_init(&vblk->lock);
330 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600331 vblk->sg_elems = sg_elems;
332 sg_init_table(vblk->sg, vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000333
334 /* We expect one virtqueue, for output. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600335 vblk->vq = virtio_find_single_vq(vdev, blk_done, "requests");
Rusty Russelle467cde2007-10-22 11:03:38 +1000336 if (IS_ERR(vblk->vq)) {
337 err = PTR_ERR(vblk->vq);
338 goto out_free_vblk;
339 }
340
341 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
342 if (!vblk->pool) {
343 err = -ENOMEM;
344 goto out_free_vq;
345 }
346
Rusty Russelle467cde2007-10-22 11:03:38 +1000347 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100348 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000349 if (!vblk->disk) {
350 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100351 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000352 }
353
Christoph Hellwig69740c82010-02-24 14:22:25 -0600354 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
355 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000356 err = -ENOMEM;
357 goto out_put_disk;
358 }
359
Christoph Hellwig69740c82010-02-24 14:22:25 -0600360 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900361
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100362 if (index < 26) {
363 sprintf(vblk->disk->disk_name, "vd%c", 'a' + index % 26);
364 } else if (index < (26 + 1) * 26) {
365 sprintf(vblk->disk->disk_name, "vd%c%c",
366 'a' + index / 26 - 1, 'a' + index % 26);
367 } else {
368 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
369 const unsigned int m2 = (index / 26 - 1) % 26;
370 const unsigned int m3 = index % 26;
371 sprintf(vblk->disk->disk_name, "vd%c%c%c",
372 'a' + m1, 'a' + m2, 'a' + m3);
373 }
374
Rusty Russelle467cde2007-10-22 11:03:38 +1000375 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100376 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000377 vblk->disk->private_data = vblk;
378 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500379 vblk->disk->driverfs_dev = &vdev->dev;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100380 index++;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100381
Christoph Hellwig10bc3102010-06-15 14:43:48 +0200382 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH)) {
383 /*
384 * If the FLUSH feature is supported we do have support for
385 * flushing a volatile write cache on the host. Use that
386 * to implement write barrier support.
387 */
FUJITA Tomonori00fff262010-07-03 17:45:40 +0900388 blk_queue_ordered(q, QUEUE_ORDERED_DRAIN_FLUSH);
Christoph Hellwig10bc3102010-06-15 14:43:48 +0200389 } else if (virtio_has_feature(vdev, VIRTIO_BLK_F_BARRIER)) {
390 /*
391 * If the BARRIER feature is supported the host expects us
392 * to order request by tags. This implies there is not
393 * volatile write cache on the host, and that the host
394 * never re-orders outstanding I/O. This feature is not
395 * useful for real life scenarious and deprecated.
396 */
FUJITA Tomonori00fff262010-07-03 17:45:40 +0900397 blk_queue_ordered(q, QUEUE_ORDERED_TAG);
Christoph Hellwig10bc3102010-06-15 14:43:48 +0200398 } else {
399 /*
400 * If the FLUSH feature is not supported we must assume that
401 * the host does not perform any kind of volatile write
402 * caching. We still need to drain the queue to provider
403 * proper barrier semantics.
404 */
Linus Torvalds2f9e8252010-08-10 15:22:42 -0700405 blk_queue_ordered(q, QUEUE_ORDERED_DRAIN);
Christoph Hellwig10bc3102010-06-15 14:43:48 +0200406 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000407
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200408 /* If disk is read-only in the host, the guest should obey */
409 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
410 set_disk_ro(vblk->disk, 1);
411
Rusty Russella586d4f2008-02-04 23:49:56 -0500412 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500413 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
414 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000415
416 /* If capacity is too big, truncate with warning. */
417 if ((sector_t)cap != cap) {
418 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
419 (unsigned long long)cap);
420 cap = (sector_t)-1;
421 }
422 set_capacity(vblk->disk, cap);
423
Rusty Russell0864b792008-12-30 09:26:05 -0600424 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500425 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600426
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600427 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600428 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600429
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600430 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500431 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600432
Rusty Russella586d4f2008-02-04 23:49:56 -0500433 /* Host can optionally specify maximum segment size and number of
434 * segments. */
435 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
436 offsetof(struct virtio_blk_config, size_max),
437 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000438 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600439 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600440 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600441 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000442
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200443 /* Host can optionally specify the block size of the device */
444 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
445 offsetof(struct virtio_blk_config, blk_size),
446 &blk_size);
447 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600448 blk_queue_logical_block_size(q, blk_size);
449 else
450 blk_size = queue_logical_block_size(q);
451
452 /* Use topology information if available */
453 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
454 offsetof(struct virtio_blk_config, physical_block_exp),
455 &physical_block_exp);
456 if (!err && physical_block_exp)
457 blk_queue_physical_block_size(q,
458 blk_size * (1 << physical_block_exp));
459
460 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
461 offsetof(struct virtio_blk_config, alignment_offset),
462 &alignment_offset);
463 if (!err && alignment_offset)
464 blk_queue_alignment_offset(q, blk_size * alignment_offset);
465
466 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
467 offsetof(struct virtio_blk_config, min_io_size),
468 &min_io_size);
469 if (!err && min_io_size)
470 blk_queue_io_min(q, blk_size * min_io_size);
471
472 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
473 offsetof(struct virtio_blk_config, opt_io_size),
474 &opt_io_size);
475 if (!err && opt_io_size)
476 blk_queue_io_opt(q, blk_size * opt_io_size);
477
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200478
Rusty Russelle467cde2007-10-22 11:03:38 +1000479 add_disk(vblk->disk);
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500480 err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
481 if (err)
482 goto out_del_disk;
483
Rusty Russelle467cde2007-10-22 11:03:38 +1000484 return 0;
485
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500486out_del_disk:
487 del_gendisk(vblk->disk);
488 blk_cleanup_queue(vblk->disk->queue);
Rusty Russelle467cde2007-10-22 11:03:38 +1000489out_put_disk:
490 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000491out_mempool:
492 mempool_destroy(vblk->pool);
493out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600494 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000495out_free_vblk:
496 kfree(vblk);
497out:
498 return err;
499}
500
Mike Frysinger98e94442009-05-18 03:39:09 -0400501static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000502{
503 struct virtio_blk *vblk = vdev->priv;
Rusty Russelle467cde2007-10-22 11:03:38 +1000504
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500505 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000506 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500507
508 /* Stop all the virtqueues. */
509 vdev->config->reset(vdev);
510
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500511 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000512 blk_cleanup_queue(vblk->disk->queue);
513 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000514 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600515 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000516 kfree(vblk);
517}
518
Márton Németh47483e22010-01-10 13:40:02 +0100519static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000520 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
521 { 0 },
522};
523
Rusty Russellc45a6812008-05-02 21:50:50 -0500524static unsigned int features[] = {
525 VIRTIO_BLK_F_BARRIER, VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX,
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200526 VIRTIO_BLK_F_GEOMETRY, VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE,
Christoph Hellwig69740c82010-02-24 14:22:25 -0600527 VIRTIO_BLK_F_SCSI, VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500528};
529
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600530/*
531 * virtio_blk causes spurious section mismatch warning by
532 * simultaneously referring to a __devinit and a __devexit function.
533 * Use __refdata to avoid this warning.
534 */
535static struct virtio_driver __refdata virtio_blk = {
Rusty Russellc45a6812008-05-02 21:50:50 -0500536 .feature_table = features,
537 .feature_table_size = ARRAY_SIZE(features),
Rusty Russelle467cde2007-10-22 11:03:38 +1000538 .driver.name = KBUILD_MODNAME,
539 .driver.owner = THIS_MODULE,
540 .id_table = id_table,
541 .probe = virtblk_probe,
542 .remove = __devexit_p(virtblk_remove),
543};
544
545static int __init init(void)
546{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100547 major = register_blkdev(0, "virtblk");
548 if (major < 0)
549 return major;
Rusty Russelle467cde2007-10-22 11:03:38 +1000550 return register_virtio_driver(&virtio_blk);
551}
552
553static void __exit fini(void)
554{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100555 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000556 unregister_virtio_driver(&virtio_blk);
557}
558module_init(init);
559module_exit(fini);
560
561MODULE_DEVICE_TABLE(virtio, id_table);
562MODULE_DESCRIPTION("Virtio block driver");
563MODULE_LICENSE("GPL");