From: Alex Williamson <alex.williamson@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org, intel-gvt-dev@lists.freedesktop.org
Subject: Re: [Qemu-devel] [PATCH v2 3/3] vfio/display: delay link up event
Date: Wed, 20 Feb 2019 15:39:11 -0700 [thread overview]
Message-ID: <20190220153911.32c9dcd0@w520.home> (raw)
In-Reply-To: <20190220084753.9130-4-kraxel@redhat.com>
On Wed, 20 Feb 2019 09:47:53 +0100
Gerd Hoffmann <kraxel@redhat.com> wrote:
> Kick the display link up event with a 0.1 sec delay,
> so the guest has a chance to notice the link down first.
>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
> include/hw/vfio/vfio-common.h | 1 +
> hw/vfio/display.c | 26 +++++++++++++++++++++++---
> 2 files changed, 24 insertions(+), 3 deletions(-)
>
> diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h
> index 5f7f709b95..b65a2f0518 100644
> --- a/include/hw/vfio/vfio-common.h
> +++ b/include/hw/vfio/vfio-common.h
> @@ -151,6 +151,7 @@ typedef struct VFIODisplay {
> struct vfio_region_info *edid_info;
> struct vfio_region_gfx_edid *edid_regs;
> uint8_t *edid_blob;
> + QEMUTimer *edid_link_timer;
> struct {
> VFIORegion buffer;
> DisplaySurface *surface;
> diff --git a/hw/vfio/display.c b/hw/vfio/display.c
> index 7b9b604a64..361823b23b 100644
> --- a/hw/vfio/display.c
> +++ b/hw/vfio/display.c
> @@ -38,6 +38,21 @@
> goto err;
>
>
> +static void vfio_display_edid_link_up(void *opaque)
> +{
> + VFIOPCIDevice *vdev = opaque;
> + VFIODisplay *dpy = vdev->dpy;
> + int fd = vdev->vbasedev.fd;
> +
> + dpy->edid_regs->link_state = VFIO_DEVICE_GFX_LINK_STATE_UP;
> + pwrite_field(fd, dpy->edid_info, dpy->edid_regs, link_state);
> + trace_vfio_display_edid_link_up();
> + return;
> +
> +err:
> + trace_vfio_display_edid_write_error();
No jumps to here. Thanks,
Alex
> +}
> +
> static void vfio_display_edid_update(VFIOPCIDevice *vdev, bool enabled,
> int prefx, int prefy)
> {
> @@ -50,6 +65,7 @@ static void vfio_display_edid_update(VFIOPCIDevice *vdev, bool enabled,
> .prefy = prefy ?: vdev->display_yres,
> };
>
> + timer_del(dpy->edid_link_timer);
> dpy->edid_regs->link_state = VFIO_DEVICE_GFX_LINK_STATE_DOWN;
> pwrite_field(fd, dpy->edid_info, dpy->edid_regs, link_state);
> trace_vfio_display_edid_link_down();
> @@ -77,9 +93,8 @@ static void vfio_display_edid_update(VFIOPCIDevice *vdev, bool enabled,
> goto err;
> }
>
> - dpy->edid_regs->link_state = VFIO_DEVICE_GFX_LINK_STATE_UP;
> - pwrite_field(fd, dpy->edid_info, dpy->edid_regs, link_state);
> - trace_vfio_display_edid_link_up();
> + timer_mod(dpy->edid_link_timer,
> + qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 100);
> return;
>
> err:
> @@ -140,6 +155,9 @@ static void vfio_display_edid_init(VFIOPCIDevice *vdev)
> vdev->display_yres = dpy->edid_regs->max_yres;
> }
>
> + dpy->edid_link_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
> + vfio_display_edid_link_up, vdev);
> +
> vfio_display_edid_update(vdev, true, 0, 0);
> return;
>
> @@ -158,6 +176,8 @@ static void vfio_display_edid_exit(VFIODisplay *dpy)
>
> g_free(dpy->edid_regs);
> g_free(dpy->edid_blob);
> + timer_del(dpy->edid_link_timer);
> + timer_free(dpy->edid_link_timer);
> }
>
> static void vfio_display_update_cursor(VFIODMABuf *dmabuf,
prev parent reply other threads:[~2019-02-20 22:39 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-20 8:47 [Qemu-devel] [PATCH v2 0/3] vfio/display: add edid support Gerd Hoffmann
2019-02-20 8:47 ` [Qemu-devel] [PATCH v2 1/3] " Gerd Hoffmann
2019-02-20 21:54 ` Alex Williamson
2019-02-21 7:38 ` Gerd Hoffmann
2019-02-21 17:34 ` Alex Williamson
2019-02-22 5:45 ` Gerd Hoffmann
2019-02-20 8:47 ` [Qemu-devel] [PATCH v2 2/3] vfio/display: add xres + yres properties Gerd Hoffmann
2019-02-20 22:36 ` Alex Williamson
2019-02-21 7:46 ` Gerd Hoffmann
2019-02-21 17:35 ` Alex Williamson
2019-02-20 8:47 ` [Qemu-devel] [PATCH v2 3/3] vfio/display: delay link up event Gerd Hoffmann
2019-02-20 22:39 ` Alex Williamson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190220153911.32c9dcd0@w520.home \
--to=alex.williamson@redhat.com \
--cc=intel-gvt-dev@lists.freedesktop.org \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).