2 * Common LCD routines for supported CPUs
4 * (C) Copyright 2001-2002
5 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
7 * SPDX-License-Identifier: GPL-2.0+
10 /************************************************************************/
12 /************************************************************************/
21 #include <env_callback.h>
22 #include <linux/types.h>
23 #include <stdio_dev.h>
24 #if defined(CONFIG_POST)
29 #include <asm/unaligned.h>
32 #include <asm/unaligned.h>
34 #if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
35 defined(CONFIG_CPU_MONAHANS)
36 #include <asm/byteorder.h>
39 #if defined(CONFIG_MPC823)
43 #if defined(CONFIG_ATMEL_LCD)
44 #include <atmel_lcdc.h>
47 #if defined(CONFIG_LCD_DT_SIMPLEFB)
51 /************************************************************************/
53 /************************************************************************/
54 #include <video_font.h> /* Get font data, width and height */
56 /************************************************************************/
58 /************************************************************************/
59 #ifdef CONFIG_LCD_LOGO
60 # include <bmp_logo.h> /* Get logo data, width and height */
61 # include <bmp_logo_data.h>
62 # if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
63 # error Default Color Map overlaps with Logo Color Map
71 #ifndef CONFIG_LCD_ALIGNMENT
72 #define CONFIG_LCD_ALIGNMENT PAGE_SIZE
75 /* By default we scroll by a single line */
76 #ifndef CONFIG_CONSOLE_SCROLL_LINES
77 #define CONFIG_CONSOLE_SCROLL_LINES 1
80 /************************************************************************/
81 /* ** CONSOLE DEFINITIONS & FUNCTIONS */
82 /************************************************************************/
83 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
84 # define CONSOLE_ROWS ((panel_info.vl_row-BMP_LOGO_HEIGHT) \
87 # define CONSOLE_ROWS (panel_info.vl_row / VIDEO_FONT_HEIGHT)
90 #define CONSOLE_COLS (panel_info.vl_col / VIDEO_FONT_WIDTH)
91 #define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * lcd_line_length)
92 #define CONSOLE_ROW_FIRST lcd_console_address
93 #define CONSOLE_ROW_SECOND (lcd_console_address + CONSOLE_ROW_SIZE)
94 #define CONSOLE_ROW_LAST (lcd_console_address + CONSOLE_SIZE \
96 #define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
97 #define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
99 #if LCD_BPP == LCD_MONOCHROME
100 # define COLOR_MASK(c) ((c) | (c) << 1 | (c) << 2 | (c) << 3 | \
101 (c) << 4 | (c) << 5 | (c) << 6 | (c) << 7)
102 #elif (LCD_BPP == LCD_COLOR8) || (LCD_BPP == LCD_COLOR16) || \
103 (LCD_BPP == LCD_COLOR32)
104 # define COLOR_MASK(c) (c)
106 # error Unsupported LCD BPP.
109 DECLARE_GLOBAL_DATA_PTR;
111 static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
112 static inline void lcd_putc_xy(ushort x, ushort y, uchar c);
114 static int lcd_init(void *lcdbase);
116 static void *lcd_logo(void);
118 static void lcd_setfgcolor(int color);
119 static void lcd_setbgcolor(int color);
121 static int lcd_color_fg;
122 static int lcd_color_bg;
125 char lcd_is_enabled = 0;
127 static short console_col;
128 static short console_row;
130 static void *lcd_console_address;
131 static void *lcd_base; /* Start of framebuffer memory */
133 static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
135 /************************************************************************/
137 /* Flush LCD activity to the caches */
141 * flush_dcache_range() is declared in common.h but it seems that some
142 * architectures do not actually implement it. Is there a way to find
143 * out whether it exists? For now, ARM is safe.
145 #if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
148 if (lcd_flush_dcache)
149 flush_dcache_range((u32)lcd_base,
150 (u32)(lcd_base + lcd_get_size(&line_length)));
151 #elif defined(CONFIG_SANDBOX) && defined(CONFIG_VIDEO_SANDBOX_SDL)
152 static ulong last_sync;
154 if (get_timer(last_sync) > 10) {
155 sandbox_sdl_sync(lcd_base);
156 last_sync = get_timer(0);
161 void lcd_set_flush_dcache(int flush)
163 lcd_flush_dcache = (flush != 0);
166 /*----------------------------------------------------------------------*/
168 static void console_scrollup(void)
170 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
172 /* Copy up rows ignoring those that will be overwritten */
173 memcpy(CONSOLE_ROW_FIRST,
174 lcd_console_address + CONSOLE_ROW_SIZE * rows,
175 CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows);
177 /* Clear the last rows */
178 #if (LCD_BPP != LCD_COLOR32)
179 memset(lcd_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows,
180 COLOR_MASK(lcd_color_bg),
181 CONSOLE_ROW_SIZE * rows);
183 u32 *ppix = lcd_console_address +
184 CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows;
187 i < (CONSOLE_ROW_SIZE * rows) / NBYTES(panel_info.vl_bpix);
189 *ppix++ = COLOR_MASK(lcd_color_bg);
196 /*----------------------------------------------------------------------*/
198 static inline void console_back(void)
200 if (--console_col < 0) {
201 console_col = CONSOLE_COLS-1 ;
202 if (--console_row < 0)
206 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
207 console_row * VIDEO_FONT_HEIGHT, ' ');
210 /*----------------------------------------------------------------------*/
212 static inline void console_newline(void)
216 /* Check if we need to scroll the terminal */
217 if (++console_row >= CONSOLE_ROWS)
223 /*----------------------------------------------------------------------*/
225 static void lcd_stub_putc(struct stdio_dev *dev, const char c)
230 void lcd_putc(const char c)
232 if (!lcd_is_enabled) {
247 case '\t': /* Tab (8 chars alignment) */
251 if (console_col >= CONSOLE_COLS)
260 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
261 console_row * VIDEO_FONT_HEIGHT, c);
262 if (++console_col >= CONSOLE_COLS)
267 /*----------------------------------------------------------------------*/
269 static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
274 void lcd_puts(const char *s)
276 if (!lcd_is_enabled) {
288 /*----------------------------------------------------------------------*/
290 void lcd_printf(const char *fmt, ...)
293 char buf[CONFIG_SYS_PBSIZE];
296 vsprintf(buf, fmt, args);
302 /************************************************************************/
303 /* ** Low-Level Graphics Routines */
304 /************************************************************************/
306 static void lcd_drawchars(ushort x, ushort y, uchar *str, int count)
311 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
312 y += BMP_LOGO_HEIGHT;
315 #if LCD_BPP == LCD_MONOCHROME
316 ushort off = x * (1 << LCD_BPP) % 8;
319 dest = (uchar *)(lcd_base + y * lcd_line_length + x * NBITS(LCD_BPP)/8);
321 for (row = 0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
324 #if LCD_BPP == LCD_COLOR16
325 ushort *d = (ushort *)dest;
326 #elif LCD_BPP == LCD_COLOR32
327 u32 *d = (u32 *)dest;
332 #if LCD_BPP == LCD_MONOCHROME
333 uchar rest = *d & -(1 << (8 - off));
336 for (i = 0; i < count; ++i) {
340 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
342 #if LCD_BPP == LCD_MONOCHROME
343 sym = (COLOR_MASK(lcd_color_fg) & bits) |
344 (COLOR_MASK(lcd_color_bg) & ~bits);
346 *d++ = rest | (sym >> off);
347 rest = sym << (8-off);
348 #elif LCD_BPP == LCD_COLOR8
349 for (c = 0; c < 8; ++c) {
350 *d++ = (bits & 0x80) ?
351 lcd_color_fg : lcd_color_bg;
354 #elif LCD_BPP == LCD_COLOR16
355 for (c = 0; c < 8; ++c) {
356 *d++ = (bits & 0x80) ?
357 lcd_color_fg : lcd_color_bg;
360 #elif LCD_BPP == LCD_COLOR32
361 for (c = 0; c < 8; ++c) {
362 *d++ = (bits & 0x80) ?
363 lcd_color_fg : lcd_color_bg;
368 #if LCD_BPP == LCD_MONOCHROME
369 *d = rest | (*d & ((1 << (8 - off)) - 1));
374 static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
376 lcd_drawchars(x, y, &c, 1);
379 /************************************************************************/
380 /** Small utility to check that you got the colours right */
381 /************************************************************************/
382 #ifdef LCD_TEST_PATTERN
387 static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
388 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
389 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
392 static void test_pattern(void)
394 ushort v_max = panel_info.vl_row;
395 ushort h_max = panel_info.vl_col;
396 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
397 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
399 uchar *pix = (uchar *)lcd_base;
401 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
402 h_max, v_max, h_step, v_step);
404 /* WARNING: Code silently assumes 8bit/pixel */
405 for (v = 0; v < v_max; ++v) {
406 uchar iy = v / v_step;
407 for (h = 0; h < h_max; ++h) {
408 uchar ix = N_BLK_HOR * iy + h / h_step;
409 *pix++ = test_colors[ix];
413 #endif /* LCD_TEST_PATTERN */
416 /************************************************************************/
417 /* ** GENERIC Initialization Routines */
418 /************************************************************************/
420 * With most lcd drivers the line length is set up
421 * by calculating it from panel_info parameters. Some
422 * drivers need to calculate the line length differently,
423 * so make the function weak to allow overriding it.
425 __weak int lcd_get_size(int *line_length)
427 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
428 return *line_length * panel_info.vl_row;
431 int drv_lcd_init(void)
433 struct stdio_dev lcddev;
436 lcd_base = map_sysmem(gd->fb_base, 0);
438 lcd_init(lcd_base); /* LCD initialization */
440 /* Device initialization */
441 memset(&lcddev, 0, sizeof(lcddev));
443 strcpy(lcddev.name, "lcd");
444 lcddev.ext = 0; /* No extensions */
445 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
446 lcddev.putc = lcd_stub_putc; /* 'putc' function */
447 lcddev.puts = lcd_stub_puts; /* 'puts' function */
449 rc = stdio_register(&lcddev);
451 return (rc == 0) ? 1 : rc;
454 /*----------------------------------------------------------------------*/
457 #if LCD_BPP == LCD_MONOCHROME
458 /* Setting the palette */
461 #elif LCD_BPP == LCD_COLOR8
462 /* Setting the palette */
463 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
464 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
465 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
466 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
467 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
468 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
469 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
470 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
471 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
474 #ifndef CONFIG_SYS_WHITE_ON_BLACK
475 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
476 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
478 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
479 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
480 #endif /* CONFIG_SYS_WHITE_ON_BLACK */
482 #ifdef LCD_TEST_PATTERN
485 /* set framebuffer to background color */
486 #if (LCD_BPP != LCD_COLOR32)
487 memset((char *)lcd_base,
488 COLOR_MASK(lcd_color_bg),
489 lcd_line_length * panel_info.vl_row);
491 u32 *ppix = lcd_base;
494 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
496 *ppix++ = COLOR_MASK(lcd_color_bg);
500 /* Paint the logo and retrieve LCD base address */
501 debug("[LCD] Drawing the logo...\n");
502 lcd_console_address = lcd_logo();
509 static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
517 cls, 1, 1, do_lcd_clear,
522 /*----------------------------------------------------------------------*/
524 static int lcd_init(void *lcdbase)
526 /* Initialize the lcd controller */
527 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
529 lcd_ctrl_init(lcdbase);
532 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi_b) ignores
533 * the 'lcdbase' argument and uses custom lcd base address
534 * by setting up gd->fb_base. Check for this condition and fixup
535 * 'lcd_base' address.
537 if (map_to_sysmem(lcdbase) != gd->fb_base)
538 lcd_base = map_sysmem(gd->fb_base, 0);
540 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
542 lcd_get_size(&lcd_line_length);
547 /* Initialize the console */
549 #ifdef CONFIG_LCD_INFO_BELOW_LOGO
550 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
552 console_row = 1; /* leave 1 blank line below logo */
559 /************************************************************************/
560 /* ** ROM capable initialization part - needed to reserve FB memory */
561 /************************************************************************/
563 * This is called early in the system initialization to grab memory
564 * for the LCD controller.
565 * Returns new address for monitor, after reserving LCD buffer memory
567 * Note that this is running from ROM, so no write access to global data.
569 ulong lcd_setmem(ulong addr)
574 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
575 panel_info.vl_row, NBITS(panel_info.vl_bpix));
577 size = lcd_get_size(&line_length);
579 /* Round up to nearest full page, or MMU section if defined */
580 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
581 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
583 /* Allocate pages for the frame buffer. */
586 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
592 /*----------------------------------------------------------------------*/
594 static void lcd_setfgcolor(int color)
596 lcd_color_fg = color;
599 /*----------------------------------------------------------------------*/
601 static void lcd_setbgcolor(int color)
603 lcd_color_bg = color;
606 /************************************************************************/
607 /* ** Chipset depending Bitmap / Logo stuff... */
608 /************************************************************************/
609 static inline ushort *configuration_get_cmap(void)
611 #if defined CONFIG_CPU_PXA
612 struct pxafb_info *fbi = &panel_info.pxa;
613 return (ushort *)fbi->palette;
614 #elif defined(CONFIG_MPC823)
615 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
616 cpm8xx_t *cp = &(immr->im_cpm);
617 return (ushort *)&(cp->lcd_cmap[255 * sizeof(ushort)]);
618 #elif defined(CONFIG_ATMEL_LCD)
619 return (ushort *)(panel_info.mmio + ATMEL_LCDC_LUT(0));
620 #elif !defined(CONFIG_ATMEL_HLCD) && !defined(CONFIG_EXYNOS_FB)
621 return panel_info.cmap;
622 #elif defined(CONFIG_LCD_LOGO)
623 return bmp_logo_palette;
629 #ifdef CONFIG_LCD_LOGO
630 void bitmap_plot(int x, int y)
632 #ifdef CONFIG_ATMEL_LCD
633 uint *cmap = (uint *)bmp_logo_palette;
635 ushort *cmap = (ushort *)bmp_logo_palette;
641 #if defined(CONFIG_MPC823)
642 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
643 cpm8xx_t *cp = &(immr->im_cpm);
645 unsigned bpix = NBITS(panel_info.vl_bpix);
647 debug("Logo: width %d height %d colors %d cmap %d\n",
648 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
649 ARRAY_SIZE(bmp_logo_palette));
651 bmap = &bmp_logo_bitmap[0];
652 fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
655 /* Leave room for default color map
656 * default case: generic system with no cmap (most likely 16bpp)
657 * cmap was set to the source palette, so no change is done.
658 * This avoids even more ifdefs in the next stanza
660 #if defined(CONFIG_MPC823)
661 cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
662 #elif defined(CONFIG_ATMEL_LCD)
663 cmap = (uint *)configuration_get_cmap();
665 cmap = configuration_get_cmap();
671 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
672 ushort colreg = bmp_logo_palette[i];
673 #ifdef CONFIG_ATMEL_LCD
675 #ifdef CONFIG_ATMEL_LCD_BGR555
676 lut_entry = ((colreg & 0x000F) << 11) |
677 ((colreg & 0x00F0) << 2) |
678 ((colreg & 0x0F00) >> 7);
679 #else /* CONFIG_ATMEL_LCD_RGB565 */
680 lut_entry = ((colreg & 0x000F) << 1) |
681 ((colreg & 0x00F0) << 3) |
682 ((colreg & 0x0F00) << 4);
684 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
686 #else /* !CONFIG_ATMEL_LCD */
687 #ifdef CONFIG_SYS_INVERT_COLORS
688 *cmap++ = 0xffff - colreg;
692 #endif /* CONFIG_ATMEL_LCD */
697 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
698 memcpy(fb, bmap, BMP_LOGO_WIDTH);
699 bmap += BMP_LOGO_WIDTH;
700 fb += panel_info.vl_col;
703 else { /* true color mode */
706 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
707 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
708 col16 = bmp_logo_palette[(bmap[j]-16)];
710 ((col16 & 0x000F) << 1) |
711 ((col16 & 0x00F0) << 3) |
712 ((col16 & 0x0F00) << 4);
714 bmap += BMP_LOGO_WIDTH;
715 fb16 += panel_info.vl_col;
723 static inline void bitmap_plot(int x, int y) {}
724 #endif /* CONFIG_LCD_LOGO */
726 /*----------------------------------------------------------------------*/
727 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
729 * Display the BMP file located at address bmp_image.
733 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
734 #define BMP_ALIGN_CENTER 0x7FFF
736 static void splash_align_axis(int *axis, unsigned long panel_size,
737 unsigned long picture_size)
739 unsigned long panel_picture_delta = panel_size - picture_size;
740 unsigned long axis_alignment;
742 if (*axis == BMP_ALIGN_CENTER)
743 axis_alignment = panel_picture_delta / 2;
745 axis_alignment = panel_picture_delta + *axis + 1;
749 *axis = max(0, axis_alignment);
754 #ifdef CONFIG_LCD_BMP_RLE8
756 #define BMP_RLE8_ESCAPE 0
757 #define BMP_RLE8_EOL 0
758 #define BMP_RLE8_EOBMP 1
759 #define BMP_RLE8_DELTA 2
761 static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
765 *(*fbp)++ = cmap[*bmap++];
770 static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
773 int cnt_8copy = cnt >> 3;
775 cnt -= cnt_8copy << 3;
776 while (cnt_8copy > 0) {
795 * Do not call this function directly, must be called from lcd_display_bitmap.
797 static void lcd_display_rle8_bitmap(bmp_image_t *bmp, ushort *cmap, uchar *fb,
798 int x_off, int y_off)
806 width = get_unaligned_le32(&bmp->header.width);
807 height = get_unaligned_le32(&bmp->header.height);
808 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
814 if (bmap[0] == BMP_RLE8_ESCAPE) {
821 /* 16bpix, 2-byte per pixel, width should *2 */
822 fb -= (width * 2 + lcd_line_length);
832 /* 16bpix, 2-byte per pixel, x should *2 */
833 fb = (uchar *) (lcd_base + (y + y_off - 1)
834 * lcd_line_length + (x + x_off) * 2);
843 if (x + runlen > width)
847 draw_unencoded_bitmap(
862 /* aggregate the same code */
863 while (bmap[0] == 0xff &&
864 bmap[2] != BMP_RLE8_ESCAPE &&
865 bmap[1] == bmap[3]) {
869 if (x + runlen > width)
873 draw_encoded_bitmap((ushort **)&fb,
884 #if defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
885 #define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
887 #define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
890 #if defined(CONFIG_BMP_16BPP)
891 #if defined(CONFIG_ATMEL_LCD_BGR555)
892 static inline void fb_put_word(uchar **fb, uchar **from)
894 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
895 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
899 static inline void fb_put_word(uchar **fb, uchar **from)
901 *(*fb)++ = *(*from)++;
902 *(*fb)++ = *(*from)++;
905 #endif /* CONFIG_BMP_16BPP */
907 int lcd_display_bitmap(ulong bmp_image, int x, int y)
909 #if !defined(CONFIG_MCC200)
912 ushort *cmap_base = NULL;
915 bmp_image_t *bmp = (bmp_image_t *)map_sysmem(bmp_image, 0);
918 unsigned long width, height, byte_width;
919 unsigned long pwidth = panel_info.vl_col;
920 unsigned colors, bpix, bmp_bpix;
922 if (!bmp || !(bmp->header.signature[0] == 'B' &&
923 bmp->header.signature[1] == 'M')) {
924 printf("Error: no valid bmp image at %lx\n", bmp_image);
929 width = get_unaligned_le32(&bmp->header.width);
930 height = get_unaligned_le32(&bmp->header.height);
931 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
933 colors = 1 << bmp_bpix;
935 bpix = NBITS(panel_info.vl_bpix);
937 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
938 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
945 * We support displaying 8bpp BMPs on 16bpp LCDs
946 * and displaying 24bpp BMPs on 32bpp LCDs
948 if (bpix != bmp_bpix &&
949 !(bmp_bpix == 8 && bpix == 16) &&
950 !(bmp_bpix == 24 && bpix == 32)) {
951 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
952 bpix, get_unaligned_le16(&bmp->header.bit_count));
956 debug("Display-bmp: %d x %d with %d colors\n",
957 (int)width, (int)height, (int)colors);
959 #if !defined(CONFIG_MCC200)
960 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
962 cmap = configuration_get_cmap();
966 for (i = 0; i < colors; ++i) {
967 bmp_color_table_entry_t cte = bmp->color_table[i];
968 #if !defined(CONFIG_ATMEL_LCD)
970 ( ((cte.red) << 8) & 0xf800) |
971 ( ((cte.green) << 3) & 0x07e0) |
972 ( ((cte.blue) >> 3) & 0x001f) ;
973 #ifdef CONFIG_SYS_INVERT_COLORS
974 *cmap = 0xffff - colreg;
978 #if defined(CONFIG_MPC823)
983 #else /* CONFIG_ATMEL_LCD */
984 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
990 * BMP format for Monochrome assumes that the state of a
991 * pixel is described on a per Bit basis, not per Byte.
992 * So, in case of Monochrome BMP we should align widths
993 * on a byte boundary and convert them from Bit to Byte
995 * Probably, PXA250 and MPC823 process 1bpp BMP images in
996 * their own ways, so make the converting to be MCC200
999 #if defined(CONFIG_MCC200)
1001 width = ((width + 7) & ~7) >> 3;
1002 x = ((x + 7) & ~7) >> 3;
1003 pwidth= ((pwidth + 7) & ~7) >> 3;
1007 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
1009 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1010 splash_align_axis(&x, pwidth, width);
1011 splash_align_axis(&y, panel_info.vl_row, height);
1012 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1014 if ((x + width) > pwidth)
1016 if ((y + height) > panel_info.vl_row)
1017 height = panel_info.vl_row - y;
1019 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
1020 fb = (uchar *)(lcd_base +
1021 (y + height - 1) * lcd_line_length + x * bpix / 8);
1024 case 1: /* pass through */
1026 #ifdef CONFIG_LCD_BMP_RLE8
1027 u32 compression = get_unaligned_le32(&bmp->header.compression);
1028 if (compression == BMP_BI_RLE8) {
1030 /* TODO implement render code for bpix != 16 */
1031 printf("Error: only support 16 bpix");
1034 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
1042 byte_width = width * 2;
1044 for (i = 0; i < height; ++i) {
1046 for (j = 0; j < width; j++) {
1048 FB_PUT_BYTE(fb, bmap);
1050 *(uint16_t *)fb = cmap_base[*(bmap++)];
1051 fb += sizeof(uint16_t) / sizeof(*fb);
1054 bmap += (padded_width - width);
1055 fb -= byte_width + lcd_line_length;
1059 #if defined(CONFIG_BMP_16BPP)
1061 for (i = 0; i < height; ++i) {
1063 for (j = 0; j < width; j++)
1064 fb_put_word(&fb, &bmap);
1066 bmap += (padded_width - width) * 2;
1067 fb -= width * 2 + lcd_line_length;
1070 #endif /* CONFIG_BMP_16BPP */
1071 #if defined(CONFIG_BMP_24BMP)
1073 for (i = 0; i < height; ++i) {
1074 for (j = 0; j < width; j++) {
1075 *(fb++) = *(bmap++);
1076 *(fb++) = *(bmap++);
1077 *(fb++) = *(bmap++);
1080 fb -= lcd_line_length + width * (bpix / 8);
1083 #endif /* CONFIG_BMP_24BMP */
1084 #if defined(CONFIG_BMP_32BPP)
1086 for (i = 0; i < height; ++i) {
1087 for (j = 0; j < width; j++) {
1088 *(fb++) = *(bmap++);
1089 *(fb++) = *(bmap++);
1090 *(fb++) = *(bmap++);
1091 *(fb++) = *(bmap++);
1093 fb -= lcd_line_length + width * (bpix / 8);
1096 #endif /* CONFIG_BMP_32BPP */
1106 static void *lcd_logo(void)
1108 #ifdef CONFIG_SPLASH_SCREEN
1111 static int do_splash = 1;
1113 if (do_splash && (s = getenv("splashimage")) != NULL) {
1117 if (splash_screen_prepare())
1118 return (void *)lcd_base;
1120 addr = simple_strtoul (s, NULL, 16);
1122 splash_get_pos(&x, &y);
1124 if (bmp_display(addr, x, y) == 0)
1125 return (void *)lcd_base;
1127 #endif /* CONFIG_SPLASH_SCREEN */
1131 #ifdef CONFIG_LCD_INFO
1132 console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
1133 console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
1134 lcd_show_board_info();
1135 #endif /* CONFIG_LCD_INFO */
1137 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
1138 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
1140 return (void *)lcd_base;
1141 #endif /* CONFIG_LCD_LOGO && !defined(CONFIG_LCD_INFO_BELOW_LOGO) */
1144 #ifdef CONFIG_SPLASHIMAGE_GUARD
1145 static int on_splashimage(const char *name, const char *value, enum env_op op,
1151 if (op == env_op_delete)
1154 addr = simple_strtoul(value, NULL, 16);
1155 /* See README.displaying-bmps */
1156 aligned = (addr % 4 == 2);
1158 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
1165 U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
1168 void lcd_position_cursor(unsigned col, unsigned row)
1170 console_col = min(col, CONSOLE_COLS - 1);
1171 console_row = min(row, CONSOLE_ROWS - 1);
1174 int lcd_get_pixel_width(void)
1176 return panel_info.vl_col;
1179 int lcd_get_pixel_height(void)
1181 return panel_info.vl_row;
1184 int lcd_get_screen_rows(void)
1186 return CONSOLE_ROWS;
1189 int lcd_get_screen_columns(void)
1191 return CONSOLE_COLS;
1194 #if defined(CONFIG_LCD_DT_SIMPLEFB)
1195 static int lcd_dt_simplefb_configure_node(void *blob, int off)
1200 static const char format[] =
1201 #if LCD_BPP == LCD_COLOR16
1210 stride = panel_info.vl_col * 2;
1212 cells[0] = cpu_to_fdt32(gd->fb_base);
1213 cells[1] = cpu_to_fdt32(stride * panel_info.vl_row);
1214 ret = fdt_setprop(blob, off, "reg", cells, sizeof(cells[0]) * 2);
1218 cells[0] = cpu_to_fdt32(panel_info.vl_col);
1219 ret = fdt_setprop(blob, off, "width", cells, sizeof(cells[0]));
1223 cells[0] = cpu_to_fdt32(panel_info.vl_row);
1224 ret = fdt_setprop(blob, off, "height", cells, sizeof(cells[0]));
1228 cells[0] = cpu_to_fdt32(stride);
1229 ret = fdt_setprop(blob, off, "stride", cells, sizeof(cells[0]));
1233 ret = fdt_setprop(blob, off, "format", format, strlen(format) + 1);
1237 ret = fdt_delprop(blob, off, "status");
1244 int lcd_dt_simplefb_add_node(void *blob)
1246 static const char compat[] = "simple-framebuffer";
1247 static const char disabled[] = "disabled";
1250 off = fdt_add_subnode(blob, 0, "framebuffer");
1254 ret = fdt_setprop(blob, off, "status", disabled, sizeof(disabled));
1258 ret = fdt_setprop(blob, off, "compatible", compat, sizeof(compat));
1262 return lcd_dt_simplefb_configure_node(blob, off);
1265 int lcd_dt_simplefb_enable_existing_node(void *blob)
1269 off = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
1273 return lcd_dt_simplefb_configure_node(blob, off);