blob: 31bb190ddda14ce37aa20f9f277f7202b1649c28 [file] [log] [blame]
wdenk9ca7bbc2004-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>
35#include <version.h>
36#include <stdarg.h>
37#include <linux/types.h>
38#include <devices.h>
39#if defined(CONFIG_POST)
40#include <post.h>
41#endif
42#include <lcd.h>
wdenkbc3202a2005-04-03 23:11:38 +000043#include <watchdog.h>
wdenk9ca7bbc2004-10-09 23:25:58 +000044
45#if defined(CONFIG_PXA250)
46#include <asm/byteorder.h>
47#endif
48
49#if defined(CONFIG_MPC823)
wdenk9ca7bbc2004-10-09 23:25:58 +000050#include <lcdvideo.h>
51#endif
52
Stelian Popf6f86652008-05-09 21:57:18 +020053#if defined(CONFIG_ATMEL_LCD)
54#include <atmel_lcdc.h>
Stelian Popf6f86652008-05-09 21:57:18 +020055#endif
56
wdenk9ca7bbc2004-10-09 23:25:58 +000057/************************************************************************/
58/* ** FONT DATA */
59/************************************************************************/
60#include <video_font.h> /* Get font data, width and height */
61
wdenk2b9d1862005-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 */
67# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET)
68# error Default Color Map overlaps with Logo Color Map
69# endif
70#endif
wdenk9ca7bbc2004-10-09 23:25:58 +000071
Wolfgang Denk6405a152006-03-31 18:32:53 +020072DECLARE_GLOBAL_DATA_PTR;
73
wdenk9ca7bbc2004-10-09 23:25:58 +000074ulong lcd_setmem (ulong addr);
75
76static void lcd_drawchars (ushort x, ushort y, uchar *str, int count);
77static inline void lcd_puts_xy (ushort x, ushort y, uchar *s);
78static inline void lcd_putc_xy (ushort x, ushort y, uchar c);
79
80static int lcd_init (void *lcdbase);
81
82static int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]);
83extern void lcd_ctrl_init (void *lcdbase);
84extern void lcd_enable (void);
85static void *lcd_logo (void);
86
87
88#if LCD_BPP == LCD_COLOR8
89extern void lcd_setcolreg (ushort regno,
90 ushort red, ushort green, ushort blue);
91#endif
92#if LCD_BPP == LCD_MONOCHROME
93extern void lcd_initcolregs (void);
94#endif
95
96static int lcd_getbgcolor (void);
97static void lcd_setfgcolor (int color);
98static void lcd_setbgcolor (int color);
99
100char lcd_is_enabled = 0;
101extern vidinfo_t panel_info;
102
103#ifdef NOT_USED_SO_FAR
104static void lcd_getcolreg (ushort regno,
105 ushort *red, ushort *green, ushort *blue);
106static int lcd_getfgcolor (void);
107#endif /* NOT_USED_SO_FAR */
108
109/************************************************************************/
110
111/*----------------------------------------------------------------------*/
112
113static void console_scrollup (void)
114{
115#if 1
116 /* Copy up rows ignoring the first one */
117 memcpy (CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND, CONSOLE_SCROLL_SIZE);
118
119 /* Clear the last one */
120 memset (CONSOLE_ROW_LAST, COLOR_MASK(lcd_color_bg), CONSOLE_ROW_SIZE);
121#else
122 /*
123 * Poor attempt to optimize speed by moving "long"s.
124 * But the code is ugly, and not a bit faster :-(
125 */
126 ulong *t = (ulong *)CONSOLE_ROW_FIRST;
127 ulong *s = (ulong *)CONSOLE_ROW_SECOND;
128 ulong l = CONSOLE_SCROLL_SIZE / sizeof(ulong);
129 uchar c = lcd_color_bg & 0xFF;
130 ulong val= (c<<24) | (c<<16) | (c<<8) | c;
131
132 while (l--)
133 *t++ = *s++;
134
135 t = (ulong *)CONSOLE_ROW_LAST;
136 l = CONSOLE_ROW_SIZE / sizeof(ulong);
137
138 while (l-- > 0)
139 *t++ = val;
140#endif
141}
142
143/*----------------------------------------------------------------------*/
144
145static inline void console_back (void)
146{
147 if (--console_col < 0) {
148 console_col = CONSOLE_COLS-1 ;
149 if (--console_row < 0) {
150 console_row = 0;
151 }
152 }
153
154 lcd_putc_xy (console_col * VIDEO_FONT_WIDTH,
155 console_row * VIDEO_FONT_HEIGHT,
156 ' ');
157}
158
159/*----------------------------------------------------------------------*/
160
161static inline void console_newline (void)
162{
163 ++console_row;
164 console_col = 0;
165
166 /* Check if we need to scroll the terminal */
167 if (console_row >= CONSOLE_ROWS) {
168 /* Scroll everything up */
169 console_scrollup () ;
170 --console_row;
171 }
172}
173
174/*----------------------------------------------------------------------*/
175
176void lcd_putc (const char c)
177{
178 if (!lcd_is_enabled) {
179 serial_putc(c);
180 return;
181 }
182
183 switch (c) {
184 case '\r': console_col = 0;
185 return;
186
187 case '\n': console_newline();
188 return;
189
190 case '\t': /* Tab (8 chars alignment) */
191 console_col |= 8;
192 console_col &= ~7;
193
194 if (console_col >= CONSOLE_COLS) {
195 console_newline();
196 }
197 return;
198
199 case '\b': console_back();
200 return;
201
202 default: lcd_putc_xy (console_col * VIDEO_FONT_WIDTH,
203 console_row * VIDEO_FONT_HEIGHT,
204 c);
205 if (++console_col >= CONSOLE_COLS) {
206 console_newline();
207 }
208 return;
209 }
210 /* NOTREACHED */
211}
212
213/*----------------------------------------------------------------------*/
214
215void lcd_puts (const char *s)
216{
217 if (!lcd_is_enabled) {
218 serial_puts (s);
219 return;
220 }
221
222 while (*s) {
223 lcd_putc (*s++);
224 }
225}
226
Haavard Skinnemoen010c7732008-09-01 16:21:20 +0200227/*----------------------------------------------------------------------*/
228
229void lcd_printf(const char *fmt, ...)
230{
231 va_list args;
232 char buf[CONFIG_SYS_PBSIZE];
233
234 va_start(args, fmt);
235 vsprintf(buf, fmt, args);
236 va_end(args);
237
238 lcd_puts(buf);
239}
240
wdenk9ca7bbc2004-10-09 23:25:58 +0000241/************************************************************************/
242/* ** Low-Level Graphics Routines */
243/************************************************************************/
244
245static void lcd_drawchars (ushort x, ushort y, uchar *str, int count)
246{
247 uchar *dest;
248 ushort off, row;
249
250 dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
251 off = x * (1 << LCD_BPP) % 8;
252
253 for (row=0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
254 uchar *s = str;
255 uchar *d = dest;
256 int i;
257
258#if LCD_BPP == LCD_MONOCHROME
259 uchar rest = *d & -(1 << (8-off));
260 uchar sym;
261#endif
262 for (i=0; i<count; ++i) {
263 uchar c, bits;
264
265 c = *s++;
266 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
267
268#if LCD_BPP == LCD_MONOCHROME
269 sym = (COLOR_MASK(lcd_color_fg) & bits) |
270 (COLOR_MASK(lcd_color_bg) & ~bits);
271
272 *d++ = rest | (sym >> off);
273 rest = sym << (8-off);
274#elif LCD_BPP == LCD_COLOR8
275 for (c=0; c<8; ++c) {
276 *d++ = (bits & 0x80) ?
277 lcd_color_fg : lcd_color_bg;
278 bits <<= 1;
279 }
280#elif LCD_BPP == LCD_COLOR16
281 for (c=0; c<16; ++c) {
282 *d++ = (bits & 0x80) ?
283 lcd_color_fg : lcd_color_bg;
284 bits <<= 1;
285 }
286#endif
287 }
288#if LCD_BPP == LCD_MONOCHROME
289 *d = rest | (*d & ((1 << (8-off)) - 1));
290#endif
291 }
292}
293
294/*----------------------------------------------------------------------*/
295
296static inline void lcd_puts_xy (ushort x, ushort y, uchar *s)
297{
wdenk2b9d1862005-07-04 00:03:16 +0000298#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200299 lcd_drawchars (x, y+BMP_LOGO_HEIGHT, s, strlen ((char *)s));
wdenk9ca7bbc2004-10-09 23:25:58 +0000300#else
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200301 lcd_drawchars (x, y, s, strlen ((char *)s));
wdenk9ca7bbc2004-10-09 23:25:58 +0000302#endif
303}
304
305/*----------------------------------------------------------------------*/
306
307static inline void lcd_putc_xy (ushort x, ushort y, uchar c)
308{
wdenk2b9d1862005-07-04 00:03:16 +0000309#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
wdenk9ca7bbc2004-10-09 23:25:58 +0000310 lcd_drawchars (x, y+BMP_LOGO_HEIGHT, &c, 1);
311#else
312 lcd_drawchars (x, y, &c, 1);
313#endif
314}
315
316/************************************************************************/
317/** Small utility to check that you got the colours right */
318/************************************************************************/
319#ifdef LCD_TEST_PATTERN
320
321#define N_BLK_VERT 2
322#define N_BLK_HOR 3
323
324static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
325 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
326 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
327};
328
329static void test_pattern (void)
330{
331 ushort v_max = panel_info.vl_row;
332 ushort h_max = panel_info.vl_col;
333 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
334 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
335 ushort v, h;
336 uchar *pix = (uchar *)lcd_base;
337
338 printf ("[LCD] Test Pattern: %d x %d [%d x %d]\n",
339 h_max, v_max, h_step, v_step);
340
341 /* WARNING: Code silently assumes 8bit/pixel */
342 for (v=0; v<v_max; ++v) {
343 uchar iy = v / v_step;
344 for (h=0; h<h_max; ++h) {
345 uchar ix = N_BLK_HOR * iy + (h/h_step);
346 *pix++ = test_colors[ix];
347 }
348 }
349}
350#endif /* LCD_TEST_PATTERN */
351
352
353/************************************************************************/
354/* ** GENERIC Initialization Routines */
355/************************************************************************/
356
357int drv_lcd_init (void)
358{
wdenk9ca7bbc2004-10-09 23:25:58 +0000359 device_t lcddev;
360 int rc;
361
362 lcd_base = (void *)(gd->fb_base);
363
364 lcd_line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
365
366 lcd_init (lcd_base); /* LCD initialization */
367
368 /* Device initialization */
369 memset (&lcddev, 0, sizeof (lcddev));
370
371 strcpy (lcddev.name, "lcd");
372 lcddev.ext = 0; /* No extensions */
373 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
374 lcddev.putc = lcd_putc; /* 'putc' function */
375 lcddev.puts = lcd_puts; /* 'puts' function */
376
377 rc = device_register (&lcddev);
378
379 return (rc == 0) ? 1 : rc;
380}
381
382/*----------------------------------------------------------------------*/
383static int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
384{
385#if LCD_BPP == LCD_MONOCHROME
386 /* Setting the palette */
387 lcd_initcolregs();
388
389#elif LCD_BPP == LCD_COLOR8
390 /* Setting the palette */
391 lcd_setcolreg (CONSOLE_COLOR_BLACK, 0, 0, 0);
392 lcd_setcolreg (CONSOLE_COLOR_RED, 0xFF, 0, 0);
393 lcd_setcolreg (CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
394 lcd_setcolreg (CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
395 lcd_setcolreg (CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
396 lcd_setcolreg (CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
397 lcd_setcolreg (CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
398 lcd_setcolreg (CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
399 lcd_setcolreg (CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
400#endif
401
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200402#ifndef CONFIG_SYS_WHITE_ON_BLACK
wdenk9ca7bbc2004-10-09 23:25:58 +0000403 lcd_setfgcolor (CONSOLE_COLOR_BLACK);
404 lcd_setbgcolor (CONSOLE_COLOR_WHITE);
405#else
406 lcd_setfgcolor (CONSOLE_COLOR_WHITE);
407 lcd_setbgcolor (CONSOLE_COLOR_BLACK);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200408#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk9ca7bbc2004-10-09 23:25:58 +0000409
410#ifdef LCD_TEST_PATTERN
411 test_pattern();
412#else
413 /* set framebuffer to background color */
414 memset ((char *)lcd_base,
415 COLOR_MASK(lcd_getbgcolor()),
416 lcd_line_length*panel_info.vl_row);
417#endif
418 /* Paint the logo and retrieve LCD base address */
419 debug ("[LCD] Drawing the logo...\n");
420 lcd_console_address = lcd_logo ();
421
422 console_col = 0;
423 console_row = 0;
424
425 return (0);
426}
427
428U_BOOT_CMD(
429 cls, 1, 1, lcd_clear,
430 "cls - clear screen\n",
431 NULL
432);
433
434/*----------------------------------------------------------------------*/
435
436static int lcd_init (void *lcdbase)
437{
438 /* Initialize the lcd controller */
439 debug ("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
440
441 lcd_ctrl_init (lcdbase);
Haavard Skinnemoen7eb8b232008-09-01 16:21:21 +0200442 lcd_is_enabled = 1;
wdenk9ca7bbc2004-10-09 23:25:58 +0000443 lcd_clear (NULL, 1, 1, NULL); /* dummy args */
444 lcd_enable ();
445
446 /* Initialize the console */
447 console_col = 0;
wdenk2b9d1862005-07-04 00:03:16 +0000448#ifdef CONFIG_LCD_INFO_BELOW_LOGO
wdenk9ca7bbc2004-10-09 23:25:58 +0000449 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
450#else
451 console_row = 1; /* leave 1 blank line below logo */
452#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000453
454 return 0;
455}
456
457
458/************************************************************************/
459/* ** ROM capable initialization part - needed to reserve FB memory */
460/************************************************************************/
461/*
462 * This is called early in the system initialization to grab memory
463 * for the LCD controller.
464 * Returns new address for monitor, after reserving LCD buffer memory
465 *
466 * Note that this is running from ROM, so no write access to global data.
467 */
468ulong lcd_setmem (ulong addr)
469{
470 ulong size;
471 int line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
472
473 debug ("LCD panel info: %d x %d, %d bit/pix\n",
474 panel_info.vl_col, panel_info.vl_row, NBITS (panel_info.vl_bpix) );
475
476 size = line_length * panel_info.vl_row;
477
478 /* Round up to nearest full page */
479 size = (size + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
480
481 /* Allocate pages for the frame buffer. */
482 addr -= size;
483
484 debug ("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
485
486 return (addr);
487}
488
489/*----------------------------------------------------------------------*/
490
491static void lcd_setfgcolor (int color)
492{
Stelian Popf6f86652008-05-09 21:57:18 +0200493#ifdef CONFIG_ATMEL_LCD
494 lcd_color_fg = color;
495#else
wdenk9ca7bbc2004-10-09 23:25:58 +0000496 lcd_color_fg = color & 0x0F;
Stelian Popf6f86652008-05-09 21:57:18 +0200497#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000498}
499
500/*----------------------------------------------------------------------*/
501
502static void lcd_setbgcolor (int color)
503{
Stelian Popf6f86652008-05-09 21:57:18 +0200504#ifdef CONFIG_ATMEL_LCD
505 lcd_color_bg = color;
506#else
wdenk9ca7bbc2004-10-09 23:25:58 +0000507 lcd_color_bg = color & 0x0F;
Stelian Popf6f86652008-05-09 21:57:18 +0200508#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000509}
510
511/*----------------------------------------------------------------------*/
512
513#ifdef NOT_USED_SO_FAR
514static int lcd_getfgcolor (void)
515{
516 return lcd_color_fg;
517}
518#endif /* NOT_USED_SO_FAR */
519
520/*----------------------------------------------------------------------*/
521
522static int lcd_getbgcolor (void)
523{
524 return lcd_color_bg;
525}
526
527/*----------------------------------------------------------------------*/
528
529/************************************************************************/
530/* ** Chipset depending Bitmap / Logo stuff... */
531/************************************************************************/
532#ifdef CONFIG_LCD_LOGO
533void bitmap_plot (int x, int y)
534{
Stelian Popf6f86652008-05-09 21:57:18 +0200535#ifdef CONFIG_ATMEL_LCD
536 uint *cmap;
537#else
wdenk9ca7bbc2004-10-09 23:25:58 +0000538 ushort *cmap;
Stelian Popf6f86652008-05-09 21:57:18 +0200539#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000540 ushort i, j;
541 uchar *bmap;
542 uchar *fb;
543 ushort *fb16;
544#if defined(CONFIG_PXA250)
545 struct pxafb_info *fbi = &panel_info.pxa;
546#elif defined(CONFIG_MPC823)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200547 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk9ca7bbc2004-10-09 23:25:58 +0000548 volatile cpm8xx_t *cp = &(immr->im_cpm);
549#endif
550
551 debug ("Logo: width %d height %d colors %d cmap %d\n",
552 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
Wolfgang Denk509cd072008-07-14 15:06:35 +0200553 (int)(sizeof(bmp_logo_palette)/(sizeof(ushort))));
wdenk9ca7bbc2004-10-09 23:25:58 +0000554
555 bmap = &bmp_logo_bitmap[0];
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200556 fb = (uchar *)(lcd_base + y * lcd_line_length + x);
wdenk9ca7bbc2004-10-09 23:25:58 +0000557
558 if (NBITS(panel_info.vl_bpix) < 12) {
559 /* Leave room for default color map */
560#if defined(CONFIG_PXA250)
561 cmap = (ushort *)fbi->palette;
562#elif defined(CONFIG_MPC823)
563 cmap = (ushort *)&(cp->lcd_cmap[BMP_LOGO_OFFSET*sizeof(ushort)]);
Stelian Popf6f86652008-05-09 21:57:18 +0200564#elif defined(CONFIG_ATMEL_LCD)
565 cmap = (uint *) (panel_info.mmio + ATMEL_LCDC_LUT(0));
wdenk9ca7bbc2004-10-09 23:25:58 +0000566#endif
567
568 WATCHDOG_RESET();
569
570 /* Set color map */
571 for (i=0; i<(sizeof(bmp_logo_palette)/(sizeof(ushort))); ++i) {
572 ushort colreg = bmp_logo_palette[i];
Stelian Popf6f86652008-05-09 21:57:18 +0200573#ifdef CONFIG_ATMEL_LCD
574 uint lut_entry;
575#ifdef CONFIG_ATMEL_LCD_BGR555
576 lut_entry = ((colreg & 0x000F) << 11) |
577 ((colreg & 0x00F0) << 2) |
578 ((colreg & 0x0F00) >> 7);
579#else /* CONFIG_ATMEL_LCD_RGB565 */
580 lut_entry = ((colreg & 0x000F) << 1) |
581 ((colreg & 0x00F0) << 3) |
582 ((colreg & 0x0F00) << 4);
583#endif
584 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
585 cmap++;
586#else /* !CONFIG_ATMEL_LCD */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200587#ifdef CONFIG_SYS_INVERT_COLORS
wdenk9ca7bbc2004-10-09 23:25:58 +0000588 *cmap++ = 0xffff - colreg;
589#else
590 *cmap++ = colreg;
591#endif
Stelian Popf6f86652008-05-09 21:57:18 +0200592#endif /* CONFIG_ATMEL_LCD */
wdenk9ca7bbc2004-10-09 23:25:58 +0000593 }
594
595 WATCHDOG_RESET();
596
597 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
598 memcpy (fb, bmap, BMP_LOGO_WIDTH);
599 bmap += BMP_LOGO_WIDTH;
600 fb += panel_info.vl_col;
601 }
602 }
603 else { /* true color mode */
604 fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
605 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
606 for (j=0; j<BMP_LOGO_WIDTH; j++) {
607 fb16[j] = bmp_logo_palette[(bmap[j])];
608 }
609 bmap += BMP_LOGO_WIDTH;
610 fb16 += panel_info.vl_col;
611 }
612 }
613
614 WATCHDOG_RESET();
615}
616#endif /* CONFIG_LCD_LOGO */
617
618/*----------------------------------------------------------------------*/
Jon Loeliger052fc842007-07-08 18:10:08 -0500619#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk9ca7bbc2004-10-09 23:25:58 +0000620/*
621 * Display the BMP file located at address bmp_image.
622 * Only uncompressed.
623 */
624int lcd_display_bitmap(ulong bmp_image, int x, int y)
625{
Stelian Popf6f86652008-05-09 21:57:18 +0200626#ifdef CONFIG_ATMEL_LCD
627 uint *cmap;
628#elif !defined(CONFIG_MCC200)
wdenk9ca7bbc2004-10-09 23:25:58 +0000629 ushort *cmap;
Wolfgang Denk6d89f0c2006-10-20 15:51:21 +0200630#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000631 ushort i, j;
632 uchar *fb;
633 bmp_image_t *bmp=(bmp_image_t *)bmp_image;
634 uchar *bmap;
635 ushort padded_line;
636 unsigned long width, height;
Wolfgang Denkd4321d32006-08-30 23:09:00 +0200637 unsigned long pwidth = panel_info.vl_col;
wdenk9ca7bbc2004-10-09 23:25:58 +0000638 unsigned colors,bpix;
639 unsigned long compression;
640#if defined(CONFIG_PXA250)
641 struct pxafb_info *fbi = &panel_info.pxa;
642#elif defined(CONFIG_MPC823)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200643 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk9ca7bbc2004-10-09 23:25:58 +0000644 volatile cpm8xx_t *cp = &(immr->im_cpm);
645#endif
646
647 if (!((bmp->header.signature[0]=='B') &&
648 (bmp->header.signature[1]=='M'))) {
649 printf ("Error: no valid bmp image at %lx\n", bmp_image);
650 return 1;
651}
652
653 width = le32_to_cpu (bmp->header.width);
654 height = le32_to_cpu (bmp->header.height);
655 colors = 1<<le16_to_cpu (bmp->header.bit_count);
656 compression = le32_to_cpu (bmp->header.compression);
657
658 bpix = NBITS(panel_info.vl_bpix);
659
660 if ((bpix != 1) && (bpix != 8)) {
661 printf ("Error: %d bit/pixel mode not supported by U-Boot\n",
662 bpix);
663 return 1;
664 }
665
666 if (bpix != le16_to_cpu(bmp->header.bit_count)) {
667 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
668 bpix,
669 le16_to_cpu(bmp->header.bit_count));
670 return 1;
671 }
672
673 debug ("Display-bmp: %d x %d with %d colors\n",
674 (int)width, (int)height, (int)colors);
675
Wolfgang Denk6d89f0c2006-10-20 15:51:21 +0200676#if !defined(CONFIG_MCC200)
677 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
wdenk9ca7bbc2004-10-09 23:25:58 +0000678 if (bpix==8) {
679#if defined(CONFIG_PXA250)
680 cmap = (ushort *)fbi->palette;
681#elif defined(CONFIG_MPC823)
682 cmap = (ushort *)&(cp->lcd_cmap[255*sizeof(ushort)]);
Stelian Popf6f86652008-05-09 21:57:18 +0200683#elif defined(CONFIG_ATMEL_LCD)
684 cmap = (uint *) (panel_info.mmio + ATMEL_LCDC_LUT(0));
wdenkb3a4a702004-12-10 11:40:40 +0000685#else
686# error "Don't know location of color map"
wdenk9ca7bbc2004-10-09 23:25:58 +0000687#endif
688
689 /* Set color map */
690 for (i=0; i<colors; ++i) {
691 bmp_color_table_entry_t cte = bmp->color_table[i];
Mark Jackson8886b532008-08-01 09:48:29 +0100692#if !defined(CONFIG_ATMEL_LCD)
wdenk9ca7bbc2004-10-09 23:25:58 +0000693 ushort colreg =
694 ( ((cte.red) << 8) & 0xf800) |
Wolfgang Denkc4df5a42005-09-21 15:24:52 +0200695 ( ((cte.green) << 3) & 0x07e0) |
696 ( ((cte.blue) >> 3) & 0x001f) ;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200697#ifdef CONFIG_SYS_INVERT_COLORS
wdenkb3a4a702004-12-10 11:40:40 +0000698 *cmap = 0xffff - colreg;
wdenk9ca7bbc2004-10-09 23:25:58 +0000699#else
wdenkb3a4a702004-12-10 11:40:40 +0000700 *cmap = colreg;
701#endif
702#if defined(CONFIG_PXA250)
703 cmap++;
704#elif defined(CONFIG_MPC823)
705 cmap--;
wdenk9ca7bbc2004-10-09 23:25:58 +0000706#endif
Mark Jackson8886b532008-08-01 09:48:29 +0100707#else /* CONFIG_ATMEL_LCD */
708 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
709#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000710 }
711 }
Wolfgang Denk6d89f0c2006-10-20 15:51:21 +0200712#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000713
Wolfgang Denkd4321d32006-08-30 23:09:00 +0200714 /*
715 * BMP format for Monochrome assumes that the state of a
716 * pixel is described on a per Bit basis, not per Byte.
717 * So, in case of Monochrome BMP we should align widths
718 * on a byte boundary and convert them from Bit to Byte
719 * units.
Wolfgang Denk4df0da52006-10-09 00:42:01 +0200720 * Probably, PXA250 and MPC823 process 1bpp BMP images in
721 * their own ways, so make the converting to be MCC200
Wolfgang Denkd4321d32006-08-30 23:09:00 +0200722 * specific.
723 */
724#if defined(CONFIG_MCC200)
725 if (bpix==1)
726 {
727 width = ((width + 7) & ~7) >> 3;
728 x = ((x + 7) & ~7) >> 3;
729 pwidth= ((pwidth + 7) & ~7) >> 3;
730 }
731#endif
732
wdenk9ca7bbc2004-10-09 23:25:58 +0000733 padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
Wolfgang Denkd4321d32006-08-30 23:09:00 +0200734 if ((x + width)>pwidth)
735 width = pwidth - x;
wdenk9ca7bbc2004-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 +
741 (y + height - 1) * lcd_line_length + x);
742 for (i = 0; i < height; ++i) {
wdenk5ceea262005-06-05 20:30:43 +0000743 WATCHDOG_RESET();
wdenk9ca7bbc2004-10-09 23:25:58 +0000744 for (j = 0; j < width ; j++)
Mark Jackson8886b532008-08-01 09:48:29 +0100745#if defined(CONFIG_PXA250) || defined(CONFIG_ATMEL_LCD)
Wolfgang Denkdc770c72008-07-14 15:19:07 +0200746 *(fb++) = *(bmap++);
Wolfgang Denkd4321d32006-08-30 23:09:00 +0200747#elif defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
wdenk9ca7bbc2004-10-09 23:25:58 +0000748 *(fb++)=255-*(bmap++);
749#endif
750 bmap += (width - padded_line);
751 fb -= (width + lcd_line_length);
752 }
753
754 return (0);
755}
Jon Loeliger052fc842007-07-08 18:10:08 -0500756#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000757
Mark Jackson45bc5ea2008-07-31 16:09:00 +0100758#ifdef CONFIG_VIDEO_BMP_GZIP
759extern bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp);
760#endif
wdenk9ca7bbc2004-10-09 23:25:58 +0000761
762static void *lcd_logo (void)
763{
wdenk9ca7bbc2004-10-09 23:25:58 +0000764#ifdef CONFIG_SPLASH_SCREEN
765 char *s;
766 ulong addr;
767 static int do_splash = 1;
768
769 if (do_splash && (s = getenv("splashimage")) != NULL) {
770 addr = simple_strtoul(s, NULL, 16);
771 do_splash = 0;
772
Mark Jackson45bc5ea2008-07-31 16:09:00 +0100773#ifdef CONFIG_VIDEO_BMP_GZIP
774 bmp_image_t *bmp = (bmp_image_t *)addr;
775 unsigned long len;
776
777 if (!((bmp->header.signature[0]=='B') &&
778 (bmp->header.signature[1]=='M'))) {
779 addr = (ulong)gunzip_bmp(addr, &len);
780 }
781#endif
782
wdenk9ca7bbc2004-10-09 23:25:58 +0000783 if (lcd_display_bitmap (addr, 0, 0) == 0) {
784 return ((void *)lcd_base);
785 }
786 }
787#endif /* CONFIG_SPLASH_SCREEN */
788
789#ifdef CONFIG_LCD_LOGO
790 bitmap_plot (0, 0);
791#endif /* CONFIG_LCD_LOGO */
792
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200793#ifdef CONFIG_LCD_INFO
794 console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
795 console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
796 lcd_show_board_info();
797#endif /* CONFIG_LCD_INFO */
Stelian Popf6f86652008-05-09 21:57:18 +0200798
wdenk2b9d1862005-07-04 00:03:16 +0000799#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
wdenk9ca7bbc2004-10-09 23:25:58 +0000800 return ((void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length));
801#else
802 return ((void *)lcd_base);
wdenk2b9d1862005-07-04 00:03:16 +0000803#endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
wdenk9ca7bbc2004-10-09 23:25:58 +0000804}
805
806/************************************************************************/
807/************************************************************************/