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/interrupt.h>
9 #include <linux/virtio.h>
10 #include <linux/virtio_blk.h>
11 #include <linux/scatterlist.h>
12 #include <linux/string_helpers.h>
13 #include <scsi/scsi_cmnd.h>
14 #include <linux/idr.h>
15 #include <linux/blk-mq.h>
16 #include <linux/blk-mq-virtio.h>
17 #include <linux/numa.h>
20 #define VQ_NAME_LEN 16
21 #define MAX_DISCARD_SEGMENTS 256u
24 static DEFINE_IDA(vd_index_ida
);
26 static struct workqueue_struct
*virtblk_wq
;
28 struct virtio_blk_vq
{
31 char name
[VQ_NAME_LEN
];
32 } ____cacheline_aligned_in_smp
;
35 struct virtio_device
*vdev
;
37 /* The disk structure for the kernel. */
40 /* Block layer tags. */
41 struct blk_mq_tag_set tag_set
;
43 /* Process context for config space updates */
44 struct work_struct config_work
;
46 /* What host tells us, plus 2 for header & tailer. */
47 unsigned int sg_elems
;
49 /* Ida index - used to track minor number allocations. */
54 struct virtio_blk_vq
*vqs
;
58 #ifdef CONFIG_VIRTIO_BLK_SCSI
59 struct scsi_request sreq
; /* for SCSI passthrough, must be first */
60 u8 sense
[SCSI_SENSE_BUFFERSIZE
];
61 struct virtio_scsi_inhdr in_hdr
;
63 struct virtio_blk_outhdr out_hdr
;
65 struct scatterlist sg
[];
68 static inline blk_status_t
virtblk_result(struct virtblk_req
*vbr
)
70 switch (vbr
->status
) {
73 case VIRTIO_BLK_S_UNSUPP
:
74 return BLK_STS_NOTSUPP
;
81 * If this is a packet command we need a couple of additional headers. Behind
82 * the normal outhdr we put a segment with the scsi command block, and before
83 * the normal inhdr we put the sense data and the inhdr with additional status
86 #ifdef CONFIG_VIRTIO_BLK_SCSI
87 static int virtblk_add_req_scsi(struct virtqueue
*vq
, struct virtblk_req
*vbr
,
88 struct scatterlist
*data_sg
, bool have_data
)
90 struct scatterlist hdr
, status
, cmd
, sense
, inhdr
, *sgs
[6];
91 unsigned int num_out
= 0, num_in
= 0;
93 sg_init_one(&hdr
, &vbr
->out_hdr
, sizeof(vbr
->out_hdr
));
94 sgs
[num_out
++] = &hdr
;
95 sg_init_one(&cmd
, vbr
->sreq
.cmd
, vbr
->sreq
.cmd_len
);
96 sgs
[num_out
++] = &cmd
;
99 if (vbr
->out_hdr
.type
& cpu_to_virtio32(vq
->vdev
, VIRTIO_BLK_T_OUT
))
100 sgs
[num_out
++] = data_sg
;
102 sgs
[num_out
+ num_in
++] = data_sg
;
105 sg_init_one(&sense
, vbr
->sense
, SCSI_SENSE_BUFFERSIZE
);
106 sgs
[num_out
+ num_in
++] = &sense
;
107 sg_init_one(&inhdr
, &vbr
->in_hdr
, sizeof(vbr
->in_hdr
));
108 sgs
[num_out
+ num_in
++] = &inhdr
;
109 sg_init_one(&status
, &vbr
->status
, sizeof(vbr
->status
));
110 sgs
[num_out
+ num_in
++] = &status
;
112 return virtqueue_add_sgs(vq
, sgs
, num_out
, num_in
, vbr
, GFP_ATOMIC
);
115 static inline void virtblk_scsi_request_done(struct request
*req
)
117 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(req
);
118 struct virtio_blk
*vblk
= req
->q
->queuedata
;
119 struct scsi_request
*sreq
= &vbr
->sreq
;
121 sreq
->resid_len
= virtio32_to_cpu(vblk
->vdev
, vbr
->in_hdr
.residual
);
122 sreq
->sense_len
= virtio32_to_cpu(vblk
->vdev
, vbr
->in_hdr
.sense_len
);
123 sreq
->result
= virtio32_to_cpu(vblk
->vdev
, vbr
->in_hdr
.errors
);
126 static int virtblk_ioctl(struct block_device
*bdev
, fmode_t mode
,
127 unsigned int cmd
, unsigned long data
)
129 struct gendisk
*disk
= bdev
->bd_disk
;
130 struct virtio_blk
*vblk
= disk
->private_data
;
133 * Only allow the generic SCSI ioctls if the host can support it.
135 if (!virtio_has_feature(vblk
->vdev
, VIRTIO_BLK_F_SCSI
))
138 return scsi_cmd_blk_ioctl(bdev
, mode
, cmd
,
139 (void __user
*)data
);
142 static inline int virtblk_add_req_scsi(struct virtqueue
*vq
,
143 struct virtblk_req
*vbr
, struct scatterlist
*data_sg
,
148 static inline void virtblk_scsi_request_done(struct request
*req
)
151 #define virtblk_ioctl NULL
152 #endif /* CONFIG_VIRTIO_BLK_SCSI */
154 static int virtblk_add_req(struct virtqueue
*vq
, struct virtblk_req
*vbr
,
155 struct scatterlist
*data_sg
, bool have_data
)
157 struct scatterlist hdr
, status
, *sgs
[3];
158 unsigned int num_out
= 0, num_in
= 0;
160 sg_init_one(&hdr
, &vbr
->out_hdr
, sizeof(vbr
->out_hdr
));
161 sgs
[num_out
++] = &hdr
;
164 if (vbr
->out_hdr
.type
& cpu_to_virtio32(vq
->vdev
, VIRTIO_BLK_T_OUT
))
165 sgs
[num_out
++] = data_sg
;
167 sgs
[num_out
+ num_in
++] = data_sg
;
170 sg_init_one(&status
, &vbr
->status
, sizeof(vbr
->status
));
171 sgs
[num_out
+ num_in
++] = &status
;
173 return virtqueue_add_sgs(vq
, sgs
, num_out
, num_in
, vbr
, GFP_ATOMIC
);
176 static int virtblk_setup_discard_write_zeroes(struct request
*req
, bool unmap
)
178 unsigned short segments
= blk_rq_nr_discard_segments(req
);
179 unsigned short n
= 0;
180 struct virtio_blk_discard_write_zeroes
*range
;
185 flags
|= VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP
;
187 range
= kmalloc_array(segments
, sizeof(*range
), GFP_ATOMIC
);
191 __rq_for_each_bio(bio
, req
) {
192 u64 sector
= bio
->bi_iter
.bi_sector
;
193 u32 num_sectors
= bio
->bi_iter
.bi_size
>> SECTOR_SHIFT
;
195 range
[n
].flags
= cpu_to_le32(flags
);
196 range
[n
].num_sectors
= cpu_to_le32(num_sectors
);
197 range
[n
].sector
= cpu_to_le64(sector
);
201 req
->special_vec
.bv_page
= virt_to_page(range
);
202 req
->special_vec
.bv_offset
= offset_in_page(range
);
203 req
->special_vec
.bv_len
= sizeof(*range
) * segments
;
204 req
->rq_flags
|= RQF_SPECIAL_PAYLOAD
;
209 static inline void virtblk_request_done(struct request
*req
)
211 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(req
);
213 if (req
->rq_flags
& RQF_SPECIAL_PAYLOAD
) {
214 kfree(page_address(req
->special_vec
.bv_page
) +
215 req
->special_vec
.bv_offset
);
218 switch (req_op(req
)) {
220 case REQ_OP_SCSI_OUT
:
221 virtblk_scsi_request_done(req
);
225 blk_mq_end_request(req
, virtblk_result(vbr
));
228 static void virtblk_done(struct virtqueue
*vq
)
230 struct virtio_blk
*vblk
= vq
->vdev
->priv
;
231 bool req_done
= false;
233 struct virtblk_req
*vbr
;
237 spin_lock_irqsave(&vblk
->vqs
[qid
].lock
, flags
);
239 virtqueue_disable_cb(vq
);
240 while ((vbr
= virtqueue_get_buf(vblk
->vqs
[qid
].vq
, &len
)) != NULL
) {
241 struct request
*req
= blk_mq_rq_from_pdu(vbr
);
243 blk_mq_complete_request(req
);
246 if (unlikely(virtqueue_is_broken(vq
)))
248 } while (!virtqueue_enable_cb(vq
));
250 /* In case queue is stopped waiting for more buffers. */
252 blk_mq_start_stopped_hw_queues(vblk
->disk
->queue
, true);
253 spin_unlock_irqrestore(&vblk
->vqs
[qid
].lock
, flags
);
256 static void virtio_commit_rqs(struct blk_mq_hw_ctx
*hctx
)
258 struct virtio_blk
*vblk
= hctx
->queue
->queuedata
;
259 struct virtio_blk_vq
*vq
= &vblk
->vqs
[hctx
->queue_num
];
262 spin_lock_irq(&vq
->lock
);
263 kick
= virtqueue_kick_prepare(vq
->vq
);
264 spin_unlock_irq(&vq
->lock
);
267 virtqueue_notify(vq
->vq
);
270 static blk_status_t
virtio_queue_rq(struct blk_mq_hw_ctx
*hctx
,
271 const struct blk_mq_queue_data
*bd
)
273 struct virtio_blk
*vblk
= hctx
->queue
->queuedata
;
274 struct request
*req
= bd
->rq
;
275 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(req
);
278 int qid
= hctx
->queue_num
;
284 BUG_ON(req
->nr_phys_segments
+ 2 > vblk
->sg_elems
);
286 switch (req_op(req
)) {
292 type
= VIRTIO_BLK_T_FLUSH
;
295 type
= VIRTIO_BLK_T_DISCARD
;
297 case REQ_OP_WRITE_ZEROES
:
298 type
= VIRTIO_BLK_T_WRITE_ZEROES
;
299 unmap
= !(req
->cmd_flags
& REQ_NOUNMAP
);
302 case REQ_OP_SCSI_OUT
:
303 type
= VIRTIO_BLK_T_SCSI_CMD
;
306 type
= VIRTIO_BLK_T_GET_ID
;
310 return BLK_STS_IOERR
;
313 vbr
->out_hdr
.type
= cpu_to_virtio32(vblk
->vdev
, type
);
314 vbr
->out_hdr
.sector
= type
?
315 0 : cpu_to_virtio64(vblk
->vdev
, blk_rq_pos(req
));
316 vbr
->out_hdr
.ioprio
= cpu_to_virtio32(vblk
->vdev
, req_get_ioprio(req
));
318 blk_mq_start_request(req
);
320 if (type
== VIRTIO_BLK_T_DISCARD
|| type
== VIRTIO_BLK_T_WRITE_ZEROES
) {
321 err
= virtblk_setup_discard_write_zeroes(req
, unmap
);
323 return BLK_STS_RESOURCE
;
326 num
= blk_rq_map_sg(hctx
->queue
, req
, vbr
->sg
);
328 if (rq_data_dir(req
) == WRITE
)
329 vbr
->out_hdr
.type
|= cpu_to_virtio32(vblk
->vdev
, VIRTIO_BLK_T_OUT
);
331 vbr
->out_hdr
.type
|= cpu_to_virtio32(vblk
->vdev
, VIRTIO_BLK_T_IN
);
334 spin_lock_irqsave(&vblk
->vqs
[qid
].lock
, flags
);
335 if (blk_rq_is_scsi(req
))
336 err
= virtblk_add_req_scsi(vblk
->vqs
[qid
].vq
, vbr
, vbr
->sg
, num
);
338 err
= virtblk_add_req(vblk
->vqs
[qid
].vq
, vbr
, vbr
->sg
, num
);
340 virtqueue_kick(vblk
->vqs
[qid
].vq
);
341 blk_mq_stop_hw_queue(hctx
);
342 spin_unlock_irqrestore(&vblk
->vqs
[qid
].lock
, flags
);
343 /* Out of mem doesn't actually happen, since we fall back
344 * to direct descriptors */
345 if (err
== -ENOMEM
|| err
== -ENOSPC
)
346 return BLK_STS_DEV_RESOURCE
;
347 return BLK_STS_IOERR
;
350 if (bd
->last
&& virtqueue_kick_prepare(vblk
->vqs
[qid
].vq
))
352 spin_unlock_irqrestore(&vblk
->vqs
[qid
].lock
, flags
);
355 virtqueue_notify(vblk
->vqs
[qid
].vq
);
359 /* return id (s/n) string for *disk to *id_str
361 static int virtblk_get_id(struct gendisk
*disk
, char *id_str
)
363 struct virtio_blk
*vblk
= disk
->private_data
;
364 struct request_queue
*q
= vblk
->disk
->queue
;
368 req
= blk_get_request(q
, REQ_OP_DRV_IN
, 0);
372 err
= blk_rq_map_kern(q
, req
, id_str
, VIRTIO_BLK_ID_BYTES
, GFP_KERNEL
);
376 blk_execute_rq(vblk
->disk
->queue
, vblk
->disk
, req
, false);
377 err
= blk_status_to_errno(virtblk_result(blk_mq_rq_to_pdu(req
)));
379 blk_put_request(req
);
383 /* We provide getgeo only to please some old bootloader/partitioning tools */
384 static int virtblk_getgeo(struct block_device
*bd
, struct hd_geometry
*geo
)
386 struct virtio_blk
*vblk
= bd
->bd_disk
->private_data
;
388 /* see if the host passed in geometry config */
389 if (virtio_has_feature(vblk
->vdev
, VIRTIO_BLK_F_GEOMETRY
)) {
390 virtio_cread(vblk
->vdev
, struct virtio_blk_config
,
391 geometry
.cylinders
, &geo
->cylinders
);
392 virtio_cread(vblk
->vdev
, struct virtio_blk_config
,
393 geometry
.heads
, &geo
->heads
);
394 virtio_cread(vblk
->vdev
, struct virtio_blk_config
,
395 geometry
.sectors
, &geo
->sectors
);
397 /* some standard values, similar to sd */
399 geo
->sectors
= 1 << 5;
400 geo
->cylinders
= get_capacity(bd
->bd_disk
) >> 11;
405 static const struct block_device_operations virtblk_fops
= {
406 .ioctl
= virtblk_ioctl
,
407 .owner
= THIS_MODULE
,
408 .getgeo
= virtblk_getgeo
,
411 static int index_to_minor(int index
)
413 return index
<< PART_BITS
;
416 static int minor_to_index(int minor
)
418 return minor
>> PART_BITS
;
421 static ssize_t
serial_show(struct device
*dev
,
422 struct device_attribute
*attr
, char *buf
)
424 struct gendisk
*disk
= dev_to_disk(dev
);
427 /* sysfs gives us a PAGE_SIZE buffer */
428 BUILD_BUG_ON(PAGE_SIZE
< VIRTIO_BLK_ID_BYTES
);
430 buf
[VIRTIO_BLK_ID_BYTES
] = '\0';
431 err
= virtblk_get_id(disk
, buf
);
435 if (err
== -EIO
) /* Unsupported? Make it empty. */
441 static DEVICE_ATTR_RO(serial
);
443 /* The queue's logical block size must be set before calling this */
444 static void virtblk_update_capacity(struct virtio_blk
*vblk
, bool resize
)
446 struct virtio_device
*vdev
= vblk
->vdev
;
447 struct request_queue
*q
= vblk
->disk
->queue
;
448 char cap_str_2
[10], cap_str_10
[10];
449 unsigned long long nblocks
;
452 /* Host must always specify the capacity. */
453 virtio_cread(vdev
, struct virtio_blk_config
, capacity
, &capacity
);
455 /* If capacity is too big, truncate with warning. */
456 if ((sector_t
)capacity
!= capacity
) {
457 dev_warn(&vdev
->dev
, "Capacity %llu too large: truncating\n",
458 (unsigned long long)capacity
);
459 capacity
= (sector_t
)-1;
462 nblocks
= DIV_ROUND_UP_ULL(capacity
, queue_logical_block_size(q
) >> 9);
464 string_get_size(nblocks
, queue_logical_block_size(q
),
465 STRING_UNITS_2
, cap_str_2
, sizeof(cap_str_2
));
466 string_get_size(nblocks
, queue_logical_block_size(q
),
467 STRING_UNITS_10
, cap_str_10
, sizeof(cap_str_10
));
469 dev_notice(&vdev
->dev
,
470 "[%s] %s%llu %d-byte logical blocks (%s/%s)\n",
471 vblk
->disk
->disk_name
,
472 resize
? "new size: " : "",
474 queue_logical_block_size(q
),
478 set_capacity(vblk
->disk
, capacity
);
481 static void virtblk_config_changed_work(struct work_struct
*work
)
483 struct virtio_blk
*vblk
=
484 container_of(work
, struct virtio_blk
, config_work
);
485 char *envp
[] = { "RESIZE=1", NULL
};
487 virtblk_update_capacity(vblk
, true);
488 revalidate_disk(vblk
->disk
);
489 kobject_uevent_env(&disk_to_dev(vblk
->disk
)->kobj
, KOBJ_CHANGE
, envp
);
492 static void virtblk_config_changed(struct virtio_device
*vdev
)
494 struct virtio_blk
*vblk
= vdev
->priv
;
496 queue_work(virtblk_wq
, &vblk
->config_work
);
499 static int init_vq(struct virtio_blk
*vblk
)
503 vq_callback_t
**callbacks
;
505 struct virtqueue
**vqs
;
506 unsigned short num_vqs
;
507 struct virtio_device
*vdev
= vblk
->vdev
;
508 struct irq_affinity desc
= { 0, };
510 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_MQ
,
511 struct virtio_blk_config
, num_queues
,
516 vblk
->vqs
= kmalloc_array(num_vqs
, sizeof(*vblk
->vqs
), GFP_KERNEL
);
520 names
= kmalloc_array(num_vqs
, sizeof(*names
), GFP_KERNEL
);
521 callbacks
= kmalloc_array(num_vqs
, sizeof(*callbacks
), GFP_KERNEL
);
522 vqs
= kmalloc_array(num_vqs
, sizeof(*vqs
), GFP_KERNEL
);
523 if (!names
|| !callbacks
|| !vqs
) {
528 for (i
= 0; i
< num_vqs
; i
++) {
529 callbacks
[i
] = virtblk_done
;
530 snprintf(vblk
->vqs
[i
].name
, VQ_NAME_LEN
, "req.%d", i
);
531 names
[i
] = vblk
->vqs
[i
].name
;
534 /* Discover virtqueues and write information to configuration. */
535 err
= virtio_find_vqs(vdev
, num_vqs
, vqs
, callbacks
, names
, &desc
);
539 for (i
= 0; i
< num_vqs
; i
++) {
540 spin_lock_init(&vblk
->vqs
[i
].lock
);
541 vblk
->vqs
[i
].vq
= vqs
[i
];
543 vblk
->num_vqs
= num_vqs
;
555 * Legacy naming scheme used for virtio devices. We are stuck with it for
556 * virtio blk but don't ever use it for any new driver.
558 static int virtblk_name_format(char *prefix
, int index
, char *buf
, int buflen
)
560 const int base
= 'z' - 'a' + 1;
561 char *begin
= buf
+ strlen(prefix
);
562 char *end
= buf
+ buflen
;
572 *--p
= 'a' + (index
% unit
);
573 index
= (index
/ unit
) - 1;
574 } while (index
>= 0);
576 memmove(begin
, p
, end
- p
);
577 memcpy(buf
, prefix
, strlen(prefix
));
582 static int virtblk_get_cache_mode(struct virtio_device
*vdev
)
587 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_CONFIG_WCE
,
588 struct virtio_blk_config
, wce
,
592 * If WCE is not configurable and flush is not available,
593 * assume no writeback cache is in use.
596 writeback
= virtio_has_feature(vdev
, VIRTIO_BLK_F_FLUSH
);
601 static void virtblk_update_cache_mode(struct virtio_device
*vdev
)
603 u8 writeback
= virtblk_get_cache_mode(vdev
);
604 struct virtio_blk
*vblk
= vdev
->priv
;
606 blk_queue_write_cache(vblk
->disk
->queue
, writeback
, false);
607 revalidate_disk(vblk
->disk
);
610 static const char *const virtblk_cache_types
[] = {
611 "write through", "write back"
615 cache_type_store(struct device
*dev
, struct device_attribute
*attr
,
616 const char *buf
, size_t count
)
618 struct gendisk
*disk
= dev_to_disk(dev
);
619 struct virtio_blk
*vblk
= disk
->private_data
;
620 struct virtio_device
*vdev
= vblk
->vdev
;
623 BUG_ON(!virtio_has_feature(vblk
->vdev
, VIRTIO_BLK_F_CONFIG_WCE
));
624 i
= sysfs_match_string(virtblk_cache_types
, buf
);
628 virtio_cwrite8(vdev
, offsetof(struct virtio_blk_config
, wce
), i
);
629 virtblk_update_cache_mode(vdev
);
634 cache_type_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
636 struct gendisk
*disk
= dev_to_disk(dev
);
637 struct virtio_blk
*vblk
= disk
->private_data
;
638 u8 writeback
= virtblk_get_cache_mode(vblk
->vdev
);
640 BUG_ON(writeback
>= ARRAY_SIZE(virtblk_cache_types
));
641 return snprintf(buf
, 40, "%s\n", virtblk_cache_types
[writeback
]);
644 static DEVICE_ATTR_RW(cache_type
);
646 static struct attribute
*virtblk_attrs
[] = {
647 &dev_attr_serial
.attr
,
648 &dev_attr_cache_type
.attr
,
652 static umode_t
virtblk_attrs_are_visible(struct kobject
*kobj
,
653 struct attribute
*a
, int n
)
655 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
656 struct gendisk
*disk
= dev_to_disk(dev
);
657 struct virtio_blk
*vblk
= disk
->private_data
;
658 struct virtio_device
*vdev
= vblk
->vdev
;
660 if (a
== &dev_attr_cache_type
.attr
&&
661 !virtio_has_feature(vdev
, VIRTIO_BLK_F_CONFIG_WCE
))
667 static const struct attribute_group virtblk_attr_group
= {
668 .attrs
= virtblk_attrs
,
669 .is_visible
= virtblk_attrs_are_visible
,
672 static const struct attribute_group
*virtblk_attr_groups
[] = {
677 static int virtblk_init_request(struct blk_mq_tag_set
*set
, struct request
*rq
,
678 unsigned int hctx_idx
, unsigned int numa_node
)
680 struct virtio_blk
*vblk
= set
->driver_data
;
681 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(rq
);
683 #ifdef CONFIG_VIRTIO_BLK_SCSI
684 vbr
->sreq
.sense
= vbr
->sense
;
686 sg_init_table(vbr
->sg
, vblk
->sg_elems
);
690 static int virtblk_map_queues(struct blk_mq_tag_set
*set
)
692 struct virtio_blk
*vblk
= set
->driver_data
;
694 return blk_mq_virtio_map_queues(&set
->map
[0], vblk
->vdev
, 0);
697 #ifdef CONFIG_VIRTIO_BLK_SCSI
698 static void virtblk_initialize_rq(struct request
*req
)
700 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(req
);
702 scsi_req_init(&vbr
->sreq
);
706 static const struct blk_mq_ops virtio_mq_ops
= {
707 .queue_rq
= virtio_queue_rq
,
708 .commit_rqs
= virtio_commit_rqs
,
709 .complete
= virtblk_request_done
,
710 .init_request
= virtblk_init_request
,
711 #ifdef CONFIG_VIRTIO_BLK_SCSI
712 .initialize_rq_fn
= virtblk_initialize_rq
,
714 .map_queues
= virtblk_map_queues
,
717 static unsigned int virtblk_queue_depth
;
718 module_param_named(queue_depth
, virtblk_queue_depth
, uint
, 0444);
720 static int virtblk_probe(struct virtio_device
*vdev
)
722 struct virtio_blk
*vblk
;
723 struct request_queue
*q
;
726 u32 v
, blk_size
, max_size
, sg_elems
, opt_io_size
;
728 u8 physical_block_exp
, alignment_offset
;
730 if (!vdev
->config
->get
) {
731 dev_err(&vdev
->dev
, "%s failure: config access disabled\n",
736 err
= ida_simple_get(&vd_index_ida
, 0, minor_to_index(1 << MINORBITS
),
742 /* We need to know how many segments before we allocate. */
743 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_SEG_MAX
,
744 struct virtio_blk_config
, seg_max
,
747 /* We need at least one SG element, whatever they say. */
748 if (err
|| !sg_elems
)
751 /* We need an extra sg elements at head and tail. */
753 vdev
->priv
= vblk
= kmalloc(sizeof(*vblk
), GFP_KERNEL
);
760 vblk
->sg_elems
= sg_elems
;
762 INIT_WORK(&vblk
->config_work
, virtblk_config_changed_work
);
768 /* FIXME: How many partitions? How long is a piece of string? */
769 vblk
->disk
= alloc_disk(1 << PART_BITS
);
775 /* Default queue sizing is to fill the ring. */
776 if (!virtblk_queue_depth
) {
777 virtblk_queue_depth
= vblk
->vqs
[0].vq
->num_free
;
778 /* ... but without indirect descs, we use 2 descs per req */
779 if (!virtio_has_feature(vdev
, VIRTIO_RING_F_INDIRECT_DESC
))
780 virtblk_queue_depth
/= 2;
783 memset(&vblk
->tag_set
, 0, sizeof(vblk
->tag_set
));
784 vblk
->tag_set
.ops
= &virtio_mq_ops
;
785 vblk
->tag_set
.queue_depth
= virtblk_queue_depth
;
786 vblk
->tag_set
.numa_node
= NUMA_NO_NODE
;
787 vblk
->tag_set
.flags
= BLK_MQ_F_SHOULD_MERGE
;
788 vblk
->tag_set
.cmd_size
=
789 sizeof(struct virtblk_req
) +
790 sizeof(struct scatterlist
) * sg_elems
;
791 vblk
->tag_set
.driver_data
= vblk
;
792 vblk
->tag_set
.nr_hw_queues
= vblk
->num_vqs
;
794 err
= blk_mq_alloc_tag_set(&vblk
->tag_set
);
798 q
= blk_mq_init_queue(&vblk
->tag_set
);
803 vblk
->disk
->queue
= q
;
807 virtblk_name_format("vd", index
, vblk
->disk
->disk_name
, DISK_NAME_LEN
);
809 vblk
->disk
->major
= major
;
810 vblk
->disk
->first_minor
= index_to_minor(index
);
811 vblk
->disk
->private_data
= vblk
;
812 vblk
->disk
->fops
= &virtblk_fops
;
813 vblk
->disk
->flags
|= GENHD_FL_EXT_DEVT
;
816 /* configure queue flush support */
817 virtblk_update_cache_mode(vdev
);
819 /* If disk is read-only in the host, the guest should obey */
820 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_RO
))
821 set_disk_ro(vblk
->disk
, 1);
823 /* We can handle whatever the host told us to handle. */
824 blk_queue_max_segments(q
, vblk
->sg_elems
-2);
826 /* No real sector limit. */
827 blk_queue_max_hw_sectors(q
, -1U);
829 max_size
= virtio_max_dma_size(vdev
);
831 /* Host can optionally specify maximum segment size and number of
833 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_SIZE_MAX
,
834 struct virtio_blk_config
, size_max
, &v
);
836 max_size
= min(max_size
, v
);
838 blk_queue_max_segment_size(q
, max_size
);
840 /* Host can optionally specify the block size of the device */
841 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_BLK_SIZE
,
842 struct virtio_blk_config
, blk_size
,
845 blk_queue_logical_block_size(q
, blk_size
);
847 blk_size
= queue_logical_block_size(q
);
849 /* Use topology information if available */
850 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
851 struct virtio_blk_config
, physical_block_exp
,
852 &physical_block_exp
);
853 if (!err
&& physical_block_exp
)
854 blk_queue_physical_block_size(q
,
855 blk_size
* (1 << physical_block_exp
));
857 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
858 struct virtio_blk_config
, alignment_offset
,
860 if (!err
&& alignment_offset
)
861 blk_queue_alignment_offset(q
, blk_size
* alignment_offset
);
863 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
864 struct virtio_blk_config
, min_io_size
,
866 if (!err
&& min_io_size
)
867 blk_queue_io_min(q
, blk_size
* min_io_size
);
869 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
870 struct virtio_blk_config
, opt_io_size
,
872 if (!err
&& opt_io_size
)
873 blk_queue_io_opt(q
, blk_size
* opt_io_size
);
875 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_DISCARD
)) {
876 q
->limits
.discard_granularity
= blk_size
;
878 virtio_cread(vdev
, struct virtio_blk_config
,
879 discard_sector_alignment
, &v
);
880 q
->limits
.discard_alignment
= v
? v
<< SECTOR_SHIFT
: 0;
882 virtio_cread(vdev
, struct virtio_blk_config
,
883 max_discard_sectors
, &v
);
884 blk_queue_max_discard_sectors(q
, v
? v
: UINT_MAX
);
886 virtio_cread(vdev
, struct virtio_blk_config
, max_discard_seg
,
888 blk_queue_max_discard_segments(q
,
890 MAX_DISCARD_SEGMENTS
));
892 blk_queue_flag_set(QUEUE_FLAG_DISCARD
, q
);
895 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_WRITE_ZEROES
)) {
896 virtio_cread(vdev
, struct virtio_blk_config
,
897 max_write_zeroes_sectors
, &v
);
898 blk_queue_max_write_zeroes_sectors(q
, v
? v
: UINT_MAX
);
901 virtblk_update_capacity(vblk
, false);
902 virtio_device_ready(vdev
);
904 device_add_disk(&vdev
->dev
, vblk
->disk
, virtblk_attr_groups
);
908 blk_mq_free_tag_set(&vblk
->tag_set
);
910 put_disk(vblk
->disk
);
912 vdev
->config
->del_vqs(vdev
);
916 ida_simple_remove(&vd_index_ida
, index
);
921 static void virtblk_remove(struct virtio_device
*vdev
)
923 struct virtio_blk
*vblk
= vdev
->priv
;
924 int index
= vblk
->index
;
927 /* Make sure no work handler is accessing the device. */
928 flush_work(&vblk
->config_work
);
930 del_gendisk(vblk
->disk
);
931 blk_cleanup_queue(vblk
->disk
->queue
);
933 blk_mq_free_tag_set(&vblk
->tag_set
);
935 /* Stop all the virtqueues. */
936 vdev
->config
->reset(vdev
);
938 refc
= kref_read(&disk_to_dev(vblk
->disk
)->kobj
.kref
);
939 put_disk(vblk
->disk
);
940 vdev
->config
->del_vqs(vdev
);
944 /* Only free device id if we don't have any users */
946 ida_simple_remove(&vd_index_ida
, index
);
949 #ifdef CONFIG_PM_SLEEP
950 static int virtblk_freeze(struct virtio_device
*vdev
)
952 struct virtio_blk
*vblk
= vdev
->priv
;
954 /* Ensure we don't receive any more interrupts */
955 vdev
->config
->reset(vdev
);
957 /* Make sure no work handler is accessing the device. */
958 flush_work(&vblk
->config_work
);
960 blk_mq_quiesce_queue(vblk
->disk
->queue
);
962 vdev
->config
->del_vqs(vdev
);
966 static int virtblk_restore(struct virtio_device
*vdev
)
968 struct virtio_blk
*vblk
= vdev
->priv
;
971 ret
= init_vq(vdev
->priv
);
975 virtio_device_ready(vdev
);
977 blk_mq_unquiesce_queue(vblk
->disk
->queue
);
982 static const struct virtio_device_id id_table
[] = {
983 { VIRTIO_ID_BLOCK
, VIRTIO_DEV_ANY_ID
},
987 static unsigned int features_legacy
[] = {
988 VIRTIO_BLK_F_SEG_MAX
, VIRTIO_BLK_F_SIZE_MAX
, VIRTIO_BLK_F_GEOMETRY
,
989 VIRTIO_BLK_F_RO
, VIRTIO_BLK_F_BLK_SIZE
,
990 #ifdef CONFIG_VIRTIO_BLK_SCSI
993 VIRTIO_BLK_F_FLUSH
, VIRTIO_BLK_F_TOPOLOGY
, VIRTIO_BLK_F_CONFIG_WCE
,
994 VIRTIO_BLK_F_MQ
, VIRTIO_BLK_F_DISCARD
, VIRTIO_BLK_F_WRITE_ZEROES
,
997 static unsigned int features
[] = {
998 VIRTIO_BLK_F_SEG_MAX
, VIRTIO_BLK_F_SIZE_MAX
, VIRTIO_BLK_F_GEOMETRY
,
999 VIRTIO_BLK_F_RO
, VIRTIO_BLK_F_BLK_SIZE
,
1000 VIRTIO_BLK_F_FLUSH
, VIRTIO_BLK_F_TOPOLOGY
, VIRTIO_BLK_F_CONFIG_WCE
,
1001 VIRTIO_BLK_F_MQ
, VIRTIO_BLK_F_DISCARD
, VIRTIO_BLK_F_WRITE_ZEROES
,
1004 static struct virtio_driver virtio_blk
= {
1005 .feature_table
= features
,
1006 .feature_table_size
= ARRAY_SIZE(features
),
1007 .feature_table_legacy
= features_legacy
,
1008 .feature_table_size_legacy
= ARRAY_SIZE(features_legacy
),
1009 .driver
.name
= KBUILD_MODNAME
,
1010 .driver
.owner
= THIS_MODULE
,
1011 .id_table
= id_table
,
1012 .probe
= virtblk_probe
,
1013 .remove
= virtblk_remove
,
1014 .config_changed
= virtblk_config_changed
,
1015 #ifdef CONFIG_PM_SLEEP
1016 .freeze
= virtblk_freeze
,
1017 .restore
= virtblk_restore
,
1021 static int __init
init(void)
1025 virtblk_wq
= alloc_workqueue("virtio-blk", 0, 0);
1029 major
= register_blkdev(0, "virtblk");
1032 goto out_destroy_workqueue
;
1035 error
= register_virtio_driver(&virtio_blk
);
1037 goto out_unregister_blkdev
;
1040 out_unregister_blkdev
:
1041 unregister_blkdev(major
, "virtblk");
1042 out_destroy_workqueue
:
1043 destroy_workqueue(virtblk_wq
);
1047 static void __exit
fini(void)
1049 unregister_virtio_driver(&virtio_blk
);
1050 unregister_blkdev(major
, "virtblk");
1051 destroy_workqueue(virtblk_wq
);
1056 MODULE_DEVICE_TABLE(virtio
, id_table
);
1057 MODULE_DESCRIPTION("Virtio block driver");
1058 MODULE_LICENSE("GPL");