blob: ed68be9325540ccc8ca4e4118485c98f00d82c4d [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>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050018#include <mapmem.h>
wdenk8b0bfc62005-04-03 23:11:38 +000019#include <watchdog.h>
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +010020#include <asm/unaligned.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070021#include <splash.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070022#include <asm/io.h>
23#include <asm/unaligned.h>
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020024#include <video_font.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070025
wdenk88804d12005-07-04 00:03:16 +000026#ifdef CONFIG_LCD_LOGO
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020027#include <bmp_logo.h>
28#include <bmp_logo_data.h>
29#if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
30#error Default Color Map overlaps with Logo Color Map
31#endif
wdenk88804d12005-07-04 00:03:16 +000032#endif
wdenk8655b6f2004-10-09 23:25:58 +000033
Simon Glass7d95f2a2014-02-27 13:26:19 -070034#ifdef CONFIG_SANDBOX
35#include <asm/sdl.h>
36#endif
37
Simon Glass676d3192012-10-17 13:24:54 +000038#ifndef CONFIG_LCD_ALIGNMENT
39#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
40#endif
41
Nikita Kiryanova7de2952014-12-08 17:14:42 +020042#if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
43 (LCD_BPP != LCD_COLOR32)
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020044#error Unsupported LCD BPP.
Jeroen Hofsteea5796c52013-01-12 12:07:59 +000045#endif
46
Wolfgang Denkd87080b2006-03-31 18:32:53 +020047DECLARE_GLOBAL_DATA_PTR;
wdenk8655b6f2004-10-09 23:25:58 +000048
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000049static int lcd_init(void *lcdbase);
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +020050static void lcd_logo(void);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000051static void lcd_setfgcolor(int color);
52static void lcd_setbgcolor(int color);
wdenk8655b6f2004-10-09 23:25:58 +000053
Wolfgang Denk46d1d5d2013-01-05 09:45:48 +000054static int lcd_color_fg;
55static int lcd_color_bg;
Jeroen Hofsteef1d205a2013-01-22 10:44:11 +000056int lcd_line_length;
wdenk8655b6f2004-10-09 23:25:58 +000057char lcd_is_enabled = 0;
Jeroen Hofstee00a0ca52013-01-22 10:44:12 +000058static void *lcd_base; /* Start of framebuffer memory */
Simon Glass9a8efc42012-10-30 13:40:18 +000059static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
60
Simon Glass9a8efc42012-10-30 13:40:18 +000061/* Flush LCD activity to the caches */
62void lcd_sync(void)
63{
64 /*
65 * flush_dcache_range() is declared in common.h but it seems that some
66 * architectures do not actually implement it. Is there a way to find
67 * out whether it exists? For now, ARM is safe.
68 */
69#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
70 int line_length;
71
72 if (lcd_flush_dcache)
73 flush_dcache_range((u32)lcd_base,
74 (u32)(lcd_base + lcd_get_size(&line_length)));
Simon Glass7d95f2a2014-02-27 13:26:19 -070075#elif defined(CONFIG_SANDBOX) && defined(CONFIG_VIDEO_SANDBOX_SDL)
76 static ulong last_sync;
77
78 if (get_timer(last_sync) > 10) {
79 sandbox_sdl_sync(lcd_base);
80 last_sync = get_timer(0);
81 }
Simon Glass9a8efc42012-10-30 13:40:18 +000082#endif
83}
84
85void lcd_set_flush_dcache(int flush)
86{
87 lcd_flush_dcache = (flush != 0);
88}
89
Simon Glass709ea542014-07-23 06:54:59 -060090static void lcd_stub_putc(struct stdio_dev *dev, const char c)
91{
92 lcd_putc(c);
93}
94
Simon Glass709ea542014-07-23 06:54:59 -060095static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
96{
97 lcd_puts(s);
98}
99
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200100/* Small utility to check that you got the colours right */
wdenk8655b6f2004-10-09 23:25:58 +0000101#ifdef LCD_TEST_PATTERN
102
103#define N_BLK_VERT 2
104#define N_BLK_HOR 3
105
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000106static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
wdenk8655b6f2004-10-09 23:25:58 +0000107 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
108 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
109};
110
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000111static void test_pattern(void)
wdenk8655b6f2004-10-09 23:25:58 +0000112{
113 ushort v_max = panel_info.vl_row;
114 ushort h_max = panel_info.vl_col;
115 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
116 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
117 ushort v, h;
118 uchar *pix = (uchar *)lcd_base;
119
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000120 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
wdenk8655b6f2004-10-09 23:25:58 +0000121 h_max, v_max, h_step, v_step);
122
123 /* WARNING: Code silently assumes 8bit/pixel */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000124 for (v = 0; v < v_max; ++v) {
wdenk8655b6f2004-10-09 23:25:58 +0000125 uchar iy = v / v_step;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000126 for (h = 0; h < h_max; ++h) {
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000127 uchar ix = N_BLK_HOR * iy + h / h_step;
wdenk8655b6f2004-10-09 23:25:58 +0000128 *pix++ = test_colors[ix];
129 }
130 }
131}
132#endif /* LCD_TEST_PATTERN */
133
Anatolij Gustschincefa4712013-11-09 11:00:09 +0100134/*
135 * With most lcd drivers the line length is set up
136 * by calculating it from panel_info parameters. Some
137 * drivers need to calculate the line length differently,
138 * so make the function weak to allow overriding it.
139 */
140__weak int lcd_get_size(int *line_length)
Simon Glass676d3192012-10-17 13:24:54 +0000141{
142 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
143 return *line_length * panel_info.vl_row;
144}
145
Stephane Ayotte05bfe132015-11-03 11:14:49 -0500146/*
147 * Implement a weak default function for boards that optionally
148 * need to skip the lcd console initialization.
149 */
150__weak int board_lcd_console_skip(void)
151{
152 /* As default, don't skip cfb init */
153 return 0;
154}
155
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000156int drv_lcd_init(void)
wdenk8655b6f2004-10-09 23:25:58 +0000157{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200158 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000159 int rc;
160
Simon Glass7d95f2a2014-02-27 13:26:19 -0700161 lcd_base = map_sysmem(gd->fb_base, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000162
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200163 lcd_init(lcd_base);
wdenk8655b6f2004-10-09 23:25:58 +0000164
Stephane Ayotte05bfe132015-11-03 11:14:49 -0500165 if (board_lcd_console_skip())
166 return 0;
167
wdenk8655b6f2004-10-09 23:25:58 +0000168 /* Device initialization */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000169 memset(&lcddev, 0, sizeof(lcddev));
wdenk8655b6f2004-10-09 23:25:58 +0000170
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000171 strcpy(lcddev.name, "lcd");
wdenk8655b6f2004-10-09 23:25:58 +0000172 lcddev.ext = 0; /* No extensions */
173 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
Simon Glass709ea542014-07-23 06:54:59 -0600174 lcddev.putc = lcd_stub_putc; /* 'putc' function */
175 lcddev.puts = lcd_stub_puts; /* 'puts' function */
wdenk8655b6f2004-10-09 23:25:58 +0000176
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000177 rc = stdio_register(&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000178
179 return (rc == 0) ? 1 : rc;
180}
181
Che-Liang Chiou02110902011-10-20 23:07:03 +0000182void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000183{
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200184 int bg_color;
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200185 char *s;
186 ulong addr;
187 static int do_splash = 1;
Nikita Kiryanovf4469f52014-12-08 17:14:38 +0200188#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000189 /* Setting the palette */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000190 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
191 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
192 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
193 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
194 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
195 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
196 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
197 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
198 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
wdenk8655b6f2004-10-09 23:25:58 +0000199#endif
200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200201#ifndef CONFIG_SYS_WHITE_ON_BLACK
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000202 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
203 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200204 bg_color = CONSOLE_COLOR_WHITE;
wdenk8655b6f2004-10-09 23:25:58 +0000205#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000206 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
207 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200208 bg_color = CONSOLE_COLOR_BLACK;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200209#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000210
211#ifdef LCD_TEST_PATTERN
212 test_pattern();
213#else
214 /* set framebuffer to background color */
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100215#if (LCD_BPP != LCD_COLOR32)
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200216 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100217#else
218 u32 *ppix = lcd_base;
219 u32 i;
220 for (i = 0;
221 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
222 i++) {
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200223 *ppix++ = bg_color;
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100224 }
225#endif
wdenk8655b6f2004-10-09 23:25:58 +0000226#endif
Hannes Petermaier604c7d42015-03-27 08:01:38 +0100227 /* setup text-console */
228 debug("[LCD] setting up console...\n");
229 lcd_init_console(lcd_base,
230 panel_info.vl_col,
231 panel_info.vl_row,
232 panel_info.vl_rot);
wdenk8655b6f2004-10-09 23:25:58 +0000233 /* Paint the logo and retrieve LCD base address */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000234 debug("[LCD] Drawing the logo...\n");
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200235 if (do_splash) {
236 s = getenv("splashimage");
237 if (s) {
238 do_splash = 0;
239 addr = simple_strtoul(s, NULL, 16);
240 if (lcd_splash(addr) == 0) {
241 lcd_sync();
242 return;
243 }
244 }
245 }
246
247 lcd_logo();
248#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
249 addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
Marcel Ziswiler3b96b902015-08-04 15:49:50 +0200250 lcd_init_console((void *)addr, panel_info.vl_col,
251 panel_info.vl_row, panel_info.vl_rot);
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200252#endif
Simon Glass9a8efc42012-10-30 13:40:18 +0000253 lcd_sync();
254}
255
256static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
257 char *const argv[])
258{
259 lcd_clear();
260 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000261}
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200262U_BOOT_CMD(cls, 1, 1, do_lcd_clear, "clear screen", "");
wdenk8655b6f2004-10-09 23:25:58 +0000263
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000264static int lcd_init(void *lcdbase)
wdenk8655b6f2004-10-09 23:25:58 +0000265{
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000266 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000267 lcd_ctrl_init(lcdbase);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100268
269 /*
Stephen Warren9316e142014-11-19 20:41:03 -0700270 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100271 * the 'lcdbase' argument and uses custom lcd base address
272 * by setting up gd->fb_base. Check for this condition and fixup
273 * 'lcd_base' address.
274 */
Simon Glass7d95f2a2014-02-27 13:26:19 -0700275 if (map_to_sysmem(lcdbase) != gd->fb_base)
276 lcd_base = map_sysmem(gd->fb_base, 0);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100277
278 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
279
Stephen Warren6d330712013-01-29 16:37:38 +0000280 lcd_get_size(&lcd_line_length);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200281 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000282 lcd_clear();
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000283 lcd_enable();
wdenk8655b6f2004-10-09 23:25:58 +0000284
285 /* Initialize the console */
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200286 lcd_set_col(0);
wdenk88804d12005-07-04 00:03:16 +0000287#ifdef CONFIG_LCD_INFO_BELOW_LOGO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200288 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
wdenk8655b6f2004-10-09 23:25:58 +0000289#else
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200290 lcd_set_row(1); /* leave 1 blank line below logo */
wdenk8655b6f2004-10-09 23:25:58 +0000291#endif
wdenk8655b6f2004-10-09 23:25:58 +0000292
293 return 0;
294}
295
wdenk8655b6f2004-10-09 23:25:58 +0000296/*
297 * This is called early in the system initialization to grab memory
298 * for the LCD controller.
299 * Returns new address for monitor, after reserving LCD buffer memory
300 *
301 * Note that this is running from ROM, so no write access to global data.
302 */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000303ulong lcd_setmem(ulong addr)
wdenk8655b6f2004-10-09 23:25:58 +0000304{
305 ulong size;
Simon Glass676d3192012-10-17 13:24:54 +0000306 int line_length;
wdenk8655b6f2004-10-09 23:25:58 +0000307
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000308 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
309 panel_info.vl_row, NBITS(panel_info.vl_bpix));
wdenk8655b6f2004-10-09 23:25:58 +0000310
Simon Glass676d3192012-10-17 13:24:54 +0000311 size = lcd_get_size(&line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000312
Simon Glass676d3192012-10-17 13:24:54 +0000313 /* Round up to nearest full page, or MMU section if defined */
314 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
315 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
wdenk8655b6f2004-10-09 23:25:58 +0000316
317 /* Allocate pages for the frame buffer. */
318 addr -= size;
319
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000320 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
321 size >> 10, addr);
wdenk8655b6f2004-10-09 23:25:58 +0000322
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000323 return addr;
wdenk8655b6f2004-10-09 23:25:58 +0000324}
325
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000326static void lcd_setfgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000327{
Stelian Pop39cf4802008-05-09 21:57:18 +0200328 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000329}
330
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200331int lcd_getfgcolor(void)
332{
333 return lcd_color_fg;
334}
335
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000336static void lcd_setbgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000337{
Stelian Pop39cf4802008-05-09 21:57:18 +0200338 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000339}
340
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200341int lcd_getbgcolor(void)
342{
343 return lcd_color_bg;
344}
345
wdenk8655b6f2004-10-09 23:25:58 +0000346#ifdef CONFIG_LCD_LOGO
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200347__weak void lcd_logo_set_cmap(void)
348{
Nikita Kiryanov23064572015-02-03 13:32:26 +0200349 int i;
350 ushort *cmap = configuration_get_cmap();
351
352 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i)
353 *cmap++ = bmp_logo_palette[i];
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200354}
355
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200356void lcd_logo_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000357{
wdenk8655b6f2004-10-09 23:25:58 +0000358 ushort i, j;
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200359 uchar *bmap = &bmp_logo_bitmap[0];
Andre Renaud317461c2013-02-13 17:48:00 +0000360 unsigned bpix = NBITS(panel_info.vl_bpix);
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200361 uchar *fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
362 ushort *fb16;
wdenk8655b6f2004-10-09 23:25:58 +0000363
Nikita Kiryanov23064572015-02-03 13:32:26 +0200364 debug("Logo: width %d height %d colors %d\n",
365 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
wdenk8655b6f2004-10-09 23:25:58 +0000366
Andre Renaud317461c2013-02-13 17:48:00 +0000367 if (bpix < 12) {
wdenk8655b6f2004-10-09 23:25:58 +0000368 WATCHDOG_RESET();
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200369 lcd_logo_set_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000370 WATCHDOG_RESET();
371
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000372 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
373 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000374 bmap += BMP_LOGO_WIDTH;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000375 fb += panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000376 }
377 }
378 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100379 u16 col16;
Andre Renaud317461c2013-02-13 17:48:00 +0000380 fb16 = (ushort *)fb;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000381 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
382 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100383 col16 = bmp_logo_palette[(bmap[j]-16)];
384 fb16[j] =
385 ((col16 & 0x000F) << 1) |
386 ((col16 & 0x00F0) << 3) |
387 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000388 }
389 bmap += BMP_LOGO_WIDTH;
390 fb16 += panel_info.vl_col;
391 }
392 }
393
394 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000395 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000396}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000397#else
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200398static inline void lcd_logo_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000399#endif /* CONFIG_LCD_LOGO */
400
Jon Loeligerc3517f92007-07-08 18:10:08 -0500401#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200402#ifdef CONFIG_SPLASH_SCREEN_ALIGN
403#define BMP_ALIGN_CENTER 0x7FFF
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000404
405static void splash_align_axis(int *axis, unsigned long panel_size,
406 unsigned long picture_size)
407{
408 unsigned long panel_picture_delta = panel_size - picture_size;
409 unsigned long axis_alignment;
410
411 if (*axis == BMP_ALIGN_CENTER)
412 axis_alignment = panel_picture_delta / 2;
413 else if (*axis < 0)
414 axis_alignment = panel_picture_delta + *axis + 1;
415 else
416 return;
417
Masahiro Yamadab4141192014-11-07 03:03:31 +0900418 *axis = max(0, (int)axis_alignment);
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000419}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200420#endif
421
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000422#ifdef CONFIG_LCD_BMP_RLE8
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000423#define BMP_RLE8_ESCAPE 0
424#define BMP_RLE8_EOL 0
425#define BMP_RLE8_EOBMP 1
426#define BMP_RLE8_DELTA 2
427
428static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
429 int cnt)
430{
431 while (cnt > 0) {
432 *(*fbp)++ = cmap[*bmap++];
433 cnt--;
434 }
435}
436
437static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
438{
439 ushort *fb = *fbp;
440 int cnt_8copy = cnt >> 3;
441
442 cnt -= cnt_8copy << 3;
443 while (cnt_8copy > 0) {
444 *fb++ = c;
445 *fb++ = c;
446 *fb++ = c;
447 *fb++ = c;
448 *fb++ = c;
449 *fb++ = c;
450 *fb++ = c;
451 *fb++ = c;
452 cnt_8copy--;
453 }
454 while (cnt > 0) {
455 *fb++ = c;
456 cnt--;
457 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000458 *fbp = fb;
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000459}
460
461/*
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000462 * Do not call this function directly, must be called from lcd_display_bitmap.
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000463 */
Simon Glass1c3dbe52015-05-13 07:02:27 -0600464static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap,
465 uchar *fb, int x_off, int y_off)
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000466{
467 uchar *bmap;
468 ulong width, height;
469 ulong cnt, runlen;
470 int x, y;
471 int decode = 1;
472
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100473 width = get_unaligned_le32(&bmp->header.width);
474 height = get_unaligned_le32(&bmp->header.height);
475 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000476
477 x = 0;
478 y = height - 1;
479
480 while (decode) {
481 if (bmap[0] == BMP_RLE8_ESCAPE) {
482 switch (bmap[1]) {
483 case BMP_RLE8_EOL:
484 /* end of line */
485 bmap += 2;
486 x = 0;
487 y--;
488 /* 16bpix, 2-byte per pixel, width should *2 */
489 fb -= (width * 2 + lcd_line_length);
490 break;
491 case BMP_RLE8_EOBMP:
492 /* end of bitmap */
493 decode = 0;
494 break;
495 case BMP_RLE8_DELTA:
496 /* delta run */
497 x += bmap[2];
498 y -= bmap[3];
499 /* 16bpix, 2-byte per pixel, x should *2 */
500 fb = (uchar *) (lcd_base + (y + y_off - 1)
501 * lcd_line_length + (x + x_off) * 2);
502 bmap += 4;
503 break;
504 default:
505 /* unencoded run */
506 runlen = bmap[1];
507 bmap += 2;
508 if (y < height) {
509 if (x < width) {
510 if (x + runlen > width)
511 cnt = width - x;
512 else
513 cnt = runlen;
514 draw_unencoded_bitmap(
515 (ushort **)&fb,
516 bmap, cmap, cnt);
517 }
518 x += runlen;
519 }
520 bmap += runlen;
521 if (runlen & 1)
522 bmap++;
523 }
524 } else {
525 /* encoded run */
526 if (y < height) {
527 runlen = bmap[0];
528 if (x < width) {
529 /* aggregate the same code */
530 while (bmap[0] == 0xff &&
531 bmap[2] != BMP_RLE8_ESCAPE &&
532 bmap[1] == bmap[3]) {
533 runlen += bmap[2];
534 bmap += 2;
535 }
536 if (x + runlen > width)
537 cnt = width - x;
538 else
539 cnt = runlen;
540 draw_encoded_bitmap((ushort **)&fb,
541 cmap[bmap[1]], cnt);
542 }
543 x += runlen;
544 }
545 bmap += 2;
546 }
547 }
548}
549#endif
550
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200551__weak void fb_put_byte(uchar **fb, uchar **from)
552{
553 *(*fb)++ = *(*from)++;
554}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000555
556#if defined(CONFIG_BMP_16BPP)
Nikita Kiryanovb3d12e92015-02-03 13:32:22 +0200557__weak void fb_put_word(uchar **fb, uchar **from)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000558{
559 *(*fb)++ = *(*from)++;
560 *(*fb)++ = *(*from)++;
561}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000562#endif /* CONFIG_BMP_16BPP */
563
Simon Glass1c3dbe52015-05-13 07:02:27 -0600564__weak void lcd_set_cmap(struct bmp_image *bmp, unsigned colors)
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200565{
566 int i;
Simon Glass1c3dbe52015-05-13 07:02:27 -0600567 struct bmp_color_table_entry cte;
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200568 ushort *cmap = configuration_get_cmap();
569
570 for (i = 0; i < colors; ++i) {
571 cte = bmp->color_table[i];
572 *cmap = (((cte.red) << 8) & 0xf800) |
573 (((cte.green) << 3) & 0x07e0) |
574 (((cte.blue) >> 3) & 0x001f);
575#if defined(CONFIG_MPC823)
576 cmap--;
577#else
578 cmap++;
579#endif
580 }
581}
582
wdenk8655b6f2004-10-09 23:25:58 +0000583int lcd_display_bitmap(ulong bmp_image, int x, int y)
584{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100585 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000586 ushort i, j;
587 uchar *fb;
Simon Glass1c3dbe52015-05-13 07:02:27 -0600588 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000589 uchar *bmap;
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000590 ushort padded_width;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100591 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200592 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100593 unsigned colors, bpix, bmp_bpix;
Simon Glass8d379f12015-05-13 07:02:28 -0600594 int hdr_size;
595 struct bmp_color_table_entry *palette = bmp->color_table;
wdenk8655b6f2004-10-09 23:25:58 +0000596
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000597 if (!bmp || !(bmp->header.signature[0] == 'B' &&
598 bmp->header.signature[1] == 'M')) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000599 printf("Error: no valid bmp image at %lx\n", bmp_image);
600
wdenk8655b6f2004-10-09 23:25:58 +0000601 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100602 }
wdenk8655b6f2004-10-09 23:25:58 +0000603
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100604 width = get_unaligned_le32(&bmp->header.width);
605 height = get_unaligned_le32(&bmp->header.height);
606 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
Simon Glass8d379f12015-05-13 07:02:28 -0600607 hdr_size = get_unaligned_le16(&bmp->header.size);
608 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix);
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100609
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100610 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000611
612 bpix = NBITS(panel_info.vl_bpix);
613
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000614 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100615 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
616 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000617
wdenk8655b6f2004-10-09 23:25:58 +0000618 return 1;
619 }
620
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200621 /*
622 * We support displaying 8bpp BMPs on 16bpp LCDs
623 * and displaying 24bpp BMPs on 32bpp LCDs
624 * */
625 if (bpix != bmp_bpix &&
626 !(bmp_bpix == 8 && bpix == 16) &&
627 !(bmp_bpix == 24 && bpix == 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000628 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100629 bpix, get_unaligned_le16(&bmp->header.bit_count));
wdenk8655b6f2004-10-09 23:25:58 +0000630 return 1;
631 }
632
Simon Glass8d379f12015-05-13 07:02:28 -0600633 debug("Display-bmp: %d x %d with %d colors, display %d\n",
634 (int)width, (int)height, (int)colors, 1 << bpix);
wdenk8655b6f2004-10-09 23:25:58 +0000635
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200636 if (bmp_bpix == 8)
637 lcd_set_cmap(bmp, colors);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200638
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000639 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200640
641#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000642 splash_align_axis(&x, pwidth, width);
643 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200644#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
645
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000646 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200647 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000648 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000649 height = panel_info.vl_row - y;
650
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100651 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
652 fb = (uchar *)(lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800653 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100654
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100655 switch (bmp_bpix) {
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200656 case 1:
Simon Glass01564442014-10-15 04:53:04 -0600657 case 8: {
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200658 cmap_base = configuration_get_cmap();
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000659#ifdef CONFIG_LCD_BMP_RLE8
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100660 u32 compression = get_unaligned_le32(&bmp->header.compression);
Simon Glass8d379f12015-05-13 07:02:28 -0600661 debug("compressed %d %d\n", compression, BMP_BI_RLE8);
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100662 if (compression == BMP_BI_RLE8) {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000663 if (bpix != 16) {
664 /* TODO implement render code for bpix != 16 */
665 printf("Error: only support 16 bpix");
666 return 1;
667 }
668 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
669 break;
670 }
671#endif
672
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100673 if (bpix != 16)
674 byte_width = width;
675 else
676 byte_width = width * 2;
677
Mark Jacksona303dfb2009-02-06 10:37:49 +0100678 for (i = 0; i < height; ++i) {
679 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100680 for (j = 0; j < width; j++) {
681 if (bpix != 16) {
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200682 fb_put_byte(&fb, &bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100683 } else {
Simon Glass8d379f12015-05-13 07:02:28 -0600684 struct bmp_color_table_entry *entry;
685 uint val;
686
687 if (cmap_base) {
688 val = cmap_base[*bmap];
689 } else {
690 entry = &palette[*bmap];
691 val = entry->blue >> 3 |
692 entry->green >> 2 << 5 |
693 entry->red >> 3 << 11;
694 }
695 *(uint16_t *)fb = val;
696 bmap++;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100697 fb += sizeof(uint16_t) / sizeof(*fb);
698 }
699 }
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000700 bmap += (padded_width - width);
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000701 fb -= byte_width + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100702 }
703 break;
Simon Glass01564442014-10-15 04:53:04 -0600704 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100705#if defined(CONFIG_BMP_16BPP)
706 case 16:
707 for (i = 0; i < height; ++i) {
708 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000709 for (j = 0; j < width; j++)
710 fb_put_word(&fb, &bmap);
711
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000712 bmap += (padded_width - width) * 2;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000713 fb -= width * 2 + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100714 }
715 break;
716#endif /* CONFIG_BMP_16BPP */
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200717#if defined(CONFIG_BMP_24BMP)
718 case 24:
719 for (i = 0; i < height; ++i) {
720 for (j = 0; j < width; j++) {
721 *(fb++) = *(bmap++);
722 *(fb++) = *(bmap++);
723 *(fb++) = *(bmap++);
724 *(fb++) = 0;
725 }
726 fb -= lcd_line_length + width * (bpix / 8);
727 }
728 break;
729#endif /* CONFIG_BMP_24BMP */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000730#if defined(CONFIG_BMP_32BPP)
731 case 32:
732 for (i = 0; i < height; ++i) {
733 for (j = 0; j < width; j++) {
734 *(fb++) = *(bmap++);
735 *(fb++) = *(bmap++);
736 *(fb++) = *(bmap++);
737 *(fb++) = *(bmap++);
738 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000739 fb -= lcd_line_length + width * (bpix / 8);
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000740 }
741 break;
742#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100743 default:
744 break;
745 };
wdenk8655b6f2004-10-09 23:25:58 +0000746
Simon Glass9a8efc42012-10-30 13:40:18 +0000747 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000748 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000749}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500750#endif
wdenk8655b6f2004-10-09 23:25:58 +0000751
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200752static void lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000753{
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200754 lcd_logo_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000755
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200756#ifdef CONFIG_LCD_INFO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200757 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
758 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200759 lcd_show_board_info();
760#endif /* CONFIG_LCD_INFO */
wdenk8655b6f2004-10-09 23:25:58 +0000761}
762
Nikita Kiryanovc0880482013-02-24 21:28:43 +0000763#ifdef CONFIG_SPLASHIMAGE_GUARD
764static int on_splashimage(const char *name, const char *value, enum env_op op,
765 int flags)
766{
767 ulong addr;
768 int aligned;
769
770 if (op == env_op_delete)
771 return 0;
772
773 addr = simple_strtoul(value, NULL, 16);
774 /* See README.displaying-bmps */
775 aligned = (addr % 4 == 2);
776 if (!aligned) {
777 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
778 return -1;
779 }
780
781 return 0;
782}
783
784U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
785#endif
786
Vadim Bendebury395166c2012-09-28 15:11:13 +0000787int lcd_get_pixel_width(void)
788{
789 return panel_info.vl_col;
790}
791
792int lcd_get_pixel_height(void)
793{
794 return panel_info.vl_row;
795}