• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2002 ELTEC Elektronik AG
4  * Frank Gottschling <fgottschling@eltec.de>
5  */
6 
7 /*
8  * cfb_console.c
9  *
10  * Color Framebuffer Console driver for 8/15/16/24/32 bits per pixel.
11  *
12  * At the moment only the 8x16 font is tested and the font fore- and
13  * background color is limited to black/white/gray colors. The Linux
14  * logo can be placed in the upper left corner and additional board
15  * information strings (that normally goes to serial port) can be drawn.
16  *
17  * The console driver can use a keyboard interface for character input
18  * but this is deprecated. Only rk51 uses it.
19  *
20  * Character output goes to a memory-mapped video
21  * framebuffer with little or big-endian organisation.
22  * With environment setting 'console=serial' the console i/o can be
23  * forced to serial port.
24  *
25  * The driver uses graphic specific defines/parameters/functions:
26  *
27  * (for SMI LynxE graphic chip)
28  *
29  * VIDEO_FB_LITTLE_ENDIAN     - framebuffer organisation default: big endian
30  * VIDEO_HW_RECTFILL	      - graphic driver supports hardware rectangle fill
31  * VIDEO_HW_BITBLT	      - graphic driver supports hardware bit blt
32  *
33  * Console Parameters are set by graphic drivers global struct:
34  *
35  * VIDEO_VISIBLE_COLS	      - x resolution
36  * VIDEO_VISIBLE_ROWS	      - y resolution
37  * VIDEO_PIXEL_SIZE	      - storage size in byte per pixel
38  * VIDEO_DATA_FORMAT	      - graphical data format GDF
39  * VIDEO_FB_ADRS	      - start of video memory
40  *
41  * VIDEO_KBD_INIT_FCT	      - init function for keyboard
42  * VIDEO_TSTC_FCT	      - keyboard_tstc function
43  * VIDEO_GETC_FCT	      - keyboard_getc function
44  *
45  * CONFIG_VIDEO_LOGO	      - display Linux Logo in upper left corner.
46  *				Use CONFIG_SPLASH_SCREEN_ALIGN with
47  *				environment variable "splashpos" to place
48  *				the logo on other position. In this case
49  *				no CONSOLE_EXTRA_INFO is possible.
50  * CONFIG_VIDEO_BMP_LOGO      - use bmp_logo instead of linux_logo
51  * CONFIG_CONSOLE_EXTRA_INFO  - display additional board information
52  *				strings that normaly goes to serial
53  *				port.  This define requires a board
54  *				specific function:
55  *				video_drawstring (VIDEO_INFO_X,
56  *					VIDEO_INFO_Y + i*VIDEO_FONT_HEIGHT,
57  *					info);
58  *				that fills a info buffer at i=row.
59  *				s.a: board/eltec/bab7xx.
60  *
61  * CONFIG_VIDEO_SW_CURSOR:    - Draws a cursor after the last
62  *				character. No blinking is provided.
63  *				Uses the macros CURSOR_SET and
64  *				CURSOR_OFF.
65  */
66 
67 #include <common.h>
68 #include <cpu_func.h>
69 #include <env.h>
70 #include <fdtdec.h>
71 #include <gzip.h>
72 #include <version.h>
73 #include <malloc.h>
74 #include <video.h>
75 #include <linux/compiler.h>
76 
77 #if defined(CONFIG_VIDEO_MXS)
78 #define VIDEO_FB_16BPP_WORD_SWAP
79 #endif
80 
81 /*
82  * Defines for the MB862xx driver
83  */
84 #ifdef CONFIG_VIDEO_MB862xx
85 
86 #ifdef CONFIG_VIDEO_CORALP
87 #define VIDEO_FB_LITTLE_ENDIAN
88 #endif
89 #ifdef CONFIG_VIDEO_MB862xx_ACCEL
90 #define VIDEO_HW_RECTFILL
91 #define VIDEO_HW_BITBLT
92 #endif
93 #endif
94 
95 /*
96  * Defines for the i.MX31 driver (mx3fb.c)
97  */
98 #if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
99 #define VIDEO_FB_16BPP_WORD_SWAP
100 #endif
101 
102 /*
103  * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
104  */
105 #include <video_fb.h>
106 
107 #include <splash.h>
108 
109 /*
110  * some Macros
111  */
112 #define VIDEO_VISIBLE_COLS	(pGD->winSizeX)
113 #define VIDEO_VISIBLE_ROWS	(pGD->winSizeY)
114 #define VIDEO_PIXEL_SIZE	(pGD->gdfBytesPP)
115 #define VIDEO_DATA_FORMAT	(pGD->gdfIndex)
116 #define VIDEO_FB_ADRS		(pGD->frameAdrs)
117 
118 /*
119  * Console device
120  */
121 
122 #include <version.h>
123 #include <linux/types.h>
124 #include <stdio_dev.h>
125 #include <video_font.h>
126 
127 #if defined(CONFIG_CMD_DATE)
128 #include <rtc.h>
129 #endif
130 
131 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
132 #include <watchdog.h>
133 #include <bmp_layout.h>
134 #include <splash.h>
135 #endif
136 
137 #if !defined(CONFIG_VIDEO_SW_CURSOR)
138 /* no Cursor defined */
139 #define CURSOR_ON
140 #define CURSOR_OFF
141 #define CURSOR_SET
142 #endif
143 
144 #if defined(CONFIG_VIDEO_SW_CURSOR)
145 void console_cursor(int state);
146 
147 #define CURSOR_ON  console_cursor(1)
148 #define CURSOR_OFF console_cursor(0)
149 #define CURSOR_SET video_set_cursor()
150 #endif /* CONFIG_VIDEO_SW_CURSOR */
151 
152 #ifdef	CONFIG_VIDEO_LOGO
153 #ifdef	CONFIG_VIDEO_BMP_LOGO
154 #include <bmp_logo.h>
155 #include <bmp_logo_data.h>
156 #define VIDEO_LOGO_WIDTH	BMP_LOGO_WIDTH
157 #define VIDEO_LOGO_HEIGHT	BMP_LOGO_HEIGHT
158 #define VIDEO_LOGO_LUT_OFFSET	BMP_LOGO_OFFSET
159 #define VIDEO_LOGO_COLORS	BMP_LOGO_COLORS
160 
161 #else  /* CONFIG_VIDEO_BMP_LOGO */
162 #define LINUX_LOGO_WIDTH	80
163 #define LINUX_LOGO_HEIGHT	80
164 #define LINUX_LOGO_COLORS	214
165 #define LINUX_LOGO_LUT_OFFSET	0x20
166 #define __initdata
167 #include <linux_logo.h>
168 #define VIDEO_LOGO_WIDTH	LINUX_LOGO_WIDTH
169 #define VIDEO_LOGO_HEIGHT	LINUX_LOGO_HEIGHT
170 #define VIDEO_LOGO_LUT_OFFSET	LINUX_LOGO_LUT_OFFSET
171 #define VIDEO_LOGO_COLORS	LINUX_LOGO_COLORS
172 #endif /* CONFIG_VIDEO_BMP_LOGO */
173 #define VIDEO_INFO_X		(VIDEO_LOGO_WIDTH)
174 #define VIDEO_INFO_Y		(VIDEO_FONT_HEIGHT/2)
175 #else  /* CONFIG_VIDEO_LOGO */
176 #define VIDEO_LOGO_WIDTH	0
177 #define VIDEO_LOGO_HEIGHT	0
178 #endif /* CONFIG_VIDEO_LOGO */
179 
180 #define VIDEO_COLS		VIDEO_VISIBLE_COLS
181 #define VIDEO_ROWS		VIDEO_VISIBLE_ROWS
182 #ifndef VIDEO_LINE_LEN
183 #define VIDEO_LINE_LEN		(VIDEO_COLS * VIDEO_PIXEL_SIZE)
184 #endif
185 #define VIDEO_SIZE		(VIDEO_ROWS * VIDEO_LINE_LEN)
186 #define VIDEO_BURST_LEN		(VIDEO_COLS/8)
187 
188 #ifdef	CONFIG_VIDEO_LOGO
189 #define CONSOLE_ROWS		((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
190 #else
191 #define CONSOLE_ROWS		(VIDEO_ROWS / VIDEO_FONT_HEIGHT)
192 #endif
193 
194 #define CONSOLE_COLS		(VIDEO_COLS / VIDEO_FONT_WIDTH)
195 #define CONSOLE_ROW_SIZE	(VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
196 #define CONSOLE_ROW_FIRST	(video_console_address)
197 #define CONSOLE_ROW_SECOND	(video_console_address + CONSOLE_ROW_SIZE)
198 #define CONSOLE_ROW_LAST	(video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
199 #define CONSOLE_SIZE		(CONSOLE_ROW_SIZE * CONSOLE_ROWS)
200 
201 /* By default we scroll by a single line */
202 #ifndef CONFIG_CONSOLE_SCROLL_LINES
203 #define CONFIG_CONSOLE_SCROLL_LINES 1
204 #endif
205 
206 /* Macros */
207 #ifdef	VIDEO_FB_LITTLE_ENDIAN
208 #define SWAP16(x)		((((x) & 0x00ff) << 8) | \
209 				  ((x) >> 8) \
210 				)
211 #define SWAP32(x)		((((x) & 0x000000ff) << 24) | \
212 				 (((x) & 0x0000ff00) <<  8) | \
213 				 (((x) & 0x00ff0000) >>  8) | \
214 				 (((x) & 0xff000000) >> 24)   \
215 				)
216 #define SHORTSWAP32(x)		((((x) & 0x000000ff) <<  8) | \
217 				 (((x) & 0x0000ff00) >>  8) | \
218 				 (((x) & 0x00ff0000) <<  8) | \
219 				 (((x) & 0xff000000) >>  8)   \
220 				)
221 #else
222 #define SWAP16(x)		(x)
223 #define SWAP32(x)		(x)
224 #if defined(VIDEO_FB_16BPP_WORD_SWAP)
225 #define SHORTSWAP32(x)		(((x) >> 16) | ((x) << 16))
226 #else
227 #define SHORTSWAP32(x)		(x)
228 #endif
229 #endif
230 
231 DECLARE_GLOBAL_DATA_PTR;
232 
233 /* Locals */
234 static GraphicDevice *pGD;	/* Pointer to Graphic array */
235 
236 static void *video_fb_address;	/* frame buffer address */
237 static void *video_console_address;	/* console buffer start address */
238 
239 static int video_logo_height = VIDEO_LOGO_HEIGHT;
240 
241 static int __maybe_unused cursor_state;
242 static int __maybe_unused old_col;
243 static int __maybe_unused old_row;
244 
245 static int console_col;		/* cursor col */
246 static int console_row;		/* cursor row */
247 
248 static u32 eorx, fgx, bgx;	/* color pats */
249 
250 static int cfb_do_flush_cache;
251 
252 #ifdef CONFIG_CFB_CONSOLE_ANSI
253 static char ansi_buf[10];
254 static int ansi_buf_size;
255 static int ansi_colors_need_revert;
256 static int ansi_cursor_hidden;
257 #endif
258 
259 static const int video_font_draw_table8[] = {
260 	0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
261 	0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
262 	0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
263 	0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
264 };
265 
266 static const int video_font_draw_table15[] = {
267 	0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
268 };
269 
270 static const int video_font_draw_table16[] = {
271 	0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
272 };
273 
274 static const int video_font_draw_table24[16][3] = {
275 	{0x00000000, 0x00000000, 0x00000000},
276 	{0x00000000, 0x00000000, 0x00ffffff},
277 	{0x00000000, 0x0000ffff, 0xff000000},
278 	{0x00000000, 0x0000ffff, 0xffffffff},
279 	{0x000000ff, 0xffff0000, 0x00000000},
280 	{0x000000ff, 0xffff0000, 0x00ffffff},
281 	{0x000000ff, 0xffffffff, 0xff000000},
282 	{0x000000ff, 0xffffffff, 0xffffffff},
283 	{0xffffff00, 0x00000000, 0x00000000},
284 	{0xffffff00, 0x00000000, 0x00ffffff},
285 	{0xffffff00, 0x0000ffff, 0xff000000},
286 	{0xffffff00, 0x0000ffff, 0xffffffff},
287 	{0xffffffff, 0xffff0000, 0x00000000},
288 	{0xffffffff, 0xffff0000, 0x00ffffff},
289 	{0xffffffff, 0xffffffff, 0xff000000},
290 	{0xffffffff, 0xffffffff, 0xffffffff}
291 };
292 
293 static const int video_font_draw_table32[16][4] = {
294 	{0x00000000, 0x00000000, 0x00000000, 0x00000000},
295 	{0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
296 	{0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
297 	{0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
298 	{0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
299 	{0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
300 	{0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
301 	{0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
302 	{0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
303 	{0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
304 	{0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
305 	{0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
306 	{0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
307 	{0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
308 	{0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
309 	{0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
310 };
311 
312 /*
313  * Implement a weak default function for boards that optionally
314  * need to skip the cfb initialization.
315  */
board_cfb_skip(void)316 __weak int board_cfb_skip(void)
317 {
318 	/* As default, don't skip cfb init */
319 	return 0;
320 }
321 
video_drawchars(int xx,int yy,unsigned char * s,int count)322 static void video_drawchars(int xx, int yy, unsigned char *s, int count)
323 {
324 	u8 *cdat, *dest, *dest0;
325 	int rows, offset, c;
326 
327 	offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
328 	dest0 = video_fb_address + offset;
329 
330 	switch (VIDEO_DATA_FORMAT) {
331 	case GDF__8BIT_INDEX:
332 	case GDF__8BIT_332RGB:
333 		while (count--) {
334 			c = *s;
335 			cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
336 			for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
337 			     rows--; dest += VIDEO_LINE_LEN) {
338 				u8 bits = *cdat++;
339 
340 				((u32 *) dest)[0] =
341 					(video_font_draw_table8[bits >> 4] &
342 					 eorx) ^ bgx;
343 
344 				if (VIDEO_FONT_WIDTH == 4)
345 					continue;
346 
347 				((u32 *) dest)[1] =
348 					(video_font_draw_table8[bits & 15] &
349 					 eorx) ^ bgx;
350 			}
351 			dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
352 			s++;
353 		}
354 		break;
355 
356 	case GDF_15BIT_555RGB:
357 		while (count--) {
358 			c = *s;
359 			cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
360 			for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
361 			     rows--; dest += VIDEO_LINE_LEN) {
362 				u8 bits = *cdat++;
363 
364 				((u32 *) dest)[0] =
365 					SHORTSWAP32((video_font_draw_table15
366 						     [bits >> 6] & eorx) ^
367 						    bgx);
368 				((u32 *) dest)[1] =
369 					SHORTSWAP32((video_font_draw_table15
370 						     [bits >> 4 & 3] & eorx) ^
371 						    bgx);
372 
373 				if (VIDEO_FONT_WIDTH == 4)
374 					continue;
375 
376 				((u32 *) dest)[2] =
377 					SHORTSWAP32((video_font_draw_table15
378 						     [bits >> 2 & 3] & eorx) ^
379 						    bgx);
380 				((u32 *) dest)[3] =
381 					SHORTSWAP32((video_font_draw_table15
382 						     [bits & 3] & eorx) ^
383 						    bgx);
384 			}
385 			dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
386 			s++;
387 		}
388 		break;
389 
390 	case GDF_16BIT_565RGB:
391 		while (count--) {
392 			c = *s;
393 			cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
394 			for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
395 			     rows--; dest += VIDEO_LINE_LEN) {
396 				u8 bits = *cdat++;
397 
398 				((u32 *) dest)[0] =
399 					SHORTSWAP32((video_font_draw_table16
400 						     [bits >> 6] & eorx) ^
401 						    bgx);
402 				((u32 *) dest)[1] =
403 					SHORTSWAP32((video_font_draw_table16
404 						     [bits >> 4 & 3] & eorx) ^
405 						    bgx);
406 
407 				if (VIDEO_FONT_WIDTH == 4)
408 					continue;
409 
410 				((u32 *) dest)[2] =
411 					SHORTSWAP32((video_font_draw_table16
412 						     [bits >> 2 & 3] & eorx) ^
413 						    bgx);
414 				((u32 *) dest)[3] =
415 					SHORTSWAP32((video_font_draw_table16
416 						     [bits & 3] & eorx) ^
417 						    bgx);
418 			}
419 			dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
420 			s++;
421 		}
422 		break;
423 
424 	case GDF_32BIT_X888RGB:
425 		while (count--) {
426 			c = *s;
427 			cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
428 			for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
429 			     rows--; dest += VIDEO_LINE_LEN) {
430 				u8 bits = *cdat++;
431 
432 				((u32 *) dest)[0] =
433 					SWAP32((video_font_draw_table32
434 						[bits >> 4][0] & eorx) ^ bgx);
435 				((u32 *) dest)[1] =
436 					SWAP32((video_font_draw_table32
437 						[bits >> 4][1] & eorx) ^ bgx);
438 				((u32 *) dest)[2] =
439 					SWAP32((video_font_draw_table32
440 						[bits >> 4][2] & eorx) ^ bgx);
441 				((u32 *) dest)[3] =
442 					SWAP32((video_font_draw_table32
443 						[bits >> 4][3] & eorx) ^ bgx);
444 
445 
446 				if (VIDEO_FONT_WIDTH == 4)
447 					continue;
448 
449 				((u32 *) dest)[4] =
450 					SWAP32((video_font_draw_table32
451 						[bits & 15][0] & eorx) ^ bgx);
452 				((u32 *) dest)[5] =
453 					SWAP32((video_font_draw_table32
454 						[bits & 15][1] & eorx) ^ bgx);
455 				((u32 *) dest)[6] =
456 					SWAP32((video_font_draw_table32
457 						[bits & 15][2] & eorx) ^ bgx);
458 				((u32 *) dest)[7] =
459 					SWAP32((video_font_draw_table32
460 						[bits & 15][3] & eorx) ^ bgx);
461 			}
462 			dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
463 			s++;
464 		}
465 		break;
466 
467 	case GDF_24BIT_888RGB:
468 		while (count--) {
469 			c = *s;
470 			cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
471 			for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
472 			     rows--; dest += VIDEO_LINE_LEN) {
473 				u8 bits = *cdat++;
474 
475 				((u32 *) dest)[0] =
476 					(video_font_draw_table24[bits >> 4][0]
477 					 & eorx) ^ bgx;
478 				((u32 *) dest)[1] =
479 					(video_font_draw_table24[bits >> 4][1]
480 					 & eorx) ^ bgx;
481 				((u32 *) dest)[2] =
482 					(video_font_draw_table24[bits >> 4][2]
483 					 & eorx) ^ bgx;
484 
485 				if (VIDEO_FONT_WIDTH == 4)
486 					continue;
487 
488 				((u32 *) dest)[3] =
489 					(video_font_draw_table24[bits & 15][0]
490 					 & eorx) ^ bgx;
491 				((u32 *) dest)[4] =
492 					(video_font_draw_table24[bits & 15][1]
493 					 & eorx) ^ bgx;
494 				((u32 *) dest)[5] =
495 					(video_font_draw_table24[bits & 15][2]
496 					 & eorx) ^ bgx;
497 			}
498 			dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
499 			s++;
500 		}
501 		break;
502 	}
503 }
504 
video_drawstring(int xx,int yy,unsigned char * s)505 static inline void video_drawstring(int xx, int yy, unsigned char *s)
506 {
507 	video_drawchars(xx, yy, s, strlen((char *) s));
508 }
509 
video_putchar(int xx,int yy,unsigned char c)510 static void video_putchar(int xx, int yy, unsigned char c)
511 {
512 	video_drawchars(xx, yy + video_logo_height, &c, 1);
513 }
514 
515 #if defined(CONFIG_VIDEO_SW_CURSOR)
video_set_cursor(void)516 static void video_set_cursor(void)
517 {
518 	if (cursor_state)
519 		console_cursor(0);
520 	console_cursor(1);
521 }
522 
video_invertchar(int xx,int yy)523 static void video_invertchar(int xx, int yy)
524 {
525 	int firstx = xx * VIDEO_PIXEL_SIZE;
526 	int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
527 	int firsty = yy * VIDEO_LINE_LEN;
528 	int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
529 	int x, y;
530 	for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
531 		for (x = firstx; x < lastx; x++) {
532 			u8 *dest = (u8 *)(video_fb_address) + x + y;
533 			*dest = ~*dest;
534 		}
535 	}
536 }
537 
console_cursor(int state)538 void console_cursor(int state)
539 {
540 	if (cursor_state != state) {
541 		if (cursor_state) {
542 			/* turn off the cursor */
543 			video_invertchar(old_col * VIDEO_FONT_WIDTH,
544 					 old_row * VIDEO_FONT_HEIGHT +
545 					 video_logo_height);
546 		} else {
547 			/* turn off the cursor and record where it is */
548 			video_invertchar(console_col * VIDEO_FONT_WIDTH,
549 					 console_row * VIDEO_FONT_HEIGHT +
550 					 video_logo_height);
551 			old_col = console_col;
552 			old_row = console_row;
553 		}
554 		cursor_state = state;
555 	}
556 	if (cfb_do_flush_cache)
557 		flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
558 }
559 #endif
560 
561 #ifndef VIDEO_HW_RECTFILL
memsetl(int * p,int c,int v)562 static void memsetl(int *p, int c, int v)
563 {
564 	while (c--)
565 		*(p++) = v;
566 }
567 #endif
568 
569 #ifndef VIDEO_HW_BITBLT
memcpyl(int * d,int * s,int c)570 static void memcpyl(int *d, int *s, int c)
571 {
572 	while (c--)
573 		*(d++) = *(s++);
574 }
575 #endif
576 
console_clear_line(int line,int begin,int end)577 static void console_clear_line(int line, int begin, int end)
578 {
579 #ifdef VIDEO_HW_RECTFILL
580 	video_hw_rectfill(VIDEO_PIXEL_SIZE,		/* bytes per pixel */
581 			  VIDEO_FONT_WIDTH * begin,	/* dest pos x */
582 			  video_logo_height +
583 			  VIDEO_FONT_HEIGHT * line,	/* dest pos y */
584 			  VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
585 			  VIDEO_FONT_HEIGHT,		/* frame height */
586 			  bgx				/* fill color */
587 		);
588 #else
589 	if (begin == 0 && (end + 1) == CONSOLE_COLS) {
590 		memsetl(CONSOLE_ROW_FIRST +
591 			CONSOLE_ROW_SIZE * line,	/* offset of row */
592 			CONSOLE_ROW_SIZE >> 2,		/* length of row */
593 			bgx				/* fill color */
594 		);
595 	} else {
596 		void *offset;
597 		int i, size;
598 
599 		offset = CONSOLE_ROW_FIRST +
600 			 CONSOLE_ROW_SIZE * line +	/* offset of row */
601 			 VIDEO_FONT_WIDTH *
602 			 VIDEO_PIXEL_SIZE * begin;	/* offset of col */
603 		size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
604 		size >>= 2; /* length to end for memsetl() */
605 		/* fill at col offset of i'th line using bgx as fill color */
606 		for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
607 			memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
608 	}
609 #endif
610 }
611 
console_scrollup(void)612 static void console_scrollup(void)
613 {
614 	const int rows = CONFIG_CONSOLE_SCROLL_LINES;
615 	int i;
616 
617 	/* copy up rows ignoring the first one */
618 
619 #ifdef VIDEO_HW_BITBLT
620 	video_hw_bitblt(VIDEO_PIXEL_SIZE,	/* bytes per pixel */
621 			0,			/* source pos x */
622 			video_logo_height +
623 				VIDEO_FONT_HEIGHT * rows, /* source pos y */
624 			0,			/* dest pos x */
625 			video_logo_height,	/* dest pos y */
626 			VIDEO_VISIBLE_COLS,	/* frame width */
627 			VIDEO_VISIBLE_ROWS
628 			- video_logo_height
629 			- VIDEO_FONT_HEIGHT * rows	/* frame height */
630 		);
631 #else
632 	memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE,
633 		(CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2);
634 #endif
635 	/* clear the last one */
636 	for (i = 1; i <= rows; i++)
637 		console_clear_line(CONSOLE_ROWS - i, 0, CONSOLE_COLS - 1);
638 
639 	/* Decrement row number */
640 	console_row -= rows;
641 }
642 
console_back(void)643 static void console_back(void)
644 {
645 	console_col--;
646 
647 	if (console_col < 0) {
648 		console_col = CONSOLE_COLS - 1;
649 		console_row--;
650 		if (console_row < 0)
651 			console_row = 0;
652 	}
653 }
654 
655 #ifdef CONFIG_CFB_CONSOLE_ANSI
656 
console_clear(void)657 static void console_clear(void)
658 {
659 #ifdef VIDEO_HW_RECTFILL
660 	video_hw_rectfill(VIDEO_PIXEL_SIZE,	/* bytes per pixel */
661 			  0,			/* dest pos x */
662 			  video_logo_height,	/* dest pos y */
663 			  VIDEO_VISIBLE_COLS,	/* frame width */
664 			  VIDEO_VISIBLE_ROWS,	/* frame height */
665 			  bgx			/* fill color */
666 	);
667 #else
668 	memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
669 #endif
670 }
671 
console_cursor_fix(void)672 static void console_cursor_fix(void)
673 {
674 	if (console_row < 0)
675 		console_row = 0;
676 	if (console_row >= CONSOLE_ROWS)
677 		console_row = CONSOLE_ROWS - 1;
678 	if (console_col < 0)
679 		console_col = 0;
680 	if (console_col >= CONSOLE_COLS)
681 		console_col = CONSOLE_COLS - 1;
682 }
683 
console_cursor_up(int n)684 static void console_cursor_up(int n)
685 {
686 	console_row -= n;
687 	console_cursor_fix();
688 }
689 
console_cursor_down(int n)690 static void console_cursor_down(int n)
691 {
692 	console_row += n;
693 	console_cursor_fix();
694 }
695 
console_cursor_left(int n)696 static void console_cursor_left(int n)
697 {
698 	console_col -= n;
699 	console_cursor_fix();
700 }
701 
console_cursor_right(int n)702 static void console_cursor_right(int n)
703 {
704 	console_col += n;
705 	console_cursor_fix();
706 }
707 
console_cursor_set_position(int row,int col)708 static void console_cursor_set_position(int row, int col)
709 {
710 	if (console_row != -1)
711 		console_row = row;
712 	if (console_col != -1)
713 		console_col = col;
714 	console_cursor_fix();
715 }
716 
console_previousline(int n)717 static void console_previousline(int n)
718 {
719 	/* FIXME: also scroll terminal ? */
720 	console_row -= n;
721 	console_cursor_fix();
722 }
723 
console_swap_colors(void)724 static void console_swap_colors(void)
725 {
726 	eorx = fgx;
727 	fgx = bgx;
728 	bgx = eorx;
729 	eorx = fgx ^ bgx;
730 }
731 
console_cursor_is_visible(void)732 static inline int console_cursor_is_visible(void)
733 {
734 	return !ansi_cursor_hidden;
735 }
736 #else
console_cursor_is_visible(void)737 static inline int console_cursor_is_visible(void)
738 {
739 	return 1;
740 }
741 #endif
742 
console_newline(int n)743 static void console_newline(int n)
744 {
745 	console_row += n;
746 	console_col = 0;
747 
748 	/* Check if we need to scroll the terminal */
749 	if (console_row >= CONSOLE_ROWS) {
750 		/* Scroll everything up */
751 		console_scrollup();
752 	}
753 }
754 
console_cr(void)755 static void console_cr(void)
756 {
757 	console_col = 0;
758 }
759 
parse_putc(const char c)760 static void parse_putc(const char c)
761 {
762 	static int nl = 1;
763 
764 	if (console_cursor_is_visible())
765 		CURSOR_OFF;
766 
767 	switch (c) {
768 	case 13:		/* back to first column */
769 		console_cr();
770 		break;
771 
772 	case '\n':		/* next line */
773 		if (console_col || nl)
774 			console_newline(1);
775 		nl = 1;
776 		break;
777 
778 	case 9:		/* tab 8 */
779 		console_col |= 0x0008;
780 		console_col &= ~0x0007;
781 
782 		if (console_col >= CONSOLE_COLS)
783 			console_newline(1);
784 		break;
785 
786 	case 8:		/* backspace */
787 		console_back();
788 		break;
789 
790 	case 7:		/* bell */
791 		break;	/* ignored */
792 
793 	default:		/* draw the char */
794 		video_putchar(console_col * VIDEO_FONT_WIDTH,
795 			      console_row * VIDEO_FONT_HEIGHT, c);
796 		console_col++;
797 
798 		/* check for newline */
799 		if (console_col >= CONSOLE_COLS) {
800 			console_newline(1);
801 			nl = 0;
802 		}
803 	}
804 
805 	if (console_cursor_is_visible())
806 		CURSOR_SET;
807 }
808 
cfb_video_putc(struct stdio_dev * dev,const char c)809 static void cfb_video_putc(struct stdio_dev *dev, const char c)
810 {
811 #ifdef CONFIG_CFB_CONSOLE_ANSI
812 	int i;
813 
814 	if (c == 27) {
815 		for (i = 0; i < ansi_buf_size; ++i)
816 			parse_putc(ansi_buf[i]);
817 		ansi_buf[0] = 27;
818 		ansi_buf_size = 1;
819 		return;
820 	}
821 
822 	if (ansi_buf_size > 0) {
823 		/*
824 		 * 0 - ESC
825 		 * 1 - [
826 		 * 2 - num1
827 		 * 3 - ..
828 		 * 4 - ;
829 		 * 5 - num2
830 		 * 6 - ..
831 		 * - cchar
832 		 */
833 		int next = 0;
834 
835 		int flush = 0;
836 		int fail = 0;
837 
838 		int num1 = 0;
839 		int num2 = 0;
840 		int cchar = 0;
841 
842 		ansi_buf[ansi_buf_size++] = c;
843 
844 		if (ansi_buf_size >= sizeof(ansi_buf))
845 			fail = 1;
846 
847 		for (i = 0; i < ansi_buf_size; ++i) {
848 			if (fail)
849 				break;
850 
851 			switch (next) {
852 			case 0:
853 				if (ansi_buf[i] == 27)
854 					next = 1;
855 				else
856 					fail = 1;
857 				break;
858 
859 			case 1:
860 				if (ansi_buf[i] == '[')
861 					next = 2;
862 				else
863 					fail = 1;
864 				break;
865 
866 			case 2:
867 				if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
868 					num1 = ansi_buf[i]-'0';
869 					next = 3;
870 				} else if (ansi_buf[i] != '?') {
871 					--i;
872 					num1 = 1;
873 					next = 4;
874 				}
875 				break;
876 
877 			case 3:
878 				if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
879 					num1 *= 10;
880 					num1 += ansi_buf[i]-'0';
881 				} else {
882 					--i;
883 					next = 4;
884 				}
885 				break;
886 
887 			case 4:
888 				if (ansi_buf[i] != ';') {
889 					--i;
890 					next = 7;
891 				} else
892 					next = 5;
893 				break;
894 
895 			case 5:
896 				if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
897 					num2 = ansi_buf[i]-'0';
898 					next = 6;
899 				} else
900 					fail = 1;
901 				break;
902 
903 			case 6:
904 				if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
905 					num2 *= 10;
906 					num2 += ansi_buf[i]-'0';
907 				} else {
908 					--i;
909 					next = 7;
910 				}
911 				break;
912 
913 			case 7:
914 				if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
915 					|| ansi_buf[i] == 'J'
916 					|| ansi_buf[i] == 'K'
917 					|| ansi_buf[i] == 'h'
918 					|| ansi_buf[i] == 'l'
919 					|| ansi_buf[i] == 'm') {
920 					cchar = ansi_buf[i];
921 					flush = 1;
922 				} else
923 					fail = 1;
924 				break;
925 			}
926 		}
927 
928 		if (fail) {
929 			for (i = 0; i < ansi_buf_size; ++i)
930 				parse_putc(ansi_buf[i]);
931 			ansi_buf_size = 0;
932 			return;
933 		}
934 
935 		if (flush) {
936 			if (!ansi_cursor_hidden)
937 				CURSOR_OFF;
938 			ansi_buf_size = 0;
939 			switch (cchar) {
940 			case 'A':
941 				/* move cursor num1 rows up */
942 				console_cursor_up(num1);
943 				break;
944 			case 'B':
945 				/* move cursor num1 rows down */
946 				console_cursor_down(num1);
947 				break;
948 			case 'C':
949 				/* move cursor num1 columns forward */
950 				console_cursor_right(num1);
951 				break;
952 			case 'D':
953 				/* move cursor num1 columns back */
954 				console_cursor_left(num1);
955 				break;
956 			case 'E':
957 				/* move cursor num1 rows up at begin of row */
958 				console_previousline(num1);
959 				break;
960 			case 'F':
961 				/* move cursor num1 rows down at begin of row */
962 				console_newline(num1);
963 				break;
964 			case 'G':
965 				/* move cursor to column num1 */
966 				console_cursor_set_position(-1, num1-1);
967 				break;
968 			case 'H':
969 				/* move cursor to row num1, column num2 */
970 				console_cursor_set_position(num1-1, num2-1);
971 				break;
972 			case 'J':
973 				/* clear console and move cursor to 0, 0 */
974 				console_clear();
975 				console_cursor_set_position(0, 0);
976 				break;
977 			case 'K':
978 				/* clear line */
979 				if (num1 == 0)
980 					console_clear_line(console_row,
981 							console_col,
982 							CONSOLE_COLS-1);
983 				else if (num1 == 1)
984 					console_clear_line(console_row,
985 							0, console_col);
986 				else
987 					console_clear_line(console_row,
988 							0, CONSOLE_COLS-1);
989 				break;
990 			case 'h':
991 				ansi_cursor_hidden = 0;
992 				break;
993 			case 'l':
994 				ansi_cursor_hidden = 1;
995 				break;
996 			case 'm':
997 				if (num1 == 0) { /* reset swapped colors */
998 					if (ansi_colors_need_revert) {
999 						console_swap_colors();
1000 						ansi_colors_need_revert = 0;
1001 					}
1002 				} else if (num1 == 7) { /* once swap colors */
1003 					if (!ansi_colors_need_revert) {
1004 						console_swap_colors();
1005 						ansi_colors_need_revert = 1;
1006 					}
1007 				}
1008 				break;
1009 			}
1010 			if (!ansi_cursor_hidden)
1011 				CURSOR_SET;
1012 		}
1013 	} else {
1014 		parse_putc(c);
1015 	}
1016 #else
1017 	parse_putc(c);
1018 #endif
1019 	if (cfb_do_flush_cache)
1020 		flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1021 }
1022 
cfb_video_puts(struct stdio_dev * dev,const char * s)1023 static void cfb_video_puts(struct stdio_dev *dev, const char *s)
1024 {
1025 	int flush = cfb_do_flush_cache;
1026 	int count = strlen(s);
1027 
1028 	/* temporarily disable cache flush */
1029 	cfb_do_flush_cache = 0;
1030 
1031 	while (count--)
1032 		cfb_video_putc(dev, *s++);
1033 
1034 	if (flush) {
1035 		cfb_do_flush_cache = flush;
1036 		flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1037 	}
1038 }
1039 
1040 /*
1041  * Do not enforce drivers (or board code) to provide empty
1042  * video_set_lut() if they do not support 8 bpp format.
1043  * Implement weak default function instead.
1044  */
video_set_lut(unsigned int index,unsigned char r,unsigned char g,unsigned char b)1045 __weak void video_set_lut(unsigned int index, unsigned char r,
1046 		     unsigned char g, unsigned char b)
1047 {
1048 }
1049 
1050 #if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
1051 
1052 #define FILL_8BIT_332RGB(r,g,b)	{			\
1053 	*fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6);	\
1054 	fb ++;						\
1055 }
1056 
1057 #define FILL_15BIT_555RGB(r,g,b) {			\
1058 	*(unsigned short *)fb =				\
1059 		SWAP16((unsigned short)(((r>>3)<<10) |	\
1060 					((g>>3)<<5)  |	\
1061 					 (b>>3)));	\
1062 	fb += 2;					\
1063 }
1064 
1065 #define FILL_16BIT_565RGB(r,g,b) {			\
1066 	*(unsigned short *)fb =				\
1067 		SWAP16((unsigned short)((((r)>>3)<<11)| \
1068 					(((g)>>2)<<5) | \
1069 					 ((b)>>3)));	\
1070 	fb += 2;					\
1071 }
1072 
1073 #define FILL_32BIT_X888RGB(r,g,b) {			\
1074 	*(u32 *)fb =				\
1075 		SWAP32((unsigned int)(((r<<16) |	\
1076 					(g<<8)  |	\
1077 					 b)));		\
1078 	fb += 4;					\
1079 }
1080 
1081 #ifdef VIDEO_FB_LITTLE_ENDIAN
1082 #define FILL_24BIT_888RGB(r,g,b) {			\
1083 	fb[0] = b;					\
1084 	fb[1] = g;					\
1085 	fb[2] = r;					\
1086 	fb += 3;					\
1087 }
1088 #else
1089 #define FILL_24BIT_888RGB(r,g,b) {			\
1090 	fb[0] = r;					\
1091 	fb[1] = g;					\
1092 	fb[2] = b;					\
1093 	fb += 3;					\
1094 }
1095 #endif
1096 
1097 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
fill_555rgb_pswap(uchar * fb,int x,u8 r,u8 g,u8 b)1098 static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
1099 {
1100 	ushort *dst = (ushort *) fb;
1101 	ushort color = (ushort) (((r >> 3) << 10) |
1102 				 ((g >> 3) <<  5) |
1103 				  (b >> 3));
1104 	if (x & 1)
1105 		*(--dst) = color;
1106 	else
1107 		*(++dst) = color;
1108 }
1109 #endif
1110 
1111 /*
1112  * RLE8 bitmap support
1113  */
1114 
1115 #ifdef CONFIG_VIDEO_BMP_RLE8
1116 /* Pre-calculated color table entry */
1117 struct palette {
1118 	union {
1119 		unsigned short w;	/* word */
1120 		unsigned int dw;	/* double word */
1121 	} ce;				/* color entry */
1122 };
1123 
1124 /*
1125  * Helper to draw encoded/unencoded run.
1126  */
draw_bitmap(uchar ** fb,uchar * bm,struct palette * p,int cnt,int enc)1127 static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1128 			int cnt, int enc)
1129 {
1130 	ulong addr = (ulong) *fb;
1131 	int *off;
1132 	int enc_off = 1;
1133 	int i;
1134 
1135 	/*
1136 	 * Setup offset of the color index in the bitmap.
1137 	 * Color index of encoded run is at offset 1.
1138 	 */
1139 	off = enc ? &enc_off : &i;
1140 
1141 	switch (VIDEO_DATA_FORMAT) {
1142 	case GDF__8BIT_INDEX:
1143 		for (i = 0; i < cnt; i++)
1144 			*(unsigned char *) addr++ = bm[*off];
1145 		break;
1146 	case GDF_15BIT_555RGB:
1147 	case GDF_16BIT_565RGB:
1148 		/* differences handled while pre-calculating palette */
1149 		for (i = 0; i < cnt; i++) {
1150 			*(unsigned short *) addr = p[bm[*off]].ce.w;
1151 			addr += 2;
1152 		}
1153 		break;
1154 	case GDF_32BIT_X888RGB:
1155 		for (i = 0; i < cnt; i++) {
1156 			*(u32 *) addr = p[bm[*off]].ce.dw;
1157 			addr += 4;
1158 		}
1159 		break;
1160 	}
1161 	*fb = (uchar *) addr;	/* return modified address */
1162 }
1163 
display_rle8_bitmap(struct bmp_image * img,int xoff,int yoff,int width,int height)1164 static int display_rle8_bitmap(struct bmp_image *img, int xoff, int yoff,
1165 			       int width, int height)
1166 {
1167 	unsigned char *bm;
1168 	unsigned char *fbp;
1169 	unsigned int cnt, runlen;
1170 	int decode = 1;
1171 	int x, y, bpp, i, ncolors;
1172 	struct palette p[256];
1173 	struct bmp_color_table_entry cte;
1174 	int green_shift, red_off;
1175 	int limit = (VIDEO_LINE_LEN / VIDEO_PIXEL_SIZE) * VIDEO_ROWS;
1176 	int pixels = 0;
1177 
1178 	x = 0;
1179 	y = __le32_to_cpu(img->header.height) - 1;
1180 	ncolors = __le32_to_cpu(img->header.colors_used);
1181 	bpp = VIDEO_PIXEL_SIZE;
1182 	fbp = (unsigned char *) ((unsigned int) video_fb_address +
1183 				 (y + yoff) * VIDEO_LINE_LEN +
1184 				 xoff * bpp);
1185 
1186 	bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
1187 
1188 	/* pre-calculate and setup palette */
1189 	switch (VIDEO_DATA_FORMAT) {
1190 	case GDF__8BIT_INDEX:
1191 		for (i = 0; i < ncolors; i++) {
1192 			cte = img->color_table[i];
1193 			video_set_lut(i, cte.red, cte.green, cte.blue);
1194 		}
1195 		break;
1196 	case GDF_15BIT_555RGB:
1197 	case GDF_16BIT_565RGB:
1198 		if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1199 			green_shift = 3;
1200 			red_off = 10;
1201 		} else {
1202 			green_shift = 2;
1203 			red_off = 11;
1204 		}
1205 		for (i = 0; i < ncolors; i++) {
1206 			cte = img->color_table[i];
1207 			p[i].ce.w = SWAP16((unsigned short)
1208 					   (((cte.red >> 3) << red_off) |
1209 					    ((cte.green >> green_shift) << 5) |
1210 					    cte.blue >> 3));
1211 		}
1212 		break;
1213 	case GDF_32BIT_X888RGB:
1214 		for (i = 0; i < ncolors; i++) {
1215 			cte = img->color_table[i];
1216 			p[i].ce.dw = SWAP32((cte.red << 16) |
1217 					    (cte.green << 8) |
1218 					     cte.blue);
1219 		}
1220 		break;
1221 	default:
1222 		printf("RLE Bitmap unsupported in video mode 0x%x\n",
1223 		       VIDEO_DATA_FORMAT);
1224 		return -1;
1225 	}
1226 
1227 	while (decode) {
1228 		switch (bm[0]) {
1229 		case 0:
1230 			switch (bm[1]) {
1231 			case 0:
1232 				/* scan line end marker */
1233 				bm += 2;
1234 				x = 0;
1235 				y--;
1236 				fbp = (unsigned char *)
1237 					((unsigned int) video_fb_address +
1238 					 (y + yoff) * VIDEO_LINE_LEN +
1239 					 xoff * bpp);
1240 				continue;
1241 			case 1:
1242 				/* end of bitmap data marker */
1243 				decode = 0;
1244 				break;
1245 			case 2:
1246 				/* run offset marker */
1247 				x += bm[2];
1248 				y -= bm[3];
1249 				fbp = (unsigned char *)
1250 					((unsigned int) video_fb_address +
1251 					 (y + yoff) * VIDEO_LINE_LEN +
1252 					 xoff * bpp);
1253 				bm += 4;
1254 				break;
1255 			default:
1256 				/* unencoded run */
1257 				cnt = bm[1];
1258 				runlen = cnt;
1259 				pixels += cnt;
1260 				if (pixels > limit)
1261 					goto error;
1262 
1263 				bm += 2;
1264 				if (y < height) {
1265 					if (x >= width) {
1266 						x += runlen;
1267 						goto next_run;
1268 					}
1269 					if (x + runlen > width)
1270 						cnt = width - x;
1271 					draw_bitmap(&fbp, bm, p, cnt, 0);
1272 					x += runlen;
1273 				}
1274 next_run:
1275 				bm += runlen;
1276 				if (runlen & 1)
1277 					bm++;	/* 0 padding if length is odd */
1278 			}
1279 			break;
1280 		default:
1281 			/* encoded run */
1282 			cnt = bm[0];
1283 			runlen = cnt;
1284 			pixels += cnt;
1285 			if (pixels > limit)
1286 				goto error;
1287 
1288 			if (y < height) {     /* only draw into visible area */
1289 				if (x >= width) {
1290 					x += runlen;
1291 					bm += 2;
1292 					continue;
1293 				}
1294 				if (x + runlen > width)
1295 					cnt = width - x;
1296 				draw_bitmap(&fbp, bm, p, cnt, 1);
1297 				x += runlen;
1298 			}
1299 			bm += 2;
1300 			break;
1301 		}
1302 	}
1303 
1304 	if (cfb_do_flush_cache)
1305 		flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1306 
1307 	return 0;
1308 error:
1309 	printf("Error: Too much encoded pixel data, validate your bitmap\n");
1310 	return -1;
1311 }
1312 #endif
1313 
1314 /*
1315  * Display the BMP file located at address bmp_image.
1316  */
video_display_bitmap(ulong bmp_image,int x,int y)1317 int video_display_bitmap(ulong bmp_image, int x, int y)
1318 {
1319 	ushort xcount, ycount;
1320 	uchar *fb;
1321 	struct bmp_image *bmp = (struct bmp_image *)bmp_image;
1322 	uchar *bmap;
1323 	ushort padded_line;
1324 	unsigned long width, height, bpp;
1325 	unsigned colors;
1326 	unsigned long compression;
1327 	struct bmp_color_table_entry cte;
1328 
1329 #ifdef CONFIG_VIDEO_BMP_GZIP
1330 	unsigned char *dst = NULL;
1331 	ulong len;
1332 #endif
1333 
1334 	WATCHDOG_RESET();
1335 
1336 	if (!((bmp->header.signature[0] == 'B') &&
1337 	      (bmp->header.signature[1] == 'M'))) {
1338 
1339 #ifdef CONFIG_VIDEO_BMP_GZIP
1340 		/*
1341 		 * Could be a gzipped bmp image, try to decrompress...
1342 		 */
1343 		len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1344 		dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
1345 		if (dst == NULL) {
1346 			printf("Error: malloc in gunzip failed!\n");
1347 			return 1;
1348 		}
1349 		/*
1350 		 * NB: we need to force offset of +2
1351 		 * See doc/README.displaying-bmps
1352 		 */
1353 		if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
1354 			   (uchar *) bmp_image,
1355 			   &len) != 0) {
1356 			printf("Error: no valid bmp or bmp.gz image at %lx\n",
1357 			       bmp_image);
1358 			free(dst);
1359 			return 1;
1360 		}
1361 		if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
1362 			printf("Image could be truncated "
1363 				"(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
1364 		}
1365 
1366 		/*
1367 		 * Set addr to decompressed image
1368 		 */
1369 		bmp = (struct bmp_image *)(dst+2);
1370 
1371 		if (!((bmp->header.signature[0] == 'B') &&
1372 		      (bmp->header.signature[1] == 'M'))) {
1373 			printf("Error: no valid bmp.gz image at %lx\n",
1374 			       bmp_image);
1375 			free(dst);
1376 			return 1;
1377 		}
1378 #else
1379 		printf("Error: no valid bmp image at %lx\n", bmp_image);
1380 		return 1;
1381 #endif /* CONFIG_VIDEO_BMP_GZIP */
1382 	}
1383 
1384 	width = le32_to_cpu(bmp->header.width);
1385 	height = le32_to_cpu(bmp->header.height);
1386 	bpp = le16_to_cpu(bmp->header.bit_count);
1387 	colors = le32_to_cpu(bmp->header.colors_used);
1388 	compression = le32_to_cpu(bmp->header.compression);
1389 
1390 	debug("Display-bmp: %ld x %ld  with %d colors\n",
1391 	      width, height, colors);
1392 
1393 	if (compression != BMP_BI_RGB
1394 #ifdef CONFIG_VIDEO_BMP_RLE8
1395 	    && compression != BMP_BI_RLE8
1396 #endif
1397 		) {
1398 		printf("Error: compression type %ld not supported\n",
1399 		       compression);
1400 #ifdef CONFIG_VIDEO_BMP_GZIP
1401 		if (dst)
1402 			free(dst);
1403 #endif
1404 		return 1;
1405 	}
1406 
1407 	padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1408 
1409 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1410 	if (x == BMP_ALIGN_CENTER)
1411 		x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
1412 	else if (x < 0)
1413 		x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
1414 
1415 	if (y == BMP_ALIGN_CENTER)
1416 		y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
1417 	else if (y < 0)
1418 		y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
1419 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1420 
1421 	/*
1422 	 * Just ignore elements which are completely beyond screen
1423 	 * dimensions.
1424 	 */
1425 	if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1426 		return 0;
1427 
1428 	if ((x + width) > VIDEO_VISIBLE_COLS)
1429 		width = VIDEO_VISIBLE_COLS - x;
1430 	if ((y + height) > VIDEO_VISIBLE_ROWS)
1431 		height = VIDEO_VISIBLE_ROWS - y;
1432 
1433 	bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
1434 	fb = (uchar *) (video_fb_address +
1435 			((y + height - 1) * VIDEO_LINE_LEN) +
1436 			x * VIDEO_PIXEL_SIZE);
1437 
1438 #ifdef CONFIG_VIDEO_BMP_RLE8
1439 	if (compression == BMP_BI_RLE8) {
1440 		return display_rle8_bitmap(bmp, x, y, width, height);
1441 	}
1442 #endif
1443 
1444 	/* We handle only 4, 8, or 24 bpp bitmaps */
1445 	switch (le16_to_cpu(bmp->header.bit_count)) {
1446 	case 4:
1447 		padded_line -= width / 2;
1448 		ycount = height;
1449 
1450 		switch (VIDEO_DATA_FORMAT) {
1451 		case GDF_32BIT_X888RGB:
1452 			while (ycount--) {
1453 				WATCHDOG_RESET();
1454 				/*
1455 				 * Don't assume that 'width' is an
1456 				 * even number
1457 				 */
1458 				for (xcount = 0; xcount < width; xcount++) {
1459 					uchar idx;
1460 
1461 					if (xcount & 1) {
1462 						idx = *bmap & 0xF;
1463 						bmap++;
1464 					} else
1465 						idx = *bmap >> 4;
1466 					cte = bmp->color_table[idx];
1467 					FILL_32BIT_X888RGB(cte.red, cte.green,
1468 							   cte.blue);
1469 				}
1470 				bmap += padded_line;
1471 				fb -= VIDEO_LINE_LEN + width *
1472 					VIDEO_PIXEL_SIZE;
1473 			}
1474 			break;
1475 		default:
1476 			puts("4bpp bitmap unsupported with current "
1477 			     "video mode\n");
1478 			break;
1479 		}
1480 		break;
1481 
1482 	case 8:
1483 		padded_line -= width;
1484 		if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1485 			/* Copy colormap */
1486 			for (xcount = 0; xcount < colors; ++xcount) {
1487 				cte = bmp->color_table[xcount];
1488 				video_set_lut(xcount, cte.red, cte.green,
1489 					      cte.blue);
1490 			}
1491 		}
1492 		ycount = height;
1493 		switch (VIDEO_DATA_FORMAT) {
1494 		case GDF__8BIT_INDEX:
1495 			while (ycount--) {
1496 				WATCHDOG_RESET();
1497 				xcount = width;
1498 				while (xcount--) {
1499 					*fb++ = *bmap++;
1500 				}
1501 				bmap += padded_line;
1502 				fb -= VIDEO_LINE_LEN + width *
1503 					VIDEO_PIXEL_SIZE;
1504 			}
1505 			break;
1506 		case GDF__8BIT_332RGB:
1507 			while (ycount--) {
1508 				WATCHDOG_RESET();
1509 				xcount = width;
1510 				while (xcount--) {
1511 					cte = bmp->color_table[*bmap++];
1512 					FILL_8BIT_332RGB(cte.red, cte.green,
1513 							 cte.blue);
1514 				}
1515 				bmap += padded_line;
1516 				fb -= VIDEO_LINE_LEN + width *
1517 					VIDEO_PIXEL_SIZE;
1518 			}
1519 			break;
1520 		case GDF_15BIT_555RGB:
1521 			while (ycount--) {
1522 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1523 				int xpos = x;
1524 #endif
1525 				WATCHDOG_RESET();
1526 				xcount = width;
1527 				while (xcount--) {
1528 					cte = bmp->color_table[*bmap++];
1529 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1530 					fill_555rgb_pswap(fb, xpos++, cte.red,
1531 							  cte.green,
1532 							  cte.blue);
1533 					fb += 2;
1534 #else
1535 					FILL_15BIT_555RGB(cte.red, cte.green,
1536 							  cte.blue);
1537 #endif
1538 				}
1539 				bmap += padded_line;
1540 				fb -= VIDEO_LINE_LEN + width *
1541 					VIDEO_PIXEL_SIZE;
1542 			}
1543 			break;
1544 		case GDF_16BIT_565RGB:
1545 			while (ycount--) {
1546 				WATCHDOG_RESET();
1547 				xcount = width;
1548 				while (xcount--) {
1549 					cte = bmp->color_table[*bmap++];
1550 					FILL_16BIT_565RGB(cte.red, cte.green,
1551 							  cte.blue);
1552 				}
1553 				bmap += padded_line;
1554 				fb -= VIDEO_LINE_LEN + width *
1555 					VIDEO_PIXEL_SIZE;
1556 			}
1557 			break;
1558 		case GDF_32BIT_X888RGB:
1559 			while (ycount--) {
1560 				WATCHDOG_RESET();
1561 				xcount = width;
1562 				while (xcount--) {
1563 					cte = bmp->color_table[*bmap++];
1564 					FILL_32BIT_X888RGB(cte.red, cte.green,
1565 							   cte.blue);
1566 				}
1567 				bmap += padded_line;
1568 				fb -= VIDEO_LINE_LEN + width *
1569 					VIDEO_PIXEL_SIZE;
1570 			}
1571 			break;
1572 		case GDF_24BIT_888RGB:
1573 			while (ycount--) {
1574 				WATCHDOG_RESET();
1575 				xcount = width;
1576 				while (xcount--) {
1577 					cte = bmp->color_table[*bmap++];
1578 					FILL_24BIT_888RGB(cte.red, cte.green,
1579 							  cte.blue);
1580 				}
1581 				bmap += padded_line;
1582 				fb -= VIDEO_LINE_LEN + width *
1583 					VIDEO_PIXEL_SIZE;
1584 			}
1585 			break;
1586 		}
1587 		break;
1588 	case 24:
1589 		padded_line -= 3 * width;
1590 		ycount = height;
1591 		switch (VIDEO_DATA_FORMAT) {
1592 		case GDF__8BIT_332RGB:
1593 			while (ycount--) {
1594 				WATCHDOG_RESET();
1595 				xcount = width;
1596 				while (xcount--) {
1597 					FILL_8BIT_332RGB(bmap[2], bmap[1],
1598 							 bmap[0]);
1599 					bmap += 3;
1600 				}
1601 				bmap += padded_line;
1602 				fb -= VIDEO_LINE_LEN + width *
1603 					VIDEO_PIXEL_SIZE;
1604 			}
1605 			break;
1606 		case GDF_15BIT_555RGB:
1607 			while (ycount--) {
1608 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1609 				int xpos = x;
1610 #endif
1611 				WATCHDOG_RESET();
1612 				xcount = width;
1613 				while (xcount--) {
1614 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1615 					fill_555rgb_pswap(fb, xpos++, bmap[2],
1616 							  bmap[1], bmap[0]);
1617 					fb += 2;
1618 #else
1619 					FILL_15BIT_555RGB(bmap[2], bmap[1],
1620 							  bmap[0]);
1621 #endif
1622 					bmap += 3;
1623 				}
1624 				bmap += padded_line;
1625 				fb -= VIDEO_LINE_LEN + width *
1626 					VIDEO_PIXEL_SIZE;
1627 			}
1628 			break;
1629 		case GDF_16BIT_565RGB:
1630 			while (ycount--) {
1631 				WATCHDOG_RESET();
1632 				xcount = width;
1633 				while (xcount--) {
1634 					FILL_16BIT_565RGB(bmap[2], bmap[1],
1635 							  bmap[0]);
1636 					bmap += 3;
1637 				}
1638 				bmap += padded_line;
1639 				fb -= VIDEO_LINE_LEN + width *
1640 					VIDEO_PIXEL_SIZE;
1641 			}
1642 			break;
1643 		case GDF_32BIT_X888RGB:
1644 			while (ycount--) {
1645 				WATCHDOG_RESET();
1646 				xcount = width;
1647 				while (xcount--) {
1648 					FILL_32BIT_X888RGB(bmap[2], bmap[1],
1649 							   bmap[0]);
1650 					bmap += 3;
1651 				}
1652 				bmap += padded_line;
1653 				fb -= VIDEO_LINE_LEN + width *
1654 					VIDEO_PIXEL_SIZE;
1655 			}
1656 			break;
1657 		case GDF_24BIT_888RGB:
1658 			while (ycount--) {
1659 				WATCHDOG_RESET();
1660 				xcount = width;
1661 				while (xcount--) {
1662 					FILL_24BIT_888RGB(bmap[2], bmap[1],
1663 							  bmap[0]);
1664 					bmap += 3;
1665 				}
1666 				bmap += padded_line;
1667 				fb -= VIDEO_LINE_LEN + width *
1668 					VIDEO_PIXEL_SIZE;
1669 			}
1670 			break;
1671 		default:
1672 			printf("Error: 24 bits/pixel bitmap incompatible "
1673 				"with current video mode\n");
1674 			break;
1675 		}
1676 		break;
1677 	default:
1678 		printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1679 			le16_to_cpu(bmp->header.bit_count));
1680 		break;
1681 	}
1682 
1683 #ifdef CONFIG_VIDEO_BMP_GZIP
1684 	if (dst) {
1685 		free(dst);
1686 	}
1687 #endif
1688 
1689 	if (cfb_do_flush_cache)
1690 		flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1691 	return (0);
1692 }
1693 #endif
1694 
1695 
1696 #ifdef CONFIG_VIDEO_LOGO
1697 static int video_logo_xpos;
1698 static int video_logo_ypos;
1699 
1700 static void plot_logo_or_black(void *screen, int x, int y, int black);
1701 
logo_plot(void * screen,int x,int y)1702 static void logo_plot(void *screen, int x, int y)
1703 {
1704 	plot_logo_or_black(screen, x, y, 0);
1705 }
1706 
logo_black(void)1707 static void logo_black(void)
1708 {
1709 	plot_logo_or_black(video_fb_address, video_logo_xpos, video_logo_ypos,
1710 			1);
1711 }
1712 
do_clrlogo(cmd_tbl_t * cmdtp,int flag,int argc,char * const argv[])1713 static int do_clrlogo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1714 {
1715 	if (argc != 1)
1716 		return cmd_usage(cmdtp);
1717 
1718 	logo_black();
1719 	return 0;
1720 }
1721 
1722 U_BOOT_CMD(
1723 	   clrlogo, 1, 0, do_clrlogo,
1724 	   "fill the boot logo area with black",
1725 	   " "
1726 	   );
1727 
plot_logo_or_black(void * screen,int x,int y,int black)1728 static void plot_logo_or_black(void *screen, int x, int y, int black)
1729 {
1730 
1731 	int xcount, i;
1732 	int skip = VIDEO_LINE_LEN - VIDEO_LOGO_WIDTH * VIDEO_PIXEL_SIZE;
1733 	int ycount = video_logo_height;
1734 	unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1735 	unsigned char *source;
1736 	unsigned char *dest;
1737 
1738 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1739 	if (x == BMP_ALIGN_CENTER)
1740 		x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1741 	else if (x < 0)
1742 		x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1));
1743 
1744 	if (y == BMP_ALIGN_CENTER)
1745 		y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1746 	else if (y < 0)
1747 		y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1));
1748 #endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1749 
1750 	dest = (unsigned char *)screen + y * VIDEO_LINE_LEN + x * VIDEO_PIXEL_SIZE;
1751 
1752 #ifdef CONFIG_VIDEO_BMP_LOGO
1753 	source = bmp_logo_bitmap;
1754 
1755 	/* Allocate temporary space for computing colormap */
1756 	logo_red = malloc(BMP_LOGO_COLORS);
1757 	logo_green = malloc(BMP_LOGO_COLORS);
1758 	logo_blue = malloc(BMP_LOGO_COLORS);
1759 	/* Compute color map */
1760 	for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1761 		logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1762 		logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1763 		logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1764 	}
1765 #else
1766 	source = linux_logo;
1767 	logo_red = linux_logo_red;
1768 	logo_green = linux_logo_green;
1769 	logo_blue = linux_logo_blue;
1770 #endif
1771 
1772 	if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1773 		for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1774 			video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1775 				      logo_red[i], logo_green[i],
1776 				      logo_blue[i]);
1777 		}
1778 	}
1779 
1780 	while (ycount--) {
1781 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1782 		int xpos = x;
1783 #endif
1784 		xcount = VIDEO_LOGO_WIDTH;
1785 		while (xcount--) {
1786 			if (black) {
1787 				r = 0x00;
1788 				g = 0x00;
1789 				b = 0x00;
1790 			} else {
1791 				r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1792 				g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1793 				b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1794 			}
1795 
1796 			switch (VIDEO_DATA_FORMAT) {
1797 			case GDF__8BIT_INDEX:
1798 				*dest = *source;
1799 				break;
1800 			case GDF__8BIT_332RGB:
1801 				*dest = ((r >> 5) << 5) |
1802 					((g >> 5) << 2) |
1803 					 (b >> 6);
1804 				break;
1805 			case GDF_15BIT_555RGB:
1806 #if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1807 				fill_555rgb_pswap(dest, xpos++, r, g, b);
1808 #else
1809 				*(unsigned short *) dest =
1810 					SWAP16((unsigned short) (
1811 							((r >> 3) << 10) |
1812 							((g >> 3) <<  5) |
1813 							 (b >> 3)));
1814 #endif
1815 				break;
1816 			case GDF_16BIT_565RGB:
1817 				*(unsigned short *) dest =
1818 					SWAP16((unsigned short) (
1819 							((r >> 3) << 11) |
1820 							((g >> 2) <<  5) |
1821 							 (b >> 3)));
1822 				break;
1823 			case GDF_32BIT_X888RGB:
1824 				*(u32 *) dest =
1825 					SWAP32((u32) (
1826 							(r << 16) |
1827 							(g <<  8) |
1828 							 b));
1829 				break;
1830 			case GDF_24BIT_888RGB:
1831 #ifdef VIDEO_FB_LITTLE_ENDIAN
1832 				dest[0] = b;
1833 				dest[1] = g;
1834 				dest[2] = r;
1835 #else
1836 				dest[0] = r;
1837 				dest[1] = g;
1838 				dest[2] = b;
1839 #endif
1840 				break;
1841 			}
1842 			source++;
1843 			dest += VIDEO_PIXEL_SIZE;
1844 		}
1845 		dest += skip;
1846 	}
1847 #ifdef CONFIG_VIDEO_BMP_LOGO
1848 	free(logo_red);
1849 	free(logo_green);
1850 	free(logo_blue);
1851 #endif
1852 }
1853 
video_logo(void)1854 static void *video_logo(void)
1855 {
1856 	char info[128];
1857 	__maybe_unused int y_off = 0;
1858 	__maybe_unused ulong addr;
1859 	__maybe_unused char *s;
1860 	__maybe_unused int len, ret, space;
1861 
1862 	splash_get_pos(&video_logo_xpos, &video_logo_ypos);
1863 
1864 #ifdef CONFIG_SPLASH_SCREEN
1865 	s = env_get("splashimage");
1866 	if (s != NULL) {
1867 		ret = splash_screen_prepare();
1868 		if (ret < 0)
1869 			return video_fb_address;
1870 		addr = simple_strtoul(s, NULL, 16);
1871 
1872 		if (video_display_bitmap(addr,
1873 					video_logo_xpos,
1874 					video_logo_ypos) == 0) {
1875 			video_logo_height = 0;
1876 			return ((void *) (video_fb_address));
1877 		}
1878 	}
1879 #endif /* CONFIG_SPLASH_SCREEN */
1880 
1881 	logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
1882 
1883 #ifdef CONFIG_SPLASH_SCREEN_ALIGN
1884 	/*
1885 	 * when using splashpos for video_logo, skip any info
1886 	 * output on video console if the logo is not at 0,0
1887 	 */
1888 	if (video_logo_xpos || video_logo_ypos) {
1889 		/*
1890 		 * video_logo_height is used in text and cursor offset
1891 		 * calculations. Since the console is below the logo,
1892 		 * we need to adjust the logo height
1893 		 */
1894 		if (video_logo_ypos == BMP_ALIGN_CENTER)
1895 			video_logo_height += max(0, (int)(VIDEO_VISIBLE_ROWS -
1896 						     VIDEO_LOGO_HEIGHT) / 2);
1897 		else if (video_logo_ypos > 0)
1898 			video_logo_height += video_logo_ypos;
1899 
1900 		return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
1901 	}
1902 #endif
1903 	if (board_cfb_skip())
1904 		return 0;
1905 
1906 	sprintf(info, " %s", version_string);
1907 
1908 #ifndef CONFIG_HIDE_LOGO_VERSION
1909 	space = (VIDEO_COLS - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
1910 	len = strlen(info);
1911 
1912 	if (len > space) {
1913 		int xx = VIDEO_INFO_X, yy = VIDEO_INFO_Y;
1914 		uchar *p = (uchar *) info;
1915 
1916 		while (len) {
1917 			if (len > space) {
1918 				video_drawchars(xx, yy, p, space);
1919 				len -= space;
1920 
1921 				p = (uchar *)p + space;
1922 
1923 				if (!y_off) {
1924 					xx += VIDEO_FONT_WIDTH;
1925 					space--;
1926 				}
1927 				yy += VIDEO_FONT_HEIGHT;
1928 
1929 				y_off++;
1930 			} else {
1931 				video_drawchars(xx, yy, p, len);
1932 				len = 0;
1933 			}
1934 		}
1935 	} else
1936 		video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
1937 
1938 #ifdef CONFIG_CONSOLE_EXTRA_INFO
1939 	{
1940 		int i, n =
1941 			((video_logo_height -
1942 			  VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
1943 
1944 		for (i = 1; i < n; i++) {
1945 			video_get_info_str(i, info);
1946 			if (!*info)
1947 				continue;
1948 
1949 			len = strlen(info);
1950 			if (len > space) {
1951 				video_drawchars(VIDEO_INFO_X,
1952 						VIDEO_INFO_Y +
1953 						(i + y_off) *
1954 							VIDEO_FONT_HEIGHT,
1955 						(uchar *) info, space);
1956 				y_off++;
1957 				video_drawchars(VIDEO_INFO_X +
1958 						VIDEO_FONT_WIDTH,
1959 						VIDEO_INFO_Y +
1960 							(i + y_off) *
1961 							VIDEO_FONT_HEIGHT,
1962 						(uchar *) info + space,
1963 						len - space);
1964 			} else {
1965 				video_drawstring(VIDEO_INFO_X,
1966 						 VIDEO_INFO_Y +
1967 						 (i + y_off) *
1968 							VIDEO_FONT_HEIGHT,
1969 						 (uchar *) info);
1970 			}
1971 		}
1972 	}
1973 #endif
1974 #endif
1975 
1976 	return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
1977 }
1978 #endif
1979 
cfb_fb_is_in_dram(void)1980 static int cfb_fb_is_in_dram(void)
1981 {
1982 	bd_t *bd = gd->bd;
1983 #if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || \
1984 defined(CONFIG_SANDBOX) || defined(CONFIG_X86)
1985 	ulong start, end;
1986 	int i;
1987 
1988 	for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
1989 		start = bd->bi_dram[i].start;
1990 		end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
1991 		if ((ulong)video_fb_address >= start &&
1992 		    (ulong)video_fb_address < end)
1993 			return 1;
1994 	}
1995 #else
1996 	if ((ulong)video_fb_address >= bd->bi_memstart &&
1997 	    (ulong)video_fb_address < bd->bi_memstart + bd->bi_memsize)
1998 		return 1;
1999 #endif
2000 	return 0;
2001 }
2002 
video_clear(void)2003 void video_clear(void)
2004 {
2005 	if (!video_fb_address)
2006 		return;
2007 #ifdef VIDEO_HW_RECTFILL
2008 	video_hw_rectfill(VIDEO_PIXEL_SIZE,	/* bytes per pixel */
2009 			  0,			/* dest pos x */
2010 			  0,			/* dest pos y */
2011 			  VIDEO_VISIBLE_COLS,	/* frame width */
2012 			  VIDEO_VISIBLE_ROWS,	/* frame height */
2013 			  bgx			/* fill color */
2014 	);
2015 #else
2016 	memsetl(video_fb_address,
2017 		(VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2018 #endif
2019 }
2020 
cfg_video_init(void)2021 static int cfg_video_init(void)
2022 {
2023 	unsigned char color8;
2024 
2025 	pGD = video_hw_init();
2026 	if (pGD == NULL)
2027 		return -1;
2028 
2029 	video_fb_address = (void *) VIDEO_FB_ADRS;
2030 
2031 	cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2032 
2033 	/* Init drawing pats */
2034 	switch (VIDEO_DATA_FORMAT) {
2035 	case GDF__8BIT_INDEX:
2036 		video_set_lut(0x01, CONFIG_SYS_CONSOLE_FG_COL,
2037 			      CONFIG_SYS_CONSOLE_FG_COL,
2038 			      CONFIG_SYS_CONSOLE_FG_COL);
2039 		video_set_lut(0x00, CONFIG_SYS_CONSOLE_BG_COL,
2040 			      CONFIG_SYS_CONSOLE_BG_COL,
2041 			      CONFIG_SYS_CONSOLE_BG_COL);
2042 		fgx = 0x01010101;
2043 		bgx = 0x00000000;
2044 		break;
2045 	case GDF__8BIT_332RGB:
2046 		color8 = ((CONFIG_SYS_CONSOLE_FG_COL & 0xe0) |
2047 			  ((CONFIG_SYS_CONSOLE_FG_COL >> 3) & 0x1c) |
2048 			  CONFIG_SYS_CONSOLE_FG_COL >> 6);
2049 		fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2050 			color8;
2051 		color8 = ((CONFIG_SYS_CONSOLE_BG_COL & 0xe0) |
2052 			  ((CONFIG_SYS_CONSOLE_BG_COL >> 3) & 0x1c) |
2053 			  CONFIG_SYS_CONSOLE_BG_COL >> 6);
2054 		bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2055 			color8;
2056 		break;
2057 	case GDF_15BIT_555RGB:
2058 		fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 26) |
2059 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 21) |
2060 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2061 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 10) |
2062 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 3) <<  5) |
2063 			(CONFIG_SYS_CONSOLE_FG_COL >> 3));
2064 		bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 26) |
2065 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 21) |
2066 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2067 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 10) |
2068 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 3) <<  5) |
2069 			(CONFIG_SYS_CONSOLE_BG_COL >> 3));
2070 		break;
2071 	case GDF_16BIT_565RGB:
2072 		fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 27) |
2073 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 21) |
2074 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2075 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 11) |
2076 		       ((CONFIG_SYS_CONSOLE_FG_COL >> 2) <<  5) |
2077 			(CONFIG_SYS_CONSOLE_FG_COL >> 3));
2078 		bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 27) |
2079 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 21) |
2080 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2081 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 11) |
2082 		       ((CONFIG_SYS_CONSOLE_BG_COL >> 2) <<  5) |
2083 			(CONFIG_SYS_CONSOLE_BG_COL >> 3));
2084 		break;
2085 	case GDF_32BIT_X888RGB:
2086 		fgx =	(CONFIG_SYS_CONSOLE_FG_COL << 16) |
2087 			(CONFIG_SYS_CONSOLE_FG_COL <<  8) |
2088 			 CONFIG_SYS_CONSOLE_FG_COL;
2089 		bgx =	(CONFIG_SYS_CONSOLE_BG_COL << 16) |
2090 			(CONFIG_SYS_CONSOLE_BG_COL <<  8) |
2091 			 CONFIG_SYS_CONSOLE_BG_COL;
2092 		break;
2093 	case GDF_24BIT_888RGB:
2094 		fgx =	(CONFIG_SYS_CONSOLE_FG_COL << 24) |
2095 			(CONFIG_SYS_CONSOLE_FG_COL << 16) |
2096 			(CONFIG_SYS_CONSOLE_FG_COL <<  8) |
2097 			 CONFIG_SYS_CONSOLE_FG_COL;
2098 		bgx =	(CONFIG_SYS_CONSOLE_BG_COL << 24) |
2099 			(CONFIG_SYS_CONSOLE_BG_COL << 16) |
2100 			(CONFIG_SYS_CONSOLE_BG_COL <<  8) |
2101 			 CONFIG_SYS_CONSOLE_BG_COL;
2102 		break;
2103 	}
2104 	eorx = fgx ^ bgx;
2105 
2106 	if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
2107 		video_clear();
2108 
2109 #ifdef CONFIG_VIDEO_LOGO
2110 	/* Plot the logo and get start point of console */
2111 	debug("Video: Drawing the logo ...\n");
2112 	video_console_address = video_logo();
2113 #else
2114 	video_console_address = video_fb_address;
2115 #endif
2116 
2117 	/* Initialize the console */
2118 	console_col = 0;
2119 	console_row = 0;
2120 
2121 	if (cfb_do_flush_cache)
2122 		flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2123 
2124 	return 0;
2125 }
2126 
2127 /*
2128  * Implement a weak default function for boards that optionally
2129  * need to skip the video initialization.
2130  */
board_video_skip(void)2131 __weak int board_video_skip(void)
2132 {
2133 	/* As default, don't skip test */
2134 	return 0;
2135 }
2136 
drv_video_init(void)2137 int drv_video_init(void)
2138 {
2139 	struct stdio_dev console_dev;
2140 	bool have_keyboard;
2141 	bool __maybe_unused keyboard_ok = false;
2142 
2143 	/* Check if video initialization should be skipped */
2144 	if (board_video_skip())
2145 		return 0;
2146 
2147 	/* Init video chip - returns with framebuffer cleared */
2148 	if (cfg_video_init() == -1)
2149 		return 0;
2150 
2151 	if (board_cfb_skip())
2152 		return 0;
2153 
2154 #if defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2155 	have_keyboard = false;
2156 #elif defined(CONFIG_OF_CONTROL)
2157 	have_keyboard = !fdtdec_get_config_bool(gd->fdt_blob,
2158 						"u-boot,no-keyboard");
2159 #else
2160 	have_keyboard = true;
2161 #endif
2162 	if (have_keyboard) {
2163 		debug("KBD: Keyboard init ...\n");
2164 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2165 		keyboard_ok = !(VIDEO_KBD_INIT_FCT == -1);
2166 #endif
2167 	}
2168 
2169 	/* Init vga device */
2170 	memset(&console_dev, 0, sizeof(console_dev));
2171 	strcpy(console_dev.name, "vga");
2172 	console_dev.flags = DEV_FLAGS_OUTPUT;
2173 	console_dev.putc = cfb_video_putc;	/* 'putc' function */
2174 	console_dev.puts = cfb_video_puts;	/* 'puts' function */
2175 
2176 #if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2177 	if (have_keyboard && keyboard_ok) {
2178 		/* Also init console device */
2179 		console_dev.flags |= DEV_FLAGS_INPUT;
2180 		console_dev.tstc = VIDEO_TSTC_FCT;	/* 'tstc' function */
2181 		console_dev.getc = VIDEO_GETC_FCT;	/* 'getc' function */
2182 	}
2183 #endif
2184 
2185 	if (stdio_register(&console_dev) != 0)
2186 		return 0;
2187 
2188 	/* Return success */
2189 	return 1;
2190 }
2191 
video_position_cursor(unsigned col,unsigned row)2192 void video_position_cursor(unsigned col, unsigned row)
2193 {
2194 	console_col = min(col, CONSOLE_COLS - 1);
2195 	console_row = min(row, CONSOLE_ROWS - 1);
2196 }
2197 
video_get_pixel_width(void)2198 int video_get_pixel_width(void)
2199 {
2200 	return VIDEO_VISIBLE_COLS;
2201 }
2202 
video_get_pixel_height(void)2203 int video_get_pixel_height(void)
2204 {
2205 	return VIDEO_VISIBLE_ROWS;
2206 }
2207 
video_get_screen_rows(void)2208 int video_get_screen_rows(void)
2209 {
2210 	return CONSOLE_ROWS;
2211 }
2212 
video_get_screen_columns(void)2213 int video_get_screen_columns(void)
2214 {
2215 	return CONSOLE_COLS;
2216 }
2217