blob: d2a3e9103141400341eb363277ea3dd814260bbc [file] [log] [blame]
wdenk8655b6f2004-10-09 23:25:58 +00001/*
2 * Common LCD routines for supported CPUs
3 *
4 * (C) Copyright 2001-2002
5 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26/************************************************************************/
27/* ** HEADER FILES */
28/************************************************************************/
29
30/* #define DEBUG */
31
32#include <config.h>
33#include <common.h>
34#include <command.h>
wdenk8655b6f2004-10-09 23:25:58 +000035#include <stdarg.h>
36#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020037#include <stdio_dev.h>
wdenk8655b6f2004-10-09 23:25:58 +000038#if defined(CONFIG_POST)
39#include <post.h>
40#endif
41#include <lcd.h>
wdenk8b0bfc62005-04-03 23:11:38 +000042#include <watchdog.h>
wdenk8655b6f2004-10-09 23:25:58 +000043
Marek Vasutabc20ab2011-11-26 07:20:07 +010044#if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
45 defined(CONFIG_CPU_MONAHANS)
46#define CONFIG_CPU_PXA
wdenk8655b6f2004-10-09 23:25:58 +000047#include <asm/byteorder.h>
48#endif
49
50#if defined(CONFIG_MPC823)
wdenk8655b6f2004-10-09 23:25:58 +000051#include <lcdvideo.h>
52#endif
53
Stelian Pop39cf4802008-05-09 21:57:18 +020054#if defined(CONFIG_ATMEL_LCD)
55#include <atmel_lcdc.h>
Stelian Pop39cf4802008-05-09 21:57:18 +020056#endif
57
wdenk8655b6f2004-10-09 23:25:58 +000058/************************************************************************/
59/* ** FONT DATA */
60/************************************************************************/
61#include <video_font.h> /* Get font data, width and height */
Che-Liang Chioud3983ee2011-10-21 17:04:21 +080062#include <video_font_data.h>
wdenk8655b6f2004-10-09 23:25:58 +000063
wdenk88804d12005-07-04 00:03:16 +000064/************************************************************************/
65/* ** LOGO DATA */
66/************************************************************************/
67#ifdef CONFIG_LCD_LOGO
68# include <bmp_logo.h> /* Get logo data, width and height */
Che-Liang Chiouc2707302011-10-20 23:04:20 +000069# include <bmp_logo_data.h>
Alessandro Rubiniacb13862010-03-13 17:44:08 +010070# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
wdenk88804d12005-07-04 00:03:16 +000071# error Default Color Map overlaps with Logo Color Map
72# endif
73#endif
wdenk8655b6f2004-10-09 23:25:58 +000074
Simon Glass676d3192012-10-17 13:24:54 +000075#ifndef CONFIG_LCD_ALIGNMENT
76#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
77#endif
78
Wolfgang Denkd87080b2006-03-31 18:32:53 +020079DECLARE_GLOBAL_DATA_PTR;
80
wdenk8655b6f2004-10-09 23:25:58 +000081ulong lcd_setmem (ulong addr);
82
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000083static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
84static inline void lcd_puts_xy(ushort x, ushort y, uchar *s);
85static inline void lcd_putc_xy(ushort x, ushort y, uchar c);
wdenk8655b6f2004-10-09 23:25:58 +000086
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000087static int lcd_init(void *lcdbase);
wdenk8655b6f2004-10-09 23:25:58 +000088
wdenk8655b6f2004-10-09 23:25:58 +000089static void *lcd_logo (void);
90
Nikita Kiryanov8f47d912012-05-24 01:42:38 +000091static int lcd_getbgcolor(void);
92static void lcd_setfgcolor(int color);
93static void lcd_setbgcolor(int color);
wdenk8655b6f2004-10-09 23:25:58 +000094
95char lcd_is_enabled = 0;
wdenk8655b6f2004-10-09 23:25:58 +000096
Simon Glass9a8efc42012-10-30 13:40:18 +000097static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
98
99
wdenk8655b6f2004-10-09 23:25:58 +0000100#ifdef NOT_USED_SO_FAR
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000101static void lcd_getcolreg(ushort regno,
wdenk8655b6f2004-10-09 23:25:58 +0000102 ushort *red, ushort *green, ushort *blue);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000103static int lcd_getfgcolor(void);
wdenk8655b6f2004-10-09 23:25:58 +0000104#endif /* NOT_USED_SO_FAR */
105
106/************************************************************************/
107
Simon Glass9a8efc42012-10-30 13:40:18 +0000108/* Flush LCD activity to the caches */
109void lcd_sync(void)
110{
111 /*
112 * flush_dcache_range() is declared in common.h but it seems that some
113 * architectures do not actually implement it. Is there a way to find
114 * out whether it exists? For now, ARM is safe.
115 */
116#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
117 int line_length;
118
119 if (lcd_flush_dcache)
120 flush_dcache_range((u32)lcd_base,
121 (u32)(lcd_base + lcd_get_size(&line_length)));
122#endif
123}
124
125void lcd_set_flush_dcache(int flush)
126{
127 lcd_flush_dcache = (flush != 0);
128}
129
wdenk8655b6f2004-10-09 23:25:58 +0000130/*----------------------------------------------------------------------*/
131
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000132static void console_scrollup(void)
wdenk8655b6f2004-10-09 23:25:58 +0000133{
wdenk8655b6f2004-10-09 23:25:58 +0000134 /* Copy up rows ignoring the first one */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000135 memcpy(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND, CONSOLE_SCROLL_SIZE);
wdenk8655b6f2004-10-09 23:25:58 +0000136
137 /* Clear the last one */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000138 memset(CONSOLE_ROW_LAST, COLOR_MASK(lcd_color_bg), CONSOLE_ROW_SIZE);
Simon Glass9a8efc42012-10-30 13:40:18 +0000139 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000140}
141
142/*----------------------------------------------------------------------*/
143
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000144static inline void console_back(void)
wdenk8655b6f2004-10-09 23:25:58 +0000145{
146 if (--console_col < 0) {
147 console_col = CONSOLE_COLS-1 ;
148 if (--console_row < 0) {
149 console_row = 0;
150 }
151 }
152
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000153 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
154 console_row * VIDEO_FONT_HEIGHT, ' ');
wdenk8655b6f2004-10-09 23:25:58 +0000155}
156
157/*----------------------------------------------------------------------*/
158
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000159static inline void console_newline(void)
wdenk8655b6f2004-10-09 23:25:58 +0000160{
161 ++console_row;
162 console_col = 0;
163
164 /* Check if we need to scroll the terminal */
165 if (console_row >= CONSOLE_ROWS) {
166 /* Scroll everything up */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000167 console_scrollup();
wdenk8655b6f2004-10-09 23:25:58 +0000168 --console_row;
Simon Glass9a8efc42012-10-30 13:40:18 +0000169 } else {
170 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000171 }
172}
173
174/*----------------------------------------------------------------------*/
175
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000176void lcd_putc(const char c)
wdenk8655b6f2004-10-09 23:25:58 +0000177{
178 if (!lcd_is_enabled) {
179 serial_putc(c);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000180
wdenk8655b6f2004-10-09 23:25:58 +0000181 return;
182 }
183
184 switch (c) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000185 case '\r':
186 console_col = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000187
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000188 return;
189 case '\n':
190 console_newline();
wdenk8655b6f2004-10-09 23:25:58 +0000191
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000192 return;
wdenk8655b6f2004-10-09 23:25:58 +0000193 case '\t': /* Tab (8 chars alignment) */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000194 console_col += 8;
195 console_col &= ~7;
wdenk8655b6f2004-10-09 23:25:58 +0000196
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000197 if (console_col >= CONSOLE_COLS)
198 console_newline();
wdenk8655b6f2004-10-09 23:25:58 +0000199
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000200 return;
201 case '\b':
202 console_back();
wdenk8655b6f2004-10-09 23:25:58 +0000203
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000204 return;
205 default:
206 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
207 console_row * VIDEO_FONT_HEIGHT, c);
208 if (++console_col >= CONSOLE_COLS)
209 console_newline();
wdenk8655b6f2004-10-09 23:25:58 +0000210 }
wdenk8655b6f2004-10-09 23:25:58 +0000211}
212
213/*----------------------------------------------------------------------*/
214
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000215void lcd_puts(const char *s)
wdenk8655b6f2004-10-09 23:25:58 +0000216{
217 if (!lcd_is_enabled) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000218 serial_puts(s);
219
wdenk8655b6f2004-10-09 23:25:58 +0000220 return;
221 }
222
223 while (*s) {
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000224 lcd_putc(*s++);
wdenk8655b6f2004-10-09 23:25:58 +0000225 }
Simon Glass9a8efc42012-10-30 13:40:18 +0000226 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000227}
228
Haavard Skinnemoen15b17ab2008-09-01 16:21:20 +0200229/*----------------------------------------------------------------------*/
230
231void lcd_printf(const char *fmt, ...)
232{
233 va_list args;
234 char buf[CONFIG_SYS_PBSIZE];
235
236 va_start(args, fmt);
237 vsprintf(buf, fmt, args);
238 va_end(args);
239
240 lcd_puts(buf);
241}
242
wdenk8655b6f2004-10-09 23:25:58 +0000243/************************************************************************/
244/* ** Low-Level Graphics Routines */
245/************************************************************************/
246
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000247static void lcd_drawchars(ushort x, ushort y, uchar *str, int count)
wdenk8655b6f2004-10-09 23:25:58 +0000248{
249 uchar *dest;
Marek Vasutbe547c62011-09-26 02:26:04 +0200250 ushort row;
251
Anatolij Gustschin0f999c42012-04-27 04:41:16 +0000252#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
253 y += BMP_LOGO_HEIGHT;
254#endif
255
Marek Vasutbe547c62011-09-26 02:26:04 +0200256#if LCD_BPP == LCD_MONOCHROME
257 ushort off = x * (1 << LCD_BPP) % 8;
258#endif
wdenk8655b6f2004-10-09 23:25:58 +0000259
260 dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
wdenk8655b6f2004-10-09 23:25:58 +0000261
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000262 for (row = 0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
wdenk8655b6f2004-10-09 23:25:58 +0000263 uchar *s = str;
wdenk8655b6f2004-10-09 23:25:58 +0000264 int i;
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100265#if LCD_BPP == LCD_COLOR16
266 ushort *d = (ushort *)dest;
267#else
268 uchar *d = dest;
269#endif
wdenk8655b6f2004-10-09 23:25:58 +0000270
271#if LCD_BPP == LCD_MONOCHROME
272 uchar rest = *d & -(1 << (8-off));
273 uchar sym;
274#endif
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000275 for (i = 0; i < count; ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000276 uchar c, bits;
277
278 c = *s++;
279 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
280
281#if LCD_BPP == LCD_MONOCHROME
282 sym = (COLOR_MASK(lcd_color_fg) & bits) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000283 (COLOR_MASK(lcd_color_bg) & ~bits);
wdenk8655b6f2004-10-09 23:25:58 +0000284
285 *d++ = rest | (sym >> off);
286 rest = sym << (8-off);
287#elif LCD_BPP == LCD_COLOR8
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000288 for (c = 0; c < 8; ++c) {
wdenk8655b6f2004-10-09 23:25:58 +0000289 *d++ = (bits & 0x80) ?
290 lcd_color_fg : lcd_color_bg;
291 bits <<= 1;
292 }
293#elif LCD_BPP == LCD_COLOR16
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000294 for (c = 0; c < 8; ++c) {
wdenk8655b6f2004-10-09 23:25:58 +0000295 *d++ = (bits & 0x80) ?
296 lcd_color_fg : lcd_color_bg;
297 bits <<= 1;
298 }
299#endif
300 }
301#if LCD_BPP == LCD_MONOCHROME
302 *d = rest | (*d & ((1 << (8-off)) - 1));
303#endif
304 }
305}
306
307/*----------------------------------------------------------------------*/
308
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000309static inline void lcd_puts_xy(ushort x, ushort y, uchar *s)
wdenk8655b6f2004-10-09 23:25:58 +0000310{
Anatolij Gustschin0f999c42012-04-27 04:41:16 +0000311 lcd_drawchars(x, y, s, strlen((char *)s));
wdenk8655b6f2004-10-09 23:25:58 +0000312}
313
314/*----------------------------------------------------------------------*/
315
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000316static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
wdenk8655b6f2004-10-09 23:25:58 +0000317{
Anatolij Gustschin0f999c42012-04-27 04:41:16 +0000318 lcd_drawchars(x, y, &c, 1);
wdenk8655b6f2004-10-09 23:25:58 +0000319}
320
321/************************************************************************/
322/** Small utility to check that you got the colours right */
323/************************************************************************/
324#ifdef LCD_TEST_PATTERN
325
326#define N_BLK_VERT 2
327#define N_BLK_HOR 3
328
329static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
330 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
331 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
332};
333
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000334static void test_pattern(void)
wdenk8655b6f2004-10-09 23:25:58 +0000335{
336 ushort v_max = panel_info.vl_row;
337 ushort h_max = panel_info.vl_col;
338 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
339 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
340 ushort v, h;
341 uchar *pix = (uchar *)lcd_base;
342
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000343 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
wdenk8655b6f2004-10-09 23:25:58 +0000344 h_max, v_max, h_step, v_step);
345
346 /* WARNING: Code silently assumes 8bit/pixel */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000347 for (v = 0; v < v_max; ++v) {
wdenk8655b6f2004-10-09 23:25:58 +0000348 uchar iy = v / v_step;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000349 for (h = 0; h < h_max; ++h) {
wdenk8655b6f2004-10-09 23:25:58 +0000350 uchar ix = N_BLK_HOR * iy + (h/h_step);
351 *pix++ = test_colors[ix];
352 }
353 }
354}
355#endif /* LCD_TEST_PATTERN */
356
357
358/************************************************************************/
359/* ** GENERIC Initialization Routines */
360/************************************************************************/
361
Simon Glass676d3192012-10-17 13:24:54 +0000362int lcd_get_size(int *line_length)
363{
364 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
365 return *line_length * panel_info.vl_row;
366}
367
wdenk8655b6f2004-10-09 23:25:58 +0000368int drv_lcd_init (void)
369{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200370 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000371 int rc;
372
373 lcd_base = (void *)(gd->fb_base);
374
Simon Glass676d3192012-10-17 13:24:54 +0000375 lcd_get_size(&lcd_line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000376
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000377 lcd_init(lcd_base); /* LCD initialization */
wdenk8655b6f2004-10-09 23:25:58 +0000378
379 /* Device initialization */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000380 memset(&lcddev, 0, sizeof(lcddev));
wdenk8655b6f2004-10-09 23:25:58 +0000381
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000382 strcpy(lcddev.name, "lcd");
wdenk8655b6f2004-10-09 23:25:58 +0000383 lcddev.ext = 0; /* No extensions */
384 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
385 lcddev.putc = lcd_putc; /* 'putc' function */
386 lcddev.puts = lcd_puts; /* 'puts' function */
387
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200388 rc = stdio_register (&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000389
390 return (rc == 0) ? 1 : rc;
391}
392
393/*----------------------------------------------------------------------*/
Che-Liang Chiou02110902011-10-20 23:07:03 +0000394void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000395{
396#if LCD_BPP == LCD_MONOCHROME
397 /* Setting the palette */
398 lcd_initcolregs();
399
400#elif LCD_BPP == LCD_COLOR8
401 /* Setting the palette */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000402 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
403 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
404 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
405 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
406 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
407 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
408 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
409 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
410 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
wdenk8655b6f2004-10-09 23:25:58 +0000411#endif
412
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200413#ifndef CONFIG_SYS_WHITE_ON_BLACK
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000414 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
415 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
wdenk8655b6f2004-10-09 23:25:58 +0000416#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000417 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
418 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200419#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000420
421#ifdef LCD_TEST_PATTERN
422 test_pattern();
423#else
424 /* set framebuffer to background color */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000425 memset((char *)lcd_base,
wdenk8655b6f2004-10-09 23:25:58 +0000426 COLOR_MASK(lcd_getbgcolor()),
427 lcd_line_length*panel_info.vl_row);
428#endif
429 /* Paint the logo and retrieve LCD base address */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000430 debug("[LCD] Drawing the logo...\n");
wdenk8655b6f2004-10-09 23:25:58 +0000431 lcd_console_address = lcd_logo ();
432
433 console_col = 0;
434 console_row = 0;
Simon Glass9a8efc42012-10-30 13:40:18 +0000435 lcd_sync();
436}
437
438static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
439 char *const argv[])
440{
441 lcd_clear();
442 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000443}
444
445U_BOOT_CMD(
Che-Liang Chiou02110902011-10-20 23:07:03 +0000446 cls, 1, 1, do_lcd_clear,
Peter Tyser2fb26042009-01-27 18:03:12 -0600447 "clear screen",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200448 ""
wdenk8655b6f2004-10-09 23:25:58 +0000449);
450
451/*----------------------------------------------------------------------*/
452
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000453static int lcd_init(void *lcdbase)
wdenk8655b6f2004-10-09 23:25:58 +0000454{
455 /* Initialize the lcd controller */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000456 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
wdenk8655b6f2004-10-09 23:25:58 +0000457
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000458 lcd_ctrl_init(lcdbase);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200459 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000460 lcd_clear();
wdenk8655b6f2004-10-09 23:25:58 +0000461 lcd_enable ();
462
463 /* Initialize the console */
464 console_col = 0;
wdenk88804d12005-07-04 00:03:16 +0000465#ifdef CONFIG_LCD_INFO_BELOW_LOGO
wdenk8655b6f2004-10-09 23:25:58 +0000466 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
467#else
468 console_row = 1; /* leave 1 blank line below logo */
469#endif
wdenk8655b6f2004-10-09 23:25:58 +0000470
471 return 0;
472}
473
474
475/************************************************************************/
476/* ** ROM capable initialization part - needed to reserve FB memory */
477/************************************************************************/
478/*
479 * This is called early in the system initialization to grab memory
480 * for the LCD controller.
481 * Returns new address for monitor, after reserving LCD buffer memory
482 *
483 * Note that this is running from ROM, so no write access to global data.
484 */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000485ulong lcd_setmem(ulong addr)
wdenk8655b6f2004-10-09 23:25:58 +0000486{
487 ulong size;
Simon Glass676d3192012-10-17 13:24:54 +0000488 int line_length;
wdenk8655b6f2004-10-09 23:25:58 +0000489
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000490 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
491 panel_info.vl_row, NBITS(panel_info.vl_bpix));
wdenk8655b6f2004-10-09 23:25:58 +0000492
Simon Glass676d3192012-10-17 13:24:54 +0000493 size = lcd_get_size(&line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000494
Simon Glass676d3192012-10-17 13:24:54 +0000495 /* Round up to nearest full page, or MMU section if defined */
496 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
497 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
wdenk8655b6f2004-10-09 23:25:58 +0000498
499 /* Allocate pages for the frame buffer. */
500 addr -= size;
501
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000502 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
wdenk8655b6f2004-10-09 23:25:58 +0000503
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000504 return addr;
wdenk8655b6f2004-10-09 23:25:58 +0000505}
506
507/*----------------------------------------------------------------------*/
508
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000509static void lcd_setfgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000510{
Stelian Pop39cf4802008-05-09 21:57:18 +0200511 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000512}
513
514/*----------------------------------------------------------------------*/
515
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000516static void lcd_setbgcolor(int color)
wdenk8655b6f2004-10-09 23:25:58 +0000517{
Stelian Pop39cf4802008-05-09 21:57:18 +0200518 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000519}
520
521/*----------------------------------------------------------------------*/
522
523#ifdef NOT_USED_SO_FAR
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000524static int lcd_getfgcolor(void)
wdenk8655b6f2004-10-09 23:25:58 +0000525{
526 return lcd_color_fg;
527}
528#endif /* NOT_USED_SO_FAR */
529
530/*----------------------------------------------------------------------*/
531
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000532static int lcd_getbgcolor(void)
wdenk8655b6f2004-10-09 23:25:58 +0000533{
534 return lcd_color_bg;
535}
536
537/*----------------------------------------------------------------------*/
538
539/************************************************************************/
540/* ** Chipset depending Bitmap / Logo stuff... */
541/************************************************************************/
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000542static inline ushort *configuration_get_cmap(void)
543{
544#if defined CONFIG_CPU_PXA
545 struct pxafb_info *fbi = &panel_info.pxa;
546 return (ushort *)fbi->palette;
547#elif defined(CONFIG_MPC823)
548 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
549 cpm8xx_t *cp = &(immr->im_cpm);
550 return (ushort *)&(cp->lcd_cmap[255 * sizeof(ushort)]);
551#elif defined(CONFIG_ATMEL_LCD)
552 return (ushort *)(panel_info.mmio + ATMEL_LCDC_LUT(0));
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000553#elif !defined(CONFIG_ATMEL_HLCD) && !defined(CONFIG_EXYNOS_FB)
554 return panel_info.cmap;
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000555#else
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000556#if defined(CONFIG_LCD_LOGO)
557 return bmp_logo_palette;
558#else
559 return NULL;
560#endif
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000561#endif
562}
563
wdenk8655b6f2004-10-09 23:25:58 +0000564#ifdef CONFIG_LCD_LOGO
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000565void bitmap_plot(int x, int y)
wdenk8655b6f2004-10-09 23:25:58 +0000566{
Stelian Pop39cf4802008-05-09 21:57:18 +0200567#ifdef CONFIG_ATMEL_LCD
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000568 uint *cmap = (uint *)bmp_logo_palette;
Stelian Pop39cf4802008-05-09 21:57:18 +0200569#else
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000570 ushort *cmap = (ushort *)bmp_logo_palette;
Stelian Pop39cf4802008-05-09 21:57:18 +0200571#endif
wdenk8655b6f2004-10-09 23:25:58 +0000572 ushort i, j;
573 uchar *bmap;
574 uchar *fb;
575 ushort *fb16;
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000576#if defined(CONFIG_MPC823)
577 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
578 cpm8xx_t *cp = &(immr->im_cpm);
wdenk8655b6f2004-10-09 23:25:58 +0000579#endif
580
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000581 debug("Logo: width %d height %d colors %d cmap %d\n",
wdenk8655b6f2004-10-09 23:25:58 +0000582 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
Anatolij Gustschin095407d2012-04-27 04:41:06 +0000583 ARRAY_SIZE(bmp_logo_palette));
wdenk8655b6f2004-10-09 23:25:58 +0000584
585 bmap = &bmp_logo_bitmap[0];
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200586 fb = (uchar *)(lcd_base + y * lcd_line_length + x);
wdenk8655b6f2004-10-09 23:25:58 +0000587
588 if (NBITS(panel_info.vl_bpix) < 12) {
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000589 /* Leave room for default color map
590 * default case: generic system with no cmap (most likely 16bpp)
591 * cmap was set to the source palette, so no change is done.
592 * This avoids even more ifdefs in the next stanza
593 */
594#if defined(CONFIG_MPC823)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000595 cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
Stelian Pop39cf4802008-05-09 21:57:18 +0200596#elif defined(CONFIG_ATMEL_LCD)
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000597 cmap = (uint *)configuration_get_cmap();
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100598#else
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000599 cmap = configuration_get_cmap();
wdenk8655b6f2004-10-09 23:25:58 +0000600#endif
601
602 WATCHDOG_RESET();
603
604 /* Set color map */
Anatolij Gustschin095407d2012-04-27 04:41:06 +0000605 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000606 ushort colreg = bmp_logo_palette[i];
Stelian Pop39cf4802008-05-09 21:57:18 +0200607#ifdef CONFIG_ATMEL_LCD
608 uint lut_entry;
609#ifdef CONFIG_ATMEL_LCD_BGR555
610 lut_entry = ((colreg & 0x000F) << 11) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000611 ((colreg & 0x00F0) << 2) |
612 ((colreg & 0x0F00) >> 7);
Stelian Pop39cf4802008-05-09 21:57:18 +0200613#else /* CONFIG_ATMEL_LCD_RGB565 */
614 lut_entry = ((colreg & 0x000F) << 1) |
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000615 ((colreg & 0x00F0) << 3) |
616 ((colreg & 0x0F00) << 4);
Stelian Pop39cf4802008-05-09 21:57:18 +0200617#endif
618 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
619 cmap++;
620#else /* !CONFIG_ATMEL_LCD */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200621#ifdef CONFIG_SYS_INVERT_COLORS
wdenk8655b6f2004-10-09 23:25:58 +0000622 *cmap++ = 0xffff - colreg;
623#else
624 *cmap++ = colreg;
625#endif
Stelian Pop39cf4802008-05-09 21:57:18 +0200626#endif /* CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000627 }
628
629 WATCHDOG_RESET();
630
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000631 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
632 memcpy(fb, bmap, BMP_LOGO_WIDTH);
wdenk8655b6f2004-10-09 23:25:58 +0000633 bmap += BMP_LOGO_WIDTH;
634 fb += panel_info.vl_col;
635 }
636 }
637 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100638 u16 col16;
wdenk8655b6f2004-10-09 23:25:58 +0000639 fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000640 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
641 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100642 col16 = bmp_logo_palette[(bmap[j]-16)];
643 fb16[j] =
644 ((col16 & 0x000F) << 1) |
645 ((col16 & 0x00F0) << 3) |
646 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000647 }
648 bmap += BMP_LOGO_WIDTH;
649 fb16 += panel_info.vl_col;
650 }
651 }
652
653 WATCHDOG_RESET();
Simon Glass9a8efc42012-10-30 13:40:18 +0000654 lcd_sync();
wdenk8655b6f2004-10-09 23:25:58 +0000655}
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000656#else
657static inline void bitmap_plot(int x, int y) {}
wdenk8655b6f2004-10-09 23:25:58 +0000658#endif /* CONFIG_LCD_LOGO */
659
660/*----------------------------------------------------------------------*/
Jon Loeligerc3517f92007-07-08 18:10:08 -0500661#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk8655b6f2004-10-09 23:25:58 +0000662/*
663 * Display the BMP file located at address bmp_image.
664 * Only uncompressed.
665 */
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200666
667#ifdef CONFIG_SPLASH_SCREEN_ALIGN
668#define BMP_ALIGN_CENTER 0x7FFF
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000669
670static void splash_align_axis(int *axis, unsigned long panel_size,
671 unsigned long picture_size)
672{
673 unsigned long panel_picture_delta = panel_size - picture_size;
674 unsigned long axis_alignment;
675
676 if (*axis == BMP_ALIGN_CENTER)
677 axis_alignment = panel_picture_delta / 2;
678 else if (*axis < 0)
679 axis_alignment = panel_picture_delta + *axis + 1;
680 else
681 return;
682
683 *axis = max(0, axis_alignment);
684}
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200685#endif
686
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000687#if defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000688#define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
Anatolij Gustschind23019f2012-09-22 06:55:53 +0000689#else
690#define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000691#endif
692
693#if defined(CONFIG_BMP_16BPP)
694#if defined(CONFIG_ATMEL_LCD_BGR555)
695static inline void fb_put_word(uchar **fb, uchar **from)
696{
697 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
698 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
699 *from += 2;
700}
701#else
702static inline void fb_put_word(uchar **fb, uchar **from)
703{
704 *(*fb)++ = *(*from)++;
705 *(*fb)++ = *(*from)++;
706}
707#endif
708#endif /* CONFIG_BMP_16BPP */
709
wdenk8655b6f2004-10-09 23:25:58 +0000710int lcd_display_bitmap(ulong bmp_image, int x, int y)
711{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100712#if !defined(CONFIG_MCC200)
713 ushort *cmap = NULL;
714#endif
715 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000716 ushort i, j;
717 uchar *fb;
718 bmp_image_t *bmp=(bmp_image_t *)bmp_image;
719 uchar *bmap;
720 ushort padded_line;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100721 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200722 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100723 unsigned colors, bpix, bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000724
Nikita Kiryanov1b09b532012-08-19 19:32:30 +0000725 if (!bmp || !((bmp->header.signature[0] == 'B') &&
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000726 (bmp->header.signature[1] == 'M'))) {
727 printf("Error: no valid bmp image at %lx\n", bmp_image);
728
wdenk8655b6f2004-10-09 23:25:58 +0000729 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100730 }
wdenk8655b6f2004-10-09 23:25:58 +0000731
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000732 width = le32_to_cpu(bmp->header.width);
733 height = le32_to_cpu(bmp->header.height);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100734 bmp_bpix = le16_to_cpu(bmp->header.bit_count);
735 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000736
737 bpix = NBITS(panel_info.vl_bpix);
738
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000739 if ((bpix != 1) && (bpix != 8) && (bpix != 16) && (bpix != 32)) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100740 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
741 bpix, bmp_bpix);
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000742
wdenk8655b6f2004-10-09 23:25:58 +0000743 return 1;
744 }
745
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100746 /* We support displaying 8bpp BMPs on 16bpp LCDs */
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000747 if (bpix != bmp_bpix && (bmp_bpix != 8 || bpix != 16 || bpix != 32)) {
wdenk8655b6f2004-10-09 23:25:58 +0000748 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
749 bpix,
750 le16_to_cpu(bmp->header.bit_count));
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000751
wdenk8655b6f2004-10-09 23:25:58 +0000752 return 1;
753 }
754
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000755 debug("Display-bmp: %d x %d with %d colors\n",
wdenk8655b6f2004-10-09 23:25:58 +0000756 (int)width, (int)height, (int)colors);
757
Wolfgang Denkf6414712006-10-20 15:51:21 +0200758#if !defined(CONFIG_MCC200)
759 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100760 if (bmp_bpix == 8) {
Nikita Kiryanov203c37b2012-08-09 00:14:52 +0000761 cmap = configuration_get_cmap();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100762 cmap_base = cmap;
763
wdenk8655b6f2004-10-09 23:25:58 +0000764 /* Set color map */
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000765 for (i = 0; i < colors; ++i) {
wdenk8655b6f2004-10-09 23:25:58 +0000766 bmp_color_table_entry_t cte = bmp->color_table[i];
Mark Jackson1464eff2008-08-01 09:48:29 +0100767#if !defined(CONFIG_ATMEL_LCD)
wdenk8655b6f2004-10-09 23:25:58 +0000768 ushort colreg =
769 ( ((cte.red) << 8) & 0xf800) |
Wolfgang Denk59d80bf2005-09-21 15:24:52 +0200770 ( ((cte.green) << 3) & 0x07e0) |
771 ( ((cte.blue) >> 3) & 0x001f) ;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200772#ifdef CONFIG_SYS_INVERT_COLORS
wdenk25d67122004-12-10 11:40:40 +0000773 *cmap = 0xffff - colreg;
wdenk8655b6f2004-10-09 23:25:58 +0000774#else
wdenk25d67122004-12-10 11:40:40 +0000775 *cmap = colreg;
776#endif
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100777#if defined(CONFIG_MPC823)
wdenk25d67122004-12-10 11:40:40 +0000778 cmap--;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100779#else
780 cmap++;
wdenk8655b6f2004-10-09 23:25:58 +0000781#endif
Mark Jackson1464eff2008-08-01 09:48:29 +0100782#else /* CONFIG_ATMEL_LCD */
783 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
784#endif
wdenk8655b6f2004-10-09 23:25:58 +0000785 }
786 }
Wolfgang Denkf6414712006-10-20 15:51:21 +0200787#endif
wdenk8655b6f2004-10-09 23:25:58 +0000788
Wolfgang Denke8143e72006-08-30 23:09:00 +0200789 /*
790 * BMP format for Monochrome assumes that the state of a
791 * pixel is described on a per Bit basis, not per Byte.
792 * So, in case of Monochrome BMP we should align widths
793 * on a byte boundary and convert them from Bit to Byte
794 * units.
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200795 * Probably, PXA250 and MPC823 process 1bpp BMP images in
796 * their own ways, so make the converting to be MCC200
Wolfgang Denke8143e72006-08-30 23:09:00 +0200797 * specific.
798 */
799#if defined(CONFIG_MCC200)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000800 if (bpix == 1) {
Wolfgang Denke8143e72006-08-30 23:09:00 +0200801 width = ((width + 7) & ~7) >> 3;
802 x = ((x + 7) & ~7) >> 3;
803 pwidth= ((pwidth + 7) & ~7) >> 3;
804 }
805#endif
806
wdenk8655b6f2004-10-09 23:25:58 +0000807 padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200808
809#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov7c7e2802012-08-09 00:14:51 +0000810 splash_align_axis(&x, pwidth, width);
811 splash_align_axis(&y, panel_info.vl_row, height);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200812#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
813
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000814 if ((x + width) > pwidth)
Wolfgang Denke8143e72006-08-30 23:09:00 +0200815 width = pwidth - x;
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000816 if ((y + height) > panel_info.vl_row)
wdenk8655b6f2004-10-09 23:25:58 +0000817 height = panel_info.vl_row - y;
818
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000819 bmap = (uchar *)bmp + le32_to_cpu(bmp->header.data_offset);
wdenk8655b6f2004-10-09 23:25:58 +0000820 fb = (uchar *) (lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800821 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100822
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100823 switch (bmp_bpix) {
Mark Jacksona303dfb2009-02-06 10:37:49 +0100824 case 1: /* pass through */
825 case 8:
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100826 if (bpix != 16)
827 byte_width = width;
828 else
829 byte_width = width * 2;
830
Mark Jacksona303dfb2009-02-06 10:37:49 +0100831 for (i = 0; i < height; ++i) {
832 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100833 for (j = 0; j < width; j++) {
834 if (bpix != 16) {
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000835 FB_PUT_BYTE(fb, bmap);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100836 } else {
837 *(uint16_t *)fb = cmap_base[*(bmap++)];
838 fb += sizeof(uint16_t) / sizeof(*fb);
839 }
840 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100841 bmap += (width - padded_line);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100842 fb -= (byte_width + lcd_line_length);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100843 }
844 break;
845
846#if defined(CONFIG_BMP_16BPP)
847 case 16:
848 for (i = 0; i < height; ++i) {
849 WATCHDOG_RESET();
Nikita Kiryanovbfdcc652012-08-09 00:14:53 +0000850 for (j = 0; j < width; j++)
851 fb_put_word(&fb, &bmap);
852
Mark Jacksona303dfb2009-02-06 10:37:49 +0100853 bmap += (padded_line - width) * 2;
854 fb -= (width * 2 + lcd_line_length);
855 }
856 break;
857#endif /* CONFIG_BMP_16BPP */
858
Donghwa Leefb6a9aa2012-05-09 19:23:37 +0000859#if defined(CONFIG_BMP_32BPP)
860 case 32:
861 for (i = 0; i < height; ++i) {
862 for (j = 0; j < width; j++) {
863 *(fb++) = *(bmap++);
864 *(fb++) = *(bmap++);
865 *(fb++) = *(bmap++);
866 *(fb++) = *(bmap++);
867 }
868 fb -= (lcd_line_length + width * (bpix / 8));
869 }
870 break;
871#endif /* CONFIG_BMP_32BPP */
Mark Jacksona303dfb2009-02-06 10:37:49 +0100872 default:
873 break;
874 };
wdenk8655b6f2004-10-09 23:25:58 +0000875
Simon Glass9a8efc42012-10-30 13:40:18 +0000876 lcd_sync();
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000877 return 0;
wdenk8655b6f2004-10-09 23:25:58 +0000878}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500879#endif
wdenk8655b6f2004-10-09 23:25:58 +0000880
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000881static void *lcd_logo(void)
wdenk8655b6f2004-10-09 23:25:58 +0000882{
wdenk8655b6f2004-10-09 23:25:58 +0000883#ifdef CONFIG_SPLASH_SCREEN
884 char *s;
885 ulong addr;
886 static int do_splash = 1;
887
888 if (do_splash && (s = getenv("splashimage")) != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200889 int x = 0, y = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000890 do_splash = 0;
891
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200892 addr = simple_strtoul (s, NULL, 16);
893#ifdef CONFIG_SPLASH_SCREEN_ALIGN
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000894 s = getenv("splashpos");
895 if (s != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200896 if (s[0] == 'm')
897 x = BMP_ALIGN_CENTER;
898 else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000899 x = simple_strtol(s, NULL, 0);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200900
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000901 s = strchr(s + 1, ',');
902 if (s != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200903 if (s[1] == 'm')
904 y = BMP_ALIGN_CENTER;
905 else
906 y = simple_strtol (s + 1, NULL, 0);
907 }
908 }
909#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
910
Nikita Kiryanovd3a555e2012-08-09 00:14:50 +0000911 if (bmp_display(addr, x, y) == 0)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000912 return (void *)lcd_base;
wdenk8655b6f2004-10-09 23:25:58 +0000913 }
914#endif /* CONFIG_SPLASH_SCREEN */
915
Anatolij Gustschin2b5cb3d2012-04-27 04:41:27 +0000916 bitmap_plot(0, 0);
wdenk8655b6f2004-10-09 23:25:58 +0000917
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200918#ifdef CONFIG_LCD_INFO
919 console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
920 console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
921 lcd_show_board_info();
922#endif /* CONFIG_LCD_INFO */
Stelian Pop39cf4802008-05-09 21:57:18 +0200923
wdenk88804d12005-07-04 00:03:16 +0000924#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000925 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
wdenk8655b6f2004-10-09 23:25:58 +0000926#else
Nikita Kiryanov8f47d912012-05-24 01:42:38 +0000927 return (void *)lcd_base;
wdenk88804d12005-07-04 00:03:16 +0000928#endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
wdenk8655b6f2004-10-09 23:25:58 +0000929}
930
931/************************************************************************/
932/************************************************************************/