]> Git Repo - u-boot.git/blame - drivers/video/cfb_console.c
Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[u-boot.git] / drivers / video / cfb_console.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
c609719b
WD
2/*
3 * (C) Copyright 2002 ELTEC Elektronik AG
4 * Frank Gottschling <[email protected]>
c609719b
WD
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
64e40d72 15 * information strings (that normally goes to serial port) can be drawn.
c609719b 16 *
39f615ed
SG
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
c609719b
WD
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.
64e40d72
WD
24 *
25 * The driver uses graphic specific defines/parameters/functions:
26 *
27 * (for SMI LynxE graphic chip)
28 *
64e40d72
WD
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 *
64e40d72
WD
41 * VIDEO_KBD_INIT_FCT - init function for keyboard
42 * VIDEO_TSTC_FCT - keyboard_tstc function
43 * VIDEO_GETC_FCT - keyboard_getc function
44 *
1e681f9a
BR
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.
64e40d72
WD
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.
64e40d72
WD
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.
64e40d72 65 */
c609719b
WD
66
67#include <common.h>
9edefc27 68#include <cpu_func.h>
7b51b576 69#include <env.h>
5692ccfa 70#include <fdtdec.h>
0c670fc1 71#include <gzip.h>
09c2e90c 72#include <version.h>
a6c7ad2f 73#include <malloc.h>
0a6eac84 74#include <video.h>
a9a62af1 75#include <linux/compiler.h>
a6c7ad2f 76
c370d382 77#if defined(CONFIG_VIDEO_MXS)
fb8ddc24
MV
78#define VIDEO_FB_16BPP_WORD_SWAP
79#endif
80
64e40d72
WD
81/*
82 * Defines for the MB862xx driver
83 */
bed53753
AG
84#ifdef CONFIG_VIDEO_MB862xx
85
86#ifdef CONFIG_VIDEO_CORALP
87#define VIDEO_FB_LITTLE_ENDIAN
88#endif
5d16ca87 89#ifdef CONFIG_VIDEO_MB862xx_ACCEL
bed53753
AG
90#define VIDEO_HW_RECTFILL
91#define VIDEO_HW_BITBLT
92#endif
5d16ca87 93#endif
bed53753 94
62a22dca
HR
95/*
96 * Defines for the i.MX31 driver (mx3fb.c)
97 */
695af9ab 98#if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
62a22dca
HR
99#define VIDEO_FB_16BPP_WORD_SWAP
100#endif
101
64e40d72
WD
102/*
103 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
104 */
c609719b
WD
105#include <video_fb.h>
106
dd4425e8
RW
107#include <splash.h>
108
64e40d72
WD
109/*
110 * some Macros
111 */
4b248f3f
WD
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)
c609719b 117
64e40d72
WD
118/*
119 * Console device
120 */
c609719b
WD
121
122#include <version.h>
123#include <linux/types.h>
52cb4d4f 124#include <stdio_dev.h>
c609719b 125#include <video_font.h>
c609719b 126
ddb5d86f
JL
127#if defined(CONFIG_CMD_DATE)
128#include <rtc.h>
c609719b
WD
129#endif
130
07d38a17 131#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
4b248f3f
WD
132#include <watchdog.h>
133#include <bmp_layout.h>
ff8fb56b 134#include <splash.h>
07d38a17 135#endif
4b248f3f 136
a4206575 137#if !defined(CONFIG_VIDEO_SW_CURSOR)
c609719b
WD
138/* no Cursor defined */
139#define CURSOR_ON
140#define CURSOR_OFF
141#define CURSOR_SET
142#endif
143
7fe0933c 144#if defined(CONFIG_VIDEO_SW_CURSOR)
64e40d72
WD
145void console_cursor(int state);
146
65618636
TT
147#define CURSOR_ON console_cursor(1)
148#define CURSOR_OFF console_cursor(0)
03d31fcf 149#define CURSOR_SET video_set_cursor()
7fe0933c 150#endif /* CONFIG_VIDEO_SW_CURSOR */
c609719b 151
4b248f3f
WD
152#ifdef CONFIG_VIDEO_LOGO
153#ifdef CONFIG_VIDEO_BMP_LOGO
a6c7ad2f 154#include <bmp_logo.h>
c270730f 155#include <bmp_logo_data.h>
4b248f3f
WD
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
64e40d72 161#else /* CONFIG_VIDEO_BMP_LOGO */
4b248f3f
WD
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
c609719b
WD
166#define __initdata
167#include <linux_logo.h>
4b248f3f
WD
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
64e40d72 172#endif /* CONFIG_VIDEO_BMP_LOGO */
4b248f3f
WD
173#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
174#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
64e40d72 175#else /* CONFIG_VIDEO_LOGO */
4b248f3f
WD
176#define VIDEO_LOGO_WIDTH 0
177#define VIDEO_LOGO_HEIGHT 0
64e40d72 178#endif /* CONFIG_VIDEO_LOGO */
4b248f3f
WD
179
180#define VIDEO_COLS VIDEO_VISIBLE_COLS
181#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
c67a8767
HG
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)
4b248f3f
WD
186#define VIDEO_BURST_LEN (VIDEO_COLS/8)
187
188#ifdef CONFIG_VIDEO_LOGO
be129aa7 189#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
c609719b 190#else
4b248f3f 191#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
c609719b
WD
192#endif
193
4b248f3f
WD
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)
3c0b668f
SG
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
c609719b
WD
205
206/* Macros */
4b248f3f 207#ifdef VIDEO_FB_LITTLE_ENDIAN
64e40d72
WD
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 )
c609719b 221#else
64e40d72
WD
222#define SWAP16(x) (x)
223#define SWAP32(x) (x)
229b6dce 224#if defined(VIDEO_FB_16BPP_WORD_SWAP)
64e40d72 225#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
cc347801 226#else
64e40d72 227#define SHORTSWAP32(x) (x)
bed53753 228#endif
c609719b
WD
229#endif
230
bfd4be80
AG
231DECLARE_GLOBAL_DATA_PTR;
232
c609719b
WD
233/* Locals */
234static GraphicDevice *pGD; /* Pointer to Graphic array */
235
64e40d72 236static void *video_fb_address; /* frame buffer address */
4b248f3f 237static void *video_console_address; /* console buffer start address */
c609719b 238
be129aa7
MW
239static int video_logo_height = VIDEO_LOGO_HEIGHT;
240
a45adde9
AG
241static int __maybe_unused cursor_state;
242static int __maybe_unused old_col;
243static int __maybe_unused old_row;
03d31fcf 244
57912939
WD
245static int console_col; /* cursor col */
246static int console_row; /* cursor row */
c609719b 247
64e40d72 248static u32 eorx, fgx, bgx; /* color pats */
c609719b 249
bfd4be80
AG
250static int cfb_do_flush_cache;
251
33a35bbb
T
252#ifdef CONFIG_CFB_CONSOLE_ANSI
253static char ansi_buf[10];
254static int ansi_buf_size;
255static int ansi_colors_need_revert;
256static int ansi_cursor_hidden;
257#endif
258
c609719b 259static const int video_font_draw_table8[] = {
64e40d72
WD
260 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
261 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
262 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
263 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
264};
c609719b
WD
265
266static const int video_font_draw_table15[] = {
64e40d72
WD
267 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
268};
c609719b
WD
269
270static const int video_font_draw_table16[] = {
64e40d72
WD
271 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
272};
c609719b
WD
273
274static const int video_font_draw_table24[16][3] = {
64e40d72
WD
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};
c609719b
WD
292
293static const int video_font_draw_table32[16][4] = {
64e40d72
WD
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
2bc4aa52
HS
312/*
313 * Implement a weak default function for boards that optionally
314 * need to skip the cfb initialization.
315 */
316__weak int board_cfb_skip(void)
317{
318 /* As default, don't skip cfb init */
319 return 0;
320}
321
64e40d72 322static void video_drawchars(int xx, int yy, unsigned char *s, int count)
c609719b 323{
4b248f3f
WD
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;
64e40d72 337 rows--; dest += VIDEO_LINE_LEN) {
4b248f3f
WD
338 u8 bits = *cdat++;
339
64e40d72
WD
340 ((u32 *) dest)[0] =
341 (video_font_draw_table8[bits >> 4] &
342 eorx) ^ bgx;
fd8cf994
MV
343
344 if (VIDEO_FONT_WIDTH == 4)
345 continue;
346
64e40d72
WD
347 ((u32 *) dest)[1] =
348 (video_font_draw_table8[bits & 15] &
349 eorx) ^ bgx;
4b248f3f
WD
350 }
351 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
352 s++;
353 }
354 break;
c609719b 355
4b248f3f
WD
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;
64e40d72 361 rows--; dest += VIDEO_LINE_LEN) {
4b248f3f
WD
362 u8 bits = *cdat++;
363
64e40d72
WD
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);
fd8cf994
MV
372
373 if (VIDEO_FONT_WIDTH == 4)
374 continue;
375
64e40d72
WD
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);
4b248f3f
WD
384 }
385 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
386 s++;
387 }
388 break;
c609719b 389
4b248f3f
WD
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;
64e40d72 395 rows--; dest += VIDEO_LINE_LEN) {
4b248f3f
WD
396 u8 bits = *cdat++;
397
64e40d72
WD
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);
fd8cf994
MV
406
407 if (VIDEO_FONT_WIDTH == 4)
408 continue;
409
64e40d72
WD
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);
4b248f3f
WD
418 }
419 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
420 s++;
421 }
422 break;
c609719b 423
4b248f3f
WD
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;
64e40d72 429 rows--; dest += VIDEO_LINE_LEN) {
4b248f3f
WD
430 u8 bits = *cdat++;
431
64e40d72
WD
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);
fd8cf994
MV
444
445
446 if (VIDEO_FONT_WIDTH == 4)
447 continue;
448
64e40d72
WD
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);
4b248f3f
WD
461 }
462 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
463 s++;
464 }
465 break;
c609719b 466
4b248f3f
WD
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;
64e40d72 472 rows--; dest += VIDEO_LINE_LEN) {
4b248f3f
WD
473 u8 bits = *cdat++;
474
64e40d72
WD
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;
fd8cf994
MV
484
485 if (VIDEO_FONT_WIDTH == 4)
486 continue;
487
64e40d72
WD
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;
4b248f3f
WD
497 }
498 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
499 s++;
500 }
501 break;
8bde7f77 502 }
c609719b
WD
503}
504
64e40d72 505static inline void video_drawstring(int xx, int yy, unsigned char *s)
c609719b 506{
64e40d72 507 video_drawchars(xx, yy, s, strlen((char *) s));
c609719b
WD
508}
509
64e40d72 510static void video_putchar(int xx, int yy, unsigned char c)
c609719b 511{
64e40d72 512 video_drawchars(xx, yy + video_logo_height, &c, 1);
c609719b
WD
513}
514
7fe0933c 515#if defined(CONFIG_VIDEO_SW_CURSOR)
64e40d72 516static void video_set_cursor(void)
c609719b 517{
03d31fcf
GB
518 if (cursor_state)
519 console_cursor(0);
520 console_cursor(1);
c609719b 521}
64e40d72 522
a45adde9
AG
523static 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}
03d31fcf 537
64e40d72 538void console_cursor(int state)
c609719b 539{
03d31fcf
GB
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;
4b248f3f 555 }
db0d47dd
EN
556 if (cfb_do_flush_cache)
557 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
c609719b
WD
558}
559#endif
560
c609719b 561#ifndef VIDEO_HW_RECTFILL
64e40d72 562static void memsetl(int *p, int c, int v)
c609719b 563{
4b248f3f
WD
564 while (c--)
565 *(p++) = v;
c609719b
WD
566}
567#endif
568
c609719b 569#ifndef VIDEO_HW_BITBLT
64e40d72 570static void memcpyl(int *d, int *s, int c)
c609719b 571{
4b248f3f
WD
572 while (c--)
573 *(d++) = *(s++);
c609719b
WD
574}
575#endif
576
90f60a81
T
577static 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
64e40d72 612static void console_scrollup(void)
c609719b 613{
3c0b668f
SG
614 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
615 int i;
616
4b248f3f 617 /* copy up rows ignoring the first one */
c609719b
WD
618
619#ifdef VIDEO_HW_BITBLT
64e40d72
WD
620 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
621 0, /* source pos x */
622 video_logo_height +
3c0b668f 623 VIDEO_FONT_HEIGHT * rows, /* source pos y */
64e40d72
WD
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
3c0b668f 629 - VIDEO_FONT_HEIGHT * rows /* frame height */
4b248f3f 630 );
c609719b 631#else
3c0b668f
SG
632 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE,
633 (CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2);
c609719b 634#endif
4b248f3f 635 /* clear the last one */
3c0b668f
SG
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;
c609719b
WD
641}
642
64e40d72 643static void console_back(void)
c609719b 644{
65618636 645 console_col--;
4b248f3f
WD
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 }
c609719b
WD
653}
654
33a35bbb
T
655#ifdef CONFIG_CFB_CONSOLE_ANSI
656
657static 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
672static 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
684static void console_cursor_up(int n)
685{
686 console_row -= n;
687 console_cursor_fix();
688}
689
690static void console_cursor_down(int n)
691{
692 console_row += n;
693 console_cursor_fix();
694}
695
696static void console_cursor_left(int n)
697{
698 console_col -= n;
699 console_cursor_fix();
700}
701
702static void console_cursor_right(int n)
703{
704 console_col += n;
705 console_cursor_fix();
706}
707
708static 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
717static void console_previousline(int n)
718{
719 /* FIXME: also scroll terminal ? */
720 console_row -= n;
721 console_cursor_fix();
722}
723
724static void console_swap_colors(void)
c609719b 725{
33a35bbb
T
726 eorx = fgx;
727 fgx = bgx;
728 bgx = eorx;
729 eorx = fgx ^ bgx;
730}
731
732static inline int console_cursor_is_visible(void)
733{
734 return !ansi_cursor_hidden;
735}
736#else
737static inline int console_cursor_is_visible(void)
738{
739 return 1;
740}
741#endif
742
743static void console_newline(int n)
744{
745 console_row += n;
4b248f3f
WD
746 console_col = 0;
747
748 /* Check if we need to scroll the terminal */
749 if (console_row >= CONSOLE_ROWS) {
750 /* Scroll everything up */
64e40d72 751 console_scrollup();
4b248f3f 752 }
c609719b
WD
753}
754
64e40d72 755static void console_cr(void)
20c450ef 756{
65618636 757 console_col = 0;
20c450ef
AG
758}
759
33a35bbb 760static void parse_putc(const char c)
c609719b 761{
20c450ef
AG
762 static int nl = 1;
763
33a35bbb
T
764 if (console_cursor_is_visible())
765 CURSOR_OFF;
03d31fcf 766
4b248f3f 767 switch (c) {
20c450ef 768 case 13: /* back to first column */
64e40d72 769 console_cr();
4b248f3f 770 break;
c609719b 771
4b248f3f 772 case '\n': /* next line */
41ec1270 773 if (console_col || nl)
33a35bbb 774 console_newline(1);
20c450ef 775 nl = 1;
4b248f3f
WD
776 break;
777
778 case 9: /* tab 8 */
65618636 779 console_col |= 0x0008;
4b248f3f 780 console_col &= ~0x0007;
c609719b 781
4b248f3f 782 if (console_col >= CONSOLE_COLS)
33a35bbb 783 console_newline(1);
4b248f3f 784 break;
c609719b 785
4b248f3f 786 case 8: /* backspace */
64e40d72 787 console_back();
4b248f3f 788 break;
c609719b 789
24fe06cc
T
790 case 7: /* bell */
791 break; /* ignored */
792
4b248f3f 793 default: /* draw the char */
64e40d72
WD
794 video_putchar(console_col * VIDEO_FONT_WIDTH,
795 console_row * VIDEO_FONT_HEIGHT, c);
4b248f3f 796 console_col++;
c609719b 797
4b248f3f 798 /* check for newline */
20c450ef 799 if (console_col >= CONSOLE_COLS) {
33a35bbb 800 console_newline(1);
20c450ef
AG
801 nl = 0;
802 }
4b248f3f 803 }
33a35bbb
T
804
805 if (console_cursor_is_visible())
806 CURSOR_SET;
807}
808
0a6eac84 809static void cfb_video_putc(struct stdio_dev *dev, const char c)
33a35bbb
T
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
db0d47dd
EN
1019 if (cfb_do_flush_cache)
1020 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
65618636 1021}
c609719b 1022
0a6eac84 1023static void cfb_video_puts(struct stdio_dev *dev, const char *s)
c609719b 1024{
d37e96ec 1025 int flush = cfb_do_flush_cache;
64e40d72 1026 int count = strlen(s);
4b248f3f 1027
d37e96ec
SM
1028 /* temporarily disable cache flush */
1029 cfb_do_flush_cache = 0;
1030
4b248f3f 1031 while (count--)
0a6eac84 1032 cfb_video_putc(dev, *s++);
d37e96ec
SM
1033
1034 if (flush) {
1035 cfb_do_flush_cache = flush;
1036 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1037 }
4b248f3f
WD
1038}
1039
10543820
AG
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 */
69d27545 1045__weak void video_set_lut(unsigned int index, unsigned char r,
64e40d72 1046 unsigned char g, unsigned char b)
10543820
AG
1047{
1048}
64e40d72 1049
07d38a17 1050#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
4b248f3f
WD
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) { \
64e40d72
WD
1058 *(unsigned short *)fb = \
1059 SWAP16((unsigned short)(((r>>3)<<10) | \
1060 ((g>>3)<<5) | \
1061 (b>>3))); \
4b248f3f
WD
1062 fb += 2; \
1063}
1064
1065#define FILL_16BIT_565RGB(r,g,b) { \
64e40d72
WD
1066 *(unsigned short *)fb = \
1067 SWAP16((unsigned short)((((r)>>3)<<11)| \
1068 (((g)>>2)<<5) | \
1069 ((b)>>3))); \
4b248f3f
WD
1070 fb += 2; \
1071}
1072
1073#define FILL_32BIT_X888RGB(r,g,b) { \
1d4ed26f
AP
1074 *(u32 *)fb = \
1075 SWAP32((unsigned int)(((r<<16) | \
64e40d72
WD
1076 (g<<8) | \
1077 b))); \
4b248f3f
WD
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
e84d568f 1097#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
64e40d72 1098static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
e84d568f 1099{
64e40d72
WD
1100 ushort *dst = (ushort *) fb;
1101 ushort color = (ushort) (((r >> 3) << 10) |
1102 ((g >> 3) << 5) |
1103 (b >> 3));
e84d568f
AG
1104 if (x & 1)
1105 *(--dst) = color;
1106 else
1107 *(++dst) = color;
1108}
1109#endif
4b248f3f 1110
d5011762
AG
1111/*
1112 * RLE8 bitmap support
1113 */
1114
1115#ifdef CONFIG_VIDEO_BMP_RLE8
1116/* Pre-calculated color table entry */
1117struct palette {
1118 union {
64e40d72
WD
1119 unsigned short w; /* word */
1120 unsigned int dw; /* double word */
1121 } ce; /* color entry */
d5011762
AG
1122};
1123
1124/*
1125 * Helper to draw encoded/unencoded run.
1126 */
64e40d72
WD
1127static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1128 int cnt, int enc)
d5011762 1129{
64e40d72 1130 ulong addr = (ulong) *fb;
d5011762
AG
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++)
64e40d72 1144 *(unsigned char *) addr++ = bm[*off];
d5011762
AG
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++) {
64e40d72 1150 *(unsigned short *) addr = p[bm[*off]].ce.w;
d5011762
AG
1151 addr += 2;
1152 }
1153 break;
1154 case GDF_32BIT_X888RGB:
1155 for (i = 0; i < cnt; i++) {
1d4ed26f 1156 *(u32 *) addr = p[bm[*off]].ce.dw;
d5011762
AG
1157 addr += 4;
1158 }
1159 break;
1160 }
64e40d72 1161 *fb = (uchar *) addr; /* return modified address */
d5011762
AG
1162}
1163
1c3dbe56 1164static int display_rle8_bitmap(struct bmp_image *img, int xoff, int yoff,
64e40d72 1165 int width, int height)
d5011762
AG
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];
1c3dbe56 1173 struct bmp_color_table_entry cte;
d5011762 1174 int green_shift, red_off;
c67a8767 1175 int limit = (VIDEO_LINE_LEN / VIDEO_PIXEL_SIZE) * VIDEO_ROWS;
74446b63 1176 int pixels = 0;
d5011762
AG
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;
64e40d72 1182 fbp = (unsigned char *) ((unsigned int) video_fb_address +
c67a8767
HG
1183 (y + yoff) * VIDEO_LINE_LEN +
1184 xoff * bpp);
d5011762 1185
64e40d72 1186 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
d5011762
AG
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];
64e40d72 1193 video_set_lut(i, cte.red, cte.green, cte.blue);
d5011762
AG
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];
64e40d72
WD
1216 p[i].ce.dw = SWAP32((cte.red << 16) |
1217 (cte.green << 8) |
d5011762
AG
1218 cte.blue);
1219 }
1220 break;
1221 default:
1222 printf("RLE Bitmap unsupported in video mode 0x%x\n",
64e40d72 1223 VIDEO_DATA_FORMAT);
d5011762
AG
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 *)
64e40d72 1237 ((unsigned int) video_fb_address +
c67a8767
HG
1238 (y + yoff) * VIDEO_LINE_LEN +
1239 xoff * bpp);
d5011762
AG
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 *)
64e40d72 1250 ((unsigned int) video_fb_address +
c67a8767
HG
1251 (y + yoff) * VIDEO_LINE_LEN +
1252 xoff * bpp);
d5011762
AG
1253 bm += 4;
1254 break;
1255 default:
1256 /* unencoded run */
1257 cnt = bm[1];
1258 runlen = cnt;
74446b63
AG
1259 pixels += cnt;
1260 if (pixels > limit)
1261 goto error;
1262
d5011762
AG
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;
64e40d72 1271 draw_bitmap(&fbp, bm, p, cnt, 0);
d5011762
AG
1272 x += runlen;
1273 }
1274next_run:
1275 bm += runlen;
1276 if (runlen & 1)
64e40d72 1277 bm++; /* 0 padding if length is odd */
d5011762
AG
1278 }
1279 break;
1280 default:
1281 /* encoded run */
74446b63
AG
1282 cnt = bm[0];
1283 runlen = cnt;
1284 pixels += cnt;
1285 if (pixels > limit)
1286 goto error;
1287
64e40d72 1288 if (y < height) { /* only draw into visible area */
d5011762
AG
1289 if (x >= width) {
1290 x += runlen;
1291 bm += 2;
1292 continue;
1293 }
1294 if (x + runlen > width)
1295 cnt = width - x;
64e40d72 1296 draw_bitmap(&fbp, bm, p, cnt, 1);
d5011762
AG
1297 x += runlen;
1298 }
1299 bm += 2;
1300 break;
1301 }
1302 }
47b11c81
SS
1303
1304 if (cfb_do_flush_cache)
1305 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1306
d5011762 1307 return 0;
74446b63
AG
1308error:
1309 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1310 return -1;
d5011762
AG
1311}
1312#endif
1313
4b248f3f
WD
1314/*
1315 * Display the BMP file located at address bmp_image.
4b248f3f 1316 */
64e40d72 1317int video_display_bitmap(ulong bmp_image, int x, int y)
4b248f3f
WD
1318{
1319 ushort xcount, ycount;
1320 uchar *fb;
1c3dbe56 1321 struct bmp_image *bmp = (struct bmp_image *)bmp_image;
4b248f3f
WD
1322 uchar *bmap;
1323 ushort padded_line;
1324 unsigned long width, height, bpp;
1325 unsigned colors;
1326 unsigned long compression;
1c3dbe56 1327 struct bmp_color_table_entry cte;
64e40d72 1328
98f4a3df
SR
1329#ifdef CONFIG_VIDEO_BMP_GZIP
1330 unsigned char *dst = NULL;
1331 ulong len;
1332#endif
4b248f3f 1333
64e40d72 1334 WATCHDOG_RESET();
4b248f3f
WD
1335
1336 if (!((bmp->header.signature[0] == 'B') &&
1337 (bmp->header.signature[1] == 'M'))) {
98f4a3df
SR
1338
1339#ifdef CONFIG_VIDEO_BMP_GZIP
1340 /*
1341 * Could be a gzipped bmp image, try to decrompress...
1342 */
6d0f6bcf
JCPV
1343 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1344 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
c29ab9d7
SR
1345 if (dst == NULL) {
1346 printf("Error: malloc in gunzip failed!\n");
64e40d72 1347 return 1;
c29ab9d7 1348 }
5ca05c8b
EN
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,
64e40d72
WD
1354 (uchar *) bmp_image,
1355 &len) != 0) {
1356 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1357 bmp_image);
98f4a3df
SR
1358 free(dst);
1359 return 1;
1360 }
6d0f6bcf 1361 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
64e40d72
WD
1362 printf("Image could be truncated "
1363 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
c29ab9d7 1364 }
98f4a3df
SR
1365
1366 /*
1367 * Set addr to decompressed image
1368 */
1c3dbe56 1369 bmp = (struct bmp_image *)(dst+2);
98f4a3df
SR
1370
1371 if (!((bmp->header.signature[0] == 'B') &&
1372 (bmp->header.signature[1] == 'M'))) {
64e40d72
WD
1373 printf("Error: no valid bmp.gz image at %lx\n",
1374 bmp_image);
a49e0d17 1375 free(dst);
98f4a3df
SR
1376 return 1;
1377 }
1378#else
64e40d72 1379 printf("Error: no valid bmp image at %lx\n", bmp_image);
4b248f3f 1380 return 1;
98f4a3df 1381#endif /* CONFIG_VIDEO_BMP_GZIP */
4b248f3f
WD
1382 }
1383
64e40d72
WD
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);
c609719b 1389
68da5b19 1390 debug("Display-bmp: %ld x %ld with %d colors\n",
64e40d72 1391 width, height, colors);
4b248f3f 1392
d5011762
AG
1393 if (compression != BMP_BI_RGB
1394#ifdef CONFIG_VIDEO_BMP_RLE8
1395 && compression != BMP_BI_RLE8
1396#endif
64e40d72
WD
1397 ) {
1398 printf("Error: compression type %ld not supported\n",
1399 compression);
a49e0d17
MF
1400#ifdef CONFIG_VIDEO_BMP_GZIP
1401 if (dst)
1402 free(dst);
1403#endif
4b248f3f
WD
1404 return 1;
1405 }
1406
1407 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1408
1ca298ce
MW
1409#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1410 if (x == BMP_ALIGN_CENTER)
b4141195 1411 x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
1ca298ce 1412 else if (x < 0)
b4141195 1413 x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
1ca298ce
MW
1414
1415 if (y == BMP_ALIGN_CENTER)
b4141195 1416 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
1ca298ce 1417 else if (y < 0)
b4141195 1418 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
1ca298ce
MW
1419#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1420
acf3baad
MW
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
4b248f3f
WD
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
64e40d72 1433 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
4b248f3f 1434 fb = (uchar *) (video_fb_address +
c67a8767 1435 ((y + height - 1) * VIDEO_LINE_LEN) +
4b248f3f
WD
1436 x * VIDEO_PIXEL_SIZE);
1437
d5011762
AG
1438#ifdef CONFIG_VIDEO_BMP_RLE8
1439 if (compression == BMP_BI_RLE8) {
64e40d72 1440 return display_rle8_bitmap(bmp, x, y, width, height);
d5011762
AG
1441 }
1442#endif
1443
68f6618b 1444 /* We handle only 4, 8, or 24 bpp bitmaps */
64e40d72 1445 switch (le16_to_cpu(bmp->header.bit_count)) {
68f6618b
TT
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--) {
64e40d72 1453 WATCHDOG_RESET();
68f6618b
TT
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;
c67a8767 1471 fb -= VIDEO_LINE_LEN + width *
64e40d72 1472 VIDEO_PIXEL_SIZE;
68f6618b
TT
1473 }
1474 break;
1475 default:
1476 puts("4bpp bitmap unsupported with current "
1477 "video mode\n");
1478 break;
1479 }
1480 break;
1481
4b248f3f
WD
1482 case 8:
1483 padded_line -= width;
1484 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
7c050f81 1485 /* Copy colormap */
4b248f3f
WD
1486 for (xcount = 0; xcount < colors; ++xcount) {
1487 cte = bmp->color_table[xcount];
64e40d72
WD
1488 video_set_lut(xcount, cte.red, cte.green,
1489 cte.blue);
4b248f3f
WD
1490 }
1491 }
1492 ycount = height;
1493 switch (VIDEO_DATA_FORMAT) {
1494 case GDF__8BIT_INDEX:
1495 while (ycount--) {
64e40d72 1496 WATCHDOG_RESET();
4b248f3f
WD
1497 xcount = width;
1498 while (xcount--) {
1499 *fb++ = *bmap++;
1500 }
1501 bmap += padded_line;
c67a8767
HG
1502 fb -= VIDEO_LINE_LEN + width *
1503 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1504 }
1505 break;
1506 case GDF__8BIT_332RGB:
1507 while (ycount--) {
64e40d72 1508 WATCHDOG_RESET();
4b248f3f
WD
1509 xcount = width;
1510 while (xcount--) {
1511 cte = bmp->color_table[*bmap++];
64e40d72
WD
1512 FILL_8BIT_332RGB(cte.red, cte.green,
1513 cte.blue);
4b248f3f
WD
1514 }
1515 bmap += padded_line;
c67a8767
HG
1516 fb -= VIDEO_LINE_LEN + width *
1517 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1518 }
1519 break;
1520 case GDF_15BIT_555RGB:
1521 while (ycount--) {
e84d568f
AG
1522#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1523 int xpos = x;
1524#endif
64e40d72 1525 WATCHDOG_RESET();
4b248f3f
WD
1526 xcount = width;
1527 while (xcount--) {
1528 cte = bmp->color_table[*bmap++];
cc347801 1529#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
64e40d72
WD
1530 fill_555rgb_pswap(fb, xpos++, cte.red,
1531 cte.green,
1532 cte.blue);
e84d568f 1533 fb += 2;
cc347801 1534#else
64e40d72
WD
1535 FILL_15BIT_555RGB(cte.red, cte.green,
1536 cte.blue);
e84d568f 1537#endif
4b248f3f
WD
1538 }
1539 bmap += padded_line;
c67a8767
HG
1540 fb -= VIDEO_LINE_LEN + width *
1541 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1542 }
1543 break;
1544 case GDF_16BIT_565RGB:
1545 while (ycount--) {
64e40d72 1546 WATCHDOG_RESET();
4b248f3f
WD
1547 xcount = width;
1548 while (xcount--) {
1549 cte = bmp->color_table[*bmap++];
64e40d72
WD
1550 FILL_16BIT_565RGB(cte.red, cte.green,
1551 cte.blue);
4b248f3f
WD
1552 }
1553 bmap += padded_line;
c67a8767
HG
1554 fb -= VIDEO_LINE_LEN + width *
1555 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1556 }
1557 break;
1558 case GDF_32BIT_X888RGB:
1559 while (ycount--) {
64e40d72 1560 WATCHDOG_RESET();
4b248f3f
WD
1561 xcount = width;
1562 while (xcount--) {
1563 cte = bmp->color_table[*bmap++];
64e40d72
WD
1564 FILL_32BIT_X888RGB(cte.red, cte.green,
1565 cte.blue);
4b248f3f
WD
1566 }
1567 bmap += padded_line;
c67a8767
HG
1568 fb -= VIDEO_LINE_LEN + width *
1569 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1570 }
1571 break;
1572 case GDF_24BIT_888RGB:
1573 while (ycount--) {
64e40d72 1574 WATCHDOG_RESET();
4b248f3f
WD
1575 xcount = width;
1576 while (xcount--) {
1577 cte = bmp->color_table[*bmap++];
64e40d72
WD
1578 FILL_24BIT_888RGB(cte.red, cte.green,
1579 cte.blue);
4b248f3f
WD
1580 }
1581 bmap += padded_line;
c67a8767
HG
1582 fb -= VIDEO_LINE_LEN + width *
1583 VIDEO_PIXEL_SIZE;
4b248f3f
WD
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--) {
64e40d72 1594 WATCHDOG_RESET();
4b248f3f
WD
1595 xcount = width;
1596 while (xcount--) {
64e40d72
WD
1597 FILL_8BIT_332RGB(bmap[2], bmap[1],
1598 bmap[0]);
4b248f3f
WD
1599 bmap += 3;
1600 }
1601 bmap += padded_line;
c67a8767
HG
1602 fb -= VIDEO_LINE_LEN + width *
1603 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1604 }
1605 break;
1606 case GDF_15BIT_555RGB:
1607 while (ycount--) {
e84d568f
AG
1608#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1609 int xpos = x;
1610#endif
64e40d72 1611 WATCHDOG_RESET();
4b248f3f
WD
1612 xcount = width;
1613 while (xcount--) {
cc347801 1614#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
64e40d72
WD
1615 fill_555rgb_pswap(fb, xpos++, bmap[2],
1616 bmap[1], bmap[0]);
e84d568f 1617 fb += 2;
cc347801 1618#else
64e40d72
WD
1619 FILL_15BIT_555RGB(bmap[2], bmap[1],
1620 bmap[0]);
e84d568f 1621#endif
4b248f3f
WD
1622 bmap += 3;
1623 }
1624 bmap += padded_line;
c67a8767
HG
1625 fb -= VIDEO_LINE_LEN + width *
1626 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1627 }
1628 break;
1629 case GDF_16BIT_565RGB:
1630 while (ycount--) {
64e40d72 1631 WATCHDOG_RESET();
4b248f3f
WD
1632 xcount = width;
1633 while (xcount--) {
64e40d72
WD
1634 FILL_16BIT_565RGB(bmap[2], bmap[1],
1635 bmap[0]);
4b248f3f
WD
1636 bmap += 3;
1637 }
1638 bmap += padded_line;
c67a8767
HG
1639 fb -= VIDEO_LINE_LEN + width *
1640 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1641 }
1642 break;
1643 case GDF_32BIT_X888RGB:
1644 while (ycount--) {
64e40d72 1645 WATCHDOG_RESET();
4b248f3f
WD
1646 xcount = width;
1647 while (xcount--) {
64e40d72
WD
1648 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1649 bmap[0]);
4b248f3f
WD
1650 bmap += 3;
1651 }
1652 bmap += padded_line;
c67a8767
HG
1653 fb -= VIDEO_LINE_LEN + width *
1654 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1655 }
1656 break;
1657 case GDF_24BIT_888RGB:
1658 while (ycount--) {
64e40d72 1659 WATCHDOG_RESET();
4b248f3f
WD
1660 xcount = width;
1661 while (xcount--) {
64e40d72
WD
1662 FILL_24BIT_888RGB(bmap[2], bmap[1],
1663 bmap[0]);
4b248f3f
WD
1664 bmap += 3;
1665 }
1666 bmap += padded_line;
c67a8767
HG
1667 fb -= VIDEO_LINE_LEN + width *
1668 VIDEO_PIXEL_SIZE;
4b248f3f
WD
1669 }
1670 break;
1671 default:
64e40d72
WD
1672 printf("Error: 24 bits/pixel bitmap incompatible "
1673 "with current video mode\n");
4b248f3f
WD
1674 break;
1675 }
1676 break;
1677 default:
64e40d72
WD
1678 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1679 le16_to_cpu(bmp->header.bit_count));
4b248f3f
WD
1680 break;
1681 }
98f4a3df
SR
1682
1683#ifdef CONFIG_VIDEO_BMP_GZIP
1684 if (dst) {
1685 free(dst);
1686 }
1687#endif
1688
db0d47dd
EN
1689 if (cfb_do_flush_cache)
1690 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
4b248f3f 1691 return (0);
c609719b 1692}
07d38a17 1693#endif
c609719b 1694
c609719b
WD
1695
1696#ifdef CONFIG_VIDEO_LOGO
1e681f9a
BR
1697static int video_logo_xpos;
1698static int video_logo_ypos;
1699
c4c9e81f 1700static void plot_logo_or_black(void *screen, int x, int y, int black);
4b7d3a0e 1701
c4c9e81f 1702static void logo_plot(void *screen, int x, int y)
4b7d3a0e 1703{
c4c9e81f 1704 plot_logo_or_black(screen, x, y, 0);
4b7d3a0e
BR
1705}
1706
1707static void logo_black(void)
1708{
c4c9e81f 1709 plot_logo_or_black(video_fb_address, video_logo_xpos, video_logo_ypos,
4b7d3a0e
BR
1710 1);
1711}
1712
1713static 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
1722U_BOOT_CMD(
1723 clrlogo, 1, 0, do_clrlogo,
1724 "fill the boot logo area with black",
1725 " "
1726 );
1727
c4c9e81f 1728static void plot_logo_or_black(void *screen, int x, int y, int black)
c609719b 1729{
a6c7ad2f 1730
4b248f3f 1731 int xcount, i;
c67a8767 1732 int skip = VIDEO_LINE_LEN - VIDEO_LOGO_WIDTH * VIDEO_PIXEL_SIZE;
be129aa7 1733 int ycount = video_logo_height;
4b248f3f
WD
1734 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1735 unsigned char *source;
1e681f9a
BR
1736 unsigned char *dest;
1737
1738#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1739 if (x == BMP_ALIGN_CENTER)
b4141195 1740 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
1e681f9a 1741 else if (x < 0)
b4141195 1742 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1));
1e681f9a
BR
1743
1744 if (y == BMP_ALIGN_CENTER)
b4141195 1745 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
1e681f9a 1746 else if (y < 0)
b4141195 1747 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1));
1e681f9a
BR
1748#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1749
c67a8767 1750 dest = (unsigned char *)screen + y * VIDEO_LINE_LEN + x * VIDEO_PIXEL_SIZE;
a6c7ad2f
WD
1751
1752#ifdef CONFIG_VIDEO_BMP_LOGO
4b248f3f
WD
1753 source = bmp_logo_bitmap;
1754
7c050f81 1755 /* Allocate temporary space for computing colormap */
64e40d72
WD
1756 logo_red = malloc(BMP_LOGO_COLORS);
1757 logo_green = malloc(BMP_LOGO_COLORS);
1758 logo_blue = malloc(BMP_LOGO_COLORS);
7c050f81 1759 /* Compute color map */
4b248f3f
WD
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 }
a6c7ad2f 1765#else
4b248f3f
WD
1766 source = linux_logo;
1767 logo_red = linux_logo_red;
1768 logo_green = linux_logo_green;
1769 logo_blue = linux_logo_blue;
a6c7ad2f 1770#endif
8bde7f77 1771
4b248f3f
WD
1772 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1773 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
64e40d72
WD
1774 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1775 logo_red[i], logo_green[i],
1776 logo_blue[i]);
4b248f3f 1777 }
8bde7f77 1778 }
c609719b 1779
4b248f3f 1780 while (ycount--) {
e84d568f
AG
1781#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1782 int xpos = x;
1783#endif
4b248f3f
WD
1784 xcount = VIDEO_LOGO_WIDTH;
1785 while (xcount--) {
4b7d3a0e
BR
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 }
4b248f3f
WD
1795
1796 switch (VIDEO_DATA_FORMAT) {
1797 case GDF__8BIT_INDEX:
1798 *dest = *source;
1799 break;
1800 case GDF__8BIT_332RGB:
64e40d72
WD
1801 *dest = ((r >> 5) << 5) |
1802 ((g >> 5) << 2) |
1803 (b >> 6);
4b248f3f
WD
1804 break;
1805 case GDF_15BIT_555RGB:
cc347801 1806#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
64e40d72 1807 fill_555rgb_pswap(dest, xpos++, r, g, b);
cc347801 1808#else
4b248f3f 1809 *(unsigned short *) dest =
64e40d72
WD
1810 SWAP16((unsigned short) (
1811 ((r >> 3) << 10) |
1812 ((g >> 3) << 5) |
1813 (b >> 3)));
bed53753 1814#endif
4b248f3f
WD
1815 break;
1816 case GDF_16BIT_565RGB:
1817 *(unsigned short *) dest =
64e40d72
WD
1818 SWAP16((unsigned short) (
1819 ((r >> 3) << 11) |
1820 ((g >> 2) << 5) |
1821 (b >> 3)));
4b248f3f
WD
1822 break;
1823 case GDF_32BIT_X888RGB:
1d4ed26f
AP
1824 *(u32 *) dest =
1825 SWAP32((u32) (
64e40d72
WD
1826 (r << 16) |
1827 (g << 8) |
1828 b));
4b248f3f
WD
1829 break;
1830 case GDF_24BIT_888RGB:
c609719b 1831#ifdef VIDEO_FB_LITTLE_ENDIAN
4b248f3f
WD
1832 dest[0] = b;
1833 dest[1] = g;
1834 dest[2] = r;
c609719b 1835#else
4b248f3f
WD
1836 dest[0] = r;
1837 dest[1] = g;
1838 dest[2] = b;
c609719b 1839#endif
4b248f3f
WD
1840 break;
1841 }
1842 source++;
1843 dest += VIDEO_PIXEL_SIZE;
1844 }
1845 dest += skip;
8bde7f77 1846 }
a6c7ad2f 1847#ifdef CONFIG_VIDEO_BMP_LOGO
64e40d72
WD
1848 free(logo_red);
1849 free(logo_green);
1850 free(logo_blue);
a6c7ad2f 1851#endif
c609719b
WD
1852}
1853
64e40d72 1854static void *video_logo(void)
c609719b 1855{
4b248f3f 1856 char info[128];
a9a62af1 1857 __maybe_unused int y_off = 0;
1e681f9a
BR
1858 __maybe_unused ulong addr;
1859 __maybe_unused char *s;
b4fc6f22 1860 __maybe_unused int len, ret, space;
4b248f3f 1861
ff8fb56b 1862 splash_get_pos(&video_logo_xpos, &video_logo_ypos);
4b248f3f 1863
1e681f9a 1864#ifdef CONFIG_SPLASH_SCREEN
00caae6d 1865 s = env_get("splashimage");
1e681f9a 1866 if (s != NULL) {
b4fc6f22
AG
1867 ret = splash_screen_prepare();
1868 if (ret < 0)
1869 return video_fb_address;
1e681f9a
BR
1870 addr = simple_strtoul(s, NULL, 16);
1871
1e681f9a
BR
1872 if (video_display_bitmap(addr,
1873 video_logo_xpos,
1874 video_logo_ypos) == 0) {
be129aa7 1875 video_logo_height = 0;
4b248f3f
WD
1876 return ((void *) (video_fb_address));
1877 }
1878 }
1879#endif /* CONFIG_SPLASH_SCREEN */
c609719b 1880
c4c9e81f 1881 logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
1e681f9a
BR
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)
b4141195 1895 video_logo_height += max(0, (int)(VIDEO_VISIBLE_ROWS -
1e681f9a
BR
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
2bc4aa52
HS
1903 if (board_cfb_skip())
1904 return 0;
4b248f3f 1905
64e40d72 1906 sprintf(info, " %s", version_string);
3dcbe628 1907
adde435f 1908#ifndef CONFIG_HIDE_LOGO_VERSION
f9d891f0 1909 space = (VIDEO_COLS - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
3dcbe628
AG
1910 len = strlen(info);
1911
1912 if (len > space) {
f9d891f0
PF
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 }
3dcbe628 1935 } else
64e40d72 1936 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
c609719b
WD
1937
1938#ifdef CONFIG_CONSOLE_EXTRA_INFO
4b248f3f 1939 {
64e40d72
WD
1940 int i, n =
1941 ((video_logo_height -
1942 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
4b248f3f
WD
1943
1944 for (i = 1; i < n; i++) {
64e40d72 1945 video_get_info_str(i, info);
3dcbe628
AG
1946 if (!*info)
1947 continue;
1948
1949 len = strlen(info);
1950 if (len > space) {
64e40d72
WD
1951 video_drawchars(VIDEO_INFO_X,
1952 VIDEO_INFO_Y +
1953 (i + y_off) *
1954 VIDEO_FONT_HEIGHT,
1955 (uchar *) info, space);
3dcbe628 1956 y_off++;
64e40d72
WD
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);
3dcbe628 1964 } else {
64e40d72
WD
1965 video_drawstring(VIDEO_INFO_X,
1966 VIDEO_INFO_Y +
1967 (i + y_off) *
1968 VIDEO_FONT_HEIGHT,
1969 (uchar *) info);
3dcbe628 1970 }
4b248f3f
WD
1971 }
1972 }
adde435f 1973#endif
c609719b
WD
1974#endif
1975
be129aa7 1976 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
c609719b
WD
1977}
1978#endif
1979
bfd4be80
AG
1980static int cfb_fb_is_in_dram(void)
1981{
1982 bd_t *bd = gd->bd;
daab59ac 1983#if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || \
bfd4be80
AG
1984defined(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
45ae2546
HS
2003void 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
0a6eac84 2021static int cfg_video_init(void)
c609719b 2022{
4b248f3f 2023 unsigned char color8;
c609719b 2024
57912939
WD
2025 pGD = video_hw_init();
2026 if (pGD == NULL)
4b248f3f 2027 return -1;
c609719b 2028
4b248f3f 2029 video_fb_address = (void *) VIDEO_FB_ADRS;
c609719b 2030
bfd4be80
AG
2031 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2032
4b248f3f
WD
2033 /* Init drawing pats */
2034 switch (VIDEO_DATA_FORMAT) {
2035 case GDF__8BIT_INDEX:
002f967c
SG
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);
4b248f3f
WD
2042 fgx = 0x01010101;
2043 bgx = 0x00000000;
2044 break;
2045 case GDF__8BIT_332RGB:
002f967c
SG
2046 color8 = ((CONFIG_SYS_CONSOLE_FG_COL & 0xe0) |
2047 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) & 0x1c) |
2048 CONFIG_SYS_CONSOLE_FG_COL >> 6);
64e40d72
WD
2049 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2050 color8;
002f967c
SG
2051 color8 = ((CONFIG_SYS_CONSOLE_BG_COL & 0xe0) |
2052 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) & 0x1c) |
2053 CONFIG_SYS_CONSOLE_BG_COL >> 6);
64e40d72
WD
2054 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2055 color8;
4b248f3f
WD
2056 break;
2057 case GDF_15BIT_555RGB:
002f967c
SG
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));
4b248f3f
WD
2070 break;
2071 case GDF_16BIT_565RGB:
002f967c
SG
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));
4b248f3f
WD
2084 break;
2085 case GDF_32BIT_X888RGB:
002f967c
SG
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;
4b248f3f
WD
2092 break;
2093 case GDF_24BIT_888RGB:
002f967c
SG
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;
4b248f3f
WD
2102 break;
2103 }
2104 eorx = fgx ^ bgx;
c609719b 2105
8ef05352
RC
2106 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
2107 video_clear();
45ae2546 2108
c609719b 2109#ifdef CONFIG_VIDEO_LOGO
4b248f3f 2110 /* Plot the logo and get start point of console */
72c65f6f 2111 debug("Video: Drawing the logo ...\n");
64e40d72 2112 video_console_address = video_logo();
c609719b 2113#else
4b248f3f 2114 video_console_address = video_fb_address;
c609719b
WD
2115#endif
2116
4b248f3f
WD
2117 /* Initialize the console */
2118 console_col = 0;
2119 console_row = 0;
c609719b 2120
db0d47dd
EN
2121 if (cfb_do_flush_cache)
2122 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2123
4b248f3f 2124 return 0;
c609719b
WD
2125}
2126
6cc7ba9e
WD
2127/*
2128 * Implement a weak default function for boards that optionally
2129 * need to skip the video initialization.
2130 */
69d27545 2131__weak int board_video_skip(void)
6cc7ba9e
WD
2132{
2133 /* As default, don't skip test */
2134 return 0;
2135}
6cc7ba9e 2136
64e40d72 2137int drv_video_init(void)
c609719b 2138{
52cb4d4f 2139 struct stdio_dev console_dev;
5692ccfa 2140 bool have_keyboard;
8ceb2429 2141 bool __maybe_unused keyboard_ok = false;
c609719b 2142
6cc7ba9e
WD
2143 /* Check if video initialization should be skipped */
2144 if (board_video_skip())
2145 return 0;
2146
81050926 2147 /* Init video chip - returns with framebuffer cleared */
0a6eac84 2148 if (cfg_video_init() == -1)
8ceb2429 2149 return 0;
81050926 2150
2bc4aa52
HS
2151 if (board_cfb_skip())
2152 return 0;
2153
5692ccfa
SG
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");
f62f6469 2164#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
8ceb2429 2165 keyboard_ok = !(VIDEO_KBD_INIT_FCT == -1);
f62f6469 2166#endif
5692ccfa 2167 }
f62f6469
WD
2168
2169 /* Init vga device */
64e40d72
WD
2170 memset(&console_dev, 0, sizeof(console_dev));
2171 strcpy(console_dev.name, "vga");
1caf934a 2172 console_dev.flags = DEV_FLAGS_OUTPUT;
0a6eac84
SG
2173 console_dev.putc = cfb_video_putc; /* 'putc' function */
2174 console_dev.puts = cfb_video_puts; /* 'puts' function */
f62f6469
WD
2175
2176#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
8ceb2429 2177 if (have_keyboard && keyboard_ok) {
5692ccfa
SG
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
f62f6469 2184
64e40d72 2185 if (stdio_register(&console_dev) != 0)
f62f6469
WD
2186 return 0;
2187
2188 /* Return success */
2189 return 1;
c609719b 2190}
c20ee073
SR
2191
2192void 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
2198int video_get_pixel_width(void)
2199{
2200 return VIDEO_VISIBLE_COLS;
2201}
2202
2203int video_get_pixel_height(void)
2204{
2205 return VIDEO_VISIBLE_ROWS;
2206}
2207
2208int video_get_screen_rows(void)
2209{
2210 return CONSOLE_ROWS;
2211}
2212
2213int video_get_screen_columns(void)
2214{
2215 return CONSOLE_COLS;
2216}
This page took 0.655065 seconds and 4 git commands to generate.