blob: 2dce45c134893be9cf187a3c9c408c30313cacca [file] [log] [blame]
wdenk8655b6f2004-10-09 23:25:58 +00001/*
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +02002 * Common LCD routines
wdenk8655b6f2004-10-09 23:25:58 +00003 *
4 * (C) Copyright 2001-2002
5 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
6 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
wdenk8655b6f2004-10-09 23:25:58 +00008 */
9
wdenk8655b6f2004-10-09 23:25:58 +000010/* #define DEBUG */
wdenk8655b6f2004-10-09 23:25:58 +000011#include <config.h>
12#include <common.h>
13#include <command.h>
Nikita Kiryanovc0880482013-02-24 21:28:43 +000014#include <env_callback.h>
wdenk8655b6f2004-10-09 23:25:58 +000015#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020016#include <stdio_dev.h>
wdenk8655b6f2004-10-09 23:25:58 +000017#include <lcd.h>
wdenk8b0bfc62005-04-03 23:11:38 +000018#include <watchdog.h>
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +010019#include <asm/unaligned.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070020#include <splash.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070021#include <asm/io.h>
22#include <asm/unaligned.h>
Hans de Goede11b8dfa2014-11-19 13:53:27 +010023#include <fdt_support.h>
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020024#include <video_font.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070025
Stephen Warren6a195d22013-05-27 18:31:17 +000026#if defined(CONFIG_LCD_DT_SIMPLEFB)
27#include <libfdt.h>
28#endif
29
wdenk88804d12005-07-04 00:03:16 +000030#ifdef CONFIG_LCD_LOGO
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020031#include <bmp_logo.h>
32#include <bmp_logo_data.h>
33#if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
34#error Default Color Map overlaps with Logo Color Map
35#endif
wdenk88804d12005-07-04 00:03:16 +000036#endif
wdenk8655b6f2004-10-09 23:25:58 +000037
Simon Glass7d95f2a2014-02-27 13:26:19 -070038#ifdef CONFIG_SANDBOX
39#include <asm/sdl.h>
40#endif
41
Simon Glass676d3192012-10-17 13:24:54 +000042#ifndef CONFIG_LCD_ALIGNMENT
43#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
44#endif
45
Nikita Kiryanova7de2952014-12-08 17:14:42 +020046#if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
47 (LCD_BPP != LCD_COLOR32)
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020048#error Unsupported LCD BPP.
Jeroen Hofsteea5796c52013-01-12 12:07:59 +000049#endif
50
Wolfgang Denkd87080b2006-03-31 18:32:53 +020051DECLARE_GLOBAL_DATA_PTR;
wdenk8655b6f2004-10-09 23:25:58 +000052
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000053static int lcd_init(void *lcdbase);
Jeroen Hofstee6b035142013-01-12 12:07:56 +000054static void *lcd_logo(void);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000055static void lcd_setfgcolor(int color);
56static void lcd_setbgcolor(int color);
wdenk8655b6f2004-10-09 23:25:58 +000057
Wolfgang Denk46d1d5d2013-01-05 09:45:48 +000058static int lcd_color_fg;
59static int lcd_color_bg;
Jeroen Hofsteef1d205a2013-01-22 10:44:11 +000060int lcd_line_length;
wdenk8655b6f2004-10-09 23:25:58 +000061char lcd_is_enabled = 0;
Jeroen Hofstee00a0ca52013-01-22 10:44:12 +000062static void *lcd_base; /* Start of framebuffer memory */
Simon Glass9a8efc42012-10-30 13:40:18 +000063static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
64
Simon Glass9a8efc42012-10-30 13:40:18 +000065/* Flush LCD activity to the caches */
66void lcd_sync(void)
67{
68 /*
69 * flush_dcache_range() is declared in common.h but it seems that some
70 * architectures do not actually implement it. Is there a way to find
71 * out whether it exists? For now, ARM is safe.
72 */
73#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
74 int line_length;
75
76 if (lcd_flush_dcache)
77 flush_dcache_range((u32)lcd_base,
78 (u32)(lcd_base + lcd_get_size(&line_length)));
Simon Glass7d95f2a2014-02-27 13:26:19 -070079#elif defined(CONFIG_SANDBOX) && defined(CONFIG_VIDEO_SANDBOX_SDL)
80 static ulong last_sync;
81
82 if (get_timer(last_sync) > 10) {
83 sandbox_sdl_sync(lcd_base);
84 last_sync = get_timer(0);
85 }
Simon Glass9a8efc42012-10-30 13:40:18 +000086#endif
87}
88
89void lcd_set_flush_dcache(int flush)
90{
91 lcd_flush_dcache = (flush != 0);
92}
93
Simon Glass709ea542014-07-23 06:54:59 -060094static void lcd_stub_putc(struct stdio_dev *dev, const char c)
95{
96 lcd_putc(c);
97}
98
Simon Glass709ea542014-07-23 06:54:59 -060099static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
100{
101 lcd_puts(s);
102}
103
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200104/* Small utility to check that you got the colours right */
wdenk8655b6f2004-10-09 23:25:58 +0000105#ifdef LCD_TEST_PATTERN
106
107#define N_BLK_VERT 2
108#define N_BLK_HOR 3
109
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000110static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
wdenk8655b6f2004-10-09 23:25:58 +0000111 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
112 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
113};
114
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000115static void test_pattern(void)
wdenk8655b6f2004-10-09 23:25:58 +0000116{
117 ushort v_max = panel_info.vl_row;
118 ushort h_max = panel_info.vl_col;
119 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
120 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
121 ushort v, h;
122 uchar *pix = (uchar *)lcd_base;
123
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000124 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
wdenk8655b6f2004-10-09 23:25:58 +0000125 h_max, v_max, h_step, v_step);
126
127 /* WARNING: Code silently assumes 8bit/pixel */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000128 for (v = 0; v < v_max; ++v) {
wdenk8655b6f2004-10-09 23:25:58 +0000129 uchar iy = v / v_step;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000130 for (h = 0; h < h_max; ++h) {
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000131 uchar ix = N_BLK_HOR * iy + h / h_step;
wdenk8655b6f2004-10-09 23:25:58 +0000132 *pix++ = test_colors[ix];
133 }
134 }
135}
136#endif /* LCD_TEST_PATTERN */
137
Anatolij Gustschincefa4712013-11-09 11:00:09 +0100138/*
139 * With most lcd drivers the line length is set up
140 * by calculating it from panel_info parameters. Some
141 * drivers need to calculate the line length differently,
142 * so make the function weak to allow overriding it.
143 */
144__weak int lcd_get_size(int *line_length)
Simon Glass676d3192012-10-17 13:24:54 +0000145{
146 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
147 return *line_length * panel_info.vl_row;
148}
149
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000150int drv_lcd_init(void)
wdenk8655b6f2004-10-09 23:25:58 +0000151{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200152 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000153 int rc;
154
Simon Glass7d95f2a2014-02-27 13:26:19 -0700155 lcd_base = map_sysmem(gd->fb_base, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000156
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200157 lcd_init(lcd_base);
wdenk8655b6f2004-10-09 23:25:58 +0000158
159 /* Device initialization */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000160 memset(&lcddev, 0, sizeof(lcddev));
wdenk8655b6f2004-10-09 23:25:58 +0000161
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000162 strcpy(lcddev.name, "lcd");
wdenk8655b6f2004-10-09 23:25:58 +0000163 lcddev.ext = 0; /* No extensions */
164 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
Simon Glass709ea542014-07-23 06:54:59 -0600165 lcddev.putc = lcd_stub_putc; /* 'putc' function */
166 lcddev.puts = lcd_stub_puts; /* 'puts' function */
wdenk8655b6f2004-10-09 23:25:58 +0000167
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000168 rc = stdio_register(&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000169
170 return (rc == 0) ? 1 : rc;
171}
172
Che-Liang Chiou02110902011-10-20 23:07:03 +0000173void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000174{
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200175 short console_rows, console_cols;
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200176 int bg_color;
Nikita Kiryanovf4469f52014-12-08 17:14:38 +0200177#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000178 /* Setting the palette */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000179 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);
wdenk8655b6f2004-10-09 23:25:58 +0000188#endif
189
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#ifndef CONFIG_SYS_WHITE_ON_BLACK
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000191 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
192 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200193 bg_color = CONSOLE_COLOR_WHITE;
wdenk8655b6f2004-10-09 23:25:58 +0000194#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000195 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
196 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200197 bg_color = CONSOLE_COLOR_BLACK;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000199
200#ifdef LCD_TEST_PATTERN
201 test_pattern();
202#else
203 /* set framebuffer to background color */
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100204#if (LCD_BPP != LCD_COLOR32)
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200205 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100206#else
207 u32 *ppix = lcd_base;
208 u32 i;
209 for (i = 0;
210 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
211 i++) {
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200212 *ppix++ = bg_color;
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100213 }
214#endif
wdenk8655b6f2004-10-09 23:25:58 +0000215#endif
216 /* Paint the logo and retrieve LCD base address */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000217 debug("[LCD] Drawing the logo...\n");
Nikita Kiryanovefd7c4a2014-12-08 17:14:40 +0200218#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
219 console_rows = (panel_info.vl_row - BMP_LOGO_HEIGHT);
220 console_rows /= VIDEO_FONT_HEIGHT;
221#else
222 console_rows = panel_info.vl_row / VIDEO_FONT_HEIGHT;
223#endif
224 console_cols = panel_info.vl_col / VIDEO_FONT_WIDTH;
Bo Shen2af13d62015-01-28 09:13:22 +0800225 lcd_init_console(lcd_base, console_rows, console_cols);
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200226 lcd_init_console(lcd_logo(), console_rows, console_cols);
Simon Glass9a8efc42012-10-30 13:40:18 +0000227 lcd_sync();
228}
229
230static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
231 char *const argv[])
232{
233 lcd_clear();
234 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000235}
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200236U_BOOT_CMD(cls, 1, 1, do_lcd_clear, "clear screen", "");
wdenk8655b6f2004-10-09 23:25:58 +0000237
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000238static int lcd_init(void *lcdbase)
wdenk8655b6f2004-10-09 23:25:58 +0000239{
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000240 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000241 lcd_ctrl_init(lcdbase);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100242
243 /*
Stephen Warren9316e142014-11-19 20:41:03 -0700244 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100245 * the 'lcdbase' argument and uses custom lcd base address
246 * by setting up gd->fb_base. Check for this condition and fixup
247 * 'lcd_base' address.
248 */
Simon Glass7d95f2a2014-02-27 13:26:19 -0700249 if (map_to_sysmem(lcdbase) != gd->fb_base)
250 lcd_base = map_sysmem(gd->fb_base, 0);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100251
252 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
253
Stephen Warren6d330712013-01-29 16:37:38 +0000254 lcd_get_size(&lcd_line_length);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200255 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000256 lcd_clear();
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000257 lcd_enable();
wdenk8655b6f2004-10-09 23:25:58 +0000258
259 /* Initialize the console */
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200260 lcd_set_col(0);
wdenk88804d12005-07-04 00:03:16 +0000261#ifdef CONFIG_LCD_INFO_BELOW_LOGO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200262 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
wdenk8655b6f2004-10-09 23:25:58 +0000263#else
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200264 lcd_set_row(1); /* leave 1 blank line below logo */
wdenk8655b6f2004-10-09 23:25:58 +0000265#endif
wdenk8655b6f2004-10-09 23:25:58 +0000266
267 return 0;
268}
269
wdenk8655b6f2004-10-09 23:25:58 +0000270/*
271 * This is called early in the system initialization to grab memory
272 * for the LCD controller.
273 * Returns new address for monitor, after reserving LCD buffer memory
274 *
275 * Note that this is running from ROM, so no write access to global data.
276 */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000277ulong lcd_setmem(ulong addr)
wdenk8655b6f2004-10-09 23:25:58 +0000278{
279 ulong size;
Simon Glass676d3192012-10-17 13:24:54 +0000280 int line_length;
wdenk8655b6f2004-10-09 23:25:58 +0000281
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000282 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
283 panel_info.vl_row, NBITS(panel_info.vl_bpix));
wdenk8655b6f2004-10-09 23:25:58 +0000284
Simon Glass676d3192012-10-17 13:24:54 +0000285 size = lcd_get_size(&line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000286
Simon Glass676d3192012-10-17 13:24:54 +0000287 /* Round up to nearest full page, or MMU section if defined */
288 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
289 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
wdenk8655b6f2004-10-09 23:25:58 +0000290
291 /* Allocate pages for the frame buffer. */
292 addr -= size;
293
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000294 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
295 size >> 10, addr);
wdenk8655b6f2004-10-09 23:25:58 +0000296
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000297 return addr;
wdenk8655b6f2004-10-09 23:25:58 +0000298}
299
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000300static void lcd_setfgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000301{
Stelian Pop39cf4802008-05-09 21:57:18 +0200302 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000303}
304
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200305int lcd_getfgcolor(void)
306{
307 return lcd_color_fg;
308}
309
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000310static void lcd_setbgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000311{
Stelian Pop39cf4802008-05-09 21:57:18 +0200312 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000313}
314
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200315int lcd_getbgcolor(void)
316{
317 return lcd_color_bg;
318}
319
wdenk8655b6f2004-10-09 23:25:58 +0000320#ifdef CONFIG_LCD_LOGO
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200321__weak void lcd_logo_set_cmap(void)
322{
Nikita Kiryanov23064572015-02-03 13:32:26 +0200323 int i;
324 ushort *cmap = configuration_get_cmap();
325
326 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i)
327 *cmap++ = bmp_logo_palette[i];
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200328}
329
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200330void lcd_logo_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000331{
wdenk8655b6f2004-10-09 23:25:58 +0000332 ushort i, j;
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200333 uchar *bmap = &bmp_logo_bitmap[0];
Andre Renaud317461c2013-02-13 17:48:00 +0000334 unsigned bpix = NBITS(panel_info.vl_bpix);
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200335 uchar *fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
336 ushort *fb16;
wdenk8655b6f2004-10-09 23:25:58 +0000337
Nikita Kiryanov23064572015-02-03 13:32:26 +0200338 debug("Logo: width %d height %d colors %d\n",
339 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
wdenk8655b6f2004-10-09 23:25:58 +0000340
Andre Renaud317461c2013-02-13 17:48:00 +0000341 if (bpix < 12) {
wdenk8655b6f2004-10-09 23:25:58 +0000342 WATCHDOG_RESET();
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200343 lcd_logo_set_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000344 WATCHDOG_RESET();
345
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000346 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
347 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000348 bmap += BMP_LOGO_WIDTH;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000349 fb += panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000350 }
351 }
352 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100353 u16 col16;
Andre Renaud317461c2013-02-13 17:48:00 +0000354 fb16 = (ushort *)fb;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000355 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
356 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100357 col16 = bmp_logo_palette[(bmap[j]-16)];
358 fb16[j] =
359 ((col16 & 0x000F) << 1) |
360 ((col16 & 0x00F0) << 3) |
361 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000362 }
363 bmap += BMP_LOGO_WIDTH;
364 fb16 += panel_info.vl_col;
365 }
366 }
367
368 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000369 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000370}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000371#else
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200372static inline void lcd_logo_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000373#endif /* CONFIG_LCD_LOGO */
374
Jon Loeligerc3517f92007-07-08 18:10:08 -0500375#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200376#ifdef CONFIG_SPLASH_SCREEN_ALIGN
377#define BMP_ALIGN_CENTER 0x7FFF
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000378
379static void splash_align_axis(int *axis, unsigned long panel_size,
380 unsigned long picture_size)
381{
382 unsigned long panel_picture_delta = panel_size - picture_size;
383 unsigned long axis_alignment;
384
385 if (*axis == BMP_ALIGN_CENTER)
386 axis_alignment = panel_picture_delta / 2;
387 else if (*axis < 0)
388 axis_alignment = panel_picture_delta + *axis + 1;
389 else
390 return;
391
Masahiro Yamadab4141192014-11-07 03:03:31 +0900392 *axis = max(0, (int)axis_alignment);
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000393}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200394#endif
395
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000396#ifdef CONFIG_LCD_BMP_RLE8
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000397#define BMP_RLE8_ESCAPE 0
398#define BMP_RLE8_EOL 0
399#define BMP_RLE8_EOBMP 1
400#define BMP_RLE8_DELTA 2
401
402static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
403 int cnt)
404{
405 while (cnt > 0) {
406 *(*fbp)++ = cmap[*bmap++];
407 cnt--;
408 }
409}
410
411static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
412{
413 ushort *fb = *fbp;
414 int cnt_8copy = cnt >> 3;
415
416 cnt -= cnt_8copy << 3;
417 while (cnt_8copy > 0) {
418 *fb++ = c;
419 *fb++ = c;
420 *fb++ = c;
421 *fb++ = c;
422 *fb++ = c;
423 *fb++ = c;
424 *fb++ = c;
425 *fb++ = c;
426 cnt_8copy--;
427 }
428 while (cnt > 0) {
429 *fb++ = c;
430 cnt--;
431 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000432 *fbp = fb;
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000433}
434
435/*
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000436 * Do not call this function directly, must be called from lcd_display_bitmap.
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000437 */
438static void lcd_display_rle8_bitmap(bmp_image_t *bmp, ushort *cmap, uchar *fb,
439 int x_off, int y_off)
440{
441 uchar *bmap;
442 ulong width, height;
443 ulong cnt, runlen;
444 int x, y;
445 int decode = 1;
446
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100447 width = get_unaligned_le32(&bmp->header.width);
448 height = get_unaligned_le32(&bmp->header.height);
449 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000450
451 x = 0;
452 y = height - 1;
453
454 while (decode) {
455 if (bmap[0] == BMP_RLE8_ESCAPE) {
456 switch (bmap[1]) {
457 case BMP_RLE8_EOL:
458 /* end of line */
459 bmap += 2;
460 x = 0;
461 y--;
462 /* 16bpix, 2-byte per pixel, width should *2 */
463 fb -= (width * 2 + lcd_line_length);
464 break;
465 case BMP_RLE8_EOBMP:
466 /* end of bitmap */
467 decode = 0;
468 break;
469 case BMP_RLE8_DELTA:
470 /* delta run */
471 x += bmap[2];
472 y -= bmap[3];
473 /* 16bpix, 2-byte per pixel, x should *2 */
474 fb = (uchar *) (lcd_base + (y + y_off - 1)
475 * lcd_line_length + (x + x_off) * 2);
476 bmap += 4;
477 break;
478 default:
479 /* unencoded run */
480 runlen = bmap[1];
481 bmap += 2;
482 if (y < height) {
483 if (x < width) {
484 if (x + runlen > width)
485 cnt = width - x;
486 else
487 cnt = runlen;
488 draw_unencoded_bitmap(
489 (ushort **)&fb,
490 bmap, cmap, cnt);
491 }
492 x += runlen;
493 }
494 bmap += runlen;
495 if (runlen & 1)
496 bmap++;
497 }
498 } else {
499 /* encoded run */
500 if (y < height) {
501 runlen = bmap[0];
502 if (x < width) {
503 /* aggregate the same code */
504 while (bmap[0] == 0xff &&
505 bmap[2] != BMP_RLE8_ESCAPE &&
506 bmap[1] == bmap[3]) {
507 runlen += bmap[2];
508 bmap += 2;
509 }
510 if (x + runlen > width)
511 cnt = width - x;
512 else
513 cnt = runlen;
514 draw_encoded_bitmap((ushort **)&fb,
515 cmap[bmap[1]], cnt);
516 }
517 x += runlen;
518 }
519 bmap += 2;
520 }
521 }
522}
523#endif
524
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200525__weak void fb_put_byte(uchar **fb, uchar **from)
526{
527 *(*fb)++ = *(*from)++;
528}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000529
530#if defined(CONFIG_BMP_16BPP)
Nikita Kiryanovb3d12e92015-02-03 13:32:22 +0200531__weak void fb_put_word(uchar **fb, uchar **from)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000532{
533 *(*fb)++ = *(*from)++;
534 *(*fb)++ = *(*from)++;
535}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000536#endif /* CONFIG_BMP_16BPP */
537
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200538__weak void lcd_set_cmap(bmp_image_t *bmp, unsigned colors)
539{
540 int i;
541 bmp_color_table_entry_t cte;
542 ushort *cmap = configuration_get_cmap();
543
544 for (i = 0; i < colors; ++i) {
545 cte = bmp->color_table[i];
546 *cmap = (((cte.red) << 8) & 0xf800) |
547 (((cte.green) << 3) & 0x07e0) |
548 (((cte.blue) >> 3) & 0x001f);
549#if defined(CONFIG_MPC823)
550 cmap--;
551#else
552 cmap++;
553#endif
554 }
555}
556
wdenk8655b6f2004-10-09 23:25:58 +0000557int lcd_display_bitmap(ulong bmp_image, int x, int y)
558{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100559 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000560 ushort i, j;
561 uchar *fb;
Simon Glass7d95f2a2014-02-27 13:26:19 -0700562 bmp_image_t *bmp = (bmp_image_t *)map_sysmem(bmp_image, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000563 uchar *bmap;
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000564 ushort padded_width;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100565 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200566 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100567 unsigned colors, bpix, bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000568
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000569 if (!bmp || !(bmp->header.signature[0] == 'B' &&
570 bmp->header.signature[1] == 'M')) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000571 printf("Error: no valid bmp image at %lx\n", bmp_image);
572
wdenk8655b6f2004-10-09 23:25:58 +0000573 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100574 }
wdenk8655b6f2004-10-09 23:25:58 +0000575
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100576 width = get_unaligned_le32(&bmp->header.width);
577 height = get_unaligned_le32(&bmp->header.height);
578 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
579
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100580 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000581
582 bpix = NBITS(panel_info.vl_bpix);
583
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000584 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100585 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
586 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000587
wdenk8655b6f2004-10-09 23:25:58 +0000588 return 1;
589 }
590
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200591 /*
592 * We support displaying 8bpp BMPs on 16bpp LCDs
593 * and displaying 24bpp BMPs on 32bpp LCDs
594 * */
595 if (bpix != bmp_bpix &&
596 !(bmp_bpix == 8 && bpix == 16) &&
597 !(bmp_bpix == 24 && bpix == 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000598 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100599 bpix, get_unaligned_le16(&bmp->header.bit_count));
wdenk8655b6f2004-10-09 23:25:58 +0000600 return 1;
601 }
602
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000603 debug("Display-bmp: %d x %d with %d colors\n",
wdenk8655b6f2004-10-09 23:25:58 +0000604 (int)width, (int)height, (int)colors);
605
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200606 if (bmp_bpix == 8)
607 lcd_set_cmap(bmp, colors);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200608
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000609 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200610
611#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000612 splash_align_axis(&x, pwidth, width);
613 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200614#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
615
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000616 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200617 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000618 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000619 height = panel_info.vl_row - y;
620
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100621 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
622 fb = (uchar *)(lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800623 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100624
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100625 switch (bmp_bpix) {
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200626 case 1:
Simon Glass01564442014-10-15 04:53:04 -0600627 case 8: {
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200628 cmap_base = configuration_get_cmap();
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000629#ifdef CONFIG_LCD_BMP_RLE8
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100630 u32 compression = get_unaligned_le32(&bmp->header.compression);
631 if (compression == BMP_BI_RLE8) {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000632 if (bpix != 16) {
633 /* TODO implement render code for bpix != 16 */
634 printf("Error: only support 16 bpix");
635 return 1;
636 }
637 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
638 break;
639 }
640#endif
641
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100642 if (bpix != 16)
643 byte_width = width;
644 else
645 byte_width = width * 2;
646
Mark Jacksona303dfb2009-02-06 10:37:49 +0100647 for (i = 0; i < height; ++i) {
648 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100649 for (j = 0; j < width; j++) {
650 if (bpix != 16) {
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200651 fb_put_byte(&fb, &bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100652 } else {
653 *(uint16_t *)fb = cmap_base[*(bmap++)];
654 fb += sizeof(uint16_t) / sizeof(*fb);
655 }
656 }
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000657 bmap += (padded_width - width);
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000658 fb -= byte_width + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100659 }
660 break;
Simon Glass01564442014-10-15 04:53:04 -0600661 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100662#if defined(CONFIG_BMP_16BPP)
663 case 16:
664 for (i = 0; i < height; ++i) {
665 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000666 for (j = 0; j < width; j++)
667 fb_put_word(&fb, &bmap);
668
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000669 bmap += (padded_width - width) * 2;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000670 fb -= width * 2 + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100671 }
672 break;
673#endif /* CONFIG_BMP_16BPP */
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200674#if defined(CONFIG_BMP_24BMP)
675 case 24:
676 for (i = 0; i < height; ++i) {
677 for (j = 0; j < width; j++) {
678 *(fb++) = *(bmap++);
679 *(fb++) = *(bmap++);
680 *(fb++) = *(bmap++);
681 *(fb++) = 0;
682 }
683 fb -= lcd_line_length + width * (bpix / 8);
684 }
685 break;
686#endif /* CONFIG_BMP_24BMP */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000687#if defined(CONFIG_BMP_32BPP)
688 case 32:
689 for (i = 0; i < height; ++i) {
690 for (j = 0; j < width; j++) {
691 *(fb++) = *(bmap++);
692 *(fb++) = *(bmap++);
693 *(fb++) = *(bmap++);
694 *(fb++) = *(bmap++);
695 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000696 fb -= lcd_line_length + width * (bpix / 8);
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000697 }
698 break;
699#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100700 default:
701 break;
702 };
wdenk8655b6f2004-10-09 23:25:58 +0000703
Simon Glass9a8efc42012-10-30 13:40:18 +0000704 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000705 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000706}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500707#endif
wdenk8655b6f2004-10-09 23:25:58 +0000708
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000709static void *lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000710{
wdenk8655b6f2004-10-09 23:25:58 +0000711#ifdef CONFIG_SPLASH_SCREEN
712 char *s;
713 ulong addr;
714 static int do_splash = 1;
715
716 if (do_splash && (s = getenv("splashimage")) != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200717 int x = 0, y = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000718 do_splash = 0;
719
Nikita Kiryanov581bb412013-01-30 21:39:57 +0000720 if (splash_screen_prepare())
Robert Winklerdd4425e2013-06-17 11:31:29 -0700721 return (void *)lcd_base;
Nikita Kiryanov581bb412013-01-30 21:39:57 +0000722
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200723 addr = simple_strtoul (s, NULL, 16);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200724
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200725 splash_get_pos(&x, &y);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200726
Nikita Kiryanovd3a555e2012-08-09 00:14:50 +0000727 if (bmp_display(addr, x, y) == 0)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000728 return (void *)lcd_base;
wdenk8655b6f2004-10-09 23:25:58 +0000729 }
730#endif /* CONFIG_SPLASH_SCREEN */
731
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200732 lcd_logo_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000733
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200734#ifdef CONFIG_LCD_INFO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200735 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
736 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200737 lcd_show_board_info();
738#endif /* CONFIG_LCD_INFO */
Stelian Pop39cf4802008-05-09 21:57:18 +0200739
wdenk88804d12005-07-04 00:03:16 +0000740#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000741 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000742#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000743 return (void *)lcd_base;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000744#endif /* CONFIG_LCD_LOGO && !defined(CONFIG_LCD_INFO_BELOW_LOGO) */
wdenk8655b6f2004-10-09 23:25:58 +0000745}
746
Nikita Kiryanovc0880482013-02-24 21:28:43 +0000747#ifdef CONFIG_SPLASHIMAGE_GUARD
748static int on_splashimage(const char *name, const char *value, enum env_op op,
749 int flags)
750{
751 ulong addr;
752 int aligned;
753
754 if (op == env_op_delete)
755 return 0;
756
757 addr = simple_strtoul(value, NULL, 16);
758 /* See README.displaying-bmps */
759 aligned = (addr % 4 == 2);
760 if (!aligned) {
761 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
762 return -1;
763 }
764
765 return 0;
766}
767
768U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
769#endif
770
Vadim Bendebury395166c2012-09-28 15:11:13 +0000771int lcd_get_pixel_width(void)
772{
773 return panel_info.vl_col;
774}
775
776int lcd_get_pixel_height(void)
777{
778 return panel_info.vl_row;
779}
780
Stephen Warren6a195d22013-05-27 18:31:17 +0000781#if defined(CONFIG_LCD_DT_SIMPLEFB)
782static int lcd_dt_simplefb_configure_node(void *blob, int off)
783{
Stephen Warren6a195d22013-05-27 18:31:17 +0000784#if LCD_BPP == LCD_COLOR16
Hans de Goede11b8dfa2014-11-19 13:53:27 +0100785 return fdt_setup_simplefb_node(blob, off, gd->fb_base,
786 panel_info.vl_col, panel_info.vl_row,
787 panel_info.vl_col * 2, "r5g6b5");
Stephen Warren6a195d22013-05-27 18:31:17 +0000788#else
Hans de Goede11b8dfa2014-11-19 13:53:27 +0100789 return -1;
Stephen Warren6a195d22013-05-27 18:31:17 +0000790#endif
Stephen Warren6a195d22013-05-27 18:31:17 +0000791}
792
793int lcd_dt_simplefb_add_node(void *blob)
794{
Stephen Warren5af7d0f2013-06-13 17:13:11 -0600795 static const char compat[] = "simple-framebuffer";
796 static const char disabled[] = "disabled";
Stephen Warren6a195d22013-05-27 18:31:17 +0000797 int off, ret;
798
799 off = fdt_add_subnode(blob, 0, "framebuffer");
800 if (off < 0)
801 return -1;
802
803 ret = fdt_setprop(blob, off, "status", disabled, sizeof(disabled));
804 if (ret < 0)
805 return -1;
806
807 ret = fdt_setprop(blob, off, "compatible", compat, sizeof(compat));
808 if (ret < 0)
809 return -1;
810
811 return lcd_dt_simplefb_configure_node(blob, off);
812}
813
814int lcd_dt_simplefb_enable_existing_node(void *blob)
815{
816 int off;
817
818 off = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
819 if (off < 0)
820 return -1;
821
822 return lcd_dt_simplefb_configure_node(blob, off);
823}
824#endif