2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2009, Robert Deloatch <rtdeloatch@gmail.com>
11 * Copyright (c) 2009, Steven Jaconette <stevenjaconette2007@u.northwestern.edu>
12 * Copyright (c) 2009, The V3VEE Project <http://www.v3vee.org>
13 * All rights reserved.
15 * Author: Erik van der Kouwe (vdkouwe@cs.vu.nl)
17 * This is free software. You are permitted to use,
18 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
21 /* Interface between virtual video card and console */
23 #include <palacios/vmm.h>
24 #include <interfaces/vmm_console.h>
25 #include <palacios/vmm_dev_mgr.h>
26 #include <palacios/vmm_sprintf.h>
27 #include <palacios/vmm_host_events.h>
28 #include <palacios/vmm_lock.h>
29 #include <palacios/vmm_string.h>
30 #include <palacios/vm_guest.h>
32 #include <devices/console.h>
34 #ifndef DEBUG_CURSES_CONS
36 #define PrintDebug(fmt, args...)
39 #define BYTES_PER_COL 2
46 struct vm_device * frontend_dev;
49 static int screen_update(uint_t x, uint_t y, uint_t length, void *private_data);
51 static int screen_update_all(void * private_data) {
52 struct vm_device *dev = (struct vm_device *) private_data;
53 struct cons_state *state = (struct cons_state *)dev->private_data;
56 screen_size = state->cols * state->rows * BYTES_PER_COL;
57 return screen_update(0, 0, screen_size, private_data);
60 static int cursor_update(uint_t x, uint_t y, void *private_data)
62 struct vm_device *dev = (struct vm_device *) private_data;
63 struct cons_state *state = (struct cons_state *) dev->private_data;
66 PrintDebug("cursor_update(%d, %d, %p)\n", x, y, private_data);
68 /* avoid out-of-range coordinates */
71 if (x >= state->cols) x = state->cols - 1;
72 if (y >= state->rows) y = state->rows - 1;
73 offset = (x + y * state->cols) * BYTES_PER_COL;
76 if (v3_console_set_cursor(state->cons, x, y) < 0) {
77 PrintError("set cursor (0x%p, %d, %d) failed\n", state->cons, x, y);
81 /* done with console update */
82 if (v3_console_update(state->cons) < 0) {
83 PrintError("console update (0x%p) failed\n", state->cons);
90 static int screen_update(uint_t x, uint_t y, uint_t length, void * private_data) {
91 struct vm_device * dev = (struct vm_device *)private_data;
92 struct cons_state * state = (struct cons_state *)dev->private_data;
93 uint_t offset = (x + y * state->cols) * BYTES_PER_COL;
98 if (length > (state->rows * state->cols * BYTES_PER_COL)) {
99 PrintError("Screen update larger than curses framebuffer\n");
103 PrintDebug("screen_update(%d, %d, %d, %p)\n", x, y, length, private_data);
105 /* grab frame buffer */
106 v3_cons_get_fb(state->frontend_dev, state->framebuf, offset, length);
108 /* update the screen */
109 for (i = 0; i < length; i += 2) {
110 uint_t col_index = i;
113 col[0] = state->framebuf[col_index]; // Character
114 col[1] = state->framebuf[col_index + 1]; // Attribute
116 /* update current character */
117 if (v3_console_set_char(state->cons, cur_x, cur_y, col[0], col[1]) < 0) {
118 PrintError("set cursor (0x%p, %d, %d, %d, %d) failed\n",
119 state->cons, cur_x, cur_y, col[1], col[0]);
123 // CAUTION: the order of these statements is critical
124 // cur_y depends on the previous value of cur_x
125 cur_y = cur_y + ((cur_x + 1) / state->cols);
126 cur_x = (cur_x + 1) % state->cols;
129 /* done with console update */
130 if (v3_console_update(state->cons) < 0) {
131 PrintError("console update(0x%p) failed\n", state->cons);
138 static int scroll(int rows, void * private_data) {
139 struct vm_device *dev = (struct vm_device *)private_data;
140 struct cons_state *state = (struct cons_state *)dev->private_data;
142 PrintDebug("scroll(%d, %p)\n", rows, private_data);
145 /* simply update the screen */
146 return screen_update_all(private_data);
150 /* scroll requested number of lines*/
151 if (v3_console_scroll(state->cons, rows) < 0) {
152 PrintError("console scroll (0x%p, %u) failed\n", state->cons, rows);
156 /* done with console update */
157 if (v3_console_update(state->cons) < 0) {
158 PrintError("console update (0x%p) failed\n", state->cons);
166 static int set_text_resolution(int cols, int rows, void * private_data) {
167 struct vm_device *dev = (struct vm_device *)private_data;
168 struct cons_state *state = (struct cons_state *)dev->private_data;
170 PrintDebug("set_text_resolution(%d, %d, %p)\n", cols, rows, private_data);
172 /* store resolution for internal use */
173 V3_ASSERT(cols >= 1);
174 V3_ASSERT(rows >= 1);
178 /* set notification regarding resolution change */
179 if (v3_console_set_text_resolution(state->cons, cols, rows) < 0) {
180 PrintError("console set_text_resolution (0x%p, %u, %u) failed\n", state->cons, cols, rows);
184 /* update the screen */
185 return screen_update_all(private_data);
188 static int cons_free(struct cons_state * state) {
189 v3_console_close(state->cons);
198 static int console_event_handler(struct v3_vm_info * vm,
199 struct v3_console_event * evt,
201 return screen_update_all(priv_data);
204 static struct v3_console_ops cons_ops = {
205 .update_screen = screen_update,
206 .update_cursor = cursor_update,
208 .set_text_resolution = set_text_resolution,
211 static struct v3_device_ops dev_ops = {
212 .free = (int (*)(void *))cons_free,
215 static int cons_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg)
217 struct cons_state * state = NULL;
218 v3_cfg_tree_t * frontend_cfg = v3_cfg_subtree(cfg, "frontend");
219 const char * frontend_tag = v3_cfg_val(frontend_cfg, "tag");
220 struct vm_device * frontend = v3_find_dev(vm, frontend_tag);
221 char * dev_id = v3_cfg_val(cfg, "ID");
223 /* read configuration */
224 V3_ASSERT(frontend_cfg);
225 V3_ASSERT(frontend_tag);
230 state = (struct cons_state *)V3_Malloc(sizeof(struct cons_state));
233 state->frontend_dev = frontend;
236 state->framebuf = V3_Malloc(state->cols * state->rows * BYTES_PER_COL);
239 /* open tty for screen display */
240 state->cons = v3_console_open(vm, state->cols, state->rows);
243 PrintError("Could not open console\n");
248 /* allocate device */
249 struct vm_device * dev = v3_add_device(vm, dev_id, &dev_ops, state);
252 PrintError("Could not attach device %s\n", dev_id);
257 /* attach to front-end display adapter */
258 v3_console_register_cga(frontend, &cons_ops, dev);
260 v3_hook_host_event(vm, HOST_CONSOLE_EVT, V3_HOST_EVENT_HANDLER(console_event_handler), dev);
265 device_register("CURSES_CONSOLE", cons_init)