From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50018) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z9UpH-0003tj-25 for qemu-devel@nongnu.org; Mon, 29 Jun 2015 04:54:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z9UpG-0002rQ-6q for qemu-devel@nongnu.org; Mon, 29 Jun 2015 04:54:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33078) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z9UpG-0002r5-23 for qemu-devel@nongnu.org; Mon, 29 Jun 2015 04:54:02 -0400 From: Gerd Hoffmann Date: Mon, 29 Jun 2015 10:53:31 +0200 Message-Id: <1435568020-8669-10-git-send-email-kraxel@redhat.com> In-Reply-To: <1435568020-8669-1-git-send-email-kraxel@redhat.com> References: <1435568020-8669-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 09/18] virtio: add version 1.0 support to vp_{get, set}_status List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: seabios@seabios.org Cc: Gerd Hoffmann , qemu-devel@nongnu.org, "Michael S. Tsirkin" Signed-off-by: Gerd Hoffmann --- src/hw/virtio-pci.c | 25 +++++++++++++++++++++++++ src/hw/virtio-pci.h | 13 ++----------- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/src/hw/virtio-pci.c b/src/hw/virtio-pci.c index 68f1ded..b414c71 100644 --- a/src/hw/virtio-pci.c +++ b/src/hw/virtio-pci.c @@ -65,6 +65,31 @@ void vp_set_features(struct vp_device *vp, u64 features) } } +u8 vp_get_status(struct vp_device *vp) +{ + u8 status; + + if (vp->use_modern) { + vp_modern_read(vp->common, virtio_pci_common_cfg, + device_status, status); + } else { + status = inb(vp->ioaddr + VIRTIO_PCI_STATUS); + } + return status; +} + +void vp_set_status(struct vp_device *vp, u8 status) +{ + if (status == 0) /* reset */ + return; + if (vp->use_modern) { + vp_modern_write(vp->common, virtio_pci_common_cfg, + device_status, status); + } else { + outb(status, vp->ioaddr + VIRTIO_PCI_STATUS); + } +} + int vp_find_vq(struct vp_device *vp, int queue_index, struct vring_virtqueue **p_vq) { diff --git a/src/hw/virtio-pci.h b/src/hw/virtio-pci.h index e275703..079aa53 100644 --- a/src/hw/virtio-pci.h +++ b/src/hw/virtio-pci.h @@ -202,17 +202,8 @@ static inline void vp_get(struct vp_device *vp, unsigned offset, ptr[i] = inb(ioaddr + VIRTIO_PCI_CONFIG + offset + i); } -static inline u8 vp_get_status(struct vp_device *vp) -{ - return inb(GET_LOWFLAT(vp->ioaddr) + VIRTIO_PCI_STATUS); -} - -static inline void vp_set_status(struct vp_device *vp, u8 status) -{ - if (status == 0) /* reset */ - return; - outb(status, GET_LOWFLAT(vp->ioaddr) + VIRTIO_PCI_STATUS); -} +u8 vp_get_status(struct vp_device *vp); +void vp_set_status(struct vp_device *vp, u8 status); static inline u8 vp_get_isr(struct vp_device *vp) { -- 1.8.3.1