2 * Common LCD routines for supported CPUs
4 * (C) Copyright 2001-2002
5 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
7 * See file CREDITS for list of people who contributed to this
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.
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.
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,
26 /************************************************************************/
28 /************************************************************************/
36 #include <linux/types.h>
37 #include <stdio_dev.h>
38 #if defined(CONFIG_POST)
44 #if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
45 defined(CONFIG_CPU_MONAHANS)
46 #define CONFIG_CPU_PXA
47 #include <asm/byteorder.h>
50 #if defined(CONFIG_MPC823)
54 #if defined(CONFIG_ATMEL_LCD)
55 #include <atmel_lcdc.h>
58 /************************************************************************/
60 /************************************************************************/
61 #include <video_font.h> /* Get font data, width and height */
62 #include <video_font_data.h>
64 /************************************************************************/
66 /************************************************************************/
67 #ifdef CONFIG_LCD_LOGO
68 # include <bmp_logo.h> /* Get logo data, width and height */
69 # include <bmp_logo_data.h>
70 # if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
71 # error Default Color Map overlaps with Logo Color Map
75 #ifndef CONFIG_LCD_ALIGNMENT
76 #define CONFIG_LCD_ALIGNMENT PAGE_SIZE
79 /* By default we scroll by a single line */
80 #ifndef CONFIG_CONSOLE_SCROLL_LINES
81 #define CONFIG_CONSOLE_SCROLL_LINES 1
84 DECLARE_GLOBAL_DATA_PTR;
86 ulong lcd_setmem (ulong addr);
88 static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
89 static inline void lcd_puts_xy(ushort x, ushort y, uchar *s);
90 static inline void lcd_putc_xy(ushort x, ushort y, uchar c);
92 static int lcd_init(void *lcdbase);
94 static void *lcd_logo (void);
96 static int lcd_getbgcolor(void);
97 static void lcd_setfgcolor(int color);
98 static void lcd_setbgcolor(int color);
100 char lcd_is_enabled = 0;
102 static char lcd_flush_dcache; /* 1 to flush dcache after each lcd update */
105 #ifdef NOT_USED_SO_FAR
106 static void lcd_getcolreg(ushort regno,
107 ushort *red, ushort *green, ushort *blue);
108 static int lcd_getfgcolor(void);
109 #endif /* NOT_USED_SO_FAR */
111 /************************************************************************/
113 /* Flush LCD activity to the caches */
117 * flush_dcache_range() is declared in common.h but it seems that some
118 * architectures do not actually implement it. Is there a way to find
119 * out whether it exists? For now, ARM is safe.
121 #if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
124 if (lcd_flush_dcache)
125 flush_dcache_range((u32)lcd_base,
126 (u32)(lcd_base + lcd_get_size(&line_length)));
130 void lcd_set_flush_dcache(int flush)
132 lcd_flush_dcache = (flush != 0);
135 /*----------------------------------------------------------------------*/
137 static void console_scrollup(void)
139 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
141 /* Copy up rows ignoring those that will be overwritten */
142 memcpy(CONSOLE_ROW_FIRST,
143 lcd_console_address + CONSOLE_ROW_SIZE * rows,
144 CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows);
146 /* Clear the last rows */
147 memset(lcd_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows,
148 COLOR_MASK(lcd_color_bg),
149 CONSOLE_ROW_SIZE * rows);
155 /*----------------------------------------------------------------------*/
157 static inline void console_back(void)
159 if (--console_col < 0) {
160 console_col = CONSOLE_COLS-1 ;
161 if (--console_row < 0) {
166 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
167 console_row * VIDEO_FONT_HEIGHT, ' ');
170 /*----------------------------------------------------------------------*/
172 static inline void console_newline(void)
177 /* Check if we need to scroll the terminal */
178 if (console_row >= CONSOLE_ROWS) {
179 /* Scroll everything up */
186 /*----------------------------------------------------------------------*/
188 void lcd_putc(const char c)
190 if (!lcd_is_enabled) {
205 case '\t': /* Tab (8 chars alignment) */
209 if (console_col >= CONSOLE_COLS)
218 lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
219 console_row * VIDEO_FONT_HEIGHT, c);
220 if (++console_col >= CONSOLE_COLS)
225 /*----------------------------------------------------------------------*/
227 void lcd_puts(const char *s)
229 if (!lcd_is_enabled) {
241 /*----------------------------------------------------------------------*/
243 void lcd_printf(const char *fmt, ...)
246 char buf[CONFIG_SYS_PBSIZE];
249 vsprintf(buf, fmt, args);
255 /************************************************************************/
256 /* ** Low-Level Graphics Routines */
257 /************************************************************************/
259 static void lcd_drawchars(ushort x, ushort y, uchar *str, int count)
264 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
265 y += BMP_LOGO_HEIGHT;
268 #if LCD_BPP == LCD_MONOCHROME
269 ushort off = x * (1 << LCD_BPP) % 8;
272 dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);
274 for (row = 0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
277 #if LCD_BPP == LCD_COLOR16
278 ushort *d = (ushort *)dest;
283 #if LCD_BPP == LCD_MONOCHROME
284 uchar rest = *d & -(1 << (8-off));
287 for (i = 0; i < count; ++i) {
291 bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];
293 #if LCD_BPP == LCD_MONOCHROME
294 sym = (COLOR_MASK(lcd_color_fg) & bits) |
295 (COLOR_MASK(lcd_color_bg) & ~bits);
297 *d++ = rest | (sym >> off);
298 rest = sym << (8-off);
299 #elif LCD_BPP == LCD_COLOR8
300 for (c = 0; c < 8; ++c) {
301 *d++ = (bits & 0x80) ?
302 lcd_color_fg : lcd_color_bg;
305 #elif LCD_BPP == LCD_COLOR16
306 for (c = 0; c < 8; ++c) {
307 *d++ = (bits & 0x80) ?
308 lcd_color_fg : lcd_color_bg;
313 #if LCD_BPP == LCD_MONOCHROME
314 *d = rest | (*d & ((1 << (8-off)) - 1));
319 /*----------------------------------------------------------------------*/
321 static inline void lcd_puts_xy(ushort x, ushort y, uchar *s)
323 lcd_drawchars(x, y, s, strlen((char *)s));
326 /*----------------------------------------------------------------------*/
328 static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
330 lcd_drawchars(x, y, &c, 1);
333 /************************************************************************/
334 /** Small utility to check that you got the colours right */
335 /************************************************************************/
336 #ifdef LCD_TEST_PATTERN
341 static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
342 CONSOLE_COLOR_RED, CONSOLE_COLOR_GREEN, CONSOLE_COLOR_YELLOW,
343 CONSOLE_COLOR_BLUE, CONSOLE_COLOR_MAGENTA, CONSOLE_COLOR_CYAN,
346 static void test_pattern(void)
348 ushort v_max = panel_info.vl_row;
349 ushort h_max = panel_info.vl_col;
350 ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
351 ushort h_step = (h_max + N_BLK_HOR - 1) / N_BLK_HOR;
353 uchar *pix = (uchar *)lcd_base;
355 printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
356 h_max, v_max, h_step, v_step);
358 /* WARNING: Code silently assumes 8bit/pixel */
359 for (v = 0; v < v_max; ++v) {
360 uchar iy = v / v_step;
361 for (h = 0; h < h_max; ++h) {
362 uchar ix = N_BLK_HOR * iy + (h/h_step);
363 *pix++ = test_colors[ix];
367 #endif /* LCD_TEST_PATTERN */
370 /************************************************************************/
371 /* ** GENERIC Initialization Routines */
372 /************************************************************************/
374 int lcd_get_size(int *line_length)
376 *line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
377 return *line_length * panel_info.vl_row;
380 int drv_lcd_init (void)
382 struct stdio_dev lcddev;
385 lcd_base = (void *)(gd->fb_base);
387 lcd_get_size(&lcd_line_length);
389 lcd_init(lcd_base); /* LCD initialization */
391 /* Device initialization */
392 memset(&lcddev, 0, sizeof(lcddev));
394 strcpy(lcddev.name, "lcd");
395 lcddev.ext = 0; /* No extensions */
396 lcddev.flags = DEV_FLAGS_OUTPUT; /* Output only */
397 lcddev.putc = lcd_putc; /* 'putc' function */
398 lcddev.puts = lcd_puts; /* 'puts' function */
400 rc = stdio_register (&lcddev);
402 return (rc == 0) ? 1 : rc;
405 /*----------------------------------------------------------------------*/
408 #if LCD_BPP == LCD_MONOCHROME
409 /* Setting the palette */
412 #elif LCD_BPP == LCD_COLOR8
413 /* Setting the palette */
414 lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
415 lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
416 lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
417 lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
418 lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
419 lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
420 lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
421 lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
422 lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
425 #ifndef CONFIG_SYS_WHITE_ON_BLACK
426 lcd_setfgcolor(CONSOLE_COLOR_BLACK);
427 lcd_setbgcolor(CONSOLE_COLOR_WHITE);
429 lcd_setfgcolor(CONSOLE_COLOR_WHITE);
430 lcd_setbgcolor(CONSOLE_COLOR_BLACK);
431 #endif /* CONFIG_SYS_WHITE_ON_BLACK */
433 #ifdef LCD_TEST_PATTERN
436 /* set framebuffer to background color */
437 memset((char *)lcd_base,
438 COLOR_MASK(lcd_getbgcolor()),
439 lcd_line_length*panel_info.vl_row);
441 /* Paint the logo and retrieve LCD base address */
442 debug("[LCD] Drawing the logo...\n");
443 lcd_console_address = lcd_logo ();
450 static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
458 cls, 1, 1, do_lcd_clear,
463 /*----------------------------------------------------------------------*/
465 static int lcd_init(void *lcdbase)
467 /* Initialize the lcd controller */
468 debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
470 lcd_ctrl_init(lcdbase);
475 /* Initialize the console */
477 #ifdef CONFIG_LCD_INFO_BELOW_LOGO
478 console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
480 console_row = 1; /* leave 1 blank line below logo */
487 /************************************************************************/
488 /* ** ROM capable initialization part - needed to reserve FB memory */
489 /************************************************************************/
491 * This is called early in the system initialization to grab memory
492 * for the LCD controller.
493 * Returns new address for monitor, after reserving LCD buffer memory
495 * Note that this is running from ROM, so no write access to global data.
497 ulong lcd_setmem(ulong addr)
502 debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
503 panel_info.vl_row, NBITS(panel_info.vl_bpix));
505 size = lcd_get_size(&line_length);
507 /* Round up to nearest full page, or MMU section if defined */
508 size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
509 addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
511 /* Allocate pages for the frame buffer. */
514 debug("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
519 /*----------------------------------------------------------------------*/
521 static void lcd_setfgcolor(int color)
523 lcd_color_fg = color;
526 /*----------------------------------------------------------------------*/
528 static void lcd_setbgcolor(int color)
530 lcd_color_bg = color;
533 /*----------------------------------------------------------------------*/
535 #ifdef NOT_USED_SO_FAR
536 static int lcd_getfgcolor(void)
540 #endif /* NOT_USED_SO_FAR */
542 /*----------------------------------------------------------------------*/
544 static int lcd_getbgcolor(void)
549 /*----------------------------------------------------------------------*/
551 /************************************************************************/
552 /* ** Chipset depending Bitmap / Logo stuff... */
553 /************************************************************************/
554 static inline ushort *configuration_get_cmap(void)
556 #if defined CONFIG_CPU_PXA
557 struct pxafb_info *fbi = &panel_info.pxa;
558 return (ushort *)fbi->palette;
559 #elif defined(CONFIG_MPC823)
560 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
561 cpm8xx_t *cp = &(immr->im_cpm);
562 return (ushort *)&(cp->lcd_cmap[255 * sizeof(ushort)]);
563 #elif defined(CONFIG_ATMEL_LCD)
564 return (ushort *)(panel_info.mmio + ATMEL_LCDC_LUT(0));
565 #elif !defined(CONFIG_ATMEL_HLCD) && !defined(CONFIG_EXYNOS_FB)
566 return panel_info.cmap;
568 #if defined(CONFIG_LCD_LOGO)
569 return bmp_logo_palette;
576 #ifdef CONFIG_LCD_LOGO
577 void bitmap_plot(int x, int y)
579 #ifdef CONFIG_ATMEL_LCD
580 uint *cmap = (uint *)bmp_logo_palette;
582 ushort *cmap = (ushort *)bmp_logo_palette;
588 #if defined(CONFIG_MPC823)
589 immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
590 cpm8xx_t *cp = &(immr->im_cpm);
593 debug("Logo: width %d height %d colors %d cmap %d\n",
594 BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
595 ARRAY_SIZE(bmp_logo_palette));
597 bmap = &bmp_logo_bitmap[0];
598 fb = (uchar *)(lcd_base + y * lcd_line_length + x);
600 if (NBITS(panel_info.vl_bpix) < 12) {
601 /* Leave room for default color map
602 * default case: generic system with no cmap (most likely 16bpp)
603 * cmap was set to the source palette, so no change is done.
604 * This avoids even more ifdefs in the next stanza
606 #if defined(CONFIG_MPC823)
607 cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
608 #elif defined(CONFIG_ATMEL_LCD)
609 cmap = (uint *)configuration_get_cmap();
611 cmap = configuration_get_cmap();
617 for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
618 ushort colreg = bmp_logo_palette[i];
619 #ifdef CONFIG_ATMEL_LCD
621 #ifdef CONFIG_ATMEL_LCD_BGR555
622 lut_entry = ((colreg & 0x000F) << 11) |
623 ((colreg & 0x00F0) << 2) |
624 ((colreg & 0x0F00) >> 7);
625 #else /* CONFIG_ATMEL_LCD_RGB565 */
626 lut_entry = ((colreg & 0x000F) << 1) |
627 ((colreg & 0x00F0) << 3) |
628 ((colreg & 0x0F00) << 4);
630 *(cmap + BMP_LOGO_OFFSET) = lut_entry;
632 #else /* !CONFIG_ATMEL_LCD */
633 #ifdef CONFIG_SYS_INVERT_COLORS
634 *cmap++ = 0xffff - colreg;
638 #endif /* CONFIG_ATMEL_LCD */
643 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
644 memcpy(fb, bmap, BMP_LOGO_WIDTH);
645 bmap += BMP_LOGO_WIDTH;
646 fb += panel_info.vl_col;
649 else { /* true color mode */
651 fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
652 for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
653 for (j = 0; j < BMP_LOGO_WIDTH; j++) {
654 col16 = bmp_logo_palette[(bmap[j]-16)];
656 ((col16 & 0x000F) << 1) |
657 ((col16 & 0x00F0) << 3) |
658 ((col16 & 0x0F00) << 4);
660 bmap += BMP_LOGO_WIDTH;
661 fb16 += panel_info.vl_col;
669 static inline void bitmap_plot(int x, int y) {}
670 #endif /* CONFIG_LCD_LOGO */
672 /*----------------------------------------------------------------------*/
673 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
675 * Display the BMP file located at address bmp_image.
679 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
680 #define BMP_ALIGN_CENTER 0x7FFF
682 static void splash_align_axis(int *axis, unsigned long panel_size,
683 unsigned long picture_size)
685 unsigned long panel_picture_delta = panel_size - picture_size;
686 unsigned long axis_alignment;
688 if (*axis == BMP_ALIGN_CENTER)
689 axis_alignment = panel_picture_delta / 2;
691 axis_alignment = panel_picture_delta + *axis + 1;
695 *axis = max(0, axis_alignment);
699 #if defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
700 #define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
702 #define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
705 #if defined(CONFIG_BMP_16BPP)
706 #if defined(CONFIG_ATMEL_LCD_BGR555)
707 static inline void fb_put_word(uchar **fb, uchar **from)
709 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
710 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
714 static inline void fb_put_word(uchar **fb, uchar **from)
716 *(*fb)++ = *(*from)++;
717 *(*fb)++ = *(*from)++;
720 #endif /* CONFIG_BMP_16BPP */
722 int lcd_display_bitmap(ulong bmp_image, int x, int y)
724 #if !defined(CONFIG_MCC200)
727 ushort *cmap_base = NULL;
730 bmp_image_t *bmp=(bmp_image_t *)bmp_image;
733 unsigned long width, height, byte_width;
734 unsigned long pwidth = panel_info.vl_col;
735 unsigned colors, bpix, bmp_bpix;
737 if (!bmp || !((bmp->header.signature[0] == 'B') &&
738 (bmp->header.signature[1] == 'M'))) {
739 printf("Error: no valid bmp image at %lx\n", bmp_image);
744 width = le32_to_cpu(bmp->header.width);
745 height = le32_to_cpu(bmp->header.height);
746 bmp_bpix = le16_to_cpu(bmp->header.bit_count);
747 colors = 1 << bmp_bpix;
749 bpix = NBITS(panel_info.vl_bpix);
751 if ((bpix != 1) && (bpix != 8) && (bpix != 16) && (bpix != 32)) {
752 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
758 /* We support displaying 8bpp BMPs on 16bpp LCDs */
759 if (bpix != bmp_bpix && (bmp_bpix != 8 || bpix != 16 || bpix != 32)) {
760 printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
762 le16_to_cpu(bmp->header.bit_count));
767 debug("Display-bmp: %d x %d with %d colors\n",
768 (int)width, (int)height, (int)colors);
770 #if !defined(CONFIG_MCC200)
771 /* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
773 cmap = configuration_get_cmap();
777 for (i = 0; i < colors; ++i) {
778 bmp_color_table_entry_t cte = bmp->color_table[i];
779 #if !defined(CONFIG_ATMEL_LCD)
781 ( ((cte.red) << 8) & 0xf800) |
782 ( ((cte.green) << 3) & 0x07e0) |
783 ( ((cte.blue) >> 3) & 0x001f) ;
784 #ifdef CONFIG_SYS_INVERT_COLORS
785 *cmap = 0xffff - colreg;
789 #if defined(CONFIG_MPC823)
794 #else /* CONFIG_ATMEL_LCD */
795 lcd_setcolreg(i, cte.red, cte.green, cte.blue);
802 * BMP format for Monochrome assumes that the state of a
803 * pixel is described on a per Bit basis, not per Byte.
804 * So, in case of Monochrome BMP we should align widths
805 * on a byte boundary and convert them from Bit to Byte
807 * Probably, PXA250 and MPC823 process 1bpp BMP images in
808 * their own ways, so make the converting to be MCC200
811 #if defined(CONFIG_MCC200)
813 width = ((width + 7) & ~7) >> 3;
814 x = ((x + 7) & ~7) >> 3;
815 pwidth= ((pwidth + 7) & ~7) >> 3;
819 padded_line = (width&0x3) ? ((width&~0x3)+4) : (width);
821 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
822 splash_align_axis(&x, pwidth, width);
823 splash_align_axis(&y, panel_info.vl_row, height);
824 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
826 if ((x + width) > pwidth)
828 if ((y + height) > panel_info.vl_row)
829 height = panel_info.vl_row - y;
831 bmap = (uchar *)bmp + le32_to_cpu(bmp->header.data_offset);
832 fb = (uchar *) (lcd_base +
833 (y + height - 1) * lcd_line_length + x * bpix / 8);
836 case 1: /* pass through */
841 byte_width = width * 2;
843 for (i = 0; i < height; ++i) {
845 for (j = 0; j < width; j++) {
847 FB_PUT_BYTE(fb, bmap);
849 *(uint16_t *)fb = cmap_base[*(bmap++)];
850 fb += sizeof(uint16_t) / sizeof(*fb);
853 bmap += (width - padded_line);
854 fb -= (byte_width + lcd_line_length);
858 #if defined(CONFIG_BMP_16BPP)
860 for (i = 0; i < height; ++i) {
862 for (j = 0; j < width; j++)
863 fb_put_word(&fb, &bmap);
865 bmap += (padded_line - width) * 2;
866 fb -= (width * 2 + lcd_line_length);
869 #endif /* CONFIG_BMP_16BPP */
871 #if defined(CONFIG_BMP_32BPP)
873 for (i = 0; i < height; ++i) {
874 for (j = 0; j < width; j++) {
880 fb -= (lcd_line_length + width * (bpix / 8));
883 #endif /* CONFIG_BMP_32BPP */
893 static void *lcd_logo(void)
895 #ifdef CONFIG_SPLASH_SCREEN
898 static int do_splash = 1;
900 if (do_splash && (s = getenv("splashimage")) != NULL) {
904 addr = simple_strtoul (s, NULL, 16);
905 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
906 s = getenv("splashpos");
909 x = BMP_ALIGN_CENTER;
911 x = simple_strtol(s, NULL, 0);
913 s = strchr(s + 1, ',');
916 y = BMP_ALIGN_CENTER;
918 y = simple_strtol (s + 1, NULL, 0);
921 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
923 if (bmp_display(addr, x, y) == 0)
924 return (void *)lcd_base;
926 #endif /* CONFIG_SPLASH_SCREEN */
930 #ifdef CONFIG_LCD_INFO
931 console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
932 console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
933 lcd_show_board_info();
934 #endif /* CONFIG_LCD_INFO */
936 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
937 return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
939 return (void *)lcd_base;
940 #endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
943 /************************************************************************/
944 /************************************************************************/