blob: f8bc1ceba74a62ce154d5acc213f29db856faa12 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk8655b6f2004-10-09 23:25:58 +00002/*
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +02003 * Common LCD routines
wdenk8655b6f2004-10-09 23:25:58 +00004 *
5 * (C) Copyright 2001-2002
6 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
wdenk8655b6f2004-10-09 23:25:58 +00007 */
8
wdenk8655b6f2004-10-09 23:25:58 +00009/* #define DEBUG */
wdenk8655b6f2004-10-09 23:25:58 +000010#include <config.h>
11#include <common.h>
12#include <command.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070013#include <cpu_func.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 Glass676d3192012-10-17 13:24:54 +000034#ifndef CONFIG_LCD_ALIGNMENT
35#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
36#endif
37
Nikita Kiryanova7de2952014-12-08 17:14:42 +020038#if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
39 (LCD_BPP != LCD_COLOR32)
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020040#error Unsupported LCD BPP.
Jeroen Hofsteea5796c52013-01-12 12:07:59 +000041#endif
42
Wolfgang Denkd87080b2006-03-31 18:32:53 +020043DECLARE_GLOBAL_DATA_PTR;
wdenk8655b6f2004-10-09 23:25:58 +000044
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000045static int lcd_init(void *lcdbase);
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +020046static void lcd_logo(void);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000047static void lcd_setfgcolor(int color);
48static void lcd_setbgcolor(int color);
wdenk8655b6f2004-10-09 23:25:58 +000049
Wolfgang Denk46d1d5d2013-01-05 09:45:48 +000050static int lcd_color_fg;
51static int lcd_color_bg;
Jeroen Hofsteef1d205a2013-01-22 10:44:11 +000052int lcd_line_length;
wdenk8655b6f2004-10-09 23:25:58 +000053char lcd_is_enabled = 0;
Jeroen Hofstee00a0ca52013-01-22 10:44:12 +000054static void *lcd_base; /* Start of framebuffer memory */
Simon Glass9a8efc42012-10-30 13:40:18 +000055static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
56
Simon Glass9a8efc42012-10-30 13:40:18 +000057/* Flush LCD activity to the caches */
58void lcd_sync(void)
59{
60 /*
61 * flush_dcache_range() is declared in common.h but it seems that some
62 * architectures do not actually implement it. Is there a way to find
63 * out whether it exists? For now, ARM is safe.
64 */
Trevor Woerner10015022019-05-03 09:41:00 -040065#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass9a8efc42012-10-30 13:40:18 +000066 int line_length;
67
68 if (lcd_flush_dcache)
Alexander Graff8f58fb2016-03-16 15:41:22 +010069 flush_dcache_range((ulong)lcd_base,
70 (ulong)(lcd_base + lcd_get_size(&line_length)));
Simon Glass9a8efc42012-10-30 13:40:18 +000071#endif
72}
73
74void lcd_set_flush_dcache(int flush)
75{
76 lcd_flush_dcache = (flush != 0);
77}
78
Simon Glass709ea542014-07-23 06:54:59 -060079static void lcd_stub_putc(struct stdio_dev *dev, const char c)
80{
81 lcd_putc(c);
82}
83
Simon Glass709ea542014-07-23 06:54:59 -060084static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
85{
86 lcd_puts(s);
87}
88
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020089/* Small utility to check that you got the colours right */
wdenk8655b6f2004-10-09 23:25:58 +000090#ifdef LCD_TEST_PATTERN
91
Andreas Neubachere32951b2016-01-21 13:06:32 +010092#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +000093#define N_BLK_VERT 2
94#define N_BLK_HOR 3
95
Jeroen Hofstee6b035142013-01-12 12:07:56 +000096static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
wdenk8655b6f2004-10-09 23:25:58 +000097 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
98 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
Andreas Neubachere32951b2016-01-21 13:06:32 +010099}; /*LCD_BPP == LCD_COLOR8 */
100
101#elif LCD_BPP == LCD_COLOR16
102#define N_BLK_VERT 2
103#define N_BLK_HOR 4
104
105static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
106 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW, CONSOLE_COLOR_BLUE,
107 CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN, CONSOLE_COLOR_GREY, CONSOLE_COLOR_WHITE,
wdenk8655b6f2004-10-09 23:25:58 +0000108};
Andreas Neubachere32951b2016-01-21 13:06:32 +0100109#endif /*LCD_BPP == LCD_COLOR16 */
wdenk8655b6f2004-10-09 23:25:58 +0000110
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;
Andreas Neubachere32951b2016-01-21 13:06:32 +0100118#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000119 uchar *pix = (uchar *)lcd_base;
Andreas Neubachere32951b2016-01-21 13:06:32 +0100120#elif LCD_BPP == LCD_COLOR16
121 ushort *pix = (ushort *)lcd_base;
122#endif
wdenk8655b6f2004-10-09 23:25:58 +0000123
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000124 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
wdenk8655b6f2004-10-09 23:25:58 +0000125 h_max, v_max, h_step, v_step);
126
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000127 for (v = 0; v < v_max; ++v) {
wdenk8655b6f2004-10-09 23:25:58 +0000128 uchar iy = v / v_step;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000129 for (h = 0; h < h_max; ++h) {
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000130 uchar ix = N_BLK_HOR * iy + h / h_step;
wdenk8655b6f2004-10-09 23:25:58 +0000131 *pix++ = test_colors[ix];
132 }
133 }
134}
135#endif /* LCD_TEST_PATTERN */
136
Anatolij Gustschincefa4712013-11-09 11:00:09 +0100137/*
138 * With most lcd drivers the line length is set up
139 * by calculating it from panel_info parameters. Some
140 * drivers need to calculate the line length differently,
141 * so make the function weak to allow overriding it.
142 */
143__weak int lcd_get_size(int *line_length)
Simon Glass676d3192012-10-17 13:24:54 +0000144{
145 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
146 return *line_length * panel_info.vl_row;
147}
148
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000149int drv_lcd_init(void)
wdenk8655b6f2004-10-09 23:25:58 +0000150{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200151 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000152 int rc;
153
Simon Glass7d95f2a2014-02-27 13:26:19 -0700154 lcd_base = map_sysmem(gd->fb_base, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000155
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200156 lcd_init(lcd_base);
wdenk8655b6f2004-10-09 23:25:58 +0000157
158 /* Device initialization */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000159 memset(&lcddev, 0, sizeof(lcddev));
wdenk8655b6f2004-10-09 23:25:58 +0000160
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000161 strcpy(lcddev.name, "lcd");
wdenk8655b6f2004-10-09 23:25:58 +0000162 lcddev.ext = 0; /* No extensions */
163 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
Simon Glass709ea542014-07-23 06:54:59 -0600164 lcddev.putc = lcd_stub_putc; /* 'putc' function */
165 lcddev.puts = lcd_stub_puts; /* 'puts' function */
wdenk8655b6f2004-10-09 23:25:58 +0000166
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000167 rc = stdio_register(&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000168
169 return (rc == 0) ? 1 : rc;
170}
171
Che-Liang Chiou02110902011-10-20 23:07:03 +0000172void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000173{
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200174 int bg_color;
Igor Opaniuk5eb83c02019-05-29 09:01:43 +0000175 __maybe_unused ulong addr;
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200176 static int do_splash = 1;
Nikita Kiryanovf4469f52014-12-08 17:14:38 +0200177#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000178 /* Setting the palette */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000179 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
180 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
181 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
182 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
183 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
184 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
185 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
186 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
187 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
wdenk8655b6f2004-10-09 23:25:58 +0000188#endif
189
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#ifndef CONFIG_SYS_WHITE_ON_BLACK
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000191 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
192 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200193 bg_color = CONSOLE_COLOR_WHITE;
wdenk8655b6f2004-10-09 23:25:58 +0000194#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000195 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
196 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200197 bg_color = CONSOLE_COLOR_BLACK;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000199
200#ifdef LCD_TEST_PATTERN
201 test_pattern();
202#else
203 /* set framebuffer to background color */
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100204#if (LCD_BPP != LCD_COLOR32)
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200205 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100206#else
207 u32 *ppix = lcd_base;
208 u32 i;
209 for (i = 0;
210 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
211 i++) {
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200212 *ppix++ = bg_color;
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100213 }
214#endif
wdenk8655b6f2004-10-09 23:25:58 +0000215#endif
Hannes Petermaier604c7d42015-03-27 08:01:38 +0100216 /* setup text-console */
217 debug("[LCD] setting up console...\n");
218 lcd_init_console(lcd_base,
219 panel_info.vl_col,
220 panel_info.vl_row,
221 panel_info.vl_rot);
wdenk8655b6f2004-10-09 23:25:58 +0000222 /* Paint the logo and retrieve LCD base address */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000223 debug("[LCD] Drawing the logo...\n");
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200224 if (do_splash) {
Igor Opaniuk5eb83c02019-05-29 09:01:43 +0000225 if (splash_display() == 0) {
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200226 do_splash = 0;
Igor Opaniuk5eb83c02019-05-29 09:01:43 +0000227 lcd_sync();
228 return;
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200229 }
230 }
231
232 lcd_logo();
233#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
234 addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
Marcel Ziswiler3b96b902015-08-04 15:49:50 +0200235 lcd_init_console((void *)addr, panel_info.vl_col,
236 panel_info.vl_row, panel_info.vl_rot);
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200237#endif
Simon Glass9a8efc42012-10-30 13:40:18 +0000238 lcd_sync();
239}
240
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000241static int lcd_init(void *lcdbase)
wdenk8655b6f2004-10-09 23:25:58 +0000242{
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000243 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000244 lcd_ctrl_init(lcdbase);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100245
246 /*
Stephen Warren9316e142014-11-19 20:41:03 -0700247 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100248 * the 'lcdbase' argument and uses custom lcd base address
249 * by setting up gd->fb_base. Check for this condition and fixup
250 * 'lcd_base' address.
251 */
Simon Glass7d95f2a2014-02-27 13:26:19 -0700252 if (map_to_sysmem(lcdbase) != gd->fb_base)
253 lcd_base = map_sysmem(gd->fb_base, 0);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100254
255 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
256
Stephen Warren6d330712013-01-29 16:37:38 +0000257 lcd_get_size(&lcd_line_length);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200258 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000259 lcd_clear();
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000260 lcd_enable();
wdenk8655b6f2004-10-09 23:25:58 +0000261
262 /* Initialize the console */
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200263 lcd_set_col(0);
wdenk88804d12005-07-04 00:03:16 +0000264#ifdef CONFIG_LCD_INFO_BELOW_LOGO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200265 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
wdenk8655b6f2004-10-09 23:25:58 +0000266#else
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200267 lcd_set_row(1); /* leave 1 blank line below logo */
wdenk8655b6f2004-10-09 23:25:58 +0000268#endif
wdenk8655b6f2004-10-09 23:25:58 +0000269
270 return 0;
271}
272
wdenk8655b6f2004-10-09 23:25:58 +0000273/*
274 * This is called early in the system initialization to grab memory
275 * for the LCD controller.
276 * Returns new address for monitor, after reserving LCD buffer memory
277 *
278 * Note that this is running from ROM, so no write access to global data.
279 */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000280ulong lcd_setmem(ulong addr)
wdenk8655b6f2004-10-09 23:25:58 +0000281{
282 ulong size;
Simon Glass676d3192012-10-17 13:24:54 +0000283 int line_length;
wdenk8655b6f2004-10-09 23:25:58 +0000284
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000285 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
286 panel_info.vl_row, NBITS(panel_info.vl_bpix));
wdenk8655b6f2004-10-09 23:25:58 +0000287
Simon Glass676d3192012-10-17 13:24:54 +0000288 size = lcd_get_size(&line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000289
Simon Glass676d3192012-10-17 13:24:54 +0000290 /* Round up to nearest full page, or MMU section if defined */
291 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
292 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
wdenk8655b6f2004-10-09 23:25:58 +0000293
294 /* Allocate pages for the frame buffer. */
295 addr -= size;
296
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000297 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
298 size >> 10, addr);
wdenk8655b6f2004-10-09 23:25:58 +0000299
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000300 return addr;
wdenk8655b6f2004-10-09 23:25:58 +0000301}
302
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000303static void lcd_setfgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000304{
Stelian Pop39cf4802008-05-09 21:57:18 +0200305 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000306}
307
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200308int lcd_getfgcolor(void)
309{
310 return lcd_color_fg;
311}
312
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000313static void lcd_setbgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000314{
Stelian Pop39cf4802008-05-09 21:57:18 +0200315 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000316}
317
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200318int lcd_getbgcolor(void)
319{
320 return lcd_color_bg;
321}
322
wdenk8655b6f2004-10-09 23:25:58 +0000323#ifdef CONFIG_LCD_LOGO
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200324__weak void lcd_logo_set_cmap(void)
325{
Nikita Kiryanov23064572015-02-03 13:32:26 +0200326 int i;
327 ushort *cmap = configuration_get_cmap();
328
329 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i)
330 *cmap++ = bmp_logo_palette[i];
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200331}
332
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200333void lcd_logo_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000334{
wdenk8655b6f2004-10-09 23:25:58 +0000335 ushort i, j;
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200336 uchar *bmap = &bmp_logo_bitmap[0];
Andre Renaud317461c2013-02-13 17:48:00 +0000337 unsigned bpix = NBITS(panel_info.vl_bpix);
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200338 uchar *fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
339 ushort *fb16;
wdenk8655b6f2004-10-09 23:25:58 +0000340
Nikita Kiryanov23064572015-02-03 13:32:26 +0200341 debug("Logo: width %d height %d colors %d\n",
342 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
wdenk8655b6f2004-10-09 23:25:58 +0000343
Andre Renaud317461c2013-02-13 17:48:00 +0000344 if (bpix < 12) {
wdenk8655b6f2004-10-09 23:25:58 +0000345 WATCHDOG_RESET();
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200346 lcd_logo_set_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000347 WATCHDOG_RESET();
348
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000349 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
350 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000351 bmap += BMP_LOGO_WIDTH;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000352 fb += panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000353 }
354 }
355 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100356 u16 col16;
Andre Renaud317461c2013-02-13 17:48:00 +0000357 fb16 = (ushort *)fb;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000358 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
359 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100360 col16 = bmp_logo_palette[(bmap[j]-16)];
361 fb16[j] =
362 ((col16 & 0x000F) << 1) |
363 ((col16 & 0x00F0) << 3) |
364 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000365 }
366 bmap += BMP_LOGO_WIDTH;
367 fb16 += panel_info.vl_col;
368 }
369 }
370
371 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000372 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000373}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000374#else
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200375static inline void lcd_logo_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000376#endif /* CONFIG_LCD_LOGO */
377
Jon Loeligerc3517f92007-07-08 18:10:08 -0500378#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200379#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000380
381static void splash_align_axis(int *axis, unsigned long panel_size,
382 unsigned long picture_size)
383{
384 unsigned long panel_picture_delta = panel_size - picture_size;
385 unsigned long axis_alignment;
386
387 if (*axis == BMP_ALIGN_CENTER)
388 axis_alignment = panel_picture_delta / 2;
389 else if (*axis < 0)
390 axis_alignment = panel_picture_delta + *axis + 1;
391 else
392 return;
393
Masahiro Yamadab4141192014-11-07 03:03:31 +0900394 *axis = max(0, (int)axis_alignment);
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000395}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200396#endif
397
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000398#ifdef CONFIG_LCD_BMP_RLE8
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000399#define BMP_RLE8_ESCAPE 0
400#define BMP_RLE8_EOL 0
401#define BMP_RLE8_EOBMP 1
402#define BMP_RLE8_DELTA 2
403
404static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
405 int cnt)
406{
407 while (cnt > 0) {
408 *(*fbp)++ = cmap[*bmap++];
409 cnt--;
410 }
411}
412
413static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
414{
415 ushort *fb = *fbp;
416 int cnt_8copy = cnt >> 3;
417
418 cnt -= cnt_8copy << 3;
419 while (cnt_8copy > 0) {
420 *fb++ = c;
421 *fb++ = c;
422 *fb++ = c;
423 *fb++ = c;
424 *fb++ = c;
425 *fb++ = c;
426 *fb++ = c;
427 *fb++ = c;
428 cnt_8copy--;
429 }
430 while (cnt > 0) {
431 *fb++ = c;
432 cnt--;
433 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000434 *fbp = fb;
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000435}
436
437/*
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000438 * Do not call this function directly, must be called from lcd_display_bitmap.
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000439 */
Simon Glass1c3dbe52015-05-13 07:02:27 -0600440static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap,
441 uchar *fb, int x_off, int y_off)
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000442{
443 uchar *bmap;
444 ulong width, height;
445 ulong cnt, runlen;
446 int x, y;
447 int decode = 1;
448
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100449 width = get_unaligned_le32(&bmp->header.width);
450 height = get_unaligned_le32(&bmp->header.height);
451 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000452
453 x = 0;
454 y = height - 1;
455
456 while (decode) {
457 if (bmap[0] == BMP_RLE8_ESCAPE) {
458 switch (bmap[1]) {
459 case BMP_RLE8_EOL:
460 /* end of line */
461 bmap += 2;
462 x = 0;
463 y--;
464 /* 16bpix, 2-byte per pixel, width should *2 */
465 fb -= (width * 2 + lcd_line_length);
466 break;
467 case BMP_RLE8_EOBMP:
468 /* end of bitmap */
469 decode = 0;
470 break;
471 case BMP_RLE8_DELTA:
472 /* delta run */
473 x += bmap[2];
474 y -= bmap[3];
475 /* 16bpix, 2-byte per pixel, x should *2 */
476 fb = (uchar *) (lcd_base + (y + y_off - 1)
477 * lcd_line_length + (x + x_off) * 2);
478 bmap += 4;
479 break;
480 default:
481 /* unencoded run */
482 runlen = bmap[1];
483 bmap += 2;
484 if (y < height) {
485 if (x < width) {
486 if (x + runlen > width)
487 cnt = width - x;
488 else
489 cnt = runlen;
490 draw_unencoded_bitmap(
491 (ushort **)&fb,
492 bmap, cmap, cnt);
493 }
494 x += runlen;
495 }
496 bmap += runlen;
497 if (runlen & 1)
498 bmap++;
499 }
500 } else {
501 /* encoded run */
502 if (y < height) {
503 runlen = bmap[0];
504 if (x < width) {
505 /* aggregate the same code */
506 while (bmap[0] == 0xff &&
507 bmap[2] != BMP_RLE8_ESCAPE &&
508 bmap[1] == bmap[3]) {
509 runlen += bmap[2];
510 bmap += 2;
511 }
512 if (x + runlen > width)
513 cnt = width - x;
514 else
515 cnt = runlen;
516 draw_encoded_bitmap((ushort **)&fb,
517 cmap[bmap[1]], cnt);
518 }
519 x += runlen;
520 }
521 bmap += 2;
522 }
523 }
524}
525#endif
526
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200527__weak void fb_put_byte(uchar **fb, uchar **from)
528{
529 *(*fb)++ = *(*from)++;
530}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000531
532#if defined(CONFIG_BMP_16BPP)
Nikita Kiryanovb3d12e92015-02-03 13:32:22 +0200533__weak void fb_put_word(uchar **fb, uchar **from)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000534{
535 *(*fb)++ = *(*from)++;
536 *(*fb)++ = *(*from)++;
537}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000538#endif /* CONFIG_BMP_16BPP */
539
Simon Glass1c3dbe52015-05-13 07:02:27 -0600540__weak void lcd_set_cmap(struct bmp_image *bmp, unsigned colors)
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200541{
542 int i;
Simon Glass1c3dbe52015-05-13 07:02:27 -0600543 struct bmp_color_table_entry cte;
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200544 ushort *cmap = configuration_get_cmap();
545
546 for (i = 0; i < colors; ++i) {
547 cte = bmp->color_table[i];
548 *cmap = (((cte.red) << 8) & 0xf800) |
549 (((cte.green) << 3) & 0x07e0) |
550 (((cte.blue) >> 3) & 0x001f);
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200551 cmap++;
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200552 }
553}
554
wdenk8655b6f2004-10-09 23:25:58 +0000555int lcd_display_bitmap(ulong bmp_image, int x, int y)
556{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100557 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000558 ushort i, j;
559 uchar *fb;
Simon Glass1c3dbe52015-05-13 07:02:27 -0600560 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000561 uchar *bmap;
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000562 ushort padded_width;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100563 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200564 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100565 unsigned colors, bpix, bmp_bpix;
Simon Glass8d379f12015-05-13 07:02:28 -0600566 int hdr_size;
xypron.glpk@gmx.de021414a2017-07-30 21:59:23 +0200567 struct bmp_color_table_entry *palette;
wdenk8655b6f2004-10-09 23:25:58 +0000568
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000569 if (!bmp || !(bmp->header.signature[0] == 'B' &&
570 bmp->header.signature[1] == 'M')) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000571 printf("Error: no valid bmp image at %lx\n", bmp_image);
572
wdenk8655b6f2004-10-09 23:25:58 +0000573 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100574 }
wdenk8655b6f2004-10-09 23:25:58 +0000575
xypron.glpk@gmx.de021414a2017-07-30 21:59:23 +0200576 palette = bmp->color_table;
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100577 width = get_unaligned_le32(&bmp->header.width);
578 height = get_unaligned_le32(&bmp->header.height);
579 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
Simon Glass8d379f12015-05-13 07:02:28 -0600580 hdr_size = get_unaligned_le16(&bmp->header.size);
581 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix);
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100582
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100583 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000584
585 bpix = NBITS(panel_info.vl_bpix);
586
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000587 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100588 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
589 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000590
wdenk8655b6f2004-10-09 23:25:58 +0000591 return 1;
592 }
593
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200594 /*
595 * We support displaying 8bpp BMPs on 16bpp LCDs
596 * and displaying 24bpp BMPs on 32bpp LCDs
597 * */
598 if (bpix != bmp_bpix &&
599 !(bmp_bpix == 8 && bpix == 16) &&
600 !(bmp_bpix == 24 && bpix == 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000601 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100602 bpix, get_unaligned_le16(&bmp->header.bit_count));
wdenk8655b6f2004-10-09 23:25:58 +0000603 return 1;
604 }
605
Simon Glass8d379f12015-05-13 07:02:28 -0600606 debug("Display-bmp: %d x %d with %d colors, display %d\n",
607 (int)width, (int)height, (int)colors, 1 << bpix);
wdenk8655b6f2004-10-09 23:25:58 +0000608
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200609 if (bmp_bpix == 8)
610 lcd_set_cmap(bmp, colors);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200611
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000612 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200613
614#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000615 splash_align_axis(&x, pwidth, width);
616 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200617#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
618
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000619 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200620 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000621 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000622 height = panel_info.vl_row - y;
623
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100624 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
625 fb = (uchar *)(lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800626 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100627
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100628 switch (bmp_bpix) {
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200629 case 1:
Simon Glass01564442014-10-15 04:53:04 -0600630 case 8: {
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200631 cmap_base = configuration_get_cmap();
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000632#ifdef CONFIG_LCD_BMP_RLE8
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100633 u32 compression = get_unaligned_le32(&bmp->header.compression);
Simon Glass8d379f12015-05-13 07:02:28 -0600634 debug("compressed %d %d\n", compression, BMP_BI_RLE8);
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100635 if (compression == BMP_BI_RLE8) {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000636 if (bpix != 16) {
637 /* TODO implement render code for bpix != 16 */
638 printf("Error: only support 16 bpix");
639 return 1;
640 }
641 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
642 break;
643 }
644#endif
645
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100646 if (bpix != 16)
647 byte_width = width;
648 else
649 byte_width = width * 2;
650
Mark Jacksona303dfb2009-02-06 10:37:49 +0100651 for (i = 0; i < height; ++i) {
652 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100653 for (j = 0; j < width; j++) {
654 if (bpix != 16) {
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200655 fb_put_byte(&fb, &bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100656 } else {
Simon Glass8d379f12015-05-13 07:02:28 -0600657 struct bmp_color_table_entry *entry;
658 uint val;
659
660 if (cmap_base) {
661 val = cmap_base[*bmap];
662 } else {
663 entry = &palette[*bmap];
664 val = entry->blue >> 3 |
665 entry->green >> 2 << 5 |
666 entry->red >> 3 << 11;
667 }
668 *(uint16_t *)fb = val;
669 bmap++;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100670 fb += sizeof(uint16_t) / sizeof(*fb);
671 }
672 }
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000673 bmap += (padded_width - width);
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000674 fb -= byte_width + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100675 }
676 break;
Simon Glass01564442014-10-15 04:53:04 -0600677 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100678#if defined(CONFIG_BMP_16BPP)
679 case 16:
680 for (i = 0; i < height; ++i) {
681 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000682 for (j = 0; j < width; j++)
683 fb_put_word(&fb, &bmap);
684
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000685 bmap += (padded_width - width) * 2;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000686 fb -= width * 2 + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100687 }
688 break;
689#endif /* CONFIG_BMP_16BPP */
Philipp Tomsich10ba6b32017-05-05 21:48:30 +0200690#if defined(CONFIG_BMP_24BPP)
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200691 case 24:
692 for (i = 0; i < height; ++i) {
693 for (j = 0; j < width; j++) {
694 *(fb++) = *(bmap++);
695 *(fb++) = *(bmap++);
696 *(fb++) = *(bmap++);
697 *(fb++) = 0;
698 }
699 fb -= lcd_line_length + width * (bpix / 8);
700 }
701 break;
Philipp Tomsich10ba6b32017-05-05 21:48:30 +0200702#endif /* CONFIG_BMP_24BPP */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000703#if defined(CONFIG_BMP_32BPP)
704 case 32:
705 for (i = 0; i < height; ++i) {
706 for (j = 0; j < width; j++) {
707 *(fb++) = *(bmap++);
708 *(fb++) = *(bmap++);
709 *(fb++) = *(bmap++);
710 *(fb++) = *(bmap++);
711 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000712 fb -= lcd_line_length + width * (bpix / 8);
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000713 }
714 break;
715#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100716 default:
717 break;
718 };
wdenk8655b6f2004-10-09 23:25:58 +0000719
Simon Glass9a8efc42012-10-30 13:40:18 +0000720 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000721 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000722}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500723#endif
wdenk8655b6f2004-10-09 23:25:58 +0000724
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200725static void lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000726{
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200727 lcd_logo_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000728
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200729#ifdef CONFIG_LCD_INFO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200730 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
731 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200732 lcd_show_board_info();
733#endif /* CONFIG_LCD_INFO */
wdenk8655b6f2004-10-09 23:25:58 +0000734}
735
Nikita Kiryanovc0880482013-02-24 21:28:43 +0000736#ifdef CONFIG_SPLASHIMAGE_GUARD
737static int on_splashimage(const char *name, const char *value, enum env_op op,
738 int flags)
739{
740 ulong addr;
741 int aligned;
742
743 if (op == env_op_delete)
744 return 0;
745
746 addr = simple_strtoul(value, NULL, 16);
747 /* See README.displaying-bmps */
748 aligned = (addr % 4 == 2);
749 if (!aligned) {
750 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
751 return -1;
752 }
753
754 return 0;
755}
756
757U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
758#endif
759
Vadim Bendebury395166c2012-09-28 15:11:13 +0000760int lcd_get_pixel_width(void)
761{
762 return panel_info.vl_col;
763}
764
765int lcd_get_pixel_height(void)
766{
767 return panel_info.vl_row;
768}