blob: 3f07f4eb297fde40e92f861ae51c1289347aeef5 [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>
Wolfgang Denka9a62af2011-11-04 15:55:20 +000077#include <linux/compiler.h>
wdenka6c7ad22002-12-03 21:28:10 +000078
Simon Glassc370d382016-10-17 20:12:47 -060079#if defined(CONFIG_VIDEO_MXS)
Marek Vasutfb8ddc22013-04-28 09:20:03 +000080#define VIDEO_FB_16BPP_WORD_SWAP
81#endif
82
Wolfgang Denk64e40d72011-07-29 09:55:27 +000083/*
84 * Defines for the MB862xx driver
85 */
Anatolij Gustschinbed53752008-01-11 14:30:01 +010086#ifdef CONFIG_VIDEO_MB862xx
87
88#ifdef CONFIG_VIDEO_CORALP
89#define VIDEO_FB_LITTLE_ENDIAN
90#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +020091#ifdef CONFIG_VIDEO_MB862xx_ACCEL
Anatolij Gustschinbed53752008-01-11 14:30:01 +010092#define VIDEO_HW_RECTFILL
93#define VIDEO_HW_BITBLT
94#endif
Anatolij Gustschin5d16ca82009-10-23 12:03:14 +020095#endif
Anatolij Gustschinbed53752008-01-11 14:30:01 +010096
Wolfgang Denk64e40d72011-07-29 09:55:27 +000097/*
Helmut Raiger62a22dc2011-10-12 23:16:29 +000098 * Defines for the i.MX31 driver (mx3fb.c)
99 */
Fabio Estevam695af9a2012-05-31 07:23:56 +0000100#if defined(CONFIG_VIDEO_MX3) || defined(CONFIG_VIDEO_IPUV3)
Helmut Raiger62a22dc2011-10-12 23:16:29 +0000101#define VIDEO_FB_16BPP_WORD_SWAP
102#endif
103
104/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000105 * Include video_fb.h after definitions of VIDEO_HW_RECTFILL etc.
106 */
wdenkc6097192002-11-03 00:24:07 +0000107#include <video_fb.h>
108
Robert Winklerdd4425e2013-06-17 11:31:29 -0700109#include <splash.h>
110
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000111/*
112 * some Macros
113 */
wdenk4b248f32004-03-14 16:51:43 +0000114#define VIDEO_VISIBLE_COLS (pGD->winSizeX)
115#define VIDEO_VISIBLE_ROWS (pGD->winSizeY)
116#define VIDEO_PIXEL_SIZE (pGD->gdfBytesPP)
117#define VIDEO_DATA_FORMAT (pGD->gdfIndex)
118#define VIDEO_FB_ADRS (pGD->frameAdrs)
wdenkc6097192002-11-03 00:24:07 +0000119
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000120/*
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000121 * Console device
122 */
wdenkc6097192002-11-03 00:24:07 +0000123
124#include <version.h>
125#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200126#include <stdio_dev.h>
wdenkc6097192002-11-03 00:24:07 +0000127#include <video_font.h>
wdenkc6097192002-11-03 00:24:07 +0000128
Jon Loeligerddb5d86f2007-07-10 11:13:21 -0500129#if defined(CONFIG_CMD_DATE)
130#include <rtc.h>
wdenkc6097192002-11-03 00:24:07 +0000131#endif
132
Jon Loeliger07d38a12007-07-09 17:30:01 -0500133#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +0000134#include <watchdog.h>
135#include <bmp_layout.h>
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200136#include <splash.h>
Jon Loeliger07d38a12007-07-09 17:30:01 -0500137#endif
wdenk4b248f32004-03-14 16:51:43 +0000138
Simon Glassa4206572016-10-17 20:12:50 -0600139#if !defined(CONFIG_VIDEO_SW_CURSOR)
wdenkc6097192002-11-03 00:24:07 +0000140/* no Cursor defined */
141#define CURSOR_ON
142#define CURSOR_OFF
143#define CURSOR_SET
144#endif
145
Simon Glass7fe09332015-10-18 21:17:18 -0600146#if defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000147void console_cursor(int state);
148
Timur Tabi65618632010-08-27 15:45:47 -0500149#define CURSOR_ON console_cursor(1)
150#define CURSOR_OFF console_cursor(0)
Gabe Black03d31fc2011-11-30 13:50:50 +0000151#define CURSOR_SET video_set_cursor()
Simon Glass7fe09332015-10-18 21:17:18 -0600152#endif /* CONFIG_VIDEO_SW_CURSOR */
wdenkc6097192002-11-03 00:24:07 +0000153
wdenk4b248f32004-03-14 16:51:43 +0000154#ifdef CONFIG_VIDEO_LOGO
155#ifdef CONFIG_VIDEO_BMP_LOGO
wdenka6c7ad22002-12-03 21:28:10 +0000156#include <bmp_logo.h>
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000157#include <bmp_logo_data.h>
wdenk4b248f32004-03-14 16:51:43 +0000158#define VIDEO_LOGO_WIDTH BMP_LOGO_WIDTH
159#define VIDEO_LOGO_HEIGHT BMP_LOGO_HEIGHT
160#define VIDEO_LOGO_LUT_OFFSET BMP_LOGO_OFFSET
161#define VIDEO_LOGO_COLORS BMP_LOGO_COLORS
wdenka6c7ad22002-12-03 21:28:10 +0000162
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000163#else /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000164#define LINUX_LOGO_WIDTH 80
165#define LINUX_LOGO_HEIGHT 80
166#define LINUX_LOGO_COLORS 214
167#define LINUX_LOGO_LUT_OFFSET 0x20
wdenkc6097192002-11-03 00:24:07 +0000168#define __initdata
169#include <linux_logo.h>
wdenk4b248f32004-03-14 16:51:43 +0000170#define VIDEO_LOGO_WIDTH LINUX_LOGO_WIDTH
171#define VIDEO_LOGO_HEIGHT LINUX_LOGO_HEIGHT
172#define VIDEO_LOGO_LUT_OFFSET LINUX_LOGO_LUT_OFFSET
173#define VIDEO_LOGO_COLORS LINUX_LOGO_COLORS
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000174#endif /* CONFIG_VIDEO_BMP_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000175#define VIDEO_INFO_X (VIDEO_LOGO_WIDTH)
176#define VIDEO_INFO_Y (VIDEO_FONT_HEIGHT/2)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000177#else /* CONFIG_VIDEO_LOGO */
wdenk4b248f32004-03-14 16:51:43 +0000178#define VIDEO_LOGO_WIDTH 0
179#define VIDEO_LOGO_HEIGHT 0
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000180#endif /* CONFIG_VIDEO_LOGO */
wdenkc6097192002-11-03 00:24:07 +0000181
wdenk4b248f32004-03-14 16:51:43 +0000182#define VIDEO_COLS VIDEO_VISIBLE_COLS
183#define VIDEO_ROWS VIDEO_VISIBLE_ROWS
Hans de Goedec67a8762015-08-04 12:15:39 +0200184#ifndef VIDEO_LINE_LEN
185#define VIDEO_LINE_LEN (VIDEO_COLS * VIDEO_PIXEL_SIZE)
186#endif
187#define VIDEO_SIZE (VIDEO_ROWS * VIDEO_LINE_LEN)
wdenk4b248f32004-03-14 16:51:43 +0000188#define VIDEO_BURST_LEN (VIDEO_COLS/8)
wdenkc6097192002-11-03 00:24:07 +0000189
wdenk4b248f32004-03-14 16:51:43 +0000190#ifdef CONFIG_VIDEO_LOGO
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100191#define CONSOLE_ROWS ((VIDEO_ROWS - video_logo_height) / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000192#else
wdenk4b248f32004-03-14 16:51:43 +0000193#define CONSOLE_ROWS (VIDEO_ROWS / VIDEO_FONT_HEIGHT)
wdenkc6097192002-11-03 00:24:07 +0000194#endif
195
wdenk4b248f32004-03-14 16:51:43 +0000196#define CONSOLE_COLS (VIDEO_COLS / VIDEO_FONT_WIDTH)
197#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * VIDEO_LINE_LEN)
198#define CONSOLE_ROW_FIRST (video_console_address)
199#define CONSOLE_ROW_SECOND (video_console_address + CONSOLE_ROW_SIZE)
200#define CONSOLE_ROW_LAST (video_console_address + CONSOLE_SIZE - CONSOLE_ROW_SIZE)
201#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * CONSOLE_ROWS)
Simon Glass3c0b6682015-01-01 16:17:57 -0700202
203/* By default we scroll by a single line */
204#ifndef CONFIG_CONSOLE_SCROLL_LINES
205#define CONFIG_CONSOLE_SCROLL_LINES 1
206#endif
wdenkc6097192002-11-03 00:24:07 +0000207
208/* Macros */
wdenk4b248f32004-03-14 16:51:43 +0000209#ifdef VIDEO_FB_LITTLE_ENDIAN
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000210#define SWAP16(x) ((((x) & 0x00ff) << 8) | \
211 ((x) >> 8) \
212 )
213#define SWAP32(x) ((((x) & 0x000000ff) << 24) | \
214 (((x) & 0x0000ff00) << 8) | \
215 (((x) & 0x00ff0000) >> 8) | \
216 (((x) & 0xff000000) >> 24) \
217 )
218#define SHORTSWAP32(x) ((((x) & 0x000000ff) << 8) | \
219 (((x) & 0x0000ff00) >> 8) | \
220 (((x) & 0x00ff0000) << 8) | \
221 (((x) & 0xff000000) >> 8) \
222 )
wdenkc6097192002-11-03 00:24:07 +0000223#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000224#define SWAP16(x) (x)
225#define SWAP32(x) (x)
Wolfgang Grandegger229b6dc2009-10-23 12:03:15 +0200226#if defined(VIDEO_FB_16BPP_WORD_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000227#define SHORTSWAP32(x) (((x) >> 16) | ((x) << 16))
Andrew Dyercc347802008-08-29 12:30:39 -0500228#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000229#define SHORTSWAP32(x) (x)
Anatolij Gustschinbed53752008-01-11 14:30:01 +0100230#endif
wdenkc6097192002-11-03 00:24:07 +0000231#endif
232
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200233DECLARE_GLOBAL_DATA_PTR;
234
wdenkc6097192002-11-03 00:24:07 +0000235/* Locals */
236static GraphicDevice *pGD; /* Pointer to Graphic array */
237
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000238static void *video_fb_address; /* frame buffer address */
wdenk4b248f32004-03-14 16:51:43 +0000239static void *video_console_address; /* console buffer start address */
wdenkc6097192002-11-03 00:24:07 +0000240
Matthias Weisserbe129aa2010-01-12 12:06:31 +0100241static int video_logo_height = VIDEO_LOGO_HEIGHT;
242
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000243static int __maybe_unused cursor_state;
244static int __maybe_unused old_col;
245static int __maybe_unused old_row;
Gabe Black03d31fc2011-11-30 13:50:50 +0000246
Wolfgang Denk57912932011-07-30 12:48:09 +0000247static int console_col; /* cursor col */
248static int console_row; /* cursor row */
wdenkc6097192002-11-03 00:24:07 +0000249
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000250static u32 eorx, fgx, bgx; /* color pats */
wdenkc6097192002-11-03 00:24:07 +0000251
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +0200252static int cfb_do_flush_cache;
253
Pali Rohár33a35bb2012-10-19 13:30:09 +0000254#ifdef CONFIG_CFB_CONSOLE_ANSI
255static char ansi_buf[10];
256static int ansi_buf_size;
257static int ansi_colors_need_revert;
258static int ansi_cursor_hidden;
259#endif
260
wdenkc6097192002-11-03 00:24:07 +0000261static const int video_font_draw_table8[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000262 0x00000000, 0x000000ff, 0x0000ff00, 0x0000ffff,
263 0x00ff0000, 0x00ff00ff, 0x00ffff00, 0x00ffffff,
264 0xff000000, 0xff0000ff, 0xff00ff00, 0xff00ffff,
265 0xffff0000, 0xffff00ff, 0xffffff00, 0xffffffff
266};
wdenkc6097192002-11-03 00:24:07 +0000267
268static const int video_font_draw_table15[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000269 0x00000000, 0x00007fff, 0x7fff0000, 0x7fff7fff
270};
wdenkc6097192002-11-03 00:24:07 +0000271
272static const int video_font_draw_table16[] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000273 0x00000000, 0x0000ffff, 0xffff0000, 0xffffffff
274};
wdenkc6097192002-11-03 00:24:07 +0000275
276static const int video_font_draw_table24[16][3] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000277 {0x00000000, 0x00000000, 0x00000000},
278 {0x00000000, 0x00000000, 0x00ffffff},
279 {0x00000000, 0x0000ffff, 0xff000000},
280 {0x00000000, 0x0000ffff, 0xffffffff},
281 {0x000000ff, 0xffff0000, 0x00000000},
282 {0x000000ff, 0xffff0000, 0x00ffffff},
283 {0x000000ff, 0xffffffff, 0xff000000},
284 {0x000000ff, 0xffffffff, 0xffffffff},
285 {0xffffff00, 0x00000000, 0x00000000},
286 {0xffffff00, 0x00000000, 0x00ffffff},
287 {0xffffff00, 0x0000ffff, 0xff000000},
288 {0xffffff00, 0x0000ffff, 0xffffffff},
289 {0xffffffff, 0xffff0000, 0x00000000},
290 {0xffffffff, 0xffff0000, 0x00ffffff},
291 {0xffffffff, 0xffffffff, 0xff000000},
292 {0xffffffff, 0xffffffff, 0xffffffff}
293};
wdenkc6097192002-11-03 00:24:07 +0000294
295static const int video_font_draw_table32[16][4] = {
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000296 {0x00000000, 0x00000000, 0x00000000, 0x00000000},
297 {0x00000000, 0x00000000, 0x00000000, 0x00ffffff},
298 {0x00000000, 0x00000000, 0x00ffffff, 0x00000000},
299 {0x00000000, 0x00000000, 0x00ffffff, 0x00ffffff},
300 {0x00000000, 0x00ffffff, 0x00000000, 0x00000000},
301 {0x00000000, 0x00ffffff, 0x00000000, 0x00ffffff},
302 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00000000},
303 {0x00000000, 0x00ffffff, 0x00ffffff, 0x00ffffff},
304 {0x00ffffff, 0x00000000, 0x00000000, 0x00000000},
305 {0x00ffffff, 0x00000000, 0x00000000, 0x00ffffff},
306 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00000000},
307 {0x00ffffff, 0x00000000, 0x00ffffff, 0x00ffffff},
308 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00000000},
309 {0x00ffffff, 0x00ffffff, 0x00000000, 0x00ffffff},
310 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00000000},
311 {0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff}
312};
wdenkc6097192002-11-03 00:24:07 +0000313
Heiko Schocher2bc4aa52013-08-03 07:22:53 +0200314/*
315 * Implement a weak default function for boards that optionally
316 * need to skip the cfb initialization.
317 */
318__weak int board_cfb_skip(void)
319{
320 /* As default, don't skip cfb init */
321 return 0;
322}
323
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000324static void video_drawchars(int xx, int yy, unsigned char *s, int count)
wdenkc6097192002-11-03 00:24:07 +0000325{
wdenk4b248f32004-03-14 16:51:43 +0000326 u8 *cdat, *dest, *dest0;
327 int rows, offset, c;
wdenkc6097192002-11-03 00:24:07 +0000328
wdenk4b248f32004-03-14 16:51:43 +0000329 offset = yy * VIDEO_LINE_LEN + xx * VIDEO_PIXEL_SIZE;
330 dest0 = video_fb_address + offset;
wdenkc6097192002-11-03 00:24:07 +0000331
wdenk4b248f32004-03-14 16:51:43 +0000332 switch (VIDEO_DATA_FORMAT) {
333 case GDF__8BIT_INDEX:
334 case GDF__8BIT_332RGB:
335 while (count--) {
336 c = *s;
337 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
338 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000339 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000340 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000341
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000342 ((u32 *) dest)[0] =
343 (video_font_draw_table8[bits >> 4] &
344 eorx) ^ bgx;
Marek Vasutfd8cf992013-07-30 23:37:59 +0200345
346 if (VIDEO_FONT_WIDTH == 4)
347 continue;
348
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000349 ((u32 *) dest)[1] =
350 (video_font_draw_table8[bits & 15] &
351 eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000352 }
353 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
354 s++;
355 }
356 break;
wdenkc6097192002-11-03 00:24:07 +0000357
wdenk4b248f32004-03-14 16:51:43 +0000358 case GDF_15BIT_555RGB:
359 while (count--) {
360 c = *s;
361 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
362 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000363 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000364 u8 bits = *cdat++;
wdenkc6097192002-11-03 00:24:07 +0000365
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000366 ((u32 *) dest)[0] =
367 SHORTSWAP32((video_font_draw_table15
368 [bits >> 6] & eorx) ^
369 bgx);
370 ((u32 *) dest)[1] =
371 SHORTSWAP32((video_font_draw_table15
372 [bits >> 4 & 3] & eorx) ^
373 bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200374
375 if (VIDEO_FONT_WIDTH == 4)
376 continue;
377
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000378 ((u32 *) dest)[2] =
379 SHORTSWAP32((video_font_draw_table15
380 [bits >> 2 & 3] & eorx) ^
381 bgx);
382 ((u32 *) dest)[3] =
383 SHORTSWAP32((video_font_draw_table15
384 [bits & 3] & eorx) ^
385 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000386 }
387 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
388 s++;
389 }
390 break;
wdenkc6097192002-11-03 00:24:07 +0000391
wdenk4b248f32004-03-14 16:51:43 +0000392 case GDF_16BIT_565RGB:
393 while (count--) {
394 c = *s;
395 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
396 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000397 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000398 u8 bits = *cdat++;
399
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000400 ((u32 *) dest)[0] =
401 SHORTSWAP32((video_font_draw_table16
402 [bits >> 6] & eorx) ^
403 bgx);
404 ((u32 *) dest)[1] =
405 SHORTSWAP32((video_font_draw_table16
406 [bits >> 4 & 3] & eorx) ^
407 bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200408
409 if (VIDEO_FONT_WIDTH == 4)
410 continue;
411
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000412 ((u32 *) dest)[2] =
413 SHORTSWAP32((video_font_draw_table16
414 [bits >> 2 & 3] & eorx) ^
415 bgx);
416 ((u32 *) dest)[3] =
417 SHORTSWAP32((video_font_draw_table16
418 [bits & 3] & eorx) ^
419 bgx);
wdenk4b248f32004-03-14 16:51:43 +0000420 }
421 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
422 s++;
423 }
424 break;
425
426 case GDF_32BIT_X888RGB:
427 while (count--) {
428 c = *s;
429 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
430 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000431 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000432 u8 bits = *cdat++;
433
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000434 ((u32 *) dest)[0] =
435 SWAP32((video_font_draw_table32
436 [bits >> 4][0] & eorx) ^ bgx);
437 ((u32 *) dest)[1] =
438 SWAP32((video_font_draw_table32
439 [bits >> 4][1] & eorx) ^ bgx);
440 ((u32 *) dest)[2] =
441 SWAP32((video_font_draw_table32
442 [bits >> 4][2] & eorx) ^ bgx);
443 ((u32 *) dest)[3] =
444 SWAP32((video_font_draw_table32
445 [bits >> 4][3] & eorx) ^ bgx);
Marek Vasutfd8cf992013-07-30 23:37:59 +0200446
447
448 if (VIDEO_FONT_WIDTH == 4)
449 continue;
450
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000451 ((u32 *) dest)[4] =
452 SWAP32((video_font_draw_table32
453 [bits & 15][0] & eorx) ^ bgx);
454 ((u32 *) dest)[5] =
455 SWAP32((video_font_draw_table32
456 [bits & 15][1] & eorx) ^ bgx);
457 ((u32 *) dest)[6] =
458 SWAP32((video_font_draw_table32
459 [bits & 15][2] & eorx) ^ bgx);
460 ((u32 *) dest)[7] =
461 SWAP32((video_font_draw_table32
462 [bits & 15][3] & eorx) ^ bgx);
wdenk4b248f32004-03-14 16:51:43 +0000463 }
464 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
465 s++;
466 }
467 break;
468
469 case GDF_24BIT_888RGB:
470 while (count--) {
471 c = *s;
472 cdat = video_fontdata + c * VIDEO_FONT_HEIGHT;
473 for (rows = VIDEO_FONT_HEIGHT, dest = dest0;
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000474 rows--; dest += VIDEO_LINE_LEN) {
wdenk4b248f32004-03-14 16:51:43 +0000475 u8 bits = *cdat++;
476
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000477 ((u32 *) dest)[0] =
478 (video_font_draw_table24[bits >> 4][0]
479 & eorx) ^ bgx;
480 ((u32 *) dest)[1] =
481 (video_font_draw_table24[bits >> 4][1]
482 & eorx) ^ bgx;
483 ((u32 *) dest)[2] =
484 (video_font_draw_table24[bits >> 4][2]
485 & eorx) ^ bgx;
Marek Vasutfd8cf992013-07-30 23:37:59 +0200486
487 if (VIDEO_FONT_WIDTH == 4)
488 continue;
489
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000490 ((u32 *) dest)[3] =
491 (video_font_draw_table24[bits & 15][0]
492 & eorx) ^ bgx;
493 ((u32 *) dest)[4] =
494 (video_font_draw_table24[bits & 15][1]
495 & eorx) ^ bgx;
496 ((u32 *) dest)[5] =
497 (video_font_draw_table24[bits & 15][2]
498 & eorx) ^ bgx;
wdenk4b248f32004-03-14 16:51:43 +0000499 }
500 dest0 += VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE;
501 s++;
502 }
503 break;
wdenk8bde7f72003-06-27 21:31:46 +0000504 }
wdenkc6097192002-11-03 00:24:07 +0000505}
506
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000507static inline void video_drawstring(int xx, int yy, unsigned char *s)
wdenkc6097192002-11-03 00:24:07 +0000508{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000509 video_drawchars(xx, yy, s, strlen((char *) s));
wdenkc6097192002-11-03 00:24:07 +0000510}
511
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000512static void video_putchar(int xx, int yy, unsigned char c)
wdenkc6097192002-11-03 00:24:07 +0000513{
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000514 video_drawchars(xx, yy + video_logo_height, &c, 1);
wdenkc6097192002-11-03 00:24:07 +0000515}
516
Simon Glass7fe09332015-10-18 21:17:18 -0600517#if defined(CONFIG_VIDEO_SW_CURSOR)
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000518static void video_set_cursor(void)
wdenkc6097192002-11-03 00:24:07 +0000519{
Gabe Black03d31fc2011-11-30 13:50:50 +0000520 if (cursor_state)
521 console_cursor(0);
522 console_cursor(1);
wdenkc6097192002-11-03 00:24:07 +0000523}
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000524
Anatolij Gustschina45adde2011-12-07 03:58:10 +0000525static void video_invertchar(int xx, int yy)
526{
527 int firstx = xx * VIDEO_PIXEL_SIZE;
528 int lastx = (xx + VIDEO_FONT_WIDTH) * VIDEO_PIXEL_SIZE;
529 int firsty = yy * VIDEO_LINE_LEN;
530 int lasty = (yy + VIDEO_FONT_HEIGHT) * VIDEO_LINE_LEN;
531 int x, y;
532 for (y = firsty; y < lasty; y += VIDEO_LINE_LEN) {
533 for (x = firstx; x < lastx; x++) {
534 u8 *dest = (u8 *)(video_fb_address) + x + y;
535 *dest = ~*dest;
536 }
537 }
538}
Gabe Black03d31fc2011-11-30 13:50:50 +0000539
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000540void console_cursor(int state)
wdenkc6097192002-11-03 00:24:07 +0000541{
Gabe Black03d31fc2011-11-30 13:50:50 +0000542 if (cursor_state != state) {
543 if (cursor_state) {
544 /* turn off the cursor */
545 video_invertchar(old_col * VIDEO_FONT_WIDTH,
546 old_row * VIDEO_FONT_HEIGHT +
547 video_logo_height);
548 } else {
549 /* turn off the cursor and record where it is */
550 video_invertchar(console_col * VIDEO_FONT_WIDTH,
551 console_row * VIDEO_FONT_HEIGHT +
552 video_logo_height);
553 old_col = console_col;
554 old_row = console_row;
555 }
556 cursor_state = state;
wdenk4b248f32004-03-14 16:51:43 +0000557 }
Eric Nelsondb0d47d2013-05-06 14:27:28 +0200558 if (cfb_do_flush_cache)
559 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000560}
561#endif
562
wdenkc6097192002-11-03 00:24:07 +0000563#ifndef VIDEO_HW_RECTFILL
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000564static void memsetl(int *p, int c, int v)
wdenkc6097192002-11-03 00:24:07 +0000565{
wdenk4b248f32004-03-14 16:51:43 +0000566 while (c--)
567 *(p++) = v;
wdenkc6097192002-11-03 00:24:07 +0000568}
569#endif
570
wdenkc6097192002-11-03 00:24:07 +0000571#ifndef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000572static void memcpyl(int *d, int *s, int c)
wdenkc6097192002-11-03 00:24:07 +0000573{
wdenk4b248f32004-03-14 16:51:43 +0000574 while (c--)
575 *(d++) = *(s++);
wdenkc6097192002-11-03 00:24:07 +0000576}
577#endif
578
Pali Rohár90f60a82012-04-28 07:26:44 +0000579static void console_clear_line(int line, int begin, int end)
580{
581#ifdef VIDEO_HW_RECTFILL
582 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
583 VIDEO_FONT_WIDTH * begin, /* dest pos x */
584 video_logo_height +
585 VIDEO_FONT_HEIGHT * line, /* dest pos y */
586 VIDEO_FONT_WIDTH * (end - begin + 1), /* fr. width */
587 VIDEO_FONT_HEIGHT, /* frame height */
588 bgx /* fill color */
589 );
590#else
591 if (begin == 0 && (end + 1) == CONSOLE_COLS) {
592 memsetl(CONSOLE_ROW_FIRST +
593 CONSOLE_ROW_SIZE * line, /* offset of row */
594 CONSOLE_ROW_SIZE >> 2, /* length of row */
595 bgx /* fill color */
596 );
597 } else {
598 void *offset;
599 int i, size;
600
601 offset = CONSOLE_ROW_FIRST +
602 CONSOLE_ROW_SIZE * line + /* offset of row */
603 VIDEO_FONT_WIDTH *
604 VIDEO_PIXEL_SIZE * begin; /* offset of col */
605 size = VIDEO_FONT_WIDTH * VIDEO_PIXEL_SIZE * (end - begin + 1);
606 size >>= 2; /* length to end for memsetl() */
607 /* fill at col offset of i'th line using bgx as fill color */
608 for (i = 0; i < VIDEO_FONT_HEIGHT; i++)
609 memsetl(offset + i * VIDEO_LINE_LEN, size, bgx);
610 }
611#endif
612}
613
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000614static void console_scrollup(void)
wdenkc6097192002-11-03 00:24:07 +0000615{
Simon Glass3c0b6682015-01-01 16:17:57 -0700616 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
617 int i;
618
wdenk4b248f32004-03-14 16:51:43 +0000619 /* copy up rows ignoring the first one */
wdenkc6097192002-11-03 00:24:07 +0000620
621#ifdef VIDEO_HW_BITBLT
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000622 video_hw_bitblt(VIDEO_PIXEL_SIZE, /* bytes per pixel */
623 0, /* source pos x */
624 video_logo_height +
Simon Glass3c0b6682015-01-01 16:17:57 -0700625 VIDEO_FONT_HEIGHT * rows, /* source pos y */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000626 0, /* dest pos x */
627 video_logo_height, /* dest pos y */
628 VIDEO_VISIBLE_COLS, /* frame width */
629 VIDEO_VISIBLE_ROWS
630 - video_logo_height
Simon Glass3c0b6682015-01-01 16:17:57 -0700631 - VIDEO_FONT_HEIGHT * rows /* frame height */
wdenk4b248f32004-03-14 16:51:43 +0000632 );
wdenkc6097192002-11-03 00:24:07 +0000633#else
Simon Glass3c0b6682015-01-01 16:17:57 -0700634 memcpyl(CONSOLE_ROW_FIRST, CONSOLE_ROW_FIRST + rows * CONSOLE_ROW_SIZE,
635 (CONSOLE_SIZE - CONSOLE_ROW_SIZE * rows) >> 2);
wdenkc6097192002-11-03 00:24:07 +0000636#endif
wdenk4b248f32004-03-14 16:51:43 +0000637 /* clear the last one */
Simon Glass3c0b6682015-01-01 16:17:57 -0700638 for (i = 1; i <= rows; i++)
639 console_clear_line(CONSOLE_ROWS - i, 0, CONSOLE_COLS - 1);
640
641 /* Decrement row number */
642 console_row -= rows;
wdenkc6097192002-11-03 00:24:07 +0000643}
644
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000645static void console_back(void)
wdenkc6097192002-11-03 00:24:07 +0000646{
Timur Tabi65618632010-08-27 15:45:47 -0500647 console_col--;
wdenkc6097192002-11-03 00:24:07 +0000648
wdenk4b248f32004-03-14 16:51:43 +0000649 if (console_col < 0) {
650 console_col = CONSOLE_COLS - 1;
651 console_row--;
652 if (console_row < 0)
653 console_row = 0;
654 }
wdenkc6097192002-11-03 00:24:07 +0000655}
656
Pali Rohár33a35bb2012-10-19 13:30:09 +0000657#ifdef CONFIG_CFB_CONSOLE_ANSI
658
659static void console_clear(void)
wdenkc6097192002-11-03 00:24:07 +0000660{
Pali Rohár33a35bb2012-10-19 13:30:09 +0000661#ifdef VIDEO_HW_RECTFILL
662 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
663 0, /* dest pos x */
664 video_logo_height, /* dest pos y */
665 VIDEO_VISIBLE_COLS, /* frame width */
666 VIDEO_VISIBLE_ROWS, /* frame height */
667 bgx /* fill color */
668 );
669#else
670 memsetl(CONSOLE_ROW_FIRST, CONSOLE_SIZE, bgx);
671#endif
672}
673
674static void console_cursor_fix(void)
675{
676 if (console_row < 0)
677 console_row = 0;
678 if (console_row >= CONSOLE_ROWS)
679 console_row = CONSOLE_ROWS - 1;
680 if (console_col < 0)
681 console_col = 0;
682 if (console_col >= CONSOLE_COLS)
683 console_col = CONSOLE_COLS - 1;
684}
685
686static void console_cursor_up(int n)
687{
688 console_row -= n;
689 console_cursor_fix();
690}
691
692static void console_cursor_down(int n)
693{
694 console_row += n;
695 console_cursor_fix();
696}
697
698static void console_cursor_left(int n)
699{
700 console_col -= n;
701 console_cursor_fix();
702}
703
704static void console_cursor_right(int n)
705{
706 console_col += n;
707 console_cursor_fix();
708}
709
710static void console_cursor_set_position(int row, int col)
711{
712 if (console_row != -1)
713 console_row = row;
714 if (console_col != -1)
715 console_col = col;
716 console_cursor_fix();
717}
718
719static void console_previousline(int n)
720{
721 /* FIXME: also scroll terminal ? */
722 console_row -= n;
723 console_cursor_fix();
724}
725
726static void console_swap_colors(void)
727{
728 eorx = fgx;
729 fgx = bgx;
730 bgx = eorx;
731 eorx = fgx ^ bgx;
732}
733
734static inline int console_cursor_is_visible(void)
735{
736 return !ansi_cursor_hidden;
737}
738#else
739static inline int console_cursor_is_visible(void)
740{
741 return 1;
742}
743#endif
744
745static void console_newline(int n)
746{
747 console_row += n;
wdenk4b248f32004-03-14 16:51:43 +0000748 console_col = 0;
wdenkc6097192002-11-03 00:24:07 +0000749
wdenk4b248f32004-03-14 16:51:43 +0000750 /* Check if we need to scroll the terminal */
751 if (console_row >= CONSOLE_ROWS) {
752 /* Scroll everything up */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000753 console_scrollup();
wdenk4b248f32004-03-14 16:51:43 +0000754 }
wdenkc6097192002-11-03 00:24:07 +0000755}
756
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000757static void console_cr(void)
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100758{
Timur Tabi65618632010-08-27 15:45:47 -0500759 console_col = 0;
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100760}
761
Pali Rohár33a35bb2012-10-19 13:30:09 +0000762static void parse_putc(const char c)
wdenkc6097192002-11-03 00:24:07 +0000763{
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100764 static int nl = 1;
765
Pali Rohár33a35bb2012-10-19 13:30:09 +0000766 if (console_cursor_is_visible())
767 CURSOR_OFF;
Gabe Black03d31fc2011-11-30 13:50:50 +0000768
wdenk4b248f32004-03-14 16:51:43 +0000769 switch (c) {
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100770 case 13: /* back to first column */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000771 console_cr();
wdenk4b248f32004-03-14 16:51:43 +0000772 break;
wdenkc6097192002-11-03 00:24:07 +0000773
wdenk4b248f32004-03-14 16:51:43 +0000774 case '\n': /* next line */
Heinrich Schuchardt41ec1272018-03-18 14:24:39 +0100775 if (console_col || nl)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000776 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100777 nl = 1;
wdenk4b248f32004-03-14 16:51:43 +0000778 break;
wdenkc6097192002-11-03 00:24:07 +0000779
wdenk4b248f32004-03-14 16:51:43 +0000780 case 9: /* tab 8 */
Timur Tabi65618632010-08-27 15:45:47 -0500781 console_col |= 0x0008;
wdenk4b248f32004-03-14 16:51:43 +0000782 console_col &= ~0x0007;
wdenkc6097192002-11-03 00:24:07 +0000783
wdenk4b248f32004-03-14 16:51:43 +0000784 if (console_col >= CONSOLE_COLS)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000785 console_newline(1);
wdenk4b248f32004-03-14 16:51:43 +0000786 break;
wdenkc6097192002-11-03 00:24:07 +0000787
wdenk4b248f32004-03-14 16:51:43 +0000788 case 8: /* backspace */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000789 console_back();
wdenk4b248f32004-03-14 16:51:43 +0000790 break;
wdenkc6097192002-11-03 00:24:07 +0000791
Pali Rohár24fe06c2012-04-28 07:26:47 +0000792 case 7: /* bell */
793 break; /* ignored */
794
wdenk4b248f32004-03-14 16:51:43 +0000795 default: /* draw the char */
Wolfgang Denk64e40d72011-07-29 09:55:27 +0000796 video_putchar(console_col * VIDEO_FONT_WIDTH,
797 console_row * VIDEO_FONT_HEIGHT, c);
wdenk4b248f32004-03-14 16:51:43 +0000798 console_col++;
wdenkc6097192002-11-03 00:24:07 +0000799
wdenk4b248f32004-03-14 16:51:43 +0000800 /* check for newline */
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100801 if (console_col >= CONSOLE_COLS) {
Pali Rohár33a35bb2012-10-19 13:30:09 +0000802 console_newline(1);
Anatolij Gustschin20c450e2008-01-11 02:39:47 +0100803 nl = 0;
804 }
wdenk4b248f32004-03-14 16:51:43 +0000805 }
Pali Rohár33a35bb2012-10-19 13:30:09 +0000806
807 if (console_cursor_is_visible())
808 CURSOR_SET;
809}
810
Simon Glass0a6eac82016-10-17 20:12:54 -0600811static void cfb_video_putc(struct stdio_dev *dev, const char c)
Pali Rohár33a35bb2012-10-19 13:30:09 +0000812{
813#ifdef CONFIG_CFB_CONSOLE_ANSI
814 int i;
815
816 if (c == 27) {
817 for (i = 0; i < ansi_buf_size; ++i)
818 parse_putc(ansi_buf[i]);
819 ansi_buf[0] = 27;
820 ansi_buf_size = 1;
821 return;
822 }
823
824 if (ansi_buf_size > 0) {
825 /*
826 * 0 - ESC
827 * 1 - [
828 * 2 - num1
829 * 3 - ..
830 * 4 - ;
831 * 5 - num2
832 * 6 - ..
833 * - cchar
834 */
835 int next = 0;
836
837 int flush = 0;
838 int fail = 0;
839
840 int num1 = 0;
841 int num2 = 0;
842 int cchar = 0;
843
844 ansi_buf[ansi_buf_size++] = c;
845
846 if (ansi_buf_size >= sizeof(ansi_buf))
847 fail = 1;
848
849 for (i = 0; i < ansi_buf_size; ++i) {
850 if (fail)
851 break;
852
853 switch (next) {
854 case 0:
855 if (ansi_buf[i] == 27)
856 next = 1;
857 else
858 fail = 1;
859 break;
860
861 case 1:
862 if (ansi_buf[i] == '[')
863 next = 2;
864 else
865 fail = 1;
866 break;
867
868 case 2:
869 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
870 num1 = ansi_buf[i]-'0';
871 next = 3;
872 } else if (ansi_buf[i] != '?') {
873 --i;
874 num1 = 1;
875 next = 4;
876 }
877 break;
878
879 case 3:
880 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
881 num1 *= 10;
882 num1 += ansi_buf[i]-'0';
883 } else {
884 --i;
885 next = 4;
886 }
887 break;
888
889 case 4:
890 if (ansi_buf[i] != ';') {
891 --i;
892 next = 7;
893 } else
894 next = 5;
895 break;
896
897 case 5:
898 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
899 num2 = ansi_buf[i]-'0';
900 next = 6;
901 } else
902 fail = 1;
903 break;
904
905 case 6:
906 if (ansi_buf[i] >= '0' && ansi_buf[i] <= '9') {
907 num2 *= 10;
908 num2 += ansi_buf[i]-'0';
909 } else {
910 --i;
911 next = 7;
912 }
913 break;
914
915 case 7:
916 if ((ansi_buf[i] >= 'A' && ansi_buf[i] <= 'H')
917 || ansi_buf[i] == 'J'
918 || ansi_buf[i] == 'K'
919 || ansi_buf[i] == 'h'
920 || ansi_buf[i] == 'l'
921 || ansi_buf[i] == 'm') {
922 cchar = ansi_buf[i];
923 flush = 1;
924 } else
925 fail = 1;
926 break;
927 }
928 }
929
930 if (fail) {
931 for (i = 0; i < ansi_buf_size; ++i)
932 parse_putc(ansi_buf[i]);
933 ansi_buf_size = 0;
934 return;
935 }
936
937 if (flush) {
938 if (!ansi_cursor_hidden)
939 CURSOR_OFF;
940 ansi_buf_size = 0;
941 switch (cchar) {
942 case 'A':
943 /* move cursor num1 rows up */
944 console_cursor_up(num1);
945 break;
946 case 'B':
947 /* move cursor num1 rows down */
948 console_cursor_down(num1);
949 break;
950 case 'C':
951 /* move cursor num1 columns forward */
952 console_cursor_right(num1);
953 break;
954 case 'D':
955 /* move cursor num1 columns back */
956 console_cursor_left(num1);
957 break;
958 case 'E':
959 /* move cursor num1 rows up at begin of row */
960 console_previousline(num1);
961 break;
962 case 'F':
963 /* move cursor num1 rows down at begin of row */
964 console_newline(num1);
965 break;
966 case 'G':
967 /* move cursor to column num1 */
968 console_cursor_set_position(-1, num1-1);
969 break;
970 case 'H':
971 /* move cursor to row num1, column num2 */
972 console_cursor_set_position(num1-1, num2-1);
973 break;
974 case 'J':
975 /* clear console and move cursor to 0, 0 */
976 console_clear();
977 console_cursor_set_position(0, 0);
978 break;
979 case 'K':
980 /* clear line */
981 if (num1 == 0)
982 console_clear_line(console_row,
983 console_col,
984 CONSOLE_COLS-1);
985 else if (num1 == 1)
986 console_clear_line(console_row,
987 0, console_col);
988 else
989 console_clear_line(console_row,
990 0, CONSOLE_COLS-1);
991 break;
992 case 'h':
993 ansi_cursor_hidden = 0;
994 break;
995 case 'l':
996 ansi_cursor_hidden = 1;
997 break;
998 case 'm':
999 if (num1 == 0) { /* reset swapped colors */
1000 if (ansi_colors_need_revert) {
1001 console_swap_colors();
1002 ansi_colors_need_revert = 0;
1003 }
1004 } else if (num1 == 7) { /* once swap colors */
1005 if (!ansi_colors_need_revert) {
1006 console_swap_colors();
1007 ansi_colors_need_revert = 1;
1008 }
1009 }
1010 break;
1011 }
1012 if (!ansi_cursor_hidden)
1013 CURSOR_SET;
1014 }
1015 } else {
1016 parse_putc(c);
1017 }
1018#else
1019 parse_putc(c);
1020#endif
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001021 if (cfb_do_flush_cache)
1022 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
Timur Tabi65618632010-08-27 15:45:47 -05001023}
wdenkc6097192002-11-03 00:24:07 +00001024
Simon Glass0a6eac82016-10-17 20:12:54 -06001025static void cfb_video_puts(struct stdio_dev *dev, const char *s)
wdenkc6097192002-11-03 00:24:07 +00001026{
Soeren Mochd37e96e2014-10-24 16:33:30 +02001027 int flush = cfb_do_flush_cache;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001028 int count = strlen(s);
wdenkc6097192002-11-03 00:24:07 +00001029
Soeren Mochd37e96e2014-10-24 16:33:30 +02001030 /* temporarily disable cache flush */
1031 cfb_do_flush_cache = 0;
1032
wdenk4b248f32004-03-14 16:51:43 +00001033 while (count--)
Simon Glass0a6eac82016-10-17 20:12:54 -06001034 cfb_video_putc(dev, *s++);
Soeren Mochd37e96e2014-10-24 16:33:30 +02001035
1036 if (flush) {
1037 cfb_do_flush_cache = flush;
1038 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1039 }
wdenkc6097192002-11-03 00:24:07 +00001040}
1041
Anatolij Gustschin10543822010-05-01 22:21:09 +02001042/*
1043 * Do not enforce drivers (or board code) to provide empty
1044 * video_set_lut() if they do not support 8 bpp format.
1045 * Implement weak default function instead.
1046 */
Jeroen Hofstee69d27542014-10-08 22:57:30 +02001047__weak void video_set_lut(unsigned int index, unsigned char r,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001048 unsigned char g, unsigned char b)
Anatolij Gustschin10543822010-05-01 22:21:09 +02001049{
1050}
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001051
Jon Loeliger07d38a12007-07-09 17:30:01 -05001052#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
wdenk4b248f32004-03-14 16:51:43 +00001053
1054#define FILL_8BIT_332RGB(r,g,b) { \
1055 *fb = ((r>>5)<<5) | ((g>>5)<<2) | (b>>6); \
1056 fb ++; \
1057}
1058
1059#define FILL_15BIT_555RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001060 *(unsigned short *)fb = \
1061 SWAP16((unsigned short)(((r>>3)<<10) | \
1062 ((g>>3)<<5) | \
1063 (b>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001064 fb += 2; \
1065}
1066
1067#define FILL_16BIT_565RGB(r,g,b) { \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001068 *(unsigned short *)fb = \
1069 SWAP16((unsigned short)((((r)>>3)<<11)| \
1070 (((g)>>2)<<5) | \
1071 ((b)>>3))); \
wdenk4b248f32004-03-14 16:51:43 +00001072 fb += 2; \
1073}
1074
1075#define FILL_32BIT_X888RGB(r,g,b) { \
Andre Przywara1d4ed262017-03-06 01:13:38 +00001076 *(u32 *)fb = \
1077 SWAP32((unsigned int)(((r<<16) | \
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001078 (g<<8) | \
1079 b))); \
wdenk4b248f32004-03-14 16:51:43 +00001080 fb += 4; \
1081}
1082
1083#ifdef VIDEO_FB_LITTLE_ENDIAN
1084#define FILL_24BIT_888RGB(r,g,b) { \
1085 fb[0] = b; \
1086 fb[1] = g; \
1087 fb[2] = r; \
1088 fb += 3; \
1089}
1090#else
1091#define FILL_24BIT_888RGB(r,g,b) { \
1092 fb[0] = r; \
1093 fb[1] = g; \
1094 fb[2] = b; \
1095 fb += 3; \
1096}
1097#endif
1098
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001099#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001100static inline void fill_555rgb_pswap(uchar *fb, int x, u8 r, u8 g, u8 b)
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001101{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001102 ushort *dst = (ushort *) fb;
1103 ushort color = (ushort) (((r >> 3) << 10) |
1104 ((g >> 3) << 5) |
1105 (b >> 3));
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001106 if (x & 1)
1107 *(--dst) = color;
1108 else
1109 *(++dst) = color;
1110}
1111#endif
wdenk4b248f32004-03-14 16:51:43 +00001112
1113/*
Anatolij Gustschind5011762010-03-15 14:50:25 +01001114 * RLE8 bitmap support
1115 */
1116
1117#ifdef CONFIG_VIDEO_BMP_RLE8
1118/* Pre-calculated color table entry */
1119struct palette {
1120 union {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001121 unsigned short w; /* word */
1122 unsigned int dw; /* double word */
1123 } ce; /* color entry */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001124};
1125
1126/*
1127 * Helper to draw encoded/unencoded run.
1128 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001129static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p,
1130 int cnt, int enc)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001131{
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001132 ulong addr = (ulong) *fb;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001133 int *off;
1134 int enc_off = 1;
1135 int i;
1136
1137 /*
1138 * Setup offset of the color index in the bitmap.
1139 * Color index of encoded run is at offset 1.
1140 */
1141 off = enc ? &enc_off : &i;
1142
1143 switch (VIDEO_DATA_FORMAT) {
1144 case GDF__8BIT_INDEX:
1145 for (i = 0; i < cnt; i++)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001146 *(unsigned char *) addr++ = bm[*off];
Anatolij Gustschind5011762010-03-15 14:50:25 +01001147 break;
1148 case GDF_15BIT_555RGB:
1149 case GDF_16BIT_565RGB:
1150 /* differences handled while pre-calculating palette */
1151 for (i = 0; i < cnt; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001152 *(unsigned short *) addr = p[bm[*off]].ce.w;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001153 addr += 2;
1154 }
1155 break;
1156 case GDF_32BIT_X888RGB:
1157 for (i = 0; i < cnt; i++) {
Andre Przywara1d4ed262017-03-06 01:13:38 +00001158 *(u32 *) addr = p[bm[*off]].ce.dw;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001159 addr += 4;
1160 }
1161 break;
1162 }
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001163 *fb = (uchar *) addr; /* return modified address */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001164}
1165
Simon Glass1c3dbe52015-05-13 07:02:27 -06001166static int display_rle8_bitmap(struct bmp_image *img, int xoff, int yoff,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001167 int width, int height)
Anatolij Gustschind5011762010-03-15 14:50:25 +01001168{
1169 unsigned char *bm;
1170 unsigned char *fbp;
1171 unsigned int cnt, runlen;
1172 int decode = 1;
1173 int x, y, bpp, i, ncolors;
1174 struct palette p[256];
Simon Glass1c3dbe52015-05-13 07:02:27 -06001175 struct bmp_color_table_entry cte;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001176 int green_shift, red_off;
Hans de Goedec67a8762015-08-04 12:15:39 +02001177 int limit = (VIDEO_LINE_LEN / VIDEO_PIXEL_SIZE) * VIDEO_ROWS;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001178 int pixels = 0;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001179
1180 x = 0;
1181 y = __le32_to_cpu(img->header.height) - 1;
1182 ncolors = __le32_to_cpu(img->header.colors_used);
1183 bpp = VIDEO_PIXEL_SIZE;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001184 fbp = (unsigned char *) ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001185 (y + yoff) * VIDEO_LINE_LEN +
1186 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001187
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001188 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001189
1190 /* pre-calculate and setup palette */
1191 switch (VIDEO_DATA_FORMAT) {
1192 case GDF__8BIT_INDEX:
1193 for (i = 0; i < ncolors; i++) {
1194 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001195 video_set_lut(i, cte.red, cte.green, cte.blue);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001196 }
1197 break;
1198 case GDF_15BIT_555RGB:
1199 case GDF_16BIT_565RGB:
1200 if (VIDEO_DATA_FORMAT == GDF_15BIT_555RGB) {
1201 green_shift = 3;
1202 red_off = 10;
1203 } else {
1204 green_shift = 2;
1205 red_off = 11;
1206 }
1207 for (i = 0; i < ncolors; i++) {
1208 cte = img->color_table[i];
1209 p[i].ce.w = SWAP16((unsigned short)
1210 (((cte.red >> 3) << red_off) |
1211 ((cte.green >> green_shift) << 5) |
1212 cte.blue >> 3));
1213 }
1214 break;
1215 case GDF_32BIT_X888RGB:
1216 for (i = 0; i < ncolors; i++) {
1217 cte = img->color_table[i];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001218 p[i].ce.dw = SWAP32((cte.red << 16) |
1219 (cte.green << 8) |
Anatolij Gustschind5011762010-03-15 14:50:25 +01001220 cte.blue);
1221 }
1222 break;
1223 default:
1224 printf("RLE Bitmap unsupported in video mode 0x%x\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001225 VIDEO_DATA_FORMAT);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001226 return -1;
1227 }
1228
1229 while (decode) {
1230 switch (bm[0]) {
1231 case 0:
1232 switch (bm[1]) {
1233 case 0:
1234 /* scan line end marker */
1235 bm += 2;
1236 x = 0;
1237 y--;
1238 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001239 ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001240 (y + yoff) * VIDEO_LINE_LEN +
1241 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001242 continue;
1243 case 1:
1244 /* end of bitmap data marker */
1245 decode = 0;
1246 break;
1247 case 2:
1248 /* run offset marker */
1249 x += bm[2];
1250 y -= bm[3];
1251 fbp = (unsigned char *)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001252 ((unsigned int) video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001253 (y + yoff) * VIDEO_LINE_LEN +
1254 xoff * bpp);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001255 bm += 4;
1256 break;
1257 default:
1258 /* unencoded run */
1259 cnt = bm[1];
1260 runlen = cnt;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001261 pixels += cnt;
1262 if (pixels > limit)
1263 goto error;
1264
Anatolij Gustschind5011762010-03-15 14:50:25 +01001265 bm += 2;
1266 if (y < height) {
1267 if (x >= width) {
1268 x += runlen;
1269 goto next_run;
1270 }
1271 if (x + runlen > width)
1272 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001273 draw_bitmap(&fbp, bm, p, cnt, 0);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001274 x += runlen;
1275 }
1276next_run:
1277 bm += runlen;
1278 if (runlen & 1)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001279 bm++; /* 0 padding if length is odd */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001280 }
1281 break;
1282 default:
1283 /* encoded run */
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001284 cnt = bm[0];
1285 runlen = cnt;
1286 pixels += cnt;
1287 if (pixels > limit)
1288 goto error;
1289
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001290 if (y < height) { /* only draw into visible area */
Anatolij Gustschind5011762010-03-15 14:50:25 +01001291 if (x >= width) {
1292 x += runlen;
1293 bm += 2;
1294 continue;
1295 }
1296 if (x + runlen > width)
1297 cnt = width - x;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001298 draw_bitmap(&fbp, bm, p, cnt, 1);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001299 x += runlen;
1300 }
1301 bm += 2;
1302 break;
1303 }
1304 }
Sébastien Szymanski47b11c82018-09-10 09:58:58 +02001305
1306 if (cfb_do_flush_cache)
1307 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
1308
Anatolij Gustschind5011762010-03-15 14:50:25 +01001309 return 0;
Anatolij Gustschin74446b62011-02-21 21:33:29 +01001310error:
1311 printf("Error: Too much encoded pixel data, validate your bitmap\n");
1312 return -1;
Anatolij Gustschind5011762010-03-15 14:50:25 +01001313}
1314#endif
1315
1316/*
wdenk4b248f32004-03-14 16:51:43 +00001317 * Display the BMP file located at address bmp_image.
wdenk4b248f32004-03-14 16:51:43 +00001318 */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001319int video_display_bitmap(ulong bmp_image, int x, int y)
wdenk4b248f32004-03-14 16:51:43 +00001320{
1321 ushort xcount, ycount;
1322 uchar *fb;
Simon Glass1c3dbe52015-05-13 07:02:27 -06001323 struct bmp_image *bmp = (struct bmp_image *)bmp_image;
wdenk4b248f32004-03-14 16:51:43 +00001324 uchar *bmap;
1325 ushort padded_line;
1326 unsigned long width, height, bpp;
1327 unsigned colors;
1328 unsigned long compression;
Simon Glass1c3dbe52015-05-13 07:02:27 -06001329 struct bmp_color_table_entry cte;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001330
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001331#ifdef CONFIG_VIDEO_BMP_GZIP
1332 unsigned char *dst = NULL;
1333 ulong len;
1334#endif
wdenk4b248f32004-03-14 16:51:43 +00001335
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001336 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001337
1338 if (!((bmp->header.signature[0] == 'B') &&
1339 (bmp->header.signature[1] == 'M'))) {
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001340
1341#ifdef CONFIG_VIDEO_BMP_GZIP
1342 /*
1343 * Could be a gzipped bmp image, try to decrompress...
1344 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001345 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
1346 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001347 if (dst == NULL) {
1348 printf("Error: malloc in gunzip failed!\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001349 return 1;
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001350 }
Eric Nelson5ca05c82014-03-08 07:55:52 -07001351 /*
1352 * NB: we need to force offset of +2
1353 * See doc/README.displaying-bmps
1354 */
1355 if (gunzip(dst+2, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE-2,
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001356 (uchar *) bmp_image,
1357 &len) != 0) {
1358 printf("Error: no valid bmp or bmp.gz image at %lx\n",
1359 bmp_image);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001360 free(dst);
1361 return 1;
1362 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001363 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001364 printf("Image could be truncated "
1365 "(increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Stefan Roesec29ab9d2005-10-08 10:19:07 +02001366 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001367
1368 /*
1369 * Set addr to decompressed image
1370 */
Simon Glass1c3dbe52015-05-13 07:02:27 -06001371 bmp = (struct bmp_image *)(dst+2);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001372
1373 if (!((bmp->header.signature[0] == 'B') &&
1374 (bmp->header.signature[1] == 'M'))) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001375 printf("Error: no valid bmp.gz image at %lx\n",
1376 bmp_image);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001377 free(dst);
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001378 return 1;
1379 }
1380#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001381 printf("Error: no valid bmp image at %lx\n", bmp_image);
wdenk4b248f32004-03-14 16:51:43 +00001382 return 1;
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001383#endif /* CONFIG_VIDEO_BMP_GZIP */
wdenk4b248f32004-03-14 16:51:43 +00001384 }
1385
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001386 width = le32_to_cpu(bmp->header.width);
1387 height = le32_to_cpu(bmp->header.height);
1388 bpp = le16_to_cpu(bmp->header.bit_count);
1389 colors = le32_to_cpu(bmp->header.colors_used);
1390 compression = le32_to_cpu(bmp->header.compression);
wdenk4b248f32004-03-14 16:51:43 +00001391
Marek Vasut68da5b12011-10-21 14:17:04 +00001392 debug("Display-bmp: %ld x %ld with %d colors\n",
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001393 width, height, colors);
wdenk4b248f32004-03-14 16:51:43 +00001394
Anatolij Gustschind5011762010-03-15 14:50:25 +01001395 if (compression != BMP_BI_RGB
1396#ifdef CONFIG_VIDEO_BMP_RLE8
1397 && compression != BMP_BI_RLE8
1398#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001399 ) {
1400 printf("Error: compression type %ld not supported\n",
1401 compression);
Matthias Fuchsa49e0d12008-04-21 11:19:04 +02001402#ifdef CONFIG_VIDEO_BMP_GZIP
1403 if (dst)
1404 free(dst);
1405#endif
wdenk4b248f32004-03-14 16:51:43 +00001406 return 1;
1407 }
1408
1409 padded_line = (((width * bpp + 7) / 8) + 3) & ~0x3;
1410
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001411#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1412 if (x == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001413 x = max(0, (int)(VIDEO_VISIBLE_COLS - width) / 2);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001414 else if (x < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001415 x = max(0, (int)(VIDEO_VISIBLE_COLS - width + x + 1));
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001416
1417 if (y == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001418 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height) / 2);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001419 else if (y < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001420 y = max(0, (int)(VIDEO_VISIBLE_ROWS - height + y + 1));
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001421#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1422
Matthias Weisseracf3baa2013-02-15 03:35:12 +00001423 /*
1424 * Just ignore elements which are completely beyond screen
1425 * dimensions.
1426 */
1427 if ((x >= VIDEO_VISIBLE_COLS) || (y >= VIDEO_VISIBLE_ROWS))
1428 return 0;
1429
wdenk4b248f32004-03-14 16:51:43 +00001430 if ((x + width) > VIDEO_VISIBLE_COLS)
1431 width = VIDEO_VISIBLE_COLS - x;
1432 if ((y + height) > VIDEO_VISIBLE_ROWS)
1433 height = VIDEO_VISIBLE_ROWS - y;
1434
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001435 bmap = (uchar *) bmp + le32_to_cpu(bmp->header.data_offset);
wdenk4b248f32004-03-14 16:51:43 +00001436 fb = (uchar *) (video_fb_address +
Hans de Goedec67a8762015-08-04 12:15:39 +02001437 ((y + height - 1) * VIDEO_LINE_LEN) +
wdenk4b248f32004-03-14 16:51:43 +00001438 x * VIDEO_PIXEL_SIZE);
1439
Anatolij Gustschind5011762010-03-15 14:50:25 +01001440#ifdef CONFIG_VIDEO_BMP_RLE8
1441 if (compression == BMP_BI_RLE8) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001442 return display_rle8_bitmap(bmp, x, y, width, height);
Anatolij Gustschind5011762010-03-15 14:50:25 +01001443 }
1444#endif
1445
Timur Tabi68f66182010-08-23 16:58:00 -05001446 /* We handle only 4, 8, or 24 bpp bitmaps */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001447 switch (le16_to_cpu(bmp->header.bit_count)) {
Timur Tabi68f66182010-08-23 16:58:00 -05001448 case 4:
1449 padded_line -= width / 2;
1450 ycount = height;
1451
1452 switch (VIDEO_DATA_FORMAT) {
1453 case GDF_32BIT_X888RGB:
1454 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001455 WATCHDOG_RESET();
Timur Tabi68f66182010-08-23 16:58:00 -05001456 /*
1457 * Don't assume that 'width' is an
1458 * even number
1459 */
1460 for (xcount = 0; xcount < width; xcount++) {
1461 uchar idx;
1462
1463 if (xcount & 1) {
1464 idx = *bmap & 0xF;
1465 bmap++;
1466 } else
1467 idx = *bmap >> 4;
1468 cte = bmp->color_table[idx];
1469 FILL_32BIT_X888RGB(cte.red, cte.green,
1470 cte.blue);
1471 }
1472 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001473 fb -= VIDEO_LINE_LEN + width *
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001474 VIDEO_PIXEL_SIZE;
Timur Tabi68f66182010-08-23 16:58:00 -05001475 }
1476 break;
1477 default:
1478 puts("4bpp bitmap unsupported with current "
1479 "video mode\n");
1480 break;
1481 }
1482 break;
1483
wdenk4b248f32004-03-14 16:51:43 +00001484 case 8:
1485 padded_line -= width;
1486 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001487 /* Copy colormap */
wdenk4b248f32004-03-14 16:51:43 +00001488 for (xcount = 0; xcount < colors; ++xcount) {
1489 cte = bmp->color_table[xcount];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001490 video_set_lut(xcount, cte.red, cte.green,
1491 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001492 }
1493 }
1494 ycount = height;
1495 switch (VIDEO_DATA_FORMAT) {
1496 case GDF__8BIT_INDEX:
1497 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001498 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001499 xcount = width;
1500 while (xcount--) {
1501 *fb++ = *bmap++;
1502 }
1503 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001504 fb -= VIDEO_LINE_LEN + width *
1505 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001506 }
1507 break;
1508 case GDF__8BIT_332RGB:
1509 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001510 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001511 xcount = width;
1512 while (xcount--) {
1513 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001514 FILL_8BIT_332RGB(cte.red, cte.green,
1515 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001516 }
1517 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001518 fb -= VIDEO_LINE_LEN + width *
1519 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001520 }
1521 break;
1522 case GDF_15BIT_555RGB:
1523 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001524#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1525 int xpos = x;
1526#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001527 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001528 xcount = width;
1529 while (xcount--) {
1530 cte = bmp->color_table[*bmap++];
Andrew Dyercc347802008-08-29 12:30:39 -05001531#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001532 fill_555rgb_pswap(fb, xpos++, cte.red,
1533 cte.green,
1534 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001535 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001536#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001537 FILL_15BIT_555RGB(cte.red, cte.green,
1538 cte.blue);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001539#endif
wdenk4b248f32004-03-14 16:51:43 +00001540 }
1541 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001542 fb -= VIDEO_LINE_LEN + width *
1543 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001544 }
1545 break;
1546 case GDF_16BIT_565RGB:
1547 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001548 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001549 xcount = width;
1550 while (xcount--) {
1551 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001552 FILL_16BIT_565RGB(cte.red, cte.green,
1553 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001554 }
1555 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001556 fb -= VIDEO_LINE_LEN + width *
1557 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001558 }
1559 break;
1560 case GDF_32BIT_X888RGB:
1561 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001562 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001563 xcount = width;
1564 while (xcount--) {
1565 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001566 FILL_32BIT_X888RGB(cte.red, cte.green,
1567 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001568 }
1569 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001570 fb -= VIDEO_LINE_LEN + width *
1571 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001572 }
1573 break;
1574 case GDF_24BIT_888RGB:
1575 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001576 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001577 xcount = width;
1578 while (xcount--) {
1579 cte = bmp->color_table[*bmap++];
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001580 FILL_24BIT_888RGB(cte.red, cte.green,
1581 cte.blue);
wdenk4b248f32004-03-14 16:51:43 +00001582 }
1583 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001584 fb -= VIDEO_LINE_LEN + width *
1585 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001586 }
1587 break;
1588 }
1589 break;
1590 case 24:
1591 padded_line -= 3 * width;
1592 ycount = height;
1593 switch (VIDEO_DATA_FORMAT) {
1594 case GDF__8BIT_332RGB:
1595 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001596 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001597 xcount = width;
1598 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001599 FILL_8BIT_332RGB(bmap[2], bmap[1],
1600 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001601 bmap += 3;
1602 }
1603 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001604 fb -= VIDEO_LINE_LEN + width *
1605 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001606 }
1607 break;
1608 case GDF_15BIT_555RGB:
1609 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001610#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1611 int xpos = x;
1612#endif
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001613 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001614 xcount = width;
1615 while (xcount--) {
Andrew Dyercc347802008-08-29 12:30:39 -05001616#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001617 fill_555rgb_pswap(fb, xpos++, bmap[2],
1618 bmap[1], bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001619 fb += 2;
Andrew Dyercc347802008-08-29 12:30:39 -05001620#else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001621 FILL_15BIT_555RGB(bmap[2], bmap[1],
1622 bmap[0]);
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001623#endif
wdenk4b248f32004-03-14 16:51:43 +00001624 bmap += 3;
1625 }
1626 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001627 fb -= VIDEO_LINE_LEN + width *
1628 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001629 }
1630 break;
1631 case GDF_16BIT_565RGB:
1632 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001633 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001634 xcount = width;
1635 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001636 FILL_16BIT_565RGB(bmap[2], bmap[1],
1637 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001638 bmap += 3;
1639 }
1640 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001641 fb -= VIDEO_LINE_LEN + width *
1642 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001643 }
1644 break;
1645 case GDF_32BIT_X888RGB:
1646 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001647 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001648 xcount = width;
1649 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001650 FILL_32BIT_X888RGB(bmap[2], bmap[1],
1651 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001652 bmap += 3;
1653 }
1654 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001655 fb -= VIDEO_LINE_LEN + width *
1656 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001657 }
1658 break;
1659 case GDF_24BIT_888RGB:
1660 while (ycount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001661 WATCHDOG_RESET();
wdenk4b248f32004-03-14 16:51:43 +00001662 xcount = width;
1663 while (xcount--) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001664 FILL_24BIT_888RGB(bmap[2], bmap[1],
1665 bmap[0]);
wdenk4b248f32004-03-14 16:51:43 +00001666 bmap += 3;
1667 }
1668 bmap += padded_line;
Hans de Goedec67a8762015-08-04 12:15:39 +02001669 fb -= VIDEO_LINE_LEN + width *
1670 VIDEO_PIXEL_SIZE;
wdenk4b248f32004-03-14 16:51:43 +00001671 }
1672 break;
1673 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001674 printf("Error: 24 bits/pixel bitmap incompatible "
1675 "with current video mode\n");
wdenk4b248f32004-03-14 16:51:43 +00001676 break;
1677 }
1678 break;
1679 default:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001680 printf("Error: %d bit/pixel bitmaps not supported by U-Boot\n",
1681 le16_to_cpu(bmp->header.bit_count));
wdenk4b248f32004-03-14 16:51:43 +00001682 break;
1683 }
Stefan Roese98f4a3d2005-09-22 09:04:17 +02001684
1685#ifdef CONFIG_VIDEO_BMP_GZIP
1686 if (dst) {
1687 free(dst);
1688 }
1689#endif
1690
Eric Nelsondb0d47d2013-05-06 14:27:28 +02001691 if (cfb_do_flush_cache)
1692 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
wdenk4b248f32004-03-14 16:51:43 +00001693 return (0);
1694}
Jon Loeliger07d38a12007-07-09 17:30:01 -05001695#endif
wdenk4b248f32004-03-14 16:51:43 +00001696
wdenk4b248f32004-03-14 16:51:43 +00001697
wdenkc6097192002-11-03 00:24:07 +00001698#ifdef CONFIG_VIDEO_LOGO
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001699static int video_logo_xpos;
1700static int video_logo_ypos;
1701
Hans de Goedec4c9e812015-08-04 12:21:40 +02001702static void plot_logo_or_black(void *screen, int x, int y, int black);
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001703
Hans de Goedec4c9e812015-08-04 12:21:40 +02001704static void logo_plot(void *screen, int x, int y)
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001705{
Hans de Goedec4c9e812015-08-04 12:21:40 +02001706 plot_logo_or_black(screen, x, y, 0);
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001707}
1708
1709static void logo_black(void)
1710{
Hans de Goedec4c9e812015-08-04 12:21:40 +02001711 plot_logo_or_black(video_fb_address, video_logo_xpos, video_logo_ypos,
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001712 1);
1713}
1714
Simon Glass09140112020-05-10 11:40:03 -06001715static int do_clrlogo(struct cmd_tbl *cmdtp, int flag, int argc,
1716 char *const argv[])
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001717{
1718 if (argc != 1)
1719 return cmd_usage(cmdtp);
1720
1721 logo_black();
1722 return 0;
1723}
1724
1725U_BOOT_CMD(
1726 clrlogo, 1, 0, do_clrlogo,
1727 "fill the boot logo area with black",
1728 " "
1729 );
1730
Hans de Goedec4c9e812015-08-04 12:21:40 +02001731static void plot_logo_or_black(void *screen, int x, int y, int black)
wdenkc6097192002-11-03 00:24:07 +00001732{
wdenkc6097192002-11-03 00:24:07 +00001733
wdenk4b248f32004-03-14 16:51:43 +00001734 int xcount, i;
Hans de Goedec67a8762015-08-04 12:15:39 +02001735 int skip = VIDEO_LINE_LEN - VIDEO_LOGO_WIDTH * VIDEO_PIXEL_SIZE;
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001736 int ycount = video_logo_height;
wdenk4b248f32004-03-14 16:51:43 +00001737 unsigned char r, g, b, *logo_red, *logo_blue, *logo_green;
1738 unsigned char *source;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001739 unsigned char *dest;
1740
1741#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1742 if (x == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001743 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH) / 2);
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001744 else if (x < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001745 x = max(0, (int)(VIDEO_VISIBLE_COLS - VIDEO_LOGO_WIDTH + x + 1));
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001746
1747 if (y == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001748 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT) / 2);
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001749 else if (y < 0)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001750 y = max(0, (int)(VIDEO_VISIBLE_ROWS - VIDEO_LOGO_HEIGHT + y + 1));
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001751#endif /* CONFIG_SPLASH_SCREEN_ALIGN */
1752
Hans de Goedec67a8762015-08-04 12:15:39 +02001753 dest = (unsigned char *)screen + y * VIDEO_LINE_LEN + x * VIDEO_PIXEL_SIZE;
wdenka6c7ad22002-12-03 21:28:10 +00001754
1755#ifdef CONFIG_VIDEO_BMP_LOGO
wdenk4b248f32004-03-14 16:51:43 +00001756 source = bmp_logo_bitmap;
wdenk8bde7f72003-06-27 21:31:46 +00001757
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001758 /* Allocate temporary space for computing colormap */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001759 logo_red = malloc(BMP_LOGO_COLORS);
1760 logo_green = malloc(BMP_LOGO_COLORS);
1761 logo_blue = malloc(BMP_LOGO_COLORS);
Anatolij Gustschin7c050f82010-06-19 20:41:56 +02001762 /* Compute color map */
wdenk4b248f32004-03-14 16:51:43 +00001763 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
1764 logo_red[i] = (bmp_logo_palette[i] & 0x0f00) >> 4;
1765 logo_green[i] = (bmp_logo_palette[i] & 0x00f0);
1766 logo_blue[i] = (bmp_logo_palette[i] & 0x000f) << 4;
1767 }
wdenka6c7ad22002-12-03 21:28:10 +00001768#else
wdenk4b248f32004-03-14 16:51:43 +00001769 source = linux_logo;
1770 logo_red = linux_logo_red;
1771 logo_green = linux_logo_green;
1772 logo_blue = linux_logo_blue;
wdenka6c7ad22002-12-03 21:28:10 +00001773#endif
wdenk8bde7f72003-06-27 21:31:46 +00001774
wdenk4b248f32004-03-14 16:51:43 +00001775 if (VIDEO_DATA_FORMAT == GDF__8BIT_INDEX) {
1776 for (i = 0; i < VIDEO_LOGO_COLORS; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001777 video_set_lut(i + VIDEO_LOGO_LUT_OFFSET,
1778 logo_red[i], logo_green[i],
1779 logo_blue[i]);
wdenk4b248f32004-03-14 16:51:43 +00001780 }
wdenk8bde7f72003-06-27 21:31:46 +00001781 }
wdenkc6097192002-11-03 00:24:07 +00001782
wdenk4b248f32004-03-14 16:51:43 +00001783 while (ycount--) {
Anatolij Gustschine84d5682008-08-08 18:00:40 +02001784#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
1785 int xpos = x;
1786#endif
wdenk4b248f32004-03-14 16:51:43 +00001787 xcount = VIDEO_LOGO_WIDTH;
1788 while (xcount--) {
Bastian Ruppert4b7d3a02012-09-13 22:29:02 +00001789 if (black) {
1790 r = 0x00;
1791 g = 0x00;
1792 b = 0x00;
1793 } else {
1794 r = logo_red[*source - VIDEO_LOGO_LUT_OFFSET];
1795 g = logo_green[*source - VIDEO_LOGO_LUT_OFFSET];
1796 b = logo_blue[*source - VIDEO_LOGO_LUT_OFFSET];
1797 }
wdenk8bde7f72003-06-27 21:31:46 +00001798
wdenk4b248f32004-03-14 16:51:43 +00001799 switch (VIDEO_DATA_FORMAT) {
1800 case GDF__8BIT_INDEX:
1801 *dest = *source;
1802 break;
1803 case GDF__8BIT_332RGB:
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001804 *dest = ((r >> 5) << 5) |
1805 ((g >> 5) << 2) |
1806 (b >> 6);
wdenk4b248f32004-03-14 16:51:43 +00001807 break;
1808 case GDF_15BIT_555RGB:
Andrew Dyercc347802008-08-29 12:30:39 -05001809#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001810 fill_555rgb_pswap(dest, xpos++, r, g, b);
Andrew Dyercc347802008-08-29 12:30:39 -05001811#else
wdenk4b248f32004-03-14 16:51:43 +00001812 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001813 SWAP16((unsigned short) (
1814 ((r >> 3) << 10) |
1815 ((g >> 3) << 5) |
1816 (b >> 3)));
Anatolij Gustschinbed53752008-01-11 14:30:01 +01001817#endif
wdenk4b248f32004-03-14 16:51:43 +00001818 break;
1819 case GDF_16BIT_565RGB:
1820 *(unsigned short *) dest =
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001821 SWAP16((unsigned short) (
1822 ((r >> 3) << 11) |
1823 ((g >> 2) << 5) |
1824 (b >> 3)));
wdenk4b248f32004-03-14 16:51:43 +00001825 break;
1826 case GDF_32BIT_X888RGB:
Andre Przywara1d4ed262017-03-06 01:13:38 +00001827 *(u32 *) dest =
1828 SWAP32((u32) (
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001829 (r << 16) |
1830 (g << 8) |
1831 b));
wdenk4b248f32004-03-14 16:51:43 +00001832 break;
1833 case GDF_24BIT_888RGB:
wdenkc6097192002-11-03 00:24:07 +00001834#ifdef VIDEO_FB_LITTLE_ENDIAN
wdenk4b248f32004-03-14 16:51:43 +00001835 dest[0] = b;
1836 dest[1] = g;
1837 dest[2] = r;
wdenkc6097192002-11-03 00:24:07 +00001838#else
wdenk4b248f32004-03-14 16:51:43 +00001839 dest[0] = r;
1840 dest[1] = g;
1841 dest[2] = b;
wdenkc6097192002-11-03 00:24:07 +00001842#endif
wdenk4b248f32004-03-14 16:51:43 +00001843 break;
1844 }
1845 source++;
1846 dest += VIDEO_PIXEL_SIZE;
1847 }
1848 dest += skip;
wdenk8bde7f72003-06-27 21:31:46 +00001849 }
wdenka6c7ad22002-12-03 21:28:10 +00001850#ifdef CONFIG_VIDEO_BMP_LOGO
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001851 free(logo_red);
1852 free(logo_green);
1853 free(logo_blue);
wdenka6c7ad22002-12-03 21:28:10 +00001854#endif
wdenkc6097192002-11-03 00:24:07 +00001855}
1856
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001857static void *video_logo(void)
wdenkc6097192002-11-03 00:24:07 +00001858{
wdenk4b248f32004-03-14 16:51:43 +00001859 char info[128];
Wolfgang Denka9a62af2011-11-04 15:55:20 +00001860 __maybe_unused int y_off = 0;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001861 __maybe_unused ulong addr;
1862 __maybe_unused char *s;
Anatolij Gustschinb4fc6f22016-11-30 14:30:59 +01001863 __maybe_unused int len, ret, space;
wdenkc6097192002-11-03 00:24:07 +00001864
Anatolij Gustschinff8fb562013-07-02 00:04:05 +02001865 splash_get_pos(&video_logo_xpos, &video_logo_ypos);
Matthias Weisser1ca298c2009-07-09 16:07:30 +02001866
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001867#ifdef CONFIG_SPLASH_SCREEN
Simon Glass00caae62017-08-03 12:22:12 -06001868 s = env_get("splashimage");
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001869 if (s != NULL) {
Anatolij Gustschinb4fc6f22016-11-30 14:30:59 +01001870 ret = splash_screen_prepare();
1871 if (ret < 0)
1872 return video_fb_address;
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001873 addr = simple_strtoul(s, NULL, 16);
1874
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001875 if (video_display_bitmap(addr,
1876 video_logo_xpos,
1877 video_logo_ypos) == 0) {
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001878 video_logo_height = 0;
wdenk4b248f32004-03-14 16:51:43 +00001879 return ((void *) (video_fb_address));
1880 }
1881 }
1882#endif /* CONFIG_SPLASH_SCREEN */
1883
Hans de Goedec4c9e812015-08-04 12:21:40 +02001884 logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001885
1886#ifdef CONFIG_SPLASH_SCREEN_ALIGN
1887 /*
1888 * when using splashpos for video_logo, skip any info
1889 * output on video console if the logo is not at 0,0
1890 */
1891 if (video_logo_xpos || video_logo_ypos) {
1892 /*
1893 * video_logo_height is used in text and cursor offset
1894 * calculations. Since the console is below the logo,
1895 * we need to adjust the logo height
1896 */
1897 if (video_logo_ypos == BMP_ALIGN_CENTER)
Masahiro Yamadab4141192014-11-07 03:03:31 +09001898 video_logo_height += max(0, (int)(VIDEO_VISIBLE_ROWS -
Bastian Ruppert1e681f92012-09-13 22:29:01 +00001899 VIDEO_LOGO_HEIGHT) / 2);
1900 else if (video_logo_ypos > 0)
1901 video_logo_height += video_logo_ypos;
1902
1903 return video_fb_address + video_logo_height * VIDEO_LINE_LEN;
1904 }
1905#endif
Heiko Schocher2bc4aa52013-08-03 07:22:53 +02001906 if (board_cfb_skip())
1907 return 0;
wdenk4b248f32004-03-14 16:51:43 +00001908
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001909 sprintf(info, " %s", version_string);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001910
Tim Harveyadde4352016-05-24 14:59:59 -07001911#ifndef CONFIG_HIDE_LOGO_VERSION
Peng Fanf9d891f2018-01-02 15:25:37 +08001912 space = (VIDEO_COLS - VIDEO_INFO_X) / VIDEO_FONT_WIDTH;
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001913 len = strlen(info);
1914
1915 if (len > space) {
Peng Fanf9d891f2018-01-02 15:25:37 +08001916 int xx = VIDEO_INFO_X, yy = VIDEO_INFO_Y;
1917 uchar *p = (uchar *) info;
1918
1919 while (len) {
1920 if (len > space) {
1921 video_drawchars(xx, yy, p, space);
1922 len -= space;
1923
1924 p = (uchar *)p + space;
1925
1926 if (!y_off) {
1927 xx += VIDEO_FONT_WIDTH;
1928 space--;
1929 }
1930 yy += VIDEO_FONT_HEIGHT;
1931
1932 y_off++;
1933 } else {
1934 video_drawchars(xx, yy, p, len);
1935 len = 0;
1936 }
1937 }
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001938 } else
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001939 video_drawstring(VIDEO_INFO_X, VIDEO_INFO_Y, (uchar *) info);
wdenkc6097192002-11-03 00:24:07 +00001940
1941#ifdef CONFIG_CONSOLE_EXTRA_INFO
wdenk4b248f32004-03-14 16:51:43 +00001942 {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001943 int i, n =
1944 ((video_logo_height -
1945 VIDEO_FONT_HEIGHT) / VIDEO_FONT_HEIGHT);
wdenkc6097192002-11-03 00:24:07 +00001946
wdenk4b248f32004-03-14 16:51:43 +00001947 for (i = 1; i < n; i++) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001948 video_get_info_str(i, info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001949 if (!*info)
1950 continue;
1951
1952 len = strlen(info);
1953 if (len > space) {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001954 video_drawchars(VIDEO_INFO_X,
1955 VIDEO_INFO_Y +
1956 (i + y_off) *
1957 VIDEO_FONT_HEIGHT,
1958 (uchar *) info, space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001959 y_off++;
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001960 video_drawchars(VIDEO_INFO_X +
1961 VIDEO_FONT_WIDTH,
1962 VIDEO_INFO_Y +
1963 (i + y_off) *
1964 VIDEO_FONT_HEIGHT,
1965 (uchar *) info + space,
1966 len - space);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001967 } else {
Wolfgang Denk64e40d72011-07-29 09:55:27 +00001968 video_drawstring(VIDEO_INFO_X,
1969 VIDEO_INFO_Y +
1970 (i + y_off) *
1971 VIDEO_FONT_HEIGHT,
1972 (uchar *) info);
Anatolij Gustschin3dcbe622009-04-23 12:35:22 +02001973 }
wdenk4b248f32004-03-14 16:51:43 +00001974 }
1975 }
wdenkc6097192002-11-03 00:24:07 +00001976#endif
Tim Harveyadde4352016-05-24 14:59:59 -07001977#endif
wdenkc6097192002-11-03 00:24:07 +00001978
Matthias Weisserbe129aa2010-01-12 12:06:31 +01001979 return (video_fb_address + video_logo_height * VIDEO_LINE_LEN);
wdenkc6097192002-11-03 00:24:07 +00001980}
1981#endif
1982
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001983static int cfb_fb_is_in_dram(void)
1984{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001985 struct bd_info *bd = gd->bd;
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001986 ulong start, end;
1987 int i;
1988
1989 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
1990 start = bd->bi_dram[i].start;
1991 end = bd->bi_dram[i].start + bd->bi_dram[i].size - 1;
1992 if ((ulong)video_fb_address >= start &&
1993 (ulong)video_fb_address < end)
1994 return 1;
1995 }
Stefan Roese063d5472020-08-12 13:32:41 +02001996
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02001997 return 0;
1998}
1999
Heiko Schocher45ae2542013-10-22 11:06:06 +02002000void video_clear(void)
2001{
2002 if (!video_fb_address)
2003 return;
2004#ifdef VIDEO_HW_RECTFILL
2005 video_hw_rectfill(VIDEO_PIXEL_SIZE, /* bytes per pixel */
2006 0, /* dest pos x */
2007 0, /* dest pos y */
2008 VIDEO_VISIBLE_COLS, /* frame width */
2009 VIDEO_VISIBLE_ROWS, /* frame height */
2010 bgx /* fill color */
2011 );
2012#else
2013 memsetl(video_fb_address,
2014 (VIDEO_VISIBLE_ROWS * VIDEO_LINE_LEN) / sizeof(int), bgx);
2015#endif
2016}
2017
Simon Glass0a6eac82016-10-17 20:12:54 -06002018static int cfg_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002019{
wdenk4b248f32004-03-14 16:51:43 +00002020 unsigned char color8;
wdenkc6097192002-11-03 00:24:07 +00002021
Wolfgang Denk57912932011-07-30 12:48:09 +00002022 pGD = video_hw_init();
2023 if (pGD == NULL)
wdenk4b248f32004-03-14 16:51:43 +00002024 return -1;
wdenkc6097192002-11-03 00:24:07 +00002025
wdenk4b248f32004-03-14 16:51:43 +00002026 video_fb_address = (void *) VIDEO_FB_ADRS;
wdenkc6097192002-11-03 00:24:07 +00002027
Anatolij Gustschinbfd4be82012-06-05 09:19:18 +02002028 cfb_do_flush_cache = cfb_fb_is_in_dram() && dcache_status();
2029
wdenk4b248f32004-03-14 16:51:43 +00002030 /* Init drawing pats */
2031 switch (VIDEO_DATA_FORMAT) {
2032 case GDF__8BIT_INDEX:
Simon Glass002f9672016-10-17 20:12:44 -06002033 video_set_lut(0x01, CONFIG_SYS_CONSOLE_FG_COL,
2034 CONFIG_SYS_CONSOLE_FG_COL,
2035 CONFIG_SYS_CONSOLE_FG_COL);
2036 video_set_lut(0x00, CONFIG_SYS_CONSOLE_BG_COL,
2037 CONFIG_SYS_CONSOLE_BG_COL,
2038 CONFIG_SYS_CONSOLE_BG_COL);
wdenk4b248f32004-03-14 16:51:43 +00002039 fgx = 0x01010101;
2040 bgx = 0x00000000;
2041 break;
2042 case GDF__8BIT_332RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002043 color8 = ((CONFIG_SYS_CONSOLE_FG_COL & 0xe0) |
2044 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) & 0x1c) |
2045 CONFIG_SYS_CONSOLE_FG_COL >> 6);
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002046 fgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2047 color8;
Simon Glass002f9672016-10-17 20:12:44 -06002048 color8 = ((CONFIG_SYS_CONSOLE_BG_COL & 0xe0) |
2049 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) & 0x1c) |
2050 CONFIG_SYS_CONSOLE_BG_COL >> 6);
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002051 bgx = (color8 << 24) | (color8 << 16) | (color8 << 8) |
2052 color8;
wdenk4b248f32004-03-14 16:51:43 +00002053 break;
2054 case GDF_15BIT_555RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002055 fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 26) |
2056 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 21) |
2057 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2058 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 10) |
2059 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 5) |
2060 (CONFIG_SYS_CONSOLE_FG_COL >> 3));
2061 bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 26) |
2062 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 21) |
2063 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2064 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 10) |
2065 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 5) |
2066 (CONFIG_SYS_CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002067 break;
2068 case GDF_16BIT_565RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002069 fgx = (((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 27) |
2070 ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 21) |
2071 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 16) |
2072 ((CONFIG_SYS_CONSOLE_FG_COL >> 3) << 11) |
2073 ((CONFIG_SYS_CONSOLE_FG_COL >> 2) << 5) |
2074 (CONFIG_SYS_CONSOLE_FG_COL >> 3));
2075 bgx = (((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 27) |
2076 ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 21) |
2077 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 16) |
2078 ((CONFIG_SYS_CONSOLE_BG_COL >> 3) << 11) |
2079 ((CONFIG_SYS_CONSOLE_BG_COL >> 2) << 5) |
2080 (CONFIG_SYS_CONSOLE_BG_COL >> 3));
wdenk4b248f32004-03-14 16:51:43 +00002081 break;
2082 case GDF_32BIT_X888RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002083 fgx = (CONFIG_SYS_CONSOLE_FG_COL << 16) |
2084 (CONFIG_SYS_CONSOLE_FG_COL << 8) |
2085 CONFIG_SYS_CONSOLE_FG_COL;
2086 bgx = (CONFIG_SYS_CONSOLE_BG_COL << 16) |
2087 (CONFIG_SYS_CONSOLE_BG_COL << 8) |
2088 CONFIG_SYS_CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002089 break;
2090 case GDF_24BIT_888RGB:
Simon Glass002f9672016-10-17 20:12:44 -06002091 fgx = (CONFIG_SYS_CONSOLE_FG_COL << 24) |
2092 (CONFIG_SYS_CONSOLE_FG_COL << 16) |
2093 (CONFIG_SYS_CONSOLE_FG_COL << 8) |
2094 CONFIG_SYS_CONSOLE_FG_COL;
2095 bgx = (CONFIG_SYS_CONSOLE_BG_COL << 24) |
2096 (CONFIG_SYS_CONSOLE_BG_COL << 16) |
2097 (CONFIG_SYS_CONSOLE_BG_COL << 8) |
2098 CONFIG_SYS_CONSOLE_BG_COL;
wdenk4b248f32004-03-14 16:51:43 +00002099 break;
2100 }
2101 eorx = fgx ^ bgx;
wdenkc6097192002-11-03 00:24:07 +00002102
Rob Clark8ef05352017-08-03 12:47:01 -04002103 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
2104 video_clear();
Heiko Schocher45ae2542013-10-22 11:06:06 +02002105
wdenkc6097192002-11-03 00:24:07 +00002106#ifdef CONFIG_VIDEO_LOGO
wdenk4b248f32004-03-14 16:51:43 +00002107 /* Plot the logo and get start point of console */
Wolfgang Denk72c65f62011-07-29 09:55:28 +00002108 debug("Video: Drawing the logo ...\n");
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002109 video_console_address = video_logo();
wdenkc6097192002-11-03 00:24:07 +00002110#else
wdenk4b248f32004-03-14 16:51:43 +00002111 video_console_address = video_fb_address;
wdenkc6097192002-11-03 00:24:07 +00002112#endif
2113
wdenk4b248f32004-03-14 16:51:43 +00002114 /* Initialize the console */
2115 console_col = 0;
2116 console_row = 0;
wdenkc6097192002-11-03 00:24:07 +00002117
Eric Nelsondb0d47d2013-05-06 14:27:28 +02002118 if (cfb_do_flush_cache)
2119 flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE);
2120
wdenk4b248f32004-03-14 16:51:43 +00002121 return 0;
wdenkc6097192002-11-03 00:24:07 +00002122}
2123
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002124/*
2125 * Implement a weak default function for boards that optionally
2126 * need to skip the video initialization.
2127 */
Jeroen Hofstee69d27542014-10-08 22:57:30 +02002128__weak int board_video_skip(void)
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002129{
2130 /* As default, don't skip test */
2131 return 0;
2132}
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002133
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002134int drv_video_init(void)
wdenkc6097192002-11-03 00:24:07 +00002135{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +02002136 struct stdio_dev console_dev;
Simon Glass5692ccf2015-03-02 12:40:50 -07002137 bool have_keyboard;
Bin Meng8ceb2422015-08-24 01:00:07 -07002138 bool __maybe_unused keyboard_ok = false;
wdenkc6097192002-11-03 00:24:07 +00002139
Wolfgang Denk6cc7ba92009-05-15 10:07:43 +02002140 /* Check if video initialization should be skipped */
2141 if (board_video_skip())
2142 return 0;
2143
wdenk81050922004-07-11 20:04:51 +00002144 /* Init video chip - returns with framebuffer cleared */
Simon Glass0a6eac82016-10-17 20:12:54 -06002145 if (cfg_video_init() == -1)
Bin Meng8ceb2422015-08-24 01:00:07 -07002146 return 0;
wdenk81050922004-07-11 20:04:51 +00002147
Heiko Schocher2bc4aa52013-08-03 07:22:53 +02002148 if (board_cfb_skip())
2149 return 0;
2150
Simon Glass5692ccf2015-03-02 12:40:50 -07002151#if defined(CONFIG_VGA_AS_SINGLE_DEVICE)
2152 have_keyboard = false;
2153#elif defined(CONFIG_OF_CONTROL)
2154 have_keyboard = !fdtdec_get_config_bool(gd->fdt_blob,
2155 "u-boot,no-keyboard");
2156#else
2157 have_keyboard = true;
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002158#endif
Simon Glass5692ccf2015-03-02 12:40:50 -07002159 if (have_keyboard) {
2160 debug("KBD: Keyboard init ...\n");
2161#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Bin Meng8ceb2422015-08-24 01:00:07 -07002162 keyboard_ok = !(VIDEO_KBD_INIT_FCT == -1);
Simon Glass5692ccf2015-03-02 12:40:50 -07002163#endif
2164 }
wdenkc6097192002-11-03 00:24:07 +00002165
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002166 /* Init vga device */
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002167 memset(&console_dev, 0, sizeof(console_dev));
2168 strcpy(console_dev.name, "vga");
Bin Meng1caf9342015-11-03 23:23:37 -08002169 console_dev.flags = DEV_FLAGS_OUTPUT;
Simon Glass0a6eac82016-10-17 20:12:54 -06002170 console_dev.putc = cfb_video_putc; /* 'putc' function */
2171 console_dev.puts = cfb_video_puts; /* 'puts' function */
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002172
2173#if !defined(CONFIG_VGA_AS_SINGLE_DEVICE)
Bin Meng8ceb2422015-08-24 01:00:07 -07002174 if (have_keyboard && keyboard_ok) {
Simon Glass5692ccf2015-03-02 12:40:50 -07002175 /* Also init console device */
2176 console_dev.flags |= DEV_FLAGS_INPUT;
2177 console_dev.tstc = VIDEO_TSTC_FCT; /* 'tstc' function */
2178 console_dev.getc = VIDEO_GETC_FCT; /* 'getc' function */
2179 }
2180#endif
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002181
Wolfgang Denk64e40d72011-07-29 09:55:27 +00002182 if (stdio_register(&console_dev) != 0)
Wolfgang Denkf62f6462009-05-15 10:07:42 +02002183 return 0;
2184
2185 /* Return success */
2186 return 1;
wdenkc6097192002-11-03 00:24:07 +00002187}
Stefan Reinauerc20ee072012-09-28 15:11:12 +00002188
2189void video_position_cursor(unsigned col, unsigned row)
2190{
2191 console_col = min(col, CONSOLE_COLS - 1);
2192 console_row = min(row, CONSOLE_ROWS - 1);
2193}
2194
2195int video_get_pixel_width(void)
2196{
2197 return VIDEO_VISIBLE_COLS;
2198}
2199
2200int video_get_pixel_height(void)
2201{
2202 return VIDEO_VISIBLE_ROWS;
2203}
2204
2205int video_get_screen_rows(void)
2206{
2207 return CONSOLE_ROWS;
2208}
2209
2210int video_get_screen_columns(void)
2211{
2212 return CONSOLE_COLS;
2213}