]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/lcd.c
imx6q: engicam: Use SPL_LOAD_FIT for MMC boards
[people/ms/u-boot.git] / common / lcd.c
CommitLineData
8655b6f8 1/*
c8d2febc 2 * Common LCD routines
8655b6f8
WD
3 *
4 * (C) Copyright 2001-2002
5 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
6 *
3765b3e7 7 * SPDX-License-Identifier: GPL-2.0+
8655b6f8
WD
8 */
9
8655b6f8 10/* #define DEBUG */
8655b6f8
WD
11#include <config.h>
12#include <common.h>
13#include <command.h>
c0880485 14#include <env_callback.h>
8655b6f8 15#include <linux/types.h>
52cb4d4f 16#include <stdio_dev.h>
8655b6f8 17#include <lcd.h>
0eb25b61 18#include <mapmem.h>
8b0bfc68 19#include <watchdog.h>
dca2a1c1 20#include <asm/unaligned.h>
dd4425e8 21#include <splash.h>
7d95f2a3
SG
22#include <asm/io.h>
23#include <asm/unaligned.h>
c8d2febc 24#include <video_font.h>
dd4425e8 25
88804d19 26#ifdef CONFIG_LCD_LOGO
c8d2febc
NK
27#include <bmp_logo.h>
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
31#endif
88804d19 32#endif
8655b6f8 33
676d319e
SG
34#ifndef CONFIG_LCD_ALIGNMENT
35#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
36#endif
37
a7de2953
NK
38#if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
39 (LCD_BPP != LCD_COLOR32)
c8d2febc 40#error Unsupported LCD BPP.
a5796c51
JH
41#endif
42
d87080b7 43DECLARE_GLOBAL_DATA_PTR;
8655b6f8 44
8f47d917 45static int lcd_init(void *lcdbase);
7bf71d1f 46static void lcd_logo(void);
8f47d917
NK
47static void lcd_setfgcolor(int color);
48static void lcd_setbgcolor(int color);
8655b6f8 49
46d1d5dd
WD
50static int lcd_color_fg;
51static int lcd_color_bg;
f1d205a1 52int lcd_line_length;
8655b6f8 53char lcd_is_enabled = 0;
00a0ca59 54static void *lcd_base; /* Start of framebuffer memory */
9a8efc46 55static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
8655b6f8 56
9a8efc46
SG
57/* Flush LCD activity to the caches */
58void lcd_sync(void)
59{
60 /*
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.
64 */
65#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
66 int line_length;
67
68 if (lcd_flush_dcache)
f8f58fbb
AG
69 flush_dcache_range((ulong)lcd_base,
70 (ulong)(lcd_base + lcd_get_size(&line_length)));
9a8efc46
SG
71#endif
72}
73
74void lcd_set_flush_dcache(int flush)
75{
76 lcd_flush_dcache = (flush != 0);
77}
78
709ea543
SG
79static void lcd_stub_putc(struct stdio_dev *dev, const char c)
80{
81 lcd_putc(c);
82}
83
709ea543
SG
84static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
85{
86 lcd_puts(s);
87}
88
c8d2febc 89/* Small utility to check that you got the colours right */
8655b6f8
WD
90#ifdef LCD_TEST_PATTERN
91
e32951b5 92#if LCD_BPP == LCD_COLOR8
8655b6f8
WD
93#define N_BLK_VERT 2
94#define N_BLK_HOR 3
95
6b035141 96static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
8655b6f8
WD
97 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
98 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
e32951b5
AN
99}; /*LCD_BPP == LCD_COLOR8 */
100
101#elif LCD_BPP == LCD_COLOR16
102#define N_BLK_VERT 2
103#define N_BLK_HOR 4
104
105static 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,
8655b6f8 108};
e32951b5 109#endif /*LCD_BPP == LCD_COLOR16 */
8655b6f8 110
8f47d917 111static void test_pattern(void)
8655b6f8
WD
112{
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;
117 ushort v, h;
e32951b5 118#if LCD_BPP == LCD_COLOR8
8655b6f8 119 uchar *pix = (uchar *)lcd_base;
e32951b5
AN
120#elif LCD_BPP == LCD_COLOR16
121 ushort *pix = (ushort *)lcd_base;
122#endif
8655b6f8 123
8f47d917 124 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
8655b6f8
WD
125 h_max, v_max, h_step, v_step);
126
8f47d917 127 for (v = 0; v < v_max; ++v) {
8655b6f8 128 uchar iy = v / v_step;
8f47d917 129 for (h = 0; h < h_max; ++h) {
6b035141 130 uchar ix = N_BLK_HOR * iy + h / h_step;
8655b6f8
WD
131 *pix++ = test_colors[ix];
132 }
133 }
134}
135#endif /* LCD_TEST_PATTERN */
136
cefa4717
AG
137/*
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.
142 */
143__weak int lcd_get_size(int *line_length)
676d319e
SG
144{
145 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
146 return *line_length * panel_info.vl_row;
147}
148
6b035141 149int drv_lcd_init(void)
8655b6f8 150{
52cb4d4f 151 struct stdio_dev lcddev;
8655b6f8
WD
152 int rc;
153
7d95f2a3 154 lcd_base = map_sysmem(gd->fb_base, 0);
8655b6f8 155
c8d2febc 156 lcd_init(lcd_base);
8655b6f8
WD
157
158 /* Device initialization */
8f47d917 159 memset(&lcddev, 0, sizeof(lcddev));
8655b6f8 160
8f47d917 161 strcpy(lcddev.name, "lcd");
8655b6f8
WD
162 lcddev.ext = 0; /* No extensions */
163 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
709ea543
SG
164 lcddev.putc = lcd_stub_putc; /* 'putc' function */
165 lcddev.puts = lcd_stub_puts; /* 'puts' function */
8655b6f8 166
6b035141 167 rc = stdio_register(&lcddev);
8655b6f8
WD
168
169 return (rc == 0) ? 1 : rc;
170}
171
02110903 172void lcd_clear(void)
8655b6f8 173{
4d03634e 174 int bg_color;
7bf71d1f
NK
175 char *s;
176 ulong addr;
177 static int do_splash = 1;
f4469f50 178#if LCD_BPP == LCD_COLOR8
8655b6f8 179 /* Setting the palette */
8f47d917
NK
180 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
181 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
182 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
183 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
184 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
185 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
186 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
187 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
188 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
8655b6f8
WD
189#endif
190
6d0f6bcf 191#ifndef CONFIG_SYS_WHITE_ON_BLACK
8f47d917
NK
192 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
193 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
4d03634e 194 bg_color = CONSOLE_COLOR_WHITE;
8655b6f8 195#else
8f47d917
NK
196 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
197 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
4d03634e 198 bg_color = CONSOLE_COLOR_BLACK;
6d0f6bcf 199#endif /* CONFIG_SYS_WHITE_ON_BLACK */
8655b6f8
WD
200
201#ifdef LCD_TEST_PATTERN
202 test_pattern();
203#else
204 /* set framebuffer to background color */
57d76a89 205#if (LCD_BPP != LCD_COLOR32)
4d03634e 206 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
57d76a89
HP
207#else
208 u32 *ppix = lcd_base;
209 u32 i;
210 for (i = 0;
211 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
212 i++) {
4d03634e 213 *ppix++ = bg_color;
57d76a89
HP
214 }
215#endif
8655b6f8 216#endif
604c7d4a
HP
217 /* setup text-console */
218 debug("[LCD] setting up console...\n");
219 lcd_init_console(lcd_base,
220 panel_info.vl_col,
221 panel_info.vl_row,
222 panel_info.vl_rot);
8655b6f8 223 /* Paint the logo and retrieve LCD base address */
8f47d917 224 debug("[LCD] Drawing the logo...\n");
7bf71d1f 225 if (do_splash) {
00caae6d 226 s = env_get("splashimage");
7bf71d1f
NK
227 if (s) {
228 do_splash = 0;
229 addr = simple_strtoul(s, NULL, 16);
230 if (lcd_splash(addr) == 0) {
231 lcd_sync();
232 return;
233 }
234 }
235 }
236
237 lcd_logo();
238#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
239 addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
3b96b909
MZ
240 lcd_init_console((void *)addr, panel_info.vl_col,
241 panel_info.vl_row, panel_info.vl_rot);
7bf71d1f 242#endif
9a8efc46
SG
243 lcd_sync();
244}
245
246static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
247 char *const argv[])
248{
249 lcd_clear();
250 return 0;
8655b6f8 251}
c8d2febc 252U_BOOT_CMD(cls, 1, 1, do_lcd_clear, "clear screen", "");
8655b6f8 253
8f47d917 254static int lcd_init(void *lcdbase)
8655b6f8 255{
8f47d917 256 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
8f47d917 257 lcd_ctrl_init(lcdbase);
1d3dea12
AG
258
259 /*
9316e144 260 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
1d3dea12
AG
261 * the 'lcdbase' argument and uses custom lcd base address
262 * by setting up gd->fb_base. Check for this condition and fixup
263 * 'lcd_base' address.
264 */
7d95f2a3
SG
265 if (map_to_sysmem(lcdbase) != gd->fb_base)
266 lcd_base = map_sysmem(gd->fb_base, 0);
1d3dea12
AG
267
268 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
269
6d330719 270 lcd_get_size(&lcd_line_length);
6f93d2b8 271 lcd_is_enabled = 1;
02110903 272 lcd_clear();
6b035141 273 lcd_enable();
8655b6f8
WD
274
275 /* Initialize the console */
140beb94 276 lcd_set_col(0);
88804d19 277#ifdef CONFIG_LCD_INFO_BELOW_LOGO
140beb94 278 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
8655b6f8 279#else
140beb94 280 lcd_set_row(1); /* leave 1 blank line below logo */
8655b6f8 281#endif
8655b6f8
WD
282
283 return 0;
284}
285
8655b6f8
WD
286/*
287 * This is called early in the system initialization to grab memory
288 * for the LCD controller.
289 * Returns new address for monitor, after reserving LCD buffer memory
290 *
291 * Note that this is running from ROM, so no write access to global data.
292 */
8f47d917 293ulong lcd_setmem(ulong addr)
8655b6f8
WD
294{
295 ulong size;
676d319e 296 int line_length;
8655b6f8 297
8f47d917
NK
298 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
299 panel_info.vl_row, NBITS(panel_info.vl_bpix));
8655b6f8 300
676d319e 301 size = lcd_get_size(&line_length);
8655b6f8 302
676d319e
SG
303 /* Round up to nearest full page, or MMU section if defined */
304 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
305 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
8655b6f8
WD
306
307 /* Allocate pages for the frame buffer. */
308 addr -= size;
309
6b035141
JH
310 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
311 size >> 10, addr);
8655b6f8 312
8f47d917 313 return addr;
8655b6f8
WD
314}
315
8f47d917 316static void lcd_setfgcolor(int color)
8655b6f8 317{
39cf4804 318 lcd_color_fg = color;
8655b6f8
WD
319}
320
4d03634e
NK
321int lcd_getfgcolor(void)
322{
323 return lcd_color_fg;
324}
325
8f47d917 326static void lcd_setbgcolor(int color)
8655b6f8 327{
39cf4804 328 lcd_color_bg = color;
8655b6f8
WD
329}
330
4d03634e
NK
331int lcd_getbgcolor(void)
332{
333 return lcd_color_bg;
334}
335
8655b6f8 336#ifdef CONFIG_LCD_LOGO
a02e9481
NK
337__weak void lcd_logo_set_cmap(void)
338{
2306457c
NK
339 int i;
340 ushort *cmap = configuration_get_cmap();
341
342 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i)
343 *cmap++ = bmp_logo_palette[i];
a02e9481
NK
344}
345
bf21a5de 346void lcd_logo_plot(int x, int y)
8655b6f8 347{
8655b6f8 348 ushort i, j;
c8d2febc 349 uchar *bmap = &bmp_logo_bitmap[0];
317461c1 350 unsigned bpix = NBITS(panel_info.vl_bpix);
c8d2febc
NK
351 uchar *fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
352 ushort *fb16;
8655b6f8 353
2306457c
NK
354 debug("Logo: width %d height %d colors %d\n",
355 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
8655b6f8 356
317461c1 357 if (bpix < 12) {
8655b6f8 358 WATCHDOG_RESET();
a02e9481 359 lcd_logo_set_cmap();
8655b6f8
WD
360 WATCHDOG_RESET();
361
8f47d917
NK
362 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
363 memcpy(fb, bmap, BMP_LOGO_WIDTH);
8655b6f8 364 bmap += BMP_LOGO_WIDTH;
6b035141 365 fb += panel_info.vl_col;
8655b6f8
WD
366 }
367 }
368 else { /* true color mode */
acb13868 369 u16 col16;
317461c1 370 fb16 = (ushort *)fb;
8f47d917
NK
371 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
372 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
acb13868
AR
373 col16 = bmp_logo_palette[(bmap[j]-16)];
374 fb16[j] =
375 ((col16 & 0x000F) << 1) |
376 ((col16 & 0x00F0) << 3) |
377 ((col16 & 0x0F00) << 4);
8655b6f8
WD
378 }
379 bmap += BMP_LOGO_WIDTH;
380 fb16 += panel_info.vl_col;
381 }
382 }
383
384 WATCHDOG_RESET();
9a8efc46 385 lcd_sync();
8655b6f8 386}
2b5cb3d3 387#else
bf21a5de 388static inline void lcd_logo_plot(int x, int y) {}
8655b6f8
WD
389#endif /* CONFIG_LCD_LOGO */
390
c3517f91 391#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
1ca298ce
MW
392#ifdef CONFIG_SPLASH_SCREEN_ALIGN
393#define BMP_ALIGN_CENTER 0x7FFF
7c7e280a
NK
394
395static void splash_align_axis(int *axis, unsigned long panel_size,
396 unsigned long picture_size)
397{
398 unsigned long panel_picture_delta = panel_size - picture_size;
399 unsigned long axis_alignment;
400
401 if (*axis == BMP_ALIGN_CENTER)
402 axis_alignment = panel_picture_delta / 2;
403 else if (*axis < 0)
404 axis_alignment = panel_picture_delta + *axis + 1;
405 else
406 return;
407
b4141195 408 *axis = max(0, (int)axis_alignment);
7c7e280a 409}
1ca298ce
MW
410#endif
411
45d7f525 412#ifdef CONFIG_LCD_BMP_RLE8
45d7f525
TWHT
413#define BMP_RLE8_ESCAPE 0
414#define BMP_RLE8_EOL 0
415#define BMP_RLE8_EOBMP 1
416#define BMP_RLE8_DELTA 2
417
418static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
419 int cnt)
420{
421 while (cnt > 0) {
422 *(*fbp)++ = cmap[*bmap++];
423 cnt--;
424 }
425}
426
427static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
428{
429 ushort *fb = *fbp;
430 int cnt_8copy = cnt >> 3;
431
432 cnt -= cnt_8copy << 3;
433 while (cnt_8copy > 0) {
434 *fb++ = c;
435 *fb++ = c;
436 *fb++ = c;
437 *fb++ = c;
438 *fb++ = c;
439 *fb++ = c;
440 *fb++ = c;
441 *fb++ = c;
442 cnt_8copy--;
443 }
444 while (cnt > 0) {
445 *fb++ = c;
446 cnt--;
447 }
6b035141 448 *fbp = fb;
45d7f525
TWHT
449}
450
451/*
6b035141 452 * Do not call this function directly, must be called from lcd_display_bitmap.
45d7f525 453 */
1c3dbe56
SG
454static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap,
455 uchar *fb, int x_off, int y_off)
45d7f525
TWHT
456{
457 uchar *bmap;
458 ulong width, height;
459 ulong cnt, runlen;
460 int x, y;
461 int decode = 1;
462
dca2a1c1
PM
463 width = get_unaligned_le32(&bmp->header.width);
464 height = get_unaligned_le32(&bmp->header.height);
465 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
45d7f525
TWHT
466
467 x = 0;
468 y = height - 1;
469
470 while (decode) {
471 if (bmap[0] == BMP_RLE8_ESCAPE) {
472 switch (bmap[1]) {
473 case BMP_RLE8_EOL:
474 /* end of line */
475 bmap += 2;
476 x = 0;
477 y--;
478 /* 16bpix, 2-byte per pixel, width should *2 */
479 fb -= (width * 2 + lcd_line_length);
480 break;
481 case BMP_RLE8_EOBMP:
482 /* end of bitmap */
483 decode = 0;
484 break;
485 case BMP_RLE8_DELTA:
486 /* delta run */
487 x += bmap[2];
488 y -= bmap[3];
489 /* 16bpix, 2-byte per pixel, x should *2 */
490 fb = (uchar *) (lcd_base + (y + y_off - 1)
491 * lcd_line_length + (x + x_off) * 2);
492 bmap += 4;
493 break;
494 default:
495 /* unencoded run */
496 runlen = bmap[1];
497 bmap += 2;
498 if (y < height) {
499 if (x < width) {
500 if (x + runlen > width)
501 cnt = width - x;
502 else
503 cnt = runlen;
504 draw_unencoded_bitmap(
505 (ushort **)&fb,
506 bmap, cmap, cnt);
507 }
508 x += runlen;
509 }
510 bmap += runlen;
511 if (runlen & 1)
512 bmap++;
513 }
514 } else {
515 /* encoded run */
516 if (y < height) {
517 runlen = bmap[0];
518 if (x < width) {
519 /* aggregate the same code */
520 while (bmap[0] == 0xff &&
521 bmap[2] != BMP_RLE8_ESCAPE &&
522 bmap[1] == bmap[3]) {
523 runlen += bmap[2];
524 bmap += 2;
525 }
526 if (x + runlen > width)
527 cnt = width - x;
528 else
529 cnt = runlen;
530 draw_encoded_bitmap((ushort **)&fb,
531 cmap[bmap[1]], cnt);
532 }
533 x += runlen;
534 }
535 bmap += 2;
536 }
537 }
538}
539#endif
540
27fad01b
NK
541__weak void fb_put_byte(uchar **fb, uchar **from)
542{
543 *(*fb)++ = *(*from)++;
544}
bfdcc65e
NK
545
546#if defined(CONFIG_BMP_16BPP)
b3d12e9b 547__weak void fb_put_word(uchar **fb, uchar **from)
bfdcc65e
NK
548{
549 *(*fb)++ = *(*from)++;
550 *(*fb)++ = *(*from)++;
551}
bfdcc65e
NK
552#endif /* CONFIG_BMP_16BPP */
553
1c3dbe56 554__weak void lcd_set_cmap(struct bmp_image *bmp, unsigned colors)
0b29a896
NK
555{
556 int i;
1c3dbe56 557 struct bmp_color_table_entry cte;
0b29a896
NK
558 ushort *cmap = configuration_get_cmap();
559
560 for (i = 0; i < colors; ++i) {
561 cte = bmp->color_table[i];
562 *cmap = (((cte.red) << 8) & 0xf800) |
563 (((cte.green) << 3) & 0x07e0) |
564 (((cte.blue) >> 3) & 0x001f);
0b29a896 565 cmap++;
0b29a896
NK
566 }
567}
568
8655b6f8
WD
569int lcd_display_bitmap(ulong bmp_image, int x, int y)
570{
00cc5595 571 ushort *cmap_base = NULL;
8655b6f8
WD
572 ushort i, j;
573 uchar *fb;
1c3dbe56 574 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0);
8655b6f8 575 uchar *bmap;
fecac46c 576 ushort padded_width;
b245e65e 577 unsigned long width, height, byte_width;
e8143e72 578 unsigned long pwidth = panel_info.vl_col;
b245e65e 579 unsigned colors, bpix, bmp_bpix;
8d379f17 580 int hdr_size;
021414a3 581 struct bmp_color_table_entry *palette;
8655b6f8 582
6b035141
JH
583 if (!bmp || !(bmp->header.signature[0] == 'B' &&
584 bmp->header.signature[1] == 'M')) {
8f47d917
NK
585 printf("Error: no valid bmp image at %lx\n", bmp_image);
586
8655b6f8 587 return 1;
b245e65e 588 }
8655b6f8 589
021414a3 590 palette = bmp->color_table;
dca2a1c1
PM
591 width = get_unaligned_le32(&bmp->header.width);
592 height = get_unaligned_le32(&bmp->header.height);
593 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
8d379f17
SG
594 hdr_size = get_unaligned_le16(&bmp->header.size);
595 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix);
dca2a1c1 596
b245e65e 597 colors = 1 << bmp_bpix;
8655b6f8
WD
598
599 bpix = NBITS(panel_info.vl_bpix);
600
6b035141 601 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
b245e65e
GL
602 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
603 bpix, bmp_bpix);
8f47d917 604
8655b6f8
WD
605 return 1;
606 }
607
a305fb15
HP
608 /*
609 * We support displaying 8bpp BMPs on 16bpp LCDs
610 * and displaying 24bpp BMPs on 32bpp LCDs
611 * */
612 if (bpix != bmp_bpix &&
613 !(bmp_bpix == 8 && bpix == 16) &&
614 !(bmp_bpix == 24 && bpix == 32)) {
8655b6f8 615 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
dca2a1c1 616 bpix, get_unaligned_le16(&bmp->header.bit_count));
8655b6f8
WD
617 return 1;
618 }
619
8d379f17
SG
620 debug("Display-bmp: %d x %d with %d colors, display %d\n",
621 (int)width, (int)height, (int)colors, 1 << bpix);
8655b6f8 622
0b29a896
NK
623 if (bmp_bpix == 8)
624 lcd_set_cmap(bmp, colors);
e8143e72 625
6b035141 626 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
1ca298ce
MW
627
628#ifdef CONFIG_SPLASH_SCREEN_ALIGN
7c7e280a
NK
629 splash_align_axis(&x, pwidth, width);
630 splash_align_axis(&y, panel_info.vl_row, height);
1ca298ce
MW
631#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
632
8f47d917 633 if ((x + width) > pwidth)
e8143e72 634 width = pwidth - x;
8f47d917 635 if ((y + height) > panel_info.vl_row)
8655b6f8
WD
636 height = panel_info.vl_row - y;
637
dca2a1c1
PM
638 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
639 fb = (uchar *)(lcd_base +
8d46d5b1 640 (y + height - 1) * lcd_line_length + x * bpix / 8);
a303dfb0 641
b245e65e 642 switch (bmp_bpix) {
c8d2febc 643 case 1:
0156444c 644 case 8: {
0b29a896 645 cmap_base = configuration_get_cmap();
45d7f525 646#ifdef CONFIG_LCD_BMP_RLE8
dca2a1c1 647 u32 compression = get_unaligned_le32(&bmp->header.compression);
8d379f17 648 debug("compressed %d %d\n", compression, BMP_BI_RLE8);
dca2a1c1 649 if (compression == BMP_BI_RLE8) {
45d7f525
TWHT
650 if (bpix != 16) {
651 /* TODO implement render code for bpix != 16 */
652 printf("Error: only support 16 bpix");
653 return 1;
654 }
655 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
656 break;
657 }
658#endif
659
b245e65e
GL
660 if (bpix != 16)
661 byte_width = width;
662 else
663 byte_width = width * 2;
664
a303dfb0
MJ
665 for (i = 0; i < height; ++i) {
666 WATCHDOG_RESET();
b245e65e
GL
667 for (j = 0; j < width; j++) {
668 if (bpix != 16) {
27fad01b 669 fb_put_byte(&fb, &bmap);
b245e65e 670 } else {
8d379f17
SG
671 struct bmp_color_table_entry *entry;
672 uint val;
673
674 if (cmap_base) {
675 val = cmap_base[*bmap];
676 } else {
677 entry = &palette[*bmap];
678 val = entry->blue >> 3 |
679 entry->green >> 2 << 5 |
680 entry->red >> 3 << 11;
681 }
682 *(uint16_t *)fb = val;
683 bmap++;
b245e65e
GL
684 fb += sizeof(uint16_t) / sizeof(*fb);
685 }
686 }
fecac46c 687 bmap += (padded_width - width);
6b035141 688 fb -= byte_width + lcd_line_length;
a303dfb0
MJ
689 }
690 break;
0156444c 691 }
a303dfb0
MJ
692#if defined(CONFIG_BMP_16BPP)
693 case 16:
694 for (i = 0; i < height; ++i) {
695 WATCHDOG_RESET();
bfdcc65e
NK
696 for (j = 0; j < width; j++)
697 fb_put_word(&fb, &bmap);
698
fecac46c 699 bmap += (padded_width - width) * 2;
6b035141 700 fb -= width * 2 + lcd_line_length;
a303dfb0
MJ
701 }
702 break;
703#endif /* CONFIG_BMP_16BPP */
10ba6b33 704#if defined(CONFIG_BMP_24BPP)
a305fb15
HP
705 case 24:
706 for (i = 0; i < height; ++i) {
707 for (j = 0; j < width; j++) {
708 *(fb++) = *(bmap++);
709 *(fb++) = *(bmap++);
710 *(fb++) = *(bmap++);
711 *(fb++) = 0;
712 }
713 fb -= lcd_line_length + width * (bpix / 8);
714 }
715 break;
10ba6b33 716#endif /* CONFIG_BMP_24BPP */
fb6a9aab
DL
717#if defined(CONFIG_BMP_32BPP)
718 case 32:
719 for (i = 0; i < height; ++i) {
720 for (j = 0; j < width; j++) {
721 *(fb++) = *(bmap++);
722 *(fb++) = *(bmap++);
723 *(fb++) = *(bmap++);
724 *(fb++) = *(bmap++);
725 }
6b035141 726 fb -= lcd_line_length + width * (bpix / 8);
fb6a9aab
DL
727 }
728 break;
729#endif /* CONFIG_BMP_32BPP */
a303dfb0
MJ
730 default:
731 break;
732 };
8655b6f8 733
9a8efc46 734 lcd_sync();
8f47d917 735 return 0;
8655b6f8 736}
c3517f91 737#endif
8655b6f8 738
7bf71d1f 739static void lcd_logo(void)
8655b6f8 740{
bf21a5de 741 lcd_logo_plot(0, 0);
8655b6f8 742
6b59e03e 743#ifdef CONFIG_LCD_INFO
140beb94
NK
744 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
745 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
6b59e03e
HS
746 lcd_show_board_info();
747#endif /* CONFIG_LCD_INFO */
8655b6f8
WD
748}
749
c0880485
NK
750#ifdef CONFIG_SPLASHIMAGE_GUARD
751static int on_splashimage(const char *name, const char *value, enum env_op op,
752 int flags)
753{
754 ulong addr;
755 int aligned;
756
757 if (op == env_op_delete)
758 return 0;
759
760 addr = simple_strtoul(value, NULL, 16);
761 /* See README.displaying-bmps */
762 aligned = (addr % 4 == 2);
763 if (!aligned) {
764 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
765 return -1;
766 }
767
768 return 0;
769}
770
771U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
772#endif
773
395166cf
VB
774int lcd_get_pixel_width(void)
775{
776 return panel_info.vl_col;
777}
778
779int lcd_get_pixel_height(void)
780{
781 return panel_info.vl_row;
782}