1 #include "qemu-common.h"
7 #include "qemu-thread.h"
9 #include "ui/qemu-spice.h"
10 #include "ui/spice-display.h"
15 QXL_MODE_COMPAT
, /* spice 0.4.x */
19 #ifndef QXL_VRAM64_RANGE_INDEX
20 #define QXL_VRAM64_RANGE_INDEX 4
23 #define QXL_UNDEFINED_IO UINT32_MAX
25 #define QXL_NUM_DIRTY_RECTS 64
27 typedef struct PCIQXLDevice
{
29 SimpleSpiceDisplay ssd
;
45 uint32_t current_async
;
54 } guest_slots
[NUM_MEMSLOTS
];
56 struct guest_primary
{
57 QXLSurfaceCreate surface
;
68 QXLPHYSICAL cmds
[NUM_SURFACES
];
72 QXLPHYSICAL guest_cursor
;
76 /* thread signaling */
83 uint32_t num_free_res
;
84 QXLReleaseInfo
*last_release
;
85 uint32_t last_release_offset
;
98 MemoryRegion vram_bar
;
100 MemoryRegion vram32_bar
;
105 /* user-friendly properties (in megabytes) */
106 uint32_t ram_size_mb
;
107 uint32_t vram_size_mb
;
108 uint32_t vram32_size_mb
;
109 uint32_t vgamem_size_mb
;
111 /* qxl_render_update state */
112 int render_update_cookie_num
;
114 QXLRect dirty
[QXL_NUM_DIRTY_RECTS
];
115 QEMUBH
*update_area_bh
;
118 #define PANIC_ON(x) if ((x)) { \
119 printf("%s: PANIC %s failed\n", __FUNCTION__, #x); \
123 #define dprint(_qxl, _level, _fmt, ...) \
125 if (_qxl->debug >= _level) { \
126 fprintf(stderr, "qxl-%d: ", _qxl->id); \
127 fprintf(stderr, _fmt, ## __VA_ARGS__); \
131 #define QXL_DEFAULT_REVISION QXL_REVISION_STABLE_V10
134 void *qxl_phys2virt(PCIQXLDevice
*qxl
, QXLPHYSICAL phys
, int group_id
);
135 void qxl_set_guest_bug(PCIQXLDevice
*qxl
, const char *msg
, ...)
138 void qxl_spice_update_area(PCIQXLDevice
*qxl
, uint32_t surface_id
,
139 struct QXLRect
*area
, struct QXLRect
*dirty_rects
,
140 uint32_t num_dirty_rects
,
141 uint32_t clear_dirty_region
,
142 qxl_async_io async
, QXLCookie
*cookie
);
143 void qxl_spice_loadvm_commands(PCIQXLDevice
*qxl
, struct QXLCommandExt
*ext
,
145 void qxl_spice_oom(PCIQXLDevice
*qxl
);
146 void qxl_spice_reset_memslots(PCIQXLDevice
*qxl
);
147 void qxl_spice_reset_image_cache(PCIQXLDevice
*qxl
);
148 void qxl_spice_reset_cursor(PCIQXLDevice
*qxl
);
151 int qxl_log_cmd_cursor(PCIQXLDevice
*qxl
, QXLCursorCmd
*cmd
, int group_id
);
152 int qxl_log_command(PCIQXLDevice
*qxl
, const char *ring
, QXLCommandExt
*ext
);
155 void qxl_render_resize(PCIQXLDevice
*qxl
);
156 void qxl_render_update(PCIQXLDevice
*qxl
);
157 int qxl_render_cursor(PCIQXLDevice
*qxl
, QXLCommandExt
*ext
);
158 void qxl_render_update_area_done(PCIQXLDevice
*qxl
, QXLCookie
*cookie
);
159 void qxl_render_update_area_bh(void *opaque
);