]> git.proxmox.com Git - mirror_qemu.git/blame - hw/display/qxl.h
virtio-gpu: remove unused qdev
[mirror_qemu.git] / hw / display / qxl.h
CommitLineData
cb9c377f 1#ifndef HW_QXL_H
175de524 2#define HW_QXL_H
cb9c377f 3
a19cbfb3
GH
4#include "qemu-common.h"
5
83c9f4ca
PB
6#include "hw/hw.h"
7#include "hw/pci/pci.h"
47b43a1f 8#include "vga_int.h"
1de7afc9 9#include "qemu/thread.h"
a19cbfb3
GH
10
11#include "ui/qemu-spice.h"
12#include "ui/spice-display.h"
13
14enum qxl_mode {
15 QXL_MODE_UNDEFINED,
16 QXL_MODE_VGA,
17 QXL_MODE_COMPAT, /* spice 0.4.x */
18 QXL_MODE_NATIVE,
19};
20
6f2b175a
GH
21#ifndef QXL_VRAM64_RANGE_INDEX
22#define QXL_VRAM64_RANGE_INDEX 4
23#endif
24
5ff4e36c
AL
25#define QXL_UNDEFINED_IO UINT32_MAX
26
81fb6f15
AL
27#define QXL_NUM_DIRTY_RECTS 64
28
9efc2d8d
GH
29#define QXL_PAGE_BITS 12
30#define QXL_PAGE_SIZE (1 << QXL_PAGE_BITS);
31
a19cbfb3
GH
32typedef struct PCIQXLDevice {
33 PCIDevice pci;
848696bf 34 PortioList vga_port_list;
a19cbfb3
GH
35 SimpleSpiceDisplay ssd;
36 int id;
60e94e43 37 bool have_vga;
a19cbfb3
GH
38 uint32_t debug;
39 uint32_t guestdebug;
40 uint32_t cmdlog;
087e6a42
AL
41
42 uint32_t guest_bug;
86dbcdd9 43 Error *migration_blocker;
087e6a42 44
a19cbfb3
GH
45 enum qxl_mode mode;
46 uint32_t cmdflags;
a19cbfb3
GH
47 uint32_t revision;
48
49 int32_t num_memslots;
a19cbfb3 50
5ff4e36c
AL
51 uint32_t current_async;
52 QemuMutex async_lock;
53
a19cbfb3
GH
54 struct guest_slots {
55 QXLMemSlot slot;
3cb5158f
GH
56 MemoryRegion *mr;
57 uint64_t offset;
a19cbfb3
GH
58 uint64_t size;
59 uint64_t delta;
60 uint32_t active;
61 } guest_slots[NUM_MEMSLOTS];
62
63 struct guest_primary {
64 QXLSurfaceCreate surface;
65 uint32_t commands;
66 uint32_t resized;
0e2487bd
GH
67 int32_t qxl_stride;
68 uint32_t abs_stride;
a19cbfb3
GH
69 uint32_t bits_pp;
70 uint32_t bytes_pp;
4c19ebb5 71 uint8_t *data;
a19cbfb3
GH
72 } guest_primary;
73
74 struct surfaces {
ddd8fdc7 75 QXLPHYSICAL *cmds;
a19cbfb3
GH
76 uint32_t count;
77 uint32_t max;
78 } guest_surfaces;
79 QXLPHYSICAL guest_cursor;
80
020af1c4 81 QXLPHYSICAL guest_monitors_config;
979f7ef8
GH
82 uint32_t guest_head0_width;
83 uint32_t guest_head0_height;
020af1c4 84
14898cf6
GH
85 QemuMutex track_lock;
86
a19cbfb3 87 /* thread signaling */
4a46c99c 88 QEMUBH *update_irq;
a19cbfb3
GH
89
90 /* ram pci bar */
91 QXLRam *ram;
92 VGACommonState vga;
93 uint32_t num_free_res;
94 QXLReleaseInfo *last_release;
95 uint32_t last_release_offset;
96 uint32_t oom_running;
13d1fd44 97 uint32_t vgamem_size;
a19cbfb3
GH
98
99 /* rom pci bar */
100 QXLRom shadow_rom;
101 QXLRom *rom;
102 QXLModes *modes;
103 uint32_t rom_size;
b1950430 104 MemoryRegion rom_bar;
567161fd
FZ
105#if SPICE_SERVER_VERSION >= 0x000c06 /* release 0.12.6 */
106 uint16_t max_outputs;
107#endif
a19cbfb3
GH
108
109 /* vram pci bar */
de1b9b85 110 uint64_t vram_size;
b1950430 111 MemoryRegion vram_bar;
de1b9b85 112 uint64_t vram32_size;
6f2b175a 113 MemoryRegion vram32_bar;
a19cbfb3
GH
114
115 /* io bar */
b1950430 116 MemoryRegion io_bar;
017438ee
GH
117
118 /* user-friendly properties (in megabytes) */
119 uint32_t ram_size_mb;
120 uint32_t vram_size_mb;
6f2b175a 121 uint32_t vram32_size_mb;
13d1fd44 122 uint32_t vgamem_size_mb;
6f663d7b
GH
123 uint32_t xres;
124 uint32_t yres;
81fb6f15
AL
125
126 /* qxl_render_update state */
127 int render_update_cookie_num;
128 int num_dirty_rects;
129 QXLRect dirty[QXL_NUM_DIRTY_RECTS];
130 QEMUBH *update_area_bh;
a19cbfb3
GH
131} PCIQXLDevice;
132
c69f6c7d
GA
133#define TYPE_PCI_QXL "pci-qxl"
134#define PCI_QXL(obj) OBJECT_CHECK(PCIQXLDevice, (obj), TYPE_PCI_QXL)
135
a19cbfb3 136#define PANIC_ON(x) if ((x)) { \
a89f364a 137 printf("%s: PANIC %s failed\n", __func__, #x); \
2bce0400 138 abort(); \
a19cbfb3
GH
139}
140
141#define dprint(_qxl, _level, _fmt, ...) \
142 do { \
143 if (_qxl->debug >= _level) { \
144 fprintf(stderr, "qxl-%d: ", _qxl->id); \
145 fprintf(stderr, _fmt, ## __VA_ARGS__); \
146 } \
147 } while (0)
148
020af1c4 149#define QXL_DEFAULT_REVISION QXL_REVISION_STABLE_V12
9197a7c8 150
a19cbfb3
GH
151/* qxl.c */
152void *qxl_phys2virt(PCIQXLDevice *qxl, QXLPHYSICAL phys, int group_id);
0a530548
AL
153void qxl_set_guest_bug(PCIQXLDevice *qxl, const char *msg, ...)
154 GCC_FMT_ATTR(2, 3);
a19cbfb3 155
aee32bf3
GH
156void qxl_spice_update_area(PCIQXLDevice *qxl, uint32_t surface_id,
157 struct QXLRect *area, struct QXLRect *dirty_rects,
158 uint32_t num_dirty_rects,
5ff4e36c 159 uint32_t clear_dirty_region,
2e1a98c9 160 qxl_async_io async, QXLCookie *cookie);
aee32bf3
GH
161void qxl_spice_loadvm_commands(PCIQXLDevice *qxl, struct QXLCommandExt *ext,
162 uint32_t count);
163void qxl_spice_oom(PCIQXLDevice *qxl);
164void qxl_spice_reset_memslots(PCIQXLDevice *qxl);
aee32bf3
GH
165void qxl_spice_reset_image_cache(PCIQXLDevice *qxl);
166void qxl_spice_reset_cursor(PCIQXLDevice *qxl);
167
a19cbfb3 168/* qxl-logger.c */
fae2afb1
AL
169int qxl_log_cmd_cursor(PCIQXLDevice *qxl, QXLCursorCmd *cmd, int group_id);
170int qxl_log_command(PCIQXLDevice *qxl, const char *ring, QXLCommandExt *ext);
a19cbfb3
GH
171
172/* qxl-render.c */
173void qxl_render_resize(PCIQXLDevice *qxl);
174void qxl_render_update(PCIQXLDevice *qxl);
fae2afb1 175int qxl_render_cursor(PCIQXLDevice *qxl, QXLCommandExt *ext);
81fb6f15
AL
176void qxl_render_update_area_done(PCIQXLDevice *qxl, QXLCookie *cookie);
177void qxl_render_update_area_bh(void *opaque);
cb9c377f
PB
178
179#endif