blob: 1195a54efcc742837f3cb703b4c8ad6f5d356569 [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 +0000386static inline ushort *configuration_get_cmap(void)
387{
388#if defined CONFIG_CPU_PXA
389 struct pxafb_info *fbi = &panel_info.pxa;
390 return (ushort *)fbi->palette;
391#elif defined(CONFIG_MPC823)
392 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
393 cpm8xx_t *cp = &(immr->im_cpm);
394 return (ushort *)&(cp->lcd_cmap[255 * sizeof(ushort)]);
395#elif defined(CONFIG_ATMEL_LCD)
396 return (ushort *)(panel_info.mmio + ATMEL_LCDC_LUT(0));
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000397#elif !defined(CONFIG_ATMEL_HLCD) && !defined(CONFIG_EXYNOS_FB)
398 return panel_info.cmap;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000399#elif defined(CONFIG_LCD_LOGO)
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000400 return bmp_logo_palette;
401#else
402 return NULL;
403#endif
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000404}
405
wdenk8655b6f2004-10-09 23:25:58 +0000406#ifdef CONFIG_LCD_LOGO
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000407void bitmap_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000408{
Stelian Pop39cf4802008-05-09 21:57:18 +0200409#ifdef CONFIG_ATMEL_LCD
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000410 uint *cmap = (uint *)bmp_logo_palette;
Stelian Pop39cf4802008-05-09 21:57:18 +0200411#else
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000412 ushort *cmap = (ushort *)bmp_logo_palette;
Stelian Pop39cf4802008-05-09 21:57:18 +0200413#endif
wdenk8655b6f2004-10-09 23:25:58 +0000414 ushort i, j;
415 uchar *bmap;
416 uchar *fb;
417 ushort *fb16;
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000418#if defined(CONFIG_MPC823)
419 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
420 cpm8xx_t *cp = &(immr->im_cpm);
wdenk8655b6f2004-10-09 23:25:58 +0000421#endif
Andre Renaud317461c2013-02-13 17:48:00 +0000422 unsigned bpix = NBITS(panel_info.vl_bpix);
wdenk8655b6f2004-10-09 23:25:58 +0000423
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000424 debug("Logo: width %d height %d colors %d cmap %d\n",
wdenk8655b6f2004-10-09 23:25:58 +0000425 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
Anatolij Gustschin095407d2012-04-27 04:41:06 +0000426 ARRAY_SIZE(bmp_logo_palette));
wdenk8655b6f2004-10-09 23:25:58 +0000427
428 bmap = &bmp_logo_bitmap[0];
Andre Renaud317461c2013-02-13 17:48:00 +0000429 fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
wdenk8655b6f2004-10-09 23:25:58 +0000430
Andre Renaud317461c2013-02-13 17:48:00 +0000431 if (bpix < 12) {
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000432 /* Leave room for default color map
433 * default case: generic system with no cmap (most likely 16bpp)
434 * cmap was set to the source palette, so no change is done.
435 * This avoids even more ifdefs in the next stanza
436 */
437#if defined(CONFIG_MPC823)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000438 cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
Stelian Pop39cf4802008-05-09 21:57:18 +0200439#elif defined(CONFIG_ATMEL_LCD)
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000440 cmap = (uint *)configuration_get_cmap();
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100441#else
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000442 cmap = configuration_get_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000443#endif
444
445 WATCHDOG_RESET();
446
447 /* Set color map */
Anatolij Gustschin095407d2012-04-27 04:41:06 +0000448 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000449 ushort colreg = bmp_logo_palette[i];
Stelian Pop39cf4802008-05-09 21:57:18 +0200450#ifdef CONFIG_ATMEL_LCD
451 uint lut_entry;
452#ifdef CONFIG_ATMEL_LCD_BGR555
453 lut_entry = ((colreg & 0x000F) << 11) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000454 ((colreg & 0x00F0) << 2) |
455 ((colreg & 0x0F00) >> 7);
Stelian Pop39cf4802008-05-09 21:57:18 +0200456#else /* CONFIG_ATMEL_LCD_RGB565 */
457 lut_entry = ((colreg & 0x000F) << 1) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000458 ((colreg & 0x00F0) << 3) |
459 ((colreg & 0x0F00) << 4);
Stelian Pop39cf4802008-05-09 21:57:18 +0200460#endif
461 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
462 cmap++;
463#else /* !CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000464 *cmap++ = colreg;
Stelian Pop39cf4802008-05-09 21:57:18 +0200465#endif /* CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000466 }
467
468 WATCHDOG_RESET();
469
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000470 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
471 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000472 bmap += BMP_LOGO_WIDTH;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000473 fb += panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000474 }
475 }
476 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100477 u16 col16;
Andre Renaud317461c2013-02-13 17:48:00 +0000478 fb16 = (ushort *)fb;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000479 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
480 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100481 col16 = bmp_logo_palette[(bmap[j]-16)];
482 fb16[j] =
483 ((col16 & 0x000F) << 1) |
484 ((col16 & 0x00F0) << 3) |
485 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000486 }
487 bmap += BMP_LOGO_WIDTH;
488 fb16 += panel_info.vl_col;
489 }
490 }
491
492 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000493 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000494}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000495#else
496static inline void bitmap_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000497#endif /* CONFIG_LCD_LOGO */
498
499/*----------------------------------------------------------------------*/
Jon Loeligerc3517f92007-07-08 18:10:08 -0500500#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk8655b6f2004-10-09 23:25:58 +0000501/*
502 * Display the BMP file located at address bmp_image.
503 * Only uncompressed.
504 */
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200505
506#ifdef CONFIG_SPLASH_SCREEN_ALIGN
507#define BMP_ALIGN_CENTER 0x7FFF
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000508
509static void splash_align_axis(int *axis, unsigned long panel_size,
510 unsigned long picture_size)
511{
512 unsigned long panel_picture_delta = panel_size - picture_size;
513 unsigned long axis_alignment;
514
515 if (*axis == BMP_ALIGN_CENTER)
516 axis_alignment = panel_picture_delta / 2;
517 else if (*axis < 0)
518 axis_alignment = panel_picture_delta + *axis + 1;
519 else
520 return;
521
Masahiro Yamadab4141192014-11-07 03:03:31 +0900522 *axis = max(0, (int)axis_alignment);
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000523}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200524#endif
525
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000526
527#ifdef CONFIG_LCD_BMP_RLE8
528
529#define BMP_RLE8_ESCAPE 0
530#define BMP_RLE8_EOL 0
531#define BMP_RLE8_EOBMP 1
532#define BMP_RLE8_DELTA 2
533
534static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
535 int cnt)
536{
537 while (cnt > 0) {
538 *(*fbp)++ = cmap[*bmap++];
539 cnt--;
540 }
541}
542
543static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
544{
545 ushort *fb = *fbp;
546 int cnt_8copy = cnt >> 3;
547
548 cnt -= cnt_8copy << 3;
549 while (cnt_8copy > 0) {
550 *fb++ = c;
551 *fb++ = c;
552 *fb++ = c;
553 *fb++ = c;
554 *fb++ = c;
555 *fb++ = c;
556 *fb++ = c;
557 *fb++ = c;
558 cnt_8copy--;
559 }
560 while (cnt > 0) {
561 *fb++ = c;
562 cnt--;
563 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000564 *fbp = fb;
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000565}
566
567/*
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000568 * Do not call this function directly, must be called from lcd_display_bitmap.
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000569 */
570static void lcd_display_rle8_bitmap(bmp_image_t *bmp, ushort *cmap, uchar *fb,
571 int x_off, int y_off)
572{
573 uchar *bmap;
574 ulong width, height;
575 ulong cnt, runlen;
576 int x, y;
577 int decode = 1;
578
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100579 width = get_unaligned_le32(&bmp->header.width);
580 height = get_unaligned_le32(&bmp->header.height);
581 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000582
583 x = 0;
584 y = height - 1;
585
586 while (decode) {
587 if (bmap[0] == BMP_RLE8_ESCAPE) {
588 switch (bmap[1]) {
589 case BMP_RLE8_EOL:
590 /* end of line */
591 bmap += 2;
592 x = 0;
593 y--;
594 /* 16bpix, 2-byte per pixel, width should *2 */
595 fb -= (width * 2 + lcd_line_length);
596 break;
597 case BMP_RLE8_EOBMP:
598 /* end of bitmap */
599 decode = 0;
600 break;
601 case BMP_RLE8_DELTA:
602 /* delta run */
603 x += bmap[2];
604 y -= bmap[3];
605 /* 16bpix, 2-byte per pixel, x should *2 */
606 fb = (uchar *) (lcd_base + (y + y_off - 1)
607 * lcd_line_length + (x + x_off) * 2);
608 bmap += 4;
609 break;
610 default:
611 /* unencoded run */
612 runlen = bmap[1];
613 bmap += 2;
614 if (y < height) {
615 if (x < width) {
616 if (x + runlen > width)
617 cnt = width - x;
618 else
619 cnt = runlen;
620 draw_unencoded_bitmap(
621 (ushort **)&fb,
622 bmap, cmap, cnt);
623 }
624 x += runlen;
625 }
626 bmap += runlen;
627 if (runlen & 1)
628 bmap++;
629 }
630 } else {
631 /* encoded run */
632 if (y < height) {
633 runlen = bmap[0];
634 if (x < width) {
635 /* aggregate the same code */
636 while (bmap[0] == 0xff &&
637 bmap[2] != BMP_RLE8_ESCAPE &&
638 bmap[1] == bmap[3]) {
639 runlen += bmap[2];
640 bmap += 2;
641 }
642 if (x + runlen > width)
643 cnt = width - x;
644 else
645 cnt = runlen;
646 draw_encoded_bitmap((ushort **)&fb,
647 cmap[bmap[1]], cnt);
648 }
649 x += runlen;
650 }
651 bmap += 2;
652 }
653 }
654}
655#endif
656
Nikita Kiryanovecfdcee2014-11-11 15:46:05 +0200657#if defined(CONFIG_MPC823)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000658#define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000659#else
660#define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000661#endif
662
663#if defined(CONFIG_BMP_16BPP)
664#if defined(CONFIG_ATMEL_LCD_BGR555)
665static inline void fb_put_word(uchar **fb, uchar **from)
666{
667 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
668 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
669 *from += 2;
670}
671#else
672static inline void fb_put_word(uchar **fb, uchar **from)
673{
674 *(*fb)++ = *(*from)++;
675 *(*fb)++ = *(*from)++;
676}
677#endif
678#endif /* CONFIG_BMP_16BPP */
679
wdenk8655b6f2004-10-09 23:25:58 +0000680int lcd_display_bitmap(ulong bmp_image, int x, int y)
681{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100682 ushort *cmap = NULL;
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100683 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000684 ushort i, j;
685 uchar *fb;
Simon Glass7d95f2a2014-02-27 13:26:19 -0700686 bmp_image_t *bmp = (bmp_image_t *)map_sysmem(bmp_image, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000687 uchar *bmap;
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000688 ushort padded_width;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100689 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200690 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100691 unsigned colors, bpix, bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000692
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000693 if (!bmp || !(bmp->header.signature[0] == 'B' &&
694 bmp->header.signature[1] == 'M')) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000695 printf("Error: no valid bmp image at %lx\n", bmp_image);
696
wdenk8655b6f2004-10-09 23:25:58 +0000697 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100698 }
wdenk8655b6f2004-10-09 23:25:58 +0000699
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100700 width = get_unaligned_le32(&bmp->header.width);
701 height = get_unaligned_le32(&bmp->header.height);
702 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
703
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100704 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000705
706 bpix = NBITS(panel_info.vl_bpix);
707
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000708 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100709 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
710 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000711
wdenk8655b6f2004-10-09 23:25:58 +0000712 return 1;
713 }
714
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200715 /*
716 * We support displaying 8bpp BMPs on 16bpp LCDs
717 * and displaying 24bpp BMPs on 32bpp LCDs
718 * */
719 if (bpix != bmp_bpix &&
720 !(bmp_bpix == 8 && bpix == 16) &&
721 !(bmp_bpix == 24 && bpix == 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000722 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100723 bpix, get_unaligned_le16(&bmp->header.bit_count));
wdenk8655b6f2004-10-09 23:25:58 +0000724 return 1;
725 }
726
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000727 debug("Display-bmp: %d x %d with %d colors\n",
wdenk8655b6f2004-10-09 23:25:58 +0000728 (int)width, (int)height, (int)colors);
729
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100730 if (bmp_bpix == 8) {
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000731 cmap = configuration_get_cmap();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100732 cmap_base = cmap;
733
wdenk8655b6f2004-10-09 23:25:58 +0000734 /* Set color map */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000735 for (i = 0; i < colors; ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000736 bmp_color_table_entry_t cte = bmp->color_table[i];
Mark Jackson1464eff2008-08-01 09:48:29 +0100737#if !defined(CONFIG_ATMEL_LCD)
wdenk8655b6f2004-10-09 23:25:58 +0000738 ushort colreg =
739 ( ((cte.red) << 8) & 0xf800) |
Wolfgang Denk59d80bf2005-09-21 15:24:52 +0200740 ( ((cte.green) << 3) & 0x07e0) |
741 ( ((cte.blue) >> 3) & 0x001f) ;
wdenk25d67122004-12-10 11:40:40 +0000742 *cmap = colreg;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100743#if defined(CONFIG_MPC823)
wdenk25d67122004-12-10 11:40:40 +0000744 cmap--;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100745#else
746 cmap++;
wdenk8655b6f2004-10-09 23:25:58 +0000747#endif
Mark Jackson1464eff2008-08-01 09:48:29 +0100748#else /* CONFIG_ATMEL_LCD */
749 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
750#endif
wdenk8655b6f2004-10-09 23:25:58 +0000751 }
752 }
Wolfgang Denke8143e72006-08-30 23:09:00 +0200753
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000754 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200755
756#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000757 splash_align_axis(&x, pwidth, width);
758 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200759#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
760
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000761 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200762 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000763 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000764 height = panel_info.vl_row - y;
765
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100766 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
767 fb = (uchar *)(lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800768 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100769
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100770 switch (bmp_bpix) {
Mark Jacksona303dfb2009-02-06 10:37:49 +0100771 case 1: /* pass through */
Simon Glass01564442014-10-15 04:53:04 -0600772 case 8: {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000773#ifdef CONFIG_LCD_BMP_RLE8
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100774 u32 compression = get_unaligned_le32(&bmp->header.compression);
775 if (compression == BMP_BI_RLE8) {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000776 if (bpix != 16) {
777 /* TODO implement render code for bpix != 16 */
778 printf("Error: only support 16 bpix");
779 return 1;
780 }
781 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
782 break;
783 }
784#endif
785
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100786 if (bpix != 16)
787 byte_width = width;
788 else
789 byte_width = width * 2;
790
Mark Jacksona303dfb2009-02-06 10:37:49 +0100791 for (i = 0; i < height; ++i) {
792 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100793 for (j = 0; j < width; j++) {
794 if (bpix != 16) {
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000795 FB_PUT_BYTE(fb, bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100796 } else {
797 *(uint16_t *)fb = cmap_base[*(bmap++)];
798 fb += sizeof(uint16_t) / sizeof(*fb);
799 }
800 }
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000801 bmap += (padded_width - width);
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000802 fb -= byte_width + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100803 }
804 break;
Simon Glass01564442014-10-15 04:53:04 -0600805 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100806#if defined(CONFIG_BMP_16BPP)
807 case 16:
808 for (i = 0; i < height; ++i) {
809 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000810 for (j = 0; j < width; j++)
811 fb_put_word(&fb, &bmap);
812
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000813 bmap += (padded_width - width) * 2;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000814 fb -= width * 2 + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100815 }
816 break;
817#endif /* CONFIG_BMP_16BPP */
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200818#if defined(CONFIG_BMP_24BMP)
819 case 24:
820 for (i = 0; i < height; ++i) {
821 for (j = 0; j < width; j++) {
822 *(fb++) = *(bmap++);
823 *(fb++) = *(bmap++);
824 *(fb++) = *(bmap++);
825 *(fb++) = 0;
826 }
827 fb -= lcd_line_length + width * (bpix / 8);
828 }
829 break;
830#endif /* CONFIG_BMP_24BMP */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000831#if defined(CONFIG_BMP_32BPP)
832 case 32:
833 for (i = 0; i < height; ++i) {
834 for (j = 0; j < width; j++) {
835 *(fb++) = *(bmap++);
836 *(fb++) = *(bmap++);
837 *(fb++) = *(bmap++);
838 *(fb++) = *(bmap++);
839 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000840 fb -= lcd_line_length + width * (bpix / 8);
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000841 }
842 break;
843#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100844 default:
845 break;
846 };
wdenk8655b6f2004-10-09 23:25:58 +0000847
Simon Glass9a8efc42012-10-30 13:40:18 +0000848 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000849 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000850}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500851#endif
wdenk8655b6f2004-10-09 23:25:58 +0000852
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000853static void *lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000854{
wdenk8655b6f2004-10-09 23:25:58 +0000855#ifdef CONFIG_SPLASH_SCREEN
856 char *s;
857 ulong addr;
858 static int do_splash = 1;
859
860 if (do_splash && (s = getenv("splashimage")) != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200861 int x = 0, y = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000862 do_splash = 0;
863
Nikita Kiryanov581bb412013-01-30 21:39:57 +0000864 if (splash_screen_prepare())
Robert Winklerdd4425e2013-06-17 11:31:29 -0700865 return (void *)lcd_base;
Nikita Kiryanov581bb412013-01-30 21:39:57 +0000866
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200867 addr = simple_strtoul (s, NULL, 16);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200868
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200869 splash_get_pos(&x, &y);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200870
Nikita Kiryanovd3a555e2012-08-09 00:14:50 +0000871 if (bmp_display(addr, x, y) == 0)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000872 return (void *)lcd_base;
wdenk8655b6f2004-10-09 23:25:58 +0000873 }
874#endif /* CONFIG_SPLASH_SCREEN */
875
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000876 bitmap_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000877
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200878#ifdef CONFIG_LCD_INFO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200879 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
880 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200881 lcd_show_board_info();
882#endif /* CONFIG_LCD_INFO */
Stelian Pop39cf4802008-05-09 21:57:18 +0200883
wdenk88804d12005-07-04 00:03:16 +0000884#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000885 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000886#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000887 return (void *)lcd_base;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000888#endif /* CONFIG_LCD_LOGO && !defined(CONFIG_LCD_INFO_BELOW_LOGO) */
wdenk8655b6f2004-10-09 23:25:58 +0000889}
890
Nikita Kiryanovc0880482013-02-24 21:28:43 +0000891#ifdef CONFIG_SPLASHIMAGE_GUARD
892static int on_splashimage(const char *name, const char *value, enum env_op op,
893 int flags)
894{
895 ulong addr;
896 int aligned;
897
898 if (op == env_op_delete)
899 return 0;
900
901 addr = simple_strtoul(value, NULL, 16);
902 /* See README.displaying-bmps */
903 aligned = (addr % 4 == 2);
904 if (!aligned) {
905 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
906 return -1;
907 }
908
909 return 0;
910}
911
912U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
913#endif
914
Vadim Bendebury395166c2012-09-28 15:11:13 +0000915int lcd_get_pixel_width(void)
916{
917 return panel_info.vl_col;
918}
919
920int lcd_get_pixel_height(void)
921{
922 return panel_info.vl_row;
923}
924
Stephen Warren6a195d22013-05-27 18:31:17 +0000925#if defined(CONFIG_LCD_DT_SIMPLEFB)
926static int lcd_dt_simplefb_configure_node(void *blob, int off)
927{
Stephen Warren6a195d22013-05-27 18:31:17 +0000928#if LCD_BPP == LCD_COLOR16
Hans de Goede11b8dfa2014-11-19 13:53:27 +0100929 return fdt_setup_simplefb_node(blob, off, gd->fb_base,
930 panel_info.vl_col, panel_info.vl_row,
931 panel_info.vl_col * 2, "r5g6b5");
Stephen Warren6a195d22013-05-27 18:31:17 +0000932#else
Hans de Goede11b8dfa2014-11-19 13:53:27 +0100933 return -1;
Stephen Warren6a195d22013-05-27 18:31:17 +0000934#endif
Stephen Warren6a195d22013-05-27 18:31:17 +0000935}
936
937int lcd_dt_simplefb_add_node(void *blob)
938{
Stephen Warren5af7d0f2013-06-13 17:13:11 -0600939 static const char compat[] = "simple-framebuffer";
940 static const char disabled[] = "disabled";
Stephen Warren6a195d22013-05-27 18:31:17 +0000941 int off, ret;
942
943 off = fdt_add_subnode(blob, 0, "framebuffer");
944 if (off < 0)
945 return -1;
946
947 ret = fdt_setprop(blob, off, "status", disabled, sizeof(disabled));
948 if (ret < 0)
949 return -1;
950
951 ret = fdt_setprop(blob, off, "compatible", compat, sizeof(compat));
952 if (ret < 0)
953 return -1;
954
955 return lcd_dt_simplefb_configure_node(blob, off);
956}
957
958int lcd_dt_simplefb_enable_existing_node(void *blob)
959{
960 int off;
961
962 off = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
963 if (off < 0)
964 return -1;
965
966 return lcd_dt_simplefb_configure_node(blob, off);
967}
968#endif