Subversion Repositories HelenOS

Rev

Rev 4343 | Rev 4347 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
836 palkovsky 1
/*
4337 svoboda 2
 * Copyright (c) 2008 Martin Decky
2071 jermar 3
 * Copyright (c) 2006 Ondrej Palkovsky
836 palkovsky 4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 *
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
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
16
 *   derived from this software without specific prior written permission.
17
 *
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
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
29
 
4337 svoboda 30
/** @addtogroup genarch
1702 cejka 31
 * @{
32
 */
33
/** @file
34
 */
35
 
837 palkovsky 36
#include <genarch/fb/font-8x16.h>
4337 svoboda 37
#include <genarch/fb/logo-196x66.h>
1993 decky 38
#include <genarch/fb/visuals.h>
837 palkovsky 39
#include <genarch/fb/fb.h>
836 palkovsky 40
#include <console/chardev.h>
41
#include <console/console.h>
1317 vana 42
#include <sysinfo/sysinfo.h>
1316 jermar 43
#include <mm/slab.h>
4337 svoboda 44
#include <align.h>
839 palkovsky 45
#include <panic.h>
896 jermar 46
#include <memstr.h>
1316 jermar 47
#include <config.h>
1682 palkovsky 48
#include <bitops.h>
49
#include <print.h>
2015 jermar 50
#include <ddi/ddi.h>
2054 jermar 51
#include <arch/types.h>
836 palkovsky 52
 
4337 svoboda 53
SPINLOCK_INITIALIZE(fb_lock);
862 palkovsky 54
 
4337 svoboda 55
static uint8_t *fb_addr;
56
static uint8_t *backbuf;
57
static uint8_t *glyphs;
58
static uint8_t *bgscan;
836 palkovsky 59
 
4337 svoboda 60
static unsigned int xres;
61
static unsigned int yres;
836 palkovsky 62
 
4337 svoboda 63
static unsigned int ylogo;
64
static unsigned int ytrim;
65
static unsigned int rowtrim;
1316 jermar 66
 
4337 svoboda 67
static unsigned int scanline;
68
static unsigned int glyphscanline;
836 palkovsky 69
 
4337 svoboda 70
static unsigned int pixelbytes;
71
static unsigned int glyphbytes;
72
static unsigned int bgscanbytes;
73
 
74
static unsigned int cols;
75
static unsigned int rows;
1135 decky 76
static unsigned int position = 0;
836 palkovsky 77
 
4337 svoboda 78
#define BG_COLOR     0x000080
79
#define FG_COLOR     0xffff00
836 palkovsky 80
 
4337 svoboda 81
#define CURSOR       219
1135 decky 82
 
4337 svoboda 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))
85
#define BLUE(x, bits)        ((x >> (8 - bits)) & ((1 << bits) - 1))
1135 decky 86
 
4337 svoboda 87
#define COL2X(col)           ((col) * FONT_WIDTH)
88
#define ROW2Y(row)           ((row) * FONT_SCANLINES)
1135 decky 89
 
4337 svoboda 90
#define X2COL(x)             ((x) / FONT_WIDTH)
91
#define Y2ROW(y)             ((y) / FONT_SCANLINES)
838 palkovsky 92
 
4337 svoboda 93
#define FB_POS(x, y)         ((y) * scanline + (x) * pixelbytes)
94
#define BB_POS(col, row)     ((row) * cols + (col))
95
#define GLYPH_POS(glyph, y)  ((glyph) * glyphbytes + (y) * glyphscanline)
839 palkovsky 96
 
1875 jermar 97
 
4337 svoboda 98
static void (*rgb_conv)(void *, uint32_t);
836 palkovsky 99
 
839 palkovsky 100
 
4337 svoboda 101
/** ARGB 8:8:8:8 conversion
102
 *
103
 */
104
static void rgb_0888(void *dst, uint32_t rgb)
1994 decky 105
{
4337 svoboda 106
    *((uint32_t *) dst) = rgb & 0xffffff;
1994 decky 107
}
108
 
4337 svoboda 109
 
110
/** ABGR 8:8:8:8 conversion
111
 *
112
 */
113
static void bgr_0888(void *dst, uint32_t rgb)
1994 decky 114
{
4337 svoboda 115
    *((uint32_t *) dst)
116
        = (BLUE(rgb, 8) << 16) | (GREEN(rgb, 8) << 8) | RED(rgb, 8);
1994 decky 117
}
118
 
4337 svoboda 119
 
4342 svoboda 120
/** RGB 8:8:8 conversion
4337 svoboda 121
 *
122
 */
123
static void rgb_888(void *dst, uint32_t rgb)
839 palkovsky 124
{
4337 svoboda 125
    ((uint8_t *) dst)[0] = BLUE(rgb, 8);
126
    ((uint8_t *) dst)[1] = GREEN(rgb, 8);
127
    ((uint8_t *) dst)[2] = RED(rgb, 8);
839 palkovsky 128
}
129
 
838 palkovsky 130
 
4342 svoboda 131
/** BGR 8:8:8 conversion
132
 *
133
 */
134
static void bgr_888(void *dst, uint32_t rgb)
135
{
136
    ((uint8_t *) dst)[0] = RED(rgb, 8);
137
    ((uint8_t *) dst)[1] = GREEN(rgb, 8);
138
    ((uint8_t *) dst)[2] = BLUE(rgb, 8);
139
}
140
 
141
 
4337 svoboda 142
/** RGB 5:5:5 conversion
143
 *
144
 */
145
static void rgb_555(void *dst, uint32_t rgb)
1993 decky 146
{
4337 svoboda 147
    *((uint16_t *) dst)
148
        = (RED(rgb, 5) << 10) | (GREEN(rgb, 5) << 5) | BLUE(rgb, 5);
1993 decky 149
}
150
 
151
 
4337 svoboda 152
/** RGB 5:6:5 conversion
153
 *
154
 */
155
static void rgb_565(void *dst, uint32_t rgb)
839 palkovsky 156
{
4337 svoboda 157
    *((uint16_t *) dst)
158
        = (RED(rgb, 5) << 11) | (GREEN(rgb, 6) << 5) | BLUE(rgb, 5);
839 palkovsky 159
}
160
 
161
 
4337 svoboda 162
/** RGB 3:2:3
1837 jermar 163
 *
164
 * Even though we try 3:2:3 color scheme here, an 8-bit framebuffer
165
 * will most likely use a color palette. The color appearance
166
 * will be pretty random and depend on the default installed
167
 * palette. This could be fixed by supporting custom palette
168
 * and setting it to simulate the 8-bit truecolor.
4337 svoboda 169
 *
170
 * Currently we set the palette on the ia32, amd64 and sparc64 port.
171
 *
172
 * Note that the byte is being inverted by this function. The reason is
173
 * that we would like to use a color palette where the white color code
174
 * is 0 and the black color code is 255, as some machines (Sun Blade 1500)
175
 * use these codes for black and white and prevent to set codes
176
 * 0 and 255 to other colors.
177
 *
1837 jermar 178
 */
4337 svoboda 179
static void rgb_323(void *dst, uint32_t rgb)
839 palkovsky 180
{
4337 svoboda 181
    *((uint8_t *) dst)
182
        = ~((RED(rgb, 3) << 5) | (GREEN(rgb, 2) << 3) | BLUE(rgb, 3));
1135 decky 183
}
839 palkovsky 184
 
3674 svoboda 185
 
4337 svoboda 186
/** Hide logo and refresh screen
1837 jermar 187
 *
188
 */
4341 svoboda 189
static void logo_hide(bool silent)
1135 decky 190
{
4337 svoboda 191
    ylogo = 0;
192
    ytrim = yres;
193
    rowtrim = rows;
4341 svoboda 194
    if (!silent)
195
        fb_redraw();
839 palkovsky 196
}
197
 
1682 palkovsky 198
 
4337 svoboda 199
/** Draw character at given position
200
 *
201
 */
4341 svoboda 202
static void glyph_draw(uint8_t glyph, unsigned int col, unsigned int row, bool silent)
1682 palkovsky 203
{
4337 svoboda 204
    unsigned int x = COL2X(col);
205
    unsigned int y = ROW2Y(row);
206
    unsigned int yd;
207
 
208
    if (y >= ytrim)
4341 svoboda 209
        logo_hide(silent);
4337 svoboda 210
 
211
    backbuf[BB_POS(col, row)] = glyph;
212
 
4341 svoboda 213
    if (!silent) {
214
        for (yd = 0; yd < FONT_SCANLINES; yd++)
215
            memcpy(&fb_addr[FB_POS(x, y + yd + ylogo)],
216
                &glyphs[GLYPH_POS(glyph, yd)], glyphscanline);
217
    }
1682 palkovsky 218
}
1135 decky 219
 
1682 palkovsky 220
 
4337 svoboda 221
/** Scroll screen down by one row
222
 *
223
 *
224
 */
4341 svoboda 225
static void screen_scroll(bool silent)
839 palkovsky 226
{
4337 svoboda 227
    if (ylogo > 0) {
4341 svoboda 228
        logo_hide(silent);
4337 svoboda 229
        return;
1682 palkovsky 230
    }
4337 svoboda 231
 
4341 svoboda 232
    if (!silent) {
233
        unsigned int row;
2054 jermar 234
 
4341 svoboda 235
        for (row = 0; row < rows; row++) {
236
            unsigned int y = ROW2Y(row);
237
            unsigned int yd;
4337 svoboda 238
 
4341 svoboda 239
            for (yd = 0; yd < FONT_SCANLINES; yd++) {
240
                unsigned int x;
241
                unsigned int col;
4337 svoboda 242
 
4341 svoboda 243
                for (col = 0, x = 0; col < cols; col++,
244
                    x += FONT_WIDTH) {
245
                    uint8_t glyph;
4337 svoboda 246
 
4341 svoboda 247
                    if (row < rows - 1) {
248
                        if (backbuf[BB_POS(col, row)] ==
249
                            backbuf[BB_POS(col, row + 1)])
250
                            continue;
251
 
252
                        glyph = backbuf[BB_POS(col, row + 1)];
253
                    } else
254
                        glyph = 0;
255
 
256
                    memcpy(&fb_addr[FB_POS(x, y + yd)],
257
                        &glyphs[GLYPH_POS(glyph, yd)],
258
                        glyphscanline);
259
                }
4337 svoboda 260
            }
2086 jermar 261
        }
1682 palkovsky 262
    }
4337 svoboda 263
 
4338 svoboda 264
    memmove(backbuf, backbuf + cols, cols * (rows - 1));
4337 svoboda 265
    memsetb(&backbuf[BB_POS(0, rows - 1)], cols, 0);
838 palkovsky 266
}
267
 
268
 
4341 svoboda 269
static void cursor_put(bool silent)
836 palkovsky 270
{
4341 svoboda 271
    glyph_draw(CURSOR, position % cols, position / cols, silent);
836 palkovsky 272
}
273
 
274
 
4341 svoboda 275
static void cursor_remove(bool silent)
836 palkovsky 276
{
4341 svoboda 277
    glyph_draw(0, position % cols, position / cols, silent);
836 palkovsky 278
}
279
 
838 palkovsky 280
 
836 palkovsky 281
/** Print character to screen
282
 *
4337 svoboda 283
 * Emulate basic terminal commands.
284
 *
836 palkovsky 285
 */
4346 svoboda 286
static void fb_putchar(outdev_t *dev, char ch, bool silent)
836 palkovsky 287
{
1287 vana 288
    spinlock_lock(&fb_lock);
1135 decky 289
 
290
    switch (ch) {
1888 jermar 291
    case '\n':
4341 svoboda 292
        cursor_remove(silent);
4337 svoboda 293
        position += cols;
294
        position -= position % cols;
1888 jermar 295
        break;
296
    case '\r':
4341 svoboda 297
        cursor_remove(silent);
4337 svoboda 298
        position -= position % cols;
1888 jermar 299
        break;
300
    case '\b':
4341 svoboda 301
        cursor_remove(silent);
4337 svoboda 302
        if (position % cols)
1888 jermar 303
            position--;
304
        break;
305
    case '\t':
4341 svoboda 306
        cursor_remove(silent);
1888 jermar 307
        do {
4337 svoboda 308
            glyph_draw((uint8_t) ' ', position % cols,
4341 svoboda 309
                position / cols, silent);
838 palkovsky 310
            position++;
4337 svoboda 311
        } while ((position % 8) && (position < cols * rows));
1888 jermar 312
        break;
313
    default:
4341 svoboda 314
        glyph_draw((uint8_t) ch, position % cols,
315
            position / cols, silent);
1888 jermar 316
        position++;
836 palkovsky 317
    }
1135 decky 318
 
4337 svoboda 319
    if (position >= cols * rows) {
320
        position -= cols;
4341 svoboda 321
        screen_scroll(silent);
836 palkovsky 322
    }
1135 decky 323
 
4341 svoboda 324
    cursor_put(silent);
1135 decky 325
 
1287 vana 326
    spinlock_unlock(&fb_lock);
836 palkovsky 327
}
328
 
4346 svoboda 329
static outdev_t fb_console;
330
static outdev_operations_t fb_ops = {
331
    .write = fb_putchar
836 palkovsky 332
};
333
 
334
 
4337 svoboda 335
/** Render glyphs
336
 *
337
 * Convert glyphs from device independent font
338
 * description to current visual representation.
339
 *
340
 */
341
static void glyphs_render(void)
342
{
343
    /* Prerender glyphs */
344
    unsigned int glyph;
345
 
346
    for (glyph = 0; glyph < FONT_GLYPHS; glyph++) {
347
        unsigned int y;
348
 
349
        for (y = 0; y < FONT_SCANLINES; y++) {
350
            unsigned int x;
351
 
352
            for (x = 0; x < FONT_WIDTH; x++) {
353
                void *dst = &glyphs[GLYPH_POS(glyph, y) +
354
                    x * pixelbytes];
355
                uint32_t rgb = (fb_font[ROW2Y(glyph) + y] &
356
                    (1 << (7 - x))) ? FG_COLOR : BG_COLOR;
357
                rgb_conv(dst, rgb);
358
            }
359
        }
360
    }
361
 
362
    /* Prerender background scanline */
363
    unsigned int x;
364
 
365
    for (x = 0; x < xres; x++)
366
        rgb_conv(&bgscan[x * pixelbytes], BG_COLOR);
367
}
368
 
369
 
370
/** Refresh the screen
371
 *
372
 */
373
void fb_redraw(void)
374
{
375
    if (ylogo > 0) {
376
        unsigned int y;
377
 
378
        for (y = 0; y < LOGO_HEIGHT; y++) {
379
            unsigned int x;
380
 
381
            for (x = 0; x < xres; x++)
382
                rgb_conv(&fb_addr[FB_POS(x, y)],
383
                    (x < LOGO_WIDTH) ?
384
                    fb_logo[y * LOGO_WIDTH + x] :
385
                    LOGO_COLOR);
386
        }
387
    }
388
 
389
    unsigned int row;
390
 
391
    for (row = 0; row < rowtrim; row++) {
392
        unsigned int y = ylogo + ROW2Y(row);
393
        unsigned int yd;
394
 
395
        for (yd = 0; yd < FONT_SCANLINES; yd++) {
396
            unsigned int x;
397
            unsigned int col;
398
 
399
            for (col = 0, x = 0; col < cols;
400
                col++, x += FONT_WIDTH) {
401
                void *d = &fb_addr[FB_POS(x, y + yd)];
402
                void *s = &glyphs[GLYPH_POS(backbuf[BB_POS(col,
403
                    row)], yd)];
404
                memcpy(d, s, glyphscanline);
405
            }
406
        }
407
    }
408
 
409
    if (COL2X(cols) < xres) {
410
        unsigned int y;
411
        unsigned int size = (xres - COL2X(cols)) * pixelbytes;
412
 
413
        for (y = ylogo; y < yres; y++)
414
            memcpy(&fb_addr[FB_POS(COL2X(cols), y)], bgscan, size);
415
    }
416
 
417
    if (ROW2Y(rowtrim) + ylogo < yres) {
418
        unsigned int y;
419
 
420
        for (y = ROW2Y(rowtrim) + ylogo; y < yres; y++)
421
            memcpy(&fb_addr[FB_POS(0, y)], bgscan, bgscanbytes);
422
    }
423
}
424
 
425
 
4346 svoboda 426
/** Initialize framebuffer as a output character device
836 palkovsky 427
 *
4337 svoboda 428
 * @param addr   Physical address of the framebuffer
429
 * @param x      Screen width in pixels
430
 * @param y      Screen height in pixels
431
 * @param scan   Bytes per one scanline
432
 * @param visual Color model
433
 *
836 palkovsky 434
 */
3674 svoboda 435
void fb_init(fb_properties_t *props)
836 palkovsky 436
{
3674 svoboda 437
    switch (props->visual) {
1993 decky 438
    case VISUAL_INDIRECT_8:
4337 svoboda 439
        rgb_conv = rgb_323;
1991 jermar 440
        pixelbytes = 1;
441
        break;
1993 decky 442
    case VISUAL_RGB_5_5_5:
4337 svoboda 443
        rgb_conv = rgb_555;
1991 jermar 444
        pixelbytes = 2;
445
        break;
1993 decky 446
    case VISUAL_RGB_5_6_5:
4337 svoboda 447
        rgb_conv = rgb_565;
1993 decky 448
        pixelbytes = 2;
1991 jermar 449
        break;
1993 decky 450
    case VISUAL_RGB_8_8_8:
4337 svoboda 451
        rgb_conv = rgb_888;
1993 decky 452
        pixelbytes = 3;
453
        break;
4342 svoboda 454
    case VISUAL_BGR_8_8_8:
455
        rgb_conv = bgr_888;
456
        pixelbytes = 3;
457
        break;
1993 decky 458
    case VISUAL_RGB_8_8_8_0:
4337 svoboda 459
        rgb_conv = rgb_888;
1991 jermar 460
        pixelbytes = 4;
461
        break;
1993 decky 462
    case VISUAL_RGB_0_8_8_8:
4337 svoboda 463
        rgb_conv = rgb_0888;
1993 decky 464
        pixelbytes = 4;
465
        break;
1994 decky 466
    case VISUAL_BGR_0_8_8_8:
4337 svoboda 467
        rgb_conv = bgr_0888;
1994 decky 468
        pixelbytes = 4;
469
        break;
1991 jermar 470
    default:
4339 svoboda 471
        panic("Unsupported visual.");
839 palkovsky 472
    }
1371 decky 473
 
3674 svoboda 474
    xres = props->x;
475
    yres = props->y;
476
    scanline = props->scan;
836 palkovsky 477
 
4337 svoboda 478
    cols = X2COL(xres);
479
    rows = Y2ROW(yres);
480
 
481
    if (yres > ylogo) {
482
        ylogo = LOGO_HEIGHT;
483
        rowtrim = rows - Y2ROW(ylogo);
484
        if (ylogo % FONT_SCANLINES > 0)
485
            rowtrim--;
486
        ytrim = ROW2Y(rowtrim);
487
    } else {
488
        ylogo = 0;
489
        ytrim = yres;
490
        rowtrim = rows;
491
    }
492
 
493
    glyphscanline = FONT_WIDTH * pixelbytes;
494
    glyphbytes = ROW2Y(glyphscanline);
495
    bgscanbytes = xres * pixelbytes;
496
 
497
    unsigned int fbsize = scanline * yres;
498
    unsigned int bbsize = cols * rows;
499
    unsigned int glyphsize = FONT_GLYPHS * glyphbytes;
500
 
501
    backbuf = (uint8_t *) malloc(bbsize, 0);
502
    if (!backbuf)
4339 svoboda 503
        panic("Unable to allocate backbuffer.");
4337 svoboda 504
 
505
    glyphs = (uint8_t *) malloc(glyphsize, 0);
506
    if (!glyphs)
4339 svoboda 507
        panic("Unable to allocate glyphs.");
4337 svoboda 508
 
509
    bgscan = malloc(bgscanbytes, 0);
510
    if (!bgscan)
4339 svoboda 511
        panic("Unable to allocate background pixel.");
4337 svoboda 512
 
513
    memsetb(backbuf, bbsize, 0);
514
 
515
    glyphs_render();
516
 
517
    fb_addr = (uint8_t *) hw_map((uintptr_t) props->addr, fbsize);
518
 
1690 palkovsky 519
    sysinfo_set_item_val("fb", NULL, true);
520
    sysinfo_set_item_val("fb.kind", NULL, 1);
521
    sysinfo_set_item_val("fb.width", NULL, xres);
522
    sysinfo_set_item_val("fb.height", NULL, yres);
4337 svoboda 523
    sysinfo_set_item_val("fb.scanline", NULL, scanline);
3674 svoboda 524
    sysinfo_set_item_val("fb.visual", NULL, props->visual);
525
    sysinfo_set_item_val("fb.address.physical", NULL, props->addr);
1990 decky 526
 
4337 svoboda 527
    fb_redraw();
528
 
4346 svoboda 529
    outdev_initialize("fb", &fb_console, &fb_ops);
530
    stdout = &fb_console;
836 palkovsky 531
}
1702 cejka 532
 
1790 jermar 533
/** @}
1702 cejka 534
 */