1 // SPDX-License-Identifier: GPL-2.0-only
3 #include <linux/spinlock.h>
4 #include <linux/slab.h>
5 #include <linux/blkdev.h>
6 #include <linux/hdreg.h>
7 #include <linux/module.h>
8 #include <linux/mutex.h>
9 #include <linux/interrupt.h>
10 #include <linux/virtio.h>
11 #include <linux/virtio_blk.h>
12 #include <linux/scatterlist.h>
13 #include <linux/string_helpers.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 struct virtio_blk_outhdr out_hdr
;
60 struct scatterlist sg
[];
63 static inline blk_status_t
virtblk_result(struct virtblk_req
*vbr
)
65 switch (vbr
->status
) {
68 case VIRTIO_BLK_S_UNSUPP
:
69 return BLK_STS_NOTSUPP
;
75 static int virtblk_add_req(struct virtqueue
*vq
, struct virtblk_req
*vbr
,
76 struct scatterlist
*data_sg
, bool have_data
)
78 struct scatterlist hdr
, status
, *sgs
[3];
79 unsigned int num_out
= 0, num_in
= 0;
81 sg_init_one(&hdr
, &vbr
->out_hdr
, sizeof(vbr
->out_hdr
));
82 sgs
[num_out
++] = &hdr
;
85 if (vbr
->out_hdr
.type
& cpu_to_virtio32(vq
->vdev
, VIRTIO_BLK_T_OUT
))
86 sgs
[num_out
++] = data_sg
;
88 sgs
[num_out
+ num_in
++] = data_sg
;
91 sg_init_one(&status
, &vbr
->status
, sizeof(vbr
->status
));
92 sgs
[num_out
+ num_in
++] = &status
;
94 return virtqueue_add_sgs(vq
, sgs
, num_out
, num_in
, vbr
, GFP_ATOMIC
);
97 static int virtblk_setup_discard_write_zeroes(struct request
*req
, bool unmap
)
99 unsigned short segments
= blk_rq_nr_discard_segments(req
);
100 unsigned short n
= 0;
101 struct virtio_blk_discard_write_zeroes
*range
;
106 flags
|= VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP
;
108 range
= kmalloc_array(segments
, sizeof(*range
), GFP_ATOMIC
);
112 __rq_for_each_bio(bio
, req
) {
113 u64 sector
= bio
->bi_iter
.bi_sector
;
114 u32 num_sectors
= bio
->bi_iter
.bi_size
>> SECTOR_SHIFT
;
116 range
[n
].flags
= cpu_to_le32(flags
);
117 range
[n
].num_sectors
= cpu_to_le32(num_sectors
);
118 range
[n
].sector
= cpu_to_le64(sector
);
122 req
->special_vec
.bv_page
= virt_to_page(range
);
123 req
->special_vec
.bv_offset
= offset_in_page(range
);
124 req
->special_vec
.bv_len
= sizeof(*range
) * segments
;
125 req
->rq_flags
|= RQF_SPECIAL_PAYLOAD
;
130 static inline void virtblk_request_done(struct request
*req
)
132 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(req
);
134 if (req
->rq_flags
& RQF_SPECIAL_PAYLOAD
) {
135 kfree(page_address(req
->special_vec
.bv_page
) +
136 req
->special_vec
.bv_offset
);
139 blk_mq_end_request(req
, virtblk_result(vbr
));
142 static void virtblk_done(struct virtqueue
*vq
)
144 struct virtio_blk
*vblk
= vq
->vdev
->priv
;
145 bool req_done
= false;
147 struct virtblk_req
*vbr
;
151 spin_lock_irqsave(&vblk
->vqs
[qid
].lock
, flags
);
153 virtqueue_disable_cb(vq
);
154 while ((vbr
= virtqueue_get_buf(vblk
->vqs
[qid
].vq
, &len
)) != NULL
) {
155 struct request
*req
= blk_mq_rq_from_pdu(vbr
);
157 blk_mq_complete_request(req
);
160 if (unlikely(virtqueue_is_broken(vq
)))
162 } while (!virtqueue_enable_cb(vq
));
164 /* In case queue is stopped waiting for more buffers. */
166 blk_mq_start_stopped_hw_queues(vblk
->disk
->queue
, true);
167 spin_unlock_irqrestore(&vblk
->vqs
[qid
].lock
, flags
);
170 static void virtio_commit_rqs(struct blk_mq_hw_ctx
*hctx
)
172 struct virtio_blk
*vblk
= hctx
->queue
->queuedata
;
173 struct virtio_blk_vq
*vq
= &vblk
->vqs
[hctx
->queue_num
];
176 spin_lock_irq(&vq
->lock
);
177 kick
= virtqueue_kick_prepare(vq
->vq
);
178 spin_unlock_irq(&vq
->lock
);
181 virtqueue_notify(vq
->vq
);
184 static blk_status_t
virtio_queue_rq(struct blk_mq_hw_ctx
*hctx
,
185 const struct blk_mq_queue_data
*bd
)
187 struct virtio_blk
*vblk
= hctx
->queue
->queuedata
;
188 struct request
*req
= bd
->rq
;
189 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(req
);
192 int qid
= hctx
->queue_num
;
198 BUG_ON(req
->nr_phys_segments
+ 2 > vblk
->sg_elems
);
200 switch (req_op(req
)) {
206 type
= VIRTIO_BLK_T_FLUSH
;
209 type
= VIRTIO_BLK_T_DISCARD
;
211 case REQ_OP_WRITE_ZEROES
:
212 type
= VIRTIO_BLK_T_WRITE_ZEROES
;
213 unmap
= !(req
->cmd_flags
& REQ_NOUNMAP
);
216 type
= VIRTIO_BLK_T_GET_ID
;
220 return BLK_STS_IOERR
;
223 vbr
->out_hdr
.type
= cpu_to_virtio32(vblk
->vdev
, type
);
224 vbr
->out_hdr
.sector
= type
?
225 0 : cpu_to_virtio64(vblk
->vdev
, blk_rq_pos(req
));
226 vbr
->out_hdr
.ioprio
= cpu_to_virtio32(vblk
->vdev
, req_get_ioprio(req
));
228 blk_mq_start_request(req
);
230 if (type
== VIRTIO_BLK_T_DISCARD
|| type
== VIRTIO_BLK_T_WRITE_ZEROES
) {
231 err
= virtblk_setup_discard_write_zeroes(req
, unmap
);
233 return BLK_STS_RESOURCE
;
236 num
= blk_rq_map_sg(hctx
->queue
, req
, vbr
->sg
);
238 if (rq_data_dir(req
) == WRITE
)
239 vbr
->out_hdr
.type
|= cpu_to_virtio32(vblk
->vdev
, VIRTIO_BLK_T_OUT
);
241 vbr
->out_hdr
.type
|= cpu_to_virtio32(vblk
->vdev
, VIRTIO_BLK_T_IN
);
244 spin_lock_irqsave(&vblk
->vqs
[qid
].lock
, flags
);
245 err
= virtblk_add_req(vblk
->vqs
[qid
].vq
, vbr
, vbr
->sg
, num
);
247 virtqueue_kick(vblk
->vqs
[qid
].vq
);
248 blk_mq_stop_hw_queue(hctx
);
249 spin_unlock_irqrestore(&vblk
->vqs
[qid
].lock
, flags
);
250 /* Out of mem doesn't actually happen, since we fall back
251 * to direct descriptors */
252 if (err
== -ENOMEM
|| err
== -ENOSPC
)
253 return BLK_STS_DEV_RESOURCE
;
254 return BLK_STS_IOERR
;
257 if (bd
->last
&& virtqueue_kick_prepare(vblk
->vqs
[qid
].vq
))
259 spin_unlock_irqrestore(&vblk
->vqs
[qid
].lock
, flags
);
262 virtqueue_notify(vblk
->vqs
[qid
].vq
);
266 /* return id (s/n) string for *disk to *id_str
268 static int virtblk_get_id(struct gendisk
*disk
, char *id_str
)
270 struct virtio_blk
*vblk
= disk
->private_data
;
271 struct request_queue
*q
= vblk
->disk
->queue
;
275 req
= blk_get_request(q
, REQ_OP_DRV_IN
, 0);
279 err
= blk_rq_map_kern(q
, req
, id_str
, VIRTIO_BLK_ID_BYTES
, GFP_KERNEL
);
283 blk_execute_rq(vblk
->disk
->queue
, vblk
->disk
, req
, false);
284 err
= blk_status_to_errno(virtblk_result(blk_mq_rq_to_pdu(req
)));
286 blk_put_request(req
);
290 /* We provide getgeo only to please some old bootloader/partitioning tools */
291 static int virtblk_getgeo(struct block_device
*bd
, struct hd_geometry
*geo
)
293 struct virtio_blk
*vblk
= bd
->bd_disk
->private_data
;
295 /* see if the host passed in geometry config */
296 if (virtio_has_feature(vblk
->vdev
, VIRTIO_BLK_F_GEOMETRY
)) {
297 virtio_cread(vblk
->vdev
, struct virtio_blk_config
,
298 geometry
.cylinders
, &geo
->cylinders
);
299 virtio_cread(vblk
->vdev
, struct virtio_blk_config
,
300 geometry
.heads
, &geo
->heads
);
301 virtio_cread(vblk
->vdev
, struct virtio_blk_config
,
302 geometry
.sectors
, &geo
->sectors
);
304 /* some standard values, similar to sd */
306 geo
->sectors
= 1 << 5;
307 geo
->cylinders
= get_capacity(bd
->bd_disk
) >> 11;
312 static const struct block_device_operations virtblk_fops
= {
313 .owner
= THIS_MODULE
,
314 .getgeo
= virtblk_getgeo
,
317 static int index_to_minor(int index
)
319 return index
<< PART_BITS
;
322 static int minor_to_index(int minor
)
324 return minor
>> PART_BITS
;
327 static ssize_t
serial_show(struct device
*dev
,
328 struct device_attribute
*attr
, char *buf
)
330 struct gendisk
*disk
= dev_to_disk(dev
);
333 /* sysfs gives us a PAGE_SIZE buffer */
334 BUILD_BUG_ON(PAGE_SIZE
< VIRTIO_BLK_ID_BYTES
);
336 buf
[VIRTIO_BLK_ID_BYTES
] = '\0';
337 err
= virtblk_get_id(disk
, buf
);
341 if (err
== -EIO
) /* Unsupported? Make it empty. */
347 static DEVICE_ATTR_RO(serial
);
349 /* The queue's logical block size must be set before calling this */
350 static void virtblk_update_capacity(struct virtio_blk
*vblk
, bool resize
)
352 struct virtio_device
*vdev
= vblk
->vdev
;
353 struct request_queue
*q
= vblk
->disk
->queue
;
354 char cap_str_2
[10], cap_str_10
[10];
355 unsigned long long nblocks
;
358 /* Host must always specify the capacity. */
359 virtio_cread(vdev
, struct virtio_blk_config
, capacity
, &capacity
);
361 /* If capacity is too big, truncate with warning. */
362 if ((sector_t
)capacity
!= capacity
) {
363 dev_warn(&vdev
->dev
, "Capacity %llu too large: truncating\n",
364 (unsigned long long)capacity
);
365 capacity
= (sector_t
)-1;
368 nblocks
= DIV_ROUND_UP_ULL(capacity
, queue_logical_block_size(q
) >> 9);
370 string_get_size(nblocks
, queue_logical_block_size(q
),
371 STRING_UNITS_2
, cap_str_2
, sizeof(cap_str_2
));
372 string_get_size(nblocks
, queue_logical_block_size(q
),
373 STRING_UNITS_10
, cap_str_10
, sizeof(cap_str_10
));
375 dev_notice(&vdev
->dev
,
376 "[%s] %s%llu %d-byte logical blocks (%s/%s)\n",
377 vblk
->disk
->disk_name
,
378 resize
? "new size: " : "",
380 queue_logical_block_size(q
),
384 set_capacity(vblk
->disk
, capacity
);
387 static void virtblk_config_changed_work(struct work_struct
*work
)
389 struct virtio_blk
*vblk
=
390 container_of(work
, struct virtio_blk
, config_work
);
391 char *envp
[] = { "RESIZE=1", NULL
};
393 virtblk_update_capacity(vblk
, true);
394 revalidate_disk(vblk
->disk
);
395 kobject_uevent_env(&disk_to_dev(vblk
->disk
)->kobj
, KOBJ_CHANGE
, envp
);
398 static void virtblk_config_changed(struct virtio_device
*vdev
)
400 struct virtio_blk
*vblk
= vdev
->priv
;
402 queue_work(virtblk_wq
, &vblk
->config_work
);
405 static int init_vq(struct virtio_blk
*vblk
)
409 vq_callback_t
**callbacks
;
411 struct virtqueue
**vqs
;
412 unsigned short num_vqs
;
413 struct virtio_device
*vdev
= vblk
->vdev
;
414 struct irq_affinity desc
= { 0, };
416 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_MQ
,
417 struct virtio_blk_config
, num_queues
,
422 num_vqs
= min_t(unsigned int, nr_cpu_ids
, num_vqs
);
424 vblk
->vqs
= kmalloc_array(num_vqs
, sizeof(*vblk
->vqs
), GFP_KERNEL
);
428 names
= kmalloc_array(num_vqs
, sizeof(*names
), GFP_KERNEL
);
429 callbacks
= kmalloc_array(num_vqs
, sizeof(*callbacks
), GFP_KERNEL
);
430 vqs
= kmalloc_array(num_vqs
, sizeof(*vqs
), GFP_KERNEL
);
431 if (!names
|| !callbacks
|| !vqs
) {
436 for (i
= 0; i
< num_vqs
; i
++) {
437 callbacks
[i
] = virtblk_done
;
438 snprintf(vblk
->vqs
[i
].name
, VQ_NAME_LEN
, "req.%d", i
);
439 names
[i
] = vblk
->vqs
[i
].name
;
442 /* Discover virtqueues and write information to configuration. */
443 err
= virtio_find_vqs(vdev
, num_vqs
, vqs
, callbacks
, names
, &desc
);
447 for (i
= 0; i
< num_vqs
; i
++) {
448 spin_lock_init(&vblk
->vqs
[i
].lock
);
449 vblk
->vqs
[i
].vq
= vqs
[i
];
451 vblk
->num_vqs
= num_vqs
;
463 * Legacy naming scheme used for virtio devices. We are stuck with it for
464 * virtio blk but don't ever use it for any new driver.
466 static int virtblk_name_format(char *prefix
, int index
, char *buf
, int buflen
)
468 const int base
= 'z' - 'a' + 1;
469 char *begin
= buf
+ strlen(prefix
);
470 char *end
= buf
+ buflen
;
480 *--p
= 'a' + (index
% unit
);
481 index
= (index
/ unit
) - 1;
482 } while (index
>= 0);
484 memmove(begin
, p
, end
- p
);
485 memcpy(buf
, prefix
, strlen(prefix
));
490 static int virtblk_get_cache_mode(struct virtio_device
*vdev
)
495 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_CONFIG_WCE
,
496 struct virtio_blk_config
, wce
,
500 * If WCE is not configurable and flush is not available,
501 * assume no writeback cache is in use.
504 writeback
= virtio_has_feature(vdev
, VIRTIO_BLK_F_FLUSH
);
509 static void virtblk_update_cache_mode(struct virtio_device
*vdev
)
511 u8 writeback
= virtblk_get_cache_mode(vdev
);
512 struct virtio_blk
*vblk
= vdev
->priv
;
514 blk_queue_write_cache(vblk
->disk
->queue
, writeback
, false);
515 revalidate_disk(vblk
->disk
);
518 static const char *const virtblk_cache_types
[] = {
519 "write through", "write back"
523 cache_type_store(struct device
*dev
, struct device_attribute
*attr
,
524 const char *buf
, size_t count
)
526 struct gendisk
*disk
= dev_to_disk(dev
);
527 struct virtio_blk
*vblk
= disk
->private_data
;
528 struct virtio_device
*vdev
= vblk
->vdev
;
531 BUG_ON(!virtio_has_feature(vblk
->vdev
, VIRTIO_BLK_F_CONFIG_WCE
));
532 i
= sysfs_match_string(virtblk_cache_types
, buf
);
536 virtio_cwrite8(vdev
, offsetof(struct virtio_blk_config
, wce
), i
);
537 virtblk_update_cache_mode(vdev
);
542 cache_type_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
544 struct gendisk
*disk
= dev_to_disk(dev
);
545 struct virtio_blk
*vblk
= disk
->private_data
;
546 u8 writeback
= virtblk_get_cache_mode(vblk
->vdev
);
548 BUG_ON(writeback
>= ARRAY_SIZE(virtblk_cache_types
));
549 return snprintf(buf
, 40, "%s\n", virtblk_cache_types
[writeback
]);
552 static DEVICE_ATTR_RW(cache_type
);
554 static struct attribute
*virtblk_attrs
[] = {
555 &dev_attr_serial
.attr
,
556 &dev_attr_cache_type
.attr
,
560 static umode_t
virtblk_attrs_are_visible(struct kobject
*kobj
,
561 struct attribute
*a
, int n
)
563 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
564 struct gendisk
*disk
= dev_to_disk(dev
);
565 struct virtio_blk
*vblk
= disk
->private_data
;
566 struct virtio_device
*vdev
= vblk
->vdev
;
568 if (a
== &dev_attr_cache_type
.attr
&&
569 !virtio_has_feature(vdev
, VIRTIO_BLK_F_CONFIG_WCE
))
575 static const struct attribute_group virtblk_attr_group
= {
576 .attrs
= virtblk_attrs
,
577 .is_visible
= virtblk_attrs_are_visible
,
580 static const struct attribute_group
*virtblk_attr_groups
[] = {
585 static int virtblk_init_request(struct blk_mq_tag_set
*set
, struct request
*rq
,
586 unsigned int hctx_idx
, unsigned int numa_node
)
588 struct virtio_blk
*vblk
= set
->driver_data
;
589 struct virtblk_req
*vbr
= blk_mq_rq_to_pdu(rq
);
591 sg_init_table(vbr
->sg
, vblk
->sg_elems
);
595 static int virtblk_map_queues(struct blk_mq_tag_set
*set
)
597 struct virtio_blk
*vblk
= set
->driver_data
;
599 return blk_mq_virtio_map_queues(&set
->map
[HCTX_TYPE_DEFAULT
],
603 static const struct blk_mq_ops virtio_mq_ops
= {
604 .queue_rq
= virtio_queue_rq
,
605 .commit_rqs
= virtio_commit_rqs
,
606 .complete
= virtblk_request_done
,
607 .init_request
= virtblk_init_request
,
608 .map_queues
= virtblk_map_queues
,
611 static unsigned int virtblk_queue_depth
;
612 module_param_named(queue_depth
, virtblk_queue_depth
, uint
, 0444);
614 static int virtblk_probe(struct virtio_device
*vdev
)
616 struct virtio_blk
*vblk
;
617 struct request_queue
*q
;
620 u32 v
, blk_size
, max_size
, sg_elems
, opt_io_size
;
622 u8 physical_block_exp
, alignment_offset
;
624 if (!vdev
->config
->get
) {
625 dev_err(&vdev
->dev
, "%s failure: config access disabled\n",
630 err
= ida_simple_get(&vd_index_ida
, 0, minor_to_index(1 << MINORBITS
),
636 /* We need to know how many segments before we allocate. */
637 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_SEG_MAX
,
638 struct virtio_blk_config
, seg_max
,
641 /* We need at least one SG element, whatever they say. */
642 if (err
|| !sg_elems
)
645 /* We need an extra sg elements at head and tail. */
647 vdev
->priv
= vblk
= kmalloc(sizeof(*vblk
), GFP_KERNEL
);
654 vblk
->sg_elems
= sg_elems
;
656 INIT_WORK(&vblk
->config_work
, virtblk_config_changed_work
);
662 /* FIXME: How many partitions? How long is a piece of string? */
663 vblk
->disk
= alloc_disk(1 << PART_BITS
);
669 /* Default queue sizing is to fill the ring. */
670 if (!virtblk_queue_depth
) {
671 virtblk_queue_depth
= vblk
->vqs
[0].vq
->num_free
;
672 /* ... but without indirect descs, we use 2 descs per req */
673 if (!virtio_has_feature(vdev
, VIRTIO_RING_F_INDIRECT_DESC
))
674 virtblk_queue_depth
/= 2;
677 memset(&vblk
->tag_set
, 0, sizeof(vblk
->tag_set
));
678 vblk
->tag_set
.ops
= &virtio_mq_ops
;
679 vblk
->tag_set
.queue_depth
= virtblk_queue_depth
;
680 vblk
->tag_set
.numa_node
= NUMA_NO_NODE
;
681 vblk
->tag_set
.flags
= BLK_MQ_F_SHOULD_MERGE
;
682 vblk
->tag_set
.cmd_size
=
683 sizeof(struct virtblk_req
) +
684 sizeof(struct scatterlist
) * sg_elems
;
685 vblk
->tag_set
.driver_data
= vblk
;
686 vblk
->tag_set
.nr_hw_queues
= vblk
->num_vqs
;
688 err
= blk_mq_alloc_tag_set(&vblk
->tag_set
);
692 q
= blk_mq_init_queue(&vblk
->tag_set
);
697 vblk
->disk
->queue
= q
;
701 virtblk_name_format("vd", index
, vblk
->disk
->disk_name
, DISK_NAME_LEN
);
703 vblk
->disk
->major
= major
;
704 vblk
->disk
->first_minor
= index_to_minor(index
);
705 vblk
->disk
->private_data
= vblk
;
706 vblk
->disk
->fops
= &virtblk_fops
;
707 vblk
->disk
->flags
|= GENHD_FL_EXT_DEVT
;
710 /* configure queue flush support */
711 virtblk_update_cache_mode(vdev
);
713 /* If disk is read-only in the host, the guest should obey */
714 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_RO
))
715 set_disk_ro(vblk
->disk
, 1);
717 /* We can handle whatever the host told us to handle. */
718 blk_queue_max_segments(q
, vblk
->sg_elems
-2);
720 /* No real sector limit. */
721 blk_queue_max_hw_sectors(q
, -1U);
723 max_size
= virtio_max_dma_size(vdev
);
725 /* Host can optionally specify maximum segment size and number of
727 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_SIZE_MAX
,
728 struct virtio_blk_config
, size_max
, &v
);
730 max_size
= min(max_size
, v
);
732 blk_queue_max_segment_size(q
, max_size
);
734 /* Host can optionally specify the block size of the device */
735 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_BLK_SIZE
,
736 struct virtio_blk_config
, blk_size
,
739 blk_queue_logical_block_size(q
, blk_size
);
741 blk_size
= queue_logical_block_size(q
);
743 /* Use topology information if available */
744 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
745 struct virtio_blk_config
, physical_block_exp
,
746 &physical_block_exp
);
747 if (!err
&& physical_block_exp
)
748 blk_queue_physical_block_size(q
,
749 blk_size
* (1 << physical_block_exp
));
751 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
752 struct virtio_blk_config
, alignment_offset
,
754 if (!err
&& alignment_offset
)
755 blk_queue_alignment_offset(q
, blk_size
* alignment_offset
);
757 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
758 struct virtio_blk_config
, min_io_size
,
760 if (!err
&& min_io_size
)
761 blk_queue_io_min(q
, blk_size
* min_io_size
);
763 err
= virtio_cread_feature(vdev
, VIRTIO_BLK_F_TOPOLOGY
,
764 struct virtio_blk_config
, opt_io_size
,
766 if (!err
&& opt_io_size
)
767 blk_queue_io_opt(q
, blk_size
* opt_io_size
);
769 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_DISCARD
)) {
770 q
->limits
.discard_granularity
= blk_size
;
772 virtio_cread(vdev
, struct virtio_blk_config
,
773 discard_sector_alignment
, &v
);
774 q
->limits
.discard_alignment
= v
? v
<< SECTOR_SHIFT
: 0;
776 virtio_cread(vdev
, struct virtio_blk_config
,
777 max_discard_sectors
, &v
);
778 blk_queue_max_discard_sectors(q
, v
? v
: UINT_MAX
);
780 virtio_cread(vdev
, struct virtio_blk_config
, max_discard_seg
,
782 blk_queue_max_discard_segments(q
,
784 MAX_DISCARD_SEGMENTS
));
786 blk_queue_flag_set(QUEUE_FLAG_DISCARD
, q
);
789 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_WRITE_ZEROES
)) {
790 virtio_cread(vdev
, struct virtio_blk_config
,
791 max_write_zeroes_sectors
, &v
);
792 blk_queue_max_write_zeroes_sectors(q
, v
? v
: UINT_MAX
);
795 virtblk_update_capacity(vblk
, false);
796 virtio_device_ready(vdev
);
798 device_add_disk(&vdev
->dev
, vblk
->disk
, virtblk_attr_groups
);
802 blk_mq_free_tag_set(&vblk
->tag_set
);
804 put_disk(vblk
->disk
);
806 vdev
->config
->del_vqs(vdev
);
810 ida_simple_remove(&vd_index_ida
, index
);
815 static void virtblk_remove(struct virtio_device
*vdev
)
817 struct virtio_blk
*vblk
= vdev
->priv
;
818 int index
= vblk
->index
;
821 /* Make sure no work handler is accessing the device. */
822 flush_work(&vblk
->config_work
);
824 del_gendisk(vblk
->disk
);
825 blk_cleanup_queue(vblk
->disk
->queue
);
827 blk_mq_free_tag_set(&vblk
->tag_set
);
829 /* Stop all the virtqueues. */
830 vdev
->config
->reset(vdev
);
832 refc
= kref_read(&disk_to_dev(vblk
->disk
)->kobj
.kref
);
833 put_disk(vblk
->disk
);
834 vdev
->config
->del_vqs(vdev
);
838 /* Only free device id if we don't have any users */
840 ida_simple_remove(&vd_index_ida
, index
);
843 #ifdef CONFIG_PM_SLEEP
844 static int virtblk_freeze(struct virtio_device
*vdev
)
846 struct virtio_blk
*vblk
= vdev
->priv
;
848 /* Ensure we don't receive any more interrupts */
849 vdev
->config
->reset(vdev
);
851 /* Make sure no work handler is accessing the device. */
852 flush_work(&vblk
->config_work
);
854 blk_mq_quiesce_queue(vblk
->disk
->queue
);
856 vdev
->config
->del_vqs(vdev
);
860 static int virtblk_restore(struct virtio_device
*vdev
)
862 struct virtio_blk
*vblk
= vdev
->priv
;
865 ret
= init_vq(vdev
->priv
);
869 virtio_device_ready(vdev
);
871 blk_mq_unquiesce_queue(vblk
->disk
->queue
);
876 static const struct virtio_device_id id_table
[] = {
877 { VIRTIO_ID_BLOCK
, VIRTIO_DEV_ANY_ID
},
881 static unsigned int features_legacy
[] = {
882 VIRTIO_BLK_F_SEG_MAX
, VIRTIO_BLK_F_SIZE_MAX
, VIRTIO_BLK_F_GEOMETRY
,
883 VIRTIO_BLK_F_RO
, VIRTIO_BLK_F_BLK_SIZE
,
884 VIRTIO_BLK_F_FLUSH
, VIRTIO_BLK_F_TOPOLOGY
, VIRTIO_BLK_F_CONFIG_WCE
,
885 VIRTIO_BLK_F_MQ
, VIRTIO_BLK_F_DISCARD
, VIRTIO_BLK_F_WRITE_ZEROES
,
888 static unsigned int features
[] = {
889 VIRTIO_BLK_F_SEG_MAX
, VIRTIO_BLK_F_SIZE_MAX
, VIRTIO_BLK_F_GEOMETRY
,
890 VIRTIO_BLK_F_RO
, VIRTIO_BLK_F_BLK_SIZE
,
891 VIRTIO_BLK_F_FLUSH
, VIRTIO_BLK_F_TOPOLOGY
, VIRTIO_BLK_F_CONFIG_WCE
,
892 VIRTIO_BLK_F_MQ
, VIRTIO_BLK_F_DISCARD
, VIRTIO_BLK_F_WRITE_ZEROES
,
895 static struct virtio_driver virtio_blk
= {
896 .feature_table
= features
,
897 .feature_table_size
= ARRAY_SIZE(features
),
898 .feature_table_legacy
= features_legacy
,
899 .feature_table_size_legacy
= ARRAY_SIZE(features_legacy
),
900 .driver
.name
= KBUILD_MODNAME
,
901 .driver
.owner
= THIS_MODULE
,
902 .id_table
= id_table
,
903 .probe
= virtblk_probe
,
904 .remove
= virtblk_remove
,
905 .config_changed
= virtblk_config_changed
,
906 #ifdef CONFIG_PM_SLEEP
907 .freeze
= virtblk_freeze
,
908 .restore
= virtblk_restore
,
912 static int __init
init(void)
916 virtblk_wq
= alloc_workqueue("virtio-blk", 0, 0);
920 major
= register_blkdev(0, "virtblk");
923 goto out_destroy_workqueue
;
926 error
= register_virtio_driver(&virtio_blk
);
928 goto out_unregister_blkdev
;
931 out_unregister_blkdev
:
932 unregister_blkdev(major
, "virtblk");
933 out_destroy_workqueue
:
934 destroy_workqueue(virtblk_wq
);
938 static void __exit
fini(void)
940 unregister_virtio_driver(&virtio_blk
);
941 unregister_blkdev(major
, "virtblk");
942 destroy_workqueue(virtblk_wq
);
947 MODULE_DEVICE_TABLE(virtio
, id_table
);
948 MODULE_DESCRIPTION("Virtio block driver");
949 MODULE_LICENSE("GPL");