blob: b34754fe518ca07208ed7bd8d3d107303dc8d934 [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>
Nikita Kiryanovc0880482013-02-24 21:28:43 +000013#include <env_callback.h>
wdenk8655b6f2004-10-09 23:25:58 +000014#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020015#include <stdio_dev.h>
wdenk8655b6f2004-10-09 23:25:58 +000016#include <lcd.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050017#include <mapmem.h>
wdenk8b0bfc62005-04-03 23:11:38 +000018#include <watchdog.h>
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +010019#include <asm/unaligned.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070020#include <splash.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070021#include <asm/io.h>
22#include <asm/unaligned.h>
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020023#include <video_font.h>
Robert Winklerdd4425e2013-06-17 11:31:29 -070024
wdenk88804d12005-07-04 00:03:16 +000025#ifdef CONFIG_LCD_LOGO
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020026#include <bmp_logo.h>
27#include <bmp_logo_data.h>
28#if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
29#error Default Color Map overlaps with Logo Color Map
30#endif
wdenk88804d12005-07-04 00:03:16 +000031#endif
wdenk8655b6f2004-10-09 23:25:58 +000032
Simon Glass676d3192012-10-17 13:24:54 +000033#ifndef CONFIG_LCD_ALIGNMENT
34#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
35#endif
36
Nikita Kiryanova7de2952014-12-08 17:14:42 +020037#if (LCD_BPP != LCD_COLOR8) && (LCD_BPP != LCD_COLOR16) && \
38 (LCD_BPP != LCD_COLOR32)
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020039#error Unsupported LCD BPP.
Jeroen Hofsteea5796c52013-01-12 12:07:59 +000040#endif
41
Wolfgang Denkd87080b2006-03-31 18:32:53 +020042DECLARE_GLOBAL_DATA_PTR;
wdenk8655b6f2004-10-09 23:25:58 +000043
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000044static int lcd_init(void *lcdbase);
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +020045static void lcd_logo(void);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000046static void lcd_setfgcolor(int color);
47static void lcd_setbgcolor(int color);
wdenk8655b6f2004-10-09 23:25:58 +000048
Wolfgang Denk46d1d5d2013-01-05 09:45:48 +000049static int lcd_color_fg;
50static int lcd_color_bg;
Jeroen Hofsteef1d205a2013-01-22 10:44:11 +000051int lcd_line_length;
wdenk8655b6f2004-10-09 23:25:58 +000052char lcd_is_enabled = 0;
Jeroen Hofstee00a0ca52013-01-22 10:44:12 +000053static void *lcd_base; /* Start of framebuffer memory */
Simon Glass9a8efc42012-10-30 13:40:18 +000054static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
55
Simon Glass9a8efc42012-10-30 13:40:18 +000056/* Flush LCD activity to the caches */
57void lcd_sync(void)
58{
59 /*
60 * flush_dcache_range() is declared in common.h but it seems that some
61 * architectures do not actually implement it. Is there a way to find
62 * out whether it exists? For now, ARM is safe.
63 */
Trevor Woerner10015022019-05-03 09:41:00 -040064#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass9a8efc42012-10-30 13:40:18 +000065 int line_length;
66
67 if (lcd_flush_dcache)
Alexander Graff8f58fb2016-03-16 15:41:22 +010068 flush_dcache_range((ulong)lcd_base,
69 (ulong)(lcd_base + lcd_get_size(&line_length)));
Simon Glass9a8efc42012-10-30 13:40:18 +000070#endif
71}
72
73void lcd_set_flush_dcache(int flush)
74{
75 lcd_flush_dcache = (flush != 0);
76}
77
Simon Glass709ea542014-07-23 06:54:59 -060078static void lcd_stub_putc(struct stdio_dev *dev, const char c)
79{
80 lcd_putc(c);
81}
82
Simon Glass709ea542014-07-23 06:54:59 -060083static void lcd_stub_puts(struct stdio_dev *dev, const char *s)
84{
85 lcd_puts(s);
86}
87
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +020088/* Small utility to check that you got the colours right */
wdenk8655b6f2004-10-09 23:25:58 +000089#ifdef LCD_TEST_PATTERN
90
Andreas Neubachere32951b2016-01-21 13:06:32 +010091#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +000092#define N_BLK_VERT 2
93#define N_BLK_HOR 3
94
Jeroen Hofstee6b035142013-01-12 12:07:56 +000095static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
wdenk8655b6f2004-10-09 23:25:58 +000096 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
97 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
Andreas Neubachere32951b2016-01-21 13:06:32 +010098}; /*LCD_BPP == LCD_COLOR8 */
99
100#elif LCD_BPP == LCD_COLOR16
101#define N_BLK_VERT 2
102#define N_BLK_HOR 4
103
104static int test_colors[N_BLK_HOR * N_BLK_VERT] = {
105 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW, CONSOLE_COLOR_BLUE,
106 CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN, CONSOLE_COLOR_GREY, CONSOLE_COLOR_WHITE,
wdenk8655b6f2004-10-09 23:25:58 +0000107};
Andreas Neubachere32951b2016-01-21 13:06:32 +0100108#endif /*LCD_BPP == LCD_COLOR16 */
wdenk8655b6f2004-10-09 23:25:58 +0000109
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000110static void test_pattern(void)
wdenk8655b6f2004-10-09 23:25:58 +0000111{
112 ushort v_max = panel_info.vl_row;
113 ushort h_max = panel_info.vl_col;
114 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
115 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
116 ushort v, h;
Andreas Neubachere32951b2016-01-21 13:06:32 +0100117#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000118 uchar *pix = (uchar *)lcd_base;
Andreas Neubachere32951b2016-01-21 13:06:32 +0100119#elif LCD_BPP == LCD_COLOR16
120 ushort *pix = (ushort *)lcd_base;
121#endif
wdenk8655b6f2004-10-09 23:25:58 +0000122
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000123 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
wdenk8655b6f2004-10-09 23:25:58 +0000124 h_max, v_max, h_step, v_step);
125
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000126 for (v = 0; v < v_max; ++v) {
wdenk8655b6f2004-10-09 23:25:58 +0000127 uchar iy = v / v_step;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000128 for (h = 0; h < h_max; ++h) {
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000129 uchar ix = N_BLK_HOR * iy + h / h_step;
wdenk8655b6f2004-10-09 23:25:58 +0000130 *pix++ = test_colors[ix];
131 }
132 }
133}
134#endif /* LCD_TEST_PATTERN */
135
Anatolij Gustschincefa4712013-11-09 11:00:09 +0100136/*
137 * With most lcd drivers the line length is set up
138 * by calculating it from panel_info parameters. Some
139 * drivers need to calculate the line length differently,
140 * so make the function weak to allow overriding it.
141 */
142__weak int lcd_get_size(int *line_length)
Simon Glass676d3192012-10-17 13:24:54 +0000143{
144 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
145 return *line_length * panel_info.vl_row;
146}
147
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000148int drv_lcd_init(void)
wdenk8655b6f2004-10-09 23:25:58 +0000149{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200150 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000151 int rc;
152
Simon Glass7d95f2a2014-02-27 13:26:19 -0700153 lcd_base = map_sysmem(gd->fb_base, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000154
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200155 lcd_init(lcd_base);
wdenk8655b6f2004-10-09 23:25:58 +0000156
157 /* Device initialization */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000158 memset(&lcddev, 0, sizeof(lcddev));
wdenk8655b6f2004-10-09 23:25:58 +0000159
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000160 strcpy(lcddev.name, "lcd");
wdenk8655b6f2004-10-09 23:25:58 +0000161 lcddev.ext = 0; /* No extensions */
162 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
Simon Glass709ea542014-07-23 06:54:59 -0600163 lcddev.putc = lcd_stub_putc; /* 'putc' function */
164 lcddev.puts = lcd_stub_puts; /* 'puts' function */
wdenk8655b6f2004-10-09 23:25:58 +0000165
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000166 rc = stdio_register(&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000167
168 return (rc == 0) ? 1 : rc;
169}
170
Che-Liang Chiou02110902011-10-20 23:07:03 +0000171void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000172{
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200173 int bg_color;
Igor Opaniuk5eb83c02019-05-29 09:01:43 +0000174 __maybe_unused ulong addr;
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200175 static int do_splash = 1;
Nikita Kiryanovf4469f52014-12-08 17:14:38 +0200176#if LCD_BPP == LCD_COLOR8
wdenk8655b6f2004-10-09 23:25:58 +0000177 /* Setting the palette */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000178 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
179 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
180 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
181 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
182 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
183 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
184 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
185 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
186 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
wdenk8655b6f2004-10-09 23:25:58 +0000187#endif
188
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200189#ifndef CONFIG_SYS_WHITE_ON_BLACK
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000190 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
191 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200192 bg_color = CONSOLE_COLOR_WHITE;
wdenk8655b6f2004-10-09 23:25:58 +0000193#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000194 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
195 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200196 bg_color = CONSOLE_COLOR_BLACK;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200197#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000198
199#ifdef LCD_TEST_PATTERN
200 test_pattern();
201#else
202 /* set framebuffer to background color */
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100203#if (LCD_BPP != LCD_COLOR32)
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200204 memset((char *)lcd_base, bg_color, lcd_line_length * panel_info.vl_row);
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100205#else
206 u32 *ppix = lcd_base;
207 u32 i;
208 for (i = 0;
209 i < (lcd_line_length * panel_info.vl_row)/NBYTES(panel_info.vl_bpix);
210 i++) {
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200211 *ppix++ = bg_color;
Hannes Petermaier57d76a82014-03-07 18:55:40 +0100212 }
213#endif
wdenk8655b6f2004-10-09 23:25:58 +0000214#endif
Hannes Petermaier604c7d42015-03-27 08:01:38 +0100215 /* setup text-console */
216 debug("[LCD] setting up console...\n");
217 lcd_init_console(lcd_base,
218 panel_info.vl_col,
219 panel_info.vl_row,
220 panel_info.vl_rot);
wdenk8655b6f2004-10-09 23:25:58 +0000221 /* Paint the logo and retrieve LCD base address */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000222 debug("[LCD] Drawing the logo...\n");
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200223 if (do_splash) {
Igor Opaniuk5eb83c02019-05-29 09:01:43 +0000224 if (splash_display() == 0) {
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200225 do_splash = 0;
Igor Opaniuk5eb83c02019-05-29 09:01:43 +0000226 lcd_sync();
227 return;
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200228 }
229 }
230
231 lcd_logo();
232#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
233 addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
Marcel Ziswiler3b96b902015-08-04 15:49:50 +0200234 lcd_init_console((void *)addr, panel_info.vl_col,
235 panel_info.vl_row, panel_info.vl_rot);
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200236#endif
Simon Glass9a8efc42012-10-30 13:40:18 +0000237 lcd_sync();
238}
239
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000240static int lcd_init(void *lcdbase)
wdenk8655b6f2004-10-09 23:25:58 +0000241{
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000242 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000243 lcd_ctrl_init(lcdbase);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100244
245 /*
Stephen Warren9316e142014-11-19 20:41:03 -0700246 * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi) ignores
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100247 * the 'lcdbase' argument and uses custom lcd base address
248 * by setting up gd->fb_base. Check for this condition and fixup
249 * 'lcd_base' address.
250 */
Simon Glass7d95f2a2014-02-27 13:26:19 -0700251 if (map_to_sysmem(lcdbase) != gd->fb_base)
252 lcd_base = map_sysmem(gd->fb_base, 0);
Anatolij Gustschin1d3dea12013-03-29 14:00:13 +0100253
254 debug("[LCD] Using LCD frambuffer at %p\n", lcd_base);
255
Stephen Warren6d330712013-01-29 16:37:38 +0000256 lcd_get_size(&lcd_line_length);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200257 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000258 lcd_clear();
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000259 lcd_enable();
wdenk8655b6f2004-10-09 23:25:58 +0000260
261 /* Initialize the console */
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200262 lcd_set_col(0);
wdenk88804d12005-07-04 00:03:16 +0000263#ifdef CONFIG_LCD_INFO_BELOW_LOGO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200264 lcd_set_row(7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT);
wdenk8655b6f2004-10-09 23:25:58 +0000265#else
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200266 lcd_set_row(1); /* leave 1 blank line below logo */
wdenk8655b6f2004-10-09 23:25:58 +0000267#endif
wdenk8655b6f2004-10-09 23:25:58 +0000268
269 return 0;
270}
271
wdenk8655b6f2004-10-09 23:25:58 +0000272/*
273 * This is called early in the system initialization to grab memory
274 * for the LCD controller.
275 * Returns new address for monitor, after reserving LCD buffer memory
276 *
277 * Note that this is running from ROM, so no write access to global data.
278 */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000279ulong lcd_setmem(ulong addr)
wdenk8655b6f2004-10-09 23:25:58 +0000280{
281 ulong size;
Simon Glass676d3192012-10-17 13:24:54 +0000282 int line_length;
wdenk8655b6f2004-10-09 23:25:58 +0000283
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000284 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
285 panel_info.vl_row, NBITS(panel_info.vl_bpix));
wdenk8655b6f2004-10-09 23:25:58 +0000286
Simon Glass676d3192012-10-17 13:24:54 +0000287 size = lcd_get_size(&line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000288
Simon Glass676d3192012-10-17 13:24:54 +0000289 /* Round up to nearest full page, or MMU section if defined */
290 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
291 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
wdenk8655b6f2004-10-09 23:25:58 +0000292
293 /* Allocate pages for the frame buffer. */
294 addr -= size;
295
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000296 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n",
297 size >> 10, addr);
wdenk8655b6f2004-10-09 23:25:58 +0000298
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000299 return addr;
wdenk8655b6f2004-10-09 23:25:58 +0000300}
301
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000302static void lcd_setfgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000303{
Stelian Pop39cf4802008-05-09 21:57:18 +0200304 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000305}
306
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200307int lcd_getfgcolor(void)
308{
309 return lcd_color_fg;
310}
311
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000312static void lcd_setbgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000313{
Stelian Pop39cf4802008-05-09 21:57:18 +0200314 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000315}
316
Nikita Kiryanov4d036342014-12-08 17:14:43 +0200317int lcd_getbgcolor(void)
318{
319 return lcd_color_bg;
320}
321
wdenk8655b6f2004-10-09 23:25:58 +0000322#ifdef CONFIG_LCD_LOGO
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200323__weak void lcd_logo_set_cmap(void)
324{
Nikita Kiryanov23064572015-02-03 13:32:26 +0200325 int i;
326 ushort *cmap = configuration_get_cmap();
327
328 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i)
329 *cmap++ = bmp_logo_palette[i];
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200330}
331
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200332void lcd_logo_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000333{
wdenk8655b6f2004-10-09 23:25:58 +0000334 ushort i, j;
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200335 uchar *bmap = &bmp_logo_bitmap[0];
Andre Renaud317461c2013-02-13 17:48:00 +0000336 unsigned bpix = NBITS(panel_info.vl_bpix);
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200337 uchar *fb = (uchar *)(lcd_base + y * lcd_line_length + x * bpix / 8);
338 ushort *fb16;
wdenk8655b6f2004-10-09 23:25:58 +0000339
Nikita Kiryanov23064572015-02-03 13:32:26 +0200340 debug("Logo: width %d height %d colors %d\n",
341 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS);
wdenk8655b6f2004-10-09 23:25:58 +0000342
Andre Renaud317461c2013-02-13 17:48:00 +0000343 if (bpix < 12) {
wdenk8655b6f2004-10-09 23:25:58 +0000344 WATCHDOG_RESET();
Nikita Kiryanova02e9482015-02-03 13:32:24 +0200345 lcd_logo_set_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000346 WATCHDOG_RESET();
347
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000348 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
349 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000350 bmap += BMP_LOGO_WIDTH;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000351 fb += panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000352 }
353 }
354 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100355 u16 col16;
Andre Renaud317461c2013-02-13 17:48:00 +0000356 fb16 = (ushort *)fb;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000357 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
358 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100359 col16 = bmp_logo_palette[(bmap[j]-16)];
360 fb16[j] =
361 ((col16 & 0x000F) << 1) |
362 ((col16 & 0x00F0) << 3) |
363 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000364 }
365 bmap += BMP_LOGO_WIDTH;
366 fb16 += panel_info.vl_col;
367 }
368 }
369
370 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000371 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000372}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000373#else
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200374static inline void lcd_logo_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000375#endif /* CONFIG_LCD_LOGO */
376
Jon Loeligerc3517f92007-07-08 18:10:08 -0500377#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200378#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000379
380static void splash_align_axis(int *axis, unsigned long panel_size,
381 unsigned long picture_size)
382{
383 unsigned long panel_picture_delta = panel_size - picture_size;
384 unsigned long axis_alignment;
385
386 if (*axis == BMP_ALIGN_CENTER)
387 axis_alignment = panel_picture_delta / 2;
388 else if (*axis < 0)
389 axis_alignment = panel_picture_delta + *axis + 1;
390 else
391 return;
392
Masahiro Yamadab4141192014-11-07 03:03:31 +0900393 *axis = max(0, (int)axis_alignment);
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000394}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200395#endif
396
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000397#ifdef CONFIG_LCD_BMP_RLE8
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000398#define BMP_RLE8_ESCAPE 0
399#define BMP_RLE8_EOL 0
400#define BMP_RLE8_EOBMP 1
401#define BMP_RLE8_DELTA 2
402
403static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
404 int cnt)
405{
406 while (cnt > 0) {
407 *(*fbp)++ = cmap[*bmap++];
408 cnt--;
409 }
410}
411
412static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
413{
414 ushort *fb = *fbp;
415 int cnt_8copy = cnt >> 3;
416
417 cnt -= cnt_8copy << 3;
418 while (cnt_8copy > 0) {
419 *fb++ = c;
420 *fb++ = c;
421 *fb++ = c;
422 *fb++ = c;
423 *fb++ = c;
424 *fb++ = c;
425 *fb++ = c;
426 *fb++ = c;
427 cnt_8copy--;
428 }
429 while (cnt > 0) {
430 *fb++ = c;
431 cnt--;
432 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000433 *fbp = fb;
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000434}
435
436/*
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000437 * Do not call this function directly, must be called from lcd_display_bitmap.
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000438 */
Simon Glass1c3dbe52015-05-13 07:02:27 -0600439static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap,
440 uchar *fb, int x_off, int y_off)
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000441{
442 uchar *bmap;
443 ulong width, height;
444 ulong cnt, runlen;
445 int x, y;
446 int decode = 1;
447
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100448 width = get_unaligned_le32(&bmp->header.width);
449 height = get_unaligned_le32(&bmp->header.height);
450 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000451
452 x = 0;
453 y = height - 1;
454
455 while (decode) {
456 if (bmap[0] == BMP_RLE8_ESCAPE) {
457 switch (bmap[1]) {
458 case BMP_RLE8_EOL:
459 /* end of line */
460 bmap += 2;
461 x = 0;
462 y--;
463 /* 16bpix, 2-byte per pixel, width should *2 */
464 fb -= (width * 2 + lcd_line_length);
465 break;
466 case BMP_RLE8_EOBMP:
467 /* end of bitmap */
468 decode = 0;
469 break;
470 case BMP_RLE8_DELTA:
471 /* delta run */
472 x += bmap[2];
473 y -= bmap[3];
474 /* 16bpix, 2-byte per pixel, x should *2 */
475 fb = (uchar *) (lcd_base + (y + y_off - 1)
476 * lcd_line_length + (x + x_off) * 2);
477 bmap += 4;
478 break;
479 default:
480 /* unencoded run */
481 runlen = bmap[1];
482 bmap += 2;
483 if (y < height) {
484 if (x < width) {
485 if (x + runlen > width)
486 cnt = width - x;
487 else
488 cnt = runlen;
489 draw_unencoded_bitmap(
490 (ushort **)&fb,
491 bmap, cmap, cnt);
492 }
493 x += runlen;
494 }
495 bmap += runlen;
496 if (runlen & 1)
497 bmap++;
498 }
499 } else {
500 /* encoded run */
501 if (y < height) {
502 runlen = bmap[0];
503 if (x < width) {
504 /* aggregate the same code */
505 while (bmap[0] == 0xff &&
506 bmap[2] != BMP_RLE8_ESCAPE &&
507 bmap[1] == bmap[3]) {
508 runlen += bmap[2];
509 bmap += 2;
510 }
511 if (x + runlen > width)
512 cnt = width - x;
513 else
514 cnt = runlen;
515 draw_encoded_bitmap((ushort **)&fb,
516 cmap[bmap[1]], cnt);
517 }
518 x += runlen;
519 }
520 bmap += 2;
521 }
522 }
523}
524#endif
525
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200526__weak void fb_put_byte(uchar **fb, uchar **from)
527{
528 *(*fb)++ = *(*from)++;
529}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000530
531#if defined(CONFIG_BMP_16BPP)
Nikita Kiryanovb3d12e92015-02-03 13:32:22 +0200532__weak void fb_put_word(uchar **fb, uchar **from)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000533{
534 *(*fb)++ = *(*from)++;
535 *(*fb)++ = *(*from)++;
536}
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000537#endif /* CONFIG_BMP_16BPP */
538
Simon Glass1c3dbe52015-05-13 07:02:27 -0600539__weak void lcd_set_cmap(struct bmp_image *bmp, unsigned colors)
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200540{
541 int i;
Simon Glass1c3dbe52015-05-13 07:02:27 -0600542 struct bmp_color_table_entry cte;
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200543 ushort *cmap = configuration_get_cmap();
544
545 for (i = 0; i < colors; ++i) {
546 cte = bmp->color_table[i];
547 *cmap = (((cte.red) << 8) & 0xf800) |
548 (((cte.green) << 3) & 0x07e0) |
549 (((cte.blue) >> 3) & 0x001f);
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200550 cmap++;
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200551 }
552}
553
wdenk8655b6f2004-10-09 23:25:58 +0000554int lcd_display_bitmap(ulong bmp_image, int x, int y)
555{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100556 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000557 ushort i, j;
558 uchar *fb;
Simon Glass1c3dbe52015-05-13 07:02:27 -0600559 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000560 uchar *bmap;
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000561 ushort padded_width;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100562 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200563 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100564 unsigned colors, bpix, bmp_bpix;
Simon Glass8d379f12015-05-13 07:02:28 -0600565 int hdr_size;
xypron.glpk@gmx.de021414a2017-07-30 21:59:23 +0200566 struct bmp_color_table_entry *palette;
wdenk8655b6f2004-10-09 23:25:58 +0000567
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000568 if (!bmp || !(bmp->header.signature[0] == 'B' &&
569 bmp->header.signature[1] == 'M')) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000570 printf("Error: no valid bmp image at %lx\n", bmp_image);
571
wdenk8655b6f2004-10-09 23:25:58 +0000572 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100573 }
wdenk8655b6f2004-10-09 23:25:58 +0000574
xypron.glpk@gmx.de021414a2017-07-30 21:59:23 +0200575 palette = bmp->color_table;
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100576 width = get_unaligned_le32(&bmp->header.width);
577 height = get_unaligned_le32(&bmp->header.height);
578 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count);
Simon Glass8d379f12015-05-13 07:02:28 -0600579 hdr_size = get_unaligned_le16(&bmp->header.size);
580 debug("hdr_size=%d, bmp_bpix=%d\n", hdr_size, bmp_bpix);
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100581
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100582 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000583
584 bpix = NBITS(panel_info.vl_bpix);
585
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000586 if (bpix != 1 && bpix != 8 && bpix != 16 && bpix != 32) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100587 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
588 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000589
wdenk8655b6f2004-10-09 23:25:58 +0000590 return 1;
591 }
592
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200593 /*
594 * We support displaying 8bpp BMPs on 16bpp LCDs
595 * and displaying 24bpp BMPs on 32bpp LCDs
596 * */
597 if (bpix != bmp_bpix &&
598 !(bmp_bpix == 8 && bpix == 16) &&
599 !(bmp_bpix == 24 && bpix == 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000600 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100601 bpix, get_unaligned_le16(&bmp->header.bit_count));
wdenk8655b6f2004-10-09 23:25:58 +0000602 return 1;
603 }
604
Simon Glass8d379f12015-05-13 07:02:28 -0600605 debug("Display-bmp: %d x %d with %d colors, display %d\n",
606 (int)width, (int)height, (int)colors, 1 << bpix);
wdenk8655b6f2004-10-09 23:25:58 +0000607
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200608 if (bmp_bpix == 8)
609 lcd_set_cmap(bmp, colors);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200610
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000611 padded_width = (width & 0x3 ? (width & ~0x3) + 4 : width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200612
613#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000614 splash_align_axis(&x, pwidth, width);
615 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200616#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
617
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000618 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200619 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000620 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000621 height = panel_info.vl_row - y;
622
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100623 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset);
624 fb = (uchar *)(lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800625 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100626
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100627 switch (bmp_bpix) {
Nikita Kiryanovc8d2feb2015-02-03 13:32:29 +0200628 case 1:
Simon Glass01564442014-10-15 04:53:04 -0600629 case 8: {
Nikita Kiryanov0b29a892015-02-03 13:32:27 +0200630 cmap_base = configuration_get_cmap();
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000631#ifdef CONFIG_LCD_BMP_RLE8
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100632 u32 compression = get_unaligned_le32(&bmp->header.compression);
Simon Glass8d379f12015-05-13 07:02:28 -0600633 debug("compressed %d %d\n", compression, BMP_BI_RLE8);
Przemyslaw Marczakdca2a1c2014-01-22 11:24:13 +0100634 if (compression == BMP_BI_RLE8) {
Tom Wai-Hong Tam45d7f522012-09-28 15:11:16 +0000635 if (bpix != 16) {
636 /* TODO implement render code for bpix != 16 */
637 printf("Error: only support 16 bpix");
638 return 1;
639 }
640 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
641 break;
642 }
643#endif
644
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100645 if (bpix != 16)
646 byte_width = width;
647 else
648 byte_width = width * 2;
649
Mark Jacksona303dfb2009-02-06 10:37:49 +0100650 for (i = 0; i < height; ++i) {
651 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100652 for (j = 0; j < width; j++) {
653 if (bpix != 16) {
Nikita Kiryanov27fad012015-02-03 13:32:23 +0200654 fb_put_byte(&fb, &bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100655 } else {
Simon Glass8d379f12015-05-13 07:02:28 -0600656 struct bmp_color_table_entry *entry;
657 uint val;
658
659 if (cmap_base) {
660 val = cmap_base[*bmap];
661 } else {
662 entry = &palette[*bmap];
663 val = entry->blue >> 3 |
664 entry->green >> 2 << 5 |
665 entry->red >> 3 << 11;
666 }
667 *(uint16_t *)fb = val;
668 bmap++;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100669 fb += sizeof(uint16_t) / sizeof(*fb);
670 }
671 }
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000672 bmap += (padded_width - width);
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000673 fb -= byte_width + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100674 }
675 break;
Simon Glass01564442014-10-15 04:53:04 -0600676 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100677#if defined(CONFIG_BMP_16BPP)
678 case 16:
679 for (i = 0; i < height; ++i) {
680 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000681 for (j = 0; j < width; j++)
682 fb_put_word(&fb, &bmap);
683
Tom Wai-Hong Tamfecac462012-09-28 15:11:14 +0000684 bmap += (padded_width - width) * 2;
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000685 fb -= width * 2 + lcd_line_length;
Mark Jacksona303dfb2009-02-06 10:37:49 +0100686 }
687 break;
688#endif /* CONFIG_BMP_16BPP */
Philipp Tomsich10ba6b32017-05-05 21:48:30 +0200689#if defined(CONFIG_BMP_24BPP)
Hannes Petermaiera305fb12014-07-15 16:28:46 +0200690 case 24:
691 for (i = 0; i < height; ++i) {
692 for (j = 0; j < width; j++) {
693 *(fb++) = *(bmap++);
694 *(fb++) = *(bmap++);
695 *(fb++) = *(bmap++);
696 *(fb++) = 0;
697 }
698 fb -= lcd_line_length + width * (bpix / 8);
699 }
700 break;
Philipp Tomsich10ba6b32017-05-05 21:48:30 +0200701#endif /* CONFIG_BMP_24BPP */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000702#if defined(CONFIG_BMP_32BPP)
703 case 32:
704 for (i = 0; i < height; ++i) {
705 for (j = 0; j < width; j++) {
706 *(fb++) = *(bmap++);
707 *(fb++) = *(bmap++);
708 *(fb++) = *(bmap++);
709 *(fb++) = *(bmap++);
710 }
Jeroen Hofstee6b035142013-01-12 12:07:56 +0000711 fb -= lcd_line_length + width * (bpix / 8);
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000712 }
713 break;
714#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100715 default:
716 break;
717 };
wdenk8655b6f2004-10-09 23:25:58 +0000718
Simon Glass9a8efc42012-10-30 13:40:18 +0000719 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000720 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000721}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500722#endif
wdenk8655b6f2004-10-09 23:25:58 +0000723
Nikita Kiryanov7bf71d12015-02-03 13:32:32 +0200724static void lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000725{
Nikita Kiryanovbf21a5d2015-02-03 13:32:30 +0200726 lcd_logo_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000727
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200728#ifdef CONFIG_LCD_INFO
Nikita Kiryanov140beb92014-12-08 17:14:41 +0200729 lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH);
730 lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT);
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200731 lcd_show_board_info();
732#endif /* CONFIG_LCD_INFO */
wdenk8655b6f2004-10-09 23:25:58 +0000733}
734
Nikita Kiryanovc0880482013-02-24 21:28:43 +0000735#ifdef CONFIG_SPLASHIMAGE_GUARD
736static int on_splashimage(const char *name, const char *value, enum env_op op,
737 int flags)
738{
739 ulong addr;
740 int aligned;
741
742 if (op == env_op_delete)
743 return 0;
744
745 addr = simple_strtoul(value, NULL, 16);
746 /* See README.displaying-bmps */
747 aligned = (addr % 4 == 2);
748 if (!aligned) {
749 printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
750 return -1;
751 }
752
753 return 0;
754}
755
756U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
757#endif
758
Vadim Bendebury395166c2012-09-28 15:11:13 +0000759int lcd_get_pixel_width(void)
760{
761 return panel_info.vl_col;
762}
763
764int lcd_get_pixel_height(void)
765{
766 return panel_info.vl_row;
767}