Subversion Repositories HelenOS-historic

Rev

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

Rev 1567 Rev 1610
1
/*
1
/*
2
 * Copyright (C) 2006 Jakub Vana
2
 * Copyright (C) 2006 Jakub Vana
3
 * Copyright (C) 2006 Ondrej Palkovsky
3
 * Copyright (C) 2006 Ondrej Palkovsky
4
 * All rights reserved.
4
 * All rights reserved.
5
 *
5
 *
6
 * Redistribution and use in source and binary forms, with or without
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
7
 * modification, are permitted provided that the following conditions
8
 * are met:
8
 * are met:
9
 *
9
 *
10
 * - Redistributions of source code must retain the above copyright
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
13
 *   notice, this list of conditions and the following disclaimer in the
14
 *   documentation and/or other materials provided with the distribution.
14
 *   documentation and/or other materials provided with the distribution.
15
 * - The name of the author may not be used to endorse or promote products
15
 * - The name of the author may not be used to endorse or promote products
16
 *   derived from this software without specific prior written permission.
16
 *   derived from this software without specific prior written permission.
17
 *
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
28
 */
29
 
29
 
30
#include <stdlib.h>
30
#include <stdlib.h>
31
#include <unistd.h>
31
#include <unistd.h>
32
#include <string.h>
32
#include <string.h>
33
#include <ddi.h>
33
#include <ddi.h>
34
#include <sysinfo.h>
34
#include <sysinfo.h>
35
#include <align.h>
35
#include <align.h>
36
#include <as.h>
36
#include <as.h>
37
#include <ipc/fb.h>
37
#include <ipc/fb.h>
38
#include <ipc/ipc.h>
38
#include <ipc/ipc.h>
39
#include <ipc/ns.h>
39
#include <ipc/ns.h>
40
#include <ipc/services.h>
40
#include <ipc/services.h>
41
#include <kernel/errno.h>
41
#include <kernel/errno.h>
42
#include <async.h>
42
#include <async.h>
43
 
43
 
44
#include "font-8x16.h"
44
#include "font-8x16.h"
45
#include "helenos.xbm"
-
 
46
#include "fb.h"
45
#include "fb.h"
47
#include "main.h"
46
#include "main.h"
48
#include "../console/screenbuffer.h"
47
#include "../console/screenbuffer.h"
49
#include "ppm.h"
48
#include "ppm.h"
50
 
49
 
51
#define DEFAULT_BGCOLOR                0x000080
50
#define DEFAULT_BGCOLOR                0x000080
52
#define DEFAULT_FGCOLOR                0xffff00
51
#define DEFAULT_FGCOLOR                0xffff00
53
 
52
 
54
/***************************************************************/
53
/***************************************************************/
55
/* Pixel specific fuctions */
54
/* Pixel specific fuctions */
56
 
55
 
57
typedef void (*conv2scr_fn_t)(void *, int);
56
typedef void (*conv2scr_fn_t)(void *, int);
58
typedef int (*conv2rgb_fn_t)(void *);
57
typedef int (*conv2rgb_fn_t)(void *);
59
 
58
 
60
struct {
59
struct {
61
    __u8 *fbaddress ;
60
    __u8 *fbaddress ;
62
 
61
 
63
    unsigned int xres ;
62
    unsigned int xres ;
64
    unsigned int yres ;
63
    unsigned int yres ;
65
    unsigned int scanline ;
64
    unsigned int scanline ;
66
    unsigned int pixelbytes ;
65
    unsigned int pixelbytes ;
67
 
66
 
68
    conv2scr_fn_t rgb2scr;
67
    conv2scr_fn_t rgb2scr;
69
    conv2rgb_fn_t scr2rgb;
68
    conv2rgb_fn_t scr2rgb;
70
} screen;
69
} screen;
71
 
70
 
72
typedef struct {
71
typedef struct {
73
    int initialized;
72
    int initialized;
74
    unsigned int x, y;
73
    unsigned int x, y;
75
    unsigned int width, height;
74
    unsigned int width, height;
76
 
75
 
77
    /* Text support in window */
76
    /* Text support in window */
78
    unsigned int rows, cols;
77
    unsigned int rows, cols;
79
    /* Style for text printing */
78
    /* Style for text printing */
80
    style_t style;
79
    style_t style;
81
    /* Auto-cursor position */
80
    /* Auto-cursor position */
82
    int cursor_active, cur_col, cur_row;
81
    int cursor_active, cur_col, cur_row;
83
    int cursor_shown;
82
    int cursor_shown;
84
} viewport_t;
83
} viewport_t;
85
 
84
 
86
/** Maximum number of saved pixmaps
85
/** Maximum number of saved pixmaps
87
 * Pixmap is a saved rectangle
86
 * Pixmap is a saved rectangle
88
 */
87
 */
89
#define MAX_PIXMAPS        256
88
#define MAX_PIXMAPS        256
90
typedef struct {
89
typedef struct {
91
    unsigned int width;
90
    unsigned int width;
92
    unsigned int height;
91
    unsigned int height;
93
    __u8 *data;
92
    __u8 *data;
94
} pixmap_t;
93
} pixmap_t;
95
static pixmap_t pixmaps[MAX_PIXMAPS];
94
static pixmap_t pixmaps[MAX_PIXMAPS];
96
 
95
 
97
/* Viewport is a rectangular area on the screen */
96
/* Viewport is a rectangular area on the screen */
98
#define MAX_VIEWPORTS 128
97
#define MAX_VIEWPORTS 128
99
static viewport_t viewports[128];
98
static viewport_t viewports[128];
100
 
99
 
101
/* Allow only 1 connection */
100
/* Allow only 1 connection */
102
static int client_connected = 0;
101
static int client_connected = 0;
103
 
102
 
104
#define RED(x, bits)    ((x >> (16 + 8 - bits)) & ((1 << bits) - 1))
103
#define RED(x, bits)    ((x >> (16 + 8 - bits)) & ((1 << bits) - 1))
105
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
104
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
106
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
105
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
107
 
106
 
108
#define COL_WIDTH   8
107
#define COL_WIDTH   8
109
#define ROW_BYTES   (screen.scanline * FONT_SCANLINES)
108
#define ROW_BYTES   (screen.scanline * FONT_SCANLINES)
110
 
109
 
111
#define POINTPOS(x, y)  ((y) * screen.scanline + (x) * screen.pixelbytes)
110
#define POINTPOS(x, y)  ((y) * screen.scanline + (x) * screen.pixelbytes)
112
 
111
 
113
/* Conversion routines between different color representations */
112
/* Conversion routines between different color representations */
114
static void rgb_4byte(void *dst, int rgb)
113
static void rgb_4byte(void *dst, int rgb)
115
{
114
{
116
    *(int *)dst = rgb;
115
    *(int *)dst = rgb;
117
}
116
}
118
 
117
 
119
static int byte4_rgb(void *src)
118
static int byte4_rgb(void *src)
120
{
119
{
121
    return (*(int *)src) & 0xffffff;
120
    return (*(int *)src) & 0xffffff;
122
}
121
}
123
 
122
 
124
static void rgb_3byte(void *dst, int rgb)
123
static void rgb_3byte(void *dst, int rgb)
125
{
124
{
126
    __u8 *scr = dst;
125
    __u8 *scr = dst;
127
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
126
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
128
    scr[0] = RED(rgb, 8);
127
    scr[0] = RED(rgb, 8);
129
    scr[1] = GREEN(rgb, 8);
128
    scr[1] = GREEN(rgb, 8);
130
    scr[2] = BLUE(rgb, 8);
129
    scr[2] = BLUE(rgb, 8);
131
#else
130
#else
132
    scr[2] = RED(rgb, 8);
131
    scr[2] = RED(rgb, 8);
133
    scr[1] = GREEN(rgb, 8);
132
    scr[1] = GREEN(rgb, 8);
134
    scr[0] = BLUE(rgb, 8);
133
    scr[0] = BLUE(rgb, 8);
135
#endif
134
#endif
136
 
135
 
137
 
136
 
138
}
137
}
139
 
138
 
140
static int byte3_rgb(void *src)
139
static int byte3_rgb(void *src)
141
{
140
{
142
    __u8 *scr = src;
141
    __u8 *scr = src;
143
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
142
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
144
    return scr[0] << 16 | scr[1] << 8 | scr[2];
143
    return scr[0] << 16 | scr[1] << 8 | scr[2];
145
#else
144
#else
146
    return scr[2] << 16 | scr[1] << 8 | scr[0];
145
    return scr[2] << 16 | scr[1] << 8 | scr[0];
147
#endif  
146
#endif  
148
}
147
}
149
 
148
 
150
/**  16-bit depth (5:6:5) */
149
/**  16-bit depth (5:6:5) */
151
static void rgb_2byte(void *dst, int rgb)
150
static void rgb_2byte(void *dst, int rgb)
152
{
151
{
153
    /* 5-bit, 6-bits, 5-bits */
152
    /* 5-bit, 6-bits, 5-bits */
154
    *((__u16 *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5);
153
    *((__u16 *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5);
155
}
154
}
156
 
155
 
157
/** 16-bit depth (5:6:5) */
156
/** 16-bit depth (5:6:5) */
158
static int byte2_rgb(void *src)
157
static int byte2_rgb(void *src)
159
{
158
{
160
    int color = *(__u16 *)(src);
159
    int color = *(__u16 *)(src);
161
    return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
160
    return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
162
}
161
}
163
 
162
 
164
/** Put pixel - 8-bit depth (3:2:3) */
163
/** Put pixel - 8-bit depth (3:2:3) */
165
static void rgb_1byte(void *dst, int rgb)
164
static void rgb_1byte(void *dst, int rgb)
166
{
165
{
167
    *(__u8 *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3);
166
    *(__u8 *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3);
168
}
167
}
169
 
168
 
170
/** Return pixel color - 8-bit depth (3:2:3) */
169
/** Return pixel color - 8-bit depth (3:2:3) */
171
static int byte1_rgb(void *src)
170
static int byte1_rgb(void *src)
172
{
171
{
173
    int color = *(__u8 *)src;
172
    int color = *(__u8 *)src;
174
    return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
173
    return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
175
}
174
}
176
 
175
 
177
/** Put pixel into viewport
176
/** Put pixel into viewport
178
 *
177
 *
179
 * @param vp Viewport identification
178
 * @param vp Viewport identification
180
 * @param x X coord relative to viewport
179
 * @param x X coord relative to viewport
181
 * @param y Y coord relative to viewport
180
 * @param y Y coord relative to viewport
182
 * @param color RGB color
181
 * @param color RGB color
183
 */
182
 */
184
static void putpixel(int vp, unsigned int x, unsigned int y, int color)
183
static void putpixel(int vp, unsigned int x, unsigned int y, int color)
185
{
184
{
186
    int dx = viewports[vp].x + x;
185
    int dx = viewports[vp].x + x;
187
    int dy = viewports[vp].y + y;
186
    int dy = viewports[vp].y + y;
188
    (*screen.rgb2scr)(&screen.fbaddress[POINTPOS(dx,dy)],color);
187
    (*screen.rgb2scr)(&screen.fbaddress[POINTPOS(dx,dy)],color);
189
}
188
}
190
/** Get pixel from viewport */
189
/** Get pixel from viewport */
191
static int getpixel(int vp, unsigned int x, unsigned int y)
190
static int getpixel(int vp, unsigned int x, unsigned int y)
192
{
191
{
193
    int dx = viewports[vp].x + x;
192
    int dx = viewports[vp].x + x;
194
    int dy = viewports[vp].y + y;
193
    int dy = viewports[vp].y + y;
195
 
194
 
196
    return (*screen.scr2rgb)(&screen.fbaddress[POINTPOS(dx,dy)]);
195
    return (*screen.scr2rgb)(&screen.fbaddress[POINTPOS(dx,dy)]);
197
}
196
}
198
 
197
 
199
/** Fill line with color BGCOLOR */
198
/** Fill line with color BGCOLOR */
200
static void clear_line(int vp, unsigned int y)
199
static void clear_line(int vp, unsigned int y)
201
{
200
{
202
    unsigned int x;
201
    unsigned int x;
203
    for (x = 0; x < viewports[vp].width; x++)
202
    for (x = 0; x < viewports[vp].width; x++)
204
        putpixel(vp, x, y, viewports[vp].style.bg_color);
203
        putpixel(vp, x, y, viewports[vp].style.bg_color);
205
}
204
}
206
 
205
 
207
static void draw_rectangle(int vp, unsigned int sx, unsigned int sy,
206
static void draw_rectangle(int vp, unsigned int sx, unsigned int sy,
208
               unsigned int width, unsigned int height,
207
               unsigned int width, unsigned int height,
209
               int color)
208
               int color)
210
{
209
{
211
    unsigned int x, y;
210
    unsigned int x, y;
212
 
211
 
213
    /* Clear first line */
212
    /* Clear first line */
214
    for (x = 0; x < width; x++)
213
    for (x = 0; x < width; x++)
215
        putpixel(vp, sx + x, sy, color);
214
        putpixel(vp, sx + x, sy, color);
216
 
215
 
217
    /* Recompute to screen coords */
216
    /* Recompute to screen coords */
218
    sx += viewports[vp].x;
217
    sx += viewports[vp].x;
219
    sy += viewports[vp].y;
218
    sy += viewports[vp].y;
220
    /* Copy the rest */
219
    /* Copy the rest */
221
    for (y = sy+1;y < sy+height; y++)
220
    for (y = sy+1;y < sy+height; y++)
222
        memcpy(&screen.fbaddress[POINTPOS(sx,y)],
221
        memcpy(&screen.fbaddress[POINTPOS(sx,y)],
223
               &screen.fbaddress[POINTPOS(sx,sy)],
222
               &screen.fbaddress[POINTPOS(sx,sy)],
224
               screen.pixelbytes * width);
223
               screen.pixelbytes * width);
225
 
224
 
226
}
225
}
227
 
226
 
228
/** Fill viewport with background color */
227
/** Fill viewport with background color */
229
static void clear_port(int vp)
228
static void clear_port(int vp)
230
{
229
{
231
    viewport_t *vport = &viewports[vp];
230
    viewport_t *vport = &viewports[vp];
232
 
231
 
233
    draw_rectangle(vp, 0, 0, vport->width, vport->height, vport->style.bg_color);
232
    draw_rectangle(vp, 0, 0, vport->width, vport->height, vport->style.bg_color);
234
}
233
}
235
 
234
 
236
/** Scroll port up/down
235
/** Scroll port up/down
237
 *
236
 *
238
 * @param vp Viewport to scroll
237
 * @param vp Viewport to scroll
239
 * @param rows Positive number - scroll up, negative - scroll down
238
 * @param rows Positive number - scroll up, negative - scroll down
240
 */
239
 */
241
static void scroll_port(int vp, int rows)
240
static void scroll_port(int vp, int rows)
242
{
241
{
243
    int y;
242
    int y;
244
    int startline;
243
    int startline;
245
    int endline;
244
    int endline;
246
    viewport_t *vport = &viewports[vp];
245
    viewport_t *vport = &viewports[vp];
247
   
246
   
248
    if (rows > 0) {
247
    if (rows > 0) {
249
        for (y=vport->y; y < vport->y+vport->height - rows*FONT_SCANLINES; y++)
248
        for (y=vport->y; y < vport->y+vport->height - rows*FONT_SCANLINES; y++)
250
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
249
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
251
                   &screen.fbaddress[POINTPOS(vport->x,y + rows*FONT_SCANLINES)],
250
                   &screen.fbaddress[POINTPOS(vport->x,y + rows*FONT_SCANLINES)],
252
                   screen.pixelbytes * vport->width);
251
                   screen.pixelbytes * vport->width);
253
        draw_rectangle(vp, 0, FONT_SCANLINES*(vport->rows - 1),
252
        draw_rectangle(vp, 0, FONT_SCANLINES*(vport->rows - 1),
254
                   vport->width, FONT_SCANLINES, vport->style.bg_color);
253
                   vport->width, FONT_SCANLINES, vport->style.bg_color);
255
    } else if (rows < 0) {
254
    } else if (rows < 0) {
256
        rows = -rows;
255
        rows = -rows;
257
        for (y=vport->y + vport->height-1; y >= vport->y + rows*FONT_SCANLINES; y--)
256
        for (y=vport->y + vport->height-1; y >= vport->y + rows*FONT_SCANLINES; y--)
258
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
257
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
259
                &screen.fbaddress[POINTPOS(vport->x,y - rows*FONT_SCANLINES)],
258
                &screen.fbaddress[POINTPOS(vport->x,y - rows*FONT_SCANLINES)],
260
                screen.pixelbytes * vport->width);
259
                screen.pixelbytes * vport->width);
261
        draw_rectangle(vp, 0, 0, vport->width, FONT_SCANLINES, vport->style.bg_color);
260
        draw_rectangle(vp, 0, 0, vport->width, FONT_SCANLINES, vport->style.bg_color);
262
    }
261
    }
263
}
262
}
264
 
263
 
265
static void invert_pixel(int vp,unsigned int x, unsigned int y)
264
static void invert_pixel(int vp,unsigned int x, unsigned int y)
266
{
265
{
267
    putpixel(vp, x, y, ~getpixel(vp, x, y));
266
    putpixel(vp, x, y, ~getpixel(vp, x, y));
268
}
267
}
269
 
268
 
270
 
269
 
271
/***************************************************************/
270
/***************************************************************/
272
/* Character-console functions */
271
/* Character-console functions */
273
 
272
 
274
/** Draw character at given position
273
/** Draw character at given position
275
 *
274
 *
276
 * @param vp Viewport where the character is printed
275
 * @param vp Viewport where the character is printed
277
 * @param sx Coordinates of top-left of the character
276
 * @param sx Coordinates of top-left of the character
278
 * @param sy Coordinates of top-left of the character
277
 * @param sy Coordinates of top-left of the character
279
 * @param style Color of the character
278
 * @param style Color of the character
280
 * @param transparent If false, print background color
279
 * @param transparent If false, print background color
281
 */
280
 */
282
static void draw_glyph(int vp,__u8 glyph, unsigned int sx, unsigned int sy,
281
static void draw_glyph(int vp,__u8 glyph, unsigned int sx, unsigned int sy,
283
               style_t style, int transparent)
282
               style_t style, int transparent)
284
{
283
{
285
    int i;
284
    int i;
286
    unsigned int y;
285
    unsigned int y;
287
    unsigned int glline;
286
    unsigned int glline;
288
 
287
 
289
    for (y = 0; y < FONT_SCANLINES; y++) {
288
    for (y = 0; y < FONT_SCANLINES; y++) {
290
        glline = fb_font[glyph * FONT_SCANLINES + y];
289
        glline = fb_font[glyph * FONT_SCANLINES + y];
291
        for (i = 0; i < 8; i++) {
290
        for (i = 0; i < 8; i++) {
292
            if (glline & (1 << (7 - i)))
291
            if (glline & (1 << (7 - i)))
293
                putpixel(vp, sx + i, sy + y, style.fg_color);
292
                putpixel(vp, sx + i, sy + y, style.fg_color);
294
            else if (!transparent)
293
            else if (!transparent)
295
                putpixel(vp, sx + i, sy + y, style.bg_color);
294
                putpixel(vp, sx + i, sy + y, style.bg_color);
296
        }
295
        }
297
    }
296
    }
298
}
297
}
299
 
298
 
300
/** Invert character at given position */
299
/** Invert character at given position */
301
static void invert_char(int vp,unsigned int row, unsigned int col)
300
static void invert_char(int vp,unsigned int row, unsigned int col)
302
{
301
{
303
    unsigned int x;
302
    unsigned int x;
304
    unsigned int y;
303
    unsigned int y;
305
 
304
 
306
    for (x = 0; x < COL_WIDTH; x++)
305
    for (x = 0; x < COL_WIDTH; x++)
307
        for (y = 0; y < FONT_SCANLINES; y++)
306
        for (y = 0; y < FONT_SCANLINES; y++)
308
            invert_pixel(vp, col * COL_WIDTH + x, row * FONT_SCANLINES + y);
307
            invert_pixel(vp, col * COL_WIDTH + x, row * FONT_SCANLINES + y);
309
}
308
}
310
 
309
 
311
/***************************************************************/
310
/***************************************************************/
312
/* Stdout specific functions */
311
/* Stdout specific functions */
313
 
312
 
314
 
313
 
315
/** Create new viewport
314
/** Create new viewport
316
 *
315
 *
317
 * @return New viewport number
316
 * @return New viewport number
318
 */
317
 */
319
static int viewport_create(unsigned int x, unsigned int y,unsigned int width,
318
static int viewport_create(unsigned int x, unsigned int y,unsigned int width,
320
               unsigned int height)
319
               unsigned int height)
321
{
320
{
322
    int i;
321
    int i;
323
 
322
 
324
for (i=0; i < MAX_VIEWPORTS; i++) {
323
for (i=0; i < MAX_VIEWPORTS; i++) {
325
        if (!viewports[i].initialized)
324
        if (!viewports[i].initialized)
326
            break;
325
            break;
327
    }
326
    }
328
    if (i == MAX_VIEWPORTS)
327
    if (i == MAX_VIEWPORTS)
329
        return ELIMIT;
328
        return ELIMIT;
330
 
329
 
331
    if (width ==0 || height == 0 ||
330
    if (width ==0 || height == 0 ||
332
        x+width > screen.xres || y+height > screen.yres)
331
        x+width > screen.xres || y+height > screen.yres)
333
        return EINVAL;
332
        return EINVAL;
334
    if (width < FONT_SCANLINES || height < COL_WIDTH)
333
    if (width < FONT_SCANLINES || height < COL_WIDTH)
335
        return EINVAL;
334
        return EINVAL;
336
 
335
 
337
    viewports[i].x = x;
336
    viewports[i].x = x;
338
    viewports[i].y = y;
337
    viewports[i].y = y;
339
    viewports[i].width = width;
338
    viewports[i].width = width;
340
    viewports[i].height = height;
339
    viewports[i].height = height;
341
   
340
   
342
    viewports[i].rows = height / FONT_SCANLINES;
341
    viewports[i].rows = height / FONT_SCANLINES;
343
    viewports[i].cols = width / COL_WIDTH;
342
    viewports[i].cols = width / COL_WIDTH;
344
 
343
 
345
    viewports[i].style.bg_color = DEFAULT_BGCOLOR;
344
    viewports[i].style.bg_color = DEFAULT_BGCOLOR;
346
    viewports[i].style.fg_color = DEFAULT_FGCOLOR;
345
    viewports[i].style.fg_color = DEFAULT_FGCOLOR;
347
   
346
   
348
    viewports[i].cur_col = 0;
347
    viewports[i].cur_col = 0;
349
    viewports[i].cur_row = 0;
348
    viewports[i].cur_row = 0;
350
    viewports[i].cursor_active = 0;
349
    viewports[i].cursor_active = 0;
351
 
350
 
352
    viewports[i].initialized = 1;
351
    viewports[i].initialized = 1;
353
 
352
 
354
    return i;
353
    return i;
355
}
354
}
356
 
355
 
357
 
356
 
358
/** Initialize framebuffer as a chardev output device
357
/** Initialize framebuffer as a chardev output device
359
 *
358
 *
360
 * @param addr Address of theframebuffer
359
 * @param addr Address of theframebuffer
361
 * @param x    Screen width in pixels
360
 * @param x    Screen width in pixels
362
 * @param y    Screen height in pixels
361
 * @param y    Screen height in pixels
363
 * @param bpp  Bits per pixel (8, 16, 24, 32)
362
 * @param bpp  Bits per pixel (8, 16, 24, 32)
364
 * @param scan Bytes per one scanline
363
 * @param scan Bytes per one scanline
365
 *
364
 *
366
 */
365
 */
367
static void screen_init(void *addr, unsigned int xres, unsigned int yres, unsigned int bpp, unsigned int scan)
366
static void screen_init(void *addr, unsigned int xres, unsigned int yres, unsigned int bpp, unsigned int scan)
368
{
367
{
369
    switch (bpp) {
368
    switch (bpp) {
370
        case 8:
369
        case 8:
371
            screen.rgb2scr = rgb_1byte;
370
            screen.rgb2scr = rgb_1byte;
372
            screen.scr2rgb = byte1_rgb;
371
            screen.scr2rgb = byte1_rgb;
373
            screen.pixelbytes = 1;
372
            screen.pixelbytes = 1;
374
            break;
373
            break;
375
        case 16:
374
        case 16:
376
            screen.rgb2scr = rgb_2byte;
375
            screen.rgb2scr = rgb_2byte;
377
            screen.scr2rgb = byte2_rgb;
376
            screen.scr2rgb = byte2_rgb;
378
            screen.pixelbytes = 2;
377
            screen.pixelbytes = 2;
379
            break;
378
            break;
380
        case 24:
379
        case 24:
381
            screen.rgb2scr = rgb_3byte;
380
            screen.rgb2scr = rgb_3byte;
382
            screen.scr2rgb = byte3_rgb;
381
            screen.scr2rgb = byte3_rgb;
383
            screen.pixelbytes = 3;
382
            screen.pixelbytes = 3;
384
            break;
383
            break;
385
        case 32:
384
        case 32:
386
            screen.rgb2scr = rgb_4byte;
385
            screen.rgb2scr = rgb_4byte;
387
            screen.scr2rgb = byte4_rgb;
386
            screen.scr2rgb = byte4_rgb;
388
            screen.pixelbytes = 4;
387
            screen.pixelbytes = 4;
389
            break;
388
            break;
390
    }
389
    }
391
 
390
 
392
       
391
       
393
    screen.fbaddress = (unsigned char *) addr;
392
    screen.fbaddress = (unsigned char *) addr;
394
    screen.xres = xres;
393
    screen.xres = xres;
395
    screen.yres = yres;
394
    screen.yres = yres;
396
    screen.scanline = scan;
395
    screen.scanline = scan;
397
   
396
   
398
    /* Create first viewport */
397
    /* Create first viewport */
399
    viewport_create(0,0,xres,yres);
398
    viewport_create(0,0,xres,yres);
400
}
399
}
401
 
400
 
402
/** Hide cursor if it is shown */
401
/** Hide cursor if it is shown */
403
static void cursor_hide(int vp)
402
static void cursor_hide(int vp)
404
{
403
{
405
    viewport_t *vport = &viewports[vp];
404
    viewport_t *vport = &viewports[vp];
406
 
405
 
407
    if (vport->cursor_active && vport->cursor_shown) {
406
    if (vport->cursor_active && vport->cursor_shown) {
408
        invert_char(vp, vport->cur_row, vport->cur_col);
407
        invert_char(vp, vport->cur_row, vport->cur_col);
409
        vport->cursor_shown = 0;
408
        vport->cursor_shown = 0;
410
    }
409
    }
411
}
410
}
412
 
411
 
413
/** Show cursor if cursor showing is enabled */
412
/** Show cursor if cursor showing is enabled */
414
static void cursor_print(int vp)
413
static void cursor_print(int vp)
415
{
414
{
416
    viewport_t *vport = &viewports[vp];
415
    viewport_t *vport = &viewports[vp];
417
 
416
 
418
    /* Do not check for cursor_shown */
417
    /* Do not check for cursor_shown */
419
    if (vport->cursor_active) {
418
    if (vport->cursor_active) {
420
        invert_char(vp, vport->cur_row, vport->cur_col);
419
        invert_char(vp, vport->cur_row, vport->cur_col);
421
        vport->cursor_shown = 1;
420
        vport->cursor_shown = 1;
422
    }
421
    }
423
}
422
}
424
 
423
 
425
/** Invert cursor, if it is enabled */
424
/** Invert cursor, if it is enabled */
426
static void cursor_blink(int vp)
425
static void cursor_blink(int vp)
427
{
426
{
428
    viewport_t *vport = &viewports[vp];
427
    viewport_t *vport = &viewports[vp];
429
 
428
 
430
    if (vport->cursor_shown)
429
    if (vport->cursor_shown)
431
        cursor_hide(vp);
430
        cursor_hide(vp);
432
    else
431
    else
433
        cursor_print(vp);
432
        cursor_print(vp);
434
}
433
}
435
 
434
 
436
/** Draw character at given position relative to viewport
435
/** Draw character at given position relative to viewport
437
 *
436
 *
438
 * @param vp Viewport identification
437
 * @param vp Viewport identification
439
 * @param c Character to print
438
 * @param c Character to print
440
 * @param row Screen position relative to viewport
439
 * @param row Screen position relative to viewport
441
 * @param col Screen position relative to viewport
440
 * @param col Screen position relative to viewport
442
 * @param transparent If false, print background color with character
441
 * @param transparent If false, print background color with character
443
 */
442
 */
444
static void draw_char(int vp, char c, unsigned int row, unsigned int col, style_t style, int transparent)
443
static void draw_char(int vp, char c, unsigned int row, unsigned int col, style_t style, int transparent)
445
{
444
{
446
    viewport_t *vport = &viewports[vp];
445
    viewport_t *vport = &viewports[vp];
447
 
446
 
448
    /* Optimize - do not hide cursor if we are going to overwrite it */
447
    /* Optimize - do not hide cursor if we are going to overwrite it */
449
    if (vport->cursor_active && vport->cursor_shown &&
448
    if (vport->cursor_active && vport->cursor_shown &&
450
        (vport->cur_col != col || vport->cur_row != row))
449
        (vport->cur_col != col || vport->cur_row != row))
451
        invert_char(vp, vport->cur_row, vport->cur_col);
450
        invert_char(vp, vport->cur_row, vport->cur_col);
452
   
451
   
453
    draw_glyph(vp, c, col * COL_WIDTH, row * FONT_SCANLINES, style, transparent);
452
    draw_glyph(vp, c, col * COL_WIDTH, row * FONT_SCANLINES, style, transparent);
454
 
453
 
455
    vport->cur_col = col;
454
    vport->cur_col = col;
456
    vport->cur_row = row;
455
    vport->cur_row = row;
457
 
456
 
458
    vport->cur_col++;
457
    vport->cur_col++;
459
    if (vport->cur_col>= vport->cols) {
458
    if (vport->cur_col>= vport->cols) {
460
        vport->cur_col = 0;
459
        vport->cur_col = 0;
461
        vport->cur_row++;
460
        vport->cur_row++;
462
        if (vport->cur_row >= vport->rows)
461
        if (vport->cur_row >= vport->rows)
463
            vport->cur_row--;
462
            vport->cur_row--;
464
    }
463
    }
465
    cursor_print(vp);
464
    cursor_print(vp);
466
}
465
}
467
 
466
 
468
/** Draw text data to viewport
467
/** Draw text data to viewport
469
 *
468
 *
470
 * @param vp Viewport id
469
 * @param vp Viewport id
471
 * @param data Text data fitting exactly into viewport
470
 * @param data Text data fitting exactly into viewport
472
 */
471
 */
473
static void draw_text_data(int vp, keyfield_t *data)
472
static void draw_text_data(int vp, keyfield_t *data)
474
{
473
{
475
    viewport_t *vport = &viewports[vp];
474
    viewport_t *vport = &viewports[vp];
476
    int i;
475
    int i;
477
    char c;
476
    char c;
478
    int col,row;
477
    int col,row;
479
 
478
 
480
    clear_port(vp);
479
    clear_port(vp);
481
    for (i=0; i < vport->cols * vport->rows; i++) {
480
    for (i=0; i < vport->cols * vport->rows; i++) {
482
        if (data[i].character == ' ' && style_same(data[i].style,vport->style))
481
        if (data[i].character == ' ' && style_same(data[i].style,vport->style))
483
            continue;
482
            continue;
484
        col = i % vport->cols;
483
        col = i % vport->cols;
485
        row = i / vport->cols;
484
        row = i / vport->cols;
486
        draw_glyph(vp, data[i].character, col * COL_WIDTH, row * FONT_SCANLINES,
485
        draw_glyph(vp, data[i].character, col * COL_WIDTH, row * FONT_SCANLINES,
487
               data[i].style, style_same(data[i].style,vport->style));
486
               data[i].style, style_same(data[i].style,vport->style));
488
    }
487
    }
489
    cursor_print(vp);
488
    cursor_print(vp);
490
}
489
}
491
 
490
 
492
 
491
 
493
/** Return first free pixmap */
492
/** Return first free pixmap */
494
static int find_free_pixmap(void)
493
static int find_free_pixmap(void)
495
{
494
{
496
    int i;
495
    int i;
497
   
496
   
498
    for (i=0;i < MAX_PIXMAPS;i++)
497
    for (i=0;i < MAX_PIXMAPS;i++)
499
        if (!pixmaps[i].data)
498
        if (!pixmaps[i].data)
500
            return i;
499
            return i;
501
    return -1;
500
    return -1;
502
}
501
}
503
 
502
 
504
static void putpixel_pixmap(int pm, unsigned int x, unsigned int y, int color)
503
static void putpixel_pixmap(int pm, unsigned int x, unsigned int y, int color)
505
{
504
{
506
    pixmap_t *pmap = &pixmaps[pm];
505
    pixmap_t *pmap = &pixmaps[pm];
507
    int pos = (y * pmap->width + x) * screen.pixelbytes;
506
    int pos = (y * pmap->width + x) * screen.pixelbytes;
508
 
507
 
509
    (*screen.rgb2scr)(&pmap->data[pos],color);
508
    (*screen.rgb2scr)(&pmap->data[pos],color);
510
}
509
}
511
 
510
 
512
/** Create a new pixmap and return appropriate ID */
511
/** Create a new pixmap and return appropriate ID */
513
static int shm2pixmap(char *shm, size_t size)
512
static int shm2pixmap(char *shm, size_t size)
514
{
513
{
515
    int pm;
514
    int pm;
516
    pixmap_t *pmap;
515
    pixmap_t *pmap;
517
 
516
 
518
    pm = find_free_pixmap();
517
    pm = find_free_pixmap();
519
    if (pm == -1)
518
    if (pm == -1)
520
        return ELIMIT;
519
        return ELIMIT;
521
    pmap = &pixmaps[pm];
520
    pmap = &pixmaps[pm];
522
   
521
   
523
    if (ppm_get_data(shm, size, &pmap->width, &pmap->height))
522
    if (ppm_get_data(shm, size, &pmap->width, &pmap->height))
524
        return EINVAL;
523
        return EINVAL;
525
   
524
   
526
    pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes);
525
    pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes);
527
    if (!pmap->data)
526
    if (!pmap->data)
528
        return ENOMEM;
527
        return ENOMEM;
529
 
528
 
530
    ppm_draw(shm, size, 0, 0, pmap->width, pmap->height,
529
    ppm_draw(shm, size, 0, 0, pmap->width, pmap->height,
531
         putpixel_pixmap, pm);
530
         putpixel_pixmap, pm);
532
 
531
 
533
    return pm;
532
    return pm;
534
}
533
}
535
 
534
 
536
/** Handle shared memory communication calls
535
/** Handle shared memory communication calls
537
 *
536
 *
538
 * Protocol for drawing pixmaps:
537
 * Protocol for drawing pixmaps:
539
 * - FB_PREPARE_SHM(client shm identification)
538
 * - FB_PREPARE_SHM(client shm identification)
540
 * - IPC_M_SEND_AS_AREA
539
 * - IPC_M_SEND_AS_AREA
541
 * - FB_DRAW_PPM(startx,starty)
540
 * - FB_DRAW_PPM(startx,starty)
542
 * - FB_DROP_SHM
541
 * - FB_DROP_SHM
543
 *
542
 *
544
 * Protocol for text drawing
543
 * Protocol for text drawing
545
 * - IPC_M_SEND_AS_AREA
544
 * - IPC_M_SEND_AS_AREA
546
 * - FB_DRAW_TEXT_DATA
545
 * - FB_DRAW_TEXT_DATA
547
 *
546
 *
548
 * @param callid Callid of the current call
547
 * @param callid Callid of the current call
549
 * @param call Current call data
548
 * @param call Current call data
550
 * @param vp Active viewport
549
 * @param vp Active viewport
551
 * @return 0 if the call was not handled byt this function, 1 otherwise
550
 * @return 0 if the call was not handled byt this function, 1 otherwise
552
 *
551
 *
553
 * note: this function is not threads safe, you would have
552
 * note: this function is not threads safe, you would have
554
 * to redefine static variables with __thread
553
 * to redefine static variables with __thread
555
 */
554
 */
556
static int shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
555
static int shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
557
{
556
{
558
    static keyfield_t *interbuffer = NULL;
557
    static keyfield_t *interbuffer = NULL;
559
    static size_t intersize = 0;
558
    static size_t intersize = 0;
560
 
559
 
561
    static char *shm = NULL;
560
    static char *shm = NULL;
562
    static ipcarg_t shm_id = 0;
561
    static ipcarg_t shm_id = 0;
563
    static size_t shm_size;
562
    static size_t shm_size;
564
 
563
 
565
    int handled = 1;
564
    int handled = 1;
566
    int retval = 0;
565
    int retval = 0;
567
    viewport_t *vport = &viewports[vp];
566
    viewport_t *vport = &viewports[vp];
568
    unsigned int x,y;
567
    unsigned int x,y;
569
 
568
 
570
    switch (IPC_GET_METHOD(*call)) {
569
    switch (IPC_GET_METHOD(*call)) {
571
    case IPC_M_AS_AREA_SEND:
570
    case IPC_M_AS_AREA_SEND:
572
        /* We accept one area for data interchange */
571
        /* We accept one area for data interchange */
573
        if (IPC_GET_ARG1(*call) == shm_id) {
572
        if (IPC_GET_ARG1(*call) == shm_id) {
574
            void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
573
            void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
575
            shm_size = IPC_GET_ARG2(*call);
574
            shm_size = IPC_GET_ARG2(*call);
576
            if (!ipc_answer_fast(callid, 0, (sysarg_t)dest, 0))
575
            if (!ipc_answer_fast(callid, 0, (sysarg_t)dest, 0))
577
                shm = dest;
576
                shm = dest;
578
            else
577
            else
579
                shm_id = 0;
578
                shm_id = 0;
580
            if (shm[0] != 'P')
579
            if (shm[0] != 'P')
581
                while (1)
580
                while (1)
582
                    ;
581
                    ;
583
            return 1;
582
            return 1;
584
        } else {
583
        } else {
585
            intersize = IPC_GET_ARG2(*call);
584
            intersize = IPC_GET_ARG2(*call);
586
            receive_comm_area(callid,call,(void **)&interbuffer);
585
            receive_comm_area(callid,call,(void **)&interbuffer);
587
        }
586
        }
588
        return 1;
587
        return 1;
589
    case FB_PREPARE_SHM:
588
    case FB_PREPARE_SHM:
590
        if (shm_id)
589
        if (shm_id)
591
            retval = EBUSY;
590
            retval = EBUSY;
592
        else
591
        else
593
            shm_id = IPC_GET_ARG1(*call);
592
            shm_id = IPC_GET_ARG1(*call);
594
        break;
593
        break;
595
       
594
       
596
    case FB_DROP_SHM:
595
    case FB_DROP_SHM:
597
        if (shm) {
596
        if (shm) {
598
            as_area_destroy(shm);
597
            as_area_destroy(shm);
599
            shm = NULL;
598
            shm = NULL;
600
        }
599
        }
601
        shm_id = 0;
600
        shm_id = 0;
602
        break;
601
        break;
603
 
602
 
604
    case FB_SHM2PIXMAP:
603
    case FB_SHM2PIXMAP:
605
        if (!shm) {
604
        if (!shm) {
606
            retval = EINVAL;
605
            retval = EINVAL;
607
            break;
606
            break;
608
        }
607
        }
609
        retval = shm2pixmap(shm, shm_size);
608
        retval = shm2pixmap(shm, shm_size);
610
        break;
609
        break;
611
    case FB_DRAW_PPM:
610
    case FB_DRAW_PPM:
612
        if (!shm) {
611
        if (!shm) {
613
            retval = EINVAL;
612
            retval = EINVAL;
614
            break;
613
            break;
615
        }
614
        }
616
        x = IPC_GET_ARG1(*call);
615
        x = IPC_GET_ARG1(*call);
617
        y = IPC_GET_ARG2(*call);
616
        y = IPC_GET_ARG2(*call);
618
        if (x > vport->width || y > vport->height) {
617
        if (x > vport->width || y > vport->height) {
619
            retval = EINVAL;
618
            retval = EINVAL;
620
            break;
619
            break;
621
        }
620
        }
622
       
621
       
623
        ppm_draw(shm, shm_size, IPC_GET_ARG1(*call), IPC_GET_ARG2(*call),
622
        ppm_draw(shm, shm_size, IPC_GET_ARG1(*call), IPC_GET_ARG2(*call),
624
             vport->width - x, vport->height - y, putpixel, vp);
623
             vport->width - x, vport->height - y, putpixel, vp);
625
        break;
624
        break;
626
    case FB_DRAW_TEXT_DATA:
625
    case FB_DRAW_TEXT_DATA:
627
        if (!interbuffer) {
626
        if (!interbuffer) {
628
            retval = EINVAL;
627
            retval = EINVAL;
629
            break;
628
            break;
630
        }
629
        }
631
        if (intersize < vport->cols*vport->rows*sizeof(*interbuffer)) {
630
        if (intersize < vport->cols*vport->rows*sizeof(*interbuffer)) {
632
            retval = EINVAL;
631
            retval = EINVAL;
633
            break;
632
            break;
634
        }
633
        }
635
        draw_text_data(vp, interbuffer);
634
        draw_text_data(vp, interbuffer);
636
        break;
635
        break;
637
    default:
636
    default:
638
        handled = 0;
637
        handled = 0;
639
    }
638
    }
640
   
639
   
641
    if (handled)
640
    if (handled)
642
        ipc_answer_fast(callid, retval, 0, 0);
641
        ipc_answer_fast(callid, retval, 0, 0);
643
    return handled;
642
    return handled;
644
}
643
}
645
 
644
 
646
/** Save viewport to pixmap */
645
/** Save viewport to pixmap */
647
static int save_vp_to_pixmap(int vp)
646
static int save_vp_to_pixmap(int vp)
648
{
647
{
649
    int pm;
648
    int pm;
650
    pixmap_t *pmap;
649
    pixmap_t *pmap;
651
    viewport_t *vport = &viewports[vp];
650
    viewport_t *vport = &viewports[vp];
652
    int x,y;
651
    int x,y;
653
    int rowsize;
652
    int rowsize;
654
    int tmp;
653
    int tmp;
655
 
654
 
656
    pm = find_free_pixmap();
655
    pm = find_free_pixmap();
657
    if (pm == -1)
656
    if (pm == -1)
658
        return ELIMIT;
657
        return ELIMIT;
659
   
658
   
660
    pmap = &pixmaps[pm];
659
    pmap = &pixmaps[pm];
661
    pmap->data = malloc(screen.pixelbytes * vport->width * vport->height);
660
    pmap->data = malloc(screen.pixelbytes * vport->width * vport->height);
662
    if (!pmap->data)
661
    if (!pmap->data)
663
        return ENOMEM;
662
        return ENOMEM;
664
 
663
 
665
    pmap->width = vport->width;
664
    pmap->width = vport->width;
666
    pmap->height = vport->height;
665
    pmap->height = vport->height;
667
   
666
   
668
    rowsize = vport->width * screen.pixelbytes;
667
    rowsize = vport->width * screen.pixelbytes;
669
    for (y=0;y < vport->height; y++) {
668
    for (y=0;y < vport->height; y++) {
670
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
669
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
671
        memcpy(pmap->data + rowsize*y, screen.fbaddress + tmp, rowsize);
670
        memcpy(pmap->data + rowsize*y, screen.fbaddress + tmp, rowsize);
672
    }
671
    }
673
    return pm;
672
    return pm;
674
}
673
}
675
 
674
 
676
/** Draw pixmap on screen
675
/** Draw pixmap on screen
677
 *
676
 *
678
 * @param vp Viewport to draw on
677
 * @param vp Viewport to draw on
679
 * @param pm Pixmap identifier
678
 * @param pm Pixmap identifier
680
 */
679
 */
681
static int draw_pixmap(int vp, int pm)
680
static int draw_pixmap(int vp, int pm)
682
{
681
{
683
    pixmap_t *pmap = &pixmaps[pm];
682
    pixmap_t *pmap = &pixmaps[pm];
684
    viewport_t *vport = &viewports[vp];
683
    viewport_t *vport = &viewports[vp];
685
    int x,y;
684
    int x,y;
686
    int tmp, srcrowsize;
685
    int tmp, srcrowsize;
687
    int realwidth, realheight, realrowsize;
686
    int realwidth, realheight, realrowsize;
688
 
687
 
689
    if (!pmap->data)
688
    if (!pmap->data)
690
        return EINVAL;
689
        return EINVAL;
691
 
690
 
692
    realwidth = pmap->width <= vport->width ? pmap->width : vport->width;
691
    realwidth = pmap->width <= vport->width ? pmap->width : vport->width;
693
    realheight = pmap->height <= vport->height ? pmap->height : vport->height;
692
    realheight = pmap->height <= vport->height ? pmap->height : vport->height;
694
 
693
 
695
    srcrowsize = vport->width * screen.pixelbytes;
694
    srcrowsize = vport->width * screen.pixelbytes;
696
    realrowsize = realwidth * screen.pixelbytes;
695
    realrowsize = realwidth * screen.pixelbytes;
697
 
696
 
698
    for (y=0; y < realheight; y++) {
697
    for (y=0; y < realheight; y++) {
699
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
698
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
700
        memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
699
        memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
701
    }
700
    }
702
    return 0;
701
    return 0;
703
}
702
}
704
 
703
 
705
/** Handler for messages concerning pixmap handling */
704
/** Handler for messages concerning pixmap handling */
706
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
705
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
707
{
706
{
708
    int handled = 1;
707
    int handled = 1;
709
    int retval = 0;
708
    int retval = 0;
710
    int i,nvp;
709
    int i,nvp;
711
 
710
 
712
    switch (IPC_GET_METHOD(*call)) {
711
    switch (IPC_GET_METHOD(*call)) {
713
    case FB_VP_DRAW_PIXMAP:
712
    case FB_VP_DRAW_PIXMAP:
714
        nvp = IPC_GET_ARG1(*call);
713
        nvp = IPC_GET_ARG1(*call);
715
        if (nvp == -1)
714
        if (nvp == -1)
716
            nvp = vp;
715
            nvp = vp;
717
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized) {
716
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized) {
718
            retval = EINVAL;
717
            retval = EINVAL;
719
            break;
718
            break;
720
        }
719
        }
721
        i = IPC_GET_ARG2(*call);
720
        i = IPC_GET_ARG2(*call);
722
        retval = draw_pixmap(nvp, i);
721
        retval = draw_pixmap(nvp, i);
723
        break;
722
        break;
724
    case FB_VP2PIXMAP:
723
    case FB_VP2PIXMAP:
725
        nvp = IPC_GET_ARG1(*call);
724
        nvp = IPC_GET_ARG1(*call);
726
        if (nvp == -1)
725
        if (nvp == -1)
727
            nvp = vp;
726
            nvp = vp;
728
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized)
727
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized)
729
            retval = EINVAL;
728
            retval = EINVAL;
730
        else
729
        else
731
            retval = save_vp_to_pixmap(nvp);
730
            retval = save_vp_to_pixmap(nvp);
732
        break;
731
        break;
733
    case FB_DROP_PIXMAP:
732
    case FB_DROP_PIXMAP:
734
        i = IPC_GET_ARG1(*call);
733
        i = IPC_GET_ARG1(*call);
735
        if (i >= MAX_PIXMAPS) {
734
        if (i >= MAX_PIXMAPS) {
736
            retval = EINVAL;
735
            retval = EINVAL;
737
            break;
736
            break;
738
        }
737
        }
739
        if (pixmaps[i].data) {
738
        if (pixmaps[i].data) {
740
            free(pixmaps[i].data);
739
            free(pixmaps[i].data);
741
            pixmaps[i].data = NULL;
740
            pixmaps[i].data = NULL;
742
        }
741
        }
743
        break;
742
        break;
744
    default:
743
    default:
745
        handled = 0;
744
        handled = 0;
746
    }
745
    }
747
 
746
 
748
    if (handled)
747
    if (handled)
749
        ipc_answer_fast(callid, retval, 0, 0);
748
        ipc_answer_fast(callid, retval, 0, 0);
750
    return handled;
749
    return handled;
751
   
750
   
752
}
751
}
753
 
752
 
754
/** Function for handling connections to FB
753
/** Function for handling connections to FB
755
 *
754
 *
756
 */
755
 */
757
static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
756
static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
758
{
757
{
759
    ipc_callid_t callid;
758
    ipc_callid_t callid;
760
    ipc_call_t call;
759
    ipc_call_t call;
761
    int retval;
760
    int retval;
762
    int i;
761
    int i;
763
    unsigned int row,col;
762
    unsigned int row,col;
764
    char c;
763
    char c;
765
 
764
 
766
    int vp = 0;
765
    int vp = 0;
767
    viewport_t *vport = &viewports[0];
766
    viewport_t *vport = &viewports[0];
768
 
767
 
769
    if (client_connected) {
768
    if (client_connected) {
770
        ipc_answer_fast(iid, ELIMIT, 0,0);
769
        ipc_answer_fast(iid, ELIMIT, 0,0);
771
        return;
770
        return;
772
    }
771
    }
773
    client_connected = 1;
772
    client_connected = 1;
774
    ipc_answer_fast(iid, 0, 0, 0); /* Accept connection */
773
    ipc_answer_fast(iid, 0, 0, 0); /* Accept connection */
775
 
774
 
776
    while (1) {
775
    while (1) {
777
        callid = async_get_call_timeout(&call,250000);
776
        callid = async_get_call_timeout(&call,250000);
778
        if (!callid) {
777
        if (!callid) {
779
            cursor_blink(vp);
778
            cursor_blink(vp);
780
            continue;
779
            continue;
781
        }
780
        }
782
        if (shm_handle(callid, &call, vp))
781
        if (shm_handle(callid, &call, vp))
783
            continue;
782
            continue;
784
        if (pixmap_handle(callid, &call, vp))
783
        if (pixmap_handle(callid, &call, vp))
785
            continue;
784
            continue;
786
 
785
 
787
        switch (IPC_GET_METHOD(call)) {
786
        switch (IPC_GET_METHOD(call)) {
788
        case IPC_M_PHONE_HUNGUP:
787
        case IPC_M_PHONE_HUNGUP:
789
            client_connected = 0;
788
            client_connected = 0;
790
            /* cleanup other viewports */
789
            /* cleanup other viewports */
791
            for (i=1; i < MAX_VIEWPORTS; i++)
790
            for (i=1; i < MAX_VIEWPORTS; i++)
792
                vport->initialized = 0;
791
                vport->initialized = 0;
793
            ipc_answer_fast(callid,0,0,0);
792
            ipc_answer_fast(callid,0,0,0);
794
            return; /* Exit thread */
793
            return; /* Exit thread */
795
 
794
 
796
        case FB_PUTCHAR:
795
        case FB_PUTCHAR:
797
        case FB_TRANS_PUTCHAR:
796
        case FB_TRANS_PUTCHAR:
798
            c = IPC_GET_ARG1(call);
797
            c = IPC_GET_ARG1(call);
799
            row = IPC_GET_ARG2(call);
798
            row = IPC_GET_ARG2(call);
800
            col = IPC_GET_ARG3(call);
799
            col = IPC_GET_ARG3(call);
801
            if (row >= vport->rows || col >= vport->cols) {
800
            if (row >= vport->rows || col >= vport->cols) {
802
                retval = EINVAL;
801
                retval = EINVAL;
803
                break;
802
                break;
804
            }
803
            }
805
            ipc_answer_fast(callid,0,0,0);
804
            ipc_answer_fast(callid,0,0,0);
806
 
805
 
807
            draw_char(vp, c, row, col, vport->style, IPC_GET_METHOD(call) == FB_TRANS_PUTCHAR);
806
            draw_char(vp, c, row, col, vport->style, IPC_GET_METHOD(call) == FB_TRANS_PUTCHAR);
808
            continue; /* msg already answered */
807
            continue; /* msg already answered */
809
        case FB_CLEAR:
808
        case FB_CLEAR:
810
            clear_port(vp);
809
            clear_port(vp);
811
            cursor_print(vp);
810
            cursor_print(vp);
812
            retval = 0;
811
            retval = 0;
813
            break;
812
            break;
814
        case FB_CURSOR_GOTO:
813
        case FB_CURSOR_GOTO:
815
            row = IPC_GET_ARG1(call);
814
            row = IPC_GET_ARG1(call);
816
            col = IPC_GET_ARG2(call);
815
            col = IPC_GET_ARG2(call);
817
            if (row >= vport->rows || col >= vport->cols) {
816
            if (row >= vport->rows || col >= vport->cols) {
818
                retval = EINVAL;
817
                retval = EINVAL;
819
                break;
818
                break;
820
            }
819
            }
821
            retval = 0;
820
            retval = 0;
822
            cursor_hide(vp);
821
            cursor_hide(vp);
823
            vport->cur_col = col;
822
            vport->cur_col = col;
824
            vport->cur_row = row;
823
            vport->cur_row = row;
825
            cursor_print(vp);
824
            cursor_print(vp);
826
            break;
825
            break;
827
        case FB_CURSOR_VISIBILITY:
826
        case FB_CURSOR_VISIBILITY:
828
            cursor_hide(vp);
827
            cursor_hide(vp);
829
            vport->cursor_active = IPC_GET_ARG1(call);
828
            vport->cursor_active = IPC_GET_ARG1(call);
830
            cursor_print(vp);
829
            cursor_print(vp);
831
            retval = 0;
830
            retval = 0;
832
            break;
831
            break;
833
        case FB_GET_CSIZE:
832
        case FB_GET_CSIZE:
834
            ipc_answer_fast(callid, 0, vport->rows, vport->cols);
833
            ipc_answer_fast(callid, 0, vport->rows, vport->cols);
835
            continue;
834
            continue;
836
        case FB_SCROLL:
835
        case FB_SCROLL:
837
            i = IPC_GET_ARG1(call);
836
            i = IPC_GET_ARG1(call);
838
            if (i > vport->rows || i < (- (int)vport->rows)) {
837
            if (i > vport->rows || i < (- (int)vport->rows)) {
839
                retval = EINVAL;
838
                retval = EINVAL;
840
                break;
839
                break;
841
            }
840
            }
842
            cursor_hide(vp);
841
            cursor_hide(vp);
843
            scroll_port(vp, i);
842
            scroll_port(vp, i);
844
            cursor_print(vp);
843
            cursor_print(vp);
845
            retval = 0;
844
            retval = 0;
846
            break;
845
            break;
847
        case FB_VIEWPORT_SWITCH:
846
        case FB_VIEWPORT_SWITCH:
848
            i = IPC_GET_ARG1(call);
847
            i = IPC_GET_ARG1(call);
849
            if (i < 0 || i >= MAX_VIEWPORTS) {
848
            if (i < 0 || i >= MAX_VIEWPORTS) {
850
                retval = EINVAL;
849
                retval = EINVAL;
851
                break;
850
                break;
852
            }
851
            }
853
            if (! viewports[i].initialized ) {
852
            if (! viewports[i].initialized ) {
854
                retval = EADDRNOTAVAIL;
853
                retval = EADDRNOTAVAIL;
855
                break;
854
                break;
856
            }
855
            }
857
            cursor_hide(vp);
856
            cursor_hide(vp);
858
            vp = i;
857
            vp = i;
859
            vport = &viewports[vp];
858
            vport = &viewports[vp];
860
            cursor_print(vp);
859
            cursor_print(vp);
861
            retval = 0;
860
            retval = 0;
862
            break;
861
            break;
863
        case FB_VIEWPORT_CREATE:
862
        case FB_VIEWPORT_CREATE:
864
            retval = viewport_create(IPC_GET_ARG1(call) >> 16,
863
            retval = viewport_create(IPC_GET_ARG1(call) >> 16,
865
                         IPC_GET_ARG1(call) & 0xffff,
864
                         IPC_GET_ARG1(call) & 0xffff,
866
                         IPC_GET_ARG2(call) >> 16,
865
                         IPC_GET_ARG2(call) >> 16,
867
                         IPC_GET_ARG2(call) & 0xffff);
866
                         IPC_GET_ARG2(call) & 0xffff);
868
            break;
867
            break;
869
        case FB_VIEWPORT_DELETE:
868
        case FB_VIEWPORT_DELETE:
870
            i = IPC_GET_ARG1(call);
869
            i = IPC_GET_ARG1(call);
871
            if (i < 0 || i >= MAX_VIEWPORTS) {
870
            if (i < 0 || i >= MAX_VIEWPORTS) {
872
                retval = EINVAL;
871
                retval = EINVAL;
873
                break;
872
                break;
874
            }
873
            }
875
            if (! viewports[i].initialized ) {
874
            if (! viewports[i].initialized ) {
876
                retval = EADDRNOTAVAIL;
875
                retval = EADDRNOTAVAIL;
877
                break;
876
                break;
878
            }
877
            }
879
            viewports[i].initialized = 0;
878
            viewports[i].initialized = 0;
880
            retval = 0;
879
            retval = 0;
881
            break;
880
            break;
882
        case FB_SET_STYLE:
881
        case FB_SET_STYLE:
883
            vport->style.fg_color = IPC_GET_ARG1(call);
882
            vport->style.fg_color = IPC_GET_ARG1(call);
884
            vport->style.bg_color = IPC_GET_ARG2(call);
883
            vport->style.bg_color = IPC_GET_ARG2(call);
885
            retval = 0;
884
            retval = 0;
886
            break;
885
            break;
887
        case FB_GET_RESOLUTION:
886
        case FB_GET_RESOLUTION:
888
            ipc_answer_fast(callid, 0, screen.xres,screen.yres);
887
            ipc_answer_fast(callid, 0, screen.xres,screen.yres);
889
            continue;
888
            continue;
890
        default:
889
        default:
891
            retval = ENOENT;
890
            retval = ENOENT;
892
        }
891
        }
893
        ipc_answer_fast(callid,retval,0,0);
892
        ipc_answer_fast(callid,retval,0,0);
894
    }
893
    }
895
}
894
}
896
 
895
 
897
/** Initialization of framebuffer */
896
/** Initialization of framebuffer */
898
int fb_init(void)
897
int fb_init(void)
899
{
898
{
900
    void *fb_ph_addr;
899
    void *fb_ph_addr;
901
    unsigned int fb_width;
900
    unsigned int fb_width;
902
    unsigned int fb_height;
901
    unsigned int fb_height;
903
    unsigned int fb_bpp;
902
    unsigned int fb_bpp;
904
    unsigned int fb_scanline;
903
    unsigned int fb_scanline;
905
    void *fb_addr;
904
    void *fb_addr;
906
    size_t asz;
905
    size_t asz;
907
 
906
 
908
    async_set_client_connection(fb_client_connection);
907
    async_set_client_connection(fb_client_connection);
909
 
908
 
910
    fb_ph_addr=(void *)sysinfo_value("fb.address.physical");
909
    fb_ph_addr=(void *)sysinfo_value("fb.address.physical");
911
    fb_width=sysinfo_value("fb.width");
910
    fb_width=sysinfo_value("fb.width");
912
    fb_height=sysinfo_value("fb.height");
911
    fb_height=sysinfo_value("fb.height");
913
    fb_bpp=sysinfo_value("fb.bpp");
912
    fb_bpp=sysinfo_value("fb.bpp");
914
    fb_scanline=sysinfo_value("fb.scanline");
913
    fb_scanline=sysinfo_value("fb.scanline");
915
 
914
 
916
    asz = fb_scanline*fb_height;
915
    asz = fb_scanline*fb_height;
917
    fb_addr = as_get_mappable_page(asz);
916
    fb_addr = as_get_mappable_page(asz);
918
   
917
   
919
    map_physmem(fb_ph_addr, fb_addr, ALIGN_UP(asz,PAGE_SIZE) >>PAGE_WIDTH,
918
    map_physmem(fb_ph_addr, fb_addr, ALIGN_UP(asz,PAGE_SIZE) >>PAGE_WIDTH,
920
            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);
919
            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);
921
   
920
   
922
    screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline);
921
    screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline);
923
 
922
 
924
    return 0;
923
    return 0;
925
}
924
}
926
 
925
 
927
 
926