virtio-pci-modern: introduce vp_modern_queue_address()
This patch introduce a helper to set virtqueue address for modern address. Signed-off-by: Jason Wang <jasowang@redhat.com> Link: https://lore.kernel.org/r/20210104065503.199631-11-jasowang@redhat.com Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
3fbda9c1a6
commit
e1b0fa2e38
@ -210,6 +210,30 @@ static u16 vp_modern_queue_vector(struct virtio_pci_modern_device *mdev,
|
||||
return vp_ioread16(&cfg->queue_msix_vector);
|
||||
}
|
||||
|
||||
/*
|
||||
* vp_modern_queue_address - set the virtqueue address
|
||||
* @mdev: the modern virtio-pci device
|
||||
* @index: the queue index
|
||||
* @desc_addr: address of the descriptor area
|
||||
* @driver_addr: address of the driver area
|
||||
* @device_addr: address of the device area
|
||||
*/
|
||||
static void vp_modern_queue_address(struct virtio_pci_modern_device *mdev,
|
||||
u16 index, u64 desc_addr, u64 driver_addr,
|
||||
u64 device_addr)
|
||||
{
|
||||
struct virtio_pci_common_cfg __iomem *cfg = mdev->common;
|
||||
|
||||
vp_iowrite16(index, &cfg->queue_select);
|
||||
|
||||
vp_iowrite64_twopart(desc_addr, &cfg->queue_desc_lo,
|
||||
&cfg->queue_desc_hi);
|
||||
vp_iowrite64_twopart(driver_addr, &cfg->queue_avail_lo,
|
||||
&cfg->queue_avail_hi);
|
||||
vp_iowrite64_twopart(device_addr, &cfg->queue_used_lo,
|
||||
&cfg->queue_used_hi);
|
||||
}
|
||||
|
||||
/* virtio config->finalize_features() implementation */
|
||||
static int vp_finalize_features(struct virtio_device *vdev)
|
||||
{
|
||||
@ -459,12 +483,9 @@ static struct virtqueue *setup_vq(struct virtio_pci_device *vp_dev,
|
||||
|
||||
/* activate the queue */
|
||||
vp_iowrite16(virtqueue_get_vring_size(vq), &cfg->queue_size);
|
||||
vp_iowrite64_twopart(virtqueue_get_desc_addr(vq),
|
||||
&cfg->queue_desc_lo, &cfg->queue_desc_hi);
|
||||
vp_iowrite64_twopart(virtqueue_get_avail_addr(vq),
|
||||
&cfg->queue_avail_lo, &cfg->queue_avail_hi);
|
||||
vp_iowrite64_twopart(virtqueue_get_used_addr(vq),
|
||||
&cfg->queue_used_lo, &cfg->queue_used_hi);
|
||||
vp_modern_queue_address(mdev, index, virtqueue_get_desc_addr(vq),
|
||||
virtqueue_get_avail_addr(vq),
|
||||
virtqueue_get_used_addr(vq));
|
||||
|
||||
if (mdev->notify_base) {
|
||||
/* offset should not wrap */
|
||||
|
Loading…
Reference in New Issue
Block a user