2 * (C) Copyright 2002 ELTEC Elektronik AG
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 a keyboard interface for character input
19 * but this is deprecated. Only rk51 uses it.
21 * Character output goes to a memory-mapped video
22 * framebuffer with little or big-endian organisation.
23 * With environment setting 'console=serial' the console i/o can be
24 * forced to serial port.
26 * The driver uses graphic specific defines/parameters/functions:
28 * (for SMI LynxE graphic chip)
30 * CONFIG_VIDEO_SMI_LYNXEM - use graphic driver for SMI 710,712,810
31 * VIDEO_FB_LITTLE_ENDIAN - framebuffer organisation default: big endian
32 * VIDEO_HW_RECTFILL - graphic driver supports hardware rectangle fill
33 * VIDEO_HW_BITBLT - graphic driver supports hardware bit blt
35 * Console Parameters are set by graphic drivers global struct:
37 * VIDEO_VISIBLE_COLS - x resolution
38 * VIDEO_VISIBLE_ROWS - y resolution
39 * VIDEO_PIXEL_SIZE - storage size in byte per pixel
40 * VIDEO_DATA_FORMAT - graphical data format GDF
41 * VIDEO_FB_ADRS - start of video memory
43 * VIDEO_KBD_INIT_FCT - init function for keyboard
44 * VIDEO_TSTC_FCT - keyboard_tstc function
45 * VIDEO_GETC_FCT - keyboard_getc function
47 * CONFIG_VIDEO_LOGO - display Linux Logo in upper left corner.
48 * Use CONFIG_SPLASH_SCREEN_ALIGN with
49 * environment variable "splashpos" to place
50 * the logo on other position. In this case
51 * no CONSOLE_EXTRA_INFO is possible.
52 * CONFIG_VIDEO_BMP_LOGO - use bmp_logo instead of linux_logo
53 * CONFIG_CONSOLE_EXTRA_INFO - display additional board information
54 * strings that normaly goes to serial
55 * port. This define requires a board
57 * video_drawstring (VIDEO_INFO_X,
58 * VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
60 * that fills a info buffer at i=row.
61 * s.a: board/eltec/bab7xx.
62 * CONFIG_VGA_AS_SINGLE_DEVICE - If set the framebuffer device will be
63 * initialized as an output only device.
64 * The Keyboard driver will not be
65 * set-up. This may be used, if you have
66 * no or more than one Keyboard devices
67 * (USB Keyboard, AT Keyboard).
69 * CONFIG_VIDEO_SW_CURSOR: - Draws a cursor after the last
70 * character. No blinking is provided.
71 * Uses the macros CURSOR_SET and
74 * CONFIG_VIDEO_HW_CURSOR: - Uses the hardware cursor capability
75 * of the graphic chip. Uses the macro
76 * CURSOR_SET. ATTENTION: If booting an
77 * OS, the display driver must disable
78 * the hardware register of the graphic
79 * chip. Otherwise a blinking field is
87 #include <linux/compiler.h>
90 * Console device defines with SMI graphic
91 * Any other graphic must change this section
94 #ifdef CONFIG_VIDEO_SMI_LYNXEM
96 #define VIDEO_FB_LITTLE_ENDIAN
97 #define VIDEO_HW_RECTFILL
98 #define VIDEO_HW_BITBLT
102 * Defines for the CT69000 driver
104 #ifdef CONFIG_VIDEO_CT69000
106 #define VIDEO_FB_LITTLE_ENDIAN
107 #define VIDEO_HW_RECTFILL
108 #define VIDEO_HW_BITBLT
112 * Defines for the SED13806 driver
114 #ifdef CONFIG_VIDEO_SED13806
115 #define VIDEO_FB_LITTLE_ENDIAN
116 #define VIDEO_HW_RECTFILL
117 #define VIDEO_HW_BITBLT
120 #ifdef CONFIG_VIDEO_MXS
121 #define VIDEO_FB_16BPP_WORD_SWAP
125 * Defines for the MB862xx driver
127 #ifdef CONFIG_VIDEO_MB862xx
129 #ifdef CONFIG_VIDEO_CORALP
130 #define VIDEO_FB_LITTLE_ENDIAN
132 #ifdef CONFIG_VIDEO_MB862xx_ACCEL
133 #define VIDEO_HW_RECTFILL
134 #define VIDEO_HW_BITBLT
139 * Defines for the i.MX31 driver (mx3fb.c)
141 #if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
142 #define VIDEO_FB_16BPP_WORD_SWAP
146 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
148 #include <video_fb.h>
155 #define VIDEO_VISIBLE_COLS (pGD->winSizeX)
156 #define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
157 #define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
158 #define VIDEO_DATA_FORMAT (pGD->gdfIndex)
159 #define VIDEO_FB_ADRS (pGD->frameAdrs)
166 #include <linux/types.h>
167 #include <stdio_dev.h>
168 #include <video_font.h>
170 #if defined(CONFIG_CMD_DATE)
174 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
175 #include <watchdog.h>
176 #include <bmp_layout.h>
182 * CONFIG_VIDEO_SW_CURSOR: Draws a cursor after the last character. No
183 * blinking is provided. Uses the macros CURSOR_SET
185 * CONFIG_VIDEO_HW_CURSOR: Uses the hardware cursor capability of the
186 * graphic chip. Uses the macro CURSOR_SET.
187 * ATTENTION: If booting an OS, the display driver
188 * must disable the hardware register of the graphic
189 * chip. Otherwise a blinking field is displayed
191 #if !defined(CONFIG_VIDEO_SW_CURSOR) && !defined(CONFIG_VIDEO_HW_CURSOR)
192 /* no Cursor defined */
198 #if defined(CONFIG_VIDEO_SW_CURSOR)
199 #if defined(CONFIG_VIDEO_HW_CURSOR)
200 #error only one of CONFIG_VIDEO_SW_CURSOR or CONFIG_VIDEO_HW_CURSOR can be \
203 void console_cursor(int state);
205 #define CURSOR_ON console_cursor(1)
206 #define CURSOR_OFF console_cursor(0)
207 #define CURSOR_SET video_set_cursor()
208 #endif /* CONFIG_VIDEO_SW_CURSOR */
210 #ifdef CONFIG_VIDEO_HW_CURSOR
212 #error only one of CONFIG_VIDEO_SW_CURSOR or CONFIG_VIDEO_HW_CURSOR can be \
217 #define CURSOR_SET video_set_hw_cursor(console_col * VIDEO_FONT_WIDTH, \
218 (console_row * VIDEO_FONT_HEIGHT) + video_logo_height)
219 #endif /* CONFIG_VIDEO_HW_CURSOR */
221 #ifdef CONFIG_VIDEO_LOGO
222 #ifdef CONFIG_VIDEO_BMP_LOGO
223 #include <bmp_logo.h>
224 #include <bmp_logo_data.h>
225 #define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
226 #define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
227 #define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
228 #define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
230 #else /* CONFIG_VIDEO_BMP_LOGO */
231 #define LINUX_LOGO_WIDTH 80
232 #define LINUX_LOGO_HEIGHT 80
233 #define LINUX_LOGO_COLORS 214
234 #define LINUX_LOGO_LUT_OFFSET 0x20
236 #include <linux_logo.h>
237 #define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
238 #define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
239 #define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
240 #define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
241 #endif /* CONFIG_VIDEO_BMP_LOGO */
242 #define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
243 #define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
244 #else /* CONFIG_VIDEO_LOGO */
245 #define VIDEO_LOGO_WIDTH 0
246 #define VIDEO_LOGO_HEIGHT 0
247 #endif /* CONFIG_VIDEO_LOGO */
249 #define VIDEO_COLS VIDEO_VISIBLE_COLS
250 #define VIDEO_ROWS VIDEO_VISIBLE_ROWS
251 #ifndef VIDEO_LINE_LEN
252 #define VIDEO_LINE_LEN (VIDEO_COLS * VIDEO_PIXEL_SIZE)
254 #define VIDEO_SIZE (VIDEO_ROWS * VIDEO_LINE_LEN)
255 #define VIDEO_BURST_LEN (VIDEO_COLS/8)
257 #ifdef CONFIG_VIDEO_LOGO
258 #define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
260 #define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
263 #define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
264 #define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
265 #define CONSOLE_ROW_FIRST (video_console_address)
266 #define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
267 #define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
268 #define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
270 /* By default we scroll by a single line */
271 #ifndef CONFIG_CONSOLE_SCROLL_LINES
272 #define CONFIG_CONSOLE_SCROLL_LINES 1
276 #ifdef VIDEO_FB_LITTLE_ENDIAN
277 #define SWAP16(x) ((((x) & 0x00ff) << 8) | \
280 #define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
281 (((x) & 0x0000ff00) << 8) | \
282 (((x) & 0x00ff0000) >> 8) | \
283 (((x) & 0xff000000) >> 24) \
285 #define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
286 (((x) & 0x0000ff00) >> 8) | \
287 (((x) & 0x00ff0000) << 8) | \
288 (((x) & 0xff000000) >> 8) \
291 #define SWAP16(x) (x)
292 #define SWAP32(x) (x)
293 #if defined(VIDEO_FB_16BPP_WORD_SWAP)
294 #define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
296 #define SHORTSWAP32(x) (x)
300 #ifdef CONFIG_CONSOLE_EXTRA_INFO
302 * setup a board string: type, speed, etc.
304 * line_number: location to place info string beside logo
305 * info: buffer for info string
307 extern void video_get_info_str(int line_number, char *info);
310 DECLARE_GLOBAL_DATA_PTR;
313 static GraphicDevice *pGD; /* Pointer to Graphic array */
315 static void *video_fb_address; /* frame buffer address */
316 static void *video_console_address; /* console buffer start address */
318 static int video_logo_height = VIDEO_LOGO_HEIGHT;
320 static int __maybe_unused cursor_state;
321 static int __maybe_unused old_col;
322 static int __maybe_unused old_row;
324 static int console_col; /* cursor col */
325 static int console_row; /* cursor row */
327 static u32 eorx, fgx, bgx; /* color pats */
329 static int cfb_do_flush_cache;
331 #ifdef CONFIG_CFB_CONSOLE_ANSI
332 static char ansi_buf[10];
333 static int ansi_buf_size;
334 static int ansi_colors_need_revert;
335 static int ansi_cursor_hidden;
338 static const int video_font_draw_table8[] = {
339 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
340 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
341 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
342 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
345 static const int video_font_draw_table15[] = {
346 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
349 static const int video_font_draw_table16[] = {
350 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
353 static const int video_font_draw_table24[16][3] = {
354 {0x00000000, 0x00000000, 0x00000000},
355 {0x00000000, 0x00000000, 0x00ffffff},
356 {0x00000000, 0x0000ffff, 0xff000000},
357 {0x00000000, 0x0000ffff, 0xffffffff},
358 {0x000000ff, 0xffff0000, 0x00000000},
359 {0x000000ff, 0xffff0000, 0x00ffffff},
360 {0x000000ff, 0xffffffff, 0xff000000},
361 {0x000000ff, 0xffffffff, 0xffffffff},
362 {0xffffff00, 0x00000000, 0x00000000},
363 {0xffffff00, 0x00000000, 0x00ffffff},
364 {0xffffff00, 0x0000ffff, 0xff000000},
365 {0xffffff00, 0x0000ffff, 0xffffffff},
366 {0xffffffff, 0xffff0000, 0x00000000},
367 {0xffffffff, 0xffff0000, 0x00ffffff},
368 {0xffffffff, 0xffffffff, 0xff000000},
369 {0xffffffff, 0xffffffff, 0xffffffff}
372 static const int video_font_draw_table32[16][4] = {
373 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
374 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
375 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
376 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
377 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
378 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
379 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
380 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
381 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
382 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
383 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
384 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
385 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
386 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
387 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
388 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
392 * Implement a weak default function for boards that optionally
393 * need to skip the cfb initialization.
395 __weak int board_cfb_skip(void)
397 /* As default, don't skip cfb init */
401 static void video_drawchars(int xx, int yy, unsigned char *s, int count)
403 u8 *cdat, *dest, *dest0;
406 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
407 dest0 = video_fb_address + offset;
409 switch (VIDEO_DATA_FORMAT) {
410 case GDF__8BIT_INDEX:
411 case GDF__8BIT_332RGB:
414 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
415 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
416 rows--; dest += VIDEO_LINE_LEN) {
420 (video_font_draw_table8[bits >> 4] &
423 if (VIDEO_FONT_WIDTH == 4)
427 (video_font_draw_table8[bits & 15] &
430 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
435 case GDF_15BIT_555RGB:
438 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
439 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
440 rows--; dest += VIDEO_LINE_LEN) {
444 SHORTSWAP32((video_font_draw_table15
445 [bits >> 6] & eorx) ^
448 SHORTSWAP32((video_font_draw_table15
449 [bits >> 4 & 3] & eorx) ^
452 if (VIDEO_FONT_WIDTH == 4)
456 SHORTSWAP32((video_font_draw_table15
457 [bits >> 2 & 3] & eorx) ^
460 SHORTSWAP32((video_font_draw_table15
464 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
469 case GDF_16BIT_565RGB:
472 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
473 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
474 rows--; dest += VIDEO_LINE_LEN) {
478 SHORTSWAP32((video_font_draw_table16
479 [bits >> 6] & eorx) ^
482 SHORTSWAP32((video_font_draw_table16
483 [bits >> 4 & 3] & eorx) ^
486 if (VIDEO_FONT_WIDTH == 4)
490 SHORTSWAP32((video_font_draw_table16
491 [bits >> 2 & 3] & eorx) ^
494 SHORTSWAP32((video_font_draw_table16
498 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
503 case GDF_32BIT_X888RGB:
506 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
507 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
508 rows--; dest += VIDEO_LINE_LEN) {
512 SWAP32((video_font_draw_table32
513 [bits >> 4][0] & eorx) ^ bgx);
515 SWAP32((video_font_draw_table32
516 [bits >> 4][1] & eorx) ^ bgx);
518 SWAP32((video_font_draw_table32
519 [bits >> 4][2] & eorx) ^ bgx);
521 SWAP32((video_font_draw_table32
522 [bits >> 4][3] & eorx) ^ bgx);
525 if (VIDEO_FONT_WIDTH == 4)
529 SWAP32((video_font_draw_table32
530 [bits & 15][0] & eorx) ^ bgx);
532 SWAP32((video_font_draw_table32
533 [bits & 15][1] & eorx) ^ bgx);
535 SWAP32((video_font_draw_table32
536 [bits & 15][2] & eorx) ^ bgx);
538 SWAP32((video_font_draw_table32
539 [bits & 15][3] & eorx) ^ bgx);
541 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
546 case GDF_24BIT_888RGB:
549 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
550 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
551 rows--; dest += VIDEO_LINE_LEN) {
555 (video_font_draw_table24[bits >> 4][0]
558 (video_font_draw_table24[bits >> 4][1]
561 (video_font_draw_table24[bits >> 4][2]
564 if (VIDEO_FONT_WIDTH == 4)
568 (video_font_draw_table24[bits & 15][0]
571 (video_font_draw_table24[bits & 15][1]
574 (video_font_draw_table24[bits & 15][2]
577 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
584 static inline void video_drawstring(int xx, int yy, unsigned char *s)
586 video_drawchars(xx, yy, s, strlen((char *) s));
589 static void video_putchar(int xx, int yy, unsigned char c)
591 video_drawchars(xx, yy + video_logo_height, &c, 1);
594 #if defined(CONFIG_VIDEO_SW_CURSOR)
595 static void video_set_cursor(void)
602 static void video_invertchar(int xx, int yy)
604 int firstx = xx * VIDEO_PIXEL_SIZE;
605 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
606 int firsty = yy * VIDEO_LINE_LEN;
607 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
609 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
610 for (x = firstx; x < lastx; x++) {
611 u8 *dest = (u8 *)(video_fb_address) + x + y;
617 void console_cursor(int state)
619 if (cursor_state != state) {
621 /* turn off the cursor */
622 video_invertchar(old_col * VIDEO_FONT_WIDTH,
623 old_row * VIDEO_FONT_HEIGHT +
626 /* turn off the cursor and record where it is */
627 video_invertchar(console_col * VIDEO_FONT_WIDTH,
628 console_row * VIDEO_FONT_HEIGHT +
630 old_col = console_col;
631 old_row = console_row;
633 cursor_state = state;
635 if (cfb_do_flush_cache)
636 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
640 #ifndef VIDEO_HW_RECTFILL
641 static void memsetl(int *p, int c, int v)
648 #ifndef VIDEO_HW_BITBLT
649 static void memcpyl(int *d, int *s, int c)
656 static void console_clear_line(int line, int begin, int end)
658 #ifdef VIDEO_HW_RECTFILL
659 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
660 VIDEO_FONT_WIDTH * begin, /* dest pos x */
662 VIDEO_FONT_HEIGHT * line, /* dest pos y */
663 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
664 VIDEO_FONT_HEIGHT, /* frame height */
668 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
669 memsetl(CONSOLE_ROW_FIRST +
670 CONSOLE_ROW_SIZE * line, /* offset of row */
671 CONSOLE_ROW_SIZE >> 2, /* length of row */
678 offset = CONSOLE_ROW_FIRST +
679 CONSOLE_ROW_SIZE * line + /* offset of row */
681 VIDEO_PIXEL_SIZE * begin; /* offset of col */
682 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
683 size >>= 2; /* length to end for memsetl() */
684 /* fill at col offset of i'th line using bgx as fill color */
685 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
686 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
691 static void console_scrollup(void)
693 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
696 /* copy up rows ignoring the first one */
698 #ifdef VIDEO_HW_BITBLT
699 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
700 0, /* source pos x */
702 VIDEO_FONT_HEIGHT * rows, /* source pos y */
704 video_logo_height, /* dest pos y */
705 VIDEO_VISIBLE_COLS, /* frame width */
708 - VIDEO_FONT_HEIGHT * rows /* frame height */
711 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE,
712 (CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2);
714 /* clear the last one */
715 for (i = 1; i <= rows; i++)
716 console_clear_line(CONSOLE_ROWS - i, 0, CONSOLE_COLS - 1);
718 /* Decrement row number */
722 static void console_back(void)
726 if (console_col < 0) {
727 console_col = CONSOLE_COLS - 1;
734 #ifdef CONFIG_CFB_CONSOLE_ANSI
736 static void console_clear(void)
738 #ifdef VIDEO_HW_RECTFILL
739 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
741 video_logo_height, /* dest pos y */
742 VIDEO_VISIBLE_COLS, /* frame width */
743 VIDEO_VISIBLE_ROWS, /* frame height */
747 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
751 static void console_cursor_fix(void)
755 if (console_row >= CONSOLE_ROWS)
756 console_row = CONSOLE_ROWS - 1;
759 if (console_col >= CONSOLE_COLS)
760 console_col = CONSOLE_COLS - 1;
763 static void console_cursor_up(int n)
766 console_cursor_fix();
769 static void console_cursor_down(int n)
772 console_cursor_fix();
775 static void console_cursor_left(int n)
778 console_cursor_fix();
781 static void console_cursor_right(int n)
784 console_cursor_fix();
787 static void console_cursor_set_position(int row, int col)
789 if (console_row != -1)
791 if (console_col != -1)
793 console_cursor_fix();
796 static void console_previousline(int n)
798 /* FIXME: also scroll terminal ? */
800 console_cursor_fix();
803 static void console_swap_colors(void)
811 static inline int console_cursor_is_visible(void)
813 return !ansi_cursor_hidden;
816 static inline int console_cursor_is_visible(void)
822 static void console_newline(int n)
827 /* Check if we need to scroll the terminal */
828 if (console_row >= CONSOLE_ROWS) {
829 /* Scroll everything up */
834 static void console_cr(void)
839 static void parse_putc(const char c)
843 if (console_cursor_is_visible())
847 case 13: /* back to first column */
851 case '\n': /* next line */
852 if (console_col || (!console_col && nl))
858 console_col |= 0x0008;
859 console_col &= ~0x0007;
861 if (console_col >= CONSOLE_COLS)
865 case 8: /* backspace */
872 default: /* draw the char */
873 video_putchar(console_col * VIDEO_FONT_WIDTH,
874 console_row * VIDEO_FONT_HEIGHT, c);
877 /* check for newline */
878 if (console_col >= CONSOLE_COLS) {
884 if (console_cursor_is_visible())
888 static void video_putc(struct stdio_dev *dev, const char c)
890 #ifdef CONFIG_CFB_CONSOLE_ANSI
894 for (i = 0; i < ansi_buf_size; ++i)
895 parse_putc(ansi_buf[i]);
901 if (ansi_buf_size > 0) {
921 ansi_buf[ansi_buf_size++] = c;
923 if (ansi_buf_size >= sizeof(ansi_buf))
926 for (i = 0; i < ansi_buf_size; ++i) {
932 if (ansi_buf[i] == 27)
939 if (ansi_buf[i] == '[')
946 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
947 num1 = ansi_buf[i]-'0';
949 } else if (ansi_buf[i] != '?') {
957 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
959 num1 += ansi_buf[i]-'0';
967 if (ansi_buf[i] != ';') {
975 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
976 num2 = ansi_buf[i]-'0';
983 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
985 num2 += ansi_buf[i]-'0';
993 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
994 || ansi_buf[i] == 'J'
995 || ansi_buf[i] == 'K'
996 || ansi_buf[i] == 'h'
997 || ansi_buf[i] == 'l'
998 || ansi_buf[i] == 'm') {
1008 for (i = 0; i < ansi_buf_size; ++i)
1009 parse_putc(ansi_buf[i]);
1015 if (!ansi_cursor_hidden)
1020 /* move cursor num1 rows up */
1021 console_cursor_up(num1);
1024 /* move cursor num1 rows down */
1025 console_cursor_down(num1);
1028 /* move cursor num1 columns forward */
1029 console_cursor_right(num1);
1032 /* move cursor num1 columns back */
1033 console_cursor_left(num1);
1036 /* move cursor num1 rows up at begin of row */
1037 console_previousline(num1);
1040 /* move cursor num1 rows down at begin of row */
1041 console_newline(num1);
1044 /* move cursor to column num1 */
1045 console_cursor_set_position(-1, num1-1);
1048 /* move cursor to row num1, column num2 */
1049 console_cursor_set_position(num1-1, num2-1);
1052 /* clear console and move cursor to 0, 0 */
1054 console_cursor_set_position(0, 0);
1059 console_clear_line(console_row,
1063 console_clear_line(console_row,
1066 console_clear_line(console_row,
1070 ansi_cursor_hidden = 0;
1073 ansi_cursor_hidden = 1;
1076 if (num1 == 0) { /* reset swapped colors */
1077 if (ansi_colors_need_revert) {
1078 console_swap_colors();
1079 ansi_colors_need_revert = 0;
1081 } else if (num1 == 7) { /* once swap colors */
1082 if (!ansi_colors_need_revert) {
1083 console_swap_colors();
1084 ansi_colors_need_revert = 1;
1089 if (!ansi_cursor_hidden)
1098 if (cfb_do_flush_cache)
1099 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1102 static void video_puts(struct stdio_dev *dev, const char *s)
1104 int flush = cfb_do_flush_cache;
1105 int count = strlen(s);
1107 /* temporarily disable cache flush */
1108 cfb_do_flush_cache = 0;
1111 video_putc(dev, *s++);
1114 cfb_do_flush_cache = flush;
1115 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1120 * Do not enforce drivers (or board code) to provide empty
1121 * video_set_lut() if they do not support 8 bpp format.
1122 * Implement weak default function instead.
1124 __weak void video_set_lut(unsigned int index, unsigned char r,
1125 unsigned char g, unsigned char b)
1129 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
1131 #define FILL_8BIT_332RGB(r,g,b) { \
1132 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1136 #define FILL_15BIT_555RGB(r,g,b) { \
1137 *(unsigned short *)fb = \
1138 SWAP16((unsigned short)(((r>>3)<<10) | \
1144 #define FILL_16BIT_565RGB(r,g,b) { \
1145 *(unsigned short *)fb = \
1146 SWAP16((unsigned short)((((r)>>3)<<11)| \
1152 #define FILL_32BIT_X888RGB(r,g,b) { \
1153 *(unsigned long *)fb = \
1154 SWAP32((unsigned long)(((r<<16) | \
1160 #ifdef VIDEO_FB_LITTLE_ENDIAN
1161 #define FILL_24BIT_888RGB(r,g,b) { \
1168 #define FILL_24BIT_888RGB(r,g,b) { \
1176 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1177 static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
1179 ushort *dst = (ushort *) fb;
1180 ushort color = (ushort) (((r >> 3) << 10) |
1191 * RLE8 bitmap support
1194 #ifdef CONFIG_VIDEO_BMP_RLE8
1195 /* Pre-calculated color table entry */
1198 unsigned short w; /* word */
1199 unsigned int dw; /* double word */
1200 } ce; /* color entry */
1204 * Helper to draw encoded/unencoded run.
1206 static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1209 ulong addr = (ulong) *fb;
1215 * Setup offset of the color index in the bitmap.
1216 * Color index of encoded run is at offset 1.
1218 off = enc ? &enc_off : &i;
1220 switch (VIDEO_DATA_FORMAT) {
1221 case GDF__8BIT_INDEX:
1222 for (i = 0; i < cnt; i++)
1223 *(unsigned char *) addr++ = bm[*off];
1225 case GDF_15BIT_555RGB:
1226 case GDF_16BIT_565RGB:
1227 /* differences handled while pre-calculating palette */
1228 for (i = 0; i < cnt; i++) {
1229 *(unsigned short *) addr = p[bm[*off]].ce.w;
1233 case GDF_32BIT_X888RGB:
1234 for (i = 0; i < cnt; i++) {
1235 *(unsigned long *) addr = p[bm[*off]].ce.dw;
1240 *fb = (uchar *) addr; /* return modified address */
1243 static int display_rle8_bitmap(struct bmp_image *img, int xoff, int yoff,
1244 int width, int height)
1248 unsigned int cnt, runlen;
1250 int x, y, bpp, i, ncolors;
1251 struct palette p[256];
1252 struct bmp_color_table_entry cte;
1253 int green_shift, red_off;
1254 int limit = (VIDEO_LINE_LEN / VIDEO_PIXEL_SIZE) * VIDEO_ROWS;
1258 y = __le32_to_cpu(img->header.height) - 1;
1259 ncolors = __le32_to_cpu(img->header.colors_used);
1260 bpp = VIDEO_PIXEL_SIZE;
1261 fbp = (unsigned char *) ((unsigned int) video_fb_address +
1262 (y + yoff) * VIDEO_LINE_LEN +
1265 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
1267 /* pre-calculate and setup palette */
1268 switch (VIDEO_DATA_FORMAT) {
1269 case GDF__8BIT_INDEX:
1270 for (i = 0; i < ncolors; i++) {
1271 cte = img->color_table[i];
1272 video_set_lut(i, cte.red, cte.green, cte.blue);
1275 case GDF_15BIT_555RGB:
1276 case GDF_16BIT_565RGB:
1277 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1284 for (i = 0; i < ncolors; i++) {
1285 cte = img->color_table[i];
1286 p[i].ce.w = SWAP16((unsigned short)
1287 (((cte.red >> 3) << red_off) |
1288 ((cte.green >> green_shift) << 5) |
1292 case GDF_32BIT_X888RGB:
1293 for (i = 0; i < ncolors; i++) {
1294 cte = img->color_table[i];
1295 p[i].ce.dw = SWAP32((cte.red << 16) |
1301 printf("RLE Bitmap unsupported in video mode 0x%x\n",
1311 /* scan line end marker */
1315 fbp = (unsigned char *)
1316 ((unsigned int) video_fb_address +
1317 (y + yoff) * VIDEO_LINE_LEN +
1321 /* end of bitmap data marker */
1325 /* run offset marker */
1328 fbp = (unsigned char *)
1329 ((unsigned int) video_fb_address +
1330 (y + yoff) * VIDEO_LINE_LEN +
1348 if (x + runlen > width)
1350 draw_bitmap(&fbp, bm, p, cnt, 0);
1356 bm++; /* 0 padding if length is odd */
1367 if (y < height) { /* only draw into visible area */
1373 if (x + runlen > width)
1375 draw_bitmap(&fbp, bm, p, cnt, 1);
1384 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1390 * Display the BMP file located at address bmp_image.
1392 int video_display_bitmap(ulong bmp_image, int x, int y)
1394 ushort xcount, ycount;
1396 struct bmp_image *bmp = (struct bmp_image *)bmp_image;
1399 unsigned long width, height, bpp;
1401 unsigned long compression;
1402 struct bmp_color_table_entry cte;
1404 #ifdef CONFIG_VIDEO_BMP_GZIP
1405 unsigned char *dst = NULL;
1411 if (!((bmp->header.signature[0] == 'B') &&
1412 (bmp->header.signature[1] == 'M'))) {
1414 #ifdef CONFIG_VIDEO_BMP_GZIP
1416 * Could be a gzipped bmp image, try to decrompress...
1418 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1419 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
1421 printf("Error: malloc in gunzip failed!\n");
1425 * NB: we need to force offset of +2
1426 * See doc/README.displaying-bmps
1428 if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
1429 (uchar *) bmp_image,
1431 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1436 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
1437 printf("Image could be truncated "
1438 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
1442 * Set addr to decompressed image
1444 bmp = (struct bmp_image *)(dst+2);
1446 if (!((bmp->header.signature[0] == 'B') &&
1447 (bmp->header.signature[1] == 'M'))) {
1448 printf("Error: no valid bmp.gz image at %lx\n",
1454 printf("Error: no valid bmp image at %lx\n", bmp_image);
1456 #endif /* CONFIG_VIDEO_BMP_GZIP */
1459 width = le32_to_cpu(bmp->header.width);
1460 height = le32_to_cpu(bmp->header.height);
1461 bpp = le16_to_cpu(bmp->header.bit_count);
1462 colors = le32_to_cpu(bmp->header.colors_used);
1463 compression = le32_to_cpu(bmp->header.compression);
1465 debug("Display-bmp: %ld x %ld with %d colors\n",
1466 width, height, colors);
1468 if (compression != BMP_BI_RGB
1469 #ifdef CONFIG_VIDEO_BMP_RLE8
1470 && compression != BMP_BI_RLE8
1473 printf("Error: compression type %ld not supported\n",
1475 #ifdef CONFIG_VIDEO_BMP_GZIP
1482 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1484 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1485 if (x == BMP_ALIGN_CENTER)
1486 x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
1488 x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
1490 if (y == BMP_ALIGN_CENTER)
1491 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
1493 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
1494 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1497 * Just ignore elements which are completely beyond screen
1500 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1503 if ((x + width) > VIDEO_VISIBLE_COLS)
1504 width = VIDEO_VISIBLE_COLS - x;
1505 if ((y + height) > VIDEO_VISIBLE_ROWS)
1506 height = VIDEO_VISIBLE_ROWS - y;
1508 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
1509 fb = (uchar *) (video_fb_address +
1510 ((y + height - 1) * VIDEO_LINE_LEN) +
1511 x * VIDEO_PIXEL_SIZE);
1513 #ifdef CONFIG_VIDEO_BMP_RLE8
1514 if (compression == BMP_BI_RLE8) {
1515 return display_rle8_bitmap(bmp, x, y, width, height);
1519 /* We handle only 4, 8, or 24 bpp bitmaps */
1520 switch (le16_to_cpu(bmp->header.bit_count)) {
1522 padded_line -= width / 2;
1525 switch (VIDEO_DATA_FORMAT) {
1526 case GDF_32BIT_X888RGB:
1530 * Don't assume that 'width' is an
1533 for (xcount = 0; xcount < width; xcount++) {
1541 cte = bmp->color_table[idx];
1542 FILL_32BIT_X888RGB(cte.red, cte.green,
1545 bmap += padded_line;
1546 fb -= VIDEO_LINE_LEN + width *
1551 puts("4bpp bitmap unsupported with current "
1558 padded_line -= width;
1559 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1561 for (xcount = 0; xcount < colors; ++xcount) {
1562 cte = bmp->color_table[xcount];
1563 video_set_lut(xcount, cte.red, cte.green,
1568 switch (VIDEO_DATA_FORMAT) {
1569 case GDF__8BIT_INDEX:
1576 bmap += padded_line;
1577 fb -= VIDEO_LINE_LEN + width *
1581 case GDF__8BIT_332RGB:
1586 cte = bmp->color_table[*bmap++];
1587 FILL_8BIT_332RGB(cte.red, cte.green,
1590 bmap += padded_line;
1591 fb -= VIDEO_LINE_LEN + width *
1595 case GDF_15BIT_555RGB:
1597 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1603 cte = bmp->color_table[*bmap++];
1604 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1605 fill_555rgb_pswap(fb, xpos++, cte.red,
1610 FILL_15BIT_555RGB(cte.red, cte.green,
1614 bmap += padded_line;
1615 fb -= VIDEO_LINE_LEN + width *
1619 case GDF_16BIT_565RGB:
1624 cte = bmp->color_table[*bmap++];
1625 FILL_16BIT_565RGB(cte.red, cte.green,
1628 bmap += padded_line;
1629 fb -= VIDEO_LINE_LEN + width *
1633 case GDF_32BIT_X888RGB:
1638 cte = bmp->color_table[*bmap++];
1639 FILL_32BIT_X888RGB(cte.red, cte.green,
1642 bmap += padded_line;
1643 fb -= VIDEO_LINE_LEN + width *
1647 case GDF_24BIT_888RGB:
1652 cte = bmp->color_table[*bmap++];
1653 FILL_24BIT_888RGB(cte.red, cte.green,
1656 bmap += padded_line;
1657 fb -= VIDEO_LINE_LEN + width *
1664 padded_line -= 3 * width;
1666 switch (VIDEO_DATA_FORMAT) {
1667 case GDF__8BIT_332RGB:
1672 FILL_8BIT_332RGB(bmap[2], bmap[1],
1676 bmap += padded_line;
1677 fb -= VIDEO_LINE_LEN + width *
1681 case GDF_15BIT_555RGB:
1683 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1689 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1690 fill_555rgb_pswap(fb, xpos++, bmap[2],
1694 FILL_15BIT_555RGB(bmap[2], bmap[1],
1699 bmap += padded_line;
1700 fb -= VIDEO_LINE_LEN + width *
1704 case GDF_16BIT_565RGB:
1709 FILL_16BIT_565RGB(bmap[2], bmap[1],
1713 bmap += padded_line;
1714 fb -= VIDEO_LINE_LEN + width *
1718 case GDF_32BIT_X888RGB:
1723 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1727 bmap += padded_line;
1728 fb -= VIDEO_LINE_LEN + width *
1732 case GDF_24BIT_888RGB:
1737 FILL_24BIT_888RGB(bmap[2], bmap[1],
1741 bmap += padded_line;
1742 fb -= VIDEO_LINE_LEN + width *
1747 printf("Error: 24 bits/pixel bitmap incompatible "
1748 "with current video mode\n");
1753 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1754 le16_to_cpu(bmp->header.bit_count));
1758 #ifdef CONFIG_VIDEO_BMP_GZIP
1764 if (cfb_do_flush_cache)
1765 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1771 #ifdef CONFIG_VIDEO_LOGO
1772 static int video_logo_xpos;
1773 static int video_logo_ypos;
1775 static void plot_logo_or_black(void *screen, int x, int y, int black);
1777 static void logo_plot(void *screen, int x, int y)
1779 plot_logo_or_black(screen, x, y, 0);
1782 static void logo_black(void)
1784 plot_logo_or_black(video_fb_address, video_logo_xpos, video_logo_ypos,
1788 static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1791 return cmd_usage(cmdtp);
1798 clrlogo, 1, 0, do_clrlogo,
1799 "fill the boot logo area with black",
1803 static void plot_logo_or_black(void *screen, int x, int y, int black)
1807 int skip = VIDEO_LINE_LEN - VIDEO_LOGO_WIDTH * VIDEO_PIXEL_SIZE;
1808 int ycount = video_logo_height;
1809 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1810 unsigned char *source;
1811 unsigned char *dest;
1813 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1814 if (x == BMP_ALIGN_CENTER)
1815 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1817 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1));
1819 if (y == BMP_ALIGN_CENTER)
1820 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1822 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1));
1823 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1825 dest = (unsigned char *)screen + y * VIDEO_LINE_LEN + x * VIDEO_PIXEL_SIZE;
1827 #ifdef CONFIG_VIDEO_BMP_LOGO
1828 source = bmp_logo_bitmap;
1830 /* Allocate temporary space for computing colormap */
1831 logo_red = malloc(BMP_LOGO_COLORS);
1832 logo_green = malloc(BMP_LOGO_COLORS);
1833 logo_blue = malloc(BMP_LOGO_COLORS);
1834 /* Compute color map */
1835 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1836 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1837 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1838 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1841 source = linux_logo;
1842 logo_red = linux_logo_red;
1843 logo_green = linux_logo_green;
1844 logo_blue = linux_logo_blue;
1847 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1848 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1849 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1850 logo_red[i], logo_green[i],
1856 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1859 xcount = VIDEO_LOGO_WIDTH;
1866 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1867 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1868 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1871 switch (VIDEO_DATA_FORMAT) {
1872 case GDF__8BIT_INDEX:
1875 case GDF__8BIT_332RGB:
1876 *dest = ((r >> 5) << 5) |
1880 case GDF_15BIT_555RGB:
1881 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1882 fill_555rgb_pswap(dest, xpos++, r, g, b);
1884 *(unsigned short *) dest =
1885 SWAP16((unsigned short) (
1891 case GDF_16BIT_565RGB:
1892 *(unsigned short *) dest =
1893 SWAP16((unsigned short) (
1898 case GDF_32BIT_X888RGB:
1899 *(unsigned long *) dest =
1900 SWAP32((unsigned long) (
1905 case GDF_24BIT_888RGB:
1906 #ifdef VIDEO_FB_LITTLE_ENDIAN
1918 dest += VIDEO_PIXEL_SIZE;
1922 #ifdef CONFIG_VIDEO_BMP_LOGO
1929 static void *video_logo(void)
1933 __maybe_unused int y_off = 0;
1934 __maybe_unused ulong addr;
1935 __maybe_unused char *s;
1937 splash_get_pos(&video_logo_xpos, &video_logo_ypos);
1939 #ifdef CONFIG_SPLASH_SCREEN
1940 s = getenv("splashimage");
1942 splash_screen_prepare();
1943 addr = simple_strtoul(s, NULL, 16);
1945 if (video_display_bitmap(addr,
1947 video_logo_ypos) == 0) {
1948 video_logo_height = 0;
1949 return ((void *) (video_fb_address));
1952 #endif /* CONFIG_SPLASH_SCREEN */
1954 logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
1956 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1958 * when using splashpos for video_logo, skip any info
1959 * output on video console if the logo is not at 0,0
1961 if (video_logo_xpos || video_logo_ypos) {
1963 * video_logo_height is used in text and cursor offset
1964 * calculations. Since the console is below the logo,
1965 * we need to adjust the logo height
1967 if (video_logo_ypos == BMP_ALIGN_CENTER)
1968 video_logo_height += max(0, (int)(VIDEO_VISIBLE_ROWS -
1969 VIDEO_LOGO_HEIGHT) / 2);
1970 else if (video_logo_ypos > 0)
1971 video_logo_height += video_logo_ypos;
1973 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
1976 if (board_cfb_skip())
1979 sprintf(info, " %s", version_string);
1981 space = (VIDEO_LINE_LEN / 2 - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
1985 video_drawchars(VIDEO_INFO_X, VIDEO_INFO_Y,
1986 (uchar *) info, space);
1987 video_drawchars(VIDEO_INFO_X + VIDEO_FONT_WIDTH,
1988 VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,
1989 (uchar *) info + space, len - space);
1992 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
1994 #ifdef CONFIG_CONSOLE_EXTRA_INFO
1997 ((video_logo_height -
1998 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
2000 for (i = 1; i < n; i++) {
2001 video_get_info_str(i, info);
2007 video_drawchars(VIDEO_INFO_X,
2011 (uchar *) info, space);
2013 video_drawchars(VIDEO_INFO_X +
2018 (uchar *) info + space,
2021 video_drawstring(VIDEO_INFO_X,
2031 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
2035 static int cfb_fb_is_in_dram(void)
2038 #if defined(CONFIG_ARM) || defined(CONFIG_AVR32) || defined(COFNIG_NDS32) || \
2039 defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
2043 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
2044 start = bd->bi_dram[i].start;
2045 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
2046 if ((ulong)video_fb_address >= start &&
2047 (ulong)video_fb_address < end)
2051 if ((ulong)video_fb_address >= bd->bi_memstart &&
2052 (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
2058 void video_clear(void)
2060 if (!video_fb_address)
2062 #ifdef VIDEO_HW_RECTFILL
2063 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2066 VIDEO_VISIBLE_COLS, /* frame width */
2067 VIDEO_VISIBLE_ROWS, /* frame height */
2068 bgx /* fill color */
2071 memsetl(video_fb_address,
2072 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2076 static int video_init(void)
2078 unsigned char color8;
2080 pGD = video_hw_init();
2084 video_fb_address = (void *) VIDEO_FB_ADRS;
2085 #ifdef CONFIG_VIDEO_HW_CURSOR
2086 video_init_hw_cursor(VIDEO_FONT_WIDTH, VIDEO_FONT_HEIGHT);
2089 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2091 /* Init drawing pats */
2092 switch (VIDEO_DATA_FORMAT) {
2093 case GDF__8BIT_INDEX:
2094 video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
2096 video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
2101 case GDF__8BIT_332RGB:
2102 color8 = ((CONSOLE_FG_COL & 0xe0) |
2103 ((CONSOLE_FG_COL >> 3) & 0x1c) |
2104 CONSOLE_FG_COL >> 6);
2105 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2107 color8 = ((CONSOLE_BG_COL & 0xe0) |
2108 ((CONSOLE_BG_COL >> 3) & 0x1c) |
2109 CONSOLE_BG_COL >> 6);
2110 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2113 case GDF_15BIT_555RGB:
2114 fgx = (((CONSOLE_FG_COL >> 3) << 26) |
2115 ((CONSOLE_FG_COL >> 3) << 21) |
2116 ((CONSOLE_FG_COL >> 3) << 16) |
2117 ((CONSOLE_FG_COL >> 3) << 10) |
2118 ((CONSOLE_FG_COL >> 3) << 5) |
2119 (CONSOLE_FG_COL >> 3));
2120 bgx = (((CONSOLE_BG_COL >> 3) << 26) |
2121 ((CONSOLE_BG_COL >> 3) << 21) |
2122 ((CONSOLE_BG_COL >> 3) << 16) |
2123 ((CONSOLE_BG_COL >> 3) << 10) |
2124 ((CONSOLE_BG_COL >> 3) << 5) |
2125 (CONSOLE_BG_COL >> 3));
2127 case GDF_16BIT_565RGB:
2128 fgx = (((CONSOLE_FG_COL >> 3) << 27) |
2129 ((CONSOLE_FG_COL >> 2) << 21) |
2130 ((CONSOLE_FG_COL >> 3) << 16) |
2131 ((CONSOLE_FG_COL >> 3) << 11) |
2132 ((CONSOLE_FG_COL >> 2) << 5) |
2133 (CONSOLE_FG_COL >> 3));
2134 bgx = (((CONSOLE_BG_COL >> 3) << 27) |
2135 ((CONSOLE_BG_COL >> 2) << 21) |
2136 ((CONSOLE_BG_COL >> 3) << 16) |
2137 ((CONSOLE_BG_COL >> 3) << 11) |
2138 ((CONSOLE_BG_COL >> 2) << 5) |
2139 (CONSOLE_BG_COL >> 3));
2141 case GDF_32BIT_X888RGB:
2142 fgx = (CONSOLE_FG_COL << 16) |
2143 (CONSOLE_FG_COL << 8) |
2145 bgx = (CONSOLE_BG_COL << 16) |
2146 (CONSOLE_BG_COL << 8) |
2149 case GDF_24BIT_888RGB:
2150 fgx = (CONSOLE_FG_COL << 24) |
2151 (CONSOLE_FG_COL << 16) |
2152 (CONSOLE_FG_COL << 8) |
2154 bgx = (CONSOLE_BG_COL << 24) |
2155 (CONSOLE_BG_COL << 16) |
2156 (CONSOLE_BG_COL << 8) |
2164 #ifdef CONFIG_VIDEO_LOGO
2165 /* Plot the logo and get start point of console */
2166 debug("Video: Drawing the logo ...\n");
2167 video_console_address = video_logo();
2169 video_console_address = video_fb_address;
2172 /* Initialize the console */
2176 if (cfb_do_flush_cache)
2177 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2183 * Implement a weak default function for boards that optionally
2184 * need to skip the video initialization.
2186 __weak int board_video_skip(void)
2188 /* As default, don't skip test */
2192 int drv_video_init(void)
2194 struct stdio_dev console_dev;
2196 bool __maybe_unused keyboard_ok = false;
2198 /* Check if video initialization should be skipped */
2199 if (board_video_skip())
2202 /* Init video chip - returns with framebuffer cleared */
2203 if (video_init() == -1)
2206 if (board_cfb_skip())
2209 #if defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2210 have_keyboard = false;
2211 #elif defined(CONFIG_OF_CONTROL)
2212 have_keyboard = !fdtdec_get_config_bool(gd->fdt_blob,
2213 "u-boot,no-keyboard");
2215 have_keyboard = true;
2217 if (have_keyboard) {
2218 debug("KBD: Keyboard init ...\n");
2219 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2220 keyboard_ok = !(VIDEO_KBD_INIT_FCT == -1);
2224 /* Init vga device */
2225 memset(&console_dev, 0, sizeof(console_dev));
2226 strcpy(console_dev.name, "vga");
2227 console_dev.flags = DEV_FLAGS_OUTPUT;
2228 console_dev.putc = video_putc; /* 'putc' function */
2229 console_dev.puts = video_puts; /* 'puts' function */
2231 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2232 if (have_keyboard && keyboard_ok) {
2233 /* Also init console device */
2234 console_dev.flags |= DEV_FLAGS_INPUT;
2235 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2236 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
2240 if (stdio_register(&console_dev) != 0)
2243 /* Return success */
2247 void video_position_cursor(unsigned col, unsigned row)
2249 console_col = min(col, CONSOLE_COLS - 1);
2250 console_row = min(row, CONSOLE_ROWS - 1);
2253 int video_get_pixel_width(void)
2255 return VIDEO_VISIBLE_COLS;
2258 int video_get_pixel_height(void)
2260 return VIDEO_VISIBLE_ROWS;
2263 int video_get_screen_rows(void)
2265 return CONSOLE_ROWS;
2268 int video_get_screen_columns(void)
2270 return CONSOLE_COLS;