4 #include "hw/pci/pci_device.h"
6 #include "qemu/thread.h"
8 #include "ui/qemu-spice.h"
9 #include "ui/spice-display.h"
10 #include "qom/object.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 #define QXL_PAGE_BITS 12
28 #define QXL_PAGE_SIZE (1 << QXL_PAGE_BITS);
32 PortioList vga_port_list
;
33 SimpleSpiceDisplay ssd
;
48 uint32_t current_async
;
58 } guest_slots
[NUM_MEMSLOTS
];
60 struct guest_primary
{
61 QXLSurfaceCreate surface
;
76 QXLPHYSICAL guest_cursor
;
78 QXLPHYSICAL guest_monitors_config
;
79 uint32_t guest_head0_width
;
80 uint32_t guest_head0_height
;
84 /* thread signaling */
90 uint32_t num_free_res
;
91 QXLReleaseInfo
*last_release
;
92 uint32_t last_release_offset
;
101 MemoryRegion rom_bar
;
102 uint16_t max_outputs
;
106 MemoryRegion vram_bar
;
107 uint64_t vram32_size
;
108 MemoryRegion vram32_bar
;
113 /* user-friendly properties (in megabytes) */
114 uint32_t ram_size_mb
;
115 uint32_t vram_size_mb
;
116 uint32_t vram32_size_mb
;
117 uint32_t vgamem_size_mb
;
121 /* qxl_render_update state */
122 int render_update_cookie_num
;
124 QXLRect dirty
[QXL_NUM_DIRTY_RECTS
];
125 QEMUBH
*update_area_bh
;
128 #define TYPE_PCI_QXL "pci-qxl"
129 OBJECT_DECLARE_SIMPLE_TYPE(PCIQXLDevice
, PCI_QXL
)
131 #define PANIC_ON(x) if ((x)) { \
132 printf("%s: PANIC %s failed\n", __func__, #x); \
136 #define dprint(_qxl, _level, _fmt, ...) \
138 if (_qxl->debug >= _level) { \
139 fprintf(stderr, "qxl-%d: ", _qxl->id); \
140 fprintf(stderr, _fmt, ## __VA_ARGS__); \
144 #define QXL_DEFAULT_REVISION (QXL_REVISION_STABLE_V12 + 1)
148 * qxl_phys2virt: Get a pointer within a PCI VRAM memory region.
151 * @phys: physical offset of buffer within the VRAM
152 * @group_id: memory slot group
153 * @size: size of the buffer
155 * Returns a host pointer to a buffer placed at offset @phys within the
156 * active slot @group_id of the PCI VGA RAM memory region associated with
157 * the @qxl device. If the slot is inactive, or the offset + size are out
158 * of the memory region, returns NULL.
160 * Use with care; by the time this function returns, the returned pointer is
161 * not protected by RCU anymore. If the caller is not within an RCU critical
162 * section and does not hold the BQL, it must have other means of
163 * protecting the pointer, such as a reference to the region that includes
164 * the incoming ram_addr_t.
167 void *qxl_phys2virt(PCIQXLDevice
*qxl
, QXLPHYSICAL phys
, int group_id
,
169 void qxl_set_guest_bug(PCIQXLDevice
*qxl
, const char *msg
, ...)
172 void qxl_spice_update_area(PCIQXLDevice
*qxl
, uint32_t surface_id
,
173 struct QXLRect
*area
, struct QXLRect
*dirty_rects
,
174 uint32_t num_dirty_rects
,
175 uint32_t clear_dirty_region
,
176 qxl_async_io async
, QXLCookie
*cookie
);
177 void qxl_spice_loadvm_commands(PCIQXLDevice
*qxl
, struct QXLCommandExt
*ext
,
179 void qxl_spice_oom(PCIQXLDevice
*qxl
);
180 void qxl_spice_reset_memslots(PCIQXLDevice
*qxl
);
181 void qxl_spice_reset_image_cache(PCIQXLDevice
*qxl
);
182 void qxl_spice_reset_cursor(PCIQXLDevice
*qxl
);
185 int qxl_log_cmd_cursor(PCIQXLDevice
*qxl
, QXLCursorCmd
*cmd
, int group_id
);
186 int qxl_log_command(PCIQXLDevice
*qxl
, const char *ring
, QXLCommandExt
*ext
);
189 void qxl_render_resize(PCIQXLDevice
*qxl
);
190 void qxl_render_update(PCIQXLDevice
*qxl
);
191 int qxl_render_cursor(PCIQXLDevice
*qxl
, QXLCommandExt
*ext
);
192 void qxl_render_update_area_done(PCIQXLDevice
*qxl
, QXLCookie
*cookie
);
193 void qxl_render_update_area_bh(void *opaque
);