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
25 #include "qemu/osdep.h"
26 #include "ui/console.h"
27 #include "hw/qdev-core.h"
28 #include "qapi/error.h"
29 #include "qapi/qapi-commands-ui.h"
30 #include "qemu/option.h"
31 #include "qemu/timer.h"
32 #include "chardev/char-fe.h"
34 #include "exec/memory.h"
36 #define DEFAULT_BACKSCROLL 512
37 #define CONSOLE_CURSOR_PERIOD 500
39 typedef struct TextAttributes
{
49 typedef struct TextCell
{
51 TextAttributes t_attrib
;
54 #define MAX_ESC_PARAMS 3
62 typedef struct QEMUFIFO
{
65 int count
, wptr
, rptr
;
68 static int qemu_fifo_write(QEMUFIFO
*f
, const uint8_t *buf
, int len1
)
72 l
= f
->buf_size
- f
->count
;
77 l
= f
->buf_size
- f
->wptr
;
80 memcpy(f
->buf
+ f
->wptr
, buf
, l
);
82 if (f
->wptr
>= f
->buf_size
)
91 static int qemu_fifo_read(QEMUFIFO
*f
, uint8_t *buf
, int len1
)
99 l
= f
->buf_size
- f
->rptr
;
102 memcpy(buf
, f
->buf
+ f
->rptr
, l
);
104 if (f
->rptr
>= f
->buf_size
)
116 TEXT_CONSOLE_FIXED_SIZE
123 console_type_t console_type
;
125 DisplaySurface
*surface
;
127 DisplayChangeListener
*gl
;
131 /* Graphic console state. */
136 const GraphicHwOps
*hw_ops
;
139 /* Text console state */
143 int backscroll_height
;
145 int x_saved
, y_saved
;
148 TextAttributes t_attrib_default
; /* default text attributes */
149 TextAttributes t_attrib
; /* currently active text attributes */
151 int text_x
[2], text_y
[2], cursor_invalidate
;
160 int esc_params
[MAX_ESC_PARAMS
];
164 /* fifo for key pressed */
166 uint8_t out_fifo_buf
[16];
167 QEMUTimer
*kbd_timer
;
170 struct DisplayState
{
171 QEMUTimer
*gui_timer
;
172 uint64_t last_update
;
173 uint64_t update_interval
;
178 QLIST_HEAD(, DisplayChangeListener
) listeners
;
181 static DisplayState
*display_state
;
182 static QemuConsole
*active_console
;
183 static QemuConsole
**consoles
;
184 static int nb_consoles
= 0;
185 static bool cursor_visible_phase
;
186 static QEMUTimer
*cursor_timer
;
188 static void text_console_do_init(Chardev
*chr
, DisplayState
*ds
);
189 static void dpy_refresh(DisplayState
*s
);
190 static DisplayState
*get_alloc_displaystate(void);
191 static void text_console_update_cursor_timer(void);
192 static void text_console_update_cursor(void *opaque
);
194 static void gui_update(void *opaque
)
196 uint64_t interval
= GUI_REFRESH_INTERVAL_IDLE
;
197 uint64_t dcl_interval
;
198 DisplayState
*ds
= opaque
;
199 DisplayChangeListener
*dcl
;
202 ds
->refreshing
= true;
204 ds
->refreshing
= false;
206 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
207 dcl_interval
= dcl
->update_interval
?
208 dcl
->update_interval
: GUI_REFRESH_INTERVAL_DEFAULT
;
209 if (interval
> dcl_interval
) {
210 interval
= dcl_interval
;
213 if (ds
->update_interval
!= interval
) {
214 ds
->update_interval
= interval
;
215 for (i
= 0; i
< nb_consoles
; i
++) {
216 if (consoles
[i
]->hw_ops
->update_interval
) {
217 consoles
[i
]->hw_ops
->update_interval(consoles
[i
]->hw
, interval
);
220 trace_console_refresh(interval
);
222 ds
->last_update
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
223 timer_mod(ds
->gui_timer
, ds
->last_update
+ interval
);
226 static void gui_setup_refresh(DisplayState
*ds
)
228 DisplayChangeListener
*dcl
;
229 bool need_timer
= false;
230 bool have_gfx
= false;
231 bool have_text
= false;
233 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
234 if (dcl
->ops
->dpy_refresh
!= NULL
) {
237 if (dcl
->ops
->dpy_gfx_update
!= NULL
) {
240 if (dcl
->ops
->dpy_text_update
!= NULL
) {
245 if (need_timer
&& ds
->gui_timer
== NULL
) {
246 ds
->gui_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, gui_update
, ds
);
247 timer_mod(ds
->gui_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
249 if (!need_timer
&& ds
->gui_timer
!= NULL
) {
250 timer_del(ds
->gui_timer
);
251 timer_free(ds
->gui_timer
);
252 ds
->gui_timer
= NULL
;
255 ds
->have_gfx
= have_gfx
;
256 ds
->have_text
= have_text
;
259 void graphic_hw_update(QemuConsole
*con
)
262 con
= active_console
;
264 if (con
&& con
->hw_ops
->gfx_update
) {
265 con
->hw_ops
->gfx_update(con
->hw
);
269 void graphic_hw_gl_block(QemuConsole
*con
, bool block
)
273 con
->gl_block
= block
;
274 if (con
->hw_ops
->gl_block
) {
275 con
->hw_ops
->gl_block(con
->hw
, block
);
279 int qemu_console_get_window_id(QemuConsole
*con
)
281 return con
->window_id
;
284 void qemu_console_set_window_id(QemuConsole
*con
, int window_id
)
286 con
->window_id
= window_id
;
289 void graphic_hw_invalidate(QemuConsole
*con
)
292 con
= active_console
;
294 if (con
&& con
->hw_ops
->invalidate
) {
295 con
->hw_ops
->invalidate(con
->hw
);
299 static void ppm_save(const char *filename
, DisplaySurface
*ds
,
302 int width
= pixman_image_get_width(ds
->image
);
303 int height
= pixman_image_get_height(ds
->image
);
308 pixman_image_t
*linebuf
;
310 trace_ppm_save(filename
, ds
);
311 fd
= qemu_open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, 0666);
313 error_setg(errp
, "failed to open file '%s': %s", filename
,
317 f
= fdopen(fd
, "wb");
318 ret
= fprintf(f
, "P6\n%d %d\n%d\n", width
, height
, 255);
323 linebuf
= qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8
, width
);
324 for (y
= 0; y
< height
; y
++) {
325 qemu_pixman_linebuf_fill(linebuf
, ds
->image
, width
, 0, y
);
327 ret
= fwrite(pixman_image_get_data(linebuf
), 1,
328 pixman_image_get_stride(linebuf
), f
);
336 qemu_pixman_image_unref(linebuf
);
341 error_setg(errp
, "failed to write to file '%s': %s", filename
,
347 void qmp_screendump(const char *filename
, bool has_device
, const char *device
,
348 bool has_head
, int64_t head
, Error
**errp
)
351 DisplaySurface
*surface
;
354 con
= qemu_console_lookup_by_device_name(device
, has_head
? head
: 0,
361 error_setg(errp
, "'head' must be specified together with 'device'");
364 con
= qemu_console_lookup_by_index(0);
366 error_setg(errp
, "There is no console to take a screendump from");
371 graphic_hw_update(con
);
372 surface
= qemu_console_surface(con
);
373 ppm_save(filename
, surface
, errp
);
376 void graphic_hw_text_update(QemuConsole
*con
, console_ch_t
*chardata
)
379 con
= active_console
;
381 if (con
&& con
->hw_ops
->text_update
) {
382 con
->hw_ops
->text_update(con
->hw
, chardata
);
386 static void vga_fill_rect(QemuConsole
*con
,
387 int posx
, int posy
, int width
, int height
,
388 pixman_color_t color
)
390 DisplaySurface
*surface
= qemu_console_surface(con
);
391 pixman_rectangle16_t rect
= {
392 .x
= posx
, .y
= posy
, .width
= width
, .height
= height
395 pixman_image_fill_rectangles(PIXMAN_OP_SRC
, surface
->image
,
399 /* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */
400 static void vga_bitblt(QemuConsole
*con
,
401 int xs
, int ys
, int xd
, int yd
, int w
, int h
)
403 DisplaySurface
*surface
= qemu_console_surface(con
);
405 pixman_image_composite(PIXMAN_OP_SRC
,
406 surface
->image
, NULL
, surface
->image
,
407 xs
, ys
, 0, 0, xd
, yd
, w
, h
);
410 /***********************************************************/
411 /* basic char display */
413 #define FONT_HEIGHT 16
418 #define QEMU_RGB(r, g, b) \
419 { .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff }
421 static const pixman_color_t color_table_rgb
[2][8] = {
423 [QEMU_COLOR_BLACK
] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
424 [QEMU_COLOR_BLUE
] = QEMU_RGB(0x00, 0x00, 0xaa), /* blue */
425 [QEMU_COLOR_GREEN
] = QEMU_RGB(0x00, 0xaa, 0x00), /* green */
426 [QEMU_COLOR_CYAN
] = QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */
427 [QEMU_COLOR_RED
] = QEMU_RGB(0xaa, 0x00, 0x00), /* red */
428 [QEMU_COLOR_MAGENTA
] = QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */
429 [QEMU_COLOR_YELLOW
] = QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */
430 [QEMU_COLOR_WHITE
] = QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */
433 [QEMU_COLOR_BLACK
] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
434 [QEMU_COLOR_BLUE
] = QEMU_RGB(0x00, 0x00, 0xff), /* blue */
435 [QEMU_COLOR_GREEN
] = QEMU_RGB(0x00, 0xff, 0x00), /* green */
436 [QEMU_COLOR_CYAN
] = QEMU_RGB(0x00, 0xff, 0xff), /* cyan */
437 [QEMU_COLOR_RED
] = QEMU_RGB(0xff, 0x00, 0x00), /* red */
438 [QEMU_COLOR_MAGENTA
] = QEMU_RGB(0xff, 0x00, 0xff), /* magenta */
439 [QEMU_COLOR_YELLOW
] = QEMU_RGB(0xff, 0xff, 0x00), /* yellow */
440 [QEMU_COLOR_WHITE
] = QEMU_RGB(0xff, 0xff, 0xff), /* white */
444 static void vga_putcharxy(QemuConsole
*s
, int x
, int y
, int ch
,
445 TextAttributes
*t_attrib
)
447 static pixman_image_t
*glyphs
[256];
448 DisplaySurface
*surface
= qemu_console_surface(s
);
449 pixman_color_t fgcol
, bgcol
;
451 if (t_attrib
->invers
) {
452 bgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->fgcol
];
453 fgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->bgcol
];
455 fgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->fgcol
];
456 bgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->bgcol
];
460 glyphs
[ch
] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT
, vgafont16
, ch
);
462 qemu_pixman_glyph_render(glyphs
[ch
], surface
->image
,
463 &fgcol
, &bgcol
, x
, y
, FONT_WIDTH
, FONT_HEIGHT
);
466 static void text_console_resize(QemuConsole
*s
)
468 TextCell
*cells
, *c
, *c1
;
469 int w1
, x
, y
, last_width
;
471 last_width
= s
->width
;
472 s
->width
= surface_width(s
->surface
) / FONT_WIDTH
;
473 s
->height
= surface_height(s
->surface
) / FONT_HEIGHT
;
479 cells
= g_new(TextCell
, s
->width
* s
->total_height
);
480 for(y
= 0; y
< s
->total_height
; y
++) {
481 c
= &cells
[y
* s
->width
];
483 c1
= &s
->cells
[y
* last_width
];
484 for(x
= 0; x
< w1
; x
++) {
488 for(x
= w1
; x
< s
->width
; x
++) {
490 c
->t_attrib
= s
->t_attrib_default
;
498 static inline void text_update_xy(QemuConsole
*s
, int x
, int y
)
500 s
->text_x
[0] = MIN(s
->text_x
[0], x
);
501 s
->text_x
[1] = MAX(s
->text_x
[1], x
);
502 s
->text_y
[0] = MIN(s
->text_y
[0], y
);
503 s
->text_y
[1] = MAX(s
->text_y
[1], y
);
506 static void invalidate_xy(QemuConsole
*s
, int x
, int y
)
508 if (!qemu_console_is_visible(s
)) {
511 if (s
->update_x0
> x
* FONT_WIDTH
)
512 s
->update_x0
= x
* FONT_WIDTH
;
513 if (s
->update_y0
> y
* FONT_HEIGHT
)
514 s
->update_y0
= y
* FONT_HEIGHT
;
515 if (s
->update_x1
< (x
+ 1) * FONT_WIDTH
)
516 s
->update_x1
= (x
+ 1) * FONT_WIDTH
;
517 if (s
->update_y1
< (y
+ 1) * FONT_HEIGHT
)
518 s
->update_y1
= (y
+ 1) * FONT_HEIGHT
;
521 static void update_xy(QemuConsole
*s
, int x
, int y
)
526 if (s
->ds
->have_text
) {
527 text_update_xy(s
, x
, y
);
530 y1
= (s
->y_base
+ y
) % s
->total_height
;
531 y2
= y1
- s
->y_displayed
;
533 y2
+= s
->total_height
;
535 if (y2
< s
->height
) {
536 c
= &s
->cells
[y1
* s
->width
+ x
];
537 vga_putcharxy(s
, x
, y2
, c
->ch
,
539 invalidate_xy(s
, x
, y2
);
543 static void console_show_cursor(QemuConsole
*s
, int show
)
549 if (s
->ds
->have_text
) {
550 s
->cursor_invalidate
= 1;
556 y1
= (s
->y_base
+ s
->y
) % s
->total_height
;
557 y
= y1
- s
->y_displayed
;
559 y
+= s
->total_height
;
562 c
= &s
->cells
[y1
* s
->width
+ x
];
563 if (show
&& cursor_visible_phase
) {
564 TextAttributes t_attrib
= s
->t_attrib_default
;
565 t_attrib
.invers
= !(t_attrib
.invers
); /* invert fg and bg */
566 vga_putcharxy(s
, x
, y
, c
->ch
, &t_attrib
);
568 vga_putcharxy(s
, x
, y
, c
->ch
, &(c
->t_attrib
));
570 invalidate_xy(s
, x
, y
);
574 static void console_refresh(QemuConsole
*s
)
576 DisplaySurface
*surface
= qemu_console_surface(s
);
580 if (s
->ds
->have_text
) {
583 s
->text_x
[1] = s
->width
- 1;
584 s
->text_y
[1] = s
->height
- 1;
585 s
->cursor_invalidate
= 1;
588 vga_fill_rect(s
, 0, 0, surface_width(surface
), surface_height(surface
),
589 color_table_rgb
[0][QEMU_COLOR_BLACK
]);
591 for (y
= 0; y
< s
->height
; y
++) {
592 c
= s
->cells
+ y1
* s
->width
;
593 for (x
= 0; x
< s
->width
; x
++) {
594 vga_putcharxy(s
, x
, y
, c
->ch
,
598 if (++y1
== s
->total_height
) {
602 console_show_cursor(s
, 1);
603 dpy_gfx_update(s
, 0, 0,
604 surface_width(surface
), surface_height(surface
));
607 static void console_scroll(QemuConsole
*s
, int ydelta
)
612 for(i
= 0; i
< ydelta
; i
++) {
613 if (s
->y_displayed
== s
->y_base
)
615 if (++s
->y_displayed
== s
->total_height
)
620 i
= s
->backscroll_height
;
621 if (i
> s
->total_height
- s
->height
)
622 i
= s
->total_height
- s
->height
;
625 y1
+= s
->total_height
;
626 for(i
= 0; i
< ydelta
; i
++) {
627 if (s
->y_displayed
== y1
)
629 if (--s
->y_displayed
< 0)
630 s
->y_displayed
= s
->total_height
- 1;
636 static void console_put_lf(QemuConsole
*s
)
642 if (s
->y
>= s
->height
) {
643 s
->y
= s
->height
- 1;
645 if (s
->y_displayed
== s
->y_base
) {
646 if (++s
->y_displayed
== s
->total_height
)
649 if (++s
->y_base
== s
->total_height
)
651 if (s
->backscroll_height
< s
->total_height
)
652 s
->backscroll_height
++;
653 y1
= (s
->y_base
+ s
->height
- 1) % s
->total_height
;
654 c
= &s
->cells
[y1
* s
->width
];
655 for(x
= 0; x
< s
->width
; x
++) {
657 c
->t_attrib
= s
->t_attrib_default
;
660 if (s
->y_displayed
== s
->y_base
) {
661 if (s
->ds
->have_text
) {
664 s
->text_x
[1] = s
->width
- 1;
665 s
->text_y
[1] = s
->height
- 1;
668 vga_bitblt(s
, 0, FONT_HEIGHT
, 0, 0,
669 s
->width
* FONT_WIDTH
,
670 (s
->height
- 1) * FONT_HEIGHT
);
671 vga_fill_rect(s
, 0, (s
->height
- 1) * FONT_HEIGHT
,
672 s
->width
* FONT_WIDTH
, FONT_HEIGHT
,
673 color_table_rgb
[0][s
->t_attrib_default
.bgcol
]);
676 s
->update_x1
= s
->width
* FONT_WIDTH
;
677 s
->update_y1
= s
->height
* FONT_HEIGHT
;
682 /* Set console attributes depending on the current escape codes.
683 * NOTE: I know this code is not very efficient (checking every color for it
684 * self) but it is more readable and better maintainable.
686 static void console_handle_escape(QemuConsole
*s
)
690 for (i
=0; i
<s
->nb_esc_params
; i
++) {
691 switch (s
->esc_params
[i
]) {
692 case 0: /* reset all console attributes to default */
693 s
->t_attrib
= s
->t_attrib_default
;
696 s
->t_attrib
.bold
= 1;
699 s
->t_attrib
.uline
= 1;
702 s
->t_attrib
.blink
= 1;
705 s
->t_attrib
.invers
= 1;
708 s
->t_attrib
.unvisible
= 1;
711 s
->t_attrib
.bold
= 0;
714 s
->t_attrib
.uline
= 0;
717 s
->t_attrib
.blink
= 0;
720 s
->t_attrib
.invers
= 0;
723 s
->t_attrib
.unvisible
= 0;
725 /* set foreground color */
727 s
->t_attrib
.fgcol
= QEMU_COLOR_BLACK
;
730 s
->t_attrib
.fgcol
= QEMU_COLOR_RED
;
733 s
->t_attrib
.fgcol
= QEMU_COLOR_GREEN
;
736 s
->t_attrib
.fgcol
= QEMU_COLOR_YELLOW
;
739 s
->t_attrib
.fgcol
= QEMU_COLOR_BLUE
;
742 s
->t_attrib
.fgcol
= QEMU_COLOR_MAGENTA
;
745 s
->t_attrib
.fgcol
= QEMU_COLOR_CYAN
;
748 s
->t_attrib
.fgcol
= QEMU_COLOR_WHITE
;
750 /* set background color */
752 s
->t_attrib
.bgcol
= QEMU_COLOR_BLACK
;
755 s
->t_attrib
.bgcol
= QEMU_COLOR_RED
;
758 s
->t_attrib
.bgcol
= QEMU_COLOR_GREEN
;
761 s
->t_attrib
.bgcol
= QEMU_COLOR_YELLOW
;
764 s
->t_attrib
.bgcol
= QEMU_COLOR_BLUE
;
767 s
->t_attrib
.bgcol
= QEMU_COLOR_MAGENTA
;
770 s
->t_attrib
.bgcol
= QEMU_COLOR_CYAN
;
773 s
->t_attrib
.bgcol
= QEMU_COLOR_WHITE
;
779 static void console_clear_xy(QemuConsole
*s
, int x
, int y
)
781 int y1
= (s
->y_base
+ y
) % s
->total_height
;
782 TextCell
*c
= &s
->cells
[y1
* s
->width
+ x
];
784 c
->t_attrib
= s
->t_attrib_default
;
788 static void console_put_one(QemuConsole
*s
, int ch
)
792 if (s
->x
>= s
->width
) {
797 y1
= (s
->y_base
+ s
->y
) % s
->total_height
;
798 c
= &s
->cells
[y1
* s
->width
+ s
->x
];
800 c
->t_attrib
= s
->t_attrib
;
801 update_xy(s
, s
->x
, s
->y
);
805 static void console_respond_str(QemuConsole
*s
, const char *buf
)
808 console_put_one(s
, *buf
);
813 /* set cursor, checking bounds */
814 static void set_cursor(QemuConsole
*s
, int x
, int y
)
822 if (y
>= s
->height
) {
833 static void console_putchar(QemuConsole
*s
, int ch
)
842 case '\r': /* carriage return */
845 case '\n': /* newline */
848 case '\b': /* backspace */
852 case '\t': /* tabspace */
853 if (s
->x
+ (8 - (s
->x
% 8)) > s
->width
) {
857 s
->x
= s
->x
+ (8 - (s
->x
% 8));
860 case '\a': /* alert aka. bell */
861 /* TODO: has to be implemented */
864 /* SI (shift in), character set 0 (ignored) */
867 /* SO (shift out), character set 1 (ignored) */
869 case 27: /* esc (introducing an escape sequence) */
870 s
->state
= TTY_STATE_ESC
;
873 console_put_one(s
, ch
);
877 case TTY_STATE_ESC
: /* check if it is a terminal escape sequence */
879 for(i
=0;i
<MAX_ESC_PARAMS
;i
++)
880 s
->esc_params
[i
] = 0;
881 s
->nb_esc_params
= 0;
882 s
->state
= TTY_STATE_CSI
;
884 s
->state
= TTY_STATE_NORM
;
887 case TTY_STATE_CSI
: /* handle escape sequence parameters */
888 if (ch
>= '0' && ch
<= '9') {
889 if (s
->nb_esc_params
< MAX_ESC_PARAMS
) {
890 int *param
= &s
->esc_params
[s
->nb_esc_params
];
891 int digit
= (ch
- '0');
893 *param
= (*param
<= (INT_MAX
- digit
) / 10) ?
894 *param
* 10 + digit
: INT_MAX
;
897 if (s
->nb_esc_params
< MAX_ESC_PARAMS
)
899 if (ch
== ';' || ch
== '?') {
902 trace_console_putchar_csi(s
->esc_params
[0], s
->esc_params
[1],
903 ch
, s
->nb_esc_params
);
904 s
->state
= TTY_STATE_NORM
;
908 if (s
->esc_params
[0] == 0) {
909 s
->esc_params
[0] = 1;
911 set_cursor(s
, s
->x
, s
->y
- s
->esc_params
[0]);
914 /* move cursor down */
915 if (s
->esc_params
[0] == 0) {
916 s
->esc_params
[0] = 1;
918 set_cursor(s
, s
->x
, s
->y
+ s
->esc_params
[0]);
921 /* move cursor right */
922 if (s
->esc_params
[0] == 0) {
923 s
->esc_params
[0] = 1;
925 set_cursor(s
, s
->x
+ s
->esc_params
[0], s
->y
);
928 /* move cursor left */
929 if (s
->esc_params
[0] == 0) {
930 s
->esc_params
[0] = 1;
932 set_cursor(s
, s
->x
- s
->esc_params
[0], s
->y
);
935 /* move cursor to column */
936 set_cursor(s
, s
->esc_params
[0] - 1, s
->y
);
940 /* move cursor to row, column */
941 set_cursor(s
, s
->esc_params
[1] - 1, s
->esc_params
[0] - 1);
944 switch (s
->esc_params
[0]) {
946 /* clear to end of screen */
947 for (y
= s
->y
; y
< s
->height
; y
++) {
948 for (x
= 0; x
< s
->width
; x
++) {
949 if (y
== s
->y
&& x
< s
->x
) {
952 console_clear_xy(s
, x
, y
);
957 /* clear from beginning of screen */
958 for (y
= 0; y
<= s
->y
; y
++) {
959 for (x
= 0; x
< s
->width
; x
++) {
960 if (y
== s
->y
&& x
> s
->x
) {
963 console_clear_xy(s
, x
, y
);
968 /* clear entire screen */
969 for (y
= 0; y
<= s
->height
; y
++) {
970 for (x
= 0; x
< s
->width
; x
++) {
971 console_clear_xy(s
, x
, y
);
978 switch (s
->esc_params
[0]) {
981 for(x
= s
->x
; x
< s
->width
; x
++) {
982 console_clear_xy(s
, x
, s
->y
);
986 /* clear from beginning of line */
987 for (x
= 0; x
<= s
->x
; x
++) {
988 console_clear_xy(s
, x
, s
->y
);
992 /* clear entire line */
993 for(x
= 0; x
< s
->width
; x
++) {
994 console_clear_xy(s
, x
, s
->y
);
1000 console_handle_escape(s
);
1003 switch (s
->esc_params
[0]) {
1005 /* report console status (always succeed)*/
1006 console_respond_str(s
, "\033[0n");
1009 /* report cursor position */
1010 sprintf(response
, "\033[%d;%dR",
1011 (s
->y_base
+ s
->y
) % s
->total_height
+ 1,
1013 console_respond_str(s
, response
);
1018 /* save cursor position */
1023 /* restore cursor position */
1028 trace_console_putchar_unhandled(ch
);
1036 void console_select(unsigned int index
)
1038 DisplayChangeListener
*dcl
;
1041 trace_console_select(index
);
1042 s
= qemu_console_lookup_by_index(index
);
1044 DisplayState
*ds
= s
->ds
;
1048 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
1049 if (dcl
->con
!= NULL
) {
1052 if (dcl
->ops
->dpy_gfx_switch
) {
1053 dcl
->ops
->dpy_gfx_switch(dcl
, s
->surface
);
1057 dpy_gfx_update(s
, 0, 0, surface_width(s
->surface
),
1058 surface_height(s
->surface
));
1061 if (ds
->have_text
) {
1062 dpy_text_resize(s
, s
->width
, s
->height
);
1064 text_console_update_cursor(NULL
);
1068 typedef struct VCChardev
{
1070 QemuConsole
*console
;
1073 #define TYPE_CHARDEV_VC "chardev-vc"
1074 #define VC_CHARDEV(obj) OBJECT_CHECK(VCChardev, (obj), TYPE_CHARDEV_VC)
1076 static int vc_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
1078 VCChardev
*drv
= VC_CHARDEV(chr
);
1079 QemuConsole
*s
= drv
->console
;
1086 s
->update_x0
= s
->width
* FONT_WIDTH
;
1087 s
->update_y0
= s
->height
* FONT_HEIGHT
;
1090 console_show_cursor(s
, 0);
1091 for(i
= 0; i
< len
; i
++) {
1092 console_putchar(s
, buf
[i
]);
1094 console_show_cursor(s
, 1);
1095 if (s
->ds
->have_gfx
&& s
->update_x0
< s
->update_x1
) {
1096 dpy_gfx_update(s
, s
->update_x0
, s
->update_y0
,
1097 s
->update_x1
- s
->update_x0
,
1098 s
->update_y1
- s
->update_y0
);
1103 static void kbd_send_chars(void *opaque
)
1105 QemuConsole
*s
= opaque
;
1109 len
= qemu_chr_be_can_write(s
->chr
);
1110 if (len
> s
->out_fifo
.count
)
1111 len
= s
->out_fifo
.count
;
1113 if (len
> sizeof(buf
))
1115 qemu_fifo_read(&s
->out_fifo
, buf
, len
);
1116 qemu_chr_be_write(s
->chr
, buf
, len
);
1118 /* characters are pending: we send them a bit later (XXX:
1119 horrible, should change char device API) */
1120 if (s
->out_fifo
.count
> 0) {
1121 timer_mod(s
->kbd_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1);
1125 /* called when an ascii key is pressed */
1126 void kbd_put_keysym_console(QemuConsole
*s
, int keysym
)
1128 uint8_t buf
[16], *q
;
1132 if (!s
|| (s
->console_type
== GRAPHIC_CONSOLE
))
1136 case QEMU_KEY_CTRL_UP
:
1137 console_scroll(s
, -1);
1139 case QEMU_KEY_CTRL_DOWN
:
1140 console_scroll(s
, 1);
1142 case QEMU_KEY_CTRL_PAGEUP
:
1143 console_scroll(s
, -10);
1145 case QEMU_KEY_CTRL_PAGEDOWN
:
1146 console_scroll(s
, 10);
1149 /* convert the QEMU keysym to VT100 key string */
1151 if (keysym
>= 0xe100 && keysym
<= 0xe11f) {
1154 c
= keysym
- 0xe100;
1156 *q
++ = '0' + (c
/ 10);
1157 *q
++ = '0' + (c
% 10);
1159 } else if (keysym
>= 0xe120 && keysym
<= 0xe17f) {
1162 *q
++ = keysym
& 0xff;
1163 } else if (s
->echo
&& (keysym
== '\r' || keysym
== '\n')) {
1164 vc_chr_write(s
->chr
, (const uint8_t *) "\r", 1);
1170 vc_chr_write(s
->chr
, buf
, q
- buf
);
1173 if (be
&& be
->chr_read
) {
1174 qemu_fifo_write(&s
->out_fifo
, buf
, q
- buf
);
1181 static const int qcode_to_keysym
[Q_KEY_CODE__MAX
] = {
1182 [Q_KEY_CODE_UP
] = QEMU_KEY_UP
,
1183 [Q_KEY_CODE_DOWN
] = QEMU_KEY_DOWN
,
1184 [Q_KEY_CODE_RIGHT
] = QEMU_KEY_RIGHT
,
1185 [Q_KEY_CODE_LEFT
] = QEMU_KEY_LEFT
,
1186 [Q_KEY_CODE_HOME
] = QEMU_KEY_HOME
,
1187 [Q_KEY_CODE_END
] = QEMU_KEY_END
,
1188 [Q_KEY_CODE_PGUP
] = QEMU_KEY_PAGEUP
,
1189 [Q_KEY_CODE_PGDN
] = QEMU_KEY_PAGEDOWN
,
1190 [Q_KEY_CODE_DELETE
] = QEMU_KEY_DELETE
,
1191 [Q_KEY_CODE_BACKSPACE
] = QEMU_KEY_BACKSPACE
,
1194 bool kbd_put_qcode_console(QemuConsole
*s
, int qcode
)
1198 keysym
= qcode_to_keysym
[qcode
];
1202 kbd_put_keysym_console(s
, keysym
);
1206 void kbd_put_string_console(QemuConsole
*s
, const char *str
, int len
)
1210 for (i
= 0; i
< len
&& str
[i
]; i
++) {
1211 kbd_put_keysym_console(s
, str
[i
]);
1215 void kbd_put_keysym(int keysym
)
1217 kbd_put_keysym_console(active_console
, keysym
);
1220 static void text_console_invalidate(void *opaque
)
1222 QemuConsole
*s
= (QemuConsole
*) opaque
;
1224 if (s
->ds
->have_text
&& s
->console_type
== TEXT_CONSOLE
) {
1225 text_console_resize(s
);
1230 static void text_console_update(void *opaque
, console_ch_t
*chardata
)
1232 QemuConsole
*s
= (QemuConsole
*) opaque
;
1235 if (s
->text_x
[0] <= s
->text_x
[1]) {
1236 src
= (s
->y_base
+ s
->text_y
[0]) * s
->width
;
1237 chardata
+= s
->text_y
[0] * s
->width
;
1238 for (i
= s
->text_y
[0]; i
<= s
->text_y
[1]; i
++)
1239 for (j
= 0; j
< s
->width
; j
++, src
++) {
1240 console_write_ch(chardata
++,
1241 ATTR2CHTYPE(s
->cells
[src
].ch
,
1242 s
->cells
[src
].t_attrib
.fgcol
,
1243 s
->cells
[src
].t_attrib
.bgcol
,
1244 s
->cells
[src
].t_attrib
.bold
));
1246 dpy_text_update(s
, s
->text_x
[0], s
->text_y
[0],
1247 s
->text_x
[1] - s
->text_x
[0], i
- s
->text_y
[0]);
1248 s
->text_x
[0] = s
->width
;
1249 s
->text_y
[0] = s
->height
;
1253 if (s
->cursor_invalidate
) {
1254 dpy_text_cursor(s
, s
->x
, s
->y
);
1255 s
->cursor_invalidate
= 0;
1259 static QemuConsole
*new_console(DisplayState
*ds
, console_type_t console_type
,
1266 obj
= object_new(TYPE_QEMU_CONSOLE
);
1267 s
= QEMU_CONSOLE(obj
);
1269 object_property_add_link(obj
, "device", TYPE_DEVICE
,
1270 (Object
**)&s
->device
,
1271 object_property_allow_set_link
,
1272 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
1274 object_property_add_uint32_ptr(obj
, "head",
1275 &s
->head
, &error_abort
);
1277 if (!active_console
|| ((active_console
->console_type
!= GRAPHIC_CONSOLE
) &&
1278 (console_type
== GRAPHIC_CONSOLE
))) {
1282 s
->console_type
= console_type
;
1284 consoles
= g_realloc(consoles
, sizeof(*consoles
) * (nb_consoles
+1));
1285 if (console_type
!= GRAPHIC_CONSOLE
|| qdev_hotplug
) {
1286 s
->index
= nb_consoles
;
1287 consoles
[nb_consoles
++] = s
;
1290 * HACK: Put graphical consoles before text consoles.
1292 * Only do that for coldplugged devices. After initial device
1293 * initialization we will not renumber the consoles any more.
1295 for (i
= nb_consoles
; i
> 0; i
--) {
1296 if (consoles
[i
- 1]->console_type
== GRAPHIC_CONSOLE
)
1298 consoles
[i
] = consoles
[i
- 1];
1299 consoles
[i
]->index
= i
;
1308 static void qemu_alloc_display(DisplaySurface
*surface
, int width
, int height
)
1310 qemu_pixman_image_unref(surface
->image
);
1311 surface
->image
= NULL
;
1313 surface
->format
= PIXMAN_x8r8g8b8
;
1314 surface
->image
= pixman_image_create_bits(surface
->format
,
1317 assert(surface
->image
!= NULL
);
1319 surface
->flags
= QEMU_ALLOCATED_FLAG
;
1322 DisplaySurface
*qemu_create_displaysurface(int width
, int height
)
1324 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
1326 trace_displaysurface_create(surface
, width
, height
);
1327 qemu_alloc_display(surface
, width
, height
);
1331 DisplaySurface
*qemu_create_displaysurface_from(int width
, int height
,
1332 pixman_format_code_t format
,
1333 int linesize
, uint8_t *data
)
1335 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
1337 trace_displaysurface_create_from(surface
, width
, height
, format
);
1338 surface
->format
= format
;
1339 surface
->image
= pixman_image_create_bits(surface
->format
,
1341 (void *)data
, linesize
);
1342 assert(surface
->image
!= NULL
);
1347 DisplaySurface
*qemu_create_displaysurface_pixman(pixman_image_t
*image
)
1349 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
1351 trace_displaysurface_create_pixman(surface
);
1352 surface
->format
= pixman_image_get_format(image
);
1353 surface
->image
= pixman_image_ref(image
);
1358 static void qemu_unmap_displaysurface_guestmem(pixman_image_t
*image
,
1361 void *data
= pixman_image_get_data(image
);
1362 uint32_t size
= pixman_image_get_stride(image
) *
1363 pixman_image_get_height(image
);
1364 cpu_physical_memory_unmap(data
, size
, 0, 0);
1367 DisplaySurface
*qemu_create_displaysurface_guestmem(int width
, int height
,
1368 pixman_format_code_t format
,
1369 int linesize
, uint64_t addr
)
1371 DisplaySurface
*surface
;
1375 if (linesize
== 0) {
1376 linesize
= width
* PIXMAN_FORMAT_BPP(format
) / 8;
1379 size
= (hwaddr
)linesize
* height
;
1380 data
= cpu_physical_memory_map(addr
, &size
, 0);
1381 if (size
!= (hwaddr
)linesize
* height
) {
1382 cpu_physical_memory_unmap(data
, size
, 0, 0);
1386 surface
= qemu_create_displaysurface_from
1387 (width
, height
, format
, linesize
, data
);
1388 pixman_image_set_destroy_function
1389 (surface
->image
, qemu_unmap_displaysurface_guestmem
, NULL
);
1394 DisplaySurface
*qemu_create_message_surface(int w
, int h
,
1397 DisplaySurface
*surface
= qemu_create_displaysurface(w
, h
);
1398 pixman_color_t bg
= color_table_rgb
[0][QEMU_COLOR_BLACK
];
1399 pixman_color_t fg
= color_table_rgb
[0][QEMU_COLOR_WHITE
];
1400 pixman_image_t
*glyph
;
1404 x
= (w
/ FONT_WIDTH
- len
) / 2;
1405 y
= (h
/ FONT_HEIGHT
- 1) / 2;
1406 for (i
= 0; i
< len
; i
++) {
1407 glyph
= qemu_pixman_glyph_from_vgafont(FONT_HEIGHT
, vgafont16
, msg
[i
]);
1408 qemu_pixman_glyph_render(glyph
, surface
->image
, &fg
, &bg
,
1409 x
+i
, y
, FONT_WIDTH
, FONT_HEIGHT
);
1410 qemu_pixman_image_unref(glyph
);
1415 void qemu_free_displaysurface(DisplaySurface
*surface
)
1417 if (surface
== NULL
) {
1420 trace_displaysurface_free(surface
);
1421 qemu_pixman_image_unref(surface
->image
);
1425 bool console_has_gl(QemuConsole
*con
)
1427 return con
->gl
!= NULL
;
1430 bool console_has_gl_dmabuf(QemuConsole
*con
)
1432 return con
->gl
!= NULL
&& con
->gl
->ops
->dpy_gl_scanout_dmabuf
!= NULL
;
1435 void register_displaychangelistener(DisplayChangeListener
*dcl
)
1437 static const char nodev
[] =
1438 "This VM has no graphic display device.";
1439 static DisplaySurface
*dummy
;
1444 if (dcl
->ops
->dpy_gl_ctx_create
) {
1445 /* display has opengl support */
1448 fprintf(stderr
, "can't register two opengl displays (%s, %s)\n",
1449 dcl
->ops
->dpy_name
, dcl
->con
->gl
->ops
->dpy_name
);
1455 trace_displaychangelistener_register(dcl
, dcl
->ops
->dpy_name
);
1456 dcl
->ds
= get_alloc_displaystate();
1457 QLIST_INSERT_HEAD(&dcl
->ds
->listeners
, dcl
, next
);
1458 gui_setup_refresh(dcl
->ds
);
1463 con
= active_console
;
1465 if (dcl
->ops
->dpy_gfx_switch
) {
1467 dcl
->ops
->dpy_gfx_switch(dcl
, con
->surface
);
1470 dummy
= qemu_create_message_surface(640, 480, nodev
);
1472 dcl
->ops
->dpy_gfx_switch(dcl
, dummy
);
1475 text_console_update_cursor(NULL
);
1478 void update_displaychangelistener(DisplayChangeListener
*dcl
,
1481 DisplayState
*ds
= dcl
->ds
;
1483 dcl
->update_interval
= interval
;
1484 if (!ds
->refreshing
&& ds
->update_interval
> interval
) {
1485 timer_mod(ds
->gui_timer
, ds
->last_update
+ interval
);
1489 void unregister_displaychangelistener(DisplayChangeListener
*dcl
)
1491 DisplayState
*ds
= dcl
->ds
;
1492 trace_displaychangelistener_unregister(dcl
, dcl
->ops
->dpy_name
);
1496 QLIST_REMOVE(dcl
, next
);
1498 gui_setup_refresh(ds
);
1501 static void dpy_set_ui_info_timer(void *opaque
)
1503 QemuConsole
*con
= opaque
;
1505 con
->hw_ops
->ui_info(con
->hw
, con
->head
, &con
->ui_info
);
1508 bool dpy_ui_info_supported(QemuConsole
*con
)
1510 return con
->hw_ops
->ui_info
!= NULL
;
1513 int dpy_set_ui_info(QemuConsole
*con
, QemuUIInfo
*info
)
1515 assert(con
!= NULL
);
1517 if (!dpy_ui_info_supported(con
)) {
1520 if (memcmp(&con
->ui_info
, info
, sizeof(con
->ui_info
)) == 0) {
1521 /* nothing changed -- ignore */
1526 * Typically we get a flood of these as the user resizes the window.
1527 * Wait until the dust has settled (one second without updates), then
1528 * go notify the guest.
1530 con
->ui_info
= *info
;
1531 timer_mod(con
->ui_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1535 void dpy_gfx_update(QemuConsole
*con
, int x
, int y
, int w
, int h
)
1537 DisplayState
*s
= con
->ds
;
1538 DisplayChangeListener
*dcl
;
1543 width
= surface_width(con
->surface
);
1544 height
= surface_height(con
->surface
);
1550 w
= MIN(w
, width
- x
);
1551 h
= MIN(h
, height
- y
);
1553 if (!qemu_console_is_visible(con
)) {
1556 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1557 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1560 if (dcl
->ops
->dpy_gfx_update
) {
1561 dcl
->ops
->dpy_gfx_update(dcl
, x
, y
, w
, h
);
1566 void dpy_gfx_replace_surface(QemuConsole
*con
,
1567 DisplaySurface
*surface
)
1569 DisplayState
*s
= con
->ds
;
1570 DisplaySurface
*old_surface
= con
->surface
;
1571 DisplayChangeListener
*dcl
;
1573 assert(old_surface
!= surface
|| surface
== NULL
);
1575 con
->surface
= surface
;
1576 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1577 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1580 if (dcl
->ops
->dpy_gfx_switch
) {
1581 dcl
->ops
->dpy_gfx_switch(dcl
, surface
);
1584 qemu_free_displaysurface(old_surface
);
1587 bool dpy_gfx_check_format(QemuConsole
*con
,
1588 pixman_format_code_t format
)
1590 DisplayChangeListener
*dcl
;
1591 DisplayState
*s
= con
->ds
;
1593 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1594 if (dcl
->con
&& dcl
->con
!= con
) {
1595 /* dcl bound to another console -> skip */
1598 if (dcl
->ops
->dpy_gfx_check_format
) {
1599 if (!dcl
->ops
->dpy_gfx_check_format(dcl
, format
)) {
1603 /* default is to whitelist native 32 bpp only */
1604 if (format
!= qemu_default_pixman_format(32, true)) {
1612 static void dpy_refresh(DisplayState
*s
)
1614 DisplayChangeListener
*dcl
;
1616 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1617 if (dcl
->ops
->dpy_refresh
) {
1618 dcl
->ops
->dpy_refresh(dcl
);
1623 void dpy_text_cursor(QemuConsole
*con
, int x
, int y
)
1625 DisplayState
*s
= con
->ds
;
1626 DisplayChangeListener
*dcl
;
1628 if (!qemu_console_is_visible(con
)) {
1631 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1632 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1635 if (dcl
->ops
->dpy_text_cursor
) {
1636 dcl
->ops
->dpy_text_cursor(dcl
, x
, y
);
1641 void dpy_text_update(QemuConsole
*con
, int x
, int y
, int w
, int h
)
1643 DisplayState
*s
= con
->ds
;
1644 DisplayChangeListener
*dcl
;
1646 if (!qemu_console_is_visible(con
)) {
1649 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1650 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1653 if (dcl
->ops
->dpy_text_update
) {
1654 dcl
->ops
->dpy_text_update(dcl
, x
, y
, w
, h
);
1659 void dpy_text_resize(QemuConsole
*con
, int w
, int h
)
1661 DisplayState
*s
= con
->ds
;
1662 DisplayChangeListener
*dcl
;
1664 if (!qemu_console_is_visible(con
)) {
1667 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1668 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1671 if (dcl
->ops
->dpy_text_resize
) {
1672 dcl
->ops
->dpy_text_resize(dcl
, w
, h
);
1677 void dpy_mouse_set(QemuConsole
*con
, int x
, int y
, int on
)
1679 DisplayState
*s
= con
->ds
;
1680 DisplayChangeListener
*dcl
;
1682 if (!qemu_console_is_visible(con
)) {
1685 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1686 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1689 if (dcl
->ops
->dpy_mouse_set
) {
1690 dcl
->ops
->dpy_mouse_set(dcl
, x
, y
, on
);
1695 void dpy_cursor_define(QemuConsole
*con
, QEMUCursor
*cursor
)
1697 DisplayState
*s
= con
->ds
;
1698 DisplayChangeListener
*dcl
;
1700 if (!qemu_console_is_visible(con
)) {
1703 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1704 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1707 if (dcl
->ops
->dpy_cursor_define
) {
1708 dcl
->ops
->dpy_cursor_define(dcl
, cursor
);
1713 bool dpy_cursor_define_supported(QemuConsole
*con
)
1715 DisplayState
*s
= con
->ds
;
1716 DisplayChangeListener
*dcl
;
1718 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1719 if (dcl
->ops
->dpy_cursor_define
) {
1726 QEMUGLContext
dpy_gl_ctx_create(QemuConsole
*con
,
1727 struct QEMUGLParams
*qparams
)
1730 return con
->gl
->ops
->dpy_gl_ctx_create(con
->gl
, qparams
);
1733 void dpy_gl_ctx_destroy(QemuConsole
*con
, QEMUGLContext ctx
)
1736 con
->gl
->ops
->dpy_gl_ctx_destroy(con
->gl
, ctx
);
1739 int dpy_gl_ctx_make_current(QemuConsole
*con
, QEMUGLContext ctx
)
1742 return con
->gl
->ops
->dpy_gl_ctx_make_current(con
->gl
, ctx
);
1745 QEMUGLContext
dpy_gl_ctx_get_current(QemuConsole
*con
)
1748 return con
->gl
->ops
->dpy_gl_ctx_get_current(con
->gl
);
1751 void dpy_gl_scanout_disable(QemuConsole
*con
)
1754 if (con
->gl
->ops
->dpy_gl_scanout_disable
) {
1755 con
->gl
->ops
->dpy_gl_scanout_disable(con
->gl
);
1757 con
->gl
->ops
->dpy_gl_scanout_texture(con
->gl
, 0, false, 0, 0,
1762 void dpy_gl_scanout_texture(QemuConsole
*con
,
1763 uint32_t backing_id
,
1764 bool backing_y_0_top
,
1765 uint32_t backing_width
,
1766 uint32_t backing_height
,
1767 uint32_t x
, uint32_t y
,
1768 uint32_t width
, uint32_t height
)
1771 con
->gl
->ops
->dpy_gl_scanout_texture(con
->gl
, backing_id
,
1773 backing_width
, backing_height
,
1774 x
, y
, width
, height
);
1777 void dpy_gl_scanout_dmabuf(QemuConsole
*con
,
1781 con
->gl
->ops
->dpy_gl_scanout_dmabuf(con
->gl
, dmabuf
);
1784 void dpy_gl_cursor_dmabuf(QemuConsole
*con
, QemuDmaBuf
*dmabuf
,
1785 bool have_hot
, uint32_t hot_x
, uint32_t hot_y
)
1789 if (con
->gl
->ops
->dpy_gl_cursor_dmabuf
) {
1790 con
->gl
->ops
->dpy_gl_cursor_dmabuf(con
->gl
, dmabuf
,
1791 have_hot
, hot_x
, hot_y
);
1795 void dpy_gl_cursor_position(QemuConsole
*con
,
1796 uint32_t pos_x
, uint32_t pos_y
)
1800 if (con
->gl
->ops
->dpy_gl_cursor_position
) {
1801 con
->gl
->ops
->dpy_gl_cursor_position(con
->gl
, pos_x
, pos_y
);
1805 void dpy_gl_release_dmabuf(QemuConsole
*con
,
1810 if (con
->gl
->ops
->dpy_gl_release_dmabuf
) {
1811 con
->gl
->ops
->dpy_gl_release_dmabuf(con
->gl
, dmabuf
);
1815 void dpy_gl_update(QemuConsole
*con
,
1816 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
)
1819 con
->gl
->ops
->dpy_gl_update(con
->gl
, x
, y
, w
, h
);
1822 /***********************************************************/
1823 /* register display */
1825 /* console.c internal use only */
1826 static DisplayState
*get_alloc_displaystate(void)
1828 if (!display_state
) {
1829 display_state
= g_new0(DisplayState
, 1);
1830 cursor_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
1831 text_console_update_cursor
, NULL
);
1833 return display_state
;
1837 * Called by main(), after creating QemuConsoles
1838 * and before initializing ui (sdl/vnc/...).
1840 DisplayState
*init_displaystate(void)
1845 get_alloc_displaystate();
1846 for (i
= 0; i
< nb_consoles
; i
++) {
1847 if (consoles
[i
]->console_type
!= GRAPHIC_CONSOLE
&&
1848 consoles
[i
]->ds
== NULL
) {
1849 text_console_do_init(consoles
[i
]->chr
, display_state
);
1852 /* Hook up into the qom tree here (not in new_console()), once
1853 * all QemuConsoles are created and the order / numbering
1854 * doesn't change any more */
1855 name
= g_strdup_printf("console[%d]", i
);
1856 object_property_add_child(container_get(object_get_root(), "/backend"),
1857 name
, OBJECT(consoles
[i
]), &error_abort
);
1861 return display_state
;
1864 void graphic_console_set_hwops(QemuConsole
*con
,
1865 const GraphicHwOps
*hw_ops
,
1868 con
->hw_ops
= hw_ops
;
1872 QemuConsole
*graphic_console_init(DeviceState
*dev
, uint32_t head
,
1873 const GraphicHwOps
*hw_ops
,
1876 static const char noinit
[] =
1877 "Guest has not initialized the display (yet).";
1882 DisplaySurface
*surface
;
1884 ds
= get_alloc_displaystate();
1885 s
= qemu_console_lookup_unused();
1887 trace_console_gfx_reuse(s
->index
);
1889 width
= surface_width(s
->surface
);
1890 height
= surface_height(s
->surface
);
1893 trace_console_gfx_new();
1894 s
= new_console(ds
, GRAPHIC_CONSOLE
, head
);
1895 s
->ui_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
1896 dpy_set_ui_info_timer
, s
);
1898 graphic_console_set_hwops(s
, hw_ops
, opaque
);
1900 object_property_set_link(OBJECT(s
), OBJECT(dev
), "device",
1904 surface
= qemu_create_message_surface(width
, height
, noinit
);
1905 dpy_gfx_replace_surface(s
, surface
);
1909 static const GraphicHwOps unused_ops
= {
1913 void graphic_console_close(QemuConsole
*con
)
1915 static const char unplugged
[] =
1916 "Guest display has been unplugged";
1917 DisplaySurface
*surface
;
1922 width
= surface_width(con
->surface
);
1923 height
= surface_height(con
->surface
);
1926 trace_console_gfx_close(con
->index
);
1927 object_property_set_link(OBJECT(con
), NULL
, "device", &error_abort
);
1928 graphic_console_set_hwops(con
, &unused_ops
, NULL
);
1931 dpy_gl_scanout_disable(con
);
1933 surface
= qemu_create_message_surface(width
, height
, unplugged
);
1934 dpy_gfx_replace_surface(con
, surface
);
1937 QemuConsole
*qemu_console_lookup_by_index(unsigned int index
)
1939 if (index
>= nb_consoles
) {
1942 return consoles
[index
];
1945 QemuConsole
*qemu_console_lookup_by_device(DeviceState
*dev
, uint32_t head
)
1951 for (i
= 0; i
< nb_consoles
; i
++) {
1955 obj
= object_property_get_link(OBJECT(consoles
[i
]),
1956 "device", &error_abort
);
1957 if (DEVICE(obj
) != dev
) {
1960 h
= object_property_get_uint(OBJECT(consoles
[i
]),
1961 "head", &error_abort
);
1970 QemuConsole
*qemu_console_lookup_by_device_name(const char *device_id
,
1971 uint32_t head
, Error
**errp
)
1976 dev
= qdev_find_recursive(sysbus_get_default(), device_id
);
1978 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
1979 "Device '%s' not found", device_id
);
1983 con
= qemu_console_lookup_by_device(dev
, head
);
1985 error_setg(errp
, "Device %s (head %d) is not bound to a QemuConsole",
1993 QemuConsole
*qemu_console_lookup_unused(void)
1998 for (i
= 0; i
< nb_consoles
; i
++) {
2002 if (consoles
[i
]->hw_ops
!= &unused_ops
) {
2005 obj
= object_property_get_link(OBJECT(consoles
[i
]),
2006 "device", &error_abort
);
2015 bool qemu_console_is_visible(QemuConsole
*con
)
2017 return (con
== active_console
) || (con
->dcls
> 0);
2020 bool qemu_console_is_graphic(QemuConsole
*con
)
2023 con
= active_console
;
2025 return con
&& (con
->console_type
== GRAPHIC_CONSOLE
);
2028 bool qemu_console_is_fixedsize(QemuConsole
*con
)
2031 con
= active_console
;
2033 return con
&& (con
->console_type
!= TEXT_CONSOLE
);
2036 bool qemu_console_is_gl_blocked(QemuConsole
*con
)
2038 assert(con
!= NULL
);
2039 return con
->gl_block
;
2042 char *qemu_console_get_label(QemuConsole
*con
)
2044 if (con
->console_type
== GRAPHIC_CONSOLE
) {
2046 return g_strdup(object_get_typename(con
->device
));
2048 return g_strdup("VGA");
2050 if (con
->chr
&& con
->chr
->label
) {
2051 return g_strdup(con
->chr
->label
);
2053 return g_strdup_printf("vc%d", con
->index
);
2057 int qemu_console_get_index(QemuConsole
*con
)
2060 con
= active_console
;
2062 return con
? con
->index
: -1;
2065 uint32_t qemu_console_get_head(QemuConsole
*con
)
2068 con
= active_console
;
2070 return con
? con
->head
: -1;
2073 QemuUIInfo
*qemu_console_get_ui_info(QemuConsole
*con
)
2075 assert(con
!= NULL
);
2076 return &con
->ui_info
;
2079 int qemu_console_get_width(QemuConsole
*con
, int fallback
)
2082 con
= active_console
;
2084 return con
? surface_width(con
->surface
) : fallback
;
2087 int qemu_console_get_height(QemuConsole
*con
, int fallback
)
2090 con
= active_console
;
2092 return con
? surface_height(con
->surface
) : fallback
;
2095 static void vc_chr_set_echo(Chardev
*chr
, bool echo
)
2097 VCChardev
*drv
= VC_CHARDEV(chr
);
2098 QemuConsole
*s
= drv
->console
;
2103 static void text_console_update_cursor_timer(void)
2105 timer_mod(cursor_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
)
2106 + CONSOLE_CURSOR_PERIOD
/ 2);
2109 static void text_console_update_cursor(void *opaque
)
2114 cursor_visible_phase
= !cursor_visible_phase
;
2116 for (i
= 0; i
< nb_consoles
; i
++) {
2118 if (qemu_console_is_graphic(s
) ||
2119 !qemu_console_is_visible(s
)) {
2123 graphic_hw_invalidate(s
);
2127 text_console_update_cursor_timer();
2131 static const GraphicHwOps text_console_ops
= {
2132 .invalidate
= text_console_invalidate
,
2133 .text_update
= text_console_update
,
2136 static void text_console_do_init(Chardev
*chr
, DisplayState
*ds
)
2138 VCChardev
*drv
= VC_CHARDEV(chr
);
2139 QemuConsole
*s
= drv
->console
;
2140 int g_width
= 80 * FONT_WIDTH
;
2141 int g_height
= 24 * FONT_HEIGHT
;
2143 s
->out_fifo
.buf
= s
->out_fifo_buf
;
2144 s
->out_fifo
.buf_size
= sizeof(s
->out_fifo_buf
);
2145 s
->kbd_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, kbd_send_chars
, s
);
2150 s
->total_height
= DEFAULT_BACKSCROLL
;
2154 if (active_console
&& active_console
->surface
) {
2155 g_width
= surface_width(active_console
->surface
);
2156 g_height
= surface_height(active_console
->surface
);
2158 s
->surface
= qemu_create_displaysurface(g_width
, g_height
);
2161 s
->hw_ops
= &text_console_ops
;
2164 /* Set text attribute defaults */
2165 s
->t_attrib_default
.bold
= 0;
2166 s
->t_attrib_default
.uline
= 0;
2167 s
->t_attrib_default
.blink
= 0;
2168 s
->t_attrib_default
.invers
= 0;
2169 s
->t_attrib_default
.unvisible
= 0;
2170 s
->t_attrib_default
.fgcol
= QEMU_COLOR_WHITE
;
2171 s
->t_attrib_default
.bgcol
= QEMU_COLOR_BLACK
;
2172 /* set current text attributes to default */
2173 s
->t_attrib
= s
->t_attrib_default
;
2174 text_console_resize(s
);
2180 s
->t_attrib
.bgcol
= QEMU_COLOR_BLUE
;
2181 len
= snprintf(msg
, sizeof(msg
), "%s console\r\n", chr
->label
);
2182 vc_chr_write(chr
, (uint8_t *)msg
, len
);
2183 s
->t_attrib
= s
->t_attrib_default
;
2186 qemu_chr_be_event(chr
, CHR_EVENT_OPENED
);
2189 static void vc_chr_open(Chardev
*chr
,
2190 ChardevBackend
*backend
,
2194 ChardevVC
*vc
= backend
->u
.vc
.data
;
2195 VCChardev
*drv
= VC_CHARDEV(chr
);
2198 unsigned height
= 0;
2200 if (vc
->has_width
) {
2202 } else if (vc
->has_cols
) {
2203 width
= vc
->cols
* FONT_WIDTH
;
2206 if (vc
->has_height
) {
2207 height
= vc
->height
;
2208 } else if (vc
->has_rows
) {
2209 height
= vc
->rows
* FONT_HEIGHT
;
2212 trace_console_txt_new(width
, height
);
2213 if (width
== 0 || height
== 0) {
2214 s
= new_console(NULL
, TEXT_CONSOLE
, 0);
2216 s
= new_console(NULL
, TEXT_CONSOLE_FIXED_SIZE
, 0);
2217 s
->surface
= qemu_create_displaysurface(width
, height
);
2221 error_setg(errp
, "cannot create text console");
2228 if (display_state
) {
2229 text_console_do_init(chr
, display_state
);
2232 /* console/chardev init sometimes completes elsewhere in a 2nd
2233 * stage, so defer OPENED events until they are fully initialized
2238 void qemu_console_resize(QemuConsole
*s
, int width
, int height
)
2240 DisplaySurface
*surface
;
2242 assert(s
->console_type
== GRAPHIC_CONSOLE
);
2244 if (s
->surface
&& (s
->surface
->flags
& QEMU_ALLOCATED_FLAG
) &&
2245 pixman_image_get_width(s
->surface
->image
) == width
&&
2246 pixman_image_get_height(s
->surface
->image
) == height
) {
2250 surface
= qemu_create_displaysurface(width
, height
);
2251 dpy_gfx_replace_surface(s
, surface
);
2254 DisplaySurface
*qemu_console_surface(QemuConsole
*console
)
2256 return console
->surface
;
2259 PixelFormat
qemu_default_pixelformat(int bpp
)
2261 pixman_format_code_t fmt
= qemu_default_pixman_format(bpp
, true);
2262 PixelFormat pf
= qemu_pixelformat_from_pixman(fmt
);
2266 static QemuDisplay
*dpys
[DISPLAY_TYPE__MAX
];
2268 void qemu_display_register(QemuDisplay
*ui
)
2270 assert(ui
->type
< DISPLAY_TYPE__MAX
);
2271 dpys
[ui
->type
] = ui
;
2274 bool qemu_display_find_default(DisplayOptions
*opts
)
2276 static DisplayType prio
[] = {
2283 for (i
= 0; i
< ARRAY_SIZE(prio
); i
++) {
2284 if (dpys
[prio
[i
]] == NULL
) {
2285 ui_module_load_one(DisplayType_lookup
.array
[prio
[i
]]);
2287 if (dpys
[prio
[i
]] == NULL
) {
2290 opts
->type
= prio
[i
];
2296 void qemu_display_early_init(DisplayOptions
*opts
)
2298 assert(opts
->type
< DISPLAY_TYPE__MAX
);
2299 if (opts
->type
== DISPLAY_TYPE_NONE
) {
2302 if (dpys
[opts
->type
] == NULL
) {
2303 ui_module_load_one(DisplayType_lookup
.array
[opts
->type
]);
2305 if (dpys
[opts
->type
] == NULL
) {
2306 error_report("Display '%s' is not available.",
2307 DisplayType_lookup
.array
[opts
->type
]);
2310 if (dpys
[opts
->type
]->early_init
) {
2311 dpys
[opts
->type
]->early_init(opts
);
2315 void qemu_display_init(DisplayState
*ds
, DisplayOptions
*opts
)
2317 assert(opts
->type
< DISPLAY_TYPE__MAX
);
2318 if (opts
->type
== DISPLAY_TYPE_NONE
) {
2321 assert(dpys
[opts
->type
] != NULL
);
2322 dpys
[opts
->type
]->init(ds
, opts
);
2325 void qemu_chr_parse_vc(QemuOpts
*opts
, ChardevBackend
*backend
, Error
**errp
)
2330 backend
->type
= CHARDEV_BACKEND_KIND_VC
;
2331 vc
= backend
->u
.vc
.data
= g_new0(ChardevVC
, 1);
2332 qemu_chr_parse_common(opts
, qapi_ChardevVC_base(vc
));
2334 val
= qemu_opt_get_number(opts
, "width", 0);
2336 vc
->has_width
= true;
2340 val
= qemu_opt_get_number(opts
, "height", 0);
2342 vc
->has_height
= true;
2346 val
= qemu_opt_get_number(opts
, "cols", 0);
2348 vc
->has_cols
= true;
2352 val
= qemu_opt_get_number(opts
, "rows", 0);
2354 vc
->has_rows
= true;
2359 static const TypeInfo qemu_console_info
= {
2360 .name
= TYPE_QEMU_CONSOLE
,
2361 .parent
= TYPE_OBJECT
,
2362 .instance_size
= sizeof(QemuConsole
),
2363 .class_size
= sizeof(QemuConsoleClass
),
2366 static void char_vc_class_init(ObjectClass
*oc
, void *data
)
2368 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
2370 cc
->parse
= qemu_chr_parse_vc
;
2371 cc
->open
= vc_chr_open
;
2372 cc
->chr_write
= vc_chr_write
;
2373 cc
->chr_set_echo
= vc_chr_set_echo
;
2376 static const TypeInfo char_vc_type_info
= {
2377 .name
= TYPE_CHARDEV_VC
,
2378 .parent
= TYPE_CHARDEV
,
2379 .instance_size
= sizeof(VCChardev
),
2380 .class_init
= char_vc_class_init
,
2383 void qemu_console_early_init(void)
2385 /* set the default vc driver */
2386 if (!object_class_by_name(TYPE_CHARDEV_VC
)) {
2387 type_register(&char_vc_type_info
);
2391 static void register_types(void)
2393 type_register_static(&qemu_console_info
);
2396 type_init(register_types
);