Subversion Repositories HelenOS-historic

Rev

Rev 1740 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1740 Rev 1781
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
/**
30
/**
31
 * @defgroup fb Graphical framebuffer
31
 * @defgroup fb Graphical framebuffer
32
 * @brief   HelenOS graphical framebuffer.
32
 * @brief   HelenOS graphical framebuffer.
33
 * @ingroup fbs
33
 * @ingroup fbs
34
 * @{
34
 * @{
35
 */
35
 */
36
/** @file
36
/** @file
37
 */
37
 */
38
 
38
 
39
 
39
 
40
#include <stdlib.h>
40
#include <stdlib.h>
41
#include <unistd.h>
41
#include <unistd.h>
42
#include <string.h>
42
#include <string.h>
43
#include <ddi.h>
43
#include <ddi.h>
44
#include <sysinfo.h>
44
#include <sysinfo.h>
45
#include <align.h>
45
#include <align.h>
46
#include <as.h>
46
#include <as.h>
47
#include <ipc/fb.h>
47
#include <ipc/fb.h>
48
#include <ipc/ipc.h>
48
#include <ipc/ipc.h>
49
#include <ipc/ns.h>
49
#include <ipc/ns.h>
50
#include <ipc/services.h>
50
#include <ipc/services.h>
51
#include <kernel/errno.h>
51
#include <kernel/errno.h>
52
#include <async.h>
52
#include <async.h>
53
 
53
 
54
#include "font-8x16.h"
54
#include "font-8x16.h"
55
#include "fb.h"
55
#include "fb.h"
56
#include "main.h"
56
#include "main.h"
57
#include "../console/screenbuffer.h"
57
#include "../console/screenbuffer.h"
58
#include "ppm.h"
58
#include "ppm.h"
59
 
59
 
60
#include "pointer.xbm"
60
#include "pointer.xbm"
61
#include "pointer_mask.xbm"
61
#include "pointer_mask.xbm"
62
 
62
 
63
#define DEFAULT_BGCOLOR                0xf0f0f0
63
#define DEFAULT_BGCOLOR                0xf0f0f0
64
#define DEFAULT_FGCOLOR                0x0
64
#define DEFAULT_FGCOLOR                0x0
65
 
65
 
66
/***************************************************************/
66
/***************************************************************/
67
/* Pixel specific fuctions */
67
/* Pixel specific fuctions */
68
 
68
 
69
typedef void (*conv2scr_fn_t)(void *, int);
69
typedef void (*conv2scr_fn_t)(void *, int);
70
typedef int (*conv2rgb_fn_t)(void *);
70
typedef int (*conv2rgb_fn_t)(void *);
71
 
71
 
72
struct {
72
struct {
73
    __u8 *fbaddress ;
73
    uint8_t *fbaddress ;
74
 
74
 
75
    unsigned int xres ;
75
    unsigned int xres ;
76
    unsigned int yres ;
76
    unsigned int yres ;
77
    unsigned int scanline ;
77
    unsigned int scanline ;
78
    unsigned int pixelbytes ;
78
    unsigned int pixelbytes ;
79
 
79
 
80
    conv2scr_fn_t rgb2scr;
80
    conv2scr_fn_t rgb2scr;
81
    conv2rgb_fn_t scr2rgb;
81
    conv2rgb_fn_t scr2rgb;
82
} screen;
82
} screen;
83
 
83
 
84
typedef struct {
84
typedef struct {
85
    int initialized;
85
    int initialized;
86
    unsigned int x, y;
86
    unsigned int x, y;
87
    unsigned int width, height;
87
    unsigned int width, height;
88
 
88
 
89
    /* Text support in window */
89
    /* Text support in window */
90
    unsigned int rows, cols;
90
    unsigned int rows, cols;
91
    /* Style for text printing */
91
    /* Style for text printing */
92
    style_t style;
92
    style_t style;
93
    /* Auto-cursor position */
93
    /* Auto-cursor position */
94
    int cursor_active, cur_col, cur_row;
94
    int cursor_active, cur_col, cur_row;
95
    int cursor_shown;
95
    int cursor_shown;
96
    /* Double buffering */
96
    /* Double buffering */
97
    __u8 *dbdata;
97
    uint8_t *dbdata;
98
    unsigned int dboffset;
98
    unsigned int dboffset;
99
    unsigned int paused;
99
    unsigned int paused;
100
} viewport_t;
100
} viewport_t;
101
 
101
 
102
#define MAX_ANIM_LEN    8
102
#define MAX_ANIM_LEN    8
103
#define MAX_ANIMATIONS  4
103
#define MAX_ANIMATIONS  4
104
typedef struct {
104
typedef struct {
105
    int initialized;
105
    int initialized;
106
    int enabled;
106
    int enabled;
107
    unsigned int vp;
107
    unsigned int vp;
108
 
108
 
109
    unsigned int pos;
109
    unsigned int pos;
110
    unsigned int animlen;
110
    unsigned int animlen;
111
    unsigned int pixmaps[MAX_ANIM_LEN];
111
    unsigned int pixmaps[MAX_ANIM_LEN];
112
} animation_t;
112
} animation_t;
113
static animation_t animations[MAX_ANIMATIONS];
113
static animation_t animations[MAX_ANIMATIONS];
114
static int anims_enabled;
114
static int anims_enabled;
115
 
115
 
116
/** Maximum number of saved pixmaps
116
/** Maximum number of saved pixmaps
117
 * Pixmap is a saved rectangle
117
 * Pixmap is a saved rectangle
118
 */
118
 */
119
#define MAX_PIXMAPS        256
119
#define MAX_PIXMAPS        256
120
typedef struct {
120
typedef struct {
121
    unsigned int width;
121
    unsigned int width;
122
    unsigned int height;
122
    unsigned int height;
123
    __u8 *data;
123
    uint8_t *data;
124
} pixmap_t;
124
} pixmap_t;
125
static pixmap_t pixmaps[MAX_PIXMAPS];
125
static pixmap_t pixmaps[MAX_PIXMAPS];
126
 
126
 
127
/* Viewport is a rectangular area on the screen */
127
/* Viewport is a rectangular area on the screen */
128
#define MAX_VIEWPORTS 128
128
#define MAX_VIEWPORTS 128
129
static viewport_t viewports[128];
129
static viewport_t viewports[128];
130
 
130
 
131
/* Allow only 1 connection */
131
/* Allow only 1 connection */
132
static int client_connected = 0;
132
static int client_connected = 0;
133
 
133
 
134
#define RED(x, bits)    ((x >> (16 + 8 - bits)) & ((1 << bits) - 1))
134
#define RED(x, bits)    ((x >> (16 + 8 - bits)) & ((1 << bits) - 1))
135
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
135
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
136
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
136
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
137
 
137
 
138
#define COL_WIDTH   8
138
#define COL_WIDTH   8
139
#define ROW_BYTES   (screen.scanline * FONT_SCANLINES)
139
#define ROW_BYTES   (screen.scanline * FONT_SCANLINES)
140
 
140
 
141
#define POINTPOS(x, y)  ((y) * screen.scanline + (x) * screen.pixelbytes)
141
#define POINTPOS(x, y)  ((y) * screen.scanline + (x) * screen.pixelbytes)
142
 
142
 
143
/* Conversion routines between different color representations */
143
/* Conversion routines between different color representations */
144
static void rgb_4byte(void *dst, int rgb)
144
static void rgb_4byte(void *dst, int rgb)
145
{
145
{
146
    *(int *)dst = rgb;
146
    *(int *)dst = rgb;
147
}
147
}
148
 
148
 
149
static int byte4_rgb(void *src)
149
static int byte4_rgb(void *src)
150
{
150
{
151
    return (*(int *)src) & 0xffffff;
151
    return (*(int *)src) & 0xffffff;
152
}
152
}
153
 
153
 
154
static void rgb_3byte(void *dst, int rgb)
154
static void rgb_3byte(void *dst, int rgb)
155
{
155
{
156
    __u8 *scr = dst;
156
    uint8_t *scr = dst;
157
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
157
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
158
    scr[0] = RED(rgb, 8);
158
    scr[0] = RED(rgb, 8);
159
    scr[1] = GREEN(rgb, 8);
159
    scr[1] = GREEN(rgb, 8);
160
    scr[2] = BLUE(rgb, 8);
160
    scr[2] = BLUE(rgb, 8);
161
#else
161
#else
162
    scr[2] = RED(rgb, 8);
162
    scr[2] = RED(rgb, 8);
163
    scr[1] = GREEN(rgb, 8);
163
    scr[1] = GREEN(rgb, 8);
164
    scr[0] = BLUE(rgb, 8);
164
    scr[0] = BLUE(rgb, 8);
165
#endif
165
#endif
166
 
166
 
167
 
167
 
168
}
168
}
169
 
169
 
170
static int byte3_rgb(void *src)
170
static int byte3_rgb(void *src)
171
{
171
{
172
    __u8 *scr = src;
172
    uint8_t *scr = src;
173
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
173
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
174
    return scr[0] << 16 | scr[1] << 8 | scr[2];
174
    return scr[0] << 16 | scr[1] << 8 | scr[2];
175
#else
175
#else
176
    return scr[2] << 16 | scr[1] << 8 | scr[0];
176
    return scr[2] << 16 | scr[1] << 8 | scr[0];
177
#endif  
177
#endif  
178
}
178
}
179
 
179
 
180
/**  16-bit depth (5:6:5) */
180
/**  16-bit depth (5:6:5) */
181
static void rgb_2byte(void *dst, int rgb)
181
static void rgb_2byte(void *dst, int rgb)
182
{
182
{
183
    /* 5-bit, 6-bits, 5-bits */
183
    /* 5-bit, 6-bits, 5-bits */
184
    *((__u16 *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5);
184
    *((uint16_t *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5);
185
}
185
}
186
 
186
 
187
/** 16-bit depth (5:6:5) */
187
/** 16-bit depth (5:6:5) */
188
static int byte2_rgb(void *src)
188
static int byte2_rgb(void *src)
189
{
189
{
190
    int color = *(__u16 *)(src);
190
    int color = *(uint16_t *)(src);
191
    return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
191
    return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
192
}
192
}
193
 
193
 
194
/** Put pixel - 8-bit depth (3:2:3) */
194
/** Put pixel - 8-bit depth (3:2:3) */
195
static void rgb_1byte(void *dst, int rgb)
195
static void rgb_1byte(void *dst, int rgb)
196
{
196
{
197
    *(__u8 *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3);
197
    *(uint8_t *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3);
198
}
198
}
199
 
199
 
200
/** Return pixel color - 8-bit depth (3:2:3) */
200
/** Return pixel color - 8-bit depth (3:2:3) */
201
static int byte1_rgb(void *src)
201
static int byte1_rgb(void *src)
202
{
202
{
203
    int color = *(__u8 *)src;
203
    int color = *(uint8_t *)src;
204
    return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
204
    return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
205
}
205
}
206
 
206
 
207
/** Put pixel into viewport
207
/** Put pixel into viewport
208
 *
208
 *
209
 * @param vport Viewport identification
209
 * @param vport Viewport identification
210
 * @param x X coord relative to viewport
210
 * @param x X coord relative to viewport
211
 * @param y Y coord relative to viewport
211
 * @param y Y coord relative to viewport
212
 * @param color RGB color
212
 * @param color RGB color
213
 */
213
 */
214
static void putpixel(viewport_t *vport, unsigned int x, unsigned int y, int color)
214
static void putpixel(viewport_t *vport, unsigned int x, unsigned int y, int color)
215
{
215
{
216
    int dx = vport->x + x;
216
    int dx = vport->x + x;
217
    int dy = vport->y + y;
217
    int dy = vport->y + y;
218
 
218
 
219
    if (! (vport->paused && vport->dbdata))
219
    if (! (vport->paused && vport->dbdata))
220
        (*screen.rgb2scr)(&screen.fbaddress[POINTPOS(dx,dy)],color);
220
        (*screen.rgb2scr)(&screen.fbaddress[POINTPOS(dx,dy)],color);
221
 
221
 
222
    if (vport->dbdata) {
222
    if (vport->dbdata) {
223
        int dline = (y + vport->dboffset) % vport->height;
223
        int dline = (y + vport->dboffset) % vport->height;
224
        int doffset = screen.pixelbytes * (dline * vport->width + x);
224
        int doffset = screen.pixelbytes * (dline * vport->width + x);
225
        (*screen.rgb2scr)(&vport->dbdata[doffset],color);
225
        (*screen.rgb2scr)(&vport->dbdata[doffset],color);
226
    }
226
    }
227
}
227
}
228
 
228
 
229
/** Get pixel from viewport */
229
/** Get pixel from viewport */
230
static int getpixel(viewport_t *vport, unsigned int x, unsigned int y)
230
static int getpixel(viewport_t *vport, unsigned int x, unsigned int y)
231
{
231
{
232
    int dx = vport->x + x;
232
    int dx = vport->x + x;
233
    int dy = vport->y + y;
233
    int dy = vport->y + y;
234
 
234
 
235
    return (*screen.scr2rgb)(&screen.fbaddress[POINTPOS(dx,dy)]);
235
    return (*screen.scr2rgb)(&screen.fbaddress[POINTPOS(dx,dy)]);
236
}
236
}
237
 
237
 
238
static inline void putpixel_mem(char *mem, unsigned int x, unsigned int y,
238
static inline void putpixel_mem(char *mem, unsigned int x, unsigned int y,
239
                int color)
239
                int color)
240
{
240
{
241
    (*screen.rgb2scr)(&mem[POINTPOS(x,y)],color);
241
    (*screen.rgb2scr)(&mem[POINTPOS(x,y)],color);
242
}
242
}
243
 
243
 
244
static void draw_rectangle(viewport_t *vport, unsigned int sx, unsigned int sy,
244
static void draw_rectangle(viewport_t *vport, unsigned int sx, unsigned int sy,
245
               unsigned int width, unsigned int height,
245
               unsigned int width, unsigned int height,
246
               int color)
246
               int color)
247
{
247
{
248
    unsigned int x, y;
248
    unsigned int x, y;
249
    static void *tmpline;
249
    static void *tmpline;
250
 
250
 
251
    if (!tmpline)
251
    if (!tmpline)
252
        tmpline = malloc(screen.scanline*screen.pixelbytes);
252
        tmpline = malloc(screen.scanline*screen.pixelbytes);
253
 
253
 
254
    /* Clear first line */
254
    /* Clear first line */
255
    for (x = 0; x < width; x++)
255
    for (x = 0; x < width; x++)
256
        putpixel_mem(tmpline, x, 0, color);
256
        putpixel_mem(tmpline, x, 0, color);
257
 
257
 
258
    if (!vport->paused) {
258
    if (!vport->paused) {
259
        /* Recompute to screen coords */
259
        /* Recompute to screen coords */
260
        sx += vport->x;
260
        sx += vport->x;
261
        sy += vport->y;
261
        sy += vport->y;
262
        /* Copy the rest */
262
        /* Copy the rest */
263
        for (y = sy;y < sy+height; y++)
263
        for (y = sy;y < sy+height; y++)
264
            memcpy(&screen.fbaddress[POINTPOS(sx,y)], tmpline,
264
            memcpy(&screen.fbaddress[POINTPOS(sx,y)], tmpline,
265
                   screen.pixelbytes * width);
265
                   screen.pixelbytes * width);
266
    }
266
    }
267
    if (vport->dbdata) {
267
    if (vport->dbdata) {
268
        for (y=sy;y < sy+height; y++) {
268
        for (y=sy;y < sy+height; y++) {
269
            int rline = (y + vport->dboffset) % vport->height;
269
            int rline = (y + vport->dboffset) % vport->height;
270
            int rpos = (rline * vport->width + sx) * screen.pixelbytes;
270
            int rpos = (rline * vport->width + sx) * screen.pixelbytes;
271
            memcpy(&vport->dbdata[rpos], tmpline, screen.pixelbytes * width);
271
            memcpy(&vport->dbdata[rpos], tmpline, screen.pixelbytes * width);
272
        }
272
        }
273
    }
273
    }
274
 
274
 
275
}
275
}
276
 
276
 
277
/** Fill viewport with background color */
277
/** Fill viewport with background color */
278
static void clear_port(viewport_t *vport)
278
static void clear_port(viewport_t *vport)
279
{
279
{
280
    draw_rectangle(vport, 0, 0, vport->width, vport->height, vport->style.bg_color);
280
    draw_rectangle(vport, 0, 0, vport->width, vport->height, vport->style.bg_color);
281
}
281
}
282
 
282
 
283
/** Scroll unbuffered viewport up/down
283
/** Scroll unbuffered viewport up/down
284
 *
284
 *
285
 * @param vport Viewport to scroll
285
 * @param vport Viewport to scroll
286
 * @param lines Positive number - scroll up, negative - scroll down
286
 * @param lines Positive number - scroll up, negative - scroll down
287
 */
287
 */
288
static void scroll_port_nodb(viewport_t *vport, int lines)
288
static void scroll_port_nodb(viewport_t *vport, int lines)
289
{
289
{
290
    int y;
290
    int y;
291
 
291
 
292
    if (lines > 0) {
292
    if (lines > 0) {
293
        for (y=vport->y; y < vport->y+vport->height - lines; y++)
293
        for (y=vport->y; y < vport->y+vport->height - lines; y++)
294
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
294
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
295
                   &screen.fbaddress[POINTPOS(vport->x,y + lines)],
295
                   &screen.fbaddress[POINTPOS(vport->x,y + lines)],
296
                   screen.pixelbytes * vport->width);
296
                   screen.pixelbytes * vport->width);
297
        draw_rectangle(vport, 0, vport->height - lines,
297
        draw_rectangle(vport, 0, vport->height - lines,
298
                   vport->width, lines, vport->style.bg_color);
298
                   vport->width, lines, vport->style.bg_color);
299
    } else if (lines < 0) {
299
    } else if (lines < 0) {
300
        lines = -lines;
300
        lines = -lines;
301
        for (y=vport->y + vport->height-1; y >= vport->y + lines; y--)
301
        for (y=vport->y + vport->height-1; y >= vport->y + lines; y--)
302
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
302
            memcpy(&screen.fbaddress[POINTPOS(vport->x,y)],
303
                   &screen.fbaddress[POINTPOS(vport->x,y - lines)],
303
                   &screen.fbaddress[POINTPOS(vport->x,y - lines)],
304
                   screen.pixelbytes * vport->width);
304
                   screen.pixelbytes * vport->width);
305
        draw_rectangle(vport, 0, 0, vport->width, lines, vport->style.bg_color);
305
        draw_rectangle(vport, 0, 0, vport->width, lines, vport->style.bg_color);
306
    }
306
    }
307
}
307
}
308
 
308
 
309
/** Refresh given viewport from double buffer */
309
/** Refresh given viewport from double buffer */
310
static void refresh_viewport_db(viewport_t *vport)
310
static void refresh_viewport_db(viewport_t *vport)
311
{
311
{
312
    unsigned int y, srcy, srcoff, dsty, dstx;
312
    unsigned int y, srcy, srcoff, dsty, dstx;
313
 
313
 
314
    for (y = 0; y < vport->height; y++) {
314
    for (y = 0; y < vport->height; y++) {
315
        srcy = (y + vport->dboffset) % vport->height;
315
        srcy = (y + vport->dboffset) % vport->height;
316
        srcoff = (vport->width * srcy) * screen.pixelbytes;
316
        srcoff = (vport->width * srcy) * screen.pixelbytes;
317
 
317
 
318
        dstx = vport->x;
318
        dstx = vport->x;
319
        dsty = vport->y + y;
319
        dsty = vport->y + y;
320
 
320
 
321
        memcpy(&screen.fbaddress[POINTPOS(dstx,dsty)],
321
        memcpy(&screen.fbaddress[POINTPOS(dstx,dsty)],
322
               &vport->dbdata[srcoff],
322
               &vport->dbdata[srcoff],
323
               vport->width*screen.pixelbytes);
323
               vport->width*screen.pixelbytes);
324
    }
324
    }
325
}
325
}
326
 
326
 
327
/** Scroll viewport that has double buffering enabled */
327
/** Scroll viewport that has double buffering enabled */
328
static void scroll_port_db(viewport_t *vport, int lines)
328
static void scroll_port_db(viewport_t *vport, int lines)
329
{
329
{
330
    ++vport->paused;
330
    ++vport->paused;
331
    if (lines > 0) {
331
    if (lines > 0) {
332
        draw_rectangle(vport, 0, 0, vport->width, lines,
332
        draw_rectangle(vport, 0, 0, vport->width, lines,
333
                   vport->style.bg_color);
333
                   vport->style.bg_color);
334
        vport->dboffset += lines;
334
        vport->dboffset += lines;
335
        vport->dboffset %= vport->height;
335
        vport->dboffset %= vport->height;
336
    } else if (lines < 0) {
336
    } else if (lines < 0) {
337
        lines = -lines;
337
        lines = -lines;
338
        draw_rectangle(vport, 0, vport->height-lines,
338
        draw_rectangle(vport, 0, vport->height-lines,
339
                   vport->width, lines,
339
                   vport->width, lines,
340
                   vport->style.bg_color);
340
                   vport->style.bg_color);
341
 
341
 
342
        if (vport->dboffset < lines)
342
        if (vport->dboffset < lines)
343
            vport->dboffset += vport->height;
343
            vport->dboffset += vport->height;
344
        vport->dboffset -= lines;
344
        vport->dboffset -= lines;
345
    }
345
    }
346
   
346
   
347
    --vport->paused;
347
    --vport->paused;
348
   
348
   
349
    refresh_viewport_db(vport);
349
    refresh_viewport_db(vport);
350
}
350
}
351
 
351
 
352
/** Scrolls viewport given number of lines */
352
/** Scrolls viewport given number of lines */
353
static void scroll_port(viewport_t *vport, int lines)
353
static void scroll_port(viewport_t *vport, int lines)
354
{
354
{
355
    if (vport->dbdata)
355
    if (vport->dbdata)
356
        scroll_port_db(vport, lines);
356
        scroll_port_db(vport, lines);
357
    else
357
    else
358
        scroll_port_nodb(vport, lines);
358
        scroll_port_nodb(vport, lines);
359
   
359
   
360
}
360
}
361
 
361
 
362
static void invert_pixel(viewport_t *vport, unsigned int x, unsigned int y)
362
static void invert_pixel(viewport_t *vport, unsigned int x, unsigned int y)
363
{
363
{
364
    putpixel(vport, x, y, ~getpixel(vport, x, y));
364
    putpixel(vport, x, y, ~getpixel(vport, x, y));
365
}
365
}
366
 
366
 
367
 
367
 
368
/***************************************************************/
368
/***************************************************************/
369
/* Character-console functions */
369
/* Character-console functions */
370
 
370
 
371
/** Draw character at given position
371
/** Draw character at given position
372
 *
372
 *
373
 * @param vport Viewport where the character is printed
373
 * @param vport Viewport where the character is printed
374
 * @param sx Coordinates of top-left of the character
374
 * @param sx Coordinates of top-left of the character
375
 * @param sy Coordinates of top-left of the character
375
 * @param sy Coordinates of top-left of the character
376
 * @param style Color of the character
376
 * @param style Color of the character
377
 * @param transparent If false, print background color
377
 * @param transparent If false, print background color
378
 */
378
 */
379
static void draw_glyph(viewport_t *vport,__u8 glyph, unsigned int sx, unsigned int sy,
379
static void draw_glyph(viewport_t *vport,uint8_t glyph, unsigned int sx, unsigned int sy,
380
               style_t style, int transparent)
380
               style_t style, int transparent)
381
{
381
{
382
    int i;
382
    int i;
383
    unsigned int y;
383
    unsigned int y;
384
    unsigned int glline;
384
    unsigned int glline;
385
 
385
 
386
    for (y = 0; y < FONT_SCANLINES; y++) {
386
    for (y = 0; y < FONT_SCANLINES; y++) {
387
        glline = fb_font[glyph * FONT_SCANLINES + y];
387
        glline = fb_font[glyph * FONT_SCANLINES + y];
388
        for (i = 0; i < 8; i++) {
388
        for (i = 0; i < 8; i++) {
389
            if (glline & (1 << (7 - i)))
389
            if (glline & (1 << (7 - i)))
390
                putpixel(vport, sx + i, sy + y, style.fg_color);
390
                putpixel(vport, sx + i, sy + y, style.fg_color);
391
            else if (!transparent)
391
            else if (!transparent)
392
                putpixel(vport, sx + i, sy + y, style.bg_color);
392
                putpixel(vport, sx + i, sy + y, style.bg_color);
393
        }
393
        }
394
    }
394
    }
395
}
395
}
396
 
396
 
397
/** Invert character at given position */
397
/** Invert character at given position */
398
static void invert_char(viewport_t *vport,unsigned int row, unsigned int col)
398
static void invert_char(viewport_t *vport,unsigned int row, unsigned int col)
399
{
399
{
400
    unsigned int x;
400
    unsigned int x;
401
    unsigned int y;
401
    unsigned int y;
402
 
402
 
403
    for (x = 0; x < COL_WIDTH; x++)
403
    for (x = 0; x < COL_WIDTH; x++)
404
        for (y = 0; y < FONT_SCANLINES; y++)
404
        for (y = 0; y < FONT_SCANLINES; y++)
405
            invert_pixel(vport, col * COL_WIDTH + x, row * FONT_SCANLINES + y);
405
            invert_pixel(vport, col * COL_WIDTH + x, row * FONT_SCANLINES + y);
406
}
406
}
407
 
407
 
408
/***************************************************************/
408
/***************************************************************/
409
/* Stdout specific functions */
409
/* Stdout specific functions */
410
 
410
 
411
 
411
 
412
/** Create new viewport
412
/** Create new viewport
413
 *
413
 *
414
 * @return New viewport number
414
 * @return New viewport number
415
 */
415
 */
416
static int viewport_create(unsigned int x, unsigned int y,unsigned int width,
416
static int viewport_create(unsigned int x, unsigned int y,unsigned int width,
417
               unsigned int height)
417
               unsigned int height)
418
{
418
{
419
    int i;
419
    int i;
420
 
420
 
421
    for (i=0; i < MAX_VIEWPORTS; i++) {
421
    for (i=0; i < MAX_VIEWPORTS; i++) {
422
        if (!viewports[i].initialized)
422
        if (!viewports[i].initialized)
423
            break;
423
            break;
424
    }
424
    }
425
    if (i == MAX_VIEWPORTS)
425
    if (i == MAX_VIEWPORTS)
426
        return ELIMIT;
426
        return ELIMIT;
427
 
427
 
428
    viewports[i].x = x;
428
    viewports[i].x = x;
429
    viewports[i].y = y;
429
    viewports[i].y = y;
430
    viewports[i].width = width;
430
    viewports[i].width = width;
431
    viewports[i].height = height;
431
    viewports[i].height = height;
432
   
432
   
433
    viewports[i].rows = height / FONT_SCANLINES;
433
    viewports[i].rows = height / FONT_SCANLINES;
434
    viewports[i].cols = width / COL_WIDTH;
434
    viewports[i].cols = width / COL_WIDTH;
435
 
435
 
436
    viewports[i].style.bg_color = DEFAULT_BGCOLOR;
436
    viewports[i].style.bg_color = DEFAULT_BGCOLOR;
437
    viewports[i].style.fg_color = DEFAULT_FGCOLOR;
437
    viewports[i].style.fg_color = DEFAULT_FGCOLOR;
438
   
438
   
439
    viewports[i].cur_col = 0;
439
    viewports[i].cur_col = 0;
440
    viewports[i].cur_row = 0;
440
    viewports[i].cur_row = 0;
441
    viewports[i].cursor_active = 0;
441
    viewports[i].cursor_active = 0;
442
 
442
 
443
    viewports[i].initialized = 1;
443
    viewports[i].initialized = 1;
444
 
444
 
445
    return i;
445
    return i;
446
}
446
}
447
 
447
 
448
 
448
 
449
/** Initialize framebuffer as a chardev output device
449
/** Initialize framebuffer as a chardev output device
450
 *
450
 *
451
 * @param addr Address of theframebuffer
451
 * @param addr Address of theframebuffer
452
 * @param xres Screen width in pixels
452
 * @param xres Screen width in pixels
453
 * @param yres Screen height in pixels
453
 * @param yres Screen height in pixels
454
 * @param bpp  Bits per pixel (8, 16, 24, 32)
454
 * @param bpp  Bits per pixel (8, 16, 24, 32)
455
 * @param scan Bytes per one scanline
455
 * @param scan Bytes per one scanline
456
 *
456
 *
457
 */
457
 */
458
static void screen_init(void *addr, unsigned int xres, unsigned int yres, unsigned int bpp, unsigned int scan)
458
static void screen_init(void *addr, unsigned int xres, unsigned int yres, unsigned int bpp, unsigned int scan)
459
{
459
{
460
    switch (bpp) {
460
    switch (bpp) {
461
        case 8:
461
        case 8:
462
            screen.rgb2scr = rgb_1byte;
462
            screen.rgb2scr = rgb_1byte;
463
            screen.scr2rgb = byte1_rgb;
463
            screen.scr2rgb = byte1_rgb;
464
            screen.pixelbytes = 1;
464
            screen.pixelbytes = 1;
465
            break;
465
            break;
466
        case 16:
466
        case 16:
467
            screen.rgb2scr = rgb_2byte;
467
            screen.rgb2scr = rgb_2byte;
468
            screen.scr2rgb = byte2_rgb;
468
            screen.scr2rgb = byte2_rgb;
469
            screen.pixelbytes = 2;
469
            screen.pixelbytes = 2;
470
            break;
470
            break;
471
        case 24:
471
        case 24:
472
            screen.rgb2scr = rgb_3byte;
472
            screen.rgb2scr = rgb_3byte;
473
            screen.scr2rgb = byte3_rgb;
473
            screen.scr2rgb = byte3_rgb;
474
            screen.pixelbytes = 3;
474
            screen.pixelbytes = 3;
475
            break;
475
            break;
476
        case 32:
476
        case 32:
477
            screen.rgb2scr = rgb_4byte;
477
            screen.rgb2scr = rgb_4byte;
478
            screen.scr2rgb = byte4_rgb;
478
            screen.scr2rgb = byte4_rgb;
479
            screen.pixelbytes = 4;
479
            screen.pixelbytes = 4;
480
            break;
480
            break;
481
    }
481
    }
482
 
482
 
483
       
483
       
484
    screen.fbaddress = (unsigned char *) addr;
484
    screen.fbaddress = (unsigned char *) addr;
485
    screen.xres = xres;
485
    screen.xres = xres;
486
    screen.yres = yres;
486
    screen.yres = yres;
487
    screen.scanline = scan;
487
    screen.scanline = scan;
488
   
488
   
489
    /* Create first viewport */
489
    /* Create first viewport */
490
    viewport_create(0,0,xres,yres);
490
    viewport_create(0,0,xres,yres);
491
}
491
}
492
 
492
 
493
/** Hide cursor if it is shown */
493
/** Hide cursor if it is shown */
494
static void cursor_hide(viewport_t *vport)
494
static void cursor_hide(viewport_t *vport)
495
{
495
{
496
    if (vport->cursor_active && vport->cursor_shown) {
496
    if (vport->cursor_active && vport->cursor_shown) {
497
        invert_char(vport, vport->cur_row, vport->cur_col);
497
        invert_char(vport, vport->cur_row, vport->cur_col);
498
        vport->cursor_shown = 0;
498
        vport->cursor_shown = 0;
499
    }
499
    }
500
}
500
}
501
 
501
 
502
/** Show cursor if cursor showing is enabled */
502
/** Show cursor if cursor showing is enabled */
503
static void cursor_print(viewport_t *vport)
503
static void cursor_print(viewport_t *vport)
504
{
504
{
505
    /* Do not check for cursor_shown */
505
    /* Do not check for cursor_shown */
506
    if (vport->cursor_active) {
506
    if (vport->cursor_active) {
507
        invert_char(vport, vport->cur_row, vport->cur_col);
507
        invert_char(vport, vport->cur_row, vport->cur_col);
508
        vport->cursor_shown = 1;
508
        vport->cursor_shown = 1;
509
    }
509
    }
510
}
510
}
511
 
511
 
512
/** Invert cursor, if it is enabled */
512
/** Invert cursor, if it is enabled */
513
static void cursor_blink(viewport_t *vport)
513
static void cursor_blink(viewport_t *vport)
514
{
514
{
515
    if (vport->cursor_shown)
515
    if (vport->cursor_shown)
516
        cursor_hide(vport);
516
        cursor_hide(vport);
517
    else
517
    else
518
        cursor_print(vport);
518
        cursor_print(vport);
519
}
519
}
520
 
520
 
521
/** Draw character at given position relative to viewport
521
/** Draw character at given position relative to viewport
522
 *
522
 *
523
 * @param vport Viewport identification
523
 * @param vport Viewport identification
524
 * @param c Character to print
524
 * @param c Character to print
525
 * @param row Screen position relative to viewport
525
 * @param row Screen position relative to viewport
526
 * @param col Screen position relative to viewport
526
 * @param col Screen position relative to viewport
527
 * @param transparent If false, print background color with character
527
 * @param transparent If false, print background color with character
528
 */
528
 */
529
static void draw_char(viewport_t *vport, char c, unsigned int row, unsigned int col,
529
static void draw_char(viewport_t *vport, char c, unsigned int row, unsigned int col,
530
              style_t style, int transparent)
530
              style_t style, int transparent)
531
{
531
{
532
    /* Optimize - do not hide cursor if we are going to overwrite it */
532
    /* Optimize - do not hide cursor if we are going to overwrite it */
533
    if (vport->cursor_active && vport->cursor_shown &&
533
    if (vport->cursor_active && vport->cursor_shown &&
534
        (vport->cur_col != col || vport->cur_row != row))
534
        (vport->cur_col != col || vport->cur_row != row))
535
        invert_char(vport, vport->cur_row, vport->cur_col);
535
        invert_char(vport, vport->cur_row, vport->cur_col);
536
   
536
   
537
    draw_glyph(vport, c, col * COL_WIDTH, row * FONT_SCANLINES, style, transparent);
537
    draw_glyph(vport, c, col * COL_WIDTH, row * FONT_SCANLINES, style, transparent);
538
 
538
 
539
    vport->cur_col = col;
539
    vport->cur_col = col;
540
    vport->cur_row = row;
540
    vport->cur_row = row;
541
 
541
 
542
    vport->cur_col++;
542
    vport->cur_col++;
543
    if (vport->cur_col>= vport->cols) {
543
    if (vport->cur_col>= vport->cols) {
544
        vport->cur_col = 0;
544
        vport->cur_col = 0;
545
        vport->cur_row++;
545
        vport->cur_row++;
546
        if (vport->cur_row >= vport->rows)
546
        if (vport->cur_row >= vport->rows)
547
            vport->cur_row--;
547
            vport->cur_row--;
548
    }
548
    }
549
    cursor_print(vport);
549
    cursor_print(vport);
550
}
550
}
551
 
551
 
552
/** Draw text data to viewport
552
/** Draw text data to viewport
553
 *
553
 *
554
 * @param vport Viewport id
554
 * @param vport Viewport id
555
 * @param data Text data fitting exactly into viewport
555
 * @param data Text data fitting exactly into viewport
556
 */
556
 */
557
static void draw_text_data(viewport_t *vport, keyfield_t *data)
557
static void draw_text_data(viewport_t *vport, keyfield_t *data)
558
{
558
{
559
    int i;
559
    int i;
560
    int col,row;
560
    int col,row;
561
 
561
 
562
    clear_port(vport);
562
    clear_port(vport);
563
    for (i=0; i < vport->cols * vport->rows; i++) {
563
    for (i=0; i < vport->cols * vport->rows; i++) {
564
        if (data[i].character == ' ' && style_same(data[i].style,vport->style))
564
        if (data[i].character == ' ' && style_same(data[i].style,vport->style))
565
            continue;
565
            continue;
566
        col = i % vport->cols;
566
        col = i % vport->cols;
567
        row = i / vport->cols;
567
        row = i / vport->cols;
568
        draw_glyph(vport, data[i].character, col * COL_WIDTH, row * FONT_SCANLINES,
568
        draw_glyph(vport, data[i].character, col * COL_WIDTH, row * FONT_SCANLINES,
569
               data[i].style, style_same(data[i].style,vport->style));
569
               data[i].style, style_same(data[i].style,vport->style));
570
    }
570
    }
571
    cursor_print(vport);
571
    cursor_print(vport);
572
}
572
}
573
 
573
 
574
 
574
 
575
/** Return first free pixmap */
575
/** Return first free pixmap */
576
static int find_free_pixmap(void)
576
static int find_free_pixmap(void)
577
{
577
{
578
    int i;
578
    int i;
579
   
579
   
580
    for (i=0;i < MAX_PIXMAPS;i++)
580
    for (i=0;i < MAX_PIXMAPS;i++)
581
        if (!pixmaps[i].data)
581
        if (!pixmaps[i].data)
582
            return i;
582
            return i;
583
    return -1;
583
    return -1;
584
}
584
}
585
 
585
 
586
static void putpixel_pixmap(int pm, unsigned int x, unsigned int y, int color)
586
static void putpixel_pixmap(int pm, unsigned int x, unsigned int y, int color)
587
{
587
{
588
    pixmap_t *pmap = &pixmaps[pm];
588
    pixmap_t *pmap = &pixmaps[pm];
589
    int pos = (y * pmap->width + x) * screen.pixelbytes;
589
    int pos = (y * pmap->width + x) * screen.pixelbytes;
590
 
590
 
591
    (*screen.rgb2scr)(&pmap->data[pos],color);
591
    (*screen.rgb2scr)(&pmap->data[pos],color);
592
}
592
}
593
 
593
 
594
/** Create a new pixmap and return appropriate ID */
594
/** Create a new pixmap and return appropriate ID */
595
static int shm2pixmap(unsigned char *shm, size_t size)
595
static int shm2pixmap(unsigned char *shm, size_t size)
596
{
596
{
597
    int pm;
597
    int pm;
598
    pixmap_t *pmap;
598
    pixmap_t *pmap;
599
 
599
 
600
    pm = find_free_pixmap();
600
    pm = find_free_pixmap();
601
    if (pm == -1)
601
    if (pm == -1)
602
        return ELIMIT;
602
        return ELIMIT;
603
    pmap = &pixmaps[pm];
603
    pmap = &pixmaps[pm];
604
   
604
   
605
    if (ppm_get_data(shm, size, &pmap->width, &pmap->height))
605
    if (ppm_get_data(shm, size, &pmap->width, &pmap->height))
606
        return EINVAL;
606
        return EINVAL;
607
   
607
   
608
    pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes);
608
    pmap->data = malloc(pmap->width * pmap->height * screen.pixelbytes);
609
    if (!pmap->data)
609
    if (!pmap->data)
610
        return ENOMEM;
610
        return ENOMEM;
611
 
611
 
612
    ppm_draw(shm, size, 0, 0, pmap->width, pmap->height,
612
    ppm_draw(shm, size, 0, 0, pmap->width, pmap->height,
613
         (putpixel_cb_t)putpixel_pixmap, (void *)pm);
613
         (putpixel_cb_t)putpixel_pixmap, (void *)pm);
614
 
614
 
615
    return pm;
615
    return pm;
616
}
616
}
617
 
617
 
618
/** Handle shared memory communication calls
618
/** Handle shared memory communication calls
619
 *
619
 *
620
 * Protocol for drawing pixmaps:
620
 * Protocol for drawing pixmaps:
621
 * - FB_PREPARE_SHM(client shm identification)
621
 * - FB_PREPARE_SHM(client shm identification)
622
 * - IPC_M_SEND_AS_AREA
622
 * - IPC_M_SEND_AS_AREA
623
 * - FB_DRAW_PPM(startx,starty)
623
 * - FB_DRAW_PPM(startx,starty)
624
 * - FB_DROP_SHM
624
 * - FB_DROP_SHM
625
 *
625
 *
626
 * Protocol for text drawing
626
 * Protocol for text drawing
627
 * - IPC_M_SEND_AS_AREA
627
 * - IPC_M_SEND_AS_AREA
628
 * - FB_DRAW_TEXT_DATA
628
 * - FB_DRAW_TEXT_DATA
629
 *
629
 *
630
 * @param callid Callid of the current call
630
 * @param callid Callid of the current call
631
 * @param call Current call data
631
 * @param call Current call data
632
 * @param vp Active viewport
632
 * @param vp Active viewport
633
 * @return 0 if the call was not handled byt this function, 1 otherwise
633
 * @return 0 if the call was not handled byt this function, 1 otherwise
634
 *
634
 *
635
 * note: this function is not threads safe, you would have
635
 * note: this function is not threads safe, you would have
636
 * to redefine static variables with __thread
636
 * to redefine static variables with __thread
637
 */
637
 */
638
static int shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
638
static int shm_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
639
{
639
{
640
    static keyfield_t *interbuffer = NULL;
640
    static keyfield_t *interbuffer = NULL;
641
    static size_t intersize = 0;
641
    static size_t intersize = 0;
642
 
642
 
643
    static unsigned char *shm = NULL;
643
    static unsigned char *shm = NULL;
644
    static ipcarg_t shm_id = 0;
644
    static ipcarg_t shm_id = 0;
645
    static size_t shm_size;
645
    static size_t shm_size;
646
 
646
 
647
    int handled = 1;
647
    int handled = 1;
648
    int retval = 0;
648
    int retval = 0;
649
    viewport_t *vport = &viewports[vp];
649
    viewport_t *vport = &viewports[vp];
650
    unsigned int x,y;
650
    unsigned int x,y;
651
 
651
 
652
    switch (IPC_GET_METHOD(*call)) {
652
    switch (IPC_GET_METHOD(*call)) {
653
    case IPC_M_AS_AREA_SEND:
653
    case IPC_M_AS_AREA_SEND:
654
        /* We accept one area for data interchange */
654
        /* We accept one area for data interchange */
655
        if (IPC_GET_ARG1(*call) == shm_id) {
655
        if (IPC_GET_ARG1(*call) == shm_id) {
656
            void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
656
            void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
657
            shm_size = IPC_GET_ARG2(*call);
657
            shm_size = IPC_GET_ARG2(*call);
658
            if (!ipc_answer_fast(callid, 0, (sysarg_t)dest, 0))
658
            if (!ipc_answer_fast(callid, 0, (sysarg_t)dest, 0))
659
                shm = dest;
659
                shm = dest;
660
            else
660
            else
661
                shm_id = 0;
661
                shm_id = 0;
662
            if (shm[0] != 'P')
662
            if (shm[0] != 'P')
663
                while (1)
663
                while (1)
664
                    ;
664
                    ;
665
            return 1;
665
            return 1;
666
        } else {
666
        } else {
667
            intersize = IPC_GET_ARG2(*call);
667
            intersize = IPC_GET_ARG2(*call);
668
            receive_comm_area(callid,call,(void *)&interbuffer);
668
            receive_comm_area(callid,call,(void *)&interbuffer);
669
        }
669
        }
670
        return 1;
670
        return 1;
671
    case FB_PREPARE_SHM:
671
    case FB_PREPARE_SHM:
672
        if (shm_id)
672
        if (shm_id)
673
            retval = EBUSY;
673
            retval = EBUSY;
674
        else
674
        else
675
            shm_id = IPC_GET_ARG1(*call);
675
            shm_id = IPC_GET_ARG1(*call);
676
        break;
676
        break;
677
       
677
       
678
    case FB_DROP_SHM:
678
    case FB_DROP_SHM:
679
        if (shm) {
679
        if (shm) {
680
            as_area_destroy(shm);
680
            as_area_destroy(shm);
681
            shm = NULL;
681
            shm = NULL;
682
        }
682
        }
683
        shm_id = 0;
683
        shm_id = 0;
684
        break;
684
        break;
685
 
685
 
686
    case FB_SHM2PIXMAP:
686
    case FB_SHM2PIXMAP:
687
        if (!shm) {
687
        if (!shm) {
688
            retval = EINVAL;
688
            retval = EINVAL;
689
            break;
689
            break;
690
        }
690
        }
691
        retval = shm2pixmap(shm, shm_size);
691
        retval = shm2pixmap(shm, shm_size);
692
        break;
692
        break;
693
    case FB_DRAW_PPM:
693
    case FB_DRAW_PPM:
694
        if (!shm) {
694
        if (!shm) {
695
            retval = EINVAL;
695
            retval = EINVAL;
696
            break;
696
            break;
697
        }
697
        }
698
        x = IPC_GET_ARG1(*call);
698
        x = IPC_GET_ARG1(*call);
699
        y = IPC_GET_ARG2(*call);
699
        y = IPC_GET_ARG2(*call);
700
        if (x > vport->width || y > vport->height) {
700
        if (x > vport->width || y > vport->height) {
701
            retval = EINVAL;
701
            retval = EINVAL;
702
            break;
702
            break;
703
        }
703
        }
704
       
704
       
705
        ppm_draw(shm, shm_size, IPC_GET_ARG1(*call), IPC_GET_ARG2(*call),
705
        ppm_draw(shm, shm_size, IPC_GET_ARG1(*call), IPC_GET_ARG2(*call),
706
             vport->width - x, vport->height - y, (putpixel_cb_t)putpixel, vport);
706
             vport->width - x, vport->height - y, (putpixel_cb_t)putpixel, vport);
707
        break;
707
        break;
708
    case FB_DRAW_TEXT_DATA:
708
    case FB_DRAW_TEXT_DATA:
709
        if (!interbuffer) {
709
        if (!interbuffer) {
710
            retval = EINVAL;
710
            retval = EINVAL;
711
            break;
711
            break;
712
        }
712
        }
713
        if (intersize < vport->cols*vport->rows*sizeof(*interbuffer)) {
713
        if (intersize < vport->cols*vport->rows*sizeof(*interbuffer)) {
714
            retval = EINVAL;
714
            retval = EINVAL;
715
            break;
715
            break;
716
        }
716
        }
717
        draw_text_data(vport, interbuffer);
717
        draw_text_data(vport, interbuffer);
718
        break;
718
        break;
719
    default:
719
    default:
720
        handled = 0;
720
        handled = 0;
721
    }
721
    }
722
   
722
   
723
    if (handled)
723
    if (handled)
724
        ipc_answer_fast(callid, retval, 0, 0);
724
        ipc_answer_fast(callid, retval, 0, 0);
725
    return handled;
725
    return handled;
726
}
726
}
727
 
727
 
728
static void copy_vp_to_pixmap(viewport_t *vport, pixmap_t *pmap)
728
static void copy_vp_to_pixmap(viewport_t *vport, pixmap_t *pmap)
729
{
729
{
730
    int y;
730
    int y;
731
    int rowsize;
731
    int rowsize;
732
    int tmp;
732
    int tmp;
733
    int width = vport->width;
733
    int width = vport->width;
734
    int height = vport->height;
734
    int height = vport->height;
735
 
735
 
736
    if (width + vport->x > screen.xres)
736
    if (width + vport->x > screen.xres)
737
        width = screen.xres - vport->x;
737
        width = screen.xres - vport->x;
738
    if (height + vport->y  > screen.yres)
738
    if (height + vport->y  > screen.yres)
739
        height = screen.yres - vport->y;
739
        height = screen.yres - vport->y;
740
 
740
 
741
    rowsize = width * screen.pixelbytes;
741
    rowsize = width * screen.pixelbytes;
742
 
742
 
743
    for (y=0;y < height; y++) {
743
    for (y=0;y < height; y++) {
744
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
744
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
745
        memcpy(pmap->data + rowsize*y, screen.fbaddress + tmp, rowsize);
745
        memcpy(pmap->data + rowsize*y, screen.fbaddress + tmp, rowsize);
746
    }
746
    }
747
}
747
}
748
 
748
 
749
/** Save viewport to pixmap */
749
/** Save viewport to pixmap */
750
static int save_vp_to_pixmap(viewport_t *vport)
750
static int save_vp_to_pixmap(viewport_t *vport)
751
{
751
{
752
    int pm;
752
    int pm;
753
    pixmap_t *pmap;
753
    pixmap_t *pmap;
754
 
754
 
755
    pm = find_free_pixmap();
755
    pm = find_free_pixmap();
756
    if (pm == -1)
756
    if (pm == -1)
757
        return ELIMIT;
757
        return ELIMIT;
758
   
758
   
759
    pmap = &pixmaps[pm];
759
    pmap = &pixmaps[pm];
760
    pmap->data = malloc(screen.pixelbytes * vport->width * vport->height);
760
    pmap->data = malloc(screen.pixelbytes * vport->width * vport->height);
761
    if (!pmap->data)
761
    if (!pmap->data)
762
        return ENOMEM;
762
        return ENOMEM;
763
 
763
 
764
    pmap->width = vport->width;
764
    pmap->width = vport->width;
765
    pmap->height = vport->height;
765
    pmap->height = vport->height;
766
 
766
 
767
    copy_vp_to_pixmap(vport, pmap);
767
    copy_vp_to_pixmap(vport, pmap);
768
   
768
   
769
    return pm;
769
    return pm;
770
}
770
}
771
 
771
 
772
/** Draw pixmap on screen
772
/** Draw pixmap on screen
773
 *
773
 *
774
 * @param vp Viewport to draw on
774
 * @param vp Viewport to draw on
775
 * @param pm Pixmap identifier
775
 * @param pm Pixmap identifier
776
 */
776
 */
777
static int draw_pixmap(int vp, int pm)
777
static int draw_pixmap(int vp, int pm)
778
{
778
{
779
    pixmap_t *pmap = &pixmaps[pm];
779
    pixmap_t *pmap = &pixmaps[pm];
780
    viewport_t *vport = &viewports[vp];
780
    viewport_t *vport = &viewports[vp];
781
    int y;
781
    int y;
782
    int tmp, srcrowsize;
782
    int tmp, srcrowsize;
783
    int realwidth, realheight, realrowsize;
783
    int realwidth, realheight, realrowsize;
784
    int width = vport->width;
784
    int width = vport->width;
785
    int height = vport->height;
785
    int height = vport->height;
786
 
786
 
787
    if (width + vport->x > screen.xres)
787
    if (width + vport->x > screen.xres)
788
        width = screen.xres - vport->x;
788
        width = screen.xres - vport->x;
789
    if (height + vport->y > screen.yres)
789
    if (height + vport->y > screen.yres)
790
        height = screen.yres - vport->y;
790
        height = screen.yres - vport->y;
791
 
791
 
792
    if (!pmap->data)
792
    if (!pmap->data)
793
        return EINVAL;
793
        return EINVAL;
794
 
794
 
795
    realwidth = pmap->width <= width ? pmap->width : width;
795
    realwidth = pmap->width <= width ? pmap->width : width;
796
    realheight = pmap->height <= height ? pmap->height : height;
796
    realheight = pmap->height <= height ? pmap->height : height;
797
 
797
 
798
    srcrowsize = vport->width * screen.pixelbytes;
798
    srcrowsize = vport->width * screen.pixelbytes;
799
    realrowsize = realwidth * screen.pixelbytes;
799
    realrowsize = realwidth * screen.pixelbytes;
800
 
800
 
801
    for (y=0; y < realheight; y++) {
801
    for (y=0; y < realheight; y++) {
802
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
802
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
803
        memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
803
        memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
804
    }
804
    }
805
    return 0;
805
    return 0;
806
}
806
}
807
 
807
 
808
/** Tick animation one step forward */
808
/** Tick animation one step forward */
809
static void anims_tick(void)
809
static void anims_tick(void)
810
{
810
{
811
    int i;
811
    int i;
812
    static int counts = 0;
812
    static int counts = 0;
813
   
813
   
814
    /* Limit redrawing */
814
    /* Limit redrawing */
815
    counts = (counts+1) % 8;
815
    counts = (counts+1) % 8;
816
    if (counts)
816
    if (counts)
817
        return;
817
        return;
818
 
818
 
819
    for (i=0; i < MAX_ANIMATIONS; i++) {
819
    for (i=0; i < MAX_ANIMATIONS; i++) {
820
        if (!animations[i].animlen || !animations[i].initialized || !animations[i].enabled)
820
        if (!animations[i].animlen || !animations[i].initialized || !animations[i].enabled)
821
            continue;
821
            continue;
822
        draw_pixmap(animations[i].vp, animations[i].pixmaps[animations[i].pos]);
822
        draw_pixmap(animations[i].vp, animations[i].pixmaps[animations[i].pos]);
823
        animations[i].pos = (animations[i].pos+1) % animations[i].animlen;
823
        animations[i].pos = (animations[i].pos+1) % animations[i].animlen;
824
    }
824
    }
825
}
825
}
826
 
826
 
827
 
827
 
828
static int pointer_x, pointer_y;
828
static int pointer_x, pointer_y;
829
static int pointer_shown, pointer_enabled;
829
static int pointer_shown, pointer_enabled;
830
static int pointer_vport = -1;
830
static int pointer_vport = -1;
831
static int pointer_pixmap = -1;
831
static int pointer_pixmap = -1;
832
 
832
 
833
static void mouse_show(void)
833
static void mouse_show(void)
834
{
834
{
835
    int i,j;
835
    int i,j;
836
    int visibility;
836
    int visibility;
837
    int color;
837
    int color;
838
    int bytepos;
838
    int bytepos;
839
 
839
 
840
    if (pointer_shown || !pointer_enabled)
840
    if (pointer_shown || !pointer_enabled)
841
        return;
841
        return;
842
 
842
 
843
    /* Save image under the cursor */
843
    /* Save image under the cursor */
844
    if (pointer_vport == -1) {
844
    if (pointer_vport == -1) {
845
        pointer_vport = viewport_create(pointer_x, pointer_y, pointer_width, pointer_height);
845
        pointer_vport = viewport_create(pointer_x, pointer_y, pointer_width, pointer_height);
846
        if (pointer_vport < 0)
846
        if (pointer_vport < 0)
847
            return;
847
            return;
848
    } else {
848
    } else {
849
        viewports[pointer_vport].x = pointer_x;
849
        viewports[pointer_vport].x = pointer_x;
850
        viewports[pointer_vport].y = pointer_y;
850
        viewports[pointer_vport].y = pointer_y;
851
    }
851
    }
852
 
852
 
853
    if (pointer_pixmap == -1)
853
    if (pointer_pixmap == -1)
854
        pointer_pixmap = save_vp_to_pixmap(&viewports[pointer_vport]);
854
        pointer_pixmap = save_vp_to_pixmap(&viewports[pointer_vport]);
855
    else
855
    else
856
        copy_vp_to_pixmap(&viewports[pointer_vport], &pixmaps[pointer_pixmap]);
856
        copy_vp_to_pixmap(&viewports[pointer_vport], &pixmaps[pointer_pixmap]);
857
 
857
 
858
    /* Draw cursor */
858
    /* Draw cursor */
859
    for (i=0; i < pointer_height; i++)
859
    for (i=0; i < pointer_height; i++)
860
        for (j=0;j < pointer_width; j++) {
860
        for (j=0;j < pointer_width; j++) {
861
            bytepos = i*((pointer_width-1)/8+1) + j/8;
861
            bytepos = i*((pointer_width-1)/8+1) + j/8;
862
            visibility = pointer_mask_bits[bytepos] & (1 << (j % 8));
862
            visibility = pointer_mask_bits[bytepos] & (1 << (j % 8));
863
            if (visibility) {
863
            if (visibility) {
864
                color = pointer_bits[bytepos] & (1 << (j % 8)) ? 0 : 0xffffff;
864
                color = pointer_bits[bytepos] & (1 << (j % 8)) ? 0 : 0xffffff;
865
                if (pointer_x+j < screen.xres && pointer_y+i < screen.yres)
865
                if (pointer_x+j < screen.xres && pointer_y+i < screen.yres)
866
                    putpixel(&viewports[0], pointer_x+j, pointer_y+i, color);
866
                    putpixel(&viewports[0], pointer_x+j, pointer_y+i, color);
867
            }
867
            }
868
        }
868
        }
869
    pointer_shown = 1;
869
    pointer_shown = 1;
870
}
870
}
871
 
871
 
872
static void mouse_hide(void)
872
static void mouse_hide(void)
873
{
873
{
874
    /* Restore image under the cursor */
874
    /* Restore image under the cursor */
875
    if (pointer_shown) {
875
    if (pointer_shown) {
876
        draw_pixmap(pointer_vport, pointer_pixmap);
876
        draw_pixmap(pointer_vport, pointer_pixmap);
877
        pointer_shown = 0;
877
        pointer_shown = 0;
878
    }
878
    }
879
}
879
}
880
 
880
 
881
static void mouse_move(unsigned int x, unsigned int y)
881
static void mouse_move(unsigned int x, unsigned int y)
882
{
882
{
883
    mouse_hide();
883
    mouse_hide();
884
    pointer_x = x;
884
    pointer_x = x;
885
    pointer_y = y;
885
    pointer_y = y;
886
    mouse_show();
886
    mouse_show();
887
}
887
}
888
 
888
 
889
static int anim_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
889
static int anim_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
890
{
890
{
891
    int handled = 1;
891
    int handled = 1;
892
    int retval = 0;
892
    int retval = 0;
893
    int i,nvp;
893
    int i,nvp;
894
    int newval;
894
    int newval;
895
 
895
 
896
    switch (IPC_GET_METHOD(*call)) {
896
    switch (IPC_GET_METHOD(*call)) {
897
    case FB_ANIM_CREATE:
897
    case FB_ANIM_CREATE:
898
        nvp = IPC_GET_ARG1(*call);
898
        nvp = IPC_GET_ARG1(*call);
899
        if (nvp == -1)
899
        if (nvp == -1)
900
            nvp = vp;
900
            nvp = vp;
901
        if (nvp >= MAX_VIEWPORTS || nvp < 0 || !viewports[nvp].initialized) {
901
        if (nvp >= MAX_VIEWPORTS || nvp < 0 || !viewports[nvp].initialized) {
902
            retval = EINVAL;
902
            retval = EINVAL;
903
            break;
903
            break;
904
        }
904
        }
905
        for (i=0; i < MAX_ANIMATIONS; i++) {
905
        for (i=0; i < MAX_ANIMATIONS; i++) {
906
            if (! animations[i].initialized)
906
            if (! animations[i].initialized)
907
                break;
907
                break;
908
        }
908
        }
909
        if (i == MAX_ANIMATIONS) {
909
        if (i == MAX_ANIMATIONS) {
910
            retval = ELIMIT;
910
            retval = ELIMIT;
911
            break;
911
            break;
912
        }
912
        }
913
        animations[i].initialized = 1;
913
        animations[i].initialized = 1;
914
        animations[i].animlen = 0;
914
        animations[i].animlen = 0;
915
        animations[i].pos = 0;
915
        animations[i].pos = 0;
916
        animations[i].enabled = 0;
916
        animations[i].enabled = 0;
917
        animations[i].vp = nvp;
917
        animations[i].vp = nvp;
918
        retval = i;
918
        retval = i;
919
        break;
919
        break;
920
    case FB_ANIM_DROP:
920
    case FB_ANIM_DROP:
921
        i = IPC_GET_ARG1(*call);
921
        i = IPC_GET_ARG1(*call);
922
        if (i >= MAX_ANIMATIONS || i < 0) {
922
        if (i >= MAX_ANIMATIONS || i < 0) {
923
            retval = EINVAL;
923
            retval = EINVAL;
924
            break;
924
            break;
925
        }
925
        }
926
        animations[i].initialized = 0;
926
        animations[i].initialized = 0;
927
        break;
927
        break;
928
    case FB_ANIM_ADDPIXMAP:
928
    case FB_ANIM_ADDPIXMAP:
929
        i = IPC_GET_ARG1(*call);
929
        i = IPC_GET_ARG1(*call);
930
        if (i >= MAX_ANIMATIONS || i < 0 || !animations[i].initialized) {
930
        if (i >= MAX_ANIMATIONS || i < 0 || !animations[i].initialized) {
931
            retval = EINVAL;
931
            retval = EINVAL;
932
            break;
932
            break;
933
        }
933
        }
934
        if (animations[i].animlen == MAX_ANIM_LEN) {
934
        if (animations[i].animlen == MAX_ANIM_LEN) {
935
            retval = ELIMIT;
935
            retval = ELIMIT;
936
            break;
936
            break;
937
        }
937
        }
938
        newval = IPC_GET_ARG2(*call);
938
        newval = IPC_GET_ARG2(*call);
939
        if (newval < 0 || newval > MAX_PIXMAPS || !pixmaps[newval].data) {
939
        if (newval < 0 || newval > MAX_PIXMAPS || !pixmaps[newval].data) {
940
            retval = EINVAL;
940
            retval = EINVAL;
941
            break;
941
            break;
942
        }
942
        }
943
        animations[i].pixmaps[animations[i].animlen++] = newval;
943
        animations[i].pixmaps[animations[i].animlen++] = newval;
944
        break;
944
        break;
945
    case FB_ANIM_CHGVP:
945
    case FB_ANIM_CHGVP:
946
        i = IPC_GET_ARG1(*call);
946
        i = IPC_GET_ARG1(*call);
947
        if (i >= MAX_ANIMATIONS || i < 0) {
947
        if (i >= MAX_ANIMATIONS || i < 0) {
948
            retval = EINVAL;
948
            retval = EINVAL;
949
            break;
949
            break;
950
        }
950
        }
951
        nvp = IPC_GET_ARG2(*call);
951
        nvp = IPC_GET_ARG2(*call);
952
        if (nvp == -1)
952
        if (nvp == -1)
953
            nvp = vp;
953
            nvp = vp;
954
        if (nvp >= MAX_VIEWPORTS || nvp < 0 || !viewports[nvp].initialized) {
954
        if (nvp >= MAX_VIEWPORTS || nvp < 0 || !viewports[nvp].initialized) {
955
            retval = EINVAL;
955
            retval = EINVAL;
956
            break;
956
            break;
957
        }
957
        }
958
        animations[i].vp = nvp;
958
        animations[i].vp = nvp;
959
        break;
959
        break;
960
    case FB_ANIM_START:
960
    case FB_ANIM_START:
961
    case FB_ANIM_STOP:
961
    case FB_ANIM_STOP:
962
        i = IPC_GET_ARG1(*call);
962
        i = IPC_GET_ARG1(*call);
963
        if (i >= MAX_ANIMATIONS || i < 0) {
963
        if (i >= MAX_ANIMATIONS || i < 0) {
964
            retval = EINVAL;
964
            retval = EINVAL;
965
            break;
965
            break;
966
        }
966
        }
967
        newval = (IPC_GET_METHOD(*call) == FB_ANIM_START);
967
        newval = (IPC_GET_METHOD(*call) == FB_ANIM_START);
968
        if (newval ^ animations[i].enabled) {
968
        if (newval ^ animations[i].enabled) {
969
            animations[i].enabled = newval;
969
            animations[i].enabled = newval;
970
            anims_enabled += newval ? 1 : -1;
970
            anims_enabled += newval ? 1 : -1;
971
        }
971
        }
972
        break;
972
        break;
973
    default:
973
    default:
974
        handled = 0;
974
        handled = 0;
975
    }
975
    }
976
    if (handled)
976
    if (handled)
977
        ipc_answer_fast(callid, retval, 0, 0);
977
        ipc_answer_fast(callid, retval, 0, 0);
978
    return handled;
978
    return handled;
979
}
979
}
980
 
980
 
981
/** Handler for messages concerning pixmap handling */
981
/** Handler for messages concerning pixmap handling */
982
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
982
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
983
{
983
{
984
    int handled = 1;
984
    int handled = 1;
985
    int retval = 0;
985
    int retval = 0;
986
    int i,nvp;
986
    int i,nvp;
987
 
987
 
988
    switch (IPC_GET_METHOD(*call)) {
988
    switch (IPC_GET_METHOD(*call)) {
989
    case FB_VP_DRAW_PIXMAP:
989
    case FB_VP_DRAW_PIXMAP:
990
        nvp = IPC_GET_ARG1(*call);
990
        nvp = IPC_GET_ARG1(*call);
991
        if (nvp == -1)
991
        if (nvp == -1)
992
            nvp = vp;
992
            nvp = vp;
993
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized) {
993
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized) {
994
            retval = EINVAL;
994
            retval = EINVAL;
995
            break;
995
            break;
996
        }
996
        }
997
        i = IPC_GET_ARG2(*call);
997
        i = IPC_GET_ARG2(*call);
998
        retval = draw_pixmap(nvp, i);
998
        retval = draw_pixmap(nvp, i);
999
        break;
999
        break;
1000
    case FB_VP2PIXMAP:
1000
    case FB_VP2PIXMAP:
1001
        nvp = IPC_GET_ARG1(*call);
1001
        nvp = IPC_GET_ARG1(*call);
1002
        if (nvp == -1)
1002
        if (nvp == -1)
1003
            nvp = vp;
1003
            nvp = vp;
1004
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized)
1004
        if (nvp < 0 || nvp >= MAX_VIEWPORTS || !viewports[nvp].initialized)
1005
            retval = EINVAL;
1005
            retval = EINVAL;
1006
        else
1006
        else
1007
            retval = save_vp_to_pixmap(&viewports[nvp]);
1007
            retval = save_vp_to_pixmap(&viewports[nvp]);
1008
        break;
1008
        break;
1009
    case FB_DROP_PIXMAP:
1009
    case FB_DROP_PIXMAP:
1010
        i = IPC_GET_ARG1(*call);
1010
        i = IPC_GET_ARG1(*call);
1011
        if (i >= MAX_PIXMAPS) {
1011
        if (i >= MAX_PIXMAPS) {
1012
            retval = EINVAL;
1012
            retval = EINVAL;
1013
            break;
1013
            break;
1014
        }
1014
        }
1015
        if (pixmaps[i].data) {
1015
        if (pixmaps[i].data) {
1016
            free(pixmaps[i].data);
1016
            free(pixmaps[i].data);
1017
            pixmaps[i].data = NULL;
1017
            pixmaps[i].data = NULL;
1018
        }
1018
        }
1019
        break;
1019
        break;
1020
    default:
1020
    default:
1021
        handled = 0;
1021
        handled = 0;
1022
    }
1022
    }
1023
 
1023
 
1024
    if (handled)
1024
    if (handled)
1025
        ipc_answer_fast(callid, retval, 0, 0);
1025
        ipc_answer_fast(callid, retval, 0, 0);
1026
    return handled;
1026
    return handled;
1027
   
1027
   
1028
}
1028
}
1029
 
1029
 
1030
/** Function for handling connections to FB
1030
/** Function for handling connections to FB
1031
 *
1031
 *
1032
 */
1032
 */
1033
static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
1033
static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
1034
{
1034
{
1035
    ipc_callid_t callid;
1035
    ipc_callid_t callid;
1036
    ipc_call_t call;
1036
    ipc_call_t call;
1037
    int retval;
1037
    int retval;
1038
    int i;
1038
    int i;
1039
    unsigned int row,col;
1039
    unsigned int row,col;
1040
    char c;
1040
    char c;
1041
 
1041
 
1042
    int vp = 0;
1042
    int vp = 0;
1043
    viewport_t *vport = &viewports[0];
1043
    viewport_t *vport = &viewports[0];
1044
 
1044
 
1045
    if (client_connected) {
1045
    if (client_connected) {
1046
        ipc_answer_fast(iid, ELIMIT, 0,0);
1046
        ipc_answer_fast(iid, ELIMIT, 0,0);
1047
        return;
1047
        return;
1048
    }
1048
    }
1049
    client_connected = 1;
1049
    client_connected = 1;
1050
    ipc_answer_fast(iid, 0, 0, 0); /* Accept connection */
1050
    ipc_answer_fast(iid, 0, 0, 0); /* Accept connection */
1051
 
1051
 
1052
    while (1) {
1052
    while (1) {
1053
        if (vport->cursor_active || anims_enabled)
1053
        if (vport->cursor_active || anims_enabled)
1054
            callid = async_get_call_timeout(&call,250000);
1054
            callid = async_get_call_timeout(&call,250000);
1055
        else
1055
        else
1056
            callid = async_get_call(&call);
1056
            callid = async_get_call(&call);
1057
 
1057
 
1058
        mouse_hide();
1058
        mouse_hide();
1059
        if (!callid) {
1059
        if (!callid) {
1060
            cursor_blink(vport);
1060
            cursor_blink(vport);
1061
            anims_tick();
1061
            anims_tick();
1062
            mouse_show();
1062
            mouse_show();
1063
            continue;
1063
            continue;
1064
        }
1064
        }
1065
        if (shm_handle(callid, &call, vp))
1065
        if (shm_handle(callid, &call, vp))
1066
            continue;
1066
            continue;
1067
        if (pixmap_handle(callid, &call, vp))
1067
        if (pixmap_handle(callid, &call, vp))
1068
            continue;
1068
            continue;
1069
        if (anim_handle(callid, &call, vp))
1069
        if (anim_handle(callid, &call, vp))
1070
            continue;
1070
            continue;
1071
 
1071
 
1072
        switch (IPC_GET_METHOD(call)) {
1072
        switch (IPC_GET_METHOD(call)) {
1073
        case IPC_M_PHONE_HUNGUP:
1073
        case IPC_M_PHONE_HUNGUP:
1074
            client_connected = 0;
1074
            client_connected = 0;
1075
            /* cleanup other viewports */
1075
            /* cleanup other viewports */
1076
            for (i=1; i < MAX_VIEWPORTS; i++)
1076
            for (i=1; i < MAX_VIEWPORTS; i++)
1077
                vport->initialized = 0;
1077
                vport->initialized = 0;
1078
            return; /* Exit thread */
1078
            return; /* Exit thread */
1079
 
1079
 
1080
        case FB_PUTCHAR:
1080
        case FB_PUTCHAR:
1081
        case FB_TRANS_PUTCHAR:
1081
        case FB_TRANS_PUTCHAR:
1082
            c = IPC_GET_ARG1(call);
1082
            c = IPC_GET_ARG1(call);
1083
            row = IPC_GET_ARG2(call);
1083
            row = IPC_GET_ARG2(call);
1084
            col = IPC_GET_ARG3(call);
1084
            col = IPC_GET_ARG3(call);
1085
            if (row >= vport->rows || col >= vport->cols) {
1085
            if (row >= vport->rows || col >= vport->cols) {
1086
                retval = EINVAL;
1086
                retval = EINVAL;
1087
                break;
1087
                break;
1088
            }
1088
            }
1089
            ipc_answer_fast(callid,0,0,0);
1089
            ipc_answer_fast(callid,0,0,0);
1090
 
1090
 
1091
            draw_char(vport, c, row, col, vport->style, IPC_GET_METHOD(call) == FB_TRANS_PUTCHAR);
1091
            draw_char(vport, c, row, col, vport->style, IPC_GET_METHOD(call) == FB_TRANS_PUTCHAR);
1092
            continue; /* msg already answered */
1092
            continue; /* msg already answered */
1093
        case FB_CLEAR:
1093
        case FB_CLEAR:
1094
            clear_port(vport);
1094
            clear_port(vport);
1095
            cursor_print(vport);
1095
            cursor_print(vport);
1096
            retval = 0;
1096
            retval = 0;
1097
            break;
1097
            break;
1098
        case FB_CURSOR_GOTO:
1098
        case FB_CURSOR_GOTO:
1099
            row = IPC_GET_ARG1(call);
1099
            row = IPC_GET_ARG1(call);
1100
            col = IPC_GET_ARG2(call);
1100
            col = IPC_GET_ARG2(call);
1101
            if (row >= vport->rows || col >= vport->cols) {
1101
            if (row >= vport->rows || col >= vport->cols) {
1102
                retval = EINVAL;
1102
                retval = EINVAL;
1103
                break;
1103
                break;
1104
            }
1104
            }
1105
            retval = 0;
1105
            retval = 0;
1106
            cursor_hide(vport);
1106
            cursor_hide(vport);
1107
            vport->cur_col = col;
1107
            vport->cur_col = col;
1108
            vport->cur_row = row;
1108
            vport->cur_row = row;
1109
            cursor_print(vport);
1109
            cursor_print(vport);
1110
            break;
1110
            break;
1111
        case FB_CURSOR_VISIBILITY:
1111
        case FB_CURSOR_VISIBILITY:
1112
            cursor_hide(vport);
1112
            cursor_hide(vport);
1113
            vport->cursor_active = IPC_GET_ARG1(call);
1113
            vport->cursor_active = IPC_GET_ARG1(call);
1114
            cursor_print(vport);
1114
            cursor_print(vport);
1115
            retval = 0;
1115
            retval = 0;
1116
            break;
1116
            break;
1117
        case FB_GET_CSIZE:
1117
        case FB_GET_CSIZE:
1118
            ipc_answer_fast(callid, 0, vport->rows, vport->cols);
1118
            ipc_answer_fast(callid, 0, vport->rows, vport->cols);
1119
            continue;
1119
            continue;
1120
        case FB_SCROLL:
1120
        case FB_SCROLL:
1121
            i = IPC_GET_ARG1(call);
1121
            i = IPC_GET_ARG1(call);
1122
            if (i > vport->rows || i < (- (int)vport->rows)) {
1122
            if (i > vport->rows || i < (- (int)vport->rows)) {
1123
                retval = EINVAL;
1123
                retval = EINVAL;
1124
                break;
1124
                break;
1125
            }
1125
            }
1126
            cursor_hide(vport);
1126
            cursor_hide(vport);
1127
            scroll_port(vport, i*FONT_SCANLINES);
1127
            scroll_port(vport, i*FONT_SCANLINES);
1128
            cursor_print(vport);
1128
            cursor_print(vport);
1129
            retval = 0;
1129
            retval = 0;
1130
            break;
1130
            break;
1131
        case FB_VIEWPORT_DB:
1131
        case FB_VIEWPORT_DB:
1132
            /* Enable double buffering */
1132
            /* Enable double buffering */
1133
            i = IPC_GET_ARG1(call);
1133
            i = IPC_GET_ARG1(call);
1134
            if (i == -1)
1134
            if (i == -1)
1135
                i = vp;
1135
                i = vp;
1136
            if (i < 0 || i >= MAX_VIEWPORTS) {
1136
            if (i < 0 || i >= MAX_VIEWPORTS) {
1137
                retval = EINVAL;
1137
                retval = EINVAL;
1138
                break;
1138
                break;
1139
            }
1139
            }
1140
            if (! viewports[i].initialized ) {
1140
            if (! viewports[i].initialized ) {
1141
                retval = EADDRNOTAVAIL;
1141
                retval = EADDRNOTAVAIL;
1142
                break;
1142
                break;
1143
            }
1143
            }
1144
            viewports[i].dboffset = 0;
1144
            viewports[i].dboffset = 0;
1145
            if (IPC_GET_ARG2(call) == 1 && !viewports[i].dbdata)
1145
            if (IPC_GET_ARG2(call) == 1 && !viewports[i].dbdata)
1146
                viewports[i].dbdata = malloc(screen.pixelbytes*viewports[i].width * viewports[i].height);
1146
                viewports[i].dbdata = malloc(screen.pixelbytes*viewports[i].width * viewports[i].height);
1147
            else if (IPC_GET_ARG2(call) == 0 && viewports[i].dbdata) {
1147
            else if (IPC_GET_ARG2(call) == 0 && viewports[i].dbdata) {
1148
                free(viewports[i].dbdata);
1148
                free(viewports[i].dbdata);
1149
                viewports[i].dbdata = NULL;
1149
                viewports[i].dbdata = NULL;
1150
            }
1150
            }
1151
            retval = 0;
1151
            retval = 0;
1152
            break;
1152
            break;
1153
        case FB_VIEWPORT_SWITCH:
1153
        case FB_VIEWPORT_SWITCH:
1154
            i = IPC_GET_ARG1(call);
1154
            i = IPC_GET_ARG1(call);
1155
            if (i < 0 || i >= MAX_VIEWPORTS) {
1155
            if (i < 0 || i >= MAX_VIEWPORTS) {
1156
                retval = EINVAL;
1156
                retval = EINVAL;
1157
                break;
1157
                break;
1158
            }
1158
            }
1159
            if (! viewports[i].initialized ) {
1159
            if (! viewports[i].initialized ) {
1160
                retval = EADDRNOTAVAIL;
1160
                retval = EADDRNOTAVAIL;
1161
                break;
1161
                break;
1162
            }
1162
            }
1163
            cursor_hide(vport);
1163
            cursor_hide(vport);
1164
            vp = i;
1164
            vp = i;
1165
            vport = &viewports[vp];
1165
            vport = &viewports[vp];
1166
            cursor_print(vport);
1166
            cursor_print(vport);
1167
            retval = 0;
1167
            retval = 0;
1168
            break;
1168
            break;
1169
        case FB_VIEWPORT_CREATE:
1169
        case FB_VIEWPORT_CREATE:
1170
            retval = viewport_create(IPC_GET_ARG1(call) >> 16,
1170
            retval = viewport_create(IPC_GET_ARG1(call) >> 16,
1171
                         IPC_GET_ARG1(call) & 0xffff,
1171
                         IPC_GET_ARG1(call) & 0xffff,
1172
                         IPC_GET_ARG2(call) >> 16,
1172
                         IPC_GET_ARG2(call) >> 16,
1173
                         IPC_GET_ARG2(call) & 0xffff);
1173
                         IPC_GET_ARG2(call) & 0xffff);
1174
            break;
1174
            break;
1175
        case FB_VIEWPORT_DELETE:
1175
        case FB_VIEWPORT_DELETE:
1176
            i = IPC_GET_ARG1(call);
1176
            i = IPC_GET_ARG1(call);
1177
            if (i < 0 || i >= MAX_VIEWPORTS) {
1177
            if (i < 0 || i >= MAX_VIEWPORTS) {
1178
                retval = EINVAL;
1178
                retval = EINVAL;
1179
                break;
1179
                break;
1180
            }
1180
            }
1181
            if (! viewports[i].initialized ) {
1181
            if (! viewports[i].initialized ) {
1182
                retval = EADDRNOTAVAIL;
1182
                retval = EADDRNOTAVAIL;
1183
                break;
1183
                break;
1184
            }
1184
            }
1185
            viewports[i].initialized = 0;
1185
            viewports[i].initialized = 0;
1186
            if (viewports[i].dbdata) {
1186
            if (viewports[i].dbdata) {
1187
                free(viewports[i].dbdata);
1187
                free(viewports[i].dbdata);
1188
                viewports[i].dbdata = NULL;
1188
                viewports[i].dbdata = NULL;
1189
            }
1189
            }
1190
            retval = 0;
1190
            retval = 0;
1191
            break;
1191
            break;
1192
        case FB_SET_STYLE:
1192
        case FB_SET_STYLE:
1193
            vport->style.fg_color = IPC_GET_ARG1(call);
1193
            vport->style.fg_color = IPC_GET_ARG1(call);
1194
            vport->style.bg_color = IPC_GET_ARG2(call);
1194
            vport->style.bg_color = IPC_GET_ARG2(call);
1195
            retval = 0;
1195
            retval = 0;
1196
            break;
1196
            break;
1197
        case FB_GET_RESOLUTION:
1197
        case FB_GET_RESOLUTION:
1198
            ipc_answer_fast(callid, 0, screen.xres,screen.yres);
1198
            ipc_answer_fast(callid, 0, screen.xres,screen.yres);
1199
            continue;
1199
            continue;
1200
        case FB_POINTER_MOVE:
1200
        case FB_POINTER_MOVE:
1201
            pointer_enabled = 1;
1201
            pointer_enabled = 1;
1202
            mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
1202
            mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
1203
            retval = 0;
1203
            retval = 0;
1204
            break;
1204
            break;
1205
        default:
1205
        default:
1206
            retval = ENOENT;
1206
            retval = ENOENT;
1207
        }
1207
        }
1208
        ipc_answer_fast(callid,retval,0,0);
1208
        ipc_answer_fast(callid,retval,0,0);
1209
    }
1209
    }
1210
}
1210
}
1211
 
1211
 
1212
/** Initialization of framebuffer */
1212
/** Initialization of framebuffer */
1213
int fb_init(void)
1213
int fb_init(void)
1214
{
1214
{
1215
    void *fb_ph_addr;
1215
    void *fb_ph_addr;
1216
    unsigned int fb_width;
1216
    unsigned int fb_width;
1217
    unsigned int fb_height;
1217
    unsigned int fb_height;
1218
    unsigned int fb_bpp;
1218
    unsigned int fb_bpp;
1219
    unsigned int fb_scanline;
1219
    unsigned int fb_scanline;
1220
    void *fb_addr;
1220
    void *fb_addr;
1221
    size_t asz;
1221
    size_t asz;
1222
 
1222
 
1223
    async_set_client_connection(fb_client_connection);
1223
    async_set_client_connection(fb_client_connection);
1224
 
1224
 
1225
    fb_ph_addr=(void *)sysinfo_value("fb.address.physical");
1225
    fb_ph_addr=(void *)sysinfo_value("fb.address.physical");
1226
    fb_width=sysinfo_value("fb.width");
1226
    fb_width=sysinfo_value("fb.width");
1227
    fb_height=sysinfo_value("fb.height");
1227
    fb_height=sysinfo_value("fb.height");
1228
    fb_bpp=sysinfo_value("fb.bpp");
1228
    fb_bpp=sysinfo_value("fb.bpp");
1229
    fb_scanline=sysinfo_value("fb.scanline");
1229
    fb_scanline=sysinfo_value("fb.scanline");
1230
 
1230
 
1231
    asz = fb_scanline*fb_height;
1231
    asz = fb_scanline*fb_height;
1232
    fb_addr = as_get_mappable_page(asz);
1232
    fb_addr = as_get_mappable_page(asz);
1233
   
1233
   
1234
    map_physmem(fb_ph_addr, fb_addr, ALIGN_UP(asz,PAGE_SIZE) >>PAGE_WIDTH,
1234
    map_physmem(fb_ph_addr, fb_addr, ALIGN_UP(asz,PAGE_SIZE) >>PAGE_WIDTH,
1235
            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);
1235
            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);
1236
   
1236
   
1237
    screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline);
1237
    screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline);
1238
 
1238
 
1239
    return 0;
1239
    return 0;
1240
}
1240
}
1241
 
1241
 
1242
 
1242
 
1243
/**
1243
/**
1244
 * @}
1244
 * @}
1245
 */
1245
 */
1246
 
1246