2 * Copyright (C) 2010 Red Hat, Inc.
4 * written by Yaniv Kamay, Izik Eidus, Gerd Hoffmann
5 * maintained by Gerd Hoffmann <kraxel@redhat.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 or
10 * (at your option) version 3 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu-common.h"
22 #include "qemu-timer.h"
23 #include "qemu-queue.h"
31 * NOTE: SPICE_RING_PROD_ITEM accesses memory on the pci bar and as
32 * such can be changed by the guest, so to avoid a guest trigerrable
33 * abort we just qxl_set_guest_bug and set the return to NULL. Still
34 * it may happen as a result of emulator bug as well.
36 #undef SPICE_RING_PROD_ITEM
37 #define SPICE_RING_PROD_ITEM(qxl, r, ret) { \
38 typeof(r) start = r; \
39 typeof(r) end = r + 1; \
40 uint32_t prod = (r)->prod & SPICE_RING_INDEX_MASK(r); \
41 typeof(&(r)->items[prod]) m_item = &(r)->items[prod]; \
42 if (!((uint8_t*)m_item >= (uint8_t*)(start) && (uint8_t*)(m_item + 1) <= (uint8_t*)(end))) { \
43 qxl_set_guest_bug(qxl, "SPICE_RING_PROD_ITEM indices mismatch " \
44 "! %p <= %p < %p", (uint8_t *)start, \
45 (uint8_t *)m_item, (uint8_t *)end); \
52 #undef SPICE_RING_CONS_ITEM
53 #define SPICE_RING_CONS_ITEM(qxl, r, ret) { \
54 typeof(r) start = r; \
55 typeof(r) end = r + 1; \
56 uint32_t cons = (r)->cons & SPICE_RING_INDEX_MASK(r); \
57 typeof(&(r)->items[cons]) m_item = &(r)->items[cons]; \
58 if (!((uint8_t*)m_item >= (uint8_t*)(start) && (uint8_t*)(m_item + 1) <= (uint8_t*)(end))) { \
59 qxl_set_guest_bug(qxl, "SPICE_RING_CONS_ITEM indices mismatch " \
60 "! %p <= %p < %p", (uint8_t *)start, \
61 (uint8_t *)m_item, (uint8_t *)end); \
69 #define ALIGN(a, b) (((a) + ((b) - 1)) & ~((b) - 1))
71 #define PIXEL_SIZE 0.2936875 //1280x1024 is 14.8" x 11.9"
73 #define QXL_MODE(_x, _y, _b, _o) \
77 .stride = (_x) * (_b) / 8, \
78 .x_mili = PIXEL_SIZE * (_x), \
79 .y_mili = PIXEL_SIZE * (_y), \
83 #define QXL_MODE_16_32(x_res, y_res, orientation) \
84 QXL_MODE(x_res, y_res, 16, orientation), \
85 QXL_MODE(x_res, y_res, 32, orientation)
87 #define QXL_MODE_EX(x_res, y_res) \
88 QXL_MODE_16_32(x_res, y_res, 0), \
89 QXL_MODE_16_32(y_res, x_res, 1), \
90 QXL_MODE_16_32(x_res, y_res, 2), \
91 QXL_MODE_16_32(y_res, x_res, 3)
93 static QXLMode qxl_modes
[] = {
94 QXL_MODE_EX(640, 480),
95 QXL_MODE_EX(800, 480),
96 QXL_MODE_EX(800, 600),
97 QXL_MODE_EX(832, 624),
98 QXL_MODE_EX(960, 640),
99 QXL_MODE_EX(1024, 600),
100 QXL_MODE_EX(1024, 768),
101 QXL_MODE_EX(1152, 864),
102 QXL_MODE_EX(1152, 870),
103 QXL_MODE_EX(1280, 720),
104 QXL_MODE_EX(1280, 760),
105 QXL_MODE_EX(1280, 768),
106 QXL_MODE_EX(1280, 800),
107 QXL_MODE_EX(1280, 960),
108 QXL_MODE_EX(1280, 1024),
109 QXL_MODE_EX(1360, 768),
110 QXL_MODE_EX(1366, 768),
111 QXL_MODE_EX(1400, 1050),
112 QXL_MODE_EX(1440, 900),
113 QXL_MODE_EX(1600, 900),
114 QXL_MODE_EX(1600, 1200),
115 QXL_MODE_EX(1680, 1050),
116 QXL_MODE_EX(1920, 1080),
117 /* these modes need more than 8 MB video memory */
118 QXL_MODE_EX(1920, 1200),
119 QXL_MODE_EX(1920, 1440),
120 QXL_MODE_EX(2048, 1536),
121 QXL_MODE_EX(2560, 1440),
122 QXL_MODE_EX(2560, 1600),
123 /* these modes need more than 16 MB video memory */
124 QXL_MODE_EX(2560, 2048),
125 QXL_MODE_EX(2800, 2100),
126 QXL_MODE_EX(3200, 2400),
129 static PCIQXLDevice
*qxl0
;
131 static void qxl_send_events(PCIQXLDevice
*d
, uint32_t events
);
132 static int qxl_destroy_primary(PCIQXLDevice
*d
, qxl_async_io async
);
133 static void qxl_reset_memslots(PCIQXLDevice
*d
);
134 static void qxl_reset_surfaces(PCIQXLDevice
*d
);
135 static void qxl_ring_set_dirty(PCIQXLDevice
*qxl
);
137 void qxl_set_guest_bug(PCIQXLDevice
*qxl
, const char *msg
, ...)
139 qxl_send_events(qxl
, QXL_INTERRUPT_ERROR
);
141 if (qxl
->guestdebug
) {
144 fprintf(stderr
, "qxl-%d: guest bug: ", qxl
->id
);
145 vfprintf(stderr
, msg
, ap
);
146 fprintf(stderr
, "\n");
151 static void qxl_clear_guest_bug(PCIQXLDevice
*qxl
)
156 void qxl_spice_update_area(PCIQXLDevice
*qxl
, uint32_t surface_id
,
157 struct QXLRect
*area
, struct QXLRect
*dirty_rects
,
158 uint32_t num_dirty_rects
,
159 uint32_t clear_dirty_region
,
160 qxl_async_io async
, struct QXLCookie
*cookie
)
162 trace_qxl_spice_update_area(qxl
->id
, surface_id
, area
->left
, area
->right
,
163 area
->top
, area
->bottom
);
164 trace_qxl_spice_update_area_rest(qxl
->id
, num_dirty_rects
,
166 if (async
== QXL_SYNC
) {
167 qxl
->ssd
.worker
->update_area(qxl
->ssd
.worker
, surface_id
, area
,
168 dirty_rects
, num_dirty_rects
, clear_dirty_region
);
170 assert(cookie
!= NULL
);
171 spice_qxl_update_area_async(&qxl
->ssd
.qxl
, surface_id
, area
,
172 clear_dirty_region
, (uintptr_t)cookie
);
176 static void qxl_spice_destroy_surface_wait_complete(PCIQXLDevice
*qxl
,
179 trace_qxl_spice_destroy_surface_wait_complete(qxl
->id
, id
);
180 qemu_mutex_lock(&qxl
->track_lock
);
181 qxl
->guest_surfaces
.cmds
[id
] = 0;
182 qxl
->guest_surfaces
.count
--;
183 qemu_mutex_unlock(&qxl
->track_lock
);
186 static void qxl_spice_destroy_surface_wait(PCIQXLDevice
*qxl
, uint32_t id
,
191 trace_qxl_spice_destroy_surface_wait(qxl
->id
, id
, async
);
193 cookie
= qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
194 QXL_IO_DESTROY_SURFACE_ASYNC
);
195 cookie
->u
.surface_id
= id
;
196 spice_qxl_destroy_surface_async(&qxl
->ssd
.qxl
, id
, (uintptr_t)cookie
);
198 qxl
->ssd
.worker
->destroy_surface_wait(qxl
->ssd
.worker
, id
);
202 static void qxl_spice_flush_surfaces_async(PCIQXLDevice
*qxl
)
204 trace_qxl_spice_flush_surfaces_async(qxl
->id
, qxl
->guest_surfaces
.count
,
206 spice_qxl_flush_surfaces_async(&qxl
->ssd
.qxl
,
207 (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
208 QXL_IO_FLUSH_SURFACES_ASYNC
));
211 void qxl_spice_loadvm_commands(PCIQXLDevice
*qxl
, struct QXLCommandExt
*ext
,
214 trace_qxl_spice_loadvm_commands(qxl
->id
, ext
, count
);
215 qxl
->ssd
.worker
->loadvm_commands(qxl
->ssd
.worker
, ext
, count
);
218 void qxl_spice_oom(PCIQXLDevice
*qxl
)
220 trace_qxl_spice_oom(qxl
->id
);
221 qxl
->ssd
.worker
->oom(qxl
->ssd
.worker
);
224 void qxl_spice_reset_memslots(PCIQXLDevice
*qxl
)
226 trace_qxl_spice_reset_memslots(qxl
->id
);
227 qxl
->ssd
.worker
->reset_memslots(qxl
->ssd
.worker
);
230 static void qxl_spice_destroy_surfaces_complete(PCIQXLDevice
*qxl
)
232 trace_qxl_spice_destroy_surfaces_complete(qxl
->id
);
233 qemu_mutex_lock(&qxl
->track_lock
);
234 memset(&qxl
->guest_surfaces
.cmds
, 0, sizeof(qxl
->guest_surfaces
.cmds
));
235 qxl
->guest_surfaces
.count
= 0;
236 qemu_mutex_unlock(&qxl
->track_lock
);
239 static void qxl_spice_destroy_surfaces(PCIQXLDevice
*qxl
, qxl_async_io async
)
241 trace_qxl_spice_destroy_surfaces(qxl
->id
, async
);
243 spice_qxl_destroy_surfaces_async(&qxl
->ssd
.qxl
,
244 (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
245 QXL_IO_DESTROY_ALL_SURFACES_ASYNC
));
247 qxl
->ssd
.worker
->destroy_surfaces(qxl
->ssd
.worker
);
248 qxl_spice_destroy_surfaces_complete(qxl
);
252 void qxl_spice_reset_image_cache(PCIQXLDevice
*qxl
)
254 trace_qxl_spice_reset_image_cache(qxl
->id
);
255 qxl
->ssd
.worker
->reset_image_cache(qxl
->ssd
.worker
);
258 void qxl_spice_reset_cursor(PCIQXLDevice
*qxl
)
260 trace_qxl_spice_reset_cursor(qxl
->id
);
261 qxl
->ssd
.worker
->reset_cursor(qxl
->ssd
.worker
);
262 qemu_mutex_lock(&qxl
->track_lock
);
263 qxl
->guest_cursor
= 0;
264 qemu_mutex_unlock(&qxl
->track_lock
);
268 static inline uint32_t msb_mask(uint32_t val
)
273 mask
= ~(val
- 1) & val
;
275 } while (mask
< val
);
280 static ram_addr_t
qxl_rom_size(void)
282 uint32_t rom_size
= sizeof(QXLRom
) + sizeof(QXLModes
) + sizeof(qxl_modes
);
284 rom_size
= MAX(rom_size
, TARGET_PAGE_SIZE
);
285 rom_size
= msb_mask(rom_size
* 2 - 1);
289 static void init_qxl_rom(PCIQXLDevice
*d
)
291 QXLRom
*rom
= memory_region_get_ram_ptr(&d
->rom_bar
);
292 QXLModes
*modes
= (QXLModes
*)(rom
+ 1);
293 uint32_t ram_header_size
;
294 uint32_t surface0_area_size
;
299 memset(rom
, 0, d
->rom_size
);
301 rom
->magic
= cpu_to_le32(QXL_ROM_MAGIC
);
302 rom
->id
= cpu_to_le32(d
->id
);
303 rom
->log_level
= cpu_to_le32(d
->guestdebug
);
304 rom
->modes_offset
= cpu_to_le32(sizeof(QXLRom
));
306 rom
->slot_gen_bits
= MEMSLOT_GENERATION_BITS
;
307 rom
->slot_id_bits
= MEMSLOT_SLOT_BITS
;
308 rom
->slots_start
= 1;
309 rom
->slots_end
= NUM_MEMSLOTS
- 1;
310 rom
->n_surfaces
= cpu_to_le32(NUM_SURFACES
);
312 for (i
= 0, n
= 0; i
< ARRAY_SIZE(qxl_modes
); i
++) {
313 fb
= qxl_modes
[i
].y_res
* qxl_modes
[i
].stride
;
314 if (fb
> d
->vgamem_size
) {
317 modes
->modes
[n
].id
= cpu_to_le32(i
);
318 modes
->modes
[n
].x_res
= cpu_to_le32(qxl_modes
[i
].x_res
);
319 modes
->modes
[n
].y_res
= cpu_to_le32(qxl_modes
[i
].y_res
);
320 modes
->modes
[n
].bits
= cpu_to_le32(qxl_modes
[i
].bits
);
321 modes
->modes
[n
].stride
= cpu_to_le32(qxl_modes
[i
].stride
);
322 modes
->modes
[n
].x_mili
= cpu_to_le32(qxl_modes
[i
].x_mili
);
323 modes
->modes
[n
].y_mili
= cpu_to_le32(qxl_modes
[i
].y_mili
);
324 modes
->modes
[n
].orientation
= cpu_to_le32(qxl_modes
[i
].orientation
);
327 modes
->n_modes
= cpu_to_le32(n
);
329 ram_header_size
= ALIGN(sizeof(QXLRam
), 4096);
330 surface0_area_size
= ALIGN(d
->vgamem_size
, 4096);
331 num_pages
= d
->vga
.vram_size
;
332 num_pages
-= ram_header_size
;
333 num_pages
-= surface0_area_size
;
334 num_pages
= num_pages
/ TARGET_PAGE_SIZE
;
336 rom
->draw_area_offset
= cpu_to_le32(0);
337 rom
->surface0_area_size
= cpu_to_le32(surface0_area_size
);
338 rom
->pages_offset
= cpu_to_le32(surface0_area_size
);
339 rom
->num_pages
= cpu_to_le32(num_pages
);
340 rom
->ram_header_offset
= cpu_to_le32(d
->vga
.vram_size
- ram_header_size
);
342 d
->shadow_rom
= *rom
;
347 static void init_qxl_ram(PCIQXLDevice
*d
)
352 buf
= d
->vga
.vram_ptr
;
353 d
->ram
= (QXLRam
*)(buf
+ le32_to_cpu(d
->shadow_rom
.ram_header_offset
));
354 d
->ram
->magic
= cpu_to_le32(QXL_RAM_MAGIC
);
355 d
->ram
->int_pending
= cpu_to_le32(0);
356 d
->ram
->int_mask
= cpu_to_le32(0);
357 d
->ram
->update_surface
= 0;
358 SPICE_RING_INIT(&d
->ram
->cmd_ring
);
359 SPICE_RING_INIT(&d
->ram
->cursor_ring
);
360 SPICE_RING_INIT(&d
->ram
->release_ring
);
361 SPICE_RING_PROD_ITEM(d
, &d
->ram
->release_ring
, item
);
364 qxl_ring_set_dirty(d
);
367 /* can be called from spice server thread context */
368 static void qxl_set_dirty(MemoryRegion
*mr
, ram_addr_t addr
, ram_addr_t end
)
370 memory_region_set_dirty(mr
, addr
, end
- addr
);
373 static void qxl_rom_set_dirty(PCIQXLDevice
*qxl
)
375 qxl_set_dirty(&qxl
->rom_bar
, 0, qxl
->rom_size
);
378 /* called from spice server thread context only */
379 static void qxl_ram_set_dirty(PCIQXLDevice
*qxl
, void *ptr
)
381 void *base
= qxl
->vga
.vram_ptr
;
385 offset
&= ~(TARGET_PAGE_SIZE
-1);
386 assert(offset
< qxl
->vga
.vram_size
);
387 qxl_set_dirty(&qxl
->vga
.vram
, offset
, offset
+ TARGET_PAGE_SIZE
);
390 /* can be called from spice server thread context */
391 static void qxl_ring_set_dirty(PCIQXLDevice
*qxl
)
393 ram_addr_t addr
= qxl
->shadow_rom
.ram_header_offset
;
394 ram_addr_t end
= qxl
->vga
.vram_size
;
395 qxl_set_dirty(&qxl
->vga
.vram
, addr
, end
);
399 * keep track of some command state, for savevm/loadvm.
400 * called from spice server thread context only
402 static int qxl_track_command(PCIQXLDevice
*qxl
, struct QXLCommandExt
*ext
)
404 switch (le32_to_cpu(ext
->cmd
.type
)) {
405 case QXL_CMD_SURFACE
:
407 QXLSurfaceCmd
*cmd
= qxl_phys2virt(qxl
, ext
->cmd
.data
, ext
->group_id
);
412 uint32_t id
= le32_to_cpu(cmd
->surface_id
);
414 if (id
>= NUM_SURFACES
) {
415 qxl_set_guest_bug(qxl
, "QXL_CMD_SURFACE id %d >= %d", id
,
419 qemu_mutex_lock(&qxl
->track_lock
);
420 if (cmd
->type
== QXL_SURFACE_CMD_CREATE
) {
421 qxl
->guest_surfaces
.cmds
[id
] = ext
->cmd
.data
;
422 qxl
->guest_surfaces
.count
++;
423 if (qxl
->guest_surfaces
.max
< qxl
->guest_surfaces
.count
)
424 qxl
->guest_surfaces
.max
= qxl
->guest_surfaces
.count
;
426 if (cmd
->type
== QXL_SURFACE_CMD_DESTROY
) {
427 qxl
->guest_surfaces
.cmds
[id
] = 0;
428 qxl
->guest_surfaces
.count
--;
430 qemu_mutex_unlock(&qxl
->track_lock
);
435 QXLCursorCmd
*cmd
= qxl_phys2virt(qxl
, ext
->cmd
.data
, ext
->group_id
);
440 if (cmd
->type
== QXL_CURSOR_SET
) {
441 qemu_mutex_lock(&qxl
->track_lock
);
442 qxl
->guest_cursor
= ext
->cmd
.data
;
443 qemu_mutex_unlock(&qxl
->track_lock
);
451 /* spice display interface callbacks */
453 static void interface_attach_worker(QXLInstance
*sin
, QXLWorker
*qxl_worker
)
455 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
457 trace_qxl_interface_attach_worker(qxl
->id
);
458 qxl
->ssd
.worker
= qxl_worker
;
461 static void interface_set_compression_level(QXLInstance
*sin
, int level
)
463 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
465 trace_qxl_interface_set_compression_level(qxl
->id
, level
);
466 qxl
->shadow_rom
.compression_level
= cpu_to_le32(level
);
467 qxl
->rom
->compression_level
= cpu_to_le32(level
);
468 qxl_rom_set_dirty(qxl
);
471 static void interface_set_mm_time(QXLInstance
*sin
, uint32_t mm_time
)
473 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
475 trace_qxl_interface_set_mm_time(qxl
->id
, mm_time
);
476 qxl
->shadow_rom
.mm_clock
= cpu_to_le32(mm_time
);
477 qxl
->rom
->mm_clock
= cpu_to_le32(mm_time
);
478 qxl_rom_set_dirty(qxl
);
481 static void interface_get_init_info(QXLInstance
*sin
, QXLDevInitInfo
*info
)
483 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
485 trace_qxl_interface_get_init_info(qxl
->id
);
486 info
->memslot_gen_bits
= MEMSLOT_GENERATION_BITS
;
487 info
->memslot_id_bits
= MEMSLOT_SLOT_BITS
;
488 info
->num_memslots
= NUM_MEMSLOTS
;
489 info
->num_memslots_groups
= NUM_MEMSLOTS_GROUPS
;
490 info
->internal_groupslot_id
= 0;
491 info
->qxl_ram_size
= le32_to_cpu(qxl
->shadow_rom
.num_pages
) << TARGET_PAGE_BITS
;
492 info
->n_surfaces
= NUM_SURFACES
;
495 static const char *qxl_mode_to_string(int mode
)
498 case QXL_MODE_COMPAT
:
500 case QXL_MODE_NATIVE
:
502 case QXL_MODE_UNDEFINED
:
510 static const char *io_port_to_string(uint32_t io_port
)
512 if (io_port
>= QXL_IO_RANGE_SIZE
) {
513 return "out of range";
515 static const char *io_port_to_string
[QXL_IO_RANGE_SIZE
+ 1] = {
516 [QXL_IO_NOTIFY_CMD
] = "QXL_IO_NOTIFY_CMD",
517 [QXL_IO_NOTIFY_CURSOR
] = "QXL_IO_NOTIFY_CURSOR",
518 [QXL_IO_UPDATE_AREA
] = "QXL_IO_UPDATE_AREA",
519 [QXL_IO_UPDATE_IRQ
] = "QXL_IO_UPDATE_IRQ",
520 [QXL_IO_NOTIFY_OOM
] = "QXL_IO_NOTIFY_OOM",
521 [QXL_IO_RESET
] = "QXL_IO_RESET",
522 [QXL_IO_SET_MODE
] = "QXL_IO_SET_MODE",
523 [QXL_IO_LOG
] = "QXL_IO_LOG",
524 [QXL_IO_MEMSLOT_ADD
] = "QXL_IO_MEMSLOT_ADD",
525 [QXL_IO_MEMSLOT_DEL
] = "QXL_IO_MEMSLOT_DEL",
526 [QXL_IO_DETACH_PRIMARY
] = "QXL_IO_DETACH_PRIMARY",
527 [QXL_IO_ATTACH_PRIMARY
] = "QXL_IO_ATTACH_PRIMARY",
528 [QXL_IO_CREATE_PRIMARY
] = "QXL_IO_CREATE_PRIMARY",
529 [QXL_IO_DESTROY_PRIMARY
] = "QXL_IO_DESTROY_PRIMARY",
530 [QXL_IO_DESTROY_SURFACE_WAIT
] = "QXL_IO_DESTROY_SURFACE_WAIT",
531 [QXL_IO_DESTROY_ALL_SURFACES
] = "QXL_IO_DESTROY_ALL_SURFACES",
532 [QXL_IO_UPDATE_AREA_ASYNC
] = "QXL_IO_UPDATE_AREA_ASYNC",
533 [QXL_IO_MEMSLOT_ADD_ASYNC
] = "QXL_IO_MEMSLOT_ADD_ASYNC",
534 [QXL_IO_CREATE_PRIMARY_ASYNC
] = "QXL_IO_CREATE_PRIMARY_ASYNC",
535 [QXL_IO_DESTROY_PRIMARY_ASYNC
] = "QXL_IO_DESTROY_PRIMARY_ASYNC",
536 [QXL_IO_DESTROY_SURFACE_ASYNC
] = "QXL_IO_DESTROY_SURFACE_ASYNC",
537 [QXL_IO_DESTROY_ALL_SURFACES_ASYNC
]
538 = "QXL_IO_DESTROY_ALL_SURFACES_ASYNC",
539 [QXL_IO_FLUSH_SURFACES_ASYNC
] = "QXL_IO_FLUSH_SURFACES_ASYNC",
540 [QXL_IO_FLUSH_RELEASE
] = "QXL_IO_FLUSH_RELEASE",
542 return io_port_to_string
[io_port
];
545 /* called from spice server thread context only */
546 static int interface_get_command(QXLInstance
*sin
, struct QXLCommandExt
*ext
)
548 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
549 SimpleSpiceUpdate
*update
;
550 QXLCommandRing
*ring
;
554 trace_qxl_ring_command_check(qxl
->id
, qxl_mode_to_string(qxl
->mode
));
559 qemu_mutex_lock(&qxl
->ssd
.lock
);
560 if (qxl
->ssd
.update
!= NULL
) {
561 update
= qxl
->ssd
.update
;
562 qxl
->ssd
.update
= NULL
;
566 qemu_mutex_unlock(&qxl
->ssd
.lock
);
568 trace_qxl_ring_command_get(qxl
->id
, qxl_mode_to_string(qxl
->mode
));
569 qxl_log_command(qxl
, "vga", ext
);
572 case QXL_MODE_COMPAT
:
573 case QXL_MODE_NATIVE
:
574 case QXL_MODE_UNDEFINED
:
575 ring
= &qxl
->ram
->cmd_ring
;
576 if (qxl
->guest_bug
|| SPICE_RING_IS_EMPTY(ring
)) {
579 SPICE_RING_CONS_ITEM(qxl
, ring
, cmd
);
584 ext
->group_id
= MEMSLOT_GROUP_GUEST
;
585 ext
->flags
= qxl
->cmdflags
;
586 SPICE_RING_POP(ring
, notify
);
587 qxl_ring_set_dirty(qxl
);
589 qxl_send_events(qxl
, QXL_INTERRUPT_DISPLAY
);
591 qxl
->guest_primary
.commands
++;
592 qxl_track_command(qxl
, ext
);
593 qxl_log_command(qxl
, "cmd", ext
);
594 trace_qxl_ring_command_get(qxl
->id
, qxl_mode_to_string(qxl
->mode
));
601 /* called from spice server thread context only */
602 static int interface_req_cmd_notification(QXLInstance
*sin
)
604 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
607 trace_qxl_ring_command_req_notification(qxl
->id
);
609 case QXL_MODE_COMPAT
:
610 case QXL_MODE_NATIVE
:
611 case QXL_MODE_UNDEFINED
:
612 SPICE_RING_CONS_WAIT(&qxl
->ram
->cmd_ring
, wait
);
613 qxl_ring_set_dirty(qxl
);
622 /* called from spice server thread context only */
623 static inline void qxl_push_free_res(PCIQXLDevice
*d
, int flush
)
625 QXLReleaseRing
*ring
= &d
->ram
->release_ring
;
629 #define QXL_FREE_BUNCH_SIZE 32
631 if (ring
->prod
- ring
->cons
+ 1 == ring
->num_items
) {
632 /* ring full -- can't push */
635 if (!flush
&& d
->oom_running
) {
636 /* collect everything from oom handler before pushing */
639 if (!flush
&& d
->num_free_res
< QXL_FREE_BUNCH_SIZE
) {
640 /* collect a bit more before pushing */
644 SPICE_RING_PUSH(ring
, notify
);
645 trace_qxl_ring_res_push(d
->id
, qxl_mode_to_string(d
->mode
),
646 d
->guest_surfaces
.count
, d
->num_free_res
,
647 d
->last_release
, notify
? "yes" : "no");
648 trace_qxl_ring_res_push_rest(d
->id
, ring
->prod
- ring
->cons
,
649 ring
->num_items
, ring
->prod
, ring
->cons
);
651 qxl_send_events(d
, QXL_INTERRUPT_DISPLAY
);
653 SPICE_RING_PROD_ITEM(d
, ring
, item
);
659 d
->last_release
= NULL
;
660 qxl_ring_set_dirty(d
);
663 /* called from spice server thread context only */
664 static void interface_release_resource(QXLInstance
*sin
,
665 struct QXLReleaseInfoExt ext
)
667 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
668 QXLReleaseRing
*ring
;
671 if (ext
.group_id
== MEMSLOT_GROUP_HOST
) {
672 /* host group -> vga mode update request */
673 qemu_spice_destroy_update(&qxl
->ssd
, (void *)(intptr_t)ext
.info
->id
);
678 * ext->info points into guest-visible memory
679 * pci bar 0, $command.release_info
681 ring
= &qxl
->ram
->release_ring
;
682 SPICE_RING_PROD_ITEM(qxl
, ring
, item
);
687 /* stick head into the ring */
690 qxl_ram_set_dirty(qxl
, &ext
.info
->next
);
692 qxl_ring_set_dirty(qxl
);
694 /* append item to the list */
695 qxl
->last_release
->next
= ext
.info
->id
;
696 qxl_ram_set_dirty(qxl
, &qxl
->last_release
->next
);
698 qxl_ram_set_dirty(qxl
, &ext
.info
->next
);
700 qxl
->last_release
= ext
.info
;
702 trace_qxl_ring_res_put(qxl
->id
, qxl
->num_free_res
);
703 qxl_push_free_res(qxl
, 0);
706 /* called from spice server thread context only */
707 static int interface_get_cursor_command(QXLInstance
*sin
, struct QXLCommandExt
*ext
)
709 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
714 trace_qxl_ring_cursor_check(qxl
->id
, qxl_mode_to_string(qxl
->mode
));
717 case QXL_MODE_COMPAT
:
718 case QXL_MODE_NATIVE
:
719 case QXL_MODE_UNDEFINED
:
720 ring
= &qxl
->ram
->cursor_ring
;
721 if (SPICE_RING_IS_EMPTY(ring
)) {
724 SPICE_RING_CONS_ITEM(qxl
, ring
, cmd
);
729 ext
->group_id
= MEMSLOT_GROUP_GUEST
;
730 ext
->flags
= qxl
->cmdflags
;
731 SPICE_RING_POP(ring
, notify
);
732 qxl_ring_set_dirty(qxl
);
734 qxl_send_events(qxl
, QXL_INTERRUPT_CURSOR
);
736 qxl
->guest_primary
.commands
++;
737 qxl_track_command(qxl
, ext
);
738 qxl_log_command(qxl
, "csr", ext
);
740 qxl_render_cursor(qxl
, ext
);
742 trace_qxl_ring_cursor_get(qxl
->id
, qxl_mode_to_string(qxl
->mode
));
749 /* called from spice server thread context only */
750 static int interface_req_cursor_notification(QXLInstance
*sin
)
752 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
755 trace_qxl_ring_cursor_req_notification(qxl
->id
);
757 case QXL_MODE_COMPAT
:
758 case QXL_MODE_NATIVE
:
759 case QXL_MODE_UNDEFINED
:
760 SPICE_RING_CONS_WAIT(&qxl
->ram
->cursor_ring
, wait
);
761 qxl_ring_set_dirty(qxl
);
770 /* called from spice server thread context */
771 static void interface_notify_update(QXLInstance
*sin
, uint32_t update_id
)
774 * Called by spice-server as a result of a QXL_CMD_UPDATE which is not in
775 * use by xf86-video-qxl and is defined out in the qxl windows driver.
776 * Probably was at some earlier version that is prior to git start (2009),
777 * and is still guest trigerrable.
779 fprintf(stderr
, "%s: deprecated\n", __func__
);
782 /* called from spice server thread context only */
783 static int interface_flush_resources(QXLInstance
*sin
)
785 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
788 ret
= qxl
->num_free_res
;
790 qxl_push_free_res(qxl
, 1);
795 static void qxl_create_guest_primary_complete(PCIQXLDevice
*d
);
797 /* called from spice server thread context only */
798 static void interface_async_complete_io(PCIQXLDevice
*qxl
, QXLCookie
*cookie
)
800 uint32_t current_async
;
802 qemu_mutex_lock(&qxl
->async_lock
);
803 current_async
= qxl
->current_async
;
804 qxl
->current_async
= QXL_UNDEFINED_IO
;
805 qemu_mutex_unlock(&qxl
->async_lock
);
807 trace_qxl_interface_async_complete_io(qxl
->id
, current_async
, cookie
);
809 fprintf(stderr
, "qxl: %s: error, cookie is NULL\n", __func__
);
812 if (cookie
&& current_async
!= cookie
->io
) {
814 "qxl: %s: error: current_async = %d != %"
815 PRId64
" = cookie->io\n", __func__
, current_async
, cookie
->io
);
817 switch (current_async
) {
818 case QXL_IO_MEMSLOT_ADD_ASYNC
:
819 case QXL_IO_DESTROY_PRIMARY_ASYNC
:
820 case QXL_IO_UPDATE_AREA_ASYNC
:
821 case QXL_IO_FLUSH_SURFACES_ASYNC
:
823 case QXL_IO_CREATE_PRIMARY_ASYNC
:
824 qxl_create_guest_primary_complete(qxl
);
826 case QXL_IO_DESTROY_ALL_SURFACES_ASYNC
:
827 qxl_spice_destroy_surfaces_complete(qxl
);
829 case QXL_IO_DESTROY_SURFACE_ASYNC
:
830 qxl_spice_destroy_surface_wait_complete(qxl
, cookie
->u
.surface_id
);
833 fprintf(stderr
, "qxl: %s: unexpected current_async %d\n", __func__
,
836 qxl_send_events(qxl
, QXL_INTERRUPT_IO_CMD
);
839 /* called from spice server thread context only */
840 static void interface_update_area_complete(QXLInstance
*sin
,
842 QXLRect
*dirty
, uint32_t num_updated_rects
)
844 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
848 qemu_mutex_lock(&qxl
->ssd
.lock
);
849 if (surface_id
!= 0 || !qxl
->render_update_cookie_num
) {
850 qemu_mutex_unlock(&qxl
->ssd
.lock
);
853 trace_qxl_interface_update_area_complete(qxl
->id
, surface_id
, dirty
->left
,
854 dirty
->right
, dirty
->top
, dirty
->bottom
);
855 trace_qxl_interface_update_area_complete_rest(qxl
->id
, num_updated_rects
);
856 if (qxl
->num_dirty_rects
+ num_updated_rects
> QXL_NUM_DIRTY_RECTS
) {
858 * overflow - treat this as a full update. Not expected to be common.
860 trace_qxl_interface_update_area_complete_overflow(qxl
->id
,
861 QXL_NUM_DIRTY_RECTS
);
862 qxl
->guest_primary
.resized
= 1;
864 if (qxl
->guest_primary
.resized
) {
866 * Don't bother copying or scheduling the bh since we will flip
867 * the whole area anyway on completion of the update_area async call
869 qemu_mutex_unlock(&qxl
->ssd
.lock
);
872 qxl_i
= qxl
->num_dirty_rects
;
873 for (i
= 0; i
< num_updated_rects
; i
++) {
874 qxl
->dirty
[qxl_i
++] = dirty
[i
];
876 qxl
->num_dirty_rects
+= num_updated_rects
;
877 trace_qxl_interface_update_area_complete_schedule_bh(qxl
->id
,
878 qxl
->num_dirty_rects
);
879 qemu_bh_schedule(qxl
->update_area_bh
);
880 qemu_mutex_unlock(&qxl
->ssd
.lock
);
883 /* called from spice server thread context only */
884 static void interface_async_complete(QXLInstance
*sin
, uint64_t cookie_token
)
886 PCIQXLDevice
*qxl
= container_of(sin
, PCIQXLDevice
, ssd
.qxl
);
887 QXLCookie
*cookie
= (QXLCookie
*)(uintptr_t)cookie_token
;
889 switch (cookie
->type
) {
890 case QXL_COOKIE_TYPE_IO
:
891 interface_async_complete_io(qxl
, cookie
);
894 case QXL_COOKIE_TYPE_RENDER_UPDATE_AREA
:
895 qxl_render_update_area_done(qxl
, cookie
);
898 fprintf(stderr
, "qxl: %s: unexpected cookie type %d\n",
899 __func__
, cookie
->type
);
904 static const QXLInterface qxl_interface
= {
905 .base
.type
= SPICE_INTERFACE_QXL
,
906 .base
.description
= "qxl gpu",
907 .base
.major_version
= SPICE_INTERFACE_QXL_MAJOR
,
908 .base
.minor_version
= SPICE_INTERFACE_QXL_MINOR
,
910 .attache_worker
= interface_attach_worker
,
911 .set_compression_level
= interface_set_compression_level
,
912 .set_mm_time
= interface_set_mm_time
,
913 .get_init_info
= interface_get_init_info
,
915 /* the callbacks below are called from spice server thread context */
916 .get_command
= interface_get_command
,
917 .req_cmd_notification
= interface_req_cmd_notification
,
918 .release_resource
= interface_release_resource
,
919 .get_cursor_command
= interface_get_cursor_command
,
920 .req_cursor_notification
= interface_req_cursor_notification
,
921 .notify_update
= interface_notify_update
,
922 .flush_resources
= interface_flush_resources
,
923 .async_complete
= interface_async_complete
,
924 .update_area_complete
= interface_update_area_complete
,
927 static void qxl_enter_vga_mode(PCIQXLDevice
*d
)
929 if (d
->mode
== QXL_MODE_VGA
) {
932 trace_qxl_enter_vga_mode(d
->id
);
933 qemu_spice_create_host_primary(&d
->ssd
);
934 d
->mode
= QXL_MODE_VGA
;
935 memset(&d
->ssd
.dirty
, 0, sizeof(d
->ssd
.dirty
));
936 vga_dirty_log_start(&d
->vga
);
939 static void qxl_exit_vga_mode(PCIQXLDevice
*d
)
941 if (d
->mode
!= QXL_MODE_VGA
) {
944 trace_qxl_exit_vga_mode(d
->id
);
945 vga_dirty_log_stop(&d
->vga
);
946 qxl_destroy_primary(d
, QXL_SYNC
);
949 static void qxl_update_irq(PCIQXLDevice
*d
)
951 uint32_t pending
= le32_to_cpu(d
->ram
->int_pending
);
952 uint32_t mask
= le32_to_cpu(d
->ram
->int_mask
);
953 int level
= !!(pending
& mask
);
954 qemu_set_irq(d
->pci
.irq
[0], level
);
955 qxl_ring_set_dirty(d
);
958 static void qxl_check_state(PCIQXLDevice
*d
)
960 QXLRam
*ram
= d
->ram
;
962 assert(!d
->ssd
.running
|| SPICE_RING_IS_EMPTY(&ram
->cmd_ring
));
963 assert(!d
->ssd
.running
|| SPICE_RING_IS_EMPTY(&ram
->cursor_ring
));
966 static void qxl_reset_state(PCIQXLDevice
*d
)
968 QXLRom
*rom
= d
->rom
;
971 d
->shadow_rom
.update_id
= cpu_to_le32(0);
972 *rom
= d
->shadow_rom
;
973 qxl_rom_set_dirty(d
);
976 d
->last_release
= NULL
;
977 memset(&d
->ssd
.dirty
, 0, sizeof(d
->ssd
.dirty
));
980 static void qxl_soft_reset(PCIQXLDevice
*d
)
982 trace_qxl_soft_reset(d
->id
);
984 qxl_clear_guest_bug(d
);
985 d
->current_async
= QXL_UNDEFINED_IO
;
988 qxl_enter_vga_mode(d
);
990 d
->mode
= QXL_MODE_UNDEFINED
;
994 static void qxl_hard_reset(PCIQXLDevice
*d
, int loadvm
)
996 trace_qxl_hard_reset(d
->id
, loadvm
);
998 qxl_spice_reset_cursor(d
);
999 qxl_spice_reset_image_cache(d
);
1000 qxl_reset_surfaces(d
);
1001 qxl_reset_memslots(d
);
1003 /* pre loadvm reset must not touch QXLRam. This lives in
1004 * device memory, is migrated together with RAM and thus
1005 * already loaded at this point */
1009 qemu_spice_create_host_memslot(&d
->ssd
);
1013 static void qxl_reset_handler(DeviceState
*dev
)
1015 PCIQXLDevice
*d
= DO_UPCAST(PCIQXLDevice
, pci
.qdev
, dev
);
1017 qxl_hard_reset(d
, 0);
1020 static void qxl_vga_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
1022 VGACommonState
*vga
= opaque
;
1023 PCIQXLDevice
*qxl
= container_of(vga
, PCIQXLDevice
, vga
);
1025 trace_qxl_io_write_vga(qxl
->id
, qxl_mode_to_string(qxl
->mode
), addr
, val
);
1026 if (qxl
->mode
!= QXL_MODE_VGA
) {
1027 qxl_destroy_primary(qxl
, QXL_SYNC
);
1028 qxl_soft_reset(qxl
);
1030 vga_ioport_write(opaque
, addr
, val
);
1033 static const MemoryRegionPortio qxl_vga_portio_list
[] = {
1034 { 0x04, 2, 1, .read
= vga_ioport_read
,
1035 .write
= qxl_vga_ioport_write
}, /* 3b4 */
1036 { 0x0a, 1, 1, .read
= vga_ioport_read
,
1037 .write
= qxl_vga_ioport_write
}, /* 3ba */
1038 { 0x10, 16, 1, .read
= vga_ioport_read
,
1039 .write
= qxl_vga_ioport_write
}, /* 3c0 */
1040 { 0x24, 2, 1, .read
= vga_ioport_read
,
1041 .write
= qxl_vga_ioport_write
}, /* 3d4 */
1042 { 0x2a, 1, 1, .read
= vga_ioport_read
,
1043 .write
= qxl_vga_ioport_write
}, /* 3da */
1044 PORTIO_END_OF_LIST(),
1047 static int qxl_add_memslot(PCIQXLDevice
*d
, uint32_t slot_id
, uint64_t delta
,
1050 static const int regions
[] = {
1051 QXL_RAM_RANGE_INDEX
,
1052 QXL_VRAM_RANGE_INDEX
,
1053 QXL_VRAM64_RANGE_INDEX
,
1055 uint64_t guest_start
;
1060 intptr_t virt_start
;
1061 QXLDevMemSlot memslot
;
1064 guest_start
= le64_to_cpu(d
->guest_slots
[slot_id
].slot
.mem_start
);
1065 guest_end
= le64_to_cpu(d
->guest_slots
[slot_id
].slot
.mem_end
);
1067 trace_qxl_memslot_add_guest(d
->id
, slot_id
, guest_start
, guest_end
);
1069 if (slot_id
>= NUM_MEMSLOTS
) {
1070 qxl_set_guest_bug(d
, "%s: slot_id >= NUM_MEMSLOTS %d >= %d", __func__
,
1071 slot_id
, NUM_MEMSLOTS
);
1074 if (guest_start
> guest_end
) {
1075 qxl_set_guest_bug(d
, "%s: guest_start > guest_end 0x%" PRIx64
1076 " > 0x%" PRIx64
, __func__
, guest_start
, guest_end
);
1080 for (i
= 0; i
< ARRAY_SIZE(regions
); i
++) {
1081 pci_region
= regions
[i
];
1082 pci_start
= d
->pci
.io_regions
[pci_region
].addr
;
1083 pci_end
= pci_start
+ d
->pci
.io_regions
[pci_region
].size
;
1085 if (pci_start
== -1) {
1088 /* start address in range ? */
1089 if (guest_start
< pci_start
|| guest_start
> pci_end
) {
1092 /* end address in range ? */
1093 if (guest_end
> pci_end
) {
1099 if (i
== ARRAY_SIZE(regions
)) {
1100 qxl_set_guest_bug(d
, "%s: finished loop without match", __func__
);
1104 switch (pci_region
) {
1105 case QXL_RAM_RANGE_INDEX
:
1106 virt_start
= (intptr_t)memory_region_get_ram_ptr(&d
->vga
.vram
);
1108 case QXL_VRAM_RANGE_INDEX
:
1109 case 4 /* vram 64bit */:
1110 virt_start
= (intptr_t)memory_region_get_ram_ptr(&d
->vram_bar
);
1113 /* should not happen */
1114 qxl_set_guest_bug(d
, "%s: pci_region = %d", __func__
, pci_region
);
1118 memslot
.slot_id
= slot_id
;
1119 memslot
.slot_group_id
= MEMSLOT_GROUP_GUEST
; /* guest group */
1120 memslot
.virt_start
= virt_start
+ (guest_start
- pci_start
);
1121 memslot
.virt_end
= virt_start
+ (guest_end
- pci_start
);
1122 memslot
.addr_delta
= memslot
.virt_start
- delta
;
1123 memslot
.generation
= d
->rom
->slot_generation
= 0;
1124 qxl_rom_set_dirty(d
);
1126 qemu_spice_add_memslot(&d
->ssd
, &memslot
, async
);
1127 d
->guest_slots
[slot_id
].ptr
= (void*)memslot
.virt_start
;
1128 d
->guest_slots
[slot_id
].size
= memslot
.virt_end
- memslot
.virt_start
;
1129 d
->guest_slots
[slot_id
].delta
= delta
;
1130 d
->guest_slots
[slot_id
].active
= 1;
1134 static void qxl_del_memslot(PCIQXLDevice
*d
, uint32_t slot_id
)
1136 qemu_spice_del_memslot(&d
->ssd
, MEMSLOT_GROUP_HOST
, slot_id
);
1137 d
->guest_slots
[slot_id
].active
= 0;
1140 static void qxl_reset_memslots(PCIQXLDevice
*d
)
1142 qxl_spice_reset_memslots(d
);
1143 memset(&d
->guest_slots
, 0, sizeof(d
->guest_slots
));
1146 static void qxl_reset_surfaces(PCIQXLDevice
*d
)
1148 trace_qxl_reset_surfaces(d
->id
);
1149 d
->mode
= QXL_MODE_UNDEFINED
;
1150 qxl_spice_destroy_surfaces(d
, QXL_SYNC
);
1153 /* can be also called from spice server thread context */
1154 void *qxl_phys2virt(PCIQXLDevice
*qxl
, QXLPHYSICAL pqxl
, int group_id
)
1156 uint64_t phys
= le64_to_cpu(pqxl
);
1157 uint32_t slot
= (phys
>> (64 - 8)) & 0xff;
1158 uint64_t offset
= phys
& 0xffffffffffff;
1161 case MEMSLOT_GROUP_HOST
:
1162 return (void *)(intptr_t)offset
;
1163 case MEMSLOT_GROUP_GUEST
:
1164 if (slot
>= NUM_MEMSLOTS
) {
1165 qxl_set_guest_bug(qxl
, "slot too large %d >= %d", slot
,
1169 if (!qxl
->guest_slots
[slot
].active
) {
1170 qxl_set_guest_bug(qxl
, "inactive slot %d\n", slot
);
1173 if (offset
< qxl
->guest_slots
[slot
].delta
) {
1174 qxl_set_guest_bug(qxl
,
1175 "slot %d offset %"PRIu64
" < delta %"PRIu64
"\n",
1176 slot
, offset
, qxl
->guest_slots
[slot
].delta
);
1179 offset
-= qxl
->guest_slots
[slot
].delta
;
1180 if (offset
> qxl
->guest_slots
[slot
].size
) {
1181 qxl_set_guest_bug(qxl
,
1182 "slot %d offset %"PRIu64
" > size %"PRIu64
"\n",
1183 slot
, offset
, qxl
->guest_slots
[slot
].size
);
1186 return qxl
->guest_slots
[slot
].ptr
+ offset
;
1191 static void qxl_create_guest_primary_complete(PCIQXLDevice
*qxl
)
1193 /* for local rendering */
1194 qxl_render_resize(qxl
);
1197 static void qxl_create_guest_primary(PCIQXLDevice
*qxl
, int loadvm
,
1200 QXLDevSurfaceCreate surface
;
1201 QXLSurfaceCreate
*sc
= &qxl
->guest_primary
.surface
;
1203 int requested_height
= le32_to_cpu(sc
->height
);
1204 int requested_stride
= le32_to_cpu(sc
->stride
);
1206 size
= abs(requested_stride
) * requested_height
;
1207 if (size
> qxl
->vgamem_size
) {
1208 qxl_set_guest_bug(qxl
, "%s: requested primary larger then framebuffer"
1213 if (qxl
->mode
== QXL_MODE_NATIVE
) {
1214 qxl_set_guest_bug(qxl
, "%s: nop since already in QXL_MODE_NATIVE",
1217 qxl_exit_vga_mode(qxl
);
1219 surface
.format
= le32_to_cpu(sc
->format
);
1220 surface
.height
= le32_to_cpu(sc
->height
);
1221 surface
.mem
= le64_to_cpu(sc
->mem
);
1222 surface
.position
= le32_to_cpu(sc
->position
);
1223 surface
.stride
= le32_to_cpu(sc
->stride
);
1224 surface
.width
= le32_to_cpu(sc
->width
);
1225 surface
.type
= le32_to_cpu(sc
->type
);
1226 surface
.flags
= le32_to_cpu(sc
->flags
);
1227 trace_qxl_create_guest_primary(qxl
->id
, sc
->width
, sc
->height
, sc
->mem
,
1228 sc
->format
, sc
->position
);
1229 trace_qxl_create_guest_primary_rest(qxl
->id
, sc
->stride
, sc
->type
,
1232 surface
.mouse_mode
= true;
1233 surface
.group_id
= MEMSLOT_GROUP_GUEST
;
1235 surface
.flags
|= QXL_SURF_FLAG_KEEP_DATA
;
1238 qxl
->mode
= QXL_MODE_NATIVE
;
1240 qemu_spice_create_primary_surface(&qxl
->ssd
, 0, &surface
, async
);
1242 if (async
== QXL_SYNC
) {
1243 qxl_create_guest_primary_complete(qxl
);
1247 /* return 1 if surface destoy was initiated (in QXL_ASYNC case) or
1248 * done (in QXL_SYNC case), 0 otherwise. */
1249 static int qxl_destroy_primary(PCIQXLDevice
*d
, qxl_async_io async
)
1251 if (d
->mode
== QXL_MODE_UNDEFINED
) {
1254 trace_qxl_destroy_primary(d
->id
);
1255 d
->mode
= QXL_MODE_UNDEFINED
;
1256 qemu_spice_destroy_primary_surface(&d
->ssd
, 0, async
);
1257 qxl_spice_reset_cursor(d
);
1261 static void qxl_set_mode(PCIQXLDevice
*d
, int modenr
, int loadvm
)
1263 pcibus_t start
= d
->pci
.io_regions
[QXL_RAM_RANGE_INDEX
].addr
;
1264 pcibus_t end
= d
->pci
.io_regions
[QXL_RAM_RANGE_INDEX
].size
+ start
;
1265 QXLMode
*mode
= d
->modes
->modes
+ modenr
;
1266 uint64_t devmem
= d
->pci
.io_regions
[QXL_RAM_RANGE_INDEX
].addr
;
1271 QXLSurfaceCreate surface
= {
1272 .width
= mode
->x_res
,
1273 .height
= mode
->y_res
,
1274 .stride
= -mode
->x_res
* 4,
1275 .format
= SPICE_SURFACE_FMT_32_xRGB
,
1276 .flags
= loadvm
? QXL_SURF_FLAG_KEEP_DATA
: 0,
1278 .mem
= devmem
+ d
->shadow_rom
.draw_area_offset
,
1281 trace_qxl_set_mode(d
->id
, modenr
, mode
->x_res
, mode
->y_res
, mode
->bits
,
1284 qxl_hard_reset(d
, 0);
1287 d
->guest_slots
[0].slot
= slot
;
1288 assert(qxl_add_memslot(d
, 0, devmem
, QXL_SYNC
) == 0);
1290 d
->guest_primary
.surface
= surface
;
1291 qxl_create_guest_primary(d
, 0, QXL_SYNC
);
1293 d
->mode
= QXL_MODE_COMPAT
;
1294 d
->cmdflags
= QXL_COMMAND_FLAG_COMPAT
;
1295 #ifdef QXL_COMMAND_FLAG_COMPAT_16BPP /* new in spice 0.6.1 */
1296 if (mode
->bits
== 16) {
1297 d
->cmdflags
|= QXL_COMMAND_FLAG_COMPAT_16BPP
;
1300 d
->shadow_rom
.mode
= cpu_to_le32(modenr
);
1301 d
->rom
->mode
= cpu_to_le32(modenr
);
1302 qxl_rom_set_dirty(d
);
1305 static void ioport_write(void *opaque
, target_phys_addr_t addr
,
1306 uint64_t val
, unsigned size
)
1308 PCIQXLDevice
*d
= opaque
;
1309 uint32_t io_port
= addr
;
1310 qxl_async_io async
= QXL_SYNC
;
1311 uint32_t orig_io_port
= io_port
;
1313 if (d
->guest_bug
&& !io_port
== QXL_IO_RESET
) {
1319 case QXL_IO_SET_MODE
:
1320 case QXL_IO_MEMSLOT_ADD
:
1321 case QXL_IO_MEMSLOT_DEL
:
1322 case QXL_IO_CREATE_PRIMARY
:
1323 case QXL_IO_UPDATE_IRQ
:
1325 case QXL_IO_MEMSLOT_ADD_ASYNC
:
1326 case QXL_IO_CREATE_PRIMARY_ASYNC
:
1329 if (d
->mode
!= QXL_MODE_VGA
) {
1332 trace_qxl_io_unexpected_vga_mode(d
->id
,
1333 io_port
, io_port_to_string(io_port
));
1334 /* be nice to buggy guest drivers */
1335 if (io_port
>= QXL_IO_UPDATE_AREA_ASYNC
&&
1336 io_port
<= QXL_IO_DESTROY_ALL_SURFACES_ASYNC
) {
1337 qxl_send_events(d
, QXL_INTERRUPT_IO_CMD
);
1342 /* we change the io_port to avoid ifdeffery in the main switch */
1343 orig_io_port
= io_port
;
1345 case QXL_IO_UPDATE_AREA_ASYNC
:
1346 io_port
= QXL_IO_UPDATE_AREA
;
1348 case QXL_IO_MEMSLOT_ADD_ASYNC
:
1349 io_port
= QXL_IO_MEMSLOT_ADD
;
1351 case QXL_IO_CREATE_PRIMARY_ASYNC
:
1352 io_port
= QXL_IO_CREATE_PRIMARY
;
1354 case QXL_IO_DESTROY_PRIMARY_ASYNC
:
1355 io_port
= QXL_IO_DESTROY_PRIMARY
;
1357 case QXL_IO_DESTROY_SURFACE_ASYNC
:
1358 io_port
= QXL_IO_DESTROY_SURFACE_WAIT
;
1360 case QXL_IO_DESTROY_ALL_SURFACES_ASYNC
:
1361 io_port
= QXL_IO_DESTROY_ALL_SURFACES
;
1363 case QXL_IO_FLUSH_SURFACES_ASYNC
:
1366 qemu_mutex_lock(&d
->async_lock
);
1367 if (d
->current_async
!= QXL_UNDEFINED_IO
) {
1368 qxl_set_guest_bug(d
, "%d async started before last (%d) complete",
1369 io_port
, d
->current_async
);
1370 qemu_mutex_unlock(&d
->async_lock
);
1373 d
->current_async
= orig_io_port
;
1374 qemu_mutex_unlock(&d
->async_lock
);
1379 trace_qxl_io_write(d
->id
, qxl_mode_to_string(d
->mode
), addr
, val
, size
,
1383 case QXL_IO_UPDATE_AREA
:
1385 QXLCookie
*cookie
= NULL
;
1386 QXLRect update
= d
->ram
->update_area
;
1388 if (async
== QXL_ASYNC
) {
1389 cookie
= qxl_cookie_new(QXL_COOKIE_TYPE_IO
,
1390 QXL_IO_UPDATE_AREA_ASYNC
);
1391 cookie
->u
.area
= update
;
1393 qxl_spice_update_area(d
, d
->ram
->update_surface
,
1394 cookie
? &cookie
->u
.area
: &update
,
1395 NULL
, 0, 0, async
, cookie
);
1398 case QXL_IO_NOTIFY_CMD
:
1399 qemu_spice_wakeup(&d
->ssd
);
1401 case QXL_IO_NOTIFY_CURSOR
:
1402 qemu_spice_wakeup(&d
->ssd
);
1404 case QXL_IO_UPDATE_IRQ
:
1407 case QXL_IO_NOTIFY_OOM
:
1408 if (!SPICE_RING_IS_EMPTY(&d
->ram
->release_ring
)) {
1415 case QXL_IO_SET_MODE
:
1416 qxl_set_mode(d
, val
, 0);
1419 if (d
->guestdebug
) {
1420 fprintf(stderr
, "qxl/guest-%d: %" PRId64
": %s", d
->id
,
1421 qemu_get_clock_ns(vm_clock
), d
->ram
->log_buf
);
1425 qxl_hard_reset(d
, 0);
1427 case QXL_IO_MEMSLOT_ADD
:
1428 if (val
>= NUM_MEMSLOTS
) {
1429 qxl_set_guest_bug(d
, "QXL_IO_MEMSLOT_ADD: val out of range");
1432 if (d
->guest_slots
[val
].active
) {
1433 qxl_set_guest_bug(d
,
1434 "QXL_IO_MEMSLOT_ADD: memory slot already active");
1437 d
->guest_slots
[val
].slot
= d
->ram
->mem_slot
;
1438 qxl_add_memslot(d
, val
, 0, async
);
1440 case QXL_IO_MEMSLOT_DEL
:
1441 if (val
>= NUM_MEMSLOTS
) {
1442 qxl_set_guest_bug(d
, "QXL_IO_MEMSLOT_DEL: val out of range");
1445 qxl_del_memslot(d
, val
);
1447 case QXL_IO_CREATE_PRIMARY
:
1449 qxl_set_guest_bug(d
, "QXL_IO_CREATE_PRIMARY (async=%d): val != 0",
1453 d
->guest_primary
.surface
= d
->ram
->create_surface
;
1454 qxl_create_guest_primary(d
, 0, async
);
1456 case QXL_IO_DESTROY_PRIMARY
:
1458 qxl_set_guest_bug(d
, "QXL_IO_DESTROY_PRIMARY (async=%d): val != 0",
1462 if (!qxl_destroy_primary(d
, async
)) {
1463 trace_qxl_io_destroy_primary_ignored(d
->id
,
1464 qxl_mode_to_string(d
->mode
));
1468 case QXL_IO_DESTROY_SURFACE_WAIT
:
1469 if (val
>= NUM_SURFACES
) {
1470 qxl_set_guest_bug(d
, "QXL_IO_DESTROY_SURFACE (async=%d):"
1471 "%" PRIu64
" >= NUM_SURFACES", async
, val
);
1474 qxl_spice_destroy_surface_wait(d
, val
, async
);
1476 case QXL_IO_FLUSH_RELEASE
: {
1477 QXLReleaseRing
*ring
= &d
->ram
->release_ring
;
1478 if (ring
->prod
- ring
->cons
+ 1 == ring
->num_items
) {
1480 "ERROR: no flush, full release ring [p%d,%dc]\n",
1481 ring
->prod
, ring
->cons
);
1483 qxl_push_free_res(d
, 1 /* flush */);
1486 case QXL_IO_FLUSH_SURFACES_ASYNC
:
1487 qxl_spice_flush_surfaces_async(d
);
1489 case QXL_IO_DESTROY_ALL_SURFACES
:
1490 d
->mode
= QXL_MODE_UNDEFINED
;
1491 qxl_spice_destroy_surfaces(d
, async
);
1494 qxl_set_guest_bug(d
, "%s: unexpected ioport=0x%x\n", __func__
, io_port
);
1499 qxl_send_events(d
, QXL_INTERRUPT_IO_CMD
);
1500 qemu_mutex_lock(&d
->async_lock
);
1501 d
->current_async
= QXL_UNDEFINED_IO
;
1502 qemu_mutex_unlock(&d
->async_lock
);
1506 static uint64_t ioport_read(void *opaque
, target_phys_addr_t addr
,
1509 PCIQXLDevice
*d
= opaque
;
1511 trace_qxl_io_read_unexpected(d
->id
);
1515 static const MemoryRegionOps qxl_io_ops
= {
1516 .read
= ioport_read
,
1517 .write
= ioport_write
,
1519 .min_access_size
= 1,
1520 .max_access_size
= 1,
1524 static void pipe_read(void *opaque
)
1526 PCIQXLDevice
*d
= opaque
;
1531 len
= read(d
->pipe
[0], &dummy
, sizeof(dummy
));
1532 } while (len
== sizeof(dummy
));
1536 static void qxl_send_events(PCIQXLDevice
*d
, uint32_t events
)
1538 uint32_t old_pending
;
1539 uint32_t le_events
= cpu_to_le32(events
);
1541 assert(d
->ssd
.running
);
1542 old_pending
= __sync_fetch_and_or(&d
->ram
->int_pending
, le_events
);
1543 if ((old_pending
& le_events
) == le_events
) {
1546 if (qemu_thread_is_self(&d
->main
)) {
1549 if (write(d
->pipe
[1], d
, 1) != 1) {
1550 dprint(d
, 1, "%s: write to pipe failed\n", __func__
);
1555 static void init_pipe_signaling(PCIQXLDevice
*d
)
1557 if (pipe(d
->pipe
) < 0) {
1558 fprintf(stderr
, "%s:%s: qxl pipe creation failed\n",
1559 __FILE__
, __func__
);
1562 fcntl(d
->pipe
[0], F_SETFL
, O_NONBLOCK
);
1563 fcntl(d
->pipe
[1], F_SETFL
, O_NONBLOCK
);
1564 fcntl(d
->pipe
[0], F_SETOWN
, getpid());
1566 qemu_thread_get_self(&d
->main
);
1567 qemu_set_fd_handler(d
->pipe
[0], pipe_read
, NULL
, d
);
1570 /* graphics console */
1572 static void qxl_hw_update(void *opaque
)
1574 PCIQXLDevice
*qxl
= opaque
;
1575 VGACommonState
*vga
= &qxl
->vga
;
1577 switch (qxl
->mode
) {
1581 case QXL_MODE_COMPAT
:
1582 case QXL_MODE_NATIVE
:
1583 qxl_render_update(qxl
);
1590 static void qxl_hw_invalidate(void *opaque
)
1592 PCIQXLDevice
*qxl
= opaque
;
1593 VGACommonState
*vga
= &qxl
->vga
;
1595 vga
->invalidate(vga
);
1598 static void qxl_hw_screen_dump(void *opaque
, const char *filename
, bool cswitch
)
1600 PCIQXLDevice
*qxl
= opaque
;
1601 VGACommonState
*vga
= &qxl
->vga
;
1603 switch (qxl
->mode
) {
1604 case QXL_MODE_COMPAT
:
1605 case QXL_MODE_NATIVE
:
1606 qxl_render_update(qxl
);
1607 ppm_save(filename
, qxl
->ssd
.ds
->surface
);
1610 vga
->screen_dump(vga
, filename
, cswitch
);
1617 static void qxl_hw_text_update(void *opaque
, console_ch_t
*chardata
)
1619 PCIQXLDevice
*qxl
= opaque
;
1620 VGACommonState
*vga
= &qxl
->vga
;
1622 if (qxl
->mode
== QXL_MODE_VGA
) {
1623 vga
->text_update(vga
, chardata
);
1628 static void qxl_dirty_surfaces(PCIQXLDevice
*qxl
)
1630 intptr_t vram_start
;
1633 if (qxl
->mode
!= QXL_MODE_NATIVE
&& qxl
->mode
!= QXL_MODE_COMPAT
) {
1637 /* dirty the primary surface */
1638 qxl_set_dirty(&qxl
->vga
.vram
, qxl
->shadow_rom
.draw_area_offset
,
1639 qxl
->shadow_rom
.surface0_area_size
);
1641 vram_start
= (intptr_t)memory_region_get_ram_ptr(&qxl
->vram_bar
);
1643 /* dirty the off-screen surfaces */
1644 for (i
= 0; i
< NUM_SURFACES
; i
++) {
1646 intptr_t surface_offset
;
1649 if (qxl
->guest_surfaces
.cmds
[i
] == 0) {
1653 cmd
= qxl_phys2virt(qxl
, qxl
->guest_surfaces
.cmds
[i
],
1654 MEMSLOT_GROUP_GUEST
);
1656 assert(cmd
->type
== QXL_SURFACE_CMD_CREATE
);
1657 surface_offset
= (intptr_t)qxl_phys2virt(qxl
,
1658 cmd
->u
.surface_create
.data
,
1659 MEMSLOT_GROUP_GUEST
);
1660 assert(surface_offset
);
1661 surface_offset
-= vram_start
;
1662 surface_size
= cmd
->u
.surface_create
.height
*
1663 abs(cmd
->u
.surface_create
.stride
);
1664 trace_qxl_surfaces_dirty(qxl
->id
, i
, (int)surface_offset
, surface_size
);
1665 qxl_set_dirty(&qxl
->vram_bar
, surface_offset
, surface_size
);
1669 static void qxl_vm_change_state_handler(void *opaque
, int running
,
1672 PCIQXLDevice
*qxl
= opaque
;
1673 qemu_spice_vm_change_state_handler(&qxl
->ssd
, running
, state
);
1677 * if qxl_send_events was called from spice server context before
1678 * migration ended, qxl_update_irq for these events might not have been
1681 qxl_update_irq(qxl
);
1683 /* make sure surfaces are saved before migration */
1684 qxl_dirty_surfaces(qxl
);
1688 /* display change listener */
1690 static void display_update(struct DisplayState
*ds
, int x
, int y
, int w
, int h
)
1692 if (qxl0
->mode
== QXL_MODE_VGA
) {
1693 qemu_spice_display_update(&qxl0
->ssd
, x
, y
, w
, h
);
1697 static void display_resize(struct DisplayState
*ds
)
1699 if (qxl0
->mode
== QXL_MODE_VGA
) {
1700 qemu_spice_display_resize(&qxl0
->ssd
);
1704 static void display_refresh(struct DisplayState
*ds
)
1706 if (qxl0
->mode
== QXL_MODE_VGA
) {
1707 qemu_spice_display_refresh(&qxl0
->ssd
);
1709 qemu_mutex_lock(&qxl0
->ssd
.lock
);
1710 qemu_spice_cursor_refresh_unlocked(&qxl0
->ssd
);
1711 qemu_mutex_unlock(&qxl0
->ssd
.lock
);
1715 static DisplayChangeListener display_listener
= {
1716 .dpy_update
= display_update
,
1717 .dpy_resize
= display_resize
,
1718 .dpy_refresh
= display_refresh
,
1721 static void qxl_init_ramsize(PCIQXLDevice
*qxl
)
1723 /* vga mode framebuffer / primary surface (bar 0, first part) */
1724 if (qxl
->vgamem_size_mb
< 8) {
1725 qxl
->vgamem_size_mb
= 8;
1727 qxl
->vgamem_size
= qxl
->vgamem_size_mb
* 1024 * 1024;
1729 /* vga ram (bar 0, total) */
1730 if (qxl
->ram_size_mb
!= -1) {
1731 qxl
->vga
.vram_size
= qxl
->ram_size_mb
* 1024 * 1024;
1733 if (qxl
->vga
.vram_size
< qxl
->vgamem_size
* 2) {
1734 qxl
->vga
.vram_size
= qxl
->vgamem_size
* 2;
1737 /* vram32 (surfaces, 32bit, bar 1) */
1738 if (qxl
->vram32_size_mb
!= -1) {
1739 qxl
->vram32_size
= qxl
->vram32_size_mb
* 1024 * 1024;
1741 if (qxl
->vram32_size
< 4096) {
1742 qxl
->vram32_size
= 4096;
1745 /* vram (surfaces, 64bit, bar 4+5) */
1746 if (qxl
->vram_size_mb
!= -1) {
1747 qxl
->vram_size
= qxl
->vram_size_mb
* 1024 * 1024;
1749 if (qxl
->vram_size
< qxl
->vram32_size
) {
1750 qxl
->vram_size
= qxl
->vram32_size
;
1753 if (qxl
->revision
== 1) {
1754 qxl
->vram32_size
= 4096;
1755 qxl
->vram_size
= 4096;
1757 qxl
->vgamem_size
= msb_mask(qxl
->vgamem_size
* 2 - 1);
1758 qxl
->vga
.vram_size
= msb_mask(qxl
->vga
.vram_size
* 2 - 1);
1759 qxl
->vram32_size
= msb_mask(qxl
->vram32_size
* 2 - 1);
1760 qxl
->vram_size
= msb_mask(qxl
->vram_size
* 2 - 1);
1763 static int qxl_init_common(PCIQXLDevice
*qxl
)
1765 uint8_t* config
= qxl
->pci
.config
;
1766 uint32_t pci_device_rev
;
1769 qxl
->mode
= QXL_MODE_UNDEFINED
;
1770 qxl
->generation
= 1;
1771 qxl
->num_memslots
= NUM_MEMSLOTS
;
1772 qxl
->num_surfaces
= NUM_SURFACES
;
1773 qemu_mutex_init(&qxl
->track_lock
);
1774 qemu_mutex_init(&qxl
->async_lock
);
1775 qxl
->current_async
= QXL_UNDEFINED_IO
;
1778 switch (qxl
->revision
) {
1779 case 1: /* spice 0.4 -- qxl-1 */
1780 pci_device_rev
= QXL_REVISION_STABLE_V04
;
1783 case 2: /* spice 0.6 -- qxl-2 */
1784 pci_device_rev
= QXL_REVISION_STABLE_V06
;
1789 pci_device_rev
= QXL_DEFAULT_REVISION
;
1790 io_size
= msb_mask(QXL_IO_RANGE_SIZE
* 2 - 1);
1794 pci_set_byte(&config
[PCI_REVISION_ID
], pci_device_rev
);
1795 pci_set_byte(&config
[PCI_INTERRUPT_PIN
], 1);
1797 qxl
->rom_size
= qxl_rom_size();
1798 memory_region_init_ram(&qxl
->rom_bar
, "qxl.vrom", qxl
->rom_size
);
1799 vmstate_register_ram(&qxl
->rom_bar
, &qxl
->pci
.qdev
);
1803 memory_region_init_ram(&qxl
->vram_bar
, "qxl.vram", qxl
->vram_size
);
1804 vmstate_register_ram(&qxl
->vram_bar
, &qxl
->pci
.qdev
);
1805 memory_region_init_alias(&qxl
->vram32_bar
, "qxl.vram32", &qxl
->vram_bar
,
1806 0, qxl
->vram32_size
);
1808 memory_region_init_io(&qxl
->io_bar
, &qxl_io_ops
, qxl
,
1809 "qxl-ioports", io_size
);
1811 vga_dirty_log_start(&qxl
->vga
);
1815 pci_register_bar(&qxl
->pci
, QXL_IO_RANGE_INDEX
,
1816 PCI_BASE_ADDRESS_SPACE_IO
, &qxl
->io_bar
);
1818 pci_register_bar(&qxl
->pci
, QXL_ROM_RANGE_INDEX
,
1819 PCI_BASE_ADDRESS_SPACE_MEMORY
, &qxl
->rom_bar
);
1821 pci_register_bar(&qxl
->pci
, QXL_RAM_RANGE_INDEX
,
1822 PCI_BASE_ADDRESS_SPACE_MEMORY
, &qxl
->vga
.vram
);
1824 pci_register_bar(&qxl
->pci
, QXL_VRAM_RANGE_INDEX
,
1825 PCI_BASE_ADDRESS_SPACE_MEMORY
, &qxl
->vram32_bar
);
1827 if (qxl
->vram32_size
< qxl
->vram_size
) {
1829 * Make the 64bit vram bar show up only in case it is
1830 * configured to be larger than the 32bit vram bar.
1832 pci_register_bar(&qxl
->pci
, QXL_VRAM64_RANGE_INDEX
,
1833 PCI_BASE_ADDRESS_SPACE_MEMORY
|
1834 PCI_BASE_ADDRESS_MEM_TYPE_64
|
1835 PCI_BASE_ADDRESS_MEM_PREFETCH
,
1839 /* print pci bar details */
1840 dprint(qxl
, 1, "ram/%s: %d MB [region 0]\n",
1841 qxl
->id
== 0 ? "pri" : "sec",
1842 qxl
->vga
.vram_size
/ (1024*1024));
1843 dprint(qxl
, 1, "vram/32: %d MB [region 1]\n",
1844 qxl
->vram32_size
/ (1024*1024));
1845 dprint(qxl
, 1, "vram/64: %d MB %s\n",
1846 qxl
->vram_size
/ (1024*1024),
1847 qxl
->vram32_size
< qxl
->vram_size
? "[region 4]" : "[unmapped]");
1849 qxl
->ssd
.qxl
.base
.sif
= &qxl_interface
.base
;
1850 qxl
->ssd
.qxl
.id
= qxl
->id
;
1851 qemu_spice_add_interface(&qxl
->ssd
.qxl
.base
);
1852 qemu_add_vm_change_state_handler(qxl_vm_change_state_handler
, qxl
);
1854 init_pipe_signaling(qxl
);
1855 qxl_reset_state(qxl
);
1857 qxl
->update_area_bh
= qemu_bh_new(qxl_render_update_area_bh
, qxl
);
1862 static int qxl_init_primary(PCIDevice
*dev
)
1864 PCIQXLDevice
*qxl
= DO_UPCAST(PCIQXLDevice
, pci
, dev
);
1865 VGACommonState
*vga
= &qxl
->vga
;
1866 PortioList
*qxl_vga_port_list
= g_new(PortioList
, 1);
1869 qxl_init_ramsize(qxl
);
1870 vga
->vram_size_mb
= qxl
->vga
.vram_size
>> 20;
1871 vga_common_init(vga
);
1872 vga_init(vga
, pci_address_space(dev
), pci_address_space_io(dev
), false);
1873 portio_list_init(qxl_vga_port_list
, qxl_vga_portio_list
, vga
, "vga");
1874 portio_list_add(qxl_vga_port_list
, pci_address_space_io(dev
), 0x3b0);
1876 vga
->ds
= graphic_console_init(qxl_hw_update
, qxl_hw_invalidate
,
1877 qxl_hw_screen_dump
, qxl_hw_text_update
, qxl
);
1878 qemu_spice_display_init_common(&qxl
->ssd
, vga
->ds
);
1881 register_displaychangelistener(vga
->ds
, &display_listener
);
1883 return qxl_init_common(qxl
);
1886 static int qxl_init_secondary(PCIDevice
*dev
)
1888 static int device_id
= 1;
1889 PCIQXLDevice
*qxl
= DO_UPCAST(PCIQXLDevice
, pci
, dev
);
1891 qxl
->id
= device_id
++;
1892 qxl_init_ramsize(qxl
);
1893 memory_region_init_ram(&qxl
->vga
.vram
, "qxl.vgavram", qxl
->vga
.vram_size
);
1894 vmstate_register_ram(&qxl
->vga
.vram
, &qxl
->pci
.qdev
);
1895 qxl
->vga
.vram_ptr
= memory_region_get_ram_ptr(&qxl
->vga
.vram
);
1897 return qxl_init_common(qxl
);
1900 static void qxl_pre_save(void *opaque
)
1902 PCIQXLDevice
* d
= opaque
;
1903 uint8_t *ram_start
= d
->vga
.vram_ptr
;
1905 trace_qxl_pre_save(d
->id
);
1906 if (d
->last_release
== NULL
) {
1907 d
->last_release_offset
= 0;
1909 d
->last_release_offset
= (uint8_t *)d
->last_release
- ram_start
;
1911 assert(d
->last_release_offset
< d
->vga
.vram_size
);
1914 static int qxl_pre_load(void *opaque
)
1916 PCIQXLDevice
* d
= opaque
;
1918 trace_qxl_pre_load(d
->id
);
1919 qxl_hard_reset(d
, 1);
1920 qxl_exit_vga_mode(d
);
1924 static void qxl_create_memslots(PCIQXLDevice
*d
)
1928 for (i
= 0; i
< NUM_MEMSLOTS
; i
++) {
1929 if (!d
->guest_slots
[i
].active
) {
1932 qxl_add_memslot(d
, i
, 0, QXL_SYNC
);
1936 static int qxl_post_load(void *opaque
, int version
)
1938 PCIQXLDevice
* d
= opaque
;
1939 uint8_t *ram_start
= d
->vga
.vram_ptr
;
1940 QXLCommandExt
*cmds
;
1941 int in
, out
, newmode
;
1943 assert(d
->last_release_offset
< d
->vga
.vram_size
);
1944 if (d
->last_release_offset
== 0) {
1945 d
->last_release
= NULL
;
1947 d
->last_release
= (QXLReleaseInfo
*)(ram_start
+ d
->last_release_offset
);
1950 d
->modes
= (QXLModes
*)((uint8_t*)d
->rom
+ d
->rom
->modes_offset
);
1952 trace_qxl_post_load(d
->id
, qxl_mode_to_string(d
->mode
));
1954 d
->mode
= QXL_MODE_UNDEFINED
;
1957 case QXL_MODE_UNDEFINED
:
1960 qxl_create_memslots(d
);
1961 qxl_enter_vga_mode(d
);
1963 case QXL_MODE_NATIVE
:
1964 qxl_create_memslots(d
);
1965 qxl_create_guest_primary(d
, 1, QXL_SYNC
);
1967 /* replay surface-create and cursor-set commands */
1968 cmds
= g_malloc0(sizeof(QXLCommandExt
) * (NUM_SURFACES
+ 1));
1969 for (in
= 0, out
= 0; in
< NUM_SURFACES
; in
++) {
1970 if (d
->guest_surfaces
.cmds
[in
] == 0) {
1973 cmds
[out
].cmd
.data
= d
->guest_surfaces
.cmds
[in
];
1974 cmds
[out
].cmd
.type
= QXL_CMD_SURFACE
;
1975 cmds
[out
].group_id
= MEMSLOT_GROUP_GUEST
;
1978 if (d
->guest_cursor
) {
1979 cmds
[out
].cmd
.data
= d
->guest_cursor
;
1980 cmds
[out
].cmd
.type
= QXL_CMD_CURSOR
;
1981 cmds
[out
].group_id
= MEMSLOT_GROUP_GUEST
;
1984 qxl_spice_loadvm_commands(d
, cmds
, out
);
1988 case QXL_MODE_COMPAT
:
1989 /* note: no need to call qxl_create_memslots, qxl_set_mode
1990 * creates the mem slot. */
1991 qxl_set_mode(d
, d
->shadow_rom
.mode
, 1);
1997 #define QXL_SAVE_VERSION 21
1999 static VMStateDescription qxl_memslot
= {
2000 .name
= "qxl-memslot",
2001 .version_id
= QXL_SAVE_VERSION
,
2002 .minimum_version_id
= QXL_SAVE_VERSION
,
2003 .fields
= (VMStateField
[]) {
2004 VMSTATE_UINT64(slot
.mem_start
, struct guest_slots
),
2005 VMSTATE_UINT64(slot
.mem_end
, struct guest_slots
),
2006 VMSTATE_UINT32(active
, struct guest_slots
),
2007 VMSTATE_END_OF_LIST()
2011 static VMStateDescription qxl_surface
= {
2012 .name
= "qxl-surface",
2013 .version_id
= QXL_SAVE_VERSION
,
2014 .minimum_version_id
= QXL_SAVE_VERSION
,
2015 .fields
= (VMStateField
[]) {
2016 VMSTATE_UINT32(width
, QXLSurfaceCreate
),
2017 VMSTATE_UINT32(height
, QXLSurfaceCreate
),
2018 VMSTATE_INT32(stride
, QXLSurfaceCreate
),
2019 VMSTATE_UINT32(format
, QXLSurfaceCreate
),
2020 VMSTATE_UINT32(position
, QXLSurfaceCreate
),
2021 VMSTATE_UINT32(mouse_mode
, QXLSurfaceCreate
),
2022 VMSTATE_UINT32(flags
, QXLSurfaceCreate
),
2023 VMSTATE_UINT32(type
, QXLSurfaceCreate
),
2024 VMSTATE_UINT64(mem
, QXLSurfaceCreate
),
2025 VMSTATE_END_OF_LIST()
2029 static VMStateDescription qxl_vmstate
= {
2031 .version_id
= QXL_SAVE_VERSION
,
2032 .minimum_version_id
= QXL_SAVE_VERSION
,
2033 .pre_save
= qxl_pre_save
,
2034 .pre_load
= qxl_pre_load
,
2035 .post_load
= qxl_post_load
,
2036 .fields
= (VMStateField
[]) {
2037 VMSTATE_PCI_DEVICE(pci
, PCIQXLDevice
),
2038 VMSTATE_STRUCT(vga
, PCIQXLDevice
, 0, vmstate_vga_common
, VGACommonState
),
2039 VMSTATE_UINT32(shadow_rom
.mode
, PCIQXLDevice
),
2040 VMSTATE_UINT32(num_free_res
, PCIQXLDevice
),
2041 VMSTATE_UINT32(last_release_offset
, PCIQXLDevice
),
2042 VMSTATE_UINT32(mode
, PCIQXLDevice
),
2043 VMSTATE_UINT32(ssd
.unique
, PCIQXLDevice
),
2044 VMSTATE_INT32_EQUAL(num_memslots
, PCIQXLDevice
),
2045 VMSTATE_STRUCT_ARRAY(guest_slots
, PCIQXLDevice
, NUM_MEMSLOTS
, 0,
2046 qxl_memslot
, struct guest_slots
),
2047 VMSTATE_STRUCT(guest_primary
.surface
, PCIQXLDevice
, 0,
2048 qxl_surface
, QXLSurfaceCreate
),
2049 VMSTATE_INT32_EQUAL(num_surfaces
, PCIQXLDevice
),
2050 VMSTATE_ARRAY(guest_surfaces
.cmds
, PCIQXLDevice
, NUM_SURFACES
, 0,
2051 vmstate_info_uint64
, uint64_t),
2052 VMSTATE_UINT64(guest_cursor
, PCIQXLDevice
),
2053 VMSTATE_END_OF_LIST()
2057 static Property qxl_properties
[] = {
2058 DEFINE_PROP_UINT32("ram_size", PCIQXLDevice
, vga
.vram_size
,
2060 DEFINE_PROP_UINT32("vram_size", PCIQXLDevice
, vram32_size
,
2062 DEFINE_PROP_UINT32("revision", PCIQXLDevice
, revision
,
2063 QXL_DEFAULT_REVISION
),
2064 DEFINE_PROP_UINT32("debug", PCIQXLDevice
, debug
, 0),
2065 DEFINE_PROP_UINT32("guestdebug", PCIQXLDevice
, guestdebug
, 0),
2066 DEFINE_PROP_UINT32("cmdlog", PCIQXLDevice
, cmdlog
, 0),
2067 DEFINE_PROP_UINT32("ram_size_mb", PCIQXLDevice
, ram_size_mb
, -1),
2068 DEFINE_PROP_UINT32("vram_size_mb", PCIQXLDevice
, vram32_size_mb
, -1),
2069 DEFINE_PROP_UINT32("vram64_size_mb", PCIQXLDevice
, vram_size_mb
, -1),
2070 DEFINE_PROP_UINT32("vgamem_mb", PCIQXLDevice
, vgamem_size_mb
, 16),
2071 DEFINE_PROP_END_OF_LIST(),
2074 static void qxl_primary_class_init(ObjectClass
*klass
, void *data
)
2076 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2077 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
2080 k
->init
= qxl_init_primary
;
2081 k
->romfile
= "vgabios-qxl.bin";
2082 k
->vendor_id
= REDHAT_PCI_VENDOR_ID
;
2083 k
->device_id
= QXL_DEVICE_ID_STABLE
;
2084 k
->class_id
= PCI_CLASS_DISPLAY_VGA
;
2085 dc
->desc
= "Spice QXL GPU (primary, vga compatible)";
2086 dc
->reset
= qxl_reset_handler
;
2087 dc
->vmsd
= &qxl_vmstate
;
2088 dc
->props
= qxl_properties
;
2091 static TypeInfo qxl_primary_info
= {
2093 .parent
= TYPE_PCI_DEVICE
,
2094 .instance_size
= sizeof(PCIQXLDevice
),
2095 .class_init
= qxl_primary_class_init
,
2098 static void qxl_secondary_class_init(ObjectClass
*klass
, void *data
)
2100 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2101 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
2103 k
->init
= qxl_init_secondary
;
2104 k
->vendor_id
= REDHAT_PCI_VENDOR_ID
;
2105 k
->device_id
= QXL_DEVICE_ID_STABLE
;
2106 k
->class_id
= PCI_CLASS_DISPLAY_OTHER
;
2107 dc
->desc
= "Spice QXL GPU (secondary)";
2108 dc
->reset
= qxl_reset_handler
;
2109 dc
->vmsd
= &qxl_vmstate
;
2110 dc
->props
= qxl_properties
;
2113 static TypeInfo qxl_secondary_info
= {
2115 .parent
= TYPE_PCI_DEVICE
,
2116 .instance_size
= sizeof(PCIQXLDevice
),
2117 .class_init
= qxl_secondary_class_init
,
2120 static void qxl_register_types(void)
2122 type_register_static(&qxl_primary_info
);
2123 type_register_static(&qxl_secondary_info
);
2126 type_init(qxl_register_types
)