2004-07-14 17:28:59 +00:00
|
|
|
/*
|
|
|
|
|
* QEMU graphical console
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2004-07-14 17:28:59 +00:00
|
|
|
* Copyright (c) 2004 Fabrice Bellard
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2004-07-14 17:28:59 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
|
|
|
|
*/
|
2018-02-01 12:18:31 +01:00
|
|
|
|
2016-01-29 17:49:51 +00:00
|
|
|
#include "qemu/osdep.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/console.h"
|
2013-04-17 10:21:27 +02:00
|
|
|
#include "hw/qdev-core.h"
|
2018-02-01 12:18:31 +01:00
|
|
|
#include "qapi/error.h"
|
2018-02-11 10:36:01 +01:00
|
|
|
#include "qapi/qapi-commands-ui.h"
|
2023-08-30 13:37:52 +04:00
|
|
|
#include "qapi/visitor.h"
|
2022-12-21 14:14:34 +01:00
|
|
|
#include "qemu/coroutine.h"
|
2023-08-30 13:37:37 +04:00
|
|
|
#include "qemu/error-report.h"
|
2021-09-16 21:22:38 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2018-02-01 12:18:46 +01:00
|
|
|
#include "qemu/option.h"
|
2021-09-16 21:22:38 +02:00
|
|
|
#include "chardev/char.h"
|
2013-11-10 14:20:16 +01:00
|
|
|
#include "trace.h"
|
2014-06-19 08:46:08 +02:00
|
|
|
#include "exec/memory.h"
|
2020-09-03 16:43:22 -04:00
|
|
|
#include "qom/object.h"
|
2004-07-14 17:28:59 +00:00
|
|
|
|
2023-08-30 13:38:23 +04:00
|
|
|
#include "console-priv.h"
|
2004-07-14 17:28:59 +00:00
|
|
|
|
2023-08-30 13:37:54 +04:00
|
|
|
OBJECT_DEFINE_ABSTRACT_TYPE(QemuConsole, qemu_console, QEMU_CONSOLE, OBJECT)
|
2023-08-30 13:37:51 +04:00
|
|
|
|
2023-08-30 13:37:53 +04:00
|
|
|
typedef struct QemuGraphicConsole {
|
|
|
|
|
QemuConsole parent;
|
2023-08-30 13:38:03 +04:00
|
|
|
|
|
|
|
|
Object *device;
|
|
|
|
|
uint32_t head;
|
|
|
|
|
|
|
|
|
|
QEMUCursor *cursor;
|
|
|
|
|
int cursor_x, cursor_y, cursor_on;
|
2023-08-30 13:37:53 +04:00
|
|
|
} QemuGraphicConsole;
|
|
|
|
|
|
|
|
|
|
typedef QemuConsoleClass QemuGraphicConsoleClass;
|
|
|
|
|
|
|
|
|
|
OBJECT_DEFINE_TYPE(QemuGraphicConsole, qemu_graphic_console, QEMU_GRAPHIC_CONSOLE, QEMU_CONSOLE)
|
|
|
|
|
|
2013-03-13 12:25:25 +01:00
|
|
|
struct DisplayState {
|
2013-12-01 08:49:47 +01:00
|
|
|
QEMUTimer *gui_timer;
|
2013-03-14 11:56:16 +01:00
|
|
|
uint64_t last_update;
|
|
|
|
|
uint64_t update_interval;
|
|
|
|
|
bool refreshing;
|
2013-03-13 12:25:25 +01:00
|
|
|
|
|
|
|
|
QLIST_HEAD(, DisplayChangeListener) listeners;
|
|
|
|
|
};
|
|
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
static DisplayState *display_state;
|
2018-12-06 13:10:34 +01:00
|
|
|
static QTAILQ_HEAD(, QemuConsole) consoles =
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_HEAD_INITIALIZER(consoles);
|
2004-07-14 17:28:59 +00:00
|
|
|
|
2013-03-14 11:56:16 +01:00
|
|
|
static void dpy_refresh(DisplayState *s);
|
2013-04-23 15:44:31 +02:00
|
|
|
static DisplayState *get_alloc_displaystate(void);
|
2021-02-20 16:23:03 +04:00
|
|
|
static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl);
|
2022-02-16 20:16:55 +04:00
|
|
|
static bool console_compatible_with(QemuConsole *con,
|
|
|
|
|
DisplayChangeListener *dcl, Error **errp);
|
2023-08-30 13:37:57 +04:00
|
|
|
static QemuConsole *qemu_graphic_console_lookup_unused(void);
|
2023-08-30 13:37:59 +04:00
|
|
|
static void dpy_set_ui_info_timer(void *opaque);
|
2013-03-07 17:08:29 +01:00
|
|
|
|
2013-03-13 12:17:13 +01:00
|
|
|
static void gui_update(void *opaque)
|
|
|
|
|
{
|
2013-03-14 11:56:16 +01:00
|
|
|
uint64_t interval = GUI_REFRESH_INTERVAL_IDLE;
|
|
|
|
|
uint64_t dcl_interval;
|
2013-03-13 12:17:13 +01:00
|
|
|
DisplayState *ds = opaque;
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2013-03-14 11:56:16 +01:00
|
|
|
ds->refreshing = true;
|
2013-03-13 12:17:13 +01:00
|
|
|
dpy_refresh(ds);
|
2013-03-14 11:56:16 +01:00
|
|
|
ds->refreshing = false;
|
2013-03-13 12:17:13 +01:00
|
|
|
|
|
|
|
|
QLIST_FOREACH(dcl, &ds->listeners, next) {
|
2013-03-14 11:56:16 +01:00
|
|
|
dcl_interval = dcl->update_interval ?
|
|
|
|
|
dcl->update_interval : GUI_REFRESH_INTERVAL_DEFAULT;
|
|
|
|
|
if (interval > dcl_interval) {
|
|
|
|
|
interval = dcl_interval;
|
2013-03-13 12:17:13 +01:00
|
|
|
}
|
|
|
|
|
}
|
2013-03-14 11:56:16 +01:00
|
|
|
if (ds->update_interval != interval) {
|
|
|
|
|
ds->update_interval = interval;
|
|
|
|
|
trace_console_refresh(interval);
|
|
|
|
|
}
|
2013-08-21 16:03:08 +01:00
|
|
|
ds->last_update = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
|
|
|
|
|
timer_mod(ds->gui_timer, ds->last_update + interval);
|
2013-03-13 12:17:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void gui_setup_refresh(DisplayState *ds)
|
|
|
|
|
{
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
bool need_timer = false;
|
|
|
|
|
|
|
|
|
|
QLIST_FOREACH(dcl, &ds->listeners, next) {
|
|
|
|
|
if (dcl->ops->dpy_refresh != NULL) {
|
|
|
|
|
need_timer = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (need_timer && ds->gui_timer == NULL) {
|
2013-08-21 16:03:08 +01:00
|
|
|
ds->gui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, gui_update, ds);
|
|
|
|
|
timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
|
2013-03-13 12:17:13 +01:00
|
|
|
}
|
|
|
|
|
if (!need_timer && ds->gui_timer != NULL) {
|
2013-08-21 16:03:08 +01:00
|
|
|
timer_free(ds->gui_timer);
|
2013-03-13 12:17:13 +01:00
|
|
|
ds->gui_timer = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-24 13:20:49 +02:00
|
|
|
void graphic_hw_update_done(QemuConsole *con)
|
|
|
|
|
{
|
2020-11-24 13:29:36 +01:00
|
|
|
if (con) {
|
2022-04-27 15:08:29 +02:00
|
|
|
qemu_co_enter_all(&con->dump_queue, NULL);
|
2020-11-24 13:29:36 +01:00
|
|
|
}
|
2015-08-24 13:20:49 +02:00
|
|
|
}
|
|
|
|
|
|
2013-03-12 13:44:38 +01:00
|
|
|
void graphic_hw_update(QemuConsole *con)
|
2006-04-09 01:06:34 +00:00
|
|
|
{
|
2015-08-24 13:20:49 +02:00
|
|
|
bool async = false;
|
2013-03-12 13:44:38 +01:00
|
|
|
if (!con) {
|
2020-11-07 01:03:39 +08:00
|
|
|
return;
|
2013-03-12 13:44:38 +01:00
|
|
|
}
|
2020-11-07 01:03:39 +08:00
|
|
|
if (con->hw_ops->gfx_update) {
|
2013-03-13 14:04:18 +01:00
|
|
|
con->hw_ops->gfx_update(con->hw);
|
2015-08-24 13:20:49 +02:00
|
|
|
async = con->hw_ops->gfx_update_async;
|
|
|
|
|
}
|
|
|
|
|
if (!async) {
|
|
|
|
|
graphic_hw_update_done(con);
|
2013-03-12 13:44:38 +01:00
|
|
|
}
|
2006-04-09 01:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:37:37 +04:00
|
|
|
static void graphic_hw_update_bh(void *con)
|
|
|
|
|
{
|
|
|
|
|
graphic_hw_update(con);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void qemu_console_co_wait_update(QemuConsole *con)
|
|
|
|
|
{
|
|
|
|
|
if (qemu_co_queue_empty(&con->dump_queue)) {
|
|
|
|
|
/* Defer the update, it will restart the pending coroutines */
|
|
|
|
|
aio_bh_schedule_oneshot(qemu_get_aio_context(),
|
|
|
|
|
graphic_hw_update_bh, con);
|
|
|
|
|
}
|
|
|
|
|
qemu_co_queue_wait(&con->dump_queue, NULL);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-11 11:56:58 +04:00
|
|
|
static void graphic_hw_gl_unblock_timer(void *opaque)
|
|
|
|
|
{
|
|
|
|
|
warn_report("console: no gl-unblock within one second");
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-03 12:34:25 +01:00
|
|
|
void graphic_hw_gl_block(QemuConsole *con, bool block)
|
|
|
|
|
{
|
2021-03-11 11:56:58 +04:00
|
|
|
uint64_t timeout;
|
2016-09-23 09:50:27 +02:00
|
|
|
assert(con != NULL);
|
|
|
|
|
|
2021-03-11 11:45:33 +04:00
|
|
|
if (block) {
|
|
|
|
|
con->gl_block++;
|
|
|
|
|
} else {
|
|
|
|
|
con->gl_block--;
|
2015-12-03 12:34:25 +01:00
|
|
|
}
|
2021-03-11 11:45:33 +04:00
|
|
|
assert(con->gl_block >= 0);
|
|
|
|
|
if (!con->hw_ops->gl_block) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ((block && con->gl_block != 1) || (!block && con->gl_block != 0)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
con->hw_ops->gl_block(con->hw, block);
|
2021-03-11 11:56:58 +04:00
|
|
|
|
|
|
|
|
if (block) {
|
|
|
|
|
timeout = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
|
|
|
|
|
timeout += 1000; /* one sec */
|
|
|
|
|
timer_mod(con->gl_unblock_timer, timeout);
|
|
|
|
|
} else {
|
|
|
|
|
timer_del(con->gl_unblock_timer);
|
|
|
|
|
}
|
2015-12-03 12:34:25 +01:00
|
|
|
}
|
|
|
|
|
|
2016-12-21 01:38:04 +01:00
|
|
|
int qemu_console_get_window_id(QemuConsole *con)
|
|
|
|
|
{
|
|
|
|
|
return con->window_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void qemu_console_set_window_id(QemuConsole *con, int window_id)
|
|
|
|
|
{
|
|
|
|
|
con->window_id = window_id;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-12 13:44:38 +01:00
|
|
|
void graphic_hw_invalidate(QemuConsole *con)
|
2006-04-09 01:06:34 +00:00
|
|
|
{
|
2013-03-13 14:04:18 +01:00
|
|
|
if (con && con->hw_ops->invalidate) {
|
|
|
|
|
con->hw_ops->invalidate(con->hw);
|
2013-03-12 13:44:38 +01:00
|
|
|
}
|
2006-04-09 01:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-12 13:44:38 +01:00
|
|
|
void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
|
2008-02-10 16:33:14 +00:00
|
|
|
{
|
2013-03-13 14:04:18 +01:00
|
|
|
if (con && con->hw_ops->text_update) {
|
|
|
|
|
con->hw_ops->text_update(con->hw, chardata);
|
|
|
|
|
}
|
2008-02-10 16:33:14 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-17 12:42:20 +04:00
|
|
|
static void displaychangelistener_gfx_switch(DisplayChangeListener *dcl,
|
2022-02-20 23:31:58 +04:00
|
|
|
struct DisplaySurface *new_surface,
|
|
|
|
|
bool update)
|
2022-02-17 12:42:20 +04:00
|
|
|
{
|
|
|
|
|
if (dcl->ops->dpy_gfx_switch) {
|
|
|
|
|
dcl->ops->dpy_gfx_switch(dcl, new_surface);
|
|
|
|
|
}
|
2022-02-20 23:31:58 +04:00
|
|
|
|
|
|
|
|
if (update && dcl->ops->dpy_gfx_update) {
|
|
|
|
|
dcl->ops->dpy_gfx_update(dcl, 0, 0,
|
|
|
|
|
surface_width(new_surface),
|
|
|
|
|
surface_height(new_surface));
|
|
|
|
|
}
|
2022-02-17 12:42:20 +04:00
|
|
|
}
|
|
|
|
|
|
2022-02-17 15:07:21 +04:00
|
|
|
static void dpy_gfx_create_texture(QemuConsole *con, DisplaySurface *surface)
|
|
|
|
|
{
|
|
|
|
|
if (con->gl && con->gl->ops->dpy_gl_ctx_create_texture) {
|
|
|
|
|
con->gl->ops->dpy_gl_ctx_create_texture(con->gl, surface);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void dpy_gfx_destroy_texture(QemuConsole *con, DisplaySurface *surface)
|
|
|
|
|
{
|
|
|
|
|
if (con->gl && con->gl->ops->dpy_gl_ctx_destroy_texture) {
|
|
|
|
|
con->gl->ops->dpy_gl_ctx_destroy_texture(con->gl, surface);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void dpy_gfx_update_texture(QemuConsole *con, DisplaySurface *surface,
|
|
|
|
|
int x, int y, int w, int h)
|
|
|
|
|
{
|
|
|
|
|
if (con->gl && con->gl->ops->dpy_gl_ctx_update_texture) {
|
|
|
|
|
con->gl->ops->dpy_gl_ctx_update_texture(con->gl, surface, x, y, w, h);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-17 12:42:20 +04:00
|
|
|
|
2021-02-20 16:23:03 +04:00
|
|
|
static void displaychangelistener_display_console(DisplayChangeListener *dcl,
|
2022-02-16 20:16:55 +04:00
|
|
|
Error **errp)
|
2021-02-20 16:23:03 +04:00
|
|
|
{
|
|
|
|
|
static const char nodev[] =
|
|
|
|
|
"This VM has no graphic display device.";
|
|
|
|
|
static DisplaySurface *dummy;
|
2024-03-19 12:08:42 +09:00
|
|
|
QemuConsole *con = dcl->con;
|
2021-02-20 16:23:03 +04:00
|
|
|
|
2022-02-16 20:16:55 +04:00
|
|
|
if (!con || !console_compatible_with(con, dcl, errp)) {
|
2021-02-20 16:23:03 +04:00
|
|
|
if (!dummy) {
|
|
|
|
|
dummy = qemu_create_placeholder_surface(640, 480, nodev);
|
|
|
|
|
}
|
2022-02-17 15:07:21 +04:00
|
|
|
if (con) {
|
|
|
|
|
dpy_gfx_create_texture(con, dummy);
|
|
|
|
|
}
|
2022-02-20 23:31:58 +04:00
|
|
|
displaychangelistener_gfx_switch(dcl, dummy, TRUE);
|
2021-02-20 16:23:03 +04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-20 23:45:38 +04:00
|
|
|
dpy_gfx_create_texture(con, con->surface);
|
|
|
|
|
displaychangelistener_gfx_switch(dcl, con->surface,
|
|
|
|
|
con->scanout.kind == SCANOUT_SURFACE);
|
|
|
|
|
|
2021-02-20 16:23:03 +04:00
|
|
|
if (con->scanout.kind == SCANOUT_DMABUF &&
|
|
|
|
|
displaychangelistener_has_dmabuf(dcl)) {
|
|
|
|
|
dcl->ops->dpy_gl_scanout_dmabuf(dcl, con->scanout.dmabuf);
|
|
|
|
|
} else if (con->scanout.kind == SCANOUT_TEXTURE &&
|
|
|
|
|
dcl->ops->dpy_gl_scanout_texture) {
|
|
|
|
|
dcl->ops->dpy_gl_scanout_texture(dcl,
|
|
|
|
|
con->scanout.texture.backing_id,
|
|
|
|
|
con->scanout.texture.backing_y_0_top,
|
|
|
|
|
con->scanout.texture.backing_width,
|
|
|
|
|
con->scanout.texture.backing_height,
|
|
|
|
|
con->scanout.texture.x,
|
|
|
|
|
con->scanout.texture.y,
|
|
|
|
|
con->scanout.texture.width,
|
2023-06-06 15:56:56 +04:00
|
|
|
con->scanout.texture.height,
|
|
|
|
|
con->scanout.texture.d3d_tex2d);
|
2021-02-20 16:23:03 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:22 +04:00
|
|
|
void qemu_text_console_put_keysym(QemuTextConsole *s, int keysym)
|
|
|
|
|
{
|
|
|
|
|
qemu_text_console_handle_keysym(s, keysym);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-18 01:52:57 -07:00
|
|
|
static const int qcode_to_keysym[Q_KEY_CODE__MAX] = {
|
2014-05-27 09:28:38 +02:00
|
|
|
[Q_KEY_CODE_UP] = QEMU_KEY_UP,
|
|
|
|
|
[Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN,
|
|
|
|
|
[Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT,
|
|
|
|
|
[Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT,
|
|
|
|
|
[Q_KEY_CODE_HOME] = QEMU_KEY_HOME,
|
|
|
|
|
[Q_KEY_CODE_END] = QEMU_KEY_END,
|
|
|
|
|
[Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP,
|
|
|
|
|
[Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN,
|
|
|
|
|
[Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE,
|
2022-08-11 18:01:38 -04:00
|
|
|
[Q_KEY_CODE_TAB] = QEMU_KEY_TAB,
|
2016-08-11 09:21:00 +02:00
|
|
|
[Q_KEY_CODE_BACKSPACE] = QEMU_KEY_BACKSPACE,
|
2014-05-27 09:28:38 +02:00
|
|
|
};
|
|
|
|
|
|
2018-03-21 14:50:36 +01:00
|
|
|
static const int ctrl_qcode_to_keysym[Q_KEY_CODE__MAX] = {
|
|
|
|
|
[Q_KEY_CODE_UP] = QEMU_KEY_CTRL_UP,
|
|
|
|
|
[Q_KEY_CODE_DOWN] = QEMU_KEY_CTRL_DOWN,
|
|
|
|
|
[Q_KEY_CODE_RIGHT] = QEMU_KEY_CTRL_RIGHT,
|
|
|
|
|
[Q_KEY_CODE_LEFT] = QEMU_KEY_CTRL_LEFT,
|
|
|
|
|
[Q_KEY_CODE_HOME] = QEMU_KEY_CTRL_HOME,
|
|
|
|
|
[Q_KEY_CODE_END] = QEMU_KEY_CTRL_END,
|
|
|
|
|
[Q_KEY_CODE_PGUP] = QEMU_KEY_CTRL_PAGEUP,
|
|
|
|
|
[Q_KEY_CODE_PGDN] = QEMU_KEY_CTRL_PAGEDOWN,
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-30 13:38:20 +04:00
|
|
|
bool qemu_text_console_put_qcode(QemuTextConsole *s, int qcode, bool ctrl)
|
2014-05-27 09:28:38 +02:00
|
|
|
{
|
|
|
|
|
int keysym;
|
|
|
|
|
|
2018-03-21 14:50:36 +01:00
|
|
|
keysym = ctrl ? ctrl_qcode_to_keysym[qcode] : qcode_to_keysym[qcode];
|
2014-05-27 09:28:38 +02:00
|
|
|
if (keysym == 0) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-08-30 13:38:20 +04:00
|
|
|
qemu_text_console_put_keysym(s, keysym);
|
2014-05-27 09:28:38 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:20 +04:00
|
|
|
void qemu_text_console_put_string(QemuTextConsole *s, const char *str, int len)
|
2014-05-27 09:32:36 +02:00
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < len && str[i]; i++) {
|
2023-08-30 13:38:20 +04:00
|
|
|
qemu_text_console_put_keysym(s, str[i]);
|
2014-05-27 09:32:36 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:37:52 +04:00
|
|
|
static void
|
2023-08-30 13:37:54 +04:00
|
|
|
qemu_console_register(QemuConsole *c)
|
2004-07-14 17:28:59 +00:00
|
|
|
{
|
2006-04-09 01:06:34 +00:00
|
|
|
int i;
|
2004-07-14 17:28:59 +00:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
if (QTAILQ_EMPTY(&consoles)) {
|
2023-08-30 13:37:52 +04:00
|
|
|
c->index = 0;
|
|
|
|
|
QTAILQ_INSERT_TAIL(&consoles, c, next);
|
2023-08-30 13:37:54 +04:00
|
|
|
} else if (!QEMU_IS_GRAPHIC_CONSOLE(c) || phase_check(PHASE_MACHINE_READY)) {
|
2018-12-06 13:10:34 +01:00
|
|
|
QemuConsole *last = QTAILQ_LAST(&consoles);
|
2023-08-30 13:37:52 +04:00
|
|
|
c->index = last->index + 1;
|
|
|
|
|
QTAILQ_INSERT_TAIL(&consoles, c, next);
|
2006-04-09 01:06:34 +00:00
|
|
|
} else {
|
2018-03-13 11:17:29 -06:00
|
|
|
/*
|
|
|
|
|
* HACK: Put graphical consoles before text consoles.
|
|
|
|
|
*
|
|
|
|
|
* Only do that for coldplugged devices. After initial device
|
|
|
|
|
* initialization we will not renumber the consoles any more.
|
|
|
|
|
*/
|
2023-08-30 13:37:52 +04:00
|
|
|
QemuConsole *it = QTAILQ_FIRST(&consoles);
|
2018-05-07 11:54:24 +02:00
|
|
|
|
2023-08-30 13:37:54 +04:00
|
|
|
while (QTAILQ_NEXT(it, next) != NULL && QEMU_IS_GRAPHIC_CONSOLE(it)) {
|
2023-08-30 13:37:52 +04:00
|
|
|
it = QTAILQ_NEXT(it, next);
|
2018-05-07 11:54:24 +02:00
|
|
|
}
|
2023-08-30 13:37:54 +04:00
|
|
|
if (QEMU_IS_GRAPHIC_CONSOLE(it)) {
|
2018-05-07 11:54:24 +02:00
|
|
|
/* have no text consoles */
|
2023-08-30 13:37:52 +04:00
|
|
|
c->index = it->index + 1;
|
|
|
|
|
QTAILQ_INSERT_AFTER(&consoles, it, c, next);
|
2018-05-07 11:54:24 +02:00
|
|
|
} else {
|
2023-08-30 13:37:52 +04:00
|
|
|
c->index = it->index;
|
|
|
|
|
QTAILQ_INSERT_BEFORE(it, c, next);
|
2018-05-07 11:54:24 +02:00
|
|
|
/* renumber text consoles */
|
2023-08-30 13:37:52 +04:00
|
|
|
for (i = c->index + 1; it != NULL; it = QTAILQ_NEXT(it, next), i++) {
|
|
|
|
|
it->index = i;
|
2018-05-07 11:54:24 +02:00
|
|
|
}
|
2006-04-09 01:06:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
2004-07-14 17:28:59 +00:00
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:37:51 +04:00
|
|
|
static void
|
|
|
|
|
qemu_console_finalize(Object *obj)
|
|
|
|
|
{
|
2023-08-30 13:37:59 +04:00
|
|
|
QemuConsole *c = QEMU_CONSOLE(obj);
|
|
|
|
|
|
2023-08-30 13:38:01 +04:00
|
|
|
/* TODO: check this code path, and unregister from consoles */
|
|
|
|
|
g_clear_pointer(&c->surface, qemu_free_displaysurface);
|
|
|
|
|
g_clear_pointer(&c->gl_unblock_timer, timer_free);
|
2023-08-30 13:37:59 +04:00
|
|
|
g_clear_pointer(&c->ui_timer, timer_free);
|
2023-08-30 13:37:52 +04:00
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:37:51 +04:00
|
|
|
static void
|
|
|
|
|
qemu_console_class_init(ObjectClass *oc, void *data)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
qemu_console_init(Object *obj)
|
|
|
|
|
{
|
2023-08-30 13:37:52 +04:00
|
|
|
QemuConsole *c = QEMU_CONSOLE(obj);
|
|
|
|
|
DisplayState *ds = get_alloc_displaystate();
|
|
|
|
|
|
|
|
|
|
qemu_co_queue_init(&c->dump_queue);
|
|
|
|
|
c->ds = ds;
|
|
|
|
|
c->window_id = -1;
|
2023-08-30 13:37:59 +04:00
|
|
|
c->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
|
|
|
|
|
dpy_set_ui_info_timer, c);
|
2023-08-30 13:37:55 +04:00
|
|
|
qemu_console_register(c);
|
2023-08-30 13:37:52 +04:00
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:37:53 +04:00
|
|
|
static void
|
|
|
|
|
qemu_graphic_console_finalize(Object *obj)
|
|
|
|
|
{
|
2023-08-30 13:38:03 +04:00
|
|
|
QemuGraphicConsole *c = QEMU_GRAPHIC_CONSOLE(obj);
|
|
|
|
|
|
|
|
|
|
g_clear_pointer(&c->device, object_unref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
qemu_graphic_console_prop_get_head(Object *obj, Visitor *v, const char *name,
|
|
|
|
|
void *opaque, Error **errp)
|
|
|
|
|
{
|
|
|
|
|
QemuGraphicConsole *c = QEMU_GRAPHIC_CONSOLE(obj);
|
|
|
|
|
|
|
|
|
|
visit_type_uint32(v, name, &c->head, errp);
|
2023-08-30 13:37:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
qemu_graphic_console_class_init(ObjectClass *oc, void *data)
|
|
|
|
|
{
|
2023-08-30 13:38:03 +04:00
|
|
|
object_class_property_add_link(oc, "device", TYPE_DEVICE,
|
|
|
|
|
offsetof(QemuGraphicConsole, device),
|
|
|
|
|
object_property_allow_set_link,
|
|
|
|
|
OBJ_PROP_LINK_STRONG);
|
|
|
|
|
object_class_property_add(oc, "head", "uint32",
|
|
|
|
|
qemu_graphic_console_prop_get_head,
|
|
|
|
|
NULL, NULL, NULL);
|
2023-08-30 13:37:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
qemu_graphic_console_init(Object *obj)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-06 15:56:46 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
|
void qemu_displaysurface_win32_set_handle(DisplaySurface *surface,
|
|
|
|
|
HANDLE h, uint32_t offset)
|
|
|
|
|
{
|
|
|
|
|
assert(!surface->handle);
|
|
|
|
|
|
|
|
|
|
surface->handle = h;
|
|
|
|
|
surface->handle_offset = offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
win32_pixman_image_destroy(pixman_image_t *image, void *data)
|
|
|
|
|
{
|
|
|
|
|
DisplaySurface *surface = data;
|
|
|
|
|
|
|
|
|
|
if (!surface->handle) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(surface->handle_offset == 0);
|
|
|
|
|
|
|
|
|
|
qemu_win32_map_free(
|
|
|
|
|
pixman_image_get_data(surface->image),
|
|
|
|
|
surface->handle,
|
|
|
|
|
&error_warn
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-02-28 10:48:02 +01:00
|
|
|
DisplaySurface *qemu_create_displaysurface(int width, int height)
|
2012-09-27 11:06:36 +02:00
|
|
|
{
|
2023-06-06 15:56:46 +04:00
|
|
|
DisplaySurface *surface;
|
|
|
|
|
void *bits = NULL;
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
HANDLE handle = NULL;
|
|
|
|
|
#endif
|
2013-02-28 10:48:02 +01:00
|
|
|
|
2023-06-06 15:56:46 +04:00
|
|
|
trace_displaysurface_create(width, height);
|
|
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
bits = qemu_win32_map_alloc(width * height * 4, &handle, &error_abort);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
surface = qemu_create_displaysurface_from(
|
|
|
|
|
width, height,
|
|
|
|
|
PIXMAN_x8r8g8b8,
|
|
|
|
|
width * 4, bits
|
|
|
|
|
);
|
2021-03-12 14:00:42 +04:00
|
|
|
surface->flags = QEMU_ALLOCATED_FLAG;
|
|
|
|
|
|
2023-06-06 15:56:46 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
|
qemu_displaysurface_win32_set_handle(surface, handle, 0);
|
|
|
|
|
#endif
|
2012-09-27 11:06:36 +02:00
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-18 11:03:15 +02:00
|
|
|
DisplaySurface *qemu_create_displaysurface_from(int width, int height,
|
|
|
|
|
pixman_format_code_t format,
|
|
|
|
|
int linesize, uint8_t *data)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
2012-09-26 15:20:05 +02:00
|
|
|
DisplaySurface *surface = g_new0(DisplaySurface, 1);
|
2010-02-11 00:29:57 +01:00
|
|
|
|
2014-06-18 11:03:15 +02:00
|
|
|
trace_displaysurface_create_from(surface, width, height, format);
|
2023-08-30 13:38:21 +04:00
|
|
|
surface->image = pixman_image_create_bits(format,
|
2012-09-26 15:20:05 +02:00
|
|
|
width, height,
|
|
|
|
|
(void *)data, linesize);
|
|
|
|
|
assert(surface->image != NULL);
|
2023-06-06 15:56:46 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
|
pixman_image_set_destroy_function(surface->image,
|
|
|
|
|
win32_pixman_image_destroy, surface);
|
|
|
|
|
#endif
|
2012-09-26 15:20:05 +02:00
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-01 10:27:20 +02:00
|
|
|
DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image)
|
|
|
|
|
{
|
|
|
|
|
DisplaySurface *surface = g_new0(DisplaySurface, 1);
|
|
|
|
|
|
|
|
|
|
trace_displaysurface_create_pixman(surface);
|
|
|
|
|
surface->image = pixman_image_ref(image);
|
|
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 19:13:14 +09:00
|
|
|
DisplaySurface *qemu_create_placeholder_surface(int w, int h,
|
|
|
|
|
const char *msg)
|
2013-04-25 09:33:19 +02:00
|
|
|
{
|
2013-04-25 12:10:45 +02:00
|
|
|
DisplaySurface *surface = qemu_create_displaysurface(w, h);
|
2023-08-30 13:38:31 +04:00
|
|
|
#ifdef CONFIG_PIXMAN
|
2023-08-30 13:38:10 +04:00
|
|
|
pixman_color_t bg = QEMU_PIXMAN_COLOR_BLACK;
|
|
|
|
|
pixman_color_t fg = QEMU_PIXMAN_COLOR_GRAY;
|
2013-04-25 09:33:19 +02:00
|
|
|
pixman_image_t *glyph;
|
|
|
|
|
int len, x, y, i;
|
|
|
|
|
|
|
|
|
|
len = strlen(msg);
|
2013-04-25 12:10:45 +02:00
|
|
|
x = (w / FONT_WIDTH - len) / 2;
|
|
|
|
|
y = (h / FONT_HEIGHT - 1) / 2;
|
2013-04-25 09:33:19 +02:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
|
glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]);
|
|
|
|
|
qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg,
|
|
|
|
|
x+i, y, FONT_WIDTH, FONT_HEIGHT);
|
|
|
|
|
qemu_pixman_image_unref(glyph);
|
|
|
|
|
}
|
2023-08-30 13:38:31 +04:00
|
|
|
#endif
|
2021-02-25 19:13:14 +09:00
|
|
|
surface->flags |= QEMU_PLACEHOLDER_FLAG;
|
2013-04-25 09:33:19 +02:00
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-28 10:48:02 +01:00
|
|
|
void qemu_free_displaysurface(DisplaySurface *surface)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
2013-02-28 10:48:02 +01:00
|
|
|
if (surface == NULL) {
|
2010-02-11 00:29:57 +01:00
|
|
|
return;
|
2012-09-26 07:46:20 +02:00
|
|
|
}
|
2013-02-28 10:48:02 +01:00
|
|
|
trace_displaysurface_free(surface);
|
|
|
|
|
qemu_pixman_image_unref(surface->image);
|
|
|
|
|
g_free(surface);
|
2010-02-11 00:29:57 +01:00
|
|
|
}
|
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
bool console_has_gl(QemuConsole *con)
|
|
|
|
|
{
|
|
|
|
|
return con->gl != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 14:52:24 +04:00
|
|
|
static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl)
|
|
|
|
|
{
|
|
|
|
|
if (dcl->ops->dpy_has_dmabuf) {
|
|
|
|
|
return dcl->ops->dpy_has_dmabuf(dcl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dcl->ops->dpy_gl_scanout_dmabuf) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-16 20:16:55 +04:00
|
|
|
static bool console_compatible_with(QemuConsole *con,
|
|
|
|
|
DisplayChangeListener *dcl, Error **errp)
|
2021-02-04 14:52:25 +04:00
|
|
|
{
|
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
|
|
flags = con->hw_ops->get_flags ? con->hw_ops->get_flags(con->hw) : 0;
|
|
|
|
|
|
2022-02-16 19:33:37 +04:00
|
|
|
if (console_has_gl(con) &&
|
|
|
|
|
!con->gl->ops->dpy_gl_ctx_is_compatible_dcl(con->gl, dcl)) {
|
2022-02-16 17:35:28 +04:00
|
|
|
error_setg(errp, "Display %s is incompatible with the GL context",
|
|
|
|
|
dcl->ops->dpy_name);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 14:52:25 +04:00
|
|
|
if (flags & GRAPHIC_FLAGS_GL &&
|
|
|
|
|
!console_has_gl(con)) {
|
|
|
|
|
error_setg(errp, "The console requires a GL context.");
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (flags & GRAPHIC_FLAGS_DMABUF &&
|
|
|
|
|
!displaychangelistener_has_dmabuf(dcl)) {
|
|
|
|
|
error_setg(errp, "The console requires display DMABUF support.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-19 11:53:36 +02:00
|
|
|
void console_handle_touch_event(QemuConsole *con,
|
|
|
|
|
struct touch_slot touch_slots[INPUT_EVENT_SLOTS_MAX],
|
|
|
|
|
uint64_t num_slot,
|
|
|
|
|
int width, int height,
|
|
|
|
|
double x, double y,
|
|
|
|
|
InputMultiTouchType type,
|
|
|
|
|
Error **errp)
|
|
|
|
|
{
|
|
|
|
|
struct touch_slot *slot;
|
|
|
|
|
bool needs_sync = false;
|
|
|
|
|
int update;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (num_slot >= INPUT_EVENT_SLOTS_MAX) {
|
|
|
|
|
error_setg(errp,
|
|
|
|
|
"Unexpected touch slot number: % " PRId64" >= %d",
|
|
|
|
|
num_slot, INPUT_EVENT_SLOTS_MAX);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
slot = &touch_slots[num_slot];
|
|
|
|
|
slot->x = x;
|
|
|
|
|
slot->y = y;
|
|
|
|
|
|
|
|
|
|
if (type == INPUT_MULTI_TOUCH_TYPE_BEGIN) {
|
|
|
|
|
slot->tracking_id = num_slot;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < INPUT_EVENT_SLOTS_MAX; ++i) {
|
|
|
|
|
if (i == num_slot) {
|
|
|
|
|
update = type;
|
|
|
|
|
} else {
|
|
|
|
|
update = INPUT_MULTI_TOUCH_TYPE_UPDATE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
slot = &touch_slots[i];
|
|
|
|
|
|
|
|
|
|
if (slot->tracking_id == -1) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (update == INPUT_MULTI_TOUCH_TYPE_END) {
|
|
|
|
|
slot->tracking_id = -1;
|
|
|
|
|
qemu_input_queue_mtt(con, update, i, slot->tracking_id);
|
|
|
|
|
needs_sync = true;
|
|
|
|
|
} else {
|
|
|
|
|
qemu_input_queue_mtt(con, update, i, slot->tracking_id);
|
|
|
|
|
qemu_input_queue_btn(con, INPUT_BUTTON_TOUCH, true);
|
|
|
|
|
qemu_input_queue_mtt_abs(con,
|
|
|
|
|
INPUT_AXIS_X, (int) slot->x,
|
|
|
|
|
0, width,
|
|
|
|
|
i, slot->tracking_id);
|
|
|
|
|
qemu_input_queue_mtt_abs(con,
|
|
|
|
|
INPUT_AXIS_Y, (int) slot->y,
|
|
|
|
|
0, height,
|
|
|
|
|
i, slot->tracking_id);
|
|
|
|
|
needs_sync = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (needs_sync) {
|
|
|
|
|
qemu_input_event_sync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-09 23:48:46 +04:00
|
|
|
void qemu_console_set_display_gl_ctx(QemuConsole *con, DisplayGLCtx *gl)
|
2021-01-25 14:53:18 +04:00
|
|
|
{
|
|
|
|
|
/* display has opengl support */
|
2021-10-09 23:48:46 +04:00
|
|
|
assert(con);
|
|
|
|
|
if (con->gl) {
|
|
|
|
|
error_report("The console already has an OpenGL context.");
|
2021-01-25 14:53:18 +04:00
|
|
|
exit(1);
|
|
|
|
|
}
|
2021-10-09 23:48:46 +04:00
|
|
|
con->gl = gl;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:03 +04:00
|
|
|
static void
|
|
|
|
|
dcl_set_graphic_cursor(DisplayChangeListener *dcl, QemuGraphicConsole *con)
|
|
|
|
|
{
|
|
|
|
|
if (con && con->cursor && dcl->ops->dpy_cursor_define) {
|
|
|
|
|
dcl->ops->dpy_cursor_define(dcl, con->cursor);
|
|
|
|
|
}
|
|
|
|
|
if (con && dcl->ops->dpy_mouse_set) {
|
|
|
|
|
dcl->ops->dpy_mouse_set(dcl, con->cursor_x, con->cursor_y, con->cursor_on);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-30 13:38:23 +04:00
|
|
|
|
2013-04-23 15:44:31 +02:00
|
|
|
void register_displaychangelistener(DisplayChangeListener *dcl)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2017-04-06 14:05:12 +02:00
|
|
|
assert(!dcl->ds);
|
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
|
2013-04-23 15:44:31 +02:00
|
|
|
dcl->ds = get_alloc_displaystate();
|
|
|
|
|
QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next);
|
|
|
|
|
gui_setup_refresh(dcl->ds);
|
2013-03-15 15:45:54 +01:00
|
|
|
if (dcl->con) {
|
|
|
|
|
dcl->con->dcls++;
|
|
|
|
|
}
|
2024-03-19 12:08:42 +09:00
|
|
|
displaychangelistener_display_console(dcl, &error_fatal);
|
|
|
|
|
if (QEMU_IS_GRAPHIC_CONSOLE(dcl->con)) {
|
|
|
|
|
dcl_set_graphic_cursor(dcl, QEMU_GRAPHIC_CONSOLE(dcl->con));
|
|
|
|
|
} else if (QEMU_IS_TEXT_CONSOLE(dcl->con)) {
|
|
|
|
|
qemu_text_console_update_size(QEMU_TEXT_CONSOLE(dcl->con));
|
2023-01-17 15:40:58 +04:00
|
|
|
}
|
2023-08-30 13:38:23 +04:00
|
|
|
qemu_text_console_update_cursor();
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
|
2013-03-14 11:56:16 +01:00
|
|
|
void update_displaychangelistener(DisplayChangeListener *dcl,
|
|
|
|
|
uint64_t interval)
|
|
|
|
|
{
|
|
|
|
|
DisplayState *ds = dcl->ds;
|
|
|
|
|
|
|
|
|
|
dcl->update_interval = interval;
|
|
|
|
|
if (!ds->refreshing && ds->update_interval > interval) {
|
2013-08-21 16:03:08 +01:00
|
|
|
timer_mod(ds->gui_timer, ds->last_update + interval);
|
2013-03-14 11:56:16 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
void unregister_displaychangelistener(DisplayChangeListener *dcl)
|
|
|
|
|
{
|
|
|
|
|
DisplayState *ds = dcl->ds;
|
|
|
|
|
trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name);
|
2013-03-15 15:45:54 +01:00
|
|
|
if (dcl->con) {
|
|
|
|
|
dcl->con->dcls--;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_REMOVE(dcl, next);
|
2017-11-09 11:51:54 +01:00
|
|
|
dcl->ds = NULL;
|
2012-11-13 14:51:41 +01:00
|
|
|
gui_setup_refresh(ds);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-12 12:51:13 +01:00
|
|
|
static void dpy_set_ui_info_timer(void *opaque)
|
|
|
|
|
{
|
|
|
|
|
QemuConsole *con = opaque;
|
2023-08-30 13:38:03 +04:00
|
|
|
uint32_t head = qemu_console_get_head(con);
|
2015-03-12 12:51:13 +01:00
|
|
|
|
2023-08-30 13:38:03 +04:00
|
|
|
con->hw_ops->ui_info(con->hw, head, &con->ui_info);
|
2015-03-12 12:51:13 +01:00
|
|
|
}
|
|
|
|
|
|
2023-09-12 10:13:01 +04:00
|
|
|
bool dpy_ui_info_supported(const QemuConsole *con)
|
2015-03-13 12:21:14 +01:00
|
|
|
{
|
2023-09-11 18:04:47 +04:00
|
|
|
if (con == NULL) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-12-08 12:57:30 +01:00
|
|
|
|
2015-03-13 12:21:14 +01:00
|
|
|
return con->hw_ops->ui_info != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-27 18:57:48 +04:00
|
|
|
const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con)
|
|
|
|
|
{
|
2023-09-12 10:13:01 +04:00
|
|
|
assert(dpy_ui_info_supported(con));
|
|
|
|
|
|
2020-09-27 18:57:48 +04:00
|
|
|
return &con->ui_info;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-13 20:39:11 +04:00
|
|
|
int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info, bool delay)
|
2014-01-24 17:38:20 +01:00
|
|
|
{
|
2015-03-13 12:21:14 +01:00
|
|
|
if (!dpy_ui_info_supported(con)) {
|
2015-03-12 12:51:13 +01:00
|
|
|
return -1;
|
2014-01-24 17:38:20 +01:00
|
|
|
}
|
2016-05-30 10:41:13 +02:00
|
|
|
if (memcmp(&con->ui_info, info, sizeof(con->ui_info)) == 0) {
|
|
|
|
|
/* nothing changed -- ignore */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2015-03-12 12:51:13 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Typically we get a flood of these as the user resizes the window.
|
|
|
|
|
* Wait until the dust has settled (one second without updates), then
|
|
|
|
|
* go notify the guest.
|
|
|
|
|
*/
|
2016-05-30 10:41:13 +02:00
|
|
|
con->ui_info = *info;
|
2021-04-13 20:39:11 +04:00
|
|
|
timer_mod(con->ui_timer,
|
|
|
|
|
qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + (delay ? 1000 : 0));
|
2015-03-12 12:51:13 +01:00
|
|
|
return 0;
|
2014-01-24 17:38:20 +01:00
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2021-02-20 16:23:03 +04:00
|
|
|
int width = qemu_console_get_width(con, x + w);
|
|
|
|
|
int height = qemu_console_get_height(con, y + h);
|
2012-11-13 14:51:41 +01:00
|
|
|
|
|
|
|
|
x = MAX(x, 0);
|
|
|
|
|
y = MAX(y, 0);
|
|
|
|
|
x = MIN(x, width);
|
|
|
|
|
y = MIN(y, height);
|
|
|
|
|
w = MIN(w, width - x);
|
|
|
|
|
h = MIN(h, height - y);
|
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2022-02-17 15:07:21 +04:00
|
|
|
dpy_gfx_update_texture(con, con->surface, x, y, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_gfx_update) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_gfx_update(dcl, x, y, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-27 17:11:05 +08:00
|
|
|
void dpy_gfx_update_full(QemuConsole *con)
|
|
|
|
|
{
|
2021-02-20 16:23:03 +04:00
|
|
|
int w = qemu_console_get_width(con, 0);
|
|
|
|
|
int h = qemu_console_get_height(con, 0);
|
|
|
|
|
|
|
|
|
|
dpy_gfx_update(con, 0, 0, w, h);
|
2018-04-27 17:11:05 +08:00
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_gfx_replace_surface(QemuConsole *con,
|
2013-02-28 10:48:02 +01:00
|
|
|
DisplaySurface *surface)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2021-02-25 19:13:15 +09:00
|
|
|
static const char placeholder_msg[] = "Display output is not active.";
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-12 14:39:22 +01:00
|
|
|
DisplaySurface *old_surface = con->surface;
|
2023-06-27 15:44:51 -07:00
|
|
|
DisplaySurface *new_surface = surface;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2021-02-25 19:13:15 +09:00
|
|
|
int width;
|
|
|
|
|
int height;
|
2013-02-28 10:48:02 +01:00
|
|
|
|
2021-02-25 19:13:15 +09:00
|
|
|
if (!surface) {
|
|
|
|
|
if (old_surface) {
|
|
|
|
|
width = surface_width(old_surface);
|
|
|
|
|
height = surface_height(old_surface);
|
|
|
|
|
} else {
|
|
|
|
|
width = 640;
|
|
|
|
|
height = 480;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-27 15:44:51 -07:00
|
|
|
new_surface = qemu_create_placeholder_surface(width, height, placeholder_msg);
|
2021-02-25 19:13:15 +09:00
|
|
|
}
|
|
|
|
|
|
2023-06-27 15:44:51 -07:00
|
|
|
assert(old_surface != new_surface);
|
2017-04-06 14:05:11 +02:00
|
|
|
|
2021-02-20 16:23:03 +04:00
|
|
|
con->scanout.kind = SCANOUT_SURFACE;
|
2023-06-27 15:44:51 -07:00
|
|
|
con->surface = new_surface;
|
|
|
|
|
dpy_gfx_create_texture(con, new_surface);
|
2013-03-15 15:45:54 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2023-06-27 15:44:51 -07:00
|
|
|
displaychangelistener_gfx_switch(dcl, new_surface, surface ? FALSE : TRUE);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
2022-02-17 15:07:21 +04:00
|
|
|
dpy_gfx_destroy_texture(con, old_surface);
|
2013-02-28 10:48:02 +01:00
|
|
|
qemu_free_displaysurface(old_surface);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
|
2014-07-07 16:39:05 +10:00
|
|
|
bool dpy_gfx_check_format(QemuConsole *con,
|
|
|
|
|
pixman_format_code_t format)
|
|
|
|
|
{
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
|
|
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
|
if (dcl->con && dcl->con != con) {
|
|
|
|
|
/* dcl bound to another console -> skip */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (dcl->ops->dpy_gfx_check_format) {
|
|
|
|
|
if (!dcl->ops->dpy_gfx_check_format(dcl, format)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2021-03-03 19:46:40 +01:00
|
|
|
/* default is to allow native 32 bpp only */
|
2014-07-07 16:39:05 +10:00
|
|
|
if (format != qemu_default_pixman_format(32, true)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 22:48:30 +02:00
|
|
|
static void dpy_refresh(DisplayState *s)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
|
if (dcl->ops->dpy_refresh) {
|
2017-06-14 10:45:38 +02:00
|
|
|
dcl->ops->dpy_refresh(dcl);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_cursor(QemuConsole *con, int x, int y)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_text_cursor) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_text_cursor(dcl, x, y);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_text_update) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_text_update(dcl, x, y, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_resize(QemuConsole *con, int w, int h)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2015-04-09 02:04:13 +08:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
if (!qemu_console_is_visible(con)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_text_resize) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_text_resize(dcl, w, h);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:03 +04:00
|
|
|
void dpy_mouse_set(QemuConsole *c, int x, int y, int on)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2023-08-30 13:38:03 +04:00
|
|
|
QemuGraphicConsole *con = QEMU_GRAPHIC_CONSOLE(c);
|
|
|
|
|
DisplayState *s = c->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2023-01-17 15:40:58 +04:00
|
|
|
con->cursor_x = x;
|
|
|
|
|
con->cursor_y = y;
|
|
|
|
|
con->cursor_on = on;
|
2023-08-30 13:38:03 +04:00
|
|
|
if (!qemu_console_is_visible(c)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (c != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_mouse_set) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_mouse_set(dcl, x, y, on);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:03 +04:00
|
|
|
void dpy_cursor_define(QemuConsole *c, QEMUCursor *cursor)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2023-08-30 13:38:03 +04:00
|
|
|
QemuGraphicConsole *con = QEMU_GRAPHIC_CONSOLE(c);
|
|
|
|
|
DisplayState *s = c->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2023-01-17 15:24:40 +04:00
|
|
|
cursor_unref(con->cursor);
|
|
|
|
|
con->cursor = cursor_ref(cursor);
|
2023-08-30 13:38:03 +04:00
|
|
|
if (!qemu_console_is_visible(c)) {
|
2013-03-12 14:39:22 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (c != dcl->con) {
|
2013-03-15 15:45:54 +01:00
|
|
|
continue;
|
|
|
|
|
}
|
2012-11-13 14:51:41 +01:00
|
|
|
if (dcl->ops->dpy_cursor_define) {
|
2013-03-01 13:03:04 +01:00
|
|
|
dcl->ops->dpy_cursor_define(dcl, cursor);
|
2012-11-13 14:51:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
bool dpy_cursor_define_supported(QemuConsole *con)
|
2012-11-13 14:51:41 +01:00
|
|
|
{
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplayState *s = con->ds;
|
2013-03-15 15:45:54 +01:00
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
|
|
|
|
if (dcl->ops->dpy_cursor_define) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
|
|
|
|
|
struct QEMUGLParams *qparams)
|
|
|
|
|
{
|
|
|
|
|
assert(con->gl);
|
|
|
|
|
return con->gl->ops->dpy_gl_ctx_create(con->gl, qparams);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx)
|
|
|
|
|
{
|
|
|
|
|
assert(con->gl);
|
|
|
|
|
con->gl->ops->dpy_gl_ctx_destroy(con->gl, ctx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx)
|
|
|
|
|
{
|
|
|
|
|
assert(con->gl);
|
|
|
|
|
return con->gl->ops->dpy_gl_ctx_make_current(con->gl, ctx);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-21 10:37:17 +01:00
|
|
|
void dpy_gl_scanout_disable(QemuConsole *con)
|
|
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2021-02-20 16:23:03 +04:00
|
|
|
if (con->scanout.kind != SCANOUT_SURFACE) {
|
|
|
|
|
con->scanout.kind = SCANOUT_NONE;
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2022-02-15 00:13:35 +04:00
|
|
|
if (dcl->ops->dpy_gl_scanout_disable) {
|
|
|
|
|
dcl->ops->dpy_gl_scanout_disable(dcl);
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
}
|
2017-02-21 10:37:17 +01:00
|
|
|
}
|
|
|
|
|
|
2017-02-21 10:37:16 +01:00
|
|
|
void dpy_gl_scanout_texture(QemuConsole *con,
|
|
|
|
|
uint32_t backing_id,
|
|
|
|
|
bool backing_y_0_top,
|
|
|
|
|
uint32_t backing_width,
|
|
|
|
|
uint32_t backing_height,
|
|
|
|
|
uint32_t x, uint32_t y,
|
2023-06-06 15:56:56 +04:00
|
|
|
uint32_t width, uint32_t height,
|
|
|
|
|
void *d3d_tex2d)
|
2014-07-11 13:56:51 +02:00
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2021-02-20 16:23:03 +04:00
|
|
|
con->scanout.kind = SCANOUT_TEXTURE;
|
|
|
|
|
con->scanout.texture = (ScanoutTexture) {
|
|
|
|
|
backing_id, backing_y_0_top, backing_width, backing_height,
|
2023-06-06 15:56:56 +04:00
|
|
|
x, y, width, height, d3d_tex2d,
|
2021-02-20 16:23:03 +04:00
|
|
|
};
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2022-02-15 00:13:35 +04:00
|
|
|
if (dcl->ops->dpy_gl_scanout_texture) {
|
|
|
|
|
dcl->ops->dpy_gl_scanout_texture(dcl, backing_id,
|
|
|
|
|
backing_y_0_top,
|
|
|
|
|
backing_width, backing_height,
|
2023-06-06 15:56:56 +04:00
|
|
|
x, y, width, height,
|
|
|
|
|
d3d_tex2d);
|
2022-02-15 00:13:35 +04:00
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
}
|
2014-07-11 13:56:51 +02:00
|
|
|
}
|
|
|
|
|
|
2017-10-10 15:54:48 +02:00
|
|
|
void dpy_gl_scanout_dmabuf(QemuConsole *con,
|
|
|
|
|
QemuDmaBuf *dmabuf)
|
|
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2021-02-20 16:23:03 +04:00
|
|
|
con->scanout.kind = SCANOUT_DMABUF;
|
|
|
|
|
con->scanout.dmabuf = dmabuf;
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2022-02-15 00:13:35 +04:00
|
|
|
if (dcl->ops->dpy_gl_scanout_dmabuf) {
|
|
|
|
|
dcl->ops->dpy_gl_scanout_dmabuf(dcl, dmabuf);
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
}
|
2017-10-10 15:54:48 +02:00
|
|
|
}
|
|
|
|
|
|
2018-02-20 12:04:31 +01:00
|
|
|
void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf,
|
|
|
|
|
bool have_hot, uint32_t hot_x, uint32_t hot_y)
|
2017-10-10 15:54:48 +02:00
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
2017-10-10 15:54:48 +02:00
|
|
|
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
if (dcl->ops->dpy_gl_cursor_dmabuf) {
|
|
|
|
|
dcl->ops->dpy_gl_cursor_dmabuf(dcl, dmabuf,
|
2018-02-20 12:04:31 +01:00
|
|
|
have_hot, hot_x, hot_y);
|
2021-01-26 00:00:30 +04:00
|
|
|
}
|
2018-02-20 12:04:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void dpy_gl_cursor_position(QemuConsole *con,
|
|
|
|
|
uint32_t pos_x, uint32_t pos_y)
|
|
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
2018-02-20 12:04:31 +01:00
|
|
|
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
if (dcl->ops->dpy_gl_cursor_position) {
|
|
|
|
|
dcl->ops->dpy_gl_cursor_position(dcl, pos_x, pos_y);
|
|
|
|
|
}
|
2017-10-10 15:54:48 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void dpy_gl_release_dmabuf(QemuConsole *con,
|
|
|
|
|
QemuDmaBuf *dmabuf)
|
|
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
2017-10-10 15:54:48 +02:00
|
|
|
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
if (dcl->ops->dpy_gl_release_dmabuf) {
|
|
|
|
|
dcl->ops->dpy_gl_release_dmabuf(dcl, dmabuf);
|
|
|
|
|
}
|
2017-10-10 15:54:48 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
void dpy_gl_update(QemuConsole *con,
|
|
|
|
|
uint32_t x, uint32_t y, uint32_t w, uint32_t h)
|
|
|
|
|
{
|
2021-01-26 00:00:30 +04:00
|
|
|
DisplayState *s = con->ds;
|
|
|
|
|
DisplayChangeListener *dcl;
|
|
|
|
|
|
2014-07-11 13:56:51 +02:00
|
|
|
assert(con->gl);
|
2021-03-11 12:11:37 +04:00
|
|
|
|
|
|
|
|
graphic_hw_gl_block(con, true);
|
2021-01-26 00:00:30 +04:00
|
|
|
QLIST_FOREACH(dcl, &s->listeners, next) {
|
2024-03-19 12:08:42 +09:00
|
|
|
if (con != dcl->con) {
|
2022-03-26 01:12:16 +09:00
|
|
|
continue;
|
|
|
|
|
}
|
2022-02-15 00:13:35 +04:00
|
|
|
if (dcl->ops->dpy_gl_update) {
|
|
|
|
|
dcl->ops->dpy_gl_update(dcl, x, y, w, h);
|
|
|
|
|
}
|
2021-01-26 00:00:30 +04:00
|
|
|
}
|
2021-03-11 12:11:37 +04:00
|
|
|
graphic_hw_gl_block(con, false);
|
2014-07-11 13:56:51 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-11 00:29:57 +01:00
|
|
|
/***********************************************************/
|
|
|
|
|
/* register display */
|
|
|
|
|
|
2013-03-07 17:08:29 +01:00
|
|
|
/* console.c internal use only */
|
|
|
|
|
static DisplayState *get_alloc_displaystate(void)
|
2010-02-11 00:29:57 +01:00
|
|
|
{
|
|
|
|
|
if (!display_state) {
|
2013-03-07 17:08:29 +01:00
|
|
|
display_state = g_new0(DisplayState, 1);
|
2010-02-11 00:29:57 +01:00
|
|
|
}
|
|
|
|
|
return display_state;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 17:08:29 +01:00
|
|
|
/*
|
|
|
|
|
* Called by main(), after creating QemuConsoles
|
|
|
|
|
* and before initializing ui (sdl/vnc/...).
|
|
|
|
|
*/
|
|
|
|
|
DisplayState *init_displaystate(void)
|
|
|
|
|
{
|
2013-06-25 10:49:31 +02:00
|
|
|
gchar *name;
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
2013-03-07 17:08:29 +01:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
2023-08-30 13:37:56 +04:00
|
|
|
/* Hook up into the qom tree here (not in object_new()), once
|
2013-06-25 10:49:31 +02:00
|
|
|
* all QemuConsoles are created and the order / numbering
|
|
|
|
|
* doesn't change any more */
|
2018-05-07 11:54:24 +02:00
|
|
|
name = g_strdup_printf("console[%d]", con->index);
|
2013-06-25 10:49:31 +02:00
|
|
|
object_property_add_child(container_get(object_get_root(), "/backend"),
|
2020-05-05 17:29:22 +02:00
|
|
|
name, OBJECT(con));
|
2013-06-25 10:49:31 +02:00
|
|
|
g_free(name);
|
2013-03-07 17:08:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return display_state;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-24 17:05:27 +02:00
|
|
|
void graphic_console_set_hwops(QemuConsole *con,
|
|
|
|
|
const GraphicHwOps *hw_ops,
|
|
|
|
|
void *opaque)
|
|
|
|
|
{
|
|
|
|
|
con->hw_ops = hw_ops;
|
|
|
|
|
con->hw = opaque;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-24 15:35:21 +01:00
|
|
|
QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
|
2013-04-17 10:21:27 +02:00
|
|
|
const GraphicHwOps *hw_ops,
|
2013-03-05 15:24:14 +01:00
|
|
|
void *opaque)
|
2004-07-14 17:28:59 +00:00
|
|
|
{
|
2013-04-25 12:10:45 +02:00
|
|
|
static const char noinit[] =
|
|
|
|
|
"Guest has not initialized the display (yet).";
|
2013-03-07 17:08:29 +01:00
|
|
|
int width = 640;
|
|
|
|
|
int height = 480;
|
2012-09-28 13:24:17 +02:00
|
|
|
QemuConsole *s;
|
2018-03-13 11:17:29 -06:00
|
|
|
DisplaySurface *surface;
|
2009-01-16 21:13:49 +00:00
|
|
|
|
2023-08-30 13:37:57 +04:00
|
|
|
s = qemu_graphic_console_lookup_unused();
|
2018-03-13 11:17:29 -06:00
|
|
|
if (s) {
|
|
|
|
|
trace_console_gfx_reuse(s->index);
|
2021-02-20 16:23:03 +04:00
|
|
|
width = qemu_console_get_width(s, 0);
|
|
|
|
|
height = qemu_console_get_height(s, 0);
|
2018-03-13 11:17:29 -06:00
|
|
|
} else {
|
|
|
|
|
trace_console_gfx_new();
|
2023-08-30 13:37:56 +04:00
|
|
|
s = (QemuConsole *)object_new(TYPE_QEMU_GRAPHIC_CONSOLE);
|
2018-03-13 11:17:29 -06:00
|
|
|
}
|
2023-08-30 13:38:03 +04:00
|
|
|
QEMU_GRAPHIC_CONSOLE(s)->head = head;
|
2014-09-24 17:05:27 +02:00
|
|
|
graphic_console_set_hwops(s, hw_ops, opaque);
|
2013-04-17 10:21:27 +02:00
|
|
|
if (dev) {
|
2020-07-07 18:05:54 +02:00
|
|
|
object_property_set_link(OBJECT(s), "device", OBJECT(dev),
|
2014-04-24 18:15:58 +04:00
|
|
|
&error_abort);
|
2013-04-17 10:21:27 +02:00
|
|
|
}
|
2009-01-16 19:04:14 +00:00
|
|
|
|
2021-02-25 19:13:14 +09:00
|
|
|
surface = qemu_create_placeholder_surface(width, height, noinit);
|
2018-03-13 11:17:29 -06:00
|
|
|
dpy_gfx_replace_surface(s, surface);
|
2021-03-11 11:56:58 +04:00
|
|
|
s->gl_unblock_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
|
|
|
|
|
graphic_hw_gl_unblock_timer, s);
|
2013-03-05 15:24:14 +01:00
|
|
|
return s;
|
2006-04-09 01:06:34 +00:00
|
|
|
}
|
|
|
|
|
|
2018-03-13 11:17:29 -06:00
|
|
|
static const GraphicHwOps unused_ops = {
|
|
|
|
|
/* no callbacks */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void graphic_console_close(QemuConsole *con)
|
|
|
|
|
{
|
|
|
|
|
static const char unplugged[] =
|
|
|
|
|
"Guest display has been unplugged";
|
|
|
|
|
DisplaySurface *surface;
|
2021-02-20 16:23:03 +04:00
|
|
|
int width = qemu_console_get_width(con, 640);
|
|
|
|
|
int height = qemu_console_get_height(con, 480);
|
2018-03-13 11:17:29 -06:00
|
|
|
|
|
|
|
|
trace_console_gfx_close(con->index);
|
2020-07-07 18:05:54 +02:00
|
|
|
object_property_set_link(OBJECT(con), "device", NULL, &error_abort);
|
2018-03-13 11:17:29 -06:00
|
|
|
graphic_console_set_hwops(con, &unused_ops, NULL);
|
|
|
|
|
|
|
|
|
|
if (con->gl) {
|
|
|
|
|
dpy_gl_scanout_disable(con);
|
|
|
|
|
}
|
2021-02-25 19:13:14 +09:00
|
|
|
surface = qemu_create_placeholder_surface(width, height, unplugged);
|
2018-03-13 11:17:29 -06:00
|
|
|
dpy_gfx_replace_surface(con, surface);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-19 12:08:40 +09:00
|
|
|
QemuConsole *qemu_console_lookup_default(void)
|
|
|
|
|
{
|
|
|
|
|
QemuConsole *con;
|
|
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
|
if (QEMU_IS_GRAPHIC_CONSOLE(con)) {
|
|
|
|
|
return con;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return QTAILQ_FIRST(&consoles);
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-15 15:45:54 +01:00
|
|
|
QemuConsole *qemu_console_lookup_by_index(unsigned int index)
|
|
|
|
|
{
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
|
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
|
if (con->index == index) {
|
|
|
|
|
return con;
|
|
|
|
|
}
|
2013-03-15 15:45:54 +01:00
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
return NULL;
|
2013-03-15 15:45:54 +01:00
|
|
|
}
|
|
|
|
|
|
2014-01-24 15:35:21 +01:00
|
|
|
QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head)
|
2013-04-18 07:30:40 +02:00
|
|
|
{
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
2013-04-18 07:30:40 +02:00
|
|
|
Object *obj;
|
2014-01-24 15:35:21 +01:00
|
|
|
uint32_t h;
|
2013-04-18 07:30:40 +02:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
|
|
|
|
obj = object_property_get_link(OBJECT(con),
|
2014-04-24 18:15:58 +04:00
|
|
|
"device", &error_abort);
|
2014-01-24 15:35:21 +01:00
|
|
|
if (DEVICE(obj) != dev) {
|
|
|
|
|
continue;
|
2013-04-18 07:30:40 +02:00
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
h = object_property_get_uint(OBJECT(con),
|
2017-06-07 20:36:32 +04:00
|
|
|
"head", &error_abort);
|
2014-01-24 15:35:21 +01:00
|
|
|
if (h != head) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
return con;
|
2013-04-18 07:30:40 +02:00
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 11:45:43 +01:00
|
|
|
QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
|
|
|
|
|
uint32_t head, Error **errp)
|
|
|
|
|
{
|
|
|
|
|
DeviceState *dev;
|
|
|
|
|
QemuConsole *con;
|
|
|
|
|
|
|
|
|
|
dev = qdev_find_recursive(sysbus_get_default(), device_id);
|
|
|
|
|
if (dev == NULL) {
|
|
|
|
|
error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
|
|
|
|
|
"Device '%s' not found", device_id);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
con = qemu_console_lookup_by_device(dev, head);
|
|
|
|
|
if (con == NULL) {
|
|
|
|
|
error_setg(errp, "Device %s (head %d) is not bound to a QemuConsole",
|
|
|
|
|
device_id, head);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return con;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:37:57 +04:00
|
|
|
static QemuConsole *qemu_graphic_console_lookup_unused(void)
|
2018-03-13 11:17:29 -06:00
|
|
|
{
|
2018-05-07 11:54:24 +02:00
|
|
|
QemuConsole *con;
|
2018-03-13 11:17:29 -06:00
|
|
|
Object *obj;
|
|
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
2023-08-30 13:37:57 +04:00
|
|
|
if (!QEMU_IS_GRAPHIC_CONSOLE(con) || con->hw_ops != &unused_ops) {
|
2018-03-13 11:17:29 -06:00
|
|
|
continue;
|
|
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
obj = object_property_get_link(OBJECT(con),
|
2018-03-13 11:17:29 -06:00
|
|
|
"device", &error_abort);
|
|
|
|
|
if (obj != NULL) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2018-05-07 11:54:24 +02:00
|
|
|
return con;
|
2018-03-13 11:17:29 -06:00
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-17 15:24:40 +04:00
|
|
|
QEMUCursor *qemu_console_get_cursor(QemuConsole *con)
|
|
|
|
|
{
|
2023-08-30 13:38:03 +04:00
|
|
|
return QEMU_IS_GRAPHIC_CONSOLE(con) ? QEMU_GRAPHIC_CONSOLE(con)->cursor : NULL;
|
2023-01-17 15:24:40 +04:00
|
|
|
}
|
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
bool qemu_console_is_visible(QemuConsole *con)
|
2006-04-09 01:06:34 +00:00
|
|
|
{
|
2024-03-19 12:08:42 +09:00
|
|
|
return con->dcls > 0;
|
2004-07-14 17:28:59 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-14 14:27:08 +01:00
|
|
|
bool qemu_console_is_graphic(QemuConsole *con)
|
2008-09-24 03:32:33 +00:00
|
|
|
{
|
2023-08-30 13:37:54 +04:00
|
|
|
return con && QEMU_IS_GRAPHIC_CONSOLE(con);
|
2013-03-14 14:27:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool qemu_console_is_fixedsize(QemuConsole *con)
|
|
|
|
|
{
|
2023-08-30 13:37:54 +04:00
|
|
|
return con && (QEMU_IS_GRAPHIC_CONSOLE(con) || QEMU_IS_FIXED_TEXT_CONSOLE(con));
|
2008-09-24 03:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 09:50:27 +02:00
|
|
|
bool qemu_console_is_gl_blocked(QemuConsole *con)
|
|
|
|
|
{
|
|
|
|
|
assert(con != NULL);
|
|
|
|
|
return con->gl_block;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-13 16:49:58 +02:00
|
|
|
static bool qemu_graphic_console_is_multihead(QemuGraphicConsole *c)
|
2022-06-15 06:35:14 +00:00
|
|
|
{
|
|
|
|
|
QemuConsole *con;
|
|
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(con, &consoles, next) {
|
2023-09-13 16:49:58 +02:00
|
|
|
QemuGraphicConsole *candidate;
|
|
|
|
|
|
2023-09-13 16:49:57 +02:00
|
|
|
if (!QEMU_IS_GRAPHIC_CONSOLE(con)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2023-09-13 16:49:58 +02:00
|
|
|
|
|
|
|
|
candidate = QEMU_GRAPHIC_CONSOLE(con);
|
|
|
|
|
if (candidate->device != c->device) {
|
2022-06-15 06:35:14 +00:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-13 16:49:59 +02:00
|
|
|
if (candidate->head != c->head) {
|
2022-06-15 06:35:14 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-17 10:41:08 +01:00
|
|
|
char *qemu_console_get_label(QemuConsole *con)
|
|
|
|
|
{
|
2023-08-30 13:37:54 +04:00
|
|
|
if (QEMU_IS_GRAPHIC_CONSOLE(con)) {
|
2023-08-30 13:38:03 +04:00
|
|
|
QemuGraphicConsole *c = QEMU_GRAPHIC_CONSOLE(con);
|
|
|
|
|
if (c->device) {
|
2022-06-15 06:35:14 +00:00
|
|
|
DeviceState *dev;
|
|
|
|
|
bool multihead;
|
|
|
|
|
|
2023-08-30 13:38:03 +04:00
|
|
|
dev = DEVICE(c->device);
|
2023-09-13 16:49:58 +02:00
|
|
|
multihead = qemu_graphic_console_is_multihead(c);
|
2022-06-15 06:35:14 +00:00
|
|
|
if (multihead) {
|
|
|
|
|
return g_strdup_printf("%s.%d", dev->id ?
|
|
|
|
|
dev->id :
|
2023-08-30 13:38:03 +04:00
|
|
|
object_get_typename(c->device),
|
|
|
|
|
c->head);
|
2022-06-15 06:35:14 +00:00
|
|
|
} else {
|
|
|
|
|
return g_strdup_printf("%s", dev->id ?
|
|
|
|
|
dev->id :
|
2023-08-30 13:38:03 +04:00
|
|
|
object_get_typename(c->device));
|
2022-06-15 06:35:14 +00:00
|
|
|
}
|
2015-02-17 10:41:08 +01:00
|
|
|
}
|
|
|
|
|
return g_strdup("VGA");
|
2023-08-30 13:38:02 +04:00
|
|
|
} else if (QEMU_IS_TEXT_CONSOLE(con)) {
|
2023-08-30 13:38:22 +04:00
|
|
|
const char *label = qemu_text_console_get_label(QEMU_TEXT_CONSOLE(con));
|
|
|
|
|
if (label) {
|
|
|
|
|
return g_strdup(label);
|
2015-02-17 10:41:08 +01:00
|
|
|
}
|
|
|
|
|
}
|
2023-08-30 13:38:02 +04:00
|
|
|
|
|
|
|
|
return g_strdup_printf("vc%d", con->index);
|
2015-02-17 10:41:08 +01:00
|
|
|
}
|
|
|
|
|
|
2013-11-28 09:58:18 +01:00
|
|
|
int qemu_console_get_index(QemuConsole *con)
|
|
|
|
|
{
|
|
|
|
|
return con ? con->index : -1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-24 15:35:21 +01:00
|
|
|
uint32_t qemu_console_get_head(QemuConsole *con)
|
|
|
|
|
{
|
2023-08-30 13:38:03 +04:00
|
|
|
if (con == NULL) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if (QEMU_IS_GRAPHIC_CONSOLE(con)) {
|
|
|
|
|
return QEMU_GRAPHIC_CONSOLE(con)->head;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
2014-01-24 15:35:21 +01:00
|
|
|
}
|
|
|
|
|
|
2013-11-28 09:58:18 +01:00
|
|
|
int qemu_console_get_width(QemuConsole *con, int fallback)
|
|
|
|
|
{
|
2021-02-20 16:23:03 +04:00
|
|
|
if (con == NULL) {
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
|
|
|
|
switch (con->scanout.kind) {
|
|
|
|
|
case SCANOUT_DMABUF:
|
|
|
|
|
return con->scanout.dmabuf->width;
|
|
|
|
|
case SCANOUT_TEXTURE:
|
|
|
|
|
return con->scanout.texture.width;
|
|
|
|
|
case SCANOUT_SURFACE:
|
|
|
|
|
return surface_width(con->surface);
|
|
|
|
|
default:
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
2013-11-28 09:58:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int qemu_console_get_height(QemuConsole *con, int fallback)
|
|
|
|
|
{
|
2021-02-20 16:23:03 +04:00
|
|
|
if (con == NULL) {
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
|
|
|
|
switch (con->scanout.kind) {
|
|
|
|
|
case SCANOUT_DMABUF:
|
|
|
|
|
return con->scanout.dmabuf->height;
|
|
|
|
|
case SCANOUT_TEXTURE:
|
|
|
|
|
return con->scanout.texture.height;
|
|
|
|
|
case SCANOUT_SURFACE:
|
|
|
|
|
return surface_height(con->surface);
|
|
|
|
|
default:
|
|
|
|
|
return fallback;
|
|
|
|
|
}
|
2013-11-28 09:58:18 +01:00
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:16 +04:00
|
|
|
int qemu_invalidate_text_consoles(void)
|
2012-07-10 22:00:55 +02:00
|
|
|
{
|
2014-05-22 11:27:13 +02:00
|
|
|
QemuConsole *s;
|
2018-05-07 11:54:24 +02:00
|
|
|
int count = 0;
|
2012-07-10 22:00:55 +02:00
|
|
|
|
2018-05-07 11:54:24 +02:00
|
|
|
QTAILQ_FOREACH(s, &consoles, next) {
|
2014-05-22 11:27:13 +02:00
|
|
|
if (qemu_console_is_graphic(s) ||
|
|
|
|
|
!qemu_console_is_visible(s)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
count++;
|
|
|
|
|
graphic_hw_invalidate(s);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 13:38:16 +04:00
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void qemu_console_resize(QemuConsole *s, int width, int height)
|
2008-07-01 16:24:38 +00:00
|
|
|
{
|
2022-07-25 15:58:15 +04:00
|
|
|
DisplaySurface *surface = qemu_console_surface(s);
|
2013-03-12 14:39:22 +01:00
|
|
|
|
2023-08-30 13:37:54 +04:00
|
|
|
assert(QEMU_IS_GRAPHIC_CONSOLE(s));
|
2016-08-26 13:47:11 +04:00
|
|
|
|
2022-07-25 15:58:15 +04:00
|
|
|
if ((s->scanout.kind != SCANOUT_SURFACE ||
|
2024-02-08 01:20:25 +08:00
|
|
|
(surface && !is_buffer_shared(surface) && !is_placeholder(surface))) &&
|
2022-07-25 15:58:15 +04:00
|
|
|
qemu_console_get_width(s, -1) == width &&
|
2022-02-15 00:13:37 +04:00
|
|
|
qemu_console_get_height(s, -1) == height) {
|
2016-08-26 13:47:11 +04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-12 14:39:22 +01:00
|
|
|
surface = qemu_create_displaysurface(width, height);
|
|
|
|
|
dpy_gfx_replace_surface(s, surface);
|
2008-07-01 16:24:38 +00:00
|
|
|
}
|
2008-09-24 02:21:24 +00:00
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplaySurface *qemu_console_surface(QemuConsole *console)
|
|
|
|
|
{
|
2021-02-20 16:23:03 +04:00
|
|
|
switch (console->scanout.kind) {
|
|
|
|
|
case SCANOUT_SURFACE:
|
|
|
|
|
return console->surface;
|
|
|
|
|
default:
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2013-03-05 15:24:14 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-23 19:56:19 +00:00
|
|
|
PixelFormat qemu_default_pixelformat(int bpp)
|
|
|
|
|
{
|
2014-06-18 11:07:50 +02:00
|
|
|
pixman_format_code_t fmt = qemu_default_pixman_format(bpp, true);
|
|
|
|
|
PixelFormat pf = qemu_pixelformat_from_pixman(fmt);
|
2009-01-15 22:14:11 +00:00
|
|
|
return pf;
|
|
|
|
|
}
|
2013-03-05 23:21:32 +05:30
|
|
|
|
2018-03-01 11:05:35 +01:00
|
|
|
static QemuDisplay *dpys[DISPLAY_TYPE__MAX];
|
|
|
|
|
|
|
|
|
|
void qemu_display_register(QemuDisplay *ui)
|
|
|
|
|
{
|
|
|
|
|
assert(ui->type < DISPLAY_TYPE__MAX);
|
|
|
|
|
dpys[ui->type] = ui;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-01 11:05:40 +01:00
|
|
|
bool qemu_display_find_default(DisplayOptions *opts)
|
|
|
|
|
{
|
|
|
|
|
static DisplayType prio[] = {
|
2021-06-15 11:04:39 +02:00
|
|
|
#if defined(CONFIG_GTK)
|
2018-03-01 11:05:40 +01:00
|
|
|
DISPLAY_TYPE_GTK,
|
2021-06-15 11:04:39 +02:00
|
|
|
#endif
|
|
|
|
|
#if defined(CONFIG_SDL)
|
2018-03-01 11:05:40 +01:00
|
|
|
DISPLAY_TYPE_SDL,
|
2021-06-15 11:04:39 +02:00
|
|
|
#endif
|
|
|
|
|
#if defined(CONFIG_COCOA)
|
2018-03-01 11:05:40 +01:00
|
|
|
DISPLAY_TYPE_COCOA
|
2021-06-15 11:04:39 +02:00
|
|
|
#endif
|
2018-03-01 11:05:40 +01:00
|
|
|
};
|
|
|
|
|
int i;
|
|
|
|
|
|
2021-06-15 11:04:39 +02:00
|
|
|
for (i = 0; i < (int)ARRAY_SIZE(prio); i++) {
|
2018-03-01 11:05:41 +01:00
|
|
|
if (dpys[prio[i]] == NULL) {
|
2022-09-29 11:30:33 +02:00
|
|
|
Error *local_err = NULL;
|
|
|
|
|
int rv = ui_module_load(DisplayType_str(prio[i]), &local_err);
|
|
|
|
|
if (rv < 0) {
|
|
|
|
|
error_report_err(local_err);
|
|
|
|
|
}
|
2018-03-01 11:05:41 +01:00
|
|
|
}
|
2018-03-01 11:05:40 +01:00
|
|
|
if (dpys[prio[i]] == NULL) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
opts->type = prio[i];
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-01 11:05:35 +01:00
|
|
|
void qemu_display_early_init(DisplayOptions *opts)
|
|
|
|
|
{
|
|
|
|
|
assert(opts->type < DISPLAY_TYPE__MAX);
|
|
|
|
|
if (opts->type == DISPLAY_TYPE_NONE) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-03-01 11:05:41 +01:00
|
|
|
if (dpys[opts->type] == NULL) {
|
2022-09-29 11:30:33 +02:00
|
|
|
Error *local_err = NULL;
|
|
|
|
|
int rv = ui_module_load(DisplayType_str(opts->type), &local_err);
|
|
|
|
|
if (rv < 0) {
|
|
|
|
|
error_report_err(local_err);
|
|
|
|
|
}
|
2018-03-01 11:05:41 +01:00
|
|
|
}
|
2018-03-01 11:05:35 +01:00
|
|
|
if (dpys[opts->type] == NULL) {
|
|
|
|
|
error_report("Display '%s' is not available.",
|
2018-08-01 11:25:08 +02:00
|
|
|
DisplayType_str(opts->type));
|
2018-03-01 11:05:35 +01:00
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
if (dpys[opts->type]->early_init) {
|
|
|
|
|
dpys[opts->type]->early_init(opts);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void qemu_display_init(DisplayState *ds, DisplayOptions *opts)
|
|
|
|
|
{
|
|
|
|
|
assert(opts->type < DISPLAY_TYPE__MAX);
|
|
|
|
|
if (opts->type == DISPLAY_TYPE_NONE) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
assert(dpys[opts->type] != NULL);
|
|
|
|
|
dpys[opts->type]->init(ds, opts);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-05 23:18:08 +04:00
|
|
|
const char *qemu_display_get_vc(DisplayOptions *opts)
|
|
|
|
|
{
|
2023-08-30 13:38:28 +04:00
|
|
|
#ifdef CONFIG_PIXMAN
|
2023-11-08 17:25:22 +04:00
|
|
|
const char *vc = "vc:80Cx24C";
|
|
|
|
|
#else
|
|
|
|
|
const char *vc = NULL;
|
2023-08-30 13:38:28 +04:00
|
|
|
#endif
|
2023-11-08 17:25:22 +04:00
|
|
|
|
|
|
|
|
assert(opts->type < DISPLAY_TYPE__MAX);
|
|
|
|
|
if (dpys[opts->type] && dpys[opts->type]->vc) {
|
|
|
|
|
vc = dpys[opts->type]->vc;
|
2023-09-05 23:18:08 +04:00
|
|
|
}
|
2023-11-08 17:25:22 +04:00
|
|
|
return vc;
|
2023-09-05 23:18:08 +04:00
|
|
|
}
|
|
|
|
|
|
2020-01-08 15:47:02 +01:00
|
|
|
void qemu_display_help(void)
|
|
|
|
|
{
|
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
|
|
printf("Available display backend types:\n");
|
2020-01-20 20:29:47 +01:00
|
|
|
printf("none\n");
|
2020-01-08 15:47:02 +01:00
|
|
|
for (idx = DISPLAY_TYPE_NONE; idx < DISPLAY_TYPE__MAX; idx++) {
|
|
|
|
|
if (!dpys[idx]) {
|
2022-09-29 11:30:33 +02:00
|
|
|
Error *local_err = NULL;
|
|
|
|
|
int rv = ui_module_load(DisplayType_str(idx), &local_err);
|
|
|
|
|
if (rv < 0) {
|
|
|
|
|
error_report_err(local_err);
|
|
|
|
|
}
|
2020-01-08 15:47:02 +01:00
|
|
|
}
|
|
|
|
|
if (dpys[idx]) {
|
|
|
|
|
printf("%s\n", DisplayType_str(dpys[idx]->type));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|