4 #include "qemu-common.h"
6 #include "ui/console.h"
8 #include "hw/pci/pci.h"
9 #include "hw/vga_int.h"
10 #include "qemu/thread.h"
12 #include "ui/qemu-spice.h"
13 #include "ui/spice-display.h"
18 QXL_MODE_COMPAT
, /* spice 0.4.x */
22 #ifndef QXL_VRAM64_RANGE_INDEX
23 #define QXL_VRAM64_RANGE_INDEX 4
26 #define QXL_UNDEFINED_IO UINT32_MAX
28 #define QXL_NUM_DIRTY_RECTS 64
30 typedef struct PCIQXLDevice
{
32 SimpleSpiceDisplay ssd
;
47 uint32_t current_async
;
56 } guest_slots
[NUM_MEMSLOTS
];
58 struct guest_primary
{
59 QXLSurfaceCreate surface
;
74 QXLPHYSICAL guest_cursor
;
76 QXLPHYSICAL guest_monitors_config
;
80 /* thread signaling */
87 uint32_t num_free_res
;
88 QXLReleaseInfo
*last_release
;
89 uint32_t last_release_offset
;
102 MemoryRegion vram_bar
;
103 uint32_t vram32_size
;
104 MemoryRegion vram32_bar
;
109 /* user-friendly properties (in megabytes) */
110 uint32_t ram_size_mb
;
111 uint32_t vram_size_mb
;
112 uint32_t vram32_size_mb
;
113 uint32_t vgamem_size_mb
;
115 /* qxl_render_update state */
116 int render_update_cookie_num
;
118 QXLRect dirty
[QXL_NUM_DIRTY_RECTS
];
119 QEMUBH
*update_area_bh
;
122 #define PANIC_ON(x) if ((x)) { \
123 printf("%s: PANIC %s failed\n", __FUNCTION__, #x); \
127 #define dprint(_qxl, _level, _fmt, ...) \
129 if (_qxl->debug >= _level) { \
130 fprintf(stderr, "qxl-%d: ", _qxl->id); \
131 fprintf(stderr, _fmt, ## __VA_ARGS__); \
135 #define QXL_DEFAULT_REVISION QXL_REVISION_STABLE_V12
138 void *qxl_phys2virt(PCIQXLDevice
*qxl
, QXLPHYSICAL phys
, int group_id
);
139 void qxl_set_guest_bug(PCIQXLDevice
*qxl
, const char *msg
, ...)
142 void qxl_spice_update_area(PCIQXLDevice
*qxl
, uint32_t surface_id
,
143 struct QXLRect
*area
, struct QXLRect
*dirty_rects
,
144 uint32_t num_dirty_rects
,
145 uint32_t clear_dirty_region
,
146 qxl_async_io async
, QXLCookie
*cookie
);
147 void qxl_spice_loadvm_commands(PCIQXLDevice
*qxl
, struct QXLCommandExt
*ext
,
149 void qxl_spice_oom(PCIQXLDevice
*qxl
);
150 void qxl_spice_reset_memslots(PCIQXLDevice
*qxl
);
151 void qxl_spice_reset_image_cache(PCIQXLDevice
*qxl
);
152 void qxl_spice_reset_cursor(PCIQXLDevice
*qxl
);
155 int qxl_log_cmd_cursor(PCIQXLDevice
*qxl
, QXLCursorCmd
*cmd
, int group_id
);
156 int qxl_log_command(PCIQXLDevice
*qxl
, const char *ring
, QXLCommandExt
*ext
);
159 void qxl_render_resize(PCIQXLDevice
*qxl
);
160 void qxl_render_update(PCIQXLDevice
*qxl
);
161 int qxl_render_cursor(PCIQXLDevice
*qxl
, QXLCommandExt
*ext
);
162 void qxl_render_update_area_done(PCIQXLDevice
*qxl
, QXLCookie
*cookie
);
163 void qxl_render_update_area_bh(void *opaque
);