]> git.proxmox.com Git - mirror_qemu.git/blame - ui/console.c
ui/shader: free associated programs
[mirror_qemu.git] / ui / console.c
CommitLineData
e7f0ad58
FB
1/*
2 * QEMU graphical console
5fafdf24 3 *
e7f0ad58 4 * Copyright (c) 2004 Fabrice Bellard
5fafdf24 5 *
e7f0ad58
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
e688df6b 24
e16f4c87 25#include "qemu/osdep.h"
28ecbaee 26#include "ui/console.h"
aa2beaa1 27#include "hw/qdev-core.h"
e688df6b 28#include "qapi/error.h"
9af23989 29#include "qapi/qapi-commands-ui.h"
0c9d0641 30#include "qemu/fifo8.h"
014b00cc 31#include "qemu/main-loop.h"
0b8fa32f 32#include "qemu/module.h"
922a01a0 33#include "qemu/option.h"
1de7afc9 34#include "qemu/timer.h"
014b00cc 35#include "chardev/char.h"
ac86048b 36#include "trace.h"
a77549b3 37#include "exec/memory.h"
c5f2bce5 38#include "io/channel-file.h"
db1015e9 39#include "qom/object.h"
e7f0ad58
FB
40
41#define DEFAULT_BACKSCROLL 512
bf1bed81 42#define CONSOLE_CURSOR_PERIOD 500
e7f0ad58 43
6d6f7c28
PB
44typedef struct TextAttributes {
45 uint8_t fgcol:4;
46 uint8_t bgcol:4;
47 uint8_t bold:1;
48 uint8_t uline:1;
49 uint8_t blink:1;
50 uint8_t invers:1;
51 uint8_t unvisible:1;
52} TextAttributes;
53
e7f0ad58
FB
54typedef struct TextCell {
55 uint8_t ch;
6d6f7c28 56 TextAttributes t_attrib;
e7f0ad58
FB
57} TextCell;
58
59#define MAX_ESC_PARAMS 3
60
61enum TTYState {
62 TTY_STATE_NORM,
63 TTY_STATE_ESC,
64 TTY_STATE_CSI,
65};
66
af3a9031
TS
67typedef enum {
68 GRAPHIC_CONSOLE,
c21bbcfa
AZ
69 TEXT_CONSOLE,
70 TEXT_CONSOLE_FIXED_SIZE
c227f099 71} console_type_t;
af3a9031 72
76ffb0b4 73struct QemuConsole {
95be0669
GH
74 Object parent;
75
f81bdefb 76 int index;
c227f099 77 console_type_t console_type;
e7f0ad58 78 DisplayState *ds;
321f048d 79 DisplaySurface *surface;
ebced091 80 DisplayScanout scanout;
284d1c6b 81 int dcls;
5e79d516 82 DisplayGLCtx *gl;
a4ddc314 83 int gl_block;
a9b1e471 84 QEMUTimer *gl_unblock_timer;
b3cb21b9 85 int window_id;
76ffb0b4 86
95219897 87 /* Graphic console state. */
aa2beaa1 88 Object *device;
5643706a 89 uint32_t head;
6f90f3d7 90 QemuUIInfo ui_info;
cf1ecc82 91 QEMUTimer *ui_timer;
380cd056 92 const GraphicHwOps *hw_ops;
95219897 93 void *hw;
76ffb0b4
GH
94
95 /* Text console state */
e7f0ad58
FB
96 int width;
97 int height;
98 int total_height;
99 int backscroll_height;
e7f0ad58 100 int x, y;
adb47967 101 int x_saved, y_saved;
e7f0ad58
FB
102 int y_displayed;
103 int y_base;
6d6f7c28
PB
104 TextAttributes t_attrib_default; /* default text attributes */
105 TextAttributes t_attrib; /* currently active text attributes */
e7f0ad58 106 TextCell *cells;
4d3b6f6e 107 int text_x[2], text_y[2], cursor_invalidate;
4104833f 108 int echo;
e7f0ad58 109
14778c20
PB
110 int update_x0;
111 int update_y0;
112 int update_x1;
113 int update_y1;
114
e7f0ad58
FB
115 enum TTYState state;
116 int esc_params[MAX_ESC_PARAMS];
117 int nb_esc_params;
118
0ec7b3e7 119 Chardev *chr;
e15d7371 120 /* fifo for key pressed */
0c9d0641 121 Fifo8 out_fifo;
0d9b90ce 122 CoQueue dump_queue;
cd6cd8fa
GH
123
124 QTAILQ_ENTRY(QemuConsole) next;
e7f0ad58
FB
125};
126
27be5587 127struct DisplayState {
1246b259 128 QEMUTimer *gui_timer;
0f7b2864
GH
129 uint64_t last_update;
130 uint64_t update_interval;
131 bool refreshing;
27be5587
GH
132 bool have_gfx;
133 bool have_text;
134
135 QLIST_HEAD(, DisplayChangeListener) listeners;
136};
137
98b50080 138static DisplayState *display_state;
76ffb0b4 139static QemuConsole *active_console;
eae3eb3e 140static QTAILQ_HEAD(, QemuConsole) consoles =
cd6cd8fa 141 QTAILQ_HEAD_INITIALIZER(consoles);
aea7947c
GH
142static bool cursor_visible_phase;
143static QEMUTimer *cursor_timer;
e7f0ad58 144
0ec7b3e7 145static void text_console_do_init(Chardev *chr, DisplayState *ds);
0f7b2864 146static void dpy_refresh(DisplayState *s);
5209089f 147static DisplayState *get_alloc_displaystate(void);
aea7947c
GH
148static void text_console_update_cursor_timer(void);
149static void text_console_update_cursor(void *opaque);
ebced091 150static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl);
4b7b661d
MAL
151static bool console_compatible_with(QemuConsole *con,
152 DisplayChangeListener *dcl, Error **errp);
64840c66 153
98a9ad90
GH
154static void gui_update(void *opaque)
155{
0f7b2864
GH
156 uint64_t interval = GUI_REFRESH_INTERVAL_IDLE;
157 uint64_t dcl_interval;
98a9ad90
GH
158 DisplayState *ds = opaque;
159 DisplayChangeListener *dcl;
cd6cd8fa 160 QemuConsole *con;
98a9ad90 161
0f7b2864 162 ds->refreshing = true;
98a9ad90 163 dpy_refresh(ds);
0f7b2864 164 ds->refreshing = false;
98a9ad90
GH
165
166 QLIST_FOREACH(dcl, &ds->listeners, next) {
0f7b2864
GH
167 dcl_interval = dcl->update_interval ?
168 dcl->update_interval : GUI_REFRESH_INTERVAL_DEFAULT;
169 if (interval > dcl_interval) {
170 interval = dcl_interval;
98a9ad90
GH
171 }
172 }
0f7b2864
GH
173 if (ds->update_interval != interval) {
174 ds->update_interval = interval;
cd6cd8fa
GH
175 QTAILQ_FOREACH(con, &consoles, next) {
176 if (con->hw_ops->update_interval) {
177 con->hw_ops->update_interval(con->hw, interval);
dea1b0bd
GH
178 }
179 }
0f7b2864
GH
180 trace_console_refresh(interval);
181 }
bc72ad67
AB
182 ds->last_update = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
183 timer_mod(ds->gui_timer, ds->last_update + interval);
98a9ad90
GH
184}
185
186static void gui_setup_refresh(DisplayState *ds)
187{
188 DisplayChangeListener *dcl;
189 bool need_timer = false;
190 bool have_gfx = false;
191 bool have_text = false;
192
193 QLIST_FOREACH(dcl, &ds->listeners, next) {
194 if (dcl->ops->dpy_refresh != NULL) {
195 need_timer = true;
196 }
197 if (dcl->ops->dpy_gfx_update != NULL) {
198 have_gfx = true;
199 }
200 if (dcl->ops->dpy_text_update != NULL) {
201 have_text = true;
202 }
203 }
204
205 if (need_timer && ds->gui_timer == NULL) {
bc72ad67
AB
206 ds->gui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, gui_update, ds);
207 timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
98a9ad90
GH
208 }
209 if (!need_timer && ds->gui_timer != NULL) {
bc72ad67 210 timer_free(ds->gui_timer);
98a9ad90
GH
211 ds->gui_timer = NULL;
212 }
213
214 ds->have_gfx = have_gfx;
215 ds->have_text = have_text;
216}
217
4d631621
MAL
218void graphic_hw_update_done(QemuConsole *con)
219{
6fc5183a
GH
220 if (con) {
221 qemu_co_queue_restart_all(&con->dump_queue);
222 }
4d631621
MAL
223}
224
1dbfa005 225void graphic_hw_update(QemuConsole *con)
95219897 226{
4d631621 227 bool async = false;
1cd8b948 228 con = con ? con : active_console;
1dbfa005 229 if (!con) {
1cd8b948 230 return;
1dbfa005 231 }
1cd8b948 232 if (con->hw_ops->gfx_update) {
380cd056 233 con->hw_ops->gfx_update(con->hw);
4d631621
MAL
234 async = con->hw_ops->gfx_update_async;
235 }
236 if (!async) {
237 graphic_hw_update_done(con);
1dbfa005 238 }
95219897
PB
239}
240
a9b1e471
MAL
241static void graphic_hw_gl_unblock_timer(void *opaque)
242{
243 warn_report("console: no gl-unblock within one second");
244}
245
bba19b88
GH
246void graphic_hw_gl_block(QemuConsole *con, bool block)
247{
a9b1e471 248 uint64_t timeout;
f607867c
GH
249 assert(con != NULL);
250
a4ddc314
MAL
251 if (block) {
252 con->gl_block++;
253 } else {
254 con->gl_block--;
bba19b88 255 }
a4ddc314
MAL
256 assert(con->gl_block >= 0);
257 if (!con->hw_ops->gl_block) {
258 return;
259 }
260 if ((block && con->gl_block != 1) || (!block && con->gl_block != 0)) {
261 return;
262 }
263 con->hw_ops->gl_block(con->hw, block);
a9b1e471
MAL
264
265 if (block) {
266 timeout = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
267 timeout += 1000; /* one sec */
268 timer_mod(con->gl_unblock_timer, timeout);
269 } else {
270 timer_del(con->gl_unblock_timer);
271 }
bba19b88
GH
272}
273
b3cb21b9
ST
274int qemu_console_get_window_id(QemuConsole *con)
275{
276 return con->window_id;
277}
278
279void qemu_console_set_window_id(QemuConsole *con, int window_id)
280{
281 con->window_id = window_id;
282}
283
1dbfa005 284void graphic_hw_invalidate(QemuConsole *con)
95219897 285{
1dbfa005
GH
286 if (!con) {
287 con = active_console;
288 }
380cd056
GH
289 if (con && con->hw_ops->invalidate) {
290 con->hw_ops->invalidate(con->hw);
1dbfa005 291 }
95219897
PB
292}
293
d00ec2fe 294static bool ppm_save(int fd, pixman_image_t *image, Error **errp)
95219897 295{
d00ec2fe
MAL
296 int width = pixman_image_get_width(image);
297 int height = pixman_image_get_height(image);
c5f2bce5
MAL
298 g_autoptr(Object) ioc = OBJECT(qio_channel_file_new_fd(fd));
299 g_autofree char *header = NULL;
300 g_autoptr(pixman_image_t) linebuf = NULL;
2c62f08d 301 int y;
2c62f08d 302
d00ec2fe 303 trace_ppm_save(fd, image);
c5f2bce5
MAL
304
305 header = g_strdup_printf("P6\n%d %d\n%d\n", width, height, 255);
306 if (qio_channel_write_all(QIO_CHANNEL(ioc),
307 header, strlen(header), errp) < 0) {
308 return false;
2c62f08d 309 }
c5f2bce5 310
2c62f08d
GH
311 linebuf = qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
312 for (y = 0; y < height; y++) {
d00ec2fe 313 qemu_pixman_linebuf_fill(linebuf, image, width, 0, y);
c5f2bce5
MAL
314 if (qio_channel_write_all(QIO_CHANNEL(ioc),
315 (char *)pixman_image_get_data(linebuf),
316 pixman_image_get_stride(linebuf), errp) < 0) {
317 return false;
318 }
f81bdefb
JK
319 }
320
c5f2bce5 321 return true;
2c62f08d
GH
322}
323
0d9b90ce
MAL
324static void graphic_hw_update_bh(void *con)
325{
326 graphic_hw_update(con);
327}
328
329/* Safety: coroutine-only, concurrent-coroutine safe, main thread only */
330void coroutine_fn
331qmp_screendump(const char *filename, bool has_device, const char *device,
332 bool has_head, int64_t head, Error **errp)
2c62f08d 333{
d00ec2fe 334 g_autoptr(pixman_image_t) image = NULL;
f771c544 335 QemuConsole *con;
2c62f08d 336 DisplaySurface *surface;
46e5841c 337 int fd;
2c62f08d 338
f771c544
TH
339 if (has_device) {
340 con = qemu_console_lookup_by_device_name(device, has_head ? head : 0,
341 errp);
342 if (!con) {
343 return;
344 }
345 } else {
346 if (has_head) {
347 error_setg(errp, "'head' must be specified together with 'device'");
348 return;
349 }
350 con = qemu_console_lookup_by_index(0);
351 if (!con) {
352 error_setg(errp, "There is no console to take a screendump from");
353 return;
354 }
33bcd98c 355 }
2c62f08d 356
0d9b90ce
MAL
357 if (qemu_co_queue_empty(&con->dump_queue)) {
358 /* Defer the update, it will restart the pending coroutines */
359 aio_bh_schedule_oneshot(qemu_get_aio_context(),
360 graphic_hw_update_bh, con);
361 }
362 qemu_co_queue_wait(&con->dump_queue, NULL);
363
364 /*
365 * All pending coroutines are woken up, while the BQL is held. No
366 * further graphic update are possible until it is released. Take
367 * an image ref before that.
368 */
2c62f08d 369 surface = qemu_console_surface(con);
08d9864f
MP
370 if (!surface) {
371 error_setg(errp, "no surface");
372 return;
373 }
d00ec2fe 374 image = pixman_image_ref(surface->image);
08d9864f 375
448058aa 376 fd = qemu_open_old(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
46e5841c
MAL
377 if (fd == -1) {
378 error_setg(errp, "failed to open file '%s': %s", filename,
379 strerror(errno));
380 return;
381 }
382
0d9b90ce
MAL
383 /*
384 * The image content could potentially be updated as the coroutine
385 * yields and releases the BQL. It could produce corrupted dump, but
386 * it should be otherwise safe.
387 */
d00ec2fe 388 if (!ppm_save(fd, image, errp)) {
53a61ecb 389 qemu_unlink(filename);
46e5841c 390 }
95219897
PB
391}
392
1dbfa005 393void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
4d3b6f6e 394{
1dbfa005
GH
395 if (!con) {
396 con = active_console;
397 }
380cd056
GH
398 if (con && con->hw_ops->text_update) {
399 con->hw_ops->text_update(con->hw, chardata);
400 }
4d3b6f6e
AZ
401}
402
1562e531
GH
403static void vga_fill_rect(QemuConsole *con,
404 int posx, int posy, int width, int height,
e27bd65a 405 pixman_color_t color)
e7f0ad58 406{
1562e531 407 DisplaySurface *surface = qemu_console_surface(con);
68db6dc5
GH
408 pixman_rectangle16_t rect = {
409 .x = posx, .y = posy, .width = width, .height = height
410 };
68db6dc5 411
68db6dc5 412 pixman_image_fill_rectangles(PIXMAN_OP_SRC, surface->image,
e27bd65a 413 &color, 1, &rect);
e7f0ad58
FB
414}
415
416/* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */
1562e531
GH
417static void vga_bitblt(QemuConsole *con,
418 int xs, int ys, int xd, int yd, int w, int h)
e7f0ad58 419{
1562e531 420 DisplaySurface *surface = qemu_console_surface(con);
68db6dc5
GH
421
422 pixman_image_composite(PIXMAN_OP_SRC,
423 surface->image, NULL, surface->image,
424 xs, ys, 0, 0, xd, yd, w, h);
e7f0ad58
FB
425}
426
427/***********************************************************/
428/* basic char display */
429
430#define FONT_HEIGHT 16
431#define FONT_WIDTH 8
432
433#include "vgafont.h"
434
e27bd65a
GH
435#define QEMU_RGB(r, g, b) \
436 { .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff }
437
438static const pixman_color_t color_table_rgb[2][8] = {
6d6f7c28 439 { /* dark */
4083733d
OH
440 [QEMU_COLOR_BLACK] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
441 [QEMU_COLOR_BLUE] = QEMU_RGB(0x00, 0x00, 0xaa), /* blue */
442 [QEMU_COLOR_GREEN] = QEMU_RGB(0x00, 0xaa, 0x00), /* green */
443 [QEMU_COLOR_CYAN] = QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */
444 [QEMU_COLOR_RED] = QEMU_RGB(0xaa, 0x00, 0x00), /* red */
445 [QEMU_COLOR_MAGENTA] = QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */
446 [QEMU_COLOR_YELLOW] = QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */
447 [QEMU_COLOR_WHITE] = QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */
6d6f7c28
PB
448 },
449 { /* bright */
4083733d
OH
450 [QEMU_COLOR_BLACK] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
451 [QEMU_COLOR_BLUE] = QEMU_RGB(0x00, 0x00, 0xff), /* blue */
452 [QEMU_COLOR_GREEN] = QEMU_RGB(0x00, 0xff, 0x00), /* green */
453 [QEMU_COLOR_CYAN] = QEMU_RGB(0x00, 0xff, 0xff), /* cyan */
454 [QEMU_COLOR_RED] = QEMU_RGB(0xff, 0x00, 0x00), /* red */
455 [QEMU_COLOR_MAGENTA] = QEMU_RGB(0xff, 0x00, 0xff), /* magenta */
456 [QEMU_COLOR_YELLOW] = QEMU_RGB(0xff, 0xff, 0x00), /* yellow */
457 [QEMU_COLOR_WHITE] = QEMU_RGB(0xff, 0xff, 0xff), /* white */
6d6f7c28 458 }
e7f0ad58
FB
459};
460
1562e531 461static void vga_putcharxy(QemuConsole *s, int x, int y, int ch,
6d6f7c28 462 TextAttributes *t_attrib)
e7f0ad58 463{
7d6ba01c 464 static pixman_image_t *glyphs[256];
1562e531 465 DisplaySurface *surface = qemu_console_surface(s);
e27bd65a 466 pixman_color_t fgcol, bgcol;
6d6f7c28
PB
467
468 if (t_attrib->invers) {
cf6f0548
GH
469 bgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
470 fgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
6d6f7c28 471 } else {
cf6f0548
GH
472 fgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
473 bgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
6d6f7c28 474 }
e7f0ad58 475
7d6ba01c
GH
476 if (!glyphs[ch]) {
477 glyphs[ch] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, ch);
e7f0ad58 478 }
7d6ba01c 479 qemu_pixman_glyph_render(glyphs[ch], surface->image,
e27bd65a 480 &fgcol, &bgcol, x, y, FONT_WIDTH, FONT_HEIGHT);
e7f0ad58
FB
481}
482
76ffb0b4 483static void text_console_resize(QemuConsole *s)
e7f0ad58
FB
484{
485 TextCell *cells, *c, *c1;
486 int w1, x, y, last_width;
487
ebced091
MAL
488 assert(s->scanout.kind == SCANOUT_SURFACE);
489
e7f0ad58 490 last_width = s->width;
36671fbd
GH
491 s->width = surface_width(s->surface) / FONT_WIDTH;
492 s->height = surface_height(s->surface) / FONT_HEIGHT;
e7f0ad58
FB
493
494 w1 = last_width;
495 if (s->width < w1)
496 w1 = s->width;
497
5b8541c6 498 cells = g_new(TextCell, s->width * s->total_height + 1);
e7f0ad58
FB
499 for(y = 0; y < s->total_height; y++) {
500 c = &cells[y * s->width];
501 if (w1 > 0) {
502 c1 = &s->cells[y * last_width];
503 for(x = 0; x < w1; x++) {
504 *c++ = *c1++;
505 }
506 }
507 for(x = w1; x < s->width; x++) {
508 c->ch = ' ';
6d6f7c28 509 c->t_attrib = s->t_attrib_default;
e7f0ad58
FB
510 c++;
511 }
512 }
7267c094 513 g_free(s->cells);
e7f0ad58
FB
514 s->cells = cells;
515}
516
76ffb0b4 517static inline void text_update_xy(QemuConsole *s, int x, int y)
4d3b6f6e
AZ
518{
519 s->text_x[0] = MIN(s->text_x[0], x);
520 s->text_x[1] = MAX(s->text_x[1], x);
521 s->text_y[0] = MIN(s->text_y[0], y);
522 s->text_y[1] = MAX(s->text_y[1], y);
523}
524
76ffb0b4 525static void invalidate_xy(QemuConsole *s, int x, int y)
14778c20 526{
b35e3ba0
GH
527 if (!qemu_console_is_visible(s)) {
528 return;
529 }
14778c20
PB
530 if (s->update_x0 > x * FONT_WIDTH)
531 s->update_x0 = x * FONT_WIDTH;
532 if (s->update_y0 > y * FONT_HEIGHT)
533 s->update_y0 = y * FONT_HEIGHT;
534 if (s->update_x1 < (x + 1) * FONT_WIDTH)
535 s->update_x1 = (x + 1) * FONT_WIDTH;
536 if (s->update_y1 < (y + 1) * FONT_HEIGHT)
537 s->update_y1 = (y + 1) * FONT_HEIGHT;
538}
539
76ffb0b4 540static void update_xy(QemuConsole *s, int x, int y)
e7f0ad58
FB
541{
542 TextCell *c;
543 int y1, y2;
544
1562e531
GH
545 if (s->ds->have_text) {
546 text_update_xy(s, x, y);
547 }
4d3b6f6e 548
b35e3ba0
GH
549 y1 = (s->y_base + y) % s->total_height;
550 y2 = y1 - s->y_displayed;
551 if (y2 < 0) {
552 y2 += s->total_height;
553 }
554 if (y2 < s->height) {
5b8541c6
GH
555 if (x >= s->width) {
556 x = s->width - 1;
557 }
b35e3ba0
GH
558 c = &s->cells[y1 * s->width + x];
559 vga_putcharxy(s, x, y2, c->ch,
560 &(c->t_attrib));
561 invalidate_xy(s, x, y2);
e7f0ad58
FB
562 }
563}
564
76ffb0b4 565static void console_show_cursor(QemuConsole *s, int show)
e7f0ad58
FB
566{
567 TextCell *c;
568 int y, y1;
1562e531 569 int x = s->x;
e7f0ad58 570
1562e531
GH
571 if (s->ds->have_text) {
572 s->cursor_invalidate = 1;
573 }
4d3b6f6e 574
b35e3ba0
GH
575 if (x >= s->width) {
576 x = s->width - 1;
577 }
578 y1 = (s->y_base + s->y) % s->total_height;
579 y = y1 - s->y_displayed;
580 if (y < 0) {
581 y += s->total_height;
582 }
583 if (y < s->height) {
584 c = &s->cells[y1 * s->width + x];
aea7947c 585 if (show && cursor_visible_phase) {
b35e3ba0
GH
586 TextAttributes t_attrib = s->t_attrib_default;
587 t_attrib.invers = !(t_attrib.invers); /* invert fg and bg */
588 vga_putcharxy(s, x, y, c->ch, &t_attrib);
589 } else {
590 vga_putcharxy(s, x, y, c->ch, &(c->t_attrib));
e7f0ad58 591 }
b35e3ba0 592 invalidate_xy(s, x, y);
e7f0ad58
FB
593 }
594}
595
76ffb0b4 596static void console_refresh(QemuConsole *s)
e7f0ad58 597{
1562e531 598 DisplaySurface *surface = qemu_console_surface(s);
e7f0ad58
FB
599 TextCell *c;
600 int x, y, y1;
601
a93a4a22 602 if (s->ds->have_text) {
4d3b6f6e
AZ
603 s->text_x[0] = 0;
604 s->text_y[0] = 0;
605 s->text_x[1] = s->width - 1;
606 s->text_y[1] = s->height - 1;
607 s->cursor_invalidate = 1;
4d3b6f6e 608 }
e7f0ad58 609
b35e3ba0 610 vga_fill_rect(s, 0, 0, surface_width(surface), surface_height(surface),
4083733d 611 color_table_rgb[0][QEMU_COLOR_BLACK]);
b35e3ba0
GH
612 y1 = s->y_displayed;
613 for (y = 0; y < s->height; y++) {
614 c = s->cells + y1 * s->width;
615 for (x = 0; x < s->width; x++) {
616 vga_putcharxy(s, x, y, c->ch,
617 &(c->t_attrib));
618 c++;
619 }
620 if (++y1 == s->total_height) {
621 y1 = 0;
e7f0ad58 622 }
e7f0ad58 623 }
b35e3ba0
GH
624 console_show_cursor(s, 1);
625 dpy_gfx_update(s, 0, 0,
626 surface_width(surface), surface_height(surface));
e7f0ad58
FB
627}
628
81c0d5a6 629static void console_scroll(QemuConsole *s, int ydelta)
e7f0ad58 630{
e7f0ad58 631 int i, y1;
3b46e624 632
e7f0ad58
FB
633 if (ydelta > 0) {
634 for(i = 0; i < ydelta; i++) {
635 if (s->y_displayed == s->y_base)
636 break;
637 if (++s->y_displayed == s->total_height)
638 s->y_displayed = 0;
639 }
640 } else {
641 ydelta = -ydelta;
642 i = s->backscroll_height;
643 if (i > s->total_height - s->height)
644 i = s->total_height - s->height;
645 y1 = s->y_base - i;
646 if (y1 < 0)
647 y1 += s->total_height;
648 for(i = 0; i < ydelta; i++) {
649 if (s->y_displayed == y1)
650 break;
651 if (--s->y_displayed < 0)
652 s->y_displayed = s->total_height - 1;
653 }
654 }
655 console_refresh(s);
656}
657
76ffb0b4 658static void console_put_lf(QemuConsole *s)
e7f0ad58
FB
659{
660 TextCell *c;
661 int x, y1;
662
e7f0ad58
FB
663 s->y++;
664 if (s->y >= s->height) {
665 s->y = s->height - 1;
6d6f7c28 666
e7f0ad58
FB
667 if (s->y_displayed == s->y_base) {
668 if (++s->y_displayed == s->total_height)
669 s->y_displayed = 0;
670 }
671 if (++s->y_base == s->total_height)
672 s->y_base = 0;
673 if (s->backscroll_height < s->total_height)
674 s->backscroll_height++;
675 y1 = (s->y_base + s->height - 1) % s->total_height;
676 c = &s->cells[y1 * s->width];
677 for(x = 0; x < s->width; x++) {
678 c->ch = ' ';
6d6f7c28 679 c->t_attrib = s->t_attrib_default;
e7f0ad58
FB
680 c++;
681 }
b35e3ba0 682 if (s->y_displayed == s->y_base) {
1562e531 683 if (s->ds->have_text) {
4d3b6f6e
AZ
684 s->text_x[0] = 0;
685 s->text_y[0] = 0;
686 s->text_x[1] = s->width - 1;
687 s->text_y[1] = s->height - 1;
4d3b6f6e
AZ
688 }
689
b35e3ba0
GH
690 vga_bitblt(s, 0, FONT_HEIGHT, 0, 0,
691 s->width * FONT_WIDTH,
692 (s->height - 1) * FONT_HEIGHT);
693 vga_fill_rect(s, 0, (s->height - 1) * FONT_HEIGHT,
694 s->width * FONT_WIDTH, FONT_HEIGHT,
695 color_table_rgb[0][s->t_attrib_default.bgcol]);
696 s->update_x0 = 0;
697 s->update_y0 = 0;
698 s->update_x1 = s->width * FONT_WIDTH;
699 s->update_y1 = s->height * FONT_HEIGHT;
e7f0ad58
FB
700 }
701 }
702}
703
6d6f7c28
PB
704/* Set console attributes depending on the current escape codes.
705 * NOTE: I know this code is not very efficient (checking every color for it
706 * self) but it is more readable and better maintainable.
707 */
76ffb0b4 708static void console_handle_escape(QemuConsole *s)
6d6f7c28
PB
709{
710 int i;
711
6d6f7c28
PB
712 for (i=0; i<s->nb_esc_params; i++) {
713 switch (s->esc_params[i]) {
714 case 0: /* reset all console attributes to default */
715 s->t_attrib = s->t_attrib_default;
716 break;
717 case 1:
718 s->t_attrib.bold = 1;
719 break;
720 case 4:
721 s->t_attrib.uline = 1;
722 break;
723 case 5:
724 s->t_attrib.blink = 1;
725 break;
726 case 7:
727 s->t_attrib.invers = 1;
728 break;
729 case 8:
730 s->t_attrib.unvisible = 1;
731 break;
732 case 22:
733 s->t_attrib.bold = 0;
734 break;
735 case 24:
736 s->t_attrib.uline = 0;
737 break;
738 case 25:
739 s->t_attrib.blink = 0;
740 break;
741 case 27:
742 s->t_attrib.invers = 0;
743 break;
744 case 28:
745 s->t_attrib.unvisible = 0;
746 break;
747 /* set foreground color */
748 case 30:
4083733d 749 s->t_attrib.fgcol = QEMU_COLOR_BLACK;
6d6f7c28
PB
750 break;
751 case 31:
4083733d 752 s->t_attrib.fgcol = QEMU_COLOR_RED;
6d6f7c28
PB
753 break;
754 case 32:
4083733d 755 s->t_attrib.fgcol = QEMU_COLOR_GREEN;
6d6f7c28
PB
756 break;
757 case 33:
4083733d 758 s->t_attrib.fgcol = QEMU_COLOR_YELLOW;
6d6f7c28
PB
759 break;
760 case 34:
4083733d 761 s->t_attrib.fgcol = QEMU_COLOR_BLUE;
6d6f7c28
PB
762 break;
763 case 35:
4083733d 764 s->t_attrib.fgcol = QEMU_COLOR_MAGENTA;
6d6f7c28
PB
765 break;
766 case 36:
4083733d 767 s->t_attrib.fgcol = QEMU_COLOR_CYAN;
6d6f7c28
PB
768 break;
769 case 37:
4083733d 770 s->t_attrib.fgcol = QEMU_COLOR_WHITE;
6d6f7c28
PB
771 break;
772 /* set background color */
773 case 40:
4083733d 774 s->t_attrib.bgcol = QEMU_COLOR_BLACK;
6d6f7c28
PB
775 break;
776 case 41:
4083733d 777 s->t_attrib.bgcol = QEMU_COLOR_RED;
6d6f7c28
PB
778 break;
779 case 42:
4083733d 780 s->t_attrib.bgcol = QEMU_COLOR_GREEN;
6d6f7c28
PB
781 break;
782 case 43:
4083733d 783 s->t_attrib.bgcol = QEMU_COLOR_YELLOW;
6d6f7c28
PB
784 break;
785 case 44:
4083733d 786 s->t_attrib.bgcol = QEMU_COLOR_BLUE;
6d6f7c28
PB
787 break;
788 case 45:
4083733d 789 s->t_attrib.bgcol = QEMU_COLOR_MAGENTA;
6d6f7c28
PB
790 break;
791 case 46:
4083733d 792 s->t_attrib.bgcol = QEMU_COLOR_CYAN;
6d6f7c28
PB
793 break;
794 case 47:
4083733d 795 s->t_attrib.bgcol = QEMU_COLOR_WHITE;
6d6f7c28
PB
796 break;
797 }
798 }
799}
800
76ffb0b4 801static void console_clear_xy(QemuConsole *s, int x, int y)
adb47967
TS
802{
803 int y1 = (s->y_base + y) % s->total_height;
5b8541c6
GH
804 if (x >= s->width) {
805 x = s->width - 1;
806 }
adb47967
TS
807 TextCell *c = &s->cells[y1 * s->width + x];
808 c->ch = ' ';
809 c->t_attrib = s->t_attrib_default;
adb47967
TS
810 update_xy(s, x, y);
811}
812
58aa7d8e
RK
813static void console_put_one(QemuConsole *s, int ch)
814{
815 TextCell *c;
816 int y1;
817 if (s->x >= s->width) {
818 /* line wrap */
819 s->x = 0;
820 console_put_lf(s);
821 }
822 y1 = (s->y_base + s->y) % s->total_height;
823 c = &s->cells[y1 * s->width + s->x];
824 c->ch = ch;
825 c->t_attrib = s->t_attrib;
826 update_xy(s, s->x, s->y);
827 s->x++;
828}
829
830static void console_respond_str(QemuConsole *s, const char *buf)
831{
832 while (*buf) {
833 console_put_one(s, *buf);
834 buf++;
835 }
836}
837
3eea5498 838/* set cursor, checking bounds */
76ffb0b4 839static void set_cursor(QemuConsole *s, int x, int y)
3eea5498
IC
840{
841 if (x < 0) {
842 x = 0;
843 }
844 if (y < 0) {
845 y = 0;
846 }
847 if (y >= s->height) {
848 y = s->height - 1;
849 }
850 if (x >= s->width) {
851 x = s->width - 1;
852 }
853
854 s->x = x;
855 s->y = y;
856}
857
76ffb0b4 858static void console_putchar(QemuConsole *s, int ch)
e7f0ad58 859{
58aa7d8e 860 int i;
adb47967 861 int x, y;
58aa7d8e 862 char response[40];
e7f0ad58
FB
863
864 switch(s->state) {
865 case TTY_STATE_NORM:
866 switch(ch) {
6d6f7c28 867 case '\r': /* carriage return */
e7f0ad58
FB
868 s->x = 0;
869 break;
6d6f7c28 870 case '\n': /* newline */
e7f0ad58
FB
871 console_put_lf(s);
872 break;
6d6f7c28 873 case '\b': /* backspace */
5fafdf24 874 if (s->x > 0)
e15d7371 875 s->x--;
6d6f7c28
PB
876 break;
877 case '\t': /* tabspace */
878 if (s->x + (8 - (s->x % 8)) > s->width) {
bd468840 879 s->x = 0;
6d6f7c28
PB
880 console_put_lf(s);
881 } else {
882 s->x = s->x + (8 - (s->x % 8));
883 }
884 break;
885 case '\a': /* alert aka. bell */
886 /* TODO: has to be implemented */
887 break;
adb47967
TS
888 case 14:
889 /* SI (shift in), character set 0 (ignored) */
890 break;
891 case 15:
892 /* SO (shift out), character set 1 (ignored) */
893 break;
6d6f7c28 894 case 27: /* esc (introducing an escape sequence) */
e7f0ad58
FB
895 s->state = TTY_STATE_ESC;
896 break;
897 default:
58aa7d8e 898 console_put_one(s, ch);
e7f0ad58
FB
899 break;
900 }
901 break;
6d6f7c28 902 case TTY_STATE_ESC: /* check if it is a terminal escape sequence */
e7f0ad58
FB
903 if (ch == '[') {
904 for(i=0;i<MAX_ESC_PARAMS;i++)
905 s->esc_params[i] = 0;
906 s->nb_esc_params = 0;
907 s->state = TTY_STATE_CSI;
908 } else {
909 s->state = TTY_STATE_NORM;
910 }
911 break;
6d6f7c28 912 case TTY_STATE_CSI: /* handle escape sequence parameters */
e7f0ad58
FB
913 if (ch >= '0' && ch <= '9') {
914 if (s->nb_esc_params < MAX_ESC_PARAMS) {
c10600af
LE
915 int *param = &s->esc_params[s->nb_esc_params];
916 int digit = (ch - '0');
917
918 *param = (*param <= (INT_MAX - digit) / 10) ?
919 *param * 10 + digit : INT_MAX;
e7f0ad58
FB
920 }
921 } else {
3eea5498
IC
922 if (s->nb_esc_params < MAX_ESC_PARAMS)
923 s->nb_esc_params++;
7c336f9f 924 if (ch == ';' || ch == '?') {
e7f0ad58 925 break;
7c336f9f 926 }
5d28b0e9
SW
927 trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
928 ch, s->nb_esc_params);
e7f0ad58
FB
929 s->state = TTY_STATE_NORM;
930 switch(ch) {
adb47967
TS
931 case 'A':
932 /* move cursor up */
933 if (s->esc_params[0] == 0) {
934 s->esc_params[0] = 1;
935 }
3eea5498 936 set_cursor(s, s->x, s->y - s->esc_params[0]);
adb47967
TS
937 break;
938 case 'B':
939 /* move cursor down */
940 if (s->esc_params[0] == 0) {
941 s->esc_params[0] = 1;
942 }
3eea5498 943 set_cursor(s, s->x, s->y + s->esc_params[0]);
e7f0ad58
FB
944 break;
945 case 'C':
adb47967
TS
946 /* move cursor right */
947 if (s->esc_params[0] == 0) {
948 s->esc_params[0] = 1;
949 }
3eea5498 950 set_cursor(s, s->x + s->esc_params[0], s->y);
e7f0ad58 951 break;
adb47967
TS
952 case 'D':
953 /* move cursor left */
954 if (s->esc_params[0] == 0) {
955 s->esc_params[0] = 1;
956 }
3eea5498 957 set_cursor(s, s->x - s->esc_params[0], s->y);
adb47967
TS
958 break;
959 case 'G':
960 /* move cursor to column */
3eea5498 961 set_cursor(s, s->esc_params[0] - 1, s->y);
adb47967
TS
962 break;
963 case 'f':
964 case 'H':
965 /* move cursor to row, column */
3eea5498 966 set_cursor(s, s->esc_params[1] - 1, s->esc_params[0] - 1);
adb47967
TS
967 break;
968 case 'J':
969 switch (s->esc_params[0]) {
970 case 0:
971 /* clear to end of screen */
972 for (y = s->y; y < s->height; y++) {
973 for (x = 0; x < s->width; x++) {
974 if (y == s->y && x < s->x) {
975 continue;
976 }
977 console_clear_xy(s, x, y);
978 }
979 }
980 break;
981 case 1:
982 /* clear from beginning of screen */
983 for (y = 0; y <= s->y; y++) {
984 for (x = 0; x < s->width; x++) {
985 if (y == s->y && x > s->x) {
986 break;
987 }
988 console_clear_xy(s, x, y);
989 }
990 }
991 break;
992 case 2:
993 /* clear entire screen */
994 for (y = 0; y <= s->height; y++) {
995 for (x = 0; x < s->width; x++) {
996 console_clear_xy(s, x, y);
997 }
998 }
f94a950f 999 break;
adb47967 1000 }
95d8f9f4 1001 break;
e7f0ad58 1002 case 'K':
adb47967
TS
1003 switch (s->esc_params[0]) {
1004 case 0:
f94a950f
MA
1005 /* clear to eol */
1006 for(x = s->x; x < s->width; x++) {
adb47967 1007 console_clear_xy(s, x, s->y);
f94a950f
MA
1008 }
1009 break;
adb47967
TS
1010 case 1:
1011 /* clear from beginning of line */
5b8541c6 1012 for (x = 0; x <= s->x && x < s->width; x++) {
adb47967
TS
1013 console_clear_xy(s, x, s->y);
1014 }
1015 break;
1016 case 2:
1017 /* clear entire line */
1018 for(x = 0; x < s->width; x++) {
1019 console_clear_xy(s, x, s->y);
1020 }
f94a950f
MA
1021 break;
1022 }
adb47967
TS
1023 break;
1024 case 'm':
f94a950f
MA
1025 console_handle_escape(s);
1026 break;
adb47967 1027 case 'n':
58aa7d8e
RK
1028 switch (s->esc_params[0]) {
1029 case 5:
1030 /* report console status (always succeed)*/
1031 console_respond_str(s, "\033[0n");
1032 break;
1033 case 6:
1034 /* report cursor position */
1035 sprintf(response, "\033[%d;%dR",
1036 (s->y_base + s->y) % s->total_height + 1,
1037 s->x + 1);
1038 console_respond_str(s, response);
1039 break;
1040 }
adb47967
TS
1041 break;
1042 case 's':
1043 /* save cursor position */
1044 s->x_saved = s->x;
1045 s->y_saved = s->y;
1046 break;
1047 case 'u':
1048 /* restore cursor position */
1049 s->x = s->x_saved;
1050 s->y = s->y_saved;
1051 break;
1052 default:
5d28b0e9 1053 trace_console_putchar_unhandled(ch);
adb47967
TS
1054 break;
1055 }
1056 break;
e7f0ad58
FB
1057 }
1058 }
1059}
1060
ebced091 1061static void displaychangelistener_display_console(DisplayChangeListener *dcl,
4b7b661d
MAL
1062 QemuConsole *con,
1063 Error **errp)
ebced091
MAL
1064{
1065 static const char nodev[] =
1066 "This VM has no graphic display device.";
1067 static DisplaySurface *dummy;
1068
4b7b661d 1069 if (!con || !console_compatible_with(con, dcl, errp)) {
ebced091
MAL
1070 if (!dcl->ops->dpy_gfx_switch) {
1071 return;
1072 }
1073 if (!dummy) {
1074 dummy = qemu_create_placeholder_surface(640, 480, nodev);
1075 }
1076 dcl->ops->dpy_gfx_switch(dcl, dummy);
1077 return;
1078 }
1079
1080 if (con->scanout.kind == SCANOUT_DMABUF &&
1081 displaychangelistener_has_dmabuf(dcl)) {
1082 dcl->ops->dpy_gl_scanout_dmabuf(dcl, con->scanout.dmabuf);
1083 } else if (con->scanout.kind == SCANOUT_TEXTURE &&
1084 dcl->ops->dpy_gl_scanout_texture) {
1085 dcl->ops->dpy_gl_scanout_texture(dcl,
1086 con->scanout.texture.backing_id,
1087 con->scanout.texture.backing_y_0_top,
1088 con->scanout.texture.backing_width,
1089 con->scanout.texture.backing_height,
1090 con->scanout.texture.x,
1091 con->scanout.texture.y,
1092 con->scanout.texture.width,
1093 con->scanout.texture.height);
1094 } else if (con->scanout.kind == SCANOUT_SURFACE &&
1095 dcl->ops->dpy_gfx_switch) {
1096 dcl->ops->dpy_gfx_switch(dcl, con->surface);
1097 }
1098
1099 dcl->ops->dpy_gfx_update(dcl, 0, 0,
1100 qemu_console_get_width(con, 0),
1101 qemu_console_get_height(con, 0));
1102}
1103
e7f0ad58
FB
1104void console_select(unsigned int index)
1105{
284d1c6b 1106 DisplayChangeListener *dcl;
76ffb0b4 1107 QemuConsole *s;
6d6f7c28 1108
437fe106 1109 trace_console_select(index);
284d1c6b 1110 s = qemu_console_lookup_by_index(index);
e7f0ad58 1111 if (s) {
7d957bd8 1112 DisplayState *ds = s->ds;
bf1bed81 1113
e7f0ad58 1114 active_console = s;
a93a4a22 1115 if (ds->have_gfx) {
284d1c6b
GH
1116 QLIST_FOREACH(dcl, &ds->listeners, next) {
1117 if (dcl->con != NULL) {
1118 continue;
1119 }
4b7b661d 1120 displaychangelistener_display_console(dcl, s, NULL);
2e5567c9 1121 }
a93a4a22
GH
1122 }
1123 if (ds->have_text) {
c78f7137 1124 dpy_text_resize(s, s->width, s->height);
68f00996 1125 }
aea7947c 1126 text_console_update_cursor(NULL);
e7f0ad58
FB
1127 }
1128}
1129
db1015e9 1130struct VCChardev {
0ec7b3e7 1131 Chardev parent;
41ac54b2 1132 QemuConsole *console;
db1015e9
EH
1133};
1134typedef struct VCChardev VCChardev;
41ac54b2 1135
777357d7 1136#define TYPE_CHARDEV_VC "chardev-vc"
8110fa1d
EH
1137DECLARE_INSTANCE_CHECKER(VCChardev, VC_CHARDEV,
1138 TYPE_CHARDEV_VC)
777357d7 1139
5bf5adae 1140static int vc_chr_write(Chardev *chr, const uint8_t *buf, int len)
e7f0ad58 1141{
777357d7 1142 VCChardev *drv = VC_CHARDEV(chr);
41ac54b2 1143 QemuConsole *s = drv->console;
e7f0ad58
FB
1144 int i;
1145
b68e956a
MAL
1146 if (!s->ds) {
1147 return 0;
1148 }
1149
14778c20
PB
1150 s->update_x0 = s->width * FONT_WIDTH;
1151 s->update_y0 = s->height * FONT_HEIGHT;
1152 s->update_x1 = 0;
1153 s->update_y1 = 0;
e7f0ad58
FB
1154 console_show_cursor(s, 0);
1155 for(i = 0; i < len; i++) {
1156 console_putchar(s, buf[i]);
1157 }
1158 console_show_cursor(s, 1);
a93a4a22 1159 if (s->ds->have_gfx && s->update_x0 < s->update_x1) {
c78f7137 1160 dpy_gfx_update(s, s->update_x0, s->update_y0,
a93a4a22
GH
1161 s->update_x1 - s->update_x0,
1162 s->update_y1 - s->update_y0);
14778c20 1163 }
e7f0ad58
FB
1164 return len;
1165}
1166
ec222519 1167static void kbd_send_chars(QemuConsole *s)
e15d7371 1168{
0c9d0641 1169 uint32_t len, avail;
3b46e624 1170
909cda12 1171 len = qemu_chr_be_can_write(s->chr);
0c9d0641 1172 avail = fifo8_num_used(&s->out_fifo);
ec222519 1173 while (len > 0 && avail > 0) {
0c9d0641
VR
1174 const uint8_t *buf;
1175 uint32_t size;
1176
ec222519 1177 buf = fifo8_pop_buf(&s->out_fifo, MIN(len, avail), &size);
0c9d0641 1178 qemu_chr_be_write(s->chr, (uint8_t *)buf, size);
ec222519 1179 len = qemu_chr_be_can_write(s->chr);
0c9d0641 1180 avail -= size;
e15d7371 1181 }
e15d7371
FB
1182}
1183
e7f0ad58 1184/* called when an ascii key is pressed */
3f9a6e85 1185void kbd_put_keysym_console(QemuConsole *s, int keysym)
e7f0ad58 1186{
e7f0ad58
FB
1187 uint8_t buf[16], *q;
1188 int c;
0c9d0641 1189 uint32_t num_free;
e7f0ad58 1190
af3a9031 1191 if (!s || (s->console_type == GRAPHIC_CONSOLE))
e7f0ad58
FB
1192 return;
1193
1194 switch(keysym) {
1195 case QEMU_KEY_CTRL_UP:
81c0d5a6 1196 console_scroll(s, -1);
e7f0ad58
FB
1197 break;
1198 case QEMU_KEY_CTRL_DOWN:
81c0d5a6 1199 console_scroll(s, 1);
e7f0ad58
FB
1200 break;
1201 case QEMU_KEY_CTRL_PAGEUP:
81c0d5a6 1202 console_scroll(s, -10);
e7f0ad58
FB
1203 break;
1204 case QEMU_KEY_CTRL_PAGEDOWN:
81c0d5a6 1205 console_scroll(s, 10);
e7f0ad58
FB
1206 break;
1207 default:
e15d7371
FB
1208 /* convert the QEMU keysym to VT100 key string */
1209 q = buf;
1210 if (keysym >= 0xe100 && keysym <= 0xe11f) {
1211 *q++ = '\033';
1212 *q++ = '[';
1213 c = keysym - 0xe100;
1214 if (c >= 10)
1215 *q++ = '0' + (c / 10);
1216 *q++ = '0' + (c % 10);
1217 *q++ = '~';
1218 } else if (keysym >= 0xe120 && keysym <= 0xe17f) {
1219 *q++ = '\033';
1220 *q++ = '[';
1221 *q++ = keysym & 0xff;
4104833f 1222 } else if (s->echo && (keysym == '\r' || keysym == '\n')) {
5bf5adae 1223 vc_chr_write(s->chr, (const uint8_t *) "\r", 1);
4104833f 1224 *q++ = '\n';
e15d7371 1225 } else {
4104833f
PB
1226 *q++ = keysym;
1227 }
1228 if (s->echo) {
5bf5adae 1229 vc_chr_write(s->chr, buf, q - buf);
e15d7371 1230 }
014b00cc
VR
1231 num_free = fifo8_num_free(&s->out_fifo);
1232 fifo8_push_all(&s->out_fifo, buf, MIN(num_free, q - buf));
1233 kbd_send_chars(s);
e7f0ad58
FB
1234 break;
1235 }
1236}
1237
7fb1cf16 1238static const int qcode_to_keysym[Q_KEY_CODE__MAX] = {
50ef4679
GH
1239 [Q_KEY_CODE_UP] = QEMU_KEY_UP,
1240 [Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN,
1241 [Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT,
1242 [Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT,
1243 [Q_KEY_CODE_HOME] = QEMU_KEY_HOME,
1244 [Q_KEY_CODE_END] = QEMU_KEY_END,
1245 [Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP,
1246 [Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN,
1247 [Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE,
344aa283 1248 [Q_KEY_CODE_BACKSPACE] = QEMU_KEY_BACKSPACE,
50ef4679
GH
1249};
1250
da024b1e
GH
1251static const int ctrl_qcode_to_keysym[Q_KEY_CODE__MAX] = {
1252 [Q_KEY_CODE_UP] = QEMU_KEY_CTRL_UP,
1253 [Q_KEY_CODE_DOWN] = QEMU_KEY_CTRL_DOWN,
1254 [Q_KEY_CODE_RIGHT] = QEMU_KEY_CTRL_RIGHT,
1255 [Q_KEY_CODE_LEFT] = QEMU_KEY_CTRL_LEFT,
1256 [Q_KEY_CODE_HOME] = QEMU_KEY_CTRL_HOME,
1257 [Q_KEY_CODE_END] = QEMU_KEY_CTRL_END,
1258 [Q_KEY_CODE_PGUP] = QEMU_KEY_CTRL_PAGEUP,
1259 [Q_KEY_CODE_PGDN] = QEMU_KEY_CTRL_PAGEDOWN,
1260};
1261
1262bool kbd_put_qcode_console(QemuConsole *s, int qcode, bool ctrl)
50ef4679
GH
1263{
1264 int keysym;
1265
da024b1e 1266 keysym = ctrl ? ctrl_qcode_to_keysym[qcode] : qcode_to_keysym[qcode];
50ef4679
GH
1267 if (keysym == 0) {
1268 return false;
1269 }
1270 kbd_put_keysym_console(s, keysym);
1271 return true;
1272}
1273
bdef9724
GH
1274void kbd_put_string_console(QemuConsole *s, const char *str, int len)
1275{
1276 int i;
1277
1278 for (i = 0; i < len && str[i]; i++) {
1279 kbd_put_keysym_console(s, str[i]);
1280 }
1281}
1282
3f9a6e85
GH
1283void kbd_put_keysym(int keysym)
1284{
1285 kbd_put_keysym_console(active_console, keysym);
1286}
1287
4d3b6f6e
AZ
1288static void text_console_invalidate(void *opaque)
1289{
76ffb0b4 1290 QemuConsole *s = (QemuConsole *) opaque;
1562e531
GH
1291
1292 if (s->ds->have_text && s->console_type == TEXT_CONSOLE) {
68f00996
AL
1293 text_console_resize(s);
1294 }
4d3b6f6e
AZ
1295 console_refresh(s);
1296}
1297
c227f099 1298static void text_console_update(void *opaque, console_ch_t *chardata)
4d3b6f6e 1299{
76ffb0b4 1300 QemuConsole *s = (QemuConsole *) opaque;
4d3b6f6e
AZ
1301 int i, j, src;
1302
1303 if (s->text_x[0] <= s->text_x[1]) {
1304 src = (s->y_base + s->text_y[0]) * s->width;
1305 chardata += s->text_y[0] * s->width;
1306 for (i = s->text_y[0]; i <= s->text_y[1]; i ++)
4083733d
OH
1307 for (j = 0; j < s->width; j++, src++) {
1308 console_write_ch(chardata ++,
1309 ATTR2CHTYPE(s->cells[src].ch,
1310 s->cells[src].t_attrib.fgcol,
1311 s->cells[src].t_attrib.bgcol,
1312 s->cells[src].t_attrib.bold));
1313 }
c78f7137 1314 dpy_text_update(s, s->text_x[0], s->text_y[0],
a93a4a22 1315 s->text_x[1] - s->text_x[0], i - s->text_y[0]);
4d3b6f6e
AZ
1316 s->text_x[0] = s->width;
1317 s->text_y[0] = s->height;
1318 s->text_x[1] = 0;
1319 s->text_y[1] = 0;
1320 }
1321 if (s->cursor_invalidate) {
c78f7137 1322 dpy_text_cursor(s, s->x, s->y);
4d3b6f6e
AZ
1323 s->cursor_invalidate = 0;
1324 }
1325}
1326
afff2b15
KB
1327static QemuConsole *new_console(DisplayState *ds, console_type_t console_type,
1328 uint32_t head)
e7f0ad58 1329{
95be0669 1330 Object *obj;
76ffb0b4 1331 QemuConsole *s;
95219897 1332 int i;
e7f0ad58 1333
95be0669
GH
1334 obj = object_new(TYPE_QEMU_CONSOLE);
1335 s = QEMU_CONSOLE(obj);
0d9b90ce 1336 qemu_co_queue_init(&s->dump_queue);
afff2b15 1337 s->head = head;
aa2beaa1 1338 object_property_add_link(obj, "device", TYPE_DEVICE,
9561fda8 1339 (Object **)&s->device,
39f72ef9 1340 object_property_allow_set_link,
d2623129 1341 OBJ_PROP_LINK_STRONG);
836e1b38 1342 object_property_add_uint32_ptr(obj, "head", &s->head,
d2623129 1343 OBJ_PROP_FLAG_READ);
aa2beaa1 1344
af3a9031
TS
1345 if (!active_console || ((active_console->console_type != GRAPHIC_CONSOLE) &&
1346 (console_type == GRAPHIC_CONSOLE))) {
e7f0ad58 1347 active_console = s;
af3a9031 1348 }
e7f0ad58 1349 s->ds = ds;
af3a9031 1350 s->console_type = console_type;
41d004d8 1351 s->window_id = -1;
a1d2db08 1352
cd6cd8fa
GH
1353 if (QTAILQ_EMPTY(&consoles)) {
1354 s->index = 0;
1355 QTAILQ_INSERT_TAIL(&consoles, s, next);
2f181fbd 1356 } else if (console_type != GRAPHIC_CONSOLE || phase_check(PHASE_MACHINE_READY)) {
eae3eb3e 1357 QemuConsole *last = QTAILQ_LAST(&consoles);
cd6cd8fa
GH
1358 s->index = last->index + 1;
1359 QTAILQ_INSERT_TAIL(&consoles, s, next);
95219897 1360 } else {
9588d67e
GH
1361 /*
1362 * HACK: Put graphical consoles before text consoles.
1363 *
1364 * Only do that for coldplugged devices. After initial device
1365 * initialization we will not renumber the consoles any more.
1366 */
cd6cd8fa
GH
1367 QemuConsole *c = QTAILQ_FIRST(&consoles);
1368
1369 while (QTAILQ_NEXT(c, next) != NULL &&
1370 c->console_type == GRAPHIC_CONSOLE) {
1371 c = QTAILQ_NEXT(c, next);
1372 }
1373 if (c->console_type == GRAPHIC_CONSOLE) {
1374 /* have no text consoles */
1375 s->index = c->index + 1;
1376 QTAILQ_INSERT_AFTER(&consoles, c, s, next);
1377 } else {
1378 s->index = c->index;
1379 QTAILQ_INSERT_BEFORE(c, s, next);
1380 /* renumber text consoles */
1381 for (i = s->index + 1; c != NULL; c = QTAILQ_NEXT(c, next), i++) {
1382 c->index = i;
1383 }
95219897 1384 }
95219897
PB
1385 }
1386 return s;
1387}
1388
eb69442a 1389DisplaySurface *qemu_create_displaysurface(int width, int height)
ffe8b821 1390{
eb69442a 1391 DisplaySurface *surface = g_new0(DisplaySurface, 1);
69c77777 1392
eb69442a 1393 trace_displaysurface_create(surface, width, height);
30f1e661 1394 surface->format = PIXMAN_x8r8g8b8;
69c77777
GH
1395 surface->image = pixman_image_create_bits(surface->format,
1396 width, height,
30f1e661 1397 NULL, width * 4);
69c77777 1398 assert(surface->image != NULL);
30f1e661 1399 surface->flags = QEMU_ALLOCATED_FLAG;
98b50080 1400
537a4391
GH
1401 return surface;
1402}
1403
30f1e661
GH
1404DisplaySurface *qemu_create_displaysurface_from(int width, int height,
1405 pixman_format_code_t format,
1406 int linesize, uint8_t *data)
98b50080 1407{
69c77777 1408 DisplaySurface *surface = g_new0(DisplaySurface, 1);
98b50080 1409
30f1e661
GH
1410 trace_displaysurface_create_from(surface, width, height, format);
1411 surface->format = format;
69c77777
GH
1412 surface->image = pixman_image_create_bits(surface->format,
1413 width, height,
1414 (void *)data, linesize);
1415 assert(surface->image != NULL);
1416
98b50080
PB
1417 return surface;
1418}
1419
ca58b45f
GH
1420DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image)
1421{
1422 DisplaySurface *surface = g_new0(DisplaySurface, 1);
1423
1424 trace_displaysurface_create_pixman(surface);
1425 surface->format = pixman_image_get_format(image);
1426 surface->image = pixman_image_ref(image);
1427
1428 return surface;
1429}
1430
b5a087b0
AO
1431DisplaySurface *qemu_create_placeholder_surface(int w, int h,
1432 const char *msg)
d3002b04 1433{
521a580d 1434 DisplaySurface *surface = qemu_create_displaysurface(w, h);
4083733d
OH
1435 pixman_color_t bg = color_table_rgb[0][QEMU_COLOR_BLACK];
1436 pixman_color_t fg = color_table_rgb[0][QEMU_COLOR_WHITE];
d3002b04
GH
1437 pixman_image_t *glyph;
1438 int len, x, y, i;
1439
1440 len = strlen(msg);
521a580d
GH
1441 x = (w / FONT_WIDTH - len) / 2;
1442 y = (h / FONT_HEIGHT - 1) / 2;
d3002b04
GH
1443 for (i = 0; i < len; i++) {
1444 glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]);
1445 qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg,
1446 x+i, y, FONT_WIDTH, FONT_HEIGHT);
1447 qemu_pixman_image_unref(glyph);
1448 }
b5a087b0 1449 surface->flags |= QEMU_PLACEHOLDER_FLAG;
d3002b04
GH
1450 return surface;
1451}
1452
da229ef3 1453void qemu_free_displaysurface(DisplaySurface *surface)
98b50080 1454{
da229ef3 1455 if (surface == NULL) {
98b50080 1456 return;
187cd1d9 1457 }
da229ef3
GH
1458 trace_displaysurface_free(surface);
1459 qemu_pixman_image_unref(surface->image);
1460 g_free(surface);
98b50080
PB
1461}
1462
06020b95
GH
1463bool console_has_gl(QemuConsole *con)
1464{
1465 return con->gl != NULL;
1466}
1467
d0e137bc
MAL
1468static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl)
1469{
1470 if (dcl->ops->dpy_has_dmabuf) {
1471 return dcl->ops->dpy_has_dmabuf(dcl);
1472 }
1473
1474 if (dcl->ops->dpy_gl_scanout_dmabuf) {
1475 return true;
1476 }
1477
1478 return false;
1479}
1480
4b7b661d
MAL
1481static bool console_compatible_with(QemuConsole *con,
1482 DisplayChangeListener *dcl, Error **errp)
5983fdf1 1483{
5983fdf1
MAL
1484 int flags;
1485
1486 flags = con->hw_ops->get_flags ? con->hw_ops->get_flags(con->hw) : 0;
1487
a62c4a17
MAL
1488 if (console_has_gl(con) &&
1489 !con->gl->ops->dpy_gl_ctx_is_compatible_dcl(con->gl, dcl)) {
398d1c91
MAL
1490 error_setg(errp, "Display %s is incompatible with the GL context",
1491 dcl->ops->dpy_name);
1492 return false;
1493 }
1494
5983fdf1
MAL
1495 if (flags & GRAPHIC_FLAGS_GL &&
1496 !console_has_gl(con)) {
1497 error_setg(errp, "The console requires a GL context.");
1498 return false;
1499
1500 }
1501
1502 if (flags & GRAPHIC_FLAGS_DMABUF &&
1503 !displaychangelistener_has_dmabuf(dcl)) {
1504 error_setg(errp, "The console requires display DMABUF support.");
1505 return false;
1506 }
1507
1508 return true;
1509}
1510
5e79d516 1511void qemu_console_set_display_gl_ctx(QemuConsole *con, DisplayGLCtx *gl)
4f418149
MAL
1512{
1513 /* display has opengl support */
5e79d516
MAL
1514 assert(con);
1515 if (con->gl) {
1516 error_report("The console already has an OpenGL context.");
4f418149
MAL
1517 exit(1);
1518 }
5e79d516
MAL
1519 con->gl = gl;
1520}
1521
5209089f 1522void register_displaychangelistener(DisplayChangeListener *dcl)
7c20b4a3 1523{
284d1c6b
GH
1524 QemuConsole *con;
1525
e0665c3b
MAL
1526 assert(!dcl->ds);
1527
7c20b4a3 1528 trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
5209089f
GH
1529 dcl->ds = get_alloc_displaystate();
1530 QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next);
1531 gui_setup_refresh(dcl->ds);
284d1c6b
GH
1532 if (dcl->con) {
1533 dcl->con->dcls++;
1534 con = dcl->con;
1535 } else {
1536 con = active_console;
1537 }
4b7b661d 1538 displaychangelistener_display_console(dcl, con, dcl->con ? &error_fatal : NULL);
aea7947c 1539 text_console_update_cursor(NULL);
7c20b4a3
GH
1540}
1541
0f7b2864
GH
1542void update_displaychangelistener(DisplayChangeListener *dcl,
1543 uint64_t interval)
1544{
1545 DisplayState *ds = dcl->ds;
1546
1547 dcl->update_interval = interval;
1548 if (!ds->refreshing && ds->update_interval > interval) {
bc72ad67 1549 timer_mod(ds->gui_timer, ds->last_update + interval);
0f7b2864
GH
1550 }
1551}
1552
7c20b4a3
GH
1553void unregister_displaychangelistener(DisplayChangeListener *dcl)
1554{
1555 DisplayState *ds = dcl->ds;
1556 trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name);
284d1c6b
GH
1557 if (dcl->con) {
1558 dcl->con->dcls--;
1559 }
7c20b4a3 1560 QLIST_REMOVE(dcl, next);
777c5f1e 1561 dcl->ds = NULL;
7c20b4a3
GH
1562 gui_setup_refresh(ds);
1563}
1564
cf1ecc82
GH
1565static void dpy_set_ui_info_timer(void *opaque)
1566{
1567 QemuConsole *con = opaque;
1568
1569 con->hw_ops->ui_info(con->hw, con->head, &con->ui_info);
1570}
1571
b7fb49f0
GH
1572bool dpy_ui_info_supported(QemuConsole *con)
1573{
5c4b107f
GH
1574 if (con == NULL) {
1575 con = active_console;
1576 }
1577
b7fb49f0
GH
1578 return con->hw_ops->ui_info != NULL;
1579}
1580
5eaf1e48
MAL
1581const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con)
1582{
5c4b107f
GH
1583 if (con == NULL) {
1584 con = active_console;
1585 }
5eaf1e48
MAL
1586
1587 return &con->ui_info;
1588}
1589
ca19ef52 1590int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info, bool delay)
6f90f3d7 1591{
5c4b107f
GH
1592 if (con == NULL) {
1593 con = active_console;
1594 }
1185fde4 1595
b7fb49f0 1596 if (!dpy_ui_info_supported(con)) {
cf1ecc82 1597 return -1;
6f90f3d7 1598 }
1185fde4
GH
1599 if (memcmp(&con->ui_info, info, sizeof(con->ui_info)) == 0) {
1600 /* nothing changed -- ignore */
1601 return 0;
1602 }
cf1ecc82
GH
1603
1604 /*
1605 * Typically we get a flood of these as the user resizes the window.
1606 * Wait until the dust has settled (one second without updates), then
1607 * go notify the guest.
1608 */
1185fde4 1609 con->ui_info = *info;
ca19ef52
MAL
1610 timer_mod(con->ui_timer,
1611 qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + (delay ? 1000 : 0));
cf1ecc82 1612 return 0;
6f90f3d7
GH
1613}
1614
c78f7137 1615void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h)
7c20b4a3 1616{
c78f7137 1617 DisplayState *s = con->ds;
284d1c6b 1618 DisplayChangeListener *dcl;
ebced091
MAL
1619 int width = qemu_console_get_width(con, x + w);
1620 int height = qemu_console_get_height(con, y + h);
7c20b4a3
GH
1621
1622 x = MAX(x, 0);
1623 y = MAX(y, 0);
1624 x = MIN(x, width);
1625 y = MIN(y, height);
1626 w = MIN(w, width - x);
1627 h = MIN(h, height - y);
1628
81c0d5a6 1629 if (!qemu_console_is_visible(con)) {
321f048d
GH
1630 return;
1631 }
7c20b4a3 1632 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1633 if (con != (dcl->con ? dcl->con : active_console)) {
1634 continue;
1635 }
7c20b4a3 1636 if (dcl->ops->dpy_gfx_update) {
bc2ed970 1637 dcl->ops->dpy_gfx_update(dcl, x, y, w, h);
7c20b4a3
GH
1638 }
1639 }
1640}
1641
7cd0afe6
TZ
1642void dpy_gfx_update_full(QemuConsole *con)
1643{
ebced091
MAL
1644 int w = qemu_console_get_width(con, 0);
1645 int h = qemu_console_get_height(con, 0);
1646
1647 dpy_gfx_update(con, 0, 0, w, h);
7cd0afe6
TZ
1648}
1649
321f048d
GH
1650void dpy_gfx_replace_surface(QemuConsole *con,
1651 DisplaySurface *surface)
1652{
c821a58e 1653 static const char placeholder_msg[] = "Display output is not active.";
321f048d
GH
1654 DisplayState *s = con->ds;
1655 DisplaySurface *old_surface = con->surface;
284d1c6b 1656 DisplayChangeListener *dcl;
c821a58e
AO
1657 int width;
1658 int height;
1659
1660 if (!surface) {
1661 if (old_surface) {
1662 width = surface_width(old_surface);
1663 height = surface_height(old_surface);
1664 } else {
1665 width = 640;
1666 height = 480;
1667 }
1668
1669 surface = qemu_create_placeholder_surface(width, height, placeholder_msg);
1670 }
321f048d 1671
c821a58e 1672 assert(old_surface != surface);
6905b934 1673
ebced091 1674 con->scanout.kind = SCANOUT_SURFACE;
321f048d 1675 con->surface = surface;
284d1c6b
GH
1676 QLIST_FOREACH(dcl, &s->listeners, next) {
1677 if (con != (dcl->con ? dcl->con : active_console)) {
1678 continue;
1679 }
1680 if (dcl->ops->dpy_gfx_switch) {
1681 dcl->ops->dpy_gfx_switch(dcl, surface);
1682 }
321f048d 1683 }
da229ef3 1684 qemu_free_displaysurface(old_surface);
7c20b4a3
GH
1685}
1686
49743df3
BH
1687bool dpy_gfx_check_format(QemuConsole *con,
1688 pixman_format_code_t format)
1689{
1690 DisplayChangeListener *dcl;
1691 DisplayState *s = con->ds;
1692
1693 QLIST_FOREACH(dcl, &s->listeners, next) {
1694 if (dcl->con && dcl->con != con) {
1695 /* dcl bound to another console -> skip */
1696 continue;
1697 }
1698 if (dcl->ops->dpy_gfx_check_format) {
1699 if (!dcl->ops->dpy_gfx_check_format(dcl, format)) {
1700 return false;
1701 }
1702 } else {
75ae7c46 1703 /* default is to allow native 32 bpp only */
49743df3
BH
1704 if (format != qemu_default_pixman_format(32, true)) {
1705 return false;
1706 }
1707 }
1708 }
1709 return true;
1710}
1711
6075137d 1712static void dpy_refresh(DisplayState *s)
7c20b4a3 1713{
284d1c6b
GH
1714 DisplayChangeListener *dcl;
1715
7c20b4a3
GH
1716 QLIST_FOREACH(dcl, &s->listeners, next) {
1717 if (dcl->ops->dpy_refresh) {
3f8f1313 1718 dcl->ops->dpy_refresh(dcl);
7c20b4a3
GH
1719 }
1720 }
1721}
1722
c78f7137 1723void dpy_text_cursor(QemuConsole *con, int x, int y)
7c20b4a3 1724{
c78f7137 1725 DisplayState *s = con->ds;
284d1c6b 1726 DisplayChangeListener *dcl;
321f048d 1727
81c0d5a6 1728 if (!qemu_console_is_visible(con)) {
321f048d
GH
1729 return;
1730 }
7c20b4a3 1731 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1732 if (con != (dcl->con ? dcl->con : active_console)) {
1733 continue;
1734 }
7c20b4a3 1735 if (dcl->ops->dpy_text_cursor) {
bc2ed970 1736 dcl->ops->dpy_text_cursor(dcl, x, y);
7c20b4a3
GH
1737 }
1738 }
1739}
1740
c78f7137 1741void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
7c20b4a3 1742{
c78f7137 1743 DisplayState *s = con->ds;
284d1c6b 1744 DisplayChangeListener *dcl;
321f048d 1745
81c0d5a6 1746 if (!qemu_console_is_visible(con)) {
321f048d
GH
1747 return;
1748 }
7c20b4a3 1749 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1750 if (con != (dcl->con ? dcl->con : active_console)) {
1751 continue;
1752 }
7c20b4a3 1753 if (dcl->ops->dpy_text_update) {
bc2ed970 1754 dcl->ops->dpy_text_update(dcl, x, y, w, h);
7c20b4a3
GH
1755 }
1756 }
1757}
1758
c78f7137 1759void dpy_text_resize(QemuConsole *con, int w, int h)
7c20b4a3 1760{
c78f7137 1761 DisplayState *s = con->ds;
9425c004 1762 DisplayChangeListener *dcl;
321f048d 1763
81c0d5a6 1764 if (!qemu_console_is_visible(con)) {
321f048d
GH
1765 return;
1766 }
7c20b4a3 1767 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1768 if (con != (dcl->con ? dcl->con : active_console)) {
1769 continue;
1770 }
7c20b4a3 1771 if (dcl->ops->dpy_text_resize) {
bc2ed970 1772 dcl->ops->dpy_text_resize(dcl, w, h);
7c20b4a3
GH
1773 }
1774 }
1775}
1776
c78f7137 1777void dpy_mouse_set(QemuConsole *con, int x, int y, int on)
7c20b4a3 1778{
c78f7137 1779 DisplayState *s = con->ds;
284d1c6b 1780 DisplayChangeListener *dcl;
321f048d 1781
81c0d5a6 1782 if (!qemu_console_is_visible(con)) {
321f048d
GH
1783 return;
1784 }
7c20b4a3 1785 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1786 if (con != (dcl->con ? dcl->con : active_console)) {
1787 continue;
1788 }
7c20b4a3 1789 if (dcl->ops->dpy_mouse_set) {
bc2ed970 1790 dcl->ops->dpy_mouse_set(dcl, x, y, on);
7c20b4a3
GH
1791 }
1792 }
1793}
1794
c78f7137 1795void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor)
7c20b4a3 1796{
c78f7137 1797 DisplayState *s = con->ds;
284d1c6b 1798 DisplayChangeListener *dcl;
321f048d 1799
81c0d5a6 1800 if (!qemu_console_is_visible(con)) {
321f048d
GH
1801 return;
1802 }
7c20b4a3 1803 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1804 if (con != (dcl->con ? dcl->con : active_console)) {
1805 continue;
1806 }
7c20b4a3 1807 if (dcl->ops->dpy_cursor_define) {
bc2ed970 1808 dcl->ops->dpy_cursor_define(dcl, cursor);
7c20b4a3
GH
1809 }
1810 }
1811}
1812
c78f7137 1813bool dpy_cursor_define_supported(QemuConsole *con)
7c20b4a3 1814{
c78f7137 1815 DisplayState *s = con->ds;
284d1c6b
GH
1816 DisplayChangeListener *dcl;
1817
7c20b4a3
GH
1818 QLIST_FOREACH(dcl, &s->listeners, next) {
1819 if (dcl->ops->dpy_cursor_define) {
1820 return true;
1821 }
1822 }
1823 return false;
1824}
1825
06020b95
GH
1826QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
1827 struct QEMUGLParams *qparams)
1828{
1829 assert(con->gl);
1830 return con->gl->ops->dpy_gl_ctx_create(con->gl, qparams);
1831}
1832
1833void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx)
1834{
1835 assert(con->gl);
1836 con->gl->ops->dpy_gl_ctx_destroy(con->gl, ctx);
1837}
1838
1839int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx)
1840{
1841 assert(con->gl);
1842 return con->gl->ops->dpy_gl_ctx_make_current(con->gl, ctx);
1843}
1844
eaa92c76
GH
1845void dpy_gl_scanout_disable(QemuConsole *con)
1846{
7cc712e9
MAL
1847 DisplayState *s = con->ds;
1848 DisplayChangeListener *dcl;
1849
ebced091
MAL
1850 if (con->scanout.kind != SCANOUT_SURFACE) {
1851 con->scanout.kind = SCANOUT_NONE;
1852 }
7cc712e9 1853 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1854 if (dcl->ops->dpy_gl_scanout_disable) {
1855 dcl->ops->dpy_gl_scanout_disable(dcl);
1856 }
7cc712e9 1857 }
eaa92c76
GH
1858}
1859
f4c36bda
GH
1860void dpy_gl_scanout_texture(QemuConsole *con,
1861 uint32_t backing_id,
1862 bool backing_y_0_top,
1863 uint32_t backing_width,
1864 uint32_t backing_height,
1865 uint32_t x, uint32_t y,
1866 uint32_t width, uint32_t height)
06020b95 1867{
7cc712e9
MAL
1868 DisplayState *s = con->ds;
1869 DisplayChangeListener *dcl;
1870
ebced091
MAL
1871 con->scanout.kind = SCANOUT_TEXTURE;
1872 con->scanout.texture = (ScanoutTexture) {
1873 backing_id, backing_y_0_top, backing_width, backing_height,
1874 x, y, width, height
1875 };
7cc712e9 1876 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1877 if (dcl->ops->dpy_gl_scanout_texture) {
1878 dcl->ops->dpy_gl_scanout_texture(dcl, backing_id,
1879 backing_y_0_top,
1880 backing_width, backing_height,
1881 x, y, width, height);
1882 }
7cc712e9 1883 }
06020b95
GH
1884}
1885
4133fa71
GH
1886void dpy_gl_scanout_dmabuf(QemuConsole *con,
1887 QemuDmaBuf *dmabuf)
1888{
7cc712e9
MAL
1889 DisplayState *s = con->ds;
1890 DisplayChangeListener *dcl;
1891
ebced091
MAL
1892 con->scanout.kind = SCANOUT_DMABUF;
1893 con->scanout.dmabuf = dmabuf;
7cc712e9 1894 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1895 if (dcl->ops->dpy_gl_scanout_dmabuf) {
1896 dcl->ops->dpy_gl_scanout_dmabuf(dcl, dmabuf);
1897 }
7cc712e9 1898 }
4133fa71
GH
1899}
1900
6e1f2cb5
GH
1901void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf,
1902 bool have_hot, uint32_t hot_x, uint32_t hot_y)
4133fa71 1903{
7cc712e9
MAL
1904 DisplayState *s = con->ds;
1905 DisplayChangeListener *dcl;
4133fa71 1906
7cc712e9
MAL
1907 QLIST_FOREACH(dcl, &s->listeners, next) {
1908 if (dcl->ops->dpy_gl_cursor_dmabuf) {
1909 dcl->ops->dpy_gl_cursor_dmabuf(dcl, dmabuf,
6e1f2cb5 1910 have_hot, hot_x, hot_y);
7cc712e9 1911 }
6e1f2cb5
GH
1912 }
1913}
1914
1915void dpy_gl_cursor_position(QemuConsole *con,
1916 uint32_t pos_x, uint32_t pos_y)
1917{
7cc712e9
MAL
1918 DisplayState *s = con->ds;
1919 DisplayChangeListener *dcl;
6e1f2cb5 1920
7cc712e9
MAL
1921 QLIST_FOREACH(dcl, &s->listeners, next) {
1922 if (dcl->ops->dpy_gl_cursor_position) {
1923 dcl->ops->dpy_gl_cursor_position(dcl, pos_x, pos_y);
1924 }
4133fa71
GH
1925 }
1926}
1927
1928void dpy_gl_release_dmabuf(QemuConsole *con,
1929 QemuDmaBuf *dmabuf)
1930{
7cc712e9
MAL
1931 DisplayState *s = con->ds;
1932 DisplayChangeListener *dcl;
4133fa71 1933
7cc712e9
MAL
1934 QLIST_FOREACH(dcl, &s->listeners, next) {
1935 if (dcl->ops->dpy_gl_release_dmabuf) {
1936 dcl->ops->dpy_gl_release_dmabuf(dcl, dmabuf);
1937 }
4133fa71
GH
1938 }
1939}
1940
06020b95
GH
1941void dpy_gl_update(QemuConsole *con,
1942 uint32_t x, uint32_t y, uint32_t w, uint32_t h)
1943{
7cc712e9
MAL
1944 DisplayState *s = con->ds;
1945 DisplayChangeListener *dcl;
1946
06020b95 1947 assert(con->gl);
f6413cbf
MAL
1948
1949 graphic_hw_gl_block(con, true);
7cc712e9 1950 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1951 if (dcl->ops->dpy_gl_update) {
1952 dcl->ops->dpy_gl_update(dcl, x, y, w, h);
1953 }
7cc712e9 1954 }
f6413cbf 1955 graphic_hw_gl_block(con, false);
06020b95
GH
1956}
1957
98b50080
PB
1958/***********************************************************/
1959/* register display */
1960
64840c66
GH
1961/* console.c internal use only */
1962static DisplayState *get_alloc_displaystate(void)
98b50080 1963{
64840c66
GH
1964 if (!display_state) {
1965 display_state = g_new0(DisplayState, 1);
aea7947c
GH
1966 cursor_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
1967 text_console_update_cursor, NULL);
64840c66
GH
1968 }
1969 return display_state;
98b50080
PB
1970}
1971
64840c66
GH
1972/*
1973 * Called by main(), after creating QemuConsoles
1974 * and before initializing ui (sdl/vnc/...).
1975 */
1976DisplayState *init_displaystate(void)
98b50080 1977{
43f420f8 1978 gchar *name;
cd6cd8fa 1979 QemuConsole *con;
64840c66 1980
333cb18f 1981 get_alloc_displaystate();
cd6cd8fa
GH
1982 QTAILQ_FOREACH(con, &consoles, next) {
1983 if (con->console_type != GRAPHIC_CONSOLE &&
1984 con->ds == NULL) {
1985 text_console_do_init(con->chr, display_state);
64840c66 1986 }
43f420f8
GH
1987
1988 /* Hook up into the qom tree here (not in new_console()), once
1989 * all QemuConsoles are created and the order / numbering
1990 * doesn't change any more */
cd6cd8fa 1991 name = g_strdup_printf("console[%d]", con->index);
43f420f8 1992 object_property_add_child(container_get(object_get_root(), "/backend"),
d2623129 1993 name, OBJECT(con));
43f420f8 1994 g_free(name);
64840c66
GH
1995 }
1996
98b50080
PB
1997 return display_state;
1998}
1999
1c1f9498
GH
2000void graphic_console_set_hwops(QemuConsole *con,
2001 const GraphicHwOps *hw_ops,
2002 void *opaque)
2003{
2004 con->hw_ops = hw_ops;
2005 con->hw = opaque;
2006}
2007
5643706a 2008QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
aa2beaa1 2009 const GraphicHwOps *hw_ops,
c78f7137 2010 void *opaque)
95219897 2011{
521a580d
GH
2012 static const char noinit[] =
2013 "Guest has not initialized the display (yet).";
64840c66
GH
2014 int width = 640;
2015 int height = 480;
76ffb0b4 2016 QemuConsole *s;
3023f332 2017 DisplayState *ds;
9588d67e 2018 DisplaySurface *surface;
f0f2f976 2019
64840c66 2020 ds = get_alloc_displaystate();
9588d67e
GH
2021 s = qemu_console_lookup_unused();
2022 if (s) {
2023 trace_console_gfx_reuse(s->index);
ebced091
MAL
2024 width = qemu_console_get_width(s, 0);
2025 height = qemu_console_get_height(s, 0);
9588d67e
GH
2026 } else {
2027 trace_console_gfx_new();
2028 s = new_console(ds, GRAPHIC_CONSOLE, head);
2029 s->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
2030 dpy_set_ui_info_timer, s);
2031 }
1c1f9498 2032 graphic_console_set_hwops(s, hw_ops, opaque);
aa2beaa1 2033 if (dev) {
5325cc34 2034 object_property_set_link(OBJECT(s), "device", OBJECT(dev),
afff2b15 2035 &error_abort);
aa2beaa1 2036 }
3023f332 2037
b5a087b0 2038 surface = qemu_create_placeholder_surface(width, height, noinit);
9588d67e 2039 dpy_gfx_replace_surface(s, surface);
a9b1e471
MAL
2040 s->gl_unblock_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
2041 graphic_hw_gl_unblock_timer, s);
c78f7137 2042 return s;
e7f0ad58
FB
2043}
2044
9588d67e
GH
2045static const GraphicHwOps unused_ops = {
2046 /* no callbacks */
2047};
2048
2049void graphic_console_close(QemuConsole *con)
2050{
2051 static const char unplugged[] =
2052 "Guest display has been unplugged";
2053 DisplaySurface *surface;
ebced091
MAL
2054 int width = qemu_console_get_width(con, 640);
2055 int height = qemu_console_get_height(con, 480);
9588d67e
GH
2056
2057 trace_console_gfx_close(con->index);
5325cc34 2058 object_property_set_link(OBJECT(con), "device", NULL, &error_abort);
9588d67e
GH
2059 graphic_console_set_hwops(con, &unused_ops, NULL);
2060
2061 if (con->gl) {
2062 dpy_gl_scanout_disable(con);
2063 }
b5a087b0 2064 surface = qemu_create_placeholder_surface(width, height, unplugged);
9588d67e
GH
2065 dpy_gfx_replace_surface(con, surface);
2066}
2067
284d1c6b
GH
2068QemuConsole *qemu_console_lookup_by_index(unsigned int index)
2069{
cd6cd8fa
GH
2070 QemuConsole *con;
2071
2072 QTAILQ_FOREACH(con, &consoles, next) {
2073 if (con->index == index) {
2074 return con;
2075 }
284d1c6b 2076 }
cd6cd8fa 2077 return NULL;
284d1c6b
GH
2078}
2079
5643706a 2080QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head)
14a93649 2081{
cd6cd8fa 2082 QemuConsole *con;
14a93649 2083 Object *obj;
5643706a 2084 uint32_t h;
14a93649 2085
cd6cd8fa
GH
2086 QTAILQ_FOREACH(con, &consoles, next) {
2087 obj = object_property_get_link(OBJECT(con),
afff2b15 2088 "device", &error_abort);
5643706a
GH
2089 if (DEVICE(obj) != dev) {
2090 continue;
2091 }
cd6cd8fa 2092 h = object_property_get_uint(OBJECT(con),
ad664c1d 2093 "head", &error_abort);
5643706a
GH
2094 if (h != head) {
2095 continue;
14a93649 2096 }
cd6cd8fa 2097 return con;
14a93649
GH
2098 }
2099 return NULL;
2100}
2101
f2c1d54c
GH
2102QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
2103 uint32_t head, Error **errp)
2104{
2105 DeviceState *dev;
2106 QemuConsole *con;
2107
2108 dev = qdev_find_recursive(sysbus_get_default(), device_id);
2109 if (dev == NULL) {
2110 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
2111 "Device '%s' not found", device_id);
2112 return NULL;
2113 }
2114
2115 con = qemu_console_lookup_by_device(dev, head);
2116 if (con == NULL) {
2117 error_setg(errp, "Device %s (head %d) is not bound to a QemuConsole",
2118 device_id, head);
2119 return NULL;
2120 }
2121
2122 return con;
2123}
2124
9588d67e
GH
2125QemuConsole *qemu_console_lookup_unused(void)
2126{
cd6cd8fa 2127 QemuConsole *con;
9588d67e 2128 Object *obj;
9588d67e 2129
cd6cd8fa
GH
2130 QTAILQ_FOREACH(con, &consoles, next) {
2131 if (con->hw_ops != &unused_ops) {
9588d67e
GH
2132 continue;
2133 }
cd6cd8fa 2134 obj = object_property_get_link(OBJECT(con),
9588d67e
GH
2135 "device", &error_abort);
2136 if (obj != NULL) {
2137 continue;
2138 }
cd6cd8fa 2139 return con;
9588d67e
GH
2140 }
2141 return NULL;
2142}
2143
81c0d5a6 2144bool qemu_console_is_visible(QemuConsole *con)
e7f0ad58 2145{
284d1c6b 2146 return (con == active_console) || (con->dcls > 0);
e7f0ad58
FB
2147}
2148
81c0d5a6 2149bool qemu_console_is_graphic(QemuConsole *con)
c21bbcfa 2150{
81c0d5a6
GH
2151 if (con == NULL) {
2152 con = active_console;
2153 }
2154 return con && (con->console_type == GRAPHIC_CONSOLE);
2155}
2156
2157bool qemu_console_is_fixedsize(QemuConsole *con)
2158{
2159 if (con == NULL) {
2160 con = active_console;
2161 }
2162 return con && (con->console_type != TEXT_CONSOLE);
c21bbcfa
AZ
2163}
2164
f607867c
GH
2165bool qemu_console_is_gl_blocked(QemuConsole *con)
2166{
2167 assert(con != NULL);
2168 return con->gl_block;
2169}
2170
779ce88f
GH
2171char *qemu_console_get_label(QemuConsole *con)
2172{
2173 if (con->console_type == GRAPHIC_CONSOLE) {
2174 if (con->device) {
2175 return g_strdup(object_get_typename(con->device));
2176 }
2177 return g_strdup("VGA");
2178 } else {
2179 if (con->chr && con->chr->label) {
2180 return g_strdup(con->chr->label);
2181 }
2182 return g_strdup_printf("vc%d", con->index);
2183 }
2184}
2185
d4c85337
GH
2186int qemu_console_get_index(QemuConsole *con)
2187{
2188 if (con == NULL) {
2189 con = active_console;
2190 }
2191 return con ? con->index : -1;
2192}
2193
5643706a
GH
2194uint32_t qemu_console_get_head(QemuConsole *con)
2195{
2196 if (con == NULL) {
2197 con = active_console;
2198 }
2199 return con ? con->head : -1;
2200}
2201
d4c85337
GH
2202int qemu_console_get_width(QemuConsole *con, int fallback)
2203{
2204 if (con == NULL) {
2205 con = active_console;
2206 }
ebced091
MAL
2207 if (con == NULL) {
2208 return fallback;
2209 }
2210 switch (con->scanout.kind) {
2211 case SCANOUT_DMABUF:
2212 return con->scanout.dmabuf->width;
2213 case SCANOUT_TEXTURE:
2214 return con->scanout.texture.width;
2215 case SCANOUT_SURFACE:
2216 return surface_width(con->surface);
2217 default:
2218 return fallback;
2219 }
d4c85337
GH
2220}
2221
2222int qemu_console_get_height(QemuConsole *con, int fallback)
2223{
2224 if (con == NULL) {
2225 con = active_console;
2226 }
ebced091
MAL
2227 if (con == NULL) {
2228 return fallback;
2229 }
2230 switch (con->scanout.kind) {
2231 case SCANOUT_DMABUF:
2232 return con->scanout.dmabuf->height;
2233 case SCANOUT_TEXTURE:
2234 return con->scanout.texture.height;
2235 case SCANOUT_SURFACE:
2236 return surface_height(con->surface);
2237 default:
2238 return fallback;
2239 }
d4c85337
GH
2240}
2241
ec222519
VR
2242static void vc_chr_accept_input(Chardev *chr)
2243{
2244 VCChardev *drv = VC_CHARDEV(chr);
2245 QemuConsole *s = drv->console;
2246
2247 kbd_send_chars(s);
2248}
2249
5bf5adae 2250static void vc_chr_set_echo(Chardev *chr, bool echo)
4104833f 2251{
777357d7 2252 VCChardev *drv = VC_CHARDEV(chr);
41ac54b2 2253 QemuConsole *s = drv->console;
4104833f
PB
2254
2255 s->echo = echo;
2256}
2257
aea7947c
GH
2258static void text_console_update_cursor_timer(void)
2259{
2260 timer_mod(cursor_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
2261 + CONSOLE_CURSOR_PERIOD / 2);
2262}
2263
bf1bed81
JK
2264static void text_console_update_cursor(void *opaque)
2265{
aea7947c 2266 QemuConsole *s;
cd6cd8fa 2267 int count = 0;
aea7947c
GH
2268
2269 cursor_visible_phase = !cursor_visible_phase;
bf1bed81 2270
cd6cd8fa 2271 QTAILQ_FOREACH(s, &consoles, next) {
aea7947c
GH
2272 if (qemu_console_is_graphic(s) ||
2273 !qemu_console_is_visible(s)) {
2274 continue;
2275 }
2276 count++;
2277 graphic_hw_invalidate(s);
2278 }
2279
2280 if (count) {
2281 text_console_update_cursor_timer();
2282 }
bf1bed81
JK
2283}
2284
380cd056
GH
2285static const GraphicHwOps text_console_ops = {
2286 .invalidate = text_console_invalidate,
2287 .text_update = text_console_update,
2288};
2289
0ec7b3e7 2290static void text_console_do_init(Chardev *chr, DisplayState *ds)
e7f0ad58 2291{
777357d7 2292 VCChardev *drv = VC_CHARDEV(chr);
41ac54b2 2293 QemuConsole *s = drv->console;
36671fbd
GH
2294 int g_width = 80 * FONT_WIDTH;
2295 int g_height = 24 * FONT_HEIGHT;
6d6f7c28 2296
0c9d0641 2297 fifo8_create(&s->out_fifo, 16);
3023f332 2298 s->ds = ds;
3b46e624 2299
e7f0ad58
FB
2300 s->y_displayed = 0;
2301 s->y_base = 0;
2302 s->total_height = DEFAULT_BACKSCROLL;
2303 s->x = 0;
2304 s->y = 0;
ebced091
MAL
2305 if (s->scanout.kind != SCANOUT_SURFACE) {
2306 if (active_console && active_console->scanout.kind == SCANOUT_SURFACE) {
2307 g_width = qemu_console_get_width(active_console, g_width);
2308 g_height = qemu_console_get_height(active_console, g_height);
321f048d 2309 }
36671fbd 2310 s->surface = qemu_create_displaysurface(g_width, g_height);
ebced091 2311 s->scanout.kind = SCANOUT_SURFACE;
491e114a 2312 }
6d6f7c28 2313
380cd056 2314 s->hw_ops = &text_console_ops;
4d3b6f6e
AZ
2315 s->hw = s;
2316
6d6f7c28
PB
2317 /* Set text attribute defaults */
2318 s->t_attrib_default.bold = 0;
2319 s->t_attrib_default.uline = 0;
2320 s->t_attrib_default.blink = 0;
2321 s->t_attrib_default.invers = 0;
2322 s->t_attrib_default.unvisible = 0;
4083733d
OH
2323 s->t_attrib_default.fgcol = QEMU_COLOR_WHITE;
2324 s->t_attrib_default.bgcol = QEMU_COLOR_BLACK;
6d6f7c28
PB
2325 /* set current text attributes to default */
2326 s->t_attrib = s->t_attrib_default;
e7f0ad58
FB
2327 text_console_resize(s);
2328
51bfa4d3 2329 if (chr->label) {
18595181 2330 char *msg;
51bfa4d3 2331
4083733d 2332 s->t_attrib.bgcol = QEMU_COLOR_BLUE;
18595181
GH
2333 msg = g_strdup_printf("%s console\r\n", chr->label);
2334 vc_chr_write(chr, (uint8_t *)msg, strlen(msg));
2335 g_free(msg);
735ba588 2336 s->t_attrib = s->t_attrib_default;
51bfa4d3
GH
2337 }
2338
63618135 2339 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
e7f0ad58 2340}
c60e08d9 2341
777357d7
MAL
2342static void vc_chr_open(Chardev *chr,
2343 ChardevBackend *backend,
2344 bool *be_opened,
2345 Error **errp)
2796dae0 2346{
6f974c84 2347 ChardevVC *vc = backend->u.vc.data;
777357d7 2348 VCChardev *drv = VC_CHARDEV(chr);
76ffb0b4 2349 QemuConsole *s;
702ec69c
GH
2350 unsigned width = 0;
2351 unsigned height = 0;
2796dae0 2352
702ec69c
GH
2353 if (vc->has_width) {
2354 width = vc->width;
2355 } else if (vc->has_cols) {
2356 width = vc->cols * FONT_WIDTH;
2357 }
491e114a 2358
702ec69c
GH
2359 if (vc->has_height) {
2360 height = vc->height;
2361 } else if (vc->has_rows) {
2362 height = vc->rows * FONT_HEIGHT;
2363 }
491e114a 2364
437fe106 2365 trace_console_txt_new(width, height);
491e114a 2366 if (width == 0 || height == 0) {
afff2b15 2367 s = new_console(NULL, TEXT_CONSOLE, 0);
491e114a 2368 } else {
afff2b15 2369 s = new_console(NULL, TEXT_CONSOLE_FIXED_SIZE, 0);
ebced091 2370 s->scanout.kind = SCANOUT_SURFACE;
36671fbd 2371 s->surface = qemu_create_displaysurface(width, height);
491e114a
PB
2372 }
2373
2374 if (!s) {
fa19d025 2375 error_setg(errp, "cannot create text console");
777357d7 2376 return;
491e114a
PB
2377 }
2378
2379 s->chr = chr;
41ac54b2 2380 drv->console = s;
64840c66
GH
2381
2382 if (display_state) {
2383 text_console_do_init(chr, display_state);
2384 }
2796dae0 2385
82878dac
MAL
2386 /* console/chardev init sometimes completes elsewhere in a 2nd
2387 * stage, so defer OPENED events until they are fully initialized
2388 */
2389 *be_opened = false;
d82831db
AL
2390}
2391
c78f7137 2392void qemu_console_resize(QemuConsole *s, int width, int height)
c60e08d9 2393{
cb8962c1 2394 DisplaySurface *surface;
321f048d
GH
2395
2396 assert(s->console_type == GRAPHIC_CONSOLE);
cd958edb 2397
cb8962c1
MAL
2398 if (qemu_console_get_width(s, -1) == width &&
2399 qemu_console_get_height(s, -1) == height) {
cd958edb
MAL
2400 return;
2401 }
2402
321f048d
GH
2403 surface = qemu_create_displaysurface(width, height);
2404 dpy_gfx_replace_surface(s, surface);
c60e08d9 2405}
38334f76 2406
c78f7137
GH
2407DisplaySurface *qemu_console_surface(QemuConsole *console)
2408{
ebced091
MAL
2409 switch (console->scanout.kind) {
2410 case SCANOUT_SURFACE:
2411 return console->surface;
2412 default:
2413 return NULL;
2414 }
c78f7137
GH
2415}
2416
0da2ea1b 2417PixelFormat qemu_default_pixelformat(int bpp)
2418{
56bd9ea1
GH
2419 pixman_format_code_t fmt = qemu_default_pixman_format(bpp, true);
2420 PixelFormat pf = qemu_pixelformat_from_pixman(fmt);
7d957bd8
AL
2421 return pf;
2422}
01f45d98 2423
db71589f
GH
2424static QemuDisplay *dpys[DISPLAY_TYPE__MAX];
2425
2426void qemu_display_register(QemuDisplay *ui)
2427{
2428 assert(ui->type < DISPLAY_TYPE__MAX);
2429 dpys[ui->type] = ui;
2430}
2431
898f9d41
GH
2432bool qemu_display_find_default(DisplayOptions *opts)
2433{
2434 static DisplayType prio[] = {
66c2207f 2435#if defined(CONFIG_GTK)
898f9d41 2436 DISPLAY_TYPE_GTK,
66c2207f
TH
2437#endif
2438#if defined(CONFIG_SDL)
898f9d41 2439 DISPLAY_TYPE_SDL,
66c2207f
TH
2440#endif
2441#if defined(CONFIG_COCOA)
898f9d41 2442 DISPLAY_TYPE_COCOA
66c2207f 2443#endif
898f9d41
GH
2444 };
2445 int i;
2446
66c2207f 2447 for (i = 0; i < (int)ARRAY_SIZE(prio); i++) {
61b4d9a2 2448 if (dpys[prio[i]] == NULL) {
c809d1d2 2449 ui_module_load_one(DisplayType_str(prio[i]));
61b4d9a2 2450 }
898f9d41
GH
2451 if (dpys[prio[i]] == NULL) {
2452 continue;
2453 }
2454 opts->type = prio[i];
2455 return true;
2456 }
2457 return false;
2458}
2459
db71589f
GH
2460void qemu_display_early_init(DisplayOptions *opts)
2461{
2462 assert(opts->type < DISPLAY_TYPE__MAX);
2463 if (opts->type == DISPLAY_TYPE_NONE) {
2464 return;
2465 }
61b4d9a2 2466 if (dpys[opts->type] == NULL) {
c809d1d2 2467 ui_module_load_one(DisplayType_str(opts->type));
61b4d9a2 2468 }
db71589f
GH
2469 if (dpys[opts->type] == NULL) {
2470 error_report("Display '%s' is not available.",
c809d1d2 2471 DisplayType_str(opts->type));
db71589f
GH
2472 exit(1);
2473 }
2474 if (dpys[opts->type]->early_init) {
2475 dpys[opts->type]->early_init(opts);
2476 }
2477}
2478
2479void qemu_display_init(DisplayState *ds, DisplayOptions *opts)
2480{
2481 assert(opts->type < DISPLAY_TYPE__MAX);
2482 if (opts->type == DISPLAY_TYPE_NONE) {
2483 return;
2484 }
2485 assert(dpys[opts->type] != NULL);
2486 dpys[opts->type]->init(ds, opts);
2487}
2488
c388f408
TH
2489void qemu_display_help(void)
2490{
2491 int idx;
2492
2493 printf("Available display backend types:\n");
a1e8853e 2494 printf("none\n");
c388f408
TH
2495 for (idx = DISPLAY_TYPE_NONE; idx < DISPLAY_TYPE__MAX; idx++) {
2496 if (!dpys[idx]) {
2497 ui_module_load_one(DisplayType_str(idx));
2498 }
2499 if (dpys[idx]) {
2500 printf("%s\n", DisplayType_str(dpys[idx]->type));
2501 }
2502 }
2503}
2504
6f974c84 2505void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend, Error **errp)
702ec69c
GH
2506{
2507 int val;
21a933ea 2508 ChardevVC *vc;
702ec69c 2509
0b663b7d 2510 backend->type = CHARDEV_BACKEND_KIND_VC;
32bafa8f 2511 vc = backend->u.vc.data = g_new0(ChardevVC, 1);
21a933ea 2512 qemu_chr_parse_common(opts, qapi_ChardevVC_base(vc));
702ec69c
GH
2513
2514 val = qemu_opt_get_number(opts, "width", 0);
2515 if (val != 0) {
21a933ea
EB
2516 vc->has_width = true;
2517 vc->width = val;
702ec69c
GH
2518 }
2519
2520 val = qemu_opt_get_number(opts, "height", 0);
2521 if (val != 0) {
21a933ea
EB
2522 vc->has_height = true;
2523 vc->height = val;
702ec69c
GH
2524 }
2525
2526 val = qemu_opt_get_number(opts, "cols", 0);
2527 if (val != 0) {
21a933ea
EB
2528 vc->has_cols = true;
2529 vc->cols = val;
702ec69c
GH
2530 }
2531
2532 val = qemu_opt_get_number(opts, "rows", 0);
2533 if (val != 0) {
21a933ea
EB
2534 vc->has_rows = true;
2535 vc->rows = val;
702ec69c
GH
2536 }
2537}
2538
95be0669
GH
2539static const TypeInfo qemu_console_info = {
2540 .name = TYPE_QEMU_CONSOLE,
2541 .parent = TYPE_OBJECT,
2542 .instance_size = sizeof(QemuConsole),
2543 .class_size = sizeof(QemuConsoleClass),
2544};
2545
777357d7
MAL
2546static void char_vc_class_init(ObjectClass *oc, void *data)
2547{
2548 ChardevClass *cc = CHARDEV_CLASS(oc);
2549
88cace9f 2550 cc->parse = qemu_chr_parse_vc;
777357d7
MAL
2551 cc->open = vc_chr_open;
2552 cc->chr_write = vc_chr_write;
ec222519 2553 cc->chr_accept_input = vc_chr_accept_input;
777357d7
MAL
2554 cc->chr_set_echo = vc_chr_set_echo;
2555}
2556
2557static const TypeInfo char_vc_type_info = {
2558 .name = TYPE_CHARDEV_VC,
2559 .parent = TYPE_CHARDEV,
0ec7b3e7 2560 .instance_size = sizeof(VCChardev),
777357d7
MAL
2561 .class_init = char_vc_class_init,
2562};
2563
2564void qemu_console_early_init(void)
2565{
2566 /* set the default vc driver */
2567 if (!object_class_by_name(TYPE_CHARDEV_VC)) {
2568 type_register(&char_vc_type_info);
777357d7
MAL
2569 }
2570}
2571
01f45d98
AL
2572static void register_types(void)
2573{
95be0669 2574 type_register_static(&qemu_console_info);
01f45d98
AL
2575}
2576
2577type_init(register_types);