]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/lcd.c
sandbox: Add a simple sound driver
[people/ms/u-boot.git] / common / lcd.c
CommitLineData
8655b6f8
WD
1/*
2 * Common LCD routines for supported CPUs
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
10/************************************************************************/
11/* ** HEADER FILES */
12/************************************************************************/
13
14/* #define DEBUG */
15
16#include <config.h>
17#include <common.h>
18#include <command.h>
8655b6f8 19#include <stdarg.h>
c0880485
NK
20#include <search.h>
21#include <env_callback.h>
8655b6f8 22#include <linux/types.h>
52cb4d4f 23#include <stdio_dev.h>
8655b6f8
WD
24#if defined(CONFIG_POST)
25#include <post.h>
26#endif
27#include <lcd.h>
8b0bfc68 28#include <watchdog.h>
dca2a1c1 29#include <asm/unaligned.h>
dd4425e8
RW
30#include <splash.h>
31
abc20aba
MV
32#if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
33 defined(CONFIG_CPU_MONAHANS)
34#define CONFIG_CPU_PXA
8655b6f8
WD
35#include <asm/byteorder.h>
36#endif
37
38#if defined(CONFIG_MPC823)
8655b6f8
WD
39#include <lcdvideo.h>
40#endif
41
39cf4804
SP
42#if defined(CONFIG_ATMEL_LCD)
43#include <atmel_lcdc.h>
39cf4804
SP
44#endif
45
6a195d2d
SW
46#if defined(CONFIG_LCD_DT_SIMPLEFB)
47#include <libfdt.h>
48#endif
49
8655b6f8
WD
50/************************************************************************/
51/* ** FONT DATA */
52/************************************************************************/
53#include <video_font.h> /* Get font data, width and height */
54
88804d19
WD
55/************************************************************************/
56/* ** LOGO DATA */
57/************************************************************************/
58#ifdef CONFIG_LCD_LOGO
59# include <bmp_logo.h> /* Get logo data, width and height */
c270730f 60# include <bmp_logo_data.h>
acb13868 61# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
88804d19
WD
62# error Default Color Map overlaps with Logo Color Map
63# endif
64#endif
8655b6f8 65
676d319e
SG
66#ifndef CONFIG_LCD_ALIGNMENT
67#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
68#endif
69
0d89efef
SG
70/* By default we scroll by a single line */
71#ifndef CONFIG_CONSOLE_SCROLL_LINES
72#define CONFIG_CONSOLE_SCROLL_LINES 1
73#endif
74
a5796c51
JH
75/************************************************************************/
76/* ** CONSOLE DEFINITIONS & FUNCTIONS */
77/************************************************************************/
78#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
79# define CONSOLE_ROWS ((panel_info.vl_row-BMP_LOGO_HEIGHT) \
80 / VIDEO_FONT_HEIGHT)
81#else
82# define CONSOLE_ROWS (panel_info.vl_row / VIDEO_FONT_HEIGHT)
83#endif
84
85#define CONSOLE_COLS (panel_info.vl_col / VIDEO_FONT_WIDTH)
86#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * lcd_line_length)
87#define CONSOLE_ROW_FIRST lcd_console_address
88#define CONSOLE_ROW_SECOND (lcd_console_address + CONSOLE_ROW_SIZE)
89#define CONSOLE_ROW_LAST (lcd_console_address + CONSOLE_SIZE \
90 - CONSOLE_ROW_SIZE)
91#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
92#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
d87080b7 93
a5796c51
JH
94#if LCD_BPP == LCD_MONOCHROME
95# define COLOR_MASK(c) ((c) | (c) << 1 | (c) << 2 | (c) << 3 | \
96 (c) << 4 | (c) << 5 | (c) << 6 | (c) << 7)
97#elif (LCD_BPP == LCD_COLOR8) || (LCD_BPP == LCD_COLOR16)
98# define COLOR_MASK(c) (c)
99#else
100# error Unsupported LCD BPP.
101#endif
102
d87080b7 103DECLARE_GLOBAL_DATA_PTR;
8655b6f8 104
8f47d917
NK
105static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
106static inline void lcd_puts_xy(ushort x, ushort y, uchar *s);
107static inline void lcd_putc_xy(ushort x, ushort y, uchar c);
8655b6f8 108
8f47d917 109static int lcd_init(void *lcdbase);
8655b6f8 110
6b035141 111static void *lcd_logo(void);
8655b6f8 112
8f47d917
NK
113static int lcd_getbgcolor(void);
114static void lcd_setfgcolor(int color);
115static void lcd_setbgcolor(int color);
8655b6f8 116
46d1d5dd
WD
117static int lcd_color_fg;
118static int lcd_color_bg;
f1d205a1 119int lcd_line_length;
46d1d5dd 120
8655b6f8 121char lcd_is_enabled = 0;
8655b6f8 122
f1d205a1
JH
123static short console_col;
124static short console_row;
9a8efc46 125
f1d205a1 126static void *lcd_console_address;
00a0ca59 127static void *lcd_base; /* Start of framebuffer memory */
9a8efc46 128
9a8efc46 129static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
8655b6f8
WD
130
131/************************************************************************/
132
9a8efc46
SG
133/* Flush LCD activity to the caches */
134void lcd_sync(void)
135{
136 /*
137 * flush_dcache_range() is declared in common.h but it seems that some
138 * architectures do not actually implement it. Is there a way to find
139 * out whether it exists? For now, ARM is safe.
140 */
141#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
142 int line_length;
143
144 if (lcd_flush_dcache)
145 flush_dcache_range((u32)lcd_base,
146 (u32)(lcd_base + lcd_get_size(&line_length)));
147#endif
148}
149
150void lcd_set_flush_dcache(int flush)
151{
152 lcd_flush_dcache = (flush != 0);
153}
154
8655b6f8
WD
155/*----------------------------------------------------------------------*/
156
8f47d917 157static void console_scrollup(void)
8655b6f8 158{
0d89efef
SG
159 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
160
161 /* Copy up rows ignoring those that will be overwritten */
162 memcpy(CONSOLE_ROW_FIRST,
163 lcd_console_address + CONSOLE_ROW_SIZE * rows,
164 CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows);
165
166 /* Clear the last rows */
167 memset(lcd_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows,
168 COLOR_MASK(lcd_color_bg),
6b035141 169 CONSOLE_ROW_SIZE * rows);
8655b6f8 170
9a8efc46 171 lcd_sync();
0d89efef 172 console_row -= rows;
8655b6f8
WD
173}
174
175/*----------------------------------------------------------------------*/
176
8f47d917 177static inline void console_back(void)
8655b6f8
WD
178{
179 if (--console_col < 0) {
180 console_col = CONSOLE_COLS-1 ;
6b035141 181 if (--console_row < 0)
8655b6f8 182 console_row = 0;
8655b6f8
WD
183 }
184
8f47d917
NK
185 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
186 console_row * VIDEO_FONT_HEIGHT, ' ');
8655b6f8
WD
187}
188
189/*----------------------------------------------------------------------*/
190
8f47d917 191static inline void console_newline(void)
8655b6f8 192{
8655b6f8
WD
193 console_col = 0;
194
195 /* Check if we need to scroll the terminal */
6b035141 196 if (++console_row >= CONSOLE_ROWS)
8f47d917 197 console_scrollup();
6b035141 198 else
9a8efc46 199 lcd_sync();
8655b6f8
WD
200}
201
202/*----------------------------------------------------------------------*/
203
8f47d917 204void lcd_putc(const char c)
8655b6f8
WD
205{
206 if (!lcd_is_enabled) {
207 serial_putc(c);
8f47d917 208
8655b6f8
WD
209 return;
210 }
211
212 switch (c) {
8f47d917
NK
213 case '\r':
214 console_col = 0;
8655b6f8 215
8f47d917
NK
216 return;
217 case '\n':
218 console_newline();
8655b6f8 219
8f47d917 220 return;
8655b6f8 221 case '\t': /* Tab (8 chars alignment) */
8f47d917
NK
222 console_col += 8;
223 console_col &= ~7;
8655b6f8 224
8f47d917
NK
225 if (console_col >= CONSOLE_COLS)
226 console_newline();
8655b6f8 227
8f47d917
NK
228 return;
229 case '\b':
230 console_back();
8655b6f8 231
8f47d917
NK
232 return;
233 default:
234 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
235 console_row * VIDEO_FONT_HEIGHT, c);
236 if (++console_col >= CONSOLE_COLS)
237 console_newline();
8655b6f8 238 }
8655b6f8
WD
239}
240
241/*----------------------------------------------------------------------*/
242
8f47d917 243void lcd_puts(const char *s)
8655b6f8
WD
244{
245 if (!lcd_is_enabled) {
8f47d917
NK
246 serial_puts(s);
247
8655b6f8
WD
248 return;
249 }
250
6b035141 251 while (*s)
8f47d917 252 lcd_putc(*s++);
6b035141 253
9a8efc46 254 lcd_sync();
8655b6f8
WD
255}
256
15b17ab5
HS
257/*----------------------------------------------------------------------*/
258
259void lcd_printf(const char *fmt, ...)
260{
261 va_list args;
262 char buf[CONFIG_SYS_PBSIZE];
263
264 va_start(args, fmt);
265 vsprintf(buf, fmt, args);
266 va_end(args);
267
268 lcd_puts(buf);
269}
270
8655b6f8
WD
271/************************************************************************/
272/* ** Low-Level Graphics Routines */
273/************************************************************************/
274
8f47d917 275static void lcd_drawchars(ushort x, ushort y, uchar *str, int count)
8655b6f8
WD
276{
277 uchar *dest;
be547c6d
MV
278 ushort row;
279
0f999c49
AG
280#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
281 y += BMP_LOGO_HEIGHT;
282#endif
283
be547c6d
MV
284#if LCD_BPP == LCD_MONOCHROME
285 ushort off = x * (1 << LCD_BPP) % 8;
286#endif
8655b6f8
WD
287
288 dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
8655b6f8 289
8f47d917 290 for (row = 0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
8655b6f8 291 uchar *s = str;
8655b6f8 292 int i;
acb13868
AR
293#if LCD_BPP == LCD_COLOR16
294 ushort *d = (ushort *)dest;
295#else
296 uchar *d = dest;
297#endif
8655b6f8
WD
298
299#if LCD_BPP == LCD_MONOCHROME
6b035141 300 uchar rest = *d & -(1 << (8 - off));
8655b6f8
WD
301 uchar sym;
302#endif
8f47d917 303 for (i = 0; i < count; ++i) {
8655b6f8
WD
304 uchar c, bits;
305
306 c = *s++;
307 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
308
309#if LCD_BPP == LCD_MONOCHROME
310 sym = (COLOR_MASK(lcd_color_fg) & bits) |
8f47d917 311 (COLOR_MASK(lcd_color_bg) & ~bits);
8655b6f8
WD
312
313 *d++ = rest | (sym >> off);
314 rest = sym << (8-off);
315#elif LCD_BPP == LCD_COLOR8
8f47d917 316 for (c = 0; c < 8; ++c) {
8655b6f8
WD
317 *d++ = (bits & 0x80) ?
318 lcd_color_fg : lcd_color_bg;
319 bits <<= 1;
320 }
321#elif LCD_BPP == LCD_COLOR16
8f47d917 322 for (c = 0; c < 8; ++c) {
8655b6f8
WD
323 *d++ = (bits & 0x80) ?
324 lcd_color_fg : lcd_color_bg;
325 bits <<= 1;
326 }
327#endif
328 }
329#if LCD_BPP == LCD_MONOCHROME
6b035141 330 *d = rest | (*d & ((1 << (8 - off)) - 1));
8655b6f8
WD
331#endif
332 }
333}
334
335/*----------------------------------------------------------------------*/
336
8f47d917 337static inline void lcd_puts_xy(ushort x, ushort y, uchar *s)
8655b6f8 338{
0f999c49 339 lcd_drawchars(x, y, s, strlen((char *)s));
8655b6f8
WD
340}
341
342/*----------------------------------------------------------------------*/
343
8f47d917 344static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
8655b6f8 345{
0f999c49 346 lcd_drawchars(x, y, &c, 1);
8655b6f8
WD
347}
348
349/************************************************************************/
350/** Small utility to check that you got the colours right */
351/************************************************************************/
352#ifdef LCD_TEST_PATTERN
353
354#define N_BLK_VERT 2
355#define N_BLK_HOR 3
356
6b035141 357static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
8655b6f8
WD
358 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
359 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
360};
361
8f47d917 362static void test_pattern(void)
8655b6f8
WD
363{
364 ushort v_max = panel_info.vl_row;
365 ushort h_max = panel_info.vl_col;
366 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
367 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
368 ushort v, h;
369 uchar *pix = (uchar *)lcd_base;
370
8f47d917 371 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
8655b6f8
WD
372 h_max, v_max, h_step, v_step);
373
374 /* WARNING: Code silently assumes 8bit/pixel */
8f47d917 375 for (v = 0; v < v_max; ++v) {
8655b6f8 376 uchar iy = v / v_step;
8f47d917 377 for (h = 0; h < h_max; ++h) {
6b035141 378 uchar ix = N_BLK_HOR * iy + h / h_step;
8655b6f8
WD
379 *pix++ = test_colors[ix];
380 }
381 }
382}
383#endif /* LCD_TEST_PATTERN */
384
385
386/************************************************************************/
387/* ** GENERIC Initialization Routines */
388/************************************************************************/
cefa4717
AG
389/*
390 * With most lcd drivers the line length is set up
391 * by calculating it from panel_info parameters. Some
392 * drivers need to calculate the line length differently,
393 * so make the function weak to allow overriding it.
394 */
395__weak int lcd_get_size(int *line_length)
676d319e
SG
396{
397 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
398 return *line_length * panel_info.vl_row;
399}
400
6b035141 401int drv_lcd_init(void)
8655b6f8 402{
52cb4d4f 403 struct stdio_dev lcddev;
8655b6f8
WD
404 int rc;
405
6b035141 406 lcd_base = (void *) gd->fb_base;
8655b6f8 407
8f47d917 408 lcd_init(lcd_base); /* LCD initialization */
8655b6f8
WD
409
410 /* Device initialization */
8f47d917 411 memset(&lcddev, 0, sizeof(lcddev));
8655b6f8 412
8f47d917 413 strcpy(lcddev.name, "lcd");
8655b6f8
WD
414 lcddev.ext = 0; /* No extensions */
415 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
416 lcddev.putc = lcd_putc; /* 'putc' function */
417 lcddev.puts = lcd_puts; /* 'puts' function */
418
6b035141 419 rc = stdio_register(&lcddev);
8655b6f8
WD
420
421 return (rc == 0) ? 1 : rc;
422}
423
424/*----------------------------------------------------------------------*/
02110903 425void lcd_clear(void)
8655b6f8
WD
426{
427#if LCD_BPP == LCD_MONOCHROME
428 /* Setting the palette */
429 lcd_initcolregs();
430
431#elif LCD_BPP == LCD_COLOR8
432 /* Setting the palette */
8f47d917
NK
433 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
434 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
435 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
436 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
437 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
438 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
439 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
440 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
441 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
8655b6f8
WD
442#endif
443
6d0f6bcf 444#ifndef CONFIG_SYS_WHITE_ON_BLACK
8f47d917
NK
445 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
446 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
8655b6f8 447#else
8f47d917
NK
448 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
449 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
6d0f6bcf 450#endif /* CONFIG_SYS_WHITE_ON_BLACK */
8655b6f8
WD
451
452#ifdef LCD_TEST_PATTERN
453 test_pattern();
454#else
455 /* set framebuffer to background color */
8f47d917 456 memset((char *)lcd_base,
8655b6f8 457 COLOR_MASK(lcd_getbgcolor()),
6b035141 458 lcd_line_length * panel_info.vl_row);
8655b6f8
WD
459#endif
460 /* Paint the logo and retrieve LCD base address */
8f47d917 461 debug("[LCD] Drawing the logo...\n");
6b035141 462 lcd_console_address = lcd_logo();
8655b6f8
WD
463
464 console_col = 0;
465 console_row = 0;
9a8efc46
SG
466 lcd_sync();
467}
468
469static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
470 char *const argv[])
471{
472 lcd_clear();
473 return 0;
8655b6f8
WD
474}
475
476U_BOOT_CMD(
02110903 477 cls, 1, 1, do_lcd_clear,
2fb2604d 478 "clear screen",
a89c33db 479 ""
8655b6f8
WD
480);
481
482/*----------------------------------------------------------------------*/
483
8f47d917 484static int lcd_init(void *lcdbase)
8655b6f8
WD
485{
486 /* Initialize the lcd controller */
8f47d917 487 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
8655b6f8 488
8f47d917 489 lcd_ctrl_init(lcdbase);
1d3dea12
AG
490
491 /*
492 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi_b) ignores
493 * the 'lcdbase' argument and uses custom lcd base address
494 * by setting up gd->fb_base. Check for this condition and fixup
495 * 'lcd_base' address.
496 */
497 if ((unsigned long)lcdbase != gd->fb_base)
498 lcd_base = (void *)gd->fb_base;
499
500 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
501
6d330719 502 lcd_get_size(&lcd_line_length);
6f93d2b8 503 lcd_is_enabled = 1;
02110903 504 lcd_clear();
6b035141 505 lcd_enable();
8655b6f8
WD
506
507 /* Initialize the console */
508 console_col = 0;
88804d19 509#ifdef CONFIG_LCD_INFO_BELOW_LOGO
8655b6f8
WD
510 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
511#else
512 console_row = 1; /* leave 1 blank line below logo */
513#endif
8655b6f8
WD
514
515 return 0;
516}
517
518
519/************************************************************************/
520/* ** ROM capable initialization part - needed to reserve FB memory */
521/************************************************************************/
522/*
523 * This is called early in the system initialization to grab memory
524 * for the LCD controller.
525 * Returns new address for monitor, after reserving LCD buffer memory
526 *
527 * Note that this is running from ROM, so no write access to global data.
528 */
8f47d917 529ulong lcd_setmem(ulong addr)
8655b6f8
WD
530{
531 ulong size;
676d319e 532 int line_length;
8655b6f8 533
8f47d917
NK
534 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
535 panel_info.vl_row, NBITS(panel_info.vl_bpix));
8655b6f8 536
676d319e 537 size = lcd_get_size(&line_length);
8655b6f8 538
676d319e
SG
539 /* Round up to nearest full page, or MMU section if defined */
540 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
541 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
8655b6f8
WD
542
543 /* Allocate pages for the frame buffer. */
544 addr -= size;
545
6b035141
JH
546 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
547 size >> 10, addr);
8655b6f8 548
8f47d917 549 return addr;
8655b6f8
WD
550}
551
552/*----------------------------------------------------------------------*/
553
8f47d917 554static void lcd_setfgcolor(int color)
8655b6f8 555{
39cf4804 556 lcd_color_fg = color;
8655b6f8
WD
557}
558
559/*----------------------------------------------------------------------*/
560
8f47d917 561static void lcd_setbgcolor(int color)
8655b6f8 562{
39cf4804 563 lcd_color_bg = color;
8655b6f8
WD
564}
565
566/*----------------------------------------------------------------------*/
567
46d1d5dd 568int lcd_getfgcolor(void)
8655b6f8
WD
569{
570 return lcd_color_fg;
571}
8655b6f8
WD
572
573/*----------------------------------------------------------------------*/
574
8f47d917 575static int lcd_getbgcolor(void)
8655b6f8
WD
576{
577 return lcd_color_bg;
578}
579
8655b6f8
WD
580/************************************************************************/
581/* ** Chipset depending Bitmap / Logo stuff... */
582/************************************************************************/
203c37b8
NK
583static inline ushort *configuration_get_cmap(void)
584{
585#if defined CONFIG_CPU_PXA
586 struct pxafb_info *fbi = &panel_info.pxa;
587 return (ushort *)fbi->palette;
588#elif defined(CONFIG_MPC823)
589 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
590 cpm8xx_t *cp = &(immr->im_cpm);
591 return (ushort *)&(cp->lcd_cmap[255 * sizeof(ushort)]);
592#elif defined(CONFIG_ATMEL_LCD)
593 return (ushort *)(panel_info.mmio + ATMEL_LCDC_LUT(0));
d23019f3
AG
594#elif !defined(CONFIG_ATMEL_HLCD) && !defined(CONFIG_EXYNOS_FB)
595 return panel_info.cmap;
6b035141 596#elif defined(CONFIG_LCD_LOGO)
d23019f3
AG
597 return bmp_logo_palette;
598#else
599 return NULL;
600#endif
203c37b8
NK
601}
602
8655b6f8 603#ifdef CONFIG_LCD_LOGO
8f47d917 604void bitmap_plot(int x, int y)
8655b6f8 605{
39cf4804 606#ifdef CONFIG_ATMEL_LCD
203c37b8 607 uint *cmap = (uint *)bmp_logo_palette;
39cf4804 608#else
203c37b8 609 ushort *cmap = (ushort *)bmp_logo_palette;
39cf4804 610#endif
8655b6f8
WD
611 ushort i, j;
612 uchar *bmap;
613 uchar *fb;
614 ushort *fb16;
203c37b8
NK
615#if defined(CONFIG_MPC823)
616 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
617 cpm8xx_t *cp = &(immr->im_cpm);
8655b6f8 618#endif
317461c1 619 unsigned bpix = NBITS(panel_info.vl_bpix);
8655b6f8 620
8f47d917 621 debug("Logo: width %d height %d colors %d cmap %d\n",
8655b6f8 622 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
095407da 623 ARRAY_SIZE(bmp_logo_palette));
8655b6f8
WD
624
625 bmap = &bmp_logo_bitmap[0];
317461c1 626 fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
8655b6f8 627
317461c1 628 if (bpix < 12) {
203c37b8
NK
629 /* Leave room for default color map
630 * default case: generic system with no cmap (most likely 16bpp)
631 * cmap was set to the source palette, so no change is done.
632 * This avoids even more ifdefs in the next stanza
633 */
634#if defined(CONFIG_MPC823)
8f47d917 635 cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
39cf4804 636#elif defined(CONFIG_ATMEL_LCD)
203c37b8 637 cmap = (uint *)configuration_get_cmap();
acb13868 638#else
203c37b8 639 cmap = configuration_get_cmap();
8655b6f8
WD
640#endif
641
642 WATCHDOG_RESET();
643
644 /* Set color map */
095407da 645 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
8655b6f8 646 ushort colreg = bmp_logo_palette[i];
39cf4804
SP
647#ifdef CONFIG_ATMEL_LCD
648 uint lut_entry;
649#ifdef CONFIG_ATMEL_LCD_BGR555
650 lut_entry = ((colreg & 0x000F) << 11) |
8f47d917
NK
651 ((colreg & 0x00F0) << 2) |
652 ((colreg & 0x0F00) >> 7);
39cf4804
SP
653#else /* CONFIG_ATMEL_LCD_RGB565 */
654 lut_entry = ((colreg & 0x000F) << 1) |
8f47d917
NK
655 ((colreg & 0x00F0) << 3) |
656 ((colreg & 0x0F00) << 4);
39cf4804
SP
657#endif
658 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
659 cmap++;
660#else /* !CONFIG_ATMEL_LCD */
6d0f6bcf 661#ifdef CONFIG_SYS_INVERT_COLORS
8655b6f8
WD
662 *cmap++ = 0xffff - colreg;
663#else
664 *cmap++ = colreg;
665#endif
39cf4804 666#endif /* CONFIG_ATMEL_LCD */
8655b6f8
WD
667 }
668
669 WATCHDOG_RESET();
670
8f47d917
NK
671 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
672 memcpy(fb, bmap, BMP_LOGO_WIDTH);
8655b6f8 673 bmap += BMP_LOGO_WIDTH;
6b035141 674 fb += panel_info.vl_col;
8655b6f8
WD
675 }
676 }
677 else { /* true color mode */
acb13868 678 u16 col16;
317461c1 679 fb16 = (ushort *)fb;
8f47d917
NK
680 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
681 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
acb13868
AR
682 col16 = bmp_logo_palette[(bmap[j]-16)];
683 fb16[j] =
684 ((col16 & 0x000F) << 1) |
685 ((col16 & 0x00F0) << 3) |
686 ((col16 & 0x0F00) << 4);
8655b6f8
WD
687 }
688 bmap += BMP_LOGO_WIDTH;
689 fb16 += panel_info.vl_col;
690 }
691 }
692
693 WATCHDOG_RESET();
9a8efc46 694 lcd_sync();
8655b6f8 695}
2b5cb3d3
AG
696#else
697static inline void bitmap_plot(int x, int y) {}
8655b6f8
WD
698#endif /* CONFIG_LCD_LOGO */
699
700/*----------------------------------------------------------------------*/
c3517f91 701#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
8655b6f8
WD
702/*
703 * Display the BMP file located at address bmp_image.
704 * Only uncompressed.
705 */
1ca298ce
MW
706
707#ifdef CONFIG_SPLASH_SCREEN_ALIGN
708#define BMP_ALIGN_CENTER 0x7FFF
7c7e280a
NK
709
710static void splash_align_axis(int *axis, unsigned long panel_size,
711 unsigned long picture_size)
712{
713 unsigned long panel_picture_delta = panel_size - picture_size;
714 unsigned long axis_alignment;
715
716 if (*axis == BMP_ALIGN_CENTER)
717 axis_alignment = panel_picture_delta / 2;
718 else if (*axis < 0)
719 axis_alignment = panel_picture_delta + *axis + 1;
720 else
721 return;
722
723 *axis = max(0, axis_alignment);
724}
1ca298ce
MW
725#endif
726
45d7f525
TWHT
727
728#ifdef CONFIG_LCD_BMP_RLE8
729
730#define BMP_RLE8_ESCAPE 0
731#define BMP_RLE8_EOL 0
732#define BMP_RLE8_EOBMP 1
733#define BMP_RLE8_DELTA 2
734
735static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
736 int cnt)
737{
738 while (cnt > 0) {
739 *(*fbp)++ = cmap[*bmap++];
740 cnt--;
741 }
742}
743
744static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
745{
746 ushort *fb = *fbp;
747 int cnt_8copy = cnt >> 3;
748
749 cnt -= cnt_8copy << 3;
750 while (cnt_8copy > 0) {
751 *fb++ = c;
752 *fb++ = c;
753 *fb++ = c;
754 *fb++ = c;
755 *fb++ = c;
756 *fb++ = c;
757 *fb++ = c;
758 *fb++ = c;
759 cnt_8copy--;
760 }
761 while (cnt > 0) {
762 *fb++ = c;
763 cnt--;
764 }
6b035141 765 *fbp = fb;
45d7f525
TWHT
766}
767
768/*
6b035141 769 * Do not call this function directly, must be called from lcd_display_bitmap.
45d7f525
TWHT
770 */
771static void lcd_display_rle8_bitmap(bmp_image_t *bmp, ushort *cmap, uchar *fb,
772 int x_off, int y_off)
773{
774 uchar *bmap;
775 ulong width, height;
776 ulong cnt, runlen;
777 int x, y;
778 int decode = 1;
779
dca2a1c1
PM
780 width = get_unaligned_le32(&bmp->header.width);
781 height = get_unaligned_le32(&bmp->header.height);
782 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
45d7f525
TWHT
783
784 x = 0;
785 y = height - 1;
786
787 while (decode) {
788 if (bmap[0] == BMP_RLE8_ESCAPE) {
789 switch (bmap[1]) {
790 case BMP_RLE8_EOL:
791 /* end of line */
792 bmap += 2;
793 x = 0;
794 y--;
795 /* 16bpix, 2-byte per pixel, width should *2 */
796 fb -= (width * 2 + lcd_line_length);
797 break;
798 case BMP_RLE8_EOBMP:
799 /* end of bitmap */
800 decode = 0;
801 break;
802 case BMP_RLE8_DELTA:
803 /* delta run */
804 x += bmap[2];
805 y -= bmap[3];
806 /* 16bpix, 2-byte per pixel, x should *2 */
807 fb = (uchar *) (lcd_base + (y + y_off - 1)
808 * lcd_line_length + (x + x_off) * 2);
809 bmap += 4;
810 break;
811 default:
812 /* unencoded run */
813 runlen = bmap[1];
814 bmap += 2;
815 if (y < height) {
816 if (x < width) {
817 if (x + runlen > width)
818 cnt = width - x;
819 else
820 cnt = runlen;
821 draw_unencoded_bitmap(
822 (ushort **)&fb,
823 bmap, cmap, cnt);
824 }
825 x += runlen;
826 }
827 bmap += runlen;
828 if (runlen & 1)
829 bmap++;
830 }
831 } else {
832 /* encoded run */
833 if (y < height) {
834 runlen = bmap[0];
835 if (x < width) {
836 /* aggregate the same code */
837 while (bmap[0] == 0xff &&
838 bmap[2] != BMP_RLE8_ESCAPE &&
839 bmap[1] == bmap[3]) {
840 runlen += bmap[2];
841 bmap += 2;
842 }
843 if (x + runlen > width)
844 cnt = width - x;
845 else
846 cnt = runlen;
847 draw_encoded_bitmap((ushort **)&fb,
848 cmap[bmap[1]], cnt);
849 }
850 x += runlen;
851 }
852 bmap += 2;
853 }
854 }
855}
856#endif
857
d23019f3 858#if defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
bfdcc65e 859#define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
d23019f3
AG
860#else
861#define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
bfdcc65e
NK
862#endif
863
864#if defined(CONFIG_BMP_16BPP)
865#if defined(CONFIG_ATMEL_LCD_BGR555)
866static inline void fb_put_word(uchar **fb, uchar **from)
867{
868 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
869 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
870 *from += 2;
871}
872#else
873static inline void fb_put_word(uchar **fb, uchar **from)
874{
875 *(*fb)++ = *(*from)++;
876 *(*fb)++ = *(*from)++;
877}
878#endif
879#endif /* CONFIG_BMP_16BPP */
880
8655b6f8
WD
881int lcd_display_bitmap(ulong bmp_image, int x, int y)
882{
00cc5595
AG
883#if !defined(CONFIG_MCC200)
884 ushort *cmap = NULL;
885#endif
886 ushort *cmap_base = NULL;
8655b6f8
WD
887 ushort i, j;
888 uchar *fb;
889 bmp_image_t *bmp=(bmp_image_t *)bmp_image;
890 uchar *bmap;
fecac46c 891 ushort padded_width;
b245e65e 892 unsigned long width, height, byte_width;
e8143e72 893 unsigned long pwidth = panel_info.vl_col;
b245e65e 894 unsigned colors, bpix, bmp_bpix;
8655b6f8 895
6b035141
JH
896 if (!bmp || !(bmp->header.signature[0] == 'B' &&
897 bmp->header.signature[1] == 'M')) {
8f47d917
NK
898 printf("Error: no valid bmp image at %lx\n", bmp_image);
899
8655b6f8 900 return 1;
b245e65e 901 }
8655b6f8 902
dca2a1c1
PM
903 width = get_unaligned_le32(&bmp->header.width);
904 height = get_unaligned_le32(&bmp->header.height);
905 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
906
b245e65e 907 colors = 1 << bmp_bpix;
8655b6f8
WD
908
909 bpix = NBITS(panel_info.vl_bpix);
910
6b035141 911 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
b245e65e
GL
912 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
913 bpix, bmp_bpix);
8f47d917 914
8655b6f8
WD
915 return 1;
916 }
917
b245e65e 918 /* We support displaying 8bpp BMPs on 16bpp LCDs */
dad631cc 919 if (bpix != bmp_bpix && !(bmp_bpix == 8 && bpix == 16)) {
8655b6f8 920 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
dca2a1c1 921 bpix, get_unaligned_le16(&bmp->header.bit_count));
8655b6f8
WD
922 return 1;
923 }
924
8f47d917 925 debug("Display-bmp: %d x %d with %d colors\n",
8655b6f8
WD
926 (int)width, (int)height, (int)colors);
927
f6414714
WD
928#if !defined(CONFIG_MCC200)
929 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
b245e65e 930 if (bmp_bpix == 8) {
203c37b8 931 cmap = configuration_get_cmap();
b245e65e
GL
932 cmap_base = cmap;
933
8655b6f8 934 /* Set color map */
8f47d917 935 for (i = 0; i < colors; ++i) {
8655b6f8 936 bmp_color_table_entry_t cte = bmp->color_table[i];
1464eff7 937#if !defined(CONFIG_ATMEL_LCD)
8655b6f8
WD
938 ushort colreg =
939 ( ((cte.red) << 8) & 0xf800) |
59d80bf1
WD
940 ( ((cte.green) << 3) & 0x07e0) |
941 ( ((cte.blue) >> 3) & 0x001f) ;
6d0f6bcf 942#ifdef CONFIG_SYS_INVERT_COLORS
25d6712a 943 *cmap = 0xffff - colreg;
8655b6f8 944#else
25d6712a
WD
945 *cmap = colreg;
946#endif
b245e65e 947#if defined(CONFIG_MPC823)
25d6712a 948 cmap--;
b245e65e
GL
949#else
950 cmap++;
1464eff7
MJ
951#endif
952#else /* CONFIG_ATMEL_LCD */
953 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
8655b6f8
WD
954#endif
955 }
956 }
f6414714 957#endif
e8143e72
WD
958 /*
959 * BMP format for Monochrome assumes that the state of a
960 * pixel is described on a per Bit basis, not per Byte.
961 * So, in case of Monochrome BMP we should align widths
962 * on a byte boundary and convert them from Bit to Byte
963 * units.
511d0c72
WD
964 * Probably, PXA250 and MPC823 process 1bpp BMP images in
965 * their own ways, so make the converting to be MCC200
e8143e72
WD
966 * specific.
967 */
968#if defined(CONFIG_MCC200)
8f47d917 969 if (bpix == 1) {
e8143e72
WD
970 width = ((width + 7) & ~7) >> 3;
971 x = ((x + 7) & ~7) >> 3;
972 pwidth= ((pwidth + 7) & ~7) >> 3;
973 }
974#endif
975
6b035141 976 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
1ca298ce
MW
977
978#ifdef CONFIG_SPLASH_SCREEN_ALIGN
7c7e280a
NK
979 splash_align_axis(&x, pwidth, width);
980 splash_align_axis(&y, panel_info.vl_row, height);
1ca298ce
MW
981#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
982
8f47d917 983 if ((x + width) > pwidth)
e8143e72 984 width = pwidth - x;
8f47d917 985 if ((y + height) > panel_info.vl_row)
8655b6f8
WD
986 height = panel_info.vl_row - y;
987
dca2a1c1
PM
988 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
989 fb = (uchar *)(lcd_base +
8d46d5b1 990 (y + height - 1) * lcd_line_length + x * bpix / 8);
a303dfb0 991
b245e65e 992 switch (bmp_bpix) {
a303dfb0
MJ
993 case 1: /* pass through */
994 case 8:
45d7f525 995#ifdef CONFIG_LCD_BMP_RLE8
dca2a1c1
PM
996 u32 compression = get_unaligned_le32(&bmp->header.compression);
997 if (compression == BMP_BI_RLE8) {
45d7f525
TWHT
998 if (bpix != 16) {
999 /* TODO implement render code for bpix != 16 */
1000 printf("Error: only support 16 bpix");
1001 return 1;
1002 }
1003 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
1004 break;
1005 }
1006#endif
1007
b245e65e
GL
1008 if (bpix != 16)
1009 byte_width = width;
1010 else
1011 byte_width = width * 2;
1012
a303dfb0
MJ
1013 for (i = 0; i < height; ++i) {
1014 WATCHDOG_RESET();
b245e65e
GL
1015 for (j = 0; j < width; j++) {
1016 if (bpix != 16) {
bfdcc65e 1017 FB_PUT_BYTE(fb, bmap);
b245e65e
GL
1018 } else {
1019 *(uint16_t *)fb = cmap_base[*(bmap++)];
1020 fb += sizeof(uint16_t) / sizeof(*fb);
1021 }
1022 }
fecac46c 1023 bmap += (padded_width - width);
6b035141 1024 fb -= byte_width + lcd_line_length;
a303dfb0
MJ
1025 }
1026 break;
1027
1028#if defined(CONFIG_BMP_16BPP)
1029 case 16:
1030 for (i = 0; i < height; ++i) {
1031 WATCHDOG_RESET();
bfdcc65e
NK
1032 for (j = 0; j < width; j++)
1033 fb_put_word(&fb, &bmap);
1034
fecac46c 1035 bmap += (padded_width - width) * 2;
6b035141 1036 fb -= width * 2 + lcd_line_length;
a303dfb0
MJ
1037 }
1038 break;
1039#endif /* CONFIG_BMP_16BPP */
1040
fb6a9aab
DL
1041#if defined(CONFIG_BMP_32BPP)
1042 case 32:
1043 for (i = 0; i < height; ++i) {
1044 for (j = 0; j < width; j++) {
1045 *(fb++) = *(bmap++);
1046 *(fb++) = *(bmap++);
1047 *(fb++) = *(bmap++);
1048 *(fb++) = *(bmap++);
1049 }
6b035141 1050 fb -= lcd_line_length + width * (bpix / 8);
fb6a9aab
DL
1051 }
1052 break;
1053#endif /* CONFIG_BMP_32BPP */
a303dfb0
MJ
1054 default:
1055 break;
1056 };
8655b6f8 1057
9a8efc46 1058 lcd_sync();
8f47d917 1059 return 0;
8655b6f8 1060}
c3517f91 1061#endif
8655b6f8 1062
8f47d917 1063static void *lcd_logo(void)
8655b6f8 1064{
8655b6f8
WD
1065#ifdef CONFIG_SPLASH_SCREEN
1066 char *s;
1067 ulong addr;
1068 static int do_splash = 1;
1069
1070 if (do_splash && (s = getenv("splashimage")) != NULL) {
1ca298ce 1071 int x = 0, y = 0;
8655b6f8
WD
1072 do_splash = 0;
1073
581bb419 1074 if (splash_screen_prepare())
dd4425e8 1075 return (void *)lcd_base;
581bb419 1076
1ca298ce 1077 addr = simple_strtoul (s, NULL, 16);
ff8fb56b
AG
1078
1079 splash_get_pos(&x, &y);
1ca298ce 1080
d3a555ed 1081 if (bmp_display(addr, x, y) == 0)
8f47d917 1082 return (void *)lcd_base;
8655b6f8
WD
1083 }
1084#endif /* CONFIG_SPLASH_SCREEN */
1085
2b5cb3d3 1086 bitmap_plot(0, 0);
8655b6f8 1087
6b59e03e
HS
1088#ifdef CONFIG_LCD_INFO
1089 console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
1090 console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
1091 lcd_show_board_info();
1092#endif /* CONFIG_LCD_INFO */
39cf4804 1093
88804d19 1094#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
8f47d917 1095 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
8655b6f8 1096#else
8f47d917 1097 return (void *)lcd_base;
6b035141 1098#endif /* CONFIG_LCD_LOGO && !defined(CONFIG_LCD_INFO_BELOW_LOGO) */
8655b6f8
WD
1099}
1100
c0880485
NK
1101#ifdef CONFIG_SPLASHIMAGE_GUARD
1102static int on_splashimage(const char *name, const char *value, enum env_op op,
1103 int flags)
1104{
1105 ulong addr;
1106 int aligned;
1107
1108 if (op == env_op_delete)
1109 return 0;
1110
1111 addr = simple_strtoul(value, NULL, 16);
1112 /* See README.displaying-bmps */
1113 aligned = (addr % 4 == 2);
1114 if (!aligned) {
1115 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
1116 return -1;
1117 }
1118
1119 return 0;
1120}
1121
1122U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
1123#endif
1124
395166cf
VB
1125void lcd_position_cursor(unsigned col, unsigned row)
1126{
1127 console_col = min(col, CONSOLE_COLS - 1);
1128 console_row = min(row, CONSOLE_ROWS - 1);
1129}
1130
1131int lcd_get_pixel_width(void)
1132{
1133 return panel_info.vl_col;
1134}
1135
1136int lcd_get_pixel_height(void)
1137{
1138 return panel_info.vl_row;
1139}
1140
1141int lcd_get_screen_rows(void)
1142{
1143 return CONSOLE_ROWS;
1144}
1145
1146int lcd_get_screen_columns(void)
1147{
1148 return CONSOLE_COLS;
1149}
6a195d2d
SW
1150
1151#if defined(CONFIG_LCD_DT_SIMPLEFB)
1152static int lcd_dt_simplefb_configure_node(void *blob, int off)
1153{
1154 u32 stride;
1155 fdt32_t cells[2];
1156 int ret;
5af7d0f0 1157 static const char format[] =
6a195d2d
SW
1158#if LCD_BPP == LCD_COLOR16
1159 "r5g6b5";
1160#else
1161 "";
1162#endif
1163
1164 if (!format[0])
1165 return -1;
1166
1167 stride = panel_info.vl_col * 2;
1168
1169 cells[0] = cpu_to_fdt32(gd->fb_base);
1170 cells[1] = cpu_to_fdt32(stride * panel_info.vl_row);
1171 ret = fdt_setprop(blob, off, "reg", cells, sizeof(cells[0]) * 2);
1172 if (ret < 0)
1173 return -1;
1174
1175 cells[0] = cpu_to_fdt32(panel_info.vl_col);
1176 ret = fdt_setprop(blob, off, "width", cells, sizeof(cells[0]));
1177 if (ret < 0)
1178 return -1;
1179
1180 cells[0] = cpu_to_fdt32(panel_info.vl_row);
1181 ret = fdt_setprop(blob, off, "height", cells, sizeof(cells[0]));
1182 if (ret < 0)
1183 return -1;
1184
1185 cells[0] = cpu_to_fdt32(stride);
1186 ret = fdt_setprop(blob, off, "stride", cells, sizeof(cells[0]));
1187 if (ret < 0)
1188 return -1;
1189
1190 ret = fdt_setprop(blob, off, "format", format, strlen(format) + 1);
1191 if (ret < 0)
1192 return -1;
1193
1194 ret = fdt_delprop(blob, off, "status");
1195 if (ret < 0)
1196 return -1;
1197
1198 return 0;
1199}
1200
1201int lcd_dt_simplefb_add_node(void *blob)
1202{
5af7d0f0
SW
1203 static const char compat[] = "simple-framebuffer";
1204 static const char disabled[] = "disabled";
6a195d2d
SW
1205 int off, ret;
1206
1207 off = fdt_add_subnode(blob, 0, "framebuffer");
1208 if (off < 0)
1209 return -1;
1210
1211 ret = fdt_setprop(blob, off, "status", disabled, sizeof(disabled));
1212 if (ret < 0)
1213 return -1;
1214
1215 ret = fdt_setprop(blob, off, "compatible", compat, sizeof(compat));
1216 if (ret < 0)
1217 return -1;
1218
1219 return lcd_dt_simplefb_configure_node(blob, off);
1220}
1221
1222int lcd_dt_simplefb_enable_existing_node(void *blob)
1223{
1224 int off;
1225
1226 off = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
1227 if (off < 0)
1228 return -1;
1229
1230 return lcd_dt_simplefb_configure_node(blob, off);
1231}
1232#endif