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/osdep.h"
25 #include "qemu-common.h"
26 #include "ui/console.h"
27 #include "hw/qdev-core.h"
28 #include "qemu/timer.h"
29 #include "qmp-commands.h"
30 #include "sysemu/char.h"
32 #include "exec/memory.h"
34 #define DEFAULT_BACKSCROLL 512
35 #define CONSOLE_CURSOR_PERIOD 500
37 typedef struct TextAttributes
{
47 typedef struct TextCell
{
49 TextAttributes t_attrib
;
52 #define MAX_ESC_PARAMS 3
60 typedef struct QEMUFIFO
{
63 int count
, wptr
, rptr
;
66 static int qemu_fifo_write(QEMUFIFO
*f
, const uint8_t *buf
, int len1
)
70 l
= f
->buf_size
- f
->count
;
75 l
= f
->buf_size
- f
->wptr
;
78 memcpy(f
->buf
+ f
->wptr
, buf
, l
);
80 if (f
->wptr
>= f
->buf_size
)
89 static int qemu_fifo_read(QEMUFIFO
*f
, uint8_t *buf
, int len1
)
97 l
= f
->buf_size
- f
->rptr
;
100 memcpy(buf
, f
->buf
+ f
->rptr
, l
);
102 if (f
->rptr
>= f
->buf_size
)
114 TEXT_CONSOLE_FIXED_SIZE
121 console_type_t console_type
;
123 DisplaySurface
*surface
;
125 DisplayChangeListener
*gl
;
129 /* Graphic console state. */
134 const GraphicHwOps
*hw_ops
;
137 /* Text console state */
141 int backscroll_height
;
143 int x_saved
, y_saved
;
146 TextAttributes t_attrib_default
; /* default text attributes */
147 TextAttributes t_attrib
; /* currently active text attributes */
149 int text_x
[2], text_y
[2], cursor_invalidate
;
158 int esc_params
[MAX_ESC_PARAMS
];
162 /* fifo for key pressed */
164 uint8_t out_fifo_buf
[16];
165 QEMUTimer
*kbd_timer
;
168 struct DisplayState
{
169 QEMUTimer
*gui_timer
;
170 uint64_t last_update
;
171 uint64_t update_interval
;
176 QLIST_HEAD(, DisplayChangeListener
) listeners
;
179 static DisplayState
*display_state
;
180 static QemuConsole
*active_console
;
181 static QemuConsole
**consoles
;
182 static int nb_consoles
= 0;
183 static bool cursor_visible_phase
;
184 static QEMUTimer
*cursor_timer
;
186 static void text_console_do_init(Chardev
*chr
, DisplayState
*ds
);
187 static void dpy_refresh(DisplayState
*s
);
188 static DisplayState
*get_alloc_displaystate(void);
189 static void text_console_update_cursor_timer(void);
190 static void text_console_update_cursor(void *opaque
);
192 static void gui_update(void *opaque
)
194 uint64_t interval
= GUI_REFRESH_INTERVAL_IDLE
;
195 uint64_t dcl_interval
;
196 DisplayState
*ds
= opaque
;
197 DisplayChangeListener
*dcl
;
200 ds
->refreshing
= true;
202 ds
->refreshing
= false;
204 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
205 dcl_interval
= dcl
->update_interval
?
206 dcl
->update_interval
: GUI_REFRESH_INTERVAL_DEFAULT
;
207 if (interval
> dcl_interval
) {
208 interval
= dcl_interval
;
211 if (ds
->update_interval
!= interval
) {
212 ds
->update_interval
= interval
;
213 for (i
= 0; i
< nb_consoles
; i
++) {
214 if (consoles
[i
]->hw_ops
->update_interval
) {
215 consoles
[i
]->hw_ops
->update_interval(consoles
[i
]->hw
, interval
);
218 trace_console_refresh(interval
);
220 ds
->last_update
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
221 timer_mod(ds
->gui_timer
, ds
->last_update
+ interval
);
224 static void gui_setup_refresh(DisplayState
*ds
)
226 DisplayChangeListener
*dcl
;
227 bool need_timer
= false;
228 bool have_gfx
= false;
229 bool have_text
= false;
231 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
232 if (dcl
->ops
->dpy_refresh
!= NULL
) {
235 if (dcl
->ops
->dpy_gfx_update
!= NULL
) {
238 if (dcl
->ops
->dpy_text_update
!= NULL
) {
243 if (need_timer
&& ds
->gui_timer
== NULL
) {
244 ds
->gui_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, gui_update
, ds
);
245 timer_mod(ds
->gui_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
247 if (!need_timer
&& ds
->gui_timer
!= NULL
) {
248 timer_del(ds
->gui_timer
);
249 timer_free(ds
->gui_timer
);
250 ds
->gui_timer
= NULL
;
253 ds
->have_gfx
= have_gfx
;
254 ds
->have_text
= have_text
;
257 void graphic_hw_update(QemuConsole
*con
)
260 con
= active_console
;
262 if (con
&& con
->hw_ops
->gfx_update
) {
263 con
->hw_ops
->gfx_update(con
->hw
);
267 void graphic_hw_gl_block(QemuConsole
*con
, bool block
)
271 con
->gl_block
= block
;
272 if (con
->hw_ops
->gl_block
) {
273 con
->hw_ops
->gl_block(con
->hw
, block
);
277 int qemu_console_get_window_id(QemuConsole
*con
)
279 return con
->window_id
;
282 void qemu_console_set_window_id(QemuConsole
*con
, int window_id
)
284 con
->window_id
= window_id
;
287 void graphic_hw_invalidate(QemuConsole
*con
)
290 con
= active_console
;
292 if (con
&& con
->hw_ops
->invalidate
) {
293 con
->hw_ops
->invalidate(con
->hw
);
297 static void ppm_save(const char *filename
, DisplaySurface
*ds
,
300 int width
= pixman_image_get_width(ds
->image
);
301 int height
= pixman_image_get_height(ds
->image
);
306 pixman_image_t
*linebuf
;
308 trace_ppm_save(filename
, ds
);
309 fd
= qemu_open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, 0666);
311 error_setg(errp
, "failed to open file '%s': %s", filename
,
315 f
= fdopen(fd
, "wb");
316 ret
= fprintf(f
, "P6\n%d %d\n%d\n", width
, height
, 255);
321 linebuf
= qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8
, width
);
322 for (y
= 0; y
< height
; y
++) {
323 qemu_pixman_linebuf_fill(linebuf
, ds
->image
, width
, 0, y
);
325 ret
= fwrite(pixman_image_get_data(linebuf
), 1,
326 pixman_image_get_stride(linebuf
), f
);
334 qemu_pixman_image_unref(linebuf
);
339 error_setg(errp
, "failed to write to file '%s': %s", filename
,
345 void qmp_screendump(const char *filename
, Error
**errp
)
347 QemuConsole
*con
= qemu_console_lookup_by_index(0);
348 DisplaySurface
*surface
;
351 error_setg(errp
, "There is no QemuConsole I can screendump from.");
355 graphic_hw_update(con
);
356 surface
= qemu_console_surface(con
);
357 ppm_save(filename
, surface
, errp
);
360 void graphic_hw_text_update(QemuConsole
*con
, console_ch_t
*chardata
)
363 con
= active_console
;
365 if (con
&& con
->hw_ops
->text_update
) {
366 con
->hw_ops
->text_update(con
->hw
, chardata
);
370 static void vga_fill_rect(QemuConsole
*con
,
371 int posx
, int posy
, int width
, int height
,
372 pixman_color_t color
)
374 DisplaySurface
*surface
= qemu_console_surface(con
);
375 pixman_rectangle16_t rect
= {
376 .x
= posx
, .y
= posy
, .width
= width
, .height
= height
379 pixman_image_fill_rectangles(PIXMAN_OP_SRC
, surface
->image
,
383 /* copy from (xs, ys) to (xd, yd) a rectangle of size (w, h) */
384 static void vga_bitblt(QemuConsole
*con
,
385 int xs
, int ys
, int xd
, int yd
, int w
, int h
)
387 DisplaySurface
*surface
= qemu_console_surface(con
);
389 pixman_image_composite(PIXMAN_OP_SRC
,
390 surface
->image
, NULL
, surface
->image
,
391 xs
, ys
, 0, 0, xd
, yd
, w
, h
);
394 /***********************************************************/
395 /* basic char display */
397 #define FONT_HEIGHT 16
402 #define QEMU_RGB(r, g, b) \
403 { .red = r << 8, .green = g << 8, .blue = b << 8, .alpha = 0xffff }
405 static const pixman_color_t color_table_rgb
[2][8] = {
407 [QEMU_COLOR_BLACK
] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
408 [QEMU_COLOR_BLUE
] = QEMU_RGB(0x00, 0x00, 0xaa), /* blue */
409 [QEMU_COLOR_GREEN
] = QEMU_RGB(0x00, 0xaa, 0x00), /* green */
410 [QEMU_COLOR_CYAN
] = QEMU_RGB(0x00, 0xaa, 0xaa), /* cyan */
411 [QEMU_COLOR_RED
] = QEMU_RGB(0xaa, 0x00, 0x00), /* red */
412 [QEMU_COLOR_MAGENTA
] = QEMU_RGB(0xaa, 0x00, 0xaa), /* magenta */
413 [QEMU_COLOR_YELLOW
] = QEMU_RGB(0xaa, 0xaa, 0x00), /* yellow */
414 [QEMU_COLOR_WHITE
] = QEMU_RGB(0xaa, 0xaa, 0xaa), /* white */
417 [QEMU_COLOR_BLACK
] = QEMU_RGB(0x00, 0x00, 0x00), /* black */
418 [QEMU_COLOR_BLUE
] = QEMU_RGB(0x00, 0x00, 0xff), /* blue */
419 [QEMU_COLOR_GREEN
] = QEMU_RGB(0x00, 0xff, 0x00), /* green */
420 [QEMU_COLOR_CYAN
] = QEMU_RGB(0x00, 0xff, 0xff), /* cyan */
421 [QEMU_COLOR_RED
] = QEMU_RGB(0xff, 0x00, 0x00), /* red */
422 [QEMU_COLOR_MAGENTA
] = QEMU_RGB(0xff, 0x00, 0xff), /* magenta */
423 [QEMU_COLOR_YELLOW
] = QEMU_RGB(0xff, 0xff, 0x00), /* yellow */
424 [QEMU_COLOR_WHITE
] = QEMU_RGB(0xff, 0xff, 0xff), /* white */
428 static void vga_putcharxy(QemuConsole
*s
, int x
, int y
, int ch
,
429 TextAttributes
*t_attrib
)
431 static pixman_image_t
*glyphs
[256];
432 DisplaySurface
*surface
= qemu_console_surface(s
);
433 pixman_color_t fgcol
, bgcol
;
435 if (t_attrib
->invers
) {
436 bgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->fgcol
];
437 fgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->bgcol
];
439 fgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->fgcol
];
440 bgcol
= color_table_rgb
[t_attrib
->bold
][t_attrib
->bgcol
];
444 glyphs
[ch
] = qemu_pixman_glyph_from_vgafont(FONT_HEIGHT
, vgafont16
, ch
);
446 qemu_pixman_glyph_render(glyphs
[ch
], surface
->image
,
447 &fgcol
, &bgcol
, x
, y
, FONT_WIDTH
, FONT_HEIGHT
);
450 static void text_console_resize(QemuConsole
*s
)
452 TextCell
*cells
, *c
, *c1
;
453 int w1
, x
, y
, last_width
;
455 last_width
= s
->width
;
456 s
->width
= surface_width(s
->surface
) / FONT_WIDTH
;
457 s
->height
= surface_height(s
->surface
) / FONT_HEIGHT
;
463 cells
= g_new(TextCell
, s
->width
* s
->total_height
);
464 for(y
= 0; y
< s
->total_height
; y
++) {
465 c
= &cells
[y
* s
->width
];
467 c1
= &s
->cells
[y
* last_width
];
468 for(x
= 0; x
< w1
; x
++) {
472 for(x
= w1
; x
< s
->width
; x
++) {
474 c
->t_attrib
= s
->t_attrib_default
;
482 static inline void text_update_xy(QemuConsole
*s
, int x
, int y
)
484 s
->text_x
[0] = MIN(s
->text_x
[0], x
);
485 s
->text_x
[1] = MAX(s
->text_x
[1], x
);
486 s
->text_y
[0] = MIN(s
->text_y
[0], y
);
487 s
->text_y
[1] = MAX(s
->text_y
[1], y
);
490 static void invalidate_xy(QemuConsole
*s
, int x
, int y
)
492 if (!qemu_console_is_visible(s
)) {
495 if (s
->update_x0
> x
* FONT_WIDTH
)
496 s
->update_x0
= x
* FONT_WIDTH
;
497 if (s
->update_y0
> y
* FONT_HEIGHT
)
498 s
->update_y0
= y
* FONT_HEIGHT
;
499 if (s
->update_x1
< (x
+ 1) * FONT_WIDTH
)
500 s
->update_x1
= (x
+ 1) * FONT_WIDTH
;
501 if (s
->update_y1
< (y
+ 1) * FONT_HEIGHT
)
502 s
->update_y1
= (y
+ 1) * FONT_HEIGHT
;
505 static void update_xy(QemuConsole
*s
, int x
, int y
)
510 if (s
->ds
->have_text
) {
511 text_update_xy(s
, x
, y
);
514 y1
= (s
->y_base
+ y
) % s
->total_height
;
515 y2
= y1
- s
->y_displayed
;
517 y2
+= s
->total_height
;
519 if (y2
< s
->height
) {
520 c
= &s
->cells
[y1
* s
->width
+ x
];
521 vga_putcharxy(s
, x
, y2
, c
->ch
,
523 invalidate_xy(s
, x
, y2
);
527 static void console_show_cursor(QemuConsole
*s
, int show
)
533 if (s
->ds
->have_text
) {
534 s
->cursor_invalidate
= 1;
540 y1
= (s
->y_base
+ s
->y
) % s
->total_height
;
541 y
= y1
- s
->y_displayed
;
543 y
+= s
->total_height
;
546 c
= &s
->cells
[y1
* s
->width
+ x
];
547 if (show
&& cursor_visible_phase
) {
548 TextAttributes t_attrib
= s
->t_attrib_default
;
549 t_attrib
.invers
= !(t_attrib
.invers
); /* invert fg and bg */
550 vga_putcharxy(s
, x
, y
, c
->ch
, &t_attrib
);
552 vga_putcharxy(s
, x
, y
, c
->ch
, &(c
->t_attrib
));
554 invalidate_xy(s
, x
, y
);
558 static void console_refresh(QemuConsole
*s
)
560 DisplaySurface
*surface
= qemu_console_surface(s
);
564 if (s
->ds
->have_text
) {
567 s
->text_x
[1] = s
->width
- 1;
568 s
->text_y
[1] = s
->height
- 1;
569 s
->cursor_invalidate
= 1;
572 vga_fill_rect(s
, 0, 0, surface_width(surface
), surface_height(surface
),
573 color_table_rgb
[0][QEMU_COLOR_BLACK
]);
575 for (y
= 0; y
< s
->height
; y
++) {
576 c
= s
->cells
+ y1
* s
->width
;
577 for (x
= 0; x
< s
->width
; x
++) {
578 vga_putcharxy(s
, x
, y
, c
->ch
,
582 if (++y1
== s
->total_height
) {
586 console_show_cursor(s
, 1);
587 dpy_gfx_update(s
, 0, 0,
588 surface_width(surface
), surface_height(surface
));
591 static void console_scroll(QemuConsole
*s
, int ydelta
)
596 for(i
= 0; i
< ydelta
; i
++) {
597 if (s
->y_displayed
== s
->y_base
)
599 if (++s
->y_displayed
== s
->total_height
)
604 i
= s
->backscroll_height
;
605 if (i
> s
->total_height
- s
->height
)
606 i
= s
->total_height
- s
->height
;
609 y1
+= s
->total_height
;
610 for(i
= 0; i
< ydelta
; i
++) {
611 if (s
->y_displayed
== y1
)
613 if (--s
->y_displayed
< 0)
614 s
->y_displayed
= s
->total_height
- 1;
620 static void console_put_lf(QemuConsole
*s
)
626 if (s
->y
>= s
->height
) {
627 s
->y
= s
->height
- 1;
629 if (s
->y_displayed
== s
->y_base
) {
630 if (++s
->y_displayed
== s
->total_height
)
633 if (++s
->y_base
== s
->total_height
)
635 if (s
->backscroll_height
< s
->total_height
)
636 s
->backscroll_height
++;
637 y1
= (s
->y_base
+ s
->height
- 1) % s
->total_height
;
638 c
= &s
->cells
[y1
* s
->width
];
639 for(x
= 0; x
< s
->width
; x
++) {
641 c
->t_attrib
= s
->t_attrib_default
;
644 if (s
->y_displayed
== s
->y_base
) {
645 if (s
->ds
->have_text
) {
648 s
->text_x
[1] = s
->width
- 1;
649 s
->text_y
[1] = s
->height
- 1;
652 vga_bitblt(s
, 0, FONT_HEIGHT
, 0, 0,
653 s
->width
* FONT_WIDTH
,
654 (s
->height
- 1) * FONT_HEIGHT
);
655 vga_fill_rect(s
, 0, (s
->height
- 1) * FONT_HEIGHT
,
656 s
->width
* FONT_WIDTH
, FONT_HEIGHT
,
657 color_table_rgb
[0][s
->t_attrib_default
.bgcol
]);
660 s
->update_x1
= s
->width
* FONT_WIDTH
;
661 s
->update_y1
= s
->height
* FONT_HEIGHT
;
666 /* Set console attributes depending on the current escape codes.
667 * NOTE: I know this code is not very efficient (checking every color for it
668 * self) but it is more readable and better maintainable.
670 static void console_handle_escape(QemuConsole
*s
)
674 for (i
=0; i
<s
->nb_esc_params
; i
++) {
675 switch (s
->esc_params
[i
]) {
676 case 0: /* reset all console attributes to default */
677 s
->t_attrib
= s
->t_attrib_default
;
680 s
->t_attrib
.bold
= 1;
683 s
->t_attrib
.uline
= 1;
686 s
->t_attrib
.blink
= 1;
689 s
->t_attrib
.invers
= 1;
692 s
->t_attrib
.unvisible
= 1;
695 s
->t_attrib
.bold
= 0;
698 s
->t_attrib
.uline
= 0;
701 s
->t_attrib
.blink
= 0;
704 s
->t_attrib
.invers
= 0;
707 s
->t_attrib
.unvisible
= 0;
709 /* set foreground color */
711 s
->t_attrib
.fgcol
= QEMU_COLOR_BLACK
;
714 s
->t_attrib
.fgcol
= QEMU_COLOR_RED
;
717 s
->t_attrib
.fgcol
= QEMU_COLOR_GREEN
;
720 s
->t_attrib
.fgcol
= QEMU_COLOR_YELLOW
;
723 s
->t_attrib
.fgcol
= QEMU_COLOR_BLUE
;
726 s
->t_attrib
.fgcol
= QEMU_COLOR_MAGENTA
;
729 s
->t_attrib
.fgcol
= QEMU_COLOR_CYAN
;
732 s
->t_attrib
.fgcol
= QEMU_COLOR_WHITE
;
734 /* set background color */
736 s
->t_attrib
.bgcol
= QEMU_COLOR_BLACK
;
739 s
->t_attrib
.bgcol
= QEMU_COLOR_RED
;
742 s
->t_attrib
.bgcol
= QEMU_COLOR_GREEN
;
745 s
->t_attrib
.bgcol
= QEMU_COLOR_YELLOW
;
748 s
->t_attrib
.bgcol
= QEMU_COLOR_BLUE
;
751 s
->t_attrib
.bgcol
= QEMU_COLOR_MAGENTA
;
754 s
->t_attrib
.bgcol
= QEMU_COLOR_CYAN
;
757 s
->t_attrib
.bgcol
= QEMU_COLOR_WHITE
;
763 static void console_clear_xy(QemuConsole
*s
, int x
, int y
)
765 int y1
= (s
->y_base
+ y
) % s
->total_height
;
766 TextCell
*c
= &s
->cells
[y1
* s
->width
+ x
];
768 c
->t_attrib
= s
->t_attrib_default
;
772 static void console_put_one(QemuConsole
*s
, int ch
)
776 if (s
->x
>= s
->width
) {
781 y1
= (s
->y_base
+ s
->y
) % s
->total_height
;
782 c
= &s
->cells
[y1
* s
->width
+ s
->x
];
784 c
->t_attrib
= s
->t_attrib
;
785 update_xy(s
, s
->x
, s
->y
);
789 static void console_respond_str(QemuConsole
*s
, const char *buf
)
792 console_put_one(s
, *buf
);
797 /* set cursor, checking bounds */
798 static void set_cursor(QemuConsole
*s
, int x
, int y
)
806 if (y
>= s
->height
) {
817 static void console_putchar(QemuConsole
*s
, int ch
)
826 case '\r': /* carriage return */
829 case '\n': /* newline */
832 case '\b': /* backspace */
836 case '\t': /* tabspace */
837 if (s
->x
+ (8 - (s
->x
% 8)) > s
->width
) {
841 s
->x
= s
->x
+ (8 - (s
->x
% 8));
844 case '\a': /* alert aka. bell */
845 /* TODO: has to be implemented */
848 /* SI (shift in), character set 0 (ignored) */
851 /* SO (shift out), character set 1 (ignored) */
853 case 27: /* esc (introducing an escape sequence) */
854 s
->state
= TTY_STATE_ESC
;
857 console_put_one(s
, ch
);
861 case TTY_STATE_ESC
: /* check if it is a terminal escape sequence */
863 for(i
=0;i
<MAX_ESC_PARAMS
;i
++)
864 s
->esc_params
[i
] = 0;
865 s
->nb_esc_params
= 0;
866 s
->state
= TTY_STATE_CSI
;
868 s
->state
= TTY_STATE_NORM
;
871 case TTY_STATE_CSI
: /* handle escape sequence parameters */
872 if (ch
>= '0' && ch
<= '9') {
873 if (s
->nb_esc_params
< MAX_ESC_PARAMS
) {
874 int *param
= &s
->esc_params
[s
->nb_esc_params
];
875 int digit
= (ch
- '0');
877 *param
= (*param
<= (INT_MAX
- digit
) / 10) ?
878 *param
* 10 + digit
: INT_MAX
;
881 if (s
->nb_esc_params
< MAX_ESC_PARAMS
)
885 trace_console_putchar_csi(s
->esc_params
[0], s
->esc_params
[1],
886 ch
, s
->nb_esc_params
);
887 s
->state
= TTY_STATE_NORM
;
891 if (s
->esc_params
[0] == 0) {
892 s
->esc_params
[0] = 1;
894 set_cursor(s
, s
->x
, s
->y
- s
->esc_params
[0]);
897 /* move cursor down */
898 if (s
->esc_params
[0] == 0) {
899 s
->esc_params
[0] = 1;
901 set_cursor(s
, s
->x
, s
->y
+ s
->esc_params
[0]);
904 /* move cursor right */
905 if (s
->esc_params
[0] == 0) {
906 s
->esc_params
[0] = 1;
908 set_cursor(s
, s
->x
+ s
->esc_params
[0], s
->y
);
911 /* move cursor left */
912 if (s
->esc_params
[0] == 0) {
913 s
->esc_params
[0] = 1;
915 set_cursor(s
, s
->x
- s
->esc_params
[0], s
->y
);
918 /* move cursor to column */
919 set_cursor(s
, s
->esc_params
[0] - 1, s
->y
);
923 /* move cursor to row, column */
924 set_cursor(s
, s
->esc_params
[1] - 1, s
->esc_params
[0] - 1);
927 switch (s
->esc_params
[0]) {
929 /* clear to end of screen */
930 for (y
= s
->y
; y
< s
->height
; y
++) {
931 for (x
= 0; x
< s
->width
; x
++) {
932 if (y
== s
->y
&& x
< s
->x
) {
935 console_clear_xy(s
, x
, y
);
940 /* clear from beginning of screen */
941 for (y
= 0; y
<= s
->y
; y
++) {
942 for (x
= 0; x
< s
->width
; x
++) {
943 if (y
== s
->y
&& x
> s
->x
) {
946 console_clear_xy(s
, x
, y
);
951 /* clear entire screen */
952 for (y
= 0; y
<= s
->height
; y
++) {
953 for (x
= 0; x
< s
->width
; x
++) {
954 console_clear_xy(s
, x
, y
);
961 switch (s
->esc_params
[0]) {
964 for(x
= s
->x
; x
< s
->width
; x
++) {
965 console_clear_xy(s
, x
, s
->y
);
969 /* clear from beginning of line */
970 for (x
= 0; x
<= s
->x
; x
++) {
971 console_clear_xy(s
, x
, s
->y
);
975 /* clear entire line */
976 for(x
= 0; x
< s
->width
; x
++) {
977 console_clear_xy(s
, x
, s
->y
);
983 console_handle_escape(s
);
986 switch (s
->esc_params
[0]) {
988 /* report console status (always succeed)*/
989 console_respond_str(s
, "\033[0n");
992 /* report cursor position */
993 sprintf(response
, "\033[%d;%dR",
994 (s
->y_base
+ s
->y
) % s
->total_height
+ 1,
996 console_respond_str(s
, response
);
1001 /* save cursor position */
1006 /* restore cursor position */
1011 trace_console_putchar_unhandled(ch
);
1019 void console_select(unsigned int index
)
1021 DisplayChangeListener
*dcl
;
1024 trace_console_select(index
);
1025 s
= qemu_console_lookup_by_index(index
);
1027 DisplayState
*ds
= s
->ds
;
1031 QLIST_FOREACH(dcl
, &ds
->listeners
, next
) {
1032 if (dcl
->con
!= NULL
) {
1035 if (dcl
->ops
->dpy_gfx_switch
) {
1036 dcl
->ops
->dpy_gfx_switch(dcl
, s
->surface
);
1039 dpy_gfx_update(s
, 0, 0, surface_width(s
->surface
),
1040 surface_height(s
->surface
));
1042 if (ds
->have_text
) {
1043 dpy_text_resize(s
, s
->width
, s
->height
);
1045 text_console_update_cursor(NULL
);
1049 typedef struct VCChardev
{
1051 QemuConsole
*console
;
1054 #define TYPE_CHARDEV_VC "chardev-vc"
1055 #define VC_CHARDEV(obj) OBJECT_CHECK(VCChardev, (obj), TYPE_CHARDEV_VC)
1057 static int vc_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
1059 VCChardev
*drv
= VC_CHARDEV(chr
);
1060 QemuConsole
*s
= drv
->console
;
1067 s
->update_x0
= s
->width
* FONT_WIDTH
;
1068 s
->update_y0
= s
->height
* FONT_HEIGHT
;
1071 console_show_cursor(s
, 0);
1072 for(i
= 0; i
< len
; i
++) {
1073 console_putchar(s
, buf
[i
]);
1075 console_show_cursor(s
, 1);
1076 if (s
->ds
->have_gfx
&& s
->update_x0
< s
->update_x1
) {
1077 dpy_gfx_update(s
, s
->update_x0
, s
->update_y0
,
1078 s
->update_x1
- s
->update_x0
,
1079 s
->update_y1
- s
->update_y0
);
1084 static void kbd_send_chars(void *opaque
)
1086 QemuConsole
*s
= opaque
;
1090 len
= qemu_chr_be_can_write(s
->chr
);
1091 if (len
> s
->out_fifo
.count
)
1092 len
= s
->out_fifo
.count
;
1094 if (len
> sizeof(buf
))
1096 qemu_fifo_read(&s
->out_fifo
, buf
, len
);
1097 qemu_chr_be_write(s
->chr
, buf
, len
);
1099 /* characters are pending: we send them a bit later (XXX:
1100 horrible, should change char device API) */
1101 if (s
->out_fifo
.count
> 0) {
1102 timer_mod(s
->kbd_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1);
1106 /* called when an ascii key is pressed */
1107 void kbd_put_keysym_console(QemuConsole
*s
, int keysym
)
1109 uint8_t buf
[16], *q
;
1113 if (!s
|| (s
->console_type
== GRAPHIC_CONSOLE
))
1117 case QEMU_KEY_CTRL_UP
:
1118 console_scroll(s
, -1);
1120 case QEMU_KEY_CTRL_DOWN
:
1121 console_scroll(s
, 1);
1123 case QEMU_KEY_CTRL_PAGEUP
:
1124 console_scroll(s
, -10);
1126 case QEMU_KEY_CTRL_PAGEDOWN
:
1127 console_scroll(s
, 10);
1130 /* convert the QEMU keysym to VT100 key string */
1132 if (keysym
>= 0xe100 && keysym
<= 0xe11f) {
1135 c
= keysym
- 0xe100;
1137 *q
++ = '0' + (c
/ 10);
1138 *q
++ = '0' + (c
% 10);
1140 } else if (keysym
>= 0xe120 && keysym
<= 0xe17f) {
1143 *q
++ = keysym
& 0xff;
1144 } else if (s
->echo
&& (keysym
== '\r' || keysym
== '\n')) {
1145 vc_chr_write(s
->chr
, (const uint8_t *) "\r", 1);
1151 vc_chr_write(s
->chr
, buf
, q
- buf
);
1154 if (be
&& be
->chr_read
) {
1155 qemu_fifo_write(&s
->out_fifo
, buf
, q
- buf
);
1162 static const int qcode_to_keysym
[Q_KEY_CODE__MAX
] = {
1163 [Q_KEY_CODE_UP
] = QEMU_KEY_UP
,
1164 [Q_KEY_CODE_DOWN
] = QEMU_KEY_DOWN
,
1165 [Q_KEY_CODE_RIGHT
] = QEMU_KEY_RIGHT
,
1166 [Q_KEY_CODE_LEFT
] = QEMU_KEY_LEFT
,
1167 [Q_KEY_CODE_HOME
] = QEMU_KEY_HOME
,
1168 [Q_KEY_CODE_END
] = QEMU_KEY_END
,
1169 [Q_KEY_CODE_PGUP
] = QEMU_KEY_PAGEUP
,
1170 [Q_KEY_CODE_PGDN
] = QEMU_KEY_PAGEDOWN
,
1171 [Q_KEY_CODE_DELETE
] = QEMU_KEY_DELETE
,
1172 [Q_KEY_CODE_BACKSPACE
] = QEMU_KEY_BACKSPACE
,
1175 bool kbd_put_qcode_console(QemuConsole
*s
, int qcode
)
1179 keysym
= qcode_to_keysym
[qcode
];
1183 kbd_put_keysym_console(s
, keysym
);
1187 void kbd_put_string_console(QemuConsole
*s
, const char *str
, int len
)
1191 for (i
= 0; i
< len
&& str
[i
]; i
++) {
1192 kbd_put_keysym_console(s
, str
[i
]);
1196 void kbd_put_keysym(int keysym
)
1198 kbd_put_keysym_console(active_console
, keysym
);
1201 static void text_console_invalidate(void *opaque
)
1203 QemuConsole
*s
= (QemuConsole
*) opaque
;
1205 if (s
->ds
->have_text
&& s
->console_type
== TEXT_CONSOLE
) {
1206 text_console_resize(s
);
1211 static void text_console_update(void *opaque
, console_ch_t
*chardata
)
1213 QemuConsole
*s
= (QemuConsole
*) opaque
;
1216 if (s
->text_x
[0] <= s
->text_x
[1]) {
1217 src
= (s
->y_base
+ s
->text_y
[0]) * s
->width
;
1218 chardata
+= s
->text_y
[0] * s
->width
;
1219 for (i
= s
->text_y
[0]; i
<= s
->text_y
[1]; i
++)
1220 for (j
= 0; j
< s
->width
; j
++, src
++) {
1221 console_write_ch(chardata
++,
1222 ATTR2CHTYPE(s
->cells
[src
].ch
,
1223 s
->cells
[src
].t_attrib
.fgcol
,
1224 s
->cells
[src
].t_attrib
.bgcol
,
1225 s
->cells
[src
].t_attrib
.bold
));
1227 dpy_text_update(s
, s
->text_x
[0], s
->text_y
[0],
1228 s
->text_x
[1] - s
->text_x
[0], i
- s
->text_y
[0]);
1229 s
->text_x
[0] = s
->width
;
1230 s
->text_y
[0] = s
->height
;
1234 if (s
->cursor_invalidate
) {
1235 dpy_text_cursor(s
, s
->x
, s
->y
);
1236 s
->cursor_invalidate
= 0;
1240 static QemuConsole
*new_console(DisplayState
*ds
, console_type_t console_type
,
1247 obj
= object_new(TYPE_QEMU_CONSOLE
);
1248 s
= QEMU_CONSOLE(obj
);
1250 object_property_add_link(obj
, "device", TYPE_DEVICE
,
1251 (Object
**)&s
->device
,
1252 object_property_allow_set_link
,
1253 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
1255 object_property_add_uint32_ptr(obj
, "head",
1256 &s
->head
, &error_abort
);
1258 if (!active_console
|| ((active_console
->console_type
!= GRAPHIC_CONSOLE
) &&
1259 (console_type
== GRAPHIC_CONSOLE
))) {
1263 s
->console_type
= console_type
;
1265 consoles
= g_realloc(consoles
, sizeof(*consoles
) * (nb_consoles
+1));
1266 if (console_type
!= GRAPHIC_CONSOLE
) {
1267 s
->index
= nb_consoles
;
1268 consoles
[nb_consoles
++] = s
;
1270 /* HACK: Put graphical consoles before text consoles. */
1271 for (i
= nb_consoles
; i
> 0; i
--) {
1272 if (consoles
[i
- 1]->console_type
== GRAPHIC_CONSOLE
)
1274 consoles
[i
] = consoles
[i
- 1];
1275 consoles
[i
]->index
= i
;
1284 static void qemu_alloc_display(DisplaySurface
*surface
, int width
, int height
)
1286 qemu_pixman_image_unref(surface
->image
);
1287 surface
->image
= NULL
;
1289 surface
->format
= PIXMAN_x8r8g8b8
;
1290 surface
->image
= pixman_image_create_bits(surface
->format
,
1293 assert(surface
->image
!= NULL
);
1295 surface
->flags
= QEMU_ALLOCATED_FLAG
;
1298 DisplaySurface
*qemu_create_displaysurface(int width
, int height
)
1300 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
1302 trace_displaysurface_create(surface
, width
, height
);
1303 qemu_alloc_display(surface
, width
, height
);
1307 DisplaySurface
*qemu_create_displaysurface_from(int width
, int height
,
1308 pixman_format_code_t format
,
1309 int linesize
, uint8_t *data
)
1311 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
1313 trace_displaysurface_create_from(surface
, width
, height
, format
);
1314 surface
->format
= format
;
1315 surface
->image
= pixman_image_create_bits(surface
->format
,
1317 (void *)data
, linesize
);
1318 assert(surface
->image
!= NULL
);
1323 DisplaySurface
*qemu_create_displaysurface_pixman(pixman_image_t
*image
)
1325 DisplaySurface
*surface
= g_new0(DisplaySurface
, 1);
1327 trace_displaysurface_create_pixman(surface
);
1328 surface
->format
= pixman_image_get_format(image
);
1329 surface
->image
= pixman_image_ref(image
);
1334 static void qemu_unmap_displaysurface_guestmem(pixman_image_t
*image
,
1337 void *data
= pixman_image_get_data(image
);
1338 uint32_t size
= pixman_image_get_stride(image
) *
1339 pixman_image_get_height(image
);
1340 cpu_physical_memory_unmap(data
, size
, 0, 0);
1343 DisplaySurface
*qemu_create_displaysurface_guestmem(int width
, int height
,
1344 pixman_format_code_t format
,
1345 int linesize
, uint64_t addr
)
1347 DisplaySurface
*surface
;
1351 if (linesize
== 0) {
1352 linesize
= width
* PIXMAN_FORMAT_BPP(format
) / 8;
1355 size
= (hwaddr
)linesize
* height
;
1356 data
= cpu_physical_memory_map(addr
, &size
, 0);
1357 if (size
!= (hwaddr
)linesize
* height
) {
1358 cpu_physical_memory_unmap(data
, size
, 0, 0);
1362 surface
= qemu_create_displaysurface_from
1363 (width
, height
, format
, linesize
, data
);
1364 pixman_image_set_destroy_function
1365 (surface
->image
, qemu_unmap_displaysurface_guestmem
, NULL
);
1370 static DisplaySurface
*qemu_create_message_surface(int w
, int h
,
1373 DisplaySurface
*surface
= qemu_create_displaysurface(w
, h
);
1374 pixman_color_t bg
= color_table_rgb
[0][QEMU_COLOR_BLACK
];
1375 pixman_color_t fg
= color_table_rgb
[0][QEMU_COLOR_WHITE
];
1376 pixman_image_t
*glyph
;
1380 x
= (w
/ FONT_WIDTH
- len
) / 2;
1381 y
= (h
/ FONT_HEIGHT
- 1) / 2;
1382 for (i
= 0; i
< len
; i
++) {
1383 glyph
= qemu_pixman_glyph_from_vgafont(FONT_HEIGHT
, vgafont16
, msg
[i
]);
1384 qemu_pixman_glyph_render(glyph
, surface
->image
, &fg
, &bg
,
1385 x
+i
, y
, FONT_WIDTH
, FONT_HEIGHT
);
1386 qemu_pixman_image_unref(glyph
);
1391 void qemu_free_displaysurface(DisplaySurface
*surface
)
1393 if (surface
== NULL
) {
1396 trace_displaysurface_free(surface
);
1397 qemu_pixman_image_unref(surface
->image
);
1401 bool console_has_gl(QemuConsole
*con
)
1403 return con
->gl
!= NULL
;
1406 void register_displaychangelistener(DisplayChangeListener
*dcl
)
1408 static const char nodev
[] =
1409 "This VM has no graphic display device.";
1410 static DisplaySurface
*dummy
;
1415 if (dcl
->ops
->dpy_gl_ctx_create
) {
1416 /* display has opengl support */
1419 fprintf(stderr
, "can't register two opengl displays (%s, %s)\n",
1420 dcl
->ops
->dpy_name
, dcl
->con
->gl
->ops
->dpy_name
);
1426 trace_displaychangelistener_register(dcl
, dcl
->ops
->dpy_name
);
1427 dcl
->ds
= get_alloc_displaystate();
1428 QLIST_INSERT_HEAD(&dcl
->ds
->listeners
, dcl
, next
);
1429 gui_setup_refresh(dcl
->ds
);
1434 con
= active_console
;
1436 if (dcl
->ops
->dpy_gfx_switch
) {
1438 dcl
->ops
->dpy_gfx_switch(dcl
, con
->surface
);
1441 dummy
= qemu_create_message_surface(640, 480, nodev
);
1443 dcl
->ops
->dpy_gfx_switch(dcl
, dummy
);
1446 text_console_update_cursor(NULL
);
1449 void update_displaychangelistener(DisplayChangeListener
*dcl
,
1452 DisplayState
*ds
= dcl
->ds
;
1454 dcl
->update_interval
= interval
;
1455 if (!ds
->refreshing
&& ds
->update_interval
> interval
) {
1456 timer_mod(ds
->gui_timer
, ds
->last_update
+ interval
);
1460 void unregister_displaychangelistener(DisplayChangeListener
*dcl
)
1462 DisplayState
*ds
= dcl
->ds
;
1463 trace_displaychangelistener_unregister(dcl
, dcl
->ops
->dpy_name
);
1467 QLIST_REMOVE(dcl
, next
);
1468 gui_setup_refresh(ds
);
1471 static void dpy_set_ui_info_timer(void *opaque
)
1473 QemuConsole
*con
= opaque
;
1475 con
->hw_ops
->ui_info(con
->hw
, con
->head
, &con
->ui_info
);
1478 bool dpy_ui_info_supported(QemuConsole
*con
)
1480 return con
->hw_ops
->ui_info
!= NULL
;
1483 int dpy_set_ui_info(QemuConsole
*con
, QemuUIInfo
*info
)
1485 assert(con
!= NULL
);
1487 if (!dpy_ui_info_supported(con
)) {
1490 if (memcmp(&con
->ui_info
, info
, sizeof(con
->ui_info
)) == 0) {
1491 /* nothing changed -- ignore */
1496 * Typically we get a flood of these as the user resizes the window.
1497 * Wait until the dust has settled (one second without updates), then
1498 * go notify the guest.
1500 con
->ui_info
= *info
;
1501 timer_mod(con
->ui_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1505 void dpy_gfx_update(QemuConsole
*con
, int x
, int y
, int w
, int h
)
1507 DisplayState
*s
= con
->ds
;
1508 DisplayChangeListener
*dcl
;
1513 width
= surface_width(con
->surface
);
1514 height
= surface_height(con
->surface
);
1520 w
= MIN(w
, width
- x
);
1521 h
= MIN(h
, height
- y
);
1523 if (!qemu_console_is_visible(con
)) {
1526 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1527 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1530 if (dcl
->ops
->dpy_gfx_update
) {
1531 dcl
->ops
->dpy_gfx_update(dcl
, x
, y
, w
, h
);
1536 void dpy_gfx_replace_surface(QemuConsole
*con
,
1537 DisplaySurface
*surface
)
1539 DisplayState
*s
= con
->ds
;
1540 DisplaySurface
*old_surface
= con
->surface
;
1541 DisplayChangeListener
*dcl
;
1543 assert(old_surface
!= surface
);
1545 con
->surface
= surface
;
1546 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1547 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1550 if (dcl
->ops
->dpy_gfx_switch
) {
1551 dcl
->ops
->dpy_gfx_switch(dcl
, surface
);
1554 qemu_free_displaysurface(old_surface
);
1557 bool dpy_gfx_check_format(QemuConsole
*con
,
1558 pixman_format_code_t format
)
1560 DisplayChangeListener
*dcl
;
1561 DisplayState
*s
= con
->ds
;
1563 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1564 if (dcl
->con
&& dcl
->con
!= con
) {
1565 /* dcl bound to another console -> skip */
1568 if (dcl
->ops
->dpy_gfx_check_format
) {
1569 if (!dcl
->ops
->dpy_gfx_check_format(dcl
, format
)) {
1573 /* default is to whitelist native 32 bpp only */
1574 if (format
!= qemu_default_pixman_format(32, true)) {
1583 * Safe DPY refresh for TCG guests. We use the exclusive mechanism to
1584 * ensure the TCG vCPUs are quiescent so we can avoid races between
1585 * dirty page tracking for direct frame-buffer access by the guest.
1587 * This is a temporary stopgap until we've fixed the dirty tracking
1588 * races in display adapters.
1590 static void do_safe_dpy_refresh(DisplayChangeListener
*dcl
)
1592 qemu_mutex_unlock_iothread();
1594 qemu_mutex_lock_iothread();
1595 dcl
->ops
->dpy_refresh(dcl
);
1596 qemu_mutex_unlock_iothread();
1598 qemu_mutex_lock_iothread();
1601 static void dpy_refresh(DisplayState
*s
)
1603 DisplayChangeListener
*dcl
;
1605 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1606 if (dcl
->ops
->dpy_refresh
) {
1607 if (tcg_enabled()) {
1608 do_safe_dpy_refresh(dcl
);
1610 dcl
->ops
->dpy_refresh(dcl
);
1616 void dpy_text_cursor(QemuConsole
*con
, int x
, int y
)
1618 DisplayState
*s
= con
->ds
;
1619 DisplayChangeListener
*dcl
;
1621 if (!qemu_console_is_visible(con
)) {
1624 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1625 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1628 if (dcl
->ops
->dpy_text_cursor
) {
1629 dcl
->ops
->dpy_text_cursor(dcl
, x
, y
);
1634 void dpy_text_update(QemuConsole
*con
, int x
, int y
, int w
, int h
)
1636 DisplayState
*s
= con
->ds
;
1637 DisplayChangeListener
*dcl
;
1639 if (!qemu_console_is_visible(con
)) {
1642 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1643 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1646 if (dcl
->ops
->dpy_text_update
) {
1647 dcl
->ops
->dpy_text_update(dcl
, x
, y
, w
, h
);
1652 void dpy_text_resize(QemuConsole
*con
, int w
, int h
)
1654 DisplayState
*s
= con
->ds
;
1655 DisplayChangeListener
*dcl
;
1657 if (!qemu_console_is_visible(con
)) {
1660 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1661 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1664 if (dcl
->ops
->dpy_text_resize
) {
1665 dcl
->ops
->dpy_text_resize(dcl
, w
, h
);
1670 void dpy_mouse_set(QemuConsole
*con
, int x
, int y
, int on
)
1672 DisplayState
*s
= con
->ds
;
1673 DisplayChangeListener
*dcl
;
1675 if (!qemu_console_is_visible(con
)) {
1678 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1679 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1682 if (dcl
->ops
->dpy_mouse_set
) {
1683 dcl
->ops
->dpy_mouse_set(dcl
, x
, y
, on
);
1688 void dpy_cursor_define(QemuConsole
*con
, QEMUCursor
*cursor
)
1690 DisplayState
*s
= con
->ds
;
1691 DisplayChangeListener
*dcl
;
1693 if (!qemu_console_is_visible(con
)) {
1696 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1697 if (con
!= (dcl
->con
? dcl
->con
: active_console
)) {
1700 if (dcl
->ops
->dpy_cursor_define
) {
1701 dcl
->ops
->dpy_cursor_define(dcl
, cursor
);
1706 bool dpy_cursor_define_supported(QemuConsole
*con
)
1708 DisplayState
*s
= con
->ds
;
1709 DisplayChangeListener
*dcl
;
1711 QLIST_FOREACH(dcl
, &s
->listeners
, next
) {
1712 if (dcl
->ops
->dpy_cursor_define
) {
1719 QEMUGLContext
dpy_gl_ctx_create(QemuConsole
*con
,
1720 struct QEMUGLParams
*qparams
)
1723 return con
->gl
->ops
->dpy_gl_ctx_create(con
->gl
, qparams
);
1726 void dpy_gl_ctx_destroy(QemuConsole
*con
, QEMUGLContext ctx
)
1729 con
->gl
->ops
->dpy_gl_ctx_destroy(con
->gl
, ctx
);
1732 int dpy_gl_ctx_make_current(QemuConsole
*con
, QEMUGLContext ctx
)
1735 return con
->gl
->ops
->dpy_gl_ctx_make_current(con
->gl
, ctx
);
1738 QEMUGLContext
dpy_gl_ctx_get_current(QemuConsole
*con
)
1741 return con
->gl
->ops
->dpy_gl_ctx_get_current(con
->gl
);
1744 void dpy_gl_scanout_disable(QemuConsole
*con
)
1747 if (con
->gl
->ops
->dpy_gl_scanout_disable
) {
1748 con
->gl
->ops
->dpy_gl_scanout_disable(con
->gl
);
1750 con
->gl
->ops
->dpy_gl_scanout_texture(con
->gl
, 0, false, 0, 0,
1755 void dpy_gl_scanout_texture(QemuConsole
*con
,
1756 uint32_t backing_id
,
1757 bool backing_y_0_top
,
1758 uint32_t backing_width
,
1759 uint32_t backing_height
,
1760 uint32_t x
, uint32_t y
,
1761 uint32_t width
, uint32_t height
)
1764 con
->gl
->ops
->dpy_gl_scanout_texture(con
->gl
, backing_id
,
1766 backing_width
, backing_height
,
1767 x
, y
, width
, height
);
1770 void dpy_gl_update(QemuConsole
*con
,
1771 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
)
1774 con
->gl
->ops
->dpy_gl_update(con
->gl
, x
, y
, w
, h
);
1777 /***********************************************************/
1778 /* register display */
1780 /* console.c internal use only */
1781 static DisplayState
*get_alloc_displaystate(void)
1783 if (!display_state
) {
1784 display_state
= g_new0(DisplayState
, 1);
1785 cursor_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
,
1786 text_console_update_cursor
, NULL
);
1788 return display_state
;
1792 * Called by main(), after creating QemuConsoles
1793 * and before initializing ui (sdl/vnc/...).
1795 DisplayState
*init_displaystate(void)
1800 get_alloc_displaystate();
1801 for (i
= 0; i
< nb_consoles
; i
++) {
1802 if (consoles
[i
]->console_type
!= GRAPHIC_CONSOLE
&&
1803 consoles
[i
]->ds
== NULL
) {
1804 text_console_do_init(consoles
[i
]->chr
, display_state
);
1807 /* Hook up into the qom tree here (not in new_console()), once
1808 * all QemuConsoles are created and the order / numbering
1809 * doesn't change any more */
1810 name
= g_strdup_printf("console[%d]", i
);
1811 object_property_add_child(container_get(object_get_root(), "/backend"),
1812 name
, OBJECT(consoles
[i
]), &error_abort
);
1816 return display_state
;
1819 void graphic_console_set_hwops(QemuConsole
*con
,
1820 const GraphicHwOps
*hw_ops
,
1823 con
->hw_ops
= hw_ops
;
1827 QemuConsole
*graphic_console_init(DeviceState
*dev
, uint32_t head
,
1828 const GraphicHwOps
*hw_ops
,
1831 static const char noinit
[] =
1832 "Guest has not initialized the display (yet).";
1838 ds
= get_alloc_displaystate();
1839 trace_console_gfx_new();
1840 s
= new_console(ds
, GRAPHIC_CONSOLE
, head
);
1841 s
->ui_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, dpy_set_ui_info_timer
, s
);
1842 graphic_console_set_hwops(s
, hw_ops
, opaque
);
1844 object_property_set_link(OBJECT(s
), OBJECT(dev
), "device",
1848 s
->surface
= qemu_create_message_surface(width
, height
, noinit
);
1852 QemuConsole
*qemu_console_lookup_by_index(unsigned int index
)
1854 if (index
>= nb_consoles
) {
1857 return consoles
[index
];
1860 QemuConsole
*qemu_console_lookup_by_device(DeviceState
*dev
, uint32_t head
)
1866 for (i
= 0; i
< nb_consoles
; i
++) {
1870 obj
= object_property_get_link(OBJECT(consoles
[i
]),
1871 "device", &error_abort
);
1872 if (DEVICE(obj
) != dev
) {
1875 h
= object_property_get_int(OBJECT(consoles
[i
]),
1876 "head", &error_abort
);
1885 QemuConsole
*qemu_console_lookup_by_device_name(const char *device_id
,
1886 uint32_t head
, Error
**errp
)
1891 dev
= qdev_find_recursive(sysbus_get_default(), device_id
);
1893 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
1894 "Device '%s' not found", device_id
);
1898 con
= qemu_console_lookup_by_device(dev
, head
);
1900 error_setg(errp
, "Device %s (head %d) is not bound to a QemuConsole",
1908 bool qemu_console_is_visible(QemuConsole
*con
)
1910 return (con
== active_console
) || (con
->dcls
> 0);
1913 bool qemu_console_is_graphic(QemuConsole
*con
)
1916 con
= active_console
;
1918 return con
&& (con
->console_type
== GRAPHIC_CONSOLE
);
1921 bool qemu_console_is_fixedsize(QemuConsole
*con
)
1924 con
= active_console
;
1926 return con
&& (con
->console_type
!= TEXT_CONSOLE
);
1929 bool qemu_console_is_gl_blocked(QemuConsole
*con
)
1931 assert(con
!= NULL
);
1932 return con
->gl_block
;
1935 char *qemu_console_get_label(QemuConsole
*con
)
1937 if (con
->console_type
== GRAPHIC_CONSOLE
) {
1939 return g_strdup(object_get_typename(con
->device
));
1941 return g_strdup("VGA");
1943 if (con
->chr
&& con
->chr
->label
) {
1944 return g_strdup(con
->chr
->label
);
1946 return g_strdup_printf("vc%d", con
->index
);
1950 int qemu_console_get_index(QemuConsole
*con
)
1953 con
= active_console
;
1955 return con
? con
->index
: -1;
1958 uint32_t qemu_console_get_head(QemuConsole
*con
)
1961 con
= active_console
;
1963 return con
? con
->head
: -1;
1966 QemuUIInfo
*qemu_console_get_ui_info(QemuConsole
*con
)
1968 assert(con
!= NULL
);
1969 return &con
->ui_info
;
1972 int qemu_console_get_width(QemuConsole
*con
, int fallback
)
1975 con
= active_console
;
1977 return con
? surface_width(con
->surface
) : fallback
;
1980 int qemu_console_get_height(QemuConsole
*con
, int fallback
)
1983 con
= active_console
;
1985 return con
? surface_height(con
->surface
) : fallback
;
1988 static void vc_chr_set_echo(Chardev
*chr
, bool echo
)
1990 VCChardev
*drv
= VC_CHARDEV(chr
);
1991 QemuConsole
*s
= drv
->console
;
1996 static void text_console_update_cursor_timer(void)
1998 timer_mod(cursor_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
)
1999 + CONSOLE_CURSOR_PERIOD
/ 2);
2002 static void text_console_update_cursor(void *opaque
)
2007 cursor_visible_phase
= !cursor_visible_phase
;
2009 for (i
= 0; i
< nb_consoles
; i
++) {
2011 if (qemu_console_is_graphic(s
) ||
2012 !qemu_console_is_visible(s
)) {
2016 graphic_hw_invalidate(s
);
2020 text_console_update_cursor_timer();
2024 static const GraphicHwOps text_console_ops
= {
2025 .invalidate
= text_console_invalidate
,
2026 .text_update
= text_console_update
,
2029 static void text_console_do_init(Chardev
*chr
, DisplayState
*ds
)
2031 VCChardev
*drv
= VC_CHARDEV(chr
);
2032 QemuConsole
*s
= drv
->console
;
2033 int g_width
= 80 * FONT_WIDTH
;
2034 int g_height
= 24 * FONT_HEIGHT
;
2036 s
->out_fifo
.buf
= s
->out_fifo_buf
;
2037 s
->out_fifo
.buf_size
= sizeof(s
->out_fifo_buf
);
2038 s
->kbd_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, kbd_send_chars
, s
);
2043 s
->total_height
= DEFAULT_BACKSCROLL
;
2047 if (active_console
&& active_console
->surface
) {
2048 g_width
= surface_width(active_console
->surface
);
2049 g_height
= surface_height(active_console
->surface
);
2051 s
->surface
= qemu_create_displaysurface(g_width
, g_height
);
2054 s
->hw_ops
= &text_console_ops
;
2057 /* Set text attribute defaults */
2058 s
->t_attrib_default
.bold
= 0;
2059 s
->t_attrib_default
.uline
= 0;
2060 s
->t_attrib_default
.blink
= 0;
2061 s
->t_attrib_default
.invers
= 0;
2062 s
->t_attrib_default
.unvisible
= 0;
2063 s
->t_attrib_default
.fgcol
= QEMU_COLOR_WHITE
;
2064 s
->t_attrib_default
.bgcol
= QEMU_COLOR_BLACK
;
2065 /* set current text attributes to default */
2066 s
->t_attrib
= s
->t_attrib_default
;
2067 text_console_resize(s
);
2073 s
->t_attrib
.bgcol
= QEMU_COLOR_BLUE
;
2074 len
= snprintf(msg
, sizeof(msg
), "%s console\r\n", chr
->label
);
2075 vc_chr_write(chr
, (uint8_t *)msg
, len
);
2076 s
->t_attrib
= s
->t_attrib_default
;
2079 qemu_chr_be_generic_open(chr
);
2082 static void vc_chr_open(Chardev
*chr
,
2083 ChardevBackend
*backend
,
2087 ChardevVC
*vc
= backend
->u
.vc
.data
;
2088 VCChardev
*drv
= VC_CHARDEV(chr
);
2091 unsigned height
= 0;
2093 if (vc
->has_width
) {
2095 } else if (vc
->has_cols
) {
2096 width
= vc
->cols
* FONT_WIDTH
;
2099 if (vc
->has_height
) {
2100 height
= vc
->height
;
2101 } else if (vc
->has_rows
) {
2102 height
= vc
->rows
* FONT_HEIGHT
;
2105 trace_console_txt_new(width
, height
);
2106 if (width
== 0 || height
== 0) {
2107 s
= new_console(NULL
, TEXT_CONSOLE
, 0);
2109 s
= new_console(NULL
, TEXT_CONSOLE_FIXED_SIZE
, 0);
2110 s
->surface
= qemu_create_displaysurface(width
, height
);
2114 error_setg(errp
, "cannot create text console");
2121 if (display_state
) {
2122 text_console_do_init(chr
, display_state
);
2125 /* console/chardev init sometimes completes elsewhere in a 2nd
2126 * stage, so defer OPENED events until they are fully initialized
2131 void qemu_console_resize(QemuConsole
*s
, int width
, int height
)
2133 DisplaySurface
*surface
;
2135 assert(s
->console_type
== GRAPHIC_CONSOLE
);
2137 if (s
->surface
&& (s
->surface
->flags
& QEMU_ALLOCATED_FLAG
) &&
2138 pixman_image_get_width(s
->surface
->image
) == width
&&
2139 pixman_image_get_height(s
->surface
->image
) == height
) {
2143 surface
= qemu_create_displaysurface(width
, height
);
2144 dpy_gfx_replace_surface(s
, surface
);
2147 DisplaySurface
*qemu_console_surface(QemuConsole
*console
)
2149 return console
->surface
;
2152 PixelFormat
qemu_default_pixelformat(int bpp
)
2154 pixman_format_code_t fmt
= qemu_default_pixman_format(bpp
, true);
2155 PixelFormat pf
= qemu_pixelformat_from_pixman(fmt
);
2159 void qemu_chr_parse_vc(QemuOpts
*opts
, ChardevBackend
*backend
, Error
**errp
)
2164 backend
->type
= CHARDEV_BACKEND_KIND_VC
;
2165 vc
= backend
->u
.vc
.data
= g_new0(ChardevVC
, 1);
2166 qemu_chr_parse_common(opts
, qapi_ChardevVC_base(vc
));
2168 val
= qemu_opt_get_number(opts
, "width", 0);
2170 vc
->has_width
= true;
2174 val
= qemu_opt_get_number(opts
, "height", 0);
2176 vc
->has_height
= true;
2180 val
= qemu_opt_get_number(opts
, "cols", 0);
2182 vc
->has_cols
= true;
2186 val
= qemu_opt_get_number(opts
, "rows", 0);
2188 vc
->has_rows
= true;
2193 static const TypeInfo qemu_console_info
= {
2194 .name
= TYPE_QEMU_CONSOLE
,
2195 .parent
= TYPE_OBJECT
,
2196 .instance_size
= sizeof(QemuConsole
),
2197 .class_size
= sizeof(QemuConsoleClass
),
2200 static void char_vc_class_init(ObjectClass
*oc
, void *data
)
2202 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
2204 cc
->parse
= qemu_chr_parse_vc
;
2205 cc
->open
= vc_chr_open
;
2206 cc
->chr_write
= vc_chr_write
;
2207 cc
->chr_set_echo
= vc_chr_set_echo
;
2210 static const TypeInfo char_vc_type_info
= {
2211 .name
= TYPE_CHARDEV_VC
,
2212 .parent
= TYPE_CHARDEV
,
2213 .instance_size
= sizeof(VCChardev
),
2214 .class_init
= char_vc_class_init
,
2217 void qemu_console_early_init(void)
2219 /* set the default vc driver */
2220 if (!object_class_by_name(TYPE_CHARDEV_VC
)) {
2221 type_register(&char_vc_type_info
);
2225 static void register_types(void)
2227 type_register_static(&qemu_console_info
);
2230 type_init(register_types
);