Subversion Repositories HelenOS

Rev

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

Rev 3679 Rev 3692
1
/*
1
/*
2
 * Copyright (c) 2006 Ondrej Palkovsky
2
 * Copyright (c) 2006 Ondrej Palkovsky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genarch
29
/** @addtogroup genarch
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <genarch/fb/font-8x16.h>
35
#include <genarch/fb/font-8x16.h>
36
#include <genarch/fb/visuals.h>
36
#include <genarch/fb/visuals.h>
37
#include <genarch/fb/fb.h>
37
#include <genarch/fb/fb.h>
38
#include <console/chardev.h>
38
#include <console/chardev.h>
39
#include <console/console.h>
39
#include <console/console.h>
40
#include <sysinfo/sysinfo.h>
40
#include <sysinfo/sysinfo.h>
41
#include <mm/slab.h>
41
#include <mm/slab.h>
42
#include <panic.h>
42
#include <panic.h>
43
#include <memstr.h>
43
#include <memstr.h>
44
#include <config.h>
44
#include <config.h>
45
#include <bitops.h>
45
#include <bitops.h>
46
#include <print.h>
46
#include <print.h>
47
#include <ddi/ddi.h>
47
#include <ddi/ddi.h>
48
#include <arch/types.h>
48
#include <arch/types.h>
49
 
49
 
50
#include "helenos.xbm"
50
#include "helenos.xbm"
51
 
51
 
52
static parea_t fb_parea;        /**< Physical memory area for fb. */
52
static parea_t fb_parea;        /**< Physical memory area for fb. */
53
 
53
 
54
SPINLOCK_INITIALIZE(fb_lock);
54
SPINLOCK_INITIALIZE(fb_lock);
55
 
55
 
56
static uint8_t *fbaddress = NULL;
56
static uint8_t *fbaddress = NULL;
57
 
57
 
58
static uint8_t *blankline = NULL;
58
static uint8_t *blankline = NULL;
59
static uint8_t *dbbuffer = NULL;    /* Buffer for fast scrolling console */
59
static uint8_t *dbbuffer = NULL;    /* Buffer for fast scrolling console */
60
static index_t dboffset;
60
static index_t dboffset;
61
 
61
 
62
static unsigned int xres = 0;
62
static unsigned int xres = 0;
63
static unsigned int yres = 0;
63
static unsigned int yres = 0;
64
static unsigned int scanline = 0;
64
static unsigned int scanline = 0;
65
static unsigned int pixelbytes = 0;
65
static unsigned int pixelbytes = 0;
66
#ifdef FB_INVERT_COLORS
66
#ifdef FB_INVERT_COLORS
67
static bool invert_colors = true;
67
static bool invert_colors = true;
68
#else
68
#else
69
static bool invert_colors = false;
69
static bool invert_colors = false;
70
#endif
70
#endif
71
 
71
 
72
static unsigned int position = 0;
72
static unsigned int position = 0;
73
static unsigned int columns = 0;
73
static unsigned int columns = 0;
74
static unsigned int rows = 0;
74
static unsigned int rows = 0;
75
 
75
 
76
#define COL_WIDTH   8
76
#define COL_WIDTH   8
77
#define ROW_BYTES   (scanline * FONT_SCANLINES)
77
#define ROW_BYTES   (scanline * FONT_SCANLINES)
78
 
78
 
79
#define BGCOLOR     0x000080
79
#define BGCOLOR     0x000080
80
#define FGCOLOR     0xffff00
80
#define FGCOLOR     0xffff00
81
#define LOGOCOLOR   0x2020b0
81
#define LOGOCOLOR   0x2020b0
82
 
82
 
83
#define RED(x, bits)    ((x >> (8 + 8 + 8 - bits)) & ((1 << bits) - 1))
83
#define RED(x, bits)    ((x >> (8 + 8 + 8 - bits)) & ((1 << bits) - 1))
84
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
84
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
85
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
85
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
86
 
86
 
87
#define POINTPOS(x, y)  ((y) * scanline + (x) * pixelbytes)
87
#define POINTPOS(x, y)  ((y) * scanline + (x) * pixelbytes)
88
 
88
 
89
/***************************************************************/
89
/***************************************************************/
90
/* Pixel specific fuctions */
90
/* Pixel specific fuctions */
91
 
91
 
92
static void (*rgb2scr)(void *, int);
92
static void (*rgb2scr)(void *, int);
93
static int (*scr2rgb)(void *);
93
static int (*scr2rgb)(void *);
94
 
94
 
95
static inline int COLOR(int color)
95
static inline int COLOR(int color)
96
{
96
{
97
    return invert_colors ? ~color : color;
97
    return invert_colors ? ~color : color;
98
}
98
}
99
 
99
 
100
/* Conversion routines between different color representations */
100
/* Conversion routines between different color representations */
101
static void rgb_byte0888(void *dst, int rgb)
101
static void rgb_byte0888(void *dst, int rgb)
102
{
102
{
103
    *((int *) dst) = rgb;
103
    *((int *) dst) = rgb;
104
}
104
}
105
 
105
 
106
static int byte0888_rgb(void *src)
106
static int byte0888_rgb(void *src)
107
{
107
{
108
    return (*((int *) src)) & 0xffffff;
108
    return (*((int *) src)) & 0xffffff;
109
}
109
}
110
 
110
 
111
static void bgr_byte0888(void *dst, int rgb)
111
static void bgr_byte0888(void *dst, int rgb)
112
{
112
{
113
    *((uint32_t *) dst) = BLUE(rgb, 8) << 16 | GREEN(rgb, 8) << 8 |
113
    *((uint32_t *) dst) = BLUE(rgb, 8) << 16 | GREEN(rgb, 8) << 8 |
114
        RED(rgb, 8);
114
        RED(rgb, 8);
115
}
115
}
116
 
116
 
117
static int byte0888_bgr(void *src)
117
static int byte0888_bgr(void *src)
118
{
118
{
119
    int color = *(uint32_t *)(src);
119
    int color = *(uint32_t *)(src);
120
    return ((color & 0xff) << 16) | (((color >> 8) & 0xff) << 8) |
120
    return ((color & 0xff) << 16) | (((color >> 8) & 0xff) << 8) |
121
        ((color >> 16) & 0xff);
121
        ((color >> 16) & 0xff);
122
}
122
}
123
 
123
 
124
static void rgb_byte888(void *dst, int rgb)
124
static void rgb_byte888(void *dst, int rgb)
125
{
125
{
126
    uint8_t *scr = (uint8_t *) dst;
126
    uint8_t *scr = (uint8_t *) dst;
127
#if defined(FB_INVERT_ENDIAN)
127
#if defined(FB_INVERT_ENDIAN)
128
    scr[0] = RED(rgb, 8);
128
    scr[0] = RED(rgb, 8);
129
    scr[1] = GREEN(rgb, 8);
129
    scr[1] = GREEN(rgb, 8);
130
    scr[2] = BLUE(rgb, 8);
130
    scr[2] = BLUE(rgb, 8);
131
#else
131
#else
132
    scr[2] = RED(rgb, 8);
132
    scr[2] = RED(rgb, 8);
133
    scr[1] = GREEN(rgb, 8);
133
    scr[1] = GREEN(rgb, 8);
134
    scr[0] = BLUE(rgb, 8);
134
    scr[0] = BLUE(rgb, 8);
135
#endif
135
#endif
136
}
136
}
137
 
137
 
138
static int byte888_rgb(void *src)
138
static int byte888_rgb(void *src)
139
{
139
{
140
    uint8_t *scr = (uint8_t *) src;
140
    uint8_t *scr = (uint8_t *) src;
141
#if defined(FB_INVERT_ENDIAN)
141
#if defined(FB_INVERT_ENDIAN)
142
    return scr[0] << 16 | scr[1] << 8 | scr[2];
142
    return scr[0] << 16 | scr[1] << 8 | scr[2];
143
#else
143
#else
144
    return scr[2] << 16 | scr[1] << 8 | scr[0];
144
    return scr[2] << 16 | scr[1] << 8 | scr[0];
145
#endif  
145
#endif  
146
}
146
}
147
 
147
 
148
/**  16-bit depth (5:5:5) */
148
/**  16-bit depth (5:5:5) */
149
static void rgb_byte555(void *dst, int rgb)
149
static void rgb_byte555(void *dst, int rgb)
150
{
150
{
151
    /* 5-bit, 5-bits, 5-bits */
151
    /* 5-bit, 5-bits, 5-bits */
152
    *((uint16_t *) dst) = RED(rgb, 5) << 10 | GREEN(rgb, 5) << 5 |
152
    *((uint16_t *) dst) = RED(rgb, 5) << 10 | GREEN(rgb, 5) << 5 |
153
        BLUE(rgb, 5);
153
        BLUE(rgb, 5);
154
}
154
}
155
 
155
 
156
/** 16-bit depth (5:5:5) */
156
/** 16-bit depth (5:5:5) */
157
static int byte555_rgb(void *src)
157
static int byte555_rgb(void *src)
158
{
158
{
159
    int color = *(uint16_t *)(src);
159
    int color = *(uint16_t *)(src);
160
    return (((color >> 10) & 0x1f) << (16 + 3)) |
160
    return (((color >> 10) & 0x1f) << (16 + 3)) |
161
        (((color >> 5) & 0x1f) << (8 + 3)) | ((color & 0x1f) << 3);
161
        (((color >> 5) & 0x1f) << (8 + 3)) | ((color & 0x1f) << 3);
162
}
162
}
163
 
163
 
164
/**  16-bit depth (5:6:5) */
164
/**  16-bit depth (5:6:5) */
165
static void rgb_byte565(void *dst, int rgb)
165
static void rgb_byte565(void *dst, int rgb)
166
{
166
{
167
    /* 5-bit, 6-bits, 5-bits */
167
    /* 5-bit, 6-bits, 5-bits */
168
    *((uint16_t *) dst) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 |
168
    *((uint16_t *) dst) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 |
169
        BLUE(rgb, 5);
169
        BLUE(rgb, 5);
170
}
170
}
171
 
171
 
172
/** 16-bit depth (5:6:5) */
172
/** 16-bit depth (5:6:5) */
173
static int byte565_rgb(void *src)
173
static int byte565_rgb(void *src)
174
{
174
{
175
    int color = *(uint16_t *)(src);
175
    int color = *(uint16_t *)(src);
176
    return (((color >> 11) & 0x1f) << (16 + 3)) |
176
    return (((color >> 11) & 0x1f) << (16 + 3)) |
177
        (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
177
        (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
178
}
178
}
179
 
179
 
180
/** Put pixel - 8-bit depth (color palette/3:2:3)
180
/** Put pixel - 8-bit depth (color palette/3:2:3, inverted)
181
 *
181
 *
182
 * Even though we try 3:2:3 color scheme here, an 8-bit framebuffer
182
 * Even though we try 3:2:3 color scheme here, an 8-bit framebuffer
183
 * will most likely use a color palette. The color appearance
183
 * will most likely use a color palette. The color appearance
184
 * will be pretty random and depend on the default installed
184
 * will be pretty random and depend on the default installed
185
 * palette. This could be fixed by supporting custom palette
185
 * palette. This could be fixed by supporting custom palette
186
 * and setting it to simulate the 8-bit truecolor.
186
 * and setting it to simulate the 8-bit truecolor.
-
 
187
 *
-
 
188
 * Currently we set the palette on the sparc64 port.
-
 
189
 *
-
 
190
 * Note that the byte is being inverted by this function. The reason is
-
 
191
 * that we would like to use a color palette where the white color code
-
 
192
 * is 0 and the black color code is 255, as some machines (SunBlade 1500)
-
 
193
 * use these codes for black and white and prevent to set codes
-
 
194
 * 0 and 255 to other colors.
187
 */
195
 */
188
static void rgb_byte8(void *dst, int rgb)
196
static void rgb_byte8(void *dst, int rgb)
189
{
197
{
190
    *((uint8_t *) dst) = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 |
198
    *((uint8_t *) dst) = 255 - (RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 |
191
        BLUE(rgb, 3);
199
        BLUE(rgb, 3));
192
}
200
}
193
 
201
 
194
/** Return pixel color - 8-bit depth (color palette/3:2:3)
202
/** Return pixel color - 8-bit depth (color palette/3:2:3)
195
 *
203
 *
196
 * See the comment for rgb_byte().
204
 * See the comment for rgb_byte().
197
 */
205
 */
198
static int byte8_rgb(void *src)
206
static int byte8_rgb(void *src)
199
{
207
{
200
    int color = *(uint8_t *)src;
208
    int color = 255 - (*(uint8_t *)src);
201
    return (((color >> 5) & 0x7) << (16 + 5)) |
209
    return (((color >> 5) & 0x7) << (16 + 5)) |
202
        (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
210
        (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
203
}
211
}
204
 
212
 
205
static void putpixel(unsigned int x, unsigned int y, int color)
213
static void putpixel(unsigned int x, unsigned int y, int color)
206
{
214
{
207
    (*rgb2scr)(&fbaddress[POINTPOS(x, y)], COLOR(color));
215
    (*rgb2scr)(&fbaddress[POINTPOS(x, y)], COLOR(color));
208
 
216
 
209
    if (dbbuffer) {
217
    if (dbbuffer) {
210
        int dline = (y + dboffset) % yres;
218
        int dline = (y + dboffset) % yres;
211
        (*rgb2scr)(&dbbuffer[POINTPOS(x, dline)], COLOR(color));
219
        (*rgb2scr)(&dbbuffer[POINTPOS(x, dline)], COLOR(color));
212
    }
220
    }
213
}
221
}
214
 
222
 
215
/** Get pixel from viewport */
223
/** Get pixel from viewport */
216
static int getpixel(unsigned int x, unsigned int y)
224
static int getpixel(unsigned int x, unsigned int y)
217
{
225
{
218
    if (dbbuffer) {
226
    if (dbbuffer) {
219
        int dline = (y + dboffset) % yres;
227
        int dline = (y + dboffset) % yres;
220
        return COLOR((*scr2rgb)(&dbbuffer[POINTPOS(x, dline)]));
228
        return COLOR((*scr2rgb)(&dbbuffer[POINTPOS(x, dline)]));
221
    }
229
    }
222
    return COLOR((*scr2rgb)(&fbaddress[POINTPOS(x, y)]));
230
    return COLOR((*scr2rgb)(&fbaddress[POINTPOS(x, y)]));
223
}
231
}
224
 
232
 
225
 
233
 
226
/** Fill screen with background color */
234
/** Fill screen with background color */
227
static void clear_screen(void)
235
static void clear_screen(void)
228
{
236
{
229
    unsigned int y;
237
    unsigned int y;
230
 
238
 
231
    for (y = 0; y < yres; y++) {
239
    for (y = 0; y < yres; y++) {
232
        memcpy(&fbaddress[scanline * y], blankline, xres * pixelbytes);
240
        memcpy(&fbaddress[scanline * y], blankline, xres * pixelbytes);
233
        if (dbbuffer)
241
        if (dbbuffer)
234
            memcpy(&dbbuffer[scanline * y], blankline,
242
            memcpy(&dbbuffer[scanline * y], blankline,
235
                xres * pixelbytes);
243
                xres * pixelbytes);
236
    }
244
    }
237
}
245
}
238
 
246
 
239
 
247
 
240
/** Scroll screen one row up */
248
/** Scroll screen one row up */
241
static void scroll_screen(void)
249
static void scroll_screen(void)
242
{
250
{
243
    if (dbbuffer) {
251
    if (dbbuffer) {
244
        count_t first;
252
        count_t first;
245
       
253
       
246
        /* Clear the last row */
254
        /* Clear the last row */
247
        memcpy(&dbbuffer[dboffset * scanline], blankline, ROW_BYTES);
255
        memcpy(&dbbuffer[dboffset * scanline], blankline, ROW_BYTES);
248
       
256
       
249
        dboffset = (dboffset + FONT_SCANLINES) % yres;
257
        dboffset = (dboffset + FONT_SCANLINES) % yres;
250
        first = yres - dboffset;
258
        first = yres - dboffset;
251
       
259
       
252
        /* Move all rows one row up */
260
        /* Move all rows one row up */
253
        if (xres * pixelbytes == scanline) {
261
        if (xres * pixelbytes == scanline) {
254
            memcpy(fbaddress, &dbbuffer[dboffset * scanline],
262
            memcpy(fbaddress, &dbbuffer[dboffset * scanline],
255
                first * scanline);
263
                first * scanline);
256
            memcpy(&fbaddress[first * scanline], dbbuffer,
264
            memcpy(&fbaddress[first * scanline], dbbuffer,
257
                dboffset * scanline);
265
                dboffset * scanline);
258
        } else {
266
        } else {
259
            /*
267
            /*
260
             * When the scanline is bigger than number of bytes
268
             * When the scanline is bigger than number of bytes
261
             * in the X-resolution, chances are that the
269
             * in the X-resolution, chances are that the
262
             * frame buffer memory past the X-resolution is special
270
             * frame buffer memory past the X-resolution is special
263
             * in some way. For example, the SUNW,ffb framebuffer
271
             * in some way. For example, the SUNW,ffb framebuffer
264
             * wraps this area around the beginning of the same
272
             * wraps this area around the beginning of the same
265
             * line. To avoid troubles, copy only memory as
273
             * line. To avoid troubles, copy only memory as
266
             * specified by the resolution.
274
             * specified by the resolution.
267
             */
275
             */
268
            unsigned int i;
276
            unsigned int i;
269
 
277
 
270
            for (i = 0; i < first; i++)
278
            for (i = 0; i < first; i++)
271
                memcpy(&fbaddress[i * scanline],
279
                memcpy(&fbaddress[i * scanline],
272
                    &dbbuffer[(dboffset + i) * scanline],
280
                    &dbbuffer[(dboffset + i) * scanline],
273
                    xres * pixelbytes);
281
                    xres * pixelbytes);
274
            for (i = 0; i < dboffset; i++)
282
            for (i = 0; i < dboffset; i++)
275
                memcpy(&fbaddress[(first + i) * scanline],
283
                memcpy(&fbaddress[(first + i) * scanline],
276
                    &dbbuffer[i * scanline], xres * pixelbytes);
284
                    &dbbuffer[i * scanline], xres * pixelbytes);
277
        }
285
        }
278
    } else {
286
    } else {
279
        uint8_t *lastline = &fbaddress[(rows - 1) * ROW_BYTES];
287
        uint8_t *lastline = &fbaddress[(rows - 1) * ROW_BYTES];
280
       
288
       
281
        if (xres * pixelbytes == scanline) {
289
        if (xres * pixelbytes == scanline) {
282
            /* Move all rows one row up */
290
            /* Move all rows one row up */
283
            memcpy((void *) fbaddress,
291
            memcpy((void *) fbaddress,
284
                (void *) &fbaddress[ROW_BYTES],
292
                (void *) &fbaddress[ROW_BYTES],
285
                scanline * yres - ROW_BYTES);
293
                scanline * yres - ROW_BYTES);
286
            /* Clear the last row */
294
            /* Clear the last row */
287
            memcpy((void *) lastline, (void *) blankline,
295
            memcpy((void *) lastline, (void *) blankline,
288
                ROW_BYTES);
296
                ROW_BYTES);
289
        } else {
297
        } else {
290
            /*
298
            /*
291
             * See the comment in the dbbuffer case.
299
             * See the comment in the dbbuffer case.
292
             */
300
             */
293
            unsigned int i;
301
            unsigned int i;
294
 
302
 
295
            /* Move all rows one row up */
303
            /* Move all rows one row up */
296
            for (i = 0; i < yres - FONT_SCANLINES; i++)
304
            for (i = 0; i < yres - FONT_SCANLINES; i++)
297
                memcpy(&fbaddress[i * scanline],
305
                memcpy(&fbaddress[i * scanline],
298
                    &fbaddress[(i + FONT_SCANLINES) * scanline],
306
                    &fbaddress[(i + FONT_SCANLINES) * scanline],
299
                    xres * pixelbytes);
307
                    xres * pixelbytes);
300
            /* Clear the last row */
308
            /* Clear the last row */
301
            for (i = 0; i < FONT_SCANLINES; i++)
309
            for (i = 0; i < FONT_SCANLINES; i++)
302
                memcpy(&lastline[i * scanline],
310
                memcpy(&lastline[i * scanline],
303
                    &blankline[i * scanline],
311
                    &blankline[i * scanline],
304
                    xres * pixelbytes);
312
                    xres * pixelbytes);
305
        }
313
        }
306
    }
314
    }
307
}
315
}
308
 
316
 
309
 
317
 
310
static void invert_pixel(unsigned int x, unsigned int y)
318
static void invert_pixel(unsigned int x, unsigned int y)
311
{
319
{
312
    putpixel(x, y, ~getpixel(x, y));
320
    putpixel(x, y, ~getpixel(x, y));
313
}
321
}
314
 
322
 
315
 
323
 
316
/** Draw one line of glyph at a given position */
324
/** Draw one line of glyph at a given position */
317
static void draw_glyph_line(unsigned int glline, unsigned int x, unsigned int y)
325
static void draw_glyph_line(unsigned int glline, unsigned int x, unsigned int y)
318
{
326
{
319
    unsigned int i;
327
    unsigned int i;
320
 
328
 
321
    for (i = 0; i < 8; i++)
329
    for (i = 0; i < 8; i++)
322
        if (glline & (1 << (7 - i))) {
330
        if (glline & (1 << (7 - i))) {
323
            putpixel(x + i, y, FGCOLOR);
331
            putpixel(x + i, y, FGCOLOR);
324
        } else
332
        } else
325
            putpixel(x + i, y, BGCOLOR);
333
            putpixel(x + i, y, BGCOLOR);
326
}
334
}
327
 
335
 
328
/***************************************************************/
336
/***************************************************************/
329
/* Character-console functions */
337
/* Character-console functions */
330
 
338
 
331
/** Draw character at given position */
339
/** Draw character at given position */
332
static void draw_glyph(uint8_t glyph, unsigned int col, unsigned int row)
340
static void draw_glyph(uint8_t glyph, unsigned int col, unsigned int row)
333
{
341
{
334
    unsigned int y;
342
    unsigned int y;
335
 
343
 
336
    for (y = 0; y < FONT_SCANLINES; y++)
344
    for (y = 0; y < FONT_SCANLINES; y++)
337
        draw_glyph_line(fb_font[glyph * FONT_SCANLINES + y],
345
        draw_glyph_line(fb_font[glyph * FONT_SCANLINES + y],
338
            col * COL_WIDTH, row * FONT_SCANLINES + y);
346
            col * COL_WIDTH, row * FONT_SCANLINES + y);
339
}
347
}
340
 
348
 
341
/** Invert character at given position */
349
/** Invert character at given position */
342
static void invert_char(unsigned int col, unsigned int row)
350
static void invert_char(unsigned int col, unsigned int row)
343
{
351
{
344
    unsigned int x;
352
    unsigned int x;
345
    unsigned int y;
353
    unsigned int y;
346
 
354
 
347
    for (x = 0; x < COL_WIDTH; x++)
355
    for (x = 0; x < COL_WIDTH; x++)
348
        for (y = 0; y < FONT_SCANLINES; y++)
356
        for (y = 0; y < FONT_SCANLINES; y++)
349
            invert_pixel(col * COL_WIDTH + x,
357
            invert_pixel(col * COL_WIDTH + x,
350
                row * FONT_SCANLINES + y);
358
                row * FONT_SCANLINES + y);
351
}
359
}
352
 
360
 
353
/** Draw character at default position */
361
/** Draw character at default position */
354
static void draw_char(char chr)
362
static void draw_char(char chr)
355
{
363
{
356
    draw_glyph(chr, position % columns, position / columns);
364
    draw_glyph(chr, position % columns, position / columns);
357
}
365
}
358
 
366
 
359
static void draw_logo(unsigned int startx, unsigned int starty)
367
static void draw_logo(unsigned int startx, unsigned int starty)
360
{
368
{
361
    unsigned int x;
369
    unsigned int x;
362
    unsigned int y;
370
    unsigned int y;
363
    unsigned int byte;
371
    unsigned int byte;
364
    unsigned int rowbytes;
372
    unsigned int rowbytes;
365
 
373
 
366
    rowbytes = (helenos_width - 1) / 8 + 1;
374
    rowbytes = (helenos_width - 1) / 8 + 1;
367
 
375
 
368
    for (y = 0; y < helenos_height; y++)
376
    for (y = 0; y < helenos_height; y++)
369
        for (x = 0; x < helenos_width; x++) {
377
        for (x = 0; x < helenos_width; x++) {
370
            byte = helenos_bits[rowbytes * y + x / 8];
378
            byte = helenos_bits[rowbytes * y + x / 8];
371
            byte >>= x % 8;
379
            byte >>= x % 8;
372
            if (byte & 1)
380
            if (byte & 1)
373
                putpixel(startx + x, starty + y,
381
                putpixel(startx + x, starty + y,
374
                    COLOR(LOGOCOLOR));
382
                    COLOR(LOGOCOLOR));
375
        }
383
        }
376
}
384
}
377
 
385
 
378
/***************************************************************/
386
/***************************************************************/
379
/* Stdout specific functions */
387
/* Stdout specific functions */
380
 
388
 
381
static void invert_cursor(void)
389
static void invert_cursor(void)
382
{
390
{
383
    invert_char(position % columns, position / columns);
391
    invert_char(position % columns, position / columns);
384
}
392
}
385
 
393
 
386
/** Print character to screen
394
/** Print character to screen
387
 *
395
 *
388
 *  Emulate basic terminal commands
396
 *  Emulate basic terminal commands
389
 */
397
 */
390
static void fb_putchar(chardev_t *dev, char ch)
398
static void fb_putchar(chardev_t *dev, char ch)
391
{
399
{
392
    spinlock_lock(&fb_lock);
400
    spinlock_lock(&fb_lock);
393
   
401
   
394
    switch (ch) {
402
    switch (ch) {
395
    case '\n':
403
    case '\n':
396
        invert_cursor();
404
        invert_cursor();
397
        position += columns;
405
        position += columns;
398
        position -= position % columns;
406
        position -= position % columns;
399
        break;
407
        break;
400
    case '\r':
408
    case '\r':
401
        invert_cursor();
409
        invert_cursor();
402
        position -= position % columns;
410
        position -= position % columns;
403
        break;
411
        break;
404
    case '\b':
412
    case '\b':
405
        invert_cursor();
413
        invert_cursor();
406
        if (position % columns)
414
        if (position % columns)
407
            position--;
415
            position--;
408
        break;
416
        break;
409
    case '\t':
417
    case '\t':
410
        invert_cursor();
418
        invert_cursor();
411
        do {
419
        do {
412
            draw_char(' ');
420
            draw_char(' ');
413
            position++;
421
            position++;
414
        } while ((position % 8) && position < columns * rows);
422
        } while ((position % 8) && position < columns * rows);
415
        break;
423
        break;
416
    default:
424
    default:
417
        draw_char(ch);
425
        draw_char(ch);
418
        position++;
426
        position++;
419
    }
427
    }
420
   
428
   
421
    if (position >= columns * rows) {
429
    if (position >= columns * rows) {
422
        position -= columns;
430
        position -= columns;
423
        scroll_screen();
431
        scroll_screen();
424
    }
432
    }
425
   
433
   
426
    invert_cursor();
434
    invert_cursor();
427
   
435
   
428
    spinlock_unlock(&fb_lock);
436
    spinlock_unlock(&fb_lock);
429
}
437
}
430
 
438
 
431
static chardev_t framebuffer;
439
static chardev_t framebuffer;
432
static chardev_operations_t fb_ops = {
440
static chardev_operations_t fb_ops = {
433
    .write = fb_putchar,
441
    .write = fb_putchar,
434
};
442
};
435
 
443
 
436
 
444
 
437
/** Initialize framebuffer as a chardev output device
445
/** Initialize framebuffer as a chardev output device
438
 *
446
 *
439
 * @param props     Properties of the framebuffer device.
447
 * @param props     Properties of the framebuffer device.
440
 */
448
 */
441
void fb_init(fb_properties_t *props)
449
void fb_init(fb_properties_t *props)
442
{
450
{
443
    switch (props->visual) {
451
    switch (props->visual) {
444
    case VISUAL_INDIRECT_8:
452
    case VISUAL_INDIRECT_8:
445
        rgb2scr = rgb_byte8;
453
        rgb2scr = rgb_byte8;
446
        scr2rgb = byte8_rgb;
454
        scr2rgb = byte8_rgb;
447
        pixelbytes = 1;
455
        pixelbytes = 1;
448
        break;
456
        break;
449
    case VISUAL_RGB_5_5_5:
457
    case VISUAL_RGB_5_5_5:
450
        rgb2scr = rgb_byte555;
458
        rgb2scr = rgb_byte555;
451
        scr2rgb = byte555_rgb;
459
        scr2rgb = byte555_rgb;
452
        pixelbytes = 2;
460
        pixelbytes = 2;
453
        break;
461
        break;
454
    case VISUAL_RGB_5_6_5:
462
    case VISUAL_RGB_5_6_5:
455
        rgb2scr = rgb_byte565;
463
        rgb2scr = rgb_byte565;
456
        scr2rgb = byte565_rgb;
464
        scr2rgb = byte565_rgb;
457
        pixelbytes = 2;
465
        pixelbytes = 2;
458
        break;
466
        break;
459
    case VISUAL_RGB_8_8_8:
467
    case VISUAL_RGB_8_8_8:
460
        rgb2scr = rgb_byte888;
468
        rgb2scr = rgb_byte888;
461
        scr2rgb = byte888_rgb;
469
        scr2rgb = byte888_rgb;
462
        pixelbytes = 3;
470
        pixelbytes = 3;
463
        break;
471
        break;
464
    case VISUAL_RGB_8_8_8_0:
472
    case VISUAL_RGB_8_8_8_0:
465
        rgb2scr = rgb_byte888;
473
        rgb2scr = rgb_byte888;
466
        scr2rgb = byte888_rgb;
474
        scr2rgb = byte888_rgb;
467
        pixelbytes = 4;
475
        pixelbytes = 4;
468
        break;
476
        break;
469
    case VISUAL_RGB_0_8_8_8:
477
    case VISUAL_RGB_0_8_8_8:
470
        rgb2scr = rgb_byte0888;
478
        rgb2scr = rgb_byte0888;
471
        scr2rgb = byte0888_rgb;
479
        scr2rgb = byte0888_rgb;
472
        pixelbytes = 4;
480
        pixelbytes = 4;
473
        break;
481
        break;
474
    case VISUAL_BGR_0_8_8_8:
482
    case VISUAL_BGR_0_8_8_8:
475
        rgb2scr = bgr_byte0888;
483
        rgb2scr = bgr_byte0888;
476
        scr2rgb = byte0888_bgr;
484
        scr2rgb = byte0888_bgr;
477
        pixelbytes = 4;
485
        pixelbytes = 4;
478
        break;
486
        break;
479
    default:
487
    default:
480
        panic("Unsupported visual.\n");
488
        panic("Unsupported visual.\n");
481
    }
489
    }
482
   
490
   
483
    unsigned int fbsize = props->scan * props->y;
491
    unsigned int fbsize = props->scan * props->y;
484
   
492
   
485
    /* Map the framebuffer */
493
    /* Map the framebuffer */
486
    fbaddress = (uint8_t *) hw_map((uintptr_t) props->addr + props->offset,
494
    fbaddress = (uint8_t *) hw_map((uintptr_t) props->addr,
487
        fbsize);
495
        fbsize + props->offset);
488
    fbaddress += props->offset;
496
    fbaddress += props->offset;
489
   
497
   
490
    xres = props->x;
498
    xres = props->x;
491
    yres = props->y;
499
    yres = props->y;
492
    scanline = props->scan;
500
    scanline = props->scan;
493
   
501
   
494
    rows = props->y / FONT_SCANLINES;
502
    rows = props->y / FONT_SCANLINES;
495
    columns = props->x / COL_WIDTH;
503
    columns = props->x / COL_WIDTH;
496
 
504
 
497
    fb_parea.pbase = (uintptr_t) props->addr;
505
    fb_parea.pbase = (uintptr_t) props->addr + props->offset;
498
    fb_parea.vbase = (uintptr_t) fbaddress;
506
    fb_parea.vbase = (uintptr_t) fbaddress;
499
    fb_parea.frames = SIZE2FRAMES(fbsize);
507
    fb_parea.frames = SIZE2FRAMES(fbsize);
500
    fb_parea.cacheable = false;
508
    fb_parea.cacheable = false;
501
    ddi_parea_register(&fb_parea);
509
    ddi_parea_register(&fb_parea);
502
 
510
 
503
    sysinfo_set_item_val("fb", NULL, true);
511
    sysinfo_set_item_val("fb", NULL, true);
504
    sysinfo_set_item_val("fb.kind", NULL, 1);
512
    sysinfo_set_item_val("fb.kind", NULL, 1);
505
    sysinfo_set_item_val("fb.width", NULL, xres);
513
    sysinfo_set_item_val("fb.width", NULL, xres);
506
    sysinfo_set_item_val("fb.height", NULL, yres);
514
    sysinfo_set_item_val("fb.height", NULL, yres);
507
    sysinfo_set_item_val("fb.scanline", NULL, props->scan);
515
    sysinfo_set_item_val("fb.scanline", NULL, props->scan);
508
    sysinfo_set_item_val("fb.visual", NULL, props->visual);
516
    sysinfo_set_item_val("fb.visual", NULL, props->visual);
509
    sysinfo_set_item_val("fb.address.physical", NULL, props->addr);
517
    sysinfo_set_item_val("fb.address.physical", NULL, props->addr);
510
    sysinfo_set_item_val("fb.offset", NULL, props->offset);
518
    sysinfo_set_item_val("fb.offset", NULL, props->offset);
511
    sysinfo_set_item_val("fb.invert-colors", NULL, invert_colors);
519
    sysinfo_set_item_val("fb.invert-colors", NULL, invert_colors);
512
 
520
 
513
    /* Allocate double buffer */
521
    /* Allocate double buffer */
514
    unsigned int order = fnzb(SIZE2FRAMES(fbsize) - 1) + 1;
522
    unsigned int order = fnzb(SIZE2FRAMES(fbsize) - 1) + 1;
515
    dbbuffer = (uint8_t *) frame_alloc(order, FRAME_ATOMIC | FRAME_KA);
523
    dbbuffer = (uint8_t *) frame_alloc(order, FRAME_ATOMIC | FRAME_KA);
516
    if (!dbbuffer)
524
    if (!dbbuffer)
517
        printf("Failed to allocate scroll buffer.\n");
525
        printf("Failed to allocate scroll buffer.\n");
518
    dboffset = 0;
526
    dboffset = 0;
519
 
527
 
520
    /* Initialized blank line */
528
    /* Initialized blank line */
521
    blankline = (uint8_t *) malloc(ROW_BYTES, FRAME_ATOMIC);
529
    blankline = (uint8_t *) malloc(ROW_BYTES, FRAME_ATOMIC);
522
    if (!blankline)
530
    if (!blankline)
523
        panic("Failed to allocate blank line for framebuffer.");
531
        panic("Failed to allocate blank line for framebuffer.");
524
    unsigned int x, y;
532
    unsigned int x, y;
525
    for (y = 0; y < FONT_SCANLINES; y++)
533
    for (y = 0; y < FONT_SCANLINES; y++)
526
        for (x = 0; x < xres; x++)
534
        for (x = 0; x < xres; x++)
527
            (*rgb2scr)(&blankline[POINTPOS(x, y)], COLOR(BGCOLOR));
535
            (*rgb2scr)(&blankline[POINTPOS(x, y)], COLOR(BGCOLOR));
528
   
536
   
529
    clear_screen();
537
    clear_screen();
530
 
538
 
531
    /* Update size of screen to match text area */
539
    /* Update size of screen to match text area */
532
    yres = rows * FONT_SCANLINES;
540
    yres = rows * FONT_SCANLINES;
533
 
541
 
534
    draw_logo(xres - helenos_width, 0);
542
    draw_logo(xres - helenos_width, 0);
535
    invert_cursor();
543
    invert_cursor();
536
 
544
 
537
    chardev_initialize("fb", &framebuffer, &fb_ops);
545
    chardev_initialize("fb", &framebuffer, &fb_ops);
538
    stdout = &framebuffer;
546
    stdout = &framebuffer;
539
}
547
}
540
 
548
 
541
/** @}
549
/** @}
542
 */
550
 */
543
 
551