2 * (C) Copyright 2002 ELTEC Elektronik AG
3 * Frank Gottschling <fgottschling@eltec.de>
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * Color Framebuffer Console driver for 8/15/16/24/32 bits per pixel.
29 * At the moment only the 8x16 font is tested and the font fore- and
30 * background color is limited to black/white/gray colors. The Linux
31 * logo can be placed in the upper left corner and additional board
32 * information strings (that normally goes to serial port) can be drawn.
34 * The console driver can use the standard PC keyboard interface (i8042)
35 * for character input. Character output goes to a memory mapped video
36 * framebuffer with little or big-endian organisation.
37 * With environment setting 'console=serial' the console i/o can be
38 * forced to serial port.
40 * The driver uses graphic specific defines/parameters/functions:
42 * (for SMI LynxE graphic chip)
44 * CONFIG_VIDEO_SMI_LYNXEM - use graphic driver for SMI 710,712,810
45 * VIDEO_FB_LITTLE_ENDIAN - framebuffer organisation default: big endian
46 * VIDEO_HW_RECTFILL - graphic driver supports hardware rectangle fill
47 * VIDEO_HW_BITBLT - graphic driver supports hardware bit blt
49 * Console Parameters are set by graphic drivers global struct:
51 * VIDEO_VISIBLE_COLS - x resolution
52 * VIDEO_VISIBLE_ROWS - y resolution
53 * VIDEO_PIXEL_SIZE - storage size in byte per pixel
54 * VIDEO_DATA_FORMAT - graphical data format GDF
55 * VIDEO_FB_ADRS - start of video memory
57 * CONFIG_I8042_KBD - AT Keyboard driver for i8042
58 * VIDEO_KBD_INIT_FCT - init function for keyboard
59 * VIDEO_TSTC_FCT - keyboard_tstc function
60 * VIDEO_GETC_FCT - keyboard_getc function
62 * CONFIG_CONSOLE_CURSOR - on/off drawing cursor is done with
63 * delay loop in VIDEO_TSTC_FCT (i8042)
65 * CONFIG_SYS_CONSOLE_BLINK_COUNT - value for delay loop - blink rate
66 * CONFIG_CONSOLE_TIME - display time/date in upper right
67 * corner, needs CONFIG_CMD_DATE and
68 * CONFIG_CONSOLE_CURSOR
69 * CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner
70 * CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
71 * CONFIG_CONSOLE_EXTRA_INFO - display additional board information
72 * strings that normaly goes to serial
73 * port. This define requires a board
75 * video_drawstring (VIDEO_INFO_X,
76 * VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
78 * that fills a info buffer at i=row.
79 * s.a: board/eltec/bab7xx.
80 * CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be
81 * initialized as an output only device.
82 * The Keyboard driver will not be
83 * set-up. This may be used, if you have
84 * no or more than one Keyboard devices
85 * (USB Keyboard, AT Keyboard).
87 * CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last
88 * character. No blinking is provided.
89 * Uses the macros CURSOR_SET and
92 * CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability
93 * of the graphic chip. Uses the macro
94 * CURSOR_SET. ATTENTION: If booting an
95 * OS, the display driver must disable
96 * the hardware register of the graphic
97 * chip. Otherwise a blinking field is
104 #include <linux/compiler.h>
107 * Console device defines with SMI graphic
108 * Any other graphic must change this section
111 #ifdef CONFIG_VIDEO_SMI_LYNXEM
113 #define VIDEO_FB_LITTLE_ENDIAN
114 #define VIDEO_HW_RECTFILL
115 #define VIDEO_HW_BITBLT
119 * Defines for the CT69000 driver
121 #ifdef CONFIG_VIDEO_CT69000
123 #define VIDEO_FB_LITTLE_ENDIAN
124 #define VIDEO_HW_RECTFILL
125 #define VIDEO_HW_BITBLT
129 * Defines for the SED13806 driver
131 #ifdef CONFIG_VIDEO_SED13806
133 #ifndef CONFIG_TOTAL5200
134 #define VIDEO_FB_LITTLE_ENDIAN
136 #define VIDEO_HW_RECTFILL
137 #define VIDEO_HW_BITBLT
141 * Defines for the SED13806 driver
143 #ifdef CONFIG_VIDEO_SM501
146 #define VIDEO_FB_LITTLE_ENDIAN
151 * Defines for the MB862xx driver
153 #ifdef CONFIG_VIDEO_MB862xx
155 #ifdef CONFIG_VIDEO_CORALP
156 #define VIDEO_FB_LITTLE_ENDIAN
158 #ifdef CONFIG_VIDEO_MB862xx_ACCEL
159 #define VIDEO_HW_RECTFILL
160 #define VIDEO_HW_BITBLT
165 * Defines for the i.MX31 driver (mx3fb.c)
167 #if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
168 #define VIDEO_FB_16BPP_WORD_SWAP
172 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
174 #include <video_fb.h>
179 #define VIDEO_VISIBLE_COLS (pGD->winSizeX)
180 #define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
181 #define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
182 #define VIDEO_DATA_FORMAT (pGD->gdfIndex)
183 #define VIDEO_FB_ADRS (pGD->frameAdrs)
186 * Console device defines with i8042 keyboard controller
187 * Any other keyboard controller must change this section
190 #ifdef CONFIG_I8042_KBD
193 #define VIDEO_KBD_INIT_FCT i8042_kbd_init()
194 #define VIDEO_TSTC_FCT i8042_tstc
195 #define VIDEO_GETC_FCT i8042_getc
203 #include <linux/types.h>
204 #include <stdio_dev.h>
205 #include <video_font.h>
206 #include <video_font_data.h>
208 #if defined(CONFIG_CMD_DATE)
212 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
213 #include <watchdog.h>
214 #include <bmp_layout.h>
216 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
217 #define BMP_ALIGN_CENTER 0x7FFF
224 * CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c)
225 * to let the cursor blink. Uses the macros
226 * CURSOR_OFF and CURSOR_ON.
227 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
228 * blinking is provided. Uses the macros CURSOR_SET
230 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
231 * graphic chip. Uses the macro CURSOR_SET.
232 * ATTENTION: If booting an OS, the display driver
233 * must disable the hardware register of the graphic
234 * chip. Otherwise a blinking field is displayed
236 #if !defined(CONFIG_CONSOLE_CURSOR) && \
237 !defined(CONFIG_VIDEO_SW_CURSOR) && \
238 !defined(CONFIG_VIDEO_HW_CURSOR)
239 /* no Cursor defined */
245 #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
246 #if defined(CURSOR_ON) || \
247 (defined(CONFIG_CONSOLE_CURSOR) && defined(CONFIG_VIDEO_SW_CURSOR))
248 #error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
249 or CONFIG_VIDEO_HW_CURSOR can be defined
251 void console_cursor(int state);
253 #define CURSOR_ON console_cursor(1)
254 #define CURSOR_OFF console_cursor(0)
255 #define CURSOR_SET video_set_cursor()
256 #endif /* CONFIG_CONSOLE_CURSOR || CONFIG_VIDEO_SW_CURSOR */
258 #ifdef CONFIG_CONSOLE_CURSOR
259 #ifndef CONFIG_CONSOLE_TIME
260 #error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
262 #ifndef CONFIG_I8042_KBD
263 #warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
265 #endif /* CONFIG_CONSOLE_CURSOR */
268 #ifdef CONFIG_VIDEO_HW_CURSOR
270 #error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
271 or CONFIG_VIDEO_HW_CURSOR can be defined
275 #define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
276 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
277 #endif /* CONFIG_VIDEO_HW_CURSOR */
279 #ifdef CONFIG_VIDEO_LOGO
280 #ifdef CONFIG_VIDEO_BMP_LOGO
281 #include <bmp_logo.h>
282 #include <bmp_logo_data.h>
283 #define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
284 #define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
285 #define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
286 #define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
288 #else /* CONFIG_VIDEO_BMP_LOGO */
289 #define LINUX_LOGO_WIDTH 80
290 #define LINUX_LOGO_HEIGHT 80
291 #define LINUX_LOGO_COLORS 214
292 #define LINUX_LOGO_LUT_OFFSET 0x20
294 #include <linux_logo.h>
295 #define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
296 #define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
297 #define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
298 #define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
299 #endif /* CONFIG_VIDEO_BMP_LOGO */
300 #define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
301 #define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
302 #else /* CONFIG_VIDEO_LOGO */
303 #define VIDEO_LOGO_WIDTH 0
304 #define VIDEO_LOGO_HEIGHT 0
305 #endif /* CONFIG_VIDEO_LOGO */
307 #define VIDEO_COLS VIDEO_VISIBLE_COLS
308 #define VIDEO_ROWS VIDEO_VISIBLE_ROWS
309 #define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
310 #define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
311 #define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
312 #define VIDEO_BURST_LEN (VIDEO_COLS/8)
314 #ifdef CONFIG_VIDEO_LOGO
315 #define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
317 #define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
320 #define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
321 #define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
322 #define CONSOLE_ROW_FIRST (video_console_address)
323 #define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
324 #define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
325 #define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
326 #define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
329 #ifdef VIDEO_FB_LITTLE_ENDIAN
330 #define SWAP16(x) ((((x) & 0x00ff) << 8) | \
333 #define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
334 (((x) & 0x0000ff00) << 8) | \
335 (((x) & 0x00ff0000) >> 8) | \
336 (((x) & 0xff000000) >> 24) \
338 #define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
339 (((x) & 0x0000ff00) >> 8) | \
340 (((x) & 0x00ff0000) << 8) | \
341 (((x) & 0xff000000) >> 8) \
344 #define SWAP16(x) (x)
345 #define SWAP32(x) (x)
346 #if defined(VIDEO_FB_16BPP_WORD_SWAP)
347 #define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
349 #define SHORTSWAP32(x) (x)
353 #ifdef CONFIG_CONSOLE_EXTRA_INFO
355 * setup a board string: type, speed, etc.
357 * line_number: location to place info string beside logo
358 * info: buffer for info string
360 extern void video_get_info_str(int line_number, char *info);
363 DECLARE_GLOBAL_DATA_PTR;
366 static GraphicDevice *pGD; /* Pointer to Graphic array */
368 static void *video_fb_address; /* frame buffer address */
369 static void *video_console_address; /* console buffer start address */
371 static int video_logo_height = VIDEO_LOGO_HEIGHT;
373 static int __maybe_unused cursor_state;
374 static int __maybe_unused old_col;
375 static int __maybe_unused old_row;
377 static int console_col; /* cursor col */
378 static int console_row; /* cursor row */
380 static u32 eorx, fgx, bgx; /* color pats */
382 static int cfb_do_flush_cache;
384 static const int video_font_draw_table8[] = {
385 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
386 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
387 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
388 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
391 static const int video_font_draw_table15[] = {
392 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
395 static const int video_font_draw_table16[] = {
396 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
399 static const int video_font_draw_table24[16][3] = {
400 {0x00000000, 0x00000000, 0x00000000},
401 {0x00000000, 0x00000000, 0x00ffffff},
402 {0x00000000, 0x0000ffff, 0xff000000},
403 {0x00000000, 0x0000ffff, 0xffffffff},
404 {0x000000ff, 0xffff0000, 0x00000000},
405 {0x000000ff, 0xffff0000, 0x00ffffff},
406 {0x000000ff, 0xffffffff, 0xff000000},
407 {0x000000ff, 0xffffffff, 0xffffffff},
408 {0xffffff00, 0x00000000, 0x00000000},
409 {0xffffff00, 0x00000000, 0x00ffffff},
410 {0xffffff00, 0x0000ffff, 0xff000000},
411 {0xffffff00, 0x0000ffff, 0xffffffff},
412 {0xffffffff, 0xffff0000, 0x00000000},
413 {0xffffffff, 0xffff0000, 0x00ffffff},
414 {0xffffffff, 0xffffffff, 0xff000000},
415 {0xffffffff, 0xffffffff, 0xffffffff}
418 static const int video_font_draw_table32[16][4] = {
419 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
420 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
421 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
422 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
423 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
424 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
425 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
426 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
427 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
428 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
429 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
430 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
431 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
432 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
433 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
434 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
437 static void video_drawchars(int xx, int yy, unsigned char *s, int count)
439 u8 *cdat, *dest, *dest0;
442 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
443 dest0 = video_fb_address + offset;
445 switch (VIDEO_DATA_FORMAT) {
446 case GDF__8BIT_INDEX:
447 case GDF__8BIT_332RGB:
450 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
451 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
452 rows--; dest += VIDEO_LINE_LEN) {
456 (video_font_draw_table8[bits >> 4] &
459 (video_font_draw_table8[bits & 15] &
462 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
467 case GDF_15BIT_555RGB:
470 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
471 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
472 rows--; dest += VIDEO_LINE_LEN) {
476 SHORTSWAP32((video_font_draw_table15
477 [bits >> 6] & eorx) ^
480 SHORTSWAP32((video_font_draw_table15
481 [bits >> 4 & 3] & eorx) ^
484 SHORTSWAP32((video_font_draw_table15
485 [bits >> 2 & 3] & eorx) ^
488 SHORTSWAP32((video_font_draw_table15
492 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
497 case GDF_16BIT_565RGB:
500 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
501 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
502 rows--; dest += VIDEO_LINE_LEN) {
506 SHORTSWAP32((video_font_draw_table16
507 [bits >> 6] & eorx) ^
510 SHORTSWAP32((video_font_draw_table16
511 [bits >> 4 & 3] & eorx) ^
514 SHORTSWAP32((video_font_draw_table16
515 [bits >> 2 & 3] & eorx) ^
518 SHORTSWAP32((video_font_draw_table16
522 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
527 case GDF_32BIT_X888RGB:
530 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
531 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
532 rows--; dest += VIDEO_LINE_LEN) {
536 SWAP32((video_font_draw_table32
537 [bits >> 4][0] & eorx) ^ bgx);
539 SWAP32((video_font_draw_table32
540 [bits >> 4][1] & eorx) ^ bgx);
542 SWAP32((video_font_draw_table32
543 [bits >> 4][2] & eorx) ^ bgx);
545 SWAP32((video_font_draw_table32
546 [bits >> 4][3] & eorx) ^ bgx);
548 SWAP32((video_font_draw_table32
549 [bits & 15][0] & eorx) ^ bgx);
551 SWAP32((video_font_draw_table32
552 [bits & 15][1] & eorx) ^ bgx);
554 SWAP32((video_font_draw_table32
555 [bits & 15][2] & eorx) ^ bgx);
557 SWAP32((video_font_draw_table32
558 [bits & 15][3] & eorx) ^ bgx);
560 if (cfb_do_flush_cache)
561 flush_cache((ulong)dest0, 32);
562 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
567 case GDF_24BIT_888RGB:
570 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
571 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
572 rows--; dest += VIDEO_LINE_LEN) {
576 (video_font_draw_table24[bits >> 4][0]
579 (video_font_draw_table24[bits >> 4][1]
582 (video_font_draw_table24[bits >> 4][2]
585 (video_font_draw_table24[bits & 15][0]
588 (video_font_draw_table24[bits & 15][1]
591 (video_font_draw_table24[bits & 15][2]
594 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
601 static inline void video_drawstring(int xx, int yy, unsigned char *s)
603 video_drawchars(xx, yy, s, strlen((char *) s));
606 static void video_putchar(int xx, int yy, unsigned char c)
608 video_drawchars(xx, yy + video_logo_height, &c, 1);
611 #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
612 static void video_set_cursor(void)
619 static void video_invertchar(int xx, int yy)
621 int firstx = xx * VIDEO_PIXEL_SIZE;
622 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
623 int firsty = yy * VIDEO_LINE_LEN;
624 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
626 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
627 for (x = firstx; x < lastx; x++) {
628 u8 *dest = (u8 *)(video_fb_address) + x + y;
630 if (cfb_do_flush_cache)
631 flush_cache((ulong)dest, 4);
636 void console_cursor(int state)
638 #ifdef CONFIG_CONSOLE_TIME
642 /* time update only if cursor is on (faster scroll) */
646 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
648 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
649 VIDEO_INFO_Y, (uchar *) info);
651 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
653 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
654 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
659 if (cursor_state != state) {
661 /* turn off the cursor */
662 video_invertchar(old_col * VIDEO_FONT_WIDTH,
663 old_row * VIDEO_FONT_HEIGHT +
666 /* turn off the cursor and record where it is */
667 video_invertchar(console_col * VIDEO_FONT_WIDTH,
668 console_row * VIDEO_FONT_HEIGHT +
670 old_col = console_col;
671 old_row = console_row;
673 cursor_state = state;
678 #ifndef VIDEO_HW_RECTFILL
679 static void memsetl(int *p, int c, int v)
686 #ifndef VIDEO_HW_BITBLT
687 static void memcpyl(int *d, int *s, int c)
694 static void console_clear_line(int line, int begin, int end)
696 #ifdef VIDEO_HW_RECTFILL
697 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
698 VIDEO_FONT_WIDTH * begin, /* dest pos x */
700 VIDEO_FONT_HEIGHT * line, /* dest pos y */
701 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
702 VIDEO_FONT_HEIGHT, /* frame height */
706 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
707 memsetl(CONSOLE_ROW_FIRST +
708 CONSOLE_ROW_SIZE * line, /* offset of row */
709 CONSOLE_ROW_SIZE >> 2, /* length of row */
716 offset = CONSOLE_ROW_FIRST +
717 CONSOLE_ROW_SIZE * line + /* offset of row */
719 VIDEO_PIXEL_SIZE * begin; /* offset of col */
720 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
721 size >>= 2; /* length to end for memsetl() */
722 /* fill at col offset of i'th line using bgx as fill color */
723 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
724 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
727 if (cfb_do_flush_cache)
728 flush_cache((ulong)CONSOLE_ROW_FIRST, CONSOLE_SIZE);
731 static void console_scrollup(void)
733 /* copy up rows ignoring the first one */
735 #ifdef VIDEO_HW_BITBLT
736 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
737 0, /* source pos x */
739 VIDEO_FONT_HEIGHT, /* source pos y */
741 video_logo_height, /* dest pos y */
742 VIDEO_VISIBLE_COLS, /* frame width */
745 - VIDEO_FONT_HEIGHT /* frame height */
748 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
749 CONSOLE_SCROLL_SIZE >> 2);
751 /* clear the last one */
752 console_clear_line(CONSOLE_ROWS - 1, 0, CONSOLE_COLS - 1);
755 static void console_back(void)
759 if (console_col < 0) {
760 console_col = CONSOLE_COLS - 1;
767 static void console_newline(void)
772 /* Check if we need to scroll the terminal */
773 if (console_row >= CONSOLE_ROWS) {
774 /* Scroll everything up */
777 /* Decrement row number */
782 static void console_cr(void)
787 void video_putc(const char c)
794 case 13: /* back to first column */
798 case '\n': /* next line */
799 if (console_col || (!console_col && nl))
805 console_col |= 0x0008;
806 console_col &= ~0x0007;
808 if (console_col >= CONSOLE_COLS)
812 case 8: /* backspace */
819 default: /* draw the char */
820 video_putchar(console_col * VIDEO_FONT_WIDTH,
821 console_row * VIDEO_FONT_HEIGHT, c);
824 /* check for newline */
825 if (console_col >= CONSOLE_COLS) {
833 void video_puts(const char *s)
835 int count = strlen(s);
842 * Do not enforce drivers (or board code) to provide empty
843 * video_set_lut() if they do not support 8 bpp format.
844 * Implement weak default function instead.
846 void __video_set_lut(unsigned int index, unsigned char r,
847 unsigned char g, unsigned char b)
851 void video_set_lut(unsigned int, unsigned char, unsigned char, unsigned char)
852 __attribute__ ((weak, alias("__video_set_lut")));
854 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
856 #define FILL_8BIT_332RGB(r,g,b) { \
857 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
861 #define FILL_15BIT_555RGB(r,g,b) { \
862 *(unsigned short *)fb = \
863 SWAP16((unsigned short)(((r>>3)<<10) | \
869 #define FILL_16BIT_565RGB(r,g,b) { \
870 *(unsigned short *)fb = \
871 SWAP16((unsigned short)((((r)>>3)<<11)| \
877 #define FILL_32BIT_X888RGB(r,g,b) { \
878 *(unsigned long *)fb = \
879 SWAP32((unsigned long)(((r<<16) | \
885 #ifdef VIDEO_FB_LITTLE_ENDIAN
886 #define FILL_24BIT_888RGB(r,g,b) { \
893 #define FILL_24BIT_888RGB(r,g,b) { \
901 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
902 static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
904 ushort *dst = (ushort *) fb;
905 ushort color = (ushort) (((r >> 3) << 10) |
916 * RLE8 bitmap support
919 #ifdef CONFIG_VIDEO_BMP_RLE8
920 /* Pre-calculated color table entry */
923 unsigned short w; /* word */
924 unsigned int dw; /* double word */
925 } ce; /* color entry */
929 * Helper to draw encoded/unencoded run.
931 static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
934 ulong addr = (ulong) *fb;
940 * Setup offset of the color index in the bitmap.
941 * Color index of encoded run is at offset 1.
943 off = enc ? &enc_off : &i;
945 switch (VIDEO_DATA_FORMAT) {
946 case GDF__8BIT_INDEX:
947 for (i = 0; i < cnt; i++)
948 *(unsigned char *) addr++ = bm[*off];
950 case GDF_15BIT_555RGB:
951 case GDF_16BIT_565RGB:
952 /* differences handled while pre-calculating palette */
953 for (i = 0; i < cnt; i++) {
954 *(unsigned short *) addr = p[bm[*off]].ce.w;
958 case GDF_32BIT_X888RGB:
959 for (i = 0; i < cnt; i++) {
960 *(unsigned long *) addr = p[bm[*off]].ce.dw;
965 *fb = (uchar *) addr; /* return modified address */
968 static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
969 int width, int height)
973 unsigned int cnt, runlen;
975 int x, y, bpp, i, ncolors;
976 struct palette p[256];
977 bmp_color_table_entry_t cte;
978 int green_shift, red_off;
979 int limit = VIDEO_COLS * VIDEO_ROWS;
983 y = __le32_to_cpu(img->header.height) - 1;
984 ncolors = __le32_to_cpu(img->header.colors_used);
985 bpp = VIDEO_PIXEL_SIZE;
986 fbp = (unsigned char *) ((unsigned int) video_fb_address +
987 (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
989 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
991 /* pre-calculate and setup palette */
992 switch (VIDEO_DATA_FORMAT) {
993 case GDF__8BIT_INDEX:
994 for (i = 0; i < ncolors; i++) {
995 cte = img->color_table[i];
996 video_set_lut(i, cte.red, cte.green, cte.blue);
999 case GDF_15BIT_555RGB:
1000 case GDF_16BIT_565RGB:
1001 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1008 for (i = 0; i < ncolors; i++) {
1009 cte = img->color_table[i];
1010 p[i].ce.w = SWAP16((unsigned short)
1011 (((cte.red >> 3) << red_off) |
1012 ((cte.green >> green_shift) << 5) |
1016 case GDF_32BIT_X888RGB:
1017 for (i = 0; i < ncolors; i++) {
1018 cte = img->color_table[i];
1019 p[i].ce.dw = SWAP32((cte.red << 16) |
1025 printf("RLE Bitmap unsupported in video mode 0x%x\n",
1035 /* scan line end marker */
1039 fbp = (unsigned char *)
1040 ((unsigned int) video_fb_address +
1041 (((y + yoff) * VIDEO_COLS) +
1045 /* end of bitmap data marker */
1049 /* run offset marker */
1052 fbp = (unsigned char *)
1053 ((unsigned int) video_fb_address +
1054 (((y + yoff) * VIDEO_COLS) +
1072 if (x + runlen > width)
1074 draw_bitmap(&fbp, bm, p, cnt, 0);
1080 bm++; /* 0 padding if length is odd */
1091 if (y < height) { /* only draw into visible area */
1097 if (x + runlen > width)
1099 draw_bitmap(&fbp, bm, p, cnt, 1);
1108 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1114 * Display the BMP file located at address bmp_image.
1116 int video_display_bitmap(ulong bmp_image, int x, int y)
1118 ushort xcount, ycount;
1120 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1123 unsigned long width, height, bpp;
1125 unsigned long compression;
1126 bmp_color_table_entry_t cte;
1128 #ifdef CONFIG_VIDEO_BMP_GZIP
1129 unsigned char *dst = NULL;
1135 if (!((bmp->header.signature[0] == 'B') &&
1136 (bmp->header.signature[1] == 'M'))) {
1138 #ifdef CONFIG_VIDEO_BMP_GZIP
1140 * Could be a gzipped bmp image, try to decrompress...
1142 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1143 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
1145 printf("Error: malloc in gunzip failed!\n");
1148 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE,
1149 (uchar *) bmp_image,
1151 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1156 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
1157 printf("Image could be truncated "
1158 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
1162 * Set addr to decompressed image
1164 bmp = (bmp_image_t *) dst;
1166 if (!((bmp->header.signature[0] == 'B') &&
1167 (bmp->header.signature[1] == 'M'))) {
1168 printf("Error: no valid bmp.gz image at %lx\n",
1174 printf("Error: no valid bmp image at %lx\n", bmp_image);
1176 #endif /* CONFIG_VIDEO_BMP_GZIP */
1179 width = le32_to_cpu(bmp->header.width);
1180 height = le32_to_cpu(bmp->header.height);
1181 bpp = le16_to_cpu(bmp->header.bit_count);
1182 colors = le32_to_cpu(bmp->header.colors_used);
1183 compression = le32_to_cpu(bmp->header.compression);
1185 debug("Display-bmp: %ld x %ld with %d colors\n",
1186 width, height, colors);
1188 if (compression != BMP_BI_RGB
1189 #ifdef CONFIG_VIDEO_BMP_RLE8
1190 && compression != BMP_BI_RLE8
1193 printf("Error: compression type %ld not supported\n",
1195 #ifdef CONFIG_VIDEO_BMP_GZIP
1202 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1204 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1205 if (x == BMP_ALIGN_CENTER)
1206 x = max(0, (VIDEO_VISIBLE_COLS - width) / 2);
1208 x = max(0, VIDEO_VISIBLE_COLS - width + x + 1);
1210 if (y == BMP_ALIGN_CENTER)
1211 y = max(0, (VIDEO_VISIBLE_ROWS - height) / 2);
1213 y = max(0, VIDEO_VISIBLE_ROWS - height + y + 1);
1214 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1216 if ((x + width) > VIDEO_VISIBLE_COLS)
1217 width = VIDEO_VISIBLE_COLS - x;
1218 if ((y + height) > VIDEO_VISIBLE_ROWS)
1219 height = VIDEO_VISIBLE_ROWS - y;
1221 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
1222 fb = (uchar *) (video_fb_address +
1223 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1224 x * VIDEO_PIXEL_SIZE);
1226 #ifdef CONFIG_VIDEO_BMP_RLE8
1227 if (compression == BMP_BI_RLE8) {
1228 return display_rle8_bitmap(bmp, x, y, width, height);
1232 /* We handle only 4, 8, or 24 bpp bitmaps */
1233 switch (le16_to_cpu(bmp->header.bit_count)) {
1235 padded_line -= width / 2;
1238 switch (VIDEO_DATA_FORMAT) {
1239 case GDF_32BIT_X888RGB:
1243 * Don't assume that 'width' is an
1246 for (xcount = 0; xcount < width; xcount++) {
1254 cte = bmp->color_table[idx];
1255 FILL_32BIT_X888RGB(cte.red, cte.green,
1258 bmap += padded_line;
1259 fb -= (VIDEO_VISIBLE_COLS + width) *
1264 puts("4bpp bitmap unsupported with current "
1271 padded_line -= width;
1272 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1274 for (xcount = 0; xcount < colors; ++xcount) {
1275 cte = bmp->color_table[xcount];
1276 video_set_lut(xcount, cte.red, cte.green,
1281 switch (VIDEO_DATA_FORMAT) {
1282 case GDF__8BIT_INDEX:
1289 bmap += padded_line;
1290 fb -= (VIDEO_VISIBLE_COLS + width) *
1294 case GDF__8BIT_332RGB:
1299 cte = bmp->color_table[*bmap++];
1300 FILL_8BIT_332RGB(cte.red, cte.green,
1303 bmap += padded_line;
1304 fb -= (VIDEO_VISIBLE_COLS + width) *
1308 case GDF_15BIT_555RGB:
1310 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1316 cte = bmp->color_table[*bmap++];
1317 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1318 fill_555rgb_pswap(fb, xpos++, cte.red,
1323 FILL_15BIT_555RGB(cte.red, cte.green,
1327 bmap += padded_line;
1328 fb -= (VIDEO_VISIBLE_COLS + width) *
1332 case GDF_16BIT_565RGB:
1337 cte = bmp->color_table[*bmap++];
1338 FILL_16BIT_565RGB(cte.red, cte.green,
1341 bmap += padded_line;
1342 fb -= (VIDEO_VISIBLE_COLS + width) *
1346 case GDF_32BIT_X888RGB:
1351 cte = bmp->color_table[*bmap++];
1352 FILL_32BIT_X888RGB(cte.red, cte.green,
1355 bmap += padded_line;
1356 fb -= (VIDEO_VISIBLE_COLS + width) *
1360 case GDF_24BIT_888RGB:
1365 cte = bmp->color_table[*bmap++];
1366 FILL_24BIT_888RGB(cte.red, cte.green,
1369 bmap += padded_line;
1370 fb -= (VIDEO_VISIBLE_COLS + width) *
1377 padded_line -= 3 * width;
1379 switch (VIDEO_DATA_FORMAT) {
1380 case GDF__8BIT_332RGB:
1385 FILL_8BIT_332RGB(bmap[2], bmap[1],
1389 bmap += padded_line;
1390 fb -= (VIDEO_VISIBLE_COLS + width) *
1394 case GDF_15BIT_555RGB:
1396 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1402 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1403 fill_555rgb_pswap(fb, xpos++, bmap[2],
1407 FILL_15BIT_555RGB(bmap[2], bmap[1],
1412 bmap += padded_line;
1413 fb -= (VIDEO_VISIBLE_COLS + width) *
1417 case GDF_16BIT_565RGB:
1422 FILL_16BIT_565RGB(bmap[2], bmap[1],
1426 bmap += padded_line;
1427 fb -= (VIDEO_VISIBLE_COLS + width) *
1431 case GDF_32BIT_X888RGB:
1436 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1440 bmap += padded_line;
1441 fb -= (VIDEO_VISIBLE_COLS + width) *
1445 case GDF_24BIT_888RGB:
1450 FILL_24BIT_888RGB(bmap[2], bmap[1],
1454 bmap += padded_line;
1455 fb -= (VIDEO_VISIBLE_COLS + width) *
1460 printf("Error: 24 bits/pixel bitmap incompatible "
1461 "with current video mode\n");
1466 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1467 le16_to_cpu(bmp->header.bit_count));
1471 #ifdef CONFIG_VIDEO_BMP_GZIP
1482 #ifdef CONFIG_VIDEO_LOGO
1483 void logo_plot(void *screen, int width, int x, int y)
1487 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
1488 int ycount = video_logo_height;
1489 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1490 unsigned char *source;
1491 unsigned char *dest = (unsigned char *) screen +
1492 ((y * width * VIDEO_PIXEL_SIZE) + x * VIDEO_PIXEL_SIZE);
1494 #ifdef CONFIG_VIDEO_BMP_LOGO
1495 source = bmp_logo_bitmap;
1497 /* Allocate temporary space for computing colormap */
1498 logo_red = malloc(BMP_LOGO_COLORS);
1499 logo_green = malloc(BMP_LOGO_COLORS);
1500 logo_blue = malloc(BMP_LOGO_COLORS);
1501 /* Compute color map */
1502 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1503 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1504 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1505 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1508 source = linux_logo;
1509 logo_red = linux_logo_red;
1510 logo_green = linux_logo_green;
1511 logo_blue = linux_logo_blue;
1514 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1515 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1516 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1517 logo_red[i], logo_green[i],
1523 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1526 xcount = VIDEO_LOGO_WIDTH;
1528 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1529 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1530 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1532 switch (VIDEO_DATA_FORMAT) {
1533 case GDF__8BIT_INDEX:
1536 case GDF__8BIT_332RGB:
1537 *dest = ((r >> 5) << 5) |
1541 case GDF_15BIT_555RGB:
1542 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1543 fill_555rgb_pswap(dest, xpos++, r, g, b);
1545 *(unsigned short *) dest =
1546 SWAP16((unsigned short) (
1552 case GDF_16BIT_565RGB:
1553 *(unsigned short *) dest =
1554 SWAP16((unsigned short) (
1559 case GDF_32BIT_X888RGB:
1560 *(unsigned long *) dest =
1561 SWAP32((unsigned long) (
1566 case GDF_24BIT_888RGB:
1567 #ifdef VIDEO_FB_LITTLE_ENDIAN
1579 dest += VIDEO_PIXEL_SIZE;
1583 #ifdef CONFIG_VIDEO_BMP_LOGO
1590 static void *video_logo(void)
1594 __maybe_unused int y_off = 0;
1596 #ifdef CONFIG_SPLASH_SCREEN
1600 s = getenv("splashimage");
1604 addr = simple_strtoul(s, NULL, 16);
1605 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1606 s = getenv("splashpos");
1609 x = BMP_ALIGN_CENTER;
1611 x = simple_strtol(s, NULL, 0);
1613 s = strchr(s + 1, ',');
1616 y = BMP_ALIGN_CENTER;
1618 y = simple_strtol(s + 1, NULL, 0);
1621 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1623 if (video_display_bitmap(addr, x, y) == 0) {
1624 video_logo_height = 0;
1625 return ((void *) (video_fb_address));
1628 #endif /* CONFIG_SPLASH_SCREEN */
1630 logo_plot(video_fb_address, VIDEO_COLS, 0, 0);
1632 sprintf(info, " %s", version_string);
1634 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
1638 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
1639 (uchar *) info, space);
1640 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
1641 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
1642 (uchar *) info + space, len - space);
1645 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
1647 #ifdef CONFIG_CONSOLE_EXTRA_INFO
1650 ((video_logo_height -
1651 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
1653 for (i = 1; i < n; i++) {
1654 video_get_info_str(i, info);
1660 video_drawchars(VIDEO_INFO_X,
1664 (uchar *) info, space);
1666 video_drawchars(VIDEO_INFO_X +
1671 (uchar *) info + space,
1674 video_drawstring(VIDEO_INFO_X,
1684 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
1688 static int cfb_fb_is_in_dram(void)
1691 #if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
1692 defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
1696 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
1697 start = bd->bi_dram[i].start;
1698 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
1699 if ((ulong)video_fb_address >= start &&
1700 (ulong)video_fb_address < end)
1704 if ((ulong)video_fb_address >= bd->bi_memstart &&
1705 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
1711 static int video_init(void)
1713 unsigned char color8;
1715 pGD = video_hw_init();
1719 video_fb_address = (void *) VIDEO_FB_ADRS;
1720 #ifdef CONFIG_VIDEO_HW_CURSOR
1721 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
1724 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
1726 /* Init drawing pats */
1727 switch (VIDEO_DATA_FORMAT) {
1728 case GDF__8BIT_INDEX:
1729 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
1731 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
1736 case GDF__8BIT_332RGB:
1737 color8 = ((CONSOLE_FG_COL & 0xe0) |
1738 ((CONSOLE_FG_COL >> 3) & 0x1c) |
1739 CONSOLE_FG_COL >> 6);
1740 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
1742 color8 = ((CONSOLE_BG_COL & 0xe0) |
1743 ((CONSOLE_BG_COL >> 3) & 0x1c) |
1744 CONSOLE_BG_COL >> 6);
1745 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
1748 case GDF_15BIT_555RGB:
1749 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
1750 ((CONSOLE_FG_COL >> 3) << 21) |
1751 ((CONSOLE_FG_COL >> 3) << 16) |
1752 ((CONSOLE_FG_COL >> 3) << 10) |
1753 ((CONSOLE_FG_COL >> 3) << 5) |
1754 (CONSOLE_FG_COL >> 3));
1755 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
1756 ((CONSOLE_BG_COL >> 3) << 21) |
1757 ((CONSOLE_BG_COL >> 3) << 16) |
1758 ((CONSOLE_BG_COL >> 3) << 10) |
1759 ((CONSOLE_BG_COL >> 3) << 5) |
1760 (CONSOLE_BG_COL >> 3));
1762 case GDF_16BIT_565RGB:
1763 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
1764 ((CONSOLE_FG_COL >> 2) << 21) |
1765 ((CONSOLE_FG_COL >> 3) << 16) |
1766 ((CONSOLE_FG_COL >> 3) << 11) |
1767 ((CONSOLE_FG_COL >> 2) << 5) |
1768 (CONSOLE_FG_COL >> 3));
1769 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
1770 ((CONSOLE_BG_COL >> 2) << 21) |
1771 ((CONSOLE_BG_COL >> 3) << 16) |
1772 ((CONSOLE_BG_COL >> 3) << 11) |
1773 ((CONSOLE_BG_COL >> 2) << 5) |
1774 (CONSOLE_BG_COL >> 3));
1776 case GDF_32BIT_X888RGB:
1777 fgx = (CONSOLE_FG_COL << 16) |
1778 (CONSOLE_FG_COL << 8) |
1780 bgx = (CONSOLE_BG_COL << 16) |
1781 (CONSOLE_BG_COL << 8) |
1784 case GDF_24BIT_888RGB:
1785 fgx = (CONSOLE_FG_COL << 24) |
1786 (CONSOLE_FG_COL << 16) |
1787 (CONSOLE_FG_COL << 8) |
1789 bgx = (CONSOLE_BG_COL << 24) |
1790 (CONSOLE_BG_COL << 16) |
1791 (CONSOLE_BG_COL << 8) |
1797 #ifdef CONFIG_VIDEO_LOGO
1798 /* Plot the logo and get start point of console */
1799 debug("Video: Drawing the logo ...\n");
1800 video_console_address = video_logo();
1802 video_console_address = video_fb_address;
1805 /* Initialize the console */
1813 * Implement a weak default function for boards that optionally
1814 * need to skip the video initialization.
1816 int __board_video_skip(void)
1818 /* As default, don't skip test */
1822 int board_video_skip(void)
1823 __attribute__ ((weak, alias("__board_video_skip")));
1825 int drv_video_init(void)
1828 struct stdio_dev console_dev;
1830 /* Check if video initialization should be skipped */
1831 if (board_video_skip())
1834 /* Init video chip - returns with framebuffer cleared */
1835 skip_dev_init = (video_init() == -1);
1837 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
1838 debug("KBD: Keyboard init ...\n");
1839 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
1845 /* Init vga device */
1846 memset(&console_dev, 0, sizeof(console_dev));
1847 strcpy(console_dev.name, "vga");
1848 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
1849 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
1850 console_dev.putc = video_putc; /* 'putc' function */
1851 console_dev.puts = video_puts; /* 'puts' function */
1852 console_dev.tstc = NULL; /* 'tstc' function */
1853 console_dev.getc = NULL; /* 'getc' function */
1855 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
1856 /* Also init console device */
1857 console_dev.flags |= DEV_FLAGS_INPUT;
1858 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
1859 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
1860 #endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
1862 if (stdio_register(&console_dev) != 0)
1865 /* Return success */