blob: 6313ec05bb952dadd7ac6eac2e10e637254734f9 [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 Vasut8c35d0c2009-11-28 13:57:43 +010044#if defined CONFIG_PXA250 || defined CONFIG_PXA27X || defined CONFIG_CPU_MONAHANS
wdenk8655b6f2004-10-09 23:25:58 +000045#include <asm/byteorder.h>
46#endif
47
48#if defined(CONFIG_MPC823)
wdenk8655b6f2004-10-09 23:25:58 +000049#include <lcdvideo.h>
50#endif
51
Stelian Pop39cf4802008-05-09 21:57:18 +020052#if defined(CONFIG_ATMEL_LCD)
53#include <atmel_lcdc.h>
Stelian Pop39cf4802008-05-09 21:57:18 +020054#endif
55
wdenk8655b6f2004-10-09 23:25:58 +000056/************************************************************************/
57/* ** FONT DATA */
58/************************************************************************/
59#include <video_font.h> /* Get font data, width and height */
Che-Liang Chioud3983ee2011-10-21 17:04:21 +080060#include <video_font_data.h>
wdenk8655b6f2004-10-09 23:25:58 +000061
wdenk88804d12005-07-04 00:03:16 +000062/************************************************************************/
63/* ** LOGO DATA */
64/************************************************************************/
65#ifdef CONFIG_LCD_LOGO
66# include <bmp_logo.h> /* Get logo data, width and height */
Che-Liang Chiouc2707302011-10-20 23:04:20 +000067# include <bmp_logo_data.h>
Alessandro Rubiniacb13862010-03-13 17:44:08 +010068# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
wdenk88804d12005-07-04 00:03:16 +000069# error Default Color Map overlaps with Logo Color Map
70# endif
71#endif
wdenk8655b6f2004-10-09 23:25:58 +000072
Wolfgang Denkd87080b2006-03-31 18:32:53 +020073DECLARE_GLOBAL_DATA_PTR;
74
wdenk8655b6f2004-10-09 23:25:58 +000075ulong lcd_setmem (ulong addr);
76
77static void lcd_drawchars (ushort x, ushort y, uchar *str, int count);
78static inline void lcd_puts_xy (ushort x, ushort y, uchar *s);
79static inline void lcd_putc_xy (ushort x, ushort y, uchar c);
80
81static int lcd_init (void *lcdbase);
82
wdenk8655b6f2004-10-09 23:25:58 +000083static void *lcd_logo (void);
84
wdenk8655b6f2004-10-09 23:25:58 +000085static int lcd_getbgcolor (void);
86static void lcd_setfgcolor (int color);
87static void lcd_setbgcolor (int color);
88
89char lcd_is_enabled = 0;
wdenk8655b6f2004-10-09 23:25:58 +000090
91#ifdef NOT_USED_SO_FAR
92static void lcd_getcolreg (ushort regno,
93 ushort *red, ushort *green, ushort *blue);
94static int lcd_getfgcolor (void);
95#endif /* NOT_USED_SO_FAR */
96
97/************************************************************************/
98
99/*----------------------------------------------------------------------*/
100
101static void console_scrollup (void)
102{
wdenk8655b6f2004-10-09 23:25:58 +0000103 /* Copy up rows ignoring the first one */
104 memcpy (CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND, CONSOLE_SCROLL_SIZE);
105
106 /* Clear the last one */
107 memset (CONSOLE_ROW_LAST, COLOR_MASK(lcd_color_bg), CONSOLE_ROW_SIZE);
wdenk8655b6f2004-10-09 23:25:58 +0000108}
109
110/*----------------------------------------------------------------------*/
111
112static inline void console_back (void)
113{
114 if (--console_col < 0) {
115 console_col = CONSOLE_COLS-1 ;
116 if (--console_row < 0) {
117 console_row = 0;
118 }
119 }
120
121 lcd_putc_xy (console_col * VIDEO_FONT_WIDTH,
122 console_row * VIDEO_FONT_HEIGHT,
123 ' ');
124}
125
126/*----------------------------------------------------------------------*/
127
128static inline void console_newline (void)
129{
130 ++console_row;
131 console_col = 0;
132
133 /* Check if we need to scroll the terminal */
134 if (console_row >= CONSOLE_ROWS) {
135 /* Scroll everything up */
136 console_scrollup () ;
137 --console_row;
138 }
139}
140
141/*----------------------------------------------------------------------*/
142
143void lcd_putc (const char c)
144{
145 if (!lcd_is_enabled) {
146 serial_putc(c);
147 return;
148 }
149
150 switch (c) {
151 case '\r': console_col = 0;
152 return;
153
154 case '\n': console_newline();
155 return;
156
157 case '\t': /* Tab (8 chars alignment) */
Derek Ou6bcb4b82009-02-03 16:00:07 -0700158 console_col += 8;
wdenk8655b6f2004-10-09 23:25:58 +0000159 console_col &= ~7;
160
161 if (console_col >= CONSOLE_COLS) {
162 console_newline();
163 }
164 return;
165
166 case '\b': console_back();
167 return;
168
169 default: lcd_putc_xy (console_col * VIDEO_FONT_WIDTH,
170 console_row * VIDEO_FONT_HEIGHT,
171 c);
172 if (++console_col >= CONSOLE_COLS) {
173 console_newline();
174 }
175 return;
176 }
177 /* NOTREACHED */
178}
179
180/*----------------------------------------------------------------------*/
181
182void lcd_puts (const char *s)
183{
184 if (!lcd_is_enabled) {
185 serial_puts (s);
186 return;
187 }
188
189 while (*s) {
190 lcd_putc (*s++);
191 }
192}
193
Haavard Skinnemoen15b17ab2008-09-01 16:21:20 +0200194/*----------------------------------------------------------------------*/
195
196void lcd_printf(const char *fmt, ...)
197{
198 va_list args;
199 char buf[CONFIG_SYS_PBSIZE];
200
201 va_start(args, fmt);
202 vsprintf(buf, fmt, args);
203 va_end(args);
204
205 lcd_puts(buf);
206}
207
wdenk8655b6f2004-10-09 23:25:58 +0000208/************************************************************************/
209/* ** Low-Level Graphics Routines */
210/************************************************************************/
211
212static void lcd_drawchars (ushort x, ushort y, uchar *str, int count)
213{
214 uchar *dest;
Marek Vasutbe547c62011-09-26 02:26:04 +0200215 ushort row;
216
217#if LCD_BPP == LCD_MONOCHROME
218 ushort off = x * (1 << LCD_BPP) % 8;
219#endif
wdenk8655b6f2004-10-09 23:25:58 +0000220
221 dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
wdenk8655b6f2004-10-09 23:25:58 +0000222
223 for (row=0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
224 uchar *s = str;
wdenk8655b6f2004-10-09 23:25:58 +0000225 int i;
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100226#if LCD_BPP == LCD_COLOR16
227 ushort *d = (ushort *)dest;
228#else
229 uchar *d = dest;
230#endif
wdenk8655b6f2004-10-09 23:25:58 +0000231
232#if LCD_BPP == LCD_MONOCHROME
233 uchar rest = *d & -(1 << (8-off));
234 uchar sym;
235#endif
236 for (i=0; i<count; ++i) {
237 uchar c, bits;
238
239 c = *s++;
240 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
241
242#if LCD_BPP == LCD_MONOCHROME
243 sym = (COLOR_MASK(lcd_color_fg) & bits) |
244 (COLOR_MASK(lcd_color_bg) & ~bits);
245
246 *d++ = rest | (sym >> off);
247 rest = sym << (8-off);
248#elif LCD_BPP == LCD_COLOR8
249 for (c=0; c<8; ++c) {
250 *d++ = (bits & 0x80) ?
251 lcd_color_fg : lcd_color_bg;
252 bits <<= 1;
253 }
254#elif LCD_BPP == LCD_COLOR16
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100255 for (c=0; c<8; ++c) {
wdenk8655b6f2004-10-09 23:25:58 +0000256 *d++ = (bits & 0x80) ?
257 lcd_color_fg : lcd_color_bg;
258 bits <<= 1;
259 }
260#endif
261 }
262#if LCD_BPP == LCD_MONOCHROME
263 *d = rest | (*d & ((1 << (8-off)) - 1));
264#endif
265 }
266}
267
268/*----------------------------------------------------------------------*/
269
270static inline void lcd_puts_xy (ushort x, ushort y, uchar *s)
271{
wdenk88804d12005-07-04 00:03:16 +0000272#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200273 lcd_drawchars (x, y+BMP_LOGO_HEIGHT, s, strlen ((char *)s));
wdenk8655b6f2004-10-09 23:25:58 +0000274#else
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200275 lcd_drawchars (x, y, s, strlen ((char *)s));
wdenk8655b6f2004-10-09 23:25:58 +0000276#endif
277}
278
279/*----------------------------------------------------------------------*/
280
281static inline void lcd_putc_xy (ushort x, ushort y, uchar c)
282{
wdenk88804d12005-07-04 00:03:16 +0000283#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
wdenk8655b6f2004-10-09 23:25:58 +0000284 lcd_drawchars (x, y+BMP_LOGO_HEIGHT, &c, 1);
285#else
286 lcd_drawchars (x, y, &c, 1);
287#endif
288}
289
290/************************************************************************/
291/** Small utility to check that you got the colours right */
292/************************************************************************/
293#ifdef LCD_TEST_PATTERN
294
295#define N_BLK_VERT 2
296#define N_BLK_HOR 3
297
298static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
299 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
300 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
301};
302
303static void test_pattern (void)
304{
305 ushort v_max = panel_info.vl_row;
306 ushort h_max = panel_info.vl_col;
307 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
308 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
309 ushort v, h;
310 uchar *pix = (uchar *)lcd_base;
311
312 printf ("[LCD] Test Pattern: %d x %d [%d x %d]\n",
313 h_max, v_max, h_step, v_step);
314
315 /* WARNING: Code silently assumes 8bit/pixel */
316 for (v=0; v<v_max; ++v) {
317 uchar iy = v / v_step;
318 for (h=0; h<h_max; ++h) {
319 uchar ix = N_BLK_HOR * iy + (h/h_step);
320 *pix++ = test_colors[ix];
321 }
322 }
323}
324#endif /* LCD_TEST_PATTERN */
325
326
327/************************************************************************/
328/* ** GENERIC Initialization Routines */
329/************************************************************************/
330
331int drv_lcd_init (void)
332{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200333 struct stdio_dev lcddev;
wdenk8655b6f2004-10-09 23:25:58 +0000334 int rc;
335
336 lcd_base = (void *)(gd->fb_base);
337
338 lcd_line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
339
340 lcd_init (lcd_base); /* LCD initialization */
341
342 /* Device initialization */
343 memset (&lcddev, 0, sizeof (lcddev));
344
345 strcpy (lcddev.name, "lcd");
346 lcddev.ext = 0; /* No extensions */
347 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
348 lcddev.putc = lcd_putc; /* 'putc' function */
349 lcddev.puts = lcd_puts; /* 'puts' function */
350
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200351 rc = stdio_register (&lcddev);
wdenk8655b6f2004-10-09 23:25:58 +0000352
353 return (rc == 0) ? 1 : rc;
354}
355
356/*----------------------------------------------------------------------*/
Che-Liang Chiou02110902011-10-20 23:07:03 +0000357static
358int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
359{
360 lcd_clear();
361 return 0;
362}
363
364void lcd_clear(void)
wdenk8655b6f2004-10-09 23:25:58 +0000365{
366#if LCD_BPP == LCD_MONOCHROME
367 /* Setting the palette */
368 lcd_initcolregs();
369
370#elif LCD_BPP == LCD_COLOR8
371 /* Setting the palette */
372 lcd_setcolreg (CONSOLE_COLOR_BLACK, 0, 0, 0);
373 lcd_setcolreg (CONSOLE_COLOR_RED, 0xFF, 0, 0);
374 lcd_setcolreg (CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
375 lcd_setcolreg (CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
376 lcd_setcolreg (CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
377 lcd_setcolreg (CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
378 lcd_setcolreg (CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
379 lcd_setcolreg (CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
380 lcd_setcolreg (CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
381#endif
382
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200383#ifndef CONFIG_SYS_WHITE_ON_BLACK
wdenk8655b6f2004-10-09 23:25:58 +0000384 lcd_setfgcolor (CONSOLE_COLOR_BLACK);
385 lcd_setbgcolor (CONSOLE_COLOR_WHITE);
386#else
387 lcd_setfgcolor (CONSOLE_COLOR_WHITE);
388 lcd_setbgcolor (CONSOLE_COLOR_BLACK);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200389#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000390
391#ifdef LCD_TEST_PATTERN
392 test_pattern();
393#else
394 /* set framebuffer to background color */
395 memset ((char *)lcd_base,
396 COLOR_MASK(lcd_getbgcolor()),
397 lcd_line_length*panel_info.vl_row);
398#endif
399 /* Paint the logo and retrieve LCD base address */
400 debug ("[LCD] Drawing the logo...\n");
401 lcd_console_address = lcd_logo ();
402
403 console_col = 0;
404 console_row = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000405}
406
407U_BOOT_CMD(
Che-Liang Chiou02110902011-10-20 23:07:03 +0000408 cls, 1, 1, do_lcd_clear,
Peter Tyser2fb26042009-01-27 18:03:12 -0600409 "clear screen",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200410 ""
wdenk8655b6f2004-10-09 23:25:58 +0000411);
412
413/*----------------------------------------------------------------------*/
414
415static int lcd_init (void *lcdbase)
416{
417 /* Initialize the lcd controller */
418 debug ("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
419
420 lcd_ctrl_init (lcdbase);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200421 lcd_is_enabled = 1;
Che-Liang Chiou02110902011-10-20 23:07:03 +0000422 lcd_clear();
wdenk8655b6f2004-10-09 23:25:58 +0000423 lcd_enable ();
424
425 /* Initialize the console */
426 console_col = 0;
wdenk88804d12005-07-04 00:03:16 +0000427#ifdef CONFIG_LCD_INFO_BELOW_LOGO
wdenk8655b6f2004-10-09 23:25:58 +0000428 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
429#else
430 console_row = 1; /* leave 1 blank line below logo */
431#endif
wdenk8655b6f2004-10-09 23:25:58 +0000432
433 return 0;
434}
435
436
437/************************************************************************/
438/* ** ROM capable initialization part - needed to reserve FB memory */
439/************************************************************************/
440/*
441 * This is called early in the system initialization to grab memory
442 * for the LCD controller.
443 * Returns new address for monitor, after reserving LCD buffer memory
444 *
445 * Note that this is running from ROM, so no write access to global data.
446 */
447ulong lcd_setmem (ulong addr)
448{
449 ulong size;
450 int line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
451
452 debug ("LCD panel info: %d x %d, %d bit/pix\n",
453 panel_info.vl_col, panel_info.vl_row, NBITS (panel_info.vl_bpix) );
454
455 size = line_length * panel_info.vl_row;
456
457 /* Round up to nearest full page */
458 size = (size + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
459
460 /* Allocate pages for the frame buffer. */
461 addr -= size;
462
463 debug ("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
464
465 return (addr);
466}
467
468/*----------------------------------------------------------------------*/
469
470static void lcd_setfgcolor (int color)
471{
Stelian Pop39cf4802008-05-09 21:57:18 +0200472 lcd_color_fg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000473}
474
475/*----------------------------------------------------------------------*/
476
477static void lcd_setbgcolor (int color)
478{
Stelian Pop39cf4802008-05-09 21:57:18 +0200479 lcd_color_bg = color;
wdenk8655b6f2004-10-09 23:25:58 +0000480}
481
482/*----------------------------------------------------------------------*/
483
484#ifdef NOT_USED_SO_FAR
485static int lcd_getfgcolor (void)
486{
487 return lcd_color_fg;
488}
489#endif /* NOT_USED_SO_FAR */
490
491/*----------------------------------------------------------------------*/
492
493static int lcd_getbgcolor (void)
494{
495 return lcd_color_bg;
496}
497
498/*----------------------------------------------------------------------*/
499
500/************************************************************************/
501/* ** Chipset depending Bitmap / Logo stuff... */
502/************************************************************************/
503#ifdef CONFIG_LCD_LOGO
504void bitmap_plot (int x, int y)
505{
Stelian Pop39cf4802008-05-09 21:57:18 +0200506#ifdef CONFIG_ATMEL_LCD
507 uint *cmap;
508#else
wdenk8655b6f2004-10-09 23:25:58 +0000509 ushort *cmap;
Stelian Pop39cf4802008-05-09 21:57:18 +0200510#endif
wdenk8655b6f2004-10-09 23:25:58 +0000511 ushort i, j;
512 uchar *bmap;
513 uchar *fb;
514 ushort *fb16;
Marek Vasut8c35d0c2009-11-28 13:57:43 +0100515#if defined CONFIG_PXA250 || defined CONFIG_PXA27X || defined CONFIG_CPU_MONAHANS
wdenk8655b6f2004-10-09 23:25:58 +0000516 struct pxafb_info *fbi = &panel_info.pxa;
517#elif defined(CONFIG_MPC823)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200518 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk8655b6f2004-10-09 23:25:58 +0000519 volatile cpm8xx_t *cp = &(immr->im_cpm);
520#endif
521
522 debug ("Logo: width %d height %d colors %d cmap %d\n",
523 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200524 (int)(sizeof(bmp_logo_palette)/(sizeof(ushort))));
wdenk8655b6f2004-10-09 23:25:58 +0000525
526 bmap = &bmp_logo_bitmap[0];
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200527 fb = (uchar *)(lcd_base + y * lcd_line_length + x);
wdenk8655b6f2004-10-09 23:25:58 +0000528
529 if (NBITS(panel_info.vl_bpix) < 12) {
530 /* Leave room for default color map */
Marek Vasut8c35d0c2009-11-28 13:57:43 +0100531#if defined CONFIG_PXA250 || defined CONFIG_PXA27X || defined CONFIG_CPU_MONAHANS
wdenk8655b6f2004-10-09 23:25:58 +0000532 cmap = (ushort *)fbi->palette;
533#elif defined(CONFIG_MPC823)
534 cmap = (ushort *)&(cp->lcd_cmap[BMP_LOGO_OFFSET*sizeof(ushort)]);
Stelian Pop39cf4802008-05-09 21:57:18 +0200535#elif defined(CONFIG_ATMEL_LCD)
536 cmap = (uint *) (panel_info.mmio + ATMEL_LCDC_LUT(0));
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100537#else
538 /*
539 * default case: generic system with no cmap (most likely 16bpp)
540 * We set cmap to the source palette, so no change is done.
541 * This avoids even more ifdef in the next stanza
542 */
543 cmap = bmp_logo_palette;
wdenk8655b6f2004-10-09 23:25:58 +0000544#endif
545
546 WATCHDOG_RESET();
547
548 /* Set color map */
549 for (i=0; i<(sizeof(bmp_logo_palette)/(sizeof(ushort))); ++i) {
550 ushort colreg = bmp_logo_palette[i];
Stelian Pop39cf4802008-05-09 21:57:18 +0200551#ifdef CONFIG_ATMEL_LCD
552 uint lut_entry;
553#ifdef CONFIG_ATMEL_LCD_BGR555
554 lut_entry = ((colreg & 0x000F) << 11) |
555 ((colreg & 0x00F0) << 2) |
556 ((colreg & 0x0F00) >> 7);
557#else /* CONFIG_ATMEL_LCD_RGB565 */
558 lut_entry = ((colreg & 0x000F) << 1) |
559 ((colreg & 0x00F0) << 3) |
560 ((colreg & 0x0F00) << 4);
561#endif
562 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
563 cmap++;
564#else /* !CONFIG_ATMEL_LCD */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200565#ifdef CONFIG_SYS_INVERT_COLORS
wdenk8655b6f2004-10-09 23:25:58 +0000566 *cmap++ = 0xffff - colreg;
567#else
568 *cmap++ = colreg;
569#endif
Stelian Pop39cf4802008-05-09 21:57:18 +0200570#endif /* CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000571 }
572
573 WATCHDOG_RESET();
574
575 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
576 memcpy (fb, bmap, BMP_LOGO_WIDTH);
577 bmap += BMP_LOGO_WIDTH;
578 fb += panel_info.vl_col;
579 }
580 }
581 else { /* true color mode */
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100582 u16 col16;
wdenk8655b6f2004-10-09 23:25:58 +0000583 fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
584 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
585 for (j=0; j<BMP_LOGO_WIDTH; j++) {
Alessandro Rubiniacb13862010-03-13 17:44:08 +0100586 col16 = bmp_logo_palette[(bmap[j]-16)];
587 fb16[j] =
588 ((col16 & 0x000F) << 1) |
589 ((col16 & 0x00F0) << 3) |
590 ((col16 & 0x0F00) << 4);
wdenk8655b6f2004-10-09 23:25:58 +0000591 }
592 bmap += BMP_LOGO_WIDTH;
593 fb16 += panel_info.vl_col;
594 }
595 }
596
597 WATCHDOG_RESET();
598}
599#endif /* CONFIG_LCD_LOGO */
600
601/*----------------------------------------------------------------------*/
Jon Loeligerc3517f92007-07-08 18:10:08 -0500602#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk8655b6f2004-10-09 23:25:58 +0000603/*
604 * Display the BMP file located at address bmp_image.
605 * Only uncompressed.
606 */
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200607
608#ifdef CONFIG_SPLASH_SCREEN_ALIGN
609#define BMP_ALIGN_CENTER 0x7FFF
610#endif
611
wdenk8655b6f2004-10-09 23:25:58 +0000612int lcd_display_bitmap(ulong bmp_image, int x, int y)
613{
Anatolij Gustschin00cc5592009-02-25 20:28:13 +0100614#if !defined(CONFIG_MCC200)
615 ushort *cmap = NULL;
616#endif
617 ushort *cmap_base = NULL;
wdenk8655b6f2004-10-09 23:25:58 +0000618 ushort i, j;
619 uchar *fb;
620 bmp_image_t *bmp=(bmp_image_t *)bmp_image;
621 uchar *bmap;
622 ushort padded_line;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100623 unsigned long width, height, byte_width;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200624 unsigned long pwidth = panel_info.vl_col;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100625 unsigned colors, bpix, bmp_bpix;
Marek Vasut8c35d0c2009-11-28 13:57:43 +0100626#if defined CONFIG_PXA250 || defined CONFIG_PXA27X || defined CONFIG_CPU_MONAHANS
wdenk8655b6f2004-10-09 23:25:58 +0000627 struct pxafb_info *fbi = &panel_info.pxa;
628#elif defined(CONFIG_MPC823)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200629 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk8655b6f2004-10-09 23:25:58 +0000630 volatile cpm8xx_t *cp = &(immr->im_cpm);
631#endif
632
633 if (!((bmp->header.signature[0]=='B') &&
634 (bmp->header.signature[1]=='M'))) {
635 printf ("Error: no valid bmp image at %lx\n", bmp_image);
636 return 1;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100637 }
wdenk8655b6f2004-10-09 23:25:58 +0000638
639 width = le32_to_cpu (bmp->header.width);
640 height = le32_to_cpu (bmp->header.height);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100641 bmp_bpix = le16_to_cpu(bmp->header.bit_count);
642 colors = 1 << bmp_bpix;
wdenk8655b6f2004-10-09 23:25:58 +0000643
644 bpix = NBITS(panel_info.vl_bpix);
645
Mark Jacksona303dfb2009-02-06 10:37:49 +0100646 if ((bpix != 1) && (bpix != 8) && (bpix != 16)) {
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100647 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
648 bpix, bmp_bpix);
wdenk8655b6f2004-10-09 23:25:58 +0000649 return 1;
650 }
651
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100652 /* We support displaying 8bpp BMPs on 16bpp LCDs */
653 if (bpix != bmp_bpix && (bmp_bpix != 8 || bpix != 16)) {
wdenk8655b6f2004-10-09 23:25:58 +0000654 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
655 bpix,
656 le16_to_cpu(bmp->header.bit_count));
657 return 1;
658 }
659
660 debug ("Display-bmp: %d x %d with %d colors\n",
661 (int)width, (int)height, (int)colors);
662
Wolfgang Denkf6414712006-10-20 15:51:21 +0200663#if !defined(CONFIG_MCC200)
664 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100665 if (bmp_bpix == 8) {
Marek Vasut8c35d0c2009-11-28 13:57:43 +0100666#if defined CONFIG_PXA250 || defined CONFIG_PXA27X || defined CONFIG_CPU_MONAHANS
wdenk8655b6f2004-10-09 23:25:58 +0000667 cmap = (ushort *)fbi->palette;
668#elif defined(CONFIG_MPC823)
669 cmap = (ushort *)&(cp->lcd_cmap[255*sizeof(ushort)]);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100670#elif !defined(CONFIG_ATMEL_LCD)
671 cmap = panel_info.cmap;
wdenk8655b6f2004-10-09 23:25:58 +0000672#endif
673
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100674 cmap_base = cmap;
675
wdenk8655b6f2004-10-09 23:25:58 +0000676 /* Set color map */
677 for (i=0; i<colors; ++i) {
678 bmp_color_table_entry_t cte = bmp->color_table[i];
Mark Jackson1464eff2008-08-01 09:48:29 +0100679#if !defined(CONFIG_ATMEL_LCD)
wdenk8655b6f2004-10-09 23:25:58 +0000680 ushort colreg =
681 ( ((cte.red) << 8) & 0xf800) |
Wolfgang Denk59d80bf2005-09-21 15:24:52 +0200682 ( ((cte.green) << 3) & 0x07e0) |
683 ( ((cte.blue) >> 3) & 0x001f) ;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200684#ifdef CONFIG_SYS_INVERT_COLORS
wdenk25d67122004-12-10 11:40:40 +0000685 *cmap = 0xffff - colreg;
wdenk8655b6f2004-10-09 23:25:58 +0000686#else
wdenk25d67122004-12-10 11:40:40 +0000687 *cmap = colreg;
688#endif
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100689#if defined(CONFIG_MPC823)
wdenk25d67122004-12-10 11:40:40 +0000690 cmap--;
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100691#else
692 cmap++;
wdenk8655b6f2004-10-09 23:25:58 +0000693#endif
Mark Jackson1464eff2008-08-01 09:48:29 +0100694#else /* CONFIG_ATMEL_LCD */
695 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
696#endif
wdenk8655b6f2004-10-09 23:25:58 +0000697 }
698 }
Wolfgang Denkf6414712006-10-20 15:51:21 +0200699#endif
wdenk8655b6f2004-10-09 23:25:58 +0000700
Wolfgang Denke8143e72006-08-30 23:09:00 +0200701 /*
702 * BMP format for Monochrome assumes that the state of a
703 * pixel is described on a per Bit basis, not per Byte.
704 * So, in case of Monochrome BMP we should align widths
705 * on a byte boundary and convert them from Bit to Byte
706 * units.
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200707 * Probably, PXA250 and MPC823 process 1bpp BMP images in
708 * their own ways, so make the converting to be MCC200
Wolfgang Denke8143e72006-08-30 23:09:00 +0200709 * specific.
710 */
711#if defined(CONFIG_MCC200)
712 if (bpix==1)
713 {
714 width = ((width + 7) & ~7) >> 3;
715 x = ((x + 7) & ~7) >> 3;
716 pwidth= ((pwidth + 7) & ~7) >> 3;
717 }
718#endif
719
wdenk8655b6f2004-10-09 23:25:58 +0000720 padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200721
722#ifdef CONFIG_SPLASH_SCREEN_ALIGN
723 if (x == BMP_ALIGN_CENTER)
724 x = max(0, (pwidth - width) / 2);
725 else if (x < 0)
726 x = max(0, pwidth - width + x + 1);
727
728 if (y == BMP_ALIGN_CENTER)
729 y = max(0, (panel_info.vl_row - height) / 2);
730 else if (y < 0)
731 y = max(0, panel_info.vl_row - height + y + 1);
732#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
733
Wolfgang Denke8143e72006-08-30 23:09:00 +0200734 if ((x + width)>pwidth)
735 width = pwidth - x;
wdenk8655b6f2004-10-09 23:25:58 +0000736 if ((y + height)>panel_info.vl_row)
737 height = panel_info.vl_row - y;
738
739 bmap = (uchar *)bmp + le32_to_cpu (bmp->header.data_offset);
740 fb = (uchar *) (lcd_base +
Liu Ying8d46d5b2011-01-11 15:29:58 +0800741 (y + height - 1) * lcd_line_length + x * bpix / 8);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100742
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100743 switch (bmp_bpix) {
Mark Jacksona303dfb2009-02-06 10:37:49 +0100744 case 1: /* pass through */
745 case 8:
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100746 if (bpix != 16)
747 byte_width = width;
748 else
749 byte_width = width * 2;
750
Mark Jacksona303dfb2009-02-06 10:37:49 +0100751 for (i = 0; i < height; ++i) {
752 WATCHDOG_RESET();
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100753 for (j = 0; j < width; j++) {
754 if (bpix != 16) {
Marek Vasut8c35d0c2009-11-28 13:57:43 +0100755#if defined CONFIG_PXA250 || defined CONFIG_PXA27X || defined CONFIG_CPU_MONAHANS || defined(CONFIG_ATMEL_LCD)
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100756 *(fb++) = *(bmap++);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200757#elif defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100758 *(fb++) = 255 - *(bmap++);
wdenk8655b6f2004-10-09 23:25:58 +0000759#endif
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100760 } else {
761 *(uint16_t *)fb = cmap_base[*(bmap++)];
762 fb += sizeof(uint16_t) / sizeof(*fb);
763 }
764 }
Mark Jacksona303dfb2009-02-06 10:37:49 +0100765 bmap += (width - padded_line);
Guennadi Liakhovetskib245e652009-02-06 10:37:53 +0100766 fb -= (byte_width + lcd_line_length);
Mark Jacksona303dfb2009-02-06 10:37:49 +0100767 }
768 break;
769
770#if defined(CONFIG_BMP_16BPP)
771 case 16:
772 for (i = 0; i < height; ++i) {
773 WATCHDOG_RESET();
774 for (j = 0; j < width; j++) {
775#if defined(CONFIG_ATMEL_LCD_BGR555)
776 *(fb++) = ((bmap[0] & 0x1f) << 2) |
777 (bmap[1] & 0x03);
778 *(fb++) = (bmap[0] & 0xe0) |
779 ((bmap[1] & 0x7c) >> 2);
780 bmap += 2;
781#else
782 *(fb++) = *(bmap++);
783 *(fb++) = *(bmap++);
784#endif
785 }
786 bmap += (padded_line - width) * 2;
787 fb -= (width * 2 + lcd_line_length);
788 }
789 break;
790#endif /* CONFIG_BMP_16BPP */
791
792 default:
793 break;
794 };
wdenk8655b6f2004-10-09 23:25:58 +0000795
796 return (0);
797}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500798#endif
wdenk8655b6f2004-10-09 23:25:58 +0000799
wdenk8655b6f2004-10-09 23:25:58 +0000800static void *lcd_logo (void)
801{
wdenk8655b6f2004-10-09 23:25:58 +0000802#ifdef CONFIG_SPLASH_SCREEN
803 char *s;
804 ulong addr;
805 static int do_splash = 1;
806
807 if (do_splash && (s = getenv("splashimage")) != NULL) {
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200808 int x = 0, y = 0;
wdenk8655b6f2004-10-09 23:25:58 +0000809 do_splash = 0;
810
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200811 addr = simple_strtoul (s, NULL, 16);
812#ifdef CONFIG_SPLASH_SCREEN_ALIGN
813 if ((s = getenv ("splashpos")) != NULL) {
814 if (s[0] == 'm')
815 x = BMP_ALIGN_CENTER;
816 else
817 x = simple_strtol (s, NULL, 0);
818
819 if ((s = strchr (s + 1, ',')) != NULL) {
820 if (s[1] == 'm')
821 y = BMP_ALIGN_CENTER;
822 else
823 y = simple_strtol (s + 1, NULL, 0);
824 }
825 }
826#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
827
Mark Jacksona4831152008-07-31 16:09:00 +0100828#ifdef CONFIG_VIDEO_BMP_GZIP
829 bmp_image_t *bmp = (bmp_image_t *)addr;
830 unsigned long len;
831
832 if (!((bmp->header.signature[0]=='B') &&
833 (bmp->header.signature[1]=='M'))) {
834 addr = (ulong)gunzip_bmp(addr, &len);
835 }
836#endif
837
Matthias Weisser1ca298c2009-07-09 16:07:30 +0200838 if (lcd_display_bitmap (addr, x, y) == 0) {
wdenk8655b6f2004-10-09 23:25:58 +0000839 return ((void *)lcd_base);
840 }
841 }
842#endif /* CONFIG_SPLASH_SCREEN */
843
844#ifdef CONFIG_LCD_LOGO
845 bitmap_plot (0, 0);
846#endif /* CONFIG_LCD_LOGO */
847
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200848#ifdef CONFIG_LCD_INFO
849 console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
850 console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
851 lcd_show_board_info();
852#endif /* CONFIG_LCD_INFO */
Stelian Pop39cf4802008-05-09 21:57:18 +0200853
wdenk88804d12005-07-04 00:03:16 +0000854#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
wdenk8655b6f2004-10-09 23:25:58 +0000855 return ((void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length));
856#else
857 return ((void *)lcd_base);
wdenk88804d12005-07-04 00:03:16 +0000858#endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
wdenk8655b6f2004-10-09 23:25:58 +0000859}
860
861/************************************************************************/
862/************************************************************************/