Subversion Repositories HelenOS-historic

Rev

Rev 1647 | Rev 1649 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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