]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/lcd.c
autoboot.c: Fill env vars in process_fdt_options() only if TEXT_BASE is set
[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)
69 flush_dcache_range((u32)lcd_base,
70 (u32)(lcd_base + lcd_get_size(&line_length)));
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
NK
225 if (do_splash) {
226 s = getenv("splashimage");
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);
565#if defined(CONFIG_MPC823)
566 cmap--;
567#else
568 cmap++;
569#endif
570 }
571}
572
8655b6f8
WD
573int lcd_display_bitmap(ulong bmp_image, int x, int y)
574{
00cc5595 575 ushort *cmap_base = NULL;
8655b6f8
WD
576 ushort i, j;
577 uchar *fb;
1c3dbe56 578 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0);
8655b6f8 579 uchar *bmap;
fecac46c 580 ushort padded_width;
b245e65e 581 unsigned long width, height, byte_width;
e8143e72 582 unsigned long pwidth = panel_info.vl_col;
b245e65e 583 unsigned colors, bpix, bmp_bpix;
8d379f17
SG
584 int hdr_size;
585 struct bmp_color_table_entry *palette = bmp->color_table;
8655b6f8 586
6b035141
JH
587 if (!bmp || !(bmp->header.signature[0] == 'B' &&
588 bmp->header.signature[1] == 'M')) {
8f47d917
NK
589 printf("Error: no valid bmp image at %lx\n", bmp_image);
590
8655b6f8 591 return 1;
b245e65e 592 }
8655b6f8 593
dca2a1c1
PM
594 width = get_unaligned_le32(&bmp->header.width);
595 height = get_unaligned_le32(&bmp->header.height);
596 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
8d379f17
SG
597 hdr_size = get_unaligned_le16(&bmp->header.size);
598 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix);
dca2a1c1 599
b245e65e 600 colors = 1 << bmp_bpix;
8655b6f8
WD
601
602 bpix = NBITS(panel_info.vl_bpix);
603
6b035141 604 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
b245e65e
GL
605 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
606 bpix, bmp_bpix);
8f47d917 607
8655b6f8
WD
608 return 1;
609 }
610
a305fb15
HP
611 /*
612 * We support displaying 8bpp BMPs on 16bpp LCDs
613 * and displaying 24bpp BMPs on 32bpp LCDs
614 * */
615 if (bpix != bmp_bpix &&
616 !(bmp_bpix == 8 && bpix == 16) &&
617 !(bmp_bpix == 24 && bpix == 32)) {
8655b6f8 618 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
dca2a1c1 619 bpix, get_unaligned_le16(&bmp->header.bit_count));
8655b6f8
WD
620 return 1;
621 }
622
8d379f17
SG
623 debug("Display-bmp: %d x %d with %d colors, display %d\n",
624 (int)width, (int)height, (int)colors, 1 << bpix);
8655b6f8 625
0b29a896
NK
626 if (bmp_bpix == 8)
627 lcd_set_cmap(bmp, colors);
e8143e72 628
6b035141 629 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
1ca298ce
MW
630
631#ifdef CONFIG_SPLASH_SCREEN_ALIGN
7c7e280a
NK
632 splash_align_axis(&x, pwidth, width);
633 splash_align_axis(&y, panel_info.vl_row, height);
1ca298ce
MW
634#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
635
8f47d917 636 if ((x + width) > pwidth)
e8143e72 637 width = pwidth - x;
8f47d917 638 if ((y + height) > panel_info.vl_row)
8655b6f8
WD
639 height = panel_info.vl_row - y;
640
dca2a1c1
PM
641 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
642 fb = (uchar *)(lcd_base +
8d46d5b1 643 (y + height - 1) * lcd_line_length + x * bpix / 8);
a303dfb0 644
b245e65e 645 switch (bmp_bpix) {
c8d2febc 646 case 1:
0156444c 647 case 8: {
0b29a896 648 cmap_base = configuration_get_cmap();
45d7f525 649#ifdef CONFIG_LCD_BMP_RLE8
dca2a1c1 650 u32 compression = get_unaligned_le32(&bmp->header.compression);
8d379f17 651 debug("compressed %d %d\n", compression, BMP_BI_RLE8);
dca2a1c1 652 if (compression == BMP_BI_RLE8) {
45d7f525
TWHT
653 if (bpix != 16) {
654 /* TODO implement render code for bpix != 16 */
655 printf("Error: only support 16 bpix");
656 return 1;
657 }
658 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
659 break;
660 }
661#endif
662
b245e65e
GL
663 if (bpix != 16)
664 byte_width = width;
665 else
666 byte_width = width * 2;
667
a303dfb0
MJ
668 for (i = 0; i < height; ++i) {
669 WATCHDOG_RESET();
b245e65e
GL
670 for (j = 0; j < width; j++) {
671 if (bpix != 16) {
27fad01b 672 fb_put_byte(&fb, &bmap);
b245e65e 673 } else {
8d379f17
SG
674 struct bmp_color_table_entry *entry;
675 uint val;
676
677 if (cmap_base) {
678 val = cmap_base[*bmap];
679 } else {
680 entry = &palette[*bmap];
681 val = entry->blue >> 3 |
682 entry->green >> 2 << 5 |
683 entry->red >> 3 << 11;
684 }
685 *(uint16_t *)fb = val;
686 bmap++;
b245e65e
GL
687 fb += sizeof(uint16_t) / sizeof(*fb);
688 }
689 }
fecac46c 690 bmap += (padded_width - width);
6b035141 691 fb -= byte_width + lcd_line_length;
a303dfb0
MJ
692 }
693 break;
0156444c 694 }
a303dfb0
MJ
695#if defined(CONFIG_BMP_16BPP)
696 case 16:
697 for (i = 0; i < height; ++i) {
698 WATCHDOG_RESET();
bfdcc65e
NK
699 for (j = 0; j < width; j++)
700 fb_put_word(&fb, &bmap);
701
fecac46c 702 bmap += (padded_width - width) * 2;
6b035141 703 fb -= width * 2 + lcd_line_length;
a303dfb0
MJ
704 }
705 break;
706#endif /* CONFIG_BMP_16BPP */
a305fb15
HP
707#if defined(CONFIG_BMP_24BMP)
708 case 24:
709 for (i = 0; i < height; ++i) {
710 for (j = 0; j < width; j++) {
711 *(fb++) = *(bmap++);
712 *(fb++) = *(bmap++);
713 *(fb++) = *(bmap++);
714 *(fb++) = 0;
715 }
716 fb -= lcd_line_length + width * (bpix / 8);
717 }
718 break;
719#endif /* CONFIG_BMP_24BMP */
fb6a9aab
DL
720#if defined(CONFIG_BMP_32BPP)
721 case 32:
722 for (i = 0; i < height; ++i) {
723 for (j = 0; j < width; j++) {
724 *(fb++) = *(bmap++);
725 *(fb++) = *(bmap++);
726 *(fb++) = *(bmap++);
727 *(fb++) = *(bmap++);
728 }
6b035141 729 fb -= lcd_line_length + width * (bpix / 8);
fb6a9aab
DL
730 }
731 break;
732#endif /* CONFIG_BMP_32BPP */
a303dfb0
MJ
733 default:
734 break;
735 };
8655b6f8 736
9a8efc46 737 lcd_sync();
8f47d917 738 return 0;
8655b6f8 739}
c3517f91 740#endif
8655b6f8 741
7bf71d1f 742static void lcd_logo(void)
8655b6f8 743{
bf21a5de 744 lcd_logo_plot(0, 0);
8655b6f8 745
6b59e03e 746#ifdef CONFIG_LCD_INFO
140beb94
NK
747 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
748 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
6b59e03e
HS
749 lcd_show_board_info();
750#endif /* CONFIG_LCD_INFO */
8655b6f8
WD
751}
752
c0880485
NK
753#ifdef CONFIG_SPLASHIMAGE_GUARD
754static int on_splashimage(const char *name, const char *value, enum env_op op,
755 int flags)
756{
757 ulong addr;
758 int aligned;
759
760 if (op == env_op_delete)
761 return 0;
762
763 addr = simple_strtoul(value, NULL, 16);
764 /* See README.displaying-bmps */
765 aligned = (addr % 4 == 2);
766 if (!aligned) {
767 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
768 return -1;
769 }
770
771 return 0;
772}
773
774U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
775#endif
776
395166cf
VB
777int lcd_get_pixel_width(void)
778{
779 return panel_info.vl_col;
780}
781
782int lcd_get_pixel_height(void)
783{
784 return panel_info.vl_row;
785}