[51c1b003] | 1 | /*
|
---|
| 2 | * Copyright (C) 2006 Josef Cejka
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
[ce5bcb4] | 28 |
|
---|
[231a60a] | 29 | /** @addtogroup console
|
---|
[ce5bcb4] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[085bd54] | 35 | /* TODO: remove */
|
---|
| 36 | #include <stdio.h>
|
---|
[51c1b003] | 37 |
|
---|
[79460ae] | 38 | #include <fb.h>
|
---|
[51c1b003] | 39 | #include <ipc/ipc.h>
|
---|
[15039b67] | 40 | #include <keys.h>
|
---|
[79460ae] | 41 | #include <ipc/fb.h>
|
---|
[51c1b003] | 42 | #include <ipc/services.h>
|
---|
| 43 | #include <errno.h>
|
---|
[79460ae] | 44 | #include <key_buffer.h>
|
---|
| 45 | #include <console.h>
|
---|
[eaf34f7] | 46 | #include <unistd.h>
|
---|
| 47 | #include <async.h>
|
---|
[cf28036c] | 48 | #include <libadt/fifo.h>
|
---|
[3993b3d] | 49 | #include <screenbuffer.h>
|
---|
[2def788] | 50 | #include <sys/mman.h>
|
---|
[79460ae] | 51 |
|
---|
[e1c4849] | 52 | #include "gcons.h"
|
---|
| 53 |
|
---|
[cf28036c] | 54 | #define MAX_KEYREQUESTS_BUFFERED 32
|
---|
[51c1b003] | 55 |
|
---|
| 56 | #define NAME "CONSOLE"
|
---|
| 57 |
|
---|
[e87e18f] | 58 | /** Index of currently used virtual console.
|
---|
| 59 | */
|
---|
[390a678] | 60 | int active_console = 0;
|
---|
[eaf34f7] | 61 |
|
---|
[e87e18f] | 62 | /** Information about framebuffer
|
---|
| 63 | */
|
---|
[3993b3d] | 64 | struct {
|
---|
| 65 | int phone; /**< Framebuffer phone */
|
---|
[bb51e9a8] | 66 | ipcarg_t rows; /**< Framebuffer rows */
|
---|
| 67 | ipcarg_t cols; /**< Framebuffer columns */
|
---|
[3993b3d] | 68 | } fb_info;
|
---|
| 69 |
|
---|
[e87e18f] | 70 |
|
---|
[79460ae] | 71 | typedef struct {
|
---|
[e87e18f] | 72 | keybuffer_t keybuffer; /**< Buffer for incoming keys. */
|
---|
[00bb6965] | 73 | /** Buffer for unsatisfied request for keys. */
|
---|
| 74 | FIFO_CREATE_STATIC(keyrequests, ipc_callid_t,
|
---|
| 75 | MAX_KEYREQUESTS_BUFFERED);
|
---|
[e87e18f] | 76 | int keyrequest_counter; /**< Number of requests in buffer. */
|
---|
| 77 | int client_phone; /**< Phone to connected client. */
|
---|
[00bb6965] | 78 | int used; /**< 1 if this virtual console is
|
---|
| 79 | * connected to some client.*/
|
---|
| 80 | screenbuffer_t screenbuffer; /**< Screenbuffer for saving screen
|
---|
| 81 | * contents and related settings. */
|
---|
[79460ae] | 82 | } connection_t;
|
---|
| 83 |
|
---|
[00bb6965] | 84 | static connection_t connections[CONSOLE_COUNT]; /**< Array of data for virtual
|
---|
| 85 | * consoles */
|
---|
| 86 | static keyfield_t *interbuffer = NULL; /**< Pointer to memory shared
|
---|
| 87 | * with framebufer used for
|
---|
| 88 | * faster virtual console
|
---|
| 89 | *switching */
|
---|
[429acb9] | 90 |
|
---|
[00bb6965] | 91 | static int kernel_pixmap = -1; /**< Number of fb pixmap, where kernel
|
---|
| 92 | * console is stored */
|
---|
[bb51e9a8] | 93 |
|
---|
| 94 |
|
---|
[e87e18f] | 95 | /** Find unused virtual console.
|
---|
| 96 | *
|
---|
| 97 | */
|
---|
[d32af35] | 98 | static int find_free_connection(void)
|
---|
[79460ae] | 99 | {
|
---|
| 100 | int i = 0;
|
---|
| 101 |
|
---|
[d32af35] | 102 | for (i=0; i < CONSOLE_COUNT; i++) {
|
---|
| 103 | if (!connections[i].used)
|
---|
[79460ae] | 104 | return i;
|
---|
| 105 | }
|
---|
[d32af35] | 106 | return -1;
|
---|
[79460ae] | 107 | }
|
---|
| 108 |
|
---|
[429acb9] | 109 | static void clrscr(void)
|
---|
| 110 | {
|
---|
[085bd54] | 111 | async_msg(fb_info.phone, FB_CLEAR, 0);
|
---|
[429acb9] | 112 | }
|
---|
| 113 |
|
---|
| 114 | static void curs_visibility(int v)
|
---|
| 115 | {
|
---|
[085bd54] | 116 | async_msg(fb_info.phone, FB_CURSOR_VISIBILITY, v);
|
---|
[429acb9] | 117 | }
|
---|
| 118 |
|
---|
| 119 | static void curs_goto(int row, int col)
|
---|
| 120 | {
|
---|
[085bd54] | 121 | async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col);
|
---|
[429acb9] | 122 |
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | static void set_style(style_t *style)
|
---|
| 126 | {
|
---|
[00bb6965] | 127 | async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color,
|
---|
| 128 | style->bg_color);
|
---|
[429acb9] | 129 | }
|
---|
| 130 |
|
---|
| 131 | static void set_style_col(int fgcolor, int bgcolor)
|
---|
| 132 | {
|
---|
[085bd54] | 133 | async_msg_2(fb_info.phone, FB_SET_STYLE, fgcolor, bgcolor);
|
---|
[429acb9] | 134 | }
|
---|
| 135 |
|
---|
| 136 | static void prtchr(char c, int row, int col)
|
---|
| 137 | {
|
---|
[085bd54] | 138 | async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col);
|
---|
[429acb9] | 139 |
|
---|
| 140 | }
|
---|
| 141 |
|
---|
[10569b1] | 142 | /** Check key and process special keys.
|
---|
| 143 | *
|
---|
| 144 | * */
|
---|
| 145 | static void write_char(int console, char key)
|
---|
| 146 | {
|
---|
| 147 | screenbuffer_t *scr = &(connections[console].screenbuffer);
|
---|
| 148 |
|
---|
| 149 | switch (key) {
|
---|
[00bb6965] | 150 | case '\n':
|
---|
| 151 | scr->position_y += 1;
|
---|
| 152 | scr->position_x = 0;
|
---|
| 153 | break;
|
---|
| 154 | case '\r':
|
---|
| 155 | break;
|
---|
| 156 | case '\t':
|
---|
| 157 | scr->position_x += 8;
|
---|
| 158 | scr->position_x -= scr->position_x % 8;
|
---|
| 159 | break;
|
---|
| 160 | case '\b':
|
---|
| 161 | if (scr->position_x == 0)
|
---|
[10569b1] | 162 | break;
|
---|
[00bb6965] | 163 | scr->position_x--;
|
---|
| 164 | if (console == active_console)
|
---|
| 165 | prtchr(' ', scr->position_y, scr->position_x);
|
---|
| 166 | screenbuffer_putchar(scr, ' ');
|
---|
| 167 | break;
|
---|
| 168 | default:
|
---|
| 169 | if (console == active_console)
|
---|
| 170 | prtchr(key, scr->position_y, scr->position_x);
|
---|
[10569b1] | 171 |
|
---|
[00bb6965] | 172 | screenbuffer_putchar(scr, key);
|
---|
| 173 | scr->position_x++;
|
---|
[10569b1] | 174 | }
|
---|
| 175 |
|
---|
| 176 | scr->position_y += (scr->position_x >= scr->size_x);
|
---|
| 177 |
|
---|
| 178 | if (scr->position_y >= scr->size_y) {
|
---|
| 179 | scr->position_y = scr->size_y - 1;
|
---|
[c891ed39] | 180 | screenbuffer_clear_line(scr, scr->top_line);
|
---|
| 181 | scr->top_line = (scr->top_line+1) % scr->size_y;
|
---|
[b1f51f0] | 182 | if (console == active_console)
|
---|
[085bd54] | 183 | async_msg(fb_info.phone, FB_SCROLL, 1);
|
---|
[10569b1] | 184 | }
|
---|
| 185 |
|
---|
| 186 | scr->position_x = scr->position_x % scr->size_x;
|
---|
[bd929cfb] | 187 |
|
---|
[429acb9] | 188 | if (console == active_console)
|
---|
| 189 | curs_goto(scr->position_y, scr->position_x);
|
---|
[10569b1] | 190 |
|
---|
| 191 | }
|
---|
| 192 |
|
---|
[429acb9] | 193 | /** Save current screen to pixmap, draw old pixmap
|
---|
| 194 | *
|
---|
| 195 | * @param oldpixmap Old pixmap
|
---|
| 196 | * @return ID of pixmap of current screen
|
---|
| 197 | */
|
---|
| 198 | static int switch_screens(int oldpixmap)
|
---|
| 199 | {
|
---|
| 200 | int newpmap;
|
---|
| 201 |
|
---|
| 202 | /* Save screen */
|
---|
[085bd54] | 203 | newpmap = async_req(fb_info.phone, FB_VP2PIXMAP, 0, NULL);
|
---|
[429acb9] | 204 | if (newpmap < 0)
|
---|
| 205 | return -1;
|
---|
| 206 |
|
---|
| 207 | if (oldpixmap != -1) {
|
---|
| 208 | /* Show old screen */
|
---|
[085bd54] | 209 | async_msg_2(fb_info.phone, FB_VP_DRAW_PIXMAP, 0, oldpixmap);
|
---|
[429acb9] | 210 | /* Drop old pixmap */
|
---|
[085bd54] | 211 | async_msg(fb_info.phone, FB_DROP_PIXMAP, oldpixmap);
|
---|
[429acb9] | 212 | }
|
---|
| 213 |
|
---|
| 214 | return newpmap;
|
---|
| 215 | }
|
---|
| 216 |
|
---|
| 217 | /** Switch to new console */
|
---|
| 218 | static void change_console(int newcons)
|
---|
| 219 | {
|
---|
| 220 | connection_t *conn;
|
---|
| 221 | static int console_pixmap = -1;
|
---|
[bd02038] | 222 | int i, j, rc;
|
---|
[6d5005c] | 223 | keyfield_t *field;
|
---|
| 224 | style_t *style;
|
---|
[429acb9] | 225 |
|
---|
| 226 | if (newcons == active_console)
|
---|
| 227 | return;
|
---|
| 228 |
|
---|
[a7d2d78] | 229 | if (newcons == KERNEL_CONSOLE) {
|
---|
| 230 | if (active_console == KERNEL_CONSOLE)
|
---|
[429acb9] | 231 | return;
|
---|
[a7d2d78] | 232 | active_console = KERNEL_CONSOLE;
|
---|
[429acb9] | 233 | curs_visibility(0);
|
---|
| 234 |
|
---|
[1f83244] | 235 | async_serialize_start();
|
---|
[429acb9] | 236 | if (kernel_pixmap == -1) {
|
---|
| 237 | /* store/restore unsupported */
|
---|
| 238 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
|
---|
| 239 | clrscr();
|
---|
| 240 | } else {
|
---|
| 241 | gcons_in_kernel();
|
---|
| 242 | console_pixmap = switch_screens(kernel_pixmap);
|
---|
| 243 | kernel_pixmap = -1;
|
---|
| 244 | }
|
---|
[1f83244] | 245 | async_serialize_end();
|
---|
[429acb9] | 246 |
|
---|
| 247 | __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE);
|
---|
| 248 | return;
|
---|
| 249 | }
|
---|
| 250 |
|
---|
[1f83244] | 251 | async_serialize_start();
|
---|
| 252 |
|
---|
[429acb9] | 253 | if (console_pixmap != -1) {
|
---|
| 254 | kernel_pixmap = switch_screens(console_pixmap);
|
---|
| 255 | console_pixmap = -1;
|
---|
| 256 | }
|
---|
| 257 | active_console = newcons;
|
---|
| 258 | gcons_change_console(newcons);
|
---|
| 259 | conn = &connections[active_console];
|
---|
| 260 |
|
---|
[7bc1e74] | 261 | set_style(&conn->screenbuffer.style);
|
---|
[6d5005c] | 262 | curs_visibility(0);
|
---|
[429acb9] | 263 | if (interbuffer) {
|
---|
| 264 | for (i = 0; i < conn->screenbuffer.size_x; i++)
|
---|
| 265 | for (j = 0; j < conn->screenbuffer.size_y; j++)
|
---|
[00bb6965] | 266 | interbuffer[i + j * conn->screenbuffer.size_x]
|
---|
| 267 | = *get_field_at(&(conn->screenbuffer),
|
---|
| 268 | i, j);
|
---|
[7bc1e74] | 269 | /* This call can preempt, but we are already at the end */
|
---|
[00bb6965] | 270 | rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL,
|
---|
| 271 | NULL);
|
---|
[6d5005c] | 272 | };
|
---|
| 273 |
|
---|
[c891ed39] | 274 | if ((!interbuffer) || (rc != 0)) {
|
---|
[6d5005c] | 275 | set_style(&conn->screenbuffer.style);
|
---|
[429acb9] | 276 | clrscr();
|
---|
[6d5005c] | 277 | style = &conn->screenbuffer.style;
|
---|
| 278 |
|
---|
| 279 | for (j = 0; j < conn->screenbuffer.size_y; j++)
|
---|
| 280 | for (i = 0; i < conn->screenbuffer.size_x; i++) {
|
---|
[00bb6965] | 281 | field = get_field_at(&(conn->screenbuffer), i,
|
---|
| 282 | j);
|
---|
[6d5005c] | 283 | if (!style_same(*style, field->style))
|
---|
| 284 | set_style(&field->style);
|
---|
| 285 | style = &field->style;
|
---|
[00bb6965] | 286 | if ((field->character == ' ') &&
|
---|
| 287 | (style_same(field->style,
|
---|
| 288 | conn->screenbuffer.style)))
|
---|
[6d5005c] | 289 | continue;
|
---|
| 290 |
|
---|
| 291 | prtchr(field->character, j, i);
|
---|
[429acb9] | 292 | }
|
---|
| 293 | }
|
---|
[6d5005c] | 294 |
|
---|
[00bb6965] | 295 | curs_goto(conn->screenbuffer.position_y,
|
---|
| 296 | conn->screenbuffer.position_x);
|
---|
[6d5005c] | 297 | curs_visibility(conn->screenbuffer.is_cursor_visible);
|
---|
[1f83244] | 298 |
|
---|
| 299 | async_serialize_end();
|
---|
[429acb9] | 300 | }
|
---|
[10569b1] | 301 |
|
---|
[e87e18f] | 302 | /** Handler for keyboard */
|
---|
[eaf34f7] | 303 | static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[51c1b003] | 304 | {
|
---|
[eaf34f7] | 305 | ipc_callid_t callid;
|
---|
[51c1b003] | 306 | ipc_call_t call;
|
---|
[eaf34f7] | 307 | int retval;
|
---|
[dd641e3] | 308 | int c;
|
---|
[c1d2c9d] | 309 | connection_t *conn;
|
---|
[1f83244] | 310 | int newcon;
|
---|
[bb51e9a8] | 311 |
|
---|
[eaf34f7] | 312 | /* Ignore parameters, the connection is alread opened */
|
---|
| 313 | while (1) {
|
---|
| 314 | callid = async_get_call(&call);
|
---|
| 315 | switch (IPC_GET_METHOD(call)) {
|
---|
| 316 | case IPC_M_PHONE_HUNGUP:
|
---|
| 317 | /* TODO: Handle hangup */
|
---|
| 318 | return;
|
---|
[1f83244] | 319 | case KBD_MS_LEFT:
|
---|
| 320 | newcon = gcons_mouse_btn(IPC_GET_ARG1(call));
|
---|
| 321 | if (newcon != -1)
|
---|
| 322 | change_console(newcon);
|
---|
[501a8ba] | 323 | retval = 0;
|
---|
[1f83244] | 324 | break;
|
---|
[830ac99] | 325 | case KBD_MS_MOVE:
|
---|
[00bb6965] | 326 | gcons_mouse_move(IPC_GET_ARG1(call),
|
---|
| 327 | IPC_GET_ARG2(call));
|
---|
[501a8ba] | 328 | retval = 0;
|
---|
[830ac99] | 329 | break;
|
---|
[eaf34f7] | 330 | case KBD_PUSHCHAR:
|
---|
| 331 | /* got key from keyboard driver */
|
---|
[b27a97bb] | 332 |
|
---|
[eaf34f7] | 333 | retval = 0;
|
---|
[a805c24] | 334 | c = IPC_GET_ARG1(call);
|
---|
[eaf34f7] | 335 | /* switch to another virtual console */
|
---|
[cf28036c] | 336 |
|
---|
[c1d2c9d] | 337 | conn = &connections[active_console];
|
---|
[00bb6965] | 338 | /*
|
---|
| 339 | * if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 +
|
---|
| 340 | * CONSOLE_COUNT)) {
|
---|
| 341 | */
|
---|
[dd641e3] | 342 | if ((c >= 0x101) && (c < 0x101 + CONSOLE_COUNT)) {
|
---|
| 343 | if (c == 0x112)
|
---|
[a7d2d78] | 344 | change_console(KERNEL_CONSOLE);
|
---|
[429acb9] | 345 | else
|
---|
[dd641e3] | 346 | change_console(c - 0x101);
|
---|
[eaf34f7] | 347 | break;
|
---|
| 348 | }
|
---|
[cf28036c] | 349 |
|
---|
| 350 | /* if client is awaiting key, send it */
|
---|
[c1d2c9d] | 351 | if (conn->keyrequest_counter > 0) {
|
---|
| 352 | conn->keyrequest_counter--;
|
---|
[00bb6965] | 353 | ipc_answer_fast(fifo_pop(conn->keyrequests), 0,
|
---|
| 354 | c, 0);
|
---|
[cf28036c] | 355 | break;
|
---|
| 356 | }
|
---|
| 357 |
|
---|
[c1d2c9d] | 358 | keybuffer_push(&conn->keybuffer, c);
|
---|
[501a8ba] | 359 | retval = 0;
|
---|
[ad123964] | 360 |
|
---|
[eaf34f7] | 361 | break;
|
---|
| 362 | default:
|
---|
[1029d3d3] | 363 | retval = ENOENT;
|
---|
[085bd54] | 364 | }
|
---|
[1029d3d3] | 365 | ipc_answer_fast(callid, retval, 0, 0);
|
---|
[eaf34f7] | 366 | }
|
---|
| 367 | }
|
---|
| 368 |
|
---|
| 369 | /** Default thread for new connections */
|
---|
[b1f51f0] | 370 | static void client_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[eaf34f7] | 371 | {
|
---|
[51c1b003] | 372 | ipc_callid_t callid;
|
---|
[eaf34f7] | 373 | ipc_call_t call;
|
---|
| 374 | int consnum;
|
---|
[3756912] | 375 | ipcarg_t arg1, arg2;
|
---|
[e9073f2] | 376 | connection_t *conn;
|
---|
[eaf34f7] | 377 |
|
---|
[d32af35] | 378 | if ((consnum = find_free_connection()) == -1) {
|
---|
[eaf34f7] | 379 | ipc_answer_fast(iid,ELIMIT,0,0);
|
---|
| 380 | return;
|
---|
| 381 | }
|
---|
[e9073f2] | 382 | conn = &connections[consnum];
|
---|
[085bd54] | 383 | conn->used = 1;
|
---|
[a7d2d78] | 384 |
|
---|
[085bd54] | 385 | async_serialize_start();
|
---|
[a7d2d78] | 386 | gcons_notify_connect(consnum);
|
---|
[e9073f2] | 387 | conn->client_phone = IPC_GET_ARG3(call);
|
---|
| 388 | screenbuffer_clear(&conn->screenbuffer);
|
---|
[10569b1] | 389 |
|
---|
[eaf34f7] | 390 | /* Accept the connection */
|
---|
| 391 | ipc_answer_fast(iid,0,0,0);
|
---|
[085bd54] | 392 |
|
---|
[eaf34f7] | 393 | while (1) {
|
---|
[085bd54] | 394 | async_serialize_end();
|
---|
[eaf34f7] | 395 | callid = async_get_call(&call);
|
---|
[085bd54] | 396 | async_serialize_start();
|
---|
| 397 |
|
---|
[3756912] | 398 | arg1 = arg2 = 0;
|
---|
[eaf34f7] | 399 | switch (IPC_GET_METHOD(call)) {
|
---|
| 400 | case IPC_M_PHONE_HUNGUP:
|
---|
[e9073f2] | 401 | gcons_notify_disconnect(consnum);
|
---|
[085bd54] | 402 |
|
---|
[e9073f2] | 403 | /* Answer all pending requests */
|
---|
| 404 | while (conn->keyrequest_counter > 0) {
|
---|
| 405 | conn->keyrequest_counter--;
|
---|
[00bb6965] | 406 | ipc_answer_fast(fifo_pop(conn->keyrequests),
|
---|
| 407 | ENOENT, 0, 0);
|
---|
[e9073f2] | 408 | break;
|
---|
| 409 | }
|
---|
[0d11fc1c] | 410 | conn->used = 0;
|
---|
[eaf34f7] | 411 | return;
|
---|
| 412 | case CONSOLE_PUTCHAR:
|
---|
[10569b1] | 413 | write_char(consnum, IPC_GET_ARG1(call));
|
---|
[d6cc453] | 414 | gcons_notify_char(consnum);
|
---|
[ad123964] | 415 | break;
|
---|
| 416 | case CONSOLE_CLEAR:
|
---|
[3993b3d] | 417 | /* Send message to fb */
|
---|
| 418 | if (consnum == active_console) {
|
---|
[085bd54] | 419 | async_msg(fb_info.phone, FB_CLEAR, 0);
|
---|
[3993b3d] | 420 | }
|
---|
| 421 |
|
---|
[e9073f2] | 422 | screenbuffer_clear(&conn->screenbuffer);
|
---|
[3993b3d] | 423 |
|
---|
[eaf34f7] | 424 | break;
|
---|
[ad123964] | 425 | case CONSOLE_GOTO:
|
---|
[00bb6965] | 426 | screenbuffer_goto(&conn->screenbuffer,
|
---|
| 427 | IPC_GET_ARG2(call), IPC_GET_ARG1(call));
|
---|
[6118e5f6] | 428 | if (consnum == active_console)
|
---|
[00bb6965] | 429 | curs_goto(IPC_GET_ARG1(call),
|
---|
| 430 | IPC_GET_ARG2(call));
|
---|
[ad123964] | 431 | break;
|
---|
[3756912] | 432 | case CONSOLE_GETSIZE:
|
---|
[d6cc453] | 433 | arg1 = fb_info.rows;
|
---|
| 434 | arg2 = fb_info.cols;
|
---|
[3756912] | 435 | break;
|
---|
[0c6984e] | 436 | case CONSOLE_FLUSH:
|
---|
[a3d2939] | 437 | if (consnum == active_console)
|
---|
[00bb6965] | 438 | async_req_2(fb_info.phone, FB_FLUSH, 0, 0,
|
---|
| 439 | NULL, NULL);
|
---|
[a9bd960c] | 440 | break;
|
---|
| 441 | case CONSOLE_SET_STYLE:
|
---|
| 442 | arg1 = IPC_GET_ARG1(call);
|
---|
| 443 | arg2 = IPC_GET_ARG2(call);
|
---|
[e9073f2] | 444 | screenbuffer_set_style(&conn->screenbuffer,arg1, arg2);
|
---|
[a9bd960c] | 445 | if (consnum == active_console)
|
---|
[429acb9] | 446 | set_style_col(arg1, arg2);
|
---|
[0c6984e] | 447 | break;
|
---|
[a8b2b5b2] | 448 | case CONSOLE_CURSOR_VISIBILITY:
|
---|
| 449 | arg1 = IPC_GET_ARG1(call);
|
---|
[e9073f2] | 450 | conn->screenbuffer.is_cursor_visible = arg1;
|
---|
[a8b2b5b2] | 451 | if (consnum == active_console)
|
---|
| 452 | curs_visibility(arg1);
|
---|
| 453 | break;
|
---|
[eaf34f7] | 454 | case CONSOLE_GETCHAR:
|
---|
[e9073f2] | 455 | if (keybuffer_empty(&conn->keybuffer)) {
|
---|
[cf28036c] | 456 | /* buffer is empty -> store request */
|
---|
[00bb6965] | 457 | if (conn->keyrequest_counter <
|
---|
| 458 | MAX_KEYREQUESTS_BUFFERED) {
|
---|
[e9073f2] | 459 | fifo_push(conn->keyrequests, callid);
|
---|
| 460 | conn->keyrequest_counter++;
|
---|
[cf28036c] | 461 | } else {
|
---|
[00bb6965] | 462 | /*
|
---|
| 463 | * No key available and too many
|
---|
| 464 | * requests => fail.
|
---|
| 465 | */
|
---|
[cf28036c] | 466 | ipc_answer_fast(callid, ELIMIT, 0, 0);
|
---|
| 467 | }
|
---|
| 468 | continue;
|
---|
[00bb6965] | 469 | }
|
---|
| 470 | keybuffer_pop(&conn->keybuffer, (int *) &arg1);
|
---|
[eaf34f7] | 471 | break;
|
---|
| 472 | }
|
---|
[3756912] | 473 | ipc_answer_fast(callid, 0, arg1, arg2);
|
---|
[eaf34f7] | 474 | }
|
---|
| 475 | }
|
---|
| 476 |
|
---|
| 477 | int main(int argc, char *argv[])
|
---|
| 478 | {
|
---|
| 479 | ipcarg_t phonehash;
|
---|
[501a8ba] | 480 | int kbd_phone;
|
---|
[79460ae] | 481 | int i;
|
---|
[da0c91e7] | 482 |
|
---|
| 483 | async_set_client_connection(client_connection);
|
---|
[51c1b003] | 484 |
|
---|
| 485 | /* Connect to keyboard driver */
|
---|
| 486 |
|
---|
[00bb6965] | 487 | while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0))
|
---|
| 488 | < 0) {
|
---|
[eaf34f7] | 489 | usleep(10000);
|
---|
[00bb6965] | 490 | }
|
---|
[51c1b003] | 491 |
|
---|
[00bb6965] | 492 | if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0)
|
---|
| 493 | {
|
---|
[51c1b003] | 494 | return -1;
|
---|
[00bb6965] | 495 | }
|
---|
[290c0db] | 496 | async_new_connection(phonehash, 0, NULL, keyboard_events);
|
---|
| 497 |
|
---|
[51c1b003] | 498 | /* Connect to framebuffer driver */
|
---|
| 499 |
|
---|
[00bb6965] | 500 | while ((fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0))
|
---|
| 501 | < 0) {
|
---|
[3993b3d] | 502 | usleep(10000);
|
---|
| 503 | }
|
---|
[429acb9] | 504 |
|
---|
| 505 | /* Save old kernel screen */
|
---|
| 506 | kernel_pixmap = switch_screens(-1);
|
---|
[e1c4849] | 507 |
|
---|
| 508 | /* Initialize gcons */
|
---|
| 509 | gcons_init(fb_info.phone);
|
---|
| 510 | /* Synchronize, the gcons can have something in queue */
|
---|
[085bd54] | 511 | async_req(fb_info.phone, FB_FLUSH, 0, NULL);
|
---|
[e92aabf] | 512 | /* Enable double buffering */
|
---|
| 513 | async_msg_2(fb_info.phone, FB_VIEWPORT_DB, (sysarg_t)-1, 1);
|
---|
[3993b3d] | 514 |
|
---|
[00bb6965] | 515 | async_req_2(fb_info.phone, FB_GET_CSIZE, 0, 0, &(fb_info.rows),
|
---|
| 516 | &(fb_info.cols));
|
---|
[429acb9] | 517 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
|
---|
| 518 | clrscr();
|
---|
[3993b3d] | 519 |
|
---|
| 520 | /* Init virtual consoles */
|
---|
[79460ae] | 521 | for (i = 0; i < CONSOLE_COUNT; i++) {
|
---|
| 522 | connections[i].used = 0;
|
---|
| 523 | keybuffer_init(&(connections[i].keybuffer));
|
---|
[cf28036c] | 524 |
|
---|
[00bb6965] | 525 | connections[i].keyrequests.head =
|
---|
| 526 | connections[i].keyrequests.tail = 0;
|
---|
[cf28036c] | 527 | connections[i].keyrequests.items = MAX_KEYREQUESTS_BUFFERED;
|
---|
| 528 | connections[i].keyrequest_counter = 0;
|
---|
[3993b3d] | 529 |
|
---|
[00bb6965] | 530 | if (screenbuffer_init(&(connections[i].screenbuffer),
|
---|
| 531 | fb_info.cols, fb_info.rows) == NULL) {
|
---|
[3993b3d] | 532 | /*FIXME: handle error */
|
---|
| 533 | return -1;
|
---|
| 534 | }
|
---|
[79460ae] | 535 | }
|
---|
[d32af35] | 536 | connections[KERNEL_CONSOLE].used = 1;
|
---|
[51c1b003] | 537 |
|
---|
[00bb6965] | 538 | if ((interbuffer = mmap(NULL, sizeof(keyfield_t) * fb_info.cols *
|
---|
| 539 | fb_info.rows, PROTO_READ | PROTO_WRITE, MAP_ANONYMOUS |
|
---|
| 540 | MAP_PRIVATE, 0, 0)) != NULL) {
|
---|
| 541 | if (async_req_3(fb_info.phone, IPC_M_AS_AREA_SEND, (ipcarg_t)
|
---|
| 542 | interbuffer, 0, AS_AREA_READ, NULL, NULL, NULL) != 0) {
|
---|
| 543 | munmap(interbuffer, sizeof(keyfield_t) * fb_info.cols
|
---|
| 544 | * fb_info.rows);
|
---|
[390a678] | 545 | interbuffer = NULL;
|
---|
| 546 | }
|
---|
| 547 | }
|
---|
[a805c24] | 548 |
|
---|
[a8b2b5b2] | 549 | curs_goto(0,0);
|
---|
| 550 | curs_visibility(connections[active_console].screenbuffer.is_cursor_visible);
|
---|
[10569b1] | 551 |
|
---|
[b1f51f0] | 552 | /* Register at NS */
|
---|
[eaf34f7] | 553 | if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) {
|
---|
[51c1b003] | 554 | return -1;
|
---|
[00bb6965] | 555 | }
|
---|
[51c1b003] | 556 |
|
---|
[eaf34f7] | 557 | async_manager();
|
---|
[51c1b003] | 558 |
|
---|
| 559 | return 0;
|
---|
| 560 | }
|
---|
[ce5bcb4] | 561 |
|
---|
| 562 | /** @}
|
---|
| 563 | */
|
---|