blob: 75fc492f7341fcdea4d7f2e2579758972b13b62a [file] [log] [blame]
bellarde7f0ad52004-07-14 17:28:59 +00001/*
2 * QEMU graphical console
ths5fafdf22007-09-16 21:08:06 +00003 *
bellarde7f0ad52004-07-14 17:28:59 +00004 * Copyright (c) 2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellarde7f0ad52004-07-14 17:28:59 +00006 * 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 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "qemu-common.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010025#include "ui/console.h"
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +020026#include "hw/qdev-core.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010027#include "qemu/timer.h"
Luiz Capitulinoad39cf62012-05-24 13:48:23 -030028#include "qmp-commands.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +020029#include "sysemu/char.h"
Stefan Weilac860482013-11-10 14:20:16 +010030#include "trace.h"
Gerd Hoffmanna77549b2014-06-19 08:46:08 +020031#include "exec/memory.h"
bellarde7f0ad52004-07-14 17:28:59 +000032
33#define DEFAULT_BACKSCROLL 512
Jan Kiszkabf1bed82012-07-10 22:00:55 +020034#define CONSOLE_CURSOR_PERIOD 500
bellarde7f0ad52004-07-14 17:28:59 +000035
pbrook6d6f7c22006-03-11 15:35:30 +000036typedef struct TextAttributes {
37 uint8_t fgcol:4;
38 uint8_t bgcol:4;
39 uint8_t bold:1;
40 uint8_t uline:1;
41 uint8_t blink:1;
42 uint8_t invers:1;
43 uint8_t unvisible:1;
44} TextAttributes;
45
bellarde7f0ad52004-07-14 17:28:59 +000046typedef struct TextCell {
47 uint8_t ch;
pbrook6d6f7c22006-03-11 15:35:30 +000048 TextAttributes t_attrib;
bellarde7f0ad52004-07-14 17:28:59 +000049} TextCell;
50
51#define MAX_ESC_PARAMS 3
52
53enum TTYState {
54 TTY_STATE_NORM,
55 TTY_STATE_ESC,
56 TTY_STATE_CSI,
57};
58
bellarde15d7372006-06-25 16:26:29 +000059typedef struct QEMUFIFO {
60 uint8_t *buf;
61 int buf_size;
62 int count, wptr, rptr;
63} QEMUFIFO;
64
pbrook9596ebb2007-11-18 01:44:38 +000065static int qemu_fifo_write(QEMUFIFO *f, const uint8_t *buf, int len1)
bellarde15d7372006-06-25 16:26:29 +000066{
67 int l, len;
68
69 l = f->buf_size - f->count;
70 if (len1 > l)
71 len1 = l;
72 len = len1;
73 while (len > 0) {
74 l = f->buf_size - f->wptr;
75 if (l > len)
76 l = len;
77 memcpy(f->buf + f->wptr, buf, l);
78 f->wptr += l;
79 if (f->wptr >= f->buf_size)
80 f->wptr = 0;
81 buf += l;
82 len -= l;
83 }
84 f->count += len1;
85 return len1;
86}
87
pbrook9596ebb2007-11-18 01:44:38 +000088static int qemu_fifo_read(QEMUFIFO *f, uint8_t *buf, int len1)
bellarde15d7372006-06-25 16:26:29 +000089{
90 int l, len;
91
92 if (len1 > f->count)
93 len1 = f->count;
94 len = len1;
95 while (len > 0) {
96 l = f->buf_size - f->rptr;
97 if (l > len)
98 l = len;
99 memcpy(buf, f->buf + f->rptr, l);
100 f->rptr += l;
101 if (f->rptr >= f->buf_size)
102 f->rptr = 0;
103 buf += l;
104 len -= l;
105 }
106 f->count -= len1;
107 return len1;
108}
109
thsaf3a9032007-07-11 23:14:59 +0000110typedef enum {
111 GRAPHIC_CONSOLE,
balrogc21bbcf2008-09-24 03:32:33 +0000112 TEXT_CONSOLE,
113 TEXT_CONSOLE_FIXED_SIZE
Anthony Liguoric227f092009-10-01 16:12:16 -0500114} console_type_t;
thsaf3a9032007-07-11 23:14:59 +0000115
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200116struct QemuConsole {
Gerd Hoffmann95be0662013-04-17 09:45:10 +0200117 Object parent;
118
Jan Kiszkaf81bdef2011-09-16 00:48:07 +0200119 int index;
Anthony Liguoric227f092009-10-01 16:12:16 -0500120 console_type_t console_type;
bellarde7f0ad52004-07-14 17:28:59 +0000121 DisplayState *ds;
Gerd Hoffmann321f0482013-03-12 14:39:22 +0100122 DisplaySurface *surface;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +0100123 int dcls;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200124
pbrook95219892006-04-09 01:06:34 +0000125 /* Graphic console state. */
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +0200126 Object *device;
Gerd Hoffmann56437062014-01-24 15:35:21 +0100127 uint32_t head;
Gerd Hoffmann6f90f3d2014-01-24 17:38:20 +0100128 QemuUIInfo ui_info;
Gerd Hoffmanncf1ecc82015-03-12 12:51:13 +0100129 QEMUTimer *ui_timer;
Gerd Hoffmann380cd052013-03-13 14:04:18 +0100130 const GraphicHwOps *hw_ops;
pbrook95219892006-04-09 01:06:34 +0000131 void *hw;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200132
133 /* Text console state */
bellarde7f0ad52004-07-14 17:28:59 +0000134 int width;
135 int height;
136 int total_height;
137 int backscroll_height;
bellarde7f0ad52004-07-14 17:28:59 +0000138 int x, y;
thsadb47962007-01-16 23:02:36 +0000139 int x_saved, y_saved;
bellarde7f0ad52004-07-14 17:28:59 +0000140 int y_displayed;
141 int y_base;
pbrook6d6f7c22006-03-11 15:35:30 +0000142 TextAttributes t_attrib_default; /* default text attributes */
143 TextAttributes t_attrib; /* currently active text attributes */
bellarde7f0ad52004-07-14 17:28:59 +0000144 TextCell *cells;
balrog4d3b6f62008-02-10 16:33:14 +0000145 int text_x[2], text_y[2], cursor_invalidate;
Paolo Bonzini41048332010-12-23 13:42:52 +0100146 int echo;
bellarde7f0ad52004-07-14 17:28:59 +0000147
pbrook14778c22009-01-21 03:02:52 +0000148 int update_x0;
149 int update_y0;
150 int update_x1;
151 int update_y1;
152
bellarde7f0ad52004-07-14 17:28:59 +0000153 enum TTYState state;
154 int esc_params[MAX_ESC_PARAMS];
155 int nb_esc_params;
156
pbrooke5b0bc42007-01-27 23:46:43 +0000157 CharDriverState *chr;
bellarde15d7372006-06-25 16:26:29 +0000158 /* fifo for key pressed */
159 QEMUFIFO out_fifo;
160 uint8_t out_fifo_buf[16];
161 QEMUTimer *kbd_timer;
bellarde7f0ad52004-07-14 17:28:59 +0000162};
163
Gerd Hoffmann27be5582013-03-13 12:25:25 +0100164struct DisplayState {
Stefan Weil1246b252013-12-01 08:49:47 +0100165 QEMUTimer *gui_timer;
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100166 uint64_t last_update;
167 uint64_t update_interval;
168 bool refreshing;
Gerd Hoffmann27be5582013-03-13 12:25:25 +0100169 bool have_gfx;
170 bool have_text;
171
172 QLIST_HEAD(, DisplayChangeListener) listeners;
173};
174
Paolo Bonzini98b50082010-02-11 00:29:57 +0100175static DisplayState *display_state;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200176static QemuConsole *active_console;
Gerd Hoffmanna1d2db02014-05-26 10:36:35 +0200177static QemuConsole **consoles;
bellarde7f0ad52004-07-14 17:28:59 +0000178static int nb_consoles = 0;
Gerd Hoffmannaea79472014-05-22 11:27:13 +0200179static bool cursor_visible_phase;
180static QEMUTimer *cursor_timer;
bellarde7f0ad52004-07-14 17:28:59 +0000181
Gerd Hoffmann64840c62013-03-07 17:08:29 +0100182static void text_console_do_init(CharDriverState *chr, DisplayState *ds);
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100183static void dpy_refresh(DisplayState *s);
Gerd Hoffmann52090892013-04-23 15:44:31 +0200184static DisplayState *get_alloc_displaystate(void);
Gerd Hoffmannaea79472014-05-22 11:27:13 +0200185static void text_console_update_cursor_timer(void);
186static void text_console_update_cursor(void *opaque);
Gerd Hoffmann64840c62013-03-07 17:08:29 +0100187
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100188static void gui_update(void *opaque)
189{
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100190 uint64_t interval = GUI_REFRESH_INTERVAL_IDLE;
191 uint64_t dcl_interval;
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100192 DisplayState *ds = opaque;
193 DisplayChangeListener *dcl;
Gerd Hoffmanndea1b0b2013-03-19 15:01:02 +0100194 int i;
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100195
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100196 ds->refreshing = true;
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100197 dpy_refresh(ds);
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100198 ds->refreshing = false;
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100199
200 QLIST_FOREACH(dcl, &ds->listeners, next) {
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100201 dcl_interval = dcl->update_interval ?
202 dcl->update_interval : GUI_REFRESH_INTERVAL_DEFAULT;
203 if (interval > dcl_interval) {
204 interval = dcl_interval;
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100205 }
206 }
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100207 if (ds->update_interval != interval) {
208 ds->update_interval = interval;
Gerd Hoffmanndea1b0b2013-03-19 15:01:02 +0100209 for (i = 0; i < nb_consoles; i++) {
210 if (consoles[i]->hw_ops->update_interval) {
211 consoles[i]->hw_ops->update_interval(consoles[i]->hw, interval);
212 }
213 }
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +0100214 trace_console_refresh(interval);
215 }
Alex Blighbc72ad62013-08-21 16:03:08 +0100216 ds->last_update = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
217 timer_mod(ds->gui_timer, ds->last_update + interval);
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100218}
219
220static void gui_setup_refresh(DisplayState *ds)
221{
222 DisplayChangeListener *dcl;
223 bool need_timer = false;
224 bool have_gfx = false;
225 bool have_text = false;
226
227 QLIST_FOREACH(dcl, &ds->listeners, next) {
228 if (dcl->ops->dpy_refresh != NULL) {
229 need_timer = true;
230 }
231 if (dcl->ops->dpy_gfx_update != NULL) {
232 have_gfx = true;
233 }
234 if (dcl->ops->dpy_text_update != NULL) {
235 have_text = true;
236 }
237 }
238
239 if (need_timer && ds->gui_timer == NULL) {
Alex Blighbc72ad62013-08-21 16:03:08 +0100240 ds->gui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, gui_update, ds);
241 timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100242 }
243 if (!need_timer && ds->gui_timer != NULL) {
Alex Blighbc72ad62013-08-21 16:03:08 +0100244 timer_del(ds->gui_timer);
245 timer_free(ds->gui_timer);
Gerd Hoffmann98a9ad92013-03-13 12:17:13 +0100246 ds->gui_timer = NULL;
247 }
248
249 ds->have_gfx = have_gfx;
250 ds->have_text = have_text;
251}
252
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100253void graphic_hw_update(QemuConsole *con)
pbrook95219892006-04-09 01:06:34 +0000254{
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100255 if (!con) {
256 con = active_console;
257 }
Gerd Hoffmann380cd052013-03-13 14:04:18 +0100258 if (con && con->hw_ops->gfx_update) {
259 con->hw_ops->gfx_update(con->hw);
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100260 }
pbrook95219892006-04-09 01:06:34 +0000261}
262
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100263void graphic_hw_invalidate(QemuConsole *con)
pbrook95219892006-04-09 01:06:34 +0000264{
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100265 if (!con) {
266 con = active_console;
267 }
Gerd Hoffmann380cd052013-03-13 14:04:18 +0100268 if (con && con->hw_ops->invalidate) {
269 con->hw_ops->invalidate(con->hw);
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100270 }
pbrook95219892006-04-09 01:06:34 +0000271}
272
Chih-Min Chao9425c002015-04-09 02:04:13 +0800273static void ppm_save(const char *filename, DisplaySurface *ds,
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100274 Error **errp)
275{
276 int width = pixman_image_get_width(ds->image);
277 int height = pixman_image_get_height(ds->image);
Gerd Hoffmanncdd5b932013-04-23 13:26:59 +0200278 int fd;
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100279 FILE *f;
280 int y;
281 int ret;
282 pixman_image_t *linebuf;
283
284 trace_ppm_save(filename, ds);
Gerd Hoffmanncdd5b932013-04-23 13:26:59 +0200285 fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
286 if (fd == -1) {
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100287 error_setg(errp, "failed to open file '%s': %s", filename,
288 strerror(errno));
289 return;
290 }
Gerd Hoffmanncdd5b932013-04-23 13:26:59 +0200291 f = fdopen(fd, "wb");
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100292 ret = fprintf(f, "P6\n%d %d\n%d\n", width, height, 255);
293 if (ret < 0) {
294 linebuf = NULL;
295 goto write_err;
296 }
297 linebuf = qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
298 for (y = 0; y < height; y++) {
299 qemu_pixman_linebuf_fill(linebuf, ds->image, width, 0, y);
300 clearerr(f);
301 ret = fwrite(pixman_image_get_data(linebuf), 1,
302 pixman_image_get_stride(linebuf), f);
303 (void)ret;
304 if (ferror(f)) {
305 goto write_err;
306 }
307 }
308
309out:
310 qemu_pixman_image_unref(linebuf);
311 fclose(f);
312 return;
313
314write_err:
315 error_setg(errp, "failed to write to file '%s': %s", filename,
316 strerror(errno));
317 unlink(filename);
318 goto out;
319}
320
Luiz Capitulinoad39cf62012-05-24 13:48:23 -0300321void qmp_screendump(const char *filename, Error **errp)
pbrook95219892006-04-09 01:06:34 +0000322{
Gerd Hoffmann284d1c62013-03-15 15:45:54 +0100323 QemuConsole *con = qemu_console_lookup_by_index(0);
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100324 DisplaySurface *surface;
balrog8571c052008-07-19 13:04:26 +0000325
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100326 if (con == NULL) {
327 error_setg(errp, "There is no QemuConsole I can screendump from.");
328 return;
Jan Kiszkaf81bdef2011-09-16 00:48:07 +0200329 }
330
Gerd Hoffmann2c62f082013-03-12 14:48:31 +0100331 graphic_hw_update(con);
332 surface = qemu_console_surface(con);
333 ppm_save(filename, surface, errp);
pbrook95219892006-04-09 01:06:34 +0000334}
335
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100336void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
balrog4d3b6f62008-02-10 16:33:14 +0000337{
Gerd Hoffmann1dbfa002013-03-12 13:44:38 +0100338 if (!con) {
339 con = active_console;
340 }
Gerd Hoffmann380cd052013-03-13 14:04:18 +0100341 if (con && con->hw_ops->text_update) {
342 con->hw_ops->text_update(con->hw, chardata);
343 }
balrog4d3b6f62008-02-10 16:33:14 +0000344}
345
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100346static void vga_fill_rect(QemuConsole *con,
347 int posx, int posy, int width, int height,
Gerd Hoffmanne27bd652013-03-08 08:43:24 +0100348 pixman_color_t color)
bellarde7f0ad52004-07-14 17:28:59 +0000349{
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100350 DisplaySurface *surface = qemu_console_surface(con);
Gerd Hoffmann68db6dc2013-03-06 15:43:23 +0100351 pixman_rectangle16_t rect = {
352 .x = posx, .y = posy, .width = width, .height = height
353 };
ths3b46e622007-09-17 08:09:54 +0000354
Gerd Hoffmann68db6dc2013-03-06 15:43:23 +0100355 pixman_image_fill_rectangles(PIXMAN_OP_SRC, surface->image,
Gerd Hoffmanne27bd652013-03-08 08:43:24 +0100356 &color, 1, &rect);
bellarde7f0ad52004-07-14 17:28:59 +0000357}
358
359/* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100360static void vga_bitblt(QemuConsole *con,
361 int xs, int ys, int xd, int yd, int w, int h)
bellarde7f0ad52004-07-14 17:28:59 +0000362{
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100363 DisplaySurface *surface = qemu_console_surface(con);
bellarde7f0ad52004-07-14 17:28:59 +0000364
Gerd Hoffmann68db6dc2013-03-06 15:43:23 +0100365 pixman_image_composite(PIXMAN_OP_SRC,
366 surface->image, NULL, surface->image,
367 xs, ys, 0, 0, xd, yd, w, h);
bellarde7f0ad52004-07-14 17:28:59 +0000368}
369
370/***********************************************************/
371/* basic char display */
372
373#define FONT_HEIGHT 16
374#define FONT_WIDTH 8
375
376#include "vgafont.h"
377
Devin J. Pohlydf00bed2011-09-07 15:44:36 -0400378#ifndef CONFIG_CURSES
pbrook6d6f7c22006-03-11 15:35:30 +0000379enum color_names {
380 COLOR_BLACK = 0,
381 COLOR_RED = 1,
382 COLOR_GREEN = 2,
383 COLOR_YELLOW = 3,
384 COLOR_BLUE = 4,
385 COLOR_MAGENTA = 5,
386 COLOR_CYAN = 6,
387 COLOR_WHITE = 7
388};
Devin J. Pohlydf00bed2011-09-07 15:44:36 -0400389#endif
pbrook6d6f7c22006-03-11 15:35:30 +0000390
Gerd Hoffmanne27bd652013-03-08 08:43:24 +0100391#define QEMU_RGB(r, g, b) \
392 { .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff }
393
394static const pixman_color_t color_table_rgb[2][8] = {
pbrook6d6f7c22006-03-11 15:35:30 +0000395 { /* dark */
bellard26489842006-06-25 17:37:36 +0000396 QEMU_RGB(0x00, 0x00, 0x00), /* black */
397 QEMU_RGB(0xaa, 0x00, 0x00), /* red */
398 QEMU_RGB(0x00, 0xaa, 0x00), /* green */
399 QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */
400 QEMU_RGB(0x00, 0x00, 0xaa), /* blue */
401 QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */
402 QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */
403 QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */
pbrook6d6f7c22006-03-11 15:35:30 +0000404 },
405 { /* bright */
bellard26489842006-06-25 17:37:36 +0000406 QEMU_RGB(0x00, 0x00, 0x00), /* black */
407 QEMU_RGB(0xff, 0x00, 0x00), /* red */
408 QEMU_RGB(0x00, 0xff, 0x00), /* green */
409 QEMU_RGB(0xff, 0xff, 0x00), /* yellow */
410 QEMU_RGB(0x00, 0x00, 0xff), /* blue */
411 QEMU_RGB(0xff, 0x00, 0xff), /* magenta */
412 QEMU_RGB(0x00, 0xff, 0xff), /* cyan */
413 QEMU_RGB(0xff, 0xff, 0xff), /* white */
pbrook6d6f7c22006-03-11 15:35:30 +0000414 }
bellarde7f0ad52004-07-14 17:28:59 +0000415};
416
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100417static void vga_putcharxy(QemuConsole *s, int x, int y, int ch,
pbrook6d6f7c22006-03-11 15:35:30 +0000418 TextAttributes *t_attrib)
bellarde7f0ad52004-07-14 17:28:59 +0000419{
Gerd Hoffmann7d6ba012013-03-06 15:44:10 +0100420 static pixman_image_t *glyphs[256];
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100421 DisplaySurface *surface = qemu_console_surface(s);
Gerd Hoffmanne27bd652013-03-08 08:43:24 +0100422 pixman_color_t fgcol, bgcol;
pbrook6d6f7c22006-03-11 15:35:30 +0000423
424 if (t_attrib->invers) {
Gerd Hoffmanncf6f0542013-03-06 09:50:51 +0100425 bgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
426 fgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
pbrook6d6f7c22006-03-11 15:35:30 +0000427 } else {
Gerd Hoffmanncf6f0542013-03-06 09:50:51 +0100428 fgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
429 bgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
pbrook6d6f7c22006-03-11 15:35:30 +0000430 }
bellarde7f0ad52004-07-14 17:28:59 +0000431
Gerd Hoffmann7d6ba012013-03-06 15:44:10 +0100432 if (!glyphs[ch]) {
433 glyphs[ch] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, ch);
bellarde7f0ad52004-07-14 17:28:59 +0000434 }
Gerd Hoffmann7d6ba012013-03-06 15:44:10 +0100435 qemu_pixman_glyph_render(glyphs[ch], surface->image,
Gerd Hoffmanne27bd652013-03-08 08:43:24 +0100436 &fgcol, &bgcol, x, y, FONT_WIDTH, FONT_HEIGHT);
bellarde7f0ad52004-07-14 17:28:59 +0000437}
438
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200439static void text_console_resize(QemuConsole *s)
bellarde7f0ad52004-07-14 17:28:59 +0000440{
441 TextCell *cells, *c, *c1;
442 int w1, x, y, last_width;
443
444 last_width = s->width;
Gerd Hoffmann36671fb2013-03-13 10:14:52 +0100445 s->width = surface_width(s->surface) / FONT_WIDTH;
446 s->height = surface_height(s->surface) / FONT_HEIGHT;
bellarde7f0ad52004-07-14 17:28:59 +0000447
448 w1 = last_width;
449 if (s->width < w1)
450 w1 = s->width;
451
Anthony Liguori7267c092011-08-20 22:09:37 -0500452 cells = g_malloc(s->width * s->total_height * sizeof(TextCell));
bellarde7f0ad52004-07-14 17:28:59 +0000453 for(y = 0; y < s->total_height; y++) {
454 c = &cells[y * s->width];
455 if (w1 > 0) {
456 c1 = &s->cells[y * last_width];
457 for(x = 0; x < w1; x++) {
458 *c++ = *c1++;
459 }
460 }
461 for(x = w1; x < s->width; x++) {
462 c->ch = ' ';
pbrook6d6f7c22006-03-11 15:35:30 +0000463 c->t_attrib = s->t_attrib_default;
bellarde7f0ad52004-07-14 17:28:59 +0000464 c++;
465 }
466 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500467 g_free(s->cells);
bellarde7f0ad52004-07-14 17:28:59 +0000468 s->cells = cells;
469}
470
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200471static inline void text_update_xy(QemuConsole *s, int x, int y)
balrog4d3b6f62008-02-10 16:33:14 +0000472{
473 s->text_x[0] = MIN(s->text_x[0], x);
474 s->text_x[1] = MAX(s->text_x[1], x);
475 s->text_y[0] = MIN(s->text_y[0], y);
476 s->text_y[1] = MAX(s->text_y[1], y);
477}
478
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200479static void invalidate_xy(QemuConsole *s, int x, int y)
pbrook14778c22009-01-21 03:02:52 +0000480{
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200481 if (!qemu_console_is_visible(s)) {
482 return;
483 }
pbrook14778c22009-01-21 03:02:52 +0000484 if (s->update_x0 > x * FONT_WIDTH)
485 s->update_x0 = x * FONT_WIDTH;
486 if (s->update_y0 > y * FONT_HEIGHT)
487 s->update_y0 = y * FONT_HEIGHT;
488 if (s->update_x1 < (x + 1) * FONT_WIDTH)
489 s->update_x1 = (x + 1) * FONT_WIDTH;
490 if (s->update_y1 < (y + 1) * FONT_HEIGHT)
491 s->update_y1 = (y + 1) * FONT_HEIGHT;
492}
493
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200494static void update_xy(QemuConsole *s, int x, int y)
bellarde7f0ad52004-07-14 17:28:59 +0000495{
496 TextCell *c;
497 int y1, y2;
498
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100499 if (s->ds->have_text) {
500 text_update_xy(s, x, y);
501 }
502
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200503 y1 = (s->y_base + y) % s->total_height;
504 y2 = y1 - s->y_displayed;
505 if (y2 < 0) {
506 y2 += s->total_height;
507 }
508 if (y2 < s->height) {
509 c = &s->cells[y1 * s->width + x];
510 vga_putcharxy(s, x, y2, c->ch,
511 &(c->t_attrib));
512 invalidate_xy(s, x, y2);
bellarde7f0ad52004-07-14 17:28:59 +0000513 }
514}
515
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200516static void console_show_cursor(QemuConsole *s, int show)
bellarde7f0ad52004-07-14 17:28:59 +0000517{
518 TextCell *c;
519 int y, y1;
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100520 int x = s->x;
bellarde7f0ad52004-07-14 17:28:59 +0000521
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100522 if (s->ds->have_text) {
523 s->cursor_invalidate = 1;
524 }
balrog4d3b6f62008-02-10 16:33:14 +0000525
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200526 if (x >= s->width) {
527 x = s->width - 1;
528 }
529 y1 = (s->y_base + s->y) % s->total_height;
530 y = y1 - s->y_displayed;
531 if (y < 0) {
532 y += s->total_height;
533 }
534 if (y < s->height) {
535 c = &s->cells[y1 * s->width + x];
Gerd Hoffmannaea79472014-05-22 11:27:13 +0200536 if (show && cursor_visible_phase) {
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200537 TextAttributes t_attrib = s->t_attrib_default;
538 t_attrib.invers = !(t_attrib.invers); /* invert fg and bg */
539 vga_putcharxy(s, x, y, c->ch, &t_attrib);
540 } else {
541 vga_putcharxy(s, x, y, c->ch, &(c->t_attrib));
thsed8276a2007-02-10 22:37:56 +0000542 }
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200543 invalidate_xy(s, x, y);
bellarde7f0ad52004-07-14 17:28:59 +0000544 }
545}
546
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200547static void console_refresh(QemuConsole *s)
bellarde7f0ad52004-07-14 17:28:59 +0000548{
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100549 DisplaySurface *surface = qemu_console_surface(s);
bellarde7f0ad52004-07-14 17:28:59 +0000550 TextCell *c;
551 int x, y, y1;
552
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +0200553 if (s->ds->have_text) {
balrog4d3b6f62008-02-10 16:33:14 +0000554 s->text_x[0] = 0;
555 s->text_y[0] = 0;
556 s->text_x[1] = s->width - 1;
557 s->text_y[1] = s->height - 1;
558 s->cursor_invalidate = 1;
balrog4d3b6f62008-02-10 16:33:14 +0000559 }
bellarde7f0ad52004-07-14 17:28:59 +0000560
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200561 vga_fill_rect(s, 0, 0, surface_width(surface), surface_height(surface),
562 color_table_rgb[0][COLOR_BLACK]);
563 y1 = s->y_displayed;
564 for (y = 0; y < s->height; y++) {
565 c = s->cells + y1 * s->width;
566 for (x = 0; x < s->width; x++) {
567 vga_putcharxy(s, x, y, c->ch,
568 &(c->t_attrib));
569 c++;
bellarde7f0ad52004-07-14 17:28:59 +0000570 }
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200571 if (++y1 == s->total_height) {
572 y1 = 0;
573 }
bellarde7f0ad52004-07-14 17:28:59 +0000574 }
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200575 console_show_cursor(s, 1);
576 dpy_gfx_update(s, 0, 0,
577 surface_width(surface), surface_height(surface));
bellarde7f0ad52004-07-14 17:28:59 +0000578}
579
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +0100580static void console_scroll(QemuConsole *s, int ydelta)
bellarde7f0ad52004-07-14 17:28:59 +0000581{
bellarde7f0ad52004-07-14 17:28:59 +0000582 int i, y1;
ths3b46e622007-09-17 08:09:54 +0000583
bellarde7f0ad52004-07-14 17:28:59 +0000584 if (ydelta > 0) {
585 for(i = 0; i < ydelta; i++) {
586 if (s->y_displayed == s->y_base)
587 break;
588 if (++s->y_displayed == s->total_height)
589 s->y_displayed = 0;
590 }
591 } else {
592 ydelta = -ydelta;
593 i = s->backscroll_height;
594 if (i > s->total_height - s->height)
595 i = s->total_height - s->height;
596 y1 = s->y_base - i;
597 if (y1 < 0)
598 y1 += s->total_height;
599 for(i = 0; i < ydelta; i++) {
600 if (s->y_displayed == y1)
601 break;
602 if (--s->y_displayed < 0)
603 s->y_displayed = s->total_height - 1;
604 }
605 }
606 console_refresh(s);
607}
608
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200609static void console_put_lf(QemuConsole *s)
bellarde7f0ad52004-07-14 17:28:59 +0000610{
611 TextCell *c;
612 int x, y1;
613
bellarde7f0ad52004-07-14 17:28:59 +0000614 s->y++;
615 if (s->y >= s->height) {
616 s->y = s->height - 1;
pbrook6d6f7c22006-03-11 15:35:30 +0000617
bellarde7f0ad52004-07-14 17:28:59 +0000618 if (s->y_displayed == s->y_base) {
619 if (++s->y_displayed == s->total_height)
620 s->y_displayed = 0;
621 }
622 if (++s->y_base == s->total_height)
623 s->y_base = 0;
624 if (s->backscroll_height < s->total_height)
625 s->backscroll_height++;
626 y1 = (s->y_base + s->height - 1) % s->total_height;
627 c = &s->cells[y1 * s->width];
628 for(x = 0; x < s->width; x++) {
629 c->ch = ' ';
pbrook6d6f7c22006-03-11 15:35:30 +0000630 c->t_attrib = s->t_attrib_default;
bellarde7f0ad52004-07-14 17:28:59 +0000631 c++;
632 }
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200633 if (s->y_displayed == s->y_base) {
Gerd Hoffmann1562e532013-03-06 13:40:47 +0100634 if (s->ds->have_text) {
balrog4d3b6f62008-02-10 16:33:14 +0000635 s->text_x[0] = 0;
636 s->text_y[0] = 0;
637 s->text_x[1] = s->width - 1;
638 s->text_y[1] = s->height - 1;
balrog4d3b6f62008-02-10 16:33:14 +0000639 }
640
Gerd Hoffmannb35e3ba2014-05-22 11:01:42 +0200641 vga_bitblt(s, 0, FONT_HEIGHT, 0, 0,
642 s->width * FONT_WIDTH,
643 (s->height - 1) * FONT_HEIGHT);
644 vga_fill_rect(s, 0, (s->height - 1) * FONT_HEIGHT,
645 s->width * FONT_WIDTH, FONT_HEIGHT,
646 color_table_rgb[0][s->t_attrib_default.bgcol]);
647 s->update_x0 = 0;
648 s->update_y0 = 0;
649 s->update_x1 = s->width * FONT_WIDTH;
650 s->update_y1 = s->height * FONT_HEIGHT;
bellarde7f0ad52004-07-14 17:28:59 +0000651 }
652 }
653}
654
pbrook6d6f7c22006-03-11 15:35:30 +0000655/* Set console attributes depending on the current escape codes.
656 * NOTE: I know this code is not very efficient (checking every color for it
657 * self) but it is more readable and better maintainable.
658 */
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200659static void console_handle_escape(QemuConsole *s)
pbrook6d6f7c22006-03-11 15:35:30 +0000660{
661 int i;
662
pbrook6d6f7c22006-03-11 15:35:30 +0000663 for (i=0; i<s->nb_esc_params; i++) {
664 switch (s->esc_params[i]) {
665 case 0: /* reset all console attributes to default */
666 s->t_attrib = s->t_attrib_default;
667 break;
668 case 1:
669 s->t_attrib.bold = 1;
670 break;
671 case 4:
672 s->t_attrib.uline = 1;
673 break;
674 case 5:
675 s->t_attrib.blink = 1;
676 break;
677 case 7:
678 s->t_attrib.invers = 1;
679 break;
680 case 8:
681 s->t_attrib.unvisible = 1;
682 break;
683 case 22:
684 s->t_attrib.bold = 0;
685 break;
686 case 24:
687 s->t_attrib.uline = 0;
688 break;
689 case 25:
690 s->t_attrib.blink = 0;
691 break;
692 case 27:
693 s->t_attrib.invers = 0;
694 break;
695 case 28:
696 s->t_attrib.unvisible = 0;
697 break;
698 /* set foreground color */
699 case 30:
700 s->t_attrib.fgcol=COLOR_BLACK;
701 break;
702 case 31:
703 s->t_attrib.fgcol=COLOR_RED;
704 break;
705 case 32:
706 s->t_attrib.fgcol=COLOR_GREEN;
707 break;
708 case 33:
709 s->t_attrib.fgcol=COLOR_YELLOW;
710 break;
711 case 34:
712 s->t_attrib.fgcol=COLOR_BLUE;
713 break;
714 case 35:
715 s->t_attrib.fgcol=COLOR_MAGENTA;
716 break;
717 case 36:
718 s->t_attrib.fgcol=COLOR_CYAN;
719 break;
720 case 37:
721 s->t_attrib.fgcol=COLOR_WHITE;
722 break;
723 /* set background color */
724 case 40:
725 s->t_attrib.bgcol=COLOR_BLACK;
726 break;
727 case 41:
728 s->t_attrib.bgcol=COLOR_RED;
729 break;
730 case 42:
731 s->t_attrib.bgcol=COLOR_GREEN;
732 break;
733 case 43:
734 s->t_attrib.bgcol=COLOR_YELLOW;
735 break;
736 case 44:
737 s->t_attrib.bgcol=COLOR_BLUE;
738 break;
739 case 45:
740 s->t_attrib.bgcol=COLOR_MAGENTA;
741 break;
742 case 46:
743 s->t_attrib.bgcol=COLOR_CYAN;
744 break;
745 case 47:
746 s->t_attrib.bgcol=COLOR_WHITE;
747 break;
748 }
749 }
750}
751
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200752static void console_clear_xy(QemuConsole *s, int x, int y)
thsadb47962007-01-16 23:02:36 +0000753{
754 int y1 = (s->y_base + y) % s->total_height;
755 TextCell *c = &s->cells[y1 * s->width + x];
756 c->ch = ' ';
757 c->t_attrib = s->t_attrib_default;
thsadb47962007-01-16 23:02:36 +0000758 update_xy(s, x, y);
759}
760
Ian Campbell3eea5492012-09-04 10:26:09 -0500761/* set cursor, checking bounds */
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200762static void set_cursor(QemuConsole *s, int x, int y)
Ian Campbell3eea5492012-09-04 10:26:09 -0500763{
764 if (x < 0) {
765 x = 0;
766 }
767 if (y < 0) {
768 y = 0;
769 }
770 if (y >= s->height) {
771 y = s->height - 1;
772 }
773 if (x >= s->width) {
774 x = s->width - 1;
775 }
776
777 s->x = x;
778 s->y = y;
779}
780
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200781static void console_putchar(QemuConsole *s, int ch)
bellarde7f0ad52004-07-14 17:28:59 +0000782{
783 TextCell *c;
thsadb47962007-01-16 23:02:36 +0000784 int y1, i;
785 int x, y;
bellarde7f0ad52004-07-14 17:28:59 +0000786
787 switch(s->state) {
788 case TTY_STATE_NORM:
789 switch(ch) {
pbrook6d6f7c22006-03-11 15:35:30 +0000790 case '\r': /* carriage return */
bellarde7f0ad52004-07-14 17:28:59 +0000791 s->x = 0;
792 break;
pbrook6d6f7c22006-03-11 15:35:30 +0000793 case '\n': /* newline */
bellarde7f0ad52004-07-14 17:28:59 +0000794 console_put_lf(s);
795 break;
pbrook6d6f7c22006-03-11 15:35:30 +0000796 case '\b': /* backspace */
ths5fafdf22007-09-16 21:08:06 +0000797 if (s->x > 0)
bellarde15d7372006-06-25 16:26:29 +0000798 s->x--;
pbrook6d6f7c22006-03-11 15:35:30 +0000799 break;
800 case '\t': /* tabspace */
801 if (s->x + (8 - (s->x % 8)) > s->width) {
bellardbd468842006-07-14 20:24:31 +0000802 s->x = 0;
pbrook6d6f7c22006-03-11 15:35:30 +0000803 console_put_lf(s);
804 } else {
805 s->x = s->x + (8 - (s->x % 8));
806 }
807 break;
808 case '\a': /* alert aka. bell */
809 /* TODO: has to be implemented */
810 break;
thsadb47962007-01-16 23:02:36 +0000811 case 14:
812 /* SI (shift in), character set 0 (ignored) */
813 break;
814 case 15:
815 /* SO (shift out), character set 1 (ignored) */
816 break;
pbrook6d6f7c22006-03-11 15:35:30 +0000817 case 27: /* esc (introducing an escape sequence) */
bellarde7f0ad52004-07-14 17:28:59 +0000818 s->state = TTY_STATE_ESC;
819 break;
820 default:
thsed8276a2007-02-10 22:37:56 +0000821 if (s->x >= s->width) {
822 /* line wrap */
823 s->x = 0;
824 console_put_lf(s);
thsadb47962007-01-16 23:02:36 +0000825 }
bellarde7f0ad52004-07-14 17:28:59 +0000826 y1 = (s->y_base + s->y) % s->total_height;
827 c = &s->cells[y1 * s->width + s->x];
828 c->ch = ch;
pbrook6d6f7c22006-03-11 15:35:30 +0000829 c->t_attrib = s->t_attrib;
bellarde7f0ad52004-07-14 17:28:59 +0000830 update_xy(s, s->x, s->y);
831 s->x++;
bellarde7f0ad52004-07-14 17:28:59 +0000832 break;
833 }
834 break;
pbrook6d6f7c22006-03-11 15:35:30 +0000835 case TTY_STATE_ESC: /* check if it is a terminal escape sequence */
bellarde7f0ad52004-07-14 17:28:59 +0000836 if (ch == '[') {
837 for(i=0;i<MAX_ESC_PARAMS;i++)
838 s->esc_params[i] = 0;
839 s->nb_esc_params = 0;
840 s->state = TTY_STATE_CSI;
841 } else {
842 s->state = TTY_STATE_NORM;
843 }
844 break;
pbrook6d6f7c22006-03-11 15:35:30 +0000845 case TTY_STATE_CSI: /* handle escape sequence parameters */
bellarde7f0ad52004-07-14 17:28:59 +0000846 if (ch >= '0' && ch <= '9') {
847 if (s->nb_esc_params < MAX_ESC_PARAMS) {
Laszlo Ersekc10600a2012-09-17 11:10:03 +0200848 int *param = &s->esc_params[s->nb_esc_params];
849 int digit = (ch - '0');
850
851 *param = (*param <= (INT_MAX - digit) / 10) ?
852 *param * 10 + digit : INT_MAX;
bellarde7f0ad52004-07-14 17:28:59 +0000853 }
854 } else {
Ian Campbell3eea5492012-09-04 10:26:09 -0500855 if (s->nb_esc_params < MAX_ESC_PARAMS)
856 s->nb_esc_params++;
bellarde7f0ad52004-07-14 17:28:59 +0000857 if (ch == ';')
858 break;
Stefan Weil5d28b0e2013-11-10 16:04:16 +0100859 trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
860 ch, s->nb_esc_params);
bellarde7f0ad52004-07-14 17:28:59 +0000861 s->state = TTY_STATE_NORM;
862 switch(ch) {
thsadb47962007-01-16 23:02:36 +0000863 case 'A':
864 /* move cursor up */
865 if (s->esc_params[0] == 0) {
866 s->esc_params[0] = 1;
867 }
Ian Campbell3eea5492012-09-04 10:26:09 -0500868 set_cursor(s, s->x, s->y - s->esc_params[0]);
bellarde7f0ad52004-07-14 17:28:59 +0000869 break;
thsadb47962007-01-16 23:02:36 +0000870 case 'B':
871 /* move cursor down */
872 if (s->esc_params[0] == 0) {
873 s->esc_params[0] = 1;
874 }
Ian Campbell3eea5492012-09-04 10:26:09 -0500875 set_cursor(s, s->x, s->y + s->esc_params[0]);
thsadb47962007-01-16 23:02:36 +0000876 break;
877 case 'C':
878 /* move cursor right */
879 if (s->esc_params[0] == 0) {
880 s->esc_params[0] = 1;
881 }
Ian Campbell3eea5492012-09-04 10:26:09 -0500882 set_cursor(s, s->x + s->esc_params[0], s->y);
thsadb47962007-01-16 23:02:36 +0000883 break;
884 case 'D':
885 /* move cursor left */
886 if (s->esc_params[0] == 0) {
887 s->esc_params[0] = 1;
888 }
Ian Campbell3eea5492012-09-04 10:26:09 -0500889 set_cursor(s, s->x - s->esc_params[0], s->y);
thsadb47962007-01-16 23:02:36 +0000890 break;
891 case 'G':
892 /* move cursor to column */
Ian Campbell3eea5492012-09-04 10:26:09 -0500893 set_cursor(s, s->esc_params[0] - 1, s->y);
thsadb47962007-01-16 23:02:36 +0000894 break;
895 case 'f':
896 case 'H':
897 /* move cursor to row, column */
Ian Campbell3eea5492012-09-04 10:26:09 -0500898 set_cursor(s, s->esc_params[1] - 1, s->esc_params[0] - 1);
thsadb47962007-01-16 23:02:36 +0000899 break;
900 case 'J':
901 switch (s->esc_params[0]) {
902 case 0:
903 /* clear to end of screen */
904 for (y = s->y; y < s->height; y++) {
905 for (x = 0; x < s->width; x++) {
906 if (y == s->y && x < s->x) {
907 continue;
908 }
909 console_clear_xy(s, x, y);
910 }
911 }
912 break;
913 case 1:
914 /* clear from beginning of screen */
915 for (y = 0; y <= s->y; y++) {
916 for (x = 0; x < s->width; x++) {
917 if (y == s->y && x > s->x) {
918 break;
919 }
920 console_clear_xy(s, x, y);
921 }
922 }
923 break;
924 case 2:
925 /* clear entire screen */
926 for (y = 0; y <= s->height; y++) {
927 for (x = 0; x < s->width; x++) {
928 console_clear_xy(s, x, y);
929 }
930 }
Markus Armbrusterf94a9502011-11-22 11:59:06 +0100931 break;
thsadb47962007-01-16 23:02:36 +0000932 }
Markus Armbruster95d8f9f2011-11-22 11:59:07 +0100933 break;
thsadb47962007-01-16 23:02:36 +0000934 case 'K':
935 switch (s->esc_params[0]) {
936 case 0:
Markus Armbrusterf94a9502011-11-22 11:59:06 +0100937 /* clear to eol */
938 for(x = s->x; x < s->width; x++) {
thsadb47962007-01-16 23:02:36 +0000939 console_clear_xy(s, x, s->y);
Markus Armbrusterf94a9502011-11-22 11:59:06 +0100940 }
941 break;
thsadb47962007-01-16 23:02:36 +0000942 case 1:
943 /* clear from beginning of line */
944 for (x = 0; x <= s->x; x++) {
945 console_clear_xy(s, x, s->y);
946 }
947 break;
948 case 2:
949 /* clear entire line */
950 for(x = 0; x < s->width; x++) {
951 console_clear_xy(s, x, s->y);
952 }
Markus Armbrusterf94a9502011-11-22 11:59:06 +0100953 break;
954 }
thsadb47962007-01-16 23:02:36 +0000955 break;
956 case 'm':
Markus Armbrusterf94a9502011-11-22 11:59:06 +0100957 console_handle_escape(s);
958 break;
thsadb47962007-01-16 23:02:36 +0000959 case 'n':
960 /* report cursor position */
961 /* TODO: send ESC[row;colR */
962 break;
963 case 's':
964 /* save cursor position */
965 s->x_saved = s->x;
966 s->y_saved = s->y;
967 break;
968 case 'u':
969 /* restore cursor position */
970 s->x = s->x_saved;
971 s->y = s->y_saved;
972 break;
973 default:
Stefan Weil5d28b0e2013-11-10 16:04:16 +0100974 trace_console_putchar_unhandled(ch);
thsadb47962007-01-16 23:02:36 +0000975 break;
976 }
977 break;
bellarde7f0ad52004-07-14 17:28:59 +0000978 }
979 }
980}
981
982void console_select(unsigned int index)
983{
Gerd Hoffmann284d1c62013-03-15 15:45:54 +0100984 DisplayChangeListener *dcl;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +0200985 QemuConsole *s;
pbrook6d6f7c22006-03-11 15:35:30 +0000986
Gerd Hoffmann437fe102013-03-07 16:04:52 +0100987 trace_console_select(index);
Gerd Hoffmann284d1c62013-03-15 15:45:54 +0100988 s = qemu_console_lookup_by_index(index);
bellarde7f0ad52004-07-14 17:28:59 +0000989 if (s) {
aliguori7d957bd2009-01-15 22:14:11 +0000990 DisplayState *ds = s->ds;
Jan Kiszkabf1bed82012-07-10 22:00:55 +0200991
bellarde7f0ad52004-07-14 17:28:59 +0000992 active_console = s;
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +0200993 if (ds->have_gfx) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +0100994 QLIST_FOREACH(dcl, &ds->listeners, next) {
995 if (dcl->con != NULL) {
996 continue;
997 }
998 if (dcl->ops->dpy_gfx_switch) {
999 dcl->ops->dpy_gfx_switch(dcl, s->surface);
1000 }
1001 }
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001002 dpy_gfx_update(s, 0, 0, surface_width(s->surface),
1003 surface_height(s->surface));
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001004 }
1005 if (ds->have_text) {
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001006 dpy_text_resize(s, s->width, s->height);
aliguori68f00992009-01-21 18:59:12 +00001007 }
Gerd Hoffmannaea79472014-05-22 11:27:13 +02001008 text_console_update_cursor(NULL);
bellarde7f0ad52004-07-14 17:28:59 +00001009 }
1010}
1011
1012static int console_puts(CharDriverState *chr, const uint8_t *buf, int len)
1013{
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001014 QemuConsole *s = chr->opaque;
bellarde7f0ad52004-07-14 17:28:59 +00001015 int i;
1016
pbrook14778c22009-01-21 03:02:52 +00001017 s->update_x0 = s->width * FONT_WIDTH;
1018 s->update_y0 = s->height * FONT_HEIGHT;
1019 s->update_x1 = 0;
1020 s->update_y1 = 0;
bellarde7f0ad52004-07-14 17:28:59 +00001021 console_show_cursor(s, 0);
1022 for(i = 0; i < len; i++) {
1023 console_putchar(s, buf[i]);
1024 }
1025 console_show_cursor(s, 1);
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001026 if (s->ds->have_gfx && s->update_x0 < s->update_x1) {
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001027 dpy_gfx_update(s, s->update_x0, s->update_y0,
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001028 s->update_x1 - s->update_x0,
1029 s->update_y1 - s->update_y0);
pbrook14778c22009-01-21 03:02:52 +00001030 }
bellarde7f0ad52004-07-14 17:28:59 +00001031 return len;
1032}
1033
bellarde15d7372006-06-25 16:26:29 +00001034static void kbd_send_chars(void *opaque)
1035{
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001036 QemuConsole *s = opaque;
bellarde15d7372006-06-25 16:26:29 +00001037 int len;
1038 uint8_t buf[16];
ths3b46e622007-09-17 08:09:54 +00001039
Anthony Liguori909cda12011-08-15 11:17:31 -05001040 len = qemu_chr_be_can_write(s->chr);
bellarde15d7372006-06-25 16:26:29 +00001041 if (len > s->out_fifo.count)
1042 len = s->out_fifo.count;
1043 if (len > 0) {
1044 if (len > sizeof(buf))
1045 len = sizeof(buf);
1046 qemu_fifo_read(&s->out_fifo, buf, len);
Anthony Liguorifa5efcc2011-08-15 11:17:30 -05001047 qemu_chr_be_write(s->chr, buf, len);
bellarde15d7372006-06-25 16:26:29 +00001048 }
1049 /* characters are pending: we send them a bit later (XXX:
1050 horrible, should change char device API) */
1051 if (s->out_fifo.count > 0) {
Alex Blighbc72ad62013-08-21 16:03:08 +01001052 timer_mod(s->kbd_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1);
bellarde15d7372006-06-25 16:26:29 +00001053 }
1054}
1055
bellarde7f0ad52004-07-14 17:28:59 +00001056/* called when an ascii key is pressed */
Gerd Hoffmann3f9a6e82014-05-22 12:05:52 +02001057void kbd_put_keysym_console(QemuConsole *s, int keysym)
bellarde7f0ad52004-07-14 17:28:59 +00001058{
bellarde7f0ad52004-07-14 17:28:59 +00001059 uint8_t buf[16], *q;
1060 int c;
1061
thsaf3a9032007-07-11 23:14:59 +00001062 if (!s || (s->console_type == GRAPHIC_CONSOLE))
bellarde7f0ad52004-07-14 17:28:59 +00001063 return;
1064
1065 switch(keysym) {
1066 case QEMU_KEY_CTRL_UP:
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001067 console_scroll(s, -1);
bellarde7f0ad52004-07-14 17:28:59 +00001068 break;
1069 case QEMU_KEY_CTRL_DOWN:
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001070 console_scroll(s, 1);
bellarde7f0ad52004-07-14 17:28:59 +00001071 break;
1072 case QEMU_KEY_CTRL_PAGEUP:
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001073 console_scroll(s, -10);
bellarde7f0ad52004-07-14 17:28:59 +00001074 break;
1075 case QEMU_KEY_CTRL_PAGEDOWN:
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001076 console_scroll(s, 10);
bellarde7f0ad52004-07-14 17:28:59 +00001077 break;
1078 default:
bellarde15d7372006-06-25 16:26:29 +00001079 /* convert the QEMU keysym to VT100 key string */
1080 q = buf;
1081 if (keysym >= 0xe100 && keysym <= 0xe11f) {
1082 *q++ = '\033';
1083 *q++ = '[';
1084 c = keysym - 0xe100;
1085 if (c >= 10)
1086 *q++ = '0' + (c / 10);
1087 *q++ = '0' + (c % 10);
1088 *q++ = '~';
1089 } else if (keysym >= 0xe120 && keysym <= 0xe17f) {
1090 *q++ = '\033';
1091 *q++ = '[';
1092 *q++ = keysym & 0xff;
Paolo Bonzini41048332010-12-23 13:42:52 +01001093 } else if (s->echo && (keysym == '\r' || keysym == '\n')) {
1094 console_puts(s->chr, (const uint8_t *) "\r", 1);
1095 *q++ = '\n';
bellarde15d7372006-06-25 16:26:29 +00001096 } else {
Paolo Bonzini41048332010-12-23 13:42:52 +01001097 *q++ = keysym;
1098 }
1099 if (s->echo) {
1100 console_puts(s->chr, buf, q - buf);
bellarde15d7372006-06-25 16:26:29 +00001101 }
pbrooke5b0bc42007-01-27 23:46:43 +00001102 if (s->chr->chr_read) {
bellarde15d7372006-06-25 16:26:29 +00001103 qemu_fifo_write(&s->out_fifo, buf, q - buf);
1104 kbd_send_chars(s);
bellarde7f0ad52004-07-14 17:28:59 +00001105 }
1106 break;
1107 }
1108}
1109
Gerd Hoffmann50ef4672014-05-27 09:28:38 +02001110static const int qcode_to_keysym[Q_KEY_CODE_MAX] = {
1111 [Q_KEY_CODE_UP] = QEMU_KEY_UP,
1112 [Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN,
1113 [Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT,
1114 [Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT,
1115 [Q_KEY_CODE_HOME] = QEMU_KEY_HOME,
1116 [Q_KEY_CODE_END] = QEMU_KEY_END,
1117 [Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP,
1118 [Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN,
1119 [Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE,
1120};
1121
1122bool kbd_put_qcode_console(QemuConsole *s, int qcode)
1123{
1124 int keysym;
1125
1126 keysym = qcode_to_keysym[qcode];
1127 if (keysym == 0) {
1128 return false;
1129 }
1130 kbd_put_keysym_console(s, keysym);
1131 return true;
1132}
1133
Gerd Hoffmannbdef9722014-05-27 09:32:36 +02001134void kbd_put_string_console(QemuConsole *s, const char *str, int len)
1135{
1136 int i;
1137
1138 for (i = 0; i < len && str[i]; i++) {
1139 kbd_put_keysym_console(s, str[i]);
1140 }
1141}
1142
Gerd Hoffmann3f9a6e82014-05-22 12:05:52 +02001143void kbd_put_keysym(int keysym)
1144{
1145 kbd_put_keysym_console(active_console, keysym);
1146}
1147
balrog4d3b6f62008-02-10 16:33:14 +00001148static void text_console_invalidate(void *opaque)
1149{
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001150 QemuConsole *s = (QemuConsole *) opaque;
Gerd Hoffmann1562e532013-03-06 13:40:47 +01001151
1152 if (s->ds->have_text && s->console_type == TEXT_CONSOLE) {
aliguori68f00992009-01-21 18:59:12 +00001153 text_console_resize(s);
1154 }
balrog4d3b6f62008-02-10 16:33:14 +00001155 console_refresh(s);
1156}
1157
Anthony Liguoric227f092009-10-01 16:12:16 -05001158static void text_console_update(void *opaque, console_ch_t *chardata)
balrog4d3b6f62008-02-10 16:33:14 +00001159{
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001160 QemuConsole *s = (QemuConsole *) opaque;
balrog4d3b6f62008-02-10 16:33:14 +00001161 int i, j, src;
1162
1163 if (s->text_x[0] <= s->text_x[1]) {
1164 src = (s->y_base + s->text_y[0]) * s->width;
1165 chardata += s->text_y[0] * s->width;
1166 for (i = s->text_y[0]; i <= s->text_y[1]; i ++)
1167 for (j = 0; j < s->width; j ++, src ++)
1168 console_write_ch(chardata ++, s->cells[src].ch |
1169 (s->cells[src].t_attrib.fgcol << 12) |
1170 (s->cells[src].t_attrib.bgcol << 8) |
1171 (s->cells[src].t_attrib.bold << 21));
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001172 dpy_text_update(s, s->text_x[0], s->text_y[0],
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001173 s->text_x[1] - s->text_x[0], i - s->text_y[0]);
balrog4d3b6f62008-02-10 16:33:14 +00001174 s->text_x[0] = s->width;
1175 s->text_y[0] = s->height;
1176 s->text_x[1] = 0;
1177 s->text_y[1] = 0;
1178 }
1179 if (s->cursor_invalidate) {
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001180 dpy_text_cursor(s, s->x, s->y);
balrog4d3b6f62008-02-10 16:33:14 +00001181 s->cursor_invalidate = 0;
1182 }
1183}
1184
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001185static QemuConsole *new_console(DisplayState *ds, console_type_t console_type,
1186 uint32_t head)
bellarde7f0ad52004-07-14 17:28:59 +00001187{
Gerd Hoffmann95be0662013-04-17 09:45:10 +02001188 Object *obj;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001189 QemuConsole *s;
pbrook95219892006-04-09 01:06:34 +00001190 int i;
bellarde7f0ad52004-07-14 17:28:59 +00001191
Gerd Hoffmann95be0662013-04-17 09:45:10 +02001192 obj = object_new(TYPE_QEMU_CONSOLE);
1193 s = QEMU_CONSOLE(obj);
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001194 s->head = head;
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +02001195 object_property_add_link(obj, "device", TYPE_DEVICE,
Stefan Hajnoczi9561fda2014-03-19 08:58:55 +01001196 (Object **)&s->device,
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001197 object_property_allow_set_link,
Stefan Hajnoczi9561fda2014-03-19 08:58:55 +01001198 OBJ_PROP_LINK_UNREF_ON_RELEASE,
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001199 &error_abort);
Gerd Hoffmann56437062014-01-24 15:35:21 +01001200 object_property_add_uint32_ptr(obj, "head",
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001201 &s->head, &error_abort);
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +02001202
thsaf3a9032007-07-11 23:14:59 +00001203 if (!active_console || ((active_console->console_type != GRAPHIC_CONSOLE) &&
1204 (console_type == GRAPHIC_CONSOLE))) {
bellarde7f0ad52004-07-14 17:28:59 +00001205 active_console = s;
thsaf3a9032007-07-11 23:14:59 +00001206 }
bellarde7f0ad52004-07-14 17:28:59 +00001207 s->ds = ds;
thsaf3a9032007-07-11 23:14:59 +00001208 s->console_type = console_type;
Gerd Hoffmanna1d2db02014-05-26 10:36:35 +02001209
1210 consoles = g_realloc(consoles, sizeof(*consoles) * (nb_consoles+1));
thsaf3a9032007-07-11 23:14:59 +00001211 if (console_type != GRAPHIC_CONSOLE) {
Jan Kiszkaf81bdef2011-09-16 00:48:07 +02001212 s->index = nb_consoles;
pbrook95219892006-04-09 01:06:34 +00001213 consoles[nb_consoles++] = s;
1214 } else {
1215 /* HACK: Put graphical consoles before text consoles. */
1216 for (i = nb_consoles; i > 0; i--) {
thsaf3a9032007-07-11 23:14:59 +00001217 if (consoles[i - 1]->console_type == GRAPHIC_CONSOLE)
pbrook95219892006-04-09 01:06:34 +00001218 break;
1219 consoles[i] = consoles[i - 1];
Jan Kiszkaf81bdef2011-09-16 00:48:07 +02001220 consoles[i]->index = i;
pbrook95219892006-04-09 01:06:34 +00001221 }
Jan Kiszkaf81bdef2011-09-16 00:48:07 +02001222 s->index = i;
pbrook95219892006-04-09 01:06:34 +00001223 consoles[i] = s;
aliguori3023f3322009-01-16 19:04:14 +00001224 nb_consoles++;
pbrook95219892006-04-09 01:06:34 +00001225 }
bellarde7f0ad52004-07-14 17:28:59 +00001226 return s;
1227}
1228
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001229static void qemu_alloc_display(DisplaySurface *surface, int width, int height)
Jes Sorensenffe8b822011-03-16 13:33:30 +01001230{
Gerd Hoffmann69c77772012-09-26 15:20:05 +02001231 qemu_pixman_image_unref(surface->image);
1232 surface->image = NULL;
Gerd Hoffmann69c77772012-09-26 15:20:05 +02001233
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001234 surface->format = PIXMAN_x8r8g8b8;
Gerd Hoffmann69c77772012-09-26 15:20:05 +02001235 surface->image = pixman_image_create_bits(surface->format,
1236 width, height,
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001237 NULL, width * 4);
Gerd Hoffmann69c77772012-09-26 15:20:05 +02001238 assert(surface->image != NULL);
1239
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001240 surface->flags = QEMU_ALLOCATED_FLAG;
Paolo Bonzini98b50082010-02-11 00:29:57 +01001241}
1242
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001243DisplaySurface *qemu_create_displaysurface(int width, int height)
Gerd Hoffmann537a4392012-09-27 11:06:36 +02001244{
1245 DisplaySurface *surface = g_new0(DisplaySurface, 1);
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001246
1247 trace_displaysurface_create(surface, width, height);
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001248 qemu_alloc_display(surface, width, height);
Gerd Hoffmann537a4392012-09-27 11:06:36 +02001249 return surface;
1250}
1251
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001252DisplaySurface *qemu_create_displaysurface_from(int width, int height,
1253 pixman_format_code_t format,
1254 int linesize, uint8_t *data)
Paolo Bonzini98b50082010-02-11 00:29:57 +01001255{
Gerd Hoffmann69c77772012-09-26 15:20:05 +02001256 DisplaySurface *surface = g_new0(DisplaySurface, 1);
Paolo Bonzini98b50082010-02-11 00:29:57 +01001257
Gerd Hoffmann30f1e662014-06-18 11:03:15 +02001258 trace_displaysurface_create_from(surface, width, height, format);
1259 surface->format = format;
Gerd Hoffmann69c77772012-09-26 15:20:05 +02001260 surface->image = pixman_image_create_bits(surface->format,
1261 width, height,
1262 (void *)data, linesize);
1263 assert(surface->image != NULL);
1264
Paolo Bonzini98b50082010-02-11 00:29:57 +01001265 return surface;
1266}
1267
Gerd Hoffmanna77549b2014-06-19 08:46:08 +02001268static void qemu_unmap_displaysurface_guestmem(pixman_image_t *image,
1269 void *unused)
1270{
1271 void *data = pixman_image_get_data(image);
1272 uint32_t size = pixman_image_get_stride(image) *
1273 pixman_image_get_height(image);
1274 cpu_physical_memory_unmap(data, size, 0, 0);
1275}
1276
1277DisplaySurface *qemu_create_displaysurface_guestmem(int width, int height,
1278 pixman_format_code_t format,
1279 int linesize, uint64_t addr)
1280{
1281 DisplaySurface *surface;
1282 hwaddr size;
1283 void *data;
1284
1285 if (linesize == 0) {
1286 linesize = width * PIXMAN_FORMAT_BPP(format) / 8;
1287 }
1288
Gongleif76b84a2015-03-11 16:21:00 +08001289 size = (hwaddr)linesize * height;
Gerd Hoffmanna77549b2014-06-19 08:46:08 +02001290 data = cpu_physical_memory_map(addr, &size, 0);
Gongleif76b84a2015-03-11 16:21:00 +08001291 if (size != (hwaddr)linesize * height) {
Gerd Hoffmanna77549b2014-06-19 08:46:08 +02001292 cpu_physical_memory_unmap(data, size, 0, 0);
1293 return NULL;
1294 }
1295
1296 surface = qemu_create_displaysurface_from
1297 (width, height, format, linesize, data);
1298 pixman_image_set_destroy_function
1299 (surface->image, qemu_unmap_displaysurface_guestmem, NULL);
1300
1301 return surface;
1302}
1303
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001304static DisplaySurface *qemu_create_message_surface(int w, int h,
1305 const char *msg)
Gerd Hoffmannd3002b02013-04-25 09:33:19 +02001306{
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001307 DisplaySurface *surface = qemu_create_displaysurface(w, h);
Gerd Hoffmannd3002b02013-04-25 09:33:19 +02001308 pixman_color_t bg = color_table_rgb[0][COLOR_BLACK];
1309 pixman_color_t fg = color_table_rgb[0][COLOR_WHITE];
1310 pixman_image_t *glyph;
1311 int len, x, y, i;
1312
1313 len = strlen(msg);
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001314 x = (w / FONT_WIDTH - len) / 2;
1315 y = (h / FONT_HEIGHT - 1) / 2;
Gerd Hoffmannd3002b02013-04-25 09:33:19 +02001316 for (i = 0; i < len; i++) {
1317 glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]);
1318 qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg,
1319 x+i, y, FONT_WIDTH, FONT_HEIGHT);
1320 qemu_pixman_image_unref(glyph);
1321 }
1322 return surface;
1323}
1324
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001325void qemu_free_displaysurface(DisplaySurface *surface)
Paolo Bonzini98b50082010-02-11 00:29:57 +01001326{
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001327 if (surface == NULL) {
Paolo Bonzini98b50082010-02-11 00:29:57 +01001328 return;
Gerd Hoffmann187cd1d2012-09-26 07:46:20 +02001329 }
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001330 trace_displaysurface_free(surface);
1331 qemu_pixman_image_unref(surface->image);
1332 g_free(surface);
Paolo Bonzini98b50082010-02-11 00:29:57 +01001333}
1334
Gerd Hoffmann52090892013-04-23 15:44:31 +02001335void register_displaychangelistener(DisplayChangeListener *dcl)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001336{
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001337 static const char nodev[] =
1338 "This VM has no graphic display device.";
Gerd Hoffmannd3002b02013-04-25 09:33:19 +02001339 static DisplaySurface *dummy;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001340 QemuConsole *con;
1341
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001342 trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
Gerd Hoffmann52090892013-04-23 15:44:31 +02001343 dcl->ds = get_alloc_displaystate();
1344 QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next);
1345 gui_setup_refresh(dcl->ds);
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001346 if (dcl->con) {
1347 dcl->con->dcls++;
1348 con = dcl->con;
1349 } else {
1350 con = active_console;
1351 }
Gerd Hoffmannd3002b02013-04-25 09:33:19 +02001352 if (dcl->ops->dpy_gfx_switch) {
1353 if (con) {
1354 dcl->ops->dpy_gfx_switch(dcl, con->surface);
1355 } else {
1356 if (!dummy) {
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001357 dummy = qemu_create_message_surface(640, 480, nodev);
Gerd Hoffmannd3002b02013-04-25 09:33:19 +02001358 }
1359 dcl->ops->dpy_gfx_switch(dcl, dummy);
1360 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001361 }
Gerd Hoffmannaea79472014-05-22 11:27:13 +02001362 text_console_update_cursor(NULL);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001363}
1364
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +01001365void update_displaychangelistener(DisplayChangeListener *dcl,
1366 uint64_t interval)
1367{
1368 DisplayState *ds = dcl->ds;
1369
1370 dcl->update_interval = interval;
1371 if (!ds->refreshing && ds->update_interval > interval) {
Alex Blighbc72ad62013-08-21 16:03:08 +01001372 timer_mod(ds->gui_timer, ds->last_update + interval);
Gerd Hoffmann0f7b2862013-03-14 11:56:16 +01001373 }
1374}
1375
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001376void unregister_displaychangelistener(DisplayChangeListener *dcl)
1377{
1378 DisplayState *ds = dcl->ds;
1379 trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name);
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001380 if (dcl->con) {
1381 dcl->con->dcls--;
1382 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001383 QLIST_REMOVE(dcl, next);
1384 gui_setup_refresh(ds);
1385}
1386
Gerd Hoffmanncf1ecc82015-03-12 12:51:13 +01001387static void dpy_set_ui_info_timer(void *opaque)
1388{
1389 QemuConsole *con = opaque;
1390
1391 con->hw_ops->ui_info(con->hw, con->head, &con->ui_info);
1392}
1393
Gerd Hoffmannb7fb49f2015-03-13 12:21:14 +01001394bool dpy_ui_info_supported(QemuConsole *con)
1395{
1396 return con->hw_ops->ui_info != NULL;
1397}
1398
Gerd Hoffmann6f90f3d2014-01-24 17:38:20 +01001399int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info)
1400{
1401 assert(con != NULL);
1402 con->ui_info = *info;
Gerd Hoffmannb7fb49f2015-03-13 12:21:14 +01001403 if (!dpy_ui_info_supported(con)) {
Gerd Hoffmanncf1ecc82015-03-12 12:51:13 +01001404 return -1;
Gerd Hoffmann6f90f3d2014-01-24 17:38:20 +01001405 }
Gerd Hoffmanncf1ecc82015-03-12 12:51:13 +01001406
1407 /*
1408 * Typically we get a flood of these as the user resizes the window.
1409 * Wait until the dust has settled (one second without updates), then
1410 * go notify the guest.
1411 */
1412 timer_mod(con->ui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
1413 return 0;
Gerd Hoffmann6f90f3d2014-01-24 17:38:20 +01001414}
1415
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001416void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001417{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001418 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001419 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001420 int width = surface_width(con->surface);
1421 int height = surface_height(con->surface);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001422
1423 x = MAX(x, 0);
1424 y = MAX(y, 0);
1425 x = MIN(x, width);
1426 y = MIN(y, height);
1427 w = MIN(w, width - x);
1428 h = MIN(h, height - y);
1429
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001430 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001431 return;
1432 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001433 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001434 if (con != (dcl->con ? dcl->con : active_console)) {
1435 continue;
1436 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001437 if (dcl->ops->dpy_gfx_update) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001438 dcl->ops->dpy_gfx_update(dcl, x, y, w, h);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001439 }
1440 }
1441}
1442
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001443void dpy_gfx_replace_surface(QemuConsole *con,
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001444 DisplaySurface *surface)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001445{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001446 DisplayState *s = con->ds;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001447 DisplaySurface *old_surface = con->surface;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001448 DisplayChangeListener *dcl;
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001449
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001450 con->surface = surface;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001451 QLIST_FOREACH(dcl, &s->listeners, next) {
1452 if (con != (dcl->con ? dcl->con : active_console)) {
1453 continue;
1454 }
1455 if (dcl->ops->dpy_gfx_switch) {
1456 dcl->ops->dpy_gfx_switch(dcl, surface);
1457 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001458 }
Gerd Hoffmannda229ef2013-02-28 10:48:02 +01001459 qemu_free_displaysurface(old_surface);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001460}
1461
Benjamin Herrenschmidt49743df2014-07-07 16:39:05 +10001462bool dpy_gfx_check_format(QemuConsole *con,
1463 pixman_format_code_t format)
1464{
1465 DisplayChangeListener *dcl;
1466 DisplayState *s = con->ds;
1467
1468 QLIST_FOREACH(dcl, &s->listeners, next) {
1469 if (dcl->con && dcl->con != con) {
1470 /* dcl bound to another console -> skip */
1471 continue;
1472 }
1473 if (dcl->ops->dpy_gfx_check_format) {
1474 if (!dcl->ops->dpy_gfx_check_format(dcl, format)) {
1475 return false;
1476 }
1477 } else {
1478 /* default is to whitelist native 32 bpp only */
1479 if (format != qemu_default_pixman_format(32, true)) {
1480 return false;
1481 }
1482 }
1483 }
1484 return true;
1485}
1486
Stefan Weil60751372014-05-02 22:48:30 +02001487static void dpy_refresh(DisplayState *s)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001488{
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001489 DisplayChangeListener *dcl;
1490
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001491 QLIST_FOREACH(dcl, &s->listeners, next) {
1492 if (dcl->ops->dpy_refresh) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001493 dcl->ops->dpy_refresh(dcl);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001494 }
1495 }
1496}
1497
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001498void dpy_gfx_copy(QemuConsole *con, int src_x, int src_y,
1499 int dst_x, int dst_y, int w, int h)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001500{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001501 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001502 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001503
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001504 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001505 return;
1506 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001507 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001508 if (con != (dcl->con ? dcl->con : active_console)) {
1509 continue;
1510 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001511 if (dcl->ops->dpy_gfx_copy) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001512 dcl->ops->dpy_gfx_copy(dcl, src_x, src_y, dst_x, dst_y, w, h);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001513 } else { /* TODO */
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001514 dcl->ops->dpy_gfx_update(dcl, dst_x, dst_y, w, h);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001515 }
1516 }
1517}
1518
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001519void dpy_text_cursor(QemuConsole *con, int x, int y)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001520{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001521 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001522 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001523
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001524 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001525 return;
1526 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001527 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001528 if (con != (dcl->con ? dcl->con : active_console)) {
1529 continue;
1530 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001531 if (dcl->ops->dpy_text_cursor) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001532 dcl->ops->dpy_text_cursor(dcl, x, y);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001533 }
1534 }
1535}
1536
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001537void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001538{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001539 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001540 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001541
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001542 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001543 return;
1544 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001545 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001546 if (con != (dcl->con ? dcl->con : active_console)) {
1547 continue;
1548 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001549 if (dcl->ops->dpy_text_update) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001550 dcl->ops->dpy_text_update(dcl, x, y, w, h);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001551 }
1552 }
1553}
1554
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001555void dpy_text_resize(QemuConsole *con, int w, int h)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001556{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001557 DisplayState *s = con->ds;
Chih-Min Chao9425c002015-04-09 02:04:13 +08001558 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001559
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001560 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001561 return;
1562 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001563 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001564 if (con != (dcl->con ? dcl->con : active_console)) {
1565 continue;
1566 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001567 if (dcl->ops->dpy_text_resize) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001568 dcl->ops->dpy_text_resize(dcl, w, h);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001569 }
1570 }
1571}
1572
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001573void dpy_mouse_set(QemuConsole *con, int x, int y, int on)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001574{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001575 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001576 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001577
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001578 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001579 return;
1580 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001581 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001582 if (con != (dcl->con ? dcl->con : active_console)) {
1583 continue;
1584 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001585 if (dcl->ops->dpy_mouse_set) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001586 dcl->ops->dpy_mouse_set(dcl, x, y, on);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001587 }
1588 }
1589}
1590
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001591void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001592{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001593 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001594 DisplayChangeListener *dcl;
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001595
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001596 if (!qemu_console_is_visible(con)) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001597 return;
1598 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001599 QLIST_FOREACH(dcl, &s->listeners, next) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001600 if (con != (dcl->con ? dcl->con : active_console)) {
1601 continue;
1602 }
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001603 if (dcl->ops->dpy_cursor_define) {
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001604 dcl->ops->dpy_cursor_define(dcl, cursor);
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001605 }
1606 }
1607}
1608
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001609bool dpy_cursor_define_supported(QemuConsole *con)
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001610{
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001611 DisplayState *s = con->ds;
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001612 DisplayChangeListener *dcl;
1613
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001614 QLIST_FOREACH(dcl, &s->listeners, next) {
1615 if (dcl->ops->dpy_cursor_define) {
1616 return true;
1617 }
1618 }
1619 return false;
1620}
1621
Paolo Bonzini98b50082010-02-11 00:29:57 +01001622/***********************************************************/
1623/* register display */
1624
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001625/* console.c internal use only */
1626static DisplayState *get_alloc_displaystate(void)
Paolo Bonzini98b50082010-02-11 00:29:57 +01001627{
1628 if (!display_state) {
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001629 display_state = g_new0(DisplayState, 1);
Gerd Hoffmannaea79472014-05-22 11:27:13 +02001630 cursor_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
1631 text_console_update_cursor, NULL);
Paolo Bonzini98b50082010-02-11 00:29:57 +01001632 }
1633 return display_state;
1634}
1635
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001636/*
1637 * Called by main(), after creating QemuConsoles
1638 * and before initializing ui (sdl/vnc/...).
1639 */
1640DisplayState *init_displaystate(void)
1641{
Gerd Hoffmann43f420f2013-06-25 10:49:31 +02001642 gchar *name;
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001643 int i;
1644
Gerd Hoffmann333cb182014-06-02 14:07:18 +02001645 get_alloc_displaystate();
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001646 for (i = 0; i < nb_consoles; i++) {
1647 if (consoles[i]->console_type != GRAPHIC_CONSOLE &&
1648 consoles[i]->ds == NULL) {
1649 text_console_do_init(consoles[i]->chr, display_state);
1650 }
Gerd Hoffmann43f420f2013-06-25 10:49:31 +02001651
1652 /* Hook up into the qom tree here (not in new_console()), once
1653 * all QemuConsoles are created and the order / numbering
1654 * doesn't change any more */
1655 name = g_strdup_printf("console[%d]", i);
1656 object_property_add_child(container_get(object_get_root(), "/backend"),
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001657 name, OBJECT(consoles[i]), &error_abort);
Gerd Hoffmann43f420f2013-06-25 10:49:31 +02001658 g_free(name);
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001659 }
1660
1661 return display_state;
1662}
1663
Gerd Hoffmann1c1f9492014-09-24 17:05:27 +02001664void graphic_console_set_hwops(QemuConsole *con,
1665 const GraphicHwOps *hw_ops,
1666 void *opaque)
1667{
1668 con->hw_ops = hw_ops;
1669 con->hw = opaque;
1670}
1671
Gerd Hoffmann56437062014-01-24 15:35:21 +01001672QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +02001673 const GraphicHwOps *hw_ops,
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001674 void *opaque)
bellarde7f0ad52004-07-14 17:28:59 +00001675{
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001676 static const char noinit[] =
1677 "Guest has not initialized the display (yet).";
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001678 int width = 640;
1679 int height = 480;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001680 QemuConsole *s;
aliguori3023f3322009-01-16 19:04:14 +00001681 DisplayState *ds;
aurel32f0f2f972009-01-16 21:13:49 +00001682
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001683 ds = get_alloc_displaystate();
Gerd Hoffmann437fe102013-03-07 16:04:52 +01001684 trace_console_gfx_new();
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001685 s = new_console(ds, GRAPHIC_CONSOLE, head);
Gerd Hoffmanncf1ecc82015-03-12 12:51:13 +01001686 s->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, dpy_set_ui_info_timer, s);
Gerd Hoffmann1c1f9492014-09-24 17:05:27 +02001687 graphic_console_set_hwops(s, hw_ops, opaque);
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +02001688 if (dev) {
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001689 object_property_set_link(OBJECT(s), OBJECT(dev), "device",
1690 &error_abort);
Gerd Hoffmannaa2beaa2013-04-17 10:21:27 +02001691 }
aliguori3023f3322009-01-16 19:04:14 +00001692
Gerd Hoffmann521a5802013-04-25 12:10:45 +02001693 s->surface = qemu_create_message_surface(width, height, noinit);
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001694 return s;
pbrook95219892006-04-09 01:06:34 +00001695}
1696
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001697QemuConsole *qemu_console_lookup_by_index(unsigned int index)
1698{
Gerd Hoffmanna1d2db02014-05-26 10:36:35 +02001699 if (index >= nb_consoles) {
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001700 return NULL;
1701 }
1702 return consoles[index];
1703}
1704
Gerd Hoffmann56437062014-01-24 15:35:21 +01001705QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head)
Gerd Hoffmann14a93642013-04-18 07:30:40 +02001706{
Gerd Hoffmann14a93642013-04-18 07:30:40 +02001707 Object *obj;
Gerd Hoffmann56437062014-01-24 15:35:21 +01001708 uint32_t h;
Gerd Hoffmann14a93642013-04-18 07:30:40 +02001709 int i;
1710
1711 for (i = 0; i < nb_consoles; i++) {
1712 if (!consoles[i]) {
1713 continue;
1714 }
1715 obj = object_property_get_link(OBJECT(consoles[i]),
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001716 "device", &error_abort);
Gerd Hoffmann56437062014-01-24 15:35:21 +01001717 if (DEVICE(obj) != dev) {
1718 continue;
Gerd Hoffmann14a93642013-04-18 07:30:40 +02001719 }
Gerd Hoffmann56437062014-01-24 15:35:21 +01001720 h = object_property_get_int(OBJECT(consoles[i]),
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001721 "head", &error_abort);
Gerd Hoffmann56437062014-01-24 15:35:21 +01001722 if (h != head) {
1723 continue;
1724 }
1725 return consoles[i];
Gerd Hoffmann14a93642013-04-18 07:30:40 +02001726 }
1727 return NULL;
1728}
1729
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001730bool qemu_console_is_visible(QemuConsole *con)
pbrook95219892006-04-09 01:06:34 +00001731{
Gerd Hoffmann284d1c62013-03-15 15:45:54 +01001732 return (con == active_console) || (con->dcls > 0);
bellarde7f0ad52004-07-14 17:28:59 +00001733}
1734
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001735bool qemu_console_is_graphic(QemuConsole *con)
balrogc21bbcf2008-09-24 03:32:33 +00001736{
Gerd Hoffmann81c0d5a2013-03-14 14:27:08 +01001737 if (con == NULL) {
1738 con = active_console;
1739 }
1740 return con && (con->console_type == GRAPHIC_CONSOLE);
1741}
1742
1743bool qemu_console_is_fixedsize(QemuConsole *con)
1744{
1745 if (con == NULL) {
1746 con = active_console;
1747 }
1748 return con && (con->console_type != TEXT_CONSOLE);
balrogc21bbcf2008-09-24 03:32:33 +00001749}
1750
Gerd Hoffmann779ce882015-02-17 10:41:08 +01001751char *qemu_console_get_label(QemuConsole *con)
1752{
1753 if (con->console_type == GRAPHIC_CONSOLE) {
1754 if (con->device) {
1755 return g_strdup(object_get_typename(con->device));
1756 }
1757 return g_strdup("VGA");
1758 } else {
1759 if (con->chr && con->chr->label) {
1760 return g_strdup(con->chr->label);
1761 }
1762 return g_strdup_printf("vc%d", con->index);
1763 }
1764}
1765
Gerd Hoffmannd4c85332013-11-28 09:58:18 +01001766int qemu_console_get_index(QemuConsole *con)
1767{
1768 if (con == NULL) {
1769 con = active_console;
1770 }
1771 return con ? con->index : -1;
1772}
1773
Gerd Hoffmann56437062014-01-24 15:35:21 +01001774uint32_t qemu_console_get_head(QemuConsole *con)
1775{
1776 if (con == NULL) {
1777 con = active_console;
1778 }
1779 return con ? con->head : -1;
1780}
1781
Gerd Hoffmann6f90f3d2014-01-24 17:38:20 +01001782QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con)
1783{
1784 assert(con != NULL);
1785 return &con->ui_info;
1786}
1787
Gerd Hoffmannd4c85332013-11-28 09:58:18 +01001788int qemu_console_get_width(QemuConsole *con, int fallback)
1789{
1790 if (con == NULL) {
1791 con = active_console;
1792 }
1793 return con ? surface_width(con->surface) : fallback;
1794}
1795
1796int qemu_console_get_height(QemuConsole *con, int fallback)
1797{
1798 if (con == NULL) {
1799 con = active_console;
1800 }
1801 return con ? surface_height(con->surface) : fallback;
1802}
1803
Paolo Bonzini41048332010-12-23 13:42:52 +01001804static void text_console_set_echo(CharDriverState *chr, bool echo)
1805{
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001806 QemuConsole *s = chr->opaque;
Paolo Bonzini41048332010-12-23 13:42:52 +01001807
1808 s->echo = echo;
1809}
1810
Gerd Hoffmannaea79472014-05-22 11:27:13 +02001811static void text_console_update_cursor_timer(void)
1812{
1813 timer_mod(cursor_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
1814 + CONSOLE_CURSOR_PERIOD / 2);
1815}
1816
Jan Kiszkabf1bed82012-07-10 22:00:55 +02001817static void text_console_update_cursor(void *opaque)
1818{
Gerd Hoffmannaea79472014-05-22 11:27:13 +02001819 QemuConsole *s;
1820 int i, count = 0;
Jan Kiszkabf1bed82012-07-10 22:00:55 +02001821
Gerd Hoffmannaea79472014-05-22 11:27:13 +02001822 cursor_visible_phase = !cursor_visible_phase;
1823
1824 for (i = 0; i < nb_consoles; i++) {
1825 s = consoles[i];
1826 if (qemu_console_is_graphic(s) ||
1827 !qemu_console_is_visible(s)) {
1828 continue;
1829 }
1830 count++;
1831 graphic_hw_invalidate(s);
1832 }
1833
1834 if (count) {
1835 text_console_update_cursor_timer();
1836 }
Jan Kiszkabf1bed82012-07-10 22:00:55 +02001837}
1838
Gerd Hoffmann380cd052013-03-13 14:04:18 +01001839static const GraphicHwOps text_console_ops = {
1840 .invalidate = text_console_invalidate,
1841 .text_update = text_console_update,
1842};
1843
Paolo Bonzini44b37b92010-12-23 13:42:53 +01001844static void text_console_do_init(CharDriverState *chr, DisplayState *ds)
bellarde7f0ad52004-07-14 17:28:59 +00001845{
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001846 QemuConsole *s;
Gerd Hoffmann36671fb2013-03-13 10:14:52 +01001847 int g_width = 80 * FONT_WIDTH;
1848 int g_height = 24 * FONT_HEIGHT;
pbrook6d6f7c22006-03-11 15:35:30 +00001849
Paolo Bonzini491e1142010-12-23 13:42:51 +01001850 s = chr->opaque;
Gerd Hoffmann6ea314d2009-09-10 10:58:49 +02001851
bellarde7f0ad52004-07-14 17:28:59 +00001852 chr->chr_write = console_puts;
bellard6fcfafb2004-08-01 21:48:30 +00001853
bellarde15d7372006-06-25 16:26:29 +00001854 s->out_fifo.buf = s->out_fifo_buf;
1855 s->out_fifo.buf_size = sizeof(s->out_fifo_buf);
Alex Blighbc72ad62013-08-21 16:03:08 +01001856 s->kbd_timer = timer_new_ms(QEMU_CLOCK_REALTIME, kbd_send_chars, s);
aliguori3023f3322009-01-16 19:04:14 +00001857 s->ds = ds;
ths3b46e622007-09-17 08:09:54 +00001858
bellarde7f0ad52004-07-14 17:28:59 +00001859 s->y_displayed = 0;
1860 s->y_base = 0;
1861 s->total_height = DEFAULT_BACKSCROLL;
1862 s->x = 0;
1863 s->y = 0;
Gerd Hoffmann36671fb2013-03-13 10:14:52 +01001864 if (!s->surface) {
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001865 if (active_console && active_console->surface) {
Gerd Hoffmann36671fb2013-03-13 10:14:52 +01001866 g_width = surface_width(active_console->surface);
1867 g_height = surface_height(active_console->surface);
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001868 }
Gerd Hoffmann36671fb2013-03-13 10:14:52 +01001869 s->surface = qemu_create_displaysurface(g_width, g_height);
Paolo Bonzini491e1142010-12-23 13:42:51 +01001870 }
pbrook6d6f7c22006-03-11 15:35:30 +00001871
Gerd Hoffmann380cd052013-03-13 14:04:18 +01001872 s->hw_ops = &text_console_ops;
balrog4d3b6f62008-02-10 16:33:14 +00001873 s->hw = s;
1874
pbrook6d6f7c22006-03-11 15:35:30 +00001875 /* Set text attribute defaults */
1876 s->t_attrib_default.bold = 0;
1877 s->t_attrib_default.uline = 0;
1878 s->t_attrib_default.blink = 0;
1879 s->t_attrib_default.invers = 0;
1880 s->t_attrib_default.unvisible = 0;
1881 s->t_attrib_default.fgcol = COLOR_WHITE;
1882 s->t_attrib_default.bgcol = COLOR_BLACK;
pbrook6d6f7c22006-03-11 15:35:30 +00001883 /* set current text attributes to default */
1884 s->t_attrib = s->t_attrib_default;
bellarde7f0ad52004-07-14 17:28:59 +00001885 text_console_resize(s);
1886
Gerd Hoffmann51bfa4d2009-12-08 13:11:39 +01001887 if (chr->label) {
1888 char msg[128];
1889 int len;
1890
Gerd Hoffmann735ba582009-12-08 13:11:40 +01001891 s->t_attrib.bgcol = COLOR_BLUE;
Gerd Hoffmann51bfa4d2009-12-08 13:11:39 +01001892 len = snprintf(msg, sizeof(msg), "%s console\r\n", chr->label);
1893 console_puts(chr, (uint8_t*)msg, len);
Gerd Hoffmann735ba582009-12-08 13:11:40 +01001894 s->t_attrib = s->t_attrib_default;
Gerd Hoffmann51bfa4d2009-12-08 13:11:39 +01001895 }
1896
Hans de Goedefee204f2013-03-26 11:07:54 +01001897 qemu_chr_be_generic_open(chr);
aurel32ceecf1d2009-01-18 14:08:04 +00001898 if (chr->init)
1899 chr->init(chr);
bellarde7f0ad52004-07-14 17:28:59 +00001900}
pbrookc60e08d2008-07-01 16:24:38 +00001901
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001902static CharDriverState *text_console_init(ChardevVC *vc)
aliguori2796dae2009-01-16 20:23:27 +00001903{
1904 CharDriverState *chr;
Gerd Hoffmann76ffb0b2012-09-28 13:24:17 +02001905 QemuConsole *s;
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001906 unsigned width = 0;
1907 unsigned height = 0;
aliguori2796dae2009-01-16 20:23:27 +00001908
Paolo Bonzinidb39fcf2014-06-18 08:43:55 +02001909 chr = qemu_chr_alloc();
aliguori2796dae2009-01-16 20:23:27 +00001910
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001911 if (vc->has_width) {
1912 width = vc->width;
1913 } else if (vc->has_cols) {
1914 width = vc->cols * FONT_WIDTH;
1915 }
Paolo Bonzini491e1142010-12-23 13:42:51 +01001916
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001917 if (vc->has_height) {
1918 height = vc->height;
1919 } else if (vc->has_rows) {
1920 height = vc->rows * FONT_HEIGHT;
1921 }
Paolo Bonzini491e1142010-12-23 13:42:51 +01001922
Gerd Hoffmann437fe102013-03-07 16:04:52 +01001923 trace_console_txt_new(width, height);
Paolo Bonzini491e1142010-12-23 13:42:51 +01001924 if (width == 0 || height == 0) {
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001925 s = new_console(NULL, TEXT_CONSOLE, 0);
Paolo Bonzini491e1142010-12-23 13:42:51 +01001926 } else {
Kirill Batuzovafff2b12014-04-24 18:15:58 +04001927 s = new_console(NULL, TEXT_CONSOLE_FIXED_SIZE, 0);
Gerd Hoffmann36671fb2013-03-13 10:14:52 +01001928 s->surface = qemu_create_displaysurface(width, height);
Paolo Bonzini491e1142010-12-23 13:42:51 +01001929 }
1930
1931 if (!s) {
Stefan Weil5354d082011-10-02 18:53:09 +02001932 g_free(chr);
Markus Armbruster1f514702012-02-07 15:09:08 +01001933 return NULL;
Paolo Bonzini491e1142010-12-23 13:42:51 +01001934 }
1935
1936 s->chr = chr;
Paolo Bonzini491e1142010-12-23 13:42:51 +01001937 chr->opaque = s;
Paolo Bonzini41048332010-12-23 13:42:52 +01001938 chr->chr_set_echo = text_console_set_echo;
Michael Rothbd5c51e2013-06-07 15:19:53 -05001939 /* console/chardev init sometimes completes elsewhere in a 2nd
1940 * stage, so defer OPENED events until they are fully initialized
1941 */
1942 chr->explicit_be_open = true;
Gerd Hoffmann64840c62013-03-07 17:08:29 +01001943
1944 if (display_state) {
1945 text_console_do_init(chr, display_state);
1946 }
Markus Armbruster1f514702012-02-07 15:09:08 +01001947 return chr;
aliguori2796dae2009-01-16 20:23:27 +00001948}
1949
Anthony Liguorid82831d2013-02-20 07:43:19 -06001950static VcHandler *vc_handler = text_console_init;
1951
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001952CharDriverState *vc_init(ChardevVC *vc)
Anthony Liguorid82831d2013-02-20 07:43:19 -06001953{
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001954 return vc_handler(vc);
Anthony Liguorid82831d2013-02-20 07:43:19 -06001955}
1956
1957void register_vc_handler(VcHandler *handler)
1958{
1959 vc_handler = handler;
1960}
1961
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001962void qemu_console_resize(QemuConsole *s, int width, int height)
pbrookc60e08d2008-07-01 16:24:38 +00001963{
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001964 DisplaySurface *surface;
1965
1966 assert(s->console_type == GRAPHIC_CONSOLE);
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001967 surface = qemu_create_displaysurface(width, height);
1968 dpy_gfx_replace_surface(s, surface);
pbrookc60e08d2008-07-01 16:24:38 +00001969}
balrog38334f72008-09-24 02:21:24 +00001970
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001971void qemu_console_copy(QemuConsole *con, int src_x, int src_y,
aliguori3023f3322009-01-16 19:04:14 +00001972 int dst_x, int dst_y, int w, int h)
balrogc21bbcf2008-09-24 03:32:33 +00001973{
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001974 assert(con->console_type == GRAPHIC_CONSOLE);
1975 dpy_gfx_copy(con, src_x, src_y, dst_x, dst_y, w, h);
balrog38334f72008-09-24 02:21:24 +00001976}
aliguori7d957bd2009-01-15 22:14:11 +00001977
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001978DisplaySurface *qemu_console_surface(QemuConsole *console)
1979{
Gerd Hoffmann321f0482013-03-12 14:39:22 +01001980 return console->surface;
Gerd Hoffmannc78f7132013-03-05 15:24:14 +01001981}
1982
malc0da2ea12009-01-23 19:56:19 +00001983PixelFormat qemu_default_pixelformat(int bpp)
1984{
Gerd Hoffmann56bd9ea2014-06-18 11:07:50 +02001985 pixman_format_code_t fmt = qemu_default_pixman_format(bpp, true);
1986 PixelFormat pf = qemu_pixelformat_from_pixman(fmt);
aliguori7d957bd2009-01-15 22:14:11 +00001987 return pf;
1988}
Anthony Liguori01f45d92013-03-05 23:21:32 +05301989
Gerd Hoffmann702ec692013-02-25 15:52:32 +01001990static void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend,
1991 Error **errp)
1992{
1993 int val;
1994
1995 backend->vc = g_new0(ChardevVC, 1);
1996
1997 val = qemu_opt_get_number(opts, "width", 0);
1998 if (val != 0) {
1999 backend->vc->has_width = true;
2000 backend->vc->width = val;
2001 }
2002
2003 val = qemu_opt_get_number(opts, "height", 0);
2004 if (val != 0) {
2005 backend->vc->has_height = true;
2006 backend->vc->height = val;
2007 }
2008
2009 val = qemu_opt_get_number(opts, "cols", 0);
2010 if (val != 0) {
2011 backend->vc->has_cols = true;
2012 backend->vc->cols = val;
2013 }
2014
2015 val = qemu_opt_get_number(opts, "rows", 0);
2016 if (val != 0) {
2017 backend->vc->has_rows = true;
2018 backend->vc->rows = val;
2019 }
2020}
2021
Gerd Hoffmann95be0662013-04-17 09:45:10 +02002022static const TypeInfo qemu_console_info = {
2023 .name = TYPE_QEMU_CONSOLE,
2024 .parent = TYPE_OBJECT,
2025 .instance_size = sizeof(QemuConsole),
2026 .class_size = sizeof(QemuConsoleClass),
2027};
2028
2029
Anthony Liguori01f45d92013-03-05 23:21:32 +05302030static void register_types(void)
2031{
Gerd Hoffmann95be0662013-04-17 09:45:10 +02002032 type_register_static(&qemu_console_info);
Peter Maydelle4d50d42014-09-02 11:24:17 +01002033 register_char_driver("vc", CHARDEV_BACKEND_KIND_VC, qemu_chr_parse_vc);
Anthony Liguori01f45d92013-03-05 23:21:32 +05302034}
2035
2036type_init(register_types);