2 * QEMU graphical console
4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu-common.h"
25 #include "ui/console.h"
26 #include "hw/qdev-core.h"
27 #include "qemu/timer.h"
28 #include "qmp-commands.h"
29 #include "sysemu/char.h"
32 #define DEFAULT_BACKSCROLL 512
33 #define CONSOLE_CURSOR_PERIOD 500
35 typedef struct TextAttributes {
45 typedef struct TextCell {
47 TextAttributes t_attrib;
50 #define MAX_ESC_PARAMS 3
58 typedef struct QEMUFIFO {
61 int count, wptr, rptr;
64 static int qemu_fifo_write(QEMUFIFO *f, const uint8_t *buf, int len1)
68 l = f->buf_size - f->count;
73 l = f->buf_size - f->wptr;
76 memcpy(f->buf + f->wptr, buf, l);
78 if (f->wptr >= f->buf_size)
87 static int qemu_fifo_read(QEMUFIFO *f, uint8_t *buf, int len1)
95 l = f->buf_size - f->rptr;
98 memcpy(buf, f->buf + f->rptr, l);
100 if (f->rptr >= f->buf_size)
112 TEXT_CONSOLE_FIXED_SIZE
119 console_type_t console_type;
121 DisplaySurface *surface;
124 /* Graphic console state. */
128 const GraphicHwOps *hw_ops;
131 /* Text console state */
135 int backscroll_height;
137 int x_saved, y_saved;
140 TextAttributes t_attrib_default; /* default text attributes */
141 TextAttributes t_attrib; /* currently active text attributes */
143 int text_x[2], text_y[2], cursor_invalidate;
152 int esc_params[MAX_ESC_PARAMS];
155 CharDriverState *chr;
156 /* fifo for key pressed */
158 uint8_t out_fifo_buf[16];
159 QEMUTimer *kbd_timer;
162 struct DisplayState {
163 QEMUTimer *gui_timer;
164 uint64_t last_update;
165 uint64_t update_interval;
170 QLIST_HEAD(, DisplayChangeListener) listeners;
173 static DisplayState *display_state;
174 static QemuConsole *active_console;
175 static QemuConsole **consoles;
176 static int nb_consoles = 0;
177 static bool cursor_visible_phase;
178 static QEMUTimer *cursor_timer;
180 static void text_console_do_init(CharDriverState *chr, DisplayState *ds);
181 static void dpy_refresh(DisplayState *s);
182 static DisplayState *get_alloc_displaystate(void);
183 static void text_console_update_cursor_timer(void);
184 static void text_console_update_cursor(void *opaque);
186 static void gui_update(void *opaque)
188 uint64_t interval = GUI_REFRESH_INTERVAL_IDLE;
189 uint64_t dcl_interval;
190 DisplayState *ds = opaque;
191 DisplayChangeListener *dcl;
194 ds->refreshing = true;
196 ds->refreshing = false;
198 QLIST_FOREACH(dcl, &ds->listeners, next) {
199 dcl_interval = dcl->update_interval ?
200 dcl->update_interval : GUI_REFRESH_INTERVAL_DEFAULT;
201 if (interval > dcl_interval) {
202 interval = dcl_interval;
205 if (ds->update_interval != interval) {
206 ds->update_interval = interval;
207 for (i = 0; i < nb_consoles; i++) {
208 if (consoles[i]->hw_ops->update_interval) {
209 consoles[i]->hw_ops->update_interval(consoles[i]->hw, interval);
212 trace_console_refresh(interval);
214 ds->last_update = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
215 timer_mod(ds->gui_timer, ds->last_update + interval);
218 static void gui_setup_refresh(DisplayState *ds)
220 DisplayChangeListener *dcl;
221 bool need_timer = false;
222 bool have_gfx = false;
223 bool have_text = false;
225 QLIST_FOREACH(dcl, &ds->listeners, next) {
226 if (dcl->ops->dpy_refresh != NULL) {
229 if (dcl->ops->dpy_gfx_update != NULL) {
232 if (dcl->ops->dpy_text_update != NULL) {
237 if (need_timer && ds->gui_timer == NULL) {
238 ds->gui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, gui_update, ds);
239 timer_mod(ds->gui_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
241 if (!need_timer && ds->gui_timer != NULL) {
242 timer_del(ds->gui_timer);
243 timer_free(ds->gui_timer);
244 ds->gui_timer = NULL;
247 ds->have_gfx = have_gfx;
248 ds->have_text = have_text;
251 void graphic_hw_update(QemuConsole *con)
254 con = active_console;
256 if (con && con->hw_ops->gfx_update) {
257 con->hw_ops->gfx_update(con->hw);
261 void graphic_hw_invalidate(QemuConsole *con)
264 con = active_console;
266 if (con && con->hw_ops->invalidate) {
267 con->hw_ops->invalidate(con->hw);
271 static void ppm_save(const char *filename, struct DisplaySurface *ds,
274 int width = pixman_image_get_width(ds->image);
275 int height = pixman_image_get_height(ds->image);
280 pixman_image_t *linebuf;
282 trace_ppm_save(filename, ds);
283 fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
285 error_setg(errp, "failed to open file '%s': %s", filename,
289 f = fdopen(fd, "wb");
290 ret = fprintf(f, "P6\n%d %d\n%d\n", width, height, 255);
295 linebuf = qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
296 for (y = 0; y < height; y++) {
297 qemu_pixman_linebuf_fill(linebuf, ds->image, width, 0, y);
299 ret = fwrite(pixman_image_get_data(linebuf), 1,
300 pixman_image_get_stride(linebuf), f);
308 qemu_pixman_image_unref(linebuf);
313 error_setg(errp, "failed to write to file '%s': %s", filename,
319 void qmp_screendump(const char *filename, Error **errp)
321 QemuConsole *con = qemu_console_lookup_by_index(0);
322 DisplaySurface *surface;
325 error_setg(errp, "There is no QemuConsole I can screendump from.");
329 graphic_hw_update(con);
330 surface = qemu_console_surface(con);
331 ppm_save(filename, surface, errp);
334 void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
337 con = active_console;
339 if (con && con->hw_ops->text_update) {
340 con->hw_ops->text_update(con->hw, chardata);
344 static void vga_fill_rect(QemuConsole *con,
345 int posx, int posy, int width, int height,
346 pixman_color_t color)
348 DisplaySurface *surface = qemu_console_surface(con);
349 pixman_rectangle16_t rect = {
350 .x = posx, .y = posy, .width = width, .height = height
353 pixman_image_fill_rectangles(PIXMAN_OP_SRC, surface->image,
357 /* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */
358 static void vga_bitblt(QemuConsole *con,
359 int xs, int ys, int xd, int yd, int w, int h)
361 DisplaySurface *surface = qemu_console_surface(con);
363 pixman_image_composite(PIXMAN_OP_SRC,
364 surface->image, NULL, surface->image,
365 xs, ys, 0, 0, xd, yd, w, h);
368 /***********************************************************/
369 /* basic char display */
371 #define FONT_HEIGHT 16
376 #ifndef CONFIG_CURSES
389 #define QEMU_RGB(r, g, b) \
390 { .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff }
392 static const pixman_color_t color_table_rgb[2][8] = {
394 QEMU_RGB(0x00, 0x00, 0x00), /* black */
395 QEMU_RGB(0xaa, 0x00, 0x00), /* red */
396 QEMU_RGB(0x00, 0xaa, 0x00), /* green */
397 QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */
398 QEMU_RGB(0x00, 0x00, 0xaa), /* blue */
399 QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */
400 QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */
401 QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */
404 QEMU_RGB(0x00, 0x00, 0x00), /* black */
405 QEMU_RGB(0xff, 0x00, 0x00), /* red */
406 QEMU_RGB(0x00, 0xff, 0x00), /* green */
407 QEMU_RGB(0xff, 0xff, 0x00), /* yellow */
408 QEMU_RGB(0x00, 0x00, 0xff), /* blue */
409 QEMU_RGB(0xff, 0x00, 0xff), /* magenta */
410 QEMU_RGB(0x00, 0xff, 0xff), /* cyan */
411 QEMU_RGB(0xff, 0xff, 0xff), /* white */
415 static void vga_putcharxy(QemuConsole *s, int x, int y, int ch,
416 TextAttributes *t_attrib)
418 static pixman_image_t *glyphs[256];
419 DisplaySurface *surface = qemu_console_surface(s);
420 pixman_color_t fgcol, bgcol;
422 if (t_attrib->invers) {
423 bgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
424 fgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
426 fgcol = color_table_rgb[t_attrib->bold][t_attrib->fgcol];
427 bgcol = color_table_rgb[t_attrib->bold][t_attrib->bgcol];
431 glyphs[ch] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, ch);
433 qemu_pixman_glyph_render(glyphs[ch], surface->image,
434 &fgcol, &bgcol, x, y, FONT_WIDTH, FONT_HEIGHT);
437 static void text_console_resize(QemuConsole *s)
439 TextCell *cells, *c, *c1;
440 int w1, x, y, last_width;
442 last_width = s->width;
443 s->width = surface_width(s->surface) / FONT_WIDTH;
444 s->height = surface_height(s->surface) / FONT_HEIGHT;
450 cells = g_malloc(s->width * s->total_height * sizeof(TextCell));
451 for(y = 0; y < s->total_height; y++) {
452 c = &cells[y * s->width];
454 c1 = &s->cells[y * last_width];
455 for(x = 0; x < w1; x++) {
459 for(x = w1; x < s->width; x++) {
461 c->t_attrib = s->t_attrib_default;
469 static inline void text_update_xy(QemuConsole *s, int x, int y)
471 s->text_x[0] = MIN(s->text_x[0], x);
472 s->text_x[1] = MAX(s->text_x[1], x);
473 s->text_y[0] = MIN(s->text_y[0], y);
474 s->text_y[1] = MAX(s->text_y[1], y);
477 static void invalidate_xy(QemuConsole *s, int x, int y)
479 if (!qemu_console_is_visible(s)) {
482 if (s->update_x0 > x * FONT_WIDTH)
483 s->update_x0 = x * FONT_WIDTH;
484 if (s->update_y0 > y * FONT_HEIGHT)
485 s->update_y0 = y * FONT_HEIGHT;
486 if (s->update_x1 < (x + 1) * FONT_WIDTH)
487 s->update_x1 = (x + 1) * FONT_WIDTH;
488 if (s->update_y1 < (y + 1) * FONT_HEIGHT)
489 s->update_y1 = (y + 1) * FONT_HEIGHT;
492 static void update_xy(QemuConsole *s, int x, int y)
497 if (s->ds->have_text) {
498 text_update_xy(s, x, y);
501 y1 = (s->y_base + y) % s->total_height;
502 y2 = y1 - s->y_displayed;
504 y2 += s->total_height;
506 if (y2 < s->height) {
507 c = &s->cells[y1 * s->width + x];
508 vga_putcharxy(s, x, y2, c->ch,
510 invalidate_xy(s, x, y2);
514 static void console_show_cursor(QemuConsole *s, int show)
520 if (s->ds->have_text) {
521 s->cursor_invalidate = 1;
527 y1 = (s->y_base + s->y) % s->total_height;
528 y = y1 - s->y_displayed;
530 y += s->total_height;
533 c = &s->cells[y1 * s->width + x];
534 if (show && cursor_visible_phase) {
535 TextAttributes t_attrib = s->t_attrib_default;
536 t_attrib.invers = !(t_attrib.invers); /* invert fg and bg */
537 vga_putcharxy(s, x, y, c->ch, &t_attrib);
539 vga_putcharxy(s, x, y, c->ch, &(c->t_attrib));
541 invalidate_xy(s, x, y);
545 static void console_refresh(QemuConsole *s)
547 DisplaySurface *surface = qemu_console_surface(s);
551 if (s->ds->have_text) {
554 s->text_x[1] = s->width - 1;
555 s->text_y[1] = s->height - 1;
556 s->cursor_invalidate = 1;
559 vga_fill_rect(s, 0, 0, surface_width(surface), surface_height(surface),
560 color_table_rgb[0][COLOR_BLACK]);
562 for (y = 0; y < s->height; y++) {
563 c = s->cells + y1 * s->width;
564 for (x = 0; x < s->width; x++) {
565 vga_putcharxy(s, x, y, c->ch,
569 if (++y1 == s->total_height) {
573 console_show_cursor(s, 1);
574 dpy_gfx_update(s, 0, 0,
575 surface_width(surface), surface_height(surface));
578 static void console_scroll(QemuConsole *s, int ydelta)
583 for(i = 0; i < ydelta; i++) {
584 if (s->y_displayed == s->y_base)
586 if (++s->y_displayed == s->total_height)
591 i = s->backscroll_height;
592 if (i > s->total_height - s->height)
593 i = s->total_height - s->height;
596 y1 += s->total_height;
597 for(i = 0; i < ydelta; i++) {
598 if (s->y_displayed == y1)
600 if (--s->y_displayed < 0)
601 s->y_displayed = s->total_height - 1;
607 static void console_put_lf(QemuConsole *s)
613 if (s->y >= s->height) {
614 s->y = s->height - 1;
616 if (s->y_displayed == s->y_base) {
617 if (++s->y_displayed == s->total_height)
620 if (++s->y_base == s->total_height)
622 if (s->backscroll_height < s->total_height)
623 s->backscroll_height++;
624 y1 = (s->y_base + s->height - 1) % s->total_height;
625 c = &s->cells[y1 * s->width];
626 for(x = 0; x < s->width; x++) {
628 c->t_attrib = s->t_attrib_default;
631 if (s->y_displayed == s->y_base) {
632 if (s->ds->have_text) {
635 s->text_x[1] = s->width - 1;
636 s->text_y[1] = s->height - 1;
639 vga_bitblt(s, 0, FONT_HEIGHT, 0, 0,
640 s->width * FONT_WIDTH,
641 (s->height - 1) * FONT_HEIGHT);
642 vga_fill_rect(s, 0, (s->height - 1) * FONT_HEIGHT,
643 s->width * FONT_WIDTH, FONT_HEIGHT,
644 color_table_rgb[0][s->t_attrib_default.bgcol]);
647 s->update_x1 = s->width * FONT_WIDTH;
648 s->update_y1 = s->height * FONT_HEIGHT;
653 /* Set console attributes depending on the current escape codes.
654 * NOTE: I know this code is not very efficient (checking every color for it
655 * self) but it is more readable and better maintainable.
657 static void console_handle_escape(QemuConsole *s)
661 for (i=0; i<s->nb_esc_params; i++) {
662 switch (s->esc_params[i]) {
663 case 0: /* reset all console attributes to default */
664 s->t_attrib = s->t_attrib_default;
667 s->t_attrib.bold = 1;
670 s->t_attrib.uline = 1;
673 s->t_attrib.blink = 1;
676 s->t_attrib.invers = 1;
679 s->t_attrib.unvisible = 1;
682 s->t_attrib.bold = 0;
685 s->t_attrib.uline = 0;
688 s->t_attrib.blink = 0;
691 s->t_attrib.invers = 0;
694 s->t_attrib.unvisible = 0;
696 /* set foreground color */
698 s->t_attrib.fgcol=COLOR_BLACK;
701 s->t_attrib.fgcol=COLOR_RED;
704 s->t_attrib.fgcol=COLOR_GREEN;
707 s->t_attrib.fgcol=COLOR_YELLOW;
710 s->t_attrib.fgcol=COLOR_BLUE;
713 s->t_attrib.fgcol=COLOR_MAGENTA;
716 s->t_attrib.fgcol=COLOR_CYAN;
719 s->t_attrib.fgcol=COLOR_WHITE;
721 /* set background color */
723 s->t_attrib.bgcol=COLOR_BLACK;
726 s->t_attrib.bgcol=COLOR_RED;
729 s->t_attrib.bgcol=COLOR_GREEN;
732 s->t_attrib.bgcol=COLOR_YELLOW;
735 s->t_attrib.bgcol=COLOR_BLUE;
738 s->t_attrib.bgcol=COLOR_MAGENTA;
741 s->t_attrib.bgcol=COLOR_CYAN;
744 s->t_attrib.bgcol=COLOR_WHITE;
750 static void console_clear_xy(QemuConsole *s, int x, int y)
752 int y1 = (s->y_base + y) % s->total_height;
753 TextCell *c = &s->cells[y1 * s->width + x];
755 c->t_attrib = s->t_attrib_default;
759 /* set cursor, checking bounds */
760 static void set_cursor(QemuConsole *s, int x, int y)
768 if (y >= s->height) {
779 static void console_putchar(QemuConsole *s, int ch)
788 case '\r': /* carriage return */
791 case '\n': /* newline */
794 case '\b': /* backspace */
798 case '\t': /* tabspace */
799 if (s->x + (8 - (s->x % 8)) > s->width) {
803 s->x = s->x + (8 - (s->x % 8));
806 case '\a': /* alert aka. bell */
807 /* TODO: has to be implemented */
810 /* SI (shift in), character set 0 (ignored) */
813 /* SO (shift out), character set 1 (ignored) */
815 case 27: /* esc (introducing an escape sequence) */
816 s->state = TTY_STATE_ESC;
819 if (s->x >= s->width) {
824 y1 = (s->y_base + s->y) % s->total_height;
825 c = &s->cells[y1 * s->width + s->x];
827 c->t_attrib = s->t_attrib;
828 update_xy(s, s->x, s->y);
833 case TTY_STATE_ESC: /* check if it is a terminal escape sequence */
835 for(i=0;i<MAX_ESC_PARAMS;i++)
836 s->esc_params[i] = 0;
837 s->nb_esc_params = 0;
838 s->state = TTY_STATE_CSI;
840 s->state = TTY_STATE_NORM;
843 case TTY_STATE_CSI: /* handle escape sequence parameters */
844 if (ch >= '0' && ch <= '9') {
845 if (s->nb_esc_params < MAX_ESC_PARAMS) {
846 int *param = &s->esc_params[s->nb_esc_params];
847 int digit = (ch - '0');
849 *param = (*param <= (INT_MAX - digit) / 10) ?
850 *param * 10 + digit : INT_MAX;
853 if (s->nb_esc_params < MAX_ESC_PARAMS)
857 trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
858 ch, s->nb_esc_params);
859 s->state = TTY_STATE_NORM;
863 if (s->esc_params[0] == 0) {
864 s->esc_params[0] = 1;
866 set_cursor(s, s->x, s->y - s->esc_params[0]);
869 /* move cursor down */
870 if (s->esc_params[0] == 0) {
871 s->esc_params[0] = 1;
873 set_cursor(s, s->x, s->y + s->esc_params[0]);
876 /* move cursor right */
877 if (s->esc_params[0] == 0) {
878 s->esc_params[0] = 1;
880 set_cursor(s, s->x + s->esc_params[0], s->y);
883 /* move cursor left */
884 if (s->esc_params[0] == 0) {
885 s->esc_params[0] = 1;
887 set_cursor(s, s->x - s->esc_params[0], s->y);
890 /* move cursor to column */
891 set_cursor(s, s->esc_params[0] - 1, s->y);
895 /* move cursor to row, column */
896 set_cursor(s, s->esc_params[1] - 1, s->esc_params[0] - 1);
899 switch (s->esc_params[0]) {
901 /* clear to end of screen */
902 for (y = s->y; y < s->height; y++) {
903 for (x = 0; x < s->width; x++) {
904 if (y == s->y && x < s->x) {
907 console_clear_xy(s, x, y);
912 /* clear from beginning of screen */
913 for (y = 0; y <= s->y; y++) {
914 for (x = 0; x < s->width; x++) {
915 if (y == s->y && x > s->x) {
918 console_clear_xy(s, x, y);
923 /* clear entire screen */
924 for (y = 0; y <= s->height; y++) {
925 for (x = 0; x < s->width; x++) {
926 console_clear_xy(s, x, y);
933 switch (s->esc_params[0]) {
936 for(x = s->x; x < s->width; x++) {
937 console_clear_xy(s, x, s->y);
941 /* clear from beginning of line */
942 for (x = 0; x <= s->x; x++) {
943 console_clear_xy(s, x, s->y);
947 /* clear entire line */
948 for(x = 0; x < s->width; x++) {
949 console_clear_xy(s, x, s->y);
955 console_handle_escape(s);
958 /* report cursor position */
959 /* TODO: send ESC[row;colR */
962 /* save cursor position */
967 /* restore cursor position */
972 trace_console_putchar_unhandled(ch);
980 void console_select(unsigned int index)
982 DisplayChangeListener *dcl;
985 trace_console_select(index);
986 s = qemu_console_lookup_by_index(index);
988 DisplayState *ds = s->ds;
992 QLIST_FOREACH(dcl, &ds->listeners, next) {
993 if (dcl->con != NULL) {
996 if (dcl->ops->dpy_gfx_switch) {
997 dcl->ops->dpy_gfx_switch(dcl, s->surface);
1000 dpy_gfx_update(s, 0, 0, surface_width(s->surface),
1001 surface_height(s->surface));
1003 if (ds->have_text) {
1004 dpy_text_resize(s, s->width, s->height);
1006 text_console_update_cursor(NULL);
1010 static int console_puts(CharDriverState *chr, const uint8_t *buf, int len)
1012 QemuConsole *s = chr->opaque;
1015 s->update_x0 = s->width * FONT_WIDTH;
1016 s->update_y0 = s->height * FONT_HEIGHT;
1019 console_show_cursor(s, 0);
1020 for(i = 0; i < len; i++) {
1021 console_putchar(s, buf[i]);
1023 console_show_cursor(s, 1);
1024 if (s->ds->have_gfx && s->update_x0 < s->update_x1) {
1025 dpy_gfx_update(s, s->update_x0, s->update_y0,
1026 s->update_x1 - s->update_x0,
1027 s->update_y1 - s->update_y0);
1032 static void kbd_send_chars(void *opaque)
1034 QemuConsole *s = opaque;
1038 len = qemu_chr_be_can_write(s->chr);
1039 if (len > s->out_fifo.count)
1040 len = s->out_fifo.count;
1042 if (len > sizeof(buf))
1044 qemu_fifo_read(&s->out_fifo, buf, len);
1045 qemu_chr_be_write(s->chr, buf, len);
1047 /* characters are pending: we send them a bit later (XXX:
1048 horrible, should change char device API) */
1049 if (s->out_fifo.count > 0) {
1050 timer_mod(s->kbd_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1);
1054 /* called when an ascii key is pressed */
1055 void kbd_put_keysym_console(QemuConsole *s, int keysym)
1057 uint8_t buf[16], *q;
1060 if (!s || (s->console_type == GRAPHIC_CONSOLE))
1064 case QEMU_KEY_CTRL_UP:
1065 console_scroll(s, -1);
1067 case QEMU_KEY_CTRL_DOWN:
1068 console_scroll(s, 1);
1070 case QEMU_KEY_CTRL_PAGEUP:
1071 console_scroll(s, -10);
1073 case QEMU_KEY_CTRL_PAGEDOWN:
1074 console_scroll(s, 10);
1077 /* convert the QEMU keysym to VT100 key string */
1079 if (keysym >= 0xe100 && keysym <= 0xe11f) {
1082 c = keysym - 0xe100;
1084 *q++ = '0' + (c / 10);
1085 *q++ = '0' + (c % 10);
1087 } else if (keysym >= 0xe120 && keysym <= 0xe17f) {
1090 *q++ = keysym & 0xff;
1091 } else if (s->echo && (keysym == '\r' || keysym == '\n')) {
1092 console_puts(s->chr, (const uint8_t *) "\r", 1);
1098 console_puts(s->chr, buf, q - buf);
1100 if (s->chr->chr_read) {
1101 qemu_fifo_write(&s->out_fifo, buf, q - buf);
1108 static const int qcode_to_keysym[Q_KEY_CODE_MAX] = {
1109 [Q_KEY_CODE_UP] = QEMU_KEY_UP,
1110 [Q_KEY_CODE_DOWN] = QEMU_KEY_DOWN,
1111 [Q_KEY_CODE_RIGHT] = QEMU_KEY_RIGHT,
1112 [Q_KEY_CODE_LEFT] = QEMU_KEY_LEFT,
1113 [Q_KEY_CODE_HOME] = QEMU_KEY_HOME,
1114 [Q_KEY_CODE_END] = QEMU_KEY_END,
1115 [Q_KEY_CODE_PGUP] = QEMU_KEY_PAGEUP,
1116 [Q_KEY_CODE_PGDN] = QEMU_KEY_PAGEDOWN,
1117 [Q_KEY_CODE_DELETE] = QEMU_KEY_DELETE,
1120 bool kbd_put_qcode_console(QemuConsole *s, int qcode)
1124 keysym = qcode_to_keysym[qcode];
1128 kbd_put_keysym_console(s, keysym);
1132 void kbd_put_string_console(QemuConsole *s, const char *str, int len)
1136 for (i = 0; i < len && str[i]; i++) {
1137 kbd_put_keysym_console(s, str[i]);
1141 void kbd_put_keysym(int keysym)
1143 kbd_put_keysym_console(active_console, keysym);
1146 static void text_console_invalidate(void *opaque)
1148 QemuConsole *s = (QemuConsole *) opaque;
1150 if (s->ds->have_text && s->console_type == TEXT_CONSOLE) {
1151 text_console_resize(s);
1156 static void text_console_update(void *opaque, console_ch_t *chardata)
1158 QemuConsole *s = (QemuConsole *) opaque;
1161 if (s->text_x[0] <= s->text_x[1]) {
1162 src = (s->y_base + s->text_y[0]) * s->width;
1163 chardata += s->text_y[0] * s->width;
1164 for (i = s->text_y[0]; i <= s->text_y[1]; i ++)
1165 for (j = 0; j < s->width; j ++, src ++)
1166 console_write_ch(chardata ++, s->cells[src].ch |
1167 (s->cells[src].t_attrib.fgcol << 12) |
1168 (s->cells[src].t_attrib.bgcol << 8) |
1169 (s->cells[src].t_attrib.bold << 21));
1170 dpy_text_update(s, s->text_x[0], s->text_y[0],
1171 s->text_x[1] - s->text_x[0], i - s->text_y[0]);
1172 s->text_x[0] = s->width;
1173 s->text_y[0] = s->height;
1177 if (s->cursor_invalidate) {
1178 dpy_text_cursor(s, s->x, s->y);
1179 s->cursor_invalidate = 0;
1183 static QemuConsole *new_console(DisplayState *ds, console_type_t console_type,
1190 obj = object_new(TYPE_QEMU_CONSOLE);
1191 s = QEMU_CONSOLE(obj);
1193 object_property_add_link(obj, "device", TYPE_DEVICE,
1194 (Object **)&s->device,
1195 object_property_allow_set_link,
1196 OBJ_PROP_LINK_UNREF_ON_RELEASE,
1198 object_property_add_uint32_ptr(obj, "head",
1199 &s->head, &error_abort);
1201 if (!active_console || ((active_console->console_type != GRAPHIC_CONSOLE) &&
1202 (console_type == GRAPHIC_CONSOLE))) {
1206 s->console_type = console_type;
1208 consoles = g_realloc(consoles, sizeof(*consoles) * (nb_consoles+1));
1209 if (console_type != GRAPHIC_CONSOLE) {
1210 s->index = nb_consoles;
1211 consoles[nb_consoles++] = s;
1213 /* HACK: Put graphical consoles before text consoles. */
1214 for (i = nb_consoles; i > 0; i--) {
1215 if (consoles[i - 1]->console_type == GRAPHIC_CONSOLE)
1217 consoles[i] = consoles[i - 1];
1218 consoles[i]->index = i;
1227 static void qemu_alloc_display(DisplaySurface *surface, int width, int height,
1228 int linesize, PixelFormat pf, int newflags)
1232 qemu_pixman_image_unref(surface->image);
1233 surface->image = NULL;
1235 surface->format = qemu_pixman_get_format(&pf);
1236 assert(surface->format != 0);
1237 surface->image = pixman_image_create_bits(surface->format,
1240 assert(surface->image != NULL);
1242 surface->flags = newflags | QEMU_ALLOCATED_FLAG;
1243 #ifdef HOST_WORDS_BIGENDIAN
1244 surface->flags |= QEMU_BIG_ENDIAN_FLAG;
1248 DisplaySurface *qemu_create_displaysurface(int width, int height)
1250 DisplaySurface *surface = g_new0(DisplaySurface, 1);
1251 int linesize = width * 4;
1253 trace_displaysurface_create(surface, width, height);
1254 qemu_alloc_display(surface, width, height, linesize,
1255 qemu_default_pixelformat(32), 0);
1259 DisplaySurface *qemu_create_displaysurface_from(int width, int height, int bpp,
1260 int linesize, uint8_t *data,
1263 DisplaySurface *surface = g_new0(DisplaySurface, 1);
1265 trace_displaysurface_create_from(surface, width, height, bpp, byteswap);
1267 surface->pf = qemu_different_endianness_pixelformat(bpp);
1269 surface->pf = qemu_default_pixelformat(bpp);
1272 surface->format = qemu_pixman_get_format(&surface->pf);
1273 assert(surface->format != 0);
1274 surface->image = pixman_image_create_bits(surface->format,
1276 (void *)data, linesize);
1277 assert(surface->image != NULL);
1279 #ifdef HOST_WORDS_BIGENDIAN
1280 surface->flags = QEMU_BIG_ENDIAN_FLAG;
1286 static DisplaySurface *qemu_create_message_surface(int w, int h,
1289 DisplaySurface *surface = qemu_create_displaysurface(w, h);
1290 pixman_color_t bg = color_table_rgb[0][COLOR_BLACK];
1291 pixman_color_t fg = color_table_rgb[0][COLOR_WHITE];
1292 pixman_image_t *glyph;
1296 x = (w / FONT_WIDTH - len) / 2;
1297 y = (h / FONT_HEIGHT - 1) / 2;
1298 for (i = 0; i < len; i++) {
1299 glyph = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT, vgafont16, msg[i]);
1300 qemu_pixman_glyph_render(glyph, surface->image, &fg, &bg,
1301 x+i, y, FONT_WIDTH, FONT_HEIGHT);
1302 qemu_pixman_image_unref(glyph);
1307 void qemu_free_displaysurface(DisplaySurface *surface)
1309 if (surface == NULL) {
1312 trace_displaysurface_free(surface);
1313 qemu_pixman_image_unref(surface->image);
1317 void register_displaychangelistener(DisplayChangeListener *dcl)
1319 static const char nodev[] =
1320 "This VM has no graphic display device.";
1321 static DisplaySurface *dummy;
1324 trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
1325 dcl->ds = get_alloc_displaystate();
1326 QLIST_INSERT_HEAD(&dcl->ds->listeners, dcl, next);
1327 gui_setup_refresh(dcl->ds);
1332 con = active_console;
1334 if (dcl->ops->dpy_gfx_switch) {
1336 dcl->ops->dpy_gfx_switch(dcl, con->surface);
1339 dummy = qemu_create_message_surface(640, 480, nodev);
1341 dcl->ops->dpy_gfx_switch(dcl, dummy);
1344 text_console_update_cursor(NULL);
1347 void update_displaychangelistener(DisplayChangeListener *dcl,
1350 DisplayState *ds = dcl->ds;
1352 dcl->update_interval = interval;
1353 if (!ds->refreshing && ds->update_interval > interval) {
1354 timer_mod(ds->gui_timer, ds->last_update + interval);
1358 void unregister_displaychangelistener(DisplayChangeListener *dcl)
1360 DisplayState *ds = dcl->ds;
1361 trace_displaychangelistener_unregister(dcl, dcl->ops->dpy_name);
1365 QLIST_REMOVE(dcl, next);
1366 gui_setup_refresh(ds);
1369 int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info)
1371 assert(con != NULL);
1372 con->ui_info = *info;
1373 if (con->hw_ops->ui_info) {
1374 return con->hw_ops->ui_info(con->hw, con->head, info);
1379 void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h)
1381 DisplayState *s = con->ds;
1382 DisplayChangeListener *dcl;
1383 int width = surface_width(con->surface);
1384 int height = surface_height(con->surface);
1390 w = MIN(w, width - x);
1391 h = MIN(h, height - y);
1393 if (!qemu_console_is_visible(con)) {
1396 QLIST_FOREACH(dcl, &s->listeners, next) {
1397 if (con != (dcl->con ? dcl->con : active_console)) {
1400 if (dcl->ops->dpy_gfx_update) {
1401 dcl->ops->dpy_gfx_update(dcl, x, y, w, h);
1406 void dpy_gfx_replace_surface(QemuConsole *con,
1407 DisplaySurface *surface)
1409 DisplayState *s = con->ds;
1410 DisplaySurface *old_surface = con->surface;
1411 DisplayChangeListener *dcl;
1413 con->surface = surface;
1414 QLIST_FOREACH(dcl, &s->listeners, next) {
1415 if (con != (dcl->con ? dcl->con : active_console)) {
1418 if (dcl->ops->dpy_gfx_switch) {
1419 dcl->ops->dpy_gfx_switch(dcl, surface);
1422 qemu_free_displaysurface(old_surface);
1425 static void dpy_refresh(DisplayState *s)
1427 DisplayChangeListener *dcl;
1429 QLIST_FOREACH(dcl, &s->listeners, next) {
1430 if (dcl->ops->dpy_refresh) {
1431 dcl->ops->dpy_refresh(dcl);
1436 void dpy_gfx_copy(QemuConsole *con, int src_x, int src_y,
1437 int dst_x, int dst_y, int w, int h)
1439 DisplayState *s = con->ds;
1440 DisplayChangeListener *dcl;
1442 if (!qemu_console_is_visible(con)) {
1445 QLIST_FOREACH(dcl, &s->listeners, next) {
1446 if (con != (dcl->con ? dcl->con : active_console)) {
1449 if (dcl->ops->dpy_gfx_copy) {
1450 dcl->ops->dpy_gfx_copy(dcl, src_x, src_y, dst_x, dst_y, w, h);
1452 dcl->ops->dpy_gfx_update(dcl, dst_x, dst_y, w, h);
1457 void dpy_text_cursor(QemuConsole *con, int x, int y)
1459 DisplayState *s = con->ds;
1460 DisplayChangeListener *dcl;
1462 if (!qemu_console_is_visible(con)) {
1465 QLIST_FOREACH(dcl, &s->listeners, next) {
1466 if (con != (dcl->con ? dcl->con : active_console)) {
1469 if (dcl->ops->dpy_text_cursor) {
1470 dcl->ops->dpy_text_cursor(dcl, x, y);
1475 void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
1477 DisplayState *s = con->ds;
1478 DisplayChangeListener *dcl;
1480 if (!qemu_console_is_visible(con)) {
1483 QLIST_FOREACH(dcl, &s->listeners, next) {
1484 if (con != (dcl->con ? dcl->con : active_console)) {
1487 if (dcl->ops->dpy_text_update) {
1488 dcl->ops->dpy_text_update(dcl, x, y, w, h);
1493 void dpy_text_resize(QemuConsole *con, int w, int h)
1495 DisplayState *s = con->ds;
1496 struct DisplayChangeListener *dcl;
1498 if (!qemu_console_is_visible(con)) {
1501 QLIST_FOREACH(dcl, &s->listeners, next) {
1502 if (con != (dcl->con ? dcl->con : active_console)) {
1505 if (dcl->ops->dpy_text_resize) {
1506 dcl->ops->dpy_text_resize(dcl, w, h);
1511 void dpy_mouse_set(QemuConsole *con, int x, int y, int on)
1513 DisplayState *s = con->ds;
1514 DisplayChangeListener *dcl;
1516 if (!qemu_console_is_visible(con)) {
1519 QLIST_FOREACH(dcl, &s->listeners, next) {
1520 if (con != (dcl->con ? dcl->con : active_console)) {
1523 if (dcl->ops->dpy_mouse_set) {
1524 dcl->ops->dpy_mouse_set(dcl, x, y, on);
1529 void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor)
1531 DisplayState *s = con->ds;
1532 DisplayChangeListener *dcl;
1534 if (!qemu_console_is_visible(con)) {
1537 QLIST_FOREACH(dcl, &s->listeners, next) {
1538 if (con != (dcl->con ? dcl->con : active_console)) {
1541 if (dcl->ops->dpy_cursor_define) {
1542 dcl->ops->dpy_cursor_define(dcl, cursor);
1547 bool dpy_cursor_define_supported(QemuConsole *con)
1549 DisplayState *s = con->ds;
1550 DisplayChangeListener *dcl;
1552 QLIST_FOREACH(dcl, &s->listeners, next) {
1553 if (dcl->ops->dpy_cursor_define) {
1560 /***********************************************************/
1561 /* register display */
1563 /* console.c internal use only */
1564 static DisplayState *get_alloc_displaystate(void)
1566 if (!display_state) {
1567 display_state = g_new0(DisplayState, 1);
1568 cursor_timer = timer_new_ms(QEMU_CLOCK_REALTIME,
1569 text_console_update_cursor, NULL);
1571 return display_state;
1575 * Called by main(), after creating QemuConsoles
1576 * and before initializing ui (sdl/vnc/...).
1578 DisplayState *init_displaystate(void)
1583 get_alloc_displaystate();
1584 for (i = 0; i < nb_consoles; i++) {
1585 if (consoles[i]->console_type != GRAPHIC_CONSOLE &&
1586 consoles[i]->ds == NULL) {
1587 text_console_do_init(consoles[i]->chr, display_state);
1590 /* Hook up into the qom tree here (not in new_console()), once
1591 * all QemuConsoles are created and the order / numbering
1592 * doesn't change any more */
1593 name = g_strdup_printf("console[%d]", i);
1594 object_property_add_child(container_get(object_get_root(), "/backend"),
1595 name, OBJECT(consoles[i]), &error_abort);
1599 return display_state;
1602 QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
1603 const GraphicHwOps *hw_ops,
1606 static const char noinit[] =
1607 "Guest has not initialized the display (yet).";
1613 ds = get_alloc_displaystate();
1614 trace_console_gfx_new();
1615 s = new_console(ds, GRAPHIC_CONSOLE, head);
1619 object_property_set_link(OBJECT(s), OBJECT(dev), "device",
1623 s->surface = qemu_create_message_surface(width, height, noinit);
1627 QemuConsole *qemu_console_lookup_by_index(unsigned int index)
1629 if (index >= nb_consoles) {
1632 return consoles[index];
1635 QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head)
1641 for (i = 0; i < nb_consoles; i++) {
1645 obj = object_property_get_link(OBJECT(consoles[i]),
1646 "device", &error_abort);
1647 if (DEVICE(obj) != dev) {
1650 h = object_property_get_int(OBJECT(consoles[i]),
1651 "head", &error_abort);
1660 bool qemu_console_is_visible(QemuConsole *con)
1662 return (con == active_console) || (con->dcls > 0);
1665 bool qemu_console_is_graphic(QemuConsole *con)
1668 con = active_console;
1670 return con && (con->console_type == GRAPHIC_CONSOLE);
1673 bool qemu_console_is_fixedsize(QemuConsole *con)
1676 con = active_console;
1678 return con && (con->console_type != TEXT_CONSOLE);
1681 int qemu_console_get_index(QemuConsole *con)
1684 con = active_console;
1686 return con ? con->index : -1;
1689 uint32_t qemu_console_get_head(QemuConsole *con)
1692 con = active_console;
1694 return con ? con->head : -1;
1697 QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con)
1699 assert(con != NULL);
1700 return &con->ui_info;
1703 int qemu_console_get_width(QemuConsole *con, int fallback)
1706 con = active_console;
1708 return con ? surface_width(con->surface) : fallback;
1711 int qemu_console_get_height(QemuConsole *con, int fallback)
1714 con = active_console;
1716 return con ? surface_height(con->surface) : fallback;
1719 static void text_console_set_echo(CharDriverState *chr, bool echo)
1721 QemuConsole *s = chr->opaque;
1726 static void text_console_update_cursor_timer(void)
1728 timer_mod(cursor_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME)
1729 + CONSOLE_CURSOR_PERIOD / 2);
1732 static void text_console_update_cursor(void *opaque)
1737 cursor_visible_phase = !cursor_visible_phase;
1739 for (i = 0; i < nb_consoles; i++) {
1741 if (qemu_console_is_graphic(s) ||
1742 !qemu_console_is_visible(s)) {
1746 graphic_hw_invalidate(s);
1750 text_console_update_cursor_timer();
1754 static const GraphicHwOps text_console_ops = {
1755 .invalidate = text_console_invalidate,
1756 .text_update = text_console_update,
1759 static void text_console_do_init(CharDriverState *chr, DisplayState *ds)
1762 int g_width = 80 * FONT_WIDTH;
1763 int g_height = 24 * FONT_HEIGHT;
1767 chr->chr_write = console_puts;
1769 s->out_fifo.buf = s->out_fifo_buf;
1770 s->out_fifo.buf_size = sizeof(s->out_fifo_buf);
1771 s->kbd_timer = timer_new_ms(QEMU_CLOCK_REALTIME, kbd_send_chars, s);
1776 s->total_height = DEFAULT_BACKSCROLL;
1780 if (active_console && active_console->surface) {
1781 g_width = surface_width(active_console->surface);
1782 g_height = surface_height(active_console->surface);
1784 s->surface = qemu_create_displaysurface(g_width, g_height);
1787 s->hw_ops = &text_console_ops;
1790 /* Set text attribute defaults */
1791 s->t_attrib_default.bold = 0;
1792 s->t_attrib_default.uline = 0;
1793 s->t_attrib_default.blink = 0;
1794 s->t_attrib_default.invers = 0;
1795 s->t_attrib_default.unvisible = 0;
1796 s->t_attrib_default.fgcol = COLOR_WHITE;
1797 s->t_attrib_default.bgcol = COLOR_BLACK;
1798 /* set current text attributes to default */
1799 s->t_attrib = s->t_attrib_default;
1800 text_console_resize(s);
1806 s->t_attrib.bgcol = COLOR_BLUE;
1807 len = snprintf(msg, sizeof(msg), "%s console\r\n", chr->label);
1808 console_puts(chr, (uint8_t*)msg, len);
1809 s->t_attrib = s->t_attrib_default;
1812 qemu_chr_be_generic_open(chr);
1817 static CharDriverState *text_console_init(ChardevVC *vc)
1819 CharDriverState *chr;
1822 unsigned height = 0;
1824 chr = g_malloc0(sizeof(CharDriverState));
1826 if (vc->has_width) {
1828 } else if (vc->has_cols) {
1829 width = vc->cols * FONT_WIDTH;
1832 if (vc->has_height) {
1833 height = vc->height;
1834 } else if (vc->has_rows) {
1835 height = vc->rows * FONT_HEIGHT;
1838 trace_console_txt_new(width, height);
1839 if (width == 0 || height == 0) {
1840 s = new_console(NULL, TEXT_CONSOLE, 0);
1842 s = new_console(NULL, TEXT_CONSOLE_FIXED_SIZE, 0);
1843 s->surface = qemu_create_displaysurface(width, height);
1853 chr->chr_set_echo = text_console_set_echo;
1854 /* console/chardev init sometimes completes elsewhere in a 2nd
1855 * stage, so defer OPENED events until they are fully initialized
1857 chr->explicit_be_open = true;
1859 if (display_state) {
1860 text_console_do_init(chr, display_state);
1865 static VcHandler *vc_handler = text_console_init;
1867 CharDriverState *vc_init(ChardevVC *vc)
1869 return vc_handler(vc);
1872 void register_vc_handler(VcHandler *handler)
1874 vc_handler = handler;
1877 void qemu_console_resize(QemuConsole *s, int width, int height)
1879 DisplaySurface *surface;
1881 assert(s->console_type == GRAPHIC_CONSOLE);
1882 surface = qemu_create_displaysurface(width, height);
1883 dpy_gfx_replace_surface(s, surface);
1886 void qemu_console_copy(QemuConsole *con, int src_x, int src_y,
1887 int dst_x, int dst_y, int w, int h)
1889 assert(con->console_type == GRAPHIC_CONSOLE);
1890 dpy_gfx_copy(con, src_x, src_y, dst_x, dst_y, w, h);
1893 DisplaySurface *qemu_console_surface(QemuConsole *console)
1895 return console->surface;
1898 DisplayState *qemu_console_displaystate(QemuConsole *console)
1903 PixelFormat qemu_different_endianness_pixelformat(int bpp)
1907 memset(&pf, 0x00, sizeof(PixelFormat));
1909 pf.bits_per_pixel = bpp;
1910 pf.bytes_per_pixel = DIV_ROUND_UP(bpp, 8);
1911 pf.depth = bpp == 32 ? 24 : bpp;
1915 pf.rmask = 0x000000FF;
1916 pf.gmask = 0x0000FF00;
1917 pf.bmask = 0x00FF0000;
1929 pf.rmask = 0x0000FF00;
1930 pf.gmask = 0x00FF0000;
1931 pf.bmask = 0xFF000000;
1932 pf.amask = 0x00000000;
1952 PixelFormat qemu_default_pixelformat(int bpp)
1956 memset(&pf, 0x00, sizeof(PixelFormat));
1958 pf.bits_per_pixel = bpp;
1959 pf.bytes_per_pixel = DIV_ROUND_UP(bpp, 8);
1960 pf.depth = bpp == 32 ? 24 : bpp;
1964 pf.bits_per_pixel = 16;
1965 pf.rmask = 0x00007c00;
1966 pf.gmask = 0x000003E0;
1967 pf.bmask = 0x0000001F;
1979 pf.rmask = 0x0000F800;
1980 pf.gmask = 0x000007E0;
1981 pf.bmask = 0x0000001F;
1993 pf.rmask = 0x00FF0000;
1994 pf.gmask = 0x0000FF00;
1995 pf.bmask = 0x000000FF;
2007 pf.rmask = 0x00FF0000;
2008 pf.gmask = 0x0000FF00;
2009 pf.bmask = 0x000000FF;
2026 static void qemu_chr_parse_vc(QemuOpts *opts, ChardevBackend *backend,
2031 backend->vc = g_new0(ChardevVC, 1);
2033 val = qemu_opt_get_number(opts, "width", 0);
2035 backend->vc->has_width = true;
2036 backend->vc->width = val;
2039 val = qemu_opt_get_number(opts, "height", 0);
2041 backend->vc->has_height = true;
2042 backend->vc->height = val;
2045 val = qemu_opt_get_number(opts, "cols", 0);
2047 backend->vc->has_cols = true;
2048 backend->vc->cols = val;
2051 val = qemu_opt_get_number(opts, "rows", 0);
2053 backend->vc->has_rows = true;
2054 backend->vc->rows = val;
2058 static const TypeInfo qemu_console_info = {
2059 .name = TYPE_QEMU_CONSOLE,
2060 .parent = TYPE_OBJECT,
2061 .instance_size = sizeof(QemuConsole),
2062 .class_size = sizeof(QemuConsoleClass),
2066 static void register_types(void)
2068 type_register_static(&qemu_console_info);
2069 register_char_driver_qapi("vc", CHARDEV_BACKEND_KIND_VC,
2073 type_init(register_types);