source: mainline/uspace/console/console.c@ df4ed85

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since df4ed85 was df4ed85, checked in by Jakub Jermar <jakub@…>, 18 years ago

© versus ©

  • Property mode set to 100644
File size: 13.8 KB
RevLine 
[51c1b003]1/*
[df4ed85]2 * Copyright (c) 2006 Josef Cejka
[51c1b003]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]60int active_console = 0;
[eaf34f7]61
[e87e18f]62/** Information about framebuffer
63 */
[3993b3d]64struct {
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]71typedef 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]84static connection_t connections[CONSOLE_COUNT]; /**< Array of data for virtual
85 * consoles */
86static keyfield_t *interbuffer = NULL; /**< Pointer to memory shared
87 * with framebufer used for
88 * faster virtual console
[c738d65]89 * switching */
[429acb9]90
[00bb6965]91static 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]98static int find_free_connection(void)
[79460ae]99{
[c738d65]100 int i;
[79460ae]101
[c738d65]102 for (i = 0; i < CONSOLE_COUNT; i++) {
[d32af35]103 if (!connections[i].used)
[79460ae]104 return i;
105 }
[d32af35]106 return -1;
[79460ae]107}
108
[429acb9]109static void clrscr(void)
110{
[085bd54]111 async_msg(fb_info.phone, FB_CLEAR, 0);
[429acb9]112}
113
114static void curs_visibility(int v)
115{
[085bd54]116 async_msg(fb_info.phone, FB_CURSOR_VISIBILITY, v);
[429acb9]117}
118
119static void curs_goto(int row, int col)
120{
[085bd54]121 async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col);
[429acb9]122}
123
124static void set_style(style_t *style)
125{
[00bb6965]126 async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color,
127 style->bg_color);
[429acb9]128}
129
130static void set_style_col(int fgcolor, int bgcolor)
131{
[085bd54]132 async_msg_2(fb_info.phone, FB_SET_STYLE, fgcolor, bgcolor);
[429acb9]133}
134
135static void prtchr(char c, int row, int col)
136{
[085bd54]137 async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col);
[429acb9]138}
139
[10569b1]140/** Check key and process special keys.
141 *
142 * */
143static void write_char(int console, char key)
144{
145 screenbuffer_t *scr = &(connections[console].screenbuffer);
146
147 switch (key) {
[00bb6965]148 case '\n':
[c738d65]149 scr->position_y++;
150 scr->position_x = 0;
[00bb6965]151 break;
152 case '\r':
153 break;
154 case '\t':
155 scr->position_x += 8;
156 scr->position_x -= scr->position_x % 8;
157 break;
158 case '\b':
159 if (scr->position_x == 0)
[10569b1]160 break;
[00bb6965]161 scr->position_x--;
162 if (console == active_console)
163 prtchr(' ', scr->position_y, scr->position_x);
164 screenbuffer_putchar(scr, ' ');
165 break;
166 default:
167 if (console == active_console)
168 prtchr(key, scr->position_y, scr->position_x);
[10569b1]169
[00bb6965]170 screenbuffer_putchar(scr, key);
171 scr->position_x++;
[10569b1]172 }
173
174 scr->position_y += (scr->position_x >= scr->size_x);
175
176 if (scr->position_y >= scr->size_y) {
177 scr->position_y = scr->size_y - 1;
[c891ed39]178 screenbuffer_clear_line(scr, scr->top_line);
[c738d65]179 scr->top_line = (scr->top_line + 1) % scr->size_y;
[b1f51f0]180 if (console == active_console)
[085bd54]181 async_msg(fb_info.phone, FB_SCROLL, 1);
[10569b1]182 }
183
184 scr->position_x = scr->position_x % scr->size_x;
[bd929cfb]185
[429acb9]186 if (console == active_console)
187 curs_goto(scr->position_y, scr->position_x);
[10569b1]188
189}
190
[429acb9]191/** Save current screen to pixmap, draw old pixmap
192 *
193 * @param oldpixmap Old pixmap
194 * @return ID of pixmap of current screen
195 */
196static int switch_screens(int oldpixmap)
197{
198 int newpmap;
199
200 /* Save screen */
[085bd54]201 newpmap = async_req(fb_info.phone, FB_VP2PIXMAP, 0, NULL);
[429acb9]202 if (newpmap < 0)
203 return -1;
204
205 if (oldpixmap != -1) {
206 /* Show old screen */
[085bd54]207 async_msg_2(fb_info.phone, FB_VP_DRAW_PIXMAP, 0, oldpixmap);
[429acb9]208 /* Drop old pixmap */
[085bd54]209 async_msg(fb_info.phone, FB_DROP_PIXMAP, oldpixmap);
[429acb9]210 }
211
212 return newpmap;
213}
214
215/** Switch to new console */
216static void change_console(int newcons)
217{
218 connection_t *conn;
219 static int console_pixmap = -1;
[bd02038]220 int i, j, rc;
[6d5005c]221 keyfield_t *field;
222 style_t *style;
[429acb9]223
224 if (newcons == active_console)
225 return;
226
[a7d2d78]227 if (newcons == KERNEL_CONSOLE) {
228 if (active_console == KERNEL_CONSOLE)
[429acb9]229 return;
[a7d2d78]230 active_console = KERNEL_CONSOLE;
[429acb9]231 curs_visibility(0);
232
[1f83244]233 async_serialize_start();
[429acb9]234 if (kernel_pixmap == -1) {
235 /* store/restore unsupported */
236 set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
237 clrscr();
238 } else {
239 gcons_in_kernel();
240 console_pixmap = switch_screens(kernel_pixmap);
241 kernel_pixmap = -1;
242 }
[1f83244]243 async_serialize_end();
[429acb9]244
245 __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE);
246 return;
247 }
248
[1f83244]249 async_serialize_start();
250
[429acb9]251 if (console_pixmap != -1) {
252 kernel_pixmap = switch_screens(console_pixmap);
253 console_pixmap = -1;
254 }
255 active_console = newcons;
256 gcons_change_console(newcons);
257 conn = &connections[active_console];
258
[7bc1e74]259 set_style(&conn->screenbuffer.style);
[6d5005c]260 curs_visibility(0);
[429acb9]261 if (interbuffer) {
262 for (i = 0; i < conn->screenbuffer.size_x; i++)
263 for (j = 0; j < conn->screenbuffer.size_y; j++)
[c738d65]264 interbuffer[i + j * conn->screenbuffer.size_x] =
265 *get_field_at(&(conn->screenbuffer),
[00bb6965]266 i, j);
[7bc1e74]267 /* This call can preempt, but we are already at the end */
[00bb6965]268 rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL,
269 NULL);
[6d5005c]270 };
271
[c891ed39]272 if ((!interbuffer) || (rc != 0)) {
[6d5005c]273 set_style(&conn->screenbuffer.style);
[429acb9]274 clrscr();
[6d5005c]275 style = &conn->screenbuffer.style;
276
277 for (j = 0; j < conn->screenbuffer.size_y; j++)
278 for (i = 0; i < conn->screenbuffer.size_x; i++) {
[00bb6965]279 field = get_field_at(&(conn->screenbuffer), i,
280 j);
[6d5005c]281 if (!style_same(*style, field->style))
282 set_style(&field->style);
283 style = &field->style;
[00bb6965]284 if ((field->character == ' ') &&
285 (style_same(field->style,
286 conn->screenbuffer.style)))
[6d5005c]287 continue;
288
289 prtchr(field->character, j, i);
[429acb9]290 }
291 }
[6d5005c]292
[00bb6965]293 curs_goto(conn->screenbuffer.position_y,
294 conn->screenbuffer.position_x);
[6d5005c]295 curs_visibility(conn->screenbuffer.is_cursor_visible);
[1f83244]296
297 async_serialize_end();
[429acb9]298}
[10569b1]299
[e87e18f]300/** Handler for keyboard */
[eaf34f7]301static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall)
[51c1b003]302{
[eaf34f7]303 ipc_callid_t callid;
[51c1b003]304 ipc_call_t call;
[eaf34f7]305 int retval;
[dd641e3]306 int c;
[c1d2c9d]307 connection_t *conn;
[1f83244]308 int newcon;
[bb51e9a8]309
[eaf34f7]310 /* Ignore parameters, the connection is alread opened */
311 while (1) {
312 callid = async_get_call(&call);
313 switch (IPC_GET_METHOD(call)) {
314 case IPC_M_PHONE_HUNGUP:
315 /* TODO: Handle hangup */
316 return;
[1f83244]317 case KBD_MS_LEFT:
318 newcon = gcons_mouse_btn(IPC_GET_ARG1(call));
319 if (newcon != -1)
320 change_console(newcon);
[501a8ba]321 retval = 0;
[1f83244]322 break;
[830ac99]323 case KBD_MS_MOVE:
[00bb6965]324 gcons_mouse_move(IPC_GET_ARG1(call),
325 IPC_GET_ARG2(call));
[501a8ba]326 retval = 0;
[830ac99]327 break;
[eaf34f7]328 case KBD_PUSHCHAR:
329 /* got key from keyboard driver */
[b27a97bb]330
[eaf34f7]331 retval = 0;
[a805c24]332 c = IPC_GET_ARG1(call);
[eaf34f7]333 /* switch to another virtual console */
[cf28036c]334
[c1d2c9d]335 conn = &connections[active_console];
[00bb6965]336/*
337 * if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 +
338 * CONSOLE_COUNT)) {
339 */
[dd641e3]340 if ((c >= 0x101) && (c < 0x101 + CONSOLE_COUNT)) {
341 if (c == 0x112)
[a7d2d78]342 change_console(KERNEL_CONSOLE);
[429acb9]343 else
[dd641e3]344 change_console(c - 0x101);
[eaf34f7]345 break;
346 }
[cf28036c]347
348 /* if client is awaiting key, send it */
[c1d2c9d]349 if (conn->keyrequest_counter > 0) {
350 conn->keyrequest_counter--;
[00bb6965]351 ipc_answer_fast(fifo_pop(conn->keyrequests), 0,
352 c, 0);
[cf28036c]353 break;
354 }
355
[c1d2c9d]356 keybuffer_push(&conn->keybuffer, c);
[501a8ba]357 retval = 0;
[ad123964]358
[eaf34f7]359 break;
360 default:
[1029d3d3]361 retval = ENOENT;
[085bd54]362 }
[1029d3d3]363 ipc_answer_fast(callid, retval, 0, 0);
[eaf34f7]364 }
365}
366
367/** Default thread for new connections */
[b1f51f0]368static void client_connection(ipc_callid_t iid, ipc_call_t *icall)
[eaf34f7]369{
[51c1b003]370 ipc_callid_t callid;
[eaf34f7]371 ipc_call_t call;
372 int consnum;
[3756912]373 ipcarg_t arg1, arg2;
[e9073f2]374 connection_t *conn;
[eaf34f7]375
[d32af35]376 if ((consnum = find_free_connection()) == -1) {
[eaf34f7]377 ipc_answer_fast(iid,ELIMIT,0,0);
378 return;
379 }
[e9073f2]380 conn = &connections[consnum];
[085bd54]381 conn->used = 1;
[a7d2d78]382
[085bd54]383 async_serialize_start();
[a7d2d78]384 gcons_notify_connect(consnum);
[e9073f2]385 conn->client_phone = IPC_GET_ARG3(call);
386 screenbuffer_clear(&conn->screenbuffer);
[10569b1]387
[eaf34f7]388 /* Accept the connection */
[c738d65]389 ipc_answer_fast(iid, 0, 0, 0);
[085bd54]390
[eaf34f7]391 while (1) {
[085bd54]392 async_serialize_end();
[eaf34f7]393 callid = async_get_call(&call);
[085bd54]394 async_serialize_start();
395
[3756912]396 arg1 = arg2 = 0;
[eaf34f7]397 switch (IPC_GET_METHOD(call)) {
398 case IPC_M_PHONE_HUNGUP:
[e9073f2]399 gcons_notify_disconnect(consnum);
[085bd54]400
[e9073f2]401 /* Answer all pending requests */
402 while (conn->keyrequest_counter > 0) {
403 conn->keyrequest_counter--;
[00bb6965]404 ipc_answer_fast(fifo_pop(conn->keyrequests),
405 ENOENT, 0, 0);
[e9073f2]406 break;
407 }
[0d11fc1c]408 conn->used = 0;
[eaf34f7]409 return;
410 case CONSOLE_PUTCHAR:
[10569b1]411 write_char(consnum, IPC_GET_ARG1(call));
[d6cc453]412 gcons_notify_char(consnum);
[ad123964]413 break;
414 case CONSOLE_CLEAR:
[3993b3d]415 /* Send message to fb */
416 if (consnum == active_console) {
[085bd54]417 async_msg(fb_info.phone, FB_CLEAR, 0);
[3993b3d]418 }
419
[e9073f2]420 screenbuffer_clear(&conn->screenbuffer);
[3993b3d]421
[eaf34f7]422 break;
[ad123964]423 case CONSOLE_GOTO:
[00bb6965]424 screenbuffer_goto(&conn->screenbuffer,
425 IPC_GET_ARG2(call), IPC_GET_ARG1(call));
[6118e5f6]426 if (consnum == active_console)
[00bb6965]427 curs_goto(IPC_GET_ARG1(call),
428 IPC_GET_ARG2(call));
[ad123964]429 break;
[3756912]430 case CONSOLE_GETSIZE:
[d6cc453]431 arg1 = fb_info.rows;
432 arg2 = fb_info.cols;
[3756912]433 break;
[0c6984e]434 case CONSOLE_FLUSH:
[a3d2939]435 if (consnum == active_console)
[00bb6965]436 async_req_2(fb_info.phone, FB_FLUSH, 0, 0,
437 NULL, NULL);
[a9bd960c]438 break;
439 case CONSOLE_SET_STYLE:
440 arg1 = IPC_GET_ARG1(call);
441 arg2 = IPC_GET_ARG2(call);
[c738d65]442 screenbuffer_set_style(&conn->screenbuffer, arg1, arg2);
[a9bd960c]443 if (consnum == active_console)
[429acb9]444 set_style_col(arg1, arg2);
[0c6984e]445 break;
[a8b2b5b2]446 case CONSOLE_CURSOR_VISIBILITY:
447 arg1 = IPC_GET_ARG1(call);
[e9073f2]448 conn->screenbuffer.is_cursor_visible = arg1;
[a8b2b5b2]449 if (consnum == active_console)
450 curs_visibility(arg1);
451 break;
[eaf34f7]452 case CONSOLE_GETCHAR:
[e9073f2]453 if (keybuffer_empty(&conn->keybuffer)) {
[cf28036c]454 /* buffer is empty -> store request */
[00bb6965]455 if (conn->keyrequest_counter <
456 MAX_KEYREQUESTS_BUFFERED) {
[e9073f2]457 fifo_push(conn->keyrequests, callid);
458 conn->keyrequest_counter++;
[cf28036c]459 } else {
[00bb6965]460 /*
461 * No key available and too many
462 * requests => fail.
463 */
[cf28036c]464 ipc_answer_fast(callid, ELIMIT, 0, 0);
465 }
466 continue;
[00bb6965]467 }
468 keybuffer_pop(&conn->keybuffer, (int *) &arg1);
[eaf34f7]469 break;
470 }
[3756912]471 ipc_answer_fast(callid, 0, arg1, arg2);
[eaf34f7]472 }
473}
474
475int main(int argc, char *argv[])
476{
477 ipcarg_t phonehash;
[501a8ba]478 int kbd_phone;
[79460ae]479 int i;
[da0c91e7]480
481 async_set_client_connection(client_connection);
[51c1b003]482
483 /* Connect to keyboard driver */
484
[c738d65]485 kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0);
486 while (kbd_phone < 0) {
[eaf34f7]487 usleep(10000);
[c738d65]488 kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0);
[00bb6965]489 }
[51c1b003]490
[00bb6965]491 if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0)
[51c1b003]492 return -1;
[290c0db]493 async_new_connection(phonehash, 0, NULL, keyboard_events);
494
[51c1b003]495 /* Connect to framebuffer driver */
496
[c738d65]497 fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0);
498 while (fb_info.phone < 0) {
[3993b3d]499 usleep(10000);
[c738d65]500 fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0);
[3993b3d]501 }
[429acb9]502
503 /* Save old kernel screen */
504 kernel_pixmap = switch_screens(-1);
[e1c4849]505
506 /* Initialize gcons */
507 gcons_init(fb_info.phone);
508 /* Synchronize, the gcons can have something in queue */
[085bd54]509 async_req(fb_info.phone, FB_FLUSH, 0, NULL);
[e92aabf]510 /* Enable double buffering */
[c738d65]511 async_msg_2(fb_info.phone, FB_VIEWPORT_DB, (sysarg_t) -1, 1);
[3993b3d]512
[00bb6965]513 async_req_2(fb_info.phone, FB_GET_CSIZE, 0, 0, &(fb_info.rows),
514 &(fb_info.cols));
[429acb9]515 set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
516 clrscr();
[3993b3d]517
518 /* Init virtual consoles */
[79460ae]519 for (i = 0; i < CONSOLE_COUNT; i++) {
520 connections[i].used = 0;
521 keybuffer_init(&(connections[i].keybuffer));
[cf28036c]522
[00bb6965]523 connections[i].keyrequests.head =
524 connections[i].keyrequests.tail = 0;
[cf28036c]525 connections[i].keyrequests.items = MAX_KEYREQUESTS_BUFFERED;
526 connections[i].keyrequest_counter = 0;
[3993b3d]527
[00bb6965]528 if (screenbuffer_init(&(connections[i].screenbuffer),
529 fb_info.cols, fb_info.rows) == NULL) {
[c738d65]530 /* FIXME: handle error */
[3993b3d]531 return -1;
532 }
[79460ae]533 }
[d32af35]534 connections[KERNEL_CONSOLE].used = 1;
[51c1b003]535
[c738d65]536 interbuffer = mmap(NULL,
537 sizeof(keyfield_t) * fb_info.cols * fb_info.rows,
538 PROTO_READ | PROTO_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
539 if (!interbuffer) {
[00bb6965]540 if (async_req_3(fb_info.phone, IPC_M_AS_AREA_SEND, (ipcarg_t)
541 interbuffer, 0, AS_AREA_READ, NULL, NULL, NULL) != 0) {
542 munmap(interbuffer, sizeof(keyfield_t) * fb_info.cols
543 * fb_info.rows);
[390a678]544 interbuffer = NULL;
545 }
546 }
[a805c24]547
[c738d65]548 curs_goto(0, 0);
[a8b2b5b2]549 curs_visibility(connections[active_console].screenbuffer.is_cursor_visible);
[10569b1]550
[b1f51f0]551 /* Register at NS */
[eaf34f7]552 if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) {
[51c1b003]553 return -1;
[00bb6965]554 }
[51c1b003]555
[eaf34f7]556 async_manager();
[51c1b003]557
558 return 0;
559}
[ce5bcb4]560
561/** @}
562 */
Note: See TracBrowser for help on using the repository browser.