2 * (C) Copyright 2002 ELTEC Elektronik AG
3 * Frank Gottschling <fgottschling@eltec.de>
5 * SPDX-License-Identifier: GPL-2.0+
11 * Color Framebuffer Console driver for 8/15/16/24/32 bits per pixel.
13 * At the moment only the 8x16 font is tested and the font fore- and
14 * background color is limited to black/white/gray colors. The Linux
15 * logo can be placed in the upper left corner and additional board
16 * information strings (that normally goes to serial port) can be drawn.
18 * The console driver can use the standard PC keyboard interface (i8042)
19 * for character input. Character output goes to a memory mapped video
20 * framebuffer with little or big-endian organisation.
21 * With environment setting 'console=serial' the console i/o can be
22 * forced to serial port.
24 * The driver uses graphic specific defines/parameters/functions:
26 * (for SMI LynxE graphic chip)
28 * CONFIG_VIDEO_SMI_LYNXEM - use graphic driver for SMI 710,712,810
29 * VIDEO_FB_LITTLE_ENDIAN - framebuffer organisation default: big endian
30 * VIDEO_HW_RECTFILL - graphic driver supports hardware rectangle fill
31 * VIDEO_HW_BITBLT - graphic driver supports hardware bit blt
33 * Console Parameters are set by graphic drivers global struct:
35 * VIDEO_VISIBLE_COLS - x resolution
36 * VIDEO_VISIBLE_ROWS - y resolution
37 * VIDEO_PIXEL_SIZE - storage size in byte per pixel
38 * VIDEO_DATA_FORMAT - graphical data format GDF
39 * VIDEO_FB_ADRS - start of video memory
41 * CONFIG_I8042_KBD - AT Keyboard driver for i8042
42 * VIDEO_KBD_INIT_FCT - init function for keyboard
43 * VIDEO_TSTC_FCT - keyboard_tstc function
44 * VIDEO_GETC_FCT - keyboard_getc function
46 * CONFIG_CONSOLE_CURSOR - on/off drawing cursor is done with
47 * delay loop in VIDEO_TSTC_FCT (i8042)
49 * CONFIG_SYS_CONSOLE_BLINK_COUNT - value for delay loop - blink rate
50 * CONFIG_CONSOLE_TIME - display time/date in upper right
51 * corner, needs CONFIG_CMD_DATE and
52 * CONFIG_CONSOLE_CURSOR
53 * CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner.
54 * Use CONFIG_SPLASH_SCREEN_ALIGN with
55 * environment variable "splashpos" to place
56 * the logo on other position. In this case
57 * no CONSOLE_EXTRA_INFO is possible.
58 * CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
59 * CONFIG_CONSOLE_EXTRA_INFO - display additional board information
60 * strings that normaly goes to serial
61 * port. This define requires a board
63 * video_drawstring (VIDEO_INFO_X,
64 * VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
66 * that fills a info buffer at i=row.
67 * s.a: board/eltec/bab7xx.
68 * CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be
69 * initialized as an output only device.
70 * The Keyboard driver will not be
71 * set-up. This may be used, if you have
72 * no or more than one Keyboard devices
73 * (USB Keyboard, AT Keyboard).
75 * CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last
76 * character. No blinking is provided.
77 * Uses the macros CURSOR_SET and
80 * CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability
81 * of the graphic chip. Uses the macro
82 * CURSOR_SET. ATTENTION: If booting an
83 * OS, the display driver must disable
84 * the hardware register of the graphic
85 * chip. Otherwise a blinking field is
92 #include <linux/compiler.h>
95 * Console device defines with SMI graphic
96 * Any other graphic must change this section
99 #ifdef CONFIG_VIDEO_SMI_LYNXEM
101 #define VIDEO_FB_LITTLE_ENDIAN
102 #define VIDEO_HW_RECTFILL
103 #define VIDEO_HW_BITBLT
107 * Defines for the CT69000 driver
109 #ifdef CONFIG_VIDEO_CT69000
111 #define VIDEO_FB_LITTLE_ENDIAN
112 #define VIDEO_HW_RECTFILL
113 #define VIDEO_HW_BITBLT
117 * Defines for the SED13806 driver
119 #ifdef CONFIG_VIDEO_SED13806
121 #ifndef CONFIG_TOTAL5200
122 #define VIDEO_FB_LITTLE_ENDIAN
124 #define VIDEO_HW_RECTFILL
125 #define VIDEO_HW_BITBLT
128 #ifdef CONFIG_VIDEO_MXS
129 #define VIDEO_FB_16BPP_WORD_SWAP
133 * Defines for the MB862xx driver
135 #ifdef CONFIG_VIDEO_MB862xx
137 #ifdef CONFIG_VIDEO_CORALP
138 #define VIDEO_FB_LITTLE_ENDIAN
140 #ifdef CONFIG_VIDEO_MB862xx_ACCEL
141 #define VIDEO_HW_RECTFILL
142 #define VIDEO_HW_BITBLT
147 * Defines for the i.MX31 driver (mx3fb.c)
149 #if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
150 #define VIDEO_FB_16BPP_WORD_SWAP
154 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
156 #include <video_fb.h>
163 #define VIDEO_VISIBLE_COLS (pGD->winSizeX)
164 #define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
165 #define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
166 #define VIDEO_DATA_FORMAT (pGD->gdfIndex)
167 #define VIDEO_FB_ADRS (pGD->frameAdrs)
170 * Console device defines with i8042 keyboard controller
171 * Any other keyboard controller must change this section
174 #ifdef CONFIG_I8042_KBD
177 #define VIDEO_KBD_INIT_FCT i8042_kbd_init()
178 #define VIDEO_TSTC_FCT i8042_tstc
179 #define VIDEO_GETC_FCT i8042_getc
187 #include <linux/types.h>
188 #include <stdio_dev.h>
189 #include <video_font.h>
191 #if defined(CONFIG_CMD_DATE)
195 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
196 #include <watchdog.h>
197 #include <bmp_layout.h>
203 * CONFIG_CONSOLE_CURSOR: Uses a timer function (see drivers/input/i8042.c)
204 * to let the cursor blink. Uses the macros
205 * CURSOR_OFF and CURSOR_ON.
206 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
207 * blinking is provided. Uses the macros CURSOR_SET
209 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
210 * graphic chip. Uses the macro CURSOR_SET.
211 * ATTENTION: If booting an OS, the display driver
212 * must disable the hardware register of the graphic
213 * chip. Otherwise a blinking field is displayed
215 #if !defined(CONFIG_CONSOLE_CURSOR) && \
216 !defined(CONFIG_VIDEO_SW_CURSOR) && \
217 !defined(CONFIG_VIDEO_HW_CURSOR)
218 /* no Cursor defined */
224 #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
225 #if defined(CURSOR_ON) || \
226 (defined(CONFIG_CONSOLE_CURSOR) && defined(CONFIG_VIDEO_SW_CURSOR))
227 #error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
228 or CONFIG_VIDEO_HW_CURSOR can be defined
230 void console_cursor(int state);
232 #define CURSOR_ON console_cursor(1)
233 #define CURSOR_OFF console_cursor(0)
234 #define CURSOR_SET video_set_cursor()
235 #endif /* CONFIG_CONSOLE_CURSOR || CONFIG_VIDEO_SW_CURSOR */
237 #ifdef CONFIG_CONSOLE_CURSOR
238 #ifndef CONFIG_CONSOLE_TIME
239 #error CONFIG_CONSOLE_CURSOR must be defined for CONFIG_CONSOLE_TIME
241 #ifndef CONFIG_I8042_KBD
242 #warning Cursor drawing on/off needs timer function s.a. drivers/input/i8042.c
244 #endif /* CONFIG_CONSOLE_CURSOR */
247 #ifdef CONFIG_VIDEO_HW_CURSOR
249 #error only one of CONFIG_CONSOLE_CURSOR, CONFIG_VIDEO_SW_CURSOR, \
250 or CONFIG_VIDEO_HW_CURSOR can be defined
254 #define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
255 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
256 #endif /* CONFIG_VIDEO_HW_CURSOR */
258 #ifdef CONFIG_VIDEO_LOGO
259 #ifdef CONFIG_VIDEO_BMP_LOGO
260 #include <bmp_logo.h>
261 #include <bmp_logo_data.h>
262 #define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
263 #define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
264 #define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
265 #define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
267 #else /* CONFIG_VIDEO_BMP_LOGO */
268 #define LINUX_LOGO_WIDTH 80
269 #define LINUX_LOGO_HEIGHT 80
270 #define LINUX_LOGO_COLORS 214
271 #define LINUX_LOGO_LUT_OFFSET 0x20
273 #include <linux_logo.h>
274 #define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
275 #define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
276 #define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
277 #define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
278 #endif /* CONFIG_VIDEO_BMP_LOGO */
279 #define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
280 #define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
281 #else /* CONFIG_VIDEO_LOGO */
282 #define VIDEO_LOGO_WIDTH 0
283 #define VIDEO_LOGO_HEIGHT 0
284 #endif /* CONFIG_VIDEO_LOGO */
286 #define VIDEO_COLS VIDEO_VISIBLE_COLS
287 #define VIDEO_ROWS VIDEO_VISIBLE_ROWS
288 #define VIDEO_SIZE (VIDEO_ROWS*VIDEO_COLS*VIDEO_PIXEL_SIZE)
289 #define VIDEO_PIX_BLOCKS (VIDEO_SIZE >> 2)
290 #define VIDEO_LINE_LEN (VIDEO_COLS*VIDEO_PIXEL_SIZE)
291 #define VIDEO_BURST_LEN (VIDEO_COLS/8)
293 #ifdef CONFIG_VIDEO_LOGO
294 #define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
296 #define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
299 #define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
300 #define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
301 #define CONSOLE_ROW_FIRST (video_console_address)
302 #define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
303 #define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
304 #define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
305 #define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
308 #ifdef VIDEO_FB_LITTLE_ENDIAN
309 #define SWAP16(x) ((((x) & 0x00ff) << 8) | \
312 #define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
313 (((x) & 0x0000ff00) << 8) | \
314 (((x) & 0x00ff0000) >> 8) | \
315 (((x) & 0xff000000) >> 24) \
317 #define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
318 (((x) & 0x0000ff00) >> 8) | \
319 (((x) & 0x00ff0000) << 8) | \
320 (((x) & 0xff000000) >> 8) \
323 #define SWAP16(x) (x)
324 #define SWAP32(x) (x)
325 #if defined(VIDEO_FB_16BPP_WORD_SWAP)
326 #define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
328 #define SHORTSWAP32(x) (x)
332 #ifdef CONFIG_CONSOLE_EXTRA_INFO
334 * setup a board string: type, speed, etc.
336 * line_number: location to place info string beside logo
337 * info: buffer for info string
339 extern void video_get_info_str(int line_number, char *info);
342 DECLARE_GLOBAL_DATA_PTR;
345 static GraphicDevice *pGD; /* Pointer to Graphic array */
347 static void *video_fb_address; /* frame buffer address */
348 static void *video_console_address; /* console buffer start address */
350 static int video_logo_height = VIDEO_LOGO_HEIGHT;
352 static int __maybe_unused cursor_state;
353 static int __maybe_unused old_col;
354 static int __maybe_unused old_row;
356 static int console_col; /* cursor col */
357 static int console_row; /* cursor row */
359 static u32 eorx, fgx, bgx; /* color pats */
361 static int cfb_do_flush_cache;
363 #ifdef CONFIG_CFB_CONSOLE_ANSI
364 static char ansi_buf[10];
365 static int ansi_buf_size;
366 static int ansi_colors_need_revert;
367 static int ansi_cursor_hidden;
370 static const int video_font_draw_table8[] = {
371 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
372 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
373 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
374 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
377 static const int video_font_draw_table15[] = {
378 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
381 static const int video_font_draw_table16[] = {
382 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
385 static const int video_font_draw_table24[16][3] = {
386 {0x00000000, 0x00000000, 0x00000000},
387 {0x00000000, 0x00000000, 0x00ffffff},
388 {0x00000000, 0x0000ffff, 0xff000000},
389 {0x00000000, 0x0000ffff, 0xffffffff},
390 {0x000000ff, 0xffff0000, 0x00000000},
391 {0x000000ff, 0xffff0000, 0x00ffffff},
392 {0x000000ff, 0xffffffff, 0xff000000},
393 {0x000000ff, 0xffffffff, 0xffffffff},
394 {0xffffff00, 0x00000000, 0x00000000},
395 {0xffffff00, 0x00000000, 0x00ffffff},
396 {0xffffff00, 0x0000ffff, 0xff000000},
397 {0xffffff00, 0x0000ffff, 0xffffffff},
398 {0xffffffff, 0xffff0000, 0x00000000},
399 {0xffffffff, 0xffff0000, 0x00ffffff},
400 {0xffffffff, 0xffffffff, 0xff000000},
401 {0xffffffff, 0xffffffff, 0xffffffff}
404 static const int video_font_draw_table32[16][4] = {
405 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
406 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
407 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
408 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
409 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
410 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
411 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
412 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
413 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
414 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
415 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
416 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
417 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
418 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
419 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
420 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
424 * Implement a weak default function for boards that optionally
425 * need to skip the cfb initialization.
427 __weak int board_cfb_skip(void)
429 /* As default, don't skip cfb init */
433 static void video_drawchars(int xx, int yy, unsigned char *s, int count)
435 u8 *cdat, *dest, *dest0;
438 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
439 dest0 = video_fb_address + offset;
441 switch (VIDEO_DATA_FORMAT) {
442 case GDF__8BIT_INDEX:
443 case GDF__8BIT_332RGB:
446 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
447 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
448 rows--; dest += VIDEO_LINE_LEN) {
452 (video_font_draw_table8[bits >> 4] &
455 if (VIDEO_FONT_WIDTH == 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 if (VIDEO_FONT_WIDTH == 4)
488 SHORTSWAP32((video_font_draw_table15
489 [bits >> 2 & 3] & eorx) ^
492 SHORTSWAP32((video_font_draw_table15
496 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
501 case GDF_16BIT_565RGB:
504 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
505 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
506 rows--; dest += VIDEO_LINE_LEN) {
510 SHORTSWAP32((video_font_draw_table16
511 [bits >> 6] & eorx) ^
514 SHORTSWAP32((video_font_draw_table16
515 [bits >> 4 & 3] & eorx) ^
518 if (VIDEO_FONT_WIDTH == 4)
522 SHORTSWAP32((video_font_draw_table16
523 [bits >> 2 & 3] & eorx) ^
526 SHORTSWAP32((video_font_draw_table16
530 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
535 case GDF_32BIT_X888RGB:
538 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
539 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
540 rows--; dest += VIDEO_LINE_LEN) {
544 SWAP32((video_font_draw_table32
545 [bits >> 4][0] & eorx) ^ bgx);
547 SWAP32((video_font_draw_table32
548 [bits >> 4][1] & eorx) ^ bgx);
550 SWAP32((video_font_draw_table32
551 [bits >> 4][2] & eorx) ^ bgx);
553 SWAP32((video_font_draw_table32
554 [bits >> 4][3] & eorx) ^ bgx);
557 if (VIDEO_FONT_WIDTH == 4)
561 SWAP32((video_font_draw_table32
562 [bits & 15][0] & eorx) ^ bgx);
564 SWAP32((video_font_draw_table32
565 [bits & 15][1] & eorx) ^ bgx);
567 SWAP32((video_font_draw_table32
568 [bits & 15][2] & eorx) ^ bgx);
570 SWAP32((video_font_draw_table32
571 [bits & 15][3] & eorx) ^ bgx);
573 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
578 case GDF_24BIT_888RGB:
581 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
582 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
583 rows--; dest += VIDEO_LINE_LEN) {
587 (video_font_draw_table24[bits >> 4][0]
590 (video_font_draw_table24[bits >> 4][1]
593 (video_font_draw_table24[bits >> 4][2]
596 if (VIDEO_FONT_WIDTH == 4)
600 (video_font_draw_table24[bits & 15][0]
603 (video_font_draw_table24[bits & 15][1]
606 (video_font_draw_table24[bits & 15][2]
609 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
616 static inline void video_drawstring(int xx, int yy, unsigned char *s)
618 video_drawchars(xx, yy, s, strlen((char *) s));
621 static void video_putchar(int xx, int yy, unsigned char c)
623 video_drawchars(xx, yy + video_logo_height, &c, 1);
626 #if defined(CONFIG_CONSOLE_CURSOR) || defined(CONFIG_VIDEO_SW_CURSOR)
627 static void video_set_cursor(void)
634 static void video_invertchar(int xx, int yy)
636 int firstx = xx * VIDEO_PIXEL_SIZE;
637 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
638 int firsty = yy * VIDEO_LINE_LEN;
639 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
641 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
642 for (x = firstx; x < lastx; x++) {
643 u8 *dest = (u8 *)(video_fb_address) + x + y;
649 void console_cursor(int state)
651 #ifdef CONFIG_CONSOLE_TIME
655 /* time update only if cursor is on (faster scroll) */
659 sprintf(info, " %02d:%02d:%02d ", tm.tm_hour, tm.tm_min,
661 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
662 VIDEO_INFO_Y, (uchar *) info);
664 sprintf(info, "%02d.%02d.%04d", tm.tm_mday, tm.tm_mon,
666 video_drawstring(VIDEO_VISIBLE_COLS - 10 * VIDEO_FONT_WIDTH,
667 VIDEO_INFO_Y + 1 * VIDEO_FONT_HEIGHT,
672 if (cursor_state != state) {
674 /* turn off the cursor */
675 video_invertchar(old_col * VIDEO_FONT_WIDTH,
676 old_row * VIDEO_FONT_HEIGHT +
679 /* turn off the cursor and record where it is */
680 video_invertchar(console_col * VIDEO_FONT_WIDTH,
681 console_row * VIDEO_FONT_HEIGHT +
683 old_col = console_col;
684 old_row = console_row;
686 cursor_state = state;
688 if (cfb_do_flush_cache)
689 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
693 #ifndef VIDEO_HW_RECTFILL
694 static void memsetl(int *p, int c, int v)
701 #ifndef VIDEO_HW_BITBLT
702 static void memcpyl(int *d, int *s, int c)
709 static void console_clear_line(int line, int begin, int end)
711 #ifdef VIDEO_HW_RECTFILL
712 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
713 VIDEO_FONT_WIDTH * begin, /* dest pos x */
715 VIDEO_FONT_HEIGHT * line, /* dest pos y */
716 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
717 VIDEO_FONT_HEIGHT, /* frame height */
721 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
722 memsetl(CONSOLE_ROW_FIRST +
723 CONSOLE_ROW_SIZE * line, /* offset of row */
724 CONSOLE_ROW_SIZE >> 2, /* length of row */
731 offset = CONSOLE_ROW_FIRST +
732 CONSOLE_ROW_SIZE * line + /* offset of row */
734 VIDEO_PIXEL_SIZE * begin; /* offset of col */
735 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
736 size >>= 2; /* length to end for memsetl() */
737 /* fill at col offset of i'th line using bgx as fill color */
738 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
739 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
744 static void console_scrollup(void)
746 /* copy up rows ignoring the first one */
748 #ifdef VIDEO_HW_BITBLT
749 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
750 0, /* source pos x */
752 VIDEO_FONT_HEIGHT, /* source pos y */
754 video_logo_height, /* dest pos y */
755 VIDEO_VISIBLE_COLS, /* frame width */
758 - VIDEO_FONT_HEIGHT /* frame height */
761 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
762 CONSOLE_SCROLL_SIZE >> 2);
764 /* clear the last one */
765 console_clear_line(CONSOLE_ROWS - 1, 0, CONSOLE_COLS - 1);
768 static void console_back(void)
772 if (console_col < 0) {
773 console_col = CONSOLE_COLS - 1;
780 #ifdef CONFIG_CFB_CONSOLE_ANSI
782 static void console_clear(void)
784 #ifdef VIDEO_HW_RECTFILL
785 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
787 video_logo_height, /* dest pos y */
788 VIDEO_VISIBLE_COLS, /* frame width */
789 VIDEO_VISIBLE_ROWS, /* frame height */
793 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
797 static void console_cursor_fix(void)
801 if (console_row >= CONSOLE_ROWS)
802 console_row = CONSOLE_ROWS - 1;
805 if (console_col >= CONSOLE_COLS)
806 console_col = CONSOLE_COLS - 1;
809 static void console_cursor_up(int n)
812 console_cursor_fix();
815 static void console_cursor_down(int n)
818 console_cursor_fix();
821 static void console_cursor_left(int n)
824 console_cursor_fix();
827 static void console_cursor_right(int n)
830 console_cursor_fix();
833 static void console_cursor_set_position(int row, int col)
835 if (console_row != -1)
837 if (console_col != -1)
839 console_cursor_fix();
842 static void console_previousline(int n)
844 /* FIXME: also scroll terminal ? */
846 console_cursor_fix();
849 static void console_swap_colors(void)
857 static inline int console_cursor_is_visible(void)
859 return !ansi_cursor_hidden;
862 static inline int console_cursor_is_visible(void)
868 static void console_newline(int n)
873 /* Check if we need to scroll the terminal */
874 if (console_row >= CONSOLE_ROWS) {
875 /* Scroll everything up */
878 /* Decrement row number */
879 console_row = CONSOLE_ROWS - 1;
883 static void console_cr(void)
888 static void parse_putc(const char c)
892 if (console_cursor_is_visible())
896 case 13: /* back to first column */
900 case '\n': /* next line */
901 if (console_col || (!console_col && nl))
907 console_col |= 0x0008;
908 console_col &= ~0x0007;
910 if (console_col >= CONSOLE_COLS)
914 case 8: /* backspace */
921 default: /* draw the char */
922 video_putchar(console_col * VIDEO_FONT_WIDTH,
923 console_row * VIDEO_FONT_HEIGHT, c);
926 /* check for newline */
927 if (console_col >= CONSOLE_COLS) {
933 if (console_cursor_is_visible())
937 static void video_putc(struct stdio_dev *dev, const char c)
939 #ifdef CONFIG_CFB_CONSOLE_ANSI
943 for (i = 0; i < ansi_buf_size; ++i)
944 parse_putc(ansi_buf[i]);
950 if (ansi_buf_size > 0) {
970 ansi_buf[ansi_buf_size++] = c;
972 if (ansi_buf_size >= sizeof(ansi_buf))
975 for (i = 0; i < ansi_buf_size; ++i) {
981 if (ansi_buf[i] == 27)
988 if (ansi_buf[i] == '[')
995 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
996 num1 = ansi_buf[i]-'0';
998 } else if (ansi_buf[i] != '?') {
1006 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1008 num1 += ansi_buf[i]-'0';
1016 if (ansi_buf[i] != ';') {
1024 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1025 num2 = ansi_buf[i]-'0';
1032 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
1034 num2 += ansi_buf[i]-'0';
1042 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
1043 || ansi_buf[i] == 'J'
1044 || ansi_buf[i] == 'K'
1045 || ansi_buf[i] == 'h'
1046 || ansi_buf[i] == 'l'
1047 || ansi_buf[i] == 'm') {
1048 cchar = ansi_buf[i];
1057 for (i = 0; i < ansi_buf_size; ++i)
1058 parse_putc(ansi_buf[i]);
1064 if (!ansi_cursor_hidden)
1069 /* move cursor num1 rows up */
1070 console_cursor_up(num1);
1073 /* move cursor num1 rows down */
1074 console_cursor_down(num1);
1077 /* move cursor num1 columns forward */
1078 console_cursor_right(num1);
1081 /* move cursor num1 columns back */
1082 console_cursor_left(num1);
1085 /* move cursor num1 rows up at begin of row */
1086 console_previousline(num1);
1089 /* move cursor num1 rows down at begin of row */
1090 console_newline(num1);
1093 /* move cursor to column num1 */
1094 console_cursor_set_position(-1, num1-1);
1097 /* move cursor to row num1, column num2 */
1098 console_cursor_set_position(num1-1, num2-1);
1101 /* clear console and move cursor to 0, 0 */
1103 console_cursor_set_position(0, 0);
1108 console_clear_line(console_row,
1112 console_clear_line(console_row,
1115 console_clear_line(console_row,
1119 ansi_cursor_hidden = 0;
1122 ansi_cursor_hidden = 1;
1125 if (num1 == 0) { /* reset swapped colors */
1126 if (ansi_colors_need_revert) {
1127 console_swap_colors();
1128 ansi_colors_need_revert = 0;
1130 } else if (num1 == 7) { /* once swap colors */
1131 if (!ansi_colors_need_revert) {
1132 console_swap_colors();
1133 ansi_colors_need_revert = 1;
1138 if (!ansi_cursor_hidden)
1147 if (cfb_do_flush_cache)
1148 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1151 static void video_puts(struct stdio_dev *dev, const char *s)
1153 int flush = cfb_do_flush_cache;
1154 int count = strlen(s);
1156 /* temporarily disable cache flush */
1157 cfb_do_flush_cache = 0;
1160 video_putc(dev, *s++);
1163 cfb_do_flush_cache = flush;
1164 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1169 * Do not enforce drivers (or board code) to provide empty
1170 * video_set_lut() if they do not support 8 bpp format.
1171 * Implement weak default function instead.
1173 __weak void video_set_lut(unsigned int index, unsigned char r,
1174 unsigned char g, unsigned char b)
1178 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
1180 #define FILL_8BIT_332RGB(r,g,b) { \
1181 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1185 #define FILL_15BIT_555RGB(r,g,b) { \
1186 *(unsigned short *)fb = \
1187 SWAP16((unsigned short)(((r>>3)<<10) | \
1193 #define FILL_16BIT_565RGB(r,g,b) { \
1194 *(unsigned short *)fb = \
1195 SWAP16((unsigned short)((((r)>>3)<<11)| \
1201 #define FILL_32BIT_X888RGB(r,g,b) { \
1202 *(unsigned long *)fb = \
1203 SWAP32((unsigned long)(((r<<16) | \
1209 #ifdef VIDEO_FB_LITTLE_ENDIAN
1210 #define FILL_24BIT_888RGB(r,g,b) { \
1217 #define FILL_24BIT_888RGB(r,g,b) { \
1225 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1226 static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
1228 ushort *dst = (ushort *) fb;
1229 ushort color = (ushort) (((r >> 3) << 10) |
1240 * RLE8 bitmap support
1243 #ifdef CONFIG_VIDEO_BMP_RLE8
1244 /* Pre-calculated color table entry */
1247 unsigned short w; /* word */
1248 unsigned int dw; /* double word */
1249 } ce; /* color entry */
1253 * Helper to draw encoded/unencoded run.
1255 static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1258 ulong addr = (ulong) *fb;
1264 * Setup offset of the color index in the bitmap.
1265 * Color index of encoded run is at offset 1.
1267 off = enc ? &enc_off : &i;
1269 switch (VIDEO_DATA_FORMAT) {
1270 case GDF__8BIT_INDEX:
1271 for (i = 0; i < cnt; i++)
1272 *(unsigned char *) addr++ = bm[*off];
1274 case GDF_15BIT_555RGB:
1275 case GDF_16BIT_565RGB:
1276 /* differences handled while pre-calculating palette */
1277 for (i = 0; i < cnt; i++) {
1278 *(unsigned short *) addr = p[bm[*off]].ce.w;
1282 case GDF_32BIT_X888RGB:
1283 for (i = 0; i < cnt; i++) {
1284 *(unsigned long *) addr = p[bm[*off]].ce.dw;
1289 *fb = (uchar *) addr; /* return modified address */
1292 static int display_rle8_bitmap(bmp_image_t *img, int xoff, int yoff,
1293 int width, int height)
1297 unsigned int cnt, runlen;
1299 int x, y, bpp, i, ncolors;
1300 struct palette p[256];
1301 bmp_color_table_entry_t cte;
1302 int green_shift, red_off;
1303 int limit = VIDEO_COLS * VIDEO_ROWS;
1307 y = __le32_to_cpu(img->header.height) - 1;
1308 ncolors = __le32_to_cpu(img->header.colors_used);
1309 bpp = VIDEO_PIXEL_SIZE;
1310 fbp = (unsigned char *) ((unsigned int) video_fb_address +
1311 (((y + yoff) * VIDEO_COLS) + xoff) * bpp);
1313 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
1315 /* pre-calculate and setup palette */
1316 switch (VIDEO_DATA_FORMAT) {
1317 case GDF__8BIT_INDEX:
1318 for (i = 0; i < ncolors; i++) {
1319 cte = img->color_table[i];
1320 video_set_lut(i, cte.red, cte.green, cte.blue);
1323 case GDF_15BIT_555RGB:
1324 case GDF_16BIT_565RGB:
1325 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1332 for (i = 0; i < ncolors; i++) {
1333 cte = img->color_table[i];
1334 p[i].ce.w = SWAP16((unsigned short)
1335 (((cte.red >> 3) << red_off) |
1336 ((cte.green >> green_shift) << 5) |
1340 case GDF_32BIT_X888RGB:
1341 for (i = 0; i < ncolors; i++) {
1342 cte = img->color_table[i];
1343 p[i].ce.dw = SWAP32((cte.red << 16) |
1349 printf("RLE Bitmap unsupported in video mode 0x%x\n",
1359 /* scan line end marker */
1363 fbp = (unsigned char *)
1364 ((unsigned int) video_fb_address +
1365 (((y + yoff) * VIDEO_COLS) +
1369 /* end of bitmap data marker */
1373 /* run offset marker */
1376 fbp = (unsigned char *)
1377 ((unsigned int) video_fb_address +
1378 (((y + yoff) * VIDEO_COLS) +
1396 if (x + runlen > width)
1398 draw_bitmap(&fbp, bm, p, cnt, 0);
1404 bm++; /* 0 padding if length is odd */
1415 if (y < height) { /* only draw into visible area */
1421 if (x + runlen > width)
1423 draw_bitmap(&fbp, bm, p, cnt, 1);
1432 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1438 * Display the BMP file located at address bmp_image.
1440 int video_display_bitmap(ulong bmp_image, int x, int y)
1442 ushort xcount, ycount;
1444 bmp_image_t *bmp = (bmp_image_t *) bmp_image;
1447 unsigned long width, height, bpp;
1449 unsigned long compression;
1450 bmp_color_table_entry_t cte;
1452 #ifdef CONFIG_VIDEO_BMP_GZIP
1453 unsigned char *dst = NULL;
1459 if (!((bmp->header.signature[0] == 'B') &&
1460 (bmp->header.signature[1] == 'M'))) {
1462 #ifdef CONFIG_VIDEO_BMP_GZIP
1464 * Could be a gzipped bmp image, try to decrompress...
1466 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1467 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
1469 printf("Error: malloc in gunzip failed!\n");
1473 * NB: we need to force offset of +2
1474 * See doc/README.displaying-bmps
1476 if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
1477 (uchar *) bmp_image,
1479 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1484 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
1485 printf("Image could be truncated "
1486 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
1490 * Set addr to decompressed image
1492 bmp = (bmp_image_t *)(dst+2);
1494 if (!((bmp->header.signature[0] == 'B') &&
1495 (bmp->header.signature[1] == 'M'))) {
1496 printf("Error: no valid bmp.gz image at %lx\n",
1502 printf("Error: no valid bmp image at %lx\n", bmp_image);
1504 #endif /* CONFIG_VIDEO_BMP_GZIP */
1507 width = le32_to_cpu(bmp->header.width);
1508 height = le32_to_cpu(bmp->header.height);
1509 bpp = le16_to_cpu(bmp->header.bit_count);
1510 colors = le32_to_cpu(bmp->header.colors_used);
1511 compression = le32_to_cpu(bmp->header.compression);
1513 debug("Display-bmp: %ld x %ld with %d colors\n",
1514 width, height, colors);
1516 if (compression != BMP_BI_RGB
1517 #ifdef CONFIG_VIDEO_BMP_RLE8
1518 && compression != BMP_BI_RLE8
1521 printf("Error: compression type %ld not supported\n",
1523 #ifdef CONFIG_VIDEO_BMP_GZIP
1530 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1532 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1533 if (x == BMP_ALIGN_CENTER)
1534 x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
1536 x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
1538 if (y == BMP_ALIGN_CENTER)
1539 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
1541 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
1542 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1545 * Just ignore elements which are completely beyond screen
1548 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1551 if ((x + width) > VIDEO_VISIBLE_COLS)
1552 width = VIDEO_VISIBLE_COLS - x;
1553 if ((y + height) > VIDEO_VISIBLE_ROWS)
1554 height = VIDEO_VISIBLE_ROWS - y;
1556 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
1557 fb = (uchar *) (video_fb_address +
1558 ((y + height - 1) * VIDEO_COLS * VIDEO_PIXEL_SIZE) +
1559 x * VIDEO_PIXEL_SIZE);
1561 #ifdef CONFIG_VIDEO_BMP_RLE8
1562 if (compression == BMP_BI_RLE8) {
1563 return display_rle8_bitmap(bmp, x, y, width, height);
1567 /* We handle only 4, 8, or 24 bpp bitmaps */
1568 switch (le16_to_cpu(bmp->header.bit_count)) {
1570 padded_line -= width / 2;
1573 switch (VIDEO_DATA_FORMAT) {
1574 case GDF_32BIT_X888RGB:
1578 * Don't assume that 'width' is an
1581 for (xcount = 0; xcount < width; xcount++) {
1589 cte = bmp->color_table[idx];
1590 FILL_32BIT_X888RGB(cte.red, cte.green,
1593 bmap += padded_line;
1594 fb -= (VIDEO_VISIBLE_COLS + width) *
1599 puts("4bpp bitmap unsupported with current "
1606 padded_line -= width;
1607 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1609 for (xcount = 0; xcount < colors; ++xcount) {
1610 cte = bmp->color_table[xcount];
1611 video_set_lut(xcount, cte.red, cte.green,
1616 switch (VIDEO_DATA_FORMAT) {
1617 case GDF__8BIT_INDEX:
1624 bmap += padded_line;
1625 fb -= (VIDEO_VISIBLE_COLS + width) *
1629 case GDF__8BIT_332RGB:
1634 cte = bmp->color_table[*bmap++];
1635 FILL_8BIT_332RGB(cte.red, cte.green,
1638 bmap += padded_line;
1639 fb -= (VIDEO_VISIBLE_COLS + width) *
1643 case GDF_15BIT_555RGB:
1645 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1651 cte = bmp->color_table[*bmap++];
1652 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1653 fill_555rgb_pswap(fb, xpos++, cte.red,
1658 FILL_15BIT_555RGB(cte.red, cte.green,
1662 bmap += padded_line;
1663 fb -= (VIDEO_VISIBLE_COLS + width) *
1667 case GDF_16BIT_565RGB:
1672 cte = bmp->color_table[*bmap++];
1673 FILL_16BIT_565RGB(cte.red, cte.green,
1676 bmap += padded_line;
1677 fb -= (VIDEO_VISIBLE_COLS + width) *
1681 case GDF_32BIT_X888RGB:
1686 cte = bmp->color_table[*bmap++];
1687 FILL_32BIT_X888RGB(cte.red, cte.green,
1690 bmap += padded_line;
1691 fb -= (VIDEO_VISIBLE_COLS + width) *
1695 case GDF_24BIT_888RGB:
1700 cte = bmp->color_table[*bmap++];
1701 FILL_24BIT_888RGB(cte.red, cte.green,
1704 bmap += padded_line;
1705 fb -= (VIDEO_VISIBLE_COLS + width) *
1712 padded_line -= 3 * width;
1714 switch (VIDEO_DATA_FORMAT) {
1715 case GDF__8BIT_332RGB:
1720 FILL_8BIT_332RGB(bmap[2], bmap[1],
1724 bmap += padded_line;
1725 fb -= (VIDEO_VISIBLE_COLS + width) *
1729 case GDF_15BIT_555RGB:
1731 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1737 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1738 fill_555rgb_pswap(fb, xpos++, bmap[2],
1742 FILL_15BIT_555RGB(bmap[2], bmap[1],
1747 bmap += padded_line;
1748 fb -= (VIDEO_VISIBLE_COLS + width) *
1752 case GDF_16BIT_565RGB:
1757 FILL_16BIT_565RGB(bmap[2], bmap[1],
1761 bmap += padded_line;
1762 fb -= (VIDEO_VISIBLE_COLS + width) *
1766 case GDF_32BIT_X888RGB:
1771 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1775 bmap += padded_line;
1776 fb -= (VIDEO_VISIBLE_COLS + width) *
1780 case GDF_24BIT_888RGB:
1785 FILL_24BIT_888RGB(bmap[2], bmap[1],
1789 bmap += padded_line;
1790 fb -= (VIDEO_VISIBLE_COLS + width) *
1795 printf("Error: 24 bits/pixel bitmap incompatible "
1796 "with current video mode\n");
1801 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1802 le16_to_cpu(bmp->header.bit_count));
1806 #ifdef CONFIG_VIDEO_BMP_GZIP
1812 if (cfb_do_flush_cache)
1813 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1819 #ifdef CONFIG_VIDEO_LOGO
1820 static int video_logo_xpos;
1821 static int video_logo_ypos;
1823 static void plot_logo_or_black(void *screen, int width, int x, int y, \
1826 static void logo_plot(void *screen, int width, int x, int y)
1828 plot_logo_or_black(screen, width, x, y, 0);
1831 static void logo_black(void)
1833 plot_logo_or_black(video_fb_address, \
1840 static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1843 return cmd_usage(cmdtp);
1850 clrlogo, 1, 0, do_clrlogo,
1851 "fill the boot logo area with black",
1855 static void plot_logo_or_black(void *screen, int width, int x, int y, int black)
1859 int skip = (width - VIDEO_LOGO_WIDTH) * VIDEO_PIXEL_SIZE;
1860 int ycount = video_logo_height;
1861 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1862 unsigned char *source;
1863 unsigned char *dest;
1865 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1866 if (x == BMP_ALIGN_CENTER)
1867 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1869 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1));
1871 if (y == BMP_ALIGN_CENTER)
1872 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1874 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1));
1875 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1877 dest = (unsigned char *)screen + (y * width + x) * VIDEO_PIXEL_SIZE;
1879 #ifdef CONFIG_VIDEO_BMP_LOGO
1880 source = bmp_logo_bitmap;
1882 /* Allocate temporary space for computing colormap */
1883 logo_red = malloc(BMP_LOGO_COLORS);
1884 logo_green = malloc(BMP_LOGO_COLORS);
1885 logo_blue = malloc(BMP_LOGO_COLORS);
1886 /* Compute color map */
1887 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1888 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1889 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1890 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1893 source = linux_logo;
1894 logo_red = linux_logo_red;
1895 logo_green = linux_logo_green;
1896 logo_blue = linux_logo_blue;
1899 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1900 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1901 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1902 logo_red[i], logo_green[i],
1908 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1911 xcount = VIDEO_LOGO_WIDTH;
1918 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1919 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1920 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1923 switch (VIDEO_DATA_FORMAT) {
1924 case GDF__8BIT_INDEX:
1927 case GDF__8BIT_332RGB:
1928 *dest = ((r >> 5) << 5) |
1932 case GDF_15BIT_555RGB:
1933 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1934 fill_555rgb_pswap(dest, xpos++, r, g, b);
1936 *(unsigned short *) dest =
1937 SWAP16((unsigned short) (
1943 case GDF_16BIT_565RGB:
1944 *(unsigned short *) dest =
1945 SWAP16((unsigned short) (
1950 case GDF_32BIT_X888RGB:
1951 *(unsigned long *) dest =
1952 SWAP32((unsigned long) (
1957 case GDF_24BIT_888RGB:
1958 #ifdef VIDEO_FB_LITTLE_ENDIAN
1970 dest += VIDEO_PIXEL_SIZE;
1974 #ifdef CONFIG_VIDEO_BMP_LOGO
1981 static void *video_logo(void)
1985 __maybe_unused int y_off = 0;
1986 __maybe_unused ulong addr;
1987 __maybe_unused char *s;
1989 splash_get_pos(&video_logo_xpos, &video_logo_ypos);
1991 #ifdef CONFIG_SPLASH_SCREEN
1992 s = getenv("splashimage");
1994 splash_screen_prepare();
1995 addr = simple_strtoul(s, NULL, 16);
1997 if (video_display_bitmap(addr,
1999 video_logo_ypos) == 0) {
2000 video_logo_height = 0;
2001 return ((void *) (video_fb_address));
2004 #endif /* CONFIG_SPLASH_SCREEN */
2006 logo_plot(video_fb_address, VIDEO_COLS,
2007 video_logo_xpos, video_logo_ypos);
2009 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
2011 * when using splashpos for video_logo, skip any info
2012 * output on video console if the logo is not at 0,0
2014 if (video_logo_xpos || video_logo_ypos) {
2016 * video_logo_height is used in text and cursor offset
2017 * calculations. Since the console is below the logo,
2018 * we need to adjust the logo height
2020 if (video_logo_ypos == BMP_ALIGN_CENTER)
2021 video_logo_height += max(0, (int)(VIDEO_VISIBLE_ROWS -
2022 VIDEO_LOGO_HEIGHT) / 2);
2023 else if (video_logo_ypos > 0)
2024 video_logo_height += video_logo_ypos;
2026 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
2029 if (board_cfb_skip())
2032 sprintf(info, " %s", version_string);
2034 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
2038 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
2039 (uchar *) info, space);
2040 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
2041 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
2042 (uchar *) info + space, len - space);
2045 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
2047 #ifdef CONFIG_CONSOLE_EXTRA_INFO
2050 ((video_logo_height -
2051 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
2053 for (i = 1; i < n; i++) {
2054 video_get_info_str(i, info);
2060 video_drawchars(VIDEO_INFO_X,
2064 (uchar *) info, space);
2066 video_drawchars(VIDEO_INFO_X +
2071 (uchar *) info + space,
2074 video_drawstring(VIDEO_INFO_X,
2084 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
2088 static int cfb_fb_is_in_dram(void)
2091 #if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
2092 defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
2096 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
2097 start = bd->bi_dram[i].start;
2098 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
2099 if ((ulong)video_fb_address >= start &&
2100 (ulong)video_fb_address < end)
2104 if ((ulong)video_fb_address >= bd->bi_memstart &&
2105 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
2111 void video_clear(void)
2113 if (!video_fb_address)
2115 #ifdef VIDEO_HW_RECTFILL
2116 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2119 VIDEO_VISIBLE_COLS, /* frame width */
2120 VIDEO_VISIBLE_ROWS, /* frame height */
2121 bgx /* fill color */
2124 memsetl(video_fb_address,
2125 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2129 static int video_init(void)
2131 unsigned char color8;
2133 pGD = video_hw_init();
2137 video_fb_address = (void *) VIDEO_FB_ADRS;
2138 #ifdef CONFIG_VIDEO_HW_CURSOR
2139 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
2142 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2144 /* Init drawing pats */
2145 switch (VIDEO_DATA_FORMAT) {
2146 case GDF__8BIT_INDEX:
2147 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
2149 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
2154 case GDF__8BIT_332RGB:
2155 color8 = ((CONSOLE_FG_COL & 0xe0) |
2156 ((CONSOLE_FG_COL >> 3) & 0x1c) |
2157 CONSOLE_FG_COL >> 6);
2158 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2160 color8 = ((CONSOLE_BG_COL & 0xe0) |
2161 ((CONSOLE_BG_COL >> 3) & 0x1c) |
2162 CONSOLE_BG_COL >> 6);
2163 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2166 case GDF_15BIT_555RGB:
2167 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
2168 ((CONSOLE_FG_COL >> 3) << 21) |
2169 ((CONSOLE_FG_COL >> 3) << 16) |
2170 ((CONSOLE_FG_COL >> 3) << 10) |
2171 ((CONSOLE_FG_COL >> 3) << 5) |
2172 (CONSOLE_FG_COL >> 3));
2173 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
2174 ((CONSOLE_BG_COL >> 3) << 21) |
2175 ((CONSOLE_BG_COL >> 3) << 16) |
2176 ((CONSOLE_BG_COL >> 3) << 10) |
2177 ((CONSOLE_BG_COL >> 3) << 5) |
2178 (CONSOLE_BG_COL >> 3));
2180 case GDF_16BIT_565RGB:
2181 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
2182 ((CONSOLE_FG_COL >> 2) << 21) |
2183 ((CONSOLE_FG_COL >> 3) << 16) |
2184 ((CONSOLE_FG_COL >> 3) << 11) |
2185 ((CONSOLE_FG_COL >> 2) << 5) |
2186 (CONSOLE_FG_COL >> 3));
2187 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
2188 ((CONSOLE_BG_COL >> 2) << 21) |
2189 ((CONSOLE_BG_COL >> 3) << 16) |
2190 ((CONSOLE_BG_COL >> 3) << 11) |
2191 ((CONSOLE_BG_COL >> 2) << 5) |
2192 (CONSOLE_BG_COL >> 3));
2194 case GDF_32BIT_X888RGB:
2195 fgx = (CONSOLE_FG_COL << 16) |
2196 (CONSOLE_FG_COL << 8) |
2198 bgx = (CONSOLE_BG_COL << 16) |
2199 (CONSOLE_BG_COL << 8) |
2202 case GDF_24BIT_888RGB:
2203 fgx = (CONSOLE_FG_COL << 24) |
2204 (CONSOLE_FG_COL << 16) |
2205 (CONSOLE_FG_COL << 8) |
2207 bgx = (CONSOLE_BG_COL << 24) |
2208 (CONSOLE_BG_COL << 16) |
2209 (CONSOLE_BG_COL << 8) |
2217 #ifdef CONFIG_VIDEO_LOGO
2218 /* Plot the logo and get start point of console */
2219 debug("Video: Drawing the logo ...\n");
2220 video_console_address = video_logo();
2222 video_console_address = video_fb_address;
2225 /* Initialize the console */
2229 if (cfb_do_flush_cache)
2230 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2236 * Implement a weak default function for boards that optionally
2237 * need to skip the video initialization.
2239 __weak int board_video_skip(void)
2241 /* As default, don't skip test */
2245 int drv_video_init(void)
2248 struct stdio_dev console_dev;
2250 /* Check if video initialization should be skipped */
2251 if (board_video_skip())
2254 /* Init video chip - returns with framebuffer cleared */
2255 skip_dev_init = (video_init() == -1);
2257 if (board_cfb_skip())
2260 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2261 debug("KBD: Keyboard init ...\n");
2262 skip_dev_init |= (VIDEO_KBD_INIT_FCT == -1);
2268 /* Init vga device */
2269 memset(&console_dev, 0, sizeof(console_dev));
2270 strcpy(console_dev.name, "vga");
2271 console_dev.ext = DEV_EXT_VIDEO; /* Video extensions */
2272 console_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_SYSTEM;
2273 console_dev.putc = video_putc; /* 'putc' function */
2274 console_dev.puts = video_puts; /* 'puts' function */
2276 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2277 /* Also init console device */
2278 console_dev.flags |= DEV_FLAGS_INPUT;
2279 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2280 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
2281 #endif /* CONFIG_VGA_AS_SINGLE_DEVICE */
2283 if (stdio_register(&console_dev) != 0)
2286 /* Return success */
2290 void video_position_cursor(unsigned col, unsigned row)
2292 console_col = min(col, CONSOLE_COLS - 1);
2293 console_row = min(row, CONSOLE_ROWS - 1);
2296 int video_get_pixel_width(void)
2298 return VIDEO_VISIBLE_COLS;
2301 int video_get_pixel_height(void)
2303 return VIDEO_VISIBLE_ROWS;
2306 int video_get_screen_rows(void)
2308 return CONSOLE_ROWS;
2311 int video_get_screen_columns(void)
2313 return CONSOLE_COLS;