Subversion Repositories HelenOS

Rev

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

Rev 1790 Rev 1837
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/fb.h>
36
#include <genarch/fb/fb.h>
37
#include <console/chardev.h>
37
#include <console/chardev.h>
38
#include <console/console.h>
38
#include <console/console.h>
39
#include <sysinfo/sysinfo.h>
39
#include <sysinfo/sysinfo.h>
40
#include <mm/slab.h>
40
#include <mm/slab.h>
41
#include <align.h>
41
#include <align.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
 
47
 
48
#include "helenos.xbm"
48
#include "helenos.xbm"
49
 
49
 
50
SPINLOCK_INITIALIZE(fb_lock);
50
SPINLOCK_INITIALIZE(fb_lock);
51
 
51
 
52
static uint8_t *fbaddress = NULL;
52
static uint8_t *fbaddress = NULL;
53
 
53
 
54
static uint8_t *blankline = NULL;
54
static uint8_t *blankline = NULL;
55
static uint8_t *dbbuffer = NULL; /* Buffer for fast scrolling console */
55
static uint8_t *dbbuffer = NULL; /* Buffer for fast scrolling console */
56
static int dboffset;
56
static int dboffset;
57
 
57
 
58
static unsigned int xres = 0;
58
static unsigned int xres = 0;
59
static unsigned int yres = 0;
59
static unsigned int yres = 0;
60
static unsigned int scanline = 0;
60
static unsigned int scanline = 0;
61
static unsigned int bitspp = 0;
61
static unsigned int bitspp = 0;
62
static unsigned int pixelbytes = 0;
62
static unsigned int pixelbytes = 0;
63
 
63
 
64
static unsigned int position = 0;
64
static unsigned int position = 0;
65
static unsigned int columns = 0;
65
static unsigned int columns = 0;
66
static unsigned int rows = 0;
66
static unsigned int rows = 0;
67
 
67
 
68
 
68
 
69
#define COL_WIDTH   8
69
#define COL_WIDTH   8
70
#define ROW_BYTES   (scanline * FONT_SCANLINES)
70
#define ROW_BYTES   (scanline * FONT_SCANLINES)
71
 
71
 
72
#define BGCOLOR     0x000080
72
#define BGCOLOR     0x000080
73
#define FGCOLOR     0xffff00
73
#define FGCOLOR     0xffff00
74
#define LOGOCOLOR   0x2020b0
74
#define LOGOCOLOR   0x2020b0
75
 
75
 
76
#define RED(x, bits)    ((x >> (16 + 8 - bits)) & ((1 << bits) - 1))
76
#define RED(x, bits)    ((x >> (16 + 8 - bits)) & ((1 << bits) - 1))
77
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
77
#define GREEN(x, bits)  ((x >> (8 + 8 - bits)) & ((1 << bits) - 1))
78
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
78
#define BLUE(x, bits)   ((x >> (8 - bits)) & ((1 << bits) - 1))
79
 
79
 
80
#define POINTPOS(x, y)  ((y) * scanline + (x) * pixelbytes)
80
#define POINTPOS(x, y)  ((y) * scanline + (x) * pixelbytes)
81
 
81
 
82
/***************************************************************/
82
/***************************************************************/
83
/* Pixel specific fuctions */
83
/* Pixel specific fuctions */
84
 
84
 
85
static void (*rgb2scr)(void *, int);
85
static void (*rgb2scr)(void *, int);
86
static int (*scr2rgb)(void *);
86
static int (*scr2rgb)(void *);
87
 
87
 
88
/* Conversion routines between different color representations */
88
/* Conversion routines between different color representations */
89
static void rgb_4byte(void *dst, int rgb)
89
static void rgb_4byte(void *dst, int rgb)
90
{
90
{
91
    *(int *)dst = rgb;
91
    *(int *)dst = rgb;
92
}
92
}
93
 
93
 
94
static int byte4_rgb(void *src)
94
static int byte4_rgb(void *src)
95
{
95
{
96
    return (*(int *)src) & 0xffffff;
96
    return (*(int *)src) & 0xffffff;
97
}
97
}
98
 
98
 
99
static void rgb_3byte(void *dst, int rgb)
99
static void rgb_3byte(void *dst, int rgb)
100
{
100
{
101
    uint8_t *scr = dst;
101
    uint8_t *scr = dst;
102
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
102
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
103
    scr[0] = RED(rgb, 8);
103
    scr[0] = RED(rgb, 8);
104
    scr[1] = GREEN(rgb, 8);
104
    scr[1] = GREEN(rgb, 8);
105
    scr[2] = BLUE(rgb, 8);
105
    scr[2] = BLUE(rgb, 8);
106
#else
106
#else
107
    scr[2] = RED(rgb, 8);
107
    scr[2] = RED(rgb, 8);
108
    scr[1] = GREEN(rgb, 8);
108
    scr[1] = GREEN(rgb, 8);
109
    scr[0] = BLUE(rgb, 8);
109
    scr[0] = BLUE(rgb, 8);
110
#endif
110
#endif
111
}
111
}
112
 
112
 
113
static int byte3_rgb(void *src)
113
static int byte3_rgb(void *src)
114
{
114
{
115
    uint8_t *scr = src;
115
    uint8_t *scr = src;
116
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
116
#if (defined(BIG_ENDIAN) || defined(FB_BIG_ENDIAN))
117
    return scr[0] << 16 | scr[1] << 8 | scr[2];
117
    return scr[0] << 16 | scr[1] << 8 | scr[2];
118
#else
118
#else
119
    return scr[2] << 16 | scr[1] << 8 | scr[0];
119
    return scr[2] << 16 | scr[1] << 8 | scr[0];
120
#endif  
120
#endif  
121
}
121
}
122
 
122
 
123
/**  16-bit depth (5:6:5) */
123
/**  16-bit depth (5:6:5) */
124
static void rgb_2byte(void *dst, int rgb)
124
static void rgb_2byte(void *dst, int rgb)
125
{
125
{
126
    /* 5-bit, 6-bits, 5-bits */
126
    /* 5-bit, 6-bits, 5-bits */
127
    *((uint16_t *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5);
127
    *((uint16_t *)(dst)) = RED(rgb, 5) << 11 | GREEN(rgb, 6) << 5 | BLUE(rgb, 5);
128
}
128
}
129
 
129
 
130
/** 16-bit depth (5:6:5) */
130
/** 16-bit depth (5:6:5) */
131
static int byte2_rgb(void *src)
131
static int byte2_rgb(void *src)
132
{
132
{
133
    int color = *(uint16_t *)(src);
133
    int color = *(uint16_t *)(src);
134
    return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
134
    return (((color >> 11) & 0x1f) << (16 + 3)) | (((color >> 5) & 0x3f) << (8 + 2)) | ((color & 0x1f) << 3);
135
}
135
}
136
 
136
 
137
/** Put pixel - 8-bit depth (3:2:3) */
137
/** Put pixel - 8-bit depth (color palette/3:2:3)
-
 
138
 *
-
 
139
 * Even though we try 3:2:3 color scheme here, an 8-bit framebuffer
-
 
140
 * will most likely use a color palette. The color appearance
-
 
141
 * will be pretty random and depend on the default installed
-
 
142
 * palette. This could be fixed by supporting custom palette
-
 
143
 * and setting it to simulate the 8-bit truecolor.
-
 
144
 */
138
static void rgb_1byte(void *dst, int rgb)
145
static void rgb_1byte(void *dst, int rgb)
139
{
146
{
140
    *(uint8_t *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3);
147
    *(uint8_t *)dst = RED(rgb, 3) << 5 | GREEN(rgb, 2) << 3 | BLUE(rgb, 3);
141
}
148
}
142
 
149
 
143
/** Return pixel color - 8-bit depth (3:2:3) */
150
/** Return pixel color - 8-bit depth (color palette/3:2:3)
-
 
151
 *
-
 
152
 * See the comment for rgb_1byte().
-
 
153
 */
144
static int byte1_rgb(void *src)
154
static int byte1_rgb(void *src)
145
{
155
{
146
    int color = *(uint8_t *)src;
156
    int color = *(uint8_t *)src;
147
    return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
157
    return (((color >> 5) & 0x7) << (16 + 5)) | (((color >> 3) & 0x3) << (8 + 6)) | ((color & 0x7) << 5);
148
}
158
}
149
 
159
 
150
static void putpixel(unsigned int x, unsigned int y, int color)
160
static void putpixel(unsigned int x, unsigned int y, int color)
151
{
161
{
152
    (*rgb2scr)(&fbaddress[POINTPOS(x,y)],color);
162
    (*rgb2scr)(&fbaddress[POINTPOS(x,y)],color);
153
 
163
 
154
    if (dbbuffer) {
164
    if (dbbuffer) {
155
        int dline = (y + dboffset) % yres;
165
        int dline = (y + dboffset) % yres;
156
        (*rgb2scr)(&dbbuffer[POINTPOS(x,dline)],color);
166
        (*rgb2scr)(&dbbuffer[POINTPOS(x,dline)],color);
157
    }
167
    }
158
}
168
}
159
 
169
 
160
/** Get pixel from viewport */
170
/** Get pixel from viewport */
161
static int getpixel(unsigned int x, unsigned int y)
171
static int getpixel(unsigned int x, unsigned int y)
162
{
172
{
163
    if (dbbuffer) {
173
    if (dbbuffer) {
164
        int dline = (y + dboffset) % yres;
174
        int dline = (y + dboffset) % yres;
165
        return (*scr2rgb)(&dbbuffer[POINTPOS(x,dline)]);
175
        return (*scr2rgb)(&dbbuffer[POINTPOS(x,dline)]);
166
    }
176
    }
167
    return (*scr2rgb)(&fbaddress[POINTPOS(x,y)]);
177
    return (*scr2rgb)(&fbaddress[POINTPOS(x,y)]);
168
}
178
}
169
 
179
 
170
 
180
 
171
/** Fill screen with background color */
181
/** Fill screen with background color */
172
static void clear_screen(void)
182
static void clear_screen(void)
173
{
183
{
174
    unsigned int y;
184
    unsigned int y;
175
 
185
 
176
    for (y = 0; y < yres; y++) {
186
    for (y = 0; y < yres; y++) {
177
        memcpy(&fbaddress[scanline*y], blankline, xres*pixelbytes);
187
        memcpy(&fbaddress[scanline*y], blankline, xres*pixelbytes);
178
        if (dbbuffer)
188
        if (dbbuffer)
179
            memcpy(&dbbuffer[scanline*y], blankline, xres*pixelbytes);
189
            memcpy(&dbbuffer[scanline*y], blankline, xres*pixelbytes);
180
    }
190
    }
181
}
191
}
182
 
192
 
183
 
193
 
184
/** Scroll screen one row up */
194
/** Scroll screen one row up */
185
static void scroll_screen(void)
195
static void scroll_screen(void)
186
{
196
{
187
    uint8_t *lastline = &fbaddress[(rows - 1) * ROW_BYTES];
197
    uint8_t *lastline = &fbaddress[(rows - 1) * ROW_BYTES];
188
    int firstsz;
198
    int firstsz;
189
 
199
 
190
    if (dbbuffer) {
200
    if (dbbuffer) {
191
        memcpy(&dbbuffer[dboffset*scanline], blankline, FONT_SCANLINES*scanline);
201
        memcpy(&dbbuffer[dboffset*scanline], blankline, FONT_SCANLINES*scanline);
192
       
202
       
193
        dboffset = (dboffset + FONT_SCANLINES) % yres;
203
        dboffset = (dboffset + FONT_SCANLINES) % yres;
194
        firstsz = yres-dboffset;
204
        firstsz = yres-dboffset;
195
 
205
 
196
        memcpy(fbaddress, &dbbuffer[scanline*dboffset], firstsz*scanline);
206
        memcpy(fbaddress, &dbbuffer[scanline*dboffset], firstsz*scanline);
197
        memcpy(&fbaddress[firstsz*scanline], dbbuffer, dboffset*scanline);
207
        memcpy(&fbaddress[firstsz*scanline], dbbuffer, dboffset*scanline);
198
    } else {
208
    } else {
199
        memcpy((void *) fbaddress, (void *) &fbaddress[ROW_BYTES], scanline * yres - ROW_BYTES);
209
        memcpy((void *) fbaddress, (void *) &fbaddress[ROW_BYTES], scanline * yres - ROW_BYTES);
200
        /* Clear last row */
210
        /* Clear last row */
201
        memcpy((void *) lastline, (void *) blankline, ROW_BYTES);
211
        memcpy((void *) lastline, (void *) blankline, ROW_BYTES);
202
    }
212
    }
203
}
213
}
204
 
214
 
205
 
215
 
206
static void invert_pixel(unsigned int x, unsigned int y)
216
static void invert_pixel(unsigned int x, unsigned int y)
207
{
217
{
208
    putpixel(x, y, ~getpixel(x, y));
218
    putpixel(x, y, ~getpixel(x, y));
209
}
219
}
210
 
220
 
211
 
221
 
212
/** Draw one line of glyph at a given position */
222
/** Draw one line of glyph at a given position */
213
static void draw_glyph_line(unsigned int glline, unsigned int x, unsigned int y)
223
static void draw_glyph_line(unsigned int glline, unsigned int x, unsigned int y)
214
{
224
{
215
    unsigned int i;
225
    unsigned int i;
216
 
226
 
217
    for (i = 0; i < 8; i++)
227
    for (i = 0; i < 8; i++)
218
        if (glline & (1 << (7 - i))) {
228
        if (glline & (1 << (7 - i))) {
219
            putpixel(x + i, y, FGCOLOR);
229
            putpixel(x + i, y, FGCOLOR);
220
        } else
230
        } else
221
            putpixel(x + i, y, BGCOLOR);
231
            putpixel(x + i, y, BGCOLOR);
222
}
232
}
223
 
233
 
224
/***************************************************************/
234
/***************************************************************/
225
/* Character-console functions */
235
/* Character-console functions */
226
 
236
 
227
/** Draw character at given position */
237
/** Draw character at given position */
228
static void draw_glyph(uint8_t glyph, unsigned int col, unsigned int row)
238
static void draw_glyph(uint8_t glyph, unsigned int col, unsigned int row)
229
{
239
{
230
    unsigned int y;
240
    unsigned int y;
231
 
241
 
232
    for (y = 0; y < FONT_SCANLINES; y++)
242
    for (y = 0; y < FONT_SCANLINES; y++)
233
        draw_glyph_line(fb_font[glyph * FONT_SCANLINES + y], col * COL_WIDTH, row * FONT_SCANLINES + y);
243
        draw_glyph_line(fb_font[glyph * FONT_SCANLINES + y], col * COL_WIDTH, row * FONT_SCANLINES + y);
234
}
244
}
235
 
245
 
236
/** Invert character at given position */
246
/** Invert character at given position */
237
static void invert_char(unsigned int col, unsigned int row)
247
static void invert_char(unsigned int col, unsigned int row)
238
{
248
{
239
    unsigned int x;
249
    unsigned int x;
240
    unsigned int y;
250
    unsigned int y;
241
 
251
 
242
    for (x = 0; x < COL_WIDTH; x++)
252
    for (x = 0; x < COL_WIDTH; x++)
243
        for (y = 0; y < FONT_SCANLINES; y++)
253
        for (y = 0; y < FONT_SCANLINES; y++)
244
            invert_pixel(col * COL_WIDTH + x, row * FONT_SCANLINES + y);
254
            invert_pixel(col * COL_WIDTH + x, row * FONT_SCANLINES + y);
245
}
255
}
246
 
256
 
247
/** Draw character at default position */
257
/** Draw character at default position */
248
static void draw_char(char chr)
258
static void draw_char(char chr)
249
{
259
{
250
    draw_glyph(chr, position % columns, position / columns);
260
    draw_glyph(chr, position % columns, position / columns);
251
}
261
}
252
 
262
 
253
static void draw_logo(unsigned int startx, unsigned int starty)
263
static void draw_logo(unsigned int startx, unsigned int starty)
254
{
264
{
255
    unsigned int x;
265
    unsigned int x;
256
    unsigned int y;
266
    unsigned int y;
257
    unsigned int byte;
267
    unsigned int byte;
258
    unsigned int rowbytes;
268
    unsigned int rowbytes;
259
 
269
 
260
    rowbytes = (helenos_width - 1) / 8 + 1;
270
    rowbytes = (helenos_width - 1) / 8 + 1;
261
 
271
 
262
    for (y = 0; y < helenos_height; y++)
272
    for (y = 0; y < helenos_height; y++)
263
        for (x = 0; x < helenos_width; x++) {
273
        for (x = 0; x < helenos_width; x++) {
264
            byte = helenos_bits[rowbytes * y + x / 8];
274
            byte = helenos_bits[rowbytes * y + x / 8];
265
            byte >>= x % 8;
275
            byte >>= x % 8;
266
            if (byte & 1)
276
            if (byte & 1)
267
                putpixel(startx + x, starty + y, LOGOCOLOR);
277
                putpixel(startx + x, starty + y, LOGOCOLOR);
268
        }
278
        }
269
}
279
}
270
 
280
 
271
/***************************************************************/
281
/***************************************************************/
272
/* Stdout specific functions */
282
/* Stdout specific functions */
273
 
283
 
274
static void invert_cursor(void)
284
static void invert_cursor(void)
275
{
285
{
276
    invert_char(position % columns, position / columns);
286
    invert_char(position % columns, position / columns);
277
}
287
}
278
 
288
 
279
/** Print character to screen
289
/** Print character to screen
280
 *
290
 *
281
 *  Emulate basic terminal commands
291
 *  Emulate basic terminal commands
282
 */
292
 */
283
static void fb_putchar(chardev_t *dev, char ch)
293
static void fb_putchar(chardev_t *dev, char ch)
284
{
294
{
285
    spinlock_lock(&fb_lock);
295
    spinlock_lock(&fb_lock);
286
   
296
   
287
    switch (ch) {
297
    switch (ch) {
288
        case '\n':
298
        case '\n':
289
            invert_cursor();
299
            invert_cursor();
290
            position += columns;
300
            position += columns;
291
            position -= position % columns;
301
            position -= position % columns;
292
            break;
302
            break;
293
        case '\r':
303
        case '\r':
294
            invert_cursor();
304
            invert_cursor();
295
            position -= position % columns;
305
            position -= position % columns;
296
            break;
306
            break;
297
        case '\b':
307
        case '\b':
298
            invert_cursor();
308
            invert_cursor();
299
            if (position % columns)
309
            if (position % columns)
300
                position--;
310
                position--;
301
            break;
311
            break;
302
        case '\t':
312
        case '\t':
303
            invert_cursor();
313
            invert_cursor();
304
            do {
314
            do {
305
                draw_char(' ');
315
                draw_char(' ');
306
                position++;
316
                position++;
307
            } while ((position % 8) && position < columns * rows);
317
            } while ((position % 8) && position < columns * rows);
308
            break;
318
            break;
309
        default:
319
        default:
310
            draw_char(ch);
320
            draw_char(ch);
311
            position++;
321
            position++;
312
    }
322
    }
313
   
323
   
314
    if (position >= columns * rows) {
324
    if (position >= columns * rows) {
315
        position -= columns;
325
        position -= columns;
316
        scroll_screen();
326
        scroll_screen();
317
    }
327
    }
318
   
328
   
319
    invert_cursor();
329
    invert_cursor();
320
   
330
   
321
    spinlock_unlock(&fb_lock);
331
    spinlock_unlock(&fb_lock);
322
}
332
}
323
 
333
 
324
static chardev_t framebuffer;
334
static chardev_t framebuffer;
325
static chardev_operations_t fb_ops = {
335
static chardev_operations_t fb_ops = {
326
    .write = fb_putchar,
336
    .write = fb_putchar,
327
};
337
};
328
 
338
 
329
 
339
 
330
/** Initialize framebuffer as a chardev output device
340
/** Initialize framebuffer as a chardev output device
331
 *
341
 *
332
 * @param addr Physical address of the framebuffer
342
 * @param addr  Physical address of the framebuffer
333
 * @param x    Screen width in pixels
343
 * @param x     Screen width in pixels
334
 * @param y    Screen height in pixels
344
 * @param y     Screen height in pixels
335
 * @param bpp  Bits per pixel (8, 16, 24, 32)
345
 * @param bpp   Bits per pixel (8, 16, 24, 32)
336
 * @param scan Bytes per one scanline
346
 * @param scan  Bytes per one scanline
337
 *
-
 
-
 
347
 * @param align Request alignment for 24bpp mode.
338
 */
348
 */
339
void fb_init(uintptr_t addr, unsigned int x, unsigned int y, unsigned int bpp, unsigned int scan)
349
void fb_init(uintptr_t addr, unsigned int x, unsigned int y, unsigned int bpp, unsigned int scan, bool align)
340
{
350
{
341
    switch (bpp) {
351
    switch (bpp) {
342
        case 8:
352
        case 8:
343
            rgb2scr = rgb_1byte;
353
            rgb2scr = rgb_1byte;
344
            scr2rgb = byte1_rgb;
354
            scr2rgb = byte1_rgb;
345
            pixelbytes = 1;
355
            pixelbytes = 1;
346
            break;
356
            break;
347
        case 16:
357
        case 16:
348
            rgb2scr = rgb_2byte;
358
            rgb2scr = rgb_2byte;
349
            scr2rgb = byte2_rgb;
359
            scr2rgb = byte2_rgb;
350
            pixelbytes = 2;
360
            pixelbytes = 2;
351
            break;
361
            break;
352
        case 24:
362
        case 24:
353
            rgb2scr = rgb_3byte;
363
            rgb2scr = rgb_3byte;
354
            scr2rgb = byte3_rgb;
364
            scr2rgb = byte3_rgb;
-
 
365
            if (align)
-
 
366
                pixelbytes = 4;
-
 
367
            else
355
            pixelbytes = 3;
368
                pixelbytes = 3;
356
            break;
369
            break;
357
        case 32:
370
        case 32:
358
            rgb2scr = rgb_4byte;
371
            rgb2scr = rgb_4byte;
359
            scr2rgb = byte4_rgb;
372
            scr2rgb = byte4_rgb;
360
            pixelbytes = 4;
373
            pixelbytes = 4;
361
            break;
374
            break;
362
        default:
375
        default:
363
            panic("Unsupported bpp");
376
            panic("Unsupported bpp");
364
    }
377
    }
365
   
378
   
366
    unsigned int fbsize = scan * y;
379
    unsigned int fbsize = scan * y;
367
   
380
   
368
    /* Map the framebuffer */
381
    /* Map the framebuffer */
369
    fbaddress = (uint8_t *) hw_map((uintptr_t) addr, fbsize);
382
    fbaddress = (uint8_t *) hw_map((uintptr_t) addr, fbsize);
370
   
383
   
371
    xres = x;
384
    xres = x;
372
    yres = y;
385
    yres = y;
373
    bitspp = bpp;
386
    bitspp = bpp;
374
    scanline = scan;
387
    scanline = scan;
375
   
388
   
376
    rows = y / FONT_SCANLINES;
389
    rows = y / FONT_SCANLINES;
377
    columns = x / COL_WIDTH;
390
    columns = x / COL_WIDTH;
378
 
391
 
379
    sysinfo_set_item_val("fb", NULL, true);
392
    sysinfo_set_item_val("fb", NULL, true);
380
    sysinfo_set_item_val("fb.kind", NULL, 1);
393
    sysinfo_set_item_val("fb.kind", NULL, 1);
381
    sysinfo_set_item_val("fb.width", NULL, xres);
394
    sysinfo_set_item_val("fb.width", NULL, xres);
382
    sysinfo_set_item_val("fb.height", NULL, yres);
395
    sysinfo_set_item_val("fb.height", NULL, yres);
383
    sysinfo_set_item_val("fb.bpp", NULL, bpp);
396
    sysinfo_set_item_val("fb.bpp", NULL, bpp);
384
    sysinfo_set_item_val("fb.scanline", NULL, scan);
397
    sysinfo_set_item_val("fb.scanline", NULL, scan);
385
    sysinfo_set_item_val("fb.address.physical", NULL, addr);
398
    sysinfo_set_item_val("fb.address.physical", NULL, addr);
386
 
399
 
387
    /* Allocate double buffer */
400
    /* Allocate double buffer */
388
    int totsize = scanline * yres;
401
    int totsize = scanline * yres;
389
    int pages = SIZE2FRAMES(totsize);
402
    int pages = SIZE2FRAMES(totsize);
390
    int order;
403
    int order;
391
    if (pages == 1)
404
    if (pages == 1)
392
        order = 0;
405
        order = 0;
393
    else
406
    else
394
        order = fnzb(pages-1)+1;
407
        order = fnzb(pages-1)+1;
395
 
408
 
396
    dbbuffer = frame_alloc(order,FRAME_ATOMIC | FRAME_KA);
409
    dbbuffer = frame_alloc(order,FRAME_ATOMIC | FRAME_KA);
397
    if (!dbbuffer)
410
    if (!dbbuffer)
398
        printf("Failed to allocate scroll buffer.\n");
411
        printf("Failed to allocate scroll buffer.\n");
399
    dboffset = 0;
412
    dboffset = 0;
400
 
413
 
401
    /* Initialized blank line */
414
    /* Initialized blank line */
402
    blankline = (uint8_t *) malloc(ROW_BYTES, FRAME_ATOMIC);
415
    blankline = (uint8_t *) malloc(ROW_BYTES, FRAME_ATOMIC);
403
    if (!blankline)
416
    if (!blankline)
404
        panic("Failed to allocate blank line for framebuffer.");
417
        panic("Failed to allocate blank line for framebuffer.");
405
    for (y=0; y < FONT_SCANLINES; y++)
418
    for (y=0; y < FONT_SCANLINES; y++)
406
        for (x=0; x < xres; x++)
419
        for (x=0; x < xres; x++)
407
            (*rgb2scr)(&blankline[POINTPOS(x,y)],BGCOLOR);
420
            (*rgb2scr)(&blankline[POINTPOS(x,y)],BGCOLOR);
408
 
421
 
409
    clear_screen();
422
    clear_screen();
410
 
423
 
411
    /* Update size of screen to match text area */
424
    /* Update size of screen to match text area */
412
    yres = rows * FONT_SCANLINES;
425
    yres = rows * FONT_SCANLINES;
413
 
426
 
414
    draw_logo(xres - helenos_width, 0);
427
    draw_logo(xres - helenos_width, 0);
415
    invert_cursor();
428
    invert_cursor();
416
 
429
 
417
    chardev_initialize("fb", &framebuffer, &fb_ops);
430
    chardev_initialize("fb", &framebuffer, &fb_ops);
418
    stdout = &framebuffer;
431
    stdout = &framebuffer;
419
   
432
   
420
}
433
}
421
 
434
 
422
/** @}
435
/** @}
423
 */
436
 */
424
 
437