blob: b5ebcd33bdb61dea6619577e1abc66d660102c43 [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;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200102 switch (req->cmd_type) {
103 case REQ_TYPE_FS:
Rusty Russelle467cde2007-10-22 11:03:38 +1000104 vbr->out_hdr.type = 0;
Tejun Heo83096eb2009-05-07 22:24:39 +0900105 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200106 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200107 break;
108 case REQ_TYPE_BLOCK_PC:
Rusty Russelle467cde2007-10-22 11:03:38 +1000109 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
110 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200111 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200112 break;
john cooper4cb2ea22010-03-25 01:33:33 -0400113 case REQ_TYPE_SPECIAL:
114 vbr->out_hdr.type = VIRTIO_BLK_T_GET_ID;
115 vbr->out_hdr.sector = 0;
116 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
117 break;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200118 case REQ_TYPE_LINUX_BLOCK:
119 if (req->cmd[0] == REQ_LB_OP_FLUSH) {
120 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
121 vbr->out_hdr.sector = 0;
122 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
123 break;
124 }
125 /*FALLTHRU*/
126 default:
Rusty Russelle467cde2007-10-22 11:03:38 +1000127 /* We don't put anything else in the queue. */
128 BUG();
129 }
130
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200131 if (vbr->req->cmd_flags & REQ_HARDBARRIER)
Rusty Russelle467cde2007-10-22 11:03:38 +1000132 vbr->out_hdr.type |= VIRTIO_BLK_T_BARRIER;
133
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200134 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000135
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200136 /*
137 * If this is a packet command we need a couple of additional headers.
138 * Behind the normal outhdr we put a segment with the scsi command
139 * block, and before the normal inhdr we put the sense data and the
140 * inhdr with additional status information before the normal inhdr.
141 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200142 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC)
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200143 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
144
145 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
146
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200147 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC) {
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200148 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, 96);
149 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
150 sizeof(vbr->in_hdr));
151 }
152
153 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
154 sizeof(vbr->status));
155
156 if (num) {
157 if (rq_data_dir(vbr->req) == WRITE) {
158 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
159 out += num;
160 } else {
161 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
162 in += num;
163 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000164 }
165
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300166 if (virtqueue_add_buf(vblk->vq, vblk->sg, out, in, vbr) < 0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000167 mempool_free(vbr, vblk->pool);
168 return false;
169 }
170
171 list_add_tail(&vbr->list, &vblk->reqs);
172 return true;
173}
174
175static void do_virtblk_request(struct request_queue *q)
176{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200177 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000178 struct request *req;
179 unsigned int issued = 0;
180
Tejun Heo9934c8c2009-05-08 11:54:16 +0900181 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600182 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000183
184 /* If this request fails, stop queue and wait for something to
185 finish to restart it. */
186 if (!do_req(q, vblk, req)) {
187 blk_stop_queue(q);
188 break;
189 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900190 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000191 issued++;
192 }
193
194 if (issued)
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300195 virtqueue_kick(vblk->vq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000196}
197
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200198static void virtblk_prepare_flush(struct request_queue *q, struct request *req)
199{
200 req->cmd_type = REQ_TYPE_LINUX_BLOCK;
201 req->cmd[0] = REQ_LB_OP_FLUSH;
202}
203
john cooper4cb2ea22010-03-25 01:33:33 -0400204/* return id (s/n) string for *disk to *id_str
205 */
206static int virtblk_get_id(struct gendisk *disk, char *id_str)
207{
208 struct virtio_blk *vblk = disk->private_data;
209 struct request *req;
210 struct bio *bio;
211
212 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
213 GFP_KERNEL);
214 if (IS_ERR(bio))
215 return PTR_ERR(bio);
216
217 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
218 if (IS_ERR(req)) {
219 bio_put(bio);
220 return PTR_ERR(req);
221 }
222
223 req->cmd_type = REQ_TYPE_SPECIAL;
224 return blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
225}
226
Al Viro4e109852008-03-02 10:22:33 -0500227static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
Rusty Russelle467cde2007-10-22 11:03:38 +1000228 unsigned cmd, unsigned long data)
229{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200230 struct gendisk *disk = bdev->bd_disk;
231 struct virtio_blk *vblk = disk->private_data;
232
Rusty Russellbdb4a132010-05-19 22:15:40 -0600233 if (cmd == 0x56424944) { /* 'VBID' */
john cooper234f2722010-03-25 01:34:02 -0400234 void __user *usr_data = (void __user *)data;
235 char id_str[VIRTIO_BLK_ID_BYTES];
236 int err;
237
238 err = virtblk_get_id(disk, id_str);
239 if (!err && copy_to_user(usr_data, id_str, VIRTIO_BLK_ID_BYTES))
240 err = -EFAULT;
241 return err;
242 }
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200243 /*
244 * Only allow the generic SCSI ioctls if the host can support it.
245 */
246 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200247 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200248
Rusty Russell3225bea2009-10-22 16:39:28 -0600249 return scsi_cmd_ioctl(disk->queue, disk, mode, cmd,
250 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000251}
252
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100253/* We provide getgeo only to please some old bootloader/partitioning tools */
254static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
255{
Ryan Harper48e40432008-04-16 13:56:37 -0500256 struct virtio_blk *vblk = bd->bd_disk->private_data;
257 struct virtio_blk_geometry vgeo;
258 int err;
259
260 /* see if the host passed in geometry config */
261 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
262 offsetof(struct virtio_blk_config, geometry),
263 &vgeo);
264
265 if (!err) {
266 geo->heads = vgeo.heads;
267 geo->sectors = vgeo.sectors;
268 geo->cylinders = vgeo.cylinders;
269 } else {
270 /* some standard values, similar to sd */
271 geo->heads = 1 << 6;
272 geo->sectors = 1 << 5;
273 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
274 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100275 return 0;
276}
277
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700278static const struct block_device_operations virtblk_fops = {
Al Viro4e109852008-03-02 10:22:33 -0500279 .locked_ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100280 .owner = THIS_MODULE,
281 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000282};
283
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100284static int index_to_minor(int index)
285{
286 return index << PART_BITS;
287}
288
Mike Frysinger98e94442009-05-18 03:39:09 -0400289static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000290{
291 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600292 struct request_queue *q;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100293 int err;
Rusty Russelle467cde2007-10-22 11:03:38 +1000294 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600295 u32 v, blk_size, sg_elems, opt_io_size;
296 u16 min_io_size;
297 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000298
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100299 if (index_to_minor(index) >= 1 << MINORBITS)
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100300 return -ENOSPC;
301
Rusty Russell0864b792008-12-30 09:26:05 -0600302 /* We need to know how many segments before we allocate. */
303 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
304 offsetof(struct virtio_blk_config, seg_max),
305 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200306
307 /* We need at least one SG element, whatever they say. */
308 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600309 sg_elems = 1;
310
311 /* We need an extra sg elements at head and tail. */
312 sg_elems += 2;
313 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
314 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000315 if (!vblk) {
316 err = -ENOMEM;
317 goto out;
318 }
319
320 INIT_LIST_HEAD(&vblk->reqs);
321 spin_lock_init(&vblk->lock);
322 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600323 vblk->sg_elems = sg_elems;
324 sg_init_table(vblk->sg, vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000325
326 /* We expect one virtqueue, for output. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600327 vblk->vq = virtio_find_single_vq(vdev, blk_done, "requests");
Rusty Russelle467cde2007-10-22 11:03:38 +1000328 if (IS_ERR(vblk->vq)) {
329 err = PTR_ERR(vblk->vq);
330 goto out_free_vblk;
331 }
332
333 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
334 if (!vblk->pool) {
335 err = -ENOMEM;
336 goto out_free_vq;
337 }
338
Rusty Russelle467cde2007-10-22 11:03:38 +1000339 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100340 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000341 if (!vblk->disk) {
342 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100343 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000344 }
345
Christoph Hellwig69740c82010-02-24 14:22:25 -0600346 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
347 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000348 err = -ENOMEM;
349 goto out_put_disk;
350 }
351
Christoph Hellwig69740c82010-02-24 14:22:25 -0600352 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900353
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100354 if (index < 26) {
355 sprintf(vblk->disk->disk_name, "vd%c", 'a' + index % 26);
356 } else if (index < (26 + 1) * 26) {
357 sprintf(vblk->disk->disk_name, "vd%c%c",
358 'a' + index / 26 - 1, 'a' + index % 26);
359 } else {
360 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
361 const unsigned int m2 = (index / 26 - 1) % 26;
362 const unsigned int m3 = index % 26;
363 sprintf(vblk->disk->disk_name, "vd%c%c%c",
364 'a' + m1, 'a' + m2, 'a' + m3);
365 }
366
Rusty Russelle467cde2007-10-22 11:03:38 +1000367 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100368 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000369 vblk->disk->private_data = vblk;
370 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500371 vblk->disk->driverfs_dev = &vdev->dev;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100372 index++;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100373
Rusty Russelle467cde2007-10-22 11:03:38 +1000374 /* If barriers are supported, tell block layer that queue is ordered */
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200375 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
Christoph Hellwig69740c82010-02-24 14:22:25 -0600376 blk_queue_ordered(q, QUEUE_ORDERED_DRAIN_FLUSH,
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200377 virtblk_prepare_flush);
378 else if (virtio_has_feature(vdev, VIRTIO_BLK_F_BARRIER))
Christoph Hellwig69740c82010-02-24 14:22:25 -0600379 blk_queue_ordered(q, QUEUE_ORDERED_TAG, NULL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000380
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200381 /* If disk is read-only in the host, the guest should obey */
382 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
383 set_disk_ro(vblk->disk, 1);
384
Rusty Russella586d4f2008-02-04 23:49:56 -0500385 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500386 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
387 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000388
389 /* If capacity is too big, truncate with warning. */
390 if ((sector_t)cap != cap) {
391 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
392 (unsigned long long)cap);
393 cap = (sector_t)-1;
394 }
395 set_capacity(vblk->disk, cap);
396
Rusty Russell0864b792008-12-30 09:26:05 -0600397 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500398 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600399
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600400 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600401 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600402
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600403 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500404 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600405
Rusty Russella586d4f2008-02-04 23:49:56 -0500406 /* Host can optionally specify maximum segment size and number of
407 * segments. */
408 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
409 offsetof(struct virtio_blk_config, size_max),
410 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000411 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600412 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600413 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600414 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000415
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200416 /* Host can optionally specify the block size of the device */
417 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
418 offsetof(struct virtio_blk_config, blk_size),
419 &blk_size);
420 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600421 blk_queue_logical_block_size(q, blk_size);
422 else
423 blk_size = queue_logical_block_size(q);
424
425 /* Use topology information if available */
426 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
427 offsetof(struct virtio_blk_config, physical_block_exp),
428 &physical_block_exp);
429 if (!err && physical_block_exp)
430 blk_queue_physical_block_size(q,
431 blk_size * (1 << physical_block_exp));
432
433 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
434 offsetof(struct virtio_blk_config, alignment_offset),
435 &alignment_offset);
436 if (!err && alignment_offset)
437 blk_queue_alignment_offset(q, blk_size * alignment_offset);
438
439 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
440 offsetof(struct virtio_blk_config, min_io_size),
441 &min_io_size);
442 if (!err && min_io_size)
443 blk_queue_io_min(q, blk_size * min_io_size);
444
445 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
446 offsetof(struct virtio_blk_config, opt_io_size),
447 &opt_io_size);
448 if (!err && opt_io_size)
449 blk_queue_io_opt(q, blk_size * opt_io_size);
450
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200451
Rusty Russelle467cde2007-10-22 11:03:38 +1000452 add_disk(vblk->disk);
453 return 0;
454
455out_put_disk:
456 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000457out_mempool:
458 mempool_destroy(vblk->pool);
459out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600460 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000461out_free_vblk:
462 kfree(vblk);
463out:
464 return err;
465}
466
Mike Frysinger98e94442009-05-18 03:39:09 -0400467static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000468{
469 struct virtio_blk *vblk = vdev->priv;
Rusty Russelle467cde2007-10-22 11:03:38 +1000470
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500471 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000472 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500473
474 /* Stop all the virtqueues. */
475 vdev->config->reset(vdev);
476
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500477 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000478 blk_cleanup_queue(vblk->disk->queue);
479 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000480 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600481 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000482 kfree(vblk);
483}
484
Márton Németh47483e22010-01-10 13:40:02 +0100485static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000486 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
487 { 0 },
488};
489
Rusty Russellc45a6812008-05-02 21:50:50 -0500490static unsigned int features[] = {
491 VIRTIO_BLK_F_BARRIER, VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX,
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200492 VIRTIO_BLK_F_GEOMETRY, VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE,
Christoph Hellwig69740c82010-02-24 14:22:25 -0600493 VIRTIO_BLK_F_SCSI, VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500494};
495
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600496/*
497 * virtio_blk causes spurious section mismatch warning by
498 * simultaneously referring to a __devinit and a __devexit function.
499 * Use __refdata to avoid this warning.
500 */
501static struct virtio_driver __refdata virtio_blk = {
Rusty Russellc45a6812008-05-02 21:50:50 -0500502 .feature_table = features,
503 .feature_table_size = ARRAY_SIZE(features),
Rusty Russelle467cde2007-10-22 11:03:38 +1000504 .driver.name = KBUILD_MODNAME,
505 .driver.owner = THIS_MODULE,
506 .id_table = id_table,
507 .probe = virtblk_probe,
508 .remove = __devexit_p(virtblk_remove),
509};
510
511static int __init init(void)
512{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100513 major = register_blkdev(0, "virtblk");
514 if (major < 0)
515 return major;
Rusty Russelle467cde2007-10-22 11:03:38 +1000516 return register_virtio_driver(&virtio_blk);
517}
518
519static void __exit fini(void)
520{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100521 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000522 unregister_virtio_driver(&virtio_blk);
523}
524module_init(init);
525module_exit(fini);
526
527MODULE_DEVICE_TABLE(virtio, id_table);
528MODULE_DESCRIPTION("Virtio block driver");
529MODULE_LICENSE("GPL");