2 * QEMU graphical console
4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "ui/console.h"
27 #include "hw/qdev-core.h"
28 #include "qapi/error.h"
29 #include "qapi/qapi-commands-ui.h"
30 #include "qapi/visitor.h"
31 #include "qemu/coroutine.h"
32 #include "qemu/error-report.h"
33 #include "qemu/main-loop.h"
34 #include "qemu/module.h"
35 #include "qemu/option.h"
36 #include "chardev/char.h"
38 #include "exec/memory.h"
39 #include "qom/object.h"
41 #include "console-priv.h"
43 OBJECT_DEFINE_ABSTRACT_TYPE(QemuConsole
, qemu_console
, QEMU_CONSOLE
, OBJECT
)
45 typedef struct QemuGraphicConsole
{
52 int cursor_x
, cursor_y
, cursor_on
;
55 typedef QemuConsoleClass QemuGraphicConsoleClass
;
57 OBJECT_DEFINE_TYPE(QemuGraphicConsole
, qemu_graphic_console
, QEMU_GRAPHIC_CONSOLE
, QEMU_CONSOLE
)
62 uint64_t update_interval
;
65 QLIST_HEAD(, DisplayChangeListener
) listeners
;
68 static DisplayState
*display_state
;
69 static QemuConsole
*active_console
;
70 static QTAILQ_HEAD(, QemuConsole
) consoles
=
71 QTAILQ_HEAD_INITIALIZER(consoles
);
73 static void dpy_refresh(DisplayState
*s
);
74 static DisplayState
*get_alloc_displaystate(void);
75 static bool displaychangelistener_has_dmabuf(DisplayChangeListener
*dcl
);
76 static bool console_compatible_with(QemuConsole
*con
,
77 DisplayChangeListener
*dcl
, Error
**errp
);
78 static QemuConsole
*qemu_graphic_console_lookup_unused(void);
79 static void dpy_set_ui_info_timer(void *opaque
);
81 static void gui_update(void *opaque
)
83 uint64_t interval
= GUI_REFRESH_INTERVAL_IDLE
;
84 uint64_t dcl_interval
;
85 DisplayState
*ds
= opaque
;
86 DisplayChangeListener
*dcl
;
88 ds
->refreshing
= true;
90 ds
->refreshing
= false;
92 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
93 dcl_interval
= dcl
->update_interval
?
94 dcl
->update_interval
: GUI_REFRESH_INTERVAL_DEFAULT
;
95 if (interval
> dcl_interval
) {
96 interval
= dcl_interval
;
99 if (ds
->update_interval
!= interval
) {
100 ds
->update_interval
= interval
;
101 trace_console_refresh(interval
);
103 ds
->last_update
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
104 timer_mod(ds
->gui_timer
, ds
->last_update
+ interval
);
107 static void gui_setup_refresh(DisplayState
*ds
)
109 DisplayChangeListener
*dcl
;
110 bool need_timer
= false;
112 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
113 if (dcl
->ops
->dpy_refresh
!= NULL
) {
118 if (need_timer
&& ds
->gui_timer
== NULL
) {
119 ds
->gui_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, gui_update
, ds
);
120 timer_mod(ds
->gui_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
122 if (!need_timer
&& ds
->gui_timer
!= NULL
) {
123 timer_free(ds
->gui_timer
);
124 ds
->gui_timer
= NULL
;
128 void graphic_hw_update_done(QemuConsole
*con
)
131 qemu_co_enter_all(&con
->dump_queue
, NULL
);
135 void graphic_hw_update(QemuConsole
*con
)
138 con
= con
? con
: active_console
;
142 if (con
->hw_ops
->gfx_update
) {
143 con
->hw_ops
->gfx_update(con
->hw
);
144 async
= con
->hw_ops
->gfx_update_async
;
147 graphic_hw_update_done(con
);
151 static void graphic_hw_update_bh(void *con
)
153 graphic_hw_update(con
);
156 void qemu_console_co_wait_update(QemuConsole
*con
)
158 if (qemu_co_queue_empty(&con
->dump_queue
)) {
159 /* Defer the update, it will restart the pending coroutines */
160 aio_bh_schedule_oneshot(qemu_get_aio_context(),
161 graphic_hw_update_bh
, con
);
163 qemu_co_queue_wait(&con
->dump_queue
, NULL
);
167 static void graphic_hw_gl_unblock_timer(void *opaque
)
169 warn_report("console: no gl-unblock within one second");
172 void graphic_hw_gl_block(QemuConsole
*con
, bool block
)
182 assert(con
->gl_block
>= 0);
183 if (!con
->hw_ops
->gl_block
) {
186 if ((block
&& con
->gl_block
!= 1) || (!block
&& con
->gl_block
!= 0)) {
189 con
->hw_ops
->gl_block(con
->hw
, block
);
192 timeout
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
193 timeout
+= 1000; /* one sec */
194 timer_mod(con
->gl_unblock_timer
, timeout
);
196 timer_del(con
->gl_unblock_timer
);
200 int qemu_console_get_window_id(QemuConsole
*con
)
202 return con
->window_id
;
205 void qemu_console_set_window_id(QemuConsole
*con
, int window_id
)
207 con
->window_id
= window_id
;
210 void graphic_hw_invalidate(QemuConsole
*con
)
213 con
= active_console
;
215 if (con
&& con
->hw_ops
->invalidate
) {
216 con
->hw_ops
->invalidate(con
->hw
);
220 void graphic_hw_text_update(QemuConsole
*con
, console_ch_t
*chardata
)
223 con
= active_console
;
225 if (con
&& con
->hw_ops
->text_update
) {
226 con
->hw_ops
->text_update(con
->hw
, chardata
);
230 static void displaychangelistener_gfx_switch(DisplayChangeListener
*dcl
,
231 struct DisplaySurface
*new_surface
,
234 if (dcl
->ops
->dpy_gfx_switch
) {
235 dcl
->ops
->dpy_gfx_switch(dcl
, new_surface
);
238 if (update
&& dcl
->ops
->dpy_gfx_update
) {
239 dcl
->ops
->dpy_gfx_update(dcl
, 0, 0,
240 surface_width(new_surface
),
241 surface_height(new_surface
));
245 static void dpy_gfx_create_texture(QemuConsole
*con
, DisplaySurface
*surface
)
247 if (con
->gl
&& con
->gl
->ops
->dpy_gl_ctx_create_texture
) {
248 con
->gl
->ops
->dpy_gl_ctx_create_texture(con
->gl
, surface
);
252 static void dpy_gfx_destroy_texture(QemuConsole
*con
, DisplaySurface
*surface
)
254 if (con
->gl
&& con
->gl
->ops
->dpy_gl_ctx_destroy_texture
) {
255 con
->gl
->ops
->dpy_gl_ctx_destroy_texture(con
->gl
, surface
);
259 static void dpy_gfx_update_texture(QemuConsole
*con
, DisplaySurface
*surface
,
260 int x
, int y
, int w
, int h
)
262 if (con
->gl
&& con
->gl
->ops
->dpy_gl_ctx_update_texture
) {
263 con
->gl
->ops
->dpy_gl_ctx_update_texture(con
->gl
, surface
, x
, y
, w
, h
);
267 static void displaychangelistener_display_console(DisplayChangeListener
*dcl
,
271 static const char nodev
[] =
272 "This VM has no graphic display device.";
273 static DisplaySurface
*dummy
;
275 if (!con
|| !console_compatible_with(con
, dcl
, errp
)) {
277 dummy
= qemu_create_placeholder_surface(640, 480, nodev
);
280 dpy_gfx_create_texture(con
, dummy
);
282 displaychangelistener_gfx_switch(dcl
, dummy
, TRUE
);
286 dpy_gfx_create_texture(con
, con
->surface
);
287 displaychangelistener_gfx_switch(dcl
, con
->surface
,
288 con
->scanout
.kind
== SCANOUT_SURFACE
);
290 if (con
->scanout
.kind
== SCANOUT_DMABUF
&&
291 displaychangelistener_has_dmabuf(dcl
)) {
292 dcl
->ops
->dpy_gl_scanout_dmabuf(dcl
, con
->scanout
.dmabuf
);
293 } else if (con
->scanout
.kind
== SCANOUT_TEXTURE
&&
294 dcl
->ops
->dpy_gl_scanout_texture
) {
295 dcl
->ops
->dpy_gl_scanout_texture(dcl
,
296 con
->scanout
.texture
.backing_id
,
297 con
->scanout
.texture
.backing_y_0_top
,
298 con
->scanout
.texture
.backing_width
,
299 con
->scanout
.texture
.backing_height
,
300 con
->scanout
.texture
.x
,
301 con
->scanout
.texture
.y
,
302 con
->scanout
.texture
.width
,
303 con
->scanout
.texture
.height
,
304 con
->scanout
.texture
.d3d_tex2d
);
308 void console_select(unsigned int index
)
310 DisplayChangeListener
*dcl
;
313 trace_console_select(index
);
314 s
= qemu_console_lookup_by_index(index
);
316 DisplayState
*ds
= s
->ds
;
319 QLIST_FOREACH (dcl
, &ds
->listeners
, next
) {
320 if (dcl
->con
!= NULL
) {
323 displaychangelistener_display_console(dcl
, s
, NULL
);
326 if (QEMU_IS_TEXT_CONSOLE(s
)) {
327 qemu_text_console_select(QEMU_TEXT_CONSOLE(s
));
332 void qemu_text_console_put_keysym(QemuTextConsole
*s
, int keysym
)
335 if (!QEMU_IS_TEXT_CONSOLE(active_console
)) {
338 s
= QEMU_TEXT_CONSOLE(active_console
);
341 qemu_text_console_handle_keysym(s
, keysym
);
344 static const int qcode_to_keysym
[Q_KEY_CODE__MAX
] = {
345 [Q_KEY_CODE_UP
] = QEMU_KEY_UP
,
346 [Q_KEY_CODE_DOWN
] = QEMU_KEY_DOWN
,
347 [Q_KEY_CODE_RIGHT
] = QEMU_KEY_RIGHT
,
348 [Q_KEY_CODE_LEFT
] = QEMU_KEY_LEFT
,
349 [Q_KEY_CODE_HOME
] = QEMU_KEY_HOME
,
350 [Q_KEY_CODE_END
] = QEMU_KEY_END
,
351 [Q_KEY_CODE_PGUP
] = QEMU_KEY_PAGEUP
,
352 [Q_KEY_CODE_PGDN
] = QEMU_KEY_PAGEDOWN
,
353 [Q_KEY_CODE_DELETE
] = QEMU_KEY_DELETE
,
354 [Q_KEY_CODE_TAB
] = QEMU_KEY_TAB
,
355 [Q_KEY_CODE_BACKSPACE
] = QEMU_KEY_BACKSPACE
,
358 static const int ctrl_qcode_to_keysym
[Q_KEY_CODE__MAX
] = {
359 [Q_KEY_CODE_UP
] = QEMU_KEY_CTRL_UP
,
360 [Q_KEY_CODE_DOWN
] = QEMU_KEY_CTRL_DOWN
,
361 [Q_KEY_CODE_RIGHT
] = QEMU_KEY_CTRL_RIGHT
,
362 [Q_KEY_CODE_LEFT
] = QEMU_KEY_CTRL_LEFT
,
363 [Q_KEY_CODE_HOME
] = QEMU_KEY_CTRL_HOME
,
364 [Q_KEY_CODE_END
] = QEMU_KEY_CTRL_END
,
365 [Q_KEY_CODE_PGUP
] = QEMU_KEY_CTRL_PAGEUP
,
366 [Q_KEY_CODE_PGDN
] = QEMU_KEY_CTRL_PAGEDOWN
,
369 bool qemu_text_console_put_qcode(QemuTextConsole
*s
, int qcode
, bool ctrl
)
373 keysym
= ctrl
? ctrl_qcode_to_keysym
[qcode
] : qcode_to_keysym
[qcode
];
377 qemu_text_console_put_keysym(s
, keysym
);
381 void qemu_text_console_put_string(QemuTextConsole
*s
, const char *str
, int len
)
385 for (i
= 0; i
< len
&& str
[i
]; i
++) {
386 qemu_text_console_put_keysym(s
, str
[i
]);
391 qemu_console_register(QemuConsole
*c
)
395 if (!active_console
|| (!QEMU_IS_GRAPHIC_CONSOLE(active_console
) &&
396 QEMU_IS_GRAPHIC_CONSOLE(c
))) {
400 if (QTAILQ_EMPTY(&consoles
)) {
402 QTAILQ_INSERT_TAIL(&consoles
, c
, next
);
403 } else if (!QEMU_IS_GRAPHIC_CONSOLE(c
) || phase_check(PHASE_MACHINE_READY
)) {
404 QemuConsole
*last
= QTAILQ_LAST(&consoles
);
405 c
->index
= last
->index
+ 1;
406 QTAILQ_INSERT_TAIL(&consoles
, c
, next
);
409 * HACK: Put graphical consoles before text consoles.
411 * Only do that for coldplugged devices. After initial device
412 * initialization we will not renumber the consoles any more.
414 QemuConsole
*it
= QTAILQ_FIRST(&consoles
);
416 while (QTAILQ_NEXT(it
, next
) != NULL
&& QEMU_IS_GRAPHIC_CONSOLE(it
)) {
417 it
= QTAILQ_NEXT(it
, next
);
419 if (QEMU_IS_GRAPHIC_CONSOLE(it
)) {
420 /* have no text consoles */
421 c
->index
= it
->index
+ 1;
422 QTAILQ_INSERT_AFTER(&consoles
, it
, c
, next
);
424 c
->index
= it
->index
;
425 QTAILQ_INSERT_BEFORE(it
, c
, next
);
426 /* renumber text consoles */
427 for (i
= c
->index
+ 1; it
!= NULL
; it
= QTAILQ_NEXT(it
, next
), i
++) {
435 qemu_console_finalize(Object
*obj
)
437 QemuConsole
*c
= QEMU_CONSOLE(obj
);
439 /* TODO: check this code path, and unregister from consoles */
440 g_clear_pointer(&c
->surface
, qemu_free_displaysurface
);
441 g_clear_pointer(&c
->gl_unblock_timer
, timer_free
);
442 g_clear_pointer(&c
->ui_timer
, timer_free
);
446 qemu_console_class_init(ObjectClass
*oc
, void *data
)
451 qemu_console_init(Object
*obj
)
453 QemuConsole
*c
= QEMU_CONSOLE(obj
);
454 DisplayState
*ds
= get_alloc_displaystate();
456 qemu_co_queue_init(&c
->dump_queue
);
459 c
->ui_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
460 dpy_set_ui_info_timer
, c
);
461 qemu_console_register(c
);
465 qemu_graphic_console_finalize(Object
*obj
)
467 QemuGraphicConsole
*c
= QEMU_GRAPHIC_CONSOLE(obj
);
469 g_clear_pointer(&c
->device
, object_unref
);
473 qemu_graphic_console_prop_get_head(Object
*obj
, Visitor
*v
, const char *name
,
474 void *opaque
, Error
**errp
)
476 QemuGraphicConsole
*c
= QEMU_GRAPHIC_CONSOLE(obj
);
478 visit_type_uint32(v
, name
, &c
->head
, errp
);
482 qemu_graphic_console_class_init(ObjectClass
*oc
, void *data
)
484 object_class_property_add_link(oc
, "device", TYPE_DEVICE
,
485 offsetof(QemuGraphicConsole
, device
),
486 object_property_allow_set_link
,
487 OBJ_PROP_LINK_STRONG
);
488 object_class_property_add(oc
, "head", "uint32",
489 qemu_graphic_console_prop_get_head
,
494 qemu_graphic_console_init(Object
*obj
)
499 void qemu_displaysurface_win32_set_handle(DisplaySurface
*surface
,
500 HANDLE h
, uint32_t offset
)
502 assert(!surface
->handle
);
505 surface
->handle_offset
= offset
;
509 win32_pixman_image_destroy(pixman_image_t
*image
, void *data
)
511 DisplaySurface
*surface
= data
;
513 if (!surface
->handle
) {
517 assert(surface
->handle_offset
== 0);
520 pixman_image_get_data(surface
->image
),
527 DisplaySurface
*qemu_create_displaysurface(int width
, int height
)
529 DisplaySurface
*surface
;
532 HANDLE handle
= NULL
;
535 trace_displaysurface_create(width
, height
);
538 bits
= qemu_win32_map_alloc(width
* height
* 4, &handle
, &error_abort
);
541 surface
= qemu_create_displaysurface_from(
546 surface
->flags
= QEMU_ALLOCATED_FLAG
;
549 qemu_displaysurface_win32_set_handle(surface
, handle
, 0);
554 DisplaySurface
*qemu_create_displaysurface_from(int width
, int height
,
555 pixman_format_code_t format
,
556 int linesize
, uint8_t *data
)
558 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
560 trace_displaysurface_create_from(surface
, width
, height
, format
);
561 surface
->image
= pixman_image_create_bits(format
,
563 (void *)data
, linesize
);
564 assert(surface
->image
!= NULL
);
566 pixman_image_set_destroy_function(surface
->image
,
567 win32_pixman_image_destroy
, surface
);
573 DisplaySurface
*qemu_create_displaysurface_pixman(pixman_image_t
*image
)
575 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
577 trace_displaysurface_create_pixman(surface
);
578 surface
->image
= pixman_image_ref(image
);
583 DisplaySurface
*qemu_create_placeholder_surface(int w
, int h
,
586 DisplaySurface
*surface
= qemu_create_displaysurface(w
, h
);
588 pixman_color_t bg
= QEMU_PIXMAN_COLOR_BLACK
;
589 pixman_color_t fg
= QEMU_PIXMAN_COLOR_GRAY
;
590 pixman_image_t
*glyph
;
594 x
= (w
/ FONT_WIDTH
- len
) / 2;
595 y
= (h
/ FONT_HEIGHT
- 1) / 2;
596 for (i
= 0; i
< len
; i
++) {
597 glyph
= qemu_pixman_glyph_from_vgafont(FONT_HEIGHT
, vgafont16
, msg
[i
]);
598 qemu_pixman_glyph_render(glyph
, surface
->image
, &fg
, &bg
,
599 x
+i
, y
, FONT_WIDTH
, FONT_HEIGHT
);
600 qemu_pixman_image_unref(glyph
);
603 surface
->flags
|= QEMU_PLACEHOLDER_FLAG
;
607 void qemu_free_displaysurface(DisplaySurface
*surface
)
609 if (surface
== NULL
) {
612 trace_displaysurface_free(surface
);
613 qemu_pixman_image_unref(surface
->image
);
617 bool console_has_gl(QemuConsole
*con
)
619 return con
->gl
!= NULL
;
622 static bool displaychangelistener_has_dmabuf(DisplayChangeListener
*dcl
)
624 if (dcl
->ops
->dpy_has_dmabuf
) {
625 return dcl
->ops
->dpy_has_dmabuf(dcl
);
628 if (dcl
->ops
->dpy_gl_scanout_dmabuf
) {
635 static bool console_compatible_with(QemuConsole
*con
,
636 DisplayChangeListener
*dcl
, Error
**errp
)
640 flags
= con
->hw_ops
->get_flags
? con
->hw_ops
->get_flags(con
->hw
) : 0;
642 if (console_has_gl(con
) &&
643 !con
->gl
->ops
->dpy_gl_ctx_is_compatible_dcl(con
->gl
, dcl
)) {
644 error_setg(errp
, "Display %s is incompatible with the GL context",
649 if (flags
& GRAPHIC_FLAGS_GL
&&
650 !console_has_gl(con
)) {
651 error_setg(errp
, "The console requires a GL context.");
656 if (flags
& GRAPHIC_FLAGS_DMABUF
&&
657 !displaychangelistener_has_dmabuf(dcl
)) {
658 error_setg(errp
, "The console requires display DMABUF support.");
665 void console_handle_touch_event(QemuConsole
*con
,
666 struct touch_slot touch_slots
[INPUT_EVENT_SLOTS_MAX
],
668 int width
, int height
,
670 InputMultiTouchType type
,
673 struct touch_slot
*slot
;
674 bool needs_sync
= false;
678 if (num_slot
>= INPUT_EVENT_SLOTS_MAX
) {
680 "Unexpected touch slot number: % " PRId64
" >= %d",
681 num_slot
, INPUT_EVENT_SLOTS_MAX
);
685 slot
= &touch_slots
[num_slot
];
689 if (type
== INPUT_MULTI_TOUCH_TYPE_BEGIN
) {
690 slot
->tracking_id
= num_slot
;
693 for (i
= 0; i
< INPUT_EVENT_SLOTS_MAX
; ++i
) {
697 update
= INPUT_MULTI_TOUCH_TYPE_UPDATE
;
700 slot
= &touch_slots
[i
];
702 if (slot
->tracking_id
== -1) {
706 if (update
== INPUT_MULTI_TOUCH_TYPE_END
) {
707 slot
->tracking_id
= -1;
708 qemu_input_queue_mtt(con
, update
, i
, slot
->tracking_id
);
711 qemu_input_queue_mtt(con
, update
, i
, slot
->tracking_id
);
712 qemu_input_queue_btn(con
, INPUT_BUTTON_TOUCH
, true);
713 qemu_input_queue_mtt_abs(con
,
714 INPUT_AXIS_X
, (int) slot
->x
,
716 i
, slot
->tracking_id
);
717 qemu_input_queue_mtt_abs(con
,
718 INPUT_AXIS_Y
, (int) slot
->y
,
720 i
, slot
->tracking_id
);
726 qemu_input_event_sync();
730 void qemu_console_set_display_gl_ctx(QemuConsole
*con
, DisplayGLCtx
*gl
)
732 /* display has opengl support */
735 error_report("The console already has an OpenGL context.");
742 dcl_set_graphic_cursor(DisplayChangeListener
*dcl
, QemuGraphicConsole
*con
)
744 if (con
&& con
->cursor
&& dcl
->ops
->dpy_cursor_define
) {
745 dcl
->ops
->dpy_cursor_define(dcl
, con
->cursor
);
747 if (con
&& dcl
->ops
->dpy_mouse_set
) {
748 dcl
->ops
->dpy_mouse_set(dcl
, con
->cursor_x
, con
->cursor_y
, con
->cursor_on
);
752 void register_displaychangelistener(DisplayChangeListener
*dcl
)
758 trace_displaychangelistener_register(dcl
, dcl
->ops
->dpy_name
);
759 dcl
->ds
= get_alloc_displaystate();
760 QLIST_INSERT_HEAD(&dcl
->ds
->listeners
, dcl
, next
);
761 gui_setup_refresh(dcl
->ds
);
766 con
= active_console
;
768 displaychangelistener_display_console(dcl
, con
, dcl
->con
? &error_fatal
: NULL
);
769 if (QEMU_IS_GRAPHIC_CONSOLE(con
)) {
770 dcl_set_graphic_cursor(dcl
, QEMU_GRAPHIC_CONSOLE(con
));
772 qemu_text_console_update_cursor();
775 void update_displaychangelistener(DisplayChangeListener
*dcl
,
778 DisplayState
*ds
= dcl
->ds
;
780 dcl
->update_interval
= interval
;
781 if (!ds
->refreshing
&& ds
->update_interval
> interval
) {
782 timer_mod(ds
->gui_timer
, ds
->last_update
+ interval
);
786 void unregister_displaychangelistener(DisplayChangeListener
*dcl
)
788 DisplayState
*ds
= dcl
->ds
;
789 trace_displaychangelistener_unregister(dcl
, dcl
->ops
->dpy_name
);
793 QLIST_REMOVE(dcl
, next
);
795 gui_setup_refresh(ds
);
798 static void dpy_set_ui_info_timer(void *opaque
)
800 QemuConsole
*con
= opaque
;
801 uint32_t head
= qemu_console_get_head(con
);
803 con
->hw_ops
->ui_info(con
->hw
, head
, &con
->ui_info
);
806 bool dpy_ui_info_supported(const QemuConsole
*con
)
809 con
= active_console
;
815 return con
->hw_ops
->ui_info
!= NULL
;
818 const QemuUIInfo
*dpy_get_ui_info(const QemuConsole
*con
)
820 assert(dpy_ui_info_supported(con
));
823 con
= active_console
;
826 return &con
->ui_info
;
829 int dpy_set_ui_info(QemuConsole
*con
, QemuUIInfo
*info
, bool delay
)
832 con
= active_console
;
835 if (!dpy_ui_info_supported(con
)) {
838 if (memcmp(&con
->ui_info
, info
, sizeof(con
->ui_info
)) == 0) {
839 /* nothing changed -- ignore */
844 * Typically we get a flood of these as the user resizes the window.
845 * Wait until the dust has settled (one second without updates), then
846 * go notify the guest.
848 con
->ui_info
= *info
;
849 timer_mod(con
->ui_timer
,
850 qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + (delay
? 1000 : 0));
854 void dpy_gfx_update(QemuConsole
*con
, int x
, int y
, int w
, int h
)
856 DisplayState
*s
= con
->ds
;
857 DisplayChangeListener
*dcl
;
858 int width
= qemu_console_get_width(con
, x
+ w
);
859 int height
= qemu_console_get_height(con
, y
+ h
);
865 w
= MIN(w
, width
- x
);
866 h
= MIN(h
, height
- y
);
868 if (!qemu_console_is_visible(con
)) {
871 dpy_gfx_update_texture(con
, con
->surface
, x
, y
, w
, h
);
872 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
873 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
876 if (dcl
->ops
->dpy_gfx_update
) {
877 dcl
->ops
->dpy_gfx_update(dcl
, x
, y
, w
, h
);
882 void dpy_gfx_update_full(QemuConsole
*con
)
884 int w
= qemu_console_get_width(con
, 0);
885 int h
= qemu_console_get_height(con
, 0);
887 dpy_gfx_update(con
, 0, 0, w
, h
);
890 void dpy_gfx_replace_surface(QemuConsole
*con
,
891 DisplaySurface
*surface
)
893 static const char placeholder_msg
[] = "Display output is not active.";
894 DisplayState
*s
= con
->ds
;
895 DisplaySurface
*old_surface
= con
->surface
;
896 DisplaySurface
*new_surface
= surface
;
897 DisplayChangeListener
*dcl
;
903 width
= surface_width(old_surface
);
904 height
= surface_height(old_surface
);
910 new_surface
= qemu_create_placeholder_surface(width
, height
, placeholder_msg
);
913 assert(old_surface
!= new_surface
);
915 con
->scanout
.kind
= SCANOUT_SURFACE
;
916 con
->surface
= new_surface
;
917 dpy_gfx_create_texture(con
, new_surface
);
918 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
919 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
922 displaychangelistener_gfx_switch(dcl
, new_surface
, surface
? FALSE
: TRUE
);
924 dpy_gfx_destroy_texture(con
, old_surface
);
925 qemu_free_displaysurface(old_surface
);
928 bool dpy_gfx_check_format(QemuConsole
*con
,
929 pixman_format_code_t format
)
931 DisplayChangeListener
*dcl
;
932 DisplayState
*s
= con
->ds
;
934 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
935 if (dcl
->con
&& dcl
->con
!= con
) {
936 /* dcl bound to another console -> skip */
939 if (dcl
->ops
->dpy_gfx_check_format
) {
940 if (!dcl
->ops
->dpy_gfx_check_format(dcl
, format
)) {
944 /* default is to allow native 32 bpp only */
945 if (format
!= qemu_default_pixman_format(32, true)) {
953 static void dpy_refresh(DisplayState
*s
)
955 DisplayChangeListener
*dcl
;
957 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
958 if (dcl
->ops
->dpy_refresh
) {
959 dcl
->ops
->dpy_refresh(dcl
);
964 void dpy_text_cursor(QemuConsole
*con
, int x
, int y
)
966 DisplayState
*s
= con
->ds
;
967 DisplayChangeListener
*dcl
;
969 if (!qemu_console_is_visible(con
)) {
972 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
973 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
976 if (dcl
->ops
->dpy_text_cursor
) {
977 dcl
->ops
->dpy_text_cursor(dcl
, x
, y
);
982 void dpy_text_update(QemuConsole
*con
, int x
, int y
, int w
, int h
)
984 DisplayState
*s
= con
->ds
;
985 DisplayChangeListener
*dcl
;
987 if (!qemu_console_is_visible(con
)) {
990 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
991 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
994 if (dcl
->ops
->dpy_text_update
) {
995 dcl
->ops
->dpy_text_update(dcl
, x
, y
, w
, h
);
1000 void dpy_text_resize(QemuConsole
*con
, int w
, int h
)
1002 DisplayState
*s
= con
->ds
;
1003 DisplayChangeListener
*dcl
;
1005 if (!qemu_console_is_visible(con
)) {
1008 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1009 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1012 if (dcl
->ops
->dpy_text_resize
) {
1013 dcl
->ops
->dpy_text_resize(dcl
, w
, h
);
1018 void dpy_mouse_set(QemuConsole
*c
, int x
, int y
, int on
)
1020 QemuGraphicConsole
*con
= QEMU_GRAPHIC_CONSOLE(c
);
1021 DisplayState
*s
= c
->ds
;
1022 DisplayChangeListener
*dcl
;
1026 con
->cursor_on
= on
;
1027 if (!qemu_console_is_visible(c
)) {
1030 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1031 if (c
!= (dcl
->con
? dcl
->con
: active_console
)) {
1034 if (dcl
->ops
->dpy_mouse_set
) {
1035 dcl
->ops
->dpy_mouse_set(dcl
, x
, y
, on
);
1040 void dpy_cursor_define(QemuConsole
*c
, QEMUCursor
*cursor
)
1042 QemuGraphicConsole
*con
= QEMU_GRAPHIC_CONSOLE(c
);
1043 DisplayState
*s
= c
->ds
;
1044 DisplayChangeListener
*dcl
;
1046 cursor_unref(con
->cursor
);
1047 con
->cursor
= cursor_ref(cursor
);
1048 if (!qemu_console_is_visible(c
)) {
1051 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1052 if (c
!= (dcl
->con
? dcl
->con
: active_console
)) {
1055 if (dcl
->ops
->dpy_cursor_define
) {
1056 dcl
->ops
->dpy_cursor_define(dcl
, cursor
);
1061 bool dpy_cursor_define_supported(QemuConsole
*con
)
1063 DisplayState
*s
= con
->ds
;
1064 DisplayChangeListener
*dcl
;
1066 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1067 if (dcl
->ops
->dpy_cursor_define
) {
1074 QEMUGLContext
dpy_gl_ctx_create(QemuConsole
*con
,
1075 struct QEMUGLParams
*qparams
)
1078 return con
->gl
->ops
->dpy_gl_ctx_create(con
->gl
, qparams
);
1081 void dpy_gl_ctx_destroy(QemuConsole
*con
, QEMUGLContext ctx
)
1084 con
->gl
->ops
->dpy_gl_ctx_destroy(con
->gl
, ctx
);
1087 int dpy_gl_ctx_make_current(QemuConsole
*con
, QEMUGLContext ctx
)
1090 return con
->gl
->ops
->dpy_gl_ctx_make_current(con
->gl
, ctx
);
1093 void dpy_gl_scanout_disable(QemuConsole
*con
)
1095 DisplayState
*s
= con
->ds
;
1096 DisplayChangeListener
*dcl
;
1098 if (con
->scanout
.kind
!= SCANOUT_SURFACE
) {
1099 con
->scanout
.kind
= SCANOUT_NONE
;
1101 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1102 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1105 if (dcl
->ops
->dpy_gl_scanout_disable
) {
1106 dcl
->ops
->dpy_gl_scanout_disable(dcl
);
1111 void dpy_gl_scanout_texture(QemuConsole
*con
,
1112 uint32_t backing_id
,
1113 bool backing_y_0_top
,
1114 uint32_t backing_width
,
1115 uint32_t backing_height
,
1116 uint32_t x
, uint32_t y
,
1117 uint32_t width
, uint32_t height
,
1120 DisplayState
*s
= con
->ds
;
1121 DisplayChangeListener
*dcl
;
1123 con
->scanout
.kind
= SCANOUT_TEXTURE
;
1124 con
->scanout
.texture
= (ScanoutTexture
) {
1125 backing_id
, backing_y_0_top
, backing_width
, backing_height
,
1126 x
, y
, width
, height
, d3d_tex2d
,
1128 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1129 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1132 if (dcl
->ops
->dpy_gl_scanout_texture
) {
1133 dcl
->ops
->dpy_gl_scanout_texture(dcl
, backing_id
,
1135 backing_width
, backing_height
,
1136 x
, y
, width
, height
,
1142 void dpy_gl_scanout_dmabuf(QemuConsole
*con
,
1145 DisplayState
*s
= con
->ds
;
1146 DisplayChangeListener
*dcl
;
1148 con
->scanout
.kind
= SCANOUT_DMABUF
;
1149 con
->scanout
.dmabuf
= dmabuf
;
1150 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1151 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1154 if (dcl
->ops
->dpy_gl_scanout_dmabuf
) {
1155 dcl
->ops
->dpy_gl_scanout_dmabuf(dcl
, dmabuf
);
1160 void dpy_gl_cursor_dmabuf(QemuConsole
*con
, QemuDmaBuf
*dmabuf
,
1161 bool have_hot
, uint32_t hot_x
, uint32_t hot_y
)
1163 DisplayState
*s
= con
->ds
;
1164 DisplayChangeListener
*dcl
;
1166 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1167 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1170 if (dcl
->ops
->dpy_gl_cursor_dmabuf
) {
1171 dcl
->ops
->dpy_gl_cursor_dmabuf(dcl
, dmabuf
,
1172 have_hot
, hot_x
, hot_y
);
1177 void dpy_gl_cursor_position(QemuConsole
*con
,
1178 uint32_t pos_x
, uint32_t pos_y
)
1180 DisplayState
*s
= con
->ds
;
1181 DisplayChangeListener
*dcl
;
1183 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1184 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1187 if (dcl
->ops
->dpy_gl_cursor_position
) {
1188 dcl
->ops
->dpy_gl_cursor_position(dcl
, pos_x
, pos_y
);
1193 void dpy_gl_release_dmabuf(QemuConsole
*con
,
1196 DisplayState
*s
= con
->ds
;
1197 DisplayChangeListener
*dcl
;
1199 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1200 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1203 if (dcl
->ops
->dpy_gl_release_dmabuf
) {
1204 dcl
->ops
->dpy_gl_release_dmabuf(dcl
, dmabuf
);
1209 void dpy_gl_update(QemuConsole
*con
,
1210 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
)
1212 DisplayState
*s
= con
->ds
;
1213 DisplayChangeListener
*dcl
;
1217 graphic_hw_gl_block(con
, true);
1218 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1219 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1222 if (dcl
->ops
->dpy_gl_update
) {
1223 dcl
->ops
->dpy_gl_update(dcl
, x
, y
, w
, h
);
1226 graphic_hw_gl_block(con
, false);
1229 /***********************************************************/
1230 /* register display */
1232 /* console.c internal use only */
1233 static DisplayState
*get_alloc_displaystate(void)
1235 if (!display_state
) {
1236 display_state
= g_new0(DisplayState
, 1);
1238 return display_state
;
1242 * Called by main(), after creating QemuConsoles
1243 * and before initializing ui (sdl/vnc/...).
1245 DisplayState
*init_displaystate(void)
1250 QTAILQ_FOREACH(con
, &consoles
, next
) {
1251 /* Hook up into the qom tree here (not in object_new()), once
1252 * all QemuConsoles are created and the order / numbering
1253 * doesn't change any more */
1254 name
= g_strdup_printf("console[%d]", con
->index
);
1255 object_property_add_child(container_get(object_get_root(), "/backend"),
1260 return display_state
;
1263 void graphic_console_set_hwops(QemuConsole
*con
,
1264 const GraphicHwOps
*hw_ops
,
1267 con
->hw_ops
= hw_ops
;
1271 QemuConsole
*graphic_console_init(DeviceState
*dev
, uint32_t head
,
1272 const GraphicHwOps
*hw_ops
,
1275 static const char noinit
[] =
1276 "Guest has not initialized the display (yet).";
1280 DisplaySurface
*surface
;
1282 s
= qemu_graphic_console_lookup_unused();
1284 trace_console_gfx_reuse(s
->index
);
1285 width
= qemu_console_get_width(s
, 0);
1286 height
= qemu_console_get_height(s
, 0);
1288 trace_console_gfx_new();
1289 s
= (QemuConsole
*)object_new(TYPE_QEMU_GRAPHIC_CONSOLE
);
1291 QEMU_GRAPHIC_CONSOLE(s
)->head
= head
;
1292 graphic_console_set_hwops(s
, hw_ops
, opaque
);
1294 object_property_set_link(OBJECT(s
), "device", OBJECT(dev
),
1298 surface
= qemu_create_placeholder_surface(width
, height
, noinit
);
1299 dpy_gfx_replace_surface(s
, surface
);
1300 s
->gl_unblock_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
1301 graphic_hw_gl_unblock_timer
, s
);
1305 static const GraphicHwOps unused_ops
= {
1309 void graphic_console_close(QemuConsole
*con
)
1311 static const char unplugged
[] =
1312 "Guest display has been unplugged";
1313 DisplaySurface
*surface
;
1314 int width
= qemu_console_get_width(con
, 640);
1315 int height
= qemu_console_get_height(con
, 480);
1317 trace_console_gfx_close(con
->index
);
1318 object_property_set_link(OBJECT(con
), "device", NULL
, &error_abort
);
1319 graphic_console_set_hwops(con
, &unused_ops
, NULL
);
1322 dpy_gl_scanout_disable(con
);
1324 surface
= qemu_create_placeholder_surface(width
, height
, unplugged
);
1325 dpy_gfx_replace_surface(con
, surface
);
1328 QemuConsole
*qemu_console_lookup_by_index(unsigned int index
)
1332 QTAILQ_FOREACH(con
, &consoles
, next
) {
1333 if (con
->index
== index
) {
1340 QemuConsole
*qemu_console_lookup_by_device(DeviceState
*dev
, uint32_t head
)
1346 QTAILQ_FOREACH(con
, &consoles
, next
) {
1347 obj
= object_property_get_link(OBJECT(con
),
1348 "device", &error_abort
);
1349 if (DEVICE(obj
) != dev
) {
1352 h
= object_property_get_uint(OBJECT(con
),
1353 "head", &error_abort
);
1362 QemuConsole
*qemu_console_lookup_by_device_name(const char *device_id
,
1363 uint32_t head
, Error
**errp
)
1368 dev
= qdev_find_recursive(sysbus_get_default(), device_id
);
1370 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
1371 "Device '%s' not found", device_id
);
1375 con
= qemu_console_lookup_by_device(dev
, head
);
1377 error_setg(errp
, "Device %s (head %d) is not bound to a QemuConsole",
1385 static QemuConsole
*qemu_graphic_console_lookup_unused(void)
1390 QTAILQ_FOREACH(con
, &consoles
, next
) {
1391 if (!QEMU_IS_GRAPHIC_CONSOLE(con
) || con
->hw_ops
!= &unused_ops
) {
1394 obj
= object_property_get_link(OBJECT(con
),
1395 "device", &error_abort
);
1404 QEMUCursor
*qemu_console_get_cursor(QemuConsole
*con
)
1407 con
= active_console
;
1409 return QEMU_IS_GRAPHIC_CONSOLE(con
) ? QEMU_GRAPHIC_CONSOLE(con
)->cursor
: NULL
;
1412 bool qemu_console_is_visible(QemuConsole
*con
)
1414 return (con
== active_console
) || (con
->dcls
> 0);
1417 bool qemu_console_is_graphic(QemuConsole
*con
)
1420 con
= active_console
;
1422 return con
&& QEMU_IS_GRAPHIC_CONSOLE(con
);
1425 bool qemu_console_is_fixedsize(QemuConsole
*con
)
1428 con
= active_console
;
1430 return con
&& (QEMU_IS_GRAPHIC_CONSOLE(con
) || QEMU_IS_FIXED_TEXT_CONSOLE(con
));
1433 bool qemu_console_is_gl_blocked(QemuConsole
*con
)
1435 assert(con
!= NULL
);
1436 return con
->gl_block
;
1439 static bool qemu_graphic_console_is_multihead(QemuGraphicConsole
*c
)
1443 QTAILQ_FOREACH(con
, &consoles
, next
) {
1444 QemuGraphicConsole
*candidate
;
1446 if (!QEMU_IS_GRAPHIC_CONSOLE(con
)) {
1450 candidate
= QEMU_GRAPHIC_CONSOLE(con
);
1451 if (candidate
->device
!= c
->device
) {
1455 if (candidate
->head
!= c
->head
) {
1462 char *qemu_console_get_label(QemuConsole
*con
)
1464 if (QEMU_IS_GRAPHIC_CONSOLE(con
)) {
1465 QemuGraphicConsole
*c
= QEMU_GRAPHIC_CONSOLE(con
);
1470 dev
= DEVICE(c
->device
);
1471 multihead
= qemu_graphic_console_is_multihead(c
);
1473 return g_strdup_printf("%s.%d", dev
->id
?
1475 object_get_typename(c
->device
),
1478 return g_strdup_printf("%s", dev
->id
?
1480 object_get_typename(c
->device
));
1483 return g_strdup("VGA");
1484 } else if (QEMU_IS_TEXT_CONSOLE(con
)) {
1485 const char *label
= qemu_text_console_get_label(QEMU_TEXT_CONSOLE(con
));
1487 return g_strdup(label
);
1491 return g_strdup_printf("vc%d", con
->index
);
1494 int qemu_console_get_index(QemuConsole
*con
)
1497 con
= active_console
;
1499 return con
? con
->index
: -1;
1502 uint32_t qemu_console_get_head(QemuConsole
*con
)
1505 con
= active_console
;
1510 if (QEMU_IS_GRAPHIC_CONSOLE(con
)) {
1511 return QEMU_GRAPHIC_CONSOLE(con
)->head
;
1516 int qemu_console_get_width(QemuConsole
*con
, int fallback
)
1519 con
= active_console
;
1524 switch (con
->scanout
.kind
) {
1525 case SCANOUT_DMABUF
:
1526 return con
->scanout
.dmabuf
->width
;
1527 case SCANOUT_TEXTURE
:
1528 return con
->scanout
.texture
.width
;
1529 case SCANOUT_SURFACE
:
1530 return surface_width(con
->surface
);
1536 int qemu_console_get_height(QemuConsole
*con
, int fallback
)
1539 con
= active_console
;
1544 switch (con
->scanout
.kind
) {
1545 case SCANOUT_DMABUF
:
1546 return con
->scanout
.dmabuf
->height
;
1547 case SCANOUT_TEXTURE
:
1548 return con
->scanout
.texture
.height
;
1549 case SCANOUT_SURFACE
:
1550 return surface_height(con
->surface
);
1556 int qemu_invalidate_text_consoles(void)
1561 QTAILQ_FOREACH(s
, &consoles
, next
) {
1562 if (qemu_console_is_graphic(s
) ||
1563 !qemu_console_is_visible(s
)) {
1567 graphic_hw_invalidate(s
);
1573 void qemu_console_resize(QemuConsole
*s
, int width
, int height
)
1575 DisplaySurface
*surface
= qemu_console_surface(s
);
1577 assert(QEMU_IS_GRAPHIC_CONSOLE(s
));
1579 if ((s
->scanout
.kind
!= SCANOUT_SURFACE
||
1580 (surface
&& !is_buffer_shared(surface
) && !is_placeholder(surface
))) &&
1581 qemu_console_get_width(s
, -1) == width
&&
1582 qemu_console_get_height(s
, -1) == height
) {
1586 surface
= qemu_create_displaysurface(width
, height
);
1587 dpy_gfx_replace_surface(s
, surface
);
1590 DisplaySurface
*qemu_console_surface(QemuConsole
*console
)
1592 switch (console
->scanout
.kind
) {
1593 case SCANOUT_SURFACE
:
1594 return console
->surface
;
1600 PixelFormat
qemu_default_pixelformat(int bpp
)
1602 pixman_format_code_t fmt
= qemu_default_pixman_format(bpp
, true);
1603 PixelFormat pf
= qemu_pixelformat_from_pixman(fmt
);
1607 static QemuDisplay
*dpys
[DISPLAY_TYPE__MAX
];
1609 void qemu_display_register(QemuDisplay
*ui
)
1611 assert(ui
->type
< DISPLAY_TYPE__MAX
);
1612 dpys
[ui
->type
] = ui
;
1615 bool qemu_display_find_default(DisplayOptions
*opts
)
1617 static DisplayType prio
[] = {
1618 #if defined(CONFIG_GTK)
1621 #if defined(CONFIG_SDL)
1624 #if defined(CONFIG_COCOA)
1630 for (i
= 0; i
< (int)ARRAY_SIZE(prio
); i
++) {
1631 if (dpys
[prio
[i
]] == NULL
) {
1632 Error
*local_err
= NULL
;
1633 int rv
= ui_module_load(DisplayType_str(prio
[i
]), &local_err
);
1635 error_report_err(local_err
);
1638 if (dpys
[prio
[i
]] == NULL
) {
1641 opts
->type
= prio
[i
];
1647 void qemu_display_early_init(DisplayOptions
*opts
)
1649 assert(opts
->type
< DISPLAY_TYPE__MAX
);
1650 if (opts
->type
== DISPLAY_TYPE_NONE
) {
1653 if (dpys
[opts
->type
] == NULL
) {
1654 Error
*local_err
= NULL
;
1655 int rv
= ui_module_load(DisplayType_str(opts
->type
), &local_err
);
1657 error_report_err(local_err
);
1660 if (dpys
[opts
->type
] == NULL
) {
1661 error_report("Display '%s' is not available.",
1662 DisplayType_str(opts
->type
));
1665 if (dpys
[opts
->type
]->early_init
) {
1666 dpys
[opts
->type
]->early_init(opts
);
1670 void qemu_display_init(DisplayState
*ds
, DisplayOptions
*opts
)
1672 assert(opts
->type
< DISPLAY_TYPE__MAX
);
1673 if (opts
->type
== DISPLAY_TYPE_NONE
) {
1676 assert(dpys
[opts
->type
] != NULL
);
1677 dpys
[opts
->type
]->init(ds
, opts
);
1680 const char *qemu_display_get_vc(DisplayOptions
*opts
)
1682 #ifdef CONFIG_PIXMAN
1683 const char *vc
= "vc:80Cx24C";
1685 const char *vc
= NULL
;
1688 assert(opts
->type
< DISPLAY_TYPE__MAX
);
1689 if (dpys
[opts
->type
] && dpys
[opts
->type
]->vc
) {
1690 vc
= dpys
[opts
->type
]->vc
;
1695 void qemu_display_help(void)
1699 printf("Available display backend types:\n");
1701 for (idx
= DISPLAY_TYPE_NONE
; idx
< DISPLAY_TYPE__MAX
; idx
++) {
1703 Error
*local_err
= NULL
;
1704 int rv
= ui_module_load(DisplayType_str(idx
), &local_err
);
1706 error_report_err(local_err
);
1710 printf("%s\n", DisplayType_str(dpys
[idx
]->type
));