Merge branch 'master' of http://git.denx.de/u-boot
[kernel/u-boot.git] / common / lcd.c
1 /*
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 <stdarg.h>
36 #include <linux/types.h>
37 #include <stdio_dev.h>
38 #include <malloc.h>
39 #if defined(CONFIG_POST)
40 #include <post.h>
41 #endif
42 #include <lcd.h>
43 #include <watchdog.h>
44
45 #if defined(CONFIG_PXA250)
46 #include <asm/byteorder.h>
47 #endif
48
49 #if defined(CONFIG_MPC823)
50 #include <lcdvideo.h>
51 #endif
52
53 #if defined(CONFIG_ATMEL_LCD)
54 #include <atmel_lcdc.h>
55 #endif
56
57 /************************************************************************/
58 /* ** FONT DATA                                                         */
59 /************************************************************************/
60 #include <video_font.h>         /* Get font data, width and height      */
61
62 /************************************************************************/
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) && (LCD_BPP != LCD_COLOR16)
68 #  error Default Color Map overlaps with Logo Color Map
69 # endif
70 #endif
71
72 DECLARE_GLOBAL_DATA_PTR;
73
74 ulong lcd_setmem (ulong addr);
75
76 static void lcd_drawchars (ushort x, ushort y, uchar *str, int count);
77 static inline void lcd_puts_xy (ushort x, ushort y, uchar *s);
78 static inline void lcd_putc_xy (ushort x, ushort y, uchar  c);
79
80 static int lcd_init (void *lcdbase);
81
82 static int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]);
83 static void *lcd_logo (void);
84
85 static int lcd_getbgcolor (void);
86 static void lcd_setfgcolor (int color);
87 static void lcd_setbgcolor (int color);
88
89 char lcd_is_enabled = 0;
90
91 #ifdef  NOT_USED_SO_FAR
92 static void lcd_getcolreg (ushort regno,
93                                 ushort *red, ushort *green, ushort *blue);
94 static int lcd_getfgcolor (void);
95 #endif  /* NOT_USED_SO_FAR */
96
97 /************************************************************************/
98
99 /*----------------------------------------------------------------------*/
100
101 static void console_scrollup (void)
102 {
103         /* 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);
108 }
109
110 /*----------------------------------------------------------------------*/
111
112 static 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
128 static 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
143 void 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) */
158                         console_col +=  8;
159                         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
182 void 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
194 /*----------------------------------------------------------------------*/
195
196 void 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
208 /************************************************************************/
209 /* ** Low-Level Graphics Routines                                       */
210 /************************************************************************/
211
212 static void lcd_drawchars (ushort x, ushort y, uchar *str, int count)
213 {
214         uchar *dest;
215         ushort off, row;
216
217         dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
218         off  = x * (1 << LCD_BPP) % 8;
219
220         for (row=0;  row < VIDEO_FONT_HEIGHT;  ++row, dest += lcd_line_length)  {
221                 uchar *s = str;
222                 int i;
223 #if LCD_BPP == LCD_COLOR16
224                 ushort *d = (ushort *)dest;
225 #else
226                 uchar *d = dest;
227 #endif
228
229 #if LCD_BPP == LCD_MONOCHROME
230                 uchar rest = *d & -(1 << (8-off));
231                 uchar sym;
232 #endif
233                 for (i=0; i<count; ++i) {
234                         uchar c, bits;
235
236                         c = *s++;
237                         bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
238
239 #if LCD_BPP == LCD_MONOCHROME
240                         sym  = (COLOR_MASK(lcd_color_fg) & bits) |
241                                (COLOR_MASK(lcd_color_bg) & ~bits);
242
243                         *d++ = rest | (sym >> off);
244                         rest = sym << (8-off);
245 #elif LCD_BPP == LCD_COLOR8
246                         for (c=0; c<8; ++c) {
247                                 *d++ = (bits & 0x80) ?
248                                                 lcd_color_fg : lcd_color_bg;
249                                 bits <<= 1;
250                         }
251 #elif LCD_BPP == LCD_COLOR16
252                         for (c=0; c<8; ++c) {
253                                 *d++ = (bits & 0x80) ?
254                                                 lcd_color_fg : lcd_color_bg;
255                                 bits <<= 1;
256                         }
257 #endif
258                 }
259 #if LCD_BPP == LCD_MONOCHROME
260                 *d  = rest | (*d & ((1 << (8-off)) - 1));
261 #endif
262         }
263 }
264
265 /*----------------------------------------------------------------------*/
266
267 static inline void lcd_puts_xy (ushort x, ushort y, uchar *s)
268 {
269 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
270         lcd_drawchars (x, y+BMP_LOGO_HEIGHT, s, strlen ((char *)s));
271 #else
272         lcd_drawchars (x, y, s, strlen ((char *)s));
273 #endif
274 }
275
276 /*----------------------------------------------------------------------*/
277
278 static inline void lcd_putc_xy (ushort x, ushort y, uchar c)
279 {
280 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
281         lcd_drawchars (x, y+BMP_LOGO_HEIGHT, &c, 1);
282 #else
283         lcd_drawchars (x, y, &c, 1);
284 #endif
285 }
286
287 /************************************************************************/
288 /**  Small utility to check that you got the colours right              */
289 /************************************************************************/
290 #ifdef LCD_TEST_PATTERN
291
292 #define N_BLK_VERT      2
293 #define N_BLK_HOR       3
294
295 static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
296         CONSOLE_COLOR_RED,      CONSOLE_COLOR_GREEN,    CONSOLE_COLOR_YELLOW,
297         CONSOLE_COLOR_BLUE,     CONSOLE_COLOR_MAGENTA,  CONSOLE_COLOR_CYAN,
298 };
299
300 static void test_pattern (void)
301 {
302         ushort v_max  = panel_info.vl_row;
303         ushort h_max  = panel_info.vl_col;
304         ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
305         ushort h_step = (h_max + N_BLK_HOR  - 1) / N_BLK_HOR;
306         ushort v, h;
307         uchar *pix = (uchar *)lcd_base;
308
309         printf ("[LCD] Test Pattern: %d x %d [%d x %d]\n",
310                 h_max, v_max, h_step, v_step);
311
312         /* WARNING: Code silently assumes 8bit/pixel */
313         for (v=0; v<v_max; ++v) {
314                 uchar iy = v / v_step;
315                 for (h=0; h<h_max; ++h) {
316                         uchar ix = N_BLK_HOR * iy + (h/h_step);
317                         *pix++ = test_colors[ix];
318                 }
319         }
320 }
321 #endif /* LCD_TEST_PATTERN */
322
323
324 /************************************************************************/
325 /* ** GENERIC Initialization Routines                                   */
326 /************************************************************************/
327 int drv_lcd_init_resume (void)
328 {
329         lcd_base = (void *)(gd->fb_base);
330
331         lcd_line_length = (panel_info.vl_col * (panel_info.vl_bpix)) / 8;
332
333         lcd_init (lcd_base);            /* LCD initialization */
334
335         return 0;
336 }
337
338 int drv_lcd_init (void)
339 {
340         struct stdio_dev lcddev;
341         int rc;
342
343         lcd_base = (void *)(gd->fb_base);
344
345         lcd_line_length = (panel_info.vl_col * (panel_info.vl_bpix / 8));
346
347         lcd_init (lcd_base);            /* LCD initialization */
348
349         /* Device initialization */
350         memset (&lcddev, 0, sizeof (lcddev));
351
352         strcpy (lcddev.name, "lcd");
353         lcddev.ext   = 0;                       /* No extensions */
354         lcddev.flags = DEV_FLAGS_OUTPUT;        /* Output only */
355         lcddev.putc  = lcd_putc;                /* 'putc' function */
356         lcddev.puts  = lcd_puts;                /* 'puts' function */
357
358         rc = stdio_register (&lcddev);
359
360         return (rc == 0) ? 1 : rc;
361 }
362
363 /*----------------------------------------------------------------------*/
364 static int lcd_clear (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
365 {
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
383 #ifndef CONFIG_SYS_WHITE_ON_BLACK
384         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);
389 #endif  /* CONFIG_SYS_WHITE_ON_BLACK */
390
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;
405
406         return (0);
407 }
408
409 U_BOOT_CMD(
410         cls,    1,      1,      lcd_clear,
411         "clear screen",
412         ""
413 );
414
415 /*----------------------------------------------------------------------*/
416
417 static int lcd_init (void *lcdbase)
418 {
419         /* Initialize the lcd controller */
420         debug ("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
421
422         lcd_ctrl_init (lcdbase);
423         lcd_is_enabled = 1;
424         lcd_clear (NULL, 1, 1, NULL);   /* dummy args */
425         lcd_enable ();
426
427         /* Initialize the console */
428         console_col = 0;
429 #ifdef CONFIG_LCD_INFO_BELOW_LOGO
430         console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
431 #else
432         console_row = 1;        /* leave 1 blank line below logo */
433 #endif
434
435         return 0;
436 }
437
438
439 /************************************************************************/
440 /* ** ROM capable initialization part - needed to reserve FB memory     */
441 /************************************************************************/
442 /*
443  * This is called early in the system initialization to grab memory
444  * for the LCD controller.
445  * Returns new address for monitor, after reserving LCD buffer memory
446  *
447  * Note that this is running from ROM, so no write access to global data.
448  */
449 ulong lcd_setmem (ulong addr)
450 {
451         ulong size;
452         int line_length = (panel_info.vl_col * (panel_info.vl_bpix)) / 8;
453
454         debug ("LCD panel info: %d x %d, %d bit/pix\n",
455                 panel_info.vl_col, panel_info.vl_row, (panel_info.vl_bpix) );
456
457         size = line_length * panel_info.vl_row;
458
459         /* Round up to nearest full page */
460         size = (size + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
461
462         /* Allocate pages for the frame buffer. */
463         addr -= size;
464
465         debug ("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
466
467         return (addr);
468 }
469
470 /*----------------------------------------------------------------------*/
471
472 static void lcd_setfgcolor (int color)
473 {
474         lcd_color_fg = color;
475 }
476
477 /*----------------------------------------------------------------------*/
478
479 static void lcd_setbgcolor (int color)
480 {
481         lcd_color_bg = color;
482 }
483
484 /*----------------------------------------------------------------------*/
485
486 #ifdef  NOT_USED_SO_FAR
487 static int lcd_getfgcolor (void)
488 {
489         return lcd_color_fg;
490 }
491 #endif  /* NOT_USED_SO_FAR */
492
493 /*----------------------------------------------------------------------*/
494
495 static int lcd_getbgcolor (void)
496 {
497         return lcd_color_bg;
498 }
499
500 /*----------------------------------------------------------------------*/
501
502 /************************************************************************/
503 /* ** Chipset depending Bitmap / Logo stuff...                          */
504 /************************************************************************/
505 #ifdef CONFIG_LCD_LOGO
506 void bitmap_plot (int x, int y)
507 {
508 #ifdef CONFIG_ATMEL_LCD
509         uint *cmap;
510 #else
511         ushort *cmap;
512 #endif
513         ushort i, j;
514         uchar *bmap;
515         uchar *fb;
516         ushort *fb16;
517 #if defined(CONFIG_PXA250)
518         struct pxafb_info *fbi = &panel_info.pxa;
519 #elif defined(CONFIG_MPC823)
520         volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
521         volatile cpm8xx_t *cp = &(immr->im_cpm);
522 #endif
523
524         debug ("Logo: width %d  height %d  colors %d  cmap %d\n",
525                 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
526                 (int)(sizeof(bmp_logo_palette)/(sizeof(ushort))));
527
528         bmap = &bmp_logo_bitmap[0];
529         fb   = (uchar *)(lcd_base + y * lcd_line_length + x);
530
531         if ((panel_info.vl_bpix) < 12) {
532                 /* Leave room for default color map */
533 #if defined(CONFIG_PXA250)
534                 cmap = (ushort *)fbi->palette;
535 #elif defined(CONFIG_MPC823)
536                 cmap = (ushort *)&(cp->lcd_cmap[BMP_LOGO_OFFSET*sizeof(ushort)]);
537 #elif defined(CONFIG_ATMEL_LCD)
538                 cmap = (uint *) (panel_info.mmio + ATMEL_LCDC_LUT(0));
539 #else
540                 /*
541                  * default case: generic system with no cmap (most likely 16bpp)
542                  * We set cmap to the source palette, so no change is done.
543                  * This avoids even more ifdef in the next stanza
544                  */
545                 cmap = bmp_logo_palette;
546 #endif
547
548                 WATCHDOG_RESET();
549
550                 /* Set color map */
551                 for (i=0; i<(sizeof(bmp_logo_palette)/(sizeof(ushort))); ++i) {
552                         ushort colreg = bmp_logo_palette[i];
553 #ifdef CONFIG_ATMEL_LCD
554                         uint lut_entry;
555 #ifdef CONFIG_ATMEL_LCD_BGR555
556                         lut_entry = ((colreg & 0x000F) << 11) |
557                                     ((colreg & 0x00F0) <<  2) |
558                                     ((colreg & 0x0F00) >>  7);
559 #else /* CONFIG_ATMEL_LCD_RGB565 */
560                         lut_entry = ((colreg & 0x000F) << 1) |
561                                     ((colreg & 0x00F0) << 3) |
562                                     ((colreg & 0x0F00) << 4);
563 #endif
564                         *(cmap + BMP_LOGO_OFFSET) = lut_entry;
565                         cmap++;
566 #else /* !CONFIG_ATMEL_LCD */
567 #ifdef  CONFIG_SYS_INVERT_COLORS
568                         *cmap++ = 0xffff - colreg;
569 #else
570                         *cmap++ = colreg;
571 #endif
572 #endif /* CONFIG_ATMEL_LCD */
573                 }
574
575                 WATCHDOG_RESET();
576
577                 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
578                         memcpy (fb, bmap, BMP_LOGO_WIDTH);
579                         bmap += BMP_LOGO_WIDTH;
580                         fb   += panel_info.vl_col;
581                 }
582         }
583         else { /* true color mode */
584                 u16 col16;
585                 fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
586                 for (i=0; i<BMP_LOGO_HEIGHT; ++i) {
587                         for (j=0; j<BMP_LOGO_WIDTH; j++) {
588                                 col16 = bmp_logo_palette[(bmap[j]-16)];
589                                 fb16[j] =
590                                         ((col16 & 0x000F) << 1) |
591                                         ((col16 & 0x00F0) << 3) |
592                                         ((col16 & 0x0F00) << 4);
593                                 }
594                         bmap += BMP_LOGO_WIDTH;
595                         fb16 += panel_info.vl_col;
596                 }
597         }
598
599         WATCHDOG_RESET();
600 }
601 #endif /* CONFIG_LCD_LOGO */
602
603 /*----------------------------------------------------------------------*/
604 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
605 /*
606  * Display the BMP file located at address bmp_image.
607  * Only uncompressed.
608  */
609
610 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
611 #define BMP_ALIGN_CENTER        0x7FFF
612 #endif
613 void lcd_display_clear(void)
614 {
615         unsigned int *fb = lcd_base;
616         printf("Clean the display\n");
617
618         memset(fb, 0, panel_info.vl_row * panel_info.vl_col * panel_info.vl_bpix / 8);
619 }
620
621 int lcd_display_bitmap(ulong bmp_image, int x, int y)
622 {
623 #if !defined(CONFIG_MCC200)
624         ushort *cmap = NULL;
625 #endif
626         ushort *cmap_base = NULL;
627         ushort i, j;
628         uchar *fb;
629         bmp_image_t *bmp=(bmp_image_t *)bmp_image;
630         uchar *bmap;
631         ushort padded_line;
632         unsigned long width, height, byte_width;
633         unsigned long pwidth = panel_info.vl_col;
634         unsigned colors, bpix, bmp_bpix;
635         unsigned long compression;
636 #if defined(CONFIG_PXA250)
637         struct pxafb_info *fbi = &panel_info.pxa;
638 #elif defined(CONFIG_MPC823)
639         volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
640         volatile cpm8xx_t *cp = &(immr->im_cpm);
641 #endif
642
643         if (!((bmp->header.signature[0]=='B') &&
644                 (bmp->header.signature[1]=='M'))) {
645                 printf ("Error: no valid bmp image at %lx\n", bmp_image);
646                 return 1;
647         }
648
649         width = le32_to_cpu (bmp->header.width);
650         height = le32_to_cpu (bmp->header.height);
651         bmp_bpix = le16_to_cpu(bmp->header.bit_count);
652         colors = 1 << bmp_bpix;
653         compression = le32_to_cpu (bmp->header.compression);
654
655         bpix = (panel_info.vl_bpix);
656
657         if ((bpix != 1) && (bpix != 8) && (bpix != 16) && (bpix != 32)) {
658                 printf ("Error0: %d bit/pixel mode, but BMP has %d bit/pixel\n",
659                         bpix, bmp_bpix);
660                 return 1;
661         }
662
663         /* We support displaying 8bpp BMPs on 16bpp LCDs and 4bpp BMPs on 32bpp LCDs */
664         if (bpix != bmp_bpix && (bmp_bpix != 8 || bpix != 16) && !(bpix == 32 && bmp_bpix == 4) ) {
665                 printf ("Error1: %d bit/pixel mode, but BMP has %d bit/pixel\n",
666                         bpix,
667                         le16_to_cpu(bmp->header.bit_count));
668                 return 1;
669         }
670
671         debug ("Display-bmp: %d x %d  with %d colors\n",
672                 (int)width, (int)height, (int)colors);
673
674 #if !defined(CONFIG_MCC200)
675         /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
676         if (bmp_bpix == 8) {
677 #if defined(CONFIG_PXA250)
678                 cmap = (ushort *)fbi->palette;
679 #elif defined(CONFIG_MPC823)
680                 cmap = (ushort *)&(cp->lcd_cmap[255*sizeof(ushort)]);
681 #elif !defined(CONFIG_ATMEL_LCD)
682                 /* cmap = panel_info.cmap; */
683                 cmap = (ushort *) malloc(1024);
684 #endif
685
686                 cmap_base = cmap;
687
688                 /* Set color map */
689                 for (i=0; i<colors; ++i) {
690                         bmp_color_table_entry_t cte = bmp->color_table[i];
691 #if !defined(CONFIG_ATMEL_LCD)
692                         ushort colreg =
693                                 ( ((cte.red)   << 8) & 0xf800) |
694                                 ( ((cte.green) << 3) & 0x07e0) |
695                                 ( ((cte.blue)  >> 3) & 0x001f) ;
696 #ifdef CONFIG_SYS_INVERT_COLORS
697                         *cmap = 0xffff - colreg;
698 #else
699                         *cmap = colreg;
700 #endif
701 #if defined(CONFIG_MPC823)
702                         cmap--;
703 #else
704                         cmap++;
705 #endif
706 #else /* CONFIG_ATMEL_LCD */
707                         lcd_setcolreg(i, cte.red, cte.green, cte.blue);
708 #endif
709                 }
710         }
711 #endif
712
713         /*
714          *  BMP format for Monochrome assumes that the state of a
715          * pixel is described on a per Bit basis, not per Byte.
716          *  So, in case of Monochrome BMP we should align widths
717          * on a byte boundary and convert them from Bit to Byte
718          * units.
719          *  Probably, PXA250 and MPC823 process 1bpp BMP images in
720          * their own ways, so make the converting to be MCC200
721          * specific.
722          */
723 #if defined(CONFIG_MCC200)
724         if (bpix==1)
725         {
726                 width = ((width + 7) & ~7) >> 3;
727                 x     = ((x + 7) & ~7) >> 3;
728                 pwidth= ((pwidth + 7) & ~7) >> 3;
729         }
730 #endif
731
732         padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
733
734 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
735         if (x == BMP_ALIGN_CENTER)
736                 x = max(0, (pwidth - width) / 2);
737         else if (x < 0)
738                 x = max(0, pwidth - width + x + 1);
739
740         if (y == BMP_ALIGN_CENTER)
741                 y = max(0, (panel_info.vl_row - height) / 2);
742         else if (y < 0)
743                 y = max(0, panel_info.vl_row - height + y + 1);
744 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
745
746         if ((x + width)>pwidth)
747                 width = pwidth - x;
748         if ((y + height)>panel_info.vl_row)
749                 height = panel_info.vl_row - y;
750
751         bmap = (uchar *)bmp + le32_to_cpu (bmp->header.data_offset);
752         fb   = (uchar *) (lcd_base +
753                 (y + height - 1) * lcd_line_length + x);
754
755         switch (bmp_bpix) {
756         case 4: /* Display 4b bmp at 32b lcd */
757                 if (bpix == 32) {
758                         /* 1. Get the color map */
759                         unsigned int cmap_32[16];
760                         unsigned int effective_width;
761
762                         for (i=0; i<colors; ++i) {
763                                 bmp_color_table_entry_t cte = bmp->color_table[i];
764                                 cmap_32[i] = (cte.red << 0) | (cte.green << 8) |
765                                         (cte.blue << 16) | (cte.reserved << 24);
766                         }
767
768                         /* 2. Put'em on the screen */
769                         lcd_line_length = (panel_info.vl_col * (panel_info.vl_bpix / 8));
770                         fb = (uchar *) lcd_base;
771                         fb += lcd_line_length * (y + height) + x * 4;
772
773                         printf("Drawing the 32bit bmp.. @ 4b (%d,%d) of [%ldx%ld] in %d (%d color)\n",
774                                         x, y, width, height, lcd_line_length, colors);
775                         effective_width = (width % 2) ? (width + 1) : width;
776                         for (i = 0; i < height; ++i) {
777                                 WATCHDOG_RESET();
778                                 for (j = 0; j < width; j++) {
779                                         int color_v;
780                                         color_v = bmap[(j + i * effective_width) / 2];
781                                         if ((j + i * effective_width) % 2)
782                                                 color_v = color_v & 0xf;
783                                         else
784                                                 color_v = (color_v >> 4) & 0xf;
785
786                                         memcpy(fb, cmap_32 + color_v, 4);
787                                         fb += 4;
788                                 }
789                                 fb   -= (lcd_line_length + width * 4);
790                         }
791                 }
792                 break;
793         case 1: /* pass through */
794         case 8:
795                 if (bpix != 16)
796                         byte_width = width;
797                 else
798                         byte_width = width * 2;
799
800                 for (i = 0; i < height; ++i) {
801                         WATCHDOG_RESET();
802                         for (j = 0; j < width; j++) {
803                                 if (bpix != 16) {
804 #if defined(CONFIG_PXA250) || defined(CONFIG_ATMEL_LCD)
805                                         *(fb++) = *(bmap++);
806 #elif defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
807                                         *(fb++) = 255 - *(bmap++);
808 #endif
809                                 } else {
810                                         *(uint16_t *)fb = cmap_base[*(bmap++)];
811                                         fb += sizeof(uint16_t) / sizeof(*fb);
812                                 }
813                         }
814                         bmap += (width - padded_line);
815                         fb   -= (byte_width + lcd_line_length);
816                 }
817                 break;
818
819 #if defined(CONFIG_BMP_16BPP)
820         case 16:
821                 for (i = 0; i < height; ++i) {
822                         WATCHDOG_RESET();
823                         for (j = 0; j < width; j++) {
824 #if defined(CONFIG_ATMEL_LCD_BGR555)
825                                 *(fb++) = ((bmap[0] & 0x1f) << 2) |
826                                         (bmap[1] & 0x03);
827                                 *(fb++) = (bmap[0] & 0xe0) |
828                                         ((bmap[1] & 0x7c) >> 2);
829                                 bmap += 2;
830 #else
831                                 *(fb++) = *(bmap++);
832                                 *(fb++) = *(bmap++);
833 #endif
834                         }
835                         bmap += (padded_line - width) * 2;
836                         fb   -= (width * 2 + lcd_line_length);
837                 }
838                 break;
839 #endif /* CONFIG_BMP_16BPP */
840         case 32:
841                 lcd_line_length = (panel_info.vl_col * (panel_info.vl_bpix / 8));
842                 fb = (uchar *) lcd_base;
843                 fb += lcd_line_length * (y + height) + x * 4;
844
845                 printf("Drawing the 32bit bmp.. @ (%d,%d) of [%ldx%ld] in %d\n",
846                                 x, y, width, height, lcd_line_length);
847                 for (i = 0; i < height; ++i) {
848                         WATCHDOG_RESET();
849                         for (j = 0; j < width; j++) {
850                                 *(fb++) = *(bmap++);
851                                 *(fb++) = *(bmap++);
852                                 *(fb++) = *(bmap++);
853                                 *(fb++) = *(bmap++);
854                         }
855                         //bmap += (padded_line - width) * 4;
856                         fb   -= (lcd_line_length + width * 4);
857                 }
858                 break;
859
860         default:
861                 break;
862         };
863
864         return (0);
865 }
866 #endif
867
868 static void *lcd_logo (void)
869 {
870 #ifdef CONFIG_SPLASH_SCREEN
871         char *s;
872         ulong addr;
873         int allocated = 0;
874         static int do_splash = 1;
875
876         if (do_splash && (s = getenv("splashimage")) != NULL) {
877                 int x = 0, y = 0;
878                 do_splash = 0;
879
880                 addr = simple_strtoul (s, NULL, 16);
881 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
882                 if ((s = getenv ("splashpos")) != NULL) {
883                         if (s[0] == 'm')
884                                 x = BMP_ALIGN_CENTER;
885                         else
886                                 x = simple_strtol (s, NULL, 0);
887
888                         if ((s = strchr (s + 1, ',')) != NULL) {
889                                 if (s[1] == 'm')
890                                         y = BMP_ALIGN_CENTER;
891                                 else
892                                         y = simple_strtol (s + 1, NULL, 0);
893                         }
894                 }
895 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
896
897 #ifdef CONFIG_VIDEO_BMP_GZIP
898                 bmp_image_t *bmp = (bmp_image_t *)addr;
899                 unsigned long len;
900
901                 if (!((bmp->header.signature[0]=='B') &&
902                       (bmp->header.signature[1]=='M'))) {
903                         addr = (ulong)gunzip_bmp(addr, &len);
904                         if (addr)
905                                 allocated = 1;
906                 }
907 #endif
908
909                 if (lcd_display_bitmap (addr, x, y) == 0) {
910 #ifdef CONFIG_VIDEO_BMP_GZIP
911                         if (addr && allocated)
912                                 free((void *)addr);
913 #endif
914                         return ((void *)lcd_base);
915                 }
916 #ifdef CONFIG_VIDEO_BMP_GZIP
917                 if (addr && allocated)
918                         free((void *)addr);
919 #endif
920         }
921 #endif /* CONFIG_SPLASH_SCREEN */
922
923 #ifdef CONFIG_LCD_LOGO
924         bitmap_plot (0, 0);
925 #endif /* CONFIG_LCD_LOGO */
926
927 #ifdef CONFIG_LCD_INFO
928         console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
929         console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
930         lcd_show_board_info();
931 #endif /* CONFIG_LCD_INFO */
932
933 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
934         return ((void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length));
935 #else
936         return ((void *)lcd_base);
937 #endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
938 }
939
940 /************************************************************************/
941 /************************************************************************/