blob: 27ff7163f348b90de374b0dba2f22b1e0b64e901 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
3 * (C) Copyright 2002 ELTEC Elektronik AG
4 * Frank Gottschling <fgottschling@eltec.de>
wdenkc6097192002-11-03 00:24:07 +00005 */
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
Wolfgang Denk64e40d72011-07-29 09:55:27 +000015 * information strings (that normally goes to serial port) can be drawn.
wdenkc6097192002-11-03 00:24:07 +000016 *
Simon Glass39f615e2015-11-11 10:05:47 -070017 * 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
wdenkc6097192002-11-03 00:24:07 +000021 * framebuffer with little or big-endian organisation.
22 * With environment setting 'console=serial' the console i/o can be
23 * forced to serial port.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000024 *
25 * The driver uses graphic specific defines/parameters/functions:
26 *
27 * (for SMI LynxE graphic chip)
28 *
Wolfgang Denk64e40d72011-07-29 09:55:27 +000029 * 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 *
Wolfgang Denk64e40d72011-07-29 09:55:27 +000041 * VIDEO_KBD_INIT_FCT - init function for keyboard
42 * VIDEO_TSTC_FCT - keyboard_tstc function
43 * VIDEO_GETC_FCT - keyboard_getc function
44 *
Bastian Ruppert1e681f92012-09-13 22:29:01 +000045 * 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.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000050 * 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.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000060 *
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.
Wolfgang Denk64e40d72011-07-29 09:55:27 +000065 */
wdenkc6097192002-11-03 00:24:07 +000066
67#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -060068#include <command.h>
Simon Glass9edefc22019-11-14 12:57:37 -070069#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -060070#include <env.h>
Simon Glass5692ccf2015-03-02 12:40:50 -070071#include <fdtdec.h>
Simon Glass0c670fc2019-08-01 09:46:36 -060072#include <gzip.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060073#include <log.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020074#include <version.h>
wdenka6c7ad22002-12-03 21:28:10 +000075#include <malloc.h>
Simon Glass0a6eac82016-10-17 20:12:54 -060076#include <video.h>
Simon Glass401d1c42020-10-30 21:38:53 -060077#include <asm/global_data.h>
Wolfgang Denka9a62af2011-11-04 15:55:20 +000078#include <linux/compiler.h>
wdenka6c7ad22002-12-03 21:28:10 +000079
Simon Glassc370d382016-10-17 20:12:47 -060080#if defined(CONFIG_VIDEO_MXS)
Marek Vasutfb8ddc22013-04-28 09:20:03 +000081#define VIDEO_FB_16BPP_WORD_SWAP
82#endif
83
Wolfgang Denk64e40d72011-07-29 09:55:27 +000084/*
85 * Defines for the MB862xx driver
86 */
Anatolij Gustschinbed53752008-01-11 14:30:01 +010087#ifdef CONFIG_VIDEO_MB862xx
88
89#ifdef CONFIG_VIDEO_CORALP
90#define VIDEO_FB_LITTLE_ENDIAN
91#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +020092#ifdef CONFIG_VIDEO_MB862xx_ACCEL
Anatolij Gustschinbed53752008-01-11 14:30:01 +010093#define VIDEO_HW_RECTFILL
94#define VIDEO_HW_BITBLT
95#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +020096#endif
Anatolij Gustschinbed53752008-01-11 14:30:01 +010097
Wolfgang Denk64e40d72011-07-29 09:55:27 +000098/*
Helmut Raiger62a22dc2011-10-12 23:16:29 +000099 * Defines for the i.MX31 driver (mx3fb.c)
100 */
Fabio Estevam695af9a2012-05-31 07:23:56 +0000101#if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000102#define VIDEO_FB_16BPP_WORD_SWAP
103#endif
104
105/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000106 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
107 */
wdenkc6097192002-11-03 00:24:07 +0000108#include <video_fb.h>
109
Robert Winklerdd4425e2013-06-17 11:31:29 -0700110#include <splash.h>
111
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000112/*
113 * some Macros
114 */
wdenk4b248f32004-03-14 16:51:43 +0000115#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
116#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
117#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
118#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
119#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000120
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000121/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000122 * Console device
123 */
wdenkc6097192002-11-03 00:24:07 +0000124
125#include <version.h>
126#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200127#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000128#include <video_font.h>
wdenkc6097192002-11-03 00:24:07 +0000129
Jon Loeligerddb5d86f2007-07-10 11:13:21 -0500130#if defined(CONFIG_CMD_DATE)
131#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000132#endif
133
Jon Loeliger07d38a12007-07-09 17:30:01 -0500134#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000135#include <watchdog.h>
136#include <bmp_layout.h>
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200137#include <splash.h>
Jon Loeliger07d38a12007-07-09 17:30:01 -0500138#endif
wdenk4b248f32004-03-14 16:51:43 +0000139
Simon Glassa4206572016-10-17 20:12:50 -0600140#if !defined(CONFIG_VIDEO_SW_CURSOR)
wdenkc6097192002-11-03 00:24:07 +0000141/* no Cursor defined */
142#define CURSOR_ON
143#define CURSOR_OFF
144#define CURSOR_SET
145#endif
146
Simon Glass7fe09332015-10-18 21:17:18 -0600147#if defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000148void console_cursor(int state);
149
Timur Tabi65618632010-08-27 15:45:47 -0500150#define CURSOR_ON console_cursor(1)
151#define CURSOR_OFF console_cursor(0)
Gabe Black03d31fc2011-11-30 13:50:50 +0000152#define CURSOR_SET video_set_cursor()
Simon Glass7fe09332015-10-18 21:17:18 -0600153#endif /* CONFIG_VIDEO_SW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000154
wdenk4b248f32004-03-14 16:51:43 +0000155#ifdef CONFIG_VIDEO_LOGO
156#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000157#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000158#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000159#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
160#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
161#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
162#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000163
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000164#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000165#define LINUX_LOGO_WIDTH 80
166#define LINUX_LOGO_HEIGHT 80
167#define LINUX_LOGO_COLORS 214
168#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000169#define __initdata
170#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000171#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
172#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
173#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
174#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000175#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000176#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
177#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000178#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000179#define VIDEO_LOGO_WIDTH 0
180#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000181#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000182
wdenk4b248f32004-03-14 16:51:43 +0000183#define VIDEO_COLS VIDEO_VISIBLE_COLS
184#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
Hans de Goedec67a8762015-08-04 12:15:39 +0200185#ifndef VIDEO_LINE_LEN
186#define VIDEO_LINE_LEN (VIDEO_COLS * VIDEO_PIXEL_SIZE)
187#endif
188#define VIDEO_SIZE (VIDEO_ROWS * VIDEO_LINE_LEN)
wdenk4b248f32004-03-14 16:51:43 +0000189#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000190
wdenk4b248f32004-03-14 16:51:43 +0000191#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100192#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000193#else
wdenk4b248f32004-03-14 16:51:43 +0000194#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000195#endif
196
wdenk4b248f32004-03-14 16:51:43 +0000197#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
198#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
199#define CONSOLE_ROW_FIRST (video_console_address)
200#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
201#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
202#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
Simon Glass3c0b6682015-01-01 16:17:57 -0700203
204/* By default we scroll by a single line */
205#ifndef CONFIG_CONSOLE_SCROLL_LINES
206#define CONFIG_CONSOLE_SCROLL_LINES 1
207#endif
wdenkc6097192002-11-03 00:24:07 +0000208
209/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000210#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000211#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
212 ((x) >> 8) \
213 )
214#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
215 (((x) & 0x0000ff00) << 8) | \
216 (((x) & 0x00ff0000) >> 8) | \
217 (((x) & 0xff000000) >> 24) \
218 )
219#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
220 (((x) & 0x0000ff00) >> 8) | \
221 (((x) & 0x00ff0000) << 8) | \
222 (((x) & 0xff000000) >> 8) \
223 )
wdenkc6097192002-11-03 00:24:07 +0000224#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000225#define SWAP16(x) (x)
226#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200227#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000228#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500229#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000230#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100231#endif
wdenkc6097192002-11-03 00:24:07 +0000232#endif
233
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200234DECLARE_GLOBAL_DATA_PTR;
235
wdenkc6097192002-11-03 00:24:07 +0000236/* Locals */
237static GraphicDevice *pGD; /* Pointer to Graphic array */
238
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000239static void *video_fb_address; /* frame buffer address */
wdenk4b248f32004-03-14 16:51:43 +0000240static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000241
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100242static int video_logo_height = VIDEO_LOGO_HEIGHT;
243
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000244static int __maybe_unused cursor_state;
245static int __maybe_unused old_col;
246static int __maybe_unused old_row;
Gabe Black03d31fc2011-11-30 13:50:50 +0000247
Wolfgang Denk57912932011-07-30 12:48:09 +0000248static int console_col; /* cursor col */
249static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000250
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000251static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000252
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200253static int cfb_do_flush_cache;
254
Pali Rohár33a35bb2012-10-19 13:30:09 +0000255#ifdef CONFIG_CFB_CONSOLE_ANSI
256static char ansi_buf[10];
257static int ansi_buf_size;
258static int ansi_colors_need_revert;
259static int ansi_cursor_hidden;
260#endif
261
wdenkc6097192002-11-03 00:24:07 +0000262static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000263 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
264 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
265 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
266 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
267};
wdenkc6097192002-11-03 00:24:07 +0000268
269static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000270 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
271};
wdenkc6097192002-11-03 00:24:07 +0000272
273static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000274 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
275};
wdenkc6097192002-11-03 00:24:07 +0000276
277static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000278 {0x00000000, 0x00000000, 0x00000000},
279 {0x00000000, 0x00000000, 0x00ffffff},
280 {0x00000000, 0x0000ffff, 0xff000000},
281 {0x00000000, 0x0000ffff, 0xffffffff},
282 {0x000000ff, 0xffff0000, 0x00000000},
283 {0x000000ff, 0xffff0000, 0x00ffffff},
284 {0x000000ff, 0xffffffff, 0xff000000},
285 {0x000000ff, 0xffffffff, 0xffffffff},
286 {0xffffff00, 0x00000000, 0x00000000},
287 {0xffffff00, 0x00000000, 0x00ffffff},
288 {0xffffff00, 0x0000ffff, 0xff000000},
289 {0xffffff00, 0x0000ffff, 0xffffffff},
290 {0xffffffff, 0xffff0000, 0x00000000},
291 {0xffffffff, 0xffff0000, 0x00ffffff},
292 {0xffffffff, 0xffffffff, 0xff000000},
293 {0xffffffff, 0xffffffff, 0xffffffff}
294};
wdenkc6097192002-11-03 00:24:07 +0000295
296static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000297 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
298 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
299 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
300 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
301 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
302 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
303 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
304 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
305 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
306 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
307 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
308 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
309 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
310 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
311 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
312 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
313};
wdenkc6097192002-11-03 00:24:07 +0000314
Heiko Schocher2bc4aa52013-08-03 07:22:53 +0200315/*
316 * Implement a weak default function for boards that optionally
317 * need to skip the cfb initialization.
318 */
319__weak int board_cfb_skip(void)
320{
321 /* As default, don't skip cfb init */
322 return 0;
323}
324
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000325static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000326{
wdenk4b248f32004-03-14 16:51:43 +0000327 u8 *cdat, *dest, *dest0;
328 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000329
wdenk4b248f32004-03-14 16:51:43 +0000330 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
331 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000332
wdenk4b248f32004-03-14 16:51:43 +0000333 switch (VIDEO_DATA_FORMAT) {
334 case GDF__8BIT_INDEX:
335 case GDF__8BIT_332RGB:
336 while (count--) {
337 c = *s;
338 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
339 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000340 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000341 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000342
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000343 ((u32 *) dest)[0] =
344 (video_font_draw_table8[bits >> 4] &
345 eorx) ^ bgx;
Marek Vasutfd8cf992013-07-30 23:37:59 +0200346
347 if (VIDEO_FONT_WIDTH == 4)
348 continue;
349
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000350 ((u32 *) dest)[1] =
351 (video_font_draw_table8[bits & 15] &
352 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000353 }
354 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
355 s++;
356 }
357 break;
wdenkc6097192002-11-03 00:24:07 +0000358
wdenk4b248f32004-03-14 16:51:43 +0000359 case GDF_15BIT_555RGB:
360 while (count--) {
361 c = *s;
362 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
363 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000364 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000365 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000366
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000367 ((u32 *) dest)[0] =
368 SHORTSWAP32((video_font_draw_table15
369 [bits >> 6] & eorx) ^
370 bgx);
371 ((u32 *) dest)[1] =
372 SHORTSWAP32((video_font_draw_table15
373 [bits >> 4 & 3] & eorx) ^
374 bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200375
376 if (VIDEO_FONT_WIDTH == 4)
377 continue;
378
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000379 ((u32 *) dest)[2] =
380 SHORTSWAP32((video_font_draw_table15
381 [bits >> 2 & 3] & eorx) ^
382 bgx);
383 ((u32 *) dest)[3] =
384 SHORTSWAP32((video_font_draw_table15
385 [bits & 3] & eorx) ^
386 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000387 }
388 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
389 s++;
390 }
391 break;
wdenkc6097192002-11-03 00:24:07 +0000392
wdenk4b248f32004-03-14 16:51:43 +0000393 case GDF_16BIT_565RGB:
394 while (count--) {
395 c = *s;
396 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
397 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000398 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000399 u8 bits = *cdat++;
400
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000401 ((u32 *) dest)[0] =
402 SHORTSWAP32((video_font_draw_table16
403 [bits >> 6] & eorx) ^
404 bgx);
405 ((u32 *) dest)[1] =
406 SHORTSWAP32((video_font_draw_table16
407 [bits >> 4 & 3] & eorx) ^
408 bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200409
410 if (VIDEO_FONT_WIDTH == 4)
411 continue;
412
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000413 ((u32 *) dest)[2] =
414 SHORTSWAP32((video_font_draw_table16
415 [bits >> 2 & 3] & eorx) ^
416 bgx);
417 ((u32 *) dest)[3] =
418 SHORTSWAP32((video_font_draw_table16
419 [bits & 3] & eorx) ^
420 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000421 }
422 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
423 s++;
424 }
425 break;
426
427 case GDF_32BIT_X888RGB:
428 while (count--) {
429 c = *s;
430 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
431 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000432 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000433 u8 bits = *cdat++;
434
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000435 ((u32 *) dest)[0] =
436 SWAP32((video_font_draw_table32
437 [bits >> 4][0] & eorx) ^ bgx);
438 ((u32 *) dest)[1] =
439 SWAP32((video_font_draw_table32
440 [bits >> 4][1] & eorx) ^ bgx);
441 ((u32 *) dest)[2] =
442 SWAP32((video_font_draw_table32
443 [bits >> 4][2] & eorx) ^ bgx);
444 ((u32 *) dest)[3] =
445 SWAP32((video_font_draw_table32
446 [bits >> 4][3] & eorx) ^ bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200447
448
449 if (VIDEO_FONT_WIDTH == 4)
450 continue;
451
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000452 ((u32 *) dest)[4] =
453 SWAP32((video_font_draw_table32
454 [bits & 15][0] & eorx) ^ bgx);
455 ((u32 *) dest)[5] =
456 SWAP32((video_font_draw_table32
457 [bits & 15][1] & eorx) ^ bgx);
458 ((u32 *) dest)[6] =
459 SWAP32((video_font_draw_table32
460 [bits & 15][2] & eorx) ^ bgx);
461 ((u32 *) dest)[7] =
462 SWAP32((video_font_draw_table32
463 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000464 }
465 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
466 s++;
467 }
468 break;
469
470 case GDF_24BIT_888RGB:
471 while (count--) {
472 c = *s;
473 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
474 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000475 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000476 u8 bits = *cdat++;
477
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000478 ((u32 *) dest)[0] =
479 (video_font_draw_table24[bits >> 4][0]
480 & eorx) ^ bgx;
481 ((u32 *) dest)[1] =
482 (video_font_draw_table24[bits >> 4][1]
483 & eorx) ^ bgx;
484 ((u32 *) dest)[2] =
485 (video_font_draw_table24[bits >> 4][2]
486 & eorx) ^ bgx;
Marek Vasutfd8cf992013-07-30 23:37:59 +0200487
488 if (VIDEO_FONT_WIDTH == 4)
489 continue;
490
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000491 ((u32 *) dest)[3] =
492 (video_font_draw_table24[bits & 15][0]
493 & eorx) ^ bgx;
494 ((u32 *) dest)[4] =
495 (video_font_draw_table24[bits & 15][1]
496 & eorx) ^ bgx;
497 ((u32 *) dest)[5] =
498 (video_font_draw_table24[bits & 15][2]
499 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000500 }
501 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
502 s++;
503 }
504 break;
wdenk8bde7f72003-06-27 21:31:46 +0000505 }
wdenkc6097192002-11-03 00:24:07 +0000506}
507
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000508static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000509{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000510 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000511}
512
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000513static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000514{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000515 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000516}
517
Simon Glass7fe09332015-10-18 21:17:18 -0600518#if defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000519static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000520{
Gabe Black03d31fc2011-11-30 13:50:50 +0000521 if (cursor_state)
522 console_cursor(0);
523 console_cursor(1);
wdenkc6097192002-11-03 00:24:07 +0000524}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000525
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000526static void video_invertchar(int xx, int yy)
527{
528 int firstx = xx * VIDEO_PIXEL_SIZE;
529 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
530 int firsty = yy * VIDEO_LINE_LEN;
531 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
532 int x, y;
533 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
534 for (x = firstx; x < lastx; x++) {
535 u8 *dest = (u8 *)(video_fb_address) + x + y;
536 *dest = ~*dest;
537 }
538 }
539}
Gabe Black03d31fc2011-11-30 13:50:50 +0000540
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000541void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000542{
Gabe Black03d31fc2011-11-30 13:50:50 +0000543 if (cursor_state != state) {
544 if (cursor_state) {
545 /* turn off the cursor */
546 video_invertchar(old_col * VIDEO_FONT_WIDTH,
547 old_row * VIDEO_FONT_HEIGHT +
548 video_logo_height);
549 } else {
550 /* turn off the cursor and record where it is */
551 video_invertchar(console_col * VIDEO_FONT_WIDTH,
552 console_row * VIDEO_FONT_HEIGHT +
553 video_logo_height);
554 old_col = console_col;
555 old_row = console_row;
556 }
557 cursor_state = state;
wdenk4b248f32004-03-14 16:51:43 +0000558 }
Eric Nelsondb0d47d2013-05-06 14:27:28 +0200559 if (cfb_do_flush_cache)
560 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000561}
562#endif
563
wdenkc6097192002-11-03 00:24:07 +0000564#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000565static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000566{
wdenk4b248f32004-03-14 16:51:43 +0000567 while (c--)
568 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000569}
570#endif
571
wdenkc6097192002-11-03 00:24:07 +0000572#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000573static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000574{
wdenk4b248f32004-03-14 16:51:43 +0000575 while (c--)
576 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000577}
578#endif
579
Pali Rohár90f60a82012-04-28 07:26:44 +0000580static void console_clear_line(int line, int begin, int end)
581{
582#ifdef VIDEO_HW_RECTFILL
583 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
584 VIDEO_FONT_WIDTH * begin, /* dest pos x */
585 video_logo_height +
586 VIDEO_FONT_HEIGHT * line, /* dest pos y */
587 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
588 VIDEO_FONT_HEIGHT, /* frame height */
589 bgx /* fill color */
590 );
591#else
592 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
593 memsetl(CONSOLE_ROW_FIRST +
594 CONSOLE_ROW_SIZE * line, /* offset of row */
595 CONSOLE_ROW_SIZE >> 2, /* length of row */
596 bgx /* fill color */
597 );
598 } else {
599 void *offset;
600 int i, size;
601
602 offset = CONSOLE_ROW_FIRST +
603 CONSOLE_ROW_SIZE * line + /* offset of row */
604 VIDEO_FONT_WIDTH *
605 VIDEO_PIXEL_SIZE * begin; /* offset of col */
606 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
607 size >>= 2; /* length to end for memsetl() */
608 /* fill at col offset of i'th line using bgx as fill color */
609 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
610 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
611 }
612#endif
613}
614
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000615static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000616{
Simon Glass3c0b6682015-01-01 16:17:57 -0700617 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
618 int i;
619
wdenk4b248f32004-03-14 16:51:43 +0000620 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000621
622#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000623 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
624 0, /* source pos x */
625 video_logo_height +
Simon Glass3c0b6682015-01-01 16:17:57 -0700626 VIDEO_FONT_HEIGHT * rows, /* source pos y */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000627 0, /* dest pos x */
628 video_logo_height, /* dest pos y */
629 VIDEO_VISIBLE_COLS, /* frame width */
630 VIDEO_VISIBLE_ROWS
631 - video_logo_height
Simon Glass3c0b6682015-01-01 16:17:57 -0700632 - VIDEO_FONT_HEIGHT * rows /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000633 );
wdenkc6097192002-11-03 00:24:07 +0000634#else
Simon Glass3c0b6682015-01-01 16:17:57 -0700635 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE,
636 (CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2);
wdenkc6097192002-11-03 00:24:07 +0000637#endif
wdenk4b248f32004-03-14 16:51:43 +0000638 /* clear the last one */
Simon Glass3c0b6682015-01-01 16:17:57 -0700639 for (i = 1; i <= rows; i++)
640 console_clear_line(CONSOLE_ROWS - i, 0, CONSOLE_COLS - 1);
641
642 /* Decrement row number */
643 console_row -= rows;
wdenkc6097192002-11-03 00:24:07 +0000644}
645
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000646static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000647{
Timur Tabi65618632010-08-27 15:45:47 -0500648 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000649
wdenk4b248f32004-03-14 16:51:43 +0000650 if (console_col < 0) {
651 console_col = CONSOLE_COLS - 1;
652 console_row--;
653 if (console_row < 0)
654 console_row = 0;
655 }
wdenkc6097192002-11-03 00:24:07 +0000656}
657
Pali Rohár33a35bb2012-10-19 13:30:09 +0000658#ifdef CONFIG_CFB_CONSOLE_ANSI
659
660static void console_clear(void)
wdenkc6097192002-11-03 00:24:07 +0000661{
Pali Rohár33a35bb2012-10-19 13:30:09 +0000662#ifdef VIDEO_HW_RECTFILL
663 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
664 0, /* dest pos x */
665 video_logo_height, /* dest pos y */
666 VIDEO_VISIBLE_COLS, /* frame width */
667 VIDEO_VISIBLE_ROWS, /* frame height */
668 bgx /* fill color */
669 );
670#else
671 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
672#endif
673}
674
675static void console_cursor_fix(void)
676{
677 if (console_row < 0)
678 console_row = 0;
679 if (console_row >= CONSOLE_ROWS)
680 console_row = CONSOLE_ROWS - 1;
681 if (console_col < 0)
682 console_col = 0;
683 if (console_col >= CONSOLE_COLS)
684 console_col = CONSOLE_COLS - 1;
685}
686
687static void console_cursor_up(int n)
688{
689 console_row -= n;
690 console_cursor_fix();
691}
692
693static void console_cursor_down(int n)
694{
695 console_row += n;
696 console_cursor_fix();
697}
698
699static void console_cursor_left(int n)
700{
701 console_col -= n;
702 console_cursor_fix();
703}
704
705static void console_cursor_right(int n)
706{
707 console_col += n;
708 console_cursor_fix();
709}
710
711static void console_cursor_set_position(int row, int col)
712{
713 if (console_row != -1)
714 console_row = row;
715 if (console_col != -1)
716 console_col = col;
717 console_cursor_fix();
718}
719
720static void console_previousline(int n)
721{
722 /* FIXME: also scroll terminal ? */
723 console_row -= n;
724 console_cursor_fix();
725}
726
727static void console_swap_colors(void)
728{
729 eorx = fgx;
730 fgx = bgx;
731 bgx = eorx;
732 eorx = fgx ^ bgx;
733}
734
735static inline int console_cursor_is_visible(void)
736{
737 return !ansi_cursor_hidden;
738}
739#else
740static inline int console_cursor_is_visible(void)
741{
742 return 1;
743}
744#endif
745
746static void console_newline(int n)
747{
748 console_row += n;
wdenk4b248f32004-03-14 16:51:43 +0000749 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000750
wdenk4b248f32004-03-14 16:51:43 +0000751 /* Check if we need to scroll the terminal */
752 if (console_row >= CONSOLE_ROWS) {
753 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000754 console_scrollup();
wdenk4b248f32004-03-14 16:51:43 +0000755 }
wdenkc6097192002-11-03 00:24:07 +0000756}
757
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000758static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100759{
Timur Tabi65618632010-08-27 15:45:47 -0500760 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100761}
762
Pali Rohár33a35bb2012-10-19 13:30:09 +0000763static void parse_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000764{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100765 static int nl = 1;
766
Pali Rohár33a35bb2012-10-19 13:30:09 +0000767 if (console_cursor_is_visible())
768 CURSOR_OFF;
Gabe Black03d31fc2011-11-30 13:50:50 +0000769
wdenk4b248f32004-03-14 16:51:43 +0000770 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100771 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000772 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000773 break;
wdenkc6097192002-11-03 00:24:07 +0000774
wdenk4b248f32004-03-14 16:51:43 +0000775 case '\n': /* next line */
Heinrich Schuchardt41ec1272018-03-18 14:24:39 +0100776 if (console_col || nl)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000777 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100778 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000779 break;
wdenkc6097192002-11-03 00:24:07 +0000780
wdenk4b248f32004-03-14 16:51:43 +0000781 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500782 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000783 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000784
wdenk4b248f32004-03-14 16:51:43 +0000785 if (console_col >= CONSOLE_COLS)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000786 console_newline(1);
wdenk4b248f32004-03-14 16:51:43 +0000787 break;
wdenkc6097192002-11-03 00:24:07 +0000788
wdenk4b248f32004-03-14 16:51:43 +0000789 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000790 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000791 break;
wdenkc6097192002-11-03 00:24:07 +0000792
Pali Rohár24fe06c2012-04-28 07:26:47 +0000793 case 7: /* bell */
794 break; /* ignored */
795
wdenk4b248f32004-03-14 16:51:43 +0000796 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000797 video_putchar(console_col * VIDEO_FONT_WIDTH,
798 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000799 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000800
wdenk4b248f32004-03-14 16:51:43 +0000801 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100802 if (console_col >= CONSOLE_COLS) {
Pali Rohár33a35bb2012-10-19 13:30:09 +0000803 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100804 nl = 0;
805 }
wdenk4b248f32004-03-14 16:51:43 +0000806 }
Pali Rohár33a35bb2012-10-19 13:30:09 +0000807
808 if (console_cursor_is_visible())
809 CURSOR_SET;
810}
811
Simon Glass0a6eac82016-10-17 20:12:54 -0600812static void cfb_video_putc(struct stdio_dev *dev, const char c)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000813{
814#ifdef CONFIG_CFB_CONSOLE_ANSI
815 int i;
816
817 if (c == 27) {
818 for (i = 0; i < ansi_buf_size; ++i)
819 parse_putc(ansi_buf[i]);
820 ansi_buf[0] = 27;
821 ansi_buf_size = 1;
822 return;
823 }
824
825 if (ansi_buf_size > 0) {
826 /*
827 * 0 - ESC
828 * 1 - [
829 * 2 - num1
830 * 3 - ..
831 * 4 - ;
832 * 5 - num2
833 * 6 - ..
834 * - cchar
835 */
836 int next = 0;
837
838 int flush = 0;
839 int fail = 0;
840
841 int num1 = 0;
842 int num2 = 0;
843 int cchar = 0;
844
845 ansi_buf[ansi_buf_size++] = c;
846
847 if (ansi_buf_size >= sizeof(ansi_buf))
848 fail = 1;
849
850 for (i = 0; i < ansi_buf_size; ++i) {
851 if (fail)
852 break;
853
854 switch (next) {
855 case 0:
856 if (ansi_buf[i] == 27)
857 next = 1;
858 else
859 fail = 1;
860 break;
861
862 case 1:
863 if (ansi_buf[i] == '[')
864 next = 2;
865 else
866 fail = 1;
867 break;
868
869 case 2:
870 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
871 num1 = ansi_buf[i]-'0';
872 next = 3;
873 } else if (ansi_buf[i] != '?') {
874 --i;
875 num1 = 1;
876 next = 4;
877 }
878 break;
879
880 case 3:
881 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
882 num1 *= 10;
883 num1 += ansi_buf[i]-'0';
884 } else {
885 --i;
886 next = 4;
887 }
888 break;
889
890 case 4:
891 if (ansi_buf[i] != ';') {
892 --i;
893 next = 7;
894 } else
895 next = 5;
896 break;
897
898 case 5:
899 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
900 num2 = ansi_buf[i]-'0';
901 next = 6;
902 } else
903 fail = 1;
904 break;
905
906 case 6:
907 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
908 num2 *= 10;
909 num2 += ansi_buf[i]-'0';
910 } else {
911 --i;
912 next = 7;
913 }
914 break;
915
916 case 7:
917 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
918 || ansi_buf[i] == 'J'
919 || ansi_buf[i] == 'K'
920 || ansi_buf[i] == 'h'
921 || ansi_buf[i] == 'l'
922 || ansi_buf[i] == 'm') {
923 cchar = ansi_buf[i];
924 flush = 1;
925 } else
926 fail = 1;
927 break;
928 }
929 }
930
931 if (fail) {
932 for (i = 0; i < ansi_buf_size; ++i)
933 parse_putc(ansi_buf[i]);
934 ansi_buf_size = 0;
935 return;
936 }
937
938 if (flush) {
939 if (!ansi_cursor_hidden)
940 CURSOR_OFF;
941 ansi_buf_size = 0;
942 switch (cchar) {
943 case 'A':
944 /* move cursor num1 rows up */
945 console_cursor_up(num1);
946 break;
947 case 'B':
948 /* move cursor num1 rows down */
949 console_cursor_down(num1);
950 break;
951 case 'C':
952 /* move cursor num1 columns forward */
953 console_cursor_right(num1);
954 break;
955 case 'D':
956 /* move cursor num1 columns back */
957 console_cursor_left(num1);
958 break;
959 case 'E':
960 /* move cursor num1 rows up at begin of row */
961 console_previousline(num1);
962 break;
963 case 'F':
964 /* move cursor num1 rows down at begin of row */
965 console_newline(num1);
966 break;
967 case 'G':
968 /* move cursor to column num1 */
969 console_cursor_set_position(-1, num1-1);
970 break;
971 case 'H':
972 /* move cursor to row num1, column num2 */
973 console_cursor_set_position(num1-1, num2-1);
974 break;
975 case 'J':
976 /* clear console and move cursor to 0, 0 */
977 console_clear();
978 console_cursor_set_position(0, 0);
979 break;
980 case 'K':
981 /* clear line */
982 if (num1 == 0)
983 console_clear_line(console_row,
984 console_col,
985 CONSOLE_COLS-1);
986 else if (num1 == 1)
987 console_clear_line(console_row,
988 0, console_col);
989 else
990 console_clear_line(console_row,
991 0, CONSOLE_COLS-1);
992 break;
993 case 'h':
994 ansi_cursor_hidden = 0;
995 break;
996 case 'l':
997 ansi_cursor_hidden = 1;
998 break;
999 case 'm':
1000 if (num1 == 0) { /* reset swapped colors */
1001 if (ansi_colors_need_revert) {
1002 console_swap_colors();
1003 ansi_colors_need_revert = 0;
1004 }
1005 } else if (num1 == 7) { /* once swap colors */
1006 if (!ansi_colors_need_revert) {
1007 console_swap_colors();
1008 ansi_colors_need_revert = 1;
1009 }
1010 }
1011 break;
1012 }
1013 if (!ansi_cursor_hidden)
1014 CURSOR_SET;
1015 }
1016 } else {
1017 parse_putc(c);
1018 }
1019#else
1020 parse_putc(c);
1021#endif
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001022 if (cfb_do_flush_cache)
1023 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
Timur Tabi65618632010-08-27 15:45:47 -05001024}
wdenkc6097192002-11-03 00:24:07 +00001025
Simon Glass0a6eac82016-10-17 20:12:54 -06001026static void cfb_video_puts(struct stdio_dev *dev, const char *s)
wdenkc6097192002-11-03 00:24:07 +00001027{
Soeren Mochd37e96e2014-10-24 16:33:30 +02001028 int flush = cfb_do_flush_cache;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001029 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +00001030
Soeren Mochd37e96e2014-10-24 16:33:30 +02001031 /* temporarily disable cache flush */
1032 cfb_do_flush_cache = 0;
1033
wdenk4b248f32004-03-14 16:51:43 +00001034 while (count--)
Simon Glass0a6eac82016-10-17 20:12:54 -06001035 cfb_video_putc(dev, *s++);
Soeren Mochd37e96e2014-10-24 16:33:30 +02001036
1037 if (flush) {
1038 cfb_do_flush_cache = flush;
1039 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1040 }
wdenkc6097192002-11-03 00:24:07 +00001041}
1042
Anatolij Gustschin10543822010-05-01 22:21:09 +02001043/*
1044 * Do not enforce drivers (or board code) to provide empty
1045 * video_set_lut() if they do not support 8 bpp format.
1046 * Implement weak default function instead.
1047 */
Jeroen Hofstee69d27542014-10-08 22:57:30 +02001048__weak void video_set_lut(unsigned int index, unsigned char r,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001049 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +02001050{
1051}
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001052
Jon Loeliger07d38a12007-07-09 17:30:01 -05001053#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +00001054
1055#define FILL_8BIT_332RGB(r,g,b) { \
1056 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1057 fb ++; \
1058}
1059
1060#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001061 *(unsigned short *)fb = \
1062 SWAP16((unsigned short)(((r>>3)<<10) | \
1063 ((g>>3)<<5) | \
1064 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001065 fb += 2; \
1066}
1067
1068#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001069 *(unsigned short *)fb = \
1070 SWAP16((unsigned short)((((r)>>3)<<11)| \
1071 (((g)>>2)<<5) | \
1072 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001073 fb += 2; \
1074}
1075
1076#define FILL_32BIT_X888RGB(r,g,b) { \
Andre Przywara1d4ed262017-03-06 01:13:38 +00001077 *(u32 *)fb = \
1078 SWAP32((unsigned int)(((r<<16) | \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001079 (g<<8) | \
1080 b))); \
wdenk4b248f32004-03-14 16:51:43 +00001081 fb += 4; \
1082}
1083
1084#ifdef VIDEO_FB_LITTLE_ENDIAN
1085#define FILL_24BIT_888RGB(r,g,b) { \
1086 fb[0] = b; \
1087 fb[1] = g; \
1088 fb[2] = r; \
1089 fb += 3; \
1090}
1091#else
1092#define FILL_24BIT_888RGB(r,g,b) { \
1093 fb[0] = r; \
1094 fb[1] = g; \
1095 fb[2] = b; \
1096 fb += 3; \
1097}
1098#endif
1099
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001100#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001101static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001102{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001103 ushort *dst = (ushort *) fb;
1104 ushort color = (ushort) (((r >> 3) << 10) |
1105 ((g >> 3) << 5) |
1106 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001107 if (x & 1)
1108 *(--dst) = color;
1109 else
1110 *(++dst) = color;
1111}
1112#endif
wdenk4b248f32004-03-14 16:51:43 +00001113
1114/*
Anatolij Gustschind5011762010-03-15 14:50:25 +01001115 * RLE8 bitmap support
1116 */
1117
1118#ifdef CONFIG_VIDEO_BMP_RLE8
1119/* Pre-calculated color table entry */
1120struct palette {
1121 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001122 unsigned short w; /* word */
1123 unsigned int dw; /* double word */
1124 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001125};
1126
1127/*
1128 * Helper to draw encoded/unencoded run.
1129 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001130static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1131 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001132{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001133 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001134 int *off;
1135 int enc_off = 1;
1136 int i;
1137
1138 /*
1139 * Setup offset of the color index in the bitmap.
1140 * Color index of encoded run is at offset 1.
1141 */
1142 off = enc ? &enc_off : &i;
1143
1144 switch (VIDEO_DATA_FORMAT) {
1145 case GDF__8BIT_INDEX:
1146 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001147 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +01001148 break;
1149 case GDF_15BIT_555RGB:
1150 case GDF_16BIT_565RGB:
1151 /* differences handled while pre-calculating palette */
1152 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001153 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001154 addr += 2;
1155 }
1156 break;
1157 case GDF_32BIT_X888RGB:
1158 for (i = 0; i < cnt; i++) {
Andre Przywara1d4ed262017-03-06 01:13:38 +00001159 *(u32 *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001160 addr += 4;
1161 }
1162 break;
1163 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001164 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001165}
1166
Simon Glass1c3dbe52015-05-13 07:02:27 -06001167static int display_rle8_bitmap(struct bmp_image *img, int xoff, int yoff,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001168 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001169{
1170 unsigned char *bm;
1171 unsigned char *fbp;
1172 unsigned int cnt, runlen;
1173 int decode = 1;
1174 int x, y, bpp, i, ncolors;
1175 struct palette p[256];
Simon Glass1c3dbe52015-05-13 07:02:27 -06001176 struct bmp_color_table_entry cte;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001177 int green_shift, red_off;
Hans de Goedec67a8762015-08-04 12:15:39 +02001178 int limit = (VIDEO_LINE_LEN / VIDEO_PIXEL_SIZE) * VIDEO_ROWS;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001179 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001180
1181 x = 0;
1182 y = __le32_to_cpu(img->header.height) - 1;
1183 ncolors = __le32_to_cpu(img->header.colors_used);
1184 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001185 fbp = (unsigned char *) ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001186 (y + yoff) * VIDEO_LINE_LEN +
1187 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001188
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001189 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001190
1191 /* pre-calculate and setup palette */
1192 switch (VIDEO_DATA_FORMAT) {
1193 case GDF__8BIT_INDEX:
1194 for (i = 0; i < ncolors; i++) {
1195 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001196 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001197 }
1198 break;
1199 case GDF_15BIT_555RGB:
1200 case GDF_16BIT_565RGB:
1201 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1202 green_shift = 3;
1203 red_off = 10;
1204 } else {
1205 green_shift = 2;
1206 red_off = 11;
1207 }
1208 for (i = 0; i < ncolors; i++) {
1209 cte = img->color_table[i];
1210 p[i].ce.w = SWAP16((unsigned short)
1211 (((cte.red >> 3) << red_off) |
1212 ((cte.green >> green_shift) << 5) |
1213 cte.blue >> 3));
1214 }
1215 break;
1216 case GDF_32BIT_X888RGB:
1217 for (i = 0; i < ncolors; i++) {
1218 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001219 p[i].ce.dw = SWAP32((cte.red << 16) |
1220 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +01001221 cte.blue);
1222 }
1223 break;
1224 default:
1225 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001226 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001227 return -1;
1228 }
1229
1230 while (decode) {
1231 switch (bm[0]) {
1232 case 0:
1233 switch (bm[1]) {
1234 case 0:
1235 /* scan line end marker */
1236 bm += 2;
1237 x = 0;
1238 y--;
1239 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001240 ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001241 (y + yoff) * VIDEO_LINE_LEN +
1242 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001243 continue;
1244 case 1:
1245 /* end of bitmap data marker */
1246 decode = 0;
1247 break;
1248 case 2:
1249 /* run offset marker */
1250 x += bm[2];
1251 y -= bm[3];
1252 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001253 ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001254 (y + yoff) * VIDEO_LINE_LEN +
1255 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001256 bm += 4;
1257 break;
1258 default:
1259 /* unencoded run */
1260 cnt = bm[1];
1261 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001262 pixels += cnt;
1263 if (pixels > limit)
1264 goto error;
1265
Anatolij Gustschind5011762010-03-15 14:50:25 +01001266 bm += 2;
1267 if (y < height) {
1268 if (x >= width) {
1269 x += runlen;
1270 goto next_run;
1271 }
1272 if (x + runlen > width)
1273 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001274 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001275 x += runlen;
1276 }
1277next_run:
1278 bm += runlen;
1279 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001280 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001281 }
1282 break;
1283 default:
1284 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001285 cnt = bm[0];
1286 runlen = cnt;
1287 pixels += cnt;
1288 if (pixels > limit)
1289 goto error;
1290
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001291 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001292 if (x >= width) {
1293 x += runlen;
1294 bm += 2;
1295 continue;
1296 }
1297 if (x + runlen > width)
1298 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001299 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001300 x += runlen;
1301 }
1302 bm += 2;
1303 break;
1304 }
1305 }
Sébastien Szymanski47b11c82018-09-10 09:58:58 +02001306
1307 if (cfb_do_flush_cache)
1308 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1309
Anatolij Gustschind5011762010-03-15 14:50:25 +01001310 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001311error:
1312 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1313 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001314}
1315#endif
1316
1317/*
wdenk4b248f32004-03-14 16:51:43 +00001318 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001319 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001320int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001321{
1322 ushort xcount, ycount;
1323 uchar *fb;
Simon Glass1c3dbe52015-05-13 07:02:27 -06001324 struct bmp_image *bmp = (struct bmp_image *)bmp_image;
wdenk4b248f32004-03-14 16:51:43 +00001325 uchar *bmap;
1326 ushort padded_line;
1327 unsigned long width, height, bpp;
1328 unsigned colors;
1329 unsigned long compression;
Simon Glass1c3dbe52015-05-13 07:02:27 -06001330 struct bmp_color_table_entry cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001331
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001332#ifdef CONFIG_VIDEO_BMP_GZIP
1333 unsigned char *dst = NULL;
1334 ulong len;
1335#endif
wdenk4b248f32004-03-14 16:51:43 +00001336
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001337 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001338
1339 if (!((bmp->header.signature[0] == 'B') &&
1340 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001341
1342#ifdef CONFIG_VIDEO_BMP_GZIP
1343 /*
1344 * Could be a gzipped bmp image, try to decrompress...
1345 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001346 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1347 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001348 if (dst == NULL) {
1349 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001350 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001351 }
Eric Nelson5ca05c82014-03-08 07:55:52 -07001352 /*
1353 * NB: we need to force offset of +2
1354 * See doc/README.displaying-bmps
1355 */
1356 if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001357 (uchar *) bmp_image,
1358 &len) != 0) {
1359 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1360 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001361 free(dst);
1362 return 1;
1363 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001364 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001365 printf("Image could be truncated "
1366 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001367 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001368
1369 /*
1370 * Set addr to decompressed image
1371 */
Simon Glass1c3dbe52015-05-13 07:02:27 -06001372 bmp = (struct bmp_image *)(dst+2);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001373
1374 if (!((bmp->header.signature[0] == 'B') &&
1375 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001376 printf("Error: no valid bmp.gz image at %lx\n",
1377 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001378 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001379 return 1;
1380 }
1381#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001382 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001383 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001384#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001385 }
1386
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001387 width = le32_to_cpu(bmp->header.width);
1388 height = le32_to_cpu(bmp->header.height);
1389 bpp = le16_to_cpu(bmp->header.bit_count);
1390 colors = le32_to_cpu(bmp->header.colors_used);
1391 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001392
Marek Vasut68da5b12011-10-21 14:17:04 +00001393 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001394 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001395
Anatolij Gustschind5011762010-03-15 14:50:25 +01001396 if (compression != BMP_BI_RGB
1397#ifdef CONFIG_VIDEO_BMP_RLE8
1398 && compression != BMP_BI_RLE8
1399#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001400 ) {
1401 printf("Error: compression type %ld not supported\n",
1402 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001403#ifdef CONFIG_VIDEO_BMP_GZIP
1404 if (dst)
1405 free(dst);
1406#endif
wdenk4b248f32004-03-14 16:51:43 +00001407 return 1;
1408 }
1409
1410 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1411
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001412#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1413 if (x == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001414 x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001415 else if (x < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001416 x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001417
1418 if (y == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001419 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001420 else if (y < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001421 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001422#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1423
Matthias Weisseracf3baa2013-02-15 03:35:12 +00001424 /*
1425 * Just ignore elements which are completely beyond screen
1426 * dimensions.
1427 */
1428 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1429 return 0;
1430
wdenk4b248f32004-03-14 16:51:43 +00001431 if ((x + width) > VIDEO_VISIBLE_COLS)
1432 width = VIDEO_VISIBLE_COLS - x;
1433 if ((y + height) > VIDEO_VISIBLE_ROWS)
1434 height = VIDEO_VISIBLE_ROWS - y;
1435
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001436 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001437 fb = (uchar *) (video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001438 ((y + height - 1) * VIDEO_LINE_LEN) +
wdenk4b248f32004-03-14 16:51:43 +00001439 x * VIDEO_PIXEL_SIZE);
1440
Anatolij Gustschind5011762010-03-15 14:50:25 +01001441#ifdef CONFIG_VIDEO_BMP_RLE8
1442 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001443 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001444 }
1445#endif
1446
Timur Tabi68f66182010-08-23 16:58:00 -05001447 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001448 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001449 case 4:
1450 padded_line -= width / 2;
1451 ycount = height;
1452
1453 switch (VIDEO_DATA_FORMAT) {
1454 case GDF_32BIT_X888RGB:
1455 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001456 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001457 /*
1458 * Don't assume that 'width' is an
1459 * even number
1460 */
1461 for (xcount = 0; xcount < width; xcount++) {
1462 uchar idx;
1463
1464 if (xcount & 1) {
1465 idx = *bmap & 0xF;
1466 bmap++;
1467 } else
1468 idx = *bmap >> 4;
1469 cte = bmp->color_table[idx];
1470 FILL_32BIT_X888RGB(cte.red, cte.green,
1471 cte.blue);
1472 }
1473 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001474 fb -= VIDEO_LINE_LEN + width *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001475 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001476 }
1477 break;
1478 default:
1479 puts("4bpp bitmap unsupported with current "
1480 "video mode\n");
1481 break;
1482 }
1483 break;
1484
wdenk4b248f32004-03-14 16:51:43 +00001485 case 8:
1486 padded_line -= width;
1487 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001488 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001489 for (xcount = 0; xcount < colors; ++xcount) {
1490 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001491 video_set_lut(xcount, cte.red, cte.green,
1492 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001493 }
1494 }
1495 ycount = height;
1496 switch (VIDEO_DATA_FORMAT) {
1497 case GDF__8BIT_INDEX:
1498 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001499 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001500 xcount = width;
1501 while (xcount--) {
1502 *fb++ = *bmap++;
1503 }
1504 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001505 fb -= VIDEO_LINE_LEN + width *
1506 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001507 }
1508 break;
1509 case GDF__8BIT_332RGB:
1510 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001511 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001512 xcount = width;
1513 while (xcount--) {
1514 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001515 FILL_8BIT_332RGB(cte.red, cte.green,
1516 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001517 }
1518 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001519 fb -= VIDEO_LINE_LEN + width *
1520 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001521 }
1522 break;
1523 case GDF_15BIT_555RGB:
1524 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001525#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1526 int xpos = x;
1527#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001528 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001529 xcount = width;
1530 while (xcount--) {
1531 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001532#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001533 fill_555rgb_pswap(fb, xpos++, cte.red,
1534 cte.green,
1535 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001536 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001537#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001538 FILL_15BIT_555RGB(cte.red, cte.green,
1539 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001540#endif
wdenk4b248f32004-03-14 16:51:43 +00001541 }
1542 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001543 fb -= VIDEO_LINE_LEN + width *
1544 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001545 }
1546 break;
1547 case GDF_16BIT_565RGB:
1548 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001549 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001550 xcount = width;
1551 while (xcount--) {
1552 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001553 FILL_16BIT_565RGB(cte.red, cte.green,
1554 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001555 }
1556 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001557 fb -= VIDEO_LINE_LEN + width *
1558 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001559 }
1560 break;
1561 case GDF_32BIT_X888RGB:
1562 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001563 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001564 xcount = width;
1565 while (xcount--) {
1566 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001567 FILL_32BIT_X888RGB(cte.red, cte.green,
1568 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001569 }
1570 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001571 fb -= VIDEO_LINE_LEN + width *
1572 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001573 }
1574 break;
1575 case GDF_24BIT_888RGB:
1576 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001577 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001578 xcount = width;
1579 while (xcount--) {
1580 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001581 FILL_24BIT_888RGB(cte.red, cte.green,
1582 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001583 }
1584 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001585 fb -= VIDEO_LINE_LEN + width *
1586 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001587 }
1588 break;
1589 }
1590 break;
1591 case 24:
1592 padded_line -= 3 * width;
1593 ycount = height;
1594 switch (VIDEO_DATA_FORMAT) {
1595 case GDF__8BIT_332RGB:
1596 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001597 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001598 xcount = width;
1599 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001600 FILL_8BIT_332RGB(bmap[2], bmap[1],
1601 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001602 bmap += 3;
1603 }
1604 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001605 fb -= VIDEO_LINE_LEN + width *
1606 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001607 }
1608 break;
1609 case GDF_15BIT_555RGB:
1610 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001611#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1612 int xpos = x;
1613#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001614 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001615 xcount = width;
1616 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001617#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001618 fill_555rgb_pswap(fb, xpos++, bmap[2],
1619 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001620 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001621#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001622 FILL_15BIT_555RGB(bmap[2], bmap[1],
1623 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001624#endif
wdenk4b248f32004-03-14 16:51:43 +00001625 bmap += 3;
1626 }
1627 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001628 fb -= VIDEO_LINE_LEN + width *
1629 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001630 }
1631 break;
1632 case GDF_16BIT_565RGB:
1633 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001634 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001635 xcount = width;
1636 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001637 FILL_16BIT_565RGB(bmap[2], bmap[1],
1638 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001639 bmap += 3;
1640 }
1641 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001642 fb -= VIDEO_LINE_LEN + width *
1643 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001644 }
1645 break;
1646 case GDF_32BIT_X888RGB:
1647 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001648 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001649 xcount = width;
1650 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001651 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1652 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001653 bmap += 3;
1654 }
1655 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001656 fb -= VIDEO_LINE_LEN + width *
1657 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001658 }
1659 break;
1660 case GDF_24BIT_888RGB:
1661 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001662 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001663 xcount = width;
1664 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001665 FILL_24BIT_888RGB(bmap[2], bmap[1],
1666 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001667 bmap += 3;
1668 }
1669 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001670 fb -= VIDEO_LINE_LEN + width *
1671 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001672 }
1673 break;
1674 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001675 printf("Error: 24 bits/pixel bitmap incompatible "
1676 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001677 break;
1678 }
1679 break;
1680 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001681 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1682 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001683 break;
1684 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001685
1686#ifdef CONFIG_VIDEO_BMP_GZIP
1687 if (dst) {
1688 free(dst);
1689 }
1690#endif
1691
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001692 if (cfb_do_flush_cache)
1693 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenk4b248f32004-03-14 16:51:43 +00001694 return (0);
1695}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001696#endif
wdenk4b248f32004-03-14 16:51:43 +00001697
wdenk4b248f32004-03-14 16:51:43 +00001698
wdenkc6097192002-11-03 00:24:07 +00001699#ifdef CONFIG_VIDEO_LOGO
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001700static int video_logo_xpos;
1701static int video_logo_ypos;
1702
Hans de Goedec4c9e812015-08-04 12:21:40 +02001703static void plot_logo_or_black(void *screen, int x, int y, int black);
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001704
Hans de Goedec4c9e812015-08-04 12:21:40 +02001705static void logo_plot(void *screen, int x, int y)
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001706{
Hans de Goedec4c9e812015-08-04 12:21:40 +02001707 plot_logo_or_black(screen, x, y, 0);
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001708}
1709
1710static void logo_black(void)
1711{
Hans de Goedec4c9e812015-08-04 12:21:40 +02001712 plot_logo_or_black(video_fb_address, video_logo_xpos, video_logo_ypos,
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001713 1);
1714}
1715
Simon Glass09140112020-05-10 11:40:03 -06001716static int do_clrlogo(struct cmd_tbl *cmdtp, int flag, int argc,
1717 char *const argv[])
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001718{
1719 if (argc != 1)
1720 return cmd_usage(cmdtp);
1721
1722 logo_black();
1723 return 0;
1724}
1725
1726U_BOOT_CMD(
1727 clrlogo, 1, 0, do_clrlogo,
1728 "fill the boot logo area with black",
1729 " "
1730 );
1731
Hans de Goedec4c9e812015-08-04 12:21:40 +02001732static void plot_logo_or_black(void *screen, int x, int y, int black)
wdenkc6097192002-11-03 00:24:07 +00001733{
wdenkc6097192002-11-03 00:24:07 +00001734
wdenk4b248f32004-03-14 16:51:43 +00001735 int xcount, i;
Hans de Goedec67a8762015-08-04 12:15:39 +02001736 int skip = VIDEO_LINE_LEN - VIDEO_LOGO_WIDTH * VIDEO_PIXEL_SIZE;
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001737 int ycount = video_logo_height;
wdenk4b248f32004-03-14 16:51:43 +00001738 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1739 unsigned char *source;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001740 unsigned char *dest;
1741
1742#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1743 if (x == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001744 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001745 else if (x < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001746 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1));
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001747
1748 if (y == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001749 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001750 else if (y < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001751 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1));
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001752#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1753
Hans de Goedec67a8762015-08-04 12:15:39 +02001754 dest = (unsigned char *)screen + y * VIDEO_LINE_LEN + x * VIDEO_PIXEL_SIZE;
wdenka6c7ad22002-12-03 21:28:10 +00001755
1756#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001757 source = bmp_logo_bitmap;
wdenk8bde7f72003-06-27 21:31:46 +00001758
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001759 /* Allocate temporary space for computing colormap */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001760 logo_red = malloc(BMP_LOGO_COLORS);
1761 logo_green = malloc(BMP_LOGO_COLORS);
1762 logo_blue = malloc(BMP_LOGO_COLORS);
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001763 /* Compute color map */
wdenk4b248f32004-03-14 16:51:43 +00001764 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1765 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1766 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1767 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1768 }
wdenka6c7ad22002-12-03 21:28:10 +00001769#else
wdenk4b248f32004-03-14 16:51:43 +00001770 source = linux_logo;
1771 logo_red = linux_logo_red;
1772 logo_green = linux_logo_green;
1773 logo_blue = linux_logo_blue;
wdenka6c7ad22002-12-03 21:28:10 +00001774#endif
wdenk8bde7f72003-06-27 21:31:46 +00001775
wdenk4b248f32004-03-14 16:51:43 +00001776 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1777 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001778 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1779 logo_red[i], logo_green[i],
1780 logo_blue[i]);
wdenk4b248f32004-03-14 16:51:43 +00001781 }
wdenk8bde7f72003-06-27 21:31:46 +00001782 }
wdenkc6097192002-11-03 00:24:07 +00001783
wdenk4b248f32004-03-14 16:51:43 +00001784 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001785#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1786 int xpos = x;
1787#endif
wdenk4b248f32004-03-14 16:51:43 +00001788 xcount = VIDEO_LOGO_WIDTH;
1789 while (xcount--) {
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001790 if (black) {
1791 r = 0x00;
1792 g = 0x00;
1793 b = 0x00;
1794 } else {
1795 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1796 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1797 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1798 }
wdenk8bde7f72003-06-27 21:31:46 +00001799
wdenk4b248f32004-03-14 16:51:43 +00001800 switch (VIDEO_DATA_FORMAT) {
1801 case GDF__8BIT_INDEX:
1802 *dest = *source;
1803 break;
1804 case GDF__8BIT_332RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001805 *dest = ((r >> 5) << 5) |
1806 ((g >> 5) << 2) |
1807 (b >> 6);
wdenk4b248f32004-03-14 16:51:43 +00001808 break;
1809 case GDF_15BIT_555RGB:
Andrew Dyercc347802008-08-29 12:30:39 -05001810#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001811 fill_555rgb_pswap(dest, xpos++, r, g, b);
Andrew Dyercc347802008-08-29 12:30:39 -05001812#else
wdenk4b248f32004-03-14 16:51:43 +00001813 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001814 SWAP16((unsigned short) (
1815 ((r >> 3) << 10) |
1816 ((g >> 3) << 5) |
1817 (b >> 3)));
Anatolij Gustschinbed53752008-01-11 14:30:01 +01001818#endif
wdenk4b248f32004-03-14 16:51:43 +00001819 break;
1820 case GDF_16BIT_565RGB:
1821 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001822 SWAP16((unsigned short) (
1823 ((r >> 3) << 11) |
1824 ((g >> 2) << 5) |
1825 (b >> 3)));
wdenk4b248f32004-03-14 16:51:43 +00001826 break;
1827 case GDF_32BIT_X888RGB:
Andre Przywara1d4ed262017-03-06 01:13:38 +00001828 *(u32 *) dest =
1829 SWAP32((u32) (
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001830 (r << 16) |
1831 (g << 8) |
1832 b));
wdenk4b248f32004-03-14 16:51:43 +00001833 break;
1834 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001835#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenk4b248f32004-03-14 16:51:43 +00001836 dest[0] = b;
1837 dest[1] = g;
1838 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001839#else
wdenk4b248f32004-03-14 16:51:43 +00001840 dest[0] = r;
1841 dest[1] = g;
1842 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001843#endif
wdenk4b248f32004-03-14 16:51:43 +00001844 break;
1845 }
1846 source++;
1847 dest += VIDEO_PIXEL_SIZE;
1848 }
1849 dest += skip;
wdenk8bde7f72003-06-27 21:31:46 +00001850 }
wdenka6c7ad22002-12-03 21:28:10 +00001851#ifdef CONFIG_VIDEO_BMP_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001852 free(logo_red);
1853 free(logo_green);
1854 free(logo_blue);
wdenka6c7ad22002-12-03 21:28:10 +00001855#endif
wdenkc6097192002-11-03 00:24:07 +00001856}
1857
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001858static void *video_logo(void)
wdenkc6097192002-11-03 00:24:07 +00001859{
wdenk4b248f32004-03-14 16:51:43 +00001860 char info[128];
Wolfgang Denka9a62af2011-11-04 15:55:20 +00001861 __maybe_unused int y_off = 0;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001862 __maybe_unused ulong addr;
1863 __maybe_unused char *s;
Anatolij Gustschinb4fc6f22016-11-30 14:30:59 +01001864 __maybe_unused int len, ret, space;
wdenkc6097192002-11-03 00:24:07 +00001865
Anatolij Gustschinff8fb562013-07-02 00:04:05 +02001866 splash_get_pos(&video_logo_xpos, &video_logo_ypos);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001867
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001868#ifdef CONFIG_SPLASH_SCREEN
Simon Glass00caae62017-08-03 12:22:12 -06001869 s = env_get("splashimage");
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001870 if (s != NULL) {
Anatolij Gustschinb4fc6f22016-11-30 14:30:59 +01001871 ret = splash_screen_prepare();
1872 if (ret < 0)
1873 return video_fb_address;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001874 addr = simple_strtoul(s, NULL, 16);
1875
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001876 if (video_display_bitmap(addr,
1877 video_logo_xpos,
1878 video_logo_ypos) == 0) {
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001879 video_logo_height = 0;
wdenk4b248f32004-03-14 16:51:43 +00001880 return ((void *) (video_fb_address));
1881 }
1882 }
1883#endif /* CONFIG_SPLASH_SCREEN */
1884
Hans de Goedec4c9e812015-08-04 12:21:40 +02001885 logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001886
1887#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1888 /*
1889 * when using splashpos for video_logo, skip any info
1890 * output on video console if the logo is not at 0,0
1891 */
1892 if (video_logo_xpos || video_logo_ypos) {
1893 /*
1894 * video_logo_height is used in text and cursor offset
1895 * calculations. Since the console is below the logo,
1896 * we need to adjust the logo height
1897 */
1898 if (video_logo_ypos == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001899 video_logo_height += max(0, (int)(VIDEO_VISIBLE_ROWS -
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001900 VIDEO_LOGO_HEIGHT) / 2);
1901 else if (video_logo_ypos > 0)
1902 video_logo_height += video_logo_ypos;
1903
1904 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
1905 }
1906#endif
Heiko Schocher2bc4aa52013-08-03 07:22:53 +02001907 if (board_cfb_skip())
1908 return 0;
wdenk4b248f32004-03-14 16:51:43 +00001909
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001910 sprintf(info, " %s", version_string);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001911
Tim Harveyadde4352016-05-24 14:59:59 -07001912#ifndef CONFIG_HIDE_LOGO_VERSION
Peng Fanf9d891f2018-01-02 15:25:37 +08001913 space = (VIDEO_COLS - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001914 len = strlen(info);
1915
1916 if (len > space) {
Peng Fanf9d891f2018-01-02 15:25:37 +08001917 int xx = VIDEO_INFO_X, yy = VIDEO_INFO_Y;
1918 uchar *p = (uchar *) info;
1919
1920 while (len) {
1921 if (len > space) {
1922 video_drawchars(xx, yy, p, space);
1923 len -= space;
1924
1925 p = (uchar *)p + space;
1926
1927 if (!y_off) {
1928 xx += VIDEO_FONT_WIDTH;
1929 space--;
1930 }
1931 yy += VIDEO_FONT_HEIGHT;
1932
1933 y_off++;
1934 } else {
1935 video_drawchars(xx, yy, p, len);
1936 len = 0;
1937 }
1938 }
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001939 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001940 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00001941
1942#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00001943 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001944 int i, n =
1945 ((video_logo_height -
1946 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001947
wdenk4b248f32004-03-14 16:51:43 +00001948 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001949 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001950 if (!*info)
1951 continue;
1952
1953 len = strlen(info);
1954 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001955 video_drawchars(VIDEO_INFO_X,
1956 VIDEO_INFO_Y +
1957 (i + y_off) *
1958 VIDEO_FONT_HEIGHT,
1959 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001960 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001961 video_drawchars(VIDEO_INFO_X +
1962 VIDEO_FONT_WIDTH,
1963 VIDEO_INFO_Y +
1964 (i + y_off) *
1965 VIDEO_FONT_HEIGHT,
1966 (uchar *) info + space,
1967 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001968 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001969 video_drawstring(VIDEO_INFO_X,
1970 VIDEO_INFO_Y +
1971 (i + y_off) *
1972 VIDEO_FONT_HEIGHT,
1973 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001974 }
wdenk4b248f32004-03-14 16:51:43 +00001975 }
1976 }
wdenkc6097192002-11-03 00:24:07 +00001977#endif
Tim Harveyadde4352016-05-24 14:59:59 -07001978#endif
wdenkc6097192002-11-03 00:24:07 +00001979
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001980 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00001981}
1982#endif
1983
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001984static int cfb_fb_is_in_dram(void)
1985{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001986 struct bd_info *bd = gd->bd;
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001987 ulong start, end;
1988 int i;
1989
1990 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
1991 start = bd->bi_dram[i].start;
1992 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
1993 if ((ulong)video_fb_address >= start &&
1994 (ulong)video_fb_address < end)
1995 return 1;
1996 }
Stefan Roese063d5472020-08-12 13:32:41 +02001997
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001998 return 0;
1999}
2000
Heiko Schocher45ae2542013-10-22 11:06:06 +02002001void video_clear(void)
2002{
2003 if (!video_fb_address)
2004 return;
2005#ifdef VIDEO_HW_RECTFILL
2006 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2007 0, /* dest pos x */
2008 0, /* dest pos y */
2009 VIDEO_VISIBLE_COLS, /* frame width */
2010 VIDEO_VISIBLE_ROWS, /* frame height */
2011 bgx /* fill color */
2012 );
2013#else
2014 memsetl(video_fb_address,
2015 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2016#endif
2017}
2018
Simon Glass0a6eac82016-10-17 20:12:54 -06002019static int cfg_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002020{
wdenk4b248f32004-03-14 16:51:43 +00002021 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00002022
Wolfgang Denk57912932011-07-30 12:48:09 +00002023 pGD = video_hw_init();
2024 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00002025 return -1;
wdenkc6097192002-11-03 00:24:07 +00002026
wdenk4b248f32004-03-14 16:51:43 +00002027 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00002028
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002029 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2030
wdenk4b248f32004-03-14 16:51:43 +00002031 /* Init drawing pats */
2032 switch (VIDEO_DATA_FORMAT) {
2033 case GDF__8BIT_INDEX:
Simon Glass002f9672016-10-17 20:12:44 -06002034 video_set_lut(0x01, CONFIG_SYS_CONSOLE_FG_COL,
2035 CONFIG_SYS_CONSOLE_FG_COL,
2036 CONFIG_SYS_CONSOLE_FG_COL);
2037 video_set_lut(0x00, CONFIG_SYS_CONSOLE_BG_COL,
2038 CONFIG_SYS_CONSOLE_BG_COL,
2039 CONFIG_SYS_CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00002040 fgx = 0x01010101;
2041 bgx = 0x00000000;
2042 break;
2043 case GDF__8BIT_332RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002044 color8 = ((CONFIG_SYS_CONSOLE_FG_COL & 0xe0) |
2045 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) & 0x1c) |
2046 CONFIG_SYS_CONSOLE_FG_COL >> 6);
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002047 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2048 color8;
Simon Glass002f9672016-10-17 20:12:44 -06002049 color8 = ((CONFIG_SYS_CONSOLE_BG_COL & 0xe0) |
2050 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) & 0x1c) |
2051 CONFIG_SYS_CONSOLE_BG_COL >> 6);
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002052 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2053 color8;
wdenk4b248f32004-03-14 16:51:43 +00002054 break;
2055 case GDF_15BIT_555RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002056 fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 26) |
2057 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 21) |
2058 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2059 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 10) |
2060 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 5) |
2061 (CONFIG_SYS_CONSOLE_FG_COL >> 3));
2062 bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 26) |
2063 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 21) |
2064 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2065 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 10) |
2066 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 5) |
2067 (CONFIG_SYS_CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002068 break;
2069 case GDF_16BIT_565RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002070 fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 27) |
2071 ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 21) |
2072 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2073 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 11) |
2074 ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 5) |
2075 (CONFIG_SYS_CONSOLE_FG_COL >> 3));
2076 bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 27) |
2077 ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 21) |
2078 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2079 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 11) |
2080 ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 5) |
2081 (CONFIG_SYS_CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002082 break;
2083 case GDF_32BIT_X888RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002084 fgx = (CONFIG_SYS_CONSOLE_FG_COL << 16) |
2085 (CONFIG_SYS_CONSOLE_FG_COL << 8) |
2086 CONFIG_SYS_CONSOLE_FG_COL;
2087 bgx = (CONFIG_SYS_CONSOLE_BG_COL << 16) |
2088 (CONFIG_SYS_CONSOLE_BG_COL << 8) |
2089 CONFIG_SYS_CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002090 break;
2091 case GDF_24BIT_888RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002092 fgx = (CONFIG_SYS_CONSOLE_FG_COL << 24) |
2093 (CONFIG_SYS_CONSOLE_FG_COL << 16) |
2094 (CONFIG_SYS_CONSOLE_FG_COL << 8) |
2095 CONFIG_SYS_CONSOLE_FG_COL;
2096 bgx = (CONFIG_SYS_CONSOLE_BG_COL << 24) |
2097 (CONFIG_SYS_CONSOLE_BG_COL << 16) |
2098 (CONFIG_SYS_CONSOLE_BG_COL << 8) |
2099 CONFIG_SYS_CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002100 break;
2101 }
2102 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00002103
Rob Clark8ef05352017-08-03 12:47:01 -04002104 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
2105 video_clear();
Heiko Schocher45ae2542013-10-22 11:06:06 +02002106
wdenkc6097192002-11-03 00:24:07 +00002107#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00002108 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002109 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002110 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00002111#else
wdenk4b248f32004-03-14 16:51:43 +00002112 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00002113#endif
2114
wdenk4b248f32004-03-14 16:51:43 +00002115 /* Initialize the console */
2116 console_col = 0;
2117 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00002118
Eric Nelsondb0d47d2013-05-06 14:27:28 +02002119 if (cfb_do_flush_cache)
2120 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2121
wdenk4b248f32004-03-14 16:51:43 +00002122 return 0;
wdenkc6097192002-11-03 00:24:07 +00002123}
2124
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002125/*
2126 * Implement a weak default function for boards that optionally
2127 * need to skip the video initialization.
2128 */
Jeroen Hofstee69d27542014-10-08 22:57:30 +02002129__weak int board_video_skip(void)
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002130{
2131 /* As default, don't skip test */
2132 return 0;
2133}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002134
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002135int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002136{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02002137 struct stdio_dev console_dev;
Simon Glass5692ccf2015-03-02 12:40:50 -07002138 bool have_keyboard;
Bin Meng8ceb2422015-08-24 01:00:07 -07002139 bool __maybe_unused keyboard_ok = false;
wdenkc6097192002-11-03 00:24:07 +00002140
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002141 /* Check if video initialization should be skipped */
2142 if (board_video_skip())
2143 return 0;
2144
wdenk81050922004-07-11 20:04:51 +00002145 /* Init video chip - returns with framebuffer cleared */
Simon Glass0a6eac82016-10-17 20:12:54 -06002146 if (cfg_video_init() == -1)
Bin Meng8ceb2422015-08-24 01:00:07 -07002147 return 0;
wdenk81050922004-07-11 20:04:51 +00002148
Heiko Schocher2bc4aa52013-08-03 07:22:53 +02002149 if (board_cfb_skip())
2150 return 0;
2151
Simon Glass5692ccf2015-03-02 12:40:50 -07002152#if defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2153 have_keyboard = false;
2154#elif defined(CONFIG_OF_CONTROL)
2155 have_keyboard = !fdtdec_get_config_bool(gd->fdt_blob,
2156 "u-boot,no-keyboard");
2157#else
2158 have_keyboard = true;
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002159#endif
Simon Glass5692ccf2015-03-02 12:40:50 -07002160 if (have_keyboard) {
2161 debug("KBD: Keyboard init ...\n");
2162#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Bin Meng8ceb2422015-08-24 01:00:07 -07002163 keyboard_ok = !(VIDEO_KBD_INIT_FCT == -1);
Simon Glass5692ccf2015-03-02 12:40:50 -07002164#endif
2165 }
wdenkc6097192002-11-03 00:24:07 +00002166
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002167 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002168 memset(&console_dev, 0, sizeof(console_dev));
2169 strcpy(console_dev.name, "vga");
Bin Meng1caf9342015-11-03 23:23:37 -08002170 console_dev.flags = DEV_FLAGS_OUTPUT;
Simon Glass0a6eac82016-10-17 20:12:54 -06002171 console_dev.putc = cfb_video_putc; /* 'putc' function */
2172 console_dev.puts = cfb_video_puts; /* 'puts' function */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002173
2174#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Bin Meng8ceb2422015-08-24 01:00:07 -07002175 if (have_keyboard && keyboard_ok) {
Simon Glass5692ccf2015-03-02 12:40:50 -07002176 /* Also init console device */
2177 console_dev.flags |= DEV_FLAGS_INPUT;
2178 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2179 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
2180 }
2181#endif
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002182
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002183 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002184 return 0;
2185
2186 /* Return success */
2187 return 1;
wdenkc6097192002-11-03 00:24:07 +00002188}
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002189
2190void video_position_cursor(unsigned col, unsigned row)
2191{
2192 console_col = min(col, CONSOLE_COLS - 1);
2193 console_row = min(row, CONSOLE_ROWS - 1);
2194}
2195
2196int video_get_pixel_width(void)
2197{
2198 return VIDEO_VISIBLE_COLS;
2199}
2200
2201int video_get_pixel_height(void)
2202{
2203 return VIDEO_VISIBLE_ROWS;
2204}
2205
2206int video_get_screen_rows(void)
2207{
2208 return CONSOLE_ROWS;
2209}
2210
2211int video_get_screen_columns(void)
2212{
2213 return CONSOLE_COLS;
2214}