]> git.proxmox.com Git - mirror_qemu.git/blame - hw/display/vhost-user-vga.c
Use DECLARE_*CHECKER* macros
[mirror_qemu.git] / hw / display / vhost-user-vga.c
CommitLineData
267f6646
MAL
1/*
2 * vhost-user VGA device
3 *
4 * Copyright Red Hat, Inc. 2018
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 *
9 */
10
11#include "qemu/osdep.h"
12#include "qapi/error.h"
13#include "virtio-vga.h"
db1015e9 14#include "qom/object.h"
267f6646
MAL
15
16#define TYPE_VHOST_USER_VGA "vhost-user-vga"
17
db1015e9 18typedef struct VhostUserVGA VhostUserVGA;
8110fa1d
EH
19DECLARE_INSTANCE_CHECKER(VhostUserVGA, VHOST_USER_VGA,
20 TYPE_VHOST_USER_VGA)
267f6646 21
db1015e9 22struct VhostUserVGA {
267f6646
MAL
23 VirtIOVGABase parent_obj;
24
25 VhostUserGPU vdev;
db1015e9 26};
267f6646
MAL
27
28static void vhost_user_vga_inst_initfn(Object *obj)
29{
30 VhostUserVGA *dev = VHOST_USER_VGA(obj);
31
32 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev),
33 TYPE_VHOST_USER_GPU);
34
35 VIRTIO_VGA_BASE(dev)->vgpu = VIRTIO_GPU_BASE(&dev->vdev);
36
37 object_property_add_alias(obj, "chardev",
d2623129 38 OBJECT(&dev->vdev), "chardev");
267f6646
MAL
39}
40
41static const VirtioPCIDeviceTypeInfo vhost_user_vga_info = {
42 .generic_name = TYPE_VHOST_USER_VGA,
43 .parent = TYPE_VIRTIO_VGA_BASE,
44 .instance_size = sizeof(struct VhostUserVGA),
45 .instance_init = vhost_user_vga_inst_initfn,
46};
47
48static void vhost_user_vga_register_types(void)
49{
50 virtio_pci_types_register(&vhost_user_vga_info);
51}
52
53type_init(vhost_user_vga_register_types)