blob: 0f6c2e4c25b7601cceddbb223279f09d7da6b7e0 [file] [log] [blame]
wdenk8655b6f2004-10-09 23:25:58 +00001/*
2 * Common LCD routines for supported CPUs
3 *
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
10/************************************************************************/
11/* ** HEADER FILES */
12/************************************************************************/
13
14/* #define DEBUG */
15
16#include <config.h>
17#include <common.h>
18#include <command.h>
wdenk8655b6f2004-10-09 23:25:58 +000019#include <stdarg.h>
Nikita Kiryanovc0880482013-02-24 21:28:43 +000020#include <search.h>
21#include <env_callback.h>
wdenk8655b6f2004-10-09 23:25:58 +000022#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020023#include <stdio_dev.h>
wdenk8655b6f2004-10-09 23:25:58 +000024#if defined(CONFIG_POST)
25#include <post.h>
26#endif
27#include <lcd.h>
wdenk8b0bfc62005-04-03 23:11:38 +000028#include <watchdog.h>
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +010029#include <asm/unaligned.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070030#include <splash.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070031#include <asm/io.h>
32#include <asm/unaligned.h>
Hans de Goede11b8dfa2014-11-19 13:53:27 +010033#include <fdt_support.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070034
Marek Vasutabc20ab2011-11-26 07:20:07 +010035#if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
36 defined(CONFIG_CPU_MONAHANS)
wdenk8655b6f2004-10-09 23:25:58 +000037#include <asm/byteorder.h>
38#endif
39
40#if defined(CONFIG_MPC823)
wdenk8655b6f2004-10-09 23:25:58 +000041#include <lcdvideo.h>
42#endif
43
Stelian Pop39cf4802008-05-09 21:57:18 +020044#if defined(CONFIG_ATMEL_LCD)
45#include <atmel_lcdc.h>
Stelian Pop39cf4802008-05-09 21:57:18 +020046#endif
47
Stephen Warren6a195d22013-05-27 18:31:17 +000048#if defined(CONFIG_LCD_DT_SIMPLEFB)
49#include <libfdt.h>
50#endif
51
wdenk8655b6f2004-10-09 23:25:58 +000052/************************************************************************/
53/* ** FONT DATA */
54/************************************************************************/
55#include <video_font.h> /* Get font data, width and height */
56
wdenk88804d12005-07-04 00:03:16 +000057/************************************************************************/
58/* ** LOGO DATA */
59/************************************************************************/
60#ifdef CONFIG_LCD_LOGO
61# include <bmp_logo.h> /* Get logo data, width and height */
Che-Liang Chiouc2707302011-10-20 23:04:20 +000062# include <bmp_logo_data.h>
Alessandro Rubiniacb13862010-03-13 17:44:08 +010063# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
wdenk88804d12005-07-04 00:03:16 +000064# error Default Color Map overlaps with Logo Color Map
65# endif
66#endif
wdenk8655b6f2004-10-09 23:25:58 +000067
Simon Glass7d95f2a2014-02-27 13:26:19 -070068#ifdef CONFIG_SANDBOX
69#include <asm/sdl.h>
70#endif
71
Simon Glass676d3192012-10-17 13:24:54 +000072#ifndef CONFIG_LCD_ALIGNMENT
73#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
74#endif
75
Nikita Kiryanova7de2952014-12-08 17:14:42 +020076#if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
77 (LCD_BPP != LCD_COLOR32)
Jeroen Hofsteea5796c52013-01-12 12:07:59 +000078# error Unsupported LCD BPP.
79#endif
80
Wolfgang Denkd87080b2006-03-31 18:32:53 +020081DECLARE_GLOBAL_DATA_PTR;
wdenk8655b6f2004-10-09 23:25:58 +000082
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000083static int lcd_init(void *lcdbase);
wdenk8655b6f2004-10-09 23:25:58 +000084
Jeroen Hofstee6b035142013-01-12 12:07:56 +000085static void *lcd_logo(void);
wdenk8655b6f2004-10-09 23:25:58 +000086
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000087static void lcd_setfgcolor(int color);
88static void lcd_setbgcolor(int color);
wdenk8655b6f2004-10-09 23:25:58 +000089
Wolfgang Denk46d1d5d2013-01-05 09:45:48 +000090static int lcd_color_fg;
91static int lcd_color_bg;
Jeroen Hofsteef1d205a2013-01-22 10:44:11 +000092int lcd_line_length;
Wolfgang Denk46d1d5d2013-01-05 09:45:48 +000093
wdenk8655b6f2004-10-09 23:25:58 +000094char lcd_is_enabled = 0;
wdenk8655b6f2004-10-09 23:25:58 +000095
Jeroen Hofstee00a0ca52013-01-22 10:44:12 +000096static void *lcd_base; /* Start of framebuffer memory */
Jeroen Hofsteef1d205a2013-01-22 10:44:11 +000097
Simon Glass9a8efc42012-10-30 13:40:18 +000098static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
99
wdenk8655b6f2004-10-09 23:25:58 +0000100/************************************************************************/
101
Simon Glass9a8efc42012-10-30 13:40:18 +0000102/* Flush LCD activity to the caches */
103void lcd_sync(void)
104{
105 /*
106 * flush_dcache_range() is declared in common.h but it seems that some
107 * architectures do not actually implement it. Is there a way to find
108 * out whether it exists? For now, ARM is safe.
109 */
110#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
111 int line_length;
112
113 if (lcd_flush_dcache)
114 flush_dcache_range((u32)lcd_base,
115 (u32)(lcd_base + lcd_get_size(&line_length)));
Simon Glass7d95f2a2014-02-27 13:26:19 -0700116#elif defined(CONFIG_SANDBOX) && defined(CONFIG_VIDEO_SANDBOX_SDL)
117 static ulong last_sync;
118
119 if (get_timer(last_sync) > 10) {
120 sandbox_sdl_sync(lcd_base);
121 last_sync = get_timer(0);
122 }
Simon Glass9a8efc42012-10-30 13:40:18 +0000123#endif
124}
125
126void lcd_set_flush_dcache(int flush)
127{
128 lcd_flush_dcache = (flush != 0);
129}
130
wdenk8655b6f2004-10-09 23:25:58 +0000131/*----------------------------------------------------------------------*/
132
Simon Glass709ea542014-07-23 06:54:59 -0600133static void lcd_stub_putc(struct stdio_dev *dev, const char c)
134{
135 lcd_putc(c);
136}
137
Simon Glass709ea542014-07-23 06:54:59 -0600138static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
139{
140 lcd_puts(s);
141}
142
wdenk8655b6f2004-10-09 23:25:58 +0000143/************************************************************************/
144/** Small utility to check that you got the colours right */
145/************************************************************************/
146#ifdef LCD_TEST_PATTERN
147
148#define N_BLK_VERT 2
149#define N_BLK_HOR 3
150
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000151static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
wdenk8655b6f2004-10-09 23:25:58 +0000152 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
153 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
154};
155
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000156static void test_pattern(void)
wdenk8655b6f2004-10-09 23:25:58 +0000157{
158 ushort v_max = panel_info.vl_row;
159 ushort h_max = panel_info.vl_col;
160 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
161 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
162 ushort v, h;
163 uchar *pix = (uchar *)lcd_base;
164
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000165 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
wdenk8655b6f2004-10-09 23:25:58 +0000166 h_max, v_max, h_step, v_step);
167
168 /* WARNING: Code silently assumes 8bit/pixel */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000169 for (v = 0; v < v_max; ++v) {
wdenk8655b6f2004-10-09 23:25:58 +0000170 uchar iy = v / v_step;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000171 for (h = 0; h < h_max; ++h) {
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000172 uchar ix = N_BLK_HOR * iy + h / h_step;
wdenk8655b6f2004-10-09 23:25:58 +0000173 *pix++ = test_colors[ix];
174 }
175 }
176}
177#endif /* LCD_TEST_PATTERN */
178
179
180/************************************************************************/
181/* ** GENERIC Initialization Routines */
182/************************************************************************/
Anatolij Gustschincefa4712013-11-09 11:00:09 +0100183/*
184 * With most lcd drivers the line length is set up
185 * by calculating it from panel_info parameters. Some
186 * drivers need to calculate the line length differently,
187 * so make the function weak to allow overriding it.
188 */
189__weak int lcd_get_size(int *line_length)
Simon Glass676d3192012-10-17 13:24:54 +0000190{
191 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
192 return *line_length * panel_info.vl_row;
193}
194
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000195int drv_lcd_init(void)
wdenk8655b6f2004-10-09 23:25:58 +0000196{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200197 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000198 int rc;
199
Simon Glass7d95f2a2014-02-27 13:26:19 -0700200 lcd_base = map_sysmem(gd->fb_base, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000201
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000202 lcd_init(lcd_base); /* LCD initialization */
wdenk8655b6f2004-10-09 23:25:58 +0000203
204 /* Device initialization */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000205 memset(&lcddev, 0, sizeof(lcddev));
wdenk8655b6f2004-10-09 23:25:58 +0000206
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000207 strcpy(lcddev.name, "lcd");
wdenk8655b6f2004-10-09 23:25:58 +0000208 lcddev.ext = 0; /* No extensions */
209 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
Simon Glass709ea542014-07-23 06:54:59 -0600210 lcddev.putc = lcd_stub_putc; /* 'putc' function */
211 lcddev.puts = lcd_stub_puts; /* 'puts' function */
wdenk8655b6f2004-10-09 23:25:58 +0000212
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000213 rc = stdio_register(&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000214
215 return (rc == 0) ? 1 : rc;
216}
217
218/*----------------------------------------------------------------------*/
Che-Liang Chiou02110902011-10-20 23:07:03 +0000219void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000220{
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200221 short console_rows, console_cols;
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200222 int bg_color;
Nikita Kiryanovf4469f52014-12-08 17:14:38 +0200223#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000224 /* Setting the palette */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000225 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
226 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
227 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
228 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
229 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
230 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
231 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
232 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
233 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
wdenk8655b6f2004-10-09 23:25:58 +0000234#endif
235
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200236#ifndef CONFIG_SYS_WHITE_ON_BLACK
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000237 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
238 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200239 bg_color = CONSOLE_COLOR_WHITE;
wdenk8655b6f2004-10-09 23:25:58 +0000240#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000241 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
242 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200243 bg_color = CONSOLE_COLOR_BLACK;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200244#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000245
246#ifdef LCD_TEST_PATTERN
247 test_pattern();
248#else
249 /* set framebuffer to background color */
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100250#if (LCD_BPP != LCD_COLOR32)
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200251 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100252#else
253 u32 *ppix = lcd_base;
254 u32 i;
255 for (i = 0;
256 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
257 i++) {
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200258 *ppix++ = bg_color;
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100259 }
260#endif
wdenk8655b6f2004-10-09 23:25:58 +0000261#endif
262 /* Paint the logo and retrieve LCD base address */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000263 debug("[LCD] Drawing the logo...\n");
Nikita Kiryanovefd7c4a2014-12-08 17:14:40 +0200264#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
265 console_rows = (panel_info.vl_row - BMP_LOGO_HEIGHT);
266 console_rows /= VIDEO_FONT_HEIGHT;
267#else
268 console_rows = panel_info.vl_row / VIDEO_FONT_HEIGHT;
269#endif
270 console_cols = panel_info.vl_col / VIDEO_FONT_WIDTH;
Bo Shen2af13d62015-01-28 09:13:22 +0800271 lcd_init_console(lcd_base, console_rows, console_cols);
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200272 lcd_init_console(lcd_logo(), console_rows, console_cols);
Simon Glass9a8efc42012-10-30 13:40:18 +0000273 lcd_sync();
274}
275
276static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
277 char *const argv[])
278{
279 lcd_clear();
280 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000281}
282
283U_BOOT_CMD(
Che-Liang Chiou02110902011-10-20 23:07:03 +0000284 cls, 1, 1, do_lcd_clear,
Peter Tyser2fb26042009-01-27 18:03:12 -0600285 "clear screen",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200286 ""
wdenk8655b6f2004-10-09 23:25:58 +0000287);
288
289/*----------------------------------------------------------------------*/
290
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000291static int lcd_init(void *lcdbase)
wdenk8655b6f2004-10-09 23:25:58 +0000292{
293 /* Initialize the lcd controller */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000294 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
wdenk8655b6f2004-10-09 23:25:58 +0000295
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000296 lcd_ctrl_init(lcdbase);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100297
298 /*
Stephen Warren9316e142014-11-19 20:41:03 -0700299 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100300 * the 'lcdbase' argument and uses custom lcd base address
301 * by setting up gd->fb_base. Check for this condition and fixup
302 * 'lcd_base' address.
303 */
Simon Glass7d95f2a2014-02-27 13:26:19 -0700304 if (map_to_sysmem(lcdbase) != gd->fb_base)
305 lcd_base = map_sysmem(gd->fb_base, 0);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100306
307 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
308
Stephen Warren6d330712013-01-29 16:37:38 +0000309 lcd_get_size(&lcd_line_length);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200310 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000311 lcd_clear();
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000312 lcd_enable();
wdenk8655b6f2004-10-09 23:25:58 +0000313
314 /* Initialize the console */
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200315 lcd_set_col(0);
wdenk88804d12005-07-04 00:03:16 +0000316#ifdef CONFIG_LCD_INFO_BELOW_LOGO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200317 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
wdenk8655b6f2004-10-09 23:25:58 +0000318#else
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200319 lcd_set_row(1); /* leave 1 blank line below logo */
wdenk8655b6f2004-10-09 23:25:58 +0000320#endif
wdenk8655b6f2004-10-09 23:25:58 +0000321
322 return 0;
323}
324
325
326/************************************************************************/
327/* ** ROM capable initialization part - needed to reserve FB memory */
328/************************************************************************/
329/*
330 * This is called early in the system initialization to grab memory
331 * for the LCD controller.
332 * Returns new address for monitor, after reserving LCD buffer memory
333 *
334 * Note that this is running from ROM, so no write access to global data.
335 */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000336ulong lcd_setmem(ulong addr)
wdenk8655b6f2004-10-09 23:25:58 +0000337{
338 ulong size;
Simon Glass676d3192012-10-17 13:24:54 +0000339 int line_length;
wdenk8655b6f2004-10-09 23:25:58 +0000340
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000341 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
342 panel_info.vl_row, NBITS(panel_info.vl_bpix));
wdenk8655b6f2004-10-09 23:25:58 +0000343
Simon Glass676d3192012-10-17 13:24:54 +0000344 size = lcd_get_size(&line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000345
Simon Glass676d3192012-10-17 13:24:54 +0000346 /* Round up to nearest full page, or MMU section if defined */
347 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
348 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
wdenk8655b6f2004-10-09 23:25:58 +0000349
350 /* Allocate pages for the frame buffer. */
351 addr -= size;
352
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000353 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
354 size >> 10, addr);
wdenk8655b6f2004-10-09 23:25:58 +0000355
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000356 return addr;
wdenk8655b6f2004-10-09 23:25:58 +0000357}
358
359/*----------------------------------------------------------------------*/
360
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000361static void lcd_setfgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000362{
Stelian Pop39cf4802008-05-09 21:57:18 +0200363 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000364}
365
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200366int lcd_getfgcolor(void)
367{
368 return lcd_color_fg;
369}
370
wdenk8655b6f2004-10-09 23:25:58 +0000371/*----------------------------------------------------------------------*/
372
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000373static void lcd_setbgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000374{
Stelian Pop39cf4802008-05-09 21:57:18 +0200375 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000376}
377
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200378int lcd_getbgcolor(void)
379{
380 return lcd_color_bg;
381}
382
wdenk8655b6f2004-10-09 23:25:58 +0000383/************************************************************************/
384/* ** Chipset depending Bitmap / Logo stuff... */
385/************************************************************************/
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000386
wdenk8655b6f2004-10-09 23:25:58 +0000387#ifdef CONFIG_LCD_LOGO
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000388void bitmap_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000389{
Stelian Pop39cf4802008-05-09 21:57:18 +0200390#ifdef CONFIG_ATMEL_LCD
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000391 uint *cmap = (uint *)bmp_logo_palette;
Stelian Pop39cf4802008-05-09 21:57:18 +0200392#else
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000393 ushort *cmap = (ushort *)bmp_logo_palette;
Stelian Pop39cf4802008-05-09 21:57:18 +0200394#endif
wdenk8655b6f2004-10-09 23:25:58 +0000395 ushort i, j;
396 uchar *bmap;
397 uchar *fb;
398 ushort *fb16;
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000399#if defined(CONFIG_MPC823)
400 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
401 cpm8xx_t *cp = &(immr->im_cpm);
wdenk8655b6f2004-10-09 23:25:58 +0000402#endif
Andre Renaud317461c2013-02-13 17:48:00 +0000403 unsigned bpix = NBITS(panel_info.vl_bpix);
wdenk8655b6f2004-10-09 23:25:58 +0000404
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000405 debug("Logo: width %d height %d colors %d cmap %d\n",
wdenk8655b6f2004-10-09 23:25:58 +0000406 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
Anatolij Gustschin095407d2012-04-27 04:41:06 +0000407 ARRAY_SIZE(bmp_logo_palette));
wdenk8655b6f2004-10-09 23:25:58 +0000408
409 bmap = &bmp_logo_bitmap[0];
Andre Renaud317461c2013-02-13 17:48:00 +0000410 fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
wdenk8655b6f2004-10-09 23:25:58 +0000411
Andre Renaud317461c2013-02-13 17:48:00 +0000412 if (bpix < 12) {
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000413 /* Leave room for default color map
414 * default case: generic system with no cmap (most likely 16bpp)
415 * cmap was set to the source palette, so no change is done.
416 * This avoids even more ifdefs in the next stanza
417 */
418#if defined(CONFIG_MPC823)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000419 cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
Stelian Pop39cf4802008-05-09 21:57:18 +0200420#elif defined(CONFIG_ATMEL_LCD)
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000421 cmap = (uint *)configuration_get_cmap();
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100422#else
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000423 cmap = configuration_get_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000424#endif
425
426 WATCHDOG_RESET();
427
428 /* Set color map */
Anatolij Gustschin095407d2012-04-27 04:41:06 +0000429 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000430 ushort colreg = bmp_logo_palette[i];
Stelian Pop39cf4802008-05-09 21:57:18 +0200431#ifdef CONFIG_ATMEL_LCD
432 uint lut_entry;
433#ifdef CONFIG_ATMEL_LCD_BGR555
434 lut_entry = ((colreg & 0x000F) << 11) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000435 ((colreg & 0x00F0) << 2) |
436 ((colreg & 0x0F00) >> 7);
Stelian Pop39cf4802008-05-09 21:57:18 +0200437#else /* CONFIG_ATMEL_LCD_RGB565 */
438 lut_entry = ((colreg & 0x000F) << 1) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000439 ((colreg & 0x00F0) << 3) |
440 ((colreg & 0x0F00) << 4);
Stelian Pop39cf4802008-05-09 21:57:18 +0200441#endif
442 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
443 cmap++;
444#else /* !CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000445 *cmap++ = colreg;
Stelian Pop39cf4802008-05-09 21:57:18 +0200446#endif /* CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000447 }
448
449 WATCHDOG_RESET();
450
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000451 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
452 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000453 bmap += BMP_LOGO_WIDTH;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000454 fb += panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000455 }
456 }
457 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100458 u16 col16;
Andre Renaud317461c2013-02-13 17:48:00 +0000459 fb16 = (ushort *)fb;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000460 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
461 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100462 col16 = bmp_logo_palette[(bmap[j]-16)];
463 fb16[j] =
464 ((col16 & 0x000F) << 1) |
465 ((col16 & 0x00F0) << 3) |
466 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000467 }
468 bmap += BMP_LOGO_WIDTH;
469 fb16 += panel_info.vl_col;
470 }
471 }
472
473 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000474 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000475}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000476#else
477static inline void bitmap_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000478#endif /* CONFIG_LCD_LOGO */
479
480/*----------------------------------------------------------------------*/
Jon Loeligerc3517f92007-07-08 18:10:08 -0500481#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk8655b6f2004-10-09 23:25:58 +0000482/*
483 * Display the BMP file located at address bmp_image.
484 * Only uncompressed.
485 */
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200486
487#ifdef CONFIG_SPLASH_SCREEN_ALIGN
488#define BMP_ALIGN_CENTER 0x7FFF
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000489
490static void splash_align_axis(int *axis, unsigned long panel_size,
491 unsigned long picture_size)
492{
493 unsigned long panel_picture_delta = panel_size - picture_size;
494 unsigned long axis_alignment;
495
496 if (*axis == BMP_ALIGN_CENTER)
497 axis_alignment = panel_picture_delta / 2;
498 else if (*axis < 0)
499 axis_alignment = panel_picture_delta + *axis + 1;
500 else
501 return;
502
Masahiro Yamadab4141192014-11-07 03:03:31 +0900503 *axis = max(0, (int)axis_alignment);
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000504}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200505#endif
506
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000507
508#ifdef CONFIG_LCD_BMP_RLE8
509
510#define BMP_RLE8_ESCAPE 0
511#define BMP_RLE8_EOL 0
512#define BMP_RLE8_EOBMP 1
513#define BMP_RLE8_DELTA 2
514
515static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
516 int cnt)
517{
518 while (cnt > 0) {
519 *(*fbp)++ = cmap[*bmap++];
520 cnt--;
521 }
522}
523
524static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
525{
526 ushort *fb = *fbp;
527 int cnt_8copy = cnt >> 3;
528
529 cnt -= cnt_8copy << 3;
530 while (cnt_8copy > 0) {
531 *fb++ = c;
532 *fb++ = c;
533 *fb++ = c;
534 *fb++ = c;
535 *fb++ = c;
536 *fb++ = c;
537 *fb++ = c;
538 *fb++ = c;
539 cnt_8copy--;
540 }
541 while (cnt > 0) {
542 *fb++ = c;
543 cnt--;
544 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000545 *fbp = fb;
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000546}
547
548/*
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000549 * Do not call this function directly, must be called from lcd_display_bitmap.
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000550 */
551static void lcd_display_rle8_bitmap(bmp_image_t *bmp, ushort *cmap, uchar *fb,
552 int x_off, int y_off)
553{
554 uchar *bmap;
555 ulong width, height;
556 ulong cnt, runlen;
557 int x, y;
558 int decode = 1;
559
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100560 width = get_unaligned_le32(&bmp->header.width);
561 height = get_unaligned_le32(&bmp->header.height);
562 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000563
564 x = 0;
565 y = height - 1;
566
567 while (decode) {
568 if (bmap[0] == BMP_RLE8_ESCAPE) {
569 switch (bmap[1]) {
570 case BMP_RLE8_EOL:
571 /* end of line */
572 bmap += 2;
573 x = 0;
574 y--;
575 /* 16bpix, 2-byte per pixel, width should *2 */
576 fb -= (width * 2 + lcd_line_length);
577 break;
578 case BMP_RLE8_EOBMP:
579 /* end of bitmap */
580 decode = 0;
581 break;
582 case BMP_RLE8_DELTA:
583 /* delta run */
584 x += bmap[2];
585 y -= bmap[3];
586 /* 16bpix, 2-byte per pixel, x should *2 */
587 fb = (uchar *) (lcd_base + (y + y_off - 1)
588 * lcd_line_length + (x + x_off) * 2);
589 bmap += 4;
590 break;
591 default:
592 /* unencoded run */
593 runlen = bmap[1];
594 bmap += 2;
595 if (y < height) {
596 if (x < width) {
597 if (x + runlen > width)
598 cnt = width - x;
599 else
600 cnt = runlen;
601 draw_unencoded_bitmap(
602 (ushort **)&fb,
603 bmap, cmap, cnt);
604 }
605 x += runlen;
606 }
607 bmap += runlen;
608 if (runlen & 1)
609 bmap++;
610 }
611 } else {
612 /* encoded run */
613 if (y < height) {
614 runlen = bmap[0];
615 if (x < width) {
616 /* aggregate the same code */
617 while (bmap[0] == 0xff &&
618 bmap[2] != BMP_RLE8_ESCAPE &&
619 bmap[1] == bmap[3]) {
620 runlen += bmap[2];
621 bmap += 2;
622 }
623 if (x + runlen > width)
624 cnt = width - x;
625 else
626 cnt = runlen;
627 draw_encoded_bitmap((ushort **)&fb,
628 cmap[bmap[1]], cnt);
629 }
630 x += runlen;
631 }
632 bmap += 2;
633 }
634 }
635}
636#endif
637
Nikita Kiryanovecfdcee2014-11-11 15:46:05 +0200638#if defined(CONFIG_MPC823)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000639#define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000640#else
641#define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000642#endif
643
644#if defined(CONFIG_BMP_16BPP)
645#if defined(CONFIG_ATMEL_LCD_BGR555)
646static inline void fb_put_word(uchar **fb, uchar **from)
647{
648 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
649 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
650 *from += 2;
651}
652#else
653static inline void fb_put_word(uchar **fb, uchar **from)
654{
655 *(*fb)++ = *(*from)++;
656 *(*fb)++ = *(*from)++;
657}
658#endif
659#endif /* CONFIG_BMP_16BPP */
660
wdenk8655b6f2004-10-09 23:25:58 +0000661int lcd_display_bitmap(ulong bmp_image, int x, int y)
662{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100663 ushort *cmap = NULL;
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100664 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000665 ushort i, j;
666 uchar *fb;
Simon Glass7d95f2a2014-02-27 13:26:19 -0700667 bmp_image_t *bmp = (bmp_image_t *)map_sysmem(bmp_image, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000668 uchar *bmap;
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000669 ushort padded_width;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100670 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200671 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100672 unsigned colors, bpix, bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000673
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000674 if (!bmp || !(bmp->header.signature[0] == 'B' &&
675 bmp->header.signature[1] == 'M')) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000676 printf("Error: no valid bmp image at %lx\n", bmp_image);
677
wdenk8655b6f2004-10-09 23:25:58 +0000678 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100679 }
wdenk8655b6f2004-10-09 23:25:58 +0000680
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100681 width = get_unaligned_le32(&bmp->header.width);
682 height = get_unaligned_le32(&bmp->header.height);
683 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
684
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100685 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000686
687 bpix = NBITS(panel_info.vl_bpix);
688
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000689 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100690 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
691 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000692
wdenk8655b6f2004-10-09 23:25:58 +0000693 return 1;
694 }
695
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200696 /*
697 * We support displaying 8bpp BMPs on 16bpp LCDs
698 * and displaying 24bpp BMPs on 32bpp LCDs
699 * */
700 if (bpix != bmp_bpix &&
701 !(bmp_bpix == 8 && bpix == 16) &&
702 !(bmp_bpix == 24 && bpix == 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000703 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100704 bpix, get_unaligned_le16(&bmp->header.bit_count));
wdenk8655b6f2004-10-09 23:25:58 +0000705 return 1;
706 }
707
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000708 debug("Display-bmp: %d x %d with %d colors\n",
wdenk8655b6f2004-10-09 23:25:58 +0000709 (int)width, (int)height, (int)colors);
710
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100711 if (bmp_bpix == 8) {
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000712 cmap = configuration_get_cmap();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100713 cmap_base = cmap;
714
wdenk8655b6f2004-10-09 23:25:58 +0000715 /* Set color map */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000716 for (i = 0; i < colors; ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000717 bmp_color_table_entry_t cte = bmp->color_table[i];
Mark Jackson1464eff2008-08-01 09:48:29 +0100718#if !defined(CONFIG_ATMEL_LCD)
wdenk8655b6f2004-10-09 23:25:58 +0000719 ushort colreg =
720 ( ((cte.red) << 8) & 0xf800) |
Wolfgang Denk59d80bf2005-09-21 15:24:52 +0200721 ( ((cte.green) << 3) & 0x07e0) |
722 ( ((cte.blue) >> 3) & 0x001f) ;
wdenk25d67122004-12-10 11:40:40 +0000723 *cmap = colreg;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100724#if defined(CONFIG_MPC823)
wdenk25d67122004-12-10 11:40:40 +0000725 cmap--;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100726#else
727 cmap++;
wdenk8655b6f2004-10-09 23:25:58 +0000728#endif
Mark Jackson1464eff2008-08-01 09:48:29 +0100729#else /* CONFIG_ATMEL_LCD */
730 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
731#endif
wdenk8655b6f2004-10-09 23:25:58 +0000732 }
733 }
Wolfgang Denke8143e72006-08-30 23:09:00 +0200734
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000735 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200736
737#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000738 splash_align_axis(&x, pwidth, width);
739 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200740#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
741
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000742 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200743 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000744 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000745 height = panel_info.vl_row - y;
746
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100747 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
748 fb = (uchar *)(lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800749 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100750
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100751 switch (bmp_bpix) {
Mark Jacksona303dfb2009-02-06 10:37:49 +0100752 case 1: /* pass through */
Simon Glass01564442014-10-15 04:53:04 -0600753 case 8: {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000754#ifdef CONFIG_LCD_BMP_RLE8
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100755 u32 compression = get_unaligned_le32(&bmp->header.compression);
756 if (compression == BMP_BI_RLE8) {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000757 if (bpix != 16) {
758 /* TODO implement render code for bpix != 16 */
759 printf("Error: only support 16 bpix");
760 return 1;
761 }
762 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
763 break;
764 }
765#endif
766
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100767 if (bpix != 16)
768 byte_width = width;
769 else
770 byte_width = width * 2;
771
Mark Jacksona303dfb2009-02-06 10:37:49 +0100772 for (i = 0; i < height; ++i) {
773 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100774 for (j = 0; j < width; j++) {
775 if (bpix != 16) {
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000776 FB_PUT_BYTE(fb, bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100777 } else {
778 *(uint16_t *)fb = cmap_base[*(bmap++)];
779 fb += sizeof(uint16_t) / sizeof(*fb);
780 }
781 }
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000782 bmap += (padded_width - width);
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000783 fb -= byte_width + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100784 }
785 break;
Simon Glass01564442014-10-15 04:53:04 -0600786 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100787#if defined(CONFIG_BMP_16BPP)
788 case 16:
789 for (i = 0; i < height; ++i) {
790 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000791 for (j = 0; j < width; j++)
792 fb_put_word(&fb, &bmap);
793
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000794 bmap += (padded_width - width) * 2;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000795 fb -= width * 2 + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100796 }
797 break;
798#endif /* CONFIG_BMP_16BPP */
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200799#if defined(CONFIG_BMP_24BMP)
800 case 24:
801 for (i = 0; i < height; ++i) {
802 for (j = 0; j < width; j++) {
803 *(fb++) = *(bmap++);
804 *(fb++) = *(bmap++);
805 *(fb++) = *(bmap++);
806 *(fb++) = 0;
807 }
808 fb -= lcd_line_length + width * (bpix / 8);
809 }
810 break;
811#endif /* CONFIG_BMP_24BMP */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000812#if defined(CONFIG_BMP_32BPP)
813 case 32:
814 for (i = 0; i < height; ++i) {
815 for (j = 0; j < width; j++) {
816 *(fb++) = *(bmap++);
817 *(fb++) = *(bmap++);
818 *(fb++) = *(bmap++);
819 *(fb++) = *(bmap++);
820 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000821 fb -= lcd_line_length + width * (bpix / 8);
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000822 }
823 break;
824#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100825 default:
826 break;
827 };
wdenk8655b6f2004-10-09 23:25:58 +0000828
Simon Glass9a8efc42012-10-30 13:40:18 +0000829 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000830 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000831}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500832#endif
wdenk8655b6f2004-10-09 23:25:58 +0000833
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000834static void *lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000835{
wdenk8655b6f2004-10-09 23:25:58 +0000836#ifdef CONFIG_SPLASH_SCREEN
837 char *s;
838 ulong addr;
839 static int do_splash = 1;
840
841 if (do_splash && (s = getenv("splashimage")) != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200842 int x = 0, y = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000843 do_splash = 0;
844
Nikita Kiryanov581bb412013-01-30 21:39:57 +0000845 if (splash_screen_prepare())
Robert Winklerdd4425e2013-06-17 11:31:29 -0700846 return (void *)lcd_base;
Nikita Kiryanov581bb412013-01-30 21:39:57 +0000847
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200848 addr = simple_strtoul (s, NULL, 16);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200849
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200850 splash_get_pos(&x, &y);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200851
Nikita Kiryanovd3a555e2012-08-09 00:14:50 +0000852 if (bmp_display(addr, x, y) == 0)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000853 return (void *)lcd_base;
wdenk8655b6f2004-10-09 23:25:58 +0000854 }
855#endif /* CONFIG_SPLASH_SCREEN */
856
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000857 bitmap_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000858
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200859#ifdef CONFIG_LCD_INFO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200860 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
861 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200862 lcd_show_board_info();
863#endif /* CONFIG_LCD_INFO */
Stelian Pop39cf4802008-05-09 21:57:18 +0200864
wdenk88804d12005-07-04 00:03:16 +0000865#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000866 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000867#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000868 return (void *)lcd_base;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000869#endif /* CONFIG_LCD_LOGO && !defined(CONFIG_LCD_INFO_BELOW_LOGO) */
wdenk8655b6f2004-10-09 23:25:58 +0000870}
871
Nikita Kiryanovc0880482013-02-24 21:28:43 +0000872#ifdef CONFIG_SPLASHIMAGE_GUARD
873static int on_splashimage(const char *name, const char *value, enum env_op op,
874 int flags)
875{
876 ulong addr;
877 int aligned;
878
879 if (op == env_op_delete)
880 return 0;
881
882 addr = simple_strtoul(value, NULL, 16);
883 /* See README.displaying-bmps */
884 aligned = (addr % 4 == 2);
885 if (!aligned) {
886 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
887 return -1;
888 }
889
890 return 0;
891}
892
893U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
894#endif
895
Vadim Bendebury395166c2012-09-28 15:11:13 +0000896int lcd_get_pixel_width(void)
897{
898 return panel_info.vl_col;
899}
900
901int lcd_get_pixel_height(void)
902{
903 return panel_info.vl_row;
904}
905
Stephen Warren6a195d22013-05-27 18:31:17 +0000906#if defined(CONFIG_LCD_DT_SIMPLEFB)
907static int lcd_dt_simplefb_configure_node(void *blob, int off)
908{
Stephen Warren6a195d22013-05-27 18:31:17 +0000909#if LCD_BPP == LCD_COLOR16
Hans de Goede11b8dfa2014-11-19 13:53:27 +0100910 return fdt_setup_simplefb_node(blob, off, gd->fb_base,
911 panel_info.vl_col, panel_info.vl_row,
912 panel_info.vl_col * 2, "r5g6b5");
Stephen Warren6a195d22013-05-27 18:31:17 +0000913#else
Hans de Goede11b8dfa2014-11-19 13:53:27 +0100914 return -1;
Stephen Warren6a195d22013-05-27 18:31:17 +0000915#endif
Stephen Warren6a195d22013-05-27 18:31:17 +0000916}
917
918int lcd_dt_simplefb_add_node(void *blob)
919{
Stephen Warren5af7d0f2013-06-13 17:13:11 -0600920 static const char compat[] = "simple-framebuffer";
921 static const char disabled[] = "disabled";
Stephen Warren6a195d22013-05-27 18:31:17 +0000922 int off, ret;
923
924 off = fdt_add_subnode(blob, 0, "framebuffer");
925 if (off < 0)
926 return -1;
927
928 ret = fdt_setprop(blob, off, "status", disabled, sizeof(disabled));
929 if (ret < 0)
930 return -1;
931
932 ret = fdt_setprop(blob, off, "compatible", compat, sizeof(compat));
933 if (ret < 0)
934 return -1;
935
936 return lcd_dt_simplefb_configure_node(blob, off);
937}
938
939int lcd_dt_simplefb_enable_existing_node(void *blob)
940{
941 int off;
942
943 off = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
944 if (off < 0)
945 return -1;
946
947 return lcd_dt_simplefb_configure_node(blob, off);
948}
949#endif