[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 7/9] virtio-gpu: set physical dimensions for EDID
From: |
Gerd Hoffmann |
Subject: |
[PULL 7/9] virtio-gpu: set physical dimensions for EDID |
Date: |
Tue, 29 Sep 2020 11:57:15 +0200 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20200927145751.365446-7-marcandre.lureau@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
include/hw/virtio/virtio-gpu.h | 1 +
hw/display/virtio-gpu-base.c | 2 ++
hw/display/virtio-gpu.c | 2 ++
3 files changed, 5 insertions(+)
diff --git a/include/hw/virtio/virtio-gpu.h b/include/hw/virtio/virtio-gpu.h
index 455e0a743350..1aed7275c824 100644
--- a/include/hw/virtio/virtio-gpu.h
+++ b/include/hw/virtio/virtio-gpu.h
@@ -62,6 +62,7 @@ struct virtio_gpu_scanout {
};
struct virtio_gpu_requested_state {
+ uint16_t width_mm, height_mm;
uint32_t width, height;
int x, y;
};
diff --git a/hw/display/virtio-gpu-base.c b/hw/display/virtio-gpu-base.c
index aeb87235420a..40ccd00f9421 100644
--- a/hw/display/virtio-gpu-base.c
+++ b/hw/display/virtio-gpu-base.c
@@ -82,6 +82,8 @@ static int virtio_gpu_ui_info(void *opaque, uint32_t idx,
QemuUIInfo *info)
g->req_state[idx].y = info->yoff;
g->req_state[idx].width = info->width;
g->req_state[idx].height = info->height;
+ g->req_state[idx].width_mm = info->width_mm;
+ g->req_state[idx].height_mm = info->height_mm;
if (info->width && info->height) {
g->enabled_output_bitmask |= (1 << idx);
diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
index 90be4e3ed719..f3b71fa9c7c3 100644
--- a/hw/display/virtio-gpu.c
+++ b/hw/display/virtio-gpu.c
@@ -212,6 +212,8 @@ virtio_gpu_generate_edid(VirtIOGPU *g, int scanout,
{
VirtIOGPUBase *b = VIRTIO_GPU_BASE(g);
qemu_edid_info info = {
+ .width_mm = b->req_state[scanout].width_mm,
+ .height_mm = b->req_state[scanout].height_mm,
.prefx = b->req_state[scanout].width,
.prefy = b->req_state[scanout].height,
};
--
2.27.0
- [PULL 0/9] Vga 20200929 patches, Gerd Hoffmann, 2020/09/29
- [PULL 1/9] virtio-gpu-3d: fix abnormal display after a warm reboot, Gerd Hoffmann, 2020/09/29
- [PULL 4/9] ui: add getter for UIInfo, Gerd Hoffmann, 2020/09/29
- [PULL 9/9] ppc/pseries: enable big-endian-framebuffer quirk for bochs-display and virtio-vga, Gerd Hoffmann, 2020/09/29
- [PULL 8/9] virtio-vga: implement big-endian-framebuffer property, Gerd Hoffmann, 2020/09/29
- [PULL 7/9] virtio-gpu: set physical dimensions for EDID,
Gerd Hoffmann <=
- [PULL 2/9] edid: fix physical display size computation, Gerd Hoffmann, 2020/09/29
- [PULL 5/9] spice: remove the single monitor config logic, Gerd Hoffmann, 2020/09/29
- [PULL 6/9] spice: get monitors physical dimension, Gerd Hoffmann, 2020/09/29
- [PULL 3/9] edid: use physical dimensions if available, Gerd Hoffmann, 2020/09/29
- Re: [PULL 0/9] Vga 20200929 patches, Peter Maydell, 2020/09/29