1 // SPDX-License-Identifier: GPL-2.0+
5 * (C) Copyright 2001-2002
6 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
14 #include <env_callback.h>
15 #include <linux/types.h>
16 #include <stdio_dev.h>
20 #include <asm/unaligned.h>
23 #include <asm/unaligned.h>
24 #include <video_font.h>
26 #ifdef CONFIG_LCD_LOGO
28 #include <bmp_logo_data.h>
29 #if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
30 #error Default Color Map overlaps with Logo Color Map
34 #ifndef CONFIG_LCD_ALIGNMENT
35 #define CONFIG_LCD_ALIGNMENT PAGE_SIZE
38 #if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
39 (LCD_BPP != LCD_COLOR32)
40 #error Unsupported LCD BPP.
43 DECLARE_GLOBAL_DATA_PTR;
45 static int lcd_init(void *lcdbase);
46 static void lcd_logo(void);
47 static void lcd_setfgcolor(int color);
48 static void lcd_setbgcolor(int color);
50 static int lcd_color_fg;
51 static int lcd_color_bg;
53 char lcd_is_enabled = 0;
54 static void *lcd_base; /* Start of framebuffer memory */
55 static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
57 /* Flush LCD activity to the caches */
61 * flush_dcache_range() is declared in common.h but it seems that some
62 * architectures do not actually implement it. Is there a way to find
63 * out whether it exists? For now, ARM is safe.
65 #if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
69 flush_dcache_range((ulong)lcd_base,
70 (ulong)(lcd_base + lcd_get_size(&line_length)));
74 void lcd_set_flush_dcache(int flush)
76 lcd_flush_dcache = (flush != 0);
79 static void lcd_stub_putc(struct stdio_dev *dev, const char c)
84 static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
89 /* Small utility to check that you got the colours right */
90 #ifdef LCD_TEST_PATTERN
92 #if LCD_BPP == LCD_COLOR8
96 static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
97 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
98 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
99 }; /*LCD_BPP == LCD_COLOR8 */
101 #elif LCD_BPP == LCD_COLOR16
105 static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
106 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW, CONSOLE_COLOR_BLUE,
107 CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN, CONSOLE_COLOR_GREY, CONSOLE_COLOR_WHITE,
109 #endif /*LCD_BPP == LCD_COLOR16 */
111 static void test_pattern(void)
113 ushort v_max = panel_info.vl_row;
114 ushort h_max = panel_info.vl_col;
115 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
116 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
118 #if LCD_BPP == LCD_COLOR8
119 uchar *pix = (uchar *)lcd_base;
120 #elif LCD_BPP == LCD_COLOR16
121 ushort *pix = (ushort *)lcd_base;
124 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
125 h_max, v_max, h_step, v_step);
127 for (v = 0; v < v_max; ++v) {
128 uchar iy = v / v_step;
129 for (h = 0; h < h_max; ++h) {
130 uchar ix = N_BLK_HOR * iy + h / h_step;
131 *pix++ = test_colors[ix];
135 #endif /* LCD_TEST_PATTERN */
138 * With most lcd drivers the line length is set up
139 * by calculating it from panel_info parameters. Some
140 * drivers need to calculate the line length differently,
141 * so make the function weak to allow overriding it.
143 __weak int lcd_get_size(int *line_length)
145 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
146 return *line_length * panel_info.vl_row;
149 int drv_lcd_init(void)
151 struct stdio_dev lcddev;
154 lcd_base = map_sysmem(gd->fb_base, 0);
158 /* Device initialization */
159 memset(&lcddev, 0, sizeof(lcddev));
161 strcpy(lcddev.name, "lcd");
162 lcddev.ext = 0; /* No extensions */
163 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
164 lcddev.putc = lcd_stub_putc; /* 'putc' function */
165 lcddev.puts = lcd_stub_puts; /* 'puts' function */
167 rc = stdio_register(&lcddev);
169 return (rc == 0) ? 1 : rc;
175 __maybe_unused ulong addr;
176 static int do_splash = 1;
177 #if LCD_BPP == LCD_COLOR8
178 /* Setting the palette */
179 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
180 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
181 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
182 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
183 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
184 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
185 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
186 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
187 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
190 #ifndef CONFIG_SYS_WHITE_ON_BLACK
191 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
192 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
193 bg_color = CONSOLE_COLOR_WHITE;
195 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
196 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
197 bg_color = CONSOLE_COLOR_BLACK;
198 #endif /* CONFIG_SYS_WHITE_ON_BLACK */
200 #ifdef LCD_TEST_PATTERN
203 /* set framebuffer to background color */
204 #if (LCD_BPP != LCD_COLOR32)
205 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
207 u32 *ppix = lcd_base;
210 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
216 /* setup text-console */
217 debug("[LCD] setting up console...\n");
218 lcd_init_console(lcd_base,
222 /* Paint the logo and retrieve LCD base address */
223 debug("[LCD] Drawing the logo...\n");
225 if (splash_display() == 0) {
233 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
234 addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
235 lcd_init_console((void *)addr, panel_info.vl_col,
236 panel_info.vl_row, panel_info.vl_rot);
241 static int lcd_init(void *lcdbase)
243 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
244 lcd_ctrl_init(lcdbase);
247 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
248 * the 'lcdbase' argument and uses custom lcd base address
249 * by setting up gd->fb_base. Check for this condition and fixup
250 * 'lcd_base' address.
252 if (map_to_sysmem(lcdbase) != gd->fb_base)
253 lcd_base = map_sysmem(gd->fb_base, 0);
255 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
257 lcd_get_size(&lcd_line_length);
262 /* Initialize the console */
264 #ifdef CONFIG_LCD_INFO_BELOW_LOGO
265 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
267 lcd_set_row(1); /* leave 1 blank line below logo */
274 * This is called early in the system initialization to grab memory
275 * for the LCD controller.
276 * Returns new address for monitor, after reserving LCD buffer memory
278 * Note that this is running from ROM, so no write access to global data.
280 ulong lcd_setmem(ulong addr)
285 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
286 panel_info.vl_row, NBITS(panel_info.vl_bpix));
288 size = lcd_get_size(&line_length);
290 /* Round up to nearest full page, or MMU section if defined */
291 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
292 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
294 /* Allocate pages for the frame buffer. */
297 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
303 static void lcd_setfgcolor(int color)
305 lcd_color_fg = color;
308 int lcd_getfgcolor(void)
313 static void lcd_setbgcolor(int color)
315 lcd_color_bg = color;
318 int lcd_getbgcolor(void)
323 #ifdef CONFIG_LCD_LOGO
324 __weak void lcd_logo_set_cmap(void)
327 ushort *cmap = configuration_get_cmap();
329 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i)
330 *cmap++ = bmp_logo_palette[i];
333 void lcd_logo_plot(int x, int y)
336 uchar *bmap = &bmp_logo_bitmap[0];
337 unsigned bpix = NBITS(panel_info.vl_bpix);
338 uchar *fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
341 debug("Logo: width %d height %d colors %d\n",
342 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
349 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
350 memcpy(fb, bmap, BMP_LOGO_WIDTH);
351 bmap += BMP_LOGO_WIDTH;
352 fb += panel_info.vl_col;
355 else { /* true color mode */
358 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
359 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
360 col16 = bmp_logo_palette[(bmap[j]-16)];
362 ((col16 & 0x000F) << 1) |
363 ((col16 & 0x00F0) << 3) |
364 ((col16 & 0x0F00) << 4);
366 bmap += BMP_LOGO_WIDTH;
367 fb16 += panel_info.vl_col;
375 static inline void lcd_logo_plot(int x, int y) {}
376 #endif /* CONFIG_LCD_LOGO */
378 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
379 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
381 static void splash_align_axis(int *axis, unsigned long panel_size,
382 unsigned long picture_size)
384 unsigned long panel_picture_delta = panel_size - picture_size;
385 unsigned long axis_alignment;
387 if (*axis == BMP_ALIGN_CENTER)
388 axis_alignment = panel_picture_delta / 2;
390 axis_alignment = panel_picture_delta + *axis + 1;
394 *axis = max(0, (int)axis_alignment);
398 #ifdef CONFIG_LCD_BMP_RLE8
399 #define BMP_RLE8_ESCAPE 0
400 #define BMP_RLE8_EOL 0
401 #define BMP_RLE8_EOBMP 1
402 #define BMP_RLE8_DELTA 2
404 static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
408 *(*fbp)++ = cmap[*bmap++];
413 static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
416 int cnt_8copy = cnt >> 3;
418 cnt -= cnt_8copy << 3;
419 while (cnt_8copy > 0) {
438 * Do not call this function directly, must be called from lcd_display_bitmap.
440 static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap,
441 uchar *fb, int x_off, int y_off)
449 width = get_unaligned_le32(&bmp->header.width);
450 height = get_unaligned_le32(&bmp->header.height);
451 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
457 if (bmap[0] == BMP_RLE8_ESCAPE) {
464 /* 16bpix, 2-byte per pixel, width should *2 */
465 fb -= (width * 2 + lcd_line_length);
475 /* 16bpix, 2-byte per pixel, x should *2 */
476 fb = (uchar *) (lcd_base + (y + y_off - 1)
477 * lcd_line_length + (x + x_off) * 2);
486 if (x + runlen > width)
490 draw_unencoded_bitmap(
505 /* aggregate the same code */
506 while (bmap[0] == 0xff &&
507 bmap[2] != BMP_RLE8_ESCAPE &&
508 bmap[1] == bmap[3]) {
512 if (x + runlen > width)
516 draw_encoded_bitmap((ushort **)&fb,
527 __weak void fb_put_byte(uchar **fb, uchar **from)
529 *(*fb)++ = *(*from)++;
532 #if defined(CONFIG_BMP_16BPP)
533 __weak void fb_put_word(uchar **fb, uchar **from)
535 *(*fb)++ = *(*from)++;
536 *(*fb)++ = *(*from)++;
538 #endif /* CONFIG_BMP_16BPP */
540 __weak void lcd_set_cmap(struct bmp_image *bmp, unsigned colors)
543 struct bmp_color_table_entry cte;
544 ushort *cmap = configuration_get_cmap();
546 for (i = 0; i < colors; ++i) {
547 cte = bmp->color_table[i];
548 *cmap = (((cte.red) << 8) & 0xf800) |
549 (((cte.green) << 3) & 0x07e0) |
550 (((cte.blue) >> 3) & 0x001f);
555 int lcd_display_bitmap(ulong bmp_image, int x, int y)
557 ushort *cmap_base = NULL;
560 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0);
563 unsigned long width, height, byte_width;
564 unsigned long pwidth = panel_info.vl_col;
565 unsigned colors, bpix, bmp_bpix;
567 struct bmp_color_table_entry *palette;
569 if (!bmp || !(bmp->header.signature[0] == 'B' &&
570 bmp->header.signature[1] == 'M')) {
571 printf("Error: no valid bmp image at %lx\n", bmp_image);
576 palette = bmp->color_table;
577 width = get_unaligned_le32(&bmp->header.width);
578 height = get_unaligned_le32(&bmp->header.height);
579 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
580 hdr_size = get_unaligned_le16(&bmp->header.size);
581 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix);
583 colors = 1 << bmp_bpix;
585 bpix = NBITS(panel_info.vl_bpix);
587 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
588 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
595 * We support displaying 8bpp BMPs on 16bpp LCDs
596 * and displaying 24bpp BMPs on 32bpp LCDs
598 if (bpix != bmp_bpix &&
599 !(bmp_bpix == 8 && bpix == 16) &&
600 !(bmp_bpix == 24 && bpix == 32)) {
601 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
602 bpix, get_unaligned_le16(&bmp->header.bit_count));
606 debug("Display-bmp: %d x %d with %d colors, display %d\n",
607 (int)width, (int)height, (int)colors, 1 << bpix);
610 lcd_set_cmap(bmp, colors);
612 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
614 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
615 splash_align_axis(&x, pwidth, width);
616 splash_align_axis(&y, panel_info.vl_row, height);
617 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
619 if ((x + width) > pwidth)
621 if ((y + height) > panel_info.vl_row)
622 height = panel_info.vl_row - y;
624 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
625 fb = (uchar *)(lcd_base +
626 (y + height - 1) * lcd_line_length + x * bpix / 8);
631 cmap_base = configuration_get_cmap();
632 #ifdef CONFIG_LCD_BMP_RLE8
633 u32 compression = get_unaligned_le32(&bmp->header.compression);
634 debug("compressed %d %d\n", compression, BMP_BI_RLE8);
635 if (compression == BMP_BI_RLE8) {
637 /* TODO implement render code for bpix != 16 */
638 printf("Error: only support 16 bpix");
641 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
649 byte_width = width * 2;
651 for (i = 0; i < height; ++i) {
653 for (j = 0; j < width; j++) {
655 fb_put_byte(&fb, &bmap);
657 struct bmp_color_table_entry *entry;
661 val = cmap_base[*bmap];
663 entry = &palette[*bmap];
664 val = entry->blue >> 3 |
665 entry->green >> 2 << 5 |
666 entry->red >> 3 << 11;
668 *(uint16_t *)fb = val;
670 fb += sizeof(uint16_t) / sizeof(*fb);
673 bmap += (padded_width - width);
674 fb -= byte_width + lcd_line_length;
678 #if defined(CONFIG_BMP_16BPP)
680 for (i = 0; i < height; ++i) {
682 for (j = 0; j < width; j++)
683 fb_put_word(&fb, &bmap);
685 bmap += (padded_width - width) * 2;
686 fb -= width * 2 + lcd_line_length;
689 #endif /* CONFIG_BMP_16BPP */
690 #if defined(CONFIG_BMP_24BPP)
692 for (i = 0; i < height; ++i) {
693 for (j = 0; j < width; j++) {
699 fb -= lcd_line_length + width * (bpix / 8);
702 #endif /* CONFIG_BMP_24BPP */
703 #if defined(CONFIG_BMP_32BPP)
705 for (i = 0; i < height; ++i) {
706 for (j = 0; j < width; j++) {
712 fb -= lcd_line_length + width * (bpix / 8);
715 #endif /* CONFIG_BMP_32BPP */
725 static void lcd_logo(void)
729 #ifdef CONFIG_LCD_INFO
730 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
731 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
732 lcd_show_board_info();
733 #endif /* CONFIG_LCD_INFO */
736 #ifdef CONFIG_SPLASHIMAGE_GUARD
737 static int on_splashimage(const char *name, const char *value, enum env_op op,
743 if (op == env_op_delete)
746 addr = simple_strtoul(value, NULL, 16);
747 /* See README.displaying-bmps */
748 aligned = (addr % 4 == 2);
750 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
757 U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
760 int lcd_get_pixel_width(void)
762 return panel_info.vl_col;
765 int lcd_get_pixel_height(void)
767 return panel_info.vl_row;