Subversion Repositories HelenOS

Rev

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

Rev 4211 Rev 4235
1
/*
1
/*
2
 * Copyright (c) 2006 Ondrej Palkovsky
2
 * Copyright (c) 2006 Ondrej Palkovsky
3
 * Copyright (c) 2008 Martin Decky
3
 * Copyright (c) 2008 Martin Decky
4
 * Copyright (c) 2008 Pavel Rimsky
4
 * Copyright (c) 2008 Pavel Rimsky
5
 * All rights reserved.
5
 * All rights reserved.
6
 *
6
 *
7
 * Redistribution and use in source and binary forms, with or without
7
 * Redistribution and use in source and binary forms, with or without
8
 * modification, are permitted provided that the following conditions
8
 * modification, are permitted provided that the following conditions
9
 * are met:
9
 * are met:
10
 *
10
 *
11
 * - Redistributions of source code must retain the above copyright
11
 * - Redistributions of source code must retain the above copyright
12
 *   notice, this list of conditions and the following disclaimer.
12
 *   notice, this list of conditions and the following disclaimer.
13
 * - Redistributions in binary form must reproduce the above copyright
13
 * - Redistributions in binary form must reproduce the above copyright
14
 *   notice, this list of conditions and the following disclaimer in the
14
 *   notice, this list of conditions and the following disclaimer in the
15
 *   documentation and/or other materials provided with the distribution.
15
 *   documentation and/or other materials provided with the distribution.
16
 * - The name of the author may not be used to endorse or promote products
16
 * - The name of the author may not be used to endorse or promote products
17
 *   derived from this software without specific prior written permission.
17
 *   derived from this software without specific prior written permission.
18
 *
18
 *
19
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
 */
29
 */
30
 
30
 
31
/**
31
/**
32
 * @defgroup serial Serial console
32
 * @defgroup serial Serial console
33
 * @brief    Serial console services (putc, puts, clear screen, cursor goto,...)
33
 * @brief    Serial console services (putc, puts, clear screen, cursor goto,...)
34
 * @{
34
 * @{
35
 */
35
 */
36
 
36
 
37
/** @file
37
/** @file
38
 */
38
 */
39
 
39
 
40
#include <stdio.h>
40
#include <stdio.h>
41
#include <ipc/ipc.h>
41
#include <ipc/ipc.h>
42
#include <async.h>
42
#include <async.h>
43
#include <ipc/fb.h>
43
#include <ipc/fb.h>
44
#include <bool.h>
44
#include <bool.h>
45
#include <errno.h>
45
#include <errno.h>
46
#include <console/color.h>
46
#include <console/color.h>
47
#include <console/style.h>
47
#include <console/style.h>
48
 
48
 
49
#include "../console/screenbuffer.h"
49
#include "../console/screenbuffer.h"
50
#include "main.h"
50
#include "main.h"
51
#include "serial_console.h"
51
#include "serial_console.h"
52
 
52
 
53
#define MAX_CONTROL 20
53
#define MAX_CONTROL 20
54
 
54
 
55
static void serial_sgr(const unsigned int mode);
55
static void serial_sgr(const unsigned int mode);
-
 
56
void serial_putchar(wchar_t ch);
56
 
57
 
57
static int scr_width;
58
static int scr_width;
58
static int scr_height;
59
static int scr_height;
59
static bool color = true;   /** True if producing color output. */
60
static bool color = true;   /** True if producing color output. */
-
 
61
static bool utf8 = false;   /** True if producing UTF8 output. */
60
static putc_function_t putc_function;
62
static putc_function_t putc_function;
61
 
63
 
62
/* Allow only 1 connection */
64
/* Allow only 1 connection */
63
static int client_connected = 0;
65
static int client_connected = 0;
64
 
66
 
65
enum sgr_color_index {
67
enum sgr_color_index {
66
    CI_BLACK    = 0,
68
    CI_BLACK    = 0,
67
    CI_RED      = 1,
69
    CI_RED      = 1,
68
    CI_GREEN    = 2,
70
    CI_GREEN    = 2,
69
    CI_BROWN    = 3,
71
    CI_BROWN    = 3,
70
    CI_BLUE     = 4,
72
    CI_BLUE     = 4,
71
    CI_MAGENTA  = 5,
73
    CI_MAGENTA  = 5,
72
    CI_CYAN     = 6,
74
    CI_CYAN     = 6,
73
    CI_WHITE    = 7,
75
    CI_WHITE    = 7,
74
};
76
};
75
 
77
 
76
enum sgr_command {
78
enum sgr_command {
77
    SGR_RESET   = 0,
79
    SGR_RESET   = 0,
78
    SGR_BOLD    = 1,
80
    SGR_BOLD    = 1,
79
    SGR_BLINK   = 5,
81
    SGR_BLINK   = 5,
80
    SGR_REVERSE = 7,
82
    SGR_REVERSE = 7,
81
    SGR_NORMAL_INT  = 22,
83
    SGR_NORMAL_INT  = 22,
82
    SGR_BLINK_OFF   = 25,
84
    SGR_BLINK_OFF   = 25,
83
    SGR_REVERSE_OFF = 27,
85
    SGR_REVERSE_OFF = 27,
84
    SGR_FGCOLOR = 30,
86
    SGR_FGCOLOR = 30,
85
    SGR_BGCOLOR = 40
87
    SGR_BGCOLOR = 40
86
};
88
};
87
 
89
 
88
static int color_map[] = {
90
static int color_map[] = {
89
    [COLOR_BLACK]   = CI_BLACK,
91
    [COLOR_BLACK]   = CI_BLACK,
90
    [COLOR_BLUE]    = CI_RED,
92
    [COLOR_BLUE]    = CI_RED,
91
    [COLOR_GREEN]   = CI_GREEN,
93
    [COLOR_GREEN]   = CI_GREEN,
92
    [COLOR_CYAN]    = CI_CYAN,
94
    [COLOR_CYAN]    = CI_CYAN,
93
    [COLOR_RED] = CI_RED,
95
    [COLOR_RED] = CI_RED,
94
    [COLOR_MAGENTA] = CI_MAGENTA,
96
    [COLOR_MAGENTA] = CI_MAGENTA,
95
    [COLOR_YELLOW]  = CI_BROWN,
97
    [COLOR_YELLOW]  = CI_BROWN,
96
    [COLOR_WHITE]   = CI_WHITE
98
    [COLOR_WHITE]   = CI_WHITE
97
};
99
};
98
 
100
 
99
void serial_puts(char *str)
101
void serial_puts(char *str)
100
{
102
{
101
    while (*str)
103
    while (*str)
102
        putc_function(*(str++));
104
        putc_function(*(str++));
103
}
105
}
104
 
106
 
105
void serial_putchar(wchar_t ch)
107
void serial_putchar(wchar_t ch)
106
{
108
{
-
 
109
    uint8_t buf[STR_BOUNDS(1)];
-
 
110
    size_t offs;
-
 
111
    size_t i;
-
 
112
 
-
 
113
    if (utf8 != true) {
-
 
114
        if (ch >= 0 && ch < 128)
-
 
115
            (*putc_function)((uint8_t) ch);
-
 
116
        else
-
 
117
            (*putc_function)('?');
-
 
118
        return;
-
 
119
    }
-
 
120
 
-
 
121
    offs = 0;
-
 
122
    if (chr_encode(ch, buf, &offs, STR_BOUNDS(1)) == EOK) {
-
 
123
        for (i = 0; i < offs; i++)
-
 
124
            (*putc_function)(buf[i]);
-
 
125
    } else {
107
    (*putc_function)(ch);
126
        (*putc_function)('?');
-
 
127
    }
-
 
128
 
108
}
129
}
109
 
130
 
110
void serial_goto(const unsigned int row, const unsigned int col)
131
void serial_goto(const unsigned int row, const unsigned int col)
111
{
132
{
112
    if ((row > scr_height) || (col > scr_width))
133
    if ((row > scr_height) || (col > scr_width))
113
        return;
134
        return;
114
   
135
   
115
    char control[MAX_CONTROL];
136
    char control[MAX_CONTROL];
116
    snprintf(control, MAX_CONTROL, "\033[%u;%uf", row + 1, col + 1);
137
    snprintf(control, MAX_CONTROL, "\033[%u;%uf", row + 1, col + 1);
117
    serial_puts(control);
138
    serial_puts(control);
118
}
139
}
119
 
140
 
120
void serial_clrscr(void)
141
void serial_clrscr(void)
121
{
142
{
122
    /* Initialize graphic rendition attributes. */
143
    /* Initialize graphic rendition attributes. */
123
    serial_sgr(SGR_RESET);
144
    serial_sgr(SGR_RESET);
124
    if (color) {
145
    if (color) {
125
        serial_sgr(SGR_FGCOLOR + CI_BLACK);
146
        serial_sgr(SGR_FGCOLOR + CI_BLACK);
126
        serial_sgr(SGR_BGCOLOR + CI_WHITE);
147
        serial_sgr(SGR_BGCOLOR + CI_WHITE);
127
    }
148
    }
128
 
149
 
129
    serial_puts("\033[2J");
150
    serial_puts("\033[2J");
130
}
151
}
131
 
152
 
132
void serial_scroll(int i)
153
void serial_scroll(int i)
133
{
154
{
134
    if (i > 0) {
155
    if (i > 0) {
135
        serial_goto(scr_height - 1, 0);
156
        serial_goto(scr_height - 1, 0);
136
        while (i--)
157
        while (i--)
137
            serial_puts("\033D");
158
            serial_puts("\033D");
138
    } else if (i < 0) {
159
    } else if (i < 0) {
139
        serial_goto(0, 0);
160
        serial_goto(0, 0);
140
        while (i++)
161
        while (i++)
141
            serial_puts("\033M");
162
            serial_puts("\033M");
142
    }
163
    }
143
}
164
}
144
 
165
 
145
/** ECMA-48 Set Graphics Rendition. */
166
/** ECMA-48 Set Graphics Rendition. */
146
static void serial_sgr(const unsigned int mode)
167
static void serial_sgr(const unsigned int mode)
147
{
168
{
148
    char control[MAX_CONTROL];
169
    char control[MAX_CONTROL];
149
    snprintf(control, MAX_CONTROL, "\033[%um", mode);
170
    snprintf(control, MAX_CONTROL, "\033[%um", mode);
150
    serial_puts(control);
171
    serial_puts(control);
151
}
172
}
152
 
173
 
153
/** Set scrolling region. */
174
/** Set scrolling region. */
154
void serial_set_scroll_region(unsigned last_row)
175
void serial_set_scroll_region(unsigned last_row)
155
{
176
{
156
    char control[MAX_CONTROL];
177
    char control[MAX_CONTROL];
157
    snprintf(control, MAX_CONTROL, "\033[0;%ur", last_row);
178
    snprintf(control, MAX_CONTROL, "\033[0;%ur", last_row);
158
    serial_puts(control);
179
    serial_puts(control);
159
}
180
}
160
 
181
 
161
void serial_cursor_disable(void)
182
void serial_cursor_disable(void)
162
{
183
{
163
    serial_puts("\033[?25l");
184
    serial_puts("\033[?25l");
164
}
185
}
165
 
186
 
166
void serial_cursor_enable(void)
187
void serial_cursor_enable(void)
167
{
188
{
168
    serial_puts("\033[?25h");
189
    serial_puts("\033[?25h");
169
}
190
}
170
 
191
 
171
void serial_console_init(putc_function_t putc_fn, uint32_t w, uint32_t h)
192
void serial_console_init(putc_function_t putc_fn, uint32_t w, uint32_t h)
172
{
193
{
173
    scr_width = w;
194
    scr_width = w;
174
    scr_height = h;
195
    scr_height = h;
175
    putc_function = putc_fn;
196
    putc_function = putc_fn;
176
}
197
}
177
 
198
 
178
static void serial_set_style(int style)
199
static void serial_set_style(int style)
179
{
200
{
180
    if (style == STYLE_EMPHASIS) {
201
    if (style == STYLE_EMPHASIS) {
181
        if (color) {
202
        if (color) {
182
            serial_sgr(SGR_RESET);
203
            serial_sgr(SGR_RESET);
183
            serial_sgr(SGR_FGCOLOR + CI_RED);
204
            serial_sgr(SGR_FGCOLOR + CI_RED);
184
            serial_sgr(SGR_BGCOLOR + CI_WHITE);
205
            serial_sgr(SGR_BGCOLOR + CI_WHITE);
185
        }
206
        }
186
        serial_sgr(SGR_BOLD);
207
        serial_sgr(SGR_BOLD);
187
    } else {
208
    } else {
188
        if (color) {
209
        if (color) {
189
            serial_sgr(SGR_RESET);
210
            serial_sgr(SGR_RESET);
190
            serial_sgr(SGR_FGCOLOR + CI_BLACK);
211
            serial_sgr(SGR_FGCOLOR + CI_BLACK);
191
            serial_sgr(SGR_BGCOLOR + CI_WHITE);
212
            serial_sgr(SGR_BGCOLOR + CI_WHITE);
192
        }
213
        }
193
        serial_sgr(SGR_NORMAL_INT);
214
        serial_sgr(SGR_NORMAL_INT);
194
    }
215
    }
195
}
216
}
196
 
217
 
197
static void serial_set_idx(unsigned fgcolor, unsigned bgcolor,
218
static void serial_set_idx(unsigned fgcolor, unsigned bgcolor,
198
    unsigned flags)
219
    unsigned flags)
199
{
220
{
200
    if (color) {
221
    if (color) {
201
        serial_sgr(SGR_RESET);
222
        serial_sgr(SGR_RESET);
202
        serial_sgr(SGR_FGCOLOR + color_map[fgcolor]);
223
        serial_sgr(SGR_FGCOLOR + color_map[fgcolor]);
203
        serial_sgr(SGR_BGCOLOR + color_map[bgcolor]);
224
        serial_sgr(SGR_BGCOLOR + color_map[bgcolor]);
204
    } else {
225
    } else {
205
        if (fgcolor < bgcolor)
226
        if (fgcolor < bgcolor)
206
            serial_sgr(SGR_RESET);
227
            serial_sgr(SGR_RESET);
207
        else
228
        else
208
            serial_sgr(SGR_REVERSE);
229
            serial_sgr(SGR_REVERSE);
209
    }  
230
    }  
210
}
231
}
211
 
232
 
212
static void serial_set_rgb(uint32_t fgcolor, uint32_t bgcolor)
233
static void serial_set_rgb(uint32_t fgcolor, uint32_t bgcolor)
213
{
234
{
214
    if (fgcolor < bgcolor)
235
    if (fgcolor < bgcolor)
215
        serial_sgr(SGR_REVERSE_OFF);
236
        serial_sgr(SGR_REVERSE_OFF);
216
    else
237
    else
217
        serial_sgr(SGR_REVERSE);   
238
        serial_sgr(SGR_REVERSE);   
218
}
239
}
219
 
240
 
220
static void serial_set_attrs(const attrs_t *a)
241
static void serial_set_attrs(const attrs_t *a)
221
{
242
{
222
    switch (a->t) {
243
    switch (a->t) {
223
    case at_style: serial_set_style(a->a.s.style); break;
244
    case at_style: serial_set_style(a->a.s.style); break;
224
    case at_rgb: serial_set_rgb(a->a.r.fg_color, a->a.r.bg_color); break;
245
    case at_rgb: serial_set_rgb(a->a.r.fg_color, a->a.r.bg_color); break;
225
    case at_idx: serial_set_idx(a->a.i.fg_color,
246
    case at_idx: serial_set_idx(a->a.i.fg_color,
226
        a->a.i.bg_color, a->a.i.flags); break;
247
        a->a.i.bg_color, a->a.i.flags); break;
227
    default: break;
248
    default: break;
228
    }
249
    }
229
}
250
}
230
 
251
 
231
/** Draw text data to viewport.
252
/** Draw text data to viewport.
232
 *
253
 *
233
 * @param vport Viewport id
254
 * @param vport Viewport id
234
 * @param data  Text data.
255
 * @param data  Text data.
235
 * @param x Leftmost column of the area.
256
 * @param x Leftmost column of the area.
236
 * @param y Topmost row of the area.
257
 * @param y Topmost row of the area.
237
 * @param w Number of rows.
258
 * @param w Number of rows.
238
 * @param h Number of columns.
259
 * @param h Number of columns.
239
 */
260
 */
240
static void draw_text_data(keyfield_t *data, unsigned int x,
261
static void draw_text_data(keyfield_t *data, unsigned int x,
241
    unsigned int y, unsigned int w, unsigned int h)
262
    unsigned int y, unsigned int w, unsigned int h)
242
{
263
{
243
    unsigned int i, j;
264
    unsigned int i, j;
244
    keyfield_t *field;
265
    keyfield_t *field;
245
    attrs_t *a0, *a1;
266
    attrs_t *a0, *a1;
246
 
267
 
247
    serial_goto(y, x);
268
    serial_goto(y, x);
248
    a0 = &data[0].attrs;
269
    a0 = &data[0].attrs;
249
    serial_set_attrs(a0);
270
    serial_set_attrs(a0);
250
 
271
 
251
    for (j = 0; j < h; j++) {
272
    for (j = 0; j < h; j++) {
252
        if (j > 0 && w != scr_width)
273
        if (j > 0 && w != scr_width)
253
            serial_goto(y, x);
274
            serial_goto(y, x);
254
 
275
 
255
        for (i = 0; i < w; i++) {
276
        for (i = 0; i < w; i++) {
256
            unsigned int col = x + i;
277
            unsigned int col = x + i;
257
            unsigned int row = y + j;
278
            unsigned int row = y + j;
258
 
279
 
259
            field = &data[j * w + i];
280
            field = &data[j * w + i];
260
 
281
 
261
            a1 = &field->attrs;
282
            a1 = &field->attrs;
262
            if (!attrs_same(*a0, *a1))
283
            if (!attrs_same(*a0, *a1))
263
                serial_set_attrs(a1);
284
                serial_set_attrs(a1);
264
            serial_putchar(field->character);
285
            serial_putchar(field->character);
265
            a0 = a1;
286
            a0 = a1;
266
        }
287
        }
267
    }
288
    }
268
}
289
}
269
 
290
 
270
int lastcol = 0;
291
int lastcol = 0;
271
int lastrow = 0;
292
int lastrow = 0;
272
 
293
 
273
/**
294
/**
274
 * Main function of the thread serving client connections.
295
 * Main function of the thread serving client connections.
275
 */
296
 */
276
void serial_client_connection(ipc_callid_t iid, ipc_call_t *icall)
297
void serial_client_connection(ipc_callid_t iid, ipc_call_t *icall)
277
{
298
{
278
    int retval;
299
    int retval;
279
    ipc_callid_t callid;
300
    ipc_callid_t callid;
280
    ipc_call_t call;
301
    ipc_call_t call;
281
    keyfield_t *interbuf = NULL;
302
    keyfield_t *interbuf = NULL;
282
    size_t intersize = 0;
303
    size_t intersize = 0;
283
 
304
 
284
    wchar_t c;
305
    wchar_t c;
285
    int col, row, w, h;
306
    int col, row, w, h;
286
    int fgcolor;
307
    int fgcolor;
287
    int bgcolor;
308
    int bgcolor;
288
    int flags;
309
    int flags;
289
    int style;
310
    int style;
290
    int i;
311
    int i;
291
 
312
 
292
   
313
   
293
    if (client_connected) {
314
    if (client_connected) {
294
        ipc_answer_0(iid, ELIMIT);
315
        ipc_answer_0(iid, ELIMIT);
295
        return;
316
        return;
296
    }
317
    }
297
   
318
   
298
    client_connected = 1;
319
    client_connected = 1;
299
    ipc_answer_0(iid, EOK);
320
    ipc_answer_0(iid, EOK);
300
   
321
   
301
    /* Clear the terminal, set scrolling region
322
    /* Clear the terminal, set scrolling region
302
       to 0 - height rows. */
323
       to 0 - height rows. */
303
    serial_clrscr();
324
    serial_clrscr();
304
    serial_goto(0, 0);
325
    serial_goto(0, 0);
305
    serial_set_scroll_region(scr_height);
326
    serial_set_scroll_region(scr_height);
306
   
327
   
307
    while (true) {
328
    while (true) {
308
        callid = async_get_call(&call);
329
        callid = async_get_call(&call);
309
        switch (IPC_GET_METHOD(call)) {
330
        switch (IPC_GET_METHOD(call)) {
310
        case IPC_M_PHONE_HUNGUP:
331
        case IPC_M_PHONE_HUNGUP:
311
            client_connected = 0;
332
            client_connected = 0;
312
            ipc_answer_0(callid, EOK);
333
            ipc_answer_0(callid, EOK);
313
            return;
334
            return;
314
        case IPC_M_SHARE_OUT:
335
        case IPC_M_SHARE_OUT:
315
            /* We accept one area for data interchange */
336
            /* We accept one area for data interchange */
316
            intersize = IPC_GET_ARG2(call);
337
            intersize = IPC_GET_ARG2(call);
317
            if (intersize >= scr_width * scr_height *
338
            if (intersize >= scr_width * scr_height *
318
                sizeof(*interbuf)) {
339
                sizeof(*interbuf)) {
319
                receive_comm_area(callid, &call,
340
                receive_comm_area(callid, &call,
320
                    (void *) &interbuf);
341
                    (void *) &interbuf);
321
                continue;
342
                continue;
322
            }
343
            }
323
            retval = EINVAL;
344
            retval = EINVAL;
324
            break;
345
            break;
325
        case FB_DRAW_TEXT_DATA:
346
        case FB_DRAW_TEXT_DATA:
326
            col = IPC_GET_ARG1(call);
347
            col = IPC_GET_ARG1(call);
327
            row = IPC_GET_ARG2(call);
348
            row = IPC_GET_ARG2(call);
328
            w = IPC_GET_ARG3(call);
349
            w = IPC_GET_ARG3(call);
329
            h = IPC_GET_ARG4(call);
350
            h = IPC_GET_ARG4(call);
330
            if (!interbuf) {
351
            if (!interbuf) {
331
                retval = EINVAL;
352
                retval = EINVAL;
332
                break;
353
                break;
333
            }
354
            }
334
            if (col + w > scr_width || row + h > scr_height) {
355
            if (col + w > scr_width || row + h > scr_height) {
335
                retval = EINVAL;
356
                retval = EINVAL;
336
                break;
357
                break;
337
            }
358
            }
338
            draw_text_data(interbuf, col, row, w, h);
359
            draw_text_data(interbuf, col, row, w, h);
339
            lastrow = row + h - 1;
360
            lastrow = row + h - 1;
340
            lastcol = col + w;
361
            lastcol = col + w;
341
            retval = 0;
362
            retval = 0;
342
            break;
363
            break;
343
        case FB_PUTCHAR:
364
        case FB_PUTCHAR:
344
            c = IPC_GET_ARG1(call);
365
            c = IPC_GET_ARG1(call);
345
            row = IPC_GET_ARG2(call);
366
            row = IPC_GET_ARG2(call);
346
            col = IPC_GET_ARG3(call);
367
            col = IPC_GET_ARG3(call);
347
            if ((lastcol != col) || (lastrow != row))
368
            if ((lastcol != col) || (lastrow != row))
348
                serial_goto(row, col);
369
                serial_goto(row, col);
349
            lastcol = col + 1;
370
            lastcol = col + 1;
350
            lastrow = row;
371
            lastrow = row;
351
            serial_putchar(c);
372
            serial_putchar(c);
352
            retval = 0;
373
            retval = 0;
353
            break;
374
            break;
354
        case FB_CURSOR_GOTO:
375
        case FB_CURSOR_GOTO:
355
            row = IPC_GET_ARG1(call);
376
            row = IPC_GET_ARG1(call);
356
            col = IPC_GET_ARG2(call);
377
            col = IPC_GET_ARG2(call);
357
            serial_goto(row, col);
378
            serial_goto(row, col);
358
            lastrow = row;
379
            lastrow = row;
359
            lastcol = col;
380
            lastcol = col;
360
            retval = 0;
381
            retval = 0;
361
            break;
382
            break;
362
        case FB_GET_CSIZE:
383
        case FB_GET_CSIZE:
363
            ipc_answer_2(callid, EOK, scr_height, scr_width);
384
            ipc_answer_2(callid, EOK, scr_height, scr_width);
364
            continue;
385
            continue;
365
        case FB_CLEAR:
386
        case FB_CLEAR:
366
            serial_clrscr();
387
            serial_clrscr();
367
            retval = 0;
388
            retval = 0;
368
            break;
389
            break;
369
        case FB_SET_STYLE:
390
        case FB_SET_STYLE:
370
            style = IPC_GET_ARG1(call);
391
            style = IPC_GET_ARG1(call);
371
            serial_set_style(style);
392
            serial_set_style(style);
372
            retval = 0;
393
            retval = 0;
373
            break;
394
            break;
374
        case FB_SET_COLOR:
395
        case FB_SET_COLOR:
375
            fgcolor = IPC_GET_ARG1(call);
396
            fgcolor = IPC_GET_ARG1(call);
376
            bgcolor = IPC_GET_ARG2(call);
397
            bgcolor = IPC_GET_ARG2(call);
377
            flags = IPC_GET_ARG3(call);
398
            flags = IPC_GET_ARG3(call);
378
 
399
 
379
            serial_set_idx(fgcolor, bgcolor, flags);
400
            serial_set_idx(fgcolor, bgcolor, flags);
380
            retval = 0;
401
            retval = 0;
381
            break;
402
            break;
382
        case FB_SET_RGB_COLOR:
403
        case FB_SET_RGB_COLOR:
383
            fgcolor = IPC_GET_ARG1(call);
404
            fgcolor = IPC_GET_ARG1(call);
384
            bgcolor = IPC_GET_ARG2(call);
405
            bgcolor = IPC_GET_ARG2(call);
385
 
406
 
386
            serial_set_rgb(fgcolor, bgcolor);
407
            serial_set_rgb(fgcolor, bgcolor);
387
            retval = 0;
408
            retval = 0;
388
            break;
409
            break;
389
        case FB_SCROLL:
410
        case FB_SCROLL:
390
            i = IPC_GET_ARG1(call);
411
            i = IPC_GET_ARG1(call);
391
            if ((i > scr_height) || (i < -scr_height)) {
412
            if ((i > scr_height) || (i < -scr_height)) {
392
                retval = EINVAL;
413
                retval = EINVAL;
393
                break;
414
                break;
394
            }
415
            }
395
            serial_scroll(i);
416
            serial_scroll(i);
396
            serial_goto(lastrow, lastcol);
417
            serial_goto(lastrow, lastcol);
397
            retval = 0;
418
            retval = 0;
398
            break;
419
            break;
399
        case FB_CURSOR_VISIBILITY:
420
        case FB_CURSOR_VISIBILITY:
400
            if(IPC_GET_ARG1(call))
421
            if(IPC_GET_ARG1(call))
401
                serial_cursor_enable();
422
                serial_cursor_enable();
402
            else
423
            else
403
                serial_cursor_disable();
424
                serial_cursor_disable();
404
            retval = 0;
425
            retval = 0;
405
            break;
426
            break;
406
        default:
427
        default:
407
            retval = ENOENT;
428
            retval = ENOENT;
408
        }
429
        }
409
        ipc_answer_0(callid, retval);
430
        ipc_answer_0(callid, retval);
410
    }
431
    }
411
}
432
}
412
 
433
 
413
/**
434
/**
414
 * @}
435
 * @}
415
 */
436
 */
416
 
437