[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 8/9] virtio-vga: implement big-endian-framebuffer property
From: |
Gerd Hoffmann |
Subject: |
[PULL 8/9] virtio-vga: implement big-endian-framebuffer property |
Date: |
Tue, 29 Sep 2020 11:57:16 +0200 |
Allows to switch the (vga mode) framebuffer into bigendian mode
by setting the property, simliar to stdvga.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20200928085335.21961-2-kraxel@redhat.com
---
hw/display/virtio-vga.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/hw/display/virtio-vga.c b/hw/display/virtio-vga.c
index f9410a0c2e61..81f776ee36e7 100644
--- a/hw/display/virtio-vga.c
+++ b/hw/display/virtio-vga.c
@@ -168,6 +168,20 @@ static void virtio_vga_base_reset(DeviceState *dev)
vga_dirty_log_start(&vvga->vga);
}
+static bool virtio_vga_get_big_endian_fb(Object *obj, Error **errp)
+{
+ VirtIOVGABase *d = VIRTIO_VGA_BASE(obj);
+
+ return d->vga.big_endian_fb;
+}
+
+static void virtio_vga_set_big_endian_fb(Object *obj, bool value, Error **errp)
+{
+ VirtIOVGABase *d = VIRTIO_VGA_BASE(obj);
+
+ d->vga.big_endian_fb = value;
+}
+
static Property virtio_vga_base_properties[] = {
DEFINE_VIRTIO_GPU_PCI_PROPERTIES(VirtIOPCIProxy),
DEFINE_PROP_END_OF_LIST(),
@@ -190,6 +204,11 @@ static void virtio_vga_base_class_init(ObjectClass *klass,
void *data)
k->realize = virtio_vga_base_realize;
pcidev_k->romfile = "vgabios-virtio.bin";
pcidev_k->class_id = PCI_CLASS_DISPLAY_VGA;
+
+ /* Expose framebuffer byteorder via QOM */
+ object_class_property_add_bool(klass, "big-endian-framebuffer",
+ virtio_vga_get_big_endian_fb,
+ virtio_vga_set_big_endian_fb);
}
static TypeInfo virtio_vga_base_info = {
--
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 <=
- [PULL 7/9] virtio-gpu: set physical dimensions for EDID, Gerd Hoffmann, 2020/09/29
- [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