blob: 813c8d827d6c6778b8654f075bbf58581a018002 [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>
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>
wdenk8b0bfc62005-04-03 23:11:38 +000043#include <watchdog.h>
wdenk8655b6f2004-10-09 23:25:58 +000044
45#if defined(CONFIG_PXA250)
46#include <asm/byteorder.h>
47#endif
48
49#if defined(CONFIG_MPC823)
wdenk8655b6f2004-10-09 23:25:58 +000050#include <lcdvideo.h>
51#endif
52
Stelian Pop39cf4802008-05-09 21:57:18 +020053#if defined(CONFIG_ATMEL_LCD)
54#include <atmel_lcdc.h>
55#include <nand.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 */
62
wdenk88804d12005-07-04 00:03:16 +000063/************************************************************************/
64/* ** LOGO DATA */
65/************************************************************************/
66#ifdef CONFIG_LCD_LOGO
67# include <bmp_logo.h> /* Get logo data, width and height */
68# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET)
69# 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
83static int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]);
84extern void lcd_ctrl_init (void *lcdbase);
85extern void lcd_enable (void);
86static void *lcd_logo (void);
87
88
89#if LCD_BPP == LCD_COLOR8
90extern void lcd_setcolreg (ushort regno,
91 ushort red, ushort green, ushort blue);
92#endif
93#if LCD_BPP == LCD_MONOCHROME
94extern void lcd_initcolregs (void);
95#endif
96
97static int lcd_getbgcolor (void);
98static void lcd_setfgcolor (int color);
99static void lcd_setbgcolor (int color);
100
101char lcd_is_enabled = 0;
102extern vidinfo_t panel_info;
103
104#ifdef NOT_USED_SO_FAR
105static void lcd_getcolreg (ushort regno,
106 ushort *red, ushort *green, ushort *blue);
107static int lcd_getfgcolor (void);
108#endif /* NOT_USED_SO_FAR */
109
110/************************************************************************/
111
112/*----------------------------------------------------------------------*/
113
114static void console_scrollup (void)
115{
116#if 1
117 /* Copy up rows ignoring the first one */
118 memcpy (CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND, CONSOLE_SCROLL_SIZE);
119
120 /* Clear the last one */
121 memset (CONSOLE_ROW_LAST, COLOR_MASK(lcd_color_bg), CONSOLE_ROW_SIZE);
122#else
123 /*
124 * Poor attempt to optimize speed by moving "long"s.
125 * But the code is ugly, and not a bit faster :-(
126 */
127 ulong *t = (ulong *)CONSOLE_ROW_FIRST;
128 ulong *s = (ulong *)CONSOLE_ROW_SECOND;
129 ulong l = CONSOLE_SCROLL_SIZE / sizeof(ulong);
130 uchar c = lcd_color_bg & 0xFF;
131 ulong val= (c<<24) | (c<<16) | (c<<8) | c;
132
133 while (l--)
134 *t++ = *s++;
135
136 t = (ulong *)CONSOLE_ROW_LAST;
137 l = CONSOLE_ROW_SIZE / sizeof(ulong);
138
139 while (l-- > 0)
140 *t++ = val;
141#endif
142}
143
144/*----------------------------------------------------------------------*/
145
146static inline void console_back (void)
147{
148 if (--console_col < 0) {
149 console_col = CONSOLE_COLS-1 ;
150 if (--console_row < 0) {
151 console_row = 0;
152 }
153 }
154
155 lcd_putc_xy (console_col * VIDEO_FONT_WIDTH,
156 console_row * VIDEO_FONT_HEIGHT,
157 ' ');
158}
159
160/*----------------------------------------------------------------------*/
161
162static inline void console_newline (void)
163{
164 ++console_row;
165 console_col = 0;
166
167 /* Check if we need to scroll the terminal */
168 if (console_row >= CONSOLE_ROWS) {
169 /* Scroll everything up */
170 console_scrollup () ;
171 --console_row;
172 }
173}
174
175/*----------------------------------------------------------------------*/
176
177void lcd_putc (const char c)
178{
179 if (!lcd_is_enabled) {
180 serial_putc(c);
181 return;
182 }
183
184 switch (c) {
185 case '\r': console_col = 0;
186 return;
187
188 case '\n': console_newline();
189 return;
190
191 case '\t': /* Tab (8 chars alignment) */
192 console_col |= 8;
193 console_col &= ~7;
194
195 if (console_col >= CONSOLE_COLS) {
196 console_newline();
197 }
198 return;
199
200 case '\b': console_back();
201 return;
202
203 default: lcd_putc_xy (console_col * VIDEO_FONT_WIDTH,
204 console_row * VIDEO_FONT_HEIGHT,
205 c);
206 if (++console_col >= CONSOLE_COLS) {
207 console_newline();
208 }
209 return;
210 }
211 /* NOTREACHED */
212}
213
214/*----------------------------------------------------------------------*/
215
216void lcd_puts (const char *s)
217{
218 if (!lcd_is_enabled) {
219 serial_puts (s);
220 return;
221 }
222
223 while (*s) {
224 lcd_putc (*s++);
225 }
226}
227
Haavard Skinnemoen15b17ab2008-09-01 16:21:20 +0200228/*----------------------------------------------------------------------*/
229
230void lcd_printf(const char *fmt, ...)
231{
232 va_list args;
233 char buf[CONFIG_SYS_PBSIZE];
234
235 va_start(args, fmt);
236 vsprintf(buf, fmt, args);
237 va_end(args);
238
239 lcd_puts(buf);
240}
241
wdenk8655b6f2004-10-09 23:25:58 +0000242/************************************************************************/
243/* ** Low-Level Graphics Routines */
244/************************************************************************/
245
246static void lcd_drawchars (ushort x, ushort y, uchar *str, int count)
247{
248 uchar *dest;
249 ushort off, row;
250
251 dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
252 off = x * (1 << LCD_BPP) % 8;
253
254 for (row=0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
255 uchar *s = str;
256 uchar *d = dest;
257 int i;
258
259#if LCD_BPP == LCD_MONOCHROME
260 uchar rest = *d & -(1 << (8-off));
261 uchar sym;
262#endif
263 for (i=0; i<count; ++i) {
264 uchar c, bits;
265
266 c = *s++;
267 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
268
269#if LCD_BPP == LCD_MONOCHROME
270 sym = (COLOR_MASK(lcd_color_fg) & bits) |
271 (COLOR_MASK(lcd_color_bg) & ~bits);
272
273 *d++ = rest | (sym >> off);
274 rest = sym << (8-off);
275#elif LCD_BPP == LCD_COLOR8
276 for (c=0; c<8; ++c) {
277 *d++ = (bits & 0x80) ?
278 lcd_color_fg : lcd_color_bg;
279 bits <<= 1;
280 }
281#elif LCD_BPP == LCD_COLOR16
282 for (c=0; c<16; ++c) {
283 *d++ = (bits & 0x80) ?
284 lcd_color_fg : lcd_color_bg;
285 bits <<= 1;
286 }
287#endif
288 }
289#if LCD_BPP == LCD_MONOCHROME
290 *d = rest | (*d & ((1 << (8-off)) - 1));
291#endif
292 }
293}
294
295/*----------------------------------------------------------------------*/
296
297static inline void lcd_puts_xy (ushort x, ushort y, uchar *s)
298{
wdenk88804d12005-07-04 00:03:16 +0000299#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200300 lcd_drawchars (x, y+BMP_LOGO_HEIGHT, s, strlen ((char *)s));
wdenk8655b6f2004-10-09 23:25:58 +0000301#else
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200302 lcd_drawchars (x, y, s, strlen ((char *)s));
wdenk8655b6f2004-10-09 23:25:58 +0000303#endif
304}
305
306/*----------------------------------------------------------------------*/
307
308static inline void lcd_putc_xy (ushort x, ushort y, uchar c)
309{
wdenk88804d12005-07-04 00:03:16 +0000310#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
wdenk8655b6f2004-10-09 23:25:58 +0000311 lcd_drawchars (x, y+BMP_LOGO_HEIGHT, &c, 1);
312#else
313 lcd_drawchars (x, y, &c, 1);
314#endif
315}
316
317/************************************************************************/
318/** Small utility to check that you got the colours right */
319/************************************************************************/
320#ifdef LCD_TEST_PATTERN
321
322#define N_BLK_VERT 2
323#define N_BLK_HOR 3
324
325static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
326 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
327 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
328};
329
330static void test_pattern (void)
331{
332 ushort v_max = panel_info.vl_row;
333 ushort h_max = panel_info.vl_col;
334 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
335 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
336 ushort v, h;
337 uchar *pix = (uchar *)lcd_base;
338
339 printf ("[LCD] Test Pattern: %d x %d [%d x %d]\n",
340 h_max, v_max, h_step, v_step);
341
342 /* WARNING: Code silently assumes 8bit/pixel */
343 for (v=0; v<v_max; ++v) {
344 uchar iy = v / v_step;
345 for (h=0; h<h_max; ++h) {
346 uchar ix = N_BLK_HOR * iy + (h/h_step);
347 *pix++ = test_colors[ix];
348 }
349 }
350}
351#endif /* LCD_TEST_PATTERN */
352
353
354/************************************************************************/
355/* ** GENERIC Initialization Routines */
356/************************************************************************/
357
358int drv_lcd_init (void)
359{
wdenk8655b6f2004-10-09 23:25:58 +0000360 device_t lcddev;
361 int rc;
362
363 lcd_base = (void *)(gd->fb_base);
364
365 lcd_line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
366
367 lcd_init (lcd_base); /* LCD initialization */
368
369 /* Device initialization */
370 memset (&lcddev, 0, sizeof (lcddev));
371
372 strcpy (lcddev.name, "lcd");
373 lcddev.ext = 0; /* No extensions */
374 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
375 lcddev.putc = lcd_putc; /* 'putc' function */
376 lcddev.puts = lcd_puts; /* 'puts' function */
377
378 rc = device_register (&lcddev);
379
380 return (rc == 0) ? 1 : rc;
381}
382
383/*----------------------------------------------------------------------*/
384static int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
385{
386#if LCD_BPP == LCD_MONOCHROME
387 /* Setting the palette */
388 lcd_initcolregs();
389
390#elif LCD_BPP == LCD_COLOR8
391 /* Setting the palette */
392 lcd_setcolreg (CONSOLE_COLOR_BLACK, 0, 0, 0);
393 lcd_setcolreg (CONSOLE_COLOR_RED, 0xFF, 0, 0);
394 lcd_setcolreg (CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
395 lcd_setcolreg (CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
396 lcd_setcolreg (CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
397 lcd_setcolreg (CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
398 lcd_setcolreg (CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
399 lcd_setcolreg (CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
400 lcd_setcolreg (CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
401#endif
402
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200403#ifndef CONFIG_SYS_WHITE_ON_BLACK
wdenk8655b6f2004-10-09 23:25:58 +0000404 lcd_setfgcolor (CONSOLE_COLOR_BLACK);
405 lcd_setbgcolor (CONSOLE_COLOR_WHITE);
406#else
407 lcd_setfgcolor (CONSOLE_COLOR_WHITE);
408 lcd_setbgcolor (CONSOLE_COLOR_BLACK);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200409#endif /* CONFIG_SYS_WHITE_ON_BLACK */
wdenk8655b6f2004-10-09 23:25:58 +0000410
411#ifdef LCD_TEST_PATTERN
412 test_pattern();
413#else
414 /* set framebuffer to background color */
415 memset ((char *)lcd_base,
416 COLOR_MASK(lcd_getbgcolor()),
417 lcd_line_length*panel_info.vl_row);
418#endif
419 /* Paint the logo and retrieve LCD base address */
420 debug ("[LCD] Drawing the logo...\n");
421 lcd_console_address = lcd_logo ();
422
423 console_col = 0;
424 console_row = 0;
425
426 return (0);
427}
428
429U_BOOT_CMD(
430 cls, 1, 1, lcd_clear,
431 "cls - clear screen\n",
432 NULL
433);
434
435/*----------------------------------------------------------------------*/
436
437static int lcd_init (void *lcdbase)
438{
439 /* Initialize the lcd controller */
440 debug ("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
441
442 lcd_ctrl_init (lcdbase);
Haavard Skinnemoen6f93d2b2008-09-01 16:21:21 +0200443 lcd_is_enabled = 1;
wdenk8655b6f2004-10-09 23:25:58 +0000444 lcd_clear (NULL, 1, 1, NULL); /* dummy args */
445 lcd_enable ();
446
447 /* Initialize the console */
448 console_col = 0;
wdenk88804d12005-07-04 00:03:16 +0000449#ifdef CONFIG_LCD_INFO_BELOW_LOGO
wdenk8655b6f2004-10-09 23:25:58 +0000450 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
451#else
452 console_row = 1; /* leave 1 blank line below logo */
453#endif
wdenk8655b6f2004-10-09 23:25:58 +0000454
455 return 0;
456}
457
458
459/************************************************************************/
460/* ** ROM capable initialization part - needed to reserve FB memory */
461/************************************************************************/
462/*
463 * This is called early in the system initialization to grab memory
464 * for the LCD controller.
465 * Returns new address for monitor, after reserving LCD buffer memory
466 *
467 * Note that this is running from ROM, so no write access to global data.
468 */
469ulong lcd_setmem (ulong addr)
470{
471 ulong size;
472 int line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
473
474 debug ("LCD panel info: %d x %d, %d bit/pix\n",
475 panel_info.vl_col, panel_info.vl_row, NBITS (panel_info.vl_bpix) );
476
477 size = line_length * panel_info.vl_row;
478
479 /* Round up to nearest full page */
480 size = (size + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
481
482 /* Allocate pages for the frame buffer. */
483 addr -= size;
484
485 debug ("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
486
487 return (addr);
488}
489
490/*----------------------------------------------------------------------*/
491
492static void lcd_setfgcolor (int color)
493{
Stelian Pop39cf4802008-05-09 21:57:18 +0200494#ifdef CONFIG_ATMEL_LCD
495 lcd_color_fg = color;
496#else
wdenk8655b6f2004-10-09 23:25:58 +0000497 lcd_color_fg = color & 0x0F;
Stelian Pop39cf4802008-05-09 21:57:18 +0200498#endif
wdenk8655b6f2004-10-09 23:25:58 +0000499}
500
501/*----------------------------------------------------------------------*/
502
503static void lcd_setbgcolor (int color)
504{
Stelian Pop39cf4802008-05-09 21:57:18 +0200505#ifdef CONFIG_ATMEL_LCD
506 lcd_color_bg = color;
507#else
wdenk8655b6f2004-10-09 23:25:58 +0000508 lcd_color_bg = color & 0x0F;
Stelian Pop39cf4802008-05-09 21:57:18 +0200509#endif
wdenk8655b6f2004-10-09 23:25:58 +0000510}
511
512/*----------------------------------------------------------------------*/
513
514#ifdef NOT_USED_SO_FAR
515static int lcd_getfgcolor (void)
516{
517 return lcd_color_fg;
518}
519#endif /* NOT_USED_SO_FAR */
520
521/*----------------------------------------------------------------------*/
522
523static int lcd_getbgcolor (void)
524{
525 return lcd_color_bg;
526}
527
528/*----------------------------------------------------------------------*/
529
530/************************************************************************/
531/* ** Chipset depending Bitmap / Logo stuff... */
532/************************************************************************/
533#ifdef CONFIG_LCD_LOGO
534void bitmap_plot (int x, int y)
535{
Stelian Pop39cf4802008-05-09 21:57:18 +0200536#ifdef CONFIG_ATMEL_LCD
537 uint *cmap;
538#else
wdenk8655b6f2004-10-09 23:25:58 +0000539 ushort *cmap;
Stelian Pop39cf4802008-05-09 21:57:18 +0200540#endif
wdenk8655b6f2004-10-09 23:25:58 +0000541 ushort i, j;
542 uchar *bmap;
543 uchar *fb;
544 ushort *fb16;
545#if defined(CONFIG_PXA250)
546 struct pxafb_info *fbi = &panel_info.pxa;
547#elif defined(CONFIG_MPC823)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200548 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk8655b6f2004-10-09 23:25:58 +0000549 volatile cpm8xx_t *cp = &(immr->im_cpm);
550#endif
551
552 debug ("Logo: width %d height %d colors %d cmap %d\n",
553 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
Wolfgang Denkb64f1902008-07-14 15:06:35 +0200554 (int)(sizeof(bmp_logo_palette)/(sizeof(ushort))));
wdenk8655b6f2004-10-09 23:25:58 +0000555
556 bmap = &bmp_logo_bitmap[0];
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200557 fb = (uchar *)(lcd_base + y * lcd_line_length + x);
wdenk8655b6f2004-10-09 23:25:58 +0000558
559 if (NBITS(panel_info.vl_bpix) < 12) {
560 /* Leave room for default color map */
561#if defined(CONFIG_PXA250)
562 cmap = (ushort *)fbi->palette;
563#elif defined(CONFIG_MPC823)
564 cmap = (ushort *)&(cp->lcd_cmap[BMP_LOGO_OFFSET*sizeof(ushort)]);
Stelian Pop39cf4802008-05-09 21:57:18 +0200565#elif defined(CONFIG_ATMEL_LCD)
566 cmap = (uint *) (panel_info.mmio + ATMEL_LCDC_LUT(0));
wdenk8655b6f2004-10-09 23:25:58 +0000567#endif
568
569 WATCHDOG_RESET();
570
571 /* Set color map */
572 for (i=0; i<(sizeof(bmp_logo_palette)/(sizeof(ushort))); ++i) {
573 ushort colreg = bmp_logo_palette[i];
Stelian Pop39cf4802008-05-09 21:57:18 +0200574#ifdef CONFIG_ATMEL_LCD
575 uint lut_entry;
576#ifdef CONFIG_ATMEL_LCD_BGR555
577 lut_entry = ((colreg & 0x000F) << 11) |
578 ((colreg & 0x00F0) << 2) |
579 ((colreg & 0x0F00) >> 7);
580#else /* CONFIG_ATMEL_LCD_RGB565 */
581 lut_entry = ((colreg & 0x000F) << 1) |
582 ((colreg & 0x00F0) << 3) |
583 ((colreg & 0x0F00) << 4);
584#endif
585 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
586 cmap++;
587#else /* !CONFIG_ATMEL_LCD */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200588#ifdef CONFIG_SYS_INVERT_COLORS
wdenk8655b6f2004-10-09 23:25:58 +0000589 *cmap++ = 0xffff - colreg;
590#else
591 *cmap++ = colreg;
592#endif
Stelian Pop39cf4802008-05-09 21:57:18 +0200593#endif /* CONFIG_ATMEL_LCD */
wdenk8655b6f2004-10-09 23:25:58 +0000594 }
595
596 WATCHDOG_RESET();
597
598 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
599 memcpy (fb, bmap, BMP_LOGO_WIDTH);
600 bmap += BMP_LOGO_WIDTH;
601 fb += panel_info.vl_col;
602 }
603 }
604 else { /* true color mode */
605 fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
606 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
607 for (j=0; j<BMP_LOGO_WIDTH; j++) {
608 fb16[j] = bmp_logo_palette[(bmap[j])];
609 }
610 bmap += BMP_LOGO_WIDTH;
611 fb16 += panel_info.vl_col;
612 }
613 }
614
615 WATCHDOG_RESET();
616}
617#endif /* CONFIG_LCD_LOGO */
618
619/*----------------------------------------------------------------------*/
Jon Loeligerc3517f92007-07-08 18:10:08 -0500620#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk8655b6f2004-10-09 23:25:58 +0000621/*
622 * Display the BMP file located at address bmp_image.
623 * Only uncompressed.
624 */
625int lcd_display_bitmap(ulong bmp_image, int x, int y)
626{
Stelian Pop39cf4802008-05-09 21:57:18 +0200627#ifdef CONFIG_ATMEL_LCD
628 uint *cmap;
629#elif !defined(CONFIG_MCC200)
wdenk8655b6f2004-10-09 23:25:58 +0000630 ushort *cmap;
Wolfgang Denkf6414712006-10-20 15:51:21 +0200631#endif
wdenk8655b6f2004-10-09 23:25:58 +0000632 ushort i, j;
633 uchar *fb;
634 bmp_image_t *bmp=(bmp_image_t *)bmp_image;
635 uchar *bmap;
636 ushort padded_line;
637 unsigned long width, height;
Wolfgang Denke8143e72006-08-30 23:09:00 +0200638 unsigned long pwidth = panel_info.vl_col;
wdenk8655b6f2004-10-09 23:25:58 +0000639 unsigned colors,bpix;
640 unsigned long compression;
641#if defined(CONFIG_PXA250)
642 struct pxafb_info *fbi = &panel_info.pxa;
643#elif defined(CONFIG_MPC823)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200644 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk8655b6f2004-10-09 23:25:58 +0000645 volatile cpm8xx_t *cp = &(immr->im_cpm);
646#endif
647
648 if (!((bmp->header.signature[0]=='B') &&
649 (bmp->header.signature[1]=='M'))) {
650 printf ("Error: no valid bmp image at %lx\n", bmp_image);
651 return 1;
652}
653
654 width = le32_to_cpu (bmp->header.width);
655 height = le32_to_cpu (bmp->header.height);
656 colors = 1<<le16_to_cpu (bmp->header.bit_count);
657 compression = le32_to_cpu (bmp->header.compression);
658
659 bpix = NBITS(panel_info.vl_bpix);
660
661 if ((bpix != 1) && (bpix != 8)) {
662 printf ("Error: %d bit/pixel mode not supported by U-Boot\n",
663 bpix);
664 return 1;
665 }
666
667 if (bpix != le16_to_cpu(bmp->header.bit_count)) {
668 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
669 bpix,
670 le16_to_cpu(bmp->header.bit_count));
671 return 1;
672 }
673
674 debug ("Display-bmp: %d x %d with %d colors\n",
675 (int)width, (int)height, (int)colors);
676
Wolfgang Denkf6414712006-10-20 15:51:21 +0200677#if !defined(CONFIG_MCC200)
678 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
wdenk8655b6f2004-10-09 23:25:58 +0000679 if (bpix==8) {
680#if defined(CONFIG_PXA250)
681 cmap = (ushort *)fbi->palette;
682#elif defined(CONFIG_MPC823)
683 cmap = (ushort *)&(cp->lcd_cmap[255*sizeof(ushort)]);
Stelian Pop39cf4802008-05-09 21:57:18 +0200684#elif defined(CONFIG_ATMEL_LCD)
685 cmap = (uint *) (panel_info.mmio + ATMEL_LCDC_LUT(0));
wdenk25d67122004-12-10 11:40:40 +0000686#else
687# error "Don't know location of color map"
wdenk8655b6f2004-10-09 23:25:58 +0000688#endif
689
690 /* Set color map */
691 for (i=0; i<colors; ++i) {
692 bmp_color_table_entry_t cte = bmp->color_table[i];
Mark Jackson1464eff2008-08-01 09:48:29 +0100693#if !defined(CONFIG_ATMEL_LCD)
wdenk8655b6f2004-10-09 23:25:58 +0000694 ushort colreg =
695 ( ((cte.red) << 8) & 0xf800) |
Wolfgang Denk59d80bf2005-09-21 15:24:52 +0200696 ( ((cte.green) << 3) & 0x07e0) |
697 ( ((cte.blue) >> 3) & 0x001f) ;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200698#ifdef CONFIG_SYS_INVERT_COLORS
wdenk25d67122004-12-10 11:40:40 +0000699 *cmap = 0xffff - colreg;
wdenk8655b6f2004-10-09 23:25:58 +0000700#else
wdenk25d67122004-12-10 11:40:40 +0000701 *cmap = colreg;
702#endif
703#if defined(CONFIG_PXA250)
704 cmap++;
705#elif defined(CONFIG_MPC823)
706 cmap--;
wdenk8655b6f2004-10-09 23:25:58 +0000707#endif
Mark Jackson1464eff2008-08-01 09:48:29 +0100708#else /* CONFIG_ATMEL_LCD */
709 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
710#endif
wdenk8655b6f2004-10-09 23:25:58 +0000711 }
712 }
Wolfgang Denkf6414712006-10-20 15:51:21 +0200713#endif
wdenk8655b6f2004-10-09 23:25:58 +0000714
Wolfgang Denke8143e72006-08-30 23:09:00 +0200715 /*
716 * BMP format for Monochrome assumes that the state of a
717 * pixel is described on a per Bit basis, not per Byte.
718 * So, in case of Monochrome BMP we should align widths
719 * on a byte boundary and convert them from Bit to Byte
720 * units.
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200721 * Probably, PXA250 and MPC823 process 1bpp BMP images in
722 * their own ways, so make the converting to be MCC200
Wolfgang Denke8143e72006-08-30 23:09:00 +0200723 * specific.
724 */
725#if defined(CONFIG_MCC200)
726 if (bpix==1)
727 {
728 width = ((width + 7) & ~7) >> 3;
729 x = ((x + 7) & ~7) >> 3;
730 pwidth= ((pwidth + 7) & ~7) >> 3;
731 }
732#endif
733
wdenk8655b6f2004-10-09 23:25:58 +0000734 padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200735 if ((x + width)>pwidth)
736 width = pwidth - x;
wdenk8655b6f2004-10-09 23:25:58 +0000737 if ((y + height)>panel_info.vl_row)
738 height = panel_info.vl_row - y;
739
740 bmap = (uchar *)bmp + le32_to_cpu (bmp->header.data_offset);
741 fb = (uchar *) (lcd_base +
742 (y + height - 1) * lcd_line_length + x);
743 for (i = 0; i < height; ++i) {
wdenk51152c12005-06-05 20:30:43 +0000744 WATCHDOG_RESET();
wdenk8655b6f2004-10-09 23:25:58 +0000745 for (j = 0; j < width ; j++)
Mark Jackson1464eff2008-08-01 09:48:29 +0100746#if defined(CONFIG_PXA250) || defined(CONFIG_ATMEL_LCD)
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200747 *(fb++) = *(bmap++);
Wolfgang Denke8143e72006-08-30 23:09:00 +0200748#elif defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
wdenk8655b6f2004-10-09 23:25:58 +0000749 *(fb++)=255-*(bmap++);
750#endif
751 bmap += (width - padded_line);
752 fb -= (width + lcd_line_length);
753 }
754
755 return (0);
756}
Jon Loeligerc3517f92007-07-08 18:10:08 -0500757#endif
wdenk8655b6f2004-10-09 23:25:58 +0000758
Mark Jacksona4831152008-07-31 16:09:00 +0100759#ifdef CONFIG_VIDEO_BMP_GZIP
760extern bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp);
761#endif
wdenk8655b6f2004-10-09 23:25:58 +0000762
763static void *lcd_logo (void)
764{
wdenk88804d12005-07-04 00:03:16 +0000765#ifdef CONFIG_LCD_INFO
wdenk8655b6f2004-10-09 23:25:58 +0000766 char info[80];
767 char temp[32];
Stelian Pop39cf4802008-05-09 21:57:18 +0200768#ifdef CONFIG_ATMEL_LCD
769 int i;
770 ulong dram_size, nand_size;
771#endif
wdenk88804d12005-07-04 00:03:16 +0000772#endif /* CONFIG_LCD_INFO */
wdenk8655b6f2004-10-09 23:25:58 +0000773
774#ifdef CONFIG_SPLASH_SCREEN
775 char *s;
776 ulong addr;
777 static int do_splash = 1;
778
779 if (do_splash && (s = getenv("splashimage")) != NULL) {
780 addr = simple_strtoul(s, NULL, 16);
781 do_splash = 0;
782
Mark Jacksona4831152008-07-31 16:09:00 +0100783#ifdef CONFIG_VIDEO_BMP_GZIP
784 bmp_image_t *bmp = (bmp_image_t *)addr;
785 unsigned long len;
786
787 if (!((bmp->header.signature[0]=='B') &&
788 (bmp->header.signature[1]=='M'))) {
789 addr = (ulong)gunzip_bmp(addr, &len);
790 }
791#endif
792
wdenk8655b6f2004-10-09 23:25:58 +0000793 if (lcd_display_bitmap (addr, 0, 0) == 0) {
794 return ((void *)lcd_base);
795 }
796 }
797#endif /* CONFIG_SPLASH_SCREEN */
798
799#ifdef CONFIG_LCD_LOGO
800 bitmap_plot (0, 0);
801#endif /* CONFIG_LCD_LOGO */
802
803#ifdef CONFIG_MPC823
wdenk88804d12005-07-04 00:03:16 +0000804# ifdef CONFIG_LCD_INFO
wdenk8655b6f2004-10-09 23:25:58 +0000805 sprintf (info, "%s (%s - %s) ", U_BOOT_VERSION, __DATE__, __TIME__);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200806 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y, (uchar *)info, strlen(info));
wdenk8655b6f2004-10-09 23:25:58 +0000807
Wolfgang Denk21f971e2008-07-07 01:22:29 +0200808 sprintf (info, "(C) 2008 DENX Software Engineering GmbH");
wdenk8655b6f2004-10-09 23:25:58 +0000809 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT,
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200810 (uchar *)info, strlen(info));
wdenk8655b6f2004-10-09 23:25:58 +0000811
812 sprintf (info, " Wolfgang DENK, wd@denx.de");
813 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 2,
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200814 (uchar *)info, strlen(info));
wdenk88804d12005-07-04 00:03:16 +0000815# ifdef CONFIG_LCD_INFO_BELOW_LOGO
wdenk8655b6f2004-10-09 23:25:58 +0000816 sprintf (info, "MPC823 CPU at %s MHz",
817 strmhz(temp, gd->cpu_clk));
818 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 3,
819 info, strlen(info));
820 sprintf (info, " %ld MB RAM, %ld MB Flash",
821 gd->ram_size >> 20,
822 gd->bd->bi_flashsize >> 20 );
823 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 4,
824 info, strlen(info));
wdenk88804d12005-07-04 00:03:16 +0000825# else
wdenk8655b6f2004-10-09 23:25:58 +0000826 /* leave one blank line */
827
828 sprintf (info, "MPC823 CPU at %s MHz, %ld MB RAM, %ld MB Flash",
829 strmhz(temp, gd->cpu_clk),
830 gd->ram_size >> 20,
831 gd->bd->bi_flashsize >> 20 );
832 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 4,
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200833 (uchar *)info, strlen(info));
wdenk8655b6f2004-10-09 23:25:58 +0000834
wdenk88804d12005-07-04 00:03:16 +0000835# endif /* CONFIG_LCD_INFO_BELOW_LOGO */
836# endif /* CONFIG_LCD_INFO */
wdenk8655b6f2004-10-09 23:25:58 +0000837#endif /* CONFIG_MPC823 */
wdenk8655b6f2004-10-09 23:25:58 +0000838
Stelian Pop39cf4802008-05-09 21:57:18 +0200839#ifdef CONFIG_ATMEL_LCD
840# ifdef CONFIG_LCD_INFO
841 sprintf (info, "%s", U_BOOT_VERSION);
842 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y, (uchar *)info, strlen(info));
843
844 sprintf (info, "(C) 2008 ATMEL Corp");
845 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT,
846 (uchar *)info, strlen(info));
847
848 sprintf (info, "at91support@atmel.com");
849 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 2,
850 (uchar *)info, strlen(info));
851
852 sprintf (info, "%s CPU at %s MHz",
853 AT91_CPU_NAME,
854 strmhz(temp, AT91_MAIN_CLOCK));
855 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 3,
856 (uchar *)info, strlen(info));
857
858 dram_size = 0;
859 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
860 dram_size += gd->bd->bi_dram[i].size;
861 nand_size = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200862 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Stelian Pop39cf4802008-05-09 21:57:18 +0200863 nand_size += nand_info[i].size;
864 sprintf (info, " %ld MB SDRAM, %ld MB NAND",
865 dram_size >> 20,
866 nand_size >> 20 );
867 lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT * 4,
868 (uchar *)info, strlen(info));
869# endif /* CONFIG_LCD_INFO */
870#endif /* CONFIG_ATMEL_LCD */
871
872
wdenk88804d12005-07-04 00:03:16 +0000873#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
wdenk8655b6f2004-10-09 23:25:58 +0000874 return ((void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length));
875#else
876 return ((void *)lcd_base);
wdenk88804d12005-07-04 00:03:16 +0000877#endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
wdenk8655b6f2004-10-09 23:25:58 +0000878}
879
880/************************************************************************/
881/************************************************************************/