Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 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" |
Eduardo Habkost | db1015e | 2020-09-03 16:43:22 -0400 | [diff] [blame] | 14 | #include "qom/object.h" |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 15 | |
| 16 | #define TYPE_VHOST_USER_VGA "vhost-user-vga" |
| 17 | |
Eduardo Habkost | db1015e | 2020-09-03 16:43:22 -0400 | [diff] [blame] | 18 | typedef struct VhostUserVGA VhostUserVGA; |
Eduardo Habkost | 8110fa1 | 2020-08-31 17:07:33 -0400 | [diff] [blame] | 19 | DECLARE_INSTANCE_CHECKER(VhostUserVGA, VHOST_USER_VGA, |
| 20 | TYPE_VHOST_USER_VGA) |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 21 | |
Eduardo Habkost | db1015e | 2020-09-03 16:43:22 -0400 | [diff] [blame] | 22 | struct VhostUserVGA { |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 23 | VirtIOVGABase parent_obj; |
| 24 | |
| 25 | VhostUserGPU vdev; |
Eduardo Habkost | db1015e | 2020-09-03 16:43:22 -0400 | [diff] [blame] | 26 | }; |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 27 | |
| 28 | static 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", |
Markus Armbruster | d262312 | 2020-05-05 17:29:22 +0200 | [diff] [blame] | 38 | OBJECT(&dev->vdev), "chardev"); |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | static const VirtioPCIDeviceTypeInfo vhost_user_vga_info = { |
| 42 | .generic_name = TYPE_VHOST_USER_VGA, |
| 43 | .parent = TYPE_VIRTIO_VGA_BASE, |
Eduardo Habkost | 2ada901 | 2020-08-24 17:59:35 -0400 | [diff] [blame] | 44 | .instance_size = sizeof(VhostUserVGA), |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 45 | .instance_init = vhost_user_vga_inst_initfn, |
| 46 | }; |
Gerd Hoffmann | 561d0f4 | 2021-06-24 12:38:08 +0200 | [diff] [blame] | 47 | module_obj(TYPE_VHOST_USER_VGA); |
Jose R. Ziviani | 24ce7aa | 2022-05-28 00:20:23 +0200 | [diff] [blame] | 48 | module_kconfig(VHOST_USER_VGA); |
Marc-André Lureau | 267f664 | 2019-05-24 15:09:46 +0200 | [diff] [blame] | 49 | |
| 50 | static void vhost_user_vga_register_types(void) |
| 51 | { |
| 52 | virtio_pci_types_register(&vhost_user_vga_info); |
| 53 | } |
| 54 | |
| 55 | type_init(vhost_user_vga_register_types) |