lcd.c 26.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
 * Common LCD routines for supported CPUs
 *
 * (C) Copyright 2001-2002
 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

/************************************************************************/
/* ** HEADER FILES							*/
/************************************************************************/

/* #define DEBUG */

#include <config.h>
#include <common.h>
#include <command.h>
#include <stdarg.h>
36 37
#include <search.h>
#include <env_callback.h>
38
#include <linux/types.h>
39
#include <stdio_dev.h>
40 41 42 43
#if defined(CONFIG_POST)
#include <post.h>
#endif
#include <lcd.h>
W
wdenk 已提交
44
#include <watchdog.h>
45

46 47 48
#if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
	defined(CONFIG_CPU_MONAHANS)
#define CONFIG_CPU_PXA
49 50 51 52 53 54 55
#include <asm/byteorder.h>
#endif

#if defined(CONFIG_MPC823)
#include <lcdvideo.h>
#endif

S
Stelian Pop 已提交
56 57 58 59
#if defined(CONFIG_ATMEL_LCD)
#include <atmel_lcdc.h>
#endif

60 61 62 63
/************************************************************************/
/* ** FONT DATA								*/
/************************************************************************/
#include <video_font.h>		/* Get font data, width and height	*/
64
#include <video_font_data.h>
65

W
wdenk 已提交
66 67 68 69 70
/************************************************************************/
/* ** LOGO DATA								*/
/************************************************************************/
#ifdef CONFIG_LCD_LOGO
# include <bmp_logo.h>		/* Get logo data, width and height	*/
71
# include <bmp_logo_data.h>
A
Alessandro Rubini 已提交
72
# if (CONSOLE_COLOR_WHITE >= BMP_LOGO_OFFSET) && (LCD_BPP != LCD_COLOR16)
W
wdenk 已提交
73 74 75
#  error Default Color Map overlaps with Logo Color Map
# endif
#endif
76

77 78 79 80
#ifndef CONFIG_LCD_ALIGNMENT
#define CONFIG_LCD_ALIGNMENT PAGE_SIZE
#endif

81 82 83 84 85
/* By default we scroll by a single line */
#ifndef CONFIG_CONSOLE_SCROLL_LINES
#define CONFIG_CONSOLE_SCROLL_LINES 1
#endif

86 87
DECLARE_GLOBAL_DATA_PTR;

88 89
ulong lcd_setmem (ulong addr);

90 91 92
static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
static inline void lcd_puts_xy(ushort x, ushort y, uchar *s);
static inline void lcd_putc_xy(ushort x, ushort y, uchar  c);
93

94
static int lcd_init(void *lcdbase);
95 96 97

static void *lcd_logo (void);

98 99 100
static int lcd_getbgcolor(void);
static void lcd_setfgcolor(int color);
static void lcd_setbgcolor(int color);
101 102 103

char lcd_is_enabled = 0;

104 105 106
static char lcd_flush_dcache;	/* 1 to flush dcache after each lcd update */


107
#ifdef	NOT_USED_SO_FAR
108
static void lcd_getcolreg(ushort regno,
109
				ushort *red, ushort *green, ushort *blue);
110
static int lcd_getfgcolor(void);
111 112 113 114
#endif	/* NOT_USED_SO_FAR */

/************************************************************************/

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
/* Flush LCD activity to the caches */
void lcd_sync(void)
{
	/*
	 * flush_dcache_range() is declared in common.h but it seems that some
	 * architectures do not actually implement it. Is there a way to find
	 * out whether it exists? For now, ARM is safe.
	 */
#if defined(CONFIG_ARM) && !defined(CONFIG_SYS_DCACHE_OFF)
	int line_length;

	if (lcd_flush_dcache)
		flush_dcache_range((u32)lcd_base,
			(u32)(lcd_base + lcd_get_size(&line_length)));
#endif
}

void lcd_set_flush_dcache(int flush)
{
	lcd_flush_dcache = (flush != 0);
}

137 138
/*----------------------------------------------------------------------*/

139
static void console_scrollup(void)
140
{
141 142 143 144 145 146 147 148 149 150 151
	const int rows = CONFIG_CONSOLE_SCROLL_LINES;

	/* Copy up rows ignoring those that will be overwritten */
	memcpy(CONSOLE_ROW_FIRST,
	       lcd_console_address + CONSOLE_ROW_SIZE * rows,
	       CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows);

	/* Clear the last rows */
	memset(lcd_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows,
		COLOR_MASK(lcd_color_bg),
	       CONSOLE_ROW_SIZE * rows);
152

153
	lcd_sync();
154
	console_row -= rows;
155 156 157 158
}

/*----------------------------------------------------------------------*/

159
static inline void console_back(void)
160 161 162 163 164 165 166 167
{
	if (--console_col < 0) {
		console_col = CONSOLE_COLS-1 ;
		if (--console_row < 0) {
			console_row = 0;
		}
	}

168 169
	lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
		console_row * VIDEO_FONT_HEIGHT, ' ');
170 171 172 173
}

/*----------------------------------------------------------------------*/

174
static inline void console_newline(void)
175 176 177 178 179 180 181
{
	++console_row;
	console_col = 0;

	/* Check if we need to scroll the terminal */
	if (console_row >= CONSOLE_ROWS) {
		/* Scroll everything up */
182
		console_scrollup();
183 184
	} else {
		lcd_sync();
185 186 187 188 189
	}
}

/*----------------------------------------------------------------------*/

190
void lcd_putc(const char c)
191 192 193
{
	if (!lcd_is_enabled) {
		serial_putc(c);
194

195 196 197 198
		return;
	}

	switch (c) {
199 200
	case '\r':
		console_col = 0;
201

202 203 204
		return;
	case '\n':
		console_newline();
205

206
		return;
207
	case '\t':	/* Tab (8 chars alignment) */
208 209
		console_col +=  8;
		console_col &= ~7;
210

211 212
		if (console_col >= CONSOLE_COLS)
			console_newline();
213

214 215 216
		return;
	case '\b':
		console_back();
217

218 219 220 221 222 223
		return;
	default:
		lcd_putc_xy(console_col * VIDEO_FONT_WIDTH,
			console_row * VIDEO_FONT_HEIGHT, c);
		if (++console_col >= CONSOLE_COLS)
			console_newline();
224 225 226 227 228
	}
}

/*----------------------------------------------------------------------*/

229
void lcd_puts(const char *s)
230 231
{
	if (!lcd_is_enabled) {
232 233
		serial_puts(s);

234 235 236 237
		return;
	}

	while (*s) {
238
		lcd_putc(*s++);
239
	}
240
	lcd_sync();
241 242
}

H
Haavard Skinnemoen 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256
/*----------------------------------------------------------------------*/

void lcd_printf(const char *fmt, ...)
{
	va_list args;
	char buf[CONFIG_SYS_PBSIZE];

	va_start(args, fmt);
	vsprintf(buf, fmt, args);
	va_end(args);

	lcd_puts(buf);
}

257 258 259 260
/************************************************************************/
/* ** Low-Level Graphics Routines					*/
/************************************************************************/

261
static void lcd_drawchars(ushort x, ushort y, uchar *str, int count)
262 263
{
	uchar *dest;
M
Marek Vasut 已提交
264 265
	ushort row;

266 267 268 269
#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
	y += BMP_LOGO_HEIGHT;
#endif

M
Marek Vasut 已提交
270 271 272
#if LCD_BPP == LCD_MONOCHROME
	ushort off  = x * (1 << LCD_BPP) % 8;
#endif
273 274 275

	dest = (uchar *)(lcd_base + y * lcd_line_length + x * (1 << LCD_BPP) / 8);

276
	for (row = 0; row < VIDEO_FONT_HEIGHT; ++row, dest += lcd_line_length) {
277 278
		uchar *s = str;
		int i;
A
Alessandro Rubini 已提交
279 280 281 282 283
#if LCD_BPP == LCD_COLOR16
		ushort *d = (ushort *)dest;
#else
		uchar *d = dest;
#endif
284 285 286 287 288

#if LCD_BPP == LCD_MONOCHROME
		uchar rest = *d & -(1 << (8-off));
		uchar sym;
#endif
289
		for (i = 0; i < count; ++i) {
290 291 292 293 294 295 296
			uchar c, bits;

			c = *s++;
			bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row];

#if LCD_BPP == LCD_MONOCHROME
			sym  = (COLOR_MASK(lcd_color_fg) & bits) |
297
				(COLOR_MASK(lcd_color_bg) & ~bits);
298 299 300 301

			*d++ = rest | (sym >> off);
			rest = sym << (8-off);
#elif LCD_BPP == LCD_COLOR8
302
			for (c = 0; c < 8; ++c) {
303 304 305 306 307
				*d++ = (bits & 0x80) ?
						lcd_color_fg : lcd_color_bg;
				bits <<= 1;
			}
#elif LCD_BPP == LCD_COLOR16
308
			for (c = 0; c < 8; ++c) {
309 310 311 312 313 314 315 316 317 318 319 320 321 322
				*d++ = (bits & 0x80) ?
						lcd_color_fg : lcd_color_bg;
				bits <<= 1;
			}
#endif
		}
#if LCD_BPP == LCD_MONOCHROME
		*d  = rest | (*d & ((1 << (8-off)) - 1));
#endif
	}
}

/*----------------------------------------------------------------------*/

323
static inline void lcd_puts_xy(ushort x, ushort y, uchar *s)
324
{
325
	lcd_drawchars(x, y, s, strlen((char *)s));
326 327 328 329
}

/*----------------------------------------------------------------------*/

330
static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
331
{
332
	lcd_drawchars(x, y, &c, 1);
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
}

/************************************************************************/
/**  Small utility to check that you got the colours right		*/
/************************************************************************/
#ifdef LCD_TEST_PATTERN

#define	N_BLK_VERT	2
#define	N_BLK_HOR	3

static int test_colors[N_BLK_HOR*N_BLK_VERT] = {
	CONSOLE_COLOR_RED,	CONSOLE_COLOR_GREEN,	CONSOLE_COLOR_YELLOW,
	CONSOLE_COLOR_BLUE,	CONSOLE_COLOR_MAGENTA,	CONSOLE_COLOR_CYAN,
};

348
static void test_pattern(void)
349 350 351 352 353 354 355 356
{
	ushort v_max  = panel_info.vl_row;
	ushort h_max  = panel_info.vl_col;
	ushort v_step = (v_max + N_BLK_VERT - 1) / N_BLK_VERT;
	ushort h_step = (h_max + N_BLK_HOR  - 1) / N_BLK_HOR;
	ushort v, h;
	uchar *pix = (uchar *)lcd_base;

357
	printf("[LCD] Test Pattern: %d x %d [%d x %d]\n",
358 359 360
		h_max, v_max, h_step, v_step);

	/* WARNING: Code silently assumes 8bit/pixel */
361
	for (v = 0; v < v_max; ++v) {
362
		uchar iy = v / v_step;
363
		for (h = 0; h < h_max; ++h) {
364 365 366 367 368 369 370 371 372 373 374 375
			uchar ix = N_BLK_HOR * iy + (h/h_step);
			*pix++ = test_colors[ix];
		}
	}
}
#endif /* LCD_TEST_PATTERN */


/************************************************************************/
/* ** GENERIC Initialization Routines					*/
/************************************************************************/

376 377 378 379 380 381
int lcd_get_size(int *line_length)
{
	*line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;
	return *line_length * panel_info.vl_row;
}

382 383
int drv_lcd_init (void)
{
384
	struct stdio_dev lcddev;
385 386 387 388
	int rc;

	lcd_base = (void *)(gd->fb_base);

389
	lcd_get_size(&lcd_line_length);
390

391
	lcd_init(lcd_base);		/* LCD initialization */
392 393

	/* Device initialization */
394
	memset(&lcddev, 0, sizeof(lcddev));
395

396
	strcpy(lcddev.name, "lcd");
397 398 399 400 401
	lcddev.ext   = 0;			/* No extensions */
	lcddev.flags = DEV_FLAGS_OUTPUT;	/* Output only */
	lcddev.putc  = lcd_putc;		/* 'putc' function */
	lcddev.puts  = lcd_puts;		/* 'puts' function */

402
	rc = stdio_register (&lcddev);
403 404 405 406 407

	return (rc == 0) ? 1 : rc;
}

/*----------------------------------------------------------------------*/
408
void lcd_clear(void)
409 410 411 412 413 414 415
{
#if LCD_BPP == LCD_MONOCHROME
	/* Setting the palette */
	lcd_initcolregs();

#elif LCD_BPP == LCD_COLOR8
	/* Setting the palette */
416 417 418 419 420 421 422 423 424
	lcd_setcolreg(CONSOLE_COLOR_BLACK, 0, 0, 0);
	lcd_setcolreg(CONSOLE_COLOR_RED, 0xFF, 0, 0);
	lcd_setcolreg(CONSOLE_COLOR_GREEN, 0, 0xFF, 0);
	lcd_setcolreg(CONSOLE_COLOR_YELLOW, 0xFF, 0xFF, 0);
	lcd_setcolreg(CONSOLE_COLOR_BLUE, 0, 0, 0xFF);
	lcd_setcolreg(CONSOLE_COLOR_MAGENTA, 0xFF, 0, 0xFF);
	lcd_setcolreg(CONSOLE_COLOR_CYAN, 0, 0xFF, 0xFF);
	lcd_setcolreg(CONSOLE_COLOR_GREY, 0xAA, 0xAA, 0xAA);
	lcd_setcolreg(CONSOLE_COLOR_WHITE, 0xFF, 0xFF, 0xFF);
425 426
#endif

427
#ifndef CONFIG_SYS_WHITE_ON_BLACK
428 429
	lcd_setfgcolor(CONSOLE_COLOR_BLACK);
	lcd_setbgcolor(CONSOLE_COLOR_WHITE);
430
#else
431 432
	lcd_setfgcolor(CONSOLE_COLOR_WHITE);
	lcd_setbgcolor(CONSOLE_COLOR_BLACK);
433
#endif	/* CONFIG_SYS_WHITE_ON_BLACK */
434 435 436 437 438

#ifdef	LCD_TEST_PATTERN
	test_pattern();
#else
	/* set framebuffer to background color */
439
	memset((char *)lcd_base,
440 441 442 443
		COLOR_MASK(lcd_getbgcolor()),
		lcd_line_length*panel_info.vl_row);
#endif
	/* Paint the logo and retrieve LCD base address */
444
	debug("[LCD] Drawing the logo...\n");
445 446 447 448
	lcd_console_address = lcd_logo ();

	console_col = 0;
	console_row = 0;
449 450 451 452 453 454 455 456
	lcd_sync();
}

static int do_lcd_clear(cmd_tbl_t *cmdtp, int flag, int argc,
			char *const argv[])
{
	lcd_clear();
	return 0;
457 458 459
}

U_BOOT_CMD(
460
	cls,	1,	1,	do_lcd_clear,
P
Peter Tyser 已提交
461
	"clear screen",
W
Wolfgang Denk 已提交
462
	""
463 464 465 466
);

/*----------------------------------------------------------------------*/

467
static int lcd_init(void *lcdbase)
468 469
{
	/* Initialize the lcd controller */
470
	debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);
471

472
	lcd_ctrl_init(lcdbase);
473
	lcd_is_enabled = 1;
474
	lcd_clear();
475 476 477 478
	lcd_enable ();

	/* Initialize the console */
	console_col = 0;
W
wdenk 已提交
479
#ifdef CONFIG_LCD_INFO_BELOW_LOGO
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
	console_row = 7 + BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT;
#else
	console_row = 1;	/* leave 1 blank line below logo */
#endif

	return 0;
}


/************************************************************************/
/* ** ROM capable initialization part - needed to reserve FB memory	*/
/************************************************************************/
/*
 * This is called early in the system initialization to grab memory
 * for the LCD controller.
 * Returns new address for monitor, after reserving LCD buffer memory
 *
 * Note that this is running from ROM, so no write access to global data.
 */
499
ulong lcd_setmem(ulong addr)
500 501
{
	ulong size;
502
	int line_length;
503

504 505
	debug("LCD panel info: %d x %d, %d bit/pix\n", panel_info.vl_col,
		panel_info.vl_row, NBITS(panel_info.vl_bpix));
506

507
	size = lcd_get_size(&line_length);
508

509 510 511
	/* Round up to nearest full page, or MMU section if defined */
	size = ALIGN(size, CONFIG_LCD_ALIGNMENT);
	addr = ALIGN(addr - CONFIG_LCD_ALIGNMENT + 1, CONFIG_LCD_ALIGNMENT);
512 513 514 515

	/* Allocate pages for the frame buffer. */
	addr -= size;

516
	debug("Reserving %ldk for LCD Framebuffer at: %08lx\n", size>>10, addr);
517

518
	return addr;
519 520 521 522
}

/*----------------------------------------------------------------------*/

523
static void lcd_setfgcolor(int color)
524
{
S
Stelian Pop 已提交
525
	lcd_color_fg = color;
526 527 528 529
}

/*----------------------------------------------------------------------*/

530
static void lcd_setbgcolor(int color)
531
{
S
Stelian Pop 已提交
532
	lcd_color_bg = color;
533 534 535 536 537
}

/*----------------------------------------------------------------------*/

#ifdef	NOT_USED_SO_FAR
538
static int lcd_getfgcolor(void)
539 540 541 542 543 544 545
{
	return lcd_color_fg;
}
#endif	/* NOT_USED_SO_FAR */

/*----------------------------------------------------------------------*/

546
static int lcd_getbgcolor(void)
547 548 549 550 551 552 553 554 555
{
	return lcd_color_bg;
}

/*----------------------------------------------------------------------*/

/************************************************************************/
/* ** Chipset depending Bitmap / Logo stuff...                          */
/************************************************************************/
556 557 558 559 560 561 562 563 564 565 566
static inline ushort *configuration_get_cmap(void)
{
#if defined CONFIG_CPU_PXA
	struct pxafb_info *fbi = &panel_info.pxa;
	return (ushort *)fbi->palette;
#elif defined(CONFIG_MPC823)
	immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
	cpm8xx_t *cp = &(immr->im_cpm);
	return (ushort *)&(cp->lcd_cmap[255 * sizeof(ushort)]);
#elif defined(CONFIG_ATMEL_LCD)
	return (ushort *)(panel_info.mmio + ATMEL_LCDC_LUT(0));
567 568
#elif !defined(CONFIG_ATMEL_HLCD) && !defined(CONFIG_EXYNOS_FB)
	return panel_info.cmap;
569
#else
570 571 572 573 574
#if defined(CONFIG_LCD_LOGO)
	return bmp_logo_palette;
#else
	return NULL;
#endif
575 576 577
#endif
}

578
#ifdef CONFIG_LCD_LOGO
579
void bitmap_plot(int x, int y)
580
{
S
Stelian Pop 已提交
581
#ifdef CONFIG_ATMEL_LCD
582
	uint *cmap = (uint *)bmp_logo_palette;
S
Stelian Pop 已提交
583
#else
584
	ushort *cmap = (ushort *)bmp_logo_palette;
S
Stelian Pop 已提交
585
#endif
586 587 588 589
	ushort i, j;
	uchar *bmap;
	uchar *fb;
	ushort *fb16;
590 591 592
#if defined(CONFIG_MPC823)
	immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
	cpm8xx_t *cp = &(immr->im_cpm);
593 594
#endif

595
	debug("Logo: width %d  height %d  colors %d  cmap %d\n",
596
		BMP_LOGO_WIDTH, BMP_LOGO_HEIGHT, BMP_LOGO_COLORS,
597
		ARRAY_SIZE(bmp_logo_palette));
598 599

	bmap = &bmp_logo_bitmap[0];
W
Wolfgang Denk 已提交
600
	fb   = (uchar *)(lcd_base + y * lcd_line_length + x);
601 602

	if (NBITS(panel_info.vl_bpix) < 12) {
603 604 605 606 607 608
		/* Leave room for default color map
		 * default case: generic system with no cmap (most likely 16bpp)
		 * cmap was set to the source palette, so no change is done.
		 * This avoids even more ifdefs in the next stanza
		 */
#if defined(CONFIG_MPC823)
609
		cmap = (ushort *) &(cp->lcd_cmap[BMP_LOGO_OFFSET * sizeof(ushort)]);
S
Stelian Pop 已提交
610
#elif defined(CONFIG_ATMEL_LCD)
611
		cmap = (uint *)configuration_get_cmap();
A
Alessandro Rubini 已提交
612
#else
613
		cmap = configuration_get_cmap();
614 615 616 617 618
#endif

		WATCHDOG_RESET();

		/* Set color map */
619
		for (i = 0; i < ARRAY_SIZE(bmp_logo_palette); ++i) {
620
			ushort colreg = bmp_logo_palette[i];
S
Stelian Pop 已提交
621 622 623 624
#ifdef CONFIG_ATMEL_LCD
			uint lut_entry;
#ifdef CONFIG_ATMEL_LCD_BGR555
			lut_entry = ((colreg & 0x000F) << 11) |
625 626
					((colreg & 0x00F0) <<  2) |
					((colreg & 0x0F00) >>  7);
S
Stelian Pop 已提交
627 628
#else /* CONFIG_ATMEL_LCD_RGB565 */
			lut_entry = ((colreg & 0x000F) << 1) |
629 630
					((colreg & 0x00F0) << 3) |
					((colreg & 0x0F00) << 4);
S
Stelian Pop 已提交
631 632 633 634
#endif
			*(cmap + BMP_LOGO_OFFSET) = lut_entry;
			cmap++;
#else /* !CONFIG_ATMEL_LCD */
635
#ifdef  CONFIG_SYS_INVERT_COLORS
636 637 638 639
			*cmap++ = 0xffff - colreg;
#else
			*cmap++ = colreg;
#endif
S
Stelian Pop 已提交
640
#endif /* CONFIG_ATMEL_LCD */
641 642 643 644
		}

		WATCHDOG_RESET();

645 646
		for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
			memcpy(fb, bmap, BMP_LOGO_WIDTH);
647 648 649 650 651
			bmap += BMP_LOGO_WIDTH;
			fb   += panel_info.vl_col;
		}
	}
	else { /* true color mode */
A
Alessandro Rubini 已提交
652
		u16 col16;
653
		fb16 = (ushort *)(lcd_base + y * lcd_line_length + x);
654 655
		for (i = 0; i < BMP_LOGO_HEIGHT; ++i) {
			for (j = 0; j < BMP_LOGO_WIDTH; j++) {
A
Alessandro Rubini 已提交
656 657 658 659 660
				col16 = bmp_logo_palette[(bmap[j]-16)];
				fb16[j] =
					((col16 & 0x000F) << 1) |
					((col16 & 0x00F0) << 3) |
					((col16 & 0x0F00) << 4);
661 662 663 664 665 666 667
				}
			bmap += BMP_LOGO_WIDTH;
			fb16 += panel_info.vl_col;
		}
	}

	WATCHDOG_RESET();
668
	lcd_sync();
669
}
670 671
#else
static inline void bitmap_plot(int x, int y) {}
672 673 674
#endif /* CONFIG_LCD_LOGO */

/*----------------------------------------------------------------------*/
675
#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
676 677 678 679
/*
 * Display the BMP file located at address bmp_image.
 * Only uncompressed.
 */
680 681 682

#ifdef CONFIG_SPLASH_SCREEN_ALIGN
#define BMP_ALIGN_CENTER	0x7FFF
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698

static void splash_align_axis(int *axis, unsigned long panel_size,
					unsigned long picture_size)
{
	unsigned long panel_picture_delta = panel_size - picture_size;
	unsigned long axis_alignment;

	if (*axis == BMP_ALIGN_CENTER)
		axis_alignment = panel_picture_delta / 2;
	else if (*axis < 0)
		axis_alignment = panel_picture_delta + *axis + 1;
	else
		return;

	*axis = max(0, axis_alignment);
}
699 700
#endif

701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832

#ifdef CONFIG_LCD_BMP_RLE8

#define BMP_RLE8_ESCAPE		0
#define BMP_RLE8_EOL		0
#define BMP_RLE8_EOBMP		1
#define BMP_RLE8_DELTA		2

static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap,
				  int cnt)
{
	while (cnt > 0) {
		*(*fbp)++ = cmap[*bmap++];
		cnt--;
	}
}

static void draw_encoded_bitmap(ushort **fbp, ushort c, int cnt)
{
	ushort *fb = *fbp;
	int cnt_8copy = cnt >> 3;

	cnt -= cnt_8copy << 3;
	while (cnt_8copy > 0) {
		*fb++ = c;
		*fb++ = c;
		*fb++ = c;
		*fb++ = c;
		*fb++ = c;
		*fb++ = c;
		*fb++ = c;
		*fb++ = c;
		cnt_8copy--;
	}
	while (cnt > 0) {
		*fb++ = c;
		cnt--;
	}
	(*fbp) = fb;
}

/*
 * Do not call this function directly, must be called from
 * lcd_display_bitmap.
 */
static void lcd_display_rle8_bitmap(bmp_image_t *bmp, ushort *cmap, uchar *fb,
				    int x_off, int y_off)
{
	uchar *bmap;
	ulong width, height;
	ulong cnt, runlen;
	int x, y;
	int decode = 1;

	width = le32_to_cpu(bmp->header.width);
	height = le32_to_cpu(bmp->header.height);
	bmap = (uchar *)bmp + le32_to_cpu(bmp->header.data_offset);

	x = 0;
	y = height - 1;

	while (decode) {
		if (bmap[0] == BMP_RLE8_ESCAPE) {
			switch (bmap[1]) {
			case BMP_RLE8_EOL:
				/* end of line */
				bmap += 2;
				x = 0;
				y--;
				/* 16bpix, 2-byte per pixel, width should *2 */
				fb -= (width * 2 + lcd_line_length);
				break;
			case BMP_RLE8_EOBMP:
				/* end of bitmap */
				decode = 0;
				break;
			case BMP_RLE8_DELTA:
				/* delta run */
				x += bmap[2];
				y -= bmap[3];
				/* 16bpix, 2-byte per pixel, x should *2 */
				fb = (uchar *) (lcd_base + (y + y_off - 1)
					* lcd_line_length + (x + x_off) * 2);
				bmap += 4;
				break;
			default:
				/* unencoded run */
				runlen = bmap[1];
				bmap += 2;
				if (y < height) {
					if (x < width) {
						if (x + runlen > width)
							cnt = width - x;
						else
							cnt = runlen;
						draw_unencoded_bitmap(
							(ushort **)&fb,
							bmap, cmap, cnt);
					}
					x += runlen;
				}
				bmap += runlen;
				if (runlen & 1)
					bmap++;
			}
		} else {
			/* encoded run */
			if (y < height) {
				runlen = bmap[0];
				if (x < width) {
					/* aggregate the same code */
					while (bmap[0] == 0xff &&
					       bmap[2] != BMP_RLE8_ESCAPE &&
					       bmap[1] == bmap[3]) {
						runlen += bmap[2];
						bmap += 2;
					}
					if (x + runlen > width)
						cnt = width - x;
					else
						cnt = runlen;
					draw_encoded_bitmap((ushort **)&fb,
						cmap[bmap[1]], cnt);
				}
				x += runlen;
			}
			bmap += 2;
		}
	}
}
#endif

833
#if defined(CONFIG_MPC823) || defined(CONFIG_MCC200)
834
#define FB_PUT_BYTE(fb, from) *(fb)++ = (255 - *(from)++)
835 836
#else
#define FB_PUT_BYTE(fb, from) *(fb)++ = *(from)++
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
#endif

#if defined(CONFIG_BMP_16BPP)
#if defined(CONFIG_ATMEL_LCD_BGR555)
static inline void fb_put_word(uchar **fb, uchar **from)
{
	*(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03);
	*(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2);
	*from += 2;
}
#else
static inline void fb_put_word(uchar **fb, uchar **from)
{
	*(*fb)++ = *(*from)++;
	*(*fb)++ = *(*from)++;
}
#endif
#endif /* CONFIG_BMP_16BPP */

856 857
int lcd_display_bitmap(ulong bmp_image, int x, int y)
{
858 859 860 861
#if !defined(CONFIG_MCC200)
	ushort *cmap = NULL;
#endif
	ushort *cmap_base = NULL;
862 863 864 865
	ushort i, j;
	uchar *fb;
	bmp_image_t *bmp=(bmp_image_t *)bmp_image;
	uchar *bmap;
866
	ushort padded_width;
867
	unsigned long width, height, byte_width;
868
	unsigned long pwidth = panel_info.vl_col;
869
	unsigned colors, bpix, bmp_bpix;
870

871
	if (!bmp || !((bmp->header.signature[0] == 'B') &&
872 873 874
		(bmp->header.signature[1] == 'M'))) {
		printf("Error: no valid bmp image at %lx\n", bmp_image);

875
		return 1;
876
	}
877

878 879
	width = le32_to_cpu(bmp->header.width);
	height = le32_to_cpu(bmp->header.height);
880 881
	bmp_bpix = le16_to_cpu(bmp->header.bit_count);
	colors = 1 << bmp_bpix;
882 883 884

	bpix = NBITS(panel_info.vl_bpix);

885
	if ((bpix != 1) && (bpix != 8) && (bpix != 16) && (bpix != 32)) {
886 887
		printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
			bpix, bmp_bpix);
888

889 890 891
		return 1;
	}

892
	/* We support displaying 8bpp BMPs on 16bpp LCDs */
893
	if (bpix != bmp_bpix && !(bmp_bpix == 8 && bpix == 16)) {
894 895 896
		printf ("Error: %d bit/pixel mode, but BMP has %d bit/pixel\n",
			bpix,
			le16_to_cpu(bmp->header.bit_count));
897

898 899 900
		return 1;
	}

901
	debug("Display-bmp: %d x %d  with %d colors\n",
902 903
		(int)width, (int)height, (int)colors);

904 905
#if !defined(CONFIG_MCC200)
	/* MCC200 LCD doesn't need CMAP, supports 1bpp b&w only */
906
	if (bmp_bpix == 8) {
907
		cmap = configuration_get_cmap();
908 909
		cmap_base = cmap;

910
		/* Set color map */
911
		for (i = 0; i < colors; ++i) {
912
			bmp_color_table_entry_t cte = bmp->color_table[i];
913
#if !defined(CONFIG_ATMEL_LCD)
914 915
			ushort colreg =
				( ((cte.red)   << 8) & 0xf800) |
916 917
				( ((cte.green) << 3) & 0x07e0) |
				( ((cte.blue)  >> 3) & 0x001f) ;
918
#ifdef CONFIG_SYS_INVERT_COLORS
W
wdenk 已提交
919
			*cmap = 0xffff - colreg;
920
#else
W
wdenk 已提交
921 922
			*cmap = colreg;
#endif
923
#if defined(CONFIG_MPC823)
W
wdenk 已提交
924
			cmap--;
925 926
#else
			cmap++;
927 928 929
#endif
#else /* CONFIG_ATMEL_LCD */
			lcd_setcolreg(i, cte.red, cte.green, cte.blue);
930 931 932
#endif
		}
	}
933
#endif
934

935 936 937 938 939 940
	/*
	 *  BMP format for Monochrome assumes that the state of a
	 * pixel is described on a per Bit basis, not per Byte.
	 *  So, in case of Monochrome BMP we should align widths
	 * on a byte boundary and convert them from Bit to Byte
	 * units.
W
Wolfgang Denk 已提交
941 942
	 *  Probably, PXA250 and MPC823 process 1bpp BMP images in
	 * their own ways, so make the converting to be MCC200
943 944 945
	 * specific.
	 */
#if defined(CONFIG_MCC200)
946
	if (bpix == 1) {
947 948 949 950 951 952
		width = ((width + 7) & ~7) >> 3;
		x     = ((x + 7) & ~7) >> 3;
		pwidth= ((pwidth + 7) & ~7) >> 3;
	}
#endif

953
	padded_width = (width&0x3) ? ((width&~0x3)+4) : (width);
954 955

#ifdef CONFIG_SPLASH_SCREEN_ALIGN
956 957
	splash_align_axis(&x, pwidth, width);
	splash_align_axis(&y, panel_info.vl_row, height);
958 959
#endif /* CONFIG_SPLASH_SCREEN_ALIGN */

960
	if ((x + width) > pwidth)
961
		width = pwidth - x;
962
	if ((y + height) > panel_info.vl_row)
963 964
		height = panel_info.vl_row - y;

965
	bmap = (uchar *)bmp + le32_to_cpu(bmp->header.data_offset);
966
	fb   = (uchar *) (lcd_base +
967
		(y + height - 1) * lcd_line_length + x * bpix / 8);
M
Mark Jackson 已提交
968

969
	switch (bmp_bpix) {
M
Mark Jackson 已提交
970 971
	case 1: /* pass through */
	case 8:
972 973 974 975 976 977 978 979 980 981 982 983
#ifdef CONFIG_LCD_BMP_RLE8
		if (le32_to_cpu(bmp->header.compression) == BMP_BI_RLE8) {
			if (bpix != 16) {
				/* TODO implement render code for bpix != 16 */
				printf("Error: only support 16 bpix");
				return 1;
			}
			lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y);
			break;
		}
#endif

984 985 986 987 988
		if (bpix != 16)
			byte_width = width;
		else
			byte_width = width * 2;

M
Mark Jackson 已提交
989 990
		for (i = 0; i < height; ++i) {
			WATCHDOG_RESET();
991 992
			for (j = 0; j < width; j++) {
				if (bpix != 16) {
993
					FB_PUT_BYTE(fb, bmap);
994 995 996 997 998
				} else {
					*(uint16_t *)fb = cmap_base[*(bmap++)];
					fb += sizeof(uint16_t) / sizeof(*fb);
				}
			}
999
			bmap += (padded_width - width);
1000
			fb   -= (byte_width + lcd_line_length);
M
Mark Jackson 已提交
1001 1002 1003 1004 1005 1006 1007
		}
		break;

#if defined(CONFIG_BMP_16BPP)
	case 16:
		for (i = 0; i < height; ++i) {
			WATCHDOG_RESET();
1008 1009 1010
			for (j = 0; j < width; j++)
				fb_put_word(&fb, &bmap);

1011
			bmap += (padded_width - width) * 2;
M
Mark Jackson 已提交
1012 1013 1014 1015 1016
			fb   -= (width * 2 + lcd_line_length);
		}
		break;
#endif /* CONFIG_BMP_16BPP */

1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
#if defined(CONFIG_BMP_32BPP)
	case 32:
		for (i = 0; i < height; ++i) {
			for (j = 0; j < width; j++) {
				*(fb++) = *(bmap++);
				*(fb++) = *(bmap++);
				*(fb++) = *(bmap++);
				*(fb++) = *(bmap++);
			}
			fb  -= (lcd_line_length + width * (bpix / 8));
		}
		break;
#endif /* CONFIG_BMP_32BPP */
M
Mark Jackson 已提交
1030 1031 1032
	default:
		break;
	};
1033

1034
	lcd_sync();
1035
	return 0;
1036
}
1037
#endif
1038

1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
#ifdef CONFIG_SPLASH_SCREEN_PREPARE
static inline int splash_screen_prepare(void)
{
	return board_splash_screen_prepare();
}
#else
static inline int splash_screen_prepare(void)
{
	return 0;
}
#endif

1051
static void *lcd_logo(void)
1052 1053 1054 1055 1056 1057 1058
{
#ifdef CONFIG_SPLASH_SCREEN
	char *s;
	ulong addr;
	static int do_splash = 1;

	if (do_splash && (s = getenv("splashimage")) != NULL) {
1059
		int x = 0, y = 0;
1060 1061
		do_splash = 0;

1062 1063 1064
		if (splash_screen_prepare())
			return (void *)gd->fb_base;

1065 1066
		addr = simple_strtoul (s, NULL, 16);
#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1067 1068
		s = getenv("splashpos");
		if (s != NULL) {
1069 1070 1071
			if (s[0] == 'm')
				x = BMP_ALIGN_CENTER;
			else
1072
				x = simple_strtol(s, NULL, 0);
1073

1074 1075
			s = strchr(s + 1, ',');
			if (s != NULL) {
1076 1077 1078 1079 1080 1081 1082 1083
				if (s[1] == 'm')
					y = BMP_ALIGN_CENTER;
				else
					y = simple_strtol (s + 1, NULL, 0);
			}
		}
#endif /* CONFIG_SPLASH_SCREEN_ALIGN */

N
Nikita Kiryanov 已提交
1084
		if (bmp_display(addr, x, y) == 0)
1085
			return (void *)lcd_base;
1086 1087 1088
	}
#endif /* CONFIG_SPLASH_SCREEN */

1089
	bitmap_plot(0, 0);
1090

1091 1092 1093 1094 1095
#ifdef CONFIG_LCD_INFO
	console_col = LCD_INFO_X / VIDEO_FONT_WIDTH;
	console_row = LCD_INFO_Y / VIDEO_FONT_HEIGHT;
	lcd_show_board_info();
#endif /* CONFIG_LCD_INFO */
S
Stelian Pop 已提交
1096

W
wdenk 已提交
1097
#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
1098
	return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length);
1099
#else
1100
	return (void *)lcd_base;
W
wdenk 已提交
1101
#endif /* CONFIG_LCD_LOGO && !CONFIG_LCD_INFO_BELOW_LOGO */
1102 1103
}

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
#ifdef CONFIG_SPLASHIMAGE_GUARD
static int on_splashimage(const char *name, const char *value, enum env_op op,
	int flags)
{
	ulong addr;
	int aligned;

	if (op == env_op_delete)
		return 0;

	addr = simple_strtoul(value, NULL, 16);
	/* See README.displaying-bmps */
	aligned = (addr % 4 == 2);
	if (!aligned) {
		printf("Invalid splashimage value. Value must be 16 bit aligned, but not 32 bit aligned\n");
		return -1;
	}

	return 0;
}

U_BOOT_ENV_CALLBACK(splashimage, on_splashimage);
#endif

1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
void lcd_position_cursor(unsigned col, unsigned row)
{
	console_col = min(col, CONSOLE_COLS - 1);
	console_row = min(row, CONSOLE_ROWS - 1);
}

int lcd_get_pixel_width(void)
{
	return panel_info.vl_col;
}

int lcd_get_pixel_height(void)
{
	return panel_info.vl_row;
}

int lcd_get_screen_rows(void)
{
	return CONSOLE_ROWS;
}

int lcd_get_screen_columns(void)
{
	return CONSOLE_COLS;
}

1154 1155
/************************************************************************/
/************************************************************************/