]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/block/virtio_blk.c
virtio: allow drivers to request IRQ affinity when creating VQs
[karo-tx-linux.git] / drivers / block / virtio_blk.c
1 //#define DEBUG
2 #include <linux/spinlock.h>
3 #include <linux/slab.h>
4 #include <linux/blkdev.h>
5 #include <linux/hdreg.h>
6 #include <linux/module.h>
7 #include <linux/mutex.h>
8 #include <linux/virtio.h>
9 #include <linux/virtio_blk.h>
10 #include <linux/scatterlist.h>
11 #include <linux/string_helpers.h>
12 #include <scsi/scsi_cmnd.h>
13 #include <linux/idr.h>
14 #include <linux/blk-mq.h>
15 #include <linux/numa.h>
16
17 #define PART_BITS 4
18 #define VQ_NAME_LEN 16
19
20 static int major;
21 static DEFINE_IDA(vd_index_ida);
22
23 static struct workqueue_struct *virtblk_wq;
24
25 struct virtio_blk_vq {
26         struct virtqueue *vq;
27         spinlock_t lock;
28         char name[VQ_NAME_LEN];
29 } ____cacheline_aligned_in_smp;
30
31 struct virtio_blk {
32         struct virtio_device *vdev;
33
34         /* The disk structure for the kernel. */
35         struct gendisk *disk;
36
37         /* Block layer tags. */
38         struct blk_mq_tag_set tag_set;
39
40         /* Process context for config space updates */
41         struct work_struct config_work;
42
43         /* What host tells us, plus 2 for header & tailer. */
44         unsigned int sg_elems;
45
46         /* Ida index - used to track minor number allocations. */
47         int index;
48
49         /* num of vqs */
50         int num_vqs;
51         struct virtio_blk_vq *vqs;
52 };
53
54 struct virtblk_req {
55         struct request *req;
56         struct virtio_blk_outhdr out_hdr;
57         struct virtio_scsi_inhdr in_hdr;
58         u8 status;
59         u8 sense[SCSI_SENSE_BUFFERSIZE];
60         struct scatterlist sg[];
61 };
62
63 static inline int virtblk_result(struct virtblk_req *vbr)
64 {
65         switch (vbr->status) {
66         case VIRTIO_BLK_S_OK:
67                 return 0;
68         case VIRTIO_BLK_S_UNSUPP:
69                 return -ENOTTY;
70         default:
71                 return -EIO;
72         }
73 }
74
75 static int __virtblk_add_req(struct virtqueue *vq,
76                              struct virtblk_req *vbr,
77                              struct scatterlist *data_sg,
78                              bool have_data)
79 {
80         struct scatterlist hdr, status, cmd, sense, inhdr, *sgs[6];
81         unsigned int num_out = 0, num_in = 0;
82         __virtio32 type = vbr->out_hdr.type & ~cpu_to_virtio32(vq->vdev, VIRTIO_BLK_T_OUT);
83
84         sg_init_one(&hdr, &vbr->out_hdr, sizeof(vbr->out_hdr));
85         sgs[num_out++] = &hdr;
86
87         /*
88          * If this is a packet command we need a couple of additional headers.
89          * Behind the normal outhdr we put a segment with the scsi command
90          * block, and before the normal inhdr we put the sense data and the
91          * inhdr with additional status information.
92          */
93         if (type == cpu_to_virtio32(vq->vdev, VIRTIO_BLK_T_SCSI_CMD)) {
94                 sg_init_one(&cmd, vbr->req->cmd, vbr->req->cmd_len);
95                 sgs[num_out++] = &cmd;
96         }
97
98         if (have_data) {
99                 if (vbr->out_hdr.type & cpu_to_virtio32(vq->vdev, VIRTIO_BLK_T_OUT))
100                         sgs[num_out++] = data_sg;
101                 else
102                         sgs[num_out + num_in++] = data_sg;
103         }
104
105         if (type == cpu_to_virtio32(vq->vdev, VIRTIO_BLK_T_SCSI_CMD)) {
106                 memcpy(vbr->sense, vbr->req->sense, SCSI_SENSE_BUFFERSIZE);
107                 sg_init_one(&sense, vbr->sense, SCSI_SENSE_BUFFERSIZE);
108                 sgs[num_out + num_in++] = &sense;
109                 sg_init_one(&inhdr, &vbr->in_hdr, sizeof(vbr->in_hdr));
110                 sgs[num_out + num_in++] = &inhdr;
111         }
112
113         sg_init_one(&status, &vbr->status, sizeof(vbr->status));
114         sgs[num_out + num_in++] = &status;
115
116         return virtqueue_add_sgs(vq, sgs, num_out, num_in, vbr, GFP_ATOMIC);
117 }
118
119 static inline void virtblk_request_done(struct request *req)
120 {
121         struct virtblk_req *vbr = blk_mq_rq_to_pdu(req);
122         struct virtio_blk *vblk = req->q->queuedata;
123         int error = virtblk_result(vbr);
124
125         if (req->cmd_type == REQ_TYPE_BLOCK_PC) {
126                 req->resid_len = virtio32_to_cpu(vblk->vdev, vbr->in_hdr.residual);
127                 req->sense_len = virtio32_to_cpu(vblk->vdev, vbr->in_hdr.sense_len);
128                 req->errors = virtio32_to_cpu(vblk->vdev, vbr->in_hdr.errors);
129         } else if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
130                 req->errors = (error != 0);
131         }
132
133         blk_mq_end_request(req, error);
134 }
135
136 static void virtblk_done(struct virtqueue *vq)
137 {
138         struct virtio_blk *vblk = vq->vdev->priv;
139         bool req_done = false;
140         int qid = vq->index;
141         struct virtblk_req *vbr;
142         unsigned long flags;
143         unsigned int len;
144
145         spin_lock_irqsave(&vblk->vqs[qid].lock, flags);
146         do {
147                 virtqueue_disable_cb(vq);
148                 while ((vbr = virtqueue_get_buf(vblk->vqs[qid].vq, &len)) != NULL) {
149                         blk_mq_complete_request(vbr->req, vbr->req->errors);
150                         req_done = true;
151                 }
152                 if (unlikely(virtqueue_is_broken(vq)))
153                         break;
154         } while (!virtqueue_enable_cb(vq));
155
156         /* In case queue is stopped waiting for more buffers. */
157         if (req_done)
158                 blk_mq_start_stopped_hw_queues(vblk->disk->queue, true);
159         spin_unlock_irqrestore(&vblk->vqs[qid].lock, flags);
160 }
161
162 static int virtio_queue_rq(struct blk_mq_hw_ctx *hctx,
163                            const struct blk_mq_queue_data *bd)
164 {
165         struct virtio_blk *vblk = hctx->queue->queuedata;
166         struct request *req = bd->rq;
167         struct virtblk_req *vbr = blk_mq_rq_to_pdu(req);
168         unsigned long flags;
169         unsigned int num;
170         int qid = hctx->queue_num;
171         int err;
172         bool notify = false;
173
174         BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
175
176         vbr->req = req;
177         if (req_op(req) == REQ_OP_FLUSH) {
178                 vbr->out_hdr.type = cpu_to_virtio32(vblk->vdev, VIRTIO_BLK_T_FLUSH);
179                 vbr->out_hdr.sector = 0;
180                 vbr->out_hdr.ioprio = cpu_to_virtio32(vblk->vdev, req_get_ioprio(vbr->req));
181         } else {
182                 switch (req->cmd_type) {
183                 case REQ_TYPE_FS:
184                         vbr->out_hdr.type = 0;
185                         vbr->out_hdr.sector = cpu_to_virtio64(vblk->vdev, blk_rq_pos(vbr->req));
186                         vbr->out_hdr.ioprio = cpu_to_virtio32(vblk->vdev, req_get_ioprio(vbr->req));
187                         break;
188                 case REQ_TYPE_BLOCK_PC:
189                         vbr->out_hdr.type = cpu_to_virtio32(vblk->vdev, VIRTIO_BLK_T_SCSI_CMD);
190                         vbr->out_hdr.sector = 0;
191                         vbr->out_hdr.ioprio = cpu_to_virtio32(vblk->vdev, req_get_ioprio(vbr->req));
192                         break;
193                 case REQ_TYPE_DRV_PRIV:
194                         vbr->out_hdr.type = cpu_to_virtio32(vblk->vdev, VIRTIO_BLK_T_GET_ID);
195                         vbr->out_hdr.sector = 0;
196                         vbr->out_hdr.ioprio = cpu_to_virtio32(vblk->vdev, req_get_ioprio(vbr->req));
197                         break;
198                 default:
199                         /* We don't put anything else in the queue. */
200                         BUG();
201                 }
202         }
203
204         blk_mq_start_request(req);
205
206         num = blk_rq_map_sg(hctx->queue, vbr->req, vbr->sg);
207         if (num) {
208                 if (rq_data_dir(vbr->req) == WRITE)
209                         vbr->out_hdr.type |= cpu_to_virtio32(vblk->vdev, VIRTIO_BLK_T_OUT);
210                 else
211                         vbr->out_hdr.type |= cpu_to_virtio32(vblk->vdev, VIRTIO_BLK_T_IN);
212         }
213
214         spin_lock_irqsave(&vblk->vqs[qid].lock, flags);
215         err = __virtblk_add_req(vblk->vqs[qid].vq, vbr, vbr->sg, num);
216         if (err) {
217                 virtqueue_kick(vblk->vqs[qid].vq);
218                 blk_mq_stop_hw_queue(hctx);
219                 spin_unlock_irqrestore(&vblk->vqs[qid].lock, flags);
220                 /* Out of mem doesn't actually happen, since we fall back
221                  * to direct descriptors */
222                 if (err == -ENOMEM || err == -ENOSPC)
223                         return BLK_MQ_RQ_QUEUE_BUSY;
224                 return BLK_MQ_RQ_QUEUE_ERROR;
225         }
226
227         if (bd->last && virtqueue_kick_prepare(vblk->vqs[qid].vq))
228                 notify = true;
229         spin_unlock_irqrestore(&vblk->vqs[qid].lock, flags);
230
231         if (notify)
232                 virtqueue_notify(vblk->vqs[qid].vq);
233         return BLK_MQ_RQ_QUEUE_OK;
234 }
235
236 /* return id (s/n) string for *disk to *id_str
237  */
238 static int virtblk_get_id(struct gendisk *disk, char *id_str)
239 {
240         struct virtio_blk *vblk = disk->private_data;
241         struct request_queue *q = vblk->disk->queue;
242         struct request *req;
243         int err;
244
245         req = blk_get_request(q, READ, GFP_KERNEL);
246         if (IS_ERR(req))
247                 return PTR_ERR(req);
248         req->cmd_type = REQ_TYPE_DRV_PRIV;
249
250         err = blk_rq_map_kern(q, req, id_str, VIRTIO_BLK_ID_BYTES, GFP_KERNEL);
251         if (err)
252                 goto out;
253
254         err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
255 out:
256         blk_put_request(req);
257         return err;
258 }
259
260 static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
261                              unsigned int cmd, unsigned long data)
262 {
263         struct gendisk *disk = bdev->bd_disk;
264         struct virtio_blk *vblk = disk->private_data;
265
266         /*
267          * Only allow the generic SCSI ioctls if the host can support it.
268          */
269         if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
270                 return -ENOTTY;
271
272         return scsi_cmd_blk_ioctl(bdev, mode, cmd,
273                                   (void __user *)data);
274 }
275
276 /* We provide getgeo only to please some old bootloader/partitioning tools */
277 static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
278 {
279         struct virtio_blk *vblk = bd->bd_disk->private_data;
280
281         /* see if the host passed in geometry config */
282         if (virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_GEOMETRY)) {
283                 virtio_cread(vblk->vdev, struct virtio_blk_config,
284                              geometry.cylinders, &geo->cylinders);
285                 virtio_cread(vblk->vdev, struct virtio_blk_config,
286                              geometry.heads, &geo->heads);
287                 virtio_cread(vblk->vdev, struct virtio_blk_config,
288                              geometry.sectors, &geo->sectors);
289         } else {
290                 /* some standard values, similar to sd */
291                 geo->heads = 1 << 6;
292                 geo->sectors = 1 << 5;
293                 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
294         }
295         return 0;
296 }
297
298 static const struct block_device_operations virtblk_fops = {
299         .ioctl  = virtblk_ioctl,
300         .owner  = THIS_MODULE,
301         .getgeo = virtblk_getgeo,
302 };
303
304 static int index_to_minor(int index)
305 {
306         return index << PART_BITS;
307 }
308
309 static int minor_to_index(int minor)
310 {
311         return minor >> PART_BITS;
312 }
313
314 static ssize_t virtblk_serial_show(struct device *dev,
315                                 struct device_attribute *attr, char *buf)
316 {
317         struct gendisk *disk = dev_to_disk(dev);
318         int err;
319
320         /* sysfs gives us a PAGE_SIZE buffer */
321         BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
322
323         buf[VIRTIO_BLK_ID_BYTES] = '\0';
324         err = virtblk_get_id(disk, buf);
325         if (!err)
326                 return strlen(buf);
327
328         if (err == -EIO) /* Unsupported? Make it empty. */
329                 return 0;
330
331         return err;
332 }
333
334 static DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
335
336 static void virtblk_config_changed_work(struct work_struct *work)
337 {
338         struct virtio_blk *vblk =
339                 container_of(work, struct virtio_blk, config_work);
340         struct virtio_device *vdev = vblk->vdev;
341         struct request_queue *q = vblk->disk->queue;
342         char cap_str_2[10], cap_str_10[10];
343         char *envp[] = { "RESIZE=1", NULL };
344         u64 capacity;
345
346         /* Host must always specify the capacity. */
347         virtio_cread(vdev, struct virtio_blk_config, capacity, &capacity);
348
349         /* If capacity is too big, truncate with warning. */
350         if ((sector_t)capacity != capacity) {
351                 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
352                          (unsigned long long)capacity);
353                 capacity = (sector_t)-1;
354         }
355
356         string_get_size(capacity, queue_logical_block_size(q),
357                         STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
358         string_get_size(capacity, queue_logical_block_size(q),
359                         STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
360
361         dev_notice(&vdev->dev,
362                   "new size: %llu %d-byte logical blocks (%s/%s)\n",
363                   (unsigned long long)capacity,
364                   queue_logical_block_size(q),
365                   cap_str_10, cap_str_2);
366
367         set_capacity(vblk->disk, capacity);
368         revalidate_disk(vblk->disk);
369         kobject_uevent_env(&disk_to_dev(vblk->disk)->kobj, KOBJ_CHANGE, envp);
370 }
371
372 static void virtblk_config_changed(struct virtio_device *vdev)
373 {
374         struct virtio_blk *vblk = vdev->priv;
375
376         queue_work(virtblk_wq, &vblk->config_work);
377 }
378
379 static int init_vq(struct virtio_blk *vblk)
380 {
381         int err;
382         int i;
383         vq_callback_t **callbacks;
384         const char **names;
385         struct virtqueue **vqs;
386         unsigned short num_vqs;
387         struct virtio_device *vdev = vblk->vdev;
388
389         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_MQ,
390                                    struct virtio_blk_config, num_queues,
391                                    &num_vqs);
392         if (err)
393                 num_vqs = 1;
394
395         vblk->vqs = kmalloc_array(num_vqs, sizeof(*vblk->vqs), GFP_KERNEL);
396         if (!vblk->vqs)
397                 return -ENOMEM;
398
399         names = kmalloc_array(num_vqs, sizeof(*names), GFP_KERNEL);
400         callbacks = kmalloc_array(num_vqs, sizeof(*callbacks), GFP_KERNEL);
401         vqs = kmalloc_array(num_vqs, sizeof(*vqs), GFP_KERNEL);
402         if (!names || !callbacks || !vqs) {
403                 err = -ENOMEM;
404                 goto out;
405         }
406
407         for (i = 0; i < num_vqs; i++) {
408                 callbacks[i] = virtblk_done;
409                 snprintf(vblk->vqs[i].name, VQ_NAME_LEN, "req.%d", i);
410                 names[i] = vblk->vqs[i].name;
411         }
412
413         /* Discover virtqueues and write information to configuration.  */
414         err = vdev->config->find_vqs(vdev, num_vqs, vqs, callbacks, names,
415                         NULL);
416         if (err)
417                 goto out;
418
419         for (i = 0; i < num_vqs; i++) {
420                 spin_lock_init(&vblk->vqs[i].lock);
421                 vblk->vqs[i].vq = vqs[i];
422         }
423         vblk->num_vqs = num_vqs;
424
425 out:
426         kfree(vqs);
427         kfree(callbacks);
428         kfree(names);
429         if (err)
430                 kfree(vblk->vqs);
431         return err;
432 }
433
434 /*
435  * Legacy naming scheme used for virtio devices.  We are stuck with it for
436  * virtio blk but don't ever use it for any new driver.
437  */
438 static int virtblk_name_format(char *prefix, int index, char *buf, int buflen)
439 {
440         const int base = 'z' - 'a' + 1;
441         char *begin = buf + strlen(prefix);
442         char *end = buf + buflen;
443         char *p;
444         int unit;
445
446         p = end - 1;
447         *p = '\0';
448         unit = base;
449         do {
450                 if (p == begin)
451                         return -EINVAL;
452                 *--p = 'a' + (index % unit);
453                 index = (index / unit) - 1;
454         } while (index >= 0);
455
456         memmove(begin, p, end - p);
457         memcpy(buf, prefix, strlen(prefix));
458
459         return 0;
460 }
461
462 static int virtblk_get_cache_mode(struct virtio_device *vdev)
463 {
464         u8 writeback;
465         int err;
466
467         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_CONFIG_WCE,
468                                    struct virtio_blk_config, wce,
469                                    &writeback);
470
471         /*
472          * If WCE is not configurable and flush is not available,
473          * assume no writeback cache is in use.
474          */
475         if (err)
476                 writeback = virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH);
477
478         return writeback;
479 }
480
481 static void virtblk_update_cache_mode(struct virtio_device *vdev)
482 {
483         u8 writeback = virtblk_get_cache_mode(vdev);
484         struct virtio_blk *vblk = vdev->priv;
485
486         blk_queue_write_cache(vblk->disk->queue, writeback, false);
487         revalidate_disk(vblk->disk);
488 }
489
490 static const char *const virtblk_cache_types[] = {
491         "write through", "write back"
492 };
493
494 static ssize_t
495 virtblk_cache_type_store(struct device *dev, struct device_attribute *attr,
496                          const char *buf, size_t count)
497 {
498         struct gendisk *disk = dev_to_disk(dev);
499         struct virtio_blk *vblk = disk->private_data;
500         struct virtio_device *vdev = vblk->vdev;
501         int i;
502
503         BUG_ON(!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_CONFIG_WCE));
504         for (i = ARRAY_SIZE(virtblk_cache_types); --i >= 0; )
505                 if (sysfs_streq(buf, virtblk_cache_types[i]))
506                         break;
507
508         if (i < 0)
509                 return -EINVAL;
510
511         virtio_cwrite8(vdev, offsetof(struct virtio_blk_config, wce), i);
512         virtblk_update_cache_mode(vdev);
513         return count;
514 }
515
516 static ssize_t
517 virtblk_cache_type_show(struct device *dev, struct device_attribute *attr,
518                          char *buf)
519 {
520         struct gendisk *disk = dev_to_disk(dev);
521         struct virtio_blk *vblk = disk->private_data;
522         u8 writeback = virtblk_get_cache_mode(vblk->vdev);
523
524         BUG_ON(writeback >= ARRAY_SIZE(virtblk_cache_types));
525         return snprintf(buf, 40, "%s\n", virtblk_cache_types[writeback]);
526 }
527
528 static const struct device_attribute dev_attr_cache_type_ro =
529         __ATTR(cache_type, S_IRUGO,
530                virtblk_cache_type_show, NULL);
531 static const struct device_attribute dev_attr_cache_type_rw =
532         __ATTR(cache_type, S_IRUGO|S_IWUSR,
533                virtblk_cache_type_show, virtblk_cache_type_store);
534
535 static int virtblk_init_request(void *data, struct request *rq,
536                 unsigned int hctx_idx, unsigned int request_idx,
537                 unsigned int numa_node)
538 {
539         struct virtio_blk *vblk = data;
540         struct virtblk_req *vbr = blk_mq_rq_to_pdu(rq);
541
542         sg_init_table(vbr->sg, vblk->sg_elems);
543         return 0;
544 }
545
546 static struct blk_mq_ops virtio_mq_ops = {
547         .queue_rq       = virtio_queue_rq,
548         .complete       = virtblk_request_done,
549         .init_request   = virtblk_init_request,
550 };
551
552 static unsigned int virtblk_queue_depth;
553 module_param_named(queue_depth, virtblk_queue_depth, uint, 0444);
554
555 static int virtblk_probe(struct virtio_device *vdev)
556 {
557         struct virtio_blk *vblk;
558         struct request_queue *q;
559         int err, index;
560
561         u64 cap;
562         u32 v, blk_size, sg_elems, opt_io_size;
563         u16 min_io_size;
564         u8 physical_block_exp, alignment_offset;
565
566         if (!vdev->config->get) {
567                 dev_err(&vdev->dev, "%s failure: config access disabled\n",
568                         __func__);
569                 return -EINVAL;
570         }
571
572         err = ida_simple_get(&vd_index_ida, 0, minor_to_index(1 << MINORBITS),
573                              GFP_KERNEL);
574         if (err < 0)
575                 goto out;
576         index = err;
577
578         /* We need to know how many segments before we allocate. */
579         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_SEG_MAX,
580                                    struct virtio_blk_config, seg_max,
581                                    &sg_elems);
582
583         /* We need at least one SG element, whatever they say. */
584         if (err || !sg_elems)
585                 sg_elems = 1;
586
587         /* We need an extra sg elements at head and tail. */
588         sg_elems += 2;
589         vdev->priv = vblk = kmalloc(sizeof(*vblk), GFP_KERNEL);
590         if (!vblk) {
591                 err = -ENOMEM;
592                 goto out_free_index;
593         }
594
595         vblk->vdev = vdev;
596         vblk->sg_elems = sg_elems;
597
598         INIT_WORK(&vblk->config_work, virtblk_config_changed_work);
599
600         err = init_vq(vblk);
601         if (err)
602                 goto out_free_vblk;
603
604         /* FIXME: How many partitions?  How long is a piece of string? */
605         vblk->disk = alloc_disk(1 << PART_BITS);
606         if (!vblk->disk) {
607                 err = -ENOMEM;
608                 goto out_free_vq;
609         }
610
611         /* Default queue sizing is to fill the ring. */
612         if (!virtblk_queue_depth) {
613                 virtblk_queue_depth = vblk->vqs[0].vq->num_free;
614                 /* ... but without indirect descs, we use 2 descs per req */
615                 if (!virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC))
616                         virtblk_queue_depth /= 2;
617         }
618
619         memset(&vblk->tag_set, 0, sizeof(vblk->tag_set));
620         vblk->tag_set.ops = &virtio_mq_ops;
621         vblk->tag_set.queue_depth = virtblk_queue_depth;
622         vblk->tag_set.numa_node = NUMA_NO_NODE;
623         vblk->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
624         vblk->tag_set.cmd_size =
625                 sizeof(struct virtblk_req) +
626                 sizeof(struct scatterlist) * sg_elems;
627         vblk->tag_set.driver_data = vblk;
628         vblk->tag_set.nr_hw_queues = vblk->num_vqs;
629
630         err = blk_mq_alloc_tag_set(&vblk->tag_set);
631         if (err)
632                 goto out_put_disk;
633
634         q = blk_mq_init_queue(&vblk->tag_set);
635         if (IS_ERR(q)) {
636                 err = -ENOMEM;
637                 goto out_free_tags;
638         }
639         vblk->disk->queue = q;
640
641         q->queuedata = vblk;
642
643         virtblk_name_format("vd", index, vblk->disk->disk_name, DISK_NAME_LEN);
644
645         vblk->disk->major = major;
646         vblk->disk->first_minor = index_to_minor(index);
647         vblk->disk->private_data = vblk;
648         vblk->disk->fops = &virtblk_fops;
649         vblk->disk->flags |= GENHD_FL_EXT_DEVT;
650         vblk->index = index;
651
652         /* configure queue flush support */
653         virtblk_update_cache_mode(vdev);
654
655         /* If disk is read-only in the host, the guest should obey */
656         if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
657                 set_disk_ro(vblk->disk, 1);
658
659         /* Host must always specify the capacity. */
660         virtio_cread(vdev, struct virtio_blk_config, capacity, &cap);
661
662         /* If capacity is too big, truncate with warning. */
663         if ((sector_t)cap != cap) {
664                 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
665                          (unsigned long long)cap);
666                 cap = (sector_t)-1;
667         }
668         set_capacity(vblk->disk, cap);
669
670         /* We can handle whatever the host told us to handle. */
671         blk_queue_max_segments(q, vblk->sg_elems-2);
672
673         /* No need to bounce any requests */
674         blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
675
676         /* No real sector limit. */
677         blk_queue_max_hw_sectors(q, -1U);
678
679         /* Host can optionally specify maximum segment size and number of
680          * segments. */
681         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_SIZE_MAX,
682                                    struct virtio_blk_config, size_max, &v);
683         if (!err)
684                 blk_queue_max_segment_size(q, v);
685         else
686                 blk_queue_max_segment_size(q, -1U);
687
688         /* Host can optionally specify the block size of the device */
689         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_BLK_SIZE,
690                                    struct virtio_blk_config, blk_size,
691                                    &blk_size);
692         if (!err)
693                 blk_queue_logical_block_size(q, blk_size);
694         else
695                 blk_size = queue_logical_block_size(q);
696
697         /* Use topology information if available */
698         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
699                                    struct virtio_blk_config, physical_block_exp,
700                                    &physical_block_exp);
701         if (!err && physical_block_exp)
702                 blk_queue_physical_block_size(q,
703                                 blk_size * (1 << physical_block_exp));
704
705         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
706                                    struct virtio_blk_config, alignment_offset,
707                                    &alignment_offset);
708         if (!err && alignment_offset)
709                 blk_queue_alignment_offset(q, blk_size * alignment_offset);
710
711         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
712                                    struct virtio_blk_config, min_io_size,
713                                    &min_io_size);
714         if (!err && min_io_size)
715                 blk_queue_io_min(q, blk_size * min_io_size);
716
717         err = virtio_cread_feature(vdev, VIRTIO_BLK_F_TOPOLOGY,
718                                    struct virtio_blk_config, opt_io_size,
719                                    &opt_io_size);
720         if (!err && opt_io_size)
721                 blk_queue_io_opt(q, blk_size * opt_io_size);
722
723         virtio_device_ready(vdev);
724
725         device_add_disk(&vdev->dev, vblk->disk);
726         err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
727         if (err)
728                 goto out_del_disk;
729
730         if (virtio_has_feature(vdev, VIRTIO_BLK_F_CONFIG_WCE))
731                 err = device_create_file(disk_to_dev(vblk->disk),
732                                          &dev_attr_cache_type_rw);
733         else
734                 err = device_create_file(disk_to_dev(vblk->disk),
735                                          &dev_attr_cache_type_ro);
736         if (err)
737                 goto out_del_disk;
738         return 0;
739
740 out_del_disk:
741         del_gendisk(vblk->disk);
742         blk_cleanup_queue(vblk->disk->queue);
743 out_free_tags:
744         blk_mq_free_tag_set(&vblk->tag_set);
745 out_put_disk:
746         put_disk(vblk->disk);
747 out_free_vq:
748         vdev->config->del_vqs(vdev);
749 out_free_vblk:
750         kfree(vblk);
751 out_free_index:
752         ida_simple_remove(&vd_index_ida, index);
753 out:
754         return err;
755 }
756
757 static void virtblk_remove(struct virtio_device *vdev)
758 {
759         struct virtio_blk *vblk = vdev->priv;
760         int index = vblk->index;
761         int refc;
762
763         /* Make sure no work handler is accessing the device. */
764         flush_work(&vblk->config_work);
765
766         del_gendisk(vblk->disk);
767         blk_cleanup_queue(vblk->disk->queue);
768
769         blk_mq_free_tag_set(&vblk->tag_set);
770
771         /* Stop all the virtqueues. */
772         vdev->config->reset(vdev);
773
774         refc = atomic_read(&disk_to_dev(vblk->disk)->kobj.kref.refcount);
775         put_disk(vblk->disk);
776         vdev->config->del_vqs(vdev);
777         kfree(vblk->vqs);
778         kfree(vblk);
779
780         /* Only free device id if we don't have any users */
781         if (refc == 1)
782                 ida_simple_remove(&vd_index_ida, index);
783 }
784
785 #ifdef CONFIG_PM_SLEEP
786 static int virtblk_freeze(struct virtio_device *vdev)
787 {
788         struct virtio_blk *vblk = vdev->priv;
789
790         /* Ensure we don't receive any more interrupts */
791         vdev->config->reset(vdev);
792
793         /* Make sure no work handler is accessing the device. */
794         flush_work(&vblk->config_work);
795
796         blk_mq_stop_hw_queues(vblk->disk->queue);
797
798         vdev->config->del_vqs(vdev);
799         return 0;
800 }
801
802 static int virtblk_restore(struct virtio_device *vdev)
803 {
804         struct virtio_blk *vblk = vdev->priv;
805         int ret;
806
807         ret = init_vq(vdev->priv);
808         if (ret)
809                 return ret;
810
811         virtio_device_ready(vdev);
812
813         blk_mq_start_stopped_hw_queues(vblk->disk->queue, true);
814         return 0;
815 }
816 #endif
817
818 static const struct virtio_device_id id_table[] = {
819         { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
820         { 0 },
821 };
822
823 static unsigned int features_legacy[] = {
824         VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
825         VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
826         VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY, VIRTIO_BLK_F_CONFIG_WCE,
827         VIRTIO_BLK_F_MQ,
828 }
829 ;
830 static unsigned int features[] = {
831         VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
832         VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE,
833         VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY, VIRTIO_BLK_F_CONFIG_WCE,
834         VIRTIO_BLK_F_MQ,
835 };
836
837 static struct virtio_driver virtio_blk = {
838         .feature_table                  = features,
839         .feature_table_size             = ARRAY_SIZE(features),
840         .feature_table_legacy           = features_legacy,
841         .feature_table_size_legacy      = ARRAY_SIZE(features_legacy),
842         .driver.name                    = KBUILD_MODNAME,
843         .driver.owner                   = THIS_MODULE,
844         .id_table                       = id_table,
845         .probe                          = virtblk_probe,
846         .remove                         = virtblk_remove,
847         .config_changed                 = virtblk_config_changed,
848 #ifdef CONFIG_PM_SLEEP
849         .freeze                         = virtblk_freeze,
850         .restore                        = virtblk_restore,
851 #endif
852 };
853
854 static int __init init(void)
855 {
856         int error;
857
858         virtblk_wq = alloc_workqueue("virtio-blk", 0, 0);
859         if (!virtblk_wq)
860                 return -ENOMEM;
861
862         major = register_blkdev(0, "virtblk");
863         if (major < 0) {
864                 error = major;
865                 goto out_destroy_workqueue;
866         }
867
868         error = register_virtio_driver(&virtio_blk);
869         if (error)
870                 goto out_unregister_blkdev;
871         return 0;
872
873 out_unregister_blkdev:
874         unregister_blkdev(major, "virtblk");
875 out_destroy_workqueue:
876         destroy_workqueue(virtblk_wq);
877         return error;
878 }
879
880 static void __exit fini(void)
881 {
882         unregister_virtio_driver(&virtio_blk);
883         unregister_blkdev(major, "virtblk");
884         destroy_workqueue(virtblk_wq);
885 }
886 module_init(init);
887 module_exit(fini);
888
889 MODULE_DEVICE_TABLE(virtio, id_table);
890 MODULE_DESCRIPTION("Virtio block driver");
891 MODULE_LICENSE("GPL");