]> git.proxmox.com Git - mirror_qemu.git/blame - ui/console.c
ui/cocoa: Respect left-command-key option
[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
26b032b9 1061static void displaychangelistener_gfx_switch(DisplayChangeListener *dcl,
c84ab0a5
MAL
1062 struct DisplaySurface *new_surface,
1063 bool update)
26b032b9
MAL
1064{
1065 if (dcl->ops->dpy_gfx_switch) {
1066 dcl->ops->dpy_gfx_switch(dcl, new_surface);
1067 }
c84ab0a5
MAL
1068
1069 if (update && dcl->ops->dpy_gfx_update) {
1070 dcl->ops->dpy_gfx_update(dcl, 0, 0,
1071 surface_width(new_surface),
1072 surface_height(new_surface));
1073 }
26b032b9
MAL
1074}
1075
589089fe
MAL
1076static void dpy_gfx_create_texture(QemuConsole *con, DisplaySurface *surface)
1077{
1078 if (con->gl && con->gl->ops->dpy_gl_ctx_create_texture) {
1079 con->gl->ops->dpy_gl_ctx_create_texture(con->gl, surface);
1080 }
1081}
1082
1083static void dpy_gfx_destroy_texture(QemuConsole *con, DisplaySurface *surface)
1084{
1085 if (con->gl && con->gl->ops->dpy_gl_ctx_destroy_texture) {
1086 con->gl->ops->dpy_gl_ctx_destroy_texture(con->gl, surface);
1087 }
1088}
1089
1090static void dpy_gfx_update_texture(QemuConsole *con, DisplaySurface *surface,
1091 int x, int y, int w, int h)
1092{
1093 if (con->gl && con->gl->ops->dpy_gl_ctx_update_texture) {
1094 con->gl->ops->dpy_gl_ctx_update_texture(con->gl, surface, x, y, w, h);
1095 }
1096}
26b032b9 1097
ebced091 1098static void displaychangelistener_display_console(DisplayChangeListener *dcl,
4b7b661d
MAL
1099 QemuConsole *con,
1100 Error **errp)
ebced091
MAL
1101{
1102 static const char nodev[] =
1103 "This VM has no graphic display device.";
1104 static DisplaySurface *dummy;
1105
4b7b661d 1106 if (!con || !console_compatible_with(con, dcl, errp)) {
ebced091
MAL
1107 if (!dummy) {
1108 dummy = qemu_create_placeholder_surface(640, 480, nodev);
1109 }
589089fe
MAL
1110 if (con) {
1111 dpy_gfx_create_texture(con, dummy);
1112 }
c84ab0a5 1113 displaychangelistener_gfx_switch(dcl, dummy, TRUE);
ebced091
MAL
1114 return;
1115 }
1116
e1c676a2
MAL
1117 dpy_gfx_create_texture(con, con->surface);
1118 displaychangelistener_gfx_switch(dcl, con->surface,
1119 con->scanout.kind == SCANOUT_SURFACE);
1120
ebced091
MAL
1121 if (con->scanout.kind == SCANOUT_DMABUF &&
1122 displaychangelistener_has_dmabuf(dcl)) {
1123 dcl->ops->dpy_gl_scanout_dmabuf(dcl, con->scanout.dmabuf);
1124 } else if (con->scanout.kind == SCANOUT_TEXTURE &&
1125 dcl->ops->dpy_gl_scanout_texture) {
1126 dcl->ops->dpy_gl_scanout_texture(dcl,
1127 con->scanout.texture.backing_id,
1128 con->scanout.texture.backing_y_0_top,
1129 con->scanout.texture.backing_width,
1130 con->scanout.texture.backing_height,
1131 con->scanout.texture.x,
1132 con->scanout.texture.y,
1133 con->scanout.texture.width,
1134 con->scanout.texture.height);
ebced091 1135 }
ebced091
MAL
1136}
1137
e7f0ad58
FB
1138void console_select(unsigned int index)
1139{
284d1c6b 1140 DisplayChangeListener *dcl;
76ffb0b4 1141 QemuConsole *s;
6d6f7c28 1142
437fe106 1143 trace_console_select(index);
284d1c6b 1144 s = qemu_console_lookup_by_index(index);
e7f0ad58 1145 if (s) {
7d957bd8 1146 DisplayState *ds = s->ds;
bf1bed81 1147
e7f0ad58 1148 active_console = s;
a93a4a22 1149 if (ds->have_gfx) {
284d1c6b
GH
1150 QLIST_FOREACH(dcl, &ds->listeners, next) {
1151 if (dcl->con != NULL) {
1152 continue;
1153 }
4b7b661d 1154 displaychangelistener_display_console(dcl, s, NULL);
2e5567c9 1155 }
a93a4a22
GH
1156 }
1157 if (ds->have_text) {
c78f7137 1158 dpy_text_resize(s, s->width, s->height);
68f00996 1159 }
aea7947c 1160 text_console_update_cursor(NULL);
e7f0ad58
FB
1161 }
1162}
1163
db1015e9 1164struct VCChardev {
0ec7b3e7 1165 Chardev parent;
41ac54b2 1166 QemuConsole *console;
db1015e9
EH
1167};
1168typedef struct VCChardev VCChardev;
41ac54b2 1169
777357d7 1170#define TYPE_CHARDEV_VC "chardev-vc"
8110fa1d
EH
1171DECLARE_INSTANCE_CHECKER(VCChardev, VC_CHARDEV,
1172 TYPE_CHARDEV_VC)
777357d7 1173
5bf5adae 1174static int vc_chr_write(Chardev *chr, const uint8_t *buf, int len)
e7f0ad58 1175{
777357d7 1176 VCChardev *drv = VC_CHARDEV(chr);
41ac54b2 1177 QemuConsole *s = drv->console;
e7f0ad58
FB
1178 int i;
1179
b68e956a
MAL
1180 if (!s->ds) {
1181 return 0;
1182 }
1183
14778c20
PB
1184 s->update_x0 = s->width * FONT_WIDTH;
1185 s->update_y0 = s->height * FONT_HEIGHT;
1186 s->update_x1 = 0;
1187 s->update_y1 = 0;
e7f0ad58
FB
1188 console_show_cursor(s, 0);
1189 for(i = 0; i < len; i++) {
1190 console_putchar(s, buf[i]);
1191 }
1192 console_show_cursor(s, 1);
a93a4a22 1193 if (s->ds->have_gfx && s->update_x0 < s->update_x1) {
c78f7137 1194 dpy_gfx_update(s, s->update_x0, s->update_y0,
a93a4a22
GH
1195 s->update_x1 - s->update_x0,
1196 s->update_y1 - s->update_y0);
14778c20 1197 }
e7f0ad58
FB
1198 return len;
1199}
1200
ec222519 1201static void kbd_send_chars(QemuConsole *s)
e15d7371 1202{
0c9d0641 1203 uint32_t len, avail;
3b46e624 1204
909cda12 1205 len = qemu_chr_be_can_write(s->chr);
0c9d0641 1206 avail = fifo8_num_used(&s->out_fifo);
ec222519 1207 while (len > 0 && avail > 0) {
0c9d0641
VR
1208 const uint8_t *buf;
1209 uint32_t size;
1210
ec222519 1211 buf = fifo8_pop_buf(&s->out_fifo, MIN(len, avail), &size);
0c9d0641 1212 qemu_chr_be_write(s->chr, (uint8_t *)buf, size);
ec222519 1213 len = qemu_chr_be_can_write(s->chr);
0c9d0641 1214 avail -= size;
e15d7371 1215 }
e15d7371
FB
1216}
1217
e7f0ad58 1218/* called when an ascii key is pressed */
3f9a6e85 1219void kbd_put_keysym_console(QemuConsole *s, int keysym)
e7f0ad58 1220{
e7f0ad58
FB
1221 uint8_t buf[16], *q;
1222 int c;
0c9d0641 1223 uint32_t num_free;
e7f0ad58 1224
af3a9031 1225 if (!s || (s->console_type == GRAPHIC_CONSOLE))
e7f0ad58
FB
1226 return;
1227
1228 switch(keysym) {
1229 case QEMU_KEY_CTRL_UP:
81c0d5a6 1230 console_scroll(s, -1);
e7f0ad58
FB
1231 break;
1232 case QEMU_KEY_CTRL_DOWN:
81c0d5a6 1233 console_scroll(s, 1);
e7f0ad58
FB
1234 break;
1235 case QEMU_KEY_CTRL_PAGEUP:
81c0d5a6 1236 console_scroll(s, -10);
e7f0ad58
FB
1237 break;
1238 case QEMU_KEY_CTRL_PAGEDOWN:
81c0d5a6 1239 console_scroll(s, 10);
e7f0ad58
FB
1240 break;
1241 default:
e15d7371
FB
1242 /* convert the QEMU keysym to VT100 key string */
1243 q = buf;
1244 if (keysym >= 0xe100 && keysym <= 0xe11f) {
1245 *q++ = '\033';
1246 *q++ = '[';
1247 c = keysym - 0xe100;
1248 if (c >= 10)
1249 *q++ = '0' + (c / 10);
1250 *q++ = '0' + (c % 10);
1251 *q++ = '~';
1252 } else if (keysym >= 0xe120 && keysym <= 0xe17f) {
1253 *q++ = '\033';
1254 *q++ = '[';
1255 *q++ = keysym & 0xff;
4104833f 1256 } else if (s->echo && (keysym == '\r' || keysym == '\n')) {
5bf5adae 1257 vc_chr_write(s->chr, (const uint8_t *) "\r", 1);
4104833f 1258 *q++ = '\n';
e15d7371 1259 } else {
4104833f
PB
1260 *q++ = keysym;
1261 }
1262 if (s->echo) {
5bf5adae 1263 vc_chr_write(s->chr, buf, q - buf);
e15d7371 1264 }
014b00cc
VR
1265 num_free = fifo8_num_free(&s->out_fifo);
1266 fifo8_push_all(&s->out_fifo, buf, MIN(num_free, q - buf));
1267 kbd_send_chars(s);
e7f0ad58
FB
1268 break;
1269 }
1270}
1271
7fb1cf16 1272static const int qcode_to_keysym[Q_KEY_CODE__MAX] = {
50ef4679
GH
1273 [Q_KEY_CODE_UP] = QEMU_KEY_UP,
1274 [Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN,
1275 [Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT,
1276 [Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT,
1277 [Q_KEY_CODE_HOME] = QEMU_KEY_HOME,
1278 [Q_KEY_CODE_END] = QEMU_KEY_END,
1279 [Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP,
1280 [Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN,
1281 [Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE,
344aa283 1282 [Q_KEY_CODE_BACKSPACE] = QEMU_KEY_BACKSPACE,
50ef4679
GH
1283};
1284
da024b1e
GH
1285static const int ctrl_qcode_to_keysym[Q_KEY_CODE__MAX] = {
1286 [Q_KEY_CODE_UP] = QEMU_KEY_CTRL_UP,
1287 [Q_KEY_CODE_DOWN] = QEMU_KEY_CTRL_DOWN,
1288 [Q_KEY_CODE_RIGHT] = QEMU_KEY_CTRL_RIGHT,
1289 [Q_KEY_CODE_LEFT] = QEMU_KEY_CTRL_LEFT,
1290 [Q_KEY_CODE_HOME] = QEMU_KEY_CTRL_HOME,
1291 [Q_KEY_CODE_END] = QEMU_KEY_CTRL_END,
1292 [Q_KEY_CODE_PGUP] = QEMU_KEY_CTRL_PAGEUP,
1293 [Q_KEY_CODE_PGDN] = QEMU_KEY_CTRL_PAGEDOWN,
1294};
1295
1296bool kbd_put_qcode_console(QemuConsole *s, int qcode, bool ctrl)
50ef4679
GH
1297{
1298 int keysym;
1299
da024b1e 1300 keysym = ctrl ? ctrl_qcode_to_keysym[qcode] : qcode_to_keysym[qcode];
50ef4679
GH
1301 if (keysym == 0) {
1302 return false;
1303 }
1304 kbd_put_keysym_console(s, keysym);
1305 return true;
1306}
1307
bdef9724
GH
1308void kbd_put_string_console(QemuConsole *s, const char *str, int len)
1309{
1310 int i;
1311
1312 for (i = 0; i < len && str[i]; i++) {
1313 kbd_put_keysym_console(s, str[i]);
1314 }
1315}
1316
3f9a6e85
GH
1317void kbd_put_keysym(int keysym)
1318{
1319 kbd_put_keysym_console(active_console, keysym);
1320}
1321
4d3b6f6e
AZ
1322static void text_console_invalidate(void *opaque)
1323{
76ffb0b4 1324 QemuConsole *s = (QemuConsole *) opaque;
1562e531
GH
1325
1326 if (s->ds->have_text && s->console_type == TEXT_CONSOLE) {
68f00996
AL
1327 text_console_resize(s);
1328 }
4d3b6f6e
AZ
1329 console_refresh(s);
1330}
1331
c227f099 1332static void text_console_update(void *opaque, console_ch_t *chardata)
4d3b6f6e 1333{
76ffb0b4 1334 QemuConsole *s = (QemuConsole *) opaque;
4d3b6f6e
AZ
1335 int i, j, src;
1336
1337 if (s->text_x[0] <= s->text_x[1]) {
1338 src = (s->y_base + s->text_y[0]) * s->width;
1339 chardata += s->text_y[0] * s->width;
1340 for (i = s->text_y[0]; i <= s->text_y[1]; i ++)
4083733d
OH
1341 for (j = 0; j < s->width; j++, src++) {
1342 console_write_ch(chardata ++,
1343 ATTR2CHTYPE(s->cells[src].ch,
1344 s->cells[src].t_attrib.fgcol,
1345 s->cells[src].t_attrib.bgcol,
1346 s->cells[src].t_attrib.bold));
1347 }
c78f7137 1348 dpy_text_update(s, s->text_x[0], s->text_y[0],
a93a4a22 1349 s->text_x[1] - s->text_x[0], i - s->text_y[0]);
4d3b6f6e
AZ
1350 s->text_x[0] = s->width;
1351 s->text_y[0] = s->height;
1352 s->text_x[1] = 0;
1353 s->text_y[1] = 0;
1354 }
1355 if (s->cursor_invalidate) {
c78f7137 1356 dpy_text_cursor(s, s->x, s->y);
4d3b6f6e
AZ
1357 s->cursor_invalidate = 0;
1358 }
1359}
1360
afff2b15
KB
1361static QemuConsole *new_console(DisplayState *ds, console_type_t console_type,
1362 uint32_t head)
e7f0ad58 1363{
95be0669 1364 Object *obj;
76ffb0b4 1365 QemuConsole *s;
95219897 1366 int i;
e7f0ad58 1367
95be0669
GH
1368 obj = object_new(TYPE_QEMU_CONSOLE);
1369 s = QEMU_CONSOLE(obj);
0d9b90ce 1370 qemu_co_queue_init(&s->dump_queue);
afff2b15 1371 s->head = head;
aa2beaa1 1372 object_property_add_link(obj, "device", TYPE_DEVICE,
9561fda8 1373 (Object **)&s->device,
39f72ef9 1374 object_property_allow_set_link,
d2623129 1375 OBJ_PROP_LINK_STRONG);
836e1b38 1376 object_property_add_uint32_ptr(obj, "head", &s->head,
d2623129 1377 OBJ_PROP_FLAG_READ);
aa2beaa1 1378
af3a9031
TS
1379 if (!active_console || ((active_console->console_type != GRAPHIC_CONSOLE) &&
1380 (console_type == GRAPHIC_CONSOLE))) {
e7f0ad58 1381 active_console = s;
af3a9031 1382 }
e7f0ad58 1383 s->ds = ds;
af3a9031 1384 s->console_type = console_type;
41d004d8 1385 s->window_id = -1;
a1d2db08 1386
cd6cd8fa
GH
1387 if (QTAILQ_EMPTY(&consoles)) {
1388 s->index = 0;
1389 QTAILQ_INSERT_TAIL(&consoles, s, next);
2f181fbd 1390 } else if (console_type != GRAPHIC_CONSOLE || phase_check(PHASE_MACHINE_READY)) {
eae3eb3e 1391 QemuConsole *last = QTAILQ_LAST(&consoles);
cd6cd8fa
GH
1392 s->index = last->index + 1;
1393 QTAILQ_INSERT_TAIL(&consoles, s, next);
95219897 1394 } else {
9588d67e
GH
1395 /*
1396 * HACK: Put graphical consoles before text consoles.
1397 *
1398 * Only do that for coldplugged devices. After initial device
1399 * initialization we will not renumber the consoles any more.
1400 */
cd6cd8fa
GH
1401 QemuConsole *c = QTAILQ_FIRST(&consoles);
1402
1403 while (QTAILQ_NEXT(c, next) != NULL &&
1404 c->console_type == GRAPHIC_CONSOLE) {
1405 c = QTAILQ_NEXT(c, next);
1406 }
1407 if (c->console_type == GRAPHIC_CONSOLE) {
1408 /* have no text consoles */
1409 s->index = c->index + 1;
1410 QTAILQ_INSERT_AFTER(&consoles, c, s, next);
1411 } else {
1412 s->index = c->index;
1413 QTAILQ_INSERT_BEFORE(c, s, next);
1414 /* renumber text consoles */
1415 for (i = s->index + 1; c != NULL; c = QTAILQ_NEXT(c, next), i++) {
1416 c->index = i;
1417 }
95219897 1418 }
95219897
PB
1419 }
1420 return s;
1421}
1422
eb69442a 1423DisplaySurface *qemu_create_displaysurface(int width, int height)
ffe8b821 1424{
eb69442a 1425 DisplaySurface *surface = g_new0(DisplaySurface, 1);
69c77777 1426
eb69442a 1427 trace_displaysurface_create(surface, width, height);
30f1e661 1428 surface->format = PIXMAN_x8r8g8b8;
69c77777
GH
1429 surface->image = pixman_image_create_bits(surface->format,
1430 width, height,
30f1e661 1431 NULL, width * 4);
69c77777 1432 assert(surface->image != NULL);
30f1e661 1433 surface->flags = QEMU_ALLOCATED_FLAG;
98b50080 1434
537a4391
GH
1435 return surface;
1436}
1437
30f1e661
GH
1438DisplaySurface *qemu_create_displaysurface_from(int width, int height,
1439 pixman_format_code_t format,
1440 int linesize, uint8_t *data)
98b50080 1441{
69c77777 1442 DisplaySurface *surface = g_new0(DisplaySurface, 1);
98b50080 1443
30f1e661
GH
1444 trace_displaysurface_create_from(surface, width, height, format);
1445 surface->format = format;
69c77777
GH
1446 surface->image = pixman_image_create_bits(surface->format,
1447 width, height,
1448 (void *)data, linesize);
1449 assert(surface->image != NULL);
1450
98b50080
PB
1451 return surface;
1452}
1453
ca58b45f
GH
1454DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image)
1455{
1456 DisplaySurface *surface = g_new0(DisplaySurface, 1);
1457
1458 trace_displaysurface_create_pixman(surface);
1459 surface->format = pixman_image_get_format(image);
1460 surface->image = pixman_image_ref(image);
1461
1462 return surface;
1463}
1464
b5a087b0
AO
1465DisplaySurface *qemu_create_placeholder_surface(int w, int h,
1466 const char *msg)
d3002b04 1467{
521a580d 1468 DisplaySurface *surface = qemu_create_displaysurface(w, h);
4083733d
OH
1469 pixman_color_t bg = color_table_rgb[0][QEMU_COLOR_BLACK];
1470 pixman_color_t fg = color_table_rgb[0][QEMU_COLOR_WHITE];
d3002b04
GH
1471 pixman_image_t *glyph;
1472 int len, x, y, i;
1473
1474 len = strlen(msg);
521a580d
GH
1475 x = (w / FONT_WIDTH - len) / 2;
1476 y = (h / FONT_HEIGHT - 1) / 2;
d3002b04
GH
1477 for (i = 0; i < len; i++) {
1478 glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]);
1479 qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg,
1480 x+i, y, FONT_WIDTH, FONT_HEIGHT);
1481 qemu_pixman_image_unref(glyph);
1482 }
b5a087b0 1483 surface->flags |= QEMU_PLACEHOLDER_FLAG;
d3002b04
GH
1484 return surface;
1485}
1486
da229ef3 1487void qemu_free_displaysurface(DisplaySurface *surface)
98b50080 1488{
da229ef3 1489 if (surface == NULL) {
98b50080 1490 return;
187cd1d9 1491 }
da229ef3
GH
1492 trace_displaysurface_free(surface);
1493 qemu_pixman_image_unref(surface->image);
1494 g_free(surface);
98b50080
PB
1495}
1496
06020b95
GH
1497bool console_has_gl(QemuConsole *con)
1498{
1499 return con->gl != NULL;
1500}
1501
d0e137bc
MAL
1502static bool displaychangelistener_has_dmabuf(DisplayChangeListener *dcl)
1503{
1504 if (dcl->ops->dpy_has_dmabuf) {
1505 return dcl->ops->dpy_has_dmabuf(dcl);
1506 }
1507
1508 if (dcl->ops->dpy_gl_scanout_dmabuf) {
1509 return true;
1510 }
1511
1512 return false;
1513}
1514
4b7b661d
MAL
1515static bool console_compatible_with(QemuConsole *con,
1516 DisplayChangeListener *dcl, Error **errp)
5983fdf1 1517{
5983fdf1
MAL
1518 int flags;
1519
1520 flags = con->hw_ops->get_flags ? con->hw_ops->get_flags(con->hw) : 0;
1521
a62c4a17
MAL
1522 if (console_has_gl(con) &&
1523 !con->gl->ops->dpy_gl_ctx_is_compatible_dcl(con->gl, dcl)) {
398d1c91
MAL
1524 error_setg(errp, "Display %s is incompatible with the GL context",
1525 dcl->ops->dpy_name);
1526 return false;
1527 }
1528
5983fdf1
MAL
1529 if (flags & GRAPHIC_FLAGS_GL &&
1530 !console_has_gl(con)) {
1531 error_setg(errp, "The console requires a GL context.");
1532 return false;
1533
1534 }
1535
1536 if (flags & GRAPHIC_FLAGS_DMABUF &&
1537 !displaychangelistener_has_dmabuf(dcl)) {
1538 error_setg(errp, "The console requires display DMABUF support.");
1539 return false;
1540 }
1541
1542 return true;
1543}
1544
5e79d516 1545void qemu_console_set_display_gl_ctx(QemuConsole *con, DisplayGLCtx *gl)
4f418149
MAL
1546{
1547 /* display has opengl support */
5e79d516
MAL
1548 assert(con);
1549 if (con->gl) {
1550 error_report("The console already has an OpenGL context.");
4f418149
MAL
1551 exit(1);
1552 }
5e79d516
MAL
1553 con->gl = gl;
1554}
1555
5209089f 1556void register_displaychangelistener(DisplayChangeListener *dcl)
7c20b4a3 1557{
284d1c6b
GH
1558 QemuConsole *con;
1559
e0665c3b
MAL
1560 assert(!dcl->ds);
1561
7c20b4a3 1562 trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
5209089f
GH
1563 dcl->ds = get_alloc_displaystate();
1564 QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next);
1565 gui_setup_refresh(dcl->ds);
284d1c6b
GH
1566 if (dcl->con) {
1567 dcl->con->dcls++;
1568 con = dcl->con;
1569 } else {
1570 con = active_console;
1571 }
4b7b661d 1572 displaychangelistener_display_console(dcl, con, dcl->con ? &error_fatal : NULL);
aea7947c 1573 text_console_update_cursor(NULL);
7c20b4a3
GH
1574}
1575
0f7b2864
GH
1576void update_displaychangelistener(DisplayChangeListener *dcl,
1577 uint64_t interval)
1578{
1579 DisplayState *ds = dcl->ds;
1580
1581 dcl->update_interval = interval;
1582 if (!ds->refreshing && ds->update_interval > interval) {
bc72ad67 1583 timer_mod(ds->gui_timer, ds->last_update + interval);
0f7b2864
GH
1584 }
1585}
1586
7c20b4a3
GH
1587void unregister_displaychangelistener(DisplayChangeListener *dcl)
1588{
1589 DisplayState *ds = dcl->ds;
1590 trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name);
284d1c6b
GH
1591 if (dcl->con) {
1592 dcl->con->dcls--;
1593 }
7c20b4a3 1594 QLIST_REMOVE(dcl, next);
777c5f1e 1595 dcl->ds = NULL;
7c20b4a3
GH
1596 gui_setup_refresh(ds);
1597}
1598
cf1ecc82
GH
1599static void dpy_set_ui_info_timer(void *opaque)
1600{
1601 QemuConsole *con = opaque;
1602
1603 con->hw_ops->ui_info(con->hw, con->head, &con->ui_info);
1604}
1605
b7fb49f0
GH
1606bool dpy_ui_info_supported(QemuConsole *con)
1607{
5c4b107f
GH
1608 if (con == NULL) {
1609 con = active_console;
1610 }
1611
b7fb49f0
GH
1612 return con->hw_ops->ui_info != NULL;
1613}
1614
5eaf1e48
MAL
1615const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con)
1616{
5c4b107f
GH
1617 if (con == NULL) {
1618 con = active_console;
1619 }
5eaf1e48
MAL
1620
1621 return &con->ui_info;
1622}
1623
ca19ef52 1624int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info, bool delay)
6f90f3d7 1625{
5c4b107f
GH
1626 if (con == NULL) {
1627 con = active_console;
1628 }
1185fde4 1629
b7fb49f0 1630 if (!dpy_ui_info_supported(con)) {
cf1ecc82 1631 return -1;
6f90f3d7 1632 }
1185fde4
GH
1633 if (memcmp(&con->ui_info, info, sizeof(con->ui_info)) == 0) {
1634 /* nothing changed -- ignore */
1635 return 0;
1636 }
cf1ecc82
GH
1637
1638 /*
1639 * Typically we get a flood of these as the user resizes the window.
1640 * Wait until the dust has settled (one second without updates), then
1641 * go notify the guest.
1642 */
1185fde4 1643 con->ui_info = *info;
ca19ef52
MAL
1644 timer_mod(con->ui_timer,
1645 qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + (delay ? 1000 : 0));
cf1ecc82 1646 return 0;
6f90f3d7
GH
1647}
1648
c78f7137 1649void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h)
7c20b4a3 1650{
c78f7137 1651 DisplayState *s = con->ds;
284d1c6b 1652 DisplayChangeListener *dcl;
ebced091
MAL
1653 int width = qemu_console_get_width(con, x + w);
1654 int height = qemu_console_get_height(con, y + h);
7c20b4a3
GH
1655
1656 x = MAX(x, 0);
1657 y = MAX(y, 0);
1658 x = MIN(x, width);
1659 y = MIN(y, height);
1660 w = MIN(w, width - x);
1661 h = MIN(h, height - y);
1662
81c0d5a6 1663 if (!qemu_console_is_visible(con)) {
321f048d
GH
1664 return;
1665 }
589089fe 1666 dpy_gfx_update_texture(con, con->surface, x, y, w, h);
7c20b4a3 1667 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1668 if (con != (dcl->con ? dcl->con : active_console)) {
1669 continue;
1670 }
7c20b4a3 1671 if (dcl->ops->dpy_gfx_update) {
bc2ed970 1672 dcl->ops->dpy_gfx_update(dcl, x, y, w, h);
7c20b4a3
GH
1673 }
1674 }
1675}
1676
7cd0afe6
TZ
1677void dpy_gfx_update_full(QemuConsole *con)
1678{
ebced091
MAL
1679 int w = qemu_console_get_width(con, 0);
1680 int h = qemu_console_get_height(con, 0);
1681
1682 dpy_gfx_update(con, 0, 0, w, h);
7cd0afe6
TZ
1683}
1684
321f048d
GH
1685void dpy_gfx_replace_surface(QemuConsole *con,
1686 DisplaySurface *surface)
1687{
c821a58e 1688 static const char placeholder_msg[] = "Display output is not active.";
321f048d
GH
1689 DisplayState *s = con->ds;
1690 DisplaySurface *old_surface = con->surface;
284d1c6b 1691 DisplayChangeListener *dcl;
c821a58e
AO
1692 int width;
1693 int height;
1694
1695 if (!surface) {
1696 if (old_surface) {
1697 width = surface_width(old_surface);
1698 height = surface_height(old_surface);
1699 } else {
1700 width = 640;
1701 height = 480;
1702 }
1703
1704 surface = qemu_create_placeholder_surface(width, height, placeholder_msg);
1705 }
321f048d 1706
c821a58e 1707 assert(old_surface != surface);
6905b934 1708
ebced091 1709 con->scanout.kind = SCANOUT_SURFACE;
321f048d 1710 con->surface = surface;
589089fe 1711 dpy_gfx_create_texture(con, surface);
284d1c6b
GH
1712 QLIST_FOREACH(dcl, &s->listeners, next) {
1713 if (con != (dcl->con ? dcl->con : active_console)) {
1714 continue;
1715 }
c84ab0a5 1716 displaychangelistener_gfx_switch(dcl, surface, FALSE);
321f048d 1717 }
589089fe 1718 dpy_gfx_destroy_texture(con, old_surface);
da229ef3 1719 qemu_free_displaysurface(old_surface);
7c20b4a3
GH
1720}
1721
49743df3
BH
1722bool dpy_gfx_check_format(QemuConsole *con,
1723 pixman_format_code_t format)
1724{
1725 DisplayChangeListener *dcl;
1726 DisplayState *s = con->ds;
1727
1728 QLIST_FOREACH(dcl, &s->listeners, next) {
1729 if (dcl->con && dcl->con != con) {
1730 /* dcl bound to another console -> skip */
1731 continue;
1732 }
1733 if (dcl->ops->dpy_gfx_check_format) {
1734 if (!dcl->ops->dpy_gfx_check_format(dcl, format)) {
1735 return false;
1736 }
1737 } else {
75ae7c46 1738 /* default is to allow native 32 bpp only */
49743df3
BH
1739 if (format != qemu_default_pixman_format(32, true)) {
1740 return false;
1741 }
1742 }
1743 }
1744 return true;
1745}
1746
6075137d 1747static void dpy_refresh(DisplayState *s)
7c20b4a3 1748{
284d1c6b
GH
1749 DisplayChangeListener *dcl;
1750
7c20b4a3
GH
1751 QLIST_FOREACH(dcl, &s->listeners, next) {
1752 if (dcl->ops->dpy_refresh) {
3f8f1313 1753 dcl->ops->dpy_refresh(dcl);
7c20b4a3
GH
1754 }
1755 }
1756}
1757
c78f7137 1758void dpy_text_cursor(QemuConsole *con, int x, int y)
7c20b4a3 1759{
c78f7137 1760 DisplayState *s = con->ds;
284d1c6b 1761 DisplayChangeListener *dcl;
321f048d 1762
81c0d5a6 1763 if (!qemu_console_is_visible(con)) {
321f048d
GH
1764 return;
1765 }
7c20b4a3 1766 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1767 if (con != (dcl->con ? dcl->con : active_console)) {
1768 continue;
1769 }
7c20b4a3 1770 if (dcl->ops->dpy_text_cursor) {
bc2ed970 1771 dcl->ops->dpy_text_cursor(dcl, x, y);
7c20b4a3
GH
1772 }
1773 }
1774}
1775
c78f7137 1776void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
7c20b4a3 1777{
c78f7137 1778 DisplayState *s = con->ds;
284d1c6b 1779 DisplayChangeListener *dcl;
321f048d 1780
81c0d5a6 1781 if (!qemu_console_is_visible(con)) {
321f048d
GH
1782 return;
1783 }
7c20b4a3 1784 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1785 if (con != (dcl->con ? dcl->con : active_console)) {
1786 continue;
1787 }
7c20b4a3 1788 if (dcl->ops->dpy_text_update) {
bc2ed970 1789 dcl->ops->dpy_text_update(dcl, x, y, w, h);
7c20b4a3
GH
1790 }
1791 }
1792}
1793
c78f7137 1794void dpy_text_resize(QemuConsole *con, int w, int h)
7c20b4a3 1795{
c78f7137 1796 DisplayState *s = con->ds;
9425c004 1797 DisplayChangeListener *dcl;
321f048d 1798
81c0d5a6 1799 if (!qemu_console_is_visible(con)) {
321f048d
GH
1800 return;
1801 }
7c20b4a3 1802 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1803 if (con != (dcl->con ? dcl->con : active_console)) {
1804 continue;
1805 }
7c20b4a3 1806 if (dcl->ops->dpy_text_resize) {
bc2ed970 1807 dcl->ops->dpy_text_resize(dcl, w, h);
7c20b4a3
GH
1808 }
1809 }
1810}
1811
c78f7137 1812void dpy_mouse_set(QemuConsole *con, int x, int y, int on)
7c20b4a3 1813{
c78f7137 1814 DisplayState *s = con->ds;
284d1c6b 1815 DisplayChangeListener *dcl;
321f048d 1816
81c0d5a6 1817 if (!qemu_console_is_visible(con)) {
321f048d
GH
1818 return;
1819 }
7c20b4a3 1820 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1821 if (con != (dcl->con ? dcl->con : active_console)) {
1822 continue;
1823 }
7c20b4a3 1824 if (dcl->ops->dpy_mouse_set) {
bc2ed970 1825 dcl->ops->dpy_mouse_set(dcl, x, y, on);
7c20b4a3
GH
1826 }
1827 }
1828}
1829
c78f7137 1830void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor)
7c20b4a3 1831{
c78f7137 1832 DisplayState *s = con->ds;
284d1c6b 1833 DisplayChangeListener *dcl;
321f048d 1834
81c0d5a6 1835 if (!qemu_console_is_visible(con)) {
321f048d
GH
1836 return;
1837 }
7c20b4a3 1838 QLIST_FOREACH(dcl, &s->listeners, next) {
284d1c6b
GH
1839 if (con != (dcl->con ? dcl->con : active_console)) {
1840 continue;
1841 }
7c20b4a3 1842 if (dcl->ops->dpy_cursor_define) {
bc2ed970 1843 dcl->ops->dpy_cursor_define(dcl, cursor);
7c20b4a3
GH
1844 }
1845 }
1846}
1847
c78f7137 1848bool dpy_cursor_define_supported(QemuConsole *con)
7c20b4a3 1849{
c78f7137 1850 DisplayState *s = con->ds;
284d1c6b
GH
1851 DisplayChangeListener *dcl;
1852
7c20b4a3
GH
1853 QLIST_FOREACH(dcl, &s->listeners, next) {
1854 if (dcl->ops->dpy_cursor_define) {
1855 return true;
1856 }
1857 }
1858 return false;
1859}
1860
06020b95
GH
1861QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
1862 struct QEMUGLParams *qparams)
1863{
1864 assert(con->gl);
1865 return con->gl->ops->dpy_gl_ctx_create(con->gl, qparams);
1866}
1867
1868void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx)
1869{
1870 assert(con->gl);
1871 con->gl->ops->dpy_gl_ctx_destroy(con->gl, ctx);
1872}
1873
1874int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx)
1875{
1876 assert(con->gl);
1877 return con->gl->ops->dpy_gl_ctx_make_current(con->gl, ctx);
1878}
1879
eaa92c76
GH
1880void dpy_gl_scanout_disable(QemuConsole *con)
1881{
7cc712e9
MAL
1882 DisplayState *s = con->ds;
1883 DisplayChangeListener *dcl;
1884
ebced091
MAL
1885 if (con->scanout.kind != SCANOUT_SURFACE) {
1886 con->scanout.kind = SCANOUT_NONE;
1887 }
7cc712e9 1888 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1889 if (dcl->ops->dpy_gl_scanout_disable) {
1890 dcl->ops->dpy_gl_scanout_disable(dcl);
1891 }
7cc712e9 1892 }
eaa92c76
GH
1893}
1894
f4c36bda
GH
1895void dpy_gl_scanout_texture(QemuConsole *con,
1896 uint32_t backing_id,
1897 bool backing_y_0_top,
1898 uint32_t backing_width,
1899 uint32_t backing_height,
1900 uint32_t x, uint32_t y,
1901 uint32_t width, uint32_t height)
06020b95 1902{
7cc712e9
MAL
1903 DisplayState *s = con->ds;
1904 DisplayChangeListener *dcl;
1905
ebced091
MAL
1906 con->scanout.kind = SCANOUT_TEXTURE;
1907 con->scanout.texture = (ScanoutTexture) {
1908 backing_id, backing_y_0_top, backing_width, backing_height,
1909 x, y, width, height
1910 };
7cc712e9 1911 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1912 if (dcl->ops->dpy_gl_scanout_texture) {
1913 dcl->ops->dpy_gl_scanout_texture(dcl, backing_id,
1914 backing_y_0_top,
1915 backing_width, backing_height,
1916 x, y, width, height);
1917 }
7cc712e9 1918 }
06020b95
GH
1919}
1920
4133fa71
GH
1921void dpy_gl_scanout_dmabuf(QemuConsole *con,
1922 QemuDmaBuf *dmabuf)
1923{
7cc712e9
MAL
1924 DisplayState *s = con->ds;
1925 DisplayChangeListener *dcl;
1926
ebced091
MAL
1927 con->scanout.kind = SCANOUT_DMABUF;
1928 con->scanout.dmabuf = dmabuf;
7cc712e9 1929 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1930 if (dcl->ops->dpy_gl_scanout_dmabuf) {
1931 dcl->ops->dpy_gl_scanout_dmabuf(dcl, dmabuf);
1932 }
7cc712e9 1933 }
4133fa71
GH
1934}
1935
6e1f2cb5
GH
1936void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf,
1937 bool have_hot, uint32_t hot_x, uint32_t hot_y)
4133fa71 1938{
7cc712e9
MAL
1939 DisplayState *s = con->ds;
1940 DisplayChangeListener *dcl;
4133fa71 1941
7cc712e9
MAL
1942 QLIST_FOREACH(dcl, &s->listeners, next) {
1943 if (dcl->ops->dpy_gl_cursor_dmabuf) {
1944 dcl->ops->dpy_gl_cursor_dmabuf(dcl, dmabuf,
6e1f2cb5 1945 have_hot, hot_x, hot_y);
7cc712e9 1946 }
6e1f2cb5
GH
1947 }
1948}
1949
1950void dpy_gl_cursor_position(QemuConsole *con,
1951 uint32_t pos_x, uint32_t pos_y)
1952{
7cc712e9
MAL
1953 DisplayState *s = con->ds;
1954 DisplayChangeListener *dcl;
6e1f2cb5 1955
7cc712e9
MAL
1956 QLIST_FOREACH(dcl, &s->listeners, next) {
1957 if (dcl->ops->dpy_gl_cursor_position) {
1958 dcl->ops->dpy_gl_cursor_position(dcl, pos_x, pos_y);
1959 }
4133fa71
GH
1960 }
1961}
1962
1963void dpy_gl_release_dmabuf(QemuConsole *con,
1964 QemuDmaBuf *dmabuf)
1965{
7cc712e9
MAL
1966 DisplayState *s = con->ds;
1967 DisplayChangeListener *dcl;
4133fa71 1968
7cc712e9
MAL
1969 QLIST_FOREACH(dcl, &s->listeners, next) {
1970 if (dcl->ops->dpy_gl_release_dmabuf) {
1971 dcl->ops->dpy_gl_release_dmabuf(dcl, dmabuf);
1972 }
4133fa71
GH
1973 }
1974}
1975
06020b95
GH
1976void dpy_gl_update(QemuConsole *con,
1977 uint32_t x, uint32_t y, uint32_t w, uint32_t h)
1978{
7cc712e9
MAL
1979 DisplayState *s = con->ds;
1980 DisplayChangeListener *dcl;
1981
06020b95 1982 assert(con->gl);
f6413cbf
MAL
1983
1984 graphic_hw_gl_block(con, true);
7cc712e9 1985 QLIST_FOREACH(dcl, &s->listeners, next) {
a9fbce5e
MAL
1986 if (dcl->ops->dpy_gl_update) {
1987 dcl->ops->dpy_gl_update(dcl, x, y, w, h);
1988 }
7cc712e9 1989 }
f6413cbf 1990 graphic_hw_gl_block(con, false);
06020b95
GH
1991}
1992
98b50080
PB
1993/***********************************************************/
1994/* register display */
1995
64840c66
GH
1996/* console.c internal use only */
1997static DisplayState *get_alloc_displaystate(void)
98b50080 1998{
64840c66
GH
1999 if (!display_state) {
2000 display_state = g_new0(DisplayState, 1);
aea7947c
GH
2001 cursor_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
2002 text_console_update_cursor, NULL);
64840c66
GH
2003 }
2004 return display_state;
98b50080
PB
2005}
2006
64840c66
GH
2007/*
2008 * Called by main(), after creating QemuConsoles
2009 * and before initializing ui (sdl/vnc/...).
2010 */
2011DisplayState *init_displaystate(void)
98b50080 2012{
43f420f8 2013 gchar *name;
cd6cd8fa 2014 QemuConsole *con;
64840c66 2015
333cb18f 2016 get_alloc_displaystate();
cd6cd8fa
GH
2017 QTAILQ_FOREACH(con, &consoles, next) {
2018 if (con->console_type != GRAPHIC_CONSOLE &&
2019 con->ds == NULL) {
2020 text_console_do_init(con->chr, display_state);
64840c66 2021 }
43f420f8
GH
2022
2023 /* Hook up into the qom tree here (not in new_console()), once
2024 * all QemuConsoles are created and the order / numbering
2025 * doesn't change any more */
cd6cd8fa 2026 name = g_strdup_printf("console[%d]", con->index);
43f420f8 2027 object_property_add_child(container_get(object_get_root(), "/backend"),
d2623129 2028 name, OBJECT(con));
43f420f8 2029 g_free(name);
64840c66
GH
2030 }
2031
98b50080
PB
2032 return display_state;
2033}
2034
1c1f9498
GH
2035void graphic_console_set_hwops(QemuConsole *con,
2036 const GraphicHwOps *hw_ops,
2037 void *opaque)
2038{
2039 con->hw_ops = hw_ops;
2040 con->hw = opaque;
2041}
2042
5643706a 2043QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
aa2beaa1 2044 const GraphicHwOps *hw_ops,
c78f7137 2045 void *opaque)
95219897 2046{
521a580d
GH
2047 static const char noinit[] =
2048 "Guest has not initialized the display (yet).";
64840c66
GH
2049 int width = 640;
2050 int height = 480;
76ffb0b4 2051 QemuConsole *s;
3023f332 2052 DisplayState *ds;
9588d67e 2053 DisplaySurface *surface;
f0f2f976 2054
64840c66 2055 ds = get_alloc_displaystate();
9588d67e
GH
2056 s = qemu_console_lookup_unused();
2057 if (s) {
2058 trace_console_gfx_reuse(s->index);
ebced091
MAL
2059 width = qemu_console_get_width(s, 0);
2060 height = qemu_console_get_height(s, 0);
9588d67e
GH
2061 } else {
2062 trace_console_gfx_new();
2063 s = new_console(ds, GRAPHIC_CONSOLE, head);
2064 s->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
2065 dpy_set_ui_info_timer, s);
2066 }
1c1f9498 2067 graphic_console_set_hwops(s, hw_ops, opaque);
aa2beaa1 2068 if (dev) {
5325cc34 2069 object_property_set_link(OBJECT(s), "device", OBJECT(dev),
afff2b15 2070 &error_abort);
aa2beaa1 2071 }
3023f332 2072
b5a087b0 2073 surface = qemu_create_placeholder_surface(width, height, noinit);
9588d67e 2074 dpy_gfx_replace_surface(s, surface);
a9b1e471
MAL
2075 s->gl_unblock_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
2076 graphic_hw_gl_unblock_timer, s);
c78f7137 2077 return s;
e7f0ad58
FB
2078}
2079
9588d67e
GH
2080static const GraphicHwOps unused_ops = {
2081 /* no callbacks */
2082};
2083
2084void graphic_console_close(QemuConsole *con)
2085{
2086 static const char unplugged[] =
2087 "Guest display has been unplugged";
2088 DisplaySurface *surface;
ebced091
MAL
2089 int width = qemu_console_get_width(con, 640);
2090 int height = qemu_console_get_height(con, 480);
9588d67e
GH
2091
2092 trace_console_gfx_close(con->index);
5325cc34 2093 object_property_set_link(OBJECT(con), "device", NULL, &error_abort);
9588d67e
GH
2094 graphic_console_set_hwops(con, &unused_ops, NULL);
2095
2096 if (con->gl) {
2097 dpy_gl_scanout_disable(con);
2098 }
b5a087b0 2099 surface = qemu_create_placeholder_surface(width, height, unplugged);
9588d67e
GH
2100 dpy_gfx_replace_surface(con, surface);
2101}
2102
284d1c6b
GH
2103QemuConsole *qemu_console_lookup_by_index(unsigned int index)
2104{
cd6cd8fa
GH
2105 QemuConsole *con;
2106
2107 QTAILQ_FOREACH(con, &consoles, next) {
2108 if (con->index == index) {
2109 return con;
2110 }
284d1c6b 2111 }
cd6cd8fa 2112 return NULL;
284d1c6b
GH
2113}
2114
5643706a 2115QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head)
14a93649 2116{
cd6cd8fa 2117 QemuConsole *con;
14a93649 2118 Object *obj;
5643706a 2119 uint32_t h;
14a93649 2120
cd6cd8fa
GH
2121 QTAILQ_FOREACH(con, &consoles, next) {
2122 obj = object_property_get_link(OBJECT(con),
afff2b15 2123 "device", &error_abort);
5643706a
GH
2124 if (DEVICE(obj) != dev) {
2125 continue;
2126 }
cd6cd8fa 2127 h = object_property_get_uint(OBJECT(con),
ad664c1d 2128 "head", &error_abort);
5643706a
GH
2129 if (h != head) {
2130 continue;
14a93649 2131 }
cd6cd8fa 2132 return con;
14a93649
GH
2133 }
2134 return NULL;
2135}
2136
f2c1d54c
GH
2137QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
2138 uint32_t head, Error **errp)
2139{
2140 DeviceState *dev;
2141 QemuConsole *con;
2142
2143 dev = qdev_find_recursive(sysbus_get_default(), device_id);
2144 if (dev == NULL) {
2145 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
2146 "Device '%s' not found", device_id);
2147 return NULL;
2148 }
2149
2150 con = qemu_console_lookup_by_device(dev, head);
2151 if (con == NULL) {
2152 error_setg(errp, "Device %s (head %d) is not bound to a QemuConsole",
2153 device_id, head);
2154 return NULL;
2155 }
2156
2157 return con;
2158}
2159
9588d67e
GH
2160QemuConsole *qemu_console_lookup_unused(void)
2161{
cd6cd8fa 2162 QemuConsole *con;
9588d67e 2163 Object *obj;
9588d67e 2164
cd6cd8fa
GH
2165 QTAILQ_FOREACH(con, &consoles, next) {
2166 if (con->hw_ops != &unused_ops) {
9588d67e
GH
2167 continue;
2168 }
cd6cd8fa 2169 obj = object_property_get_link(OBJECT(con),
9588d67e
GH
2170 "device", &error_abort);
2171 if (obj != NULL) {
2172 continue;
2173 }
cd6cd8fa 2174 return con;
9588d67e
GH
2175 }
2176 return NULL;
2177}
2178
81c0d5a6 2179bool qemu_console_is_visible(QemuConsole *con)
e7f0ad58 2180{
284d1c6b 2181 return (con == active_console) || (con->dcls > 0);
e7f0ad58
FB
2182}
2183
81c0d5a6 2184bool qemu_console_is_graphic(QemuConsole *con)
c21bbcfa 2185{
81c0d5a6
GH
2186 if (con == NULL) {
2187 con = active_console;
2188 }
2189 return con && (con->console_type == GRAPHIC_CONSOLE);
2190}
2191
2192bool qemu_console_is_fixedsize(QemuConsole *con)
2193{
2194 if (con == NULL) {
2195 con = active_console;
2196 }
2197 return con && (con->console_type != TEXT_CONSOLE);
c21bbcfa
AZ
2198}
2199
f607867c
GH
2200bool qemu_console_is_gl_blocked(QemuConsole *con)
2201{
2202 assert(con != NULL);
2203 return con->gl_block;
2204}
2205
779ce88f
GH
2206char *qemu_console_get_label(QemuConsole *con)
2207{
2208 if (con->console_type == GRAPHIC_CONSOLE) {
2209 if (con->device) {
2210 return g_strdup(object_get_typename(con->device));
2211 }
2212 return g_strdup("VGA");
2213 } else {
2214 if (con->chr && con->chr->label) {
2215 return g_strdup(con->chr->label);
2216 }
2217 return g_strdup_printf("vc%d", con->index);
2218 }
2219}
2220
d4c85337
GH
2221int qemu_console_get_index(QemuConsole *con)
2222{
2223 if (con == NULL) {
2224 con = active_console;
2225 }
2226 return con ? con->index : -1;
2227}
2228
5643706a
GH
2229uint32_t qemu_console_get_head(QemuConsole *con)
2230{
2231 if (con == NULL) {
2232 con = active_console;
2233 }
2234 return con ? con->head : -1;
2235}
2236
d4c85337
GH
2237int qemu_console_get_width(QemuConsole *con, int fallback)
2238{
2239 if (con == NULL) {
2240 con = active_console;
2241 }
ebced091
MAL
2242 if (con == NULL) {
2243 return fallback;
2244 }
2245 switch (con->scanout.kind) {
2246 case SCANOUT_DMABUF:
2247 return con->scanout.dmabuf->width;
2248 case SCANOUT_TEXTURE:
2249 return con->scanout.texture.width;
2250 case SCANOUT_SURFACE:
2251 return surface_width(con->surface);
2252 default:
2253 return fallback;
2254 }
d4c85337
GH
2255}
2256
2257int qemu_console_get_height(QemuConsole *con, int fallback)
2258{
2259 if (con == NULL) {
2260 con = active_console;
2261 }
ebced091
MAL
2262 if (con == NULL) {
2263 return fallback;
2264 }
2265 switch (con->scanout.kind) {
2266 case SCANOUT_DMABUF:
2267 return con->scanout.dmabuf->height;
2268 case SCANOUT_TEXTURE:
2269 return con->scanout.texture.height;
2270 case SCANOUT_SURFACE:
2271 return surface_height(con->surface);
2272 default:
2273 return fallback;
2274 }
d4c85337
GH
2275}
2276
ec222519
VR
2277static void vc_chr_accept_input(Chardev *chr)
2278{
2279 VCChardev *drv = VC_CHARDEV(chr);
2280 QemuConsole *s = drv->console;
2281
2282 kbd_send_chars(s);
2283}
2284
5bf5adae 2285static void vc_chr_set_echo(Chardev *chr, bool echo)
4104833f 2286{
777357d7 2287 VCChardev *drv = VC_CHARDEV(chr);
41ac54b2 2288 QemuConsole *s = drv->console;
4104833f
PB
2289
2290 s->echo = echo;
2291}
2292
aea7947c
GH
2293static void text_console_update_cursor_timer(void)
2294{
2295 timer_mod(cursor_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
2296 + CONSOLE_CURSOR_PERIOD / 2);
2297}
2298
bf1bed81
JK
2299static void text_console_update_cursor(void *opaque)
2300{
aea7947c 2301 QemuConsole *s;
cd6cd8fa 2302 int count = 0;
aea7947c
GH
2303
2304 cursor_visible_phase = !cursor_visible_phase;
bf1bed81 2305
cd6cd8fa 2306 QTAILQ_FOREACH(s, &consoles, next) {
aea7947c
GH
2307 if (qemu_console_is_graphic(s) ||
2308 !qemu_console_is_visible(s)) {
2309 continue;
2310 }
2311 count++;
2312 graphic_hw_invalidate(s);
2313 }
2314
2315 if (count) {
2316 text_console_update_cursor_timer();
2317 }
bf1bed81
JK
2318}
2319
380cd056
GH
2320static const GraphicHwOps text_console_ops = {
2321 .invalidate = text_console_invalidate,
2322 .text_update = text_console_update,
2323};
2324
0ec7b3e7 2325static void text_console_do_init(Chardev *chr, DisplayState *ds)
e7f0ad58 2326{
777357d7 2327 VCChardev *drv = VC_CHARDEV(chr);
41ac54b2 2328 QemuConsole *s = drv->console;
36671fbd
GH
2329 int g_width = 80 * FONT_WIDTH;
2330 int g_height = 24 * FONT_HEIGHT;
6d6f7c28 2331
0c9d0641 2332 fifo8_create(&s->out_fifo, 16);
3023f332 2333 s->ds = ds;
3b46e624 2334
e7f0ad58
FB
2335 s->y_displayed = 0;
2336 s->y_base = 0;
2337 s->total_height = DEFAULT_BACKSCROLL;
2338 s->x = 0;
2339 s->y = 0;
ebced091
MAL
2340 if (s->scanout.kind != SCANOUT_SURFACE) {
2341 if (active_console && active_console->scanout.kind == SCANOUT_SURFACE) {
2342 g_width = qemu_console_get_width(active_console, g_width);
2343 g_height = qemu_console_get_height(active_console, g_height);
321f048d 2344 }
36671fbd 2345 s->surface = qemu_create_displaysurface(g_width, g_height);
ebced091 2346 s->scanout.kind = SCANOUT_SURFACE;
491e114a 2347 }
6d6f7c28 2348
380cd056 2349 s->hw_ops = &text_console_ops;
4d3b6f6e
AZ
2350 s->hw = s;
2351
6d6f7c28
PB
2352 /* Set text attribute defaults */
2353 s->t_attrib_default.bold = 0;
2354 s->t_attrib_default.uline = 0;
2355 s->t_attrib_default.blink = 0;
2356 s->t_attrib_default.invers = 0;
2357 s->t_attrib_default.unvisible = 0;
4083733d
OH
2358 s->t_attrib_default.fgcol = QEMU_COLOR_WHITE;
2359 s->t_attrib_default.bgcol = QEMU_COLOR_BLACK;
6d6f7c28
PB
2360 /* set current text attributes to default */
2361 s->t_attrib = s->t_attrib_default;
e7f0ad58
FB
2362 text_console_resize(s);
2363
51bfa4d3 2364 if (chr->label) {
18595181 2365 char *msg;
51bfa4d3 2366
4083733d 2367 s->t_attrib.bgcol = QEMU_COLOR_BLUE;
18595181
GH
2368 msg = g_strdup_printf("%s console\r\n", chr->label);
2369 vc_chr_write(chr, (uint8_t *)msg, strlen(msg));
2370 g_free(msg);
735ba588 2371 s->t_attrib = s->t_attrib_default;
51bfa4d3
GH
2372 }
2373
63618135 2374 qemu_chr_be_event(chr, CHR_EVENT_OPENED);
e7f0ad58 2375}
c60e08d9 2376
777357d7
MAL
2377static void vc_chr_open(Chardev *chr,
2378 ChardevBackend *backend,
2379 bool *be_opened,
2380 Error **errp)
2796dae0 2381{
6f974c84 2382 ChardevVC *vc = backend->u.vc.data;
777357d7 2383 VCChardev *drv = VC_CHARDEV(chr);
76ffb0b4 2384 QemuConsole *s;
702ec69c
GH
2385 unsigned width = 0;
2386 unsigned height = 0;
2796dae0 2387
702ec69c
GH
2388 if (vc->has_width) {
2389 width = vc->width;
2390 } else if (vc->has_cols) {
2391 width = vc->cols * FONT_WIDTH;
2392 }
491e114a 2393
702ec69c
GH
2394 if (vc->has_height) {
2395 height = vc->height;
2396 } else if (vc->has_rows) {
2397 height = vc->rows * FONT_HEIGHT;
2398 }
491e114a 2399
437fe106 2400 trace_console_txt_new(width, height);
491e114a 2401 if (width == 0 || height == 0) {
afff2b15 2402 s = new_console(NULL, TEXT_CONSOLE, 0);
491e114a 2403 } else {
afff2b15 2404 s = new_console(NULL, TEXT_CONSOLE_FIXED_SIZE, 0);
ebced091 2405 s->scanout.kind = SCANOUT_SURFACE;
36671fbd 2406 s->surface = qemu_create_displaysurface(width, height);
491e114a
PB
2407 }
2408
2409 if (!s) {
fa19d025 2410 error_setg(errp, "cannot create text console");
777357d7 2411 return;
491e114a
PB
2412 }
2413
2414 s->chr = chr;
41ac54b2 2415 drv->console = s;
64840c66
GH
2416
2417 if (display_state) {
2418 text_console_do_init(chr, display_state);
2419 }
2796dae0 2420
82878dac
MAL
2421 /* console/chardev init sometimes completes elsewhere in a 2nd
2422 * stage, so defer OPENED events until they are fully initialized
2423 */
2424 *be_opened = false;
d82831db
AL
2425}
2426
c78f7137 2427void qemu_console_resize(QemuConsole *s, int width, int height)
c60e08d9 2428{
cb8962c1 2429 DisplaySurface *surface;
321f048d
GH
2430
2431 assert(s->console_type == GRAPHIC_CONSOLE);
cd958edb 2432
cb8962c1
MAL
2433 if (qemu_console_get_width(s, -1) == width &&
2434 qemu_console_get_height(s, -1) == height) {
cd958edb
MAL
2435 return;
2436 }
2437
321f048d
GH
2438 surface = qemu_create_displaysurface(width, height);
2439 dpy_gfx_replace_surface(s, surface);
c60e08d9 2440}
38334f76 2441
c78f7137
GH
2442DisplaySurface *qemu_console_surface(QemuConsole *console)
2443{
ebced091
MAL
2444 switch (console->scanout.kind) {
2445 case SCANOUT_SURFACE:
2446 return console->surface;
2447 default:
2448 return NULL;
2449 }
c78f7137
GH
2450}
2451
0da2ea1b 2452PixelFormat qemu_default_pixelformat(int bpp)
2453{
56bd9ea1
GH
2454 pixman_format_code_t fmt = qemu_default_pixman_format(bpp, true);
2455 PixelFormat pf = qemu_pixelformat_from_pixman(fmt);
7d957bd8
AL
2456 return pf;
2457}
01f45d98 2458
db71589f
GH
2459static QemuDisplay *dpys[DISPLAY_TYPE__MAX];
2460
2461void qemu_display_register(QemuDisplay *ui)
2462{
2463 assert(ui->type < DISPLAY_TYPE__MAX);
2464 dpys[ui->type] = ui;
2465}
2466
898f9d41
GH
2467bool qemu_display_find_default(DisplayOptions *opts)
2468{
2469 static DisplayType prio[] = {
66c2207f 2470#if defined(CONFIG_GTK)
898f9d41 2471 DISPLAY_TYPE_GTK,
66c2207f
TH
2472#endif
2473#if defined(CONFIG_SDL)
898f9d41 2474 DISPLAY_TYPE_SDL,
66c2207f
TH
2475#endif
2476#if defined(CONFIG_COCOA)
898f9d41 2477 DISPLAY_TYPE_COCOA
66c2207f 2478#endif
898f9d41
GH
2479 };
2480 int i;
2481
66c2207f 2482 for (i = 0; i < (int)ARRAY_SIZE(prio); i++) {
61b4d9a2 2483 if (dpys[prio[i]] == NULL) {
c809d1d2 2484 ui_module_load_one(DisplayType_str(prio[i]));
61b4d9a2 2485 }
898f9d41
GH
2486 if (dpys[prio[i]] == NULL) {
2487 continue;
2488 }
2489 opts->type = prio[i];
2490 return true;
2491 }
2492 return false;
2493}
2494
db71589f
GH
2495void qemu_display_early_init(DisplayOptions *opts)
2496{
2497 assert(opts->type < DISPLAY_TYPE__MAX);
2498 if (opts->type == DISPLAY_TYPE_NONE) {
2499 return;
2500 }
61b4d9a2 2501 if (dpys[opts->type] == NULL) {
c809d1d2 2502 ui_module_load_one(DisplayType_str(opts->type));
61b4d9a2 2503 }
db71589f
GH
2504 if (dpys[opts->type] == NULL) {
2505 error_report("Display '%s' is not available.",
c809d1d2 2506 DisplayType_str(opts->type));
db71589f
GH
2507 exit(1);
2508 }
2509 if (dpys[opts->type]->early_init) {
2510 dpys[opts->type]->early_init(opts);
2511 }
2512}
2513
2514void qemu_display_init(DisplayState *ds, DisplayOptions *opts)
2515{
2516 assert(opts->type < DISPLAY_TYPE__MAX);
2517 if (opts->type == DISPLAY_TYPE_NONE) {
2518 return;
2519 }
2520 assert(dpys[opts->type] != NULL);
2521 dpys[opts->type]->init(ds, opts);
2522}
2523
c388f408
TH
2524void qemu_display_help(void)
2525{
2526 int idx;
2527
2528 printf("Available display backend types:\n");
a1e8853e 2529 printf("none\n");
c388f408
TH
2530 for (idx = DISPLAY_TYPE_NONE; idx < DISPLAY_TYPE__MAX; idx++) {
2531 if (!dpys[idx]) {
2532 ui_module_load_one(DisplayType_str(idx));
2533 }
2534 if (dpys[idx]) {
2535 printf("%s\n", DisplayType_str(dpys[idx]->type));
2536 }
2537 }
2538}
2539
6f974c84 2540void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend, Error **errp)
702ec69c
GH
2541{
2542 int val;
21a933ea 2543 ChardevVC *vc;
702ec69c 2544
0b663b7d 2545 backend->type = CHARDEV_BACKEND_KIND_VC;
32bafa8f 2546 vc = backend->u.vc.data = g_new0(ChardevVC, 1);
21a933ea 2547 qemu_chr_parse_common(opts, qapi_ChardevVC_base(vc));
702ec69c
GH
2548
2549 val = qemu_opt_get_number(opts, "width", 0);
2550 if (val != 0) {
21a933ea
EB
2551 vc->has_width = true;
2552 vc->width = val;
702ec69c
GH
2553 }
2554
2555 val = qemu_opt_get_number(opts, "height", 0);
2556 if (val != 0) {
21a933ea
EB
2557 vc->has_height = true;
2558 vc->height = val;
702ec69c
GH
2559 }
2560
2561 val = qemu_opt_get_number(opts, "cols", 0);
2562 if (val != 0) {
21a933ea
EB
2563 vc->has_cols = true;
2564 vc->cols = val;
702ec69c
GH
2565 }
2566
2567 val = qemu_opt_get_number(opts, "rows", 0);
2568 if (val != 0) {
21a933ea
EB
2569 vc->has_rows = true;
2570 vc->rows = val;
702ec69c
GH
2571 }
2572}
2573
95be0669
GH
2574static const TypeInfo qemu_console_info = {
2575 .name = TYPE_QEMU_CONSOLE,
2576 .parent = TYPE_OBJECT,
2577 .instance_size = sizeof(QemuConsole),
2578 .class_size = sizeof(QemuConsoleClass),
2579};
2580
777357d7
MAL
2581static void char_vc_class_init(ObjectClass *oc, void *data)
2582{
2583 ChardevClass *cc = CHARDEV_CLASS(oc);
2584
88cace9f 2585 cc->parse = qemu_chr_parse_vc;
777357d7
MAL
2586 cc->open = vc_chr_open;
2587 cc->chr_write = vc_chr_write;
ec222519 2588 cc->chr_accept_input = vc_chr_accept_input;
777357d7
MAL
2589 cc->chr_set_echo = vc_chr_set_echo;
2590}
2591
2592static const TypeInfo char_vc_type_info = {
2593 .name = TYPE_CHARDEV_VC,
2594 .parent = TYPE_CHARDEV,
0ec7b3e7 2595 .instance_size = sizeof(VCChardev),
777357d7
MAL
2596 .class_init = char_vc_class_init,
2597};
2598
2599void qemu_console_early_init(void)
2600{
2601 /* set the default vc driver */
2602 if (!object_class_by_name(TYPE_CHARDEV_VC)) {
2603 type_register(&char_vc_type_info);
777357d7
MAL
2604 }
2605}
2606
01f45d98
AL
2607static void register_types(void)
2608{
95be0669 2609 type_register_static(&qemu_console_info);
01f45d98
AL
2610}
2611
2612type_init(register_types);