| 
									
										
										
										
											2016-01-26 18:17:07 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | #include "hw/pci/pci.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2019-01-03 15:10:11 +01:00
										 |  |  | #include "hw/virtio/virtio-gpu.h"
 | 
					
						
							| 
									
										
										
										
											2016-05-19 12:25:56 +02:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | #include "virtio-vga.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | #include "qom/object.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_invalidate_display(void *opaque) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:44 +02:00
										 |  |  |     if (g->enable) { | 
					
						
							| 
									
										
										
										
											2020-09-14 15:42:23 +02:00
										 |  |  |         g->hw_ops->invalidate(g); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         vvga->vga.hw_ops->invalidate(&vvga->vga); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_update_display(void *opaque) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:44 +02:00
										 |  |  |     if (g->enable) { | 
					
						
							| 
									
										
										
										
											2020-09-14 15:42:23 +02:00
										 |  |  |         g->hw_ops->gfx_update(g); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         vvga->vga.hw_ops->gfx_update(&vvga->vga); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_text_update(void *opaque, console_ch_t *chardata) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:44 +02:00
										 |  |  |     if (g->enable) { | 
					
						
							| 
									
										
										
										
											2020-09-14 15:42:23 +02:00
										 |  |  |         if (g->hw_ops->text_update) { | 
					
						
							|  |  |  |             g->hw_ops->text_update(g, chardata); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (vvga->vga.hw_ops->text_update) { | 
					
						
							|  |  |  |             vvga->vga.hw_ops->text_update(&vvga->vga, chardata); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static int virtio_vga_base_ui_info(void *opaque, uint32_t idx, QemuUIInfo *info) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-14 15:42:23 +02:00
										 |  |  |     if (g->hw_ops->ui_info) { | 
					
						
							|  |  |  |         return g->hw_ops->ui_info(g, idx, info); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_gl_block(void *opaque, bool block) | 
					
						
							| 
									
										
										
										
											2015-12-02 08:17:24 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							| 
									
										
										
										
											2015-12-02 08:17:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-14 15:42:23 +02:00
										 |  |  |     if (g->hw_ops->gl_block) { | 
					
						
							|  |  |  |         g->hw_ops->gl_block(g, block); | 
					
						
							| 
									
										
										
										
											2015-12-02 08:17:24 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 14:52:30 +04:00
										 |  |  | static void virtio_vga_base_gl_flushed(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (g->hw_ops->gl_flushed) { | 
					
						
							|  |  |  |         g->hw_ops->gl_flushed(g); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 14:52:23 +04:00
										 |  |  | static int virtio_vga_base_get_flags(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VirtIOVGABase *vvga = opaque; | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return g->hw_ops->get_flags(g); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static const GraphicHwOps virtio_vga_base_ops = { | 
					
						
							| 
									
										
										
										
											2021-02-04 14:52:23 +04:00
										 |  |  |     .get_flags = virtio_vga_base_get_flags, | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     .invalidate = virtio_vga_base_invalidate_display, | 
					
						
							|  |  |  |     .gfx_update = virtio_vga_base_update_display, | 
					
						
							|  |  |  |     .text_update = virtio_vga_base_text_update, | 
					
						
							|  |  |  |     .ui_info = virtio_vga_base_ui_info, | 
					
						
							|  |  |  |     .gl_block = virtio_vga_base_gl_block, | 
					
						
							| 
									
										
										
										
											2021-02-04 14:52:30 +04:00
										 |  |  |     .gl_flushed = virtio_vga_base_gl_flushed, | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static const VMStateDescription vmstate_virtio_vga_base = { | 
					
						
							| 
									
										
										
										
											2016-05-23 15:22:07 +02:00
										 |  |  |     .name = "virtio-vga", | 
					
						
							|  |  |  |     .version_id = 2, | 
					
						
							|  |  |  |     .minimum_version_id = 2, | 
					
						
							|  |  |  |     .fields = (VMStateField[]) { | 
					
						
							|  |  |  |         /* no pci stuff here, saving the virtio device will handle that */ | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |         VMSTATE_STRUCT(vga, VirtIOVGABase, 0, | 
					
						
							|  |  |  |                        vmstate_vga_common, VGACommonState), | 
					
						
							| 
									
										
										
										
											2016-05-23 15:22:07 +02:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | /* VGA device wrapper around PCI device around virtio GPU */ | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_realize(VirtIOPCIProxy *vpci_dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase *vvga = VIRTIO_VGA_BASE(vpci_dev); | 
					
						
							|  |  |  |     VirtIOGPUBase *g = vvga->vgpu; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     VGACommonState *vga = &vvga->vga; | 
					
						
							|  |  |  |     uint32_t offset; | 
					
						
							| 
									
										
										
										
											2015-06-24 12:19:42 +02:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* init vga compat bits */ | 
					
						
							|  |  |  |     vga->vram_size_mb = 8; | 
					
						
							| 
									
										
										
										
											2018-07-02 18:33:44 +02:00
										 |  |  |     vga_common_init(vga, OBJECT(vpci_dev)); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     vga_init(vga, OBJECT(vpci_dev), pci_address_space(&vpci_dev->pci_dev), | 
					
						
							|  |  |  |              pci_address_space_io(&vpci_dev->pci_dev), true); | 
					
						
							|  |  |  |     pci_register_bar(&vpci_dev->pci_dev, 0, | 
					
						
							|  |  |  |                      PCI_BASE_ADDRESS_MEM_PREFETCH, &vga->vram); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Configure virtio bar and regions | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * We use bar #2 for the mmio regions, to be compatible with stdvga. | 
					
						
							|  |  |  |      * virtio regions are moved to the end of bar #2, to make room for | 
					
						
							|  |  |  |      * the stdvga mmio registers at the start of bar #2. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-09-29 12:04:40 +08:00
										 |  |  |     vpci_dev->modern_mem_bar_idx = 2; | 
					
						
							|  |  |  |     vpci_dev->msix_bar_idx = 4; | 
					
						
							| 
									
										
										
										
											2020-04-22 23:54:54 +02:00
										 |  |  |     vpci_dev->modern_io_bar_idx = 5; | 
					
						
							| 
									
										
										
										
											2016-09-08 09:16:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!(vpci_dev->flags & VIRTIO_PCI_FLAG_PAGE_PER_VQ)) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * with page-per-vq=off there is no padding space we can use | 
					
						
							|  |  |  |          * for the stdvga registers.  Make the common and isr regions | 
					
						
							|  |  |  |          * smaller then. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         vpci_dev->common.size /= 2; | 
					
						
							|  |  |  |         vpci_dev->isr.size /= 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     offset = memory_region_size(&vpci_dev->modern_bar); | 
					
						
							|  |  |  |     offset -= vpci_dev->notify.size; | 
					
						
							|  |  |  |     vpci_dev->notify.offset = offset; | 
					
						
							|  |  |  |     offset -= vpci_dev->device.size; | 
					
						
							|  |  |  |     vpci_dev->device.offset = offset; | 
					
						
							|  |  |  |     offset -= vpci_dev->isr.size; | 
					
						
							|  |  |  |     vpci_dev->isr.offset = offset; | 
					
						
							|  |  |  |     offset -= vpci_dev->common.size; | 
					
						
							|  |  |  |     vpci_dev->common.offset = offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* init virtio bits */ | 
					
						
							| 
									
										
										
										
											2019-07-29 17:29:03 +01:00
										 |  |  |     virtio_pci_force_virtio_1(vpci_dev); | 
					
						
							| 
									
										
											  
											
												error: Eliminate error_propagate() with Coccinelle, part 1
When all we do with an Error we receive into a local variable is
propagating to somewhere else, we can just as well receive it there
right away.  Convert
    if (!foo(..., &err)) {
        ...
        error_propagate(errp, err);
        ...
        return ...
    }
to
    if (!foo(..., errp)) {
        ...
        ...
        return ...
    }
where nothing else needs @err.  Coccinelle script:
    @rule1 forall@
    identifier fun, err, errp, lbl;
    expression list args, args2;
    binary operator op;
    constant c1, c2;
    symbol false;
    @@
         if (
    (
    -        fun(args, &err, args2)
    +        fun(args, errp, args2)
    |
    -        !fun(args, &err, args2)
    +        !fun(args, errp, args2)
    |
    -        fun(args, &err, args2) op c1
    +        fun(args, errp, args2) op c1
    )
            )
         {
             ... when != err
                 when != lbl:
                 when strict
    -        error_propagate(errp, err);
             ... when != err
    (
             return;
    |
             return c2;
    |
             return false;
    )
         }
    @rule2 forall@
    identifier fun, err, errp, lbl;
    expression list args, args2;
    expression var;
    binary operator op;
    constant c1, c2;
    symbol false;
    @@
    -    var = fun(args, &err, args2);
    +    var = fun(args, errp, args2);
         ... when != err
         if (
    (
             var
    |
             !var
    |
             var op c1
    )
            )
         {
             ... when != err
                 when != lbl:
                 when strict
    -        error_propagate(errp, err);
             ... when != err
    (
             return;
    |
             return c2;
    |
             return false;
    |
             return var;
    )
         }
    @depends on rule1 || rule2@
    identifier err;
    @@
    -    Error *err = NULL;
         ... when != err
Not exactly elegant, I'm afraid.
The "when != lbl:" is necessary to avoid transforming
         if (fun(args, &err)) {
             goto out
         }
         ...
     out:
         error_propagate(errp, err);
even though other paths to label out still need the error_propagate().
For an actual example, see sclp_realize().
Without the "when strict", Coccinelle transforms vfio_msix_setup(),
incorrectly.  I don't know what exactly "when strict" does, only that
it helps here.
The match of return is narrower than what I want, but I can't figure
out how to express "return where the operand doesn't use @err".  For
an example where it's too narrow, see vfio_intx_enable().
Silently fails to convert hw/arm/armsse.c, because Coccinelle gets
confused by ARMSSE being used both as typedef and function-like macro
there.  Converted manually.
Line breaks tidied up manually.  One nested declaration of @local_err
deleted manually.  Preexisting unwanted blank line dropped in
hw/riscv/sifive_e.c.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20200707160613.848843-35-armbru@redhat.com>
											
										 
											2020-07-07 18:06:02 +02:00
										 |  |  |     if (!qdev_realize(DEVICE(g), BUS(&vpci_dev->bus), errp)) { | 
					
						
							| 
									
										
										
										
											2016-05-19 12:25:56 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* add stdvga mmio regions */ | 
					
						
							| 
									
										
										
										
											2018-06-26 08:09:41 +02:00
										 |  |  |     pci_std_vga_mmio_region_init(vga, OBJECT(vvga), &vpci_dev->modern_bar, | 
					
						
							| 
									
										
										
										
											2018-09-25 09:56:46 +02:00
										 |  |  |                                  vvga->vga_mrs, true, false); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     vga->con = g->scanout[0].con; | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     graphic_console_set_hwops(vga->con, &virtio_vga_base_ops, vvga); | 
					
						
							| 
									
										
										
										
											2015-06-24 12:19:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < g->conf.max_outputs; i++) { | 
					
						
							| 
									
										
											  
											
												qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
    void object_property_set_FOO(Object *obj, FOO_TYPE value,
                                 const char *name, Error **errp)
Having to pass value before name feels grating.  Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
    @@
    identifier fun = {
        object_property_get, object_property_parse, object_property_set_str,
        object_property_set_link, object_property_set_bool,
        object_property_set_int, object_property_set_uint, object_property_set,
        object_property_set_qobject
    };
    expression obj, v, name, errp;
    @@
    -    fun(obj, v, name, errp)
    +    fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information".  Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually.  The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
											
										 
											2020-07-07 18:05:54 +02:00
										 |  |  |         object_property_set_link(OBJECT(g->scanout[i].con), "device", | 
					
						
							|  |  |  |                                  OBJECT(vpci_dev), &error_abort); | 
					
						
							| 
									
										
										
										
											2015-06-24 12:19:42 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_reset(DeviceState *dev) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABaseClass *klass = VIRTIO_VGA_BASE_GET_CLASS(dev); | 
					
						
							|  |  |  |     VirtIOVGABase *vvga = VIRTIO_VGA_BASE(dev); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-21 13:13:12 +02:00
										 |  |  |     /* reset virtio-gpu */ | 
					
						
							| 
									
										
										
										
											2019-03-07 09:02:43 +01:00
										 |  |  |     klass->parent_reset(dev); | 
					
						
							| 
									
										
										
										
											2018-08-21 13:13:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* reset vga */ | 
					
						
							|  |  |  |     vga_common_reset(&vvga->vga); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     vga_dirty_log_start(&vvga->vga); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-28 10:53:34 +02:00
										 |  |  | 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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static Property virtio_vga_base_properties[] = { | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     DEFINE_VIRTIO_GPU_PCI_PROPERTIES(VirtIOPCIProxy), | 
					
						
							|  |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static void virtio_vga_base_class_init(ObjectClass *klass, void *data) | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							|  |  |  |     VirtioPCIClass *k = VIRTIO_PCI_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABaseClass *v = VIRTIO_VGA_BASE_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     PCIDeviceClass *pcidev_k = PCI_DEVICE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories); | 
					
						
							| 
									
										
										
										
											2020-01-10 19:30:32 +04:00
										 |  |  |     device_class_set_props(dc, virtio_vga_base_properties); | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     dc->vmsd = &vmstate_virtio_vga_base; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     dc->hotpluggable = false; | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     device_class_set_parent_reset(dc, virtio_vga_base_reset, | 
					
						
							| 
									
										
										
										
											2019-03-07 09:02:43 +01:00
										 |  |  |                                   &v->parent_reset); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     k->realize = virtio_vga_base_realize; | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     pcidev_k->romfile = "vgabios-virtio.bin"; | 
					
						
							|  |  |  |     pcidev_k->class_id = PCI_CLASS_DISPLAY_VGA; | 
					
						
							| 
									
										
										
										
											2020-09-28 10:53:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* 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); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | static TypeInfo virtio_vga_base_info = { | 
					
						
							|  |  |  |     .name          = TYPE_VIRTIO_VGA_BASE, | 
					
						
							|  |  |  |     .parent        = TYPE_VIRTIO_PCI, | 
					
						
							| 
									
										
										
										
											2020-08-24 17:59:36 -04:00
										 |  |  |     .instance_size = sizeof(VirtIOVGABase), | 
					
						
							|  |  |  |     .class_size    = sizeof(VirtIOVGABaseClass), | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     .class_init    = virtio_vga_base_class_init, | 
					
						
							|  |  |  |     .abstract      = true, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2021-06-24 12:38:08 +02:00
										 |  |  | module_obj(TYPE_VIRTIO_VGA_BASE); | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define TYPE_VIRTIO_VGA "virtio-vga"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | typedef struct VirtIOVGA VirtIOVGA; | 
					
						
							| 
									
										
										
										
											2020-08-31 17:07:33 -04:00
										 |  |  | DECLARE_INSTANCE_CHECKER(VirtIOVGA, VIRTIO_VGA, | 
					
						
							|  |  |  |                          TYPE_VIRTIO_VGA) | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | struct VirtIOVGA { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VirtIOVGABase parent_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     VirtIOGPU     vdev; | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | static void virtio_vga_inst_initfn(Object *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     VirtIOVGA *dev = VIRTIO_VGA(obj); | 
					
						
							| 
									
										
										
										
											2015-06-24 12:22:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), | 
					
						
							|  |  |  |                                 TYPE_VIRTIO_GPU); | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     VIRTIO_VGA_BASE(dev)->vgpu = VIRTIO_GPU_BASE(&dev->vdev); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-05 17:57:03 -02:00
										 |  |  | static VirtioPCIDeviceTypeInfo virtio_vga_info = { | 
					
						
							|  |  |  |     .generic_name  = TYPE_VIRTIO_VGA, | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     .parent        = TYPE_VIRTIO_VGA_BASE, | 
					
						
							| 
									
										
										
										
											2020-08-24 17:59:36 -04:00
										 |  |  |     .instance_size = sizeof(VirtIOVGA), | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  |     .instance_init = virtio_vga_inst_initfn, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2021-06-24 12:38:08 +02:00
										 |  |  | module_obj(TYPE_VIRTIO_VGA); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void virtio_vga_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-24 15:09:45 +02:00
										 |  |  |     type_register_static(&virtio_vga_base_info); | 
					
						
							| 
									
										
										
										
											2018-12-05 17:57:03 -02:00
										 |  |  |     virtio_pci_types_register(&virtio_vga_info); | 
					
						
							| 
									
										
										
										
											2014-09-10 14:25:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(virtio_vga_register_types) |