[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 | */
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 | #include <kbd.h>
|
---|
[79460ae] | 31 | #include <fb.h>
|
---|
[51c1b003] | 32 | #include <ipc/ipc.h>
|
---|
[79460ae] | 33 | #include <ipc/fb.h>
|
---|
[51c1b003] | 34 | #include <ipc/services.h>
|
---|
| 35 | #include <errno.h>
|
---|
[79460ae] | 36 | #include <key_buffer.h>
|
---|
| 37 | #include <console.h>
|
---|
[eaf34f7] | 38 | #include <unistd.h>
|
---|
| 39 | #include <async.h>
|
---|
[cf28036c] | 40 | #include <libadt/fifo.h>
|
---|
[3993b3d] | 41 | #include <screenbuffer.h>
|
---|
[390a678] | 42 | #include <sys/mman.h>
|
---|
[79460ae] | 43 |
|
---|
[e1c4849] | 44 | #include "gcons.h"
|
---|
| 45 |
|
---|
[cf28036c] | 46 | #define MAX_KEYREQUESTS_BUFFERED 32
|
---|
[51c1b003] | 47 |
|
---|
| 48 | #define NAME "CONSOLE"
|
---|
| 49 |
|
---|
[e87e18f] | 50 | /** Index of currently used virtual console.
|
---|
| 51 | */
|
---|
[390a678] | 52 | int active_console = 0;
|
---|
[eaf34f7] | 53 |
|
---|
[e87e18f] | 54 | /** Information about framebuffer
|
---|
| 55 | */
|
---|
[3993b3d] | 56 | struct {
|
---|
| 57 | int phone; /**< Framebuffer phone */
|
---|
[bb51e9a8] | 58 | ipcarg_t rows; /**< Framebuffer rows */
|
---|
| 59 | ipcarg_t cols; /**< Framebuffer columns */
|
---|
[3993b3d] | 60 | } fb_info;
|
---|
| 61 |
|
---|
[e87e18f] | 62 |
|
---|
[79460ae] | 63 | typedef struct {
|
---|
[e87e18f] | 64 | keybuffer_t keybuffer; /**< Buffer for incoming keys. */
|
---|
| 65 | FIFO_CREATE_STATIC(keyrequests, ipc_callid_t , MAX_KEYREQUESTS_BUFFERED); /**< Buffer for unsatisfied request for keys. */
|
---|
| 66 | int keyrequest_counter; /**< Number of requests in buffer. */
|
---|
| 67 | int client_phone; /**< Phone to connected client. */
|
---|
| 68 | int used; /**< 1 if this virtual console is connected to some client.*/
|
---|
| 69 | screenbuffer_t screenbuffer; /**< Screenbuffer for saving screen contents and related settings. */
|
---|
[79460ae] | 70 | } connection_t;
|
---|
| 71 |
|
---|
[429acb9] | 72 | static connection_t connections[CONSOLE_COUNT]; /**< Array of data for virtual consoles */
|
---|
| 73 | static keyfield_t *interbuffer = NULL; /**< Pointer to memory shared with framebufer used for faster virt. console switching */
|
---|
| 74 |
|
---|
| 75 | static int kernel_pixmap = -1; /**< Number of fb pixmap, where kernel console is stored */
|
---|
[bb51e9a8] | 76 |
|
---|
| 77 |
|
---|
[e87e18f] | 78 | /** Find unused virtual console.
|
---|
| 79 | *
|
---|
| 80 | */
|
---|
[d32af35] | 81 | static int find_free_connection(void)
|
---|
[79460ae] | 82 | {
|
---|
| 83 | int i = 0;
|
---|
| 84 |
|
---|
[d32af35] | 85 | for (i=0; i < CONSOLE_COUNT; i++) {
|
---|
| 86 | if (!connections[i].used)
|
---|
[79460ae] | 87 | return i;
|
---|
| 88 | }
|
---|
[d32af35] | 89 | return -1;
|
---|
[79460ae] | 90 | }
|
---|
| 91 |
|
---|
[429acb9] | 92 | static void clrscr(void)
|
---|
| 93 | {
|
---|
| 94 | nsend_call(fb_info.phone, FB_CLEAR, 0);
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | static void curs_visibility(int v)
|
---|
| 98 | {
|
---|
| 99 | send_call(fb_info.phone, FB_CURSOR_VISIBILITY, v);
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | static void curs_goto(int row, int col)
|
---|
| 103 | {
|
---|
| 104 | nsend_call_2(fb_info.phone, FB_CURSOR_GOTO, row, col);
|
---|
| 105 |
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | static void set_style(style_t *style)
|
---|
| 109 | {
|
---|
| 110 | nsend_call_2(fb_info.phone, FB_SET_STYLE, style->fg_color, style->bg_color);
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | static void set_style_col(int fgcolor, int bgcolor)
|
---|
| 114 | {
|
---|
| 115 | nsend_call_2(fb_info.phone, FB_SET_STYLE, fgcolor, bgcolor);
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | static void prtchr(char c, int row, int col)
|
---|
| 119 | {
|
---|
| 120 | nsend_call_3(fb_info.phone, FB_PUTCHAR, c, row, col);
|
---|
| 121 |
|
---|
| 122 | }
|
---|
| 123 |
|
---|
[10569b1] | 124 | /** Check key and process special keys.
|
---|
| 125 | *
|
---|
| 126 | * */
|
---|
| 127 | static void write_char(int console, char key)
|
---|
| 128 | {
|
---|
| 129 | screenbuffer_t *scr = &(connections[console].screenbuffer);
|
---|
| 130 |
|
---|
| 131 | switch (key) {
|
---|
| 132 | case '\n':
|
---|
| 133 | scr->position_y += 1;
|
---|
| 134 | scr->position_x = 0;
|
---|
| 135 | break;
|
---|
| 136 | case '\r':
|
---|
| 137 | break;
|
---|
| 138 | case '\t':
|
---|
| 139 | scr->position_x += 8;
|
---|
| 140 | scr->position_x -= scr->position_x % 8;
|
---|
| 141 | break;
|
---|
| 142 | case '\b':
|
---|
| 143 | if (scr->position_x == 0)
|
---|
| 144 | break;
|
---|
| 145 |
|
---|
| 146 | scr->position_x--;
|
---|
| 147 |
|
---|
[429acb9] | 148 | if (console == active_console)
|
---|
| 149 | prtchr(' ', scr->position_y, scr->position_x);
|
---|
[10569b1] | 150 |
|
---|
| 151 | screenbuffer_putchar(scr, ' ');
|
---|
| 152 |
|
---|
| 153 | break;
|
---|
| 154 | default:
|
---|
[429acb9] | 155 | if (console == active_console)
|
---|
| 156 | prtchr(key, scr->position_y, scr->position_x);
|
---|
[10569b1] | 157 |
|
---|
| 158 | screenbuffer_putchar(scr, key);
|
---|
| 159 | scr->position_x++;
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | scr->position_y += (scr->position_x >= scr->size_x);
|
---|
| 163 |
|
---|
| 164 | if (scr->position_y >= scr->size_y) {
|
---|
| 165 | scr->position_y = scr->size_y - 1;
|
---|
| 166 | screenbuffer_clear_line(scr, scr->top_line++);
|
---|
[b1f51f0] | 167 | if (console == active_console)
|
---|
| 168 | nsend_call(fb_info.phone, FB_SCROLL, 1);
|
---|
[10569b1] | 169 | }
|
---|
| 170 |
|
---|
| 171 | scr->position_x = scr->position_x % scr->size_x;
|
---|
[bd929cfb] | 172 |
|
---|
[429acb9] | 173 | if (console == active_console)
|
---|
| 174 | curs_goto(scr->position_y, scr->position_x);
|
---|
[10569b1] | 175 |
|
---|
| 176 | }
|
---|
| 177 |
|
---|
[429acb9] | 178 | /** Save current screen to pixmap, draw old pixmap
|
---|
| 179 | *
|
---|
| 180 | * @param oldpixmap Old pixmap
|
---|
| 181 | * @return ID of pixmap of current screen
|
---|
| 182 | */
|
---|
| 183 | static int switch_screens(int oldpixmap)
|
---|
| 184 | {
|
---|
| 185 | int newpmap;
|
---|
| 186 |
|
---|
| 187 | /* Save screen */
|
---|
| 188 | newpmap = sync_send(fb_info.phone, FB_VP2PIXMAP, 0, NULL);
|
---|
| 189 | if (newpmap < 0)
|
---|
| 190 | return -1;
|
---|
| 191 |
|
---|
| 192 | if (oldpixmap != -1) {
|
---|
| 193 | /* Show old screen */
|
---|
| 194 | nsend_call_2(fb_info.phone, FB_VP_DRAW_PIXMAP, 0, oldpixmap);
|
---|
| 195 | /* Drop old pixmap */
|
---|
| 196 | nsend_call(fb_info.phone, FB_DROP_PIXMAP, oldpixmap);
|
---|
| 197 | }
|
---|
| 198 |
|
---|
| 199 | return newpmap;
|
---|
| 200 | }
|
---|
| 201 |
|
---|
| 202 | /** Switch to new console */
|
---|
| 203 | static void change_console(int newcons)
|
---|
| 204 | {
|
---|
| 205 | connection_t *conn;
|
---|
| 206 | static int console_pixmap = -1;
|
---|
| 207 | int i, j;
|
---|
[6d5005c] | 208 | keyfield_t *field;
|
---|
| 209 | style_t *style;
|
---|
[429acb9] | 210 | char c;
|
---|
| 211 |
|
---|
| 212 | if (newcons == active_console)
|
---|
| 213 | return;
|
---|
| 214 |
|
---|
[a7d2d78] | 215 | if (newcons == KERNEL_CONSOLE) {
|
---|
| 216 | if (active_console == KERNEL_CONSOLE)
|
---|
[429acb9] | 217 | return;
|
---|
[a7d2d78] | 218 | active_console = KERNEL_CONSOLE;
|
---|
[429acb9] | 219 | curs_visibility(0);
|
---|
| 220 |
|
---|
| 221 | if (kernel_pixmap == -1) {
|
---|
| 222 | /* store/restore unsupported */
|
---|
| 223 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
|
---|
| 224 | clrscr();
|
---|
| 225 | } else {
|
---|
| 226 | gcons_in_kernel();
|
---|
| 227 | console_pixmap = switch_screens(kernel_pixmap);
|
---|
| 228 | kernel_pixmap = -1;
|
---|
| 229 | }
|
---|
| 230 |
|
---|
| 231 | __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE);
|
---|
| 232 | return;
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | if (console_pixmap != -1) {
|
---|
| 236 | kernel_pixmap = switch_screens(console_pixmap);
|
---|
| 237 | console_pixmap = -1;
|
---|
| 238 | }
|
---|
| 239 |
|
---|
| 240 | active_console = newcons;
|
---|
| 241 | gcons_change_console(newcons);
|
---|
| 242 | conn = &connections[active_console];
|
---|
| 243 |
|
---|
[7bc1e74] | 244 | set_style(&conn->screenbuffer.style);
|
---|
| 245 | curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x);
|
---|
[6d5005c] | 246 | curs_visibility(0);
|
---|
| 247 |
|
---|
[429acb9] | 248 | if (interbuffer) {
|
---|
| 249 | for (i = 0; i < conn->screenbuffer.size_x; i++)
|
---|
| 250 | for (j = 0; j < conn->screenbuffer.size_y; j++)
|
---|
| 251 | interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j);
|
---|
[7bc1e74] | 252 | /* This call can preempt, but we are already at the end */
|
---|
[6d5005c] | 253 | j = sync_send_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);
|
---|
| 254 | };
|
---|
| 255 |
|
---|
| 256 | if ((!interbuffer) || (j != 0)){
|
---|
| 257 | set_style(&conn->screenbuffer.style);
|
---|
[429acb9] | 258 | clrscr();
|
---|
[6d5005c] | 259 | style = &conn->screenbuffer.style;
|
---|
| 260 |
|
---|
| 261 | for (j = 0; j < conn->screenbuffer.size_y; j++)
|
---|
| 262 | for (i = 0; i < conn->screenbuffer.size_x; i++) {
|
---|
| 263 | field = get_field_at(&(conn->screenbuffer),i, j);
|
---|
| 264 | if (!style_same(*style, field->style))
|
---|
| 265 | set_style(&field->style);
|
---|
| 266 | style = &field->style;
|
---|
| 267 | if ((field->character == ' ') && (style_same(field->style, conn->screenbuffer.style)))
|
---|
| 268 | continue;
|
---|
| 269 |
|
---|
| 270 | prtchr(field->character, j, i);
|
---|
[429acb9] | 271 | }
|
---|
| 272 | }
|
---|
[6d5005c] | 273 |
|
---|
| 274 | curs_visibility(conn->screenbuffer.is_cursor_visible);
|
---|
[429acb9] | 275 | }
|
---|
[10569b1] | 276 |
|
---|
[e87e18f] | 277 | /** Handler for keyboard */
|
---|
[eaf34f7] | 278 | static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[51c1b003] | 279 | {
|
---|
[eaf34f7] | 280 | ipc_callid_t callid;
|
---|
[51c1b003] | 281 | ipc_call_t call;
|
---|
[eaf34f7] | 282 | int retval;
|
---|
[dd641e3] | 283 | int c;
|
---|
[c1d2c9d] | 284 | connection_t *conn;
|
---|
[bb51e9a8] | 285 |
|
---|
[eaf34f7] | 286 | /* Ignore parameters, the connection is alread opened */
|
---|
| 287 | while (1) {
|
---|
| 288 | callid = async_get_call(&call);
|
---|
| 289 | switch (IPC_GET_METHOD(call)) {
|
---|
| 290 | case IPC_M_PHONE_HUNGUP:
|
---|
| 291 | ipc_answer_fast(callid,0,0,0);
|
---|
| 292 | /* TODO: Handle hangup */
|
---|
| 293 | return;
|
---|
| 294 | case KBD_PUSHCHAR:
|
---|
| 295 | /* got key from keyboard driver */
|
---|
[b27a97bb] | 296 |
|
---|
[eaf34f7] | 297 | retval = 0;
|
---|
[a805c24] | 298 | c = IPC_GET_ARG1(call);
|
---|
[eaf34f7] | 299 | /* switch to another virtual console */
|
---|
[cf28036c] | 300 |
|
---|
[c1d2c9d] | 301 | conn = &connections[active_console];
|
---|
[da0c91e7] | 302 | // if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) {
|
---|
[dd641e3] | 303 | if ((c >= 0x101) && (c < 0x101 + CONSOLE_COUNT)) {
|
---|
| 304 | if (c == 0x112)
|
---|
[a7d2d78] | 305 | change_console(KERNEL_CONSOLE);
|
---|
[429acb9] | 306 | else
|
---|
[dd641e3] | 307 | change_console(c - 0x101);
|
---|
[eaf34f7] | 308 | break;
|
---|
| 309 | }
|
---|
[cf28036c] | 310 |
|
---|
| 311 | /* if client is awaiting key, send it */
|
---|
[c1d2c9d] | 312 | if (conn->keyrequest_counter > 0) {
|
---|
| 313 | conn->keyrequest_counter--;
|
---|
| 314 | ipc_answer_fast(fifo_pop(conn->keyrequests), 0, c, 0);
|
---|
[cf28036c] | 315 | break;
|
---|
| 316 | }
|
---|
| 317 |
|
---|
| 318 | /*FIXME: else store key to its buffer */
|
---|
[c1d2c9d] | 319 | keybuffer_push(&conn->keybuffer, c);
|
---|
[ad123964] | 320 |
|
---|
[eaf34f7] | 321 | break;
|
---|
| 322 | default:
|
---|
[1029d3d3] | 323 | retval = ENOENT;
|
---|
[eaf34f7] | 324 | }
|
---|
[1029d3d3] | 325 | ipc_answer_fast(callid, retval, 0, 0);
|
---|
[eaf34f7] | 326 | }
|
---|
| 327 | }
|
---|
| 328 |
|
---|
| 329 | /** Default thread for new connections */
|
---|
[b1f51f0] | 330 | static void client_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
[eaf34f7] | 331 | {
|
---|
[51c1b003] | 332 | ipc_callid_t callid;
|
---|
[eaf34f7] | 333 | ipc_call_t call;
|
---|
| 334 | int consnum;
|
---|
[3756912] | 335 | ipcarg_t arg1, arg2;
|
---|
[e9073f2] | 336 | connection_t *conn;
|
---|
[eaf34f7] | 337 |
|
---|
[d32af35] | 338 | if ((consnum = find_free_connection()) == -1) {
|
---|
[eaf34f7] | 339 | ipc_answer_fast(iid,ELIMIT,0,0);
|
---|
| 340 | return;
|
---|
| 341 | }
|
---|
[e9073f2] | 342 | conn = &connections[consnum];
|
---|
[a7d2d78] | 343 |
|
---|
| 344 | gcons_notify_connect(consnum);
|
---|
[e9073f2] | 345 | conn->used = 1;
|
---|
| 346 | conn->client_phone = IPC_GET_ARG3(call);
|
---|
| 347 | screenbuffer_clear(&conn->screenbuffer);
|
---|
[10569b1] | 348 |
|
---|
[eaf34f7] | 349 | /* Accept the connection */
|
---|
| 350 | ipc_answer_fast(iid,0,0,0);
|
---|
| 351 |
|
---|
| 352 | while (1) {
|
---|
| 353 | callid = async_get_call(&call);
|
---|
[3756912] | 354 | arg1 = arg2 = 0;
|
---|
[eaf34f7] | 355 | switch (IPC_GET_METHOD(call)) {
|
---|
| 356 | case IPC_M_PHONE_HUNGUP:
|
---|
[e9073f2] | 357 | gcons_notify_disconnect(consnum);
|
---|
| 358 | /* Answer all pending requests */
|
---|
| 359 | while (conn->keyrequest_counter > 0) {
|
---|
| 360 | conn->keyrequest_counter--;
|
---|
| 361 | ipc_answer_fast(fifo_pop(conn->keyrequests), ENOENT, 0, 0);
|
---|
| 362 | break;
|
---|
| 363 | }
|
---|
| 364 |
|
---|
| 365 | /* Commit hangup */
|
---|
[eaf34f7] | 366 | ipc_answer_fast(callid, 0,0,0);
|
---|
| 367 | return;
|
---|
| 368 | case CONSOLE_PUTCHAR:
|
---|
[10569b1] | 369 | write_char(consnum, IPC_GET_ARG1(call));
|
---|
[d6cc453] | 370 | gcons_notify_char(consnum);
|
---|
[ad123964] | 371 | break;
|
---|
| 372 | case CONSOLE_CLEAR:
|
---|
[3993b3d] | 373 | /* Send message to fb */
|
---|
| 374 | if (consnum == active_console) {
|
---|
[b1f51f0] | 375 | send_call(fb_info.phone, FB_CLEAR, 0);
|
---|
[3993b3d] | 376 | }
|
---|
| 377 |
|
---|
[e9073f2] | 378 | screenbuffer_clear(&conn->screenbuffer);
|
---|
[3993b3d] | 379 |
|
---|
[eaf34f7] | 380 | break;
|
---|
[ad123964] | 381 | case CONSOLE_GOTO:
|
---|
[3993b3d] | 382 |
|
---|
[e9073f2] | 383 | screenbuffer_goto(&conn->screenbuffer, IPC_GET_ARG2(call), IPC_GET_ARG1(call));
|
---|
[6118e5f6] | 384 | if (consnum == active_console)
|
---|
| 385 | curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call));
|
---|
[3993b3d] | 386 |
|
---|
[ad123964] | 387 | break;
|
---|
[0c6984e] | 388 |
|
---|
[3756912] | 389 | case CONSOLE_GETSIZE:
|
---|
[d6cc453] | 390 | arg1 = fb_info.rows;
|
---|
| 391 | arg2 = fb_info.cols;
|
---|
[3756912] | 392 | break;
|
---|
[0c6984e] | 393 | case CONSOLE_FLUSH:
|
---|
| 394 | sync_send_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL);
|
---|
[a9bd960c] | 395 | break;
|
---|
| 396 | case CONSOLE_SET_STYLE:
|
---|
| 397 |
|
---|
| 398 | arg1 = IPC_GET_ARG1(call);
|
---|
| 399 | arg2 = IPC_GET_ARG2(call);
|
---|
[e9073f2] | 400 | screenbuffer_set_style(&conn->screenbuffer,arg1, arg2);
|
---|
[a9bd960c] | 401 | if (consnum == active_console)
|
---|
[429acb9] | 402 | set_style_col(arg1, arg2);
|
---|
[a9bd960c] | 403 |
|
---|
[0c6984e] | 404 | break;
|
---|
[a8b2b5b2] | 405 | case CONSOLE_CURSOR_VISIBILITY:
|
---|
| 406 | arg1 = IPC_GET_ARG1(call);
|
---|
[e9073f2] | 407 | conn->screenbuffer.is_cursor_visible = arg1;
|
---|
[a8b2b5b2] | 408 | if (consnum == active_console)
|
---|
| 409 | curs_visibility(arg1);
|
---|
| 410 | break;
|
---|
[eaf34f7] | 411 | case CONSOLE_GETCHAR:
|
---|
[e9073f2] | 412 | if (keybuffer_empty(&conn->keybuffer)) {
|
---|
[cf28036c] | 413 | /* buffer is empty -> store request */
|
---|
[e9073f2] | 414 | if (conn->keyrequest_counter < MAX_KEYREQUESTS_BUFFERED) {
|
---|
| 415 | fifo_push(conn->keyrequests, callid);
|
---|
| 416 | conn->keyrequest_counter++;
|
---|
[cf28036c] | 417 | } else {
|
---|
| 418 | /* no key available and too many requests => fail */
|
---|
| 419 | ipc_answer_fast(callid, ELIMIT, 0, 0);
|
---|
| 420 | }
|
---|
| 421 | continue;
|
---|
[eaf34f7] | 422 | };
|
---|
[e9073f2] | 423 | keybuffer_pop(&conn->keybuffer, (int *)&arg1);
|
---|
[b27a97bb] | 424 |
|
---|
[eaf34f7] | 425 | break;
|
---|
| 426 | }
|
---|
[3756912] | 427 | ipc_answer_fast(callid, 0, arg1, arg2);
|
---|
[eaf34f7] | 428 | }
|
---|
| 429 | }
|
---|
| 430 |
|
---|
| 431 | int main(int argc, char *argv[])
|
---|
| 432 | {
|
---|
| 433 | ipcarg_t phonehash;
|
---|
[79460ae] | 434 | int kbd_phone, fb_phone;
|
---|
[51c1b003] | 435 | ipcarg_t retval, arg1 = 0xdead, arg2 = 0xbeef;
|
---|
[79460ae] | 436 | int i;
|
---|
[da0c91e7] | 437 |
|
---|
| 438 | async_set_client_connection(client_connection);
|
---|
[51c1b003] | 439 |
|
---|
| 440 | /* Connect to keyboard driver */
|
---|
| 441 |
|
---|
[79460ae] | 442 | while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) {
|
---|
[eaf34f7] | 443 | usleep(10000);
|
---|
[51c1b003] | 444 | };
|
---|
| 445 |
|
---|
[eaf34f7] | 446 | if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0) {
|
---|
[51c1b003] | 447 | return -1;
|
---|
| 448 | };
|
---|
| 449 |
|
---|
| 450 | /* Connect to framebuffer driver */
|
---|
| 451 |
|
---|
[3993b3d] | 452 | while ((fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0)) < 0) {
|
---|
| 453 | usleep(10000);
|
---|
| 454 | }
|
---|
[429acb9] | 455 |
|
---|
| 456 | /* Save old kernel screen */
|
---|
| 457 | kernel_pixmap = switch_screens(-1);
|
---|
[e1c4849] | 458 |
|
---|
| 459 | /* Initialize gcons */
|
---|
| 460 | gcons_init(fb_info.phone);
|
---|
| 461 | /* Synchronize, the gcons can have something in queue */
|
---|
[d32af35] | 462 | sync_send(fb_info.phone, FB_FLUSH, 0, NULL);
|
---|
[e1c4849] | 463 |
|
---|
[3993b3d] | 464 |
|
---|
| 465 | ipc_call_sync_2(fb_info.phone, FB_GET_CSIZE, 0, 0, &(fb_info.rows), &(fb_info.cols));
|
---|
[429acb9] | 466 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
|
---|
| 467 | clrscr();
|
---|
[3993b3d] | 468 |
|
---|
| 469 | /* Init virtual consoles */
|
---|
[79460ae] | 470 | for (i = 0; i < CONSOLE_COUNT; i++) {
|
---|
| 471 | connections[i].used = 0;
|
---|
| 472 | keybuffer_init(&(connections[i].keybuffer));
|
---|
[cf28036c] | 473 |
|
---|
| 474 | connections[i].keyrequests.head = connections[i].keyrequests.tail = 0;
|
---|
| 475 | connections[i].keyrequests.items = MAX_KEYREQUESTS_BUFFERED;
|
---|
| 476 | connections[i].keyrequest_counter = 0;
|
---|
[3993b3d] | 477 |
|
---|
| 478 | if (screenbuffer_init(&(connections[i].screenbuffer), fb_info.cols, fb_info.rows ) == NULL) {
|
---|
| 479 | /*FIXME: handle error */
|
---|
| 480 | return -1;
|
---|
| 481 | }
|
---|
[79460ae] | 482 | }
|
---|
[d32af35] | 483 | connections[KERNEL_CONSOLE].used = 1;
|
---|
[51c1b003] | 484 |
|
---|
[390a678] | 485 | if ((interbuffer = mmap(NULL, sizeof(keyfield_t) * fb_info.cols * fb_info.rows , PROTO_READ|PROTO_WRITE, MAP_ANONYMOUS|MAP_PRIVATE, 0 ,0 )) != NULL) {
|
---|
[90f5d64] | 486 | if (ipc_call_sync_3(fb_info.phone, IPC_M_AS_AREA_SEND, (ipcarg_t)interbuffer, 0, AS_AREA_READ, NULL, NULL, NULL) != 0) {
|
---|
[390a678] | 487 | munmap(interbuffer, sizeof(keyfield_t) * fb_info.cols * fb_info.rows);
|
---|
| 488 | interbuffer = NULL;
|
---|
| 489 | }
|
---|
| 490 | }
|
---|
[a805c24] | 491 |
|
---|
[bb51e9a8] | 492 | async_new_connection(phonehash, 0, NULL, keyboard_events);
|
---|
| 493 |
|
---|
[a8b2b5b2] | 494 | curs_goto(0,0);
|
---|
| 495 | curs_visibility(connections[active_console].screenbuffer.is_cursor_visible);
|
---|
[10569b1] | 496 |
|
---|
[b1f51f0] | 497 | /* Register at NS */
|
---|
[eaf34f7] | 498 | if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) {
|
---|
[51c1b003] | 499 | return -1;
|
---|
| 500 | };
|
---|
| 501 |
|
---|
[eaf34f7] | 502 | async_manager();
|
---|
[51c1b003] | 503 |
|
---|
| 504 | return 0;
|
---|
| 505 | }
|
---|
[a805c24] | 506 |
|
---|